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
@@ -2,11 +2,14 @@
#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:
@@ -89,6 +92,16 @@ class ToDoEvent {
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
*/
@@ -125,6 +138,21 @@ 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 );
@@ -154,6 +182,7 @@ class ToDoEvent {
QString m_desc;
QString m_sum;
QMap<QString, QString> m_extra;
+ QMap<QString, QArray<int> > m_relations;
int m_uid;
ushort m_prog;
};