author | zautrix <zautrix> | 2005-03-10 10:40:57 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-03-10 10:40:57 (UTC) |
commit | b96161e4dd7fc19eea87257c2455b85420dad35a (patch) (side-by-side diff) | |
tree | d2e518cdc4c6c314f6e42960d12653ad6c7083d3 /korganizer | |
parent | 4b05d69b961309df5d56714889c62ca530580914 (diff) | |
download | kdepimpi-b96161e4dd7fc19eea87257c2455b85420dad35a.zip kdepimpi-b96161e4dd7fc19eea87257c2455b85420dad35a.tar.gz kdepimpi-b96161e4dd7fc19eea87257c2455b85420dad35a.tar.bz2 |
todo month view fix
-rw-r--r-- | korganizer/komonthview.cpp | 32 | ||||
-rw-r--r-- | korganizer/komonthview.h | 5 |
2 files changed, 33 insertions, 4 deletions
diff --git a/korganizer/komonthview.cpp b/korganizer/komonthview.cpp index f983ff9..4bf9dea 100644 --- a/korganizer/komonthview.cpp +++ b/korganizer/komonthview.cpp @@ -279,2 +279,18 @@ void MonthViewItem::paint(QPainter *p) } + + if ( mIncidence->type() == "Todo" ){ + Todo* td = ( Todo* ) mIncidence; + if ( td->isCompleted() ) { + int half = size/2; + p->drawLine ( x, heihei/2, x +half , heihei/2 +half ) ; + p->drawLine ( x +half , heihei/2 +half , x +half+half +2 , heihei/2 -2 ) ; + x += half+half + 4; + + } else { + int val = td->percentComplete()/20; + p->fillRect ( x+1, y-1, val ,size+2,Qt::black ); + p->drawRect ( x, y-1,7,size+2); + x += size + 3; + } + } QFontMetrics fm = p->fontMetrics(); @@ -604,3 +620,3 @@ void MonthViewCell::insertTodo(Todo *todo) } - text += i18n("T: %1").arg(todo->summary()); + text += todo->summary(); @@ -663,3 +679,3 @@ void MonthViewCell::updateCell() { - qDebug("MonthViewCell::updateCell() "); + //qDebug("MonthViewCell::updateCell() "); if ( !mMonthView->isUpdatePossible() ) @@ -1220,2 +1236,3 @@ void KOMonthView::updateView() //ti.start(); + clearSelection(); QPtrVector<MonthViewCell> *cells; @@ -1595,3 +1612,3 @@ void KOMonthView::setSelectedCell( MonthViewCell *cell ) { - // qDebug("KOMonthView::setSelectedCell "); + //qDebug("KOMonthView::setSelectedCell "); if ( mSelectedCell && mSelectedCell != cell ) { @@ -1617,2 +1634,3 @@ void KOMonthView::processSelectionChange() emit incidenceSelected( 0 ); + clearSelection(); } @@ -1665,2 +1683,10 @@ void KOMonthView::keyPressEvent ( QKeyEvent * e ) break; + case Key_D: + if ( mSelectedCell ) { + mSelectedCell->showDay(); + e->accept(); + } else { + e->ignore(); + } + break; default: diff --git a/korganizer/komonthview.h b/korganizer/komonthview.h index f92a69a..fd8cbf2 100644 --- a/korganizer/komonthview.h +++ b/korganizer/komonthview.h @@ -172,2 +172,6 @@ class MonthViewCell : public QWidget + +public slots: + void showDay(); + protected slots: @@ -178,3 +182,2 @@ class MonthViewCell : public QWidget void newEvent(); - void showDay(); |