Changeset 183eecd in confclerk_git for src/gui/eventdialog.h
- Timestamp:
- 01/25/10 12:07:00 (13 years ago)
- Branches:
- master, qt5
- Children:
- 7b70507
- Parents:
- 6dc0dbc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gui/eventdialog.h
r6dc0dbc r183eecd 5 5 #include "ui_eventdialog.h" 6 6 #include <event.h> 7 8 class DetailsContainer : public QWidget 9 { 10 public: 11 DetailsContainer(QWidget *aParent = NULL); 12 void setPersons(const QStringList &aPersons); 13 void setAbstract(const QString &aAbstract); 14 void setDescription(const QString &aDescription); 15 private: 16 QBoxLayout *mMainLayout; 17 QLabel mPersons; 18 QLabel mAbstract; 19 QLabel mDescription; 20 }; 21 7 22 8 23 class EventDialog : public QDialog, Ui::EventDialog … … 13 28 private: 14 29 int mEventId; 30 DetailsContainer mDetails; 15 31 }; 16 32
Note: See TracChangeset
for help on using the changeset viewer.