summaryrefslogtreecommitdiff
path: root/libopie/pim/opimnotify.h
Side-by-side diff
Diffstat (limited to 'libopie/pim/opimnotify.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/pim/opimnotify.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libopie/pim/opimnotify.h b/libopie/pim/opimnotify.h
index b0de000..58417db 100644
--- a/libopie/pim/opimnotify.h
+++ b/libopie/pim/opimnotify.h
@@ -81,48 +81,50 @@ public:
bool operator==( const OPimAlarm& );
QString type()const;
int sound()const;
QString file()const;
void setSound( int );
/* only when sound is custom... */
void setFile( const QString& sound );
private:
void deref();
void copyIntern();
struct Data;
Data * data;
class Private;
Private* d;
};
/**
* A Reminder will be put into the
* datebook
+ * Note that the returned dateTime() may be not valid.
+ * In these cases one must resolve the uid and get the OEvent
*/
class OPimReminder : public OPimNotify {
public:
/**
* c'tor of a reminder
* @param uid The uid of the Record inside the Datebook
* @param start the StartDate invalid for all day...
* @param duration The duration of the event ( -1 for all day )
* @param parent The 'parent' record of this reminder
*/
OPimReminder( int uid = 0, const QDateTime& start = QDateTime(),
int duration = 0, int parent = 0 );
OPimReminder( const OPimReminder& );
OPimReminder &operator=(const OPimReminder& );
QString type()const;
bool operator==( const OPimReminder& );
/**
* the uid of the alarm
* inside the 'datebook' application
*/