-rw-r--r-- | libkcal/incidence.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libkcal/incidence.cpp b/libkcal/incidence.cpp index 28402ae..f9e1e9e 100644 --- a/libkcal/incidence.cpp +++ b/libkcal/incidence.cpp | |||
@@ -211,407 +211,406 @@ void Incidence::setCreated(QDateTime created) | |||
211 | mCreated = getEvenTime(created); | 211 | mCreated = getEvenTime(created); |
212 | } | 212 | } |
213 | 213 | ||
214 | QDateTime Incidence::created() const | 214 | QDateTime Incidence::created() const |
215 | { | 215 | { |
216 | return mCreated; | 216 | return mCreated; |
217 | } | 217 | } |
218 | 218 | ||
219 | void Incidence::setRevision(int rev) | 219 | void Incidence::setRevision(int rev) |
220 | { | 220 | { |
221 | if (mReadOnly) return; | 221 | if (mReadOnly) return; |
222 | mRevision = rev; | 222 | mRevision = rev; |
223 | 223 | ||
224 | updated(); | 224 | updated(); |
225 | } | 225 | } |
226 | 226 | ||
227 | int Incidence::revision() const | 227 | int Incidence::revision() const |
228 | { | 228 | { |
229 | return mRevision; | 229 | return mRevision; |
230 | } | 230 | } |
231 | 231 | ||
232 | void Incidence::setDtStart(const QDateTime &dtStart) | 232 | void Incidence::setDtStart(const QDateTime &dtStart) |
233 | { | 233 | { |
234 | 234 | ||
235 | QDateTime dt = getEvenTime(dtStart); | 235 | QDateTime dt = getEvenTime(dtStart); |
236 | recurrence()->setRecurStart( dt); | 236 | recurrence()->setRecurStart( dt); |
237 | IncidenceBase::setDtStart( dt ); | 237 | IncidenceBase::setDtStart( dt ); |
238 | } | 238 | } |
239 | 239 | ||
240 | void Incidence::setDescription(const QString &description) | 240 | void Incidence::setDescription(const QString &description) |
241 | { | 241 | { |
242 | if (mReadOnly) return; | 242 | if (mReadOnly) return; |
243 | mDescription = description; | 243 | mDescription = description; |
244 | updated(); | 244 | updated(); |
245 | } | 245 | } |
246 | 246 | ||
247 | QString Incidence::description() const | 247 | QString Incidence::description() const |
248 | { | 248 | { |
249 | return mDescription; | 249 | return mDescription; |
250 | } | 250 | } |
251 | 251 | ||
252 | 252 | ||
253 | void Incidence::setSummary(const QString &summary) | 253 | void Incidence::setSummary(const QString &summary) |
254 | { | 254 | { |
255 | if (mReadOnly) return; | 255 | if (mReadOnly) return; |
256 | mSummary = summary; | 256 | mSummary = summary; |
257 | updated(); | 257 | updated(); |
258 | } | 258 | } |
259 | 259 | ||
260 | QString Incidence::summary() const | 260 | QString Incidence::summary() const |
261 | { | 261 | { |
262 | return mSummary; | 262 | return mSummary; |
263 | } | 263 | } |
264 | 264 | ||
265 | void Incidence::setCategories(const QStringList &categories) | 265 | void Incidence::setCategories(const QStringList &categories) |
266 | { | 266 | { |
267 | if (mReadOnly) return; | 267 | if (mReadOnly) return; |
268 | mCategories = categories; | 268 | mCategories = categories; |
269 | updated(); | 269 | updated(); |
270 | } | 270 | } |
271 | 271 | ||
272 | // TODO: remove setCategories(QString) function | 272 | // TODO: remove setCategories(QString) function |
273 | void Incidence::setCategories(const QString &catStr) | 273 | void Incidence::setCategories(const QString &catStr) |
274 | { | 274 | { |
275 | if (mReadOnly) return; | 275 | if (mReadOnly) return; |
276 | mCategories.clear(); | 276 | mCategories.clear(); |
277 | 277 | ||
278 | if (catStr.isEmpty()) return; | 278 | if (catStr.isEmpty()) return; |
279 | 279 | ||
280 | mCategories = QStringList::split(",",catStr); | 280 | mCategories = QStringList::split(",",catStr); |
281 | 281 | ||
282 | QStringList::Iterator it; | 282 | QStringList::Iterator it; |
283 | for(it = mCategories.begin();it != mCategories.end(); ++it) { | 283 | for(it = mCategories.begin();it != mCategories.end(); ++it) { |
284 | *it = (*it).stripWhiteSpace(); | 284 | *it = (*it).stripWhiteSpace(); |
285 | } | 285 | } |
286 | 286 | ||
287 | updated(); | 287 | updated(); |
288 | } | 288 | } |
289 | 289 | ||
290 | QStringList Incidence::categories() const | 290 | QStringList Incidence::categories() const |
291 | { | 291 | { |
292 | return mCategories; | 292 | return mCategories; |
293 | } | 293 | } |
294 | 294 | ||
295 | QString Incidence::categoriesStr() | 295 | QString Incidence::categoriesStr() |
296 | { | 296 | { |
297 | return mCategories.join(","); | 297 | return mCategories.join(","); |
298 | } | 298 | } |
299 | 299 | ||
300 | void Incidence::setRelatedToUid(const QString &relatedToUid) | 300 | void Incidence::setRelatedToUid(const QString &relatedToUid) |
301 | { | 301 | { |
302 | if (mReadOnly) return; | 302 | if (mReadOnly) return; |
303 | mRelatedToUid = relatedToUid; | 303 | mRelatedToUid = relatedToUid; |
304 | } | 304 | } |
305 | 305 | ||
306 | QString Incidence::relatedToUid() const | 306 | QString Incidence::relatedToUid() const |
307 | { | 307 | { |
308 | return mRelatedToUid; | 308 | return mRelatedToUid; |
309 | } | 309 | } |
310 | 310 | ||
311 | void Incidence::setRelatedTo(Incidence *relatedTo) | 311 | void Incidence::setRelatedTo(Incidence *relatedTo) |
312 | { | 312 | { |
313 | //qDebug("Incidence::setRelatedTo %d ", relatedTo); | 313 | //qDebug("Incidence::setRelatedTo %d ", relatedTo); |
314 | //qDebug("setRelatedTo(Incidence *relatedTo) %s %s", summary().latin1(), relatedTo->summary().latin1() ); | 314 | //qDebug("setRelatedTo(Incidence *relatedTo) %s %s", summary().latin1(), relatedTo->summary().latin1() ); |
315 | if (mReadOnly || mRelatedTo == relatedTo) return; | 315 | if (mReadOnly || mRelatedTo == relatedTo) return; |
316 | if(mRelatedTo) { | 316 | if(mRelatedTo) { |
317 | // updated(); | 317 | // updated(); |
318 | mRelatedTo->removeRelation(this); | 318 | mRelatedTo->removeRelation(this); |
319 | } | 319 | } |
320 | mRelatedTo = relatedTo; | 320 | mRelatedTo = relatedTo; |
321 | if (mRelatedTo) mRelatedTo->addRelation(this); | 321 | if (mRelatedTo) mRelatedTo->addRelation(this); |
322 | } | 322 | } |
323 | 323 | ||
324 | Incidence *Incidence::relatedTo() const | 324 | Incidence *Incidence::relatedTo() const |
325 | { | 325 | { |
326 | return mRelatedTo; | 326 | return mRelatedTo; |
327 | } | 327 | } |
328 | 328 | ||
329 | QPtrList<Incidence> Incidence::relations() const | 329 | QPtrList<Incidence> Incidence::relations() const |
330 | { | 330 | { |
331 | return mRelations; | 331 | return mRelations; |
332 | } | 332 | } |
333 | 333 | ||
334 | void Incidence::addRelation(Incidence *event) | 334 | void Incidence::addRelation(Incidence *event) |
335 | { | 335 | { |
336 | if( mRelations.findRef( event ) == -1 ) { | 336 | if( mRelations.findRef( event ) == -1 ) { |
337 | mRelations.append(event); | 337 | mRelations.append(event); |
338 | //updated(); | 338 | //updated(); |
339 | } | 339 | } |
340 | } | 340 | } |
341 | 341 | ||
342 | void Incidence::removeRelation(Incidence *event) | 342 | void Incidence::removeRelation(Incidence *event) |
343 | { | 343 | { |
344 | 344 | ||
345 | mRelations.removeRef(event); | 345 | mRelations.removeRef(event); |
346 | 346 | ||
347 | // if (event->getRelatedTo() == this) event->setRelatedTo(0); | 347 | // if (event->getRelatedTo() == this) event->setRelatedTo(0); |
348 | } | 348 | } |
349 | 349 | ||
350 | bool Incidence::recursOn(const QDate &qd) const | 350 | bool Incidence::recursOn(const QDate &qd) const |
351 | { | 351 | { |
352 | if (recurrence()->recursOnPure(qd) && !isException(qd)) return true; | 352 | if (recurrence()->recursOnPure(qd) && !isException(qd)) return true; |
353 | else return false; | 353 | else return false; |
354 | } | 354 | } |
355 | 355 | ||
356 | void Incidence::setExDates(const DateList &exDates) | 356 | void Incidence::setExDates(const DateList &exDates) |
357 | { | 357 | { |
358 | if (mReadOnly) return; | 358 | if (mReadOnly) return; |
359 | mExDates = exDates; | 359 | mExDates = exDates; |
360 | 360 | ||
361 | recurrence()->setRecurExDatesCount(mExDates.count()); | 361 | recurrence()->setRecurExDatesCount(mExDates.count()); |
362 | 362 | ||
363 | updated(); | 363 | updated(); |
364 | } | 364 | } |
365 | 365 | ||
366 | void Incidence::addExDate(const QDate &date) | 366 | void Incidence::addExDate(const QDate &date) |
367 | { | 367 | { |
368 | if (mReadOnly) return; | 368 | if (mReadOnly) return; |
369 | mExDates.append(date); | 369 | mExDates.append(date); |
370 | 370 | ||
371 | recurrence()->setRecurExDatesCount(mExDates.count()); | 371 | recurrence()->setRecurExDatesCount(mExDates.count()); |
372 | 372 | ||
373 | updated(); | 373 | updated(); |
374 | } | 374 | } |
375 | 375 | ||
376 | DateList Incidence::exDates() const | 376 | DateList Incidence::exDates() const |
377 | { | 377 | { |
378 | return mExDates; | 378 | return mExDates; |
379 | } | 379 | } |
380 | 380 | ||
381 | bool Incidence::isException(const QDate &date) const | 381 | bool Incidence::isException(const QDate &date) const |
382 | { | 382 | { |
383 | DateList::ConstIterator it; | 383 | DateList::ConstIterator it; |
384 | for( it = mExDates.begin(); it != mExDates.end(); ++it ) { | 384 | for( it = mExDates.begin(); it != mExDates.end(); ++it ) { |
385 | if ( (*it) == date ) { | 385 | if ( (*it) == date ) { |
386 | return true; | 386 | return true; |
387 | } | 387 | } |
388 | } | 388 | } |
389 | 389 | ||
390 | return false; | 390 | return false; |
391 | } | 391 | } |
392 | 392 | ||
393 | void Incidence::addAttachment(Attachment *attachment) | 393 | void Incidence::addAttachment(Attachment *attachment) |
394 | { | 394 | { |
395 | if (mReadOnly || !attachment) return; | 395 | if (mReadOnly || !attachment) return; |
396 | mAttachments.append(attachment); | 396 | mAttachments.append(attachment); |
397 | updated(); | 397 | updated(); |
398 | } | 398 | } |
399 | 399 | ||
400 | void Incidence::deleteAttachment(Attachment *attachment) | 400 | void Incidence::deleteAttachment(Attachment *attachment) |
401 | { | 401 | { |
402 | mAttachments.removeRef(attachment); | 402 | mAttachments.removeRef(attachment); |
403 | } | 403 | } |
404 | 404 | ||
405 | void Incidence::deleteAttachments(const QString& mime) | 405 | void Incidence::deleteAttachments(const QString& mime) |
406 | { | 406 | { |
407 | Attachment *at = mAttachments.first(); | 407 | Attachment *at = mAttachments.first(); |
408 | while (at) { | 408 | while (at) { |
409 | if (at->mimeType() == mime) | 409 | if (at->mimeType() == mime) |
410 | mAttachments.remove(); | 410 | mAttachments.remove(); |
411 | else | 411 | else |
412 | at = mAttachments.next(); | 412 | at = mAttachments.next(); |
413 | } | 413 | } |
414 | } | 414 | } |
415 | 415 | ||
416 | QPtrList<Attachment> Incidence::attachments() const | 416 | QPtrList<Attachment> Incidence::attachments() const |
417 | { | 417 | { |
418 | return mAttachments; | 418 | return mAttachments; |
419 | } | 419 | } |
420 | 420 | ||
421 | QPtrList<Attachment> Incidence::attachments(const QString& mime) const | 421 | QPtrList<Attachment> Incidence::attachments(const QString& mime) const |
422 | { | 422 | { |
423 | QPtrList<Attachment> attachments; | 423 | QPtrList<Attachment> attachments; |
424 | QPtrListIterator<Attachment> it( mAttachments ); | 424 | QPtrListIterator<Attachment> it( mAttachments ); |
425 | Attachment *at; | 425 | Attachment *at; |
426 | while ( (at = it.current()) ) { | 426 | while ( (at = it.current()) ) { |
427 | if (at->mimeType() == mime) | 427 | if (at->mimeType() == mime) |
428 | attachments.append(at); | 428 | attachments.append(at); |
429 | ++it; | 429 | ++it; |
430 | } | 430 | } |
431 | 431 | ||
432 | return attachments; | 432 | return attachments; |
433 | } | 433 | } |
434 | 434 | ||
435 | void Incidence::setResources(const QStringList &resources) | 435 | void Incidence::setResources(const QStringList &resources) |
436 | { | 436 | { |
437 | if (mReadOnly) return; | 437 | if (mReadOnly) return; |
438 | mResources = resources; | 438 | mResources = resources; |
439 | updated(); | 439 | updated(); |
440 | } | 440 | } |
441 | 441 | ||
442 | QStringList Incidence::resources() const | 442 | QStringList Incidence::resources() const |
443 | { | 443 | { |
444 | return mResources; | 444 | return mResources; |
445 | } | 445 | } |
446 | 446 | ||
447 | 447 | ||
448 | void Incidence::setPriority(int priority) | 448 | void Incidence::setPriority(int priority) |
449 | { | 449 | { |
450 | if (mReadOnly) return; | 450 | if (mReadOnly) return; |
451 | mPriority = priority; | 451 | mPriority = priority; |
452 | updated(); | 452 | updated(); |
453 | } | 453 | } |
454 | 454 | ||
455 | int Incidence::priority() const | 455 | int Incidence::priority() const |
456 | { | 456 | { |
457 | return mPriority; | 457 | return mPriority; |
458 | } | 458 | } |
459 | 459 | ||
460 | void Incidence::setSecrecy(int sec) | 460 | void Incidence::setSecrecy(int sec) |
461 | { | 461 | { |
462 | if (mReadOnly) return; | 462 | if (mReadOnly) return; |
463 | mSecrecy = sec; | 463 | mSecrecy = sec; |
464 | updated(); | 464 | updated(); |
465 | } | 465 | } |
466 | 466 | ||
467 | int Incidence::secrecy() const | 467 | int Incidence::secrecy() const |
468 | { | 468 | { |
469 | return mSecrecy; | 469 | return mSecrecy; |
470 | } | 470 | } |
471 | 471 | ||
472 | QString Incidence::secrecyStr() const | 472 | QString Incidence::secrecyStr() const |
473 | { | 473 | { |
474 | return secrecyName(mSecrecy); | 474 | return secrecyName(mSecrecy); |
475 | } | 475 | } |
476 | 476 | ||
477 | QString Incidence::secrecyName(int secrecy) | 477 | QString Incidence::secrecyName(int secrecy) |
478 | { | 478 | { |
479 | switch (secrecy) { | 479 | switch (secrecy) { |
480 | case SecrecyPublic: | 480 | case SecrecyPublic: |
481 | return i18n("Public"); | 481 | return i18n("Public"); |
482 | break; | 482 | break; |
483 | case SecrecyPrivate: | 483 | case SecrecyPrivate: |
484 | return i18n("Private"); | 484 | return i18n("Private"); |
485 | break; | 485 | break; |
486 | case SecrecyConfidential: | 486 | case SecrecyConfidential: |
487 | return i18n("Confidential"); | 487 | return i18n("Confidential"); |
488 | break; | 488 | break; |
489 | default: | 489 | default: |
490 | return i18n("Undefined"); | 490 | return i18n("Undefined"); |
491 | break; | 491 | break; |
492 | } | 492 | } |
493 | } | 493 | } |
494 | 494 | ||
495 | QStringList Incidence::secrecyList() | 495 | QStringList Incidence::secrecyList() |
496 | { | 496 | { |
497 | QStringList list; | 497 | QStringList list; |
498 | list << secrecyName(SecrecyPublic); | 498 | list << secrecyName(SecrecyPublic); |
499 | list << secrecyName(SecrecyPrivate); | 499 | list << secrecyName(SecrecyPrivate); |
500 | list << secrecyName(SecrecyConfidential); | 500 | list << secrecyName(SecrecyConfidential); |
501 | 501 | ||
502 | return list; | 502 | return list; |
503 | } | 503 | } |
504 | 504 | ||
505 | 505 | ||
506 | QPtrList<Alarm> Incidence::alarms() const | 506 | QPtrList<Alarm> Incidence::alarms() const |
507 | { | 507 | { |
508 | return mAlarms; | 508 | return mAlarms; |
509 | } | 509 | } |
510 | 510 | ||
511 | Alarm* Incidence::newAlarm() | 511 | Alarm* Incidence::newAlarm() |
512 | { | 512 | { |
513 | Alarm* alarm = new Alarm(this); | 513 | Alarm* alarm = new Alarm(this); |
514 | mAlarms.append(alarm); | 514 | mAlarms.append(alarm); |
515 | // updated(); | 515 | // updated(); |
516 | return alarm; | 516 | return alarm; |
517 | } | 517 | } |
518 | 518 | ||
519 | void Incidence::addAlarm(Alarm *alarm) | 519 | void Incidence::addAlarm(Alarm *alarm) |
520 | { | 520 | { |
521 | mAlarms.append(alarm); | 521 | mAlarms.append(alarm); |
522 | updated(); | 522 | updated(); |
523 | } | 523 | } |
524 | 524 | ||
525 | void Incidence::removeAlarm(Alarm *alarm) | 525 | void Incidence::removeAlarm(Alarm *alarm) |
526 | { | 526 | { |
527 | mAlarms.removeRef(alarm); | 527 | mAlarms.removeRef(alarm); |
528 | updated(); | 528 | updated(); |
529 | } | 529 | } |
530 | 530 | ||
531 | void Incidence::clearAlarms() | 531 | void Incidence::clearAlarms() |
532 | { | 532 | { |
533 | mAlarms.clear(); | 533 | mAlarms.clear(); |
534 | updated(); | 534 | updated(); |
535 | } | 535 | } |
536 | 536 | ||
537 | bool Incidence::isAlarmEnabled() const | 537 | bool Incidence::isAlarmEnabled() const |
538 | { | 538 | { |
539 | Alarm* alarm; | 539 | Alarm* alarm; |
540 | for (QPtrListIterator<Alarm> it(mAlarms); (alarm = it.current()) != 0; ++it) { | 540 | for (QPtrListIterator<Alarm> it(mAlarms); (alarm = it.current()) != 0; ++it) { |
541 | if (alarm->enabled()) | 541 | if (alarm->enabled()) |
542 | return true; | 542 | return true; |
543 | } | 543 | } |
544 | return false; | 544 | return false; |
545 | } | 545 | } |
546 | 546 | ||
547 | Recurrence *Incidence::recurrence() const | 547 | Recurrence *Incidence::recurrence() const |
548 | { | 548 | { |
549 | return mRecurrence; | 549 | return mRecurrence; |
550 | } | 550 | } |
551 | void Incidence::setRecurrence( Recurrence * r) | 551 | void Incidence::setRecurrence( Recurrence * r) |
552 | { | 552 | { |
553 | delete mRecurrence; | 553 | delete mRecurrence; |
554 | mRecurrence = r; | 554 | mRecurrence = r; |
555 | } | 555 | } |
556 | 556 | ||
557 | void Incidence::setLocation(const QString &location) | 557 | void Incidence::setLocation(const QString &location) |
558 | { | 558 | { |
559 | if (mReadOnly) return; | 559 | if (mReadOnly) return; |
560 | mLocation = location; | 560 | mLocation = location; |
561 | updated(); | 561 | updated(); |
562 | } | 562 | } |
563 | 563 | ||
564 | QString Incidence::location() const | 564 | QString Incidence::location() const |
565 | { | 565 | { |
566 | return mLocation; | 566 | return mLocation; |
567 | } | 567 | } |
568 | 568 | ||
569 | ushort Incidence::doesRecur() const | 569 | ushort Incidence::doesRecur() const |
570 | { | 570 | { |
571 | if ( mRecurrence ) return mRecurrence->doesRecur(); | 571 | if ( mRecurrence ) return mRecurrence->doesRecur(); |
572 | else return Recurrence::rNone; | 572 | else return Recurrence::rNone; |
573 | } | 573 | } |
574 | 574 | ||
575 | QDateTime Incidence::getNextOccurence( const QDateTime& dt, bool* ok ) const | 575 | QDateTime Incidence::getNextOccurence( const QDateTime& dt, bool* ok ) const |
576 | { | 576 | { |
577 | QDateTime incidenceStart = dt; | 577 | QDateTime incidenceStart = dt; |
578 | *ok = false; | 578 | *ok = false; |
579 | if ( doesRecur() ) { | 579 | if ( doesRecur() ) { |
580 | bool last; | 580 | bool last; |
581 | recurrence()->getPreviousDateTime( incidenceStart , &last ); | 581 | recurrence()->getPreviousDateTime( incidenceStart , &last ); |
582 | int count = 0; | 582 | int count = 0; |
583 | if ( !last ) { | 583 | if ( !last ) { |
584 | while ( !last ) { | 584 | while ( !last ) { |
585 | ++count; | 585 | ++count; |
586 | incidenceStart = recurrence()->getNextDateTime( incidenceStart, &last ); | 586 | incidenceStart = recurrence()->getNextDateTime( incidenceStart, &last ); |
587 | if ( recursOn( incidenceStart.date() ) ) { | 587 | if ( recursOn( incidenceStart.date() ) ) { |
588 | last = true; // exit while llop | 588 | last = true; // exit while llop |
589 | } else { | 589 | } else { |
590 | if ( last ) { // no alarm on last recurrence | 590 | if ( last ) { // no alarm on last recurrence |
591 | return QDateTime (); | 591 | return QDateTime (); |
592 | } | 592 | } |
593 | int year = incidenceStart.date().year(); | 593 | int year = incidenceStart.date().year(); |
594 | // workaround for bug in recurrence | 594 | // workaround for bug in recurrence |
595 | if ( count == 100 || year < 1980 || year > 5000 ) { | 595 | if ( count == 100 || year < 1000 || year > 5000 ) { |
596 | return QDateTime (); | 596 | return QDateTime (); |
597 | } | 597 | } |
598 | incidenceStart = incidenceStart.addSecs( 1 ); | 598 | incidenceStart = incidenceStart.addSecs( 1 ); |
599 | } | 599 | } |
600 | } | 600 | } |
601 | } else { | 601 | } else { |
602 | return QDateTime (); | 602 | return QDateTime (); |
603 | } | 603 | } |
604 | } else { | 604 | } else { |
605 | if ( hasStartDate () ) { | 605 | if ( hasStartDate () ) { |
606 | incidenceStart = dtStart(); | 606 | incidenceStart = dtStart(); |
607 | } | 607 | } |
608 | if ( type() =="Todo" ) { | 608 | if ( type() =="Todo" ) { |
609 | if ( ((Todo*)this)->hasDueDate() ) | 609 | if ( ((Todo*)this)->hasDueDate() ) |
610 | incidenceStart = ((Todo*)this)->dtDue(); | 610 | incidenceStart = ((Todo*)this)->dtDue(); |
611 | |||
612 | } | 611 | } |
613 | } | 612 | } |
614 | if ( incidenceStart > dt ) | 613 | if ( incidenceStart > dt ) |
615 | *ok = true; | 614 | *ok = true; |
616 | return incidenceStart; | 615 | return incidenceStart; |
617 | } | 616 | } |