-rw-r--r-- | core/pim/todo/tableitems.cpp | 2 | ||||
-rw-r--r-- | core/pim/todo/tableview.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/pim/todo/tableitems.cpp b/core/pim/todo/tableitems.cpp index 86fe07d..a636de6 100644 --- a/core/pim/todo/tableitems.cpp +++ b/core/pim/todo/tableitems.cpp | |||
@@ -126,56 +126,56 @@ DueTextItem::DueTextItem( QTable* t, const OTodo& ev) | |||
126 | } | 126 | } |
127 | DueTextItem::~DueTextItem() { | 127 | DueTextItem::~DueTextItem() { |
128 | 128 | ||
129 | } | 129 | } |
130 | QString DueTextItem::key() const { | 130 | QString DueTextItem::key() const { |
131 | QString key; | 131 | QString key; |
132 | 132 | ||
133 | if( m_hasDate ){ | 133 | if( m_hasDate ){ |
134 | if(m_off == 0 ){ | 134 | if(m_off == 0 ){ |
135 | key.append("b"); | 135 | key.append("b"); |
136 | }else if( m_off > 0 ){ | 136 | }else if( m_off > 0 ){ |
137 | key.append("c"); | 137 | key.append("c"); |
138 | }else if( m_off < 0 ){ | 138 | }else if( m_off < 0 ){ |
139 | key.append("a"); | 139 | key.append("a"); |
140 | } | 140 | } |
141 | key.append(QString::number(m_off ) ); | 141 | key.append(QString::number(m_off ) ); |
142 | }else{ | 142 | }else{ |
143 | key.append("d"); | 143 | key.append("d"); |
144 | } | 144 | } |
145 | return key; | 145 | return key; |
146 | } | 146 | } |
147 | void DueTextItem::setCompleted( bool comp ) { | 147 | void DueTextItem::setCompleted( bool comp ) { |
148 | m_completed = comp; | 148 | m_completed = comp; |
149 | table()->updateCell( row(), col() ); | 149 | table()->updateCell( row(), col() ); |
150 | } | 150 | } |
151 | void DueTextItem::setToDoEvent( const OTodo& ev ) { | 151 | void DueTextItem::setToDoEvent( const OTodo& ev ) { |
152 | m_hasDate = ev.hasDueDate(); | 152 | m_hasDate = ev.hasDueDate(); |
153 | m_completed = ev.isCompleted(); | 153 | m_completed = ev.isCompleted(); |
154 | 154 | ||
155 | if( ev.hasDueDate() ){ | 155 | if( ev.hasDueDate() ){ |
156 | QDate today = QDate::currentDate(); | 156 | QDate today = QDate::currentDate(); |
157 | m_off = today.daysTo(ev.dueDate() ); | 157 | m_off = today.daysTo(ev.dueDate() ); |
158 | setText( QString::number(m_off) + " day(s) " ); | 158 | setText( tr( "%1 day(s)" ).arg( QString::number(m_off) ) ); |
159 | }else{ | 159 | }else{ |
160 | setText("n.d." ); | 160 | setText("n.d." ); |
161 | m_off = 0; | 161 | m_off = 0; |
162 | } | 162 | } |
163 | } | 163 | } |
164 | void DueTextItem::paint( QPainter* p, const QColorGroup &cg, | 164 | void DueTextItem::paint( QPainter* p, const QColorGroup &cg, |
165 | const QRect& cr, bool selected ) { | 165 | const QRect& cr, bool selected ) { |
166 | QColorGroup cg2(cg); | 166 | QColorGroup cg2(cg); |
167 | 167 | ||
168 | QColor text = cg.text(); | 168 | QColor text = cg.text(); |
169 | if( m_hasDate && !m_completed ){ | 169 | if( m_hasDate && !m_completed ){ |
170 | if( m_off < 0 ){ | 170 | if( m_off < 0 ){ |
171 | cg2.setColor(QColorGroup::Text, QColor(red ) ); | 171 | cg2.setColor(QColorGroup::Text, QColor(red ) ); |
172 | }else if( m_off == 0 ){ | 172 | }else if( m_off == 0 ){ |
173 | cg2.setColor(QColorGroup::Text, QColor(yellow) ); // orange isn't predefined | 173 | cg2.setColor(QColorGroup::Text, QColor(yellow) ); // orange isn't predefined |
174 | }else if( m_off > 0){ | 174 | }else if( m_off > 0){ |
175 | cg2.setColor(QColorGroup::Text, QColor(green ) ); | 175 | cg2.setColor(QColorGroup::Text, QColor(green ) ); |
176 | } | 176 | } |
177 | } | 177 | } |
178 | QTableItem::paint(p, cg2, cr, selected ); | 178 | QTableItem::paint(p, cg2, cr, selected ); |
179 | /* restore default color */ | 179 | /* restore default color */ |
180 | cg2.setColor(QColorGroup::Text, text ); | 180 | cg2.setColor(QColorGroup::Text, text ); |
181 | } | 181 | } |
diff --git a/core/pim/todo/tableview.cpp b/core/pim/todo/tableview.cpp index 2434150..f59971e 100644 --- a/core/pim/todo/tableview.cpp +++ b/core/pim/todo/tableview.cpp | |||
@@ -350,65 +350,65 @@ void TableView::paintCell(QPainter* p, int row, int col, const QRect& cr, bool | |||
350 | } | 350 | } |
351 | yy -= 2; | 351 | yy -= 2; |
352 | for ( i=4; i<9; i++ ) { | 352 | for ( i=4; i<9; i++ ) { |
353 | a.setPoint( 2*i, xx, yy ); | 353 | a.setPoint( 2*i, xx, yy ); |
354 | a.setPoint( 2*i+1, xx, yy+2 ); | 354 | a.setPoint( 2*i+1, xx, yy+2 ); |
355 | xx++; yy--; | 355 | xx++; yy--; |
356 | } | 356 | } |
357 | p->drawLineSegments( a ); | 357 | p->drawLineSegments( a ); |
358 | } | 358 | } |
359 | } | 359 | } |
360 | break; | 360 | break; |
361 | case 1: | 361 | case 1: |
362 | // priority field | 362 | // priority field |
363 | { | 363 | { |
364 | QString text = QString::number(task.priority()); | 364 | QString text = QString::number(task.priority()); |
365 | p->drawText(2,2 + fm.ascent(), text); | 365 | p->drawText(2,2 + fm.ascent(), text); |
366 | } | 366 | } |
367 | break; | 367 | break; |
368 | case 2: | 368 | case 2: |
369 | // description field | 369 | // description field |
370 | { | 370 | { |
371 | QString text = task.summary().isEmpty() ? | 371 | QString text = task.summary().isEmpty() ? |
372 | task.description().left(20) : | 372 | task.description().left(20) : |
373 | task.summary(); | 373 | task.summary(); |
374 | p->drawText(2,2 + fm.ascent(), text); | 374 | p->drawText(2,2 + fm.ascent(), text); |
375 | } | 375 | } |
376 | break; | 376 | break; |
377 | case 3: | 377 | case 3: |
378 | { | 378 | { |
379 | QString text; | 379 | QString text; |
380 | if (task.hasDueDate()) { | 380 | if (task.hasDueDate()) { |
381 | int off = QDate::currentDate().daysTo( task.dueDate() ); | 381 | int off = QDate::currentDate().daysTo( task.dueDate() ); |
382 | text = QString::number(off) + tr(" day(s)"); | 382 | text = tr( "%1 day(s)").arg(QString::number(off)); |
383 | /* | 383 | /* |
384 | * set color if not completed | 384 | * set color if not completed |
385 | */ | 385 | */ |
386 | if (!task.isCompleted() ) { | 386 | if (!task.isCompleted() ) { |
387 | QColor color = Qt::black; | 387 | QColor color = Qt::black; |
388 | if ( off < 0 ) | 388 | if ( off < 0 ) |
389 | color = Qt::red; | 389 | color = Qt::red; |
390 | else if ( off == 0 ) | 390 | else if ( off == 0 ) |
391 | color = Qt::yellow; | 391 | color = Qt::yellow; |
392 | else if ( off > 0 ) | 392 | else if ( off > 0 ) |
393 | color = Qt::green; | 393 | color = Qt::green; |
394 | p->setPen(color ); | 394 | p->setPen(color ); |
395 | } | 395 | } |
396 | } else { | 396 | } else { |
397 | text = tr("None"); | 397 | text = tr("None"); |
398 | } | 398 | } |
399 | p->drawText(2,2 + fm.ascent(), text); | 399 | p->drawText(2,2 + fm.ascent(), text); |
400 | } | 400 | } |
401 | break; | 401 | break; |
402 | } | 402 | } |
403 | p->restore(); | 403 | p->restore(); |
404 | } | 404 | } |
405 | QWidget* TableView::createEditor(int row, int col, bool )const { | 405 | QWidget* TableView::createEditor(int row, int col, bool )const { |
406 | switch( col ) { | 406 | switch( col ) { |
407 | case 1: { | 407 | case 1: { |
408 | /* the priority stuff */ | 408 | /* the priority stuff */ |
409 | QComboBox* combo = new QComboBox( viewport() ); | 409 | QComboBox* combo = new QComboBox( viewport() ); |
410 | combo->insertItem( "1" ); | 410 | combo->insertItem( "1" ); |
411 | combo->insertItem( "2" ); | 411 | combo->insertItem( "2" ); |
412 | combo->insertItem( "3" ); | 412 | combo->insertItem( "3" ); |
413 | combo->insertItem( "4" ); | 413 | combo->insertItem( "4" ); |
414 | combo->insertItem( "5" ); | 414 | combo->insertItem( "5" ); |