summaryrefslogtreecommitdiffabout
path: root/kalarmd/simplealarmdaemonimpl.h
Unidiff
Diffstat (limited to 'kalarmd/simplealarmdaemonimpl.h') (more/less context) (show whitespace changes)
-rw-r--r--kalarmd/simplealarmdaemonimpl.h3
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
@@ -9,95 +9,94 @@
9 9
10 This program is distributed in the hope that it will be useful, 10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details. 13 GNU General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software 16 along with this program; if not, write to the Free Software
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
31class QLabel; 31class QLabel;
32class QTimer; 32class QTimer;
33class QPopupMenu;
34class AlarmDialog; 33class AlarmDialog;
35class SimpleAlarmDaemonImpl : public QLabel 34class 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();
50 void showWN(); 49 void showWN();
51 void showAdd(); 50 void showAdd();
52 void newMail(); 51 void newMail();
53 void ringSync(); 52 void ringSync();
54 void showTodo(); 53 void showTodo();
55 void writeFile(); 54 void writeFile();
56 void writeJournal(); 55 void writeJournal();
57 void slotPlayBeep( int ); 56 void slotPlayBeep( int );
58 void showTimer( ); 57 void showTimer( );
59 void confPause( int ); 58 void confPause( int );
60 void confFontSize( int ); 59 void confFontSize( int );
61 void confTimer( int ); 60 void confTimer( int );
62 void saveSlot( int ); 61 void saveSlot( int );
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};
90class KODateLabel : public QLabel 89class 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 )
96 { 95 {
97 hour = 0; 96 hour = 0;
98 minutes = 0; 97 minutes = 0;
99 QTimer * ti = new QTimer( this ); 98 QTimer * ti = new QTimer( this );
100 connect ( ti, SIGNAL ( timeout () ), this, SLOT ( updateText() )); 99 connect ( ti, SIGNAL ( timeout () ), this, SLOT ( updateText() ));
101 ti->start( 1000 ); 100 ti->start( 1000 );
102 101
103 } 102 }