qt5
Last change
on this file since 068656d was
6ae1026,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
started work on alarm(libaalarm)
|
-
Property mode set to
100644
|
File size:
488 bytes
|
Line | |
---|
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(); |
---|
16 | private: |
---|
17 | int mEventId; // event ID obtained from 'schedule' |
---|
18 | int mAlarmId; // cookie assigned by alarmd |
---|
19 | }; |
---|
20 | |
---|
21 | #endif /* ALARMDIALOG_H */ |
---|
22 | |
---|
Note: See
TracBrowser
for help on using the repository browser.