author | zautrix <zautrix> | 2005-02-19 15:39:43 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-02-19 15:39:43 (UTC) |
commit | 4858dcb045afc57ce98877cca787c4430146bea8 (patch) (unidiff) | |
tree | 9c9ea4b6d93a34d4bea97d7cea0b294c9c8665de | |
parent | d2ed2aaddb88f39f8b2ced18a4ea7f06a63237d3 (diff) | |
download | kdepimpi-4858dcb045afc57ce98877cca787c4430146bea8.zip kdepimpi-4858dcb045afc57ce98877cca787c4430146bea8.tar.gz kdepimpi-4858dcb045afc57ce98877cca787c4430146bea8.tar.bz2 |
multiday fixes in monthview
-rw-r--r-- | korganizer/komonthview.cpp | 91 | ||||
-rw-r--r-- | korganizer/komonthview.h | 2 |
2 files changed, 69 insertions, 24 deletions
diff --git a/korganizer/komonthview.cpp b/korganizer/komonthview.cpp index 2fe80af..f558084 100644 --- a/korganizer/komonthview.cpp +++ b/korganizer/komonthview.cpp | |||
@@ -217,16 +217,18 @@ void MonthViewItem::paint(QPainter *p) | |||
217 | { | 217 | { |
218 | p->setBackgroundColor( palette().color( QPalette::Normal, \ | 218 | p->setBackgroundColor( palette().color( QPalette::Normal, \ |
219 | sel ? QColorGroup::Highlight : QColorGroup::Background ) ); | 219 | sel ? QColorGroup::Highlight : QColorGroup::Background ) ); |
220 | p->eraseRect( 0, 0, listBox()->maxItemWidth(), height( listBox() ) ); | 220 | p->eraseRect( 0, 0, listBox()->maxItemWidth(), height( listBox() ) ); |
221 | } | 221 | } |
222 | int x = 1; | 222 | int x = 1; |
223 | int y = 3;//(height() - mRecurPixmap.height()) /2; | 223 | //int y = 3;//(height() - mRecurPixmap.height()) /2; |
224 | int size = PIXMAP_SIZE; | 224 | int size = PIXMAP_SIZE; |
225 | if ( QApplication::desktop()->width() < 300 ) | 225 | if ( QApplication::desktop()->width() < 300 ) |
226 | size = 3; | 226 | size = 3; |
227 | int y = (height( listBox () ) - size -1 ) /2; | ||
228 | |||
227 | if ( KOPrefs::instance()->mMonthShowIcons ) { | 229 | if ( KOPrefs::instance()->mMonthShowIcons ) { |
228 | if ( mInfo ) { | 230 | if ( mInfo ) { |
229 | p->fillRect ( x, y,size,size, Qt::darkGreen ); | 231 | p->fillRect ( x, y,size,size, Qt::darkGreen ); |
230 | x += size + 1; | 232 | x += size + 1; |
231 | } | 233 | } |
232 | if ( mRecur ) { | 234 | if ( mRecur ) { |
@@ -239,12 +241,42 @@ void MonthViewItem::paint(QPainter *p) | |||
239 | } | 241 | } |
240 | if ( mReply ) { | 242 | if ( mReply ) { |
241 | p->fillRect ( x, y,size,size, Qt::yellow ); | 243 | p->fillRect ( x, y,size,size, Qt::yellow ); |
242 | x += size + 1; | 244 | x += size + 1; |
243 | } | 245 | } |
244 | } | 246 | } |
247 | if ( mMultiday ) { | ||
248 | int yyy = y+(size/2); | ||
249 | int sizeM = size+2; | ||
250 | p->setBrush( QBrush::SolidPattern ); | ||
251 | p->drawLine ( x+sizeM/2, yyy, x +sizeM +sizeM/2-2, yyy ) ; | ||
252 | if ( mMultiday == 2 || mMultiday == 3 ) { | ||
253 | QPointArray pa ( 3 ); | ||
254 | pa.setPoint (0, x, yyy ); | ||
255 | pa.setPoint (1, x+sizeM/2, yyy+sizeM/2 ); | ||
256 | pa.setPoint (2, x+sizeM/2, yyy-sizeM/2 ); | ||
257 | p->drawPolygon( pa ); | ||
258 | } | ||
259 | if ( mMultiday == 2 || mMultiday == 1 ) { | ||
260 | QPointArray pa ( 3 ); | ||
261 | pa.setPoint (0, x+sizeM +sizeM/2, yyy ); | ||
262 | pa.setPoint (1, x+sizeM, yyy+sizeM/2 ); | ||
263 | pa.setPoint (2, x+sizeM, yyy-sizeM/2 ); | ||
264 | p->drawPolygon( pa ); | ||
265 | } | ||
266 | if ( mMultiday == 1 ) { | ||
267 | p->fillRect ( x, yyy-sizeM/2+1, sizeM/2, size, QBrush ( QBrush::SolidPattern ) ); | ||
268 | |||
269 | } | ||
270 | if ( mMultiday == 3 ) { | ||
271 | p->fillRect ( x+sizeM, yyy-sizeM/2+1, sizeM/2, size, QBrush ( QBrush::SolidPattern ) ); | ||
272 | |||
273 | } | ||
274 | x += sizeM/2 + 1; | ||
275 | x += sizeM + 1; | ||
276 | } | ||
245 | QFontMetrics fm = p->fontMetrics(); | 277 | QFontMetrics fm = p->fontMetrics(); |
246 | int yPos; | 278 | int yPos; |
247 | int pmheight = size; | 279 | int pmheight = size; |
248 | if( pmheight < fm.height() ) | 280 | if( pmheight < fm.height() ) |
249 | yPos = fm.ascent() + fm.leading()/2; | 281 | yPos = fm.ascent() + fm.leading()/2; |
250 | else | 282 | else |
@@ -258,32 +290,39 @@ void MonthViewItem::paint(QPainter *p) | |||
258 | } | 290 | } |
259 | 291 | ||
260 | } | 292 | } |
261 | 293 | ||
262 | int MonthViewItem::height(const QListBox *lb) const | 294 | int MonthViewItem::height(const QListBox *lb) const |
263 | { | 295 | { |
264 | return lb->fontMetrics().lineSpacing()+1; | 296 | if ( lb ) |
297 | return lb->fontMetrics().lineSpacing()+1; | ||
298 | return 10; | ||
265 | } | 299 | } |
266 | 300 | ||
267 | int MonthViewItem::width(const QListBox *lb) const | 301 | int MonthViewItem::width(const QListBox *lb) const |
268 | { | 302 | { |
269 | int size = PIXMAP_SIZE; | 303 | int size = PIXMAP_SIZE; |
270 | if ( QApplication::desktop()->width() < 300 ) | 304 | if ( QApplication::desktop()->width() < 300 ) |
271 | size = 3; | 305 | size = 3; |
272 | int x = 1; | 306 | int x = 1; |
273 | if ( mInfo ) { | 307 | if ( KOPrefs::instance()->mMonthShowIcons ) { |
274 | x += size + 1; | 308 | if ( mInfo ) { |
275 | } | 309 | x += size + 1; |
276 | if( mRecur ) { | 310 | } |
277 | x += size+1; | 311 | if( mRecur ) { |
278 | } | 312 | x += size+1; |
279 | if( mAlarm ) { | 313 | } |
280 | x += size+1; | 314 | if( mAlarm ) { |
315 | x += size+1; | ||
316 | } | ||
317 | if( mReply ) { | ||
318 | x += size+1; | ||
319 | } | ||
281 | } | 320 | } |
282 | if( mReply ) { | 321 | if( mMultiday ) { |
283 | x += size+1; | 322 | x += size+1+2+size/2; |
284 | } | 323 | } |
285 | 324 | ||
286 | return( x + lb->fontMetrics().width( text() ) + 1 ); | 325 | return( x + lb->fontMetrics().width( text() ) + 1 ); |
287 | } | 326 | } |
288 | 327 | ||
289 | 328 | ||
@@ -461,39 +500,42 @@ void MonthViewCell::insertEvent(Event *event) | |||
461 | event->categories().contains(i18n("Holiday"))) { | 500 | event->categories().contains(i18n("Holiday"))) { |
462 | setHoliday( true ); | 501 | setHoliday( true ); |
463 | if ( mDate.dayOfWeek() == 7 ) | 502 | if ( mDate.dayOfWeek() == 7 ) |
464 | mItemList->setLineWidth( 3 ); | 503 | mItemList->setLineWidth( 3 ); |
465 | } | 504 | } |
466 | QString text; | 505 | QString text; |
506 | int multiday = 0;// 1 = start, 2 = midddle, 3 = end day | ||
467 | if (event->isMultiDay()) { | 507 | if (event->isMultiDay()) { |
468 | QString prefix = "<->"; | 508 | QString prefix = "<->";multiday = 2; |
509 | QString time; | ||
469 | if ( event->doesRecur() ) { | 510 | if ( event->doesRecur() ) { |
470 | if ( event->recursOn( mDate) ) | 511 | if ( event->recursOn( mDate) ) { |
471 | prefix ="->" ; | 512 | prefix ="->" ;multiday = 1; |
513 | } | ||
472 | else { | 514 | else { |
473 | int days = event->dtStart().date().daysTo ( event->dtEnd().date() ); | 515 | int days = event->dtStart().date().daysTo ( event->dtEnd().date() ); |
474 | if ( event->recursOn( mDate.addDays( -days)) ) | 516 | if ( event->recursOn( mDate.addDays( -days)) ) |
475 | prefix ="<-" ; | 517 | prefix ="<-" ;multiday = 3; |
476 | } | 518 | } |
477 | 519 | ||
478 | } else { | 520 | } else { |
479 | if (mDate == event->dtStart().date()) { | 521 | if (mDate == event->dtStart().date()) { |
480 | prefix ="->" ; | 522 | prefix ="->" ;multiday = 1; |
481 | } else if (mDate == event->dtEnd().date()) { | 523 | } else if (mDate == event->dtEnd().date()) { |
482 | prefix ="<-" ; | 524 | prefix ="<-" ;multiday = 3; |
483 | } | 525 | } |
484 | } | 526 | } |
485 | if ( !event->doesFloat() ) { | 527 | if ( !event->doesFloat() ) { |
486 | if ( mDate == event->dtStart().date () ) | 528 | if ( mDate == event->dtStart().date () ) |
487 | prefix += KGlobal::locale()->formatTime(event->dtStart().time())+" "; | 529 | time = KGlobal::locale()->formatTime(event->dtStart().time())+" "; |
488 | else if ( mDate == event->dtEnd().date () ) | 530 | else if ( mDate == event->dtEnd().date () ) |
489 | prefix += KGlobal::locale()->formatTime(event->dtEnd().time())+" "; | 531 | time = KGlobal::locale()->formatTime(event->dtEnd().time())+" "; |
490 | 532 | ||
491 | } | 533 | } |
492 | text = prefix + event->summary(); | 534 | text = time + event->summary(); |
493 | mToolTip += text; | 535 | mToolTip += prefix + text; |
494 | } else { | 536 | } else { |
495 | if (event->doesFloat()) { | 537 | if (event->doesFloat()) { |
496 | text = event->summary(); | 538 | text = event->summary(); |
497 | mToolTip += text; | 539 | mToolTip += text; |
498 | } | 540 | } |
499 | else { | 541 | else { |
@@ -526,25 +568,26 @@ void MonthViewCell::insertEvent(Event *event) | |||
526 | 568 | ||
527 | } else { | 569 | } else { |
528 | pal = mStandardPalette ; | 570 | pal = mStandardPalette ; |
529 | } | 571 | } |
530 | item->setPalette( pal ); | 572 | item->setPalette( pal ); |
531 | item->setRecur( event->recurrence()->doesRecur() ); | 573 | item->setRecur( event->recurrence()->doesRecur() ); |
532 | item->setAlarm( event->isAlarmEnabled() ); | 574 | item->setAlarm( event->isAlarmEnabled() && multiday < 2 ); |
533 | item->setMoreInfo( event->description().length() > 0 ); | 575 | item->setMoreInfo( event->description().length() > 0 ); |
534 | #ifdef DESKTOP_VERSION | 576 | #ifdef DESKTOP_VERSION |
535 | Attendee *me = event->attendeeByMails(KOPrefs::instance()->mAdditionalMails, | 577 | Attendee *me = event->attendeeByMails(KOPrefs::instance()->mAdditionalMails, |
536 | KOPrefs::instance()->email()); | 578 | KOPrefs::instance()->email()); |
537 | if ( me != 0 ) { | 579 | if ( me != 0 ) { |
538 | if ( me->status() == Attendee::NeedsAction && me->RSVP()) | 580 | if ( me->status() == Attendee::NeedsAction && me->RSVP()) |
539 | item->setReply(true); | 581 | item->setReply(true && multiday < 2); |
540 | else | 582 | else |
541 | item->setReply(false); | 583 | item->setReply(false); |
542 | } else | 584 | } else |
543 | item->setReply(false); | 585 | item->setReply(false); |
544 | #endif | 586 | #endif |
587 | item->setMultiDay( multiday ); | ||
545 | mItemList->insertItem( item ); | 588 | mItemList->insertItem( item ); |
546 | mToolTip += "\n"; | 589 | mToolTip += "\n"; |
547 | } | 590 | } |
548 | void MonthViewCell::insertTodo(Todo *todo) | 591 | void MonthViewCell::insertTodo(Todo *todo) |
549 | { | 592 | { |
550 | mItemList->setFocusPolicy(WheelFocus); | 593 | mItemList->setFocusPolicy(WheelFocus); |
diff --git a/korganizer/komonthview.h b/korganizer/komonthview.h index 2f6f5dc..b79a41f 100644 --- a/korganizer/komonthview.h +++ b/korganizer/komonthview.h | |||
@@ -94,12 +94,13 @@ class MonthViewItem: public QListBoxItem | |||
94 | MonthViewItem( Incidence *, QDate qd, const QString & title ); | 94 | MonthViewItem( Incidence *, QDate qd, const QString & title ); |
95 | 95 | ||
96 | void setRecur(bool on) { mRecur = on; } | 96 | void setRecur(bool on) { mRecur = on; } |
97 | void setAlarm(bool on) { mAlarm = on; } | 97 | void setAlarm(bool on) { mAlarm = on; } |
98 | void setReply(bool on) { mReply = on; } | 98 | void setReply(bool on) { mReply = on; } |
99 | void setMoreInfo(bool on) { mInfo = on; } | 99 | void setMoreInfo(bool on) { mInfo = on; } |
100 | void setMultiDay(int type) { mMultiday = type; } | ||
100 | 101 | ||
101 | 102 | ||
102 | void setPalette(const QPalette &p) { mPalette = p; } | 103 | void setPalette(const QPalette &p) { mPalette = p; } |
103 | QPalette palette() const { return mPalette; } | 104 | QPalette palette() const { return mPalette; } |
104 | 105 | ||
105 | Incidence *incidence() const { return mIncidence; } | 106 | Incidence *incidence() const { return mIncidence; } |
@@ -108,12 +109,13 @@ class MonthViewItem: public QListBoxItem | |||
108 | protected: | 109 | protected: |
109 | virtual void paint(QPainter *); | 110 | virtual void paint(QPainter *); |
110 | virtual int height(const QListBox *) const; | 111 | virtual int height(const QListBox *) const; |
111 | virtual int width(const QListBox *) const; | 112 | virtual int width(const QListBox *) const; |
112 | 113 | ||
113 | private: | 114 | private: |
115 | int mMultiday; | ||
114 | bool mRecur; | 116 | bool mRecur; |
115 | bool mAlarm; | 117 | bool mAlarm; |
116 | bool mReply; | 118 | bool mReply; |
117 | bool mInfo; | 119 | bool mInfo; |
118 | 120 | ||
119 | QPalette mPalette; | 121 | QPalette mPalette; |