qt5
Last change
on this file since 707cd31 was
707cd31,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
implemented 'Event' dialog to display relevant
'Event's info
|
-
Property mode set to
100644
|
File size:
354 bytes
|
Line | |
---|
1 | #ifndef EVENTDIALOG_H |
---|
2 | #define EVENTDIALOG_H |
---|
3 | |
---|
4 | #include <QDialog> |
---|
5 | #include <QModelIndex> |
---|
6 | #include "ui_eventdialog.h" |
---|
7 | #include <event.h> |
---|
8 | |
---|
9 | class EventDialog : public QDialog, Ui::EventDialog |
---|
10 | { |
---|
11 | public: |
---|
12 | EventDialog(const QModelIndex &aIndex, QWidget *aParent = NULL); |
---|
13 | ~EventDialog() {} |
---|
14 | private: |
---|
15 | QModelIndex mIndex; |
---|
16 | }; |
---|
17 | |
---|
18 | #endif /* EVENTDIALOG_H */ |
---|
19 | |
---|
Note: See
TracBrowser
for help on using the repository browser.