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 /korganizer | |
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 | |||
@@ -222,3 +222,3 @@ void MonthViewItem::paint(QPainter *p) | |||
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; |
@@ -226,2 +226,4 @@ void MonthViewItem::paint(QPainter *p) | |||
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 ) { |
@@ -244,2 +246,32 @@ void MonthViewItem::paint(QPainter *p) | |||
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(); |
@@ -263,3 +295,5 @@ 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 | } |
@@ -272,13 +306,18 @@ int MonthViewItem::width(const QListBox *lb) const | |||
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 | } |
@@ -466,7 +505,10 @@ void MonthViewCell::insertEvent(Event *event) | |||
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 { |
@@ -474,3 +516,3 @@ void MonthViewCell::insertEvent(Event *event) | |||
474 | if ( event->recursOn( mDate.addDays( -days)) ) | 516 | if ( event->recursOn( mDate.addDays( -days)) ) |
475 | prefix ="<-" ; | 517 | prefix ="<-" ;multiday = 3; |
476 | } | 518 | } |
@@ -479,5 +521,5 @@ void MonthViewCell::insertEvent(Event *event) | |||
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 | } |
@@ -486,9 +528,9 @@ void MonthViewCell::insertEvent(Event *event) | |||
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 { |
@@ -531,3 +573,3 @@ void MonthViewCell::insertEvent(Event *event) | |||
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 ); |
@@ -538,3 +580,3 @@ void MonthViewCell::insertEvent(Event *event) | |||
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 |
@@ -544,2 +586,3 @@ void MonthViewCell::insertEvent(Event *event) | |||
544 | #endif | 586 | #endif |
587 | item->setMultiDay( multiday ); | ||
545 | mItemList->insertItem( item ); | 588 | mItemList->insertItem( item ); |
diff --git a/korganizer/komonthview.h b/korganizer/komonthview.h index 2f6f5dc..b79a41f 100644 --- a/korganizer/komonthview.h +++ b/korganizer/komonthview.h | |||
@@ -99,2 +99,3 @@ class MonthViewItem: public QListBoxItem | |||
99 | void setMoreInfo(bool on) { mInfo = on; } | 99 | void setMoreInfo(bool on) { mInfo = on; } |
100 | void setMultiDay(int type) { mMultiday = type; } | ||
100 | 101 | ||
@@ -113,2 +114,3 @@ class MonthViewItem: public QListBoxItem | |||
113 | private: | 114 | private: |
115 | int mMultiday; | ||
114 | bool mRecur; | 116 | bool mRecur; |