-rw-r--r-- | libopie/todoevent.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libopie/todoevent.h b/libopie/todoevent.h index 7454241..de4623f 100644 --- a/libopie/todoevent.h +++ b/libopie/todoevent.h @@ -23,12 +23,13 @@ class ToDoEvent { @param uid what is the UUID of this Event **/ ToDoEvent( bool completed = false, int priority = NORMAL, const QStringList &category = QStringList(), const QString &summary = QString::null , const QString &description = QString::null, + ushort progress = 0, bool hasDate = false, QDate date = QDate::currentDate(), int uid = -1 ); /* Copy c'tor **/ ToDoEvent(const ToDoEvent & ); @@ -44,12 +45,16 @@ class ToDoEvent { /* What is the priority? **/ int priority()const ; + /** + * progress as ushort 0, 20, 40, 60, 80 or 100% + */ + ushort progress() const; /* All category numbers as QString in a List **/ QStringList allCategories()const; /* @@ -112,12 +117,17 @@ class ToDoEvent { /** * Set the priority of the Todo */ void setPriority(int priority ); /** + * Set the progress. + */ + void setProgress( ushort progress ); + + /** * set the end date */ void setDate( QDate date ); void setDescription(const QString& ); void setSummary(const QString& ); void setExtra( const QString&, const QString& ); @@ -142,10 +152,11 @@ class ToDoEvent { int m_priority; QStringList m_category; QString m_desc; QString m_sum; QMap<QString, QString> m_extra; int m_uid; + ushort m_prog; }; #endif |