-rw-r--r-- | libopie/todoevent.h | 29 |
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 @@ | |||
2 | #ifndef todoevent_h | 2 | #ifndef todoevent_h |
3 | #define todoevent_h | 3 | #define todoevent_h |
4 | 4 | ||
5 | |||
6 | #include <qarray.h> | ||
5 | #include <qmap.h> | 7 | #include <qmap.h> |
6 | #include <qregexp.h> | 8 | #include <qregexp.h> |
7 | #include <qstringlist.h> | 9 | #include <qstringlist.h> |
8 | #include <qdatetime.h> | 10 | #include <qdatetime.h> |
9 | 11 | ||
12 | |||
10 | class ToDoEvent { | 13 | class ToDoEvent { |
11 | friend class ToDoDB; | 14 | friend class ToDoDB; |
12 | public: | 15 | public: |
@@ -89,6 +92,16 @@ class ToDoEvent { | |||
89 | 92 | ||
90 | 93 | ||
91 | QString extra(const QString& )const; | 94 | QString extra(const QString& )const; |
95 | |||
96 | /** | ||
97 | * returns a list of apps which have related items | ||
98 | */ | ||
99 | QStringList relatedApps()const; | ||
100 | |||
101 | /** | ||
102 | * returns all relations for one app | ||
103 | */ | ||
104 | QArray<int> relations( const QString& app )const; | ||
92 | /** | 105 | /** |
93 | * Set if this Todo is completed | 106 | * Set if this Todo is completed |
94 | */ | 107 | */ |
@@ -125,6 +138,21 @@ class ToDoEvent { | |||
125 | void setProgress( ushort progress ); | 138 | void setProgress( ushort progress ); |
126 | 139 | ||
127 | /** | 140 | /** |
141 | * add related function it replaces too ;) | ||
142 | */ | ||
143 | void addRelated( const QString& app, int id ); | ||
144 | |||
145 | /** | ||
146 | * add related | ||
147 | */ | ||
148 | void addRelated( const QString& app, QArray<int> ids ); | ||
149 | |||
150 | /** | ||
151 | * clear relations for one app | ||
152 | */ | ||
153 | void clearRelated(const QString& app); | ||
154 | |||
155 | /** | ||
128 | * set the end date | 156 | * set the end date |
129 | */ | 157 | */ |
130 | void setDate( QDate date ); | 158 | void setDate( QDate date ); |
@@ -154,6 +182,7 @@ class ToDoEvent { | |||
154 | QString m_desc; | 182 | QString m_desc; |
155 | QString m_sum; | 183 | QString m_sum; |
156 | QMap<QString, QString> m_extra; | 184 | QMap<QString, QString> m_extra; |
185 | QMap<QString, QArray<int> > m_relations; | ||
157 | int m_uid; | 186 | int m_uid; |
158 | ushort m_prog; | 187 | ushort m_prog; |
159 | }; | 188 | }; |