summaryrefslogtreecommitdiff
path: root/libopie/todoevent.h
authorzecke <zecke>2002-06-17 14:20:23 (UTC)
committer zecke <zecke>2002-06-17 14:20:23 (UTC)
commitf27745ccf2ace20e5adc44bf630b20e5657feeb2 (patch) (side-by-side diff)
tree3fbd91d407051cf94551e49c29d593d6b8c89058 /libopie/todoevent.h
parent77ec78630c69c80a3d8bad7f7feb9cc9f18ab346 (diff)
downloadopie-f27745ccf2ace20e5adc44bf630b20e5657feeb2.zip
opie-f27745ccf2ace20e5adc44bf630b20e5657feeb2.tar.gz
opie-f27745ccf2ace20e5adc44bf630b20e5657feeb2.tar.bz2
Cross Referencing is possible by now
Diffstat (limited to 'libopie/todoevent.h') (more/less context) (show 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
@@ -4,2 +4,4 @@
+
+#include <qarray.h>
#include <qmap.h>
@@ -9,2 +11,3 @@
+
class ToDoEvent {
@@ -91,2 +94,12 @@ 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;
/**
@@ -127,2 +140,17 @@ class ToDoEvent {
/**
+ * 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
@@ -156,2 +184,3 @@ class ToDoEvent {
QMap<QString, QString> m_extra;
+ QMap<QString, QArray<int> > m_relations;
int m_uid;