From c9c3f9e65a72a3c79d7f67eba68fca4537004808 Mon Sep 17 00:00:00 2001 From: zautrix Date: Sat, 26 Mar 2005 20:29:59 +0000 Subject: better timer --- (limited to 'kalarmd/simplealarmdaemonimpl.h') diff --git a/kalarmd/simplealarmdaemonimpl.h b/kalarmd/simplealarmdaemonimpl.h index 32a3867..cbdba47 100644 --- a/kalarmd/simplealarmdaemonimpl.h +++ b/kalarmd/simplealarmdaemonimpl.h @@ -26,6 +26,7 @@ //#include "simplealarmdaemon.h" #include #include +#include class QLabel; class QTimer; @@ -78,9 +79,41 @@ class SimpleAlarmDaemonImpl : public QLabel void fillTimerPopUp(); QString timerMesssage; QString mCustomText; + QString mRunningTimerText; int mCustomMinutes; int mTimerPopupConf; bool wavAlarm; }; - +class KODateLabel : public QLabel +{ + Q_OBJECT + public: + KODateLabel( QWidget *parent=0, const char *name=0 ) : + QLabel( parent, name ) + { + hour = 0; + minutes = 0; + QTimer * ti = new QTimer( this ); + connect ( ti, SIGNAL ( timeout () ), this, SLOT ( updateText() )); + ti->start( 1000 ); + + } +public slots: + void slot_minutes( int m ) + { + minutes = m; updateText(); + } + void slot_hours( int h ) + { + hour = h; updateText(); + } +private slots: + void updateText() + { + QDateTime dt = QDateTime::currentDateTime(); + dt = dt.addSecs( minutes * 60 + hour * 3600 ); + setText( dt.time().toString() ); + } + int hour, minutes; +}; #endif -- cgit v0.9.0.2