-rw-r--r-- | libkcal/calendar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libkcal/calendar.h b/libkcal/calendar.h index c45d81f..d5294eb 100644 --- a/libkcal/calendar.h +++ b/libkcal/calendar.h | |||
@@ -1,351 +1,352 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkcal. | 2 | This file is part of libkcal. |
3 | Copyright (c) 1998 Preston Brown | 3 | Copyright (c) 1998 Preston Brown |
4 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 4 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> |
5 | 5 | ||
6 | This library is free software; you can redistribute it and/or | 6 | This library is free software; you can redistribute it and/or |
7 | modify it under the terms of the GNU Library General Public | 7 | modify it under the terms of the GNU Library General Public |
8 | License as published by the Free Software Foundation; either | 8 | License as published by the Free Software Foundation; either |
9 | version 2 of the License, or (at your option) any later version. | 9 | version 2 of the License, or (at your option) any later version. |
10 | 10 | ||
11 | This library is distributed in the hope that it will be useful, | 11 | This library is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | Library General Public License for more details. | 14 | Library General Public License for more details. |
15 | 15 | ||
16 | You should have received a copy of the GNU Library General Public License | 16 | You should have received a copy of the GNU Library General Public License |
17 | along with this library; see the file COPYING.LIB. If not, write to | 17 | along with this library; see the file COPYING.LIB. If not, write to |
18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
19 | Boston, MA 02111-1307, USA. | 19 | Boston, MA 02111-1307, USA. |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #ifndef CALENDAR_H | 22 | #ifndef CALENDAR_H |
23 | #define CALENDAR_H | 23 | #define CALENDAR_H |
24 | 24 | ||
25 | #include <qobject.h> | 25 | #include <qobject.h> |
26 | #include <qstring.h> | 26 | #include <qstring.h> |
27 | #include <qdatetime.h> | 27 | #include <qdatetime.h> |
28 | #include <qptrlist.h> | 28 | #include <qptrlist.h> |
29 | #include <qdict.h> | 29 | #include <qdict.h> |
30 | 30 | ||
31 | #include "customproperties.h" | 31 | #include "customproperties.h" |
32 | #include "event.h" | 32 | #include "event.h" |
33 | #include "todo.h" | 33 | #include "todo.h" |
34 | #include "journal.h" | 34 | #include "journal.h" |
35 | #include "calfilter.h" | 35 | #include "calfilter.h" |
36 | 36 | ||
37 | //#define _TIME_ZONE "-0500" /* hardcoded, overridden in config file. */ | 37 | //#define _TIME_ZONE "-0500" /* hardcoded, overridden in config file. */ |
38 | 38 | ||
39 | class KConfig; | 39 | class KConfig; |
40 | 40 | ||
41 | namespace KCal { | 41 | namespace KCal { |
42 | 42 | ||
43 | 43 | ||
44 | /** | 44 | /** |
45 | This is the main "calendar" object class for KOrganizer. It holds | 45 | This is the main "calendar" object class for KOrganizer. It holds |
46 | information like all appointments/events, user information, etc. etc. | 46 | information like all appointments/events, user information, etc. etc. |
47 | one calendar is associated with each CalendarView (@see calendarview.h). | 47 | one calendar is associated with each CalendarView (@see calendarview.h). |
48 | This is an abstract base class defining the interface to a calendar. It is | 48 | This is an abstract base class defining the interface to a calendar. It is |
49 | implemented by subclasses like @see CalendarLocal, which use different | 49 | implemented by subclasses like @see CalendarLocal, which use different |
50 | methods to store and access the data. | 50 | methods to store and access the data. |
51 | 51 | ||
52 | Ownership of events etc. is handled by the following policy: As soon as an | 52 | Ownership of events etc. is handled by the following policy: As soon as an |
53 | event (or any other subclass of IncidenceBase) object is added to the | 53 | event (or any other subclass of IncidenceBase) object is added to the |
54 | Calendar by addEvent() it is owned by the Calendar object. The Calendar takes | 54 | Calendar by addEvent() it is owned by the Calendar object. The Calendar takes |
55 | care of deleting it. All Events returned by the query functions are returned | 55 | care of deleting it. All Events returned by the query functions are returned |
56 | as pointers, that means all changes to the returned events are immediately | 56 | as pointers, that means all changes to the returned events are immediately |
57 | visible in the Calendar. You shouldn't delete any Event object you get from | 57 | visible in the Calendar. You shouldn't delete any Event object you get from |
58 | Calendar. | 58 | Calendar. |
59 | */ | 59 | */ |
60 | class Calendar : public QObject, public CustomProperties, | 60 | class Calendar : public QObject, public CustomProperties, |
61 | public IncidenceBase::Observer | 61 | public IncidenceBase::Observer |
62 | { | 62 | { |
63 | Q_OBJECT | 63 | Q_OBJECT |
64 | public: | 64 | public: |
65 | Calendar(); | 65 | Calendar(); |
66 | Calendar(const QString &timeZoneId); | 66 | Calendar(const QString &timeZoneId); |
67 | virtual ~Calendar(); | 67 | virtual ~Calendar(); |
68 | void deleteIncidence(Incidence *in); | 68 | void deleteIncidence(Incidence *in); |
69 | void resetTempSyncStat(); | 69 | void resetTempSyncStat(); |
70 | void resetPilotStat(); | ||
70 | /** | 71 | /** |
71 | Clears out the current calendar, freeing all used memory etc. | 72 | Clears out the current calendar, freeing all used memory etc. |
72 | */ | 73 | */ |
73 | virtual void close() = 0; | 74 | virtual void close() = 0; |
74 | 75 | ||
75 | /** | 76 | /** |
76 | Sync changes in memory to persistant storage. | 77 | Sync changes in memory to persistant storage. |
77 | */ | 78 | */ |
78 | virtual void save() = 0; | 79 | virtual void save() = 0; |
79 | virtual QPtrList<Event> getExternLastSyncEvents() = 0; | 80 | virtual QPtrList<Event> getExternLastSyncEvents() = 0; |
80 | virtual bool isSaving() { return false; } | 81 | virtual bool isSaving() { return false; } |
81 | 82 | ||
82 | /** | 83 | /** |
83 | Return the owner of the calendar's full name. | 84 | Return the owner of the calendar's full name. |
84 | */ | 85 | */ |
85 | const QString &getOwner() const; | 86 | const QString &getOwner() const; |
86 | /** | 87 | /** |
87 | Set the owner of the calendar. Should be owner's full name. | 88 | Set the owner of the calendar. Should be owner's full name. |
88 | */ | 89 | */ |
89 | void setOwner( const QString &os ); | 90 | void setOwner( const QString &os ); |
90 | /** | 91 | /** |
91 | Return the email address of the calendar owner. | 92 | Return the email address of the calendar owner. |
92 | */ | 93 | */ |
93 | const QString &getEmail(); | 94 | const QString &getEmail(); |
94 | /** | 95 | /** |
95 | Set the email address of the calendar owner. | 96 | Set the email address of the calendar owner. |
96 | */ | 97 | */ |
97 | void setEmail( const QString & ); | 98 | void setEmail( const QString & ); |
98 | 99 | ||
99 | /** | 100 | /** |
100 | Set time zone from a timezone string (e.g. -2:00) | 101 | Set time zone from a timezone string (e.g. -2:00) |
101 | */ | 102 | */ |
102 | void setTimeZone( const QString &tz ); | 103 | void setTimeZone( const QString &tz ); |
103 | /** | 104 | /** |
104 | Set time zone from a minutes value (e.g. -60) | 105 | Set time zone from a minutes value (e.g. -60) |
105 | */ | 106 | */ |
106 | void setTimeZone( int tz ); | 107 | void setTimeZone( int tz ); |
107 | /** | 108 | /** |
108 | Return time zone as offest in minutes. | 109 | Return time zone as offest in minutes. |
109 | */ | 110 | */ |
110 | int getTimeZone() const; | 111 | int getTimeZone() const; |
111 | /** | 112 | /** |
112 | Compute an ISO 8601 format string from the time zone. | 113 | Compute an ISO 8601 format string from the time zone. |
113 | */ | 114 | */ |
114 | QString getTimeZoneStr() const; | 115 | QString getTimeZoneStr() const; |
115 | /** | 116 | /** |
116 | Set time zone id (see /usr/share/zoneinfo/zone.tab for list of legal | 117 | Set time zone id (see /usr/share/zoneinfo/zone.tab for list of legal |
117 | values). | 118 | values). |
118 | */ | 119 | */ |
119 | void setTimeZoneId( const QString & ); | 120 | void setTimeZoneId( const QString & ); |
120 | /** | 121 | /** |
121 | Return time zone id. | 122 | Return time zone id. |
122 | */ | 123 | */ |
123 | QString timeZoneId() const; | 124 | QString timeZoneId() const; |
124 | /** | 125 | /** |
125 | Use local time, not UTC or a time zone. | 126 | Use local time, not UTC or a time zone. |
126 | */ | 127 | */ |
127 | void setLocalTime(); | 128 | void setLocalTime(); |
128 | /** | 129 | /** |
129 | Return whether local time is being used. | 130 | Return whether local time is being used. |
130 | */ | 131 | */ |
131 | bool isLocalTime() const; | 132 | bool isLocalTime() const; |
132 | 133 | ||
133 | /** | 134 | /** |
134 | Add an incidence to calendar. | 135 | Add an incidence to calendar. |
135 | 136 | ||
136 | @return true on success, false on error. | 137 | @return true on success, false on error. |
137 | */ | 138 | */ |
138 | virtual bool addIncidence( Incidence * ); | 139 | virtual bool addIncidence( Incidence * ); |
139 | /** | 140 | /** |
140 | Return filtered list of all incidences of this calendar. | 141 | Return filtered list of all incidences of this calendar. |
141 | */ | 142 | */ |
142 | virtual QPtrList<Incidence> incidences(); | 143 | virtual QPtrList<Incidence> incidences(); |
143 | 144 | ||
144 | /** | 145 | /** |
145 | Return unfiltered list of all incidences of this calendar. | 146 | Return unfiltered list of all incidences of this calendar. |
146 | */ | 147 | */ |
147 | virtual QPtrList<Incidence> rawIncidences(); | 148 | virtual QPtrList<Incidence> rawIncidences(); |
148 | 149 | ||
149 | /** | 150 | /** |
150 | Adds a Event to this calendar object. | 151 | Adds a Event to this calendar object. |
151 | @param anEvent a pointer to the event to add | 152 | @param anEvent a pointer to the event to add |
152 | 153 | ||
153 | @return true on success, false on error. | 154 | @return true on success, false on error. |
154 | */ | 155 | */ |
155 | virtual bool addEventNoDup( Event *event ) = 0; | 156 | virtual bool addEventNoDup( Event *event ) = 0; |
156 | virtual bool addAnniversaryNoDup( Event *event ) = 0; | 157 | virtual bool addAnniversaryNoDup( Event *event ) = 0; |
157 | virtual bool addEvent( Event *anEvent ) = 0; | 158 | virtual bool addEvent( Event *anEvent ) = 0; |
158 | /** | 159 | /** |
159 | Delete event from calendar. | 160 | Delete event from calendar. |
160 | */ | 161 | */ |
161 | virtual void deleteEvent( Event * ) = 0; | 162 | virtual void deleteEvent( Event * ) = 0; |
162 | /** | 163 | /** |
163 | Retrieves an event on the basis of the unique string ID. | 164 | Retrieves an event on the basis of the unique string ID. |
164 | */ | 165 | */ |
165 | virtual Event *event( const QString &UniqueStr ) = 0; | 166 | virtual Event *event( const QString &UniqueStr ) = 0; |
166 | virtual Event *event( QString, QString ) = 0; | 167 | virtual Event *event( QString, QString ) = 0; |
167 | /** | 168 | /** |
168 | Builds and then returns a list of all events that match for the | 169 | Builds and then returns a list of all events that match for the |
169 | date specified. useful for dayView, etc. etc. | 170 | date specified. useful for dayView, etc. etc. |
170 | The calendar filter is applied. | 171 | The calendar filter is applied. |
171 | */ | 172 | */ |
172 | QPtrList<Event> events( const QDate &date, bool sorted = false); | 173 | QPtrList<Event> events( const QDate &date, bool sorted = false); |
173 | /** | 174 | /** |
174 | Get events, which occur on the given date. | 175 | Get events, which occur on the given date. |
175 | The calendar filter is applied. | 176 | The calendar filter is applied. |
176 | */ | 177 | */ |
177 | QPtrList<Event> events( const QDateTime &qdt ); | 178 | QPtrList<Event> events( const QDateTime &qdt ); |
178 | /** | 179 | /** |
179 | Get events in a range of dates. If inclusive is set to true, only events | 180 | Get events in a range of dates. If inclusive is set to true, only events |
180 | are returned, which are completely included in the range. | 181 | are returned, which are completely included in the range. |
181 | The calendar filter is applied. | 182 | The calendar filter is applied. |
182 | */ | 183 | */ |
183 | QPtrList<Event> events( const QDate &start, const QDate &end, | 184 | QPtrList<Event> events( const QDate &start, const QDate &end, |
184 | bool inclusive = false); | 185 | bool inclusive = false); |
185 | /** | 186 | /** |
186 | Return filtered list of all events in calendar. | 187 | Return filtered list of all events in calendar. |
187 | */ | 188 | */ |
188 | virtual QPtrList<Event> events(); | 189 | virtual QPtrList<Event> events(); |
189 | /** | 190 | /** |
190 | Return unfiltered list of all events in calendar. | 191 | Return unfiltered list of all events in calendar. |
191 | */ | 192 | */ |
192 | virtual QPtrList<Event> rawEvents() = 0; | 193 | virtual QPtrList<Event> rawEvents() = 0; |
193 | 194 | ||
194 | /** | 195 | /** |
195 | Add a todo to the todolist. | 196 | Add a todo to the todolist. |
196 | 197 | ||
197 | @return true on success, false on error. | 198 | @return true on success, false on error. |
198 | */ | 199 | */ |
199 | virtual bool addTodo( Todo *todo ) = 0; | 200 | virtual bool addTodo( Todo *todo ) = 0; |
200 | virtual bool addTodoNoDup( Todo *todo ) = 0; | 201 | virtual bool addTodoNoDup( Todo *todo ) = 0; |
201 | /** | 202 | /** |
202 | Remove a todo from the todolist. | 203 | Remove a todo from the todolist. |
203 | */ | 204 | */ |
204 | virtual void deleteTodo( Todo * ) = 0; | 205 | virtual void deleteTodo( Todo * ) = 0; |
205 | virtual void deleteJournal( Journal * ) = 0; | 206 | virtual void deleteJournal( Journal * ) = 0; |
206 | /** | 207 | /** |
207 | Return filterd list of todos. | 208 | Return filterd list of todos. |
208 | */ | 209 | */ |
209 | virtual QPtrList<Todo> todos(); | 210 | virtual QPtrList<Todo> todos(); |
210 | /** | 211 | /** |
211 | Searches todolist for an event with this unique string identifier, | 212 | Searches todolist for an event with this unique string identifier, |
212 | returns a pointer or null. | 213 | returns a pointer or null. |
213 | */ | 214 | */ |
214 | virtual Todo *todo( const QString &uid ) = 0; | 215 | virtual Todo *todo( const QString &uid ) = 0; |
215 | virtual Todo *todo( QString, QString ) = 0; | 216 | virtual Todo *todo( QString, QString ) = 0; |
216 | /** | 217 | /** |
217 | Returns list of todos due on the specified date. | 218 | Returns list of todos due on the specified date. |
218 | */ | 219 | */ |
219 | virtual QPtrList<Todo> todos( const QDate &date ) = 0; | 220 | virtual QPtrList<Todo> todos( const QDate &date ) = 0; |
220 | /** | 221 | /** |
221 | Return unfiltered list of todos. | 222 | Return unfiltered list of todos. |
222 | */ | 223 | */ |
223 | virtual QPtrList<Todo> rawTodos() = 0; | 224 | virtual QPtrList<Todo> rawTodos() = 0; |
224 | 225 | ||
225 | /** | 226 | /** |
226 | Add a Journal entry to calendar. | 227 | Add a Journal entry to calendar. |
227 | 228 | ||
228 | @return true on success, false on error. | 229 | @return true on success, false on error. |
229 | */ | 230 | */ |
230 | virtual bool addJournal( Journal * ) = 0; | 231 | virtual bool addJournal( Journal * ) = 0; |
231 | /** | 232 | /** |
232 | Return Journal for given date. | 233 | Return Journal for given date. |
233 | */ | 234 | */ |
234 | virtual Journal *journal( const QDate & ) = 0; | 235 | virtual Journal *journal( const QDate & ) = 0; |
235 | /** | 236 | /** |
236 | Return Journal with given UID. | 237 | Return Journal with given UID. |
237 | */ | 238 | */ |
238 | virtual Journal *journal( const QString &UID ) = 0; | 239 | virtual Journal *journal( const QString &UID ) = 0; |
239 | /** | 240 | /** |
240 | Return list of all Journal entries. | 241 | Return list of all Journal entries. |
241 | */ | 242 | */ |
242 | virtual QPtrList<Journal> journals() = 0; | 243 | virtual QPtrList<Journal> journals() = 0; |
243 | 244 | ||
244 | /** | 245 | /** |
245 | Searches all incidence types for an incidence with this unique | 246 | Searches all incidence types for an incidence with this unique |
246 | string identifier, returns a pointer or null. | 247 | string identifier, returns a pointer or null. |
247 | */ | 248 | */ |
248 | Incidence* incidence( const QString&UID ); | 249 | Incidence* incidence( const QString&UID ); |
249 | 250 | ||
250 | /** | 251 | /** |
251 | Setup relations for an incidence. | 252 | Setup relations for an incidence. |
252 | */ | 253 | */ |
253 | virtual void setupRelations( Incidence * ); | 254 | virtual void setupRelations( Incidence * ); |
254 | /** | 255 | /** |
255 | Remove all relations to an incidence | 256 | Remove all relations to an incidence |
256 | */ | 257 | */ |
257 | virtual void removeRelations( Incidence * ); | 258 | virtual void removeRelations( Incidence * ); |
258 | 259 | ||
259 | /** | 260 | /** |
260 | Set calendar filter, which filters events for the events() functions. | 261 | Set calendar filter, which filters events for the events() functions. |
261 | The Filter object is owned by the caller. | 262 | The Filter object is owned by the caller. |
262 | */ | 263 | */ |
263 | void setFilter( CalFilter * ); | 264 | void setFilter( CalFilter * ); |
264 | /** | 265 | /** |
265 | Return calendar filter. | 266 | Return calendar filter. |
266 | */ | 267 | */ |
267 | CalFilter *filter(); | 268 | CalFilter *filter(); |
268 | virtual QDateTime nextAlarm( int daysTo ) = 0; | 269 | virtual QDateTime nextAlarm( int daysTo ) = 0; |
269 | virtual QString nextSummary( ) const = 0; | 270 | virtual QString nextSummary( ) const = 0; |
270 | virtual void reInitAlarmSettings() = 0; | 271 | virtual void reInitAlarmSettings() = 0; |
271 | virtual QDateTime nextAlarmEventDateTime() const = 0; | 272 | virtual QDateTime nextAlarmEventDateTime() const = 0; |
272 | virtual void checkAlarmForIncidence( Incidence *, bool ) = 0; | 273 | virtual void checkAlarmForIncidence( Incidence *, bool ) = 0; |
273 | /** | 274 | /** |
274 | Return all alarms, which ocur in the given time interval. | 275 | Return all alarms, which ocur in the given time interval. |
275 | */ | 276 | */ |
276 | virtual Alarm::List alarms( const QDateTime &from, | 277 | virtual Alarm::List alarms( const QDateTime &from, |
277 | const QDateTime &to ) = 0; | 278 | const QDateTime &to ) = 0; |
278 | 279 | ||
279 | class Observer { | 280 | class Observer { |
280 | public: | 281 | public: |
281 | virtual void calendarModified( bool, Calendar * ) = 0; | 282 | virtual void calendarModified( bool, Calendar * ) = 0; |
282 | }; | 283 | }; |
283 | 284 | ||
284 | void registerObserver( Observer * ); | 285 | void registerObserver( Observer * ); |
285 | 286 | ||
286 | void setModified( bool ); | 287 | void setModified( bool ); |
287 | 288 | ||
288 | /** | 289 | /** |
289 | Set product id returned by loadedProductId(). This function is only | 290 | Set product id returned by loadedProductId(). This function is only |
290 | useful for the calendar loading code. | 291 | useful for the calendar loading code. |
291 | */ | 292 | */ |
292 | void setLoadedProductId( const QString & ); | 293 | void setLoadedProductId( const QString & ); |
293 | /** | 294 | /** |
294 | Return product id taken from file that has been loaded. Returns | 295 | Return product id taken from file that has been loaded. Returns |
295 | QString::null, if no calendar has been loaded. | 296 | QString::null, if no calendar has been loaded. |
296 | */ | 297 | */ |
297 | QString loadedProductId(); | 298 | QString loadedProductId(); |
298 | 299 | ||
299 | signals: | 300 | signals: |
300 | void calendarChanged(); | 301 | void calendarChanged(); |
301 | void calendarSaved(); | 302 | void calendarSaved(); |
302 | void calendarLoaded(); | 303 | void calendarLoaded(); |
303 | void addAlarm(const QDateTime &qdt, const QString ¬i ); | 304 | void addAlarm(const QDateTime &qdt, const QString ¬i ); |
304 | void removeAlarm(const QDateTime &qdt, const QString ¬i ); | 305 | void removeAlarm(const QDateTime &qdt, const QString ¬i ); |
305 | 306 | ||
306 | protected: | 307 | protected: |
307 | /** | 308 | /** |
308 | Get unfiltered events, which occur on the given date. | 309 | Get unfiltered events, which occur on the given date. |
309 | */ | 310 | */ |
310 | virtual QPtrList<Event> rawEventsForDate( const QDateTime &qdt ) = 0; | 311 | virtual QPtrList<Event> rawEventsForDate( const QDateTime &qdt ) = 0; |
311 | /** | 312 | /** |
312 | Get unfiltered events, which occur on the given date. | 313 | Get unfiltered events, which occur on the given date. |
313 | */ | 314 | */ |
314 | virtual QPtrList<Event> rawEventsForDate( const QDate &date, | 315 | virtual QPtrList<Event> rawEventsForDate( const QDate &date, |
315 | bool sorted = false ) = 0; | 316 | bool sorted = false ) = 0; |
316 | /** | 317 | /** |
317 | Get events in a range of dates. If inclusive is set to true, only events | 318 | Get events in a range of dates. If inclusive is set to true, only events |
318 | are returned, which are completely included in the range. | 319 | are returned, which are completely included in the range. |
319 | */ | 320 | */ |
320 | virtual QPtrList<Event> rawEvents( const QDate &start, const QDate &end, | 321 | virtual QPtrList<Event> rawEvents( const QDate &start, const QDate &end, |
321 | bool inclusive = false ) = 0; | 322 | bool inclusive = false ) = 0; |
322 | Incidence *mNextAlarmIncidence; | 323 | Incidence *mNextAlarmIncidence; |
323 | 324 | ||
324 | private: | 325 | private: |
325 | void init(); | 326 | void init(); |
326 | 327 | ||
327 | QString mOwner; // who the calendar belongs to | 328 | QString mOwner; // who the calendar belongs to |
328 | QString mOwnerEmail; // email address of the owner | 329 | QString mOwnerEmail; // email address of the owner |
329 | int mTimeZone; // timezone OFFSET from GMT (MINUTES) | 330 | int mTimeZone; // timezone OFFSET from GMT (MINUTES) |
330 | bool mLocalTime; // use local time, not UTC or a time zone | 331 | bool mLocalTime; // use local time, not UTC or a time zone |
331 | 332 | ||
332 | CalFilter *mFilter; | 333 | CalFilter *mFilter; |
333 | CalFilter *mDefaultFilter; | 334 | CalFilter *mDefaultFilter; |
334 | 335 | ||
335 | QString mTimeZoneId; | 336 | QString mTimeZoneId; |
336 | 337 | ||
337 | Observer *mObserver; | 338 | Observer *mObserver; |
338 | bool mNewObserver; | 339 | bool mNewObserver; |
339 | 340 | ||
340 | bool mModified; | 341 | bool mModified; |
341 | 342 | ||
342 | QString mLoadedProductId; | 343 | QString mLoadedProductId; |
343 | 344 | ||
344 | // This list is used to put together related todos | 345 | // This list is used to put together related todos |
345 | QDict<Incidence> mOrphans; | 346 | QDict<Incidence> mOrphans; |
346 | QDict<Incidence> mOrphanUids; | 347 | QDict<Incidence> mOrphanUids; |
347 | }; | 348 | }; |
348 | 349 | ||
349 | } | 350 | } |
350 | 351 | ||
351 | #endif | 352 | #endif |