author | zautrix <zautrix> | 2005-01-31 16:29:05 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-31 16:29:05 (UTC) |
commit | ec037c4616342c1b3976c55db98b775f48e0d455 (patch) (unidiff) | |
tree | 9d568c8f6ad6005f822c12644596b7a553837c7f /korganizer | |
parent | 5d52c81be9b43887c13f8534a04164d3b44b821f (diff) | |
download | kdepimpi-ec037c4616342c1b3976c55db98b775f48e0d455.zip kdepimpi-ec037c4616342c1b3976c55db98b775f48e0d455.tar.gz kdepimpi-ec037c4616342c1b3976c55db98b775f48e0d455.tar.bz2 |
fix
-rw-r--r-- | korganizer/komonthview.cpp | 159 | ||||
-rw-r--r-- | korganizer/komonthview.h | 5 |
2 files changed, 141 insertions, 23 deletions
diff --git a/korganizer/komonthview.cpp b/korganizer/komonthview.cpp index 770a42b..6646b98 100644 --- a/korganizer/komonthview.cpp +++ b/korganizer/komonthview.cpp | |||
@@ -396,8 +396,10 @@ void MonthViewCell::clear() | |||
396 | QApplication::removePostedEvents ( mLabel ); | 396 | QApplication::removePostedEvents ( mLabel ); |
397 | QApplication::removePostedEvents ( this ); | 397 | QApplication::removePostedEvents ( this ); |
398 | } | 398 | } |
399 | void MonthViewCell::updateCell() | 399 | |
400 | void MonthViewCell::startUpdateCell() | ||
400 | { | 401 | { |
402 | |||
401 | if ( !mMonthView->isUpdatePossible() ) | 403 | if ( !mMonthView->isUpdatePossible() ) |
402 | return; | 404 | return; |
403 | /* | 405 | /* |
@@ -418,25 +420,24 @@ void MonthViewCell::updateCell() | |||
418 | #ifdef DESKTOP_VERSION | 420 | #ifdef DESKTOP_VERSION |
419 | QToolTip::remove(this); | 421 | QToolTip::remove(this); |
420 | #endif | 422 | #endif |
421 | QString tipText(""); | 423 | mToolTip = ""; |
422 | //qApp->processEvents(); | 424 | //qApp->processEvents(); |
423 | if ( !mHolidayString.isEmpty() ) { | 425 | if ( !mHolidayString.isEmpty() ) { |
424 | MonthViewItem *item = new MonthViewItem( 0, mDate, mHolidayString ); | 426 | MonthViewItem *item = new MonthViewItem( 0, mDate, mHolidayString ); |
425 | item->setPalette( mHolidayPalette ); | 427 | item->setPalette( mHolidayPalette ); |
426 | mItemList->insertItem( item ); | 428 | mItemList->insertItem( item ); |
427 | tipText += mHolidayString+"\n"; | 429 | mToolTip += mHolidayString+"\n"; |
430 | } | ||
428 | } | 431 | } |
429 | //mLabel->setMaximumWidth( width() - mItemList->lineWidth()*2); | ||
430 | QPtrList<Event> events = mMonthView->calendar()->events( mDate, true ); | ||
431 | Event *event; | ||
432 | for( event = events.first(); event; event = events.next() ) { // for event | ||
433 | 432 | ||
433 | void MonthViewCell::insertEvent(Event *event) | ||
434 | { | ||
434 | if ( !(event->doesRecur() == Recurrence::rNone) ) { | 435 | if ( !(event->doesRecur() == Recurrence::rNone) ) { |
435 | if ( !KOPrefs::instance()->mMonthDailyRecur && event->doesRecur() == Recurrence::rDaily ) | 436 | if ( !KOPrefs::instance()->mMonthDailyRecur && event->doesRecur() == Recurrence::rDaily ) |
436 | continue; | 437 | return; |
437 | else | 438 | else |
438 | if ( !KOPrefs::instance()->mMonthWeeklyRecur && event->doesRecur() == Recurrence::rWeekly ) | 439 | if ( !KOPrefs::instance()->mMonthWeeklyRecur && event->doesRecur() == Recurrence::rWeekly ) |
439 | continue; | 440 | return; |
440 | } | 441 | } |
441 | 442 | ||
442 | if ( event->categories().contains("Holiday") || | 443 | if ( event->categories().contains("Holiday") || |
@@ -465,16 +466,16 @@ void MonthViewCell::updateCell() | |||
465 | } | 466 | } |
466 | } | 467 | } |
467 | text = prefix + event->summary(); | 468 | text = prefix + event->summary(); |
468 | tipText += text; | 469 | mToolTip += text; |
469 | } else { | 470 | } else { |
470 | if (event->doesFloat()) { | 471 | if (event->doesFloat()) { |
471 | text = event->summary(); | 472 | text = event->summary(); |
472 | tipText += text; | 473 | mToolTip += text; |
473 | } | 474 | } |
474 | else { | 475 | else { |
475 | text = KGlobal::locale()->formatTime(event->dtStart().time()); | 476 | text = KGlobal::locale()->formatTime(event->dtStart().time()); |
476 | text += " " + event->summary(); | 477 | text += " " + event->summary(); |
477 | tipText += KGlobal::locale()->formatTime(event->dtStart().time()) +"-"+KGlobal::locale()->formatTime(event->dtEnd().time())+" " + event->summary(); | 478 | mToolTip += KGlobal::locale()->formatTime(event->dtStart().time()) +"-"+KGlobal::locale()->formatTime(event->dtEnd().time())+" " + event->summary(); |
478 | } | 479 | } |
479 | } | 480 | } |
480 | 481 | ||
@@ -518,14 +519,10 @@ void MonthViewCell::updateCell() | |||
518 | item->setReply(false); | 519 | item->setReply(false); |
519 | #endif | 520 | #endif |
520 | mItemList->insertItem( item ); | 521 | mItemList->insertItem( item ); |
521 | tipText += "\n"; | 522 | mToolTip += "\n"; |
522 | |||
523 | } | 523 | } |
524 | 524 | void MonthViewCell::insertTodo(Todo *todo) | |
525 | // insert due todos | 525 | { |
526 | QPtrList<Todo> todos = mMonthView->calendar()->todos( mDate ); | ||
527 | Todo *todo; | ||
528 | for(todo = todos.first(); todo; todo = todos.next()) { | ||
529 | QString text; | 526 | QString text; |
530 | if (todo->hasDueDate()) { | 527 | if (todo->hasDueDate()) { |
531 | if (!todo->doesFloat()) { | 528 | if (!todo->doesFloat()) { |
@@ -562,11 +559,13 @@ void MonthViewCell::updateCell() | |||
562 | } | 559 | } |
563 | item->setPalette( pal ); | 560 | item->setPalette( pal ); |
564 | mItemList->insertItem( item ); | 561 | mItemList->insertItem( item ); |
565 | tipText += text+"\n"; | 562 | mToolTip += text+"\n"; |
566 | } | 563 | } |
564 | void MonthViewCell::finishUpdateCell() | ||
565 | { | ||
567 | #ifdef DESKTOP_VERSION | 566 | #ifdef DESKTOP_VERSION |
568 | if (tipText != "") | 567 | if (mToolTip != "") |
569 | QToolTip::add(this,tipText,toolTipGroup(),""); | 568 | QToolTip::add(this,mToolTip,toolTipGroup(),""); |
570 | #endif | 569 | #endif |
571 | 570 | ||
572 | //setMyPalette(); | 571 | //setMyPalette(); |
@@ -584,13 +583,32 @@ void MonthViewCell::updateCell() | |||
584 | 583 | ||
585 | mLabel->setText( text ); | 584 | mLabel->setText( text ); |
586 | resizeEvent( 0 ); | 585 | resizeEvent( 0 ); |
586 | } | ||
587 | void MonthViewCell::updateCell() | ||
588 | { | ||
589 | if ( !mMonthView->isUpdatePossible() ) | ||
590 | return; | ||
591 | startUpdateCell(); | ||
592 | //mLabel->setMaximumWidth( width() - mItemList->lineWidth()*2); | ||
593 | QPtrList<Event> events = mMonthView->calendar()->events( mDate, true ); | ||
594 | Event *event; | ||
595 | for( event = events.first(); event; event = events.next() ) { // for event | ||
596 | insertEvent(event); | ||
597 | } | ||
598 | // insert due todos | ||
599 | QPtrList<Todo> todos = mMonthView->calendar()->todos( mDate ); | ||
600 | Todo *todo; | ||
601 | for(todo = todos.first(); todo; todo = todos.next()) { | ||
602 | insertTodo( todo ); | ||
603 | } | ||
604 | finishUpdateCell(); | ||
587 | // if ( isVisible()) | 605 | // if ( isVisible()) |
588 | //qApp->processEvents(); | 606 | //qApp->processEvents(); |
589 | } | 607 | } |
590 | 608 | ||
591 | void MonthViewCell::updateConfig() | 609 | void MonthViewCell::updateConfig() |
592 | { | 610 | { |
593 | 611 | qDebug("MonthViewCell::updateConfig() "); | |
594 | setFont( KOPrefs::instance()->mMonthViewFont ); | 612 | setFont( KOPrefs::instance()->mMonthViewFont ); |
595 | 613 | ||
596 | QFontMetrics fm( font() ); | 614 | QFontMetrics fm( font() ); |
@@ -958,6 +976,98 @@ void KOMonthView::updateView() | |||
958 | 976 | ||
959 | if ( !updatePossible ) | 977 | if ( !updatePossible ) |
960 | return; | 978 | return; |
979 | QTime ti; | ||
980 | ti.start(); | ||
981 | #if 1 | ||
982 | int i; | ||
983 | for( i = 0; i < mCells.count(); ++i ) { | ||
984 | mCells[i]->startUpdateCell(); | ||
985 | } | ||
986 | |||
987 | QPtrList<Event> events = calendar()->events(); | ||
988 | Event *event; | ||
989 | QDateTime dt; | ||
990 | bool ok; | ||
991 | int timeSpan = mCells.size()-1; | ||
992 | QDate endDate = mStartDate.addDays( timeSpan ); | ||
993 | for( event = events.first(); event; event = events.next() ) { // for event | ||
994 | if ( event->doesRecur() ) { | ||
995 | bool last; | ||
996 | QDateTime incidenceStart = event->recurrence()->getPreviousDateTime( QDateTime( mStartDate ) , &last ); | ||
997 | QDateTime incidenceEnd; | ||
998 | int eventlen = event->dtStart().date().daysTo ( event->dtEnd().date() ); | ||
999 | bool invalid = false; | ||
1000 | while( true ) { | ||
1001 | if ( incidenceStart.isValid() ) { | ||
1002 | incidenceEnd = incidenceStart.addDays( eventlen ); | ||
1003 | int st = incidenceStart.date().daysTo( endDate ); | ||
1004 | if ( st >= 0 ) { // start before timeend | ||
1005 | int end = mStartDate.daysTo( incidenceEnd.date() ); | ||
1006 | if ( end >= 0 ) { // end after timestart --- got one! | ||
1007 | //normalize | ||
1008 | st = timeSpan - st; | ||
1009 | if ( st < 0 ) st = 0; | ||
1010 | if ( end > timeSpan ) end = timeSpan; | ||
1011 | int iii; | ||
1012 | //qDebug("found %s %d %d ",event->summary().latin1(), st, end ); | ||
1013 | for ( iii = st;iii<= end;++iii) | ||
1014 | mCells[iii]->insertEvent( event ); | ||
1015 | } | ||
1016 | } | ||
1017 | } else { | ||
1018 | if ( invalid ) | ||
1019 | break; | ||
1020 | invalid = true; | ||
1021 | //qDebug("invalid %s", event->summary().latin1()); | ||
1022 | incidenceStart = QDateTime( mStartDate ); | ||
1023 | } | ||
1024 | if ( last ) | ||
1025 | break; | ||
1026 | bool ok; | ||
1027 | incidenceStart = event->getNextOccurence( incidenceStart.addSecs( 1 ) ,&ok ); | ||
1028 | if ( ! ok ) | ||
1029 | break; | ||
1030 | if ( incidenceStart.date() > endDate ) | ||
1031 | break; | ||
1032 | } | ||
1033 | } else { // no recur | ||
1034 | int st = event->dtStart().date().daysTo( endDate ); | ||
1035 | if ( st >= 0 ) { // start before timeend | ||
1036 | int end = mStartDate.daysTo( event->dtEnd().date() ); | ||
1037 | if ( end >= 0 ) { // end after timestart --- got one! | ||
1038 | //normalize | ||
1039 | st = timeSpan - st; | ||
1040 | if ( st < 0 ) st = 0; | ||
1041 | if ( end > timeSpan ) end = timeSpan; | ||
1042 | int iii; | ||
1043 | for ( iii = st;iii<= end;++iii) | ||
1044 | mCells[iii]->insertEvent( event ); | ||
1045 | } | ||
1046 | } | ||
1047 | } | ||
1048 | } | ||
1049 | // insert due todos | ||
1050 | QPtrList<Todo> todos = calendar()->todos( ); | ||
1051 | Todo *todo; | ||
1052 | for(todo = todos.first(); todo; todo = todos.next()) { | ||
1053 | //insertTodo( todo ); | ||
1054 | if ( todo->hasDueDate() ) { | ||
1055 | int day = mStartDate.daysTo( todo->dtDue().date() ); | ||
1056 | if ( day >= 0 && day < mCells.size() ) { | ||
1057 | mCells[day]->insertTodo( todo ); | ||
1058 | } | ||
1059 | } | ||
1060 | } | ||
1061 | |||
1062 | for( i = 0; i < mCells.count(); ++i ) { | ||
1063 | mCells[i]->finishUpdateCell(); | ||
1064 | } | ||
1065 | processSelectionChange(); | ||
1066 | mCells[0]->setFocus(); | ||
1067 | |||
1068 | |||
1069 | #else | ||
1070 | // old code | ||
961 | //qDebug("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ "); | 1071 | //qDebug("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ "); |
962 | int i; | 1072 | int i; |
963 | for( i = 0; i < mCells.count(); ++i ) { | 1073 | for( i = 0; i < mCells.count(); ++i ) { |
@@ -968,6 +1078,9 @@ void KOMonthView::updateView() | |||
968 | processSelectionChange(); | 1078 | processSelectionChange(); |
969 | // qDebug("---------------------------------------------------------------------+ "); | 1079 | // qDebug("---------------------------------------------------------------------+ "); |
970 | mCells[0]->setFocus(); | 1080 | mCells[0]->setFocus(); |
1081 | #endif | ||
1082 | |||
1083 | qDebug("update time %d ", ti.elapsed()); | ||
971 | } | 1084 | } |
972 | 1085 | ||
973 | void KOMonthView::resizeEvent(QResizeEvent * e) | 1086 | void KOMonthView::resizeEvent(QResizeEvent * e) |
diff --git a/korganizer/komonthview.h b/korganizer/komonthview.h index 50903b3..b84065e 100644 --- a/korganizer/komonthview.h +++ b/korganizer/komonthview.h | |||
@@ -137,6 +137,10 @@ class MonthViewCell : public QWidget | |||
137 | void setHoliday( const QString & ); | 137 | void setHoliday( const QString & ); |
138 | 138 | ||
139 | void updateCell(); | 139 | void updateCell(); |
140 | void startUpdateCell(); | ||
141 | void finishUpdateCell(); | ||
142 | void insertEvent(Event *); | ||
143 | void insertTodo(Todo *); | ||
140 | 144 | ||
141 | void updateConfig(); | 145 | void updateConfig(); |
142 | 146 | ||
@@ -158,6 +162,7 @@ class MonthViewCell : public QWidget | |||
158 | void showDaySignal( QDate ); | 162 | void showDaySignal( QDate ); |
159 | 163 | ||
160 | protected: | 164 | protected: |
165 | QString mToolTip; | ||
161 | void resizeEvent( QResizeEvent * ); | 166 | void resizeEvent( QResizeEvent * ); |
162 | 167 | ||
163 | protected slots: | 168 | protected slots: |