author | zecke <zecke> | 2002-04-23 12:04:28 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-04-23 12:04:28 (UTC) |
commit | 367304a610dd618ad45ddce8256ba4d7d8ded442 (patch) (side-by-side diff) | |
tree | c73838ac2bb496f6233ac6b793d5b17c867efbdb /libopie/todoevent.h | |
parent | 3197bbef89e9001929d826a8cbe39d675bcf7917 (diff) | |
download | opie-367304a610dd618ad45ddce8256ba4d7d8ded442.zip opie-367304a610dd618ad45ddce8256ba4d7d8ded442.tar.gz opie-367304a610dd618ad45ddce8256ba4d7d8ded442.tar.bz2 |
ToDoEvent::richText() added
this patch came from Stefan Eilers
is that the right place for it or does it belong into
the todo app itself?
-rw-r--r-- | libopie/todoevent.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libopie/todoevent.h b/libopie/todoevent.h index 0d477fd..40d8f0b 100644 --- a/libopie/todoevent.h +++ b/libopie/todoevent.h @@ -10,3 +10,13 @@ class ToDoEvent { public: + // priorities from Very low to very high enum Priority { VERYHIGH=1, HIGH, NORMAL, LOW, VERYLOW }; + /* Constructs a new ToDoEvent + @param completed Is the TodoEvent completed + @param priority What is the priority of this ToDoEvent + @param category Which category does it belong( uid ) + @param description What is this ToDoEvent about + @param hasDate Does this Event got a deadline + @param date what is the deadline? + @param uid what is the UUID of this Event + **/ ToDoEvent( bool completed = false, int priority = NORMAL, @@ -15,5 +25,20 @@ class ToDoEvent { bool hasDate = false, QDate date = QDate::currentDate(), int uid = -1 ); + /* Copy c'tor + + **/ ToDoEvent(const ToDoEvent & ); + + /* + Is this event completed? + **/ bool isCompleted() const; + + /* + Does this Event have a deadline + **/ bool hasDate() const; + + /* + What is the priority? + **/ int priority()const ; @@ -24,2 +49,4 @@ class ToDoEvent { + QString richText() const; + int uid()const { return m_uid;}; |