-rw-r--r-- | libkcal/incidence.cpp | 13 | ||||
-rw-r--r-- | libkcal/incidence.h | 2 | ||||
-rw-r--r-- | libkcal/incidencebase.cpp | 13 | ||||
-rw-r--r-- | libkcal/incidencebase.h | 2 |
4 files changed, 29 insertions, 1 deletions
diff --git a/libkcal/incidence.cpp b/libkcal/incidence.cpp index 39c14f5..fe9f854 100644 --- a/libkcal/incidence.cpp +++ b/libkcal/incidence.cpp | |||
@@ -249,205 +249,218 @@ bool KCal::operator==( const Incidence& i1, const Incidence& i2 ) | |||
249 | return false; | 249 | return false; |
250 | } | 250 | } |
251 | if ( i1.mRecurrence != 0 && i2.mRecurrence != 0 ) { | 251 | if ( i1.mRecurrence != 0 && i2.mRecurrence != 0 ) { |
252 | if (!( *i1.mRecurrence == *i2.mRecurrence) ) { | 252 | if (!( *i1.mRecurrence == *i2.mRecurrence) ) { |
253 | //qDebug("recurrence is NOT equal "); | 253 | //qDebug("recurrence is NOT equal "); |
254 | return false; | 254 | return false; |
255 | } | 255 | } |
256 | } else { | 256 | } else { |
257 | // one ( or both ) recurrence is 0 | 257 | // one ( or both ) recurrence is 0 |
258 | if ( i1.mRecurrence == 0 ) { | 258 | if ( i1.mRecurrence == 0 ) { |
259 | if ( i2.mRecurrence != 0 && i2.mRecurrence->doesRecur() != Recurrence::rNone ) | 259 | if ( i2.mRecurrence != 0 && i2.mRecurrence->doesRecur() != Recurrence::rNone ) |
260 | return false; | 260 | return false; |
261 | } else { | 261 | } else { |
262 | // i1.mRecurrence != 0 | 262 | // i1.mRecurrence != 0 |
263 | // i2.mRecurrence == 0 | 263 | // i2.mRecurrence == 0 |
264 | if ( i1.mRecurrence->doesRecur() != Recurrence::rNone ) | 264 | if ( i1.mRecurrence->doesRecur() != Recurrence::rNone ) |
265 | return false; | 265 | return false; |
266 | } | 266 | } |
267 | } | 267 | } |
268 | 268 | ||
269 | return | 269 | return |
270 | // i1.created() == i2.created() && | 270 | // i1.created() == i2.created() && |
271 | stringCompare( i1.description(), i2.description() ) && | 271 | stringCompare( i1.description(), i2.description() ) && |
272 | stringCompare( i1.summary(), i2.summary() ) && | 272 | stringCompare( i1.summary(), i2.summary() ) && |
273 | i1.categories() == i2.categories() && | 273 | i1.categories() == i2.categories() && |
274 | // no need to compare mRelatedTo | 274 | // no need to compare mRelatedTo |
275 | stringCompare( i1.relatedToUid(), i2.relatedToUid() ) && | 275 | stringCompare( i1.relatedToUid(), i2.relatedToUid() ) && |
276 | // i1.relations() == i2.relations() && | 276 | // i1.relations() == i2.relations() && |
277 | i1.exDates() == i2.exDates() && | 277 | i1.exDates() == i2.exDates() && |
278 | i1.attachments() == i2.attachments() && | 278 | i1.attachments() == i2.attachments() && |
279 | i1.resources() == i2.resources() && | 279 | i1.resources() == i2.resources() && |
280 | i1.secrecy() == i2.secrecy() && | 280 | i1.secrecy() == i2.secrecy() && |
281 | i1.priority() == i2.priority() && | 281 | i1.priority() == i2.priority() && |
282 | i1.cancelled() == i2.cancelled() && | 282 | i1.cancelled() == i2.cancelled() && |
283 | stringCompare( i1.location(), i2.location() ); | 283 | stringCompare( i1.location(), i2.location() ); |
284 | } | 284 | } |
285 | 285 | ||
286 | Incidence* Incidence::recreateCloneException( QDate d ) | 286 | Incidence* Incidence::recreateCloneException( QDate d ) |
287 | { | 287 | { |
288 | Incidence* newInc = clone(); | 288 | Incidence* newInc = clone(); |
289 | newInc->recreate(); | 289 | newInc->recreate(); |
290 | if ( doesRecur() ) { | 290 | if ( doesRecur() ) { |
291 | addExDate( d ); | 291 | addExDate( d ); |
292 | newInc->recurrence()->unsetRecurs(); | 292 | newInc->recurrence()->unsetRecurs(); |
293 | if ( typeID() == eventID ) { | 293 | if ( typeID() == eventID ) { |
294 | int len = dtStart().secsTo( ((Event*)this)->dtEnd()); | 294 | int len = dtStart().secsTo( ((Event*)this)->dtEnd()); |
295 | QTime tim = dtStart().time(); | 295 | QTime tim = dtStart().time(); |
296 | newInc->setDtStart( QDateTime(d, tim) ); | 296 | newInc->setDtStart( QDateTime(d, tim) ); |
297 | ((Event*)newInc)->setDtEnd( newInc->dtStart().addSecs( len ) ); | 297 | ((Event*)newInc)->setDtEnd( newInc->dtStart().addSecs( len ) ); |
298 | } else { | 298 | } else { |
299 | int len = dtStart().secsTo( ((Todo*)this)->dtDue()); | 299 | int len = dtStart().secsTo( ((Todo*)this)->dtDue()); |
300 | QTime tim = ((Todo*)this)->dtDue().time(); | 300 | QTime tim = ((Todo*)this)->dtDue().time(); |
301 | ((Todo*)newInc)->setDtDue( QDateTime(d, tim) ); | 301 | ((Todo*)newInc)->setDtDue( QDateTime(d, tim) ); |
302 | ((Todo*)newInc)->setDtStart( ((Todo*)newInc)->dtDue().addSecs( -len ) ); | 302 | ((Todo*)newInc)->setDtStart( ((Todo*)newInc)->dtDue().addSecs( -len ) ); |
303 | ((Todo*)this)->setRecurDates(); | 303 | ((Todo*)this)->setRecurDates(); |
304 | } | 304 | } |
305 | newInc->setExDates( DateList () ); | 305 | newInc->setExDates( DateList () ); |
306 | } | 306 | } |
307 | return newInc; | 307 | return newInc; |
308 | } | 308 | } |
309 | 309 | ||
310 | void Incidence::recreate() | 310 | void Incidence::recreate() |
311 | { | 311 | { |
312 | setCreated(QDateTime::currentDateTime()); | 312 | setCreated(QDateTime::currentDateTime()); |
313 | 313 | ||
314 | setUid(CalFormat::createUniqueId()); | 314 | setUid(CalFormat::createUniqueId()); |
315 | 315 | ||
316 | setRevision(0); | 316 | setRevision(0); |
317 | setIDStr( ":" ); | 317 | setIDStr( ":" ); |
318 | setLastModified(QDateTime::currentDateTime()); | 318 | setLastModified(QDateTime::currentDateTime()); |
319 | } | 319 | } |
320 | void Incidence::cloneRelations( Incidence * newInc ) | 320 | void Incidence::cloneRelations( Incidence * newInc ) |
321 | { | 321 | { |
322 | // newInc is already a clone of this incidence | 322 | // newInc is already a clone of this incidence |
323 | Incidence * inc; | 323 | Incidence * inc; |
324 | Incidence * cloneInc; | 324 | Incidence * cloneInc; |
325 | QPtrList<Incidence> Relations = relations(); | 325 | QPtrList<Incidence> Relations = relations(); |
326 | for (inc=Relations.first();inc;inc=Relations.next()) { | 326 | for (inc=Relations.first();inc;inc=Relations.next()) { |
327 | cloneInc = inc->clone(); | 327 | cloneInc = inc->clone(); |
328 | cloneInc->recreate(); | 328 | cloneInc->recreate(); |
329 | cloneInc->setRelatedTo( newInc ); | 329 | cloneInc->setRelatedTo( newInc ); |
330 | inc->cloneRelations( cloneInc ); | 330 | inc->cloneRelations( cloneInc ); |
331 | } | 331 | } |
332 | } | 332 | } |
333 | void Incidence::setReadOnly( bool readOnly ) | 333 | void Incidence::setReadOnly( bool readOnly ) |
334 | { | 334 | { |
335 | IncidenceBase::setReadOnly( readOnly ); | 335 | IncidenceBase::setReadOnly( readOnly ); |
336 | if ( mRecurrence ) | 336 | if ( mRecurrence ) |
337 | mRecurrence->setRecurReadOnly( readOnly); | 337 | mRecurrence->setRecurReadOnly( readOnly); |
338 | } | 338 | } |
339 | void Incidence::setLastModifiedSubInvalid() | 339 | void Incidence::setLastModifiedSubInvalid() |
340 | { | 340 | { |
341 | mLastModifiedSub = QDateTime(); | 341 | mLastModifiedSub = QDateTime(); |
342 | if ( mRelatedTo ) | 342 | if ( mRelatedTo ) |
343 | mRelatedTo->setLastModifiedSubInvalid(); | 343 | mRelatedTo->setLastModifiedSubInvalid(); |
344 | } | 344 | } |
345 | QString Incidence::lastModifiedSubSortKey() const | ||
346 | { | ||
347 | if ( mLastModifiedSubSortKey.isEmpty() ) | ||
348 | return lastModifiedSortKey(); | ||
349 | return mLastModifiedSubSortKey; | ||
350 | } | ||
345 | QDateTime Incidence::lastModifiedSub() | 351 | QDateTime Incidence::lastModifiedSub() |
346 | { | 352 | { |
347 | if ( !mRelations.count() ) | 353 | if ( !mRelations.count() ) |
348 | return lastModified(); | 354 | return lastModified(); |
349 | if ( mLastModifiedSub.isValid() ) | 355 | if ( mLastModifiedSub.isValid() ) |
350 | return mLastModifiedSub; | 356 | return mLastModifiedSub; |
351 | mLastModifiedSub = lastModified(); | 357 | mLastModifiedSub = lastModified(); |
352 | Incidence * inc; | 358 | Incidence * inc; |
353 | QPtrList<Incidence> Relations = relations(); | 359 | QPtrList<Incidence> Relations = relations(); |
354 | for (inc=Relations.first();inc;inc=Relations.next()) { | 360 | for (inc=Relations.first();inc;inc=Relations.next()) { |
355 | if ( inc->lastModifiedSub() > mLastModifiedSub ) | 361 | if ( inc->lastModifiedSub() > mLastModifiedSub ) |
356 | mLastModifiedSub = inc->lastModifiedSub(); | 362 | mLastModifiedSub = inc->lastModifiedSub(); |
357 | } | 363 | } |
364 | mLastModifiedSubSortKey.sprintf("%04d%02d%02d%02d%02d%02d", | ||
365 | mLastModifiedSub.date().year(), | ||
366 | mLastModifiedSub.date().month(), | ||
367 | mLastModifiedSub.date().day(), | ||
368 | mLastModifiedSub.time().hour(), | ||
369 | mLastModifiedSub.time().minute(), | ||
370 | mLastModifiedSub.time().second() ); | ||
358 | return mLastModifiedSub; | 371 | return mLastModifiedSub; |
359 | } | 372 | } |
360 | void Incidence::setCreated(QDateTime created) | 373 | void Incidence::setCreated(QDateTime created) |
361 | { | 374 | { |
362 | if (mReadOnly) return; | 375 | if (mReadOnly) return; |
363 | mCreated = getEvenTime(created); | 376 | mCreated = getEvenTime(created); |
364 | } | 377 | } |
365 | 378 | ||
366 | QDateTime Incidence::created() const | 379 | QDateTime Incidence::created() const |
367 | { | 380 | { |
368 | return mCreated; | 381 | return mCreated; |
369 | } | 382 | } |
370 | 383 | ||
371 | void Incidence::setRevision(int rev) | 384 | void Incidence::setRevision(int rev) |
372 | { | 385 | { |
373 | if (mReadOnly) return; | 386 | if (mReadOnly) return; |
374 | mRevision = rev; | 387 | mRevision = rev; |
375 | 388 | ||
376 | updated(); | 389 | updated(); |
377 | } | 390 | } |
378 | 391 | ||
379 | int Incidence::revision() const | 392 | int Incidence::revision() const |
380 | { | 393 | { |
381 | return mRevision; | 394 | return mRevision; |
382 | } | 395 | } |
383 | 396 | ||
384 | void Incidence::setDtStart(const QDateTime &dtStart) | 397 | void Incidence::setDtStart(const QDateTime &dtStart) |
385 | { | 398 | { |
386 | 399 | ||
387 | QDateTime dt = getEvenTime(dtStart); | 400 | QDateTime dt = getEvenTime(dtStart); |
388 | 401 | ||
389 | if ( mRecurrence ) | 402 | if ( mRecurrence ) |
390 | mRecurrence->setRecurStart( dt); | 403 | mRecurrence->setRecurStart( dt); |
391 | IncidenceBase::setDtStart( dt ); | 404 | IncidenceBase::setDtStart( dt ); |
392 | } | 405 | } |
393 | 406 | ||
394 | void Incidence::setDescription(const QString &description) | 407 | void Incidence::setDescription(const QString &description) |
395 | { | 408 | { |
396 | if (mReadOnly) return; | 409 | if (mReadOnly) return; |
397 | mDescription = description; | 410 | mDescription = description; |
398 | updated(); | 411 | updated(); |
399 | } | 412 | } |
400 | 413 | ||
401 | QString Incidence::description() const | 414 | QString Incidence::description() const |
402 | { | 415 | { |
403 | return mDescription; | 416 | return mDescription; |
404 | } | 417 | } |
405 | 418 | ||
406 | 419 | ||
407 | void Incidence::setSummary(const QString &summary) | 420 | void Incidence::setSummary(const QString &summary) |
408 | { | 421 | { |
409 | if (mReadOnly) return; | 422 | if (mReadOnly) return; |
410 | mSummary = summary; | 423 | mSummary = summary; |
411 | updated(); | 424 | updated(); |
412 | } | 425 | } |
413 | 426 | ||
414 | QString Incidence::summary() const | 427 | QString Incidence::summary() const |
415 | { | 428 | { |
416 | return mSummary; | 429 | return mSummary; |
417 | } | 430 | } |
418 | void Incidence::checkCategories() | 431 | void Incidence::checkCategories() |
419 | { | 432 | { |
420 | mHoliday = mCategories.contains("Holiday") || mCategories.contains(i18n("Holiday")); | 433 | mHoliday = mCategories.contains("Holiday") || mCategories.contains(i18n("Holiday")); |
421 | mBirthday = mCategories.contains("Birthday") || mCategories.contains(i18n("Birthday")); | 434 | mBirthday = mCategories.contains("Birthday") || mCategories.contains(i18n("Birthday")); |
422 | mAnniversary = mCategories.contains("Anniversary") || mCategories.contains(i18n("Anniversary")); | 435 | mAnniversary = mCategories.contains("Anniversary") || mCategories.contains(i18n("Anniversary")); |
423 | } | 436 | } |
424 | 437 | ||
425 | void Incidence::addCategories(const QStringList &categories, bool addToRelations ) //addToRelations = false | 438 | void Incidence::addCategories(const QStringList &categories, bool addToRelations ) //addToRelations = false |
426 | { | 439 | { |
427 | if (mReadOnly) return; | 440 | if (mReadOnly) return; |
428 | int i; | 441 | int i; |
429 | for( i = 0; i < categories.count(); ++i ) { | 442 | for( i = 0; i < categories.count(); ++i ) { |
430 | if ( !mCategories.contains (categories[i])) | 443 | if ( !mCategories.contains (categories[i])) |
431 | mCategories.append( categories[i] ); | 444 | mCategories.append( categories[i] ); |
432 | } | 445 | } |
433 | checkCategories(); | 446 | checkCategories(); |
434 | updated(); | 447 | updated(); |
435 | if ( addToRelations ) { | 448 | if ( addToRelations ) { |
436 | Incidence * inc; | 449 | Incidence * inc; |
437 | QPtrList<Incidence> Relations = relations(); | 450 | QPtrList<Incidence> Relations = relations(); |
438 | for (inc=Relations.first();inc;inc=Relations.next()) { | 451 | for (inc=Relations.first();inc;inc=Relations.next()) { |
439 | inc->addCategories( categories, true ); | 452 | inc->addCategories( categories, true ); |
440 | } | 453 | } |
441 | } | 454 | } |
442 | } | 455 | } |
443 | 456 | ||
444 | void Incidence::setCategories(const QStringList &categories, bool setForRelations ) //setForRelations = false | 457 | void Incidence::setCategories(const QStringList &categories, bool setForRelations ) //setForRelations = false |
445 | { | 458 | { |
446 | if (mReadOnly) return; | 459 | if (mReadOnly) return; |
447 | mCategories = categories; | 460 | mCategories = categories; |
448 | checkCategories(); | 461 | checkCategories(); |
449 | updated(); | 462 | updated(); |
450 | if ( setForRelations ) { | 463 | if ( setForRelations ) { |
451 | Incidence * inc; | 464 | Incidence * inc; |
452 | QPtrList<Incidence> Relations = relations(); | 465 | QPtrList<Incidence> Relations = relations(); |
453 | for (inc=Relations.first();inc;inc=Relations.next()) { | 466 | for (inc=Relations.first();inc;inc=Relations.next()) { |
diff --git a/libkcal/incidence.h b/libkcal/incidence.h index eef9e64..dc49640 100644 --- a/libkcal/incidence.h +++ b/libkcal/incidence.h | |||
@@ -186,139 +186,141 @@ class Incidence : public IncidenceBase | |||
186 | DateList exDates() const; | 186 | DateList exDates() const; |
187 | /** sets the list of dates which are exceptions to the recurrence rule */ | 187 | /** sets the list of dates which are exceptions to the recurrence rule */ |
188 | void setExDates(const DateList &_exDates); | 188 | void setExDates(const DateList &_exDates); |
189 | void setExDates(const char *dates); | 189 | void setExDates(const char *dates); |
190 | /** Add a date to the list of exceptions of the recurrence rule. */ | 190 | /** Add a date to the list of exceptions of the recurrence rule. */ |
191 | void addExDate(const QDate &date); | 191 | void addExDate(const QDate &date); |
192 | 192 | ||
193 | /** returns true if there is an exception for this date in the recurrence | 193 | /** returns true if there is an exception for this date in the recurrence |
194 | rule set, or false otherwise. */ | 194 | rule set, or false otherwise. */ |
195 | bool isException(const QDate &qd) const; | 195 | bool isException(const QDate &qd) const; |
196 | 196 | ||
197 | /** add attachment to this event */ | 197 | /** add attachment to this event */ |
198 | void addAttachment(Attachment *attachment); | 198 | void addAttachment(Attachment *attachment); |
199 | /** remove and delete a specific attachment */ | 199 | /** remove and delete a specific attachment */ |
200 | void deleteAttachment(Attachment *attachment); | 200 | void deleteAttachment(Attachment *attachment); |
201 | /** remove and delete all attachments with this mime type */ | 201 | /** remove and delete all attachments with this mime type */ |
202 | void deleteAttachments(const QString& mime); | 202 | void deleteAttachments(const QString& mime); |
203 | /** return list of all associated attachments */ | 203 | /** return list of all associated attachments */ |
204 | QPtrList<Attachment> attachments() const; | 204 | QPtrList<Attachment> attachments() const; |
205 | /** find a list of attachments with this mime type */ | 205 | /** find a list of attachments with this mime type */ |
206 | QPtrList<Attachment> attachments(const QString& mime) const; | 206 | QPtrList<Attachment> attachments(const QString& mime) const; |
207 | 207 | ||
208 | /** sets the event's status the value specified. See the enumeration | 208 | /** sets the event's status the value specified. See the enumeration |
209 | * above for possible values. */ | 209 | * above for possible values. */ |
210 | void setSecrecy(int); | 210 | void setSecrecy(int); |
211 | /** return the event's secrecy. */ | 211 | /** return the event's secrecy. */ |
212 | int secrecy() const; | 212 | int secrecy() const; |
213 | /** return the event's secrecy in string format. */ | 213 | /** return the event's secrecy in string format. */ |
214 | QString secrecyStr() const; | 214 | QString secrecyStr() const; |
215 | /** return list of all availbale secrecy classes */ | 215 | /** return list of all availbale secrecy classes */ |
216 | static QStringList secrecyList(); | 216 | static QStringList secrecyList(); |
217 | /** return human-readable name of secrecy class */ | 217 | /** return human-readable name of secrecy class */ |
218 | static QString secrecyName(int); | 218 | static QString secrecyName(int); |
219 | 219 | ||
220 | /** returns TRUE if the date specified is one on which the event will | 220 | /** returns TRUE if the date specified is one on which the event will |
221 | * recur. */ | 221 | * recur. */ |
222 | bool recursOn(const QDate &qd) const; | 222 | bool recursOn(const QDate &qd) const; |
223 | 223 | ||
224 | // VEVENT and VTODO, but not VJOURNAL (move to EventBase class?): | 224 | // VEVENT and VTODO, but not VJOURNAL (move to EventBase class?): |
225 | 225 | ||
226 | /** set resources used, such as Office, Car, etc. */ | 226 | /** set resources used, such as Office, Car, etc. */ |
227 | void setResources(const QStringList &resources); | 227 | void setResources(const QStringList &resources); |
228 | /** return list of current resources */ | 228 | /** return list of current resources */ |
229 | QStringList resources() const; | 229 | QStringList resources() const; |
230 | 230 | ||
231 | /** set the event's priority, 0 is undefined, 1 highest (decreasing order) */ | 231 | /** set the event's priority, 0 is undefined, 1 highest (decreasing order) */ |
232 | void setPriority(int priority); | 232 | void setPriority(int priority); |
233 | /** get the event's priority */ | 233 | /** get the event's priority */ |
234 | int priority() const; | 234 | int priority() const; |
235 | 235 | ||
236 | /** All alarms that are associated with this incidence */ | 236 | /** All alarms that are associated with this incidence */ |
237 | QPtrList<Alarm> alarms() const; | 237 | QPtrList<Alarm> alarms() const; |
238 | /** Create a new alarm which is associated with this incidence */ | 238 | /** Create a new alarm which is associated with this incidence */ |
239 | Alarm* newAlarm(); | 239 | Alarm* newAlarm(); |
240 | /** Add an alarm which is associated with this incidence */ | 240 | /** Add an alarm which is associated with this incidence */ |
241 | void addAlarm(Alarm*); | 241 | void addAlarm(Alarm*); |
242 | /** Remove an alarm that is associated with this incidence */ | 242 | /** Remove an alarm that is associated with this incidence */ |
243 | void removeAlarm(Alarm*); | 243 | void removeAlarm(Alarm*); |
244 | /** Remove all alarms that are associated with this incidence */ | 244 | /** Remove all alarms that are associated with this incidence */ |
245 | void clearAlarms(); | 245 | void clearAlarms(); |
246 | /** return whether any alarm associated with this incidence is enabled */ | 246 | /** return whether any alarm associated with this incidence is enabled */ |
247 | bool isAlarmEnabled() const; | 247 | bool isAlarmEnabled() const; |
248 | 248 | ||
249 | /** | 249 | /** |
250 | Return the recurrence rule associated with this incidence. If there is | 250 | Return the recurrence rule associated with this incidence. If there is |
251 | none, returns an appropriate (non-0) object. | 251 | none, returns an appropriate (non-0) object. |
252 | */ | 252 | */ |
253 | Recurrence *recurrence(); | 253 | Recurrence *recurrence(); |
254 | void setRecurrence(Recurrence * r); | 254 | void setRecurrence(Recurrence * r); |
255 | /** | 255 | /** |
256 | Forward to Recurrence::doesRecur(). | 256 | Forward to Recurrence::doesRecur(). |
257 | */ | 257 | */ |
258 | ushort doesRecur() const; | 258 | ushort doesRecur() const; |
259 | 259 | ||
260 | /** set the event's/todo's location. Do _not_ use it with journal */ | 260 | /** set the event's/todo's location. Do _not_ use it with journal */ |
261 | void setLocation(const QString &location); | 261 | void setLocation(const QString &location); |
262 | /** return the event's/todo's location. Do _not_ use it with journal */ | 262 | /** return the event's/todo's location. Do _not_ use it with journal */ |
263 | QString location() const; | 263 | QString location() const; |
264 | /** returns TRUE or FALSE depending on whether the todo has a start date */ | 264 | /** returns TRUE or FALSE depending on whether the todo has a start date */ |
265 | bool hasStartDate() const; | 265 | bool hasStartDate() const; |
266 | /** sets the event's hasStartDate value. */ | 266 | /** sets the event's hasStartDate value. */ |
267 | void setHasStartDate(bool f); | 267 | void setHasStartDate(bool f); |
268 | QDateTime getNextOccurence( const QDateTime& dt, bool* yes ) const; | 268 | QDateTime getNextOccurence( const QDateTime& dt, bool* yes ) const; |
269 | bool cancelled() const; | 269 | bool cancelled() const; |
270 | void setCancelled( bool b ); | 270 | void setCancelled( bool b ); |
271 | 271 | ||
272 | bool hasRecurrenceID() const; | 272 | bool hasRecurrenceID() const; |
273 | void setHasRecurrenceID( bool b ); | 273 | void setHasRecurrenceID( bool b ); |
274 | 274 | ||
275 | void setRecurrenceID(QDateTime); | 275 | void setRecurrenceID(QDateTime); |
276 | QDateTime recurrenceID () const; | 276 | QDateTime recurrenceID () const; |
277 | QDateTime dtStart() const; | 277 | QDateTime dtStart() const; |
278 | bool isHoliday() const; | 278 | bool isHoliday() const; |
279 | bool isBirthday() const; | 279 | bool isBirthday() const; |
280 | bool isAnniversary() const; | 280 | bool isAnniversary() const; |
281 | QDateTime lastModifiedSub(); | 281 | QDateTime lastModifiedSub(); |
282 | QString lastModifiedSubSortKey() const; | ||
282 | QString recurrenceText() const; | 283 | QString recurrenceText() const; |
283 | void setLastModifiedSubInvalid(); | 284 | void setLastModifiedSubInvalid(); |
284 | 285 | ||
285 | virtual QString durationText(); | 286 | virtual QString durationText(); |
286 | QString durationText4Time( int secs ); | 287 | QString durationText4Time( int secs ); |
287 | Recurrence *mRecurrence; | 288 | Recurrence *mRecurrence; |
288 | protected: | 289 | protected: |
289 | QPtrList<Alarm> mAlarms; | 290 | QPtrList<Alarm> mAlarms; |
290 | QPtrList<Incidence> mRelations; | 291 | QPtrList<Incidence> mRelations; |
291 | QDateTime mRecurrenceID; | 292 | QDateTime mRecurrenceID; |
292 | bool mHasRecurrenceID; | 293 | bool mHasRecurrenceID; |
293 | private: | 294 | private: |
294 | void checkCategories(); | 295 | void checkCategories(); |
296 | QString mLastModifiedSubSortKey; | ||
295 | bool mHoliday, mBirthday, mAnniversary; | 297 | bool mHoliday, mBirthday, mAnniversary; |
296 | int mRevision; | 298 | int mRevision; |
297 | bool mCancelled; | 299 | bool mCancelled; |
298 | 300 | ||
299 | // base components of jounal, event and todo | 301 | // base components of jounal, event and todo |
300 | QDateTime mCreated; | 302 | QDateTime mCreated; |
301 | QDateTime mLastModifiedSub; | 303 | QDateTime mLastModifiedSub; |
302 | QString mDescription; | 304 | QString mDescription; |
303 | QString mSummary; | 305 | QString mSummary; |
304 | QStringList mCategories; | 306 | QStringList mCategories; |
305 | Incidence *mRelatedTo; | 307 | Incidence *mRelatedTo; |
306 | QString mRelatedToUid; | 308 | QString mRelatedToUid; |
307 | DateList mExDates; | 309 | DateList mExDates; |
308 | QPtrList<Attachment> mAttachments; | 310 | QPtrList<Attachment> mAttachments; |
309 | QStringList mResources; | 311 | QStringList mResources; |
310 | bool mHasStartDate; // if todo has associated start date | 312 | bool mHasStartDate; // if todo has associated start date |
311 | 313 | ||
312 | int mSecrecy; | 314 | int mSecrecy; |
313 | int mPriority; // 1 = highest, 2 = less, etc. | 315 | int mPriority; // 1 = highest, 2 = less, etc. |
314 | 316 | ||
315 | //QPtrList<Alarm> mAlarms; | 317 | //QPtrList<Alarm> mAlarms; |
316 | 318 | ||
317 | QString mLocation; | 319 | QString mLocation; |
318 | }; | 320 | }; |
319 | 321 | ||
320 | bool operator==( const Incidence&, const Incidence& ); | 322 | bool operator==( const Incidence&, const Incidence& ); |
321 | 323 | ||
322 | } | 324 | } |
323 | 325 | ||
324 | #endif | 326 | #endif |
diff --git a/libkcal/incidencebase.cpp b/libkcal/incidencebase.cpp index 022dead..cfef973 100644 --- a/libkcal/incidencebase.cpp +++ b/libkcal/incidencebase.cpp | |||
@@ -100,203 +100,214 @@ bool KCal::operator==( const IncidenceBase& i1, const IncidenceBase& i2 ) | |||
100 | //qDebug("Attendee not equal "); | 100 | //qDebug("Attendee not equal "); |
101 | return false; | 101 | return false; |
102 | } | 102 | } |
103 | a1 = i1.attendees().next(); | 103 | a1 = i1.attendees().next(); |
104 | a2 = i2.attendees().next(); | 104 | a2 = i2.attendees().next(); |
105 | } | 105 | } |
106 | } | 106 | } |
107 | //if ( i1.dtStart() != i2.dtStart() ) | 107 | //if ( i1.dtStart() != i2.dtStart() ) |
108 | // return false; | 108 | // return false; |
109 | #if 0 | 109 | #if 0 |
110 | qDebug("1 %d ",i1.doesFloat() == i2.doesFloat() ); | 110 | qDebug("1 %d ",i1.doesFloat() == i2.doesFloat() ); |
111 | qDebug("1 %d ",i1.duration() == i2.duration() ); | 111 | qDebug("1 %d ",i1.duration() == i2.duration() ); |
112 | qDebug("3 %d ",i1.hasDuration() == i2.hasDuration() ); | 112 | qDebug("3 %d ",i1.hasDuration() == i2.hasDuration() ); |
113 | qDebug("1 %d ",i1.pilotId() == i2.pilotId() ); | 113 | qDebug("1 %d ",i1.pilotId() == i2.pilotId() ); |
114 | qDebug("1 %d %d %d",i1.syncStatus() == i2.syncStatus() , i1.syncStatus(),i2.syncStatus() ); | 114 | qDebug("1 %d %d %d",i1.syncStatus() == i2.syncStatus() , i1.syncStatus(),i2.syncStatus() ); |
115 | qDebug("6 %d ",i1.organizer() == i2.organizer() ); | 115 | qDebug("6 %d ",i1.organizer() == i2.organizer() ); |
116 | 116 | ||
117 | #endif | 117 | #endif |
118 | if ( i1.hasDuration() == i2.hasDuration() ) { | 118 | if ( i1.hasDuration() == i2.hasDuration() ) { |
119 | if ( i1.hasDuration() ) { | 119 | if ( i1.hasDuration() ) { |
120 | if ( i1.duration() != i2.duration() ) | 120 | if ( i1.duration() != i2.duration() ) |
121 | return false; | 121 | return false; |
122 | } | 122 | } |
123 | } else { | 123 | } else { |
124 | return false; | 124 | return false; |
125 | } | 125 | } |
126 | 126 | ||
127 | return ( i1.organizer() == i2.organizer() && | 127 | return ( i1.organizer() == i2.organizer() && |
128 | // i1.uid() == i2.uid() && | 128 | // i1.uid() == i2.uid() && |
129 | // Don't compare lastModified, otherwise the operator is not | 129 | // Don't compare lastModified, otherwise the operator is not |
130 | // of much use. We are not comparing for identity, after all. | 130 | // of much use. We are not comparing for identity, after all. |
131 | i1.doesFloat() == i2.doesFloat() && | 131 | i1.doesFloat() == i2.doesFloat() && |
132 | i1.pilotId() == i2.pilotId() );// && i1.syncStatus() == i2.syncStatus() ); | 132 | i1.pilotId() == i2.pilotId() );// && i1.syncStatus() == i2.syncStatus() ); |
133 | // no need to compare mObserver | 133 | // no need to compare mObserver |
134 | } | 134 | } |
135 | 135 | ||
136 | 136 | ||
137 | QDateTime IncidenceBase::getEvenTime( QDateTime dt ) | 137 | QDateTime IncidenceBase::getEvenTime( QDateTime dt ) |
138 | { | 138 | { |
139 | QTime t = dt.time(); | 139 | QTime t = dt.time(); |
140 | dt.setTime( QTime (t.hour (), t.minute (), t.second () ) ); | 140 | dt.setTime( QTime (t.hour (), t.minute (), t.second () ) ); |
141 | return dt; | 141 | return dt; |
142 | } | 142 | } |
143 | 143 | ||
144 | bool IncidenceBase::isTagged() const | 144 | bool IncidenceBase::isTagged() const |
145 | { | 145 | { |
146 | return mIsTagged; | 146 | return mIsTagged; |
147 | } | 147 | } |
148 | void IncidenceBase::setTagged( bool b) | 148 | void IncidenceBase::setTagged( bool b) |
149 | { | 149 | { |
150 | mIsTagged = b; | 150 | mIsTagged = b; |
151 | } | 151 | } |
152 | void IncidenceBase::setCalID( int id ) | 152 | void IncidenceBase::setCalID( int id ) |
153 | { | 153 | { |
154 | if ( mCalID > 0 ) { | 154 | if ( mCalID > 0 ) { |
155 | blockLastModified = true; | 155 | blockLastModified = true; |
156 | updated(); | 156 | updated(); |
157 | blockLastModified = false; | 157 | blockLastModified = false; |
158 | } | 158 | } |
159 | mCalID = id; | 159 | mCalID = id; |
160 | } | 160 | } |
161 | int IncidenceBase::calID() const | 161 | int IncidenceBase::calID() const |
162 | { | 162 | { |
163 | return mCalID; | 163 | return mCalID; |
164 | } | 164 | } |
165 | void IncidenceBase::setCalEnabled( bool b ) | 165 | void IncidenceBase::setCalEnabled( bool b ) |
166 | { | 166 | { |
167 | mCalEnabled = b; | 167 | mCalEnabled = b; |
168 | } | 168 | } |
169 | bool IncidenceBase::calEnabled() const | 169 | bool IncidenceBase::calEnabled() const |
170 | { | 170 | { |
171 | return mCalEnabled; | 171 | return mCalEnabled; |
172 | } | 172 | } |
173 | 173 | ||
174 | void IncidenceBase::setAlarmEnabled( bool b ) | 174 | void IncidenceBase::setAlarmEnabled( bool b ) |
175 | { | 175 | { |
176 | mAlarmEnabled = b; | 176 | mAlarmEnabled = b; |
177 | } | 177 | } |
178 | bool IncidenceBase::alarmEnabled() const | 178 | bool IncidenceBase::alarmEnabled() const |
179 | { | 179 | { |
180 | return mAlarmEnabled; | 180 | return mAlarmEnabled; |
181 | } | 181 | } |
182 | 182 | ||
183 | 183 | ||
184 | void IncidenceBase::setUid(const QString &uid) | 184 | void IncidenceBase::setUid(const QString &uid) |
185 | { | 185 | { |
186 | mUid = uid; | 186 | mUid = uid; |
187 | updated(); | 187 | updated(); |
188 | } | 188 | } |
189 | 189 | ||
190 | QString IncidenceBase::uid() const | 190 | QString IncidenceBase::uid() const |
191 | { | 191 | { |
192 | return mUid; | 192 | return mUid; |
193 | } | 193 | } |
194 | void IncidenceBase::setLastModifiedSubInvalid() | 194 | void IncidenceBase::setLastModifiedSubInvalid() |
195 | { | 195 | { |
196 | 196 | // virtual method | |
197 | } | 197 | } |
198 | void IncidenceBase::setLastModified(const QDateTime &lm) | 198 | void IncidenceBase::setLastModified(const QDateTime &lm) |
199 | { | 199 | { |
200 | if ( blockLastModified ) return; | 200 | if ( blockLastModified ) return; |
201 | // DON'T! updated() because we call this from | 201 | // DON'T! updated() because we call this from |
202 | // Calendar::updateEvent(). | 202 | // Calendar::updateEvent(). |
203 | mLastModified = getEvenTime(lm); | 203 | mLastModified = getEvenTime(lm); |
204 | mLastModifiedKey.sprintf("%04d%02d%02d%02d%02d%02d", | ||
205 | mLastModified.date().year(), | ||
206 | mLastModified.date().month(), | ||
207 | mLastModified.date().day(), | ||
208 | mLastModified.time().hour(), | ||
209 | mLastModified.time().minute(), | ||
210 | mLastModified.time().second() ); | ||
204 | setLastModifiedSubInvalid(); | 211 | setLastModifiedSubInvalid(); |
205 | //qDebug("IncidenceBase::setLastModified %s ",lm.toString().latin1()); | 212 | //qDebug("IncidenceBase::setLastModified %s ",lm.toString().latin1()); |
206 | } | 213 | } |
214 | QString IncidenceBase::lastModifiedSortKey() const | ||
215 | { | ||
216 | return mLastModifiedKey; | ||
217 | } | ||
207 | 218 | ||
208 | QDateTime IncidenceBase::lastModified() const | 219 | QDateTime IncidenceBase::lastModified() const |
209 | { | 220 | { |
210 | return mLastModified; | 221 | return mLastModified; |
211 | } | 222 | } |
212 | 223 | ||
213 | void IncidenceBase::setOrganizer(const QString &o) | 224 | void IncidenceBase::setOrganizer(const QString &o) |
214 | { | 225 | { |
215 | // we don't check for readonly here, because it is | 226 | // we don't check for readonly here, because it is |
216 | // possible that by setting the organizer we are changing | 227 | // possible that by setting the organizer we are changing |
217 | // the event's readonly status... | 228 | // the event's readonly status... |
218 | mOrganizer = o; | 229 | mOrganizer = o; |
219 | if (mOrganizer.left(7).upper() == "MAILTO:") | 230 | if (mOrganizer.left(7).upper() == "MAILTO:") |
220 | mOrganizer = mOrganizer.remove(0,7); | 231 | mOrganizer = mOrganizer.remove(0,7); |
221 | 232 | ||
222 | updated(); | 233 | updated(); |
223 | } | 234 | } |
224 | 235 | ||
225 | QString IncidenceBase::organizer() const | 236 | QString IncidenceBase::organizer() const |
226 | { | 237 | { |
227 | return mOrganizer; | 238 | return mOrganizer; |
228 | } | 239 | } |
229 | 240 | ||
230 | void IncidenceBase::setReadOnly( bool readOnly ) | 241 | void IncidenceBase::setReadOnly( bool readOnly ) |
231 | { | 242 | { |
232 | mReadOnly = readOnly; | 243 | mReadOnly = readOnly; |
233 | } | 244 | } |
234 | 245 | ||
235 | void IncidenceBase::setDtStart(const QDateTime &dtStart) | 246 | void IncidenceBase::setDtStart(const QDateTime &dtStart) |
236 | { | 247 | { |
237 | // if (mReadOnly) return; | 248 | // if (mReadOnly) return; |
238 | mDtStart = getEvenTime(dtStart); | 249 | mDtStart = getEvenTime(dtStart); |
239 | updated(); | 250 | updated(); |
240 | } | 251 | } |
241 | 252 | ||
242 | 253 | ||
243 | QDateTime IncidenceBase::dtStart() const | 254 | QDateTime IncidenceBase::dtStart() const |
244 | { | 255 | { |
245 | return mDtStart; | 256 | return mDtStart; |
246 | } | 257 | } |
247 | 258 | ||
248 | QString IncidenceBase::dtStartTimeStr() const | 259 | QString IncidenceBase::dtStartTimeStr() const |
249 | { | 260 | { |
250 | return KGlobal::locale()->formatTime(dtStart().time()); | 261 | return KGlobal::locale()->formatTime(dtStart().time()); |
251 | } | 262 | } |
252 | 263 | ||
253 | QString IncidenceBase::dtStartDateStr(bool shortfmt) const | 264 | QString IncidenceBase::dtStartDateStr(bool shortfmt) const |
254 | { | 265 | { |
255 | return KGlobal::locale()->formatDate(dtStart().date(),shortfmt); | 266 | return KGlobal::locale()->formatDate(dtStart().date(),shortfmt); |
256 | } | 267 | } |
257 | 268 | ||
258 | QString IncidenceBase::dtStartStr(bool shortfmt) const | 269 | QString IncidenceBase::dtStartStr(bool shortfmt) const |
259 | { | 270 | { |
260 | if ( doesFloat() ) | 271 | if ( doesFloat() ) |
261 | return KGlobal::locale()->formatDate(dtStart().date(),shortfmt); | 272 | return KGlobal::locale()->formatDate(dtStart().date(),shortfmt); |
262 | return KGlobal::locale()->formatDateTime(dtStart(), shortfmt); | 273 | return KGlobal::locale()->formatDateTime(dtStart(), shortfmt); |
263 | } | 274 | } |
264 | 275 | ||
265 | 276 | ||
266 | bool IncidenceBase::doesFloat() const | 277 | bool IncidenceBase::doesFloat() const |
267 | { | 278 | { |
268 | return mFloats; | 279 | return mFloats; |
269 | } | 280 | } |
270 | 281 | ||
271 | void IncidenceBase::setFloats(bool f) | 282 | void IncidenceBase::setFloats(bool f) |
272 | { | 283 | { |
273 | if (mReadOnly) return; | 284 | if (mReadOnly) return; |
274 | mFloats = f; | 285 | mFloats = f; |
275 | updated(); | 286 | updated(); |
276 | } | 287 | } |
277 | 288 | ||
278 | 289 | ||
279 | bool IncidenceBase::addAttendee(Attendee *a, bool doupdate) | 290 | bool IncidenceBase::addAttendee(Attendee *a, bool doupdate) |
280 | { | 291 | { |
281 | if (mReadOnly) return false; | 292 | if (mReadOnly) return false; |
282 | if (a->name().left(7).upper() == "MAILTO:") | 293 | if (a->name().left(7).upper() == "MAILTO:") |
283 | a->setName(a->name().remove(0,7)); | 294 | a->setName(a->name().remove(0,7)); |
284 | 295 | ||
285 | QPtrListIterator<Attendee> qli(mAttendees); | 296 | QPtrListIterator<Attendee> qli(mAttendees); |
286 | 297 | ||
287 | qli.toFirst(); | 298 | qli.toFirst(); |
288 | while (qli) { | 299 | while (qli) { |
289 | if (*qli.current() == *a) | 300 | if (*qli.current() == *a) |
290 | return false; | 301 | return false; |
291 | ++qli; | 302 | ++qli; |
292 | } | 303 | } |
293 | mAttendees.append(a); | 304 | mAttendees.append(a); |
294 | if (doupdate) updated(); | 305 | if (doupdate) updated(); |
295 | return true; | 306 | return true; |
296 | } | 307 | } |
297 | 308 | ||
298 | #if 0 | 309 | #if 0 |
299 | void IncidenceBase::removeAttendee(Attendee *a) | 310 | void IncidenceBase::removeAttendee(Attendee *a) |
300 | { | 311 | { |
301 | if (mReadOnly) return; | 312 | if (mReadOnly) return; |
302 | mAttendees.removeRef(a); | 313 | mAttendees.removeRef(a); |
diff --git a/libkcal/incidencebase.h b/libkcal/incidencebase.h index 665c1f6..444d4c4 100644 --- a/libkcal/incidencebase.h +++ b/libkcal/incidencebase.h | |||
@@ -1,187 +1,189 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkcal. | 2 | This file is part of libkcal. |
3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This library is free software; you can redistribute it and/or | 5 | This library is free software; you can redistribute it and/or |
6 | modify it under the terms of the GNU Library General Public | 6 | modify it under the terms of the GNU Library General Public |
7 | License as published by the Free Software Foundation; either | 7 | License as published by the Free Software Foundation; either |
8 | version 2 of the License, or (at your option) any later version. | 8 | version 2 of the License, or (at your option) any later version. |
9 | 9 | ||
10 | This library is distributed in the hope that it will be useful, | 10 | This library is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | Library General Public License for more details. | 13 | Library General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU Library General Public License | 15 | You should have received a copy of the GNU Library General Public License |
16 | along with this library; see the file COPYING.LIB. If not, write to | 16 | along with this library; see the file COPYING.LIB. If not, write to |
17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
18 | Boston, MA 02111-1307, USA. | 18 | Boston, MA 02111-1307, USA. |
19 | */ | 19 | */ |
20 | #ifndef KCAL_INCIDENCEBASE_H | 20 | #ifndef KCAL_INCIDENCEBASE_H |
21 | #define KCAL_INCIDENCEBASE_H | 21 | #define KCAL_INCIDENCEBASE_H |
22 | // | 22 | // |
23 | // Incidence - base class of calendaring components | 23 | // Incidence - base class of calendaring components |
24 | // | 24 | // |
25 | 25 | ||
26 | #include <qdatetime.h> | 26 | #include <qdatetime.h> |
27 | #include <qstringlist.h> | 27 | #include <qstringlist.h> |
28 | #include <qvaluelist.h> | 28 | #include <qvaluelist.h> |
29 | #include <qptrlist.h> | 29 | #include <qptrlist.h> |
30 | 30 | ||
31 | #include "customproperties.h" | 31 | #include "customproperties.h" |
32 | #include "attendee.h" | 32 | #include "attendee.h" |
33 | 33 | ||
34 | namespace KCal { | 34 | namespace KCal { |
35 | 35 | ||
36 | typedef QValueList<QDate> DateList; | 36 | typedef QValueList<QDate> DateList; |
37 | enum IncTypeID { eventID,todoID,journalID,freebusyID }; | 37 | enum IncTypeID { eventID,todoID,journalID,freebusyID }; |
38 | 38 | ||
39 | /** | 39 | /** |
40 | This class provides the base class common to all calendar components. | 40 | This class provides the base class common to all calendar components. |
41 | */ | 41 | */ |
42 | class IncidenceBase : public CustomProperties | 42 | class IncidenceBase : public CustomProperties |
43 | { | 43 | { |
44 | public: | 44 | public: |
45 | class Observer { | 45 | class Observer { |
46 | public: | 46 | public: |
47 | virtual void incidenceUpdated( IncidenceBase * ) = 0; | 47 | virtual void incidenceUpdated( IncidenceBase * ) = 0; |
48 | }; | 48 | }; |
49 | 49 | ||
50 | IncidenceBase(); | 50 | IncidenceBase(); |
51 | IncidenceBase(const IncidenceBase &); | 51 | IncidenceBase(const IncidenceBase &); |
52 | virtual ~IncidenceBase(); | 52 | virtual ~IncidenceBase(); |
53 | 53 | ||
54 | virtual QCString type() const = 0; | 54 | virtual QCString type() const = 0; |
55 | virtual IncTypeID typeID() const = 0; | 55 | virtual IncTypeID typeID() const = 0; |
56 | 56 | ||
57 | /** Set the unique id for the event */ | 57 | /** Set the unique id for the event */ |
58 | void setUid(const QString &); | 58 | void setUid(const QString &); |
59 | /** Return the unique id for the event */ | 59 | /** Return the unique id for the event */ |
60 | QString uid() const; | 60 | QString uid() const; |
61 | 61 | ||
62 | /** Sets the time the incidence was last modified. */ | 62 | /** Sets the time the incidence was last modified. */ |
63 | void setLastModified(const QDateTime &lm); | 63 | void setLastModified(const QDateTime &lm); |
64 | /** Return the time the incidence was last modified. */ | 64 | /** Return the time the incidence was last modified. */ |
65 | QDateTime lastModified() const; | 65 | QDateTime lastModified() const; |
66 | QString lastModifiedSortKey() const; | ||
66 | 67 | ||
67 | /** sets the organizer for the event */ | 68 | /** sets the organizer for the event */ |
68 | void setOrganizer(const QString &o); | 69 | void setOrganizer(const QString &o); |
69 | QString organizer() const; | 70 | QString organizer() const; |
70 | 71 | ||
71 | /** Set readonly status. */ | 72 | /** Set readonly status. */ |
72 | virtual void setReadOnly( bool ); | 73 | virtual void setReadOnly( bool ); |
73 | /** Return if the object is read-only. */ | 74 | /** Return if the object is read-only. */ |
74 | bool isReadOnly() const { return mReadOnly; } | 75 | bool isReadOnly() const { return mReadOnly; } |
75 | 76 | ||
76 | /** for setting the event's starting date/time with a QDateTime. */ | 77 | /** for setting the event's starting date/time with a QDateTime. */ |
77 | virtual void setDtStart(const QDateTime &dtStart); | 78 | virtual void setDtStart(const QDateTime &dtStart); |
78 | /** returns an event's starting date/time as a QDateTime. */ | 79 | /** returns an event's starting date/time as a QDateTime. */ |
79 | virtual QDateTime dtStart() const; | 80 | virtual QDateTime dtStart() const; |
80 | /** returns an event's starting time as a string formatted according to the | 81 | /** returns an event's starting time as a string formatted according to the |
81 | users locale settings */ | 82 | users locale settings */ |
82 | QString dtStartTimeStr() const; | 83 | QString dtStartTimeStr() const; |
83 | /** returns an event's starting date as a string formatted according to the | 84 | /** returns an event's starting date as a string formatted according to the |
84 | users locale settings */ | 85 | users locale settings */ |
85 | QString dtStartDateStr(bool shortfmt=true) const; | 86 | QString dtStartDateStr(bool shortfmt=true) const; |
86 | /** returns an event's starting date and time as a string formatted according | 87 | /** returns an event's starting date and time as a string formatted according |
87 | to the users locale settings */ | 88 | to the users locale settings */ |
88 | QString dtStartStr(bool shortfmt=true) const; | 89 | QString dtStartStr(bool shortfmt=true) const; |
89 | 90 | ||
90 | virtual void setDuration(int seconds); | 91 | virtual void setDuration(int seconds); |
91 | int duration() const; | 92 | int duration() const; |
92 | void setHasDuration(bool); | 93 | void setHasDuration(bool); |
93 | bool hasDuration() const; | 94 | bool hasDuration() const; |
94 | 95 | ||
95 | /** Return true or false depending on whether the incidence "floats," | 96 | /** Return true or false depending on whether the incidence "floats," |
96 | * i.e. has a date but no time attached to it. */ | 97 | * i.e. has a date but no time attached to it. */ |
97 | bool doesFloat() const; | 98 | bool doesFloat() const; |
98 | /** Set whether the incidence floats, i.e. has a date but no time attached to it. */ | 99 | /** Set whether the incidence floats, i.e. has a date but no time attached to it. */ |
99 | void setFloats(bool f); | 100 | void setFloats(bool f); |
100 | 101 | ||
101 | /** | 102 | /** |
102 | Add Attendee to this incidence. IncidenceBase takes ownership of the | 103 | Add Attendee to this incidence. IncidenceBase takes ownership of the |
103 | Attendee object. | 104 | Attendee object. |
104 | */ | 105 | */ |
105 | bool addAttendee(Attendee *a, bool doupdate=true ); | 106 | bool addAttendee(Attendee *a, bool doupdate=true ); |
106 | // void removeAttendee(Attendee *a); | 107 | // void removeAttendee(Attendee *a); |
107 | // void removeAttendee(const char *n); | 108 | // void removeAttendee(const char *n); |
108 | /** Remove all Attendees. */ | 109 | /** Remove all Attendees. */ |
109 | void clearAttendees(); | 110 | void clearAttendees(); |
110 | /** Return list of attendees. */ | 111 | /** Return list of attendees. */ |
111 | QPtrList<Attendee> attendees() const { return mAttendees; }; | 112 | QPtrList<Attendee> attendees() const { return mAttendees; }; |
112 | /** Return number of attendees. */ | 113 | /** Return number of attendees. */ |
113 | int attendeeCount() const { return mAttendees.count(); }; | 114 | int attendeeCount() const { return mAttendees.count(); }; |
114 | /** Return the Attendee with this email */ | 115 | /** Return the Attendee with this email */ |
115 | Attendee* attendeeByMail(const QString &); | 116 | Attendee* attendeeByMail(const QString &); |
116 | /** Return first Attendee with one of this emails */ | 117 | /** Return first Attendee with one of this emails */ |
117 | Attendee* attendeeByMails(const QStringList &, const QString& email = QString::null); | 118 | Attendee* attendeeByMails(const QStringList &, const QString& email = QString::null); |
118 | 119 | ||
119 | /** pilot syncronization states */ | 120 | /** pilot syncronization states */ |
120 | enum { SYNCNONE = 0, SYNCMOD = 1, SYNCDEL = 3 }; | 121 | enum { SYNCNONE = 0, SYNCMOD = 1, SYNCDEL = 3 }; |
121 | /** Set synchronisation satus. */ | 122 | /** Set synchronisation satus. */ |
122 | void setSyncStatus(int stat); | 123 | void setSyncStatus(int stat); |
123 | /** Return synchronisation status. */ | 124 | /** Return synchronisation status. */ |
124 | int syncStatus() const; | 125 | int syncStatus() const; |
125 | 126 | ||
126 | /** Set Pilot Id. */ | 127 | /** Set Pilot Id. */ |
127 | void setPilotId(int id); | 128 | void setPilotId(int id); |
128 | /** Return Pilot Id. */ | 129 | /** Return Pilot Id. */ |
129 | int pilotId() const; | 130 | int pilotId() const; |
130 | 131 | ||
131 | void setTempSyncStat(int id); | 132 | void setTempSyncStat(int id); |
132 | int tempSyncStat() const; | 133 | int tempSyncStat() const; |
133 | void setIDStr( const QString & ); | 134 | void setIDStr( const QString & ); |
134 | QString IDStr() const; | 135 | QString IDStr() const; |
135 | void setID( const QString &, const QString & ); | 136 | void setID( const QString &, const QString & ); |
136 | QString getID( const QString & ); | 137 | QString getID( const QString & ); |
137 | void setCsum( const QString &, const QString & ); | 138 | void setCsum( const QString &, const QString & ); |
138 | QString getCsum( const QString & ); | 139 | QString getCsum( const QString & ); |
139 | void removeID(const QString &); | 140 | void removeID(const QString &); |
140 | 141 | ||
141 | void registerObserver( Observer * ); | 142 | void registerObserver( Observer * ); |
142 | void unRegisterObserver( Observer * ); | 143 | void unRegisterObserver( Observer * ); |
143 | void updated(); | 144 | void updated(); |
144 | void setCalID( int id ); | 145 | void setCalID( int id ); |
145 | int calID() const; | 146 | int calID() const; |
146 | void setCalEnabled( bool ); | 147 | void setCalEnabled( bool ); |
147 | bool calEnabled() const; | 148 | bool calEnabled() const; |
148 | void setAlarmEnabled( bool ); | 149 | void setAlarmEnabled( bool ); |
149 | bool alarmEnabled() const; | 150 | bool alarmEnabled() const; |
150 | bool isTagged() const; | 151 | bool isTagged() const; |
151 | void setTagged( bool ); | 152 | void setTagged( bool ); |
152 | virtual void setLastModifiedSubInvalid(); | 153 | virtual void setLastModifiedSubInvalid(); |
153 | protected: | 154 | protected: |
154 | bool blockLastModified; | 155 | bool blockLastModified; |
155 | bool mIsTagged; | 156 | bool mIsTagged; |
156 | QDateTime mDtStart; | 157 | QDateTime mDtStart; |
157 | bool mReadOnly; | 158 | bool mReadOnly; |
158 | QDateTime getEvenTime( QDateTime ); | 159 | QDateTime getEvenTime( QDateTime ); |
159 | 160 | ||
160 | private: | 161 | private: |
161 | // base components | 162 | // base components |
162 | QString mOrganizer; | 163 | QString mOrganizer; |
164 | QString mLastModifiedKey; | ||
163 | QString mUid; | 165 | QString mUid; |
164 | int mCalID; | 166 | int mCalID; |
165 | bool mCalEnabled; | 167 | bool mCalEnabled; |
166 | bool mAlarmEnabled; | 168 | bool mAlarmEnabled; |
167 | QDateTime mLastModified; | 169 | QDateTime mLastModified; |
168 | QPtrList<Attendee> mAttendees; | 170 | QPtrList<Attendee> mAttendees; |
169 | 171 | ||
170 | bool mFloats; | 172 | bool mFloats; |
171 | 173 | ||
172 | int mDuration; | 174 | int mDuration; |
173 | bool mHasDuration; | 175 | bool mHasDuration; |
174 | QString mExternalId; | 176 | QString mExternalId; |
175 | int mTempSyncStat; | 177 | int mTempSyncStat; |
176 | 178 | ||
177 | // PILOT SYNCHRONIZATION STUFF | 179 | // PILOT SYNCHRONIZATION STUFF |
178 | int mPilotId; // unique id for pilot sync | 180 | int mPilotId; // unique id for pilot sync |
179 | int mSyncStatus; // status (for sync) | 181 | int mSyncStatus; // status (for sync) |
180 | 182 | ||
181 | QPtrList<Observer> mObservers; | 183 | QPtrList<Observer> mObservers; |
182 | }; | 184 | }; |
183 | 185 | ||
184 | bool operator==( const IncidenceBase&, const IncidenceBase& ); | 186 | bool operator==( const IncidenceBase&, const IncidenceBase& ); |
185 | } | 187 | } |
186 | 188 | ||
187 | #endif | 189 | #endif |