summaryrefslogtreecommitdiff
path: root/libopie/pim/opimmainwindow.h
authorzecke <zecke>2003-05-12 13:17:48 (UTC)
committer zecke <zecke>2003-05-12 13:17:48 (UTC)
commitd6e4c1a54185b1aa4443cb79a36acc637acf84ac (patch) (side-by-side diff)
treebff7f62a0a06cbcd3d1492b37c297e9133dacff4 /libopie/pim/opimmainwindow.h
parentabfe4c66be60075a518d4918d603bb8033bc5ac4 (diff)
downloadopie-d6e4c1a54185b1aa4443cb79a36acc637acf84ac.zip
opie-d6e4c1a54185b1aa4443cb79a36acc637acf84ac.tar.gz
opie-d6e4c1a54185b1aa4443cb79a36acc637acf84ac.tar.bz2
Add handling of alarm() message
play and killAlarm... added as well
Diffstat (limited to 'libopie/pim/opimmainwindow.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/pim/opimmainwindow.h18
1 files changed, 14 insertions, 4 deletions
diff --git a/libopie/pim/opimmainwindow.h b/libopie/pim/opimmainwindow.h
index dca3c82..855d364 100644
--- a/libopie/pim/opimmainwindow.h
+++ b/libopie/pim/opimmainwindow.h
@@ -20,6 +20,7 @@
*/
class QCopChannel;
+class QDateTime;
class OPimMainWindow : public QMainWindow {
Q_OBJECT
public:
@@ -56,9 +57,19 @@ protected slots:
/** make a copy of it! */
virtual void add( const OPimRecord& ) = 0;
+ virtual void doAlarm( const QDateTime&, int uid );
QCopChannel* channel();
+protected:
+ /**
+ * start to play soundAlarm()
+ * @param count How many times the alarm is played
+ */
+ void startAlarm(int count = 10);
+ void killAlarm();
+ void timerEvent( QTimerEvent* );
+
private slots:
void appMessage( const QCString&, const QByteArray& );
void setDocument( const QString& );
@@ -73,14 +84,13 @@ private:
QString m_service;
QCString m_str;
OPimRecord* m_fallBack;
-
+ int m_alarmCount;
+ int m_playedCount;
+ int m_timerId;
/* I would love to do this as a template
* but can't think of a right way
* because I need signal and slots -zecke
*/
- /*
- * the only pointer in the whole PIM API :(
- */
virtual OPimRecord* record( int rtti, const QByteArray& ) ;
int service();
};