-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 @@ -28,2 +28,3 @@ class ToDoEvent { const QString &description = QString::null, + ushort progress = 0, bool hasDate = false, QDate date = QDate::currentDate(), int uid = -1 ); @@ -49,2 +50,6 @@ class ToDoEvent { + /** + * progress as ushort 0, 20, 40, 60, 80 or 100% + */ + ushort progress() const; /* @@ -117,2 +122,7 @@ class ToDoEvent { /** + * Set the progress. + */ + void setProgress( ushort progress ); + + /** * set the end date @@ -147,2 +157,3 @@ class ToDoEvent { int m_uid; + ushort m_prog; }; |