summaryrefslogtreecommitdiff
path: root/libopie/pim/opimmainwindow.h
Side-by-side diff
Diffstat (limited to 'libopie/pim/opimmainwindow.h') (more/less context) (show 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
@@ -17,12 +17,13 @@
* (Ok how to moc a template ;) )
* We will have the mainwindow which calls a struct which
* is normally reimplemented as a template ;)
*/
class QCopChannel;
+class QDateTime;
class OPimMainWindow : public QMainWindow {
Q_OBJECT
public:
enum TransPort { BlueTooth=0,
IrDa };
@@ -53,15 +54,25 @@ protected slots:
/** edit the record */
virtual void edit( int uid ) = 0;
/** 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& );
private:
@@ -70,20 +81,19 @@ private:
int m_rtti;
QCopChannel* m_channel;
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();
};
#endif