qt5
Last change
on this file since d4a8bbf was
d4a8bbf,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
MAEMO: work on alarm
- snooze alarm
- cancel alarm
- run application which automatically display Event dialog for given Event ID
|
-
Property mode set to
100644
|
File size:
319 bytes
|
Line | |
---|
1 | #ifndef EVENTDIALOG_H |
---|
2 | #define EVENTDIALOG_H |
---|
3 | |
---|
4 | #include <QDialog> |
---|
5 | #include "ui_eventdialog.h" |
---|
6 | #include <event.h> |
---|
7 | |
---|
8 | class EventDialog : public QDialog, Ui::EventDialog |
---|
9 | { |
---|
10 | public: |
---|
11 | EventDialog(const int &aEventId, QWidget *aParent = NULL); |
---|
12 | ~EventDialog() {} |
---|
13 | private: |
---|
14 | int mEventId; |
---|
15 | }; |
---|
16 | |
---|
17 | #endif /* EVENTDIALOG_H */ |
---|
18 | |
---|
Note: See
TracBrowser
for help on using the repository browser.