+class DetailsContainer : public QWidget
+{
+public:
+ DetailsContainer(QWidget *aParent = NULL);
+ void setPersons(const QStringList &aPersons);
+ void setAbstract(const QString &aAbstract);
+ void setDescription(const QString &aDescription);
+private:
+ QBoxLayout *mMainLayout;
+ QLabel mPersons;
+ QLabel mAbstract;
+ QLabel mDescription;
+};
+
+