-rw-r--r-- | libkcal/calendar.cpp | 16 | ||||
-rw-r--r-- | libkcal/calendar.h | 1 |
2 files changed, 17 insertions, 0 deletions
diff --git a/libkcal/calendar.cpp b/libkcal/calendar.cpp index a3977d7..eeb5f48 100644 --- a/libkcal/calendar.cpp +++ b/libkcal/calendar.cpp | |||
@@ -155,192 +155,208 @@ QString Calendar::getTimeZoneStr() const | |||
155 | if (mLocalTime) | 155 | if (mLocalTime) |
156 | return ""; | 156 | return ""; |
157 | QString tmpStr; | 157 | QString tmpStr; |
158 | int hours = abs(mTimeZone / 60); | 158 | int hours = abs(mTimeZone / 60); |
159 | int minutes = abs(mTimeZone % 60); | 159 | int minutes = abs(mTimeZone % 60); |
160 | bool neg = mTimeZone < 0; | 160 | bool neg = mTimeZone < 0; |
161 | 161 | ||
162 | tmpStr.sprintf("%c%.2d%.2d", | 162 | tmpStr.sprintf("%c%.2d%.2d", |
163 | (neg ? '-' : '+'), | 163 | (neg ? '-' : '+'), |
164 | hours, minutes); | 164 | hours, minutes); |
165 | return tmpStr; | 165 | return tmpStr; |
166 | } | 166 | } |
167 | 167 | ||
168 | void Calendar::setTimeZone(int tz) | 168 | void Calendar::setTimeZone(int tz) |
169 | { | 169 | { |
170 | mTimeZone = tz; | 170 | mTimeZone = tz; |
171 | mLocalTime = false; | 171 | mLocalTime = false; |
172 | 172 | ||
173 | setModified( true ); | 173 | setModified( true ); |
174 | } | 174 | } |
175 | 175 | ||
176 | int Calendar::getTimeZone() const | 176 | int Calendar::getTimeZone() const |
177 | { | 177 | { |
178 | return mTimeZone; | 178 | return mTimeZone; |
179 | } | 179 | } |
180 | 180 | ||
181 | void Calendar::setTimeZoneId(const QString &id) | 181 | void Calendar::setTimeZoneId(const QString &id) |
182 | { | 182 | { |
183 | mTimeZoneId = id; | 183 | mTimeZoneId = id; |
184 | mLocalTime = false; | 184 | mLocalTime = false; |
185 | mTimeZone = KGlobal::locale()->timezoneOffset(mTimeZoneId); | 185 | mTimeZone = KGlobal::locale()->timezoneOffset(mTimeZoneId); |
186 | if ( mTimeZone > 1000) | 186 | if ( mTimeZone > 1000) |
187 | setLocalTime(); | 187 | setLocalTime(); |
188 | //qDebug("Calendar::setTimeZoneOffset %s %d ",mTimeZoneId.latin1(), mTimeZone); | 188 | //qDebug("Calendar::setTimeZoneOffset %s %d ",mTimeZoneId.latin1(), mTimeZone); |
189 | setModified( true ); | 189 | setModified( true ); |
190 | } | 190 | } |
191 | 191 | ||
192 | QString Calendar::timeZoneId() const | 192 | QString Calendar::timeZoneId() const |
193 | { | 193 | { |
194 | return mTimeZoneId; | 194 | return mTimeZoneId; |
195 | } | 195 | } |
196 | 196 | ||
197 | void Calendar::setLocalTime() | 197 | void Calendar::setLocalTime() |
198 | { | 198 | { |
199 | //qDebug("Calendar::setLocalTime() "); | 199 | //qDebug("Calendar::setLocalTime() "); |
200 | mLocalTime = true; | 200 | mLocalTime = true; |
201 | mTimeZone = 0; | 201 | mTimeZone = 0; |
202 | mTimeZoneId = ""; | 202 | mTimeZoneId = ""; |
203 | 203 | ||
204 | setModified( true ); | 204 | setModified( true ); |
205 | } | 205 | } |
206 | 206 | ||
207 | bool Calendar::isLocalTime() const | 207 | bool Calendar::isLocalTime() const |
208 | { | 208 | { |
209 | return mLocalTime; | 209 | return mLocalTime; |
210 | } | 210 | } |
211 | 211 | ||
212 | const QString &Calendar::getEmail() | 212 | const QString &Calendar::getEmail() |
213 | { | 213 | { |
214 | return mOwnerEmail; | 214 | return mOwnerEmail; |
215 | } | 215 | } |
216 | 216 | ||
217 | void Calendar::setEmail(const QString &e) | 217 | void Calendar::setEmail(const QString &e) |
218 | { | 218 | { |
219 | mOwnerEmail = e; | 219 | mOwnerEmail = e; |
220 | 220 | ||
221 | setModified( true ); | 221 | setModified( true ); |
222 | } | 222 | } |
223 | 223 | ||
224 | void Calendar::setFilter(CalFilter *filter) | 224 | void Calendar::setFilter(CalFilter *filter) |
225 | { | 225 | { |
226 | mFilter = filter; | 226 | mFilter = filter; |
227 | } | 227 | } |
228 | 228 | ||
229 | CalFilter *Calendar::filter() | 229 | CalFilter *Calendar::filter() |
230 | { | 230 | { |
231 | return mFilter; | 231 | return mFilter; |
232 | } | 232 | } |
233 | 233 | ||
234 | QPtrList<Incidence> Calendar::incidences() | 234 | QPtrList<Incidence> Calendar::incidences() |
235 | { | 235 | { |
236 | QPtrList<Incidence> incidences; | 236 | QPtrList<Incidence> incidences; |
237 | 237 | ||
238 | Incidence *i; | 238 | Incidence *i; |
239 | 239 | ||
240 | QPtrList<Event> e = events(); | 240 | QPtrList<Event> e = events(); |
241 | for( i = e.first(); i; i = e.next() ) incidences.append( i ); | 241 | for( i = e.first(); i; i = e.next() ) incidences.append( i ); |
242 | 242 | ||
243 | QPtrList<Todo> t = todos(); | 243 | QPtrList<Todo> t = todos(); |
244 | for( i = t.first(); i; i = t.next() ) incidences.append( i ); | 244 | for( i = t.first(); i; i = t.next() ) incidences.append( i ); |
245 | 245 | ||
246 | QPtrList<Journal> j = journals(); | 246 | QPtrList<Journal> j = journals(); |
247 | for( i = j.first(); i; i = j.next() ) incidences.append( i ); | 247 | for( i = j.first(); i; i = j.next() ) incidences.append( i ); |
248 | 248 | ||
249 | return incidences; | 249 | return incidences; |
250 | } | 250 | } |
251 | |||
252 | void Calendar::resetPilotStat() | ||
253 | { | ||
254 | QPtrList<Incidence> incidences; | ||
255 | |||
256 | Incidence *i; | ||
257 | |||
258 | QPtrList<Event> e = rawEvents(); | ||
259 | for( i = e.first(); i; i = e.next() ) i->setPilotId( 0 ); | ||
260 | |||
261 | QPtrList<Todo> t = rawTodos(); | ||
262 | for( i = t.first(); i; i = t.next() ) i->setPilotId( 0 ); | ||
263 | |||
264 | QPtrList<Journal> j = journals(); | ||
265 | for( i = j.first(); i; i = j.next() ) i->setPilotId( 0 ); | ||
266 | } | ||
251 | void Calendar::resetTempSyncStat() | 267 | void Calendar::resetTempSyncStat() |
252 | { | 268 | { |
253 | QPtrList<Incidence> incidences; | 269 | QPtrList<Incidence> incidences; |
254 | 270 | ||
255 | Incidence *i; | 271 | Incidence *i; |
256 | 272 | ||
257 | QPtrList<Event> e = rawEvents(); | 273 | QPtrList<Event> e = rawEvents(); |
258 | for( i = e.first(); i; i = e.next() ) i->setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); | 274 | for( i = e.first(); i; i = e.next() ) i->setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); |
259 | 275 | ||
260 | QPtrList<Todo> t = rawTodos(); | 276 | QPtrList<Todo> t = rawTodos(); |
261 | for( i = t.first(); i; i = t.next() ) i->setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); | 277 | for( i = t.first(); i; i = t.next() ) i->setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); |
262 | 278 | ||
263 | QPtrList<Journal> j = journals(); | 279 | QPtrList<Journal> j = journals(); |
264 | for( i = j.first(); i; i = j.next() ) i->setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); | 280 | for( i = j.first(); i; i = j.next() ) i->setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); |
265 | } | 281 | } |
266 | QPtrList<Incidence> Calendar::rawIncidences() | 282 | QPtrList<Incidence> Calendar::rawIncidences() |
267 | { | 283 | { |
268 | QPtrList<Incidence> incidences; | 284 | QPtrList<Incidence> incidences; |
269 | 285 | ||
270 | Incidence *i; | 286 | Incidence *i; |
271 | 287 | ||
272 | QPtrList<Event> e = rawEvents(); | 288 | QPtrList<Event> e = rawEvents(); |
273 | for( i = e.first(); i; i = e.next() ) incidences.append( i ); | 289 | for( i = e.first(); i; i = e.next() ) incidences.append( i ); |
274 | 290 | ||
275 | QPtrList<Todo> t = rawTodos(); | 291 | QPtrList<Todo> t = rawTodos(); |
276 | for( i = t.first(); i; i = t.next() ) incidences.append( i ); | 292 | for( i = t.first(); i; i = t.next() ) incidences.append( i ); |
277 | 293 | ||
278 | QPtrList<Journal> j = journals(); | 294 | QPtrList<Journal> j = journals(); |
279 | for( i = j.first(); i; i = j.next() ) incidences.append( i ); | 295 | for( i = j.first(); i; i = j.next() ) incidences.append( i ); |
280 | 296 | ||
281 | return incidences; | 297 | return incidences; |
282 | } | 298 | } |
283 | 299 | ||
284 | QPtrList<Event> Calendar::events( const QDate &date, bool sorted ) | 300 | QPtrList<Event> Calendar::events( const QDate &date, bool sorted ) |
285 | { | 301 | { |
286 | QPtrList<Event> el = rawEventsForDate(date,sorted); | 302 | QPtrList<Event> el = rawEventsForDate(date,sorted); |
287 | mFilter->apply(&el); | 303 | mFilter->apply(&el); |
288 | return el; | 304 | return el; |
289 | } | 305 | } |
290 | 306 | ||
291 | QPtrList<Event> Calendar::events( const QDateTime &qdt ) | 307 | QPtrList<Event> Calendar::events( const QDateTime &qdt ) |
292 | { | 308 | { |
293 | QPtrList<Event> el = rawEventsForDate(qdt); | 309 | QPtrList<Event> el = rawEventsForDate(qdt); |
294 | mFilter->apply(&el); | 310 | mFilter->apply(&el); |
295 | return el; | 311 | return el; |
296 | } | 312 | } |
297 | 313 | ||
298 | QPtrList<Event> Calendar::events( const QDate &start, const QDate &end, | 314 | QPtrList<Event> Calendar::events( const QDate &start, const QDate &end, |
299 | bool inclusive) | 315 | bool inclusive) |
300 | { | 316 | { |
301 | QPtrList<Event> el = rawEvents(start,end,inclusive); | 317 | QPtrList<Event> el = rawEvents(start,end,inclusive); |
302 | mFilter->apply(&el); | 318 | mFilter->apply(&el); |
303 | return el; | 319 | return el; |
304 | } | 320 | } |
305 | 321 | ||
306 | QPtrList<Event> Calendar::events() | 322 | QPtrList<Event> Calendar::events() |
307 | { | 323 | { |
308 | QPtrList<Event> el = rawEvents(); | 324 | QPtrList<Event> el = rawEvents(); |
309 | mFilter->apply(&el); | 325 | mFilter->apply(&el); |
310 | return el; | 326 | return el; |
311 | } | 327 | } |
312 | 328 | ||
313 | 329 | ||
314 | bool Calendar::addIncidence(Incidence *i) | 330 | bool Calendar::addIncidence(Incidence *i) |
315 | { | 331 | { |
316 | Incidence::AddVisitor<Calendar> v(this); | 332 | Incidence::AddVisitor<Calendar> v(this); |
317 | 333 | ||
318 | return i->accept(v); | 334 | return i->accept(v); |
319 | } | 335 | } |
320 | void Calendar::deleteIncidence(Incidence *in) | 336 | void Calendar::deleteIncidence(Incidence *in) |
321 | { | 337 | { |
322 | if ( in->type() == "Event" ) | 338 | if ( in->type() == "Event" ) |
323 | deleteEvent( (Event*) in ); | 339 | deleteEvent( (Event*) in ); |
324 | else if ( in->type() =="Todo" ) | 340 | else if ( in->type() =="Todo" ) |
325 | deleteTodo( (Todo*) in); | 341 | deleteTodo( (Todo*) in); |
326 | else if ( in->type() =="Journal" ) | 342 | else if ( in->type() =="Journal" ) |
327 | deleteJournal( (Journal*) in ); | 343 | deleteJournal( (Journal*) in ); |
328 | } | 344 | } |
329 | 345 | ||
330 | Incidence* Calendar::incidence( const QString& uid ) | 346 | Incidence* Calendar::incidence( const QString& uid ) |
331 | { | 347 | { |
332 | Incidence* i; | 348 | Incidence* i; |
333 | 349 | ||
334 | if( (i = todo( uid )) != 0 ) | 350 | if( (i = todo( uid )) != 0 ) |
335 | return i; | 351 | return i; |
336 | if( (i = event( uid )) != 0 ) | 352 | if( (i = event( uid )) != 0 ) |
337 | return i; | 353 | return i; |
338 | if( (i = journal( uid )) != 0 ) | 354 | if( (i = journal( uid )) != 0 ) |
339 | return i; | 355 | return i; |
340 | 356 | ||
341 | return 0; | 357 | return 0; |
342 | } | 358 | } |
343 | 359 | ||
344 | QPtrList<Todo> Calendar::todos() | 360 | QPtrList<Todo> Calendar::todos() |
345 | { | 361 | { |
346 | QPtrList<Todo> tl = rawTodos(); | 362 | QPtrList<Todo> tl = rawTodos(); |
diff --git a/libkcal/calendar.h b/libkcal/calendar.h index c45d81f..d5294eb 100644 --- a/libkcal/calendar.h +++ b/libkcal/calendar.h | |||
@@ -1,165 +1,166 @@ | |||
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; |