-rw-r--r-- | korganizer/koeventviewer.cpp | 14 | ||||
-rw-r--r-- | korganizer/kolistview.cpp | 14 | ||||
-rw-r--r-- | korganizer/kotodoview.cpp | 26 |
3 files changed, 41 insertions, 13 deletions
diff --git a/korganizer/koeventviewer.cpp b/korganizer/koeventviewer.cpp index dbe0668..bdad248 100644 --- a/korganizer/koeventviewer.cpp +++ b/korganizer/koeventviewer.cpp | |||
@@ -325,98 +325,97 @@ void KOEventViewer::appendEvent(Event *event, int mode ) | |||
325 | mText.append(i18n("<p><b>On:</b> %1</p>").arg(event->dtStartDateStr( shortDate ))); | 325 | mText.append(i18n("<p><b>On:</b> %1</p>").arg(event->dtStartDateStr( shortDate ))); |
326 | } | 326 | } |
327 | } else { | 327 | } else { |
328 | if (event->isMultiDay()) { | 328 | if (event->isMultiDay()) { |
329 | mText.append(i18n("<p><b>From:</b> %1</p> ") | 329 | mText.append(i18n("<p><b>From:</b> %1</p> ") |
330 | .arg(event->dtStartStr( shortDate))); | 330 | .arg(event->dtStartStr( shortDate))); |
331 | mText.append(i18n("<p><b>To:</b> %1</p>") | 331 | mText.append(i18n("<p><b>To:</b> %1</p>") |
332 | .arg(event->dtEndStr(shortDate))); | 332 | .arg(event->dtEndStr(shortDate))); |
333 | } else { | 333 | } else { |
334 | mText.append(i18n("<p><b>On:</b> %1</p> ") | 334 | mText.append(i18n("<p><b>On:</b> %1</p> ") |
335 | .arg(event->dtStartDateStr( shortDate ))); | 335 | .arg(event->dtStartDateStr( shortDate ))); |
336 | mText.append(i18n("<p><b>From:</b> %1 <b>To:</b> %2</p>") | 336 | mText.append(i18n("<p><b>From:</b> %1 <b>To:</b> %2</p>") |
337 | .arg(event->dtStartTimeStr()) | 337 | .arg(event->dtStartTimeStr()) |
338 | .arg(event->dtEndTimeStr())); | 338 | .arg(event->dtEndTimeStr())); |
339 | } | 339 | } |
340 | } | 340 | } |
341 | 341 | ||
342 | if (event->recurrence()->doesRecur()) { | 342 | if (event->recurrence()->doesRecur()) { |
343 | 343 | ||
344 | QString recurText = event->recurrence()->recurrenceText(); | 344 | QString recurText = event->recurrence()->recurrenceText(); |
345 | addTag("p","<em>" + i18n("This is a %1 recurring event.").arg(recurText ) + "</em>"); | 345 | addTag("p","<em>" + i18n("This is a %1 recurring event.").arg(recurText ) + "</em>"); |
346 | bool ok; | 346 | bool ok; |
347 | QDate start = QDate::currentDate(); | 347 | QDate start = QDate::currentDate(); |
348 | QDateTime next; | 348 | QDateTime next; |
349 | next = event->getNextOccurence( QDateTime::currentDateTime() , &ok ); | 349 | next = event->getNextOccurence( QDateTime::currentDateTime() , &ok ); |
350 | if ( ok ) { | 350 | if ( ok ) { |
351 | addTag("p",i18n("<b>Next recurrence is on:</b>") ); | 351 | addTag("p",i18n("<b>Next recurrence is on:</b>") ); |
352 | addTag("p", KGlobal::locale()->formatDate( next.date(), shortDate )); | 352 | addTag("p", KGlobal::locale()->formatDate( next.date(), shortDate )); |
353 | mMailSubject += i18n(" - " )+ KGlobal::locale()->formatDateTime( next, true ); | 353 | mMailSubject += i18n(" - " )+ KGlobal::locale()->formatDateTime( next, true ); |
354 | 354 | ||
355 | } else { | 355 | } else { |
356 | bool last; | 356 | bool last; |
357 | QDate nextd; | 357 | QDate nextd; |
358 | nextd = event->recurrence()->getPreviousDate( QDate::currentDate() , &last ); | 358 | nextd = event->recurrence()->getPreviousDate( QDate::currentDate() , &last ); |
359 | if ( last ) { | 359 | if ( last ) { |
360 | addTag("p",i18n("<b>Last recurrence was on:</b>") ); | 360 | addTag("p",i18n("<b>Last recurrence was on:</b>") ); |
361 | addTag("p", KGlobal::locale()->formatDate( nextd, shortDate )); | 361 | addTag("p", KGlobal::locale()->formatDate( nextd, shortDate )); |
362 | } | 362 | } |
363 | } | 363 | } |
364 | } else { | 364 | } else { |
365 | mMailSubject += i18n(" - " )+event->dtStartStr( true ); | 365 | mMailSubject += i18n(" - " )+event->dtStartStr( true ); |
366 | 366 | ||
367 | } | 367 | } |
368 | 368 | ||
369 | 369 | ||
370 | if (event->isAlarmEnabled()) { | 370 | if (event->isAlarmEnabled()) { |
371 | Alarm *alarm =event->alarms().first() ; | 371 | Alarm *alarm =event->alarms().first() ; |
372 | QDateTime t = alarm->time(); | 372 | QDateTime t = alarm->time(); |
373 | int min = t.secsTo( event->dtStart() )/60; | 373 | QString s =i18n("( %1 before )").arg( alarm->offsetText() ); |
374 | QString s =i18n("( %1 min before )").arg( min ); | ||
375 | addTag("p",i18n("<b>Alarm on: ") + s +" </b>"); | 374 | addTag("p",i18n("<b>Alarm on: ") + s +" </b>"); |
376 | addTag("p", KGlobal::locale()->formatDateTime( t, shortDate )); | 375 | addTag("p", KGlobal::locale()->formatDateTime( t, shortDate )); |
377 | //addTag("p",s); | 376 | //addTag("p",s); |
378 | } | 377 | } |
379 | 378 | ||
380 | addTag("b",i18n("Access: ")); | 379 | addTag("b",i18n("Access: ")); |
381 | mText.append(event->secrecyStr()+"<br>"); | 380 | mText.append(event->secrecyStr()+"<br>"); |
382 | 381 | ||
383 | 382 | ||
384 | if ( KOPrefs::instance()->mEVshowDetails ) { | 383 | if ( KOPrefs::instance()->mEVshowDetails ) { |
385 | if (!event->description().isEmpty()) { | 384 | if (!event->description().isEmpty()) { |
386 | addTag("p",i18n("<b>Details: </b>")); | 385 | addTag("p",i18n("<b>Details: </b>")); |
387 | addTag("p",deTag(event->description())); | 386 | addTag("p",deTag(event->description())); |
388 | } | 387 | } |
389 | } | 388 | } |
390 | formatCategories(event); | 389 | formatCategories(event); |
391 | 390 | ||
392 | formatReadOnly(event); | 391 | formatReadOnly(event); |
393 | formatAttendees(event); | 392 | formatAttendees(event); |
394 | 393 | ||
395 | if ( KOPrefs::instance()->mEVshowCreated ) { | 394 | if ( KOPrefs::instance()->mEVshowCreated ) { |
396 | addTag("p",i18n("<b>Created: ") +" </b>"); | 395 | addTag("p",i18n("<b>Created: ") +" </b>"); |
397 | addTag("p", KGlobal::locale()->formatDateTime( event->created(), shortDate )); | 396 | addTag("p", KGlobal::locale()->formatDateTime( event->created(), shortDate )); |
398 | 397 | ||
399 | } | 398 | } |
400 | if ( KOPrefs::instance()->mEVshowChanged ) { | 399 | if ( KOPrefs::instance()->mEVshowChanged ) { |
401 | addTag("p",i18n("<b>Last modified: ") +" </b>"); | 400 | addTag("p",i18n("<b>Last modified: ") +" </b>"); |
402 | addTag("p", KGlobal::locale()->formatDateTime( event->lastModified(), shortDate )); | 401 | addTag("p", KGlobal::locale()->formatDateTime( event->lastModified(), shortDate )); |
403 | 402 | ||
404 | } | 403 | } |
405 | setText(mText); | 404 | setText(mText); |
406 | //QWhatsThis::add(this,mText); | 405 | //QWhatsThis::add(this,mText); |
407 | 406 | ||
408 | } | 407 | } |
409 | 408 | ||
410 | void KOEventViewer::appendTodo(Todo *event, int mode ) | 409 | void KOEventViewer::appendTodo(Todo *event, int mode ) |
411 | { | 410 | { |
412 | mMailSubject = ""; | 411 | mMailSubject = ""; |
413 | mCurrentIncidence = event; | 412 | mCurrentIncidence = event; |
414 | topLevelWidget()->setCaption(i18n("Todo Viewer")); | 413 | topLevelWidget()->setCaption(i18n("Todo Viewer")); |
415 | bool shortDate = KOPrefs::instance()->mShortDateInViewer; | 414 | bool shortDate = KOPrefs::instance()->mShortDateInViewer; |
416 | if (mode == 0 ) | 415 | if (mode == 0 ) |
417 | addTag("h2",deTag(event->summary())); | 416 | addTag("h2",deTag(event->summary())); |
418 | else { | 417 | else { |
419 | if ( mColorMode == 1 ) { | 418 | if ( mColorMode == 1 ) { |
420 | mText +="<font color=\"#00A000\">"; | 419 | mText +="<font color=\"#00A000\">"; |
421 | } | 420 | } |
422 | if ( mColorMode == 2 ) { | 421 | if ( mColorMode == 2 ) { |
@@ -424,96 +423,107 @@ void KOEventViewer::appendTodo(Todo *event, int mode ) | |||
424 | } | 423 | } |
425 | if ( mode == 1 ) { | 424 | if ( mode == 1 ) { |
426 | addTag("h2",i18n( "Local: " ) +deTag(event->summary())); | 425 | addTag("h2",i18n( "Local: " ) +deTag(event->summary())); |
427 | } else { | 426 | } else { |
428 | addTag("h2",i18n( "Remote: " ) +deTag(event->summary())); | 427 | addTag("h2",i18n( "Remote: " ) +deTag(event->summary())); |
429 | } | 428 | } |
430 | addTag("h3",i18n( "Last modified: " ) + KGlobal::locale()->formatDateTime(event->lastModified(),shortDate, true ) ); | 429 | addTag("h3",i18n( "Last modified: " ) + KGlobal::locale()->formatDateTime(event->lastModified(),shortDate, true ) ); |
431 | if ( mColorMode ) | 430 | if ( mColorMode ) |
432 | mText += "</font>"; | 431 | mText += "</font>"; |
433 | } | 432 | } |
434 | mMailSubject += i18n( "Todo " )+ event->summary(); | 433 | mMailSubject += i18n( "Todo " )+ event->summary(); |
435 | 434 | ||
436 | if ( event->percentComplete() == 100 && event->hasCompletedDate() ) { | 435 | if ( event->percentComplete() == 100 && event->hasCompletedDate() ) { |
437 | mText +="<font color=\"#B00000\">"; | 436 | mText +="<font color=\"#B00000\">"; |
438 | addTag("i", i18n("<p><i>Completed on %1</i></p>").arg( event->completedStr(KOPrefs::instance()->mShortDateInViewer) ) ); | 437 | addTag("i", i18n("<p><i>Completed on %1</i></p>").arg( event->completedStr(KOPrefs::instance()->mShortDateInViewer) ) ); |
439 | mText += "</font>"; | 438 | mText += "</font>"; |
440 | } else { | 439 | } else { |
441 | mText.append(i18n("<p><i>%1 % completed</i></p>") | 440 | mText.append(i18n("<p><i>%1 % completed</i></p>") |
442 | .arg(event->percentComplete())); | 441 | .arg(event->percentComplete())); |
443 | } | 442 | } |
444 | 443 | ||
445 | if (event->cancelled ()) { | 444 | if (event->cancelled ()) { |
446 | mText +="<font color=\"#B00000\">"; | 445 | mText +="<font color=\"#B00000\">"; |
447 | addTag("i",i18n("This todo has been cancelled!")); | 446 | addTag("i",i18n("This todo has been cancelled!")); |
448 | mText.append("<br>"); | 447 | mText.append("<br>"); |
449 | mText += "</font>"; | 448 | mText += "</font>"; |
450 | mMailSubject += i18n("(cancelled)"); | 449 | mMailSubject += i18n("(cancelled)"); |
451 | } | 450 | } |
452 | 451 | ||
453 | if (!event->location().isEmpty()) { | 452 | if (!event->location().isEmpty()) { |
454 | addTag("b",i18n("Location: ")); | 453 | addTag("b",i18n("Location: ")); |
455 | mText.append(deTag(event->location())+"<br>"); | 454 | mText.append(deTag(event->location())+"<br>"); |
456 | mMailSubject += i18n(" at ") + event->location(); | 455 | mMailSubject += i18n(" at ") + event->location(); |
457 | } | 456 | } |
458 | 457 | ||
459 | if (event->recurrence()->doesRecur()) { | 458 | if (event->recurrence()->doesRecur()) { |
460 | 459 | ||
461 | QString recurText = event->recurrence()->recurrenceText(); | 460 | QString recurText = event->recurrence()->recurrenceText(); |
462 | addTag("p","<em>" + i18n("This is a %1 recurring todo.").arg(recurText ) + "</em>"); | 461 | addTag("p","<em>" + i18n("This is a %1 recurring todo.").arg(recurText ) + "</em>"); |
463 | 462 | ||
464 | } | 463 | } |
465 | if (event->hasStartDate()) { | 464 | if (event->hasStartDate()) { |
466 | mText.append(i18n("<p><b>Start on:</b> %1</p>").arg(event->dtStartStr(KOPrefs::instance()->mShortDateInViewer))); | 465 | mText.append(i18n("<p><b>Start on:</b> %1</p>").arg(event->dtStartStr(KOPrefs::instance()->mShortDateInViewer))); |
467 | } | 466 | } |
468 | if (event->hasDueDate()) { | 467 | if (event->hasDueDate()) { |
469 | mText.append(i18n("<p><b>Due on:</b> %1</p>").arg(event->dtDueStr(KOPrefs::instance()->mShortDateInViewer))); | 468 | mText.append(i18n("<p><b>Due on:</b> %1</p>").arg(event->dtDueStr(KOPrefs::instance()->mShortDateInViewer))); |
470 | mMailSubject += i18n(" - " )+event->dtDueStr( true ); | 469 | mMailSubject += i18n(" - " )+event->dtDueStr( true ); |
471 | } | 470 | } |
471 | |||
472 | |||
473 | if (event->isAlarmEnabled()) { | ||
474 | Alarm *alarm =event->alarms().first() ; | ||
475 | QDateTime t = alarm->time(); | ||
476 | QString s =i18n("( %1 before )").arg( alarm->offsetText() ); | ||
477 | addTag("p",i18n("<b>Alarm on: ") + s +" </b>"); | ||
478 | addTag("p", KGlobal::locale()->formatDateTime( t, shortDate )); | ||
479 | //addTag("p",s); | ||
480 | } | ||
481 | |||
472 | addTag("b",i18n("Access: ")); | 482 | addTag("b",i18n("Access: ")); |
473 | mText.append(event->secrecyStr()+"<br>"); | 483 | mText.append(event->secrecyStr()+"<br>"); |
474 | if ( KOPrefs::instance()->mEVshowDetails ) { | 484 | if ( KOPrefs::instance()->mEVshowDetails ) { |
475 | if (!event->description().isEmpty()) { | 485 | if (!event->description().isEmpty()) { |
476 | addTag("p",i18n("<b>Details: </b>")); | 486 | addTag("p",i18n("<b>Details: </b>")); |
477 | addTag("p",deTag(event->description())); | 487 | addTag("p",deTag(event->description())); |
478 | } | 488 | } |
479 | } | 489 | } |
480 | 490 | ||
481 | formatCategories(event); | 491 | formatCategories(event); |
482 | 492 | ||
483 | mText.append(i18n("<p><b>Priority:</b> %2</p>") | 493 | mText.append(i18n("<p><b>Priority:</b> %2</p>") |
484 | .arg(QString::number(event->priority()))); | 494 | .arg(QString::number(event->priority()))); |
485 | 495 | ||
486 | formatReadOnly(event); | 496 | formatReadOnly(event); |
487 | formatAttendees(event); | 497 | formatAttendees(event); |
488 | if ( event->relatedTo() ) { | 498 | if ( event->relatedTo() ) { |
489 | addTag("b",i18n("Parent todo:<br>")); | 499 | addTag("b",i18n("Parent todo:<br>")); |
490 | mText.append(deTag(event->relatedTo()->summary())+" [" +QString::number(event->relatedTo()->priority()) + "/" + QString::number(((Todo*)event->relatedTo())->percentComplete())+"%] <br>"); | 500 | mText.append(deTag(event->relatedTo()->summary())+" [" +QString::number(event->relatedTo()->priority()) + "/" + QString::number(((Todo*)event->relatedTo())->percentComplete())+"%] <br>"); |
491 | } | 501 | } |
492 | QPtrList<Incidence> Relations = event->relations(); | 502 | QPtrList<Incidence> Relations = event->relations(); |
493 | Incidence *to; | 503 | Incidence *to; |
494 | if ( Relations.first() ) | 504 | if ( Relations.first() ) |
495 | addTag("b",i18n("Sub todos:<br>")); | 505 | addTag("b",i18n("Sub todos:<br>")); |
496 | for (to=Relations.first();to;to=Relations.next()) { | 506 | for (to=Relations.first();to;to=Relations.next()) { |
497 | mText.append( deTag(to->summary())+" [" +QString::number(to->priority()) + "/" + QString::number(((Todo*)to)->percentComplete())+"%]<br>"); | 507 | mText.append( deTag(to->summary())+" [" +QString::number(to->priority()) + "/" + QString::number(((Todo*)to)->percentComplete())+"%]<br>"); |
498 | 508 | ||
499 | } | 509 | } |
500 | if ( KOPrefs::instance()->mEVshowCreated ) { | 510 | if ( KOPrefs::instance()->mEVshowCreated ) { |
501 | addTag("p",i18n("<b>Created: ") +" </b>"); | 511 | addTag("p",i18n("<b>Created: ") +" </b>"); |
502 | addTag("p", KGlobal::locale()->formatDateTime( event->created(), shortDate )); | 512 | addTag("p", KGlobal::locale()->formatDateTime( event->created(), shortDate )); |
503 | 513 | ||
504 | } | 514 | } |
505 | if ( KOPrefs::instance()->mEVshowChanged ) { | 515 | if ( KOPrefs::instance()->mEVshowChanged ) { |
506 | addTag("p",i18n("<b>Last modified: ") +" </b>"); | 516 | addTag("p",i18n("<b>Last modified: ") +" </b>"); |
507 | addTag("p", KGlobal::locale()->formatDateTime( event->lastModified(), shortDate )); | 517 | addTag("p", KGlobal::locale()->formatDateTime( event->lastModified(), shortDate )); |
508 | 518 | ||
509 | } | 519 | } |
510 | setText(mText); | 520 | setText(mText); |
511 | } | 521 | } |
512 | 522 | ||
513 | void KOEventViewer::formatCategories(Incidence *event) | 523 | void KOEventViewer::formatCategories(Incidence *event) |
514 | { | 524 | { |
515 | if (!event->categoriesStr().isEmpty()) { | 525 | if (!event->categoriesStr().isEmpty()) { |
516 | if (event->categories().count() == 1) { | 526 | if (event->categories().count() == 1) { |
517 | addTag("h3",i18n("Category")); | 527 | addTag("h3",i18n("Category")); |
518 | } else { | 528 | } else { |
519 | addTag("h3",i18n("Categories")); | 529 | addTag("h3",i18n("Categories")); |
diff --git a/korganizer/kolistview.cpp b/korganizer/kolistview.cpp index 15e094d..e0e138e 100644 --- a/korganizer/kolistview.cpp +++ b/korganizer/kolistview.cpp | |||
@@ -75,132 +75,140 @@ public: | |||
75 | protected: | 75 | protected: |
76 | virtual QString text( const QPoint& p) | 76 | virtual QString text( const QPoint& p) |
77 | { | 77 | { |
78 | return _view->getWhatsThisText(p) ; | 78 | return _view->getWhatsThisText(p) ; |
79 | } | 79 | } |
80 | private: | 80 | private: |
81 | QWidget* _wid; | 81 | QWidget* _wid; |
82 | KOListView * _view; | 82 | KOListView * _view; |
83 | }; | 83 | }; |
84 | 84 | ||
85 | 85 | ||
86 | ListItemVisitor::ListItemVisitor(KOListViewItem *item, QDate date ) | 86 | ListItemVisitor::ListItemVisitor(KOListViewItem *item, QDate date ) |
87 | { | 87 | { |
88 | mItem = item; | 88 | mItem = item; |
89 | mDate = date; | 89 | mDate = date; |
90 | } | 90 | } |
91 | 91 | ||
92 | ListItemVisitor::~ListItemVisitor() | 92 | ListItemVisitor::~ListItemVisitor() |
93 | { | 93 | { |
94 | } | 94 | } |
95 | 95 | ||
96 | bool ListItemVisitor::visit(Event *e) | 96 | bool ListItemVisitor::visit(Event *e) |
97 | { | 97 | { |
98 | 98 | ||
99 | bool ok = false; | 99 | bool ok = false; |
100 | QString start, end; | 100 | QString start, end; |
101 | QDate ds, de; | 101 | QDate ds, de; |
102 | if ( e->doesRecur() ) { | 102 | if ( e->doesRecur() ) { |
103 | ds = e->getNextOccurence( QDateTime( mDate, QTime(0,0,0)), &ok ).date(); | 103 | ds = e->getNextOccurence( QDateTime( mDate, QTime(0,0,0)), &ok ).date(); |
104 | if ( ok ) { | 104 | if ( ok ) { |
105 | int days = e->dtStart().date().daysTo(e->dtEnd().date() ); | 105 | int days = e->dtStart().date().daysTo(e->dtEnd().date() ); |
106 | start = KGlobal::locale()->formatDate(ds,true); | 106 | start = KGlobal::locale()->formatDate(ds,true); |
107 | de = ds.addDays( days); | 107 | de = ds.addDays( days); |
108 | end = KGlobal::locale()->formatDate(de,true); | 108 | end = KGlobal::locale()->formatDate(de,true); |
109 | } | 109 | } |
110 | 110 | ||
111 | } | 111 | } |
112 | if ( ! ok ) { | 112 | if ( ! ok ) { |
113 | start =e->dtStartDateStr(); | 113 | start =e->dtStartDateStr(); |
114 | end = e->dtEndDateStr(); | 114 | end = e->dtEndDateStr(); |
115 | ds = e->dtStart().date(); | 115 | ds = e->dtStart().date(); |
116 | de = e->dtEnd().date(); | 116 | de = e->dtEnd().date(); |
117 | } | 117 | } |
118 | mItem->setText(0,e->summary()); | 118 | mItem->setText(0,e->summary()); |
119 | mItem->setText(1,start); | 119 | mItem->setText(1,start); |
120 | mItem->setText(2,e->dtStartTimeStr()); | 120 | mItem->setText(2,e->dtStartTimeStr()); |
121 | mItem->setText(3,end); | 121 | mItem->setText(3,end); |
122 | mItem->setText(4,e->dtEndTimeStr()); | 122 | mItem->setText(4,e->dtEndTimeStr()); |
123 | mItem->setText(5,e->isAlarmEnabled() ? i18n("Yes") : i18n("No")); | 123 | if ( e->isAlarmEnabled() ) { |
124 | mItem->setText(5,e->alarms().first()->offsetText() ); | ||
125 | } else { | ||
126 | mItem->setText(5, i18n("No")); | ||
127 | } | ||
124 | mItem->setText(6, e->recurrence()->recurrenceText()); | 128 | mItem->setText(6, e->recurrence()->recurrenceText()); |
125 | mItem->setText(7,"---"); | 129 | mItem->setText(7,"---"); |
126 | mItem->setText(8,"---"); | 130 | mItem->setText(8,"---"); |
127 | mItem->setText(9, e->cancelled() ? i18n("Yes") : i18n("No")); | 131 | mItem->setText(9, e->cancelled() ? i18n("Yes") : i18n("No")); |
128 | mItem->setText(10,e->categoriesStr()); | 132 | mItem->setText(10,e->categoriesStr()); |
129 | 133 | ||
130 | QString key; | 134 | QString key; |
131 | QTime t = e->doesFloat() ? QTime(0,0) : e->dtStart().time(); | 135 | QTime t = e->doesFloat() ? QTime(0,0) : e->dtStart().time(); |
132 | key.sprintf("%04d%02d%02d%02d%02d",ds.year(),ds.month(),ds.day(),t.hour(),t.minute()); | 136 | key.sprintf("%04d%02d%02d%02d%02d",ds.year(),ds.month(),ds.day(),t.hour(),t.minute()); |
133 | mItem->setSortKey(1,key); | 137 | mItem->setSortKey(1,key); |
134 | 138 | ||
135 | t = e->doesFloat() ? QTime(0,0) : e->dtEnd().time(); | 139 | t = e->doesFloat() ? QTime(0,0) : e->dtEnd().time(); |
136 | key.sprintf("%04d%02d%02d%02d%02d",de.year(),de.month(),de.day(),t.hour(),t.minute()); | 140 | key.sprintf("%04d%02d%02d%02d%02d",de.year(),de.month(),de.day(),t.hour(),t.minute()); |
137 | mItem->setSortKey(3,key); | 141 | mItem->setSortKey(3,key); |
138 | 142 | ||
139 | return true; | 143 | return true; |
140 | } | 144 | } |
141 | 145 | ||
142 | bool ListItemVisitor::visit(Todo *t) | 146 | bool ListItemVisitor::visit(Todo *t) |
143 | { | 147 | { |
144 | mItem->setText(0,i18n("Todo: %1").arg(t->summary())); | 148 | mItem->setText(0,i18n("Todo: %1").arg(t->summary())); |
145 | if (t->hasStartDate()) { | 149 | if (t->hasStartDate()) { |
146 | mItem->setText(1,t->dtStartDateStr()); | 150 | mItem->setText(1,t->dtStartDateStr()); |
147 | if (t->doesFloat()) { | 151 | if (t->doesFloat()) { |
148 | mItem->setText(2,"---"); | 152 | mItem->setText(2,"---"); |
149 | } else { | 153 | } else { |
150 | mItem->setText(2,t->dtStartTimeStr()); | 154 | mItem->setText(2,t->dtStartTimeStr()); |
151 | } | 155 | } |
152 | } else { | 156 | } else { |
153 | mItem->setText(1,"---"); | 157 | mItem->setText(1,"---"); |
154 | mItem->setText(2,"---"); | 158 | mItem->setText(2,"---"); |
155 | } | 159 | } |
156 | mItem->setText(3,"---"); | 160 | mItem->setText(3,"---"); |
157 | mItem->setText(4,"---"); | 161 | mItem->setText(4,"---"); |
158 | mItem->setText(5,t->isAlarmEnabled() ? i18n("Yes") : i18n("No")); | 162 | if ( t->isAlarmEnabled() ) { |
163 | mItem->setText(5,t->alarms().first()->offsetText() ); | ||
164 | } else { | ||
165 | mItem->setText(5, i18n("No")); | ||
166 | } | ||
159 | mItem->setText(6, t->recurrence()->recurrenceText()); | 167 | mItem->setText(6, t->recurrence()->recurrenceText()); |
160 | if (t->hasDueDate()) { | 168 | if (t->hasDueDate()) { |
161 | mItem->setText(7,t->dtDueDateStr()); | 169 | mItem->setText(7,t->dtDueDateStr()); |
162 | if (t->doesFloat()) { | 170 | if (t->doesFloat()) { |
163 | mItem->setText(8,"---"); | 171 | mItem->setText(8,"---"); |
164 | } else { | 172 | } else { |
165 | mItem->setText(8,t->dtDueTimeStr()); | 173 | mItem->setText(8,t->dtDueTimeStr()); |
166 | } | 174 | } |
167 | } else { | 175 | } else { |
168 | mItem->setText(7,"---"); | 176 | mItem->setText(7,"---"); |
169 | mItem->setText(8,"---"); | 177 | mItem->setText(8,"---"); |
170 | } | 178 | } |
171 | mItem->setText(9, t->cancelled() ? i18n("Yes") : i18n("No")); | 179 | mItem->setText(9, t->cancelled() ? i18n("Yes") : i18n("No")); |
172 | mItem->setText(10,t->categoriesStr()); | 180 | mItem->setText(10,t->categoriesStr()); |
173 | 181 | ||
174 | QString key; | 182 | QString key; |
175 | QDate d; | 183 | QDate d; |
176 | if (t->hasDueDate()) { | 184 | if (t->hasDueDate()) { |
177 | d = t->dtDue().date(); | 185 | d = t->dtDue().date(); |
178 | QTime tm = t->doesFloat() ? QTime(0,0) : t->dtDue().time(); | 186 | QTime tm = t->doesFloat() ? QTime(0,0) : t->dtDue().time(); |
179 | key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute()); | 187 | key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute()); |
180 | mItem->setSortKey(7,key); | 188 | mItem->setSortKey(7,key); |
181 | } | 189 | } |
182 | if ( t->hasStartDate() ) { | 190 | if ( t->hasStartDate() ) { |
183 | d = t->dtStart().date(); | 191 | d = t->dtStart().date(); |
184 | QTime tm = t->doesFloat() ? QTime(0,0) : t->dtStart().time(); | 192 | QTime tm = t->doesFloat() ? QTime(0,0) : t->dtStart().time(); |
185 | key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute()); | 193 | key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute()); |
186 | mItem->setSortKey(1,key); | 194 | mItem->setSortKey(1,key); |
187 | } | 195 | } |
188 | return true; | 196 | return true; |
189 | } | 197 | } |
190 | 198 | ||
191 | bool ListItemVisitor::visit(Journal * j) | 199 | bool ListItemVisitor::visit(Journal * j) |
192 | { | 200 | { |
193 | QString des = j->description().left(30); | 201 | QString des = j->description().left(30); |
194 | des = des.simplifyWhiteSpace (); | 202 | des = des.simplifyWhiteSpace (); |
195 | des.replace (QRegExp ("\\n"),"" ); | 203 | des.replace (QRegExp ("\\n"),"" ); |
196 | des.replace (QRegExp ("\\r"),"" ); | 204 | des.replace (QRegExp ("\\r"),"" ); |
197 | mItem->setText(0,i18n("Journal: ")+des.left(25)); | 205 | mItem->setText(0,i18n("Journal: ")+des.left(25)); |
198 | mItem->setText(1,j->dtStartDateStr()); | 206 | mItem->setText(1,j->dtStartDateStr()); |
199 | mItem->setText(2,"---"); | 207 | mItem->setText(2,"---"); |
200 | mItem->setText(3,"---"); | 208 | mItem->setText(3,"---"); |
201 | mItem->setText(4,"---"); | 209 | mItem->setText(4,"---"); |
202 | mItem->setText(5,"---"); | 210 | mItem->setText(5,"---"); |
203 | mItem->setText(6,"---"); | 211 | mItem->setText(6,"---"); |
204 | mItem->setText(7,j->dtStartDateStr()); | 212 | mItem->setText(7,j->dtStartDateStr()); |
205 | mItem->setText(8,"---"); | 213 | mItem->setText(8,"---"); |
206 | mItem->setText(9,"---"); | 214 | mItem->setText(9,"---"); |
diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp index 0a315cb..01cf0ff 100644 --- a/korganizer/kotodoview.cpp +++ b/korganizer/kotodoview.cpp | |||
@@ -173,100 +173,102 @@ void KOTodoListView::contentsDropEvent(QDropEvent *e) | |||
173 | reparentTodoSignal( destinationEvent, existingTodo ); | 173 | reparentTodoSignal( destinationEvent, existingTodo ); |
174 | else | 174 | else |
175 | unparentTodoSignal(existingTodo); | 175 | unparentTodoSignal(existingTodo); |
176 | delete todo; | 176 | delete todo; |
177 | } else { | 177 | } else { |
178 | mCalendar->addTodo(todo); | 178 | mCalendar->addTodo(todo); |
179 | emit todoDropped(todo, KOGlobals::EVENTADDED); | 179 | emit todoDropped(todo, KOGlobals::EVENTADDED); |
180 | if ( destinationEvent ) | 180 | if ( destinationEvent ) |
181 | reparentTodoSignal( destinationEvent, todo ); | 181 | reparentTodoSignal( destinationEvent, todo ); |
182 | } | 182 | } |
183 | } | 183 | } |
184 | else { | 184 | else { |
185 | QString text; | 185 | QString text; |
186 | if (QTextDrag::decode(e,text)) { | 186 | if (QTextDrag::decode(e,text)) { |
187 | //QListViewItem *qlvi = itemAt( contentsToViewport(e->pos()) ); | 187 | //QListViewItem *qlvi = itemAt( contentsToViewport(e->pos()) ); |
188 | KOTodoViewItem *todoi = static_cast<KOTodoViewItem *>(itemAt( contentsToViewport(e->pos()) )); | 188 | KOTodoViewItem *todoi = static_cast<KOTodoViewItem *>(itemAt( contentsToViewport(e->pos()) )); |
189 | qDebug("Dropped : " + text); | 189 | qDebug("Dropped : " + text); |
190 | QStringList emails = QStringList::split(",",text); | 190 | QStringList emails = QStringList::split(",",text); |
191 | for(QStringList::ConstIterator it = emails.begin();it!=emails.end();++it) { | 191 | for(QStringList::ConstIterator it = emails.begin();it!=emails.end();++it) { |
192 | int pos = (*it).find("<"); | 192 | int pos = (*it).find("<"); |
193 | QString name = (*it).left(pos); | 193 | QString name = (*it).left(pos); |
194 | QString email = (*it).mid(pos); | 194 | QString email = (*it).mid(pos); |
195 | if (!email.isEmpty() && todoi) { | 195 | if (!email.isEmpty() && todoi) { |
196 | todoi->todo()->addAttendee(new Attendee(name,email)); | 196 | todoi->todo()->addAttendee(new Attendee(name,email)); |
197 | } | 197 | } |
198 | } | 198 | } |
199 | } | 199 | } |
200 | else { | 200 | else { |
201 | qDebug("KOTodoListView::contentsDropEvent(): Todo from drop not decodable "); | 201 | qDebug("KOTodoListView::contentsDropEvent(): Todo from drop not decodable "); |
202 | e->ignore(); | 202 | e->ignore(); |
203 | } | 203 | } |
204 | } | 204 | } |
205 | #endif | 205 | #endif |
206 | } | 206 | } |
207 | 207 | ||
208 | void KOTodoListView::contentsMousePressEvent(QMouseEvent* e) | 208 | void KOTodoListView::contentsMousePressEvent(QMouseEvent* e) |
209 | { | 209 | { |
210 | 210 | ||
211 | QPoint p(contentsToViewport(e->pos())); | 211 | QPoint p(contentsToViewport(e->pos())); |
212 | QListViewItem *i = itemAt(p); | 212 | QListViewItem *i = itemAt(p); |
213 | bool rootClicked = true; | 213 | bool rootClicked = true; |
214 | if (i) { | 214 | if (i) { |
215 | // if the user clicked into the root decoration of the item, don't | 215 | // if the user clicked into the root decoration of the item, don't |
216 | // try to start a drag! | 216 | // try to start a drag! |
217 | int X = p.x(); | 217 | int X = p.x(); |
218 | //qDebug("%d %d %d", X, header()->sectionPos(0), treeStepSize() ); | 218 | //qDebug("%d %d %d", X, header()->sectionPos(0), treeStepSize() ); |
219 | if (X > header()->sectionPos(0) + | 219 | if (X > header()->sectionPos(0) + |
220 | treeStepSize() * (i->depth() + (rootIsDecorated() ? 1 : 0)) + | 220 | treeStepSize() * (i->depth() + (rootIsDecorated() ? 1 : 0)) + |
221 | itemMargin() || | 221 | itemMargin() +i->height()|| |
222 | X < header()->sectionPos(0)) { | 222 | X < header()->sectionPos(0)) { |
223 | rootClicked = false; | 223 | rootClicked = false; |
224 | } | 224 | } |
225 | } else { | ||
226 | rootClicked = false; | ||
225 | } | 227 | } |
226 | #ifndef KORG_NODND | 228 | #ifndef KORG_NODND |
227 | mMousePressed = false; | 229 | mMousePressed = false; |
228 | if (! rootClicked ) { | 230 | if (! rootClicked ) { |
229 | mPressPos = e->pos(); | 231 | mPressPos = e->pos(); |
230 | mMousePressed = true; | 232 | mMousePressed = true; |
231 | } | 233 | } |
232 | #endif | 234 | #endif |
233 | //qDebug("KOTodoListView::contentsMousePressEvent %d", rootClicked); | 235 | //qDebug("KOTodoListView::contentsMousePressEvent %d", rootClicked); |
234 | #ifndef DESKTOP_VERSION | 236 | #ifndef DESKTOP_VERSION |
235 | if (!( e->button() == RightButton && rootClicked) ) | 237 | if (!( e->button() == RightButton && rootClicked) ) |
236 | QListView::contentsMousePressEvent(e); | 238 | QListView::contentsMousePressEvent(e); |
237 | #else | 239 | #else |
238 | QListView::contentsMousePressEvent(e); | 240 | QListView::contentsMousePressEvent(e); |
239 | #endif | 241 | #endif |
240 | } | 242 | } |
241 | void KOTodoListView::paintEvent(QPaintEvent* e) | 243 | void KOTodoListView::paintEvent(QPaintEvent* e) |
242 | { | 244 | { |
243 | emit paintNeeded(); | 245 | emit paintNeeded(); |
244 | QListView::paintEvent( e); | 246 | QListView::paintEvent( e); |
245 | } | 247 | } |
246 | void KOTodoListView::contentsMouseMoveEvent(QMouseEvent* e) | 248 | void KOTodoListView::contentsMouseMoveEvent(QMouseEvent* e) |
247 | { | 249 | { |
248 | 250 | ||
249 | #ifndef KORG_NODND | 251 | #ifndef KORG_NODND |
250 | //QListView::contentsMouseMoveEvent(e); | 252 | //QListView::contentsMouseMoveEvent(e); |
251 | if (mMousePressed && (mPressPos - e->pos()).manhattanLength() > | 253 | if (mMousePressed && (mPressPos - e->pos()).manhattanLength() > |
252 | QApplication::startDragDistance()*3) { | 254 | QApplication::startDragDistance()*3) { |
253 | mMousePressed = false; | 255 | mMousePressed = false; |
254 | QListViewItem *item = itemAt(contentsToViewport(mPressPos)); | 256 | QListViewItem *item = itemAt(contentsToViewport(mPressPos)); |
255 | if (item) { | 257 | if (item) { |
256 | DndFactory factory( mCalendar ); | 258 | DndFactory factory( mCalendar ); |
257 | ICalDrag *vd = factory.createDrag( | 259 | ICalDrag *vd = factory.createDrag( |
258 | ((KOTodoViewItem *)item)->todo(),viewport()); | 260 | ((KOTodoViewItem *)item)->todo(),viewport()); |
259 | internalDrop = false; | 261 | internalDrop = false; |
260 | // we cannot do any senseful here, because the DnD is still broken in Qt | 262 | // we cannot do any senseful here, because the DnD is still broken in Qt |
261 | if (vd->drag()) { | 263 | if (vd->drag()) { |
262 | if ( !internalDrop ) { | 264 | if ( !internalDrop ) { |
263 | //emit deleteTodo( ((KOTodoViewItem *)item)->todo() ); | 265 | //emit deleteTodo( ((KOTodoViewItem *)item)->todo() ); |
264 | qDebug("Dnd: External move: Delete drag source "); | 266 | qDebug("Dnd: External move: Delete drag source "); |
265 | } else | 267 | } else |
266 | qDebug("Dnd: Internal move "); | 268 | qDebug("Dnd: Internal move "); |
267 | 269 | ||
268 | } else { | 270 | } else { |
269 | if ( !internalDrop ) { | 271 | if ( !internalDrop ) { |
270 | qDebug("Dnd: External Copy"); | 272 | qDebug("Dnd: External Copy"); |
271 | } else | 273 | } else |
272 | qDebug("DnD: Internal copy: Copy pending"); | 274 | qDebug("DnD: Internal copy: Copy pending"); |
@@ -685,129 +687,129 @@ void KOTodoView::updateView() | |||
685 | //qDebug("related not found "); | 687 | //qDebug("related not found "); |
686 | todoList.remove( ); | 688 | todoList.remove( ); |
687 | todo = todoList.current(); | 689 | todo = todoList.current(); |
688 | next = false; | 690 | next = false; |
689 | incidence = 0; | 691 | incidence = 0; |
690 | 692 | ||
691 | } else { | 693 | } else { |
692 | //qDebug("related found "); | 694 | //qDebug("related found "); |
693 | incidence = incidence->relatedTo(); | 695 | incidence = incidence->relatedTo(); |
694 | } | 696 | } |
695 | } else | 697 | } else |
696 | incidence = 0; | 698 | incidence = 0; |
697 | } | 699 | } |
698 | if ( next ) | 700 | if ( next ) |
699 | todo = todoList.next(); | 701 | todo = todoList.next(); |
700 | } | 702 | } |
701 | // qDebug("again .... "); | 703 | // qDebug("again .... "); |
702 | // for(todo = todoList.first(); todo; todo = todoList.next()) { | 704 | // for(todo = todoList.first(); todo; todo = todoList.next()) { |
703 | 705 | ||
704 | // qDebug("yytodo %s ", todo->summary().latin1()); | 706 | // qDebug("yytodo %s ", todo->summary().latin1()); |
705 | // } | 707 | // } |
706 | //qDebug("for "); | 708 | //qDebug("for "); |
707 | for(todo = todoList.first(); todo; todo = todoList.next()) { | 709 | for(todo = todoList.first(); todo; todo = todoList.next()) { |
708 | if (!mTodoMap.contains(todo) && checkTodo( todo ) ) | 710 | if (!mTodoMap.contains(todo) && checkTodo( todo ) ) |
709 | { | 711 | { |
710 | insertTodoItem(todo); | 712 | insertTodoItem(todo); |
711 | } | 713 | } |
712 | } | 714 | } |
713 | //qDebug("for end "); | 715 | //qDebug("for end "); |
714 | // Restore opened/closed state | 716 | // Restore opened/closed state |
715 | mTodoListView->blockSignals( true ); | 717 | mTodoListView->blockSignals( true ); |
716 | if( mDocPrefs ) restoreItemState( mTodoListView->firstChild() ); | 718 | if( mDocPrefs ) restoreItemState( mTodoListView->firstChild() ); |
717 | mTodoListView->blockSignals( false ); | 719 | mTodoListView->blockSignals( false ); |
718 | resetCurrentItem(); | 720 | resetCurrentItem(); |
719 | processSelectionChange(); | 721 | processSelectionChange(); |
720 | } | 722 | } |
721 | 723 | ||
722 | void KOTodoView::storeCurrentItem() | 724 | void KOTodoView::storeCurrentItem() |
723 | { | 725 | { |
724 | mCurItem = 0; | 726 | mCurItem = 0; |
725 | mCurItemRootParent = 0; | 727 | mCurItemRootParent = 0; |
726 | mCurItemAbove = 0; | 728 | mCurItemAbove = 0; |
727 | mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); | 729 | mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); |
728 | if (mActiveItem) { | 730 | if (mActiveItem) { |
729 | mCurItem = mActiveItem->todo(); | 731 | mCurItem = mActiveItem->todo(); |
730 | KOTodoViewItem* activeItemAbove = (KOTodoViewItem*)mActiveItem->itemAbove (); | 732 | KOTodoViewItem* activeItemAbove = (KOTodoViewItem*)mActiveItem->itemAbove (); |
731 | if ( activeItemAbove ) | 733 | if ( activeItemAbove ) |
732 | mCurItemAbove = activeItemAbove->todo(); | 734 | mCurItemAbove = activeItemAbove->todo(); |
733 | while ( mActiveItem->parent() != 0 ) | 735 | mCurItemRootParent = mCurItem; |
734 | mActiveItem = (KOTodoViewItem*)mActiveItem->parent(); | 736 | while ( mCurItemRootParent->relatedTo() != 0 ) |
735 | mCurItemRootParent = mActiveItem->todo(); | 737 | mCurItemRootParent = mCurItemRootParent->relatedTo(); |
736 | } | 738 | } |
737 | mActiveItem = 0; | 739 | mActiveItem = 0; |
738 | } | 740 | } |
739 | 741 | ||
740 | void KOTodoView::resetCurrentItem() | 742 | void KOTodoView::resetCurrentItem() |
741 | { | 743 | { |
742 | mTodoListView->setFocus(); | 744 | mTodoListView->setFocus(); |
743 | KOTodoViewItem* foundItem = 0; | 745 | KOTodoViewItem* foundItem = 0; |
744 | KOTodoViewItem* foundItemRoot = 0; | 746 | KOTodoViewItem* foundItemRoot = 0; |
745 | KOTodoViewItem* foundItemAbove = 0; | 747 | KOTodoViewItem* foundItemAbove = 0; |
746 | if ( mTodoListView->firstChild () ) { | 748 | if ( mTodoListView->firstChild () ) { |
747 | if ( mCurItem ) { | 749 | if ( mCurItem ) { |
748 | KOTodoViewItem* item = (KOTodoViewItem*)mTodoListView->firstChild (); | 750 | KOTodoViewItem* item = (KOTodoViewItem*)mTodoListView->firstChild (); |
749 | while ( item ) { | 751 | while ( item ) { |
750 | if ( item->todo() == mCurItem ) { | 752 | if ( item->todo() == mCurItem ) { |
751 | foundItem = item; | 753 | foundItem = item; |
752 | break; | 754 | break; |
753 | } else if ( item->todo() == mCurItemAbove ) { | 755 | } else if ( item->todo() == mCurItemAbove ) { |
754 | foundItemAbove = item; | 756 | foundItemAbove = item; |
755 | 757 | ||
756 | } else if ( item->todo() == mCurItemRootParent ) { | 758 | } else if ( item->todo() == mCurItemRootParent ) { |
757 | foundItemRoot = item; | 759 | foundItemRoot = item; |
758 | } | 760 | } |
759 | item = (KOTodoViewItem*)item->itemBelow(); | 761 | item = (KOTodoViewItem*)item->itemBelow(); |
760 | } | 762 | } |
761 | if ( ! foundItem ) { | 763 | if ( ! foundItem ) { |
762 | if ( foundItemAbove ) | 764 | if ( foundItemRoot ) |
763 | foundItem = foundItemAbove; | ||
764 | else | ||
765 | foundItem = foundItemRoot; | 765 | foundItem = foundItemRoot; |
766 | else | ||
767 | foundItem = foundItemAbove; | ||
766 | } | 768 | } |
767 | } | 769 | } |
768 | if ( foundItem ) { | 770 | if ( foundItem ) { |
769 | mTodoListView->setCurrentItem( foundItem ); | 771 | mTodoListView->setCurrentItem( foundItem ); |
770 | mTodoListView->ensureItemVisible( foundItem ); | 772 | mTodoListView->ensureItemVisible( foundItem ); |
771 | } else { | 773 | } else { |
772 | mTodoListView->setCurrentItem( mTodoListView->firstChild () ); | 774 | mTodoListView->setCurrentItem( mTodoListView->firstChild () ); |
773 | } | 775 | } |
774 | } | 776 | } |
775 | mTodoListView->setFocus(); | 777 | mTodoListView->setFocus(); |
776 | } | 778 | } |
777 | //Incidence * mCurItem, *mCurItemRootParent,*mCurItemAbove; | 779 | //Incidence * mCurItem, *mCurItemRootParent,*mCurItemAbove; |
778 | bool KOTodoView::checkTodo( Todo * todo ) | 780 | bool KOTodoView::checkTodo( Todo * todo ) |
779 | { | 781 | { |
780 | 782 | ||
781 | if ( !KOPrefs::instance()->mShowCompletedTodo && todo->isCompleted() ) | 783 | if ( !KOPrefs::instance()->mShowCompletedTodo && todo->isCompleted() ) |
782 | return false; | 784 | return false; |
783 | if ( !todo->isCompleted() ) { | 785 | if ( !todo->isCompleted() ) { |
784 | if ( todo->hasDueDate() && todo->dtDue().date() <= QDate::currentDate() ) | 786 | if ( todo->hasDueDate() && todo->dtDue().date() <= QDate::currentDate() ) |
785 | return true; | 787 | return true; |
786 | } | 788 | } |
787 | if ( KOPrefs::instance()->mHideNonStartedTodos && mNavigator ) { | 789 | if ( KOPrefs::instance()->mHideNonStartedTodos && mNavigator ) { |
788 | if ( todo->hasStartDate() ) | 790 | if ( todo->hasStartDate() ) |
789 | if ( mNavigator->selectedDates().last() < todo->dtStart().date() ) | 791 | if ( mNavigator->selectedDates().last() < todo->dtStart().date() ) |
790 | return false; | 792 | return false; |
791 | if ( todo->hasDueDate() ) | 793 | if ( todo->hasDueDate() ) |
792 | if ( mNavigator->selectedDates().first() > todo->dtDue().date() ) | 794 | if ( mNavigator->selectedDates().first() > todo->dtDue().date() ) |
793 | return false; | 795 | return false; |
794 | } | 796 | } |
795 | return true; | 797 | return true; |
796 | } | 798 | } |
797 | 799 | ||
798 | void KOTodoView::restoreItemState( QListViewItem *item ) | 800 | void KOTodoView::restoreItemState( QListViewItem *item ) |
799 | { | 801 | { |
800 | pendingSubtodo = 0; | 802 | pendingSubtodo = 0; |
801 | while( item ) { | 803 | while( item ) { |
802 | KOTodoViewItem *todoItem = (KOTodoViewItem *)item; | 804 | KOTodoViewItem *todoItem = (KOTodoViewItem *)item; |
803 | todoItem->setOpen( mDocPrefs->readBoolEntry( todoItem->todo()->uid() ) ); | 805 | todoItem->setOpen( mDocPrefs->readBoolEntry( todoItem->todo()->uid() ) ); |
804 | if( item->childCount() > 0 ) restoreItemState( item->firstChild() ); | 806 | if( item->childCount() > 0 ) restoreItemState( item->firstChild() ); |
805 | item = item->nextSibling(); | 807 | item = item->nextSibling(); |
806 | } | 808 | } |
807 | } | 809 | } |
808 | 810 | ||
809 | 811 | ||
810 | QMap<Todo *,KOTodoViewItem *>::ConstIterator | 812 | QMap<Todo *,KOTodoViewItem *>::ConstIterator |
811 | KOTodoView::insertTodoItem(Todo *todo) | 813 | KOTodoView::insertTodoItem(Todo *todo) |
812 | { | 814 | { |
813 | 815 | ||
@@ -1160,147 +1162,155 @@ void KOTodoView::itemStateChanged( QListViewItem *item ) | |||
1160 | 1162 | ||
1161 | // kdDebug() << "KOTodoView::itemStateChanged(): " << todoItem->todo()->summary() << endl; | 1163 | // kdDebug() << "KOTodoView::itemStateChanged(): " << todoItem->todo()->summary() << endl; |
1162 | 1164 | ||
1163 | if( mDocPrefs ) mDocPrefs->writeEntry( todoItem->todo()->uid(), todoItem->isOpen() ); | 1165 | if( mDocPrefs ) mDocPrefs->writeEntry( todoItem->todo()->uid(), todoItem->isOpen() ); |
1164 | } | 1166 | } |
1165 | 1167 | ||
1166 | void KOTodoView::saveLayout(KConfig *config, const QString &group) const | 1168 | void KOTodoView::saveLayout(KConfig *config, const QString &group) const |
1167 | { | 1169 | { |
1168 | mTodoListView->saveLayout(config,group); | 1170 | mTodoListView->saveLayout(config,group); |
1169 | } | 1171 | } |
1170 | 1172 | ||
1171 | void KOTodoView::restoreLayout(KConfig *config, const QString &group) | 1173 | void KOTodoView::restoreLayout(KConfig *config, const QString &group) |
1172 | { | 1174 | { |
1173 | mTodoListView->restoreLayout(config,group); | 1175 | mTodoListView->restoreLayout(config,group); |
1174 | } | 1176 | } |
1175 | 1177 | ||
1176 | void KOTodoView::processSelectionChange() | 1178 | void KOTodoView::processSelectionChange() |
1177 | { | 1179 | { |
1178 | // kdDebug() << "KOTodoView::processSelectionChange()" << endl; | 1180 | // kdDebug() << "KOTodoView::processSelectionChange()" << endl; |
1179 | 1181 | ||
1180 | KOTodoViewItem *item = | 1182 | KOTodoViewItem *item = |
1181 | static_cast<KOTodoViewItem *>( mTodoListView->selectedItem() ); | 1183 | static_cast<KOTodoViewItem *>( mTodoListView->selectedItem() ); |
1182 | 1184 | ||
1183 | if ( !item ) { | 1185 | if ( !item ) { |
1184 | emit incidenceSelected( 0 ); | 1186 | emit incidenceSelected( 0 ); |
1185 | } else { | 1187 | } else { |
1186 | emit incidenceSelected( item->todo() ); | 1188 | emit incidenceSelected( item->todo() ); |
1187 | } | 1189 | } |
1188 | } | 1190 | } |
1189 | 1191 | ||
1190 | void KOTodoView::modified(bool b) | 1192 | void KOTodoView::modified(bool b) |
1191 | { | 1193 | { |
1192 | emit isModified(b); | 1194 | emit isModified(b); |
1193 | } | 1195 | } |
1194 | void KOTodoView::setTodoModified( Todo* todo ) | 1196 | void KOTodoView::setTodoModified( Todo* todo ) |
1195 | { | 1197 | { |
1196 | todoModified( todo, KOGlobals::UNKNOWN_MODIFIED ); | 1198 | todoModified( todo, KOGlobals::UNKNOWN_MODIFIED ); |
1197 | } | 1199 | } |
1198 | void KOTodoView::clearSelection() | 1200 | void KOTodoView::clearSelection() |
1199 | { | 1201 | { |
1200 | mTodoListView->selectAll( false ); | 1202 | mTodoListView->selectAll( false ); |
1201 | } | 1203 | } |
1202 | void KOTodoView::setAllOpen() | 1204 | void KOTodoView::setAllOpen() |
1203 | { | 1205 | { |
1204 | if ( isFlatDisplay ) { | 1206 | if ( isFlatDisplay ) { |
1205 | isFlatDisplay = false; | 1207 | isFlatDisplay = false; |
1206 | mPopupMenu->setItemChecked( 8,false ); | 1208 | mPopupMenu->setItemChecked( 8,false ); |
1207 | updateView(); | 1209 | updateView(); |
1210 | } else { | ||
1211 | storeCurrentItem(); | ||
1208 | } | 1212 | } |
1209 | setOpen(mTodoListView->firstChild(), true); | 1213 | setOpen(mTodoListView->firstChild(), true); |
1214 | resetCurrentItem(); | ||
1210 | } | 1215 | } |
1211 | void KOTodoView::setAllClose() | 1216 | void KOTodoView::setAllClose() |
1212 | { | 1217 | { |
1213 | if ( isFlatDisplay ) { | 1218 | if ( isFlatDisplay ) { |
1214 | isFlatDisplay = false; | 1219 | isFlatDisplay = false; |
1215 | mPopupMenu->setItemChecked( 8,false ); | 1220 | mPopupMenu->setItemChecked( 8,false ); |
1216 | updateView(); | 1221 | updateView(); |
1222 | } else { | ||
1223 | storeCurrentItem(); | ||
1217 | } | 1224 | } |
1218 | setOpen(mTodoListView->firstChild(), false); | 1225 | setOpen(mTodoListView->firstChild(), false); |
1226 | resetCurrentItem(); | ||
1219 | } | 1227 | } |
1220 | void KOTodoView::setOpen( QListViewItem* item, bool setOpenI) | 1228 | void KOTodoView::setOpen( QListViewItem* item, bool setOpenI) |
1221 | { | 1229 | { |
1222 | 1230 | ||
1223 | while ( item ) { | 1231 | while ( item ) { |
1224 | setOpen( item->firstChild(), setOpenI ); | 1232 | setOpen( item->firstChild(), setOpenI ); |
1225 | item->setOpen( setOpenI ); | 1233 | item->setOpen( setOpenI ); |
1226 | item = item->nextSibling(); | 1234 | item = item->nextSibling(); |
1227 | } | 1235 | } |
1228 | } | 1236 | } |
1229 | 1237 | ||
1230 | void KOTodoView::displayAllFlat() | 1238 | void KOTodoView::displayAllFlat() |
1231 | { | 1239 | { |
1232 | pendingSubtodo = 0; | 1240 | pendingSubtodo = 0; |
1233 | if ( mBlockUpdate ) { | 1241 | if ( mBlockUpdate ) { |
1234 | return; | 1242 | return; |
1235 | } | 1243 | } |
1236 | mPopupMenu->setItemChecked( 8,true ); | 1244 | mPopupMenu->setItemChecked( 8,true ); |
1237 | isFlatDisplay = true; | 1245 | isFlatDisplay = true; |
1238 | QPtrList<Todo> todoList = calendar()->todos(); | 1246 | QPtrList<Todo> todoList = calendar()->todos(); |
1239 | mTodoMap.clear(); | 1247 | mTodoMap.clear(); |
1240 | mTodoListView->clear(); | 1248 | mTodoListView->clear(); |
1241 | Todo *todo; | 1249 | Todo *todo; |
1242 | for(todo = todoList.first(); todo; todo = todoList.next()) { | 1250 | for(todo = todoList.first(); todo; todo = todoList.next()) { |
1243 | KOTodoViewItem *todoItem = new KOTodoViewItem(mTodoListView,todo,this); | 1251 | KOTodoViewItem *todoItem = new KOTodoViewItem(mTodoListView,todo,this); |
1244 | mTodoMap.insert(todo,todoItem); | 1252 | mTodoMap.insert(todo,todoItem); |
1245 | } | 1253 | } |
1246 | mTodoListView->setFocus(); | 1254 | mTodoListView->setFocus(); |
1247 | processSelectionChange(); | 1255 | processSelectionChange(); |
1248 | } | 1256 | } |
1249 | 1257 | ||
1250 | void KOTodoView::setAllFlat() | 1258 | void KOTodoView::setAllFlat() |
1251 | { | 1259 | { |
1252 | if ( isFlatDisplay ) { | 1260 | if ( isFlatDisplay ) { |
1253 | isFlatDisplay = false; | 1261 | isFlatDisplay = false; |
1254 | mPopupMenu->setItemChecked( 8,false ); | 1262 | mPopupMenu->setItemChecked( 8,false ); |
1255 | updateView(); | 1263 | updateView(); |
1256 | return; | 1264 | return; |
1257 | } | 1265 | } |
1266 | storeCurrentItem(); | ||
1258 | displayAllFlat(); | 1267 | displayAllFlat(); |
1268 | resetCurrentItem(); | ||
1259 | } | 1269 | } |
1260 | 1270 | ||
1261 | void KOTodoView::purgeCompleted() | 1271 | void KOTodoView::purgeCompleted() |
1262 | { | 1272 | { |
1263 | emit purgeCompletedSignal(); | 1273 | emit purgeCompletedSignal(); |
1264 | } | 1274 | } |
1265 | void KOTodoView::toggleQuickTodo() | 1275 | void KOTodoView::toggleQuickTodo() |
1266 | { | 1276 | { |
1267 | if ( mQuickAdd->isVisible() ) { | 1277 | if ( mQuickAdd->isVisible() ) { |
1268 | mQuickAdd->hide(); | 1278 | mQuickAdd->hide(); |
1269 | KOPrefs::instance()->mEnableQuickTodo = false; | 1279 | KOPrefs::instance()->mEnableQuickTodo = false; |
1270 | } | 1280 | } |
1271 | else { | 1281 | else { |
1272 | mQuickAdd->show(); | 1282 | mQuickAdd->show(); |
1273 | KOPrefs::instance()->mEnableQuickTodo = true; | 1283 | KOPrefs::instance()->mEnableQuickTodo = true; |
1274 | } | 1284 | } |
1275 | mPopupMenu->setItemChecked(4,KOPrefs::instance()->mEnableQuickTodo); | 1285 | mPopupMenu->setItemChecked(4,KOPrefs::instance()->mEnableQuickTodo); |
1276 | mItemPopupMenu->setItemChecked( 34 , KOPrefs::instance()->mEnableQuickTodo ); | 1286 | mItemPopupMenu->setItemChecked( 34 , KOPrefs::instance()->mEnableQuickTodo ); |
1277 | } | 1287 | } |
1278 | 1288 | ||
1279 | void KOTodoView::toggleRunning() | 1289 | void KOTodoView::toggleRunning() |
1280 | { | 1290 | { |
1281 | KOPrefs::instance()->mHideNonStartedTodos = !KOPrefs::instance()->mHideNonStartedTodos; | 1291 | KOPrefs::instance()->mHideNonStartedTodos = !KOPrefs::instance()->mHideNonStartedTodos; |
1282 | mPopupMenu->setItemChecked(5,KOPrefs::instance()->mHideNonStartedTodos); | 1292 | mPopupMenu->setItemChecked(5,KOPrefs::instance()->mHideNonStartedTodos); |
1283 | mItemPopupMenu->setItemChecked( 35 , KOPrefs::instance()->mHideNonStartedTodos ); | 1293 | mItemPopupMenu->setItemChecked( 35 , KOPrefs::instance()->mHideNonStartedTodos ); |
1284 | updateView(); | 1294 | updateView(); |
1285 | } | 1295 | } |
1286 | 1296 | ||
1287 | void KOTodoView::toggleCompleted() | 1297 | void KOTodoView::toggleCompleted() |
1288 | { | 1298 | { |
1289 | KOPrefs::instance()->mShowCompletedTodo = !KOPrefs::instance()->mShowCompletedTodo; | 1299 | KOPrefs::instance()->mShowCompletedTodo = !KOPrefs::instance()->mShowCompletedTodo; |
1290 | mPopupMenu->setItemChecked( 3,KOPrefs::instance()->mShowCompletedTodo ); | 1300 | mPopupMenu->setItemChecked( 3,KOPrefs::instance()->mShowCompletedTodo ); |
1291 | mItemPopupMenu->setItemChecked( 33 , KOPrefs::instance()->mShowCompletedTodo ); | 1301 | mItemPopupMenu->setItemChecked( 33 , KOPrefs::instance()->mShowCompletedTodo ); |
1292 | updateView(); | 1302 | updateView(); |
1293 | } | 1303 | } |
1294 | 1304 | ||
1295 | void KOTodoView::addQuickTodo() | 1305 | void KOTodoView::addQuickTodo() |
1296 | { | 1306 | { |
1297 | Todo *todo = new Todo(); | 1307 | Todo *todo = new Todo(); |
1298 | todo->setSummary(mQuickAdd->text()); | 1308 | todo->setSummary(mQuickAdd->text()); |
1299 | todo->setOrganizer(KOPrefs::instance()->email()); | 1309 | todo->setOrganizer(KOPrefs::instance()->email()); |
1300 | CalFilter * cf = mCalendar->filter(); | 1310 | CalFilter * cf = mCalendar->filter(); |
1301 | if ( cf ) { | 1311 | if ( cf ) { |
1302 | if ( cf->isEnabled()&& cf->showCategories()) { | 1312 | if ( cf->isEnabled()&& cf->showCategories()) { |
1303 | todo->setCategories(cf->categoryList()); | 1313 | todo->setCategories(cf->categoryList()); |
1304 | } | 1314 | } |
1305 | if ( cf->isEnabled() ) | 1315 | if ( cf->isEnabled() ) |
1306 | todo->setSecrecy( cf->getSecrecy()); | 1316 | todo->setSecrecy( cf->getSecrecy()); |