-rw-r--r-- | korganizer/kodaymatrix.cpp | 118 | ||||
-rw-r--r-- | korganizer/kodaymatrix.h | 5 |
2 files changed, 111 insertions, 12 deletions
diff --git a/korganizer/kodaymatrix.cpp b/korganizer/kodaymatrix.cpp index 17a8546..1cde616 100644 --- a/korganizer/kodaymatrix.cpp +++ b/korganizer/kodaymatrix.cpp | |||
@@ -26,6 +26,7 @@ | |||
26 | #include <qpainter.h> | 26 | #include <qpainter.h> |
27 | #include <qptrlist.h> | 27 | #include <qptrlist.h> |
28 | #include <qtimer.h> | 28 | #include <qtimer.h> |
29 | #include <qwhatsthis.h> | ||
29 | 30 | ||
30 | #include <kglobal.h> | 31 | #include <kglobal.h> |
31 | #include <kdebug.h> | 32 | #include <kdebug.h> |
@@ -58,6 +59,19 @@ DynamicTip::DynamicTip( QWidget * parent ) | |||
58 | matrix = (KODayMatrix*)parent; | 59 | matrix = (KODayMatrix*)parent; |
59 | } | 60 | } |
60 | 61 | ||
62 | class KODaymatrixWhatsThis :public QWhatsThis | ||
63 | { | ||
64 | public: | ||
65 | KODaymatrixWhatsThis( KODayMatrix* view ) : QWhatsThis( view ),_view (view) { }; | ||
66 | |||
67 | protected: | ||
68 | virtual QString text( const QPoint& p ) | ||
69 | { | ||
70 | return _view->getWhatsThisText( p ) ; | ||
71 | } | ||
72 | private: | ||
73 | KODayMatrix * _view; | ||
74 | }; | ||
61 | 75 | ||
62 | void DynamicTip::maybeTip( const QPoint &pos ) | 76 | void DynamicTip::maybeTip( const QPoint &pos ) |
63 | { | 77 | { |
@@ -95,10 +109,11 @@ KODayMatrix::KODayMatrix(QWidget *parent, Calendar* calendar, QDate date, const | |||
95 | QFrame(parent, name) | 109 | QFrame(parent, name) |
96 | #endif | 110 | #endif |
97 | { | 111 | { |
98 | 112 | new KODaymatrixWhatsThis(this); | |
99 | mPendingUpdateBeforeRepaint = false; | 113 | mPendingUpdateBeforeRepaint = false; |
100 | 114 | mouseDown = false; | |
101 | // initialize dynamic arrays | 115 | // initialize dynamic arrays |
116 | bDays.resize ( NUMDAYS ); | ||
102 | days = new QDate[NUMDAYS]; | 117 | days = new QDate[NUMDAYS]; |
103 | daylbls = new QString[NUMDAYS]; | 118 | daylbls = new QString[NUMDAYS]; |
104 | events = new int[NUMDAYS]; | 119 | events = new int[NUMDAYS]; |
@@ -123,6 +138,65 @@ KODayMatrix::KODayMatrix(QWidget *parent, Calendar* calendar, QDate date, const | |||
123 | mDayChanged = false; | 138 | mDayChanged = false; |
124 | updateView(); | 139 | updateView(); |
125 | } | 140 | } |
141 | QString KODayMatrix::getWhatsThisText( QPoint p ) | ||
142 | { | ||
143 | |||
144 | int tmp = getDayIndexFrom(p.x(), p.y()); | ||
145 | if ( tmp < 0 || tmp > NUMDAYS-1 || !mCalendar ) | ||
146 | return QString(); | ||
147 | QDate mDate = days[tmp]; | ||
148 | QPtrList<Event> eventlist = mCalendar->events(mDate); | ||
149 | Event *event; | ||
150 | QStringList mToolTip; | ||
151 | for(event=eventlist.first();event != 0;event=eventlist.next()) { | ||
152 | QString mToolTipText; | ||
153 | QString text; | ||
154 | int multiday = 0;// 1 = start, 2 = midddle, 3 = end day | ||
155 | if (event->isMultiDay()) { | ||
156 | QString prefix = "<->";multiday = 2; | ||
157 | QString time; | ||
158 | if ( event->doesRecur() ) { | ||
159 | if ( event->recursOn( mDate) ) { | ||
160 | prefix ="->" ;multiday = 1; | ||
161 | } | ||
162 | else { | ||
163 | int days = event->dtStart().date().daysTo ( event->dtEnd().date() ); | ||
164 | if ( event->recursOn( mDate.addDays( -days)) ) { | ||
165 | prefix ="<-" ;multiday = 3; | ||
166 | } | ||
167 | } | ||
168 | } else { | ||
169 | if (mDate == event->dtStart().date()) { | ||
170 | prefix ="->" ;multiday = 1; | ||
171 | } else if (mDate == event->dtEnd().date()) { | ||
172 | prefix ="<-" ;multiday = 3; | ||
173 | } | ||
174 | } | ||
175 | if ( !event->doesFloat() ) { | ||
176 | if ( mDate == event->dtStart().date () ) | ||
177 | time = KGlobal::locale()->formatTime(event->dtStart().time())+" "; | ||
178 | else if ( mDate == event->dtEnd().date () ) | ||
179 | time = KGlobal::locale()->formatTime(event->dtEnd().time())+" "; | ||
180 | |||
181 | } | ||
182 | text = time + event->summary(); | ||
183 | mToolTipText += prefix + text; | ||
184 | } else { | ||
185 | if (event->doesFloat()) { | ||
186 | text = event->summary(); | ||
187 | mToolTipText += text; | ||
188 | } | ||
189 | else { | ||
190 | text = KGlobal::locale()->formatTime(event->dtStart().time()); | ||
191 | text += " " + event->summary(); | ||
192 | mToolTipText += KGlobal::locale()->formatTime(event->dtStart().time()) +"-"+KGlobal::locale()->formatTime(event->dtEnd().time())+" " + event->summary(); | ||
193 | } | ||
194 | } | ||
195 | mToolTip.append( mToolTipText ); | ||
196 | } | ||
197 | mToolTip.sort(); | ||
198 | return "<b>"+KGlobal::locale()->formatDate(days[tmp]) + "</b><br>" + mToolTip.join("<br>"); | ||
199 | } | ||
126 | void KODayMatrix::setCalendar( Calendar *cal ) | 200 | void KODayMatrix::setCalendar( Calendar *cal ) |
127 | { | 201 | { |
128 | mCalendar = cal; | 202 | mCalendar = cal; |
@@ -246,6 +320,7 @@ void KODayMatrix::updateViewTimed() | |||
246 | Event *event; | 320 | Event *event; |
247 | int numEvents = eventlist.count(); | 321 | int numEvents = eventlist.count(); |
248 | QString holiStr = ""; | 322 | QString holiStr = ""; |
323 | bDays.clearBit(i); | ||
249 | for(event=eventlist.first();event != 0;event=eventlist.next()) { | 324 | for(event=eventlist.first();event != 0;event=eventlist.next()) { |
250 | ushort recurType = event->recurrence()->doesRecur(); | 325 | ushort recurType = event->recurrence()->doesRecur(); |
251 | if ((recurType == Recurrence::rDaily && !KOPrefs::instance()->mDailyRecur) || | 326 | if ((recurType == Recurrence::rDaily && !KOPrefs::instance()->mDailyRecur) || |
@@ -257,6 +332,12 @@ void KODayMatrix::updateViewTimed() | |||
257 | holiStr += "\n"; | 332 | holiStr += "\n"; |
258 | holiStr += event->summary(); | 333 | holiStr += event->summary(); |
259 | } | 334 | } |
335 | if ( event->categories().contains( i18n("Birthday") ) || event->categories().contains( "Birthday" )) { | ||
336 | if ( !holiStr.isEmpty() ) | ||
337 | holiStr += "\n"; | ||
338 | holiStr += event->summary(); | ||
339 | bDays.setBit(i); | ||
340 | } | ||
260 | } | 341 | } |
261 | events[i] = numEvents; | 342 | events[i] = numEvents; |
262 | //if it is a holy day then draw it red. Sundays are consider holidays, too | 343 | //if it is a holy day then draw it red. Sundays are consider holidays, too |
@@ -307,11 +388,11 @@ void KODayMatrix::updateView(QDate actdate) | |||
307 | mPendingUpdateBeforeRepaint = true; | 388 | mPendingUpdateBeforeRepaint = true; |
308 | } else { | 389 | } else { |
309 | #ifdef DESKTOP_VERSION | 390 | #ifdef DESKTOP_VERSION |
310 | //mRepaintTimer->start( 250 ); | 391 | //mRepaintTimer->start( 150 ); |
311 | mUpdateTimer->start( 250 ); | 392 | mUpdateTimer->start( 150 ); |
312 | #else | 393 | #else |
313 | mRepaintTimer->start( 350 ); | 394 | mRepaintTimer->start( 350 ); |
314 | mUpdateTimer->start( 2000 ); | 395 | mUpdateTimer->start( 1200 ); |
315 | #endif | 396 | #endif |
316 | } | 397 | } |
317 | } | 398 | } |
@@ -368,6 +449,9 @@ int KODayMatrix::getDayIndexFrom(int x, int y) | |||
368 | 449 | ||
369 | void KODayMatrix::mousePressEvent (QMouseEvent* e) | 450 | void KODayMatrix::mousePressEvent (QMouseEvent* e) |
370 | { | 451 | { |
452 | |||
453 | if ( e->button() == LeftButton ) | ||
454 | mouseDown = true; | ||
371 | mSelStart = getDayIndexFrom(e->x(), e->y()); | 455 | mSelStart = getDayIndexFrom(e->x(), e->y()); |
372 | if (mSelStart > NUMDAYS-1) mSelStart=NUMDAYS-1; | 456 | if (mSelStart > NUMDAYS-1) mSelStart=NUMDAYS-1; |
373 | mSelInit = mSelStart; | 457 | mSelInit = mSelStart; |
@@ -375,7 +459,12 @@ void KODayMatrix::mousePressEvent (QMouseEvent* e) | |||
375 | 459 | ||
376 | void KODayMatrix::mouseReleaseEvent (QMouseEvent* e) | 460 | void KODayMatrix::mouseReleaseEvent (QMouseEvent* e) |
377 | { | 461 | { |
378 | 462 | if ( e->button() == LeftButton ) | |
463 | if ( ! mouseDown ) { | ||
464 | return; | ||
465 | } | ||
466 | else | ||
467 | mouseDown = false; | ||
379 | int tmp = getDayIndexFrom(e->x(), e->y()); | 468 | int tmp = getDayIndexFrom(e->x(), e->y()); |
380 | if (tmp > NUMDAYS-1) tmp=NUMDAYS-1; | 469 | if (tmp > NUMDAYS-1) tmp=NUMDAYS-1; |
381 | 470 | ||
@@ -406,7 +495,10 @@ void KODayMatrix::mouseReleaseEvent (QMouseEvent* e) | |||
406 | } | 495 | } |
407 | 496 | ||
408 | void KODayMatrix::mouseMoveEvent (QMouseEvent* e) | 497 | void KODayMatrix::mouseMoveEvent (QMouseEvent* e) |
409 | { | 498 | { |
499 | if ( ! mouseDown ) { | ||
500 | return; | ||
501 | } | ||
410 | int tmp = getDayIndexFrom(e->x(), e->y()); | 502 | int tmp = getDayIndexFrom(e->x(), e->y()); |
411 | if (tmp > NUMDAYS-1) tmp=NUMDAYS-1; | 503 | if (tmp > NUMDAYS-1) tmp=NUMDAYS-1; |
412 | 504 | ||
@@ -630,17 +722,21 @@ void KODayMatrix::paintEvent(QPaintEvent * pevent) | |||
630 | 722 | ||
631 | // if it is a holiday then use the default holiday color | 723 | // if it is a holiday then use the default holiday color |
632 | if (!mHolidays[i].isNull()) { | 724 | if (!mHolidays[i].isNull()) { |
633 | if (actcol == mDefaultTextColor) { | 725 | if ( bDays.testBit(i) ) { |
634 | p.setPen(KOPrefs::instance()->mHolidayColor); | 726 | p.setPen(Qt::green); |
635 | } else { | 727 | } else { |
636 | p.setPen(mHolidayColorShaded); | 728 | if (actcol == mDefaultTextColor) { |
729 | p.setPen(KOPrefs::instance()->mHolidayColor); | ||
730 | } else { | ||
731 | p.setPen(mHolidayColorShaded); | ||
732 | } | ||
637 | } | 733 | } |
638 | } | 734 | } |
639 | 735 | ||
640 | // draw selected days with special color | 736 | // draw selected days with special color |
641 | // DO NOT specially highlight holidays in selection ! | 737 | // DO NOT specially highlight holidays in selection ! |
642 | if (i >= mSelStart && i <= mSelEnd) { | 738 | if (i >= mSelStart && i <= mSelEnd) { |
643 | p.setPen(mSelectedDaysColor); | 739 | ;//p.setPen(mSelectedDaysColor); |
644 | } | 740 | } |
645 | 741 | ||
646 | p.drawText(col*dwidth, row*dheight, dwidth, dheight, | 742 | p.drawText(col*dwidth, row*dheight, dwidth, dheight, |
diff --git a/korganizer/kodaymatrix.h b/korganizer/kodaymatrix.h index ba4853f..c049942 100644 --- a/korganizer/kodaymatrix.h +++ b/korganizer/kodaymatrix.h | |||
@@ -32,7 +32,7 @@ | |||
32 | #include <qdatetime.h> | 32 | #include <qdatetime.h> |
33 | #include <qtooltip.h> | 33 | #include <qtooltip.h> |
34 | #include <qpixmap.h> | 34 | #include <qpixmap.h> |
35 | 35 | #include <qbitarray.h> | |
36 | #include <qmap.h> | 36 | #include <qmap.h> |
37 | 37 | ||
38 | class QDragEnterEvent; | 38 | class QDragEnterEvent; |
@@ -169,6 +169,7 @@ public: | |||
169 | */ | 169 | */ |
170 | bool isBeginningOfMonth() const { return today<=8; } ; | 170 | bool isBeginningOfMonth() const { return today<=8; } ; |
171 | bool isEndOfMonth() const { return today>=27; } ; | 171 | bool isEndOfMonth() const { return today>=27; } ; |
172 | QString getWhatsThisText( QPoint ) ; | ||
172 | 173 | ||
173 | public slots: | 174 | public slots: |
174 | /** Recalculates all the flags of the days in the matrix like holidays or events | 175 | /** Recalculates all the flags of the days in the matrix like holidays or events |
@@ -224,6 +225,8 @@ protected: | |||
224 | void resizeEvent(QResizeEvent *); | 225 | void resizeEvent(QResizeEvent *); |
225 | 226 | ||
226 | private: | 227 | private: |
228 | bool mouseDown; | ||
229 | QBitArray bDays; | ||
227 | QPixmap myPix; | 230 | QPixmap myPix; |
228 | QTimer* mUpdateTimer; | 231 | QTimer* mUpdateTimer; |
229 | QTimer* mRepaintTimer; | 232 | QTimer* mRepaintTimer; |