-rw-r--r-- | korganizer/komonthview.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/korganizer/komonthview.cpp b/korganizer/komonthview.cpp index 3aaa50a..c125ce9 100644 --- a/korganizer/komonthview.cpp +++ b/korganizer/komonthview.cpp | |||
@@ -150,97 +150,97 @@ void KNoScrollListBox::keyPressEvent(QKeyEvent *e) | |||
150 | case Key_I: | 150 | case Key_I: |
151 | QTimer::singleShot( 11, this, SLOT ( oneDown() ) ); | 151 | QTimer::singleShot( 11, this, SLOT ( oneDown() ) ); |
152 | e->ignore(); | 152 | e->ignore(); |
153 | break; | 153 | break; |
154 | case Key_Shift: | 154 | case Key_Shift: |
155 | emit shiftDown(); | 155 | emit shiftDown(); |
156 | break; | 156 | break; |
157 | default: | 157 | default: |
158 | e->ignore(); | 158 | e->ignore(); |
159 | break; | 159 | break; |
160 | } | 160 | } |
161 | } | 161 | } |
162 | 162 | ||
163 | void KNoScrollListBox::oneDown() | 163 | void KNoScrollListBox::oneDown() |
164 | { | 164 | { |
165 | setCurrentItem((currentItem()+1)%count()); | 165 | setCurrentItem((currentItem()+1)%count()); |
166 | if(!itemVisible(currentItem())) { | 166 | if(!itemVisible(currentItem())) { |
167 | if(currentItem() == 0) { | 167 | if(currentItem() == 0) { |
168 | setTopItem(0); | 168 | setTopItem(0); |
169 | } else { | 169 | } else { |
170 | setTopItem(topItem()+1); | 170 | setTopItem(topItem()+1); |
171 | } | 171 | } |
172 | } | 172 | } |
173 | } | 173 | } |
174 | void KNoScrollListBox::keyReleaseEvent(QKeyEvent *e) | 174 | void KNoScrollListBox::keyReleaseEvent(QKeyEvent *e) |
175 | { | 175 | { |
176 | switch(e->key()) { | 176 | switch(e->key()) { |
177 | case Key_Shift: | 177 | case Key_Shift: |
178 | emit shiftUp(); | 178 | emit shiftUp(); |
179 | break; | 179 | break; |
180 | default: | 180 | default: |
181 | break; | 181 | break; |
182 | } | 182 | } |
183 | } | 183 | } |
184 | 184 | ||
185 | void KNoScrollListBox::mousePressEvent(QMouseEvent *e) | 185 | void KNoScrollListBox::mousePressEvent(QMouseEvent *e) |
186 | { | 186 | { |
187 | QListBox::mousePressEvent(e); | 187 | QListBox::mousePressEvent(e); |
188 | 188 | ||
189 | if(e->button() == RightButton) { | 189 | if(e->button() == RightButton) { |
190 | emit rightClick(); | 190 | emit rightClick(); |
191 | } | 191 | } |
192 | } | 192 | } |
193 | 193 | ||
194 | MonthViewItem::MonthViewItem( Incidence *incidence, QDate qd, const QString & s) | 194 | MonthViewItem::MonthViewItem( Incidence *incidence, QDate qd, const QString & s) |
195 | : QListBoxItem() | 195 | : QListBoxItem() |
196 | { | 196 | { |
197 | setText( s ); | 197 | setText( s ); |
198 | 198 | mMultiday = 0; | |
199 | mIncidence = incidence; | 199 | mIncidence = incidence; |
200 | mDate = qd; | 200 | mDate = qd; |
201 | mRecur = false; | 201 | mRecur = false; |
202 | mAlarm = false; | 202 | mAlarm = false; |
203 | mReply = false; | 203 | mReply = false; |
204 | mInfo = false; | 204 | mInfo = false; |
205 | } | 205 | } |
206 | 206 | ||
207 | void MonthViewItem::paint(QPainter *p) | 207 | void MonthViewItem::paint(QPainter *p) |
208 | { | 208 | { |
209 | #if QT_VERSION >= 0x030000 | 209 | #if QT_VERSION >= 0x030000 |
210 | bool sel = isSelected(); | 210 | bool sel = isSelected(); |
211 | #else | 211 | #else |
212 | bool sel = selected(); | 212 | bool sel = selected(); |
213 | #endif | 213 | #endif |
214 | 214 | ||
215 | 215 | ||
216 | if (KOPrefs::instance()->mMonthViewUsesCategoryColor) | 216 | if (KOPrefs::instance()->mMonthViewUsesCategoryColor) |
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 heihei = height( listBox () ); | 227 | int heihei = height( listBox () ); |
228 | int y = (heihei - size -1 ) /2; | 228 | int y = (heihei - size -1 ) /2; |
229 | 229 | ||
230 | if ( KOPrefs::instance()->mMonthShowIcons ) { | 230 | if ( KOPrefs::instance()->mMonthShowIcons ) { |
231 | if ( mInfo ) { | 231 | if ( mInfo ) { |
232 | p->fillRect ( x, y,size,size, Qt::darkGreen ); | 232 | p->fillRect ( x, y,size,size, Qt::darkGreen ); |
233 | x += size + 1; | 233 | x += size + 1; |
234 | } | 234 | } |
235 | if ( mRecur ) { | 235 | if ( mRecur ) { |
236 | p->fillRect ( x, y,size,size, Qt::blue ); | 236 | p->fillRect ( x, y,size,size, Qt::blue ); |
237 | x += size + 1; | 237 | x += size + 1; |
238 | } | 238 | } |
239 | if ( mAlarm ) { | 239 | if ( mAlarm ) { |
240 | p->fillRect ( x, y,size,size, Qt::red ); | 240 | p->fillRect ( x, y,size,size, Qt::red ); |
241 | x += size + 1; | 241 | x += size + 1; |
242 | } | 242 | } |
243 | if ( mReply ) { | 243 | if ( mReply ) { |
244 | p->fillRect ( x, y,size,size, Qt::yellow ); | 244 | p->fillRect ( x, y,size,size, Qt::yellow ); |
245 | x += size + 1; | 245 | x += size + 1; |
246 | } | 246 | } |
@@ -471,98 +471,99 @@ void MonthViewCell::startUpdateCell() | |||
471 | mItemList->setLineWidth( 3 ); | 471 | mItemList->setLineWidth( 3 ); |
472 | } else { | 472 | } else { |
473 | mItemList->setLineWidth( 1 ); | 473 | mItemList->setLineWidth( 1 ); |
474 | } | 474 | } |
475 | mItemList->clear(); | 475 | mItemList->clear(); |
476 | 476 | ||
477 | #ifdef DESKTOP_VERSION | 477 | #ifdef DESKTOP_VERSION |
478 | QToolTip::remove(this); | 478 | QToolTip::remove(this); |
479 | #endif | 479 | #endif |
480 | mToolTip = ""; | 480 | mToolTip = ""; |
481 | //qApp->processEvents(); | 481 | //qApp->processEvents(); |
482 | if ( !mHolidayString.isEmpty() ) { | 482 | if ( !mHolidayString.isEmpty() ) { |
483 | MonthViewItem *item = new MonthViewItem( 0, mDate, mHolidayString ); | 483 | MonthViewItem *item = new MonthViewItem( 0, mDate, mHolidayString ); |
484 | item->setPalette( mHolidayPalette ); | 484 | item->setPalette( mHolidayPalette ); |
485 | mItemList->insertItem( item ); | 485 | mItemList->insertItem( item ); |
486 | mToolTip += mHolidayString+"\n"; | 486 | mToolTip += mHolidayString+"\n"; |
487 | } | 487 | } |
488 | } | 488 | } |
489 | 489 | ||
490 | void MonthViewCell::insertEvent(Event *event) | 490 | void MonthViewCell::insertEvent(Event *event) |
491 | { | 491 | { |
492 | 492 | ||
493 | mItemList->setFocusPolicy(WheelFocus); | 493 | mItemList->setFocusPolicy(WheelFocus); |
494 | if ( !(event->doesRecur() == Recurrence::rNone) ) { | 494 | if ( !(event->doesRecur() == Recurrence::rNone) ) { |
495 | if ( !KOPrefs::instance()->mMonthDailyRecur && event->doesRecur() == Recurrence::rDaily ) | 495 | if ( !KOPrefs::instance()->mMonthDailyRecur && event->doesRecur() == Recurrence::rDaily ) |
496 | return; | 496 | return; |
497 | else | 497 | else |
498 | if ( !KOPrefs::instance()->mMonthWeeklyRecur && event->doesRecur() == Recurrence::rWeekly ) | 498 | if ( !KOPrefs::instance()->mMonthWeeklyRecur && event->doesRecur() == Recurrence::rWeekly ) |
499 | return; | 499 | return; |
500 | } | 500 | } |
501 | 501 | ||
502 | if ( event->categories().contains("Holiday") || | 502 | if ( event->categories().contains("Holiday") || |
503 | event->categories().contains(i18n("Holiday"))) { | 503 | event->categories().contains(i18n("Holiday"))) { |
504 | setHoliday( true ); | 504 | setHoliday( true ); |
505 | if ( mDate.dayOfWeek() == 7 ) | 505 | if ( mDate.dayOfWeek() == 7 ) |
506 | mItemList->setLineWidth( 3 ); | 506 | mItemList->setLineWidth( 3 ); |
507 | } | 507 | } |
508 | QString text; | 508 | QString text; |
509 | int multiday = 0;// 1 = start, 2 = midddle, 3 = end day | 509 | int multiday = 0;// 1 = start, 2 = midddle, 3 = end day |
510 | if (event->isMultiDay()) { | 510 | if (event->isMultiDay()) { |
511 | QString prefix = "<->";multiday = 2; | 511 | QString prefix = "<->";multiday = 2; |
512 | QString time; | 512 | QString time; |
513 | if ( event->doesRecur() ) { | 513 | if ( event->doesRecur() ) { |
514 | if ( event->recursOn( mDate) ) { | 514 | if ( event->recursOn( mDate) ) { |
515 | prefix ="->" ;multiday = 1; | 515 | prefix ="->" ;multiday = 1; |
516 | } | 516 | } |
517 | else { | 517 | else { |
518 | int days = event->dtStart().date().daysTo ( event->dtEnd().date() ); | 518 | int days = event->dtStart().date().daysTo ( event->dtEnd().date() ); |
519 | if ( event->recursOn( mDate.addDays( -days)) ) | 519 | if ( event->recursOn( mDate.addDays( -days)) ) { |
520 | prefix ="<-" ;multiday = 3; | 520 | prefix ="<-" ;multiday = 3; |
521 | } | ||
521 | } | 522 | } |
522 | 523 | ||
523 | } else { | 524 | } else { |
524 | if (mDate == event->dtStart().date()) { | 525 | if (mDate == event->dtStart().date()) { |
525 | prefix ="->" ;multiday = 1; | 526 | prefix ="->" ;multiday = 1; |
526 | } else if (mDate == event->dtEnd().date()) { | 527 | } else if (mDate == event->dtEnd().date()) { |
527 | prefix ="<-" ;multiday = 3; | 528 | prefix ="<-" ;multiday = 3; |
528 | } | 529 | } |
529 | } | 530 | } |
530 | if ( !event->doesFloat() ) { | 531 | if ( !event->doesFloat() ) { |
531 | if ( mDate == event->dtStart().date () ) | 532 | if ( mDate == event->dtStart().date () ) |
532 | time = KGlobal::locale()->formatTime(event->dtStart().time())+" "; | 533 | time = KGlobal::locale()->formatTime(event->dtStart().time())+" "; |
533 | else if ( mDate == event->dtEnd().date () ) | 534 | else if ( mDate == event->dtEnd().date () ) |
534 | time = KGlobal::locale()->formatTime(event->dtEnd().time())+" "; | 535 | time = KGlobal::locale()->formatTime(event->dtEnd().time())+" "; |
535 | 536 | ||
536 | } | 537 | } |
537 | text = time + event->summary(); | 538 | text = time + event->summary(); |
538 | mToolTip += prefix + text; | 539 | mToolTip += prefix + text; |
539 | } else { | 540 | } else { |
540 | if (event->doesFloat()) { | 541 | if (event->doesFloat()) { |
541 | text = event->summary(); | 542 | text = event->summary(); |
542 | mToolTip += text; | 543 | mToolTip += text; |
543 | } | 544 | } |
544 | else { | 545 | else { |
545 | text = KGlobal::locale()->formatTime(event->dtStart().time()); | 546 | text = KGlobal::locale()->formatTime(event->dtStart().time()); |
546 | text += " " + event->summary(); | 547 | text += " " + event->summary(); |
547 | mToolTip += KGlobal::locale()->formatTime(event->dtStart().time()) +"-"+KGlobal::locale()->formatTime(event->dtEnd().time())+" " + event->summary(); | 548 | mToolTip += KGlobal::locale()->formatTime(event->dtStart().time()) +"-"+KGlobal::locale()->formatTime(event->dtEnd().time())+" " + event->summary(); |
548 | } | 549 | } |
549 | } | 550 | } |
550 | 551 | ||
551 | MonthViewItem *item = new MonthViewItem( event, mDate, text ); | 552 | MonthViewItem *item = new MonthViewItem( event, mDate, text ); |
552 | QPalette pal; | 553 | QPalette pal; |
553 | if (KOPrefs::instance()->mMonthViewUsesCategoryColor) { | 554 | if (KOPrefs::instance()->mMonthViewUsesCategoryColor) { |
554 | QStringList categories = event->categories(); | 555 | QStringList categories = event->categories(); |
555 | QString cat = categories.first(); | 556 | QString cat = categories.first(); |
556 | if ( KOPrefs::instance()->mMonthViewUsesForegroundColor ) { | 557 | if ( KOPrefs::instance()->mMonthViewUsesForegroundColor ) { |
557 | pal = getPalette(); | 558 | pal = getPalette(); |
558 | if (cat.isEmpty()) { | 559 | if (cat.isEmpty()) { |
559 | pal.setColor(QColorGroup::Foreground,KOPrefs::instance()->mEventColor); | 560 | pal.setColor(QColorGroup::Foreground,KOPrefs::instance()->mEventColor); |
560 | } else { | 561 | } else { |
561 | pal.setColor(QColorGroup::Foreground, *(KOPrefs::instance()->categoryColor(cat))); | 562 | pal.setColor(QColorGroup::Foreground, *(KOPrefs::instance()->categoryColor(cat))); |
562 | } | 563 | } |
563 | 564 | ||
564 | } else { | 565 | } else { |
565 | if (cat.isEmpty()) { | 566 | if (cat.isEmpty()) { |
566 | pal = QPalette(KOPrefs::instance()->mEventColor, KOPrefs::instance()->mEventColor); | 567 | pal = QPalette(KOPrefs::instance()->mEventColor, KOPrefs::instance()->mEventColor); |
567 | } else { | 568 | } else { |
568 | pal = QPalette(*(KOPrefs::instance()->categoryColor(cat)), *(KOPrefs::instance()->categoryColor(cat))); | 569 | pal = QPalette(*(KOPrefs::instance()->categoryColor(cat)), *(KOPrefs::instance()->categoryColor(cat))); |