summaryrefslogtreecommitdiff
path: root/libopie/todoevent.h
Side-by-side diff
Diffstat (limited to 'libopie/todoevent.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/todoevent.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/libopie/todoevent.h b/libopie/todoevent.h
index de4623f..b55a39b 100644
--- a/libopie/todoevent.h
+++ b/libopie/todoevent.h
@@ -1,13 +1,16 @@
#ifndef todoevent_h
#define todoevent_h
+
+#include <qarray.h>
#include <qmap.h>
#include <qregexp.h>
#include <qstringlist.h>
#include <qdatetime.h>
+
class ToDoEvent {
friend class ToDoDB;
public:
// priorities from Very low to very high
@@ -88,8 +91,18 @@ class ToDoEvent {
int uid()const { return m_uid;};
QString extra(const QString& )const;
+
+ /**
+ * returns a list of apps which have related items
+ */
+ QStringList relatedApps()const;
+
+ /**
+ * returns all relations for one app
+ */
+ QArray<int> relations( const QString& app )const;
/**
* Set if this Todo is completed
*/
void setCompleted(bool completed );
@@ -124,8 +137,23 @@ class ToDoEvent {
*/
void setProgress( ushort progress );
/**
+ * add related function it replaces too ;)
+ */
+ void addRelated( const QString& app, int id );
+
+ /**
+ * add related
+ */
+ void addRelated( const QString& app, QArray<int> ids );
+
+ /**
+ * clear relations for one app
+ */
+ void clearRelated(const QString& app);
+
+ /**
* set the end date
*/
void setDate( QDate date );
void setDescription(const QString& );
@@ -153,8 +181,9 @@ class ToDoEvent {
QStringList m_category;
QString m_desc;
QString m_sum;
QMap<QString, QString> m_extra;
+ QMap<QString, QArray<int> > m_relations;
int m_uid;
ushort m_prog;
};