qt5
Last change
on this file since 83020cd was
cfd615d,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
work on alarm
|
-
Property mode set to
100644
|
File size:
516 bytes
|
Rev | Line | |
---|
[6ae1026] | 1 | #ifndef ALARMDIALOG_H |
---|
| 2 | #define ALARMDIALOG_H |
---|
| 3 | |
---|
| 4 | #include <QDialog> |
---|
| 5 | #include "ui_alarmdialog.h" |
---|
| 6 | |
---|
| 7 | class AlarmDialog : public QDialog, Ui::AlarmDialog |
---|
| 8 | { |
---|
| 9 | Q_OBJECT |
---|
| 10 | public: |
---|
| 11 | AlarmDialog(int argc, char *argv[], QWidget *aParent = NULL); |
---|
| 12 | ~AlarmDialog() {} |
---|
| 13 | private slots: |
---|
| 14 | void runApp(); |
---|
| 15 | void snooze(); |
---|
[cfd615d] | 16 | void closeDialog(); |
---|
[6ae1026] | 17 | private: |
---|
| 18 | int mEventId; // event ID obtained from 'schedule' |
---|
| 19 | int mAlarmId; // cookie assigned by alarmd |
---|
| 20 | }; |
---|
| 21 | |
---|
| 22 | #endif /* ALARMDIALOG_H */ |
---|
| 23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.