summaryrefslogtreecommitdiffabout
path: root/korganizer/komonthview.cpp
Side-by-side diff
Diffstat (limited to 'korganizer/komonthview.cpp') (more/less context) (show whitespace changes)
-rw-r--r--korganizer/komonthview.cpp30
1 files changed, 28 insertions, 2 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;
@@ -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: