-rw-r--r-- | korganizer/koagendaview.cpp | 3 | ||||
-rw-r--r-- | korganizer/kotodoview.cpp | 29 | ||||
-rw-r--r-- | korganizer/kotodoviewitem.cpp | 30 |
3 files changed, 39 insertions, 23 deletions
diff --git a/korganizer/koagendaview.cpp b/korganizer/koagendaview.cpp index bbc43e4..42a6f7c 100644 --- a/korganizer/koagendaview.cpp +++ b/korganizer/koagendaview.cpp | |||
@@ -1116,97 +1116,96 @@ void KOAgendaView::fillAgenda() | |||
1116 | QDateTime nextOcend =nextOcstart.addSecs( secs ); ; | 1116 | QDateTime nextOcend =nextOcstart.addSecs( secs ); ; |
1117 | beginX = currentDate.daysTo(nextOcstart.date()) + curCol; | 1117 | beginX = currentDate.daysTo(nextOcstart.date()) + curCol; |
1118 | endX = currentDate.daysTo(nextOcend.date()) + curCol; | 1118 | endX = currentDate.daysTo(nextOcend.date()) + curCol; |
1119 | 1119 | ||
1120 | } | 1120 | } |
1121 | } | 1121 | } |
1122 | int startY = mAgenda->timeToY(event->dtStart().time()); | 1122 | int startY = mAgenda->timeToY(event->dtStart().time()); |
1123 | int endY = mAgenda->timeToY(event->dtEnd().time()) - 1; | 1123 | int endY = mAgenda->timeToY(event->dtEnd().time()) - 1; |
1124 | //qDebug("insert %d %d %d %d %d ",beginX,endX,startY,endY , curCol ); | 1124 | //qDebug("insert %d %d %d %d %d ",beginX,endX,startY,endY , curCol ); |
1125 | if ((beginX <= 0 && curCol == 0) || beginX == curCol) { | 1125 | if ((beginX <= 0 && curCol == 0) || beginX == curCol) { |
1126 | //qDebug("insert!!! "); | 1126 | //qDebug("insert!!! "); |
1127 | mAgenda->insertMultiItem(event,currentDate,beginX,endX,startY,endY); | 1127 | mAgenda->insertMultiItem(event,currentDate,beginX,endX,startY,endY); |
1128 | } | 1128 | } |
1129 | if (beginX == curCol) { | 1129 | if (beginX == curCol) { |
1130 | mMaxY[curCol] = mAgenda->timeToY(QTime(23,59)); | 1130 | mMaxY[curCol] = mAgenda->timeToY(QTime(23,59)); |
1131 | if (startY < mMinY[curCol]) mMinY[curCol] = startY; | 1131 | if (startY < mMinY[curCol]) mMinY[curCol] = startY; |
1132 | } else if (endX == curCol) { | 1132 | } else if (endX == curCol) { |
1133 | mMinY[curCol] = mAgenda->timeToY(QTime(0,0)); | 1133 | mMinY[curCol] = mAgenda->timeToY(QTime(0,0)); |
1134 | if (endY > mMaxY[curCol]) mMaxY[curCol] = endY; | 1134 | if (endY > mMaxY[curCol]) mMaxY[curCol] = endY; |
1135 | } else { | 1135 | } else { |
1136 | mMinY[curCol] = mAgenda->timeToY(QTime(0,0)); | 1136 | mMinY[curCol] = mAgenda->timeToY(QTime(0,0)); |
1137 | mMaxY[curCol] = mAgenda->timeToY(QTime(23,59)); | 1137 | mMaxY[curCol] = mAgenda->timeToY(QTime(23,59)); |
1138 | } | 1138 | } |
1139 | } else { | 1139 | } else { |
1140 | int startY = mAgenda->timeToY(event->dtStart().time()); | 1140 | int startY = mAgenda->timeToY(event->dtStart().time()); |
1141 | int endY = mAgenda->timeToY(event->dtEnd().time()) - 1; | 1141 | int endY = mAgenda->timeToY(event->dtEnd().time()) - 1; |
1142 | if (endY < startY) endY = startY; | 1142 | if (endY < startY) endY = startY; |
1143 | mAgenda->insertItem(event,currentDate,curCol,startY,endY); | 1143 | mAgenda->insertItem(event,currentDate,curCol,startY,endY); |
1144 | if (startY < mMinY[curCol]) mMinY[curCol] = startY; | 1144 | if (startY < mMinY[curCol]) mMinY[curCol] = startY; |
1145 | if (endY > mMaxY[curCol]) mMaxY[curCol] = endY; | 1145 | if (endY > mMaxY[curCol]) mMaxY[curCol] = endY; |
1146 | } | 1146 | } |
1147 | } | 1147 | } |
1148 | // ---------- [display Todos -------------- | 1148 | // ---------- [display Todos -------------- |
1149 | unsigned int numTodo; | 1149 | unsigned int numTodo; |
1150 | for (numTodo = 0; numTodo < todos.count(); ++numTodo) { | 1150 | for (numTodo = 0; numTodo < todos.count(); ++numTodo) { |
1151 | Todo *todo = todos.at(numTodo); | 1151 | Todo *todo = todos.at(numTodo); |
1152 | 1152 | ||
1153 | if ( ! todo->hasDueDate() && !todo->hasCompletedDate()) continue; // todo shall not be displayed if it has no date | 1153 | if ( ! todo->hasDueDate() && !todo->hasCompletedDate()) continue; // todo shall not be displayed if it has no date |
1154 | 1154 | ||
1155 | // ToDo items shall be displayed for the day they are due, but only showed today if they are already overdue. | 1155 | // ToDo items shall be displayed for the day they are due, but only showed today if they are already overdue. |
1156 | // Already completed items can be displayed on their original due date | 1156 | // Already completed items can be displayed on their original due date |
1157 | //if not KOPrefs::instance()->mShowTodoInAgenda, show overdue in agenda | 1157 | //if not KOPrefs::instance()->mShowTodoInAgenda, show overdue in agenda |
1158 | bool overdue = (!todo->isCompleted()) && (todo->dtDue() < today) && KOPrefs::instance()->mShowTodoInAgenda; | 1158 | bool overdue = (!todo->isCompleted()) && (todo->dtDue() < today) && KOPrefs::instance()->mShowTodoInAgenda; |
1159 | bool fillIn = false; | 1159 | bool fillIn = false; |
1160 | if ( todo->hasCompletedDate() && todo->completed().date() == currentDate ) | 1160 | if ( todo->hasCompletedDate() && todo->completed().date() == currentDate ) |
1161 | fillIn = true; | 1161 | fillIn = true; |
1162 | if ( ! fillIn && !todo->hasCompletedDate() ) | 1162 | if ( ! fillIn && !todo->hasCompletedDate() ) |
1163 | fillIn = ((todo->dtDue().date() == currentDate) && !overdue) || ((currentDate == today) && overdue); | 1163 | fillIn = ((todo->dtDue().date() == currentDate) && !overdue) || ((currentDate == today) && overdue); |
1164 | qDebug("refill todo "); | ||
1165 | if ( fillIn ) { | 1164 | if ( fillIn ) { |
1166 | if ( (todo->doesFloat() || overdue ) && !todo->hasCompletedDate() ) { // Todo has no due-time set or is already overdue | 1165 | if ( (todo->doesFloat() || overdue ) && !todo->hasCompletedDate() ) { // Todo has no due-time set or is already overdue |
1167 | if ( KOPrefs::instance()->mShowTodoInAgenda ) | 1166 | if ( KOPrefs::instance()->mShowTodoInAgenda ) |
1168 | mAllDayAgenda->insertAllDayItem(todo, currentDate, curCol, curCol); | 1167 | mAllDayAgenda->insertAllDayItem(todo, currentDate, curCol, curCol); |
1169 | } | 1168 | } |
1170 | else { | 1169 | else { |
1171 | QDateTime dt; | 1170 | QDateTime dt; |
1172 | if ( todo->hasCompletedDate() ) | 1171 | if ( todo->hasCompletedDate() ) |
1173 | dt = todo->completed(); | 1172 | dt = todo->completed(); |
1174 | else | 1173 | else |
1175 | dt = todo->dtDue();; | 1174 | dt = todo->dtDue();; |
1176 | 1175 | ||
1177 | 1176 | ||
1178 | int endY = mAgenda->timeToY(dt.time()) - 1; | 1177 | int endY = mAgenda->timeToY(dt.time()) - 1; |
1179 | int hi = (18/KOPrefs::instance()->mHourSize); | 1178 | int hi = (18/KOPrefs::instance()->mHourSize); |
1180 | //qDebug("hei %d ",KOPrefs::instance()->mHourSize); | 1179 | //qDebug("hei %d ",KOPrefs::instance()->mHourSize); |
1181 | int startY = endY -hi; | 1180 | int startY = endY -hi; |
1182 | 1181 | ||
1183 | mAgenda->insertItem(todo,currentDate,curCol,startY,endY); | 1182 | mAgenda->insertItem(todo,currentDate,curCol,startY,endY); |
1184 | 1183 | ||
1185 | if (startY < mMinY[curCol]) mMinY[curCol] = startY; | 1184 | if (startY < mMinY[curCol]) mMinY[curCol] = startY; |
1186 | if (endY > mMaxY[curCol]) mMaxY[curCol] = endY; | 1185 | if (endY > mMaxY[curCol]) mMaxY[curCol] = endY; |
1187 | } | 1186 | } |
1188 | } | 1187 | } |
1189 | } | 1188 | } |
1190 | // ---------- display Todos] -------------- | 1189 | // ---------- display Todos] -------------- |
1191 | 1190 | ||
1192 | ++curCol; | 1191 | ++curCol; |
1193 | } | 1192 | } |
1194 | mAgenda->hideUnused(); | 1193 | mAgenda->hideUnused(); |
1195 | mAllDayAgenda->hideUnused(); | 1194 | mAllDayAgenda->hideUnused(); |
1196 | mAgenda->checkScrollBoundaries(); | 1195 | mAgenda->checkScrollBoundaries(); |
1197 | 1196 | ||
1198 | deleteSelectedDateTime(); | 1197 | deleteSelectedDateTime(); |
1199 | 1198 | ||
1200 | createDayLabels(); | 1199 | createDayLabels(); |
1201 | emit incidenceSelected( 0 ); | 1200 | emit incidenceSelected( 0 ); |
1202 | 1201 | ||
1203 | if ( globalFlagBlockAgenda == 2 ) { | 1202 | if ( globalFlagBlockAgenda == 2 ) { |
1204 | if ( KOPrefs::instance()->mSetTimeToDayStartAt ) | 1203 | if ( KOPrefs::instance()->mSetTimeToDayStartAt ) |
1205 | setStartHour( KOPrefs::instance()->mDayBegins ); | 1204 | setStartHour( KOPrefs::instance()->mDayBegins ); |
1206 | else if ( KOPrefs::instance()->mCenterOnCurrentTime ) | 1205 | else if ( KOPrefs::instance()->mCenterOnCurrentTime ) |
1207 | setStartHour( QTime::currentTime ().hour() ); | 1206 | setStartHour( QTime::currentTime ().hour() ); |
1208 | // qApp->processEvents(); | 1207 | // qApp->processEvents(); |
1209 | } | 1208 | } |
1210 | qApp->processEvents(); | 1209 | qApp->processEvents(); |
1211 | //qDebug("qApp->processEvents(); END "); | 1210 | //qDebug("qApp->processEvents(); END "); |
1212 | globalFlagBlockAgenda = 0; | 1211 | globalFlagBlockAgenda = 0; |
@@ -1463,88 +1462,88 @@ void KOAgendaView::newTimeSpanSelected(int gxStart, int gyStart, | |||
1463 | int gxEnd, int gyEnd) | 1462 | int gxEnd, int gyEnd) |
1464 | { | 1463 | { |
1465 | if (!mSelectedDates.count()) return; | 1464 | if (!mSelectedDates.count()) return; |
1466 | 1465 | ||
1467 | QDate dayStart = mSelectedDates[gxStart]; | 1466 | QDate dayStart = mSelectedDates[gxStart]; |
1468 | QDate dayEnd = mSelectedDates[gxEnd]; | 1467 | QDate dayEnd = mSelectedDates[gxEnd]; |
1469 | 1468 | ||
1470 | QTime timeStart = mAgenda->gyToTime(gyStart); | 1469 | QTime timeStart = mAgenda->gyToTime(gyStart); |
1471 | QTime timeEnd = mAgenda->gyToTime( gyEnd + 1 ); | 1470 | QTime timeEnd = mAgenda->gyToTime( gyEnd + 1 ); |
1472 | 1471 | ||
1473 | QDateTime dtStart(dayStart,timeStart); | 1472 | QDateTime dtStart(dayStart,timeStart); |
1474 | QDateTime dtEnd(dayEnd,timeEnd); | 1473 | QDateTime dtEnd(dayEnd,timeEnd); |
1475 | 1474 | ||
1476 | mTimeSpanBegin = dtStart; | 1475 | mTimeSpanBegin = dtStart; |
1477 | mTimeSpanEnd = dtEnd; | 1476 | mTimeSpanEnd = dtEnd; |
1478 | 1477 | ||
1479 | } | 1478 | } |
1480 | 1479 | ||
1481 | void KOAgendaView::deleteSelectedDateTime() | 1480 | void KOAgendaView::deleteSelectedDateTime() |
1482 | { | 1481 | { |
1483 | mTimeSpanBegin.setDate(QDate()); | 1482 | mTimeSpanBegin.setDate(QDate()); |
1484 | mTimeSpanEnd.setDate(QDate()); | 1483 | mTimeSpanEnd.setDate(QDate()); |
1485 | mTimeSpanInAllDay = false; | 1484 | mTimeSpanInAllDay = false; |
1486 | } | 1485 | } |
1487 | 1486 | ||
1488 | void KOAgendaView::keyPressEvent ( QKeyEvent * e ) | 1487 | void KOAgendaView::keyPressEvent ( QKeyEvent * e ) |
1489 | { | 1488 | { |
1490 | e->ignore(); | 1489 | e->ignore(); |
1491 | } | 1490 | } |
1492 | 1491 | ||
1493 | void KOAgendaView::scrollOneHourUp() | 1492 | void KOAgendaView::scrollOneHourUp() |
1494 | { | 1493 | { |
1495 | 1494 | ||
1496 | mAgenda->scrollBy ( 0, -mAgenda->contentsHeight () / 24 ); | 1495 | mAgenda->scrollBy ( 0, -mAgenda->contentsHeight () / 24 ); |
1497 | } | 1496 | } |
1498 | void KOAgendaView::scrollOneHourDown() | 1497 | void KOAgendaView::scrollOneHourDown() |
1499 | { | 1498 | { |
1500 | mAgenda->scrollBy ( 0, mAgenda->contentsHeight () / 24 ); | 1499 | mAgenda->scrollBy ( 0, mAgenda->contentsHeight () / 24 ); |
1501 | } | 1500 | } |
1502 | 1501 | ||
1503 | void KOAgendaView::setStartHour( int h ) | 1502 | void KOAgendaView::setStartHour( int h ) |
1504 | { | 1503 | { |
1505 | mAgenda->setStartHour( h ); | 1504 | mAgenda->setStartHour( h ); |
1506 | 1505 | ||
1507 | } | 1506 | } |
1508 | 1507 | ||
1509 | void KOAgendaView::updateTodo( Todo * t, int ) | 1508 | void KOAgendaView::updateTodo( Todo * t, int ) |
1510 | { | 1509 | { |
1511 | 1510 | ||
1512 | bool remove = false; | 1511 | bool remove = false; |
1513 | bool removeAD = false; | 1512 | bool removeAD = false; |
1514 | QDate da; | 1513 | QDate da; |
1515 | if ( t->hasCompletedDate() ) | 1514 | if ( t->hasCompletedDate() ) |
1516 | da = t->completed().date(); | 1515 | da = t->completed().date(); |
1517 | else | 1516 | else |
1518 | da = t->dtDue().date(); | 1517 | da = t->dtDue().date(); |
1519 | if ( ! t->hasDueDate() && !t->hasCompletedDate() ) { | 1518 | if ( ! t->hasDueDate() && !t->hasCompletedDate() ) { |
1520 | remove = true; | 1519 | remove = true; |
1521 | removeAD = true; | 1520 | removeAD = true; |
1522 | } | 1521 | } |
1523 | else { | 1522 | else { |
1524 | bool overdue = (!t->isCompleted()) && (t->dtDue() < QDate::currentDate()) && KOPrefs::instance()->mShowTodoInAgenda ; | 1523 | bool overdue = (!t->isCompleted()) && (t->dtDue() < QDate::currentDate()) && KOPrefs::instance()->mShowTodoInAgenda ; |
1525 | if ( overdue && | 1524 | if ( overdue && |
1526 | QDate::currentDate() >= mSelectedDates.first() && | 1525 | QDate::currentDate() >= mSelectedDates.first() && |
1527 | QDate::currentDate() <= mSelectedDates.last()) { | 1526 | QDate::currentDate() <= mSelectedDates.last()) { |
1528 | removeAD = false; | 1527 | removeAD = false; |
1529 | remove = true; | 1528 | remove = true; |
1530 | } | 1529 | } |
1531 | else { | 1530 | else { |
1532 | 1531 | ||
1533 | if ( da < mSelectedDates.first() || | 1532 | if ( da < mSelectedDates.first() || |
1534 | da > mSelectedDates.last() ) { | 1533 | da > mSelectedDates.last() ) { |
1535 | remove = true; | 1534 | remove = true; |
1536 | removeAD = true; | 1535 | removeAD = true; |
1537 | } else { | 1536 | } else { |
1538 | remove = t->doesFloat() && !t->hasCompletedDate(); | 1537 | remove = t->doesFloat() && !t->hasCompletedDate(); |
1539 | removeAD = !remove; | 1538 | removeAD = !remove; |
1540 | } | 1539 | } |
1541 | } | 1540 | } |
1542 | } | 1541 | } |
1543 | int days = mSelectedDates.first().daysTo( da ); | 1542 | int days = mSelectedDates.first().daysTo( da ); |
1544 | // qDebug("daysto %d ", days ); | 1543 | // qDebug("daysto %d ", days ); |
1545 | mAgenda->updateTodo( t , days, remove); | 1544 | mAgenda->updateTodo( t , days, remove); |
1546 | if ( KOPrefs::instance()->mShowTodoInAgenda ) | 1545 | if ( KOPrefs::instance()->mShowTodoInAgenda ) |
1547 | mAllDayAgenda->updateTodo( t , days, removeAD); | 1546 | mAllDayAgenda->updateTodo( t , days, removeAD); |
1548 | //qDebug("KOAgendaView::updateTodo( Todo *, int ) "); | 1547 | //qDebug("KOAgendaView::updateTodo( Todo *, int ) "); |
1549 | 1548 | ||
1550 | } | 1549 | } |
diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp index 14e8b5c..902f3f4 100644 --- a/korganizer/kotodoview.cpp +++ b/korganizer/kotodoview.cpp | |||
@@ -812,107 +812,116 @@ void KOTodoView::cloneTodo() | |||
812 | } | 812 | } |
813 | } | 813 | } |
814 | void KOTodoView::cancelTodo() | 814 | void KOTodoView::cancelTodo() |
815 | { | 815 | { |
816 | if (mActiveItem) { | 816 | if (mActiveItem) { |
817 | emit cancelTodoSignal((Incidence*)mActiveItem->todo()); | 817 | emit cancelTodoSignal((Incidence*)mActiveItem->todo()); |
818 | } | 818 | } |
819 | } | 819 | } |
820 | void KOTodoView::moveTodo() | 820 | void KOTodoView::moveTodo() |
821 | { | 821 | { |
822 | if (mActiveItem) { | 822 | if (mActiveItem) { |
823 | emit moveTodoSignal((Incidence*)mActiveItem->todo()); | 823 | emit moveTodoSignal((Incidence*)mActiveItem->todo()); |
824 | } | 824 | } |
825 | } | 825 | } |
826 | void KOTodoView::beamTodo() | 826 | void KOTodoView::beamTodo() |
827 | { | 827 | { |
828 | if (mActiveItem) { | 828 | if (mActiveItem) { |
829 | emit beamTodoSignal((Incidence*)mActiveItem->todo()); | 829 | emit beamTodoSignal((Incidence*)mActiveItem->todo()); |
830 | } | 830 | } |
831 | } | 831 | } |
832 | 832 | ||
833 | 833 | ||
834 | void KOTodoView::showTodo() | 834 | void KOTodoView::showTodo() |
835 | { | 835 | { |
836 | if (mActiveItem) { | 836 | if (mActiveItem) { |
837 | emit showTodoSignal(mActiveItem->todo()); | 837 | emit showTodoSignal(mActiveItem->todo()); |
838 | } | 838 | } |
839 | } | 839 | } |
840 | 840 | ||
841 | void KOTodoView::deleteTodo() | 841 | void KOTodoView::deleteTodo() |
842 | { | 842 | { |
843 | if (mActiveItem) { | 843 | if (mActiveItem) { |
844 | emit deleteTodoSignal(mActiveItem->todo()); | 844 | emit deleteTodoSignal(mActiveItem->todo()); |
845 | } | 845 | } |
846 | } | 846 | } |
847 | 847 | ||
848 | void KOTodoView::setNewPriority(int index) | 848 | void KOTodoView::setNewPriority(int index) |
849 | { | 849 | { |
850 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { | 850 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { |
851 | mActiveItem->todo()->setPriority(mPriority[index]); | 851 | mActiveItem->todo()->setPriority(mPriority[index]); |
852 | mActiveItem->construct(); | 852 | mActiveItem->construct(); |
853 | todoModified (mActiveItem->todo(), KOGlobals::PRIORITY_MODIFIED); | 853 | todoModified (mActiveItem->todo(), KOGlobals::PRIORITY_MODIFIED); |
854 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); | 854 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); |
855 | } | 855 | } |
856 | } | 856 | } |
857 | 857 | ||
858 | void KOTodoView::setNewPercentage(int index) | 858 | void KOTodoView::setNewPercentage(int index) |
859 | { | 859 | { |
860 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { | 860 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { |
861 | if (mPercentage[index] == 100) { | 861 | |
862 | mActiveItem->todo()->setCompleted(QDateTime::currentDateTime()); | 862 | if ( mPercentage[index] == 100 && !mActiveItem->isOn() ) { |
863 | } else { | 863 | mActiveItem->setOn( true ); |
864 | mActiveItem->todo()->setCompleted(false); | 864 | return; |
865 | } else if ( mPercentage[index] != 100 && mActiveItem->isOn() ) { | ||
866 | KOTodoViewItem* par = (static_cast<KOTodoViewItem*>(mActiveItem->parent())); | ||
867 | if ( par && par->isOn() ) | ||
868 | par->setOn( false ); | ||
869 | } | ||
870 | if (mPercentage[index] == 100) { | ||
871 | mActiveItem->todo()->setCompleted(QDateTime::currentDateTime()); | ||
872 | } else { | ||
873 | mActiveItem->todo()->setCompleted(false); | ||
874 | } | ||
875 | mActiveItem->todo()->setPercentComplete(mPercentage[index]); | ||
876 | mActiveItem->construct(); | ||
877 | todoModified (mActiveItem->todo (), KOGlobals::COMPLETION_MODIFIED); | ||
878 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); | ||
865 | } | 879 | } |
866 | mActiveItem->todo()->setPercentComplete(mPercentage[index]); | ||
867 | mActiveItem->construct(); | ||
868 | todoModified (mActiveItem->todo (), KOGlobals::COMPLETION_MODIFIED); | ||
869 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); | ||
870 | } | ||
871 | } | 880 | } |
872 | 881 | ||
873 | 882 | ||
874 | QPopupMenu * KOTodoView::getCategoryPopupMenu (KOTodoViewItem *todoItem) | 883 | QPopupMenu * KOTodoView::getCategoryPopupMenu (KOTodoViewItem *todoItem) |
875 | { | 884 | { |
876 | QPopupMenu* tempMenu = new QPopupMenu (this); | 885 | QPopupMenu* tempMenu = new QPopupMenu (this); |
877 | QStringList checkedCategories = todoItem->todo()->categories (); | 886 | QStringList checkedCategories = todoItem->todo()->categories (); |
878 | 887 | ||
879 | tempMenu->setCheckable (true); | 888 | tempMenu->setCheckable (true); |
880 | for (QStringList::Iterator it = KOPrefs::instance()->mCustomCategories.begin (); | 889 | for (QStringList::Iterator it = KOPrefs::instance()->mCustomCategories.begin (); |
881 | it != KOPrefs::instance()->mCustomCategories.end (); | 890 | it != KOPrefs::instance()->mCustomCategories.end (); |
882 | ++it) { | 891 | ++it) { |
883 | int index = tempMenu->insertItem (*it); | 892 | int index = tempMenu->insertItem (*it); |
884 | mCategory[index] = *it; | 893 | mCategory[index] = *it; |
885 | if (checkedCategories.find (*it) != checkedCategories.end ()) tempMenu->setItemChecked (index, true); | 894 | if (checkedCategories.find (*it) != checkedCategories.end ()) tempMenu->setItemChecked (index, true); |
886 | } | 895 | } |
887 | 896 | ||
888 | connect (tempMenu, SIGNAL (activated (int)), SLOT (changedCategories (int))); | 897 | connect (tempMenu, SIGNAL (activated (int)), SLOT (changedCategories (int))); |
889 | return tempMenu; | 898 | return tempMenu; |
890 | 899 | ||
891 | 900 | ||
892 | } | 901 | } |
893 | void KOTodoView::changedCategories(int index) | 902 | void KOTodoView::changedCategories(int index) |
894 | { | 903 | { |
895 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { | 904 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { |
896 | QStringList categories = mActiveItem->todo()->categories (); | 905 | QStringList categories = mActiveItem->todo()->categories (); |
897 | if (categories.find (mCategory[index]) != categories.end ()) | 906 | if (categories.find (mCategory[index]) != categories.end ()) |
898 | categories.remove (mCategory[index]); | 907 | categories.remove (mCategory[index]); |
899 | else | 908 | else |
900 | categories.insert (categories.end(), mCategory[index]); | 909 | categories.insert (categories.end(), mCategory[index]); |
901 | categories.sort (); | 910 | categories.sort (); |
902 | mActiveItem->todo()->setCategories (categories); | 911 | mActiveItem->todo()->setCategories (categories); |
903 | mActiveItem->construct(); | 912 | mActiveItem->construct(); |
904 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); | 913 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); |
905 | todoModified (mActiveItem->todo (), KOGlobals::CATEGORY_MODIFIED); | 914 | todoModified (mActiveItem->todo (), KOGlobals::CATEGORY_MODIFIED); |
906 | } | 915 | } |
907 | } | 916 | } |
908 | void KOTodoView::itemDoubleClicked(QListViewItem *item) | 917 | void KOTodoView::itemDoubleClicked(QListViewItem *item) |
909 | { | 918 | { |
910 | if ( pendingSubtodo != 0 ) { | 919 | if ( pendingSubtodo != 0 ) { |
911 | topLevelWidget()->setCaption(i18n("Reparenting aborted!")); | 920 | topLevelWidget()->setCaption(i18n("Reparenting aborted!")); |
912 | } | 921 | } |
913 | pendingSubtodo = 0; | 922 | pendingSubtodo = 0; |
914 | if (!item) { | 923 | if (!item) { |
915 | newTodo(); | 924 | newTodo(); |
916 | return; | 925 | return; |
917 | } | 926 | } |
918 | if ( KOPrefs::instance()->mEditOnDoubleClick ) | 927 | if ( KOPrefs::instance()->mEditOnDoubleClick ) |
diff --git a/korganizer/kotodoviewitem.cpp b/korganizer/kotodoviewitem.cpp index 2822237..1edddac 100644 --- a/korganizer/kotodoviewitem.cpp +++ b/korganizer/kotodoviewitem.cpp | |||
@@ -158,139 +158,147 @@ void KOTodoViewItem::construct() | |||
158 | } | 158 | } |
159 | #endif | 159 | #endif |
160 | 160 | ||
161 | m_known = false; | 161 | m_known = false; |
162 | m_init = false; | 162 | m_init = false; |
163 | 163 | ||
164 | setMyPixmap(); | 164 | setMyPixmap(); |
165 | 165 | ||
166 | } | 166 | } |
167 | void KOTodoViewItem::setMyPixmap() | 167 | void KOTodoViewItem::setMyPixmap() |
168 | { | 168 | { |
169 | int size = 5; | 169 | int size = 5; |
170 | QPixmap pixi = QPixmap( 1, 1 ); | 170 | QPixmap pixi = QPixmap( 1, 1 ); |
171 | // if ( !mTodo->isCompleted() && mTodo->hasDueDate() && mTodo->dtDue() < QDateTime::currentDateTime() ) { | 171 | // if ( !mTodo->isCompleted() && mTodo->hasDueDate() && mTodo->dtDue() < QDateTime::currentDateTime() ) { |
172 | // pixi = SmallIcon("redcross16"); | 172 | // pixi = SmallIcon("redcross16"); |
173 | // } else { | 173 | // } else { |
174 | QPainter p; | 174 | QPainter p; |
175 | 175 | ||
176 | int pixSize = 0; | 176 | int pixSize = 0; |
177 | QPixmap pPix = QPixmap( size, size ); | 177 | QPixmap pPix = QPixmap( size, size ); |
178 | if ( mTodo->description().length() > 0 ) { | 178 | if ( mTodo->description().length() > 0 ) { |
179 | pixi.resize(size, pixSize+size); | 179 | pixi.resize(size, pixSize+size); |
180 | pPix.fill( Qt::darkGreen ); | 180 | pPix.fill( Qt::darkGreen ); |
181 | p.begin( &pixi ); | 181 | p.begin( &pixi ); |
182 | p. drawPixmap ( 0, pixSize, pPix); | 182 | p. drawPixmap ( 0, pixSize, pPix); |
183 | p.end(); | 183 | p.end(); |
184 | pixSize += size; | 184 | pixSize += size; |
185 | } | 185 | } |
186 | if ( mTodo->isAlarmEnabled() ) { | 186 | if ( mTodo->isAlarmEnabled() ) { |
187 | pixi.resize(size, pixSize+size); | 187 | pixi.resize(size, pixSize+size); |
188 | pPix.fill( Qt::red ); | 188 | pPix.fill( Qt::red ); |
189 | p.begin( &pixi ); | 189 | p.begin( &pixi ); |
190 | p. drawPixmap ( 0, pixSize, pPix); | 190 | p. drawPixmap ( 0, pixSize, pPix); |
191 | p.end(); | 191 | p.end(); |
192 | pixSize += size; | 192 | pixSize += size; |
193 | } | 193 | } |
194 | // } | 194 | // } |
195 | if ( pixi.width() > 1 ) { | 195 | if ( pixi.width() > 1 ) { |
196 | setPixmap ( 0,pixi ) ; | 196 | setPixmap ( 0,pixi ) ; |
197 | } else { | 197 | } else { |
198 | setPixmap ( 0,QPixmap() ) ; | 198 | setPixmap ( 0,QPixmap() ) ; |
199 | } | 199 | } |
200 | } | 200 | } |
201 | void KOTodoViewItem::stateChange(bool state) | 201 | void KOTodoViewItem::stateChange(bool state) |
202 | { | 202 | { |
203 | // qDebug("KOTodoViewItem::stateChange "); | 203 | // qDebug("KOTodoViewItem::stateChange "); |
204 | // do not change setting on startup | 204 | // do not change setting on startup |
205 | if ( m_init ) return; | 205 | if ( m_init ) return; |
206 | qDebug("KOTodoViewItem::stateChange "); | 206 | if (isOn()!=state) { |
207 | setOn(state); | ||
208 | //qDebug("SETON "); | ||
209 | return; | ||
210 | } | ||
207 | QString keyd = "=="; | 211 | QString keyd = "=="; |
208 | QString keyt = "=="; | 212 | QString keyt = "=="; |
209 | 213 | //qDebug("KOTodoViewItem::stateChange %s ", text(0).latin1()); | |
210 | mTodo->setCompleted(state); | 214 | mTodo->setCompleted(state); |
211 | if (state) mTodo->setCompleted(QDateTime::currentDateTime()); | 215 | if (state) mTodo->setCompleted(QDateTime::currentDateTime()); |
212 | if (isOn()!=state) { | ||
213 | setOn(state); | ||
214 | } | ||
215 | 216 | ||
216 | if (mTodo->hasDueDate()) { | 217 | if (mTodo->hasDueDate()) { |
217 | setText(3, mTodo->dtDueDateStr()); | 218 | setText(3, mTodo->dtDueDateStr()); |
218 | QDate d = mTodo->dtDue().date(); | 219 | QDate d = mTodo->dtDue().date(); |
219 | keyd.sprintf("%04d%02d%02d",d.year(),d.month(),d.day()); | 220 | keyd.sprintf("%04d%02d%02d",d.year(),d.month(),d.day()); |
220 | setSortKey(3,keyd); | 221 | setSortKey(3,keyd); |
221 | if (mTodo->doesFloat()) { | 222 | if (mTodo->doesFloat()) { |
222 | setText(4,""); | 223 | setText(4,""); |
223 | } | 224 | } |
224 | else { | 225 | else { |
225 | setText(4,mTodo->dtDueTimeStr()); | 226 | setText(4,mTodo->dtDueTimeStr()); |
226 | QTime t = mTodo->dtDue().time(); | 227 | QTime t = mTodo->dtDue().time(); |
227 | keyt.sprintf("%02d%02d",t.hour(),t.minute()); | 228 | keyt.sprintf("%02d%02d",t.hour(),t.minute()); |
228 | setSortKey(4,keyt); | 229 | setSortKey(4,keyt); |
229 | } | 230 | } |
230 | } | 231 | } |
231 | if (mTodo->isCompleted()) setSortKey(1,QString::number(9)+keyd+keyt); | 232 | if (mTodo->isCompleted()) setSortKey(1,QString::number(9)+keyd+keyt); |
232 | else setSortKey(1,QString::number(mTodo->priority())+keyd+keyt); | 233 | else setSortKey(1,QString::number(mTodo->priority())+keyd+keyt); |
233 | 234 | ||
234 | setText(2,i18n("%1 %").arg(QString::number(mTodo->percentComplete()))); | 235 | setText(2,i18n("%1 %").arg(QString::number(mTodo->percentComplete()))); |
235 | if (mTodo->percentComplete()<100) { | 236 | if (mTodo->percentComplete()<100) { |
236 | if (mTodo->isCompleted()) setSortKey(2,QString::number(999)); | 237 | if (mTodo->isCompleted()) setSortKey(2,QString::number(999)); |
237 | else setSortKey(2,QString::number(mTodo->percentComplete())); | 238 | else setSortKey(2,QString::number(mTodo->percentComplete())); |
238 | } | 239 | } |
239 | else { | 240 | else { |
240 | if (mTodo->isCompleted()) setSortKey(2,QString::number(999)); | 241 | if (mTodo->isCompleted()) setSortKey(2,QString::number(999)); |
241 | else setSortKey(2,QString::number(99)); | 242 | else setSortKey(2,QString::number(99)); |
242 | } | 243 | } |
243 | QListViewItem * myChild = firstChild(); | 244 | if ( state ) { |
244 | KOTodoViewItem *item; | 245 | QListViewItem * myChild = firstChild(); |
245 | while( myChild ) { | 246 | KOTodoViewItem *item; |
246 | item = static_cast<KOTodoViewItem*>(myChild); | 247 | while( myChild ) { |
247 | item->stateChange(state); | 248 | //qDebug("stateCH "); |
248 | myChild = myChild->nextSibling(); | 249 | item = static_cast<KOTodoViewItem*>(myChild); |
250 | item->stateChange(state); | ||
251 | myChild = myChild->nextSibling(); | ||
252 | } | ||
253 | } else { | ||
254 | QListViewItem * myChild = parent(); | ||
255 | if ( myChild ) | ||
256 | (static_cast<KOTodoViewItem*>(myChild))->stateChange(state); | ||
249 | } | 257 | } |
250 | mTodoView->modified(true); | 258 | mTodoView->modified(true); |
251 | setMyPixmap(); | 259 | setMyPixmap(); |
252 | mTodoView->setTodoModified( mTodo ); | 260 | mTodoView->setTodoModified( mTodo ); |
253 | } | 261 | } |
254 | 262 | ||
255 | bool KOTodoViewItem::isAlternate() | 263 | bool KOTodoViewItem::isAlternate() |
256 | { | 264 | { |
257 | #ifndef KORG_NOLVALTERNATION | 265 | #ifndef KORG_NOLVALTERNATION |
258 | KOTodoListView *lv = static_cast<KOTodoListView *>(listView()); | 266 | KOTodoListView *lv = static_cast<KOTodoListView *>(listView()); |
259 | if (lv && lv->alternateBackground().isValid()) | 267 | if (lv && lv->alternateBackground().isValid()) |
260 | { | 268 | { |
261 | KOTodoViewItem *above = 0; | 269 | KOTodoViewItem *above = 0; |
262 | above = dynamic_cast<KOTodoViewItem *>(itemAbove()); | 270 | above = dynamic_cast<KOTodoViewItem *>(itemAbove()); |
263 | m_known = above ? above->m_known : true; | 271 | m_known = above ? above->m_known : true; |
264 | if (m_known) | 272 | if (m_known) |
265 | { | 273 | { |
266 | m_odd = above ? !above->m_odd : false; | 274 | m_odd = above ? !above->m_odd : false; |
267 | } | 275 | } |
268 | else | 276 | else |
269 | { | 277 | { |
270 | KOTodoViewItem *item; | 278 | KOTodoViewItem *item; |
271 | bool previous = true; | 279 | bool previous = true; |
272 | if (QListViewItem::parent()) | 280 | if (QListViewItem::parent()) |
273 | { | 281 | { |
274 | item = dynamic_cast<KOTodoViewItem *>(QListViewItem::parent()); | 282 | item = dynamic_cast<KOTodoViewItem *>(QListViewItem::parent()); |
275 | if (item) | 283 | if (item) |
276 | previous = item->m_odd; | 284 | previous = item->m_odd; |
277 | item = dynamic_cast<KOTodoViewItem *>(QListViewItem::parent()->firstChild()); | 285 | item = dynamic_cast<KOTodoViewItem *>(QListViewItem::parent()->firstChild()); |
278 | } | 286 | } |
279 | else | 287 | else |
280 | { | 288 | { |
281 | item = dynamic_cast<KOTodoViewItem *>(lv->firstChild()); | 289 | item = dynamic_cast<KOTodoViewItem *>(lv->firstChild()); |
282 | } | 290 | } |
283 | 291 | ||
284 | while(item) | 292 | while(item) |
285 | { | 293 | { |
286 | item->m_odd = previous = !previous; | 294 | item->m_odd = previous = !previous; |
287 | item->m_known = true; | 295 | item->m_known = true; |
288 | item = dynamic_cast<KOTodoViewItem *>(item->nextSibling()); | 296 | item = dynamic_cast<KOTodoViewItem *>(item->nextSibling()); |
289 | } | 297 | } |
290 | } | 298 | } |
291 | return m_odd; | 299 | return m_odd; |
292 | } | 300 | } |
293 | return false; | 301 | return false; |
294 | #else | 302 | #else |
295 | return false; | 303 | return false; |
296 | #endif | 304 | #endif |