qt5
Last change
on this file since d49254d was
d49254d,
checked in by pavelpa <pavelpa@…>, 12 years ago
|
'conflict' dialog now contains list of events in conflict with given eventId
|
-
Property mode set to
100644
|
File size:
479 bytes
|
Rev | Line | |
---|
[ea638ef] | 1 | |
---|
| 2 | #ifndef CONFLICTDIALOGCONTAINER_H |
---|
| 3 | #define CONFLICTDIALOGCONTAINER_H |
---|
| 4 | |
---|
| 5 | #include "tabcontainer.h" |
---|
| 6 | |
---|
| 7 | class ConflictDialogContainer: public TabContainer |
---|
| 8 | { |
---|
| 9 | Q_OBJECT |
---|
| 10 | public: |
---|
| 11 | ConflictDialogContainer(QWidget *aParent); |
---|
| 12 | virtual ~ConflictDialogContainer(){} |
---|
| 13 | |
---|
[d49254d] | 14 | void setEventId(int aEventId) { mEventId = aEventId; } |
---|
[ea638ef] | 15 | |
---|
| 16 | protected: |
---|
| 17 | virtual void loadEvents( const QDate &aDate, const int aConferenceId ); |
---|
[d49254d] | 18 | |
---|
| 19 | private: |
---|
| 20 | int mEventId; |
---|
[ea638ef] | 21 | }; |
---|
| 22 | |
---|
| 23 | #endif /* CONFLICTDIALOGCONTAINER_H */ |
---|
| 24 | |
---|
Note: See
TracBrowser
for help on using the repository browser.