Diffstat (limited to 'kalarmd/simplealarmdaemonimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | kalarmd/simplealarmdaemonimpl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kalarmd/simplealarmdaemonimpl.h b/kalarmd/simplealarmdaemonimpl.h index 06ef91b..ac65797 100644 --- a/kalarmd/simplealarmdaemonimpl.h +++ b/kalarmd/simplealarmdaemonimpl.h | |||
@@ -17,33 +17,32 @@ | |||
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | #ifndef SIMPLEALARMDAEMONIMPL_H | 23 | #ifndef SIMPLEALARMDAEMONIMPL_H |
24 | #define SIMPLEALARMDAEMONIMPL_H | 24 | #define SIMPLEALARMDAEMONIMPL_H |
25 | 25 | ||
26 | //#include "simplealarmdaemon.h" | 26 | //#include "simplealarmdaemon.h" |
27 | #include <qdatetime.h> | 27 | #include <qdatetime.h> |
28 | #include <qlabel.h> | 28 | #include <qlabel.h> |
29 | #include <qtimer.h> | 29 | #include <qtimer.h> |
30 | 30 | ||
31 | class QLabel; | 31 | class QLabel; |
32 | class QTimer; | 32 | class QTimer; |
33 | class QPopupMenu; | ||
34 | class AlarmDialog; | 33 | class AlarmDialog; |
35 | class SimpleAlarmDaemonImpl : public QLabel | 34 | class SimpleAlarmDaemonImpl : public QLabel |
36 | { | 35 | { |
37 | Q_OBJECT | 36 | Q_OBJECT |
38 | public: | 37 | public: |
39 | SimpleAlarmDaemonImpl( QWidget *parent = 0 ); | 38 | SimpleAlarmDaemonImpl( QWidget *parent = 0 ); |
40 | 39 | ||
41 | ~SimpleAlarmDaemonImpl(); | 40 | ~SimpleAlarmDaemonImpl(); |
42 | 41 | ||
43 | protected slots: | 42 | protected slots: |
44 | void recieve( const QCString& msg, const QByteArray& data ); | 43 | void recieve( const QCString& msg, const QByteArray& data ); |
45 | void newTodo(); | 44 | void newTodo(); |
46 | void newEvent(); | 45 | void newEvent(); |
47 | void newCountdown(); | 46 | void newCountdown(); |
48 | void simulate(); | 47 | void simulate(); |
49 | void showKO(); | 48 | void showKO(); |
@@ -63,33 +62,33 @@ class SimpleAlarmDaemonImpl : public QLabel | |||
63 | void confSuspend( int ); | 62 | void confSuspend( int ); |
64 | void confSound( int num ); | 63 | void confSound( int num ); |
65 | void startAlarm(QString mess, QString fn ); | 64 | void startAlarm(QString mess, QString fn ); |
66 | 65 | ||
67 | protected: | 66 | protected: |
68 | void mousePressEvent( QMouseEvent * ); | 67 | void mousePressEvent( QMouseEvent * ); |
69 | 68 | ||
70 | private: | 69 | private: |
71 | AlarmDialog *mAlarmDialog; | 70 | AlarmDialog *mAlarmDialog; |
72 | QLabel * mTimerStartLabel; | 71 | QLabel * mTimerStartLabel; |
73 | int mPlayBeeps; | 72 | int mPlayBeeps; |
74 | int mPausePlay; | 73 | int mPausePlay; |
75 | int mSuspend; | 74 | int mSuspend; |
76 | QString mAlarmMessage; | 75 | QString mAlarmMessage; |
77 | int mTimerTime; | 76 | int mTimerTime; |
78 | int getFileNameLen( QString ); | 77 | int getFileNameLen( QString ); |
79 | QPopupMenu* mPopUp, *mBeepPopUp, *mTimerPopUp, *mSoundPopUp,*mPausePopUp,*mSuspendPopUp, *mFontsizePopup; | 78 | Q3PopupMenu* mPopUp, *mBeepPopUp, *mTimerPopUp, *mSoundPopUp,*mPausePopUp,*mSuspendPopUp, *mFontsizePopup; |
80 | QDateTime mRunningTimer; | 79 | QDateTime mRunningTimer; |
81 | void fillTimerPopUp(); | 80 | void fillTimerPopUp(); |
82 | QString timerMesssage; | 81 | QString timerMesssage; |
83 | QString mCustomText; | 82 | QString mCustomText; |
84 | QString mRunningTimerText; | 83 | QString mRunningTimerText; |
85 | int mCustomMinutes; | 84 | int mCustomMinutes; |
86 | int mTimerPopupConf; | 85 | int mTimerPopupConf; |
87 | int mPopupFontSize; | 86 | int mPopupFontSize; |
88 | bool wavAlarm; | 87 | bool wavAlarm; |
89 | }; | 88 | }; |
90 | class KODateLabel : public QLabel | 89 | class KODateLabel : public QLabel |
91 | { | 90 | { |
92 | Q_OBJECT | 91 | Q_OBJECT |
93 | public: | 92 | public: |
94 | KODateLabel( QWidget *parent=0, const char *name=0 ) : | 93 | KODateLabel( QWidget *parent=0, const char *name=0 ) : |
95 | QLabel( parent, name ) | 94 | QLabel( parent, name ) |