author | zautrix <zautrix> | 2005-04-01 19:05:18 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-04-01 19:05:18 (UTC) |
commit | 1022d8763a5185c74d1fb1fba9857d6e3afd9ff5 (patch) (unidiff) | |
tree | 116b7ac7aef10e27c20ce30f3bae548ebde84da0 | |
parent | edc032c21ae3788d02a632ea8066e4ac5a4feedb (diff) | |
download | kdepimpi-1022d8763a5185c74d1fb1fba9857d6e3afd9ff5.zip kdepimpi-1022d8763a5185c74d1fb1fba9857d6e3afd9ff5.tar.gz kdepimpi-1022d8763a5185c74d1fb1fba9857d6e3afd9ff5.tar.bz2 |
fixes
-rw-r--r-- | korganizer/koagendaview.cpp | 30 | ||||
-rw-r--r-- | korganizer/kodaymatrix.cpp | 4 |
2 files changed, 16 insertions, 18 deletions
diff --git a/korganizer/koagendaview.cpp b/korganizer/koagendaview.cpp index 072d464..99f547a 100644 --- a/korganizer/koagendaview.cpp +++ b/korganizer/koagendaview.cpp | |||
@@ -1,987 +1,983 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include <qhbox.h> | 24 | #include <qhbox.h> |
25 | #include <qvbox.h> | 25 | #include <qvbox.h> |
26 | #include <qlabel.h> | 26 | #include <qlabel.h> |
27 | #include <qframe.h> | 27 | #include <qframe.h> |
28 | #include <qlayout.h> | 28 | #include <qlayout.h> |
29 | #ifndef KORG_NOSPLITTER | 29 | #ifndef KORG_NOSPLITTER |
30 | #include <qsplitter.h> | 30 | #include <qsplitter.h> |
31 | #endif | 31 | #endif |
32 | #include <qfont.h> | 32 | #include <qfont.h> |
33 | #include <qfontmetrics.h> | 33 | #include <qfontmetrics.h> |
34 | #include <qpopupmenu.h> | 34 | #include <qpopupmenu.h> |
35 | #include <qtooltip.h> | 35 | #include <qtooltip.h> |
36 | #include <qpainter.h> | 36 | #include <qpainter.h> |
37 | #include <qpushbutton.h> | 37 | #include <qpushbutton.h> |
38 | #include <qapplication.h> | 38 | #include <qapplication.h> |
39 | 39 | ||
40 | #include <kapplication.h> | 40 | #include <kapplication.h> |
41 | #include <KDGanttMinimizeSplitter.h> | 41 | #include <KDGanttMinimizeSplitter.h> |
42 | #include <kdebug.h> | 42 | #include <kdebug.h> |
43 | #include <kstandarddirs.h> | 43 | #include <kstandarddirs.h> |
44 | #include <kiconloader.h> | 44 | #include <kiconloader.h> |
45 | #include <klocale.h> | 45 | #include <klocale.h> |
46 | #include <kconfig.h> | 46 | #include <kconfig.h> |
47 | #include <kglobal.h> | 47 | #include <kglobal.h> |
48 | #include "calendarview.h" | 48 | #include "calendarview.h" |
49 | #include "koviewmanager.h" | 49 | #include "koviewmanager.h" |
50 | 50 | ||
51 | #include <libkcal/calendar.h> | 51 | #include <libkcal/calendar.h> |
52 | #include <libkcal/icaldrag.h> | 52 | #include <libkcal/icaldrag.h> |
53 | #include <libkcal/dndfactory.h> | 53 | #include <libkcal/dndfactory.h> |
54 | 54 | ||
55 | #include <kcalendarsystem.h> | 55 | #include <kcalendarsystem.h> |
56 | 56 | ||
57 | #include "koglobals.h" | 57 | #include "koglobals.h" |
58 | #ifndef KORG_NOPLUGINS | 58 | #ifndef KORG_NOPLUGINS |
59 | #include "kocore.h" | 59 | #include "kocore.h" |
60 | #endif | 60 | #endif |
61 | #include "koprefs.h" | 61 | #include "koprefs.h" |
62 | #include "koagenda.h" | 62 | #include "koagenda.h" |
63 | #include "koagendaitem.h" | 63 | #include "koagendaitem.h" |
64 | #ifndef KORG_NOPRINTER | 64 | #ifndef KORG_NOPRINTER |
65 | #include "calprinter.h" | 65 | #include "calprinter.h" |
66 | #endif | 66 | #endif |
67 | 67 | ||
68 | #include "koagendaview.h" | 68 | #include "koagendaview.h" |
69 | //#include "koagendaview.moc" | 69 | //#include "koagendaview.moc" |
70 | 70 | ||
71 | //extern bool globalFlagBlockPainting; | 71 | //extern bool globalFlagBlockPainting; |
72 | extern int globalFlagBlockAgenda; | 72 | extern int globalFlagBlockAgenda; |
73 | extern int globalFlagBlockStartup; | 73 | extern int globalFlagBlockStartup; |
74 | extern int globalFlagBlockAgendaItemPaint; | 74 | extern int globalFlagBlockAgendaItemPaint; |
75 | extern int globalFlagBlockAgendaItemUpdate; | 75 | extern int globalFlagBlockAgendaItemUpdate; |
76 | extern int globalFlagBlockLabel; | 76 | extern int globalFlagBlockLabel; |
77 | using namespace KOrg; | 77 | using namespace KOrg; |
78 | 78 | ||
79 | 79 | ||
80 | 80 | ||
81 | TimeLabels::TimeLabels(int rows,QWidget *parent,const char *name,WFlags f) : | 81 | TimeLabels::TimeLabels(int rows,QWidget *parent,const char *name,WFlags f) : |
82 | QScrollView(parent,name,f) | 82 | QScrollView(parent,name,f) |
83 | { | 83 | { |
84 | myPix.resize( 1, 1 ); | 84 | myPix.resize( 1, 1 ); |
85 | mRows = rows; | 85 | mRows = rows; |
86 | 86 | ||
87 | mRedrawNeeded = true; | 87 | mRedrawNeeded = true; |
88 | setMinimumHeight( 20 ); | 88 | setMinimumHeight( 20 ); |
89 | mCellHeight = KOPrefs::instance()->mHourSize*4; | 89 | mCellHeight = KOPrefs::instance()->mHourSize*4; |
90 | 90 | ||
91 | enableClipper(true); | 91 | enableClipper(true); |
92 | 92 | ||
93 | setHScrollBarMode(AlwaysOff); | 93 | setHScrollBarMode(AlwaysOff); |
94 | setVScrollBarMode(AlwaysOff); | 94 | setVScrollBarMode(AlwaysOff); |
95 | 95 | ||
96 | resizeContents(50,mRows * mCellHeight); | 96 | resizeContents(50,mRows * mCellHeight); |
97 | 97 | ||
98 | viewport()->setBackgroundMode( PaletteBackground ); | 98 | viewport()->setBackgroundMode( PaletteBackground ); |
99 | } | 99 | } |
100 | 100 | ||
101 | void TimeLabels::setCellHeight(int height) | 101 | void TimeLabels::setCellHeight(int height) |
102 | { | 102 | { |
103 | mCellHeight = height; | 103 | mCellHeight = height; |
104 | } | 104 | } |
105 | 105 | ||
106 | /* | 106 | /* |
107 | Optimization so that only the "dirty" portion of the scroll view | 107 | Optimization so that only the "dirty" portion of the scroll view |
108 | is redrawn. Unfortunately, this is not called by default paintEvent() method. | 108 | is redrawn. Unfortunately, this is not called by default paintEvent() method. |
109 | */ | 109 | */ |
110 | void TimeLabels::drawContents(QPainter *p,int cx, int cy, int cw, int ch) | 110 | void TimeLabels::drawContents(QPainter *p,int cx, int cy, int cw, int ch) |
111 | { | 111 | { |
112 | 112 | ||
113 | // if ( globalFlagBlockAgenda ) | 113 | // if ( globalFlagBlockAgenda ) |
114 | // return; | 114 | // return; |
115 | // bug: the parameters cx, cy, cw, ch are the areas that need to be | 115 | // bug: the parameters cx, cy, cw, ch are the areas that need to be |
116 | // redrawn, not the area of the widget. unfortunately, this | 116 | // redrawn, not the area of the widget. unfortunately, this |
117 | // code assumes the latter... | 117 | // code assumes the latter... |
118 | 118 | ||
119 | // now, for a workaround... | 119 | // now, for a workaround... |
120 | // these two assignments fix the weird redraw bug | 120 | // these two assignments fix the weird redraw bug |
121 | mRedrawNeeded = true; | 121 | mRedrawNeeded = true; |
122 | if ( mRedrawNeeded ) { | 122 | if ( mRedrawNeeded ) { |
123 | cx = contentsX() + frameWidth()*2; | 123 | cx = contentsX() + frameWidth()*2; |
124 | cw = contentsWidth() ; | 124 | cw = contentsWidth() ; |
125 | // end of workaround | 125 | // end of workaround |
126 | 126 | ||
127 | int cell = ((int)(cy/mCellHeight)); | 127 | int cell = ((int)(cy/mCellHeight)); |
128 | int y = cell * mCellHeight; | 128 | int y = cell * mCellHeight; |
129 | QFontMetrics fm = fontMetrics(); | 129 | QFontMetrics fm = fontMetrics(); |
130 | QString hour; | 130 | QString hour; |
131 | QString suffix; | 131 | QString suffix; |
132 | int tW = fm.width("24:00i"); | 132 | int timeHeight = fm.ascent(); |
133 | int timeHeight = fm.height(); | ||
134 | //timeHeight -= (timeHeight/4-2); | ||
135 | int borderWidth = 0; | ||
136 | QFont nFont = p->font(); | 133 | QFont nFont = p->font(); |
137 | 134 | ||
138 | if (!KGlobal::locale()->use12Clock()) | 135 | if (!KGlobal::locale()->use12Clock()) |
139 | suffix = "00"; | 136 | suffix = "00"; |
140 | else | 137 | |
141 | borderWidth = 0; | ||
142 | if ( timeHeight > mCellHeight ) { | 138 | if ( timeHeight > mCellHeight ) { |
143 | timeHeight = mCellHeight-1; | 139 | timeHeight = mCellHeight-1; |
144 | int pointS = nFont.pointSize(); | 140 | int pointS = nFont.pointSize(); |
145 | while ( pointS > 4 ) { | 141 | while ( pointS > 4 ) { |
146 | nFont.setPointSize( pointS ); | 142 | nFont.setPointSize( pointS ); |
147 | fm = QFontMetrics( nFont ); | 143 | fm = QFontMetrics( nFont ); |
148 | if ( fm.height() < mCellHeight ) | 144 | if ( fm.ascent() < mCellHeight ) |
149 | break; | 145 | break; |
150 | -- pointS; | 146 | -- pointS; |
151 | } | 147 | } |
152 | fm = QFontMetrics( nFont ); | 148 | fm = QFontMetrics( nFont ); |
153 | borderWidth = 4; | 149 | timeHeight = fm.ascent(); |
154 | timeHeight = fm.height(); | ||
155 | } | 150 | } |
156 | //timeHeight -= (timeHeight/4-2); | 151 | //timeHeight -= (timeHeight/4-2); |
157 | QFont sFont = nFont; | 152 | QFont sFont = nFont; |
158 | sFont.setPointSize( sFont.pointSize()/2+2 ); | 153 | sFont.setPointSize( sFont.pointSize()/2 ); |
159 | QFontMetrics fmS( sFont ); | 154 | QFontMetrics fmS( sFont ); |
160 | int sHei = fmS.height(); | 155 | int sHei = fmS.ascent() ; |
161 | //sHei -= (sHei/4-2); | 156 | //sHei -= (sHei/4-2); |
162 | int startW = this->width() - frameWidth()-1; | 157 | int startW = this->width() - 2*frameWidth()-1; |
158 | int tw2 = fmS.width(suffix); | ||
163 | while (y < cy + ch) { | 159 | while (y < cy + ch) { |
164 | p->drawLine(cx,y,cx+tW,y); | 160 | p->drawLine(cx,y,cw,y); |
165 | hour.setNum(cell); | 161 | hour.setNum(cell); |
166 | 162 | ||
167 | // handle 24h and am/pm time formats | 163 | // handle 24h and am/pm time formats |
168 | if (KGlobal::locale()->use12Clock()) { | 164 | if (KGlobal::locale()->use12Clock()) { |
169 | if (cell > 11) suffix = "pm"; | 165 | if (cell > 11) suffix = "pm"; |
170 | else | 166 | else |
171 | suffix = "am"; | 167 | suffix = "am"; |
172 | if (cell == 0) hour.setNum(12); | 168 | if (cell == 0) hour.setNum(12); |
173 | if (cell > 12) hour.setNum(cell - 12); | 169 | if (cell > 12) hour.setNum(cell - 12); |
170 | tw2 = fmS.width(suffix); | ||
174 | } | 171 | } |
175 | 172 | ||
176 | // center and draw the time label | 173 | // center and draw the time label |
177 | int timeWidth = fm.width(hour); | 174 | int timeWidth = fm.width(hour); |
178 | int tw2 = fm.width(suffix); | ||
179 | int offset = startW - timeWidth - tw2 ; | 175 | int offset = startW - timeWidth - tw2 ; |
180 | p->setFont( nFont ); | 176 | p->setFont( nFont ); |
181 | p->drawText( offset, y+ timeHeight, hour); | 177 | p->drawText( offset, y+ timeHeight, hour); |
182 | p->setFont( sFont ); | 178 | p->setFont( sFont ); |
183 | offset = startW - tw2+1; | 179 | offset = startW - tw2+1; |
184 | p->drawText( offset, y+ sHei, suffix); | 180 | p->drawText( offset, y+ sHei, suffix); |
185 | 181 | ||
186 | // increment indices | 182 | // increment indices |
187 | y += mCellHeight; | 183 | y += mCellHeight; |
188 | cell++; | 184 | cell++; |
189 | } | 185 | } |
190 | } else { | 186 | } else { |
191 | //qDebug("NO redraw "); | 187 | //qDebug("NO redraw "); |
192 | } | 188 | } |
193 | // double buffer not yet implemented | 189 | // double buffer not yet implemented |
194 | //bitBlt (this, 0, 0, &myPix, 0 ,0,width(), height() ,CopyROP); | 190 | //bitBlt (this, 0, 0, &myPix, 0 ,0,width(), height() ,CopyROP); |
195 | //mRedrawNeeded = false; | 191 | //mRedrawNeeded = false; |
196 | } | 192 | } |
197 | 193 | ||
198 | /** | 194 | /** |
199 | Calculates the minimum width. | 195 | Calculates the minimum width. |
200 | */ | 196 | */ |
201 | int TimeLabels::minimumWidth() const | 197 | int TimeLabels::minimumWidth() const |
202 | { | 198 | { |
203 | return mMiniWidth; | 199 | return mMiniWidth; |
204 | } | 200 | } |
205 | 201 | ||
206 | /** updates widget's internal state */ | 202 | /** updates widget's internal state */ |
207 | void TimeLabels::updateConfig() | 203 | void TimeLabels::updateConfig() |
208 | { | 204 | { |
209 | mRedrawNeeded = true; | 205 | mRedrawNeeded = true; |
210 | // set the font | 206 | // set the font |
211 | // config->setGroup("Fonts"); | 207 | // config->setGroup("Fonts"); |
212 | // QFont font = config->readFontEntry("TimeBar Font"); | 208 | // QFont font = config->readFontEntry("TimeBar Font"); |
213 | setFont(KOPrefs::instance()->mTimeBarFont); | 209 | setFont(KOPrefs::instance()->mTimeBarFont); |
214 | QString test = "88:88"; | 210 | QString test = "20oo"; |
215 | if (KGlobal::locale()->use12Clock()) | 211 | if (KGlobal::locale()->use12Clock()) |
216 | test += "i"; | 212 | test = "12mi"; |
217 | mMiniWidth = fontMetrics().width(test) + frameWidth()*2 +1 ; | 213 | mMiniWidth = fontMetrics().width(test) + frameWidth()*2 +1 ; |
218 | // update geometry restrictions based on new settings | 214 | // update geometry restrictions based on new settings |
219 | setFixedWidth(minimumWidth()); | 215 | setFixedWidth( mMiniWidth ); |
220 | 216 | ||
221 | // update HourSize | 217 | // update HourSize |
222 | mCellHeight = KOPrefs::instance()->mHourSize*4; | 218 | mCellHeight = KOPrefs::instance()->mHourSize*4; |
223 | resizeContents(50,mRows * mCellHeight); | 219 | resizeContents(50,mRows * mCellHeight); |
224 | } | 220 | } |
225 | 221 | ||
226 | /** update time label positions */ | 222 | /** update time label positions */ |
227 | void TimeLabels::positionChanged() | 223 | void TimeLabels::positionChanged() |
228 | { | 224 | { |
229 | int adjustment = mAgenda->contentsY(); | 225 | int adjustment = mAgenda->contentsY(); |
230 | setContentsPos(0, adjustment); | 226 | setContentsPos(0, adjustment); |
231 | } | 227 | } |
232 | 228 | ||
233 | /** */ | 229 | /** */ |
234 | void TimeLabels::setAgenda(KOAgenda* agenda) | 230 | void TimeLabels::setAgenda(KOAgenda* agenda) |
235 | { | 231 | { |
236 | mAgenda = agenda; | 232 | mAgenda = agenda; |
237 | } | 233 | } |
238 | 234 | ||
239 | void TimeLabels::contentsMousePressEvent ( QMouseEvent * e) | 235 | void TimeLabels::contentsMousePressEvent ( QMouseEvent * e) |
240 | { | 236 | { |
241 | mMouseDownY = e->pos().y(); | 237 | mMouseDownY = e->pos().y(); |
242 | mOrgCap = topLevelWidget()->caption(); | 238 | mOrgCap = topLevelWidget()->caption(); |
243 | } | 239 | } |
244 | 240 | ||
245 | void TimeLabels::contentsMouseMoveEvent ( QMouseEvent * e ) | 241 | void TimeLabels::contentsMouseMoveEvent ( QMouseEvent * e ) |
246 | { | 242 | { |
247 | int diff = mMouseDownY - e->pos().y(); | 243 | int diff = mMouseDownY - e->pos().y(); |
248 | if ( diff < 10 && diff > -10 ) | 244 | if ( diff < 10 && diff > -10 ) |
249 | return; | 245 | return; |
250 | int tSize = KOPrefs::instance()->mHourSize + (diff/10) ; | 246 | int tSize = KOPrefs::instance()->mHourSize + (diff/10) ; |
251 | if ( tSize < 4 ) | 247 | if ( tSize < 4 ) |
252 | tSize = 4; | 248 | tSize = 4; |
253 | if ( tSize > 22 ) | 249 | if ( tSize > 22 ) |
254 | tSize = 22; | 250 | tSize = 22; |
255 | tSize = (tSize-2)/2; | 251 | tSize = (tSize-2)/2; |
256 | topLevelWidget()->setCaption(i18n("New Agendasize: %1").arg(tSize)); | 252 | topLevelWidget()->setCaption(i18n("New Agendasize: %1").arg(tSize)); |
257 | 253 | ||
258 | } | 254 | } |
259 | void TimeLabels::contentsMouseReleaseEvent ( QMouseEvent * e ) | 255 | void TimeLabels::contentsMouseReleaseEvent ( QMouseEvent * e ) |
260 | { | 256 | { |
261 | topLevelWidget()->setCaption( mOrgCap ); | 257 | topLevelWidget()->setCaption( mOrgCap ); |
262 | int diff = mMouseDownY - e->pos().y(); | 258 | int diff = mMouseDownY - e->pos().y(); |
263 | if ( diff < 10 && diff > -10 ) | 259 | if ( diff < 10 && diff > -10 ) |
264 | return; | 260 | return; |
265 | int tSize = KOPrefs::instance()->mHourSize + (diff/10); | 261 | int tSize = KOPrefs::instance()->mHourSize + (diff/10); |
266 | if ( tSize < 4 ) | 262 | if ( tSize < 4 ) |
267 | tSize = 4; | 263 | tSize = 4; |
268 | if ( tSize > 22 ) | 264 | if ( tSize > 22 ) |
269 | tSize = 22; | 265 | tSize = 22; |
270 | tSize = (tSize/2)*2; | 266 | tSize = (tSize/2)*2; |
271 | if ( tSize == KOPrefs::instance()->mHourSize ) | 267 | if ( tSize == KOPrefs::instance()->mHourSize ) |
272 | return; | 268 | return; |
273 | KOPrefs::instance()->mHourSize = tSize; | 269 | KOPrefs::instance()->mHourSize = tSize; |
274 | emit scaleChanged(); | 270 | emit scaleChanged(); |
275 | } | 271 | } |
276 | 272 | ||
277 | /** This is called in response to repaint() */ | 273 | /** This is called in response to repaint() */ |
278 | void TimeLabels::paintEvent(QPaintEvent*) | 274 | void TimeLabels::paintEvent(QPaintEvent*) |
279 | { | 275 | { |
280 | 276 | ||
281 | // kdDebug() << "paintevent..." << endl; | 277 | // kdDebug() << "paintevent..." << endl; |
282 | // this is another hack! | 278 | // this is another hack! |
283 | // QPainter painter(this); | 279 | // QPainter painter(this); |
284 | //QString c | 280 | //QString c |
285 | repaintContents(contentsX(), contentsY(), visibleWidth(), visibleHeight()); | 281 | repaintContents(contentsX(), contentsY(), visibleWidth(), visibleHeight()); |
286 | } | 282 | } |
287 | 283 | ||
288 | //////////////////////////////////////////////////////////////////////////// | 284 | //////////////////////////////////////////////////////////////////////////// |
289 | 285 | ||
290 | EventIndicator::EventIndicator(Location loc,QWidget *parent,const char *name) | 286 | EventIndicator::EventIndicator(Location loc,QWidget *parent,const char *name) |
291 | : QFrame(parent,name) | 287 | : QFrame(parent,name) |
292 | { | 288 | { |
293 | mColumns = 1; | 289 | mColumns = 1; |
294 | mTopBox = 0; | 290 | mTopBox = 0; |
295 | mLocation = loc; | 291 | mLocation = loc; |
296 | mTopLayout = 0; | 292 | mTopLayout = 0; |
297 | mPaintWidget = 0; | 293 | mPaintWidget = 0; |
298 | mXOffset = 0; | 294 | mXOffset = 0; |
299 | if (mLocation == Top) mPixmap = SmallIcon("1uparrow"); | 295 | if (mLocation == Top) mPixmap = SmallIcon("1uparrow"); |
300 | else mPixmap = SmallIcon("1downarrow"); | 296 | else mPixmap = SmallIcon("1downarrow"); |
301 | mEnabled.resize(mColumns); | 297 | mEnabled.resize(mColumns); |
302 | mEnabled.fill( false ); | 298 | mEnabled.fill( false ); |
303 | setMinimumHeight(mPixmap.height()); | 299 | setMinimumHeight(mPixmap.height()); |
304 | } | 300 | } |
305 | 301 | ||
306 | EventIndicator::~EventIndicator() | 302 | EventIndicator::~EventIndicator() |
307 | { | 303 | { |
308 | } | 304 | } |
309 | 305 | ||
310 | void EventIndicator::drawContents(QPainter *p) | 306 | void EventIndicator::drawContents(QPainter *p) |
311 | { | 307 | { |
312 | 308 | ||
313 | // kdDebug() << "======== top: " << contentsRect().top() << " bottom " << // contentsRect().bottom() << " left " << contentsRect().left() << " right " << contentsRect().right() << endl; | 309 | // kdDebug() << "======== top: " << contentsRect().top() << " bottom " << // contentsRect().bottom() << " left " << contentsRect().left() << " right " << contentsRect().right() << endl; |
314 | KDGanttSplitterHandle* han = 0; | 310 | KDGanttSplitterHandle* han = 0; |
315 | if ( mPaintWidget ) | 311 | if ( mPaintWidget ) |
316 | han = mPaintWidget->firstHandle(); | 312 | han = mPaintWidget->firstHandle(); |
317 | if ( ! han ) { | 313 | if ( ! han ) { |
318 | int i; | 314 | int i; |
319 | for(i=0;i<mColumns;++i) { | 315 | for(i=0;i<mColumns;++i) { |
320 | if (mEnabled[i]) { | 316 | if (mEnabled[i]) { |
321 | int cellWidth = contentsRect().right()/mColumns; | 317 | int cellWidth = contentsRect().right()/mColumns; |
322 | int xOffset = KOGlobals::self()->reverseLayout() ? | 318 | int xOffset = KOGlobals::self()->reverseLayout() ? |
323 | (mColumns - 1 - i)*cellWidth + (cellWidth -mPixmap.width())/2 : | 319 | (mColumns - 1 - i)*cellWidth + (cellWidth -mPixmap.width())/2 : |
324 | i*cellWidth + (cellWidth -mPixmap.width()) /2; | 320 | i*cellWidth + (cellWidth -mPixmap.width()) /2; |
325 | p->drawPixmap(QPoint(1+xOffset,0),mPixmap); | 321 | p->drawPixmap(QPoint(1+xOffset,0),mPixmap); |
326 | } | 322 | } |
327 | } | 323 | } |
328 | } else { | 324 | } else { |
329 | han->repaint(); | 325 | han->repaint(); |
330 | //mPaintWidget->setBackgroundColor( red ); | 326 | //mPaintWidget->setBackgroundColor( red ); |
331 | 327 | ||
332 | QPainter pa( han ); | 328 | QPainter pa( han ); |
333 | int i; | 329 | int i; |
334 | bool setColor = false; | 330 | bool setColor = false; |
335 | for(i=0;i<mColumns;++i) { | 331 | for(i=0;i<mColumns;++i) { |
336 | if (mEnabled[i]) { | 332 | if (mEnabled[i]) { |
337 | setColor = true; | 333 | setColor = true; |
338 | 334 | ||
339 | int cellWidth = contentsRect().right()/mColumns; | 335 | int cellWidth = contentsRect().right()/mColumns; |
340 | int xOffset = KOGlobals::self()->reverseLayout() ? | 336 | int xOffset = KOGlobals::self()->reverseLayout() ? |
341 | (mColumns - 1 - i)*cellWidth + cellWidth/2 -mPixmap.width()/2 : | 337 | (mColumns - 1 - i)*cellWidth + cellWidth/2 -mPixmap.width()/2 : |
342 | i*cellWidth + cellWidth/2 -mPixmap.width()/2; | 338 | i*cellWidth + cellWidth/2 -mPixmap.width()/2; |
343 | pa.drawPixmap(QPoint(mXOffset + xOffset,0),mPixmap); | 339 | pa.drawPixmap(QPoint(mXOffset + xOffset,0),mPixmap); |
344 | //qDebug("222draw pix %d ",xOffset ); | 340 | //qDebug("222draw pix %d ",xOffset ); |
345 | 341 | ||
346 | } | 342 | } |
347 | 343 | ||
348 | } | 344 | } |
349 | pa.end(); | 345 | pa.end(); |
350 | 346 | ||
351 | } | 347 | } |
352 | } | 348 | } |
353 | 349 | ||
354 | void EventIndicator::setXOffset( int x ) | 350 | void EventIndicator::setXOffset( int x ) |
355 | { | 351 | { |
356 | mXOffset = x; | 352 | mXOffset = x; |
357 | } | 353 | } |
358 | void EventIndicator::setPaintWidget( KDGanttMinimizeSplitter * w ) | 354 | void EventIndicator::setPaintWidget( KDGanttMinimizeSplitter * w ) |
359 | { | 355 | { |
360 | mPaintWidget = w; | 356 | mPaintWidget = w; |
361 | setMaximumHeight(0); | 357 | setMaximumHeight(0); |
362 | setMinimumHeight(0); | 358 | setMinimumHeight(0); |
363 | } | 359 | } |
364 | void EventIndicator::changeColumns(int columns) | 360 | void EventIndicator::changeColumns(int columns) |
365 | { | 361 | { |
366 | mColumns = columns; | 362 | mColumns = columns; |
367 | mEnabled.resize(mColumns); | 363 | mEnabled.resize(mColumns); |
368 | 364 | ||
369 | update(); | 365 | update(); |
370 | } | 366 | } |
371 | 367 | ||
372 | void EventIndicator::enableColumn(int column, bool enable) | 368 | void EventIndicator::enableColumn(int column, bool enable) |
373 | { | 369 | { |
374 | mEnabled[column] = enable; | 370 | mEnabled[column] = enable; |
375 | } | 371 | } |
376 | 372 | ||
377 | 373 | ||
378 | //////////////////////////////////////////////////////////////////////////// | 374 | //////////////////////////////////////////////////////////////////////////// |
379 | //////////////////////////////////////////////////////////////////////////// | 375 | //////////////////////////////////////////////////////////////////////////// |
380 | //////////////////////////////////////////////////////////////////////////// | 376 | //////////////////////////////////////////////////////////////////////////// |
381 | 377 | ||
382 | KOAgendaView::KOAgendaView(Calendar *cal,QWidget *parent,const char *name) : | 378 | KOAgendaView::KOAgendaView(Calendar *cal,QWidget *parent,const char *name) : |
383 | KOEventView (cal,parent,name) | 379 | KOEventView (cal,parent,name) |
384 | { | 380 | { |
385 | mBlockUpdating = true; | 381 | mBlockUpdating = true; |
386 | mStartHour = 8; | 382 | mStartHour = 8; |
387 | mSelectedDates.append(QDate::currentDate()); | 383 | mSelectedDates.append(QDate::currentDate()); |
388 | 384 | ||
389 | mLayoutDayLabels = 0; | 385 | mLayoutDayLabels = 0; |
390 | mDayLabelsFrame = 0; | 386 | mDayLabelsFrame = 0; |
391 | mDayLabels = 0; | 387 | mDayLabels = 0; |
392 | bool isRTL = KOGlobals::self()->reverseLayout(); | 388 | bool isRTL = KOGlobals::self()->reverseLayout(); |
393 | QPixmap expandPix; | 389 | QPixmap expandPix; |
394 | if ( KOPrefs::instance()->mVerticalScreen ) { | 390 | if ( KOPrefs::instance()->mVerticalScreen ) { |
395 | expandPix = SmallIcon( "1updownarrow" ); | 391 | expandPix = SmallIcon( "1updownarrow" ); |
396 | } else { | 392 | } else { |
397 | expandPix = SmallIcon("1leftrightarrow" ); | 393 | expandPix = SmallIcon("1leftrightarrow" ); |
398 | } | 394 | } |
399 | 395 | ||
400 | QBoxLayout *topLayout = new QVBoxLayout(this); | 396 | QBoxLayout *topLayout = new QVBoxLayout(this); |
401 | 397 | ||
402 | // Create day name labels for agenda columns | 398 | // Create day name labels for agenda columns |
403 | // Create agenda splitter | 399 | // Create agenda splitter |
404 | 400 | ||
405 | mSplitterAgenda = new KDGanttMinimizeSplitter( Qt::Vertical, this); | 401 | mSplitterAgenda = new KDGanttMinimizeSplitter( Qt::Vertical, this); |
406 | mSplitterAgenda->setMinimizeDirection ( KDGanttMinimizeSplitter::Up ); | 402 | mSplitterAgenda->setMinimizeDirection ( KDGanttMinimizeSplitter::Up ); |
407 | topLayout->addWidget( mSplitterAgenda ); | 403 | topLayout->addWidget( mSplitterAgenda ); |
408 | mAllDayFrame = new QHBox(mSplitterAgenda); | 404 | mAllDayFrame = new QHBox(mSplitterAgenda); |
409 | mAllDayFrame->setFocusPolicy(NoFocus); | 405 | mAllDayFrame->setFocusPolicy(NoFocus); |
410 | QWidget *agendaFrame = new QWidget(mSplitterAgenda); | 406 | QWidget *agendaFrame = new QWidget(mSplitterAgenda); |
411 | agendaFrame->setFocusPolicy(NoFocus); | 407 | agendaFrame->setFocusPolicy(NoFocus); |
412 | 408 | ||
413 | // Create all-day agenda widget | 409 | // Create all-day agenda widget |
414 | mDummyAllDayLeft = new QVBox( mAllDayFrame ); | 410 | mDummyAllDayLeft = new QVBox( mAllDayFrame ); |
415 | 411 | ||
416 | mExpandButton = new QPushButton(mDummyAllDayLeft); | 412 | mExpandButton = new QPushButton(mDummyAllDayLeft); |
417 | mExpandButton->setPixmap( expandPix ); | 413 | mExpandButton->setPixmap( expandPix ); |
418 | int widebut = mExpandButton->sizeHint().width()+4; | 414 | int widebut = mExpandButton->sizeHint().width()+4; |
419 | int heibut = mExpandButton->sizeHint().height()+4; | 415 | int heibut = mExpandButton->sizeHint().height()+4; |
420 | if ( heibut > widebut ) | 416 | if ( heibut > widebut ) |
421 | widebut = heibut ; | 417 | widebut = heibut ; |
422 | 418 | ||
423 | //mExpandButton->setSizePolicy( QSizePolicy( QSizePolicy::Fixed, | 419 | //mExpandButton->setSizePolicy( QSizePolicy( QSizePolicy::Fixed, |
424 | // QSizePolicy::Fixed ) ); | 420 | // QSizePolicy::Fixed ) ); |
425 | mExpandButton->setFixedSize( widebut, widebut); | 421 | mExpandButton->setFixedSize( widebut, widebut); |
426 | connect( mExpandButton, SIGNAL( clicked() ), SIGNAL( toggleExpand() ) ); | 422 | connect( mExpandButton, SIGNAL( clicked() ), SIGNAL( toggleExpand() ) ); |
427 | mExpandButton->setFocusPolicy(NoFocus); | 423 | mExpandButton->setFocusPolicy(NoFocus); |
428 | mAllDayAgenda = new KOAgenda(1,mAllDayFrame); | 424 | mAllDayAgenda = new KOAgenda(1,mAllDayFrame); |
429 | mAllDayAgenda->setFocusPolicy(NoFocus); | 425 | mAllDayAgenda->setFocusPolicy(NoFocus); |
430 | QLabel *dummyAllDayRight = new QLabel (mAllDayFrame); | 426 | QLabel *dummyAllDayRight = new QLabel (mAllDayFrame); |
431 | 427 | ||
432 | // Create event context menu for all day agenda | 428 | // Create event context menu for all day agenda |
433 | mAllDayAgendaPopup = eventPopup(); | 429 | mAllDayAgendaPopup = eventPopup(); |
434 | connect(mAllDayAgenda,SIGNAL(showIncidencePopupSignal(Incidence *)), | 430 | connect(mAllDayAgenda,SIGNAL(showIncidencePopupSignal(Incidence *)), |
435 | mAllDayAgendaPopup,SLOT(showIncidencePopup(Incidence *))); | 431 | mAllDayAgendaPopup,SLOT(showIncidencePopup(Incidence *))); |
436 | 432 | ||
437 | // Create agenda frame | 433 | // Create agenda frame |
438 | QGridLayout *agendaLayout = new QGridLayout(agendaFrame,4,3); | 434 | QGridLayout *agendaLayout = new QGridLayout(agendaFrame,4,3); |
439 | // QHBox *agendaFrame = new QHBox(splitterAgenda); | 435 | // QHBox *agendaFrame = new QHBox(splitterAgenda); |
440 | 436 | ||
441 | // create event indicator bars | 437 | // create event indicator bars |
442 | mEventIndicatorTop = new EventIndicator(EventIndicator::Top,agendaFrame); | 438 | mEventIndicatorTop = new EventIndicator(EventIndicator::Top,agendaFrame); |
443 | #ifndef DESKTOP_VERSION | 439 | #ifndef DESKTOP_VERSION |
444 | // FIX | 440 | // FIX |
445 | mEventIndicatorTop->setPaintWidget( mSplitterAgenda ); | 441 | mEventIndicatorTop->setPaintWidget( mSplitterAgenda ); |
446 | #endif | 442 | #endif |
447 | mDayLabelsFrame = new QHBox(agendaFrame); | 443 | mDayLabelsFrame = new QHBox(agendaFrame); |
448 | //topLayout->addWidget(mDayLabelsFrame); | 444 | //topLayout->addWidget(mDayLabelsFrame); |
449 | mDayLabels = new QFrame (mDayLabelsFrame); | 445 | mDayLabels = new QFrame (mDayLabelsFrame); |
450 | mLayoutDayLabels = new QHBoxLayout(mDayLabels); | 446 | mLayoutDayLabels = new QHBoxLayout(mDayLabels); |
451 | agendaLayout->addMultiCellWidget(mDayLabelsFrame ,0,0,0,2); | 447 | agendaLayout->addMultiCellWidget(mDayLabelsFrame ,0,0,0,2); |
452 | agendaLayout->addWidget(mEventIndicatorTop,1,1); | 448 | agendaLayout->addWidget(mEventIndicatorTop,1,1); |
453 | 449 | ||
454 | mEventIndicatorBottom = new EventIndicator(EventIndicator::Bottom, | 450 | mEventIndicatorBottom = new EventIndicator(EventIndicator::Bottom, |
455 | agendaFrame); | 451 | agendaFrame); |
456 | agendaLayout->addWidget(mEventIndicatorBottom,3,1); | 452 | agendaLayout->addWidget(mEventIndicatorBottom,3,1); |
457 | QWidget *dummyAgendaRight = new QWidget(agendaFrame); | 453 | QWidget *dummyAgendaRight = new QWidget(agendaFrame); |
458 | agendaLayout->addWidget(dummyAgendaRight,1,2); | 454 | agendaLayout->addWidget(dummyAgendaRight,1,2); |
459 | 455 | ||
460 | // Create time labels | 456 | // Create time labels |
461 | mTimeLabels = new TimeLabels(24,agendaFrame); | 457 | mTimeLabels = new TimeLabels(24,agendaFrame); |
462 | agendaLayout->addWidget(mTimeLabels,2,0); | 458 | agendaLayout->addWidget(mTimeLabels,2,0); |
463 | connect(mTimeLabels,SIGNAL( scaleChanged()), | 459 | connect(mTimeLabels,SIGNAL( scaleChanged()), |
464 | this,SLOT(updateConfig())); | 460 | this,SLOT(updateConfig())); |
465 | 461 | ||
466 | // Create agenda | 462 | // Create agenda |
467 | mAgenda = new KOAgenda(1,96,KOPrefs::instance()->mHourSize,agendaFrame); | 463 | mAgenda = new KOAgenda(1,96,KOPrefs::instance()->mHourSize,agendaFrame); |
468 | agendaLayout->addMultiCellWidget(mAgenda,2,2,1,2); | 464 | agendaLayout->addMultiCellWidget(mAgenda,2,2,1,2); |
469 | agendaLayout->setColStretch(1,1); | 465 | agendaLayout->setColStretch(1,1); |
470 | mAgenda->setFocusPolicy(NoFocus); | 466 | mAgenda->setFocusPolicy(NoFocus); |
471 | // Create event context menu for agenda | 467 | // Create event context menu for agenda |
472 | mAgendaPopup = eventPopup(); | 468 | mAgendaPopup = eventPopup(); |
473 | 469 | ||
474 | mAgendaPopup->addAdditionalItem(QIconSet(SmallIcon("bell")), | 470 | mAgendaPopup->addAdditionalItem(QIconSet(SmallIcon("bell")), |
475 | i18n("Toggle Alarm"),mAgenda, | 471 | i18n("Toggle Alarm"),mAgenda, |
476 | SLOT(popupAlarm()),true); | 472 | SLOT(popupAlarm()),true); |
477 | 473 | ||
478 | 474 | ||
479 | connect(mAgenda,SIGNAL(showIncidencePopupSignal(Incidence *)), | 475 | connect(mAgenda,SIGNAL(showIncidencePopupSignal(Incidence *)), |
480 | mAgendaPopup,SLOT(showIncidencePopup(Incidence *))); | 476 | mAgendaPopup,SLOT(showIncidencePopup(Incidence *))); |
481 | 477 | ||
482 | // make connections between dependent widgets | 478 | // make connections between dependent widgets |
483 | mTimeLabels->setAgenda(mAgenda); | 479 | mTimeLabels->setAgenda(mAgenda); |
484 | 480 | ||
485 | // Update widgets to reflect user preferences | 481 | // Update widgets to reflect user preferences |
486 | // updateConfig(); | 482 | // updateConfig(); |
487 | 483 | ||
488 | // createDayLabels(); | 484 | // createDayLabels(); |
489 | 485 | ||
490 | // these blank widgets make the All Day Event box line up with the agenda | 486 | // these blank widgets make the All Day Event box line up with the agenda |
491 | dummyAllDayRight->setFixedWidth(mAgenda->verticalScrollBar()->width()); | 487 | dummyAllDayRight->setFixedWidth(mAgenda->verticalScrollBar()->width()); |
492 | dummyAgendaRight->setFixedWidth(mAgenda->verticalScrollBar()->width()); | 488 | dummyAgendaRight->setFixedWidth(mAgenda->verticalScrollBar()->width()); |
493 | mDummyAllDayLeft->setFixedWidth(mTimeLabels->width()); | 489 | mDummyAllDayLeft->setFixedWidth(mTimeLabels->width()); |
494 | 490 | ||
495 | // Scrolling | 491 | // Scrolling |
496 | connect(mAgenda->verticalScrollBar(),SIGNAL(valueChanged(int)), | 492 | connect(mAgenda->verticalScrollBar(),SIGNAL(valueChanged(int)), |
497 | mTimeLabels, SLOT(positionChanged())); | 493 | mTimeLabels, SLOT(positionChanged())); |
498 | connect(mTimeLabels->verticalScrollBar(),SIGNAL(valueChanged(int)), | 494 | connect(mTimeLabels->verticalScrollBar(),SIGNAL(valueChanged(int)), |
499 | SLOT(setContentsPos(int))); | 495 | SLOT(setContentsPos(int))); |
500 | 496 | ||
501 | connect(mAgenda,SIGNAL(showDateView( int, int)),SLOT(slotShowDateView( int, int ))); | 497 | connect(mAgenda,SIGNAL(showDateView( int, int)),SLOT(slotShowDateView( int, int ))); |
502 | connect(mAllDayAgenda,SIGNAL(showDateView( int, int )), SLOT(slotShowDateView( int, int ) )); | 498 | connect(mAllDayAgenda,SIGNAL(showDateView( int, int )), SLOT(slotShowDateView( int, int ) )); |
503 | 499 | ||
504 | // Create/Show/Edit/Delete Event | 500 | // Create/Show/Edit/Delete Event |
505 | connect(mAgenda,SIGNAL(newEventSignal(int,int)), | 501 | connect(mAgenda,SIGNAL(newEventSignal(int,int)), |
506 | SLOT(newEvent(int,int))); | 502 | SLOT(newEvent(int,int))); |
507 | connect(mAgenda,SIGNAL(newTodoSignal(int,int)), | 503 | connect(mAgenda,SIGNAL(newTodoSignal(int,int)), |
508 | SLOT(newTodo(int,int))); | 504 | SLOT(newTodo(int,int))); |
509 | connect(mAgenda,SIGNAL(newEventSignal(int,int,int,int)), | 505 | connect(mAgenda,SIGNAL(newEventSignal(int,int,int,int)), |
510 | SLOT(newEvent(int,int,int,int))); | 506 | SLOT(newEvent(int,int,int,int))); |
511 | connect(mAllDayAgenda,SIGNAL(newEventSignal(int,int)), | 507 | connect(mAllDayAgenda,SIGNAL(newEventSignal(int,int)), |
512 | SLOT(newEventAllDay(int,int))); | 508 | SLOT(newEventAllDay(int,int))); |
513 | connect(mAllDayAgenda,SIGNAL(newTodoSignal(int,int)), | 509 | connect(mAllDayAgenda,SIGNAL(newTodoSignal(int,int)), |
514 | SLOT(newTodoAllDay(int,int))); | 510 | SLOT(newTodoAllDay(int,int))); |
515 | connect(mAllDayAgenda,SIGNAL(newEventSignal(int,int,int,int)), | 511 | connect(mAllDayAgenda,SIGNAL(newEventSignal(int,int,int,int)), |
516 | SLOT(newEventAllDay(int,int))); | 512 | SLOT(newEventAllDay(int,int))); |
517 | connect(mAgenda,SIGNAL(newTimeSpanSignal(int,int,int,int)), | 513 | connect(mAgenda,SIGNAL(newTimeSpanSignal(int,int,int,int)), |
518 | SLOT(newTimeSpanSelected(int,int,int,int))); | 514 | SLOT(newTimeSpanSelected(int,int,int,int))); |
519 | connect(mAllDayAgenda,SIGNAL(newTimeSpanSignal(int,int,int,int)), | 515 | connect(mAllDayAgenda,SIGNAL(newTimeSpanSignal(int,int,int,int)), |
520 | SLOT(newTimeSpanSelectedAllDay(int,int,int,int))); | 516 | SLOT(newTimeSpanSelectedAllDay(int,int,int,int))); |
521 | connect(mAgenda,SIGNAL(newStartSelectSignal()),SLOT(updateView())); | 517 | connect(mAgenda,SIGNAL(newStartSelectSignal()),SLOT(updateView())); |
522 | connect(mAllDayAgenda,SIGNAL(newStartSelectSignal()),SLOT(updateView())); | 518 | connect(mAllDayAgenda,SIGNAL(newStartSelectSignal()),SLOT(updateView())); |
523 | 519 | ||
524 | connect(mAgenda,SIGNAL(editIncidenceSignal(Incidence *)), | 520 | connect(mAgenda,SIGNAL(editIncidenceSignal(Incidence *)), |
525 | SIGNAL(editIncidenceSignal(Incidence *))); | 521 | SIGNAL(editIncidenceSignal(Incidence *))); |
526 | connect(mAllDayAgenda,SIGNAL(editIncidenceSignal(Incidence *)), | 522 | connect(mAllDayAgenda,SIGNAL(editIncidenceSignal(Incidence *)), |
527 | SIGNAL(editIncidenceSignal(Incidence *))); | 523 | SIGNAL(editIncidenceSignal(Incidence *))); |
528 | connect(mAgenda,SIGNAL(showIncidenceSignal(Incidence *)), | 524 | connect(mAgenda,SIGNAL(showIncidenceSignal(Incidence *)), |
529 | SIGNAL(showIncidenceSignal(Incidence *))); | 525 | SIGNAL(showIncidenceSignal(Incidence *))); |
530 | connect(mAllDayAgenda,SIGNAL(showIncidenceSignal(Incidence *)), | 526 | connect(mAllDayAgenda,SIGNAL(showIncidenceSignal(Incidence *)), |
531 | SIGNAL(showIncidenceSignal(Incidence *))); | 527 | SIGNAL(showIncidenceSignal(Incidence *))); |
532 | connect(mAgenda,SIGNAL(deleteIncidenceSignal(Incidence *)), | 528 | connect(mAgenda,SIGNAL(deleteIncidenceSignal(Incidence *)), |
533 | SIGNAL(deleteIncidenceSignal(Incidence *))); | 529 | SIGNAL(deleteIncidenceSignal(Incidence *))); |
534 | connect(mAllDayAgenda,SIGNAL(deleteIncidenceSignal(Incidence *)), | 530 | connect(mAllDayAgenda,SIGNAL(deleteIncidenceSignal(Incidence *)), |
535 | SIGNAL(deleteIncidenceSignal(Incidence *))); | 531 | SIGNAL(deleteIncidenceSignal(Incidence *))); |
536 | 532 | ||
537 | connect(mAgenda,SIGNAL(itemModified(KOAgendaItem *, int )), | 533 | connect(mAgenda,SIGNAL(itemModified(KOAgendaItem *, int )), |
538 | SLOT(updateEventDates(KOAgendaItem *, int ))); | 534 | SLOT(updateEventDates(KOAgendaItem *, int ))); |
539 | connect(mAllDayAgenda,SIGNAL(itemModified(KOAgendaItem *, int )), | 535 | connect(mAllDayAgenda,SIGNAL(itemModified(KOAgendaItem *, int )), |
540 | SLOT(updateEventDates(KOAgendaItem *, int))); | 536 | SLOT(updateEventDates(KOAgendaItem *, int))); |
541 | 537 | ||
542 | // event indicator update | 538 | // event indicator update |
543 | connect(mAgenda,SIGNAL(lowerYChanged(int)), | 539 | connect(mAgenda,SIGNAL(lowerYChanged(int)), |
544 | SLOT(updateEventIndicatorTop(int))); | 540 | SLOT(updateEventIndicatorTop(int))); |
545 | connect(mAgenda,SIGNAL(upperYChanged(int)), | 541 | connect(mAgenda,SIGNAL(upperYChanged(int)), |
546 | SLOT(updateEventIndicatorBottom(int))); | 542 | SLOT(updateEventIndicatorBottom(int))); |
547 | // drag signals | 543 | // drag signals |
548 | /* | 544 | /* |
549 | connect(mAgenda,SIGNAL(startDragSignal(Event *)), | 545 | connect(mAgenda,SIGNAL(startDragSignal(Event *)), |
550 | SLOT(startDrag(Event *))); | 546 | SLOT(startDrag(Event *))); |
551 | connect(mAllDayAgenda,SIGNAL(startDragSignal(Event *)), | 547 | connect(mAllDayAgenda,SIGNAL(startDragSignal(Event *)), |
552 | SLOT(startDrag(Event *))); | 548 | SLOT(startDrag(Event *))); |
553 | */ | 549 | */ |
554 | // synchronize selections | 550 | // synchronize selections |
555 | connect( mAgenda, SIGNAL( incidenceSelected( Incidence * ) ), | 551 | connect( mAgenda, SIGNAL( incidenceSelected( Incidence * ) ), |
556 | mAllDayAgenda, SLOT( deselectItem() ) ); | 552 | mAllDayAgenda, SLOT( deselectItem() ) ); |
557 | connect( mAllDayAgenda, SIGNAL( incidenceSelected( Incidence * ) ), | 553 | connect( mAllDayAgenda, SIGNAL( incidenceSelected( Incidence * ) ), |
558 | mAgenda, SLOT( deselectItem() ) ); | 554 | mAgenda, SLOT( deselectItem() ) ); |
559 | connect( mAgenda, SIGNAL( incidenceSelected( Incidence * ) ), | 555 | connect( mAgenda, SIGNAL( incidenceSelected( Incidence * ) ), |
560 | SIGNAL( incidenceSelected( Incidence * ) ) ); | 556 | SIGNAL( incidenceSelected( Incidence * ) ) ); |
561 | connect( mAllDayAgenda, SIGNAL( incidenceSelected( Incidence * ) ), | 557 | connect( mAllDayAgenda, SIGNAL( incidenceSelected( Incidence * ) ), |
562 | SIGNAL( incidenceSelected( Incidence * ) ) ); | 558 | SIGNAL( incidenceSelected( Incidence * ) ) ); |
563 | connect( mAgenda, SIGNAL( resizedSignal() ), | 559 | connect( mAgenda, SIGNAL( resizedSignal() ), |
564 | SLOT( updateConfig( ) ) ); | 560 | SLOT( updateConfig( ) ) ); |
565 | connect( mAgenda, SIGNAL( addToCalSignal(Incidence *, Incidence *) ), | 561 | connect( mAgenda, SIGNAL( addToCalSignal(Incidence *, Incidence *) ), |
566 | SLOT( addToCalSlot(Incidence *, Incidence * ) ) ); | 562 | SLOT( addToCalSlot(Incidence *, Incidence * ) ) ); |
567 | connect( mAllDayAgenda, SIGNAL( addToCalSignal(Incidence * ,Incidence *) ), | 563 | connect( mAllDayAgenda, SIGNAL( addToCalSignal(Incidence * ,Incidence *) ), |
568 | SLOT( addToCalSlot(Incidence * , Incidence *) ) ); | 564 | SLOT( addToCalSlot(Incidence * , Incidence *) ) ); |
569 | // connect( mAgenda, SIGNAL( cloneIncidenceSignal(Incidence *) ), SIGNAL( cloneIncidenceSignal(Incidence *) ) ); | 565 | // connect( mAgenda, SIGNAL( cloneIncidenceSignal(Incidence *) ), SIGNAL( cloneIncidenceSignal(Incidence *) ) ); |
570 | //connect( mAllDayAgenda, SIGNAL( cloneIncidenceSignal(Incidence *) ), SIGNAL( cloneIncidenceSignal(Incidence *) ) ); | 566 | //connect( mAllDayAgenda, SIGNAL( cloneIncidenceSignal(Incidence *) ), SIGNAL( cloneIncidenceSignal(Incidence *) ) ); |
571 | 567 | ||
572 | 568 | ||
573 | } | 569 | } |
574 | 570 | ||
575 | void KOAgendaView::toggleAllDay() | 571 | void KOAgendaView::toggleAllDay() |
576 | { | 572 | { |
577 | if ( mSplitterAgenda->firstHandle() ) | 573 | if ( mSplitterAgenda->firstHandle() ) |
578 | mSplitterAgenda->firstHandle()->toggle(); | 574 | mSplitterAgenda->firstHandle()->toggle(); |
579 | } | 575 | } |
580 | void KOAgendaView::addToCalSlot(Incidence * inc, Incidence * incOld ) | 576 | void KOAgendaView::addToCalSlot(Incidence * inc, Incidence * incOld ) |
581 | { | 577 | { |
582 | calendar()->addIncidence( inc ); | 578 | calendar()->addIncidence( inc ); |
583 | 579 | ||
584 | if ( incOld ) { | 580 | if ( incOld ) { |
585 | if ( incOld->type() == "Todo" ) | 581 | if ( incOld->type() == "Todo" ) |
586 | emit todoMoved((Todo*)incOld, KOGlobals::EVENTEDITED ); | 582 | emit todoMoved((Todo*)incOld, KOGlobals::EVENTEDITED ); |
587 | else | 583 | else |
588 | emit incidenceChanged(incOld, KOGlobals::EVENTEDITED); | 584 | emit incidenceChanged(incOld, KOGlobals::EVENTEDITED); |
589 | } | 585 | } |
590 | 586 | ||
591 | } | 587 | } |
592 | 588 | ||
593 | KOAgendaView::~KOAgendaView() | 589 | KOAgendaView::~KOAgendaView() |
594 | { | 590 | { |
595 | delete mAgendaPopup; | 591 | delete mAgendaPopup; |
596 | delete mAllDayAgendaPopup; | 592 | delete mAllDayAgendaPopup; |
597 | delete KOAgendaItem::paintPix(); | 593 | delete KOAgendaItem::paintPix(); |
598 | delete KOAgendaItem::paintPixSel(); | 594 | delete KOAgendaItem::paintPixSel(); |
599 | } | 595 | } |
600 | void KOAgendaView::resizeEvent( QResizeEvent* e ) | 596 | void KOAgendaView::resizeEvent( QResizeEvent* e ) |
601 | { | 597 | { |
602 | //qDebug("KOAgendaView::resizeEvent( QResizeEvent* e ) %d ", e->size().width()); | 598 | //qDebug("KOAgendaView::resizeEvent( QResizeEvent* e ) %d ", e->size().width()); |
603 | bool uc = false; | 599 | bool uc = false; |
604 | int ow = e->oldSize().width(); | 600 | int ow = e->oldSize().width(); |
605 | int oh = e->oldSize().height(); | 601 | int oh = e->oldSize().height(); |
606 | int w = e->size().width(); | 602 | int w = e->size().width(); |
607 | int h = e->size().height(); | 603 | int h = e->size().height(); |
608 | if ( (ow > oh && w< h ) || (ow < oh && w > h ) ) { | 604 | if ( (ow > oh && w< h ) || (ow < oh && w > h ) ) { |
609 | if ( ! mBlockUpdating && !globalFlagBlockStartup && !globalFlagBlockAgenda ) | 605 | if ( ! mBlockUpdating && !globalFlagBlockStartup && !globalFlagBlockAgenda ) |
610 | uc = true; | 606 | uc = true; |
611 | //qDebug("view changed %d %d %d %d ", ow, oh , w , h); | 607 | //qDebug("view changed %d %d %d %d ", ow, oh , w , h); |
612 | } | 608 | } |
613 | mUpcomingWidth = e->size().width() ; | 609 | mUpcomingWidth = e->size().width() ; |
614 | if ( mBlockUpdating || uc ) { | 610 | if ( mBlockUpdating || uc ) { |
615 | mBlockUpdating = false; | 611 | mBlockUpdating = false; |
616 | //mAgenda->setMinimumSize(800 , 600 ); | 612 | //mAgenda->setMinimumSize(800 , 600 ); |
617 | //qDebug("mAgenda->resize+++++++++++++++ "); | 613 | //qDebug("mAgenda->resize+++++++++++++++ "); |
618 | updateConfig(); | 614 | updateConfig(); |
619 | //qDebug("KOAgendaView::Updating now possible "); | 615 | //qDebug("KOAgendaView::Updating now possible "); |
620 | } else | 616 | } else |
621 | createDayLabels(); | 617 | createDayLabels(); |
622 | //qDebug("resizeEvent end "); | 618 | //qDebug("resizeEvent end "); |
623 | 619 | ||
624 | } | 620 | } |
625 | void KOAgendaView::slotDaylabelClicked( int num ) | 621 | void KOAgendaView::slotDaylabelClicked( int num ) |
626 | { | 622 | { |
627 | 623 | ||
628 | QDate firstDate = mSelectedDates.first(); | 624 | QDate firstDate = mSelectedDates.first(); |
629 | if ( num == -1 ) | 625 | if ( num == -1 ) |
630 | emit showDateView( 6, firstDate ); | 626 | emit showDateView( 6, firstDate ); |
631 | else if (num >= 0 ) { | 627 | else if (num >= 0 ) { |
632 | if ( mSelectedDates.count() == 1) | 628 | if ( mSelectedDates.count() == 1) |
633 | emit showDateView( 9, firstDate.addDays( num ) ); | 629 | emit showDateView( 9, firstDate.addDays( num ) ); |
634 | else | 630 | else |
635 | emit showDateView( 3, firstDate.addDays( num ) ); | 631 | emit showDateView( 3, firstDate.addDays( num ) ); |
636 | } | 632 | } |
637 | else | 633 | else |
638 | showDateView( 10, firstDate.addDays(1) ); | 634 | showDateView( 10, firstDate.addDays(1) ); |
639 | } | 635 | } |
640 | 636 | ||
641 | KOAgendaButton* KOAgendaView::getNewDaylabel() | 637 | KOAgendaButton* KOAgendaView::getNewDaylabel() |
642 | { | 638 | { |
643 | 639 | ||
644 | KOAgendaButton * dayLabel = new KOAgendaButton(mDayLabels); | 640 | KOAgendaButton * dayLabel = new KOAgendaButton(mDayLabels); |
645 | connect( dayLabel, SIGNAL( numClicked(int) ), this, SLOT ( slotDaylabelClicked(int) ) ); | 641 | connect( dayLabel, SIGNAL( numClicked(int) ), this, SLOT ( slotDaylabelClicked(int) ) ); |
646 | mDayLabelsList.append( dayLabel ); | 642 | mDayLabelsList.append( dayLabel ); |
647 | mLayoutDayLabels->addWidget(dayLabel); | 643 | mLayoutDayLabels->addWidget(dayLabel); |
648 | return dayLabel ; | 644 | return dayLabel ; |
649 | } | 645 | } |
650 | 646 | ||
651 | void KOAgendaView::createDayLabels() | 647 | void KOAgendaView::createDayLabels() |
652 | { | 648 | { |
653 | 649 | ||
654 | if ( mBlockUpdating || globalFlagBlockLabel == 1) { | 650 | if ( mBlockUpdating || globalFlagBlockLabel == 1) { |
655 | // qDebug(" KOAgendaView::createDayLabels() blocked "); | 651 | // qDebug(" KOAgendaView::createDayLabels() blocked "); |
656 | return; | 652 | return; |
657 | 653 | ||
658 | } | 654 | } |
659 | int newHight; | 655 | int newHight; |
660 | 656 | ||
661 | // ### Before deleting and recreating we could check if mSelectedDates changed... | 657 | // ### Before deleting and recreating we could check if mSelectedDates changed... |
662 | // It would remove some flickering and gain speed (since this is called by | 658 | // It would remove some flickering and gain speed (since this is called by |
663 | // each updateView() call) | 659 | // each updateView() call) |
664 | 660 | ||
665 | int maxWid = mUpcomingWidth - mTimeLabels->width()- mAgenda->verticalScrollBar()->width() - 2; | 661 | int maxWid = mUpcomingWidth - mTimeLabels->width()- mAgenda->verticalScrollBar()->width() - 2; |
666 | mDayLabelsFrame->setMaximumWidth( mUpcomingWidth ); | 662 | mDayLabelsFrame->setMaximumWidth( mUpcomingWidth ); |
667 | if ( maxWid < 0 ) | 663 | if ( maxWid < 0 ) |
668 | maxWid = 20; | 664 | maxWid = 20; |
669 | 665 | ||
670 | QFont dlf = KOPrefs::instance()->mTimeLabelsFont; | 666 | QFont dlf = KOPrefs::instance()->mTimeLabelsFont; |
671 | QFontMetrics fm ( dlf ); | 667 | QFontMetrics fm ( dlf ); |
672 | int selCount = mSelectedDates.count(); | 668 | int selCount = mSelectedDates.count(); |
673 | QString dayTest = "Mon 20"; | 669 | QString dayTest = "Mon 20"; |
674 | //QString dayTest = "Mon 20"; | 670 | //QString dayTest = "Mon 20"; |
675 | int wid = fm.width( dayTest ); | 671 | int wid = fm.width( dayTest ); |
676 | //maxWid -= ( selCount * 3 ); //working for QLabels | 672 | //maxWid -= ( selCount * 3 ); //working for QLabels |
677 | maxWid -= ( selCount * 3 ); //working for QPushButton | 673 | maxWid -= ( selCount * 3 ); //working for QPushButton |
678 | if ( maxWid < 0 ) | 674 | if ( maxWid < 0 ) |
679 | maxWid = 20; | 675 | maxWid = 20; |
680 | int needWid = wid * selCount; | 676 | int needWid = wid * selCount; |
681 | //qDebug("++++++++Needed : %d MaxWidth: %d", needWid, maxWid ); | 677 | //qDebug("++++++++Needed : %d MaxWidth: %d", needWid, maxWid ); |
682 | //if ( needWid > maxWid ) | 678 | //if ( needWid > maxWid ) |
683 | // qDebug("DAYLABELS TOOOOOOO BIG "); | 679 | // qDebug("DAYLABELS TOOOOOOO BIG "); |
684 | while ( needWid > maxWid ) { | 680 | while ( needWid > maxWid ) { |
685 | dayTest = dayTest.left( dayTest.length() - 1 ); | 681 | dayTest = dayTest.left( dayTest.length() - 1 ); |
686 | wid = fm.width( dayTest ); | 682 | wid = fm.width( dayTest ); |
687 | needWid = wid * selCount; | 683 | needWid = wid * selCount; |
688 | } | 684 | } |
689 | int maxLen = dayTest.length(); | 685 | int maxLen = dayTest.length(); |
690 | int fontPoint = dlf.pointSize(); | 686 | int fontPoint = dlf.pointSize(); |
691 | if ( maxLen < 2 ) { | 687 | if ( maxLen < 2 ) { |
692 | int fontPoint = dlf.pointSize(); | 688 | int fontPoint = dlf.pointSize(); |
693 | while ( fontPoint > 4 ) { | 689 | while ( fontPoint > 4 ) { |
694 | --fontPoint; | 690 | --fontPoint; |
695 | dlf.setPointSize( fontPoint ); | 691 | dlf.setPointSize( fontPoint ); |
696 | QFontMetrics f( dlf ); | 692 | QFontMetrics f( dlf ); |
697 | wid = f.width( "30" ); | 693 | wid = f.width( "30" ); |
698 | needWid = wid * selCount; | 694 | needWid = wid * selCount; |
699 | if ( needWid < maxWid ) | 695 | if ( needWid < maxWid ) |
700 | break; | 696 | break; |
701 | } | 697 | } |
702 | maxLen = 2; | 698 | maxLen = 2; |
703 | } | 699 | } |
704 | //qDebug("Max len %d ", dayTest.length() ); | 700 | //qDebug("Max len %d ", dayTest.length() ); |
705 | 701 | ||
706 | QFontMetrics tempF( dlf ); | 702 | QFontMetrics tempF( dlf ); |
707 | newHight = tempF.height(); | 703 | newHight = tempF.height(); |
708 | mDayLabels->setFont( dlf ); | 704 | mDayLabels->setFont( dlf ); |
709 | // mLayoutDayLabels = new QHBoxLayout(mDayLabels);; | 705 | // mLayoutDayLabels = new QHBoxLayout(mDayLabels);; |
710 | // mLayoutDayLabels->addSpacing(mTimeLabels->width()); | 706 | // mLayoutDayLabels->addSpacing(mTimeLabels->width()); |
711 | //mLayoutDayLabels->addSpacing( 2 ); | 707 | //mLayoutDayLabels->addSpacing( 2 ); |
712 | // QFont lFont = dlf; | 708 | // QFont lFont = dlf; |
713 | bool appendLabels = false; | 709 | bool appendLabels = false; |
714 | KOAgendaButton *dayLabel; | 710 | KOAgendaButton *dayLabel; |
715 | dayLabel = mDayLabelsList.first(); | 711 | dayLabel = mDayLabelsList.first(); |
716 | if ( !dayLabel ) { | 712 | if ( !dayLabel ) { |
717 | appendLabels = true; | 713 | appendLabels = true; |
718 | dayLabel = getNewDaylabel(); | 714 | dayLabel = getNewDaylabel(); |
719 | } | 715 | } |
720 | dayLabel->setFixedWidth( mTimeLabels->width()+mAgenda->frameWidth() ); | 716 | dayLabel->setFixedWidth( mTimeLabels->width()+mAgenda->frameWidth() ); |
721 | dayLabel->setFont( dlf ); | 717 | dayLabel->setFont( dlf ); |
722 | dayLabel->setNum( -1 ); | 718 | dayLabel->setNum( -1 ); |
723 | //dayLabel->setAlignment(QLabel::AlignHCenter); | 719 | //dayLabel->setAlignment(QLabel::AlignHCenter); |
724 | dayLabel->setText( KOGlobals::self()->calendarSystem()->monthName( mSelectedDates.first(), true ) ); | 720 | dayLabel->setText( KOGlobals::self()->calendarSystem()->monthName( mSelectedDates.first(), true ) ); |
725 | dayLabel->show(); | 721 | dayLabel->show(); |
726 | DateList::ConstIterator dit; | 722 | DateList::ConstIterator dit; |
727 | bool oneday = (mSelectedDates.first() == mSelectedDates.last() ); | 723 | bool oneday = (mSelectedDates.first() == mSelectedDates.last() ); |
728 | int counter = -1; | 724 | int counter = -1; |
729 | for( dit = mSelectedDates.begin(); dit != mSelectedDates.end(); ++dit ) { | 725 | for( dit = mSelectedDates.begin(); dit != mSelectedDates.end(); ++dit ) { |
730 | ++counter; | 726 | ++counter; |
731 | QDate date = *dit; | 727 | QDate date = *dit; |
732 | // QBoxLayout *dayLayout = new QVBoxLayout(mLayoutDayLabels); | 728 | // QBoxLayout *dayLayout = new QVBoxLayout(mLayoutDayLabels); |
733 | if ( ! appendLabels ) { | 729 | if ( ! appendLabels ) { |
734 | dayLabel = mDayLabelsList.next(); | 730 | dayLabel = mDayLabelsList.next(); |
735 | if ( !dayLabel ) | 731 | if ( !dayLabel ) |
736 | appendLabels = true; | 732 | appendLabels = true; |
737 | } | 733 | } |
738 | if ( appendLabels ) { | 734 | if ( appendLabels ) { |
739 | dayLabel = getNewDaylabel(); | 735 | dayLabel = getNewDaylabel(); |
740 | } | 736 | } |
741 | dayLabel->setMinimumWidth( 1 ); | 737 | dayLabel->setMinimumWidth( 1 ); |
742 | dayLabel->setMaximumWidth( 10240 ); | 738 | dayLabel->setMaximumWidth( 10240 ); |
743 | dayLabel->setFont( dlf ); | 739 | dayLabel->setFont( dlf ); |
744 | dayLabel->show(); | 740 | dayLabel->show(); |
745 | dayLabel->setAutoRepeat( false ); | 741 | dayLabel->setAutoRepeat( false ); |
746 | dayLabel->setNum( counter ); | 742 | dayLabel->setNum( counter ); |
747 | QString str; | 743 | QString str; |
748 | int dW = KOGlobals::self()->calendarSystem()->dayOfWeek(date); | 744 | int dW = KOGlobals::self()->calendarSystem()->dayOfWeek(date); |
749 | QString dayName = KOGlobals::self()->calendarSystem()->weekDayName( dW, true ); | 745 | QString dayName = KOGlobals::self()->calendarSystem()->weekDayName( dW, true ); |
750 | switch ( maxLen ) { | 746 | switch ( maxLen ) { |
751 | case 2: | 747 | case 2: |
752 | str = QString::number( date.day() ); | 748 | str = QString::number( date.day() ); |
753 | break; | 749 | break; |
754 | 750 | ||
755 | case 3: | 751 | case 3: |
756 | str = dayName.left( 1 ) +QString::number( date.day()); | 752 | str = dayName.left( 1 ) +QString::number( date.day()); |
757 | 753 | ||
758 | break; | 754 | break; |
759 | case 4: | 755 | case 4: |
760 | str = dayName.left( 1 ) + " " +QString::number( date.day()); | 756 | str = dayName.left( 1 ) + " " +QString::number( date.day()); |
761 | 757 | ||
762 | break; | 758 | break; |
763 | case 5: | 759 | case 5: |
764 | str = dayName.left( 2 ) + " " +QString::number( date.day()); | 760 | str = dayName.left( 2 ) + " " +QString::number( date.day()); |
765 | 761 | ||
766 | break; | 762 | break; |
767 | case 6: | 763 | case 6: |
768 | str = dayName.left( 3 ) + " " +QString::number( date.day()); | 764 | str = dayName.left( 3 ) + " " +QString::number( date.day()); |
769 | break; | 765 | break; |
770 | 766 | ||
771 | default: | 767 | default: |
772 | break; | 768 | break; |
773 | } | 769 | } |
774 | if ( oneday ) { | 770 | if ( oneday ) { |
775 | QString addString; | 771 | QString addString; |
776 | if ( mSelectedDates.first() == QDateTime::currentDateTime().date() ) | 772 | if ( mSelectedDates.first() == QDateTime::currentDateTime().date() ) |
777 | addString = i18n("Today"); | 773 | addString = i18n("Today"); |
778 | else if ( mSelectedDates.first() == QDateTime::currentDateTime().date().addDays(1) ) | 774 | else if ( mSelectedDates.first() == QDateTime::currentDateTime().date().addDays(1) ) |
779 | addString = i18n("Tomorrow"); | 775 | addString = i18n("Tomorrow"); |
780 | else if ( mSelectedDates.first() == QDateTime::currentDateTime().date().addDays(-1) ) | 776 | else if ( mSelectedDates.first() == QDateTime::currentDateTime().date().addDays(-1) ) |
781 | addString = i18n("Yesterday"); | 777 | addString = i18n("Yesterday"); |
782 | else if ( mSelectedDates.first() == QDateTime::currentDateTime().date().addDays(-2) ) | 778 | else if ( mSelectedDates.first() == QDateTime::currentDateTime().date().addDays(-2) ) |
783 | addString = i18n("Day before yesterday"); | 779 | addString = i18n("Day before yesterday"); |
784 | else if ( mSelectedDates.first() == QDateTime::currentDateTime().date().addDays(2) ) | 780 | else if ( mSelectedDates.first() == QDateTime::currentDateTime().date().addDays(2) ) |
785 | addString = i18n("Day after tomorrow"); | 781 | addString = i18n("Day after tomorrow"); |
786 | if ( !addString.isEmpty() ) { | 782 | if ( !addString.isEmpty() ) { |
787 | str = addString+", " + str; | 783 | str = addString+", " + str; |
788 | } else { | 784 | } else { |
789 | str = KGlobal::locale()->formatDate( date, KOPrefs::instance()->mShortDateInViewer); | 785 | str = KGlobal::locale()->formatDate( date, KOPrefs::instance()->mShortDateInViewer); |
790 | } | 786 | } |
791 | } | 787 | } |
792 | dayLabel->setText(str); | 788 | dayLabel->setText(str); |
793 | //dayLabel->setAlignment(QLabel::AlignHCenter); | 789 | //dayLabel->setAlignment(QLabel::AlignHCenter); |
794 | if (date == QDate::currentDate()) { | 790 | if (date == QDate::currentDate()) { |
795 | QFont bFont = dlf; | 791 | QFont bFont = dlf; |
796 | bFont.setBold( true ); | 792 | bFont.setBold( true ); |
797 | dayLabel->setFont(bFont); | 793 | dayLabel->setFont(bFont); |
798 | } | 794 | } |
799 | //dayLayout->addWidget(dayLabel); | 795 | //dayLayout->addWidget(dayLabel); |
800 | 796 | ||
801 | #ifndef KORG_NOPLUGINS | 797 | #ifndef KORG_NOPLUGINS |
802 | CalendarDecoration::List cds = KOCore::self()->calendarDecorations(); | 798 | CalendarDecoration::List cds = KOCore::self()->calendarDecorations(); |
803 | CalendarDecoration *it; | 799 | CalendarDecoration *it; |
804 | for(it = cds.first(); it; it = cds.next()) { | 800 | for(it = cds.first(); it; it = cds.next()) { |
805 | QString text = it->shortText( date ); | 801 | QString text = it->shortText( date ); |
806 | if ( !text.isEmpty() ) { | 802 | if ( !text.isEmpty() ) { |
807 | QLabel *label = new QLabel(text,mDayLabels); | 803 | QLabel *label = new QLabel(text,mDayLabels); |
808 | label->setAlignment(AlignCenter); | 804 | label->setAlignment(AlignCenter); |
809 | dayLayout->addWidget(label); | 805 | dayLayout->addWidget(label); |
810 | } | 806 | } |
811 | } | 807 | } |
812 | 808 | ||
813 | for(it = cds.first(); it; it = cds.next()) { | 809 | for(it = cds.first(); it; it = cds.next()) { |
814 | QWidget *wid = it->smallWidget(mDayLabels,date); | 810 | QWidget *wid = it->smallWidget(mDayLabels,date); |
815 | if ( wid ) { | 811 | if ( wid ) { |
816 | // wid->setHeight(20); | 812 | // wid->setHeight(20); |
817 | dayLayout->addWidget(wid); | 813 | dayLayout->addWidget(wid); |
818 | } | 814 | } |
819 | } | 815 | } |
820 | #endif | 816 | #endif |
821 | } | 817 | } |
822 | if ( ! appendLabels ) { | 818 | if ( ! appendLabels ) { |
823 | dayLabel = mDayLabelsList.next(); | 819 | dayLabel = mDayLabelsList.next(); |
824 | if ( !dayLabel ) | 820 | if ( !dayLabel ) |
825 | appendLabels = true; | 821 | appendLabels = true; |
826 | } | 822 | } |
827 | if ( appendLabels ) { | 823 | if ( appendLabels ) { |
828 | dayLabel = getNewDaylabel(); | 824 | dayLabel = getNewDaylabel(); |
829 | } | 825 | } |
830 | //dayLabel->hide();//test only | 826 | //dayLabel->hide();//test only |
831 | qDebug("fremwidd %d ", mAgenda->frameWidth()); | 827 | qDebug("fremwidd %d ", mAgenda->frameWidth()); |
832 | int offset = (mAgenda->width() - mAgenda->verticalScrollBar()->width()- (mAgenda->frameWidth()*2) ) % mSelectedDates.count() ; | 828 | int offset = (mAgenda->width() - mAgenda->verticalScrollBar()->width()- (mAgenda->frameWidth()*2) ) % mSelectedDates.count() ; |
833 | if ( offset < 0 ) offset = 0; | 829 | if ( offset < 0 ) offset = 0; |
834 | //qDebug("mLayoutDayLabels->addSpacing %d ", mAgenda->verticalScrollBar()->width()+offset+2 ); | 830 | //qDebug("mLayoutDayLabels->addSpacing %d ", mAgenda->verticalScrollBar()->width()+offset+2 ); |
835 | dayLabel->setText(">");//QString::number ( mSelectedDates.first().month() ) ); | 831 | dayLabel->setText(">");//QString::number ( mSelectedDates.first().month() ) ); |
836 | dayLabel->setFont( dlf ); | 832 | dayLabel->setFont( dlf ); |
837 | dayLabel->setAutoRepeat( true ); | 833 | dayLabel->setAutoRepeat( true ); |
838 | dayLabel->show(); | 834 | dayLabel->show(); |
839 | dayLabel->setNum( -2 ); | 835 | dayLabel->setNum( -2 ); |
840 | dayLabel->setFixedWidth( mAgenda->verticalScrollBar()->width()+ offset ); | 836 | dayLabel->setFixedWidth( mAgenda->verticalScrollBar()->width()+ offset ); |
841 | //qDebug("setToFixed %d ", mAgenda->verticalScrollBar()->width()+ offset+2); | 837 | //qDebug("setToFixed %d ", mAgenda->verticalScrollBar()->width()+ offset+2); |
842 | //mLayoutDayLabels->addSpacing(mAgenda->verticalScrollBar()->width()+ offset+2); | 838 | //mLayoutDayLabels->addSpacing(mAgenda->verticalScrollBar()->width()+ offset+2); |
843 | if ( !appendLabels ) { | 839 | if ( !appendLabels ) { |
844 | dayLabel = mDayLabelsList.next(); | 840 | dayLabel = mDayLabelsList.next(); |
845 | while ( dayLabel ) { | 841 | while ( dayLabel ) { |
846 | //qDebug("!dayLabel %d",dayLabel ); | 842 | //qDebug("!dayLabel %d",dayLabel ); |
847 | dayLabel->hide(); | 843 | dayLabel->hide(); |
848 | dayLabel = mDayLabelsList.next(); | 844 | dayLabel = mDayLabelsList.next(); |
849 | } | 845 | } |
850 | } | 846 | } |
851 | 847 | ||
852 | mDayLabelsFrame->setFixedHeight( newHight + 4 ); | 848 | mDayLabelsFrame->setFixedHeight( newHight + 4 ); |
853 | } | 849 | } |
854 | 850 | ||
855 | int KOAgendaView::maxDatesHint() | 851 | int KOAgendaView::maxDatesHint() |
856 | { | 852 | { |
857 | // Not sure about the max number of events, so return 0 for now. | 853 | // Not sure about the max number of events, so return 0 for now. |
858 | return 0; | 854 | return 0; |
859 | } | 855 | } |
860 | 856 | ||
861 | int KOAgendaView::currentDateCount() | 857 | int KOAgendaView::currentDateCount() |
862 | { | 858 | { |
863 | return mSelectedDates.count(); | 859 | return mSelectedDates.count(); |
864 | } | 860 | } |
865 | 861 | ||
866 | QPtrList<Incidence> KOAgendaView::selectedIncidences() | 862 | QPtrList<Incidence> KOAgendaView::selectedIncidences() |
867 | { | 863 | { |
868 | QPtrList<Incidence> selected; | 864 | QPtrList<Incidence> selected; |
869 | Incidence *incidence; | 865 | Incidence *incidence; |
870 | 866 | ||
871 | incidence = mAgenda->selectedIncidence(); | 867 | incidence = mAgenda->selectedIncidence(); |
872 | if (incidence) selected.append(incidence); | 868 | if (incidence) selected.append(incidence); |
873 | 869 | ||
874 | incidence = mAllDayAgenda->selectedIncidence(); | 870 | incidence = mAllDayAgenda->selectedIncidence(); |
875 | if (incidence) selected.append(incidence); | 871 | if (incidence) selected.append(incidence); |
876 | 872 | ||
877 | return selected; | 873 | return selected; |
878 | } | 874 | } |
879 | 875 | ||
880 | DateList KOAgendaView::selectedDates() | 876 | DateList KOAgendaView::selectedDates() |
881 | { | 877 | { |
882 | DateList selected; | 878 | DateList selected; |
883 | QDate qd; | 879 | QDate qd; |
884 | 880 | ||
885 | qd = mAgenda->selectedIncidenceDate(); | 881 | qd = mAgenda->selectedIncidenceDate(); |
886 | if (qd.isValid()) selected.append(qd); | 882 | if (qd.isValid()) selected.append(qd); |
887 | 883 | ||
888 | qd = mAllDayAgenda->selectedIncidenceDate(); | 884 | qd = mAllDayAgenda->selectedIncidenceDate(); |
889 | if (qd.isValid()) selected.append(qd); | 885 | if (qd.isValid()) selected.append(qd); |
890 | 886 | ||
891 | return selected; | 887 | return selected; |
892 | } | 888 | } |
893 | 889 | ||
894 | 890 | ||
895 | void KOAgendaView::updateView() | 891 | void KOAgendaView::updateView() |
896 | { | 892 | { |
897 | if ( mBlockUpdating ) | 893 | if ( mBlockUpdating ) |
898 | return; | 894 | return; |
899 | // kdDebug() << "KOAgendaView::updateView()" << endl; | 895 | // kdDebug() << "KOAgendaView::updateView()" << endl; |
900 | fillAgenda(); | 896 | fillAgenda(); |
901 | 897 | ||
902 | } | 898 | } |
903 | 899 | ||
904 | 900 | ||
905 | /* | 901 | /* |
906 | Update configuration settings for the agenda view. This method is not | 902 | Update configuration settings for the agenda view. This method is not |
907 | complete. | 903 | complete. |
908 | */ | 904 | */ |
909 | void KOAgendaView::updateConfig() | 905 | void KOAgendaView::updateConfig() |
910 | { | 906 | { |
911 | if ( mBlockUpdating ) | 907 | if ( mBlockUpdating ) |
912 | return; | 908 | return; |
913 | if ( mAgenda->height() > 96 * KOPrefs::instance()->mHourSize ) { | 909 | if ( mAgenda->height() > 96 * KOPrefs::instance()->mHourSize ) { |
914 | int old = KOPrefs::instance()->mHourSize; | 910 | int old = KOPrefs::instance()->mHourSize; |
915 | KOPrefs::instance()->mHourSize = mAgenda->height()/96 +1; | 911 | KOPrefs::instance()->mHourSize = mAgenda->height()/96 +1; |
916 | qDebug("KOPrefs::instance()->mHourSize adjusted %d to %d ", old,KOPrefs::instance()->mHourSize ); | 912 | qDebug("KOPrefs::instance()->mHourSize adjusted %d to %d ", old,KOPrefs::instance()->mHourSize ); |
917 | } | 913 | } |
918 | 914 | ||
919 | 915 | ||
920 | // update config for children | 916 | // update config for children |
921 | mTimeLabels->updateConfig(); | 917 | mTimeLabels->updateConfig(); |
922 | mAgenda->storePosition(); | 918 | mAgenda->storePosition(); |
923 | mAgenda->updateConfig(); | 919 | mAgenda->updateConfig(); |
924 | mAllDayAgenda->updateConfig(); | 920 | mAllDayAgenda->updateConfig(); |
925 | // widget synchronization | 921 | // widget synchronization |
926 | //TODO: find a better way, maybe signal/slot | 922 | //TODO: find a better way, maybe signal/slot |
927 | mTimeLabels->positionChanged(); | 923 | mTimeLabels->positionChanged(); |
928 | 924 | ||
929 | // for some reason, this needs to be called explicitly | 925 | // for some reason, this needs to be called explicitly |
930 | mTimeLabels->repaint(); | 926 | mTimeLabels->repaint(); |
931 | 927 | ||
932 | mDummyAllDayLeft->setFixedWidth(mTimeLabels->width()); | 928 | mDummyAllDayLeft->setFixedWidth(mTimeLabels->width()); |
933 | 929 | ||
934 | // ToolTips displaying summary of events | 930 | // ToolTips displaying summary of events |
935 | KOAgendaItem::toolTipGroup()->setEnabled(KOPrefs::instance() | 931 | KOAgendaItem::toolTipGroup()->setEnabled(KOPrefs::instance() |
936 | ->mEnableToolTips); | 932 | ->mEnableToolTips); |
937 | 933 | ||
938 | //setHolidayMasks(); | 934 | //setHolidayMasks(); |
939 | 935 | ||
940 | //createDayLabels(); called by via updateView(); | 936 | //createDayLabels(); called by via updateView(); |
941 | mEventIndicatorTop->setXOffset(mTimeLabels->width() + mAgenda->frameWidth()); | 937 | mEventIndicatorTop->setXOffset(mTimeLabels->width() + mAgenda->frameWidth()); |
942 | updateView(); | 938 | updateView(); |
943 | mAgenda->restorePosition(); | 939 | mAgenda->restorePosition(); |
944 | } | 940 | } |
945 | 941 | ||
946 | 942 | ||
947 | void KOAgendaView::updateEventDates(KOAgendaItem *item, int type) | 943 | void KOAgendaView::updateEventDates(KOAgendaItem *item, int type) |
948 | { | 944 | { |
949 | // kdDebug() << "KOAgendaView::updateEventDates(): " << item->text() << endl; | 945 | // kdDebug() << "KOAgendaView::updateEventDates(): " << item->text() << endl; |
950 | //qDebug("KOAgendaView::updateEventDates "); | 946 | //qDebug("KOAgendaView::updateEventDates "); |
951 | QDateTime startDt,endDt; | 947 | QDateTime startDt,endDt; |
952 | QDate startDate; | 948 | QDate startDate; |
953 | int lenInSecs; | 949 | int lenInSecs; |
954 | // if ( type == KOAgenda::RESIZETOP ) | 950 | // if ( type == KOAgenda::RESIZETOP ) |
955 | // qDebug("RESIZETOP "); | 951 | // qDebug("RESIZETOP "); |
956 | // if ( type == KOAgenda::RESIZEBOTTOM ) | 952 | // if ( type == KOAgenda::RESIZEBOTTOM ) |
957 | // qDebug("RESIZEBOTTOM "); | 953 | // qDebug("RESIZEBOTTOM "); |
958 | // if ( type == KOAgenda::MOVE ) | 954 | // if ( type == KOAgenda::MOVE ) |
959 | // qDebug("MOVE "); | 955 | // qDebug("MOVE "); |
960 | if ( item->incidence()->type() == "Event" ) { | 956 | if ( item->incidence()->type() == "Event" ) { |
961 | startDt =item->incidence()->dtStart(); | 957 | startDt =item->incidence()->dtStart(); |
962 | endDt = item->incidence()->dtEnd(); | 958 | endDt = item->incidence()->dtEnd(); |
963 | lenInSecs = startDt.secsTo( endDt ); | 959 | lenInSecs = startDt.secsTo( endDt ); |
964 | } | 960 | } |
965 | 961 | ||
966 | // emit incidenceItemChanged( item->incidence(), KOGlobals::EVENTEDITED ); | 962 | // emit incidenceItemChanged( item->incidence(), KOGlobals::EVENTEDITED ); |
967 | 963 | ||
968 | if ( item->incidence()->type()=="Todo" && item->mLastMoveXPos > 0 ) { | 964 | if ( item->incidence()->type()=="Todo" && item->mLastMoveXPos > 0 ) { |
969 | startDate = mSelectedDates[item->mLastMoveXPos]; | 965 | startDate = mSelectedDates[item->mLastMoveXPos]; |
970 | } else { | 966 | } else { |
971 | if (item->cellX() < 0) { | 967 | if (item->cellX() < 0) { |
972 | startDate = (mSelectedDates.first()).addDays(item->cellX()); | 968 | startDate = (mSelectedDates.first()).addDays(item->cellX()); |
973 | } else { | 969 | } else { |
974 | startDate = mSelectedDates[item->cellX()]; | 970 | startDate = mSelectedDates[item->cellX()]; |
975 | } | 971 | } |
976 | } | 972 | } |
977 | startDt.setDate(startDate); | 973 | startDt.setDate(startDate); |
978 | 974 | ||
979 | if (item->incidence()->doesFloat()) { | 975 | if (item->incidence()->doesFloat()) { |
980 | endDt.setDate(startDate.addDays(item->cellWidth() - 1)); | 976 | endDt.setDate(startDate.addDays(item->cellWidth() - 1)); |
981 | } else { | 977 | } else { |
982 | if ( type == KOAgenda::RESIZETOP || type == KOAgenda::MOVE ) | 978 | if ( type == KOAgenda::RESIZETOP || type == KOAgenda::MOVE ) |
983 | startDt.setTime(mAgenda->gyToTime(item->cellYTop())); | 979 | startDt.setTime(mAgenda->gyToTime(item->cellYTop())); |
984 | if ( item->incidence()->type() == "Event" ) { | 980 | if ( item->incidence()->type() == "Event" ) { |
985 | if ( type == KOAgenda::MOVE ) { | 981 | if ( type == KOAgenda::MOVE ) { |
986 | endDt = startDt.addSecs(lenInSecs); | 982 | endDt = startDt.addSecs(lenInSecs); |
987 | 983 | ||
diff --git a/korganizer/kodaymatrix.cpp b/korganizer/kodaymatrix.cpp index c55f7d7..5b5703f 100644 --- a/korganizer/kodaymatrix.cpp +++ b/korganizer/kodaymatrix.cpp | |||
@@ -112,857 +112,859 @@ KODayMatrix::KODayMatrix(QWidget *parent, Calendar* calendar, QDate date, const | |||
112 | { | 112 | { |
113 | mRedrawNeeded = true; | 113 | mRedrawNeeded = true; |
114 | mKODaymatrixWhatsThis = new KODaymatrixWhatsThis(this); | 114 | mKODaymatrixWhatsThis = new KODaymatrixWhatsThis(this); |
115 | mPendingUpdateBeforeRepaint = false; | 115 | mPendingUpdateBeforeRepaint = false; |
116 | mouseDown = false; | 116 | mouseDown = false; |
117 | // initialize dynamic arrays | 117 | // initialize dynamic arrays |
118 | bDays.resize ( NUMDAYS ); | 118 | bDays.resize ( NUMDAYS ); |
119 | hDays.resize ( NUMDAYS );; | 119 | hDays.resize ( NUMDAYS );; |
120 | eDays.resize ( NUMDAYS );; | 120 | eDays.resize ( NUMDAYS );; |
121 | days = new QDate[NUMDAYS]; | 121 | days = new QDate[NUMDAYS]; |
122 | daylbls = new QString[NUMDAYS]; | 122 | daylbls = new QString[NUMDAYS]; |
123 | //events = new int[NUMDAYS]; | 123 | //events = new int[NUMDAYS]; |
124 | mToolTip = new DynamicTip(this); | 124 | mToolTip = new DynamicTip(this); |
125 | 125 | ||
126 | // set default values used for drawing the matrix | 126 | // set default values used for drawing the matrix |
127 | mDefaultBackColor = palette().active().base(); | 127 | mDefaultBackColor = palette().active().base(); |
128 | mDefaultTextColor = palette().active().foreground(); | 128 | mDefaultTextColor = palette().active().foreground(); |
129 | mDefaultTextColorShaded = getShadedColor(mDefaultTextColor); | 129 | mDefaultTextColorShaded = getShadedColor(mDefaultTextColor); |
130 | mHolidayColorShaded = getShadedColor(KOPrefs::instance()->mHolidayColor); | 130 | mHolidayColorShaded = getShadedColor(KOPrefs::instance()->mHolidayColor); |
131 | mSelectedDaysColor = QColor("white"); | 131 | mSelectedDaysColor = QColor("white"); |
132 | mTodayMarginWidth = 2; | 132 | mTodayMarginWidth = 2; |
133 | mSelEnd = mSelStart = NOSELECTION; | 133 | mSelEnd = mSelStart = NOSELECTION; |
134 | 134 | ||
135 | setAcceptDrops(true); | 135 | setAcceptDrops(true); |
136 | //setFont( QFont("Arial", 10) ); | 136 | //setFont( QFont("Arial", 10) ); |
137 | 137 | ||
138 | mUpdateTimer = new QTimer( this ); | 138 | mUpdateTimer = new QTimer( this ); |
139 | connect (mUpdateTimer ,SIGNAL(timeout()), this, SLOT ( updateViewTimed() )); | 139 | connect (mUpdateTimer ,SIGNAL(timeout()), this, SLOT ( updateViewTimed() )); |
140 | mRepaintTimer = new QTimer( this ); | 140 | mRepaintTimer = new QTimer( this ); |
141 | connect (mRepaintTimer ,SIGNAL(timeout()), this, SLOT ( repaintViewTimed() )); | 141 | connect (mRepaintTimer ,SIGNAL(timeout()), this, SLOT ( repaintViewTimed() )); |
142 | mDayChanged = false; | 142 | mDayChanged = false; |
143 | updateView(); | 143 | updateView(); |
144 | } | 144 | } |
145 | QString KODayMatrix::getWhatsThisText( QPoint p ) | 145 | QString KODayMatrix::getWhatsThisText( QPoint p ) |
146 | { | 146 | { |
147 | 147 | ||
148 | int tmp = getDayIndexFrom(p.x(), p.y()); | 148 | int tmp = getDayIndexFrom(p.x(), p.y()); |
149 | if ( tmp < 0 || tmp > NUMDAYS-1 || !mCalendar ) | 149 | if ( tmp < 0 || tmp > NUMDAYS-1 || !mCalendar ) |
150 | return QString(); | 150 | return QString(); |
151 | QDate mDate = days[tmp]; | 151 | QDate mDate = days[tmp]; |
152 | QPtrList<Event> eventlist = mCalendar->events(mDate); | 152 | QPtrList<Event> eventlist = mCalendar->events(mDate); |
153 | Event *event; | 153 | Event *event; |
154 | QStringList mToolTip; | 154 | QStringList mToolTip; |
155 | for(event=eventlist.first();event != 0;event=eventlist.next()) { | 155 | for(event=eventlist.first();event != 0;event=eventlist.next()) { |
156 | QString mToolTipText; | 156 | QString mToolTipText; |
157 | QString text; | 157 | QString text; |
158 | int multiday = 0;// 1 = start, 2 = midddle, 3 = end day | 158 | int multiday = 0;// 1 = start, 2 = midddle, 3 = end day |
159 | if (event->isMultiDay()) { | 159 | if (event->isMultiDay()) { |
160 | QString prefix = "<->";multiday = 2; | 160 | QString prefix = "<->";multiday = 2; |
161 | QString time; | 161 | QString time; |
162 | if ( event->doesRecur() ) { | 162 | if ( event->doesRecur() ) { |
163 | if ( event->recursOn( mDate) ) { | 163 | if ( event->recursOn( mDate) ) { |
164 | prefix ="->" ;multiday = 1; | 164 | prefix ="->" ;multiday = 1; |
165 | } | 165 | } |
166 | else { | 166 | else { |
167 | int days = event->dtStart().date().daysTo ( event->dtEnd().date() ); | 167 | int days = event->dtStart().date().daysTo ( event->dtEnd().date() ); |
168 | if ( event->recursOn( mDate.addDays( -days)) ) { | 168 | if ( event->recursOn( mDate.addDays( -days)) ) { |
169 | prefix ="<-" ;multiday = 3; | 169 | prefix ="<-" ;multiday = 3; |
170 | } | 170 | } |
171 | } | 171 | } |
172 | } else { | 172 | } else { |
173 | if (mDate == event->dtStart().date()) { | 173 | if (mDate == event->dtStart().date()) { |
174 | prefix ="->" ;multiday = 1; | 174 | prefix ="->" ;multiday = 1; |
175 | } else if (mDate == event->dtEnd().date()) { | 175 | } else if (mDate == event->dtEnd().date()) { |
176 | prefix ="<-" ;multiday = 3; | 176 | prefix ="<-" ;multiday = 3; |
177 | } | 177 | } |
178 | } | 178 | } |
179 | if ( !event->doesFloat() ) { | 179 | if ( !event->doesFloat() ) { |
180 | if ( mDate == event->dtStart().date () ) | 180 | if ( mDate == event->dtStart().date () ) |
181 | time = KGlobal::locale()->formatTime(event->dtStart().time())+" "; | 181 | time = KGlobal::locale()->formatTime(event->dtStart().time())+" "; |
182 | else if ( mDate == event->dtEnd().date () ) | 182 | else if ( mDate == event->dtEnd().date () ) |
183 | time = KGlobal::locale()->formatTime(event->dtEnd().time())+" "; | 183 | time = KGlobal::locale()->formatTime(event->dtEnd().time())+" "; |
184 | 184 | ||
185 | } | 185 | } |
186 | text = time + event->summary(); | 186 | text = time + event->summary(); |
187 | mToolTipText += prefix + text; | 187 | mToolTipText += prefix + text; |
188 | } else { | 188 | } else { |
189 | if (event->doesFloat()) { | 189 | if (event->doesFloat()) { |
190 | text = event->summary(); | 190 | text = event->summary(); |
191 | mToolTipText += text; | 191 | mToolTipText += text; |
192 | } | 192 | } |
193 | else { | 193 | else { |
194 | text = KGlobal::locale()->formatTime(event->dtStart().time()); | 194 | text = KGlobal::locale()->formatTime(event->dtStart().time()); |
195 | text += " " + event->summary(); | 195 | text += " " + event->summary(); |
196 | mToolTipText += KGlobal::locale()->formatTime(event->dtStart().time()) +"-"+KGlobal::locale()->formatTime(event->dtEnd().time())+" " + event->summary(); | 196 | mToolTipText += KGlobal::locale()->formatTime(event->dtStart().time()) +"-"+KGlobal::locale()->formatTime(event->dtEnd().time())+" " + event->summary(); |
197 | } | 197 | } |
198 | } | 198 | } |
199 | if ( !event->location().isEmpty() ) | 199 | if ( !event->location().isEmpty() ) |
200 | mToolTipText += " (" + event->location() + ")"; | 200 | mToolTipText += " (" + event->location() + ")"; |
201 | #if QT_VERSION >= 0x030000 | 201 | #if QT_VERSION >= 0x030000 |
202 | mToolTipText.replace( '<' , "<" ); | 202 | mToolTipText.replace( '<' , "<" ); |
203 | mToolTipText.replace( '>' , ">" ); | 203 | mToolTipText.replace( '>' , ">" ); |
204 | #else | 204 | #else |
205 | if ( mToolTipText.find ('<') >= 0 ) { | 205 | if ( mToolTipText.find ('<') >= 0 ) { |
206 | mToolTipText.replace( QRegExp("<") , "<" ); | 206 | mToolTipText.replace( QRegExp("<") , "<" ); |
207 | } | 207 | } |
208 | if ( mToolTipText.find ('>') >= 0 ) { | 208 | if ( mToolTipText.find ('>') >= 0 ) { |
209 | mToolTipText.replace( QRegExp(">") , ">" ); | 209 | mToolTipText.replace( QRegExp(">") , ">" ); |
210 | } | 210 | } |
211 | #endif | 211 | #endif |
212 | //qDebug("TTT: %s ", mToolTipText.latin1()); | 212 | //qDebug("TTT: %s ", mToolTipText.latin1()); |
213 | mToolTip.append( mToolTipText ); | 213 | mToolTip.append( mToolTipText ); |
214 | } | 214 | } |
215 | mToolTip.sort(); | 215 | mToolTip.sort(); |
216 | return "<b>"+KGlobal::locale()->formatDate(days[tmp]) + "</b><br>" + mToolTip.join("<br>"); | 216 | return "<b>"+KGlobal::locale()->formatDate(days[tmp]) + "</b><br>" + mToolTip.join("<br>"); |
217 | } | 217 | } |
218 | void KODayMatrix::setCalendar( Calendar *cal ) | 218 | void KODayMatrix::setCalendar( Calendar *cal ) |
219 | { | 219 | { |
220 | mCalendar = cal; | 220 | mCalendar = cal; |
221 | 221 | ||
222 | setAcceptDrops( mCalendar ); | 222 | setAcceptDrops( mCalendar ); |
223 | 223 | ||
224 | updateEvents(); | 224 | updateEvents(); |
225 | } | 225 | } |
226 | 226 | ||
227 | QColor KODayMatrix::getShadedColor(QColor color) | 227 | QColor KODayMatrix::getShadedColor(QColor color) |
228 | { | 228 | { |
229 | QColor shaded; | 229 | QColor shaded; |
230 | int h=0; | 230 | int h=0; |
231 | int s=0; | 231 | int s=0; |
232 | int v=0; | 232 | int v=0; |
233 | color.hsv(&h,&s,&v); | 233 | color.hsv(&h,&s,&v); |
234 | s = s/4; | 234 | s = s/4; |
235 | v = 192+v/4; | 235 | v = 192+v/4; |
236 | shaded.setHsv(h,s,v); | 236 | shaded.setHsv(h,s,v); |
237 | 237 | ||
238 | return shaded; | 238 | return shaded; |
239 | } | 239 | } |
240 | 240 | ||
241 | KODayMatrix::~KODayMatrix() | 241 | KODayMatrix::~KODayMatrix() |
242 | { | 242 | { |
243 | // delete mKODaymatrixWhatsThis; | 243 | // delete mKODaymatrixWhatsThis; |
244 | delete [] days; | 244 | delete [] days; |
245 | delete [] daylbls; | 245 | delete [] daylbls; |
246 | //delete [] events; | 246 | //delete [] events; |
247 | delete mToolTip; | 247 | delete mToolTip; |
248 | } | 248 | } |
249 | 249 | ||
250 | /* | 250 | /* |
251 | void KODayMatrix::setStartDate(QDate start) | 251 | void KODayMatrix::setStartDate(QDate start) |
252 | { | 252 | { |
253 | updateView(start); | 253 | updateView(start); |
254 | } | 254 | } |
255 | */ | 255 | */ |
256 | 256 | ||
257 | void KODayMatrix::addSelectedDaysTo(DateList& selDays) | 257 | void KODayMatrix::addSelectedDaysTo(DateList& selDays) |
258 | { | 258 | { |
259 | 259 | ||
260 | if (mSelStart == NOSELECTION) { | 260 | if (mSelStart == NOSELECTION) { |
261 | return; | 261 | return; |
262 | } | 262 | } |
263 | 263 | ||
264 | //cope with selection being out of matrix limits at top (< 0) | 264 | //cope with selection being out of matrix limits at top (< 0) |
265 | int i0 = mSelStart; | 265 | int i0 = mSelStart; |
266 | if (i0 < 0) { | 266 | if (i0 < 0) { |
267 | for (int i = i0; i < 0; i++) { | 267 | for (int i = i0; i < 0; i++) { |
268 | selDays.append(days[0].addDays(i)); | 268 | selDays.append(days[0].addDays(i)); |
269 | } | 269 | } |
270 | i0 = 0; | 270 | i0 = 0; |
271 | } | 271 | } |
272 | 272 | ||
273 | //cope with selection being out of matrix limits at bottom (> NUMDAYS-1) | 273 | //cope with selection being out of matrix limits at bottom (> NUMDAYS-1) |
274 | if (mSelEnd > NUMDAYS-1) { | 274 | if (mSelEnd > NUMDAYS-1) { |
275 | for (int i = i0; i <= NUMDAYS-1; i++) { | 275 | for (int i = i0; i <= NUMDAYS-1; i++) { |
276 | selDays.append(days[i]); | 276 | selDays.append(days[i]); |
277 | } | 277 | } |
278 | for (int i = NUMDAYS; i < mSelEnd; i++) { | 278 | for (int i = NUMDAYS; i < mSelEnd; i++) { |
279 | selDays.append(days[0].addDays(i)); | 279 | selDays.append(days[0].addDays(i)); |
280 | } | 280 | } |
281 | 281 | ||
282 | // apply normal routine to selection being entirely within matrix limits | 282 | // apply normal routine to selection being entirely within matrix limits |
283 | } else { | 283 | } else { |
284 | for (int i = i0; i <= mSelEnd; i++) { | 284 | for (int i = i0; i <= mSelEnd; i++) { |
285 | selDays.append(days[i]); | 285 | selDays.append(days[i]); |
286 | } | 286 | } |
287 | } | 287 | } |
288 | } | 288 | } |
289 | 289 | ||
290 | bool KODayMatrix::setSelectedDaysFrom(const QDate& start, const QDate& end) | 290 | bool KODayMatrix::setSelectedDaysFrom(const QDate& start, const QDate& end) |
291 | { | 291 | { |
292 | mRedrawNeeded = true; | 292 | mRedrawNeeded = true; |
293 | bool noSel = (mSelEnd == NOSELECTION && mSelStart == NOSELECTION ); | 293 | bool noSel = (mSelEnd == NOSELECTION && mSelStart == NOSELECTION ); |
294 | mSelStart = startdate.daysTo(start); | 294 | mSelStart = startdate.daysTo(start); |
295 | if ( mSelStart < 0 ) | 295 | if ( mSelStart < 0 ) |
296 | mSelStart = 0; | 296 | mSelStart = 0; |
297 | mSelEnd = startdate.daysTo(end); | 297 | mSelEnd = startdate.daysTo(end); |
298 | if ( mSelEnd > NUMDAYS-1 ) | 298 | if ( mSelEnd > NUMDAYS-1 ) |
299 | mSelEnd = NUMDAYS-1; | 299 | mSelEnd = NUMDAYS-1; |
300 | if ( mSelEnd < 0 || mSelStart > NUMDAYS-1 ) { | 300 | if ( mSelEnd < 0 || mSelStart > NUMDAYS-1 ) { |
301 | clearSelection(); | 301 | clearSelection(); |
302 | if ( noSel ) | 302 | if ( noSel ) |
303 | return false; | 303 | return false; |
304 | } | 304 | } |
305 | 305 | ||
306 | return true; | 306 | return true; |
307 | } | 307 | } |
308 | void KODayMatrix::clearSelection() | 308 | void KODayMatrix::clearSelection() |
309 | { | 309 | { |
310 | mSelEnd = mSelStart = NOSELECTION; | 310 | mSelEnd = mSelStart = NOSELECTION; |
311 | } | 311 | } |
312 | 312 | ||
313 | 313 | ||
314 | void KODayMatrix::recalculateToday() | 314 | void KODayMatrix::recalculateToday() |
315 | { | 315 | { |
316 | today = -1; | 316 | today = -1; |
317 | for (int i=0; i<NUMDAYS; i++) { | 317 | for (int i=0; i<NUMDAYS; i++) { |
318 | //events[i] = 0; | 318 | //events[i] = 0; |
319 | days[i] = startdate.addDays(i); | 319 | days[i] = startdate.addDays(i); |
320 | daylbls[i] = QString::number( KOGlobals::self()->calendarSystem()->day( days[i] )); | 320 | daylbls[i] = QString::number( KOGlobals::self()->calendarSystem()->day( days[i] )); |
321 | 321 | ||
322 | // if today is in the currently displayed month, hilight today | 322 | // if today is in the currently displayed month, hilight today |
323 | if (days[i].year() == QDate::currentDate().year() && | 323 | if (days[i].year() == QDate::currentDate().year() && |
324 | days[i].month() == QDate::currentDate().month() && | 324 | days[i].month() == QDate::currentDate().month() && |
325 | days[i].day() == QDate::currentDate().day()) { | 325 | days[i].day() == QDate::currentDate().day()) { |
326 | today = i; | 326 | today = i; |
327 | } | 327 | } |
328 | } | 328 | } |
329 | // qDebug(QString("Today is visible at %1.").arg(today)); | 329 | // qDebug(QString("Today is visible at %1.").arg(today)); |
330 | } | 330 | } |
331 | 331 | ||
332 | void KODayMatrix::updateView() | 332 | void KODayMatrix::updateView() |
333 | { | 333 | { |
334 | updateView(startdate); | 334 | updateView(startdate); |
335 | } | 335 | } |
336 | void KODayMatrix::repaintViewTimed() | 336 | void KODayMatrix::repaintViewTimed() |
337 | { | 337 | { |
338 | mRepaintTimer->stop(); | 338 | mRepaintTimer->stop(); |
339 | repaint(false); | 339 | repaint(false); |
340 | } | 340 | } |
341 | void KODayMatrix::updateViewTimed() | 341 | void KODayMatrix::updateViewTimed() |
342 | { | 342 | { |
343 | mUpdateTimer->stop(); | 343 | mUpdateTimer->stop(); |
344 | if ( !mCalendar ) { | 344 | if ( !mCalendar ) { |
345 | qDebug("NOT CAL "); | 345 | qDebug("NOT CAL "); |
346 | return; | 346 | return; |
347 | } | 347 | } |
348 | //qDebug("KODayMatrix::updateViewTimed "); | 348 | //qDebug("KODayMatrix::updateViewTimed "); |
349 | for(int i = 0; i < NUMDAYS; i++) { | 349 | for(int i = 0; i < NUMDAYS; i++) { |
350 | // if events are set for the day then remember to draw it bold | 350 | // if events are set for the day then remember to draw it bold |
351 | QPtrList<Event> eventlist = mCalendar->events(days[i]); | 351 | QPtrList<Event> eventlist = mCalendar->events(days[i]); |
352 | Event *event; | 352 | Event *event; |
353 | int numEvents = eventlist.count(); | 353 | int numEvents = eventlist.count(); |
354 | QString holiStr = ""; | 354 | QString holiStr = ""; |
355 | bDays.clearBit(i); | 355 | bDays.clearBit(i); |
356 | hDays.clearBit(i); | 356 | hDays.clearBit(i); |
357 | eDays.clearBit(i); | 357 | eDays.clearBit(i); |
358 | for(event=eventlist.first();event != 0;event=eventlist.next()) { | 358 | for(event=eventlist.first();event != 0;event=eventlist.next()) { |
359 | ushort recurType = event->recurrence()->doesRecur(); | 359 | ushort recurType = event->recurrence()->doesRecur(); |
360 | if ((recurType == Recurrence::rDaily && !KOPrefs::instance()->mDailyRecur) || | 360 | if ((recurType == Recurrence::rDaily && !KOPrefs::instance()->mDailyRecur) || |
361 | (recurType == Recurrence::rWeekly && !KOPrefs::instance()->mWeeklyRecur)) { | 361 | (recurType == Recurrence::rWeekly && !KOPrefs::instance()->mWeeklyRecur)) { |
362 | numEvents--; | 362 | numEvents--; |
363 | } | 363 | } |
364 | if ( event->isHoliday()) { | 364 | if ( event->isHoliday()) { |
365 | hDays.setBit(i); | 365 | hDays.setBit(i); |
366 | if ( !holiStr.isEmpty() ) | 366 | if ( !holiStr.isEmpty() ) |
367 | holiStr += "\n"; | 367 | holiStr += "\n"; |
368 | holiStr += event->summary(); | 368 | holiStr += event->summary(); |
369 | if ( !event->location().isEmpty() ) | 369 | if ( !event->location().isEmpty() ) |
370 | holiStr += " (" + event->location() + ")"; | 370 | holiStr += " (" + event->location() + ")"; |
371 | } | 371 | } |
372 | if ( event->isBirthday()) { | 372 | if ( event->isBirthday()) { |
373 | if ( !holiStr.isEmpty() ) | 373 | if ( !holiStr.isEmpty() ) |
374 | holiStr += "\n"; | 374 | holiStr += "\n"; |
375 | holiStr += i18n("Birthday") + ": "+event->summary(); | 375 | holiStr += i18n("Birthday") + ": "+event->summary(); |
376 | if ( !event->location().isEmpty() ) | 376 | if ( !event->location().isEmpty() ) |
377 | holiStr += " (" + event->location() + ")"; | 377 | holiStr += " (" + event->location() + ")"; |
378 | bDays.setBit(i); | 378 | bDays.setBit(i); |
379 | } | 379 | } |
380 | } | 380 | } |
381 | if ( numEvents ) | 381 | if ( numEvents ) |
382 | eDays.setBit(i); | 382 | eDays.setBit(i); |
383 | //if it is a holy day then draw it red. Sundays are consider holidays, too | 383 | //if it is a holy day then draw it red. Sundays are consider holidays, too |
384 | if ( (KOGlobals::self()->calendarSystem()->dayOfWeek(days[i]) == KOGlobals::self()->calendarSystem()->weekDayOfPray()) || | 384 | if ( (KOGlobals::self()->calendarSystem()->dayOfWeek(days[i]) == KOGlobals::self()->calendarSystem()->weekDayOfPray()) || |
385 | !holiStr.isEmpty()) { | 385 | !holiStr.isEmpty()) { |
386 | mHolidays[i] = holiStr; | 386 | mHolidays[i] = holiStr; |
387 | } else { | 387 | } else { |
388 | mHolidays[i] = QString::null; | 388 | mHolidays[i] = QString::null; |
389 | } | 389 | } |
390 | } | 390 | } |
391 | mRedrawNeeded = true; | 391 | mRedrawNeeded = true; |
392 | if ( ! mPendingUpdateBeforeRepaint ) | 392 | if ( ! mPendingUpdateBeforeRepaint ) |
393 | repaint(false); | 393 | repaint(false); |
394 | } | 394 | } |
395 | void KODayMatrix::updateView(QDate actdate) | 395 | void KODayMatrix::updateView(QDate actdate) |
396 | { | 396 | { |
397 | 397 | ||
398 | if ( ! actdate.isValid() ) { | 398 | if ( ! actdate.isValid() ) { |
399 | //qDebug("date not valid "); | 399 | //qDebug("date not valid "); |
400 | return; | 400 | return; |
401 | } | 401 | } |
402 | mDayChanged = false; | 402 | mDayChanged = false; |
403 | //flag to indicate if the starting day of the matrix has changed by this call | 403 | //flag to indicate if the starting day of the matrix has changed by this call |
404 | //mDayChanged = false; | 404 | //mDayChanged = false; |
405 | // if a new startdate is to be set then apply Cornelius's calculation | 405 | // if a new startdate is to be set then apply Cornelius's calculation |
406 | // of the first day to be shown | 406 | // of the first day to be shown |
407 | if (actdate != startdate) { | 407 | if (actdate != startdate) { |
408 | // reset index of selection according to shift of starting date from startdate to actdate | 408 | // reset index of selection according to shift of starting date from startdate to actdate |
409 | if (mSelStart != NOSELECTION) { | 409 | if (mSelStart != NOSELECTION) { |
410 | int tmp = actdate.daysTo(startdate); | 410 | int tmp = actdate.daysTo(startdate); |
411 | //kdDebug() << "Shift of Selection1: " << mSelStart << " - " << mSelEnd << " -> " << tmp << "(" << offset << ")" << endl; | 411 | //kdDebug() << "Shift of Selection1: " << mSelStart << " - " << mSelEnd << " -> " << tmp << "(" << offset << ")" << endl; |
412 | // shift selection if new one would be visible at least partly ! | 412 | // shift selection if new one would be visible at least partly ! |
413 | 413 | ||
414 | if (mSelStart+tmp < NUMDAYS && mSelEnd+tmp >= 0) { | 414 | if (mSelStart+tmp < NUMDAYS && mSelEnd+tmp >= 0) { |
415 | // nested if is required for next X display pushed from a different month - correction required | 415 | // nested if is required for next X display pushed from a different month - correction required |
416 | // otherwise, for month forward and backward, it must be avoided | 416 | // otherwise, for month forward and backward, it must be avoided |
417 | if( mSelStart > NUMDAYS || mSelStart < 0 ) | 417 | if( mSelStart > NUMDAYS || mSelStart < 0 ) |
418 | mSelStart = mSelStart + tmp; | 418 | mSelStart = mSelStart + tmp; |
419 | if( mSelEnd > NUMDAYS || mSelEnd < 0 ) | 419 | if( mSelEnd > NUMDAYS || mSelEnd < 0 ) |
420 | mSelEnd = mSelEnd + tmp; | 420 | mSelEnd = mSelEnd + tmp; |
421 | } | 421 | } |
422 | } | 422 | } |
423 | startdate = actdate; | 423 | startdate = actdate; |
424 | mDayChanged = true; | 424 | mDayChanged = true; |
425 | recalculateToday(); | 425 | recalculateToday(); |
426 | mRedrawNeeded = true; | 426 | mRedrawNeeded = true; |
427 | } | 427 | } |
428 | //qDebug("restart Timer %d vis: %d", mDayChanged, isVisible() ); | 428 | //qDebug("restart Timer %d vis: %d", mDayChanged, isVisible() ); |
429 | if ( !isVisible() ) { | 429 | if ( !isVisible() ) { |
430 | mPendingUpdateBeforeRepaint = true; | 430 | mPendingUpdateBeforeRepaint = true; |
431 | } else { | 431 | } else { |
432 | #ifdef DESKTOP_VERSION | 432 | #ifdef DESKTOP_VERSION |
433 | //mRepaintTimer->start( 100 ); | 433 | //mRepaintTimer->start( 100 ); |
434 | //updateViewTimed(); | 434 | //updateViewTimed(); |
435 | mUpdateTimer->start( 50 ); | 435 | mUpdateTimer->start( 50 ); |
436 | #else | 436 | #else |
437 | mRepaintTimer->start( 350 ); | 437 | mRepaintTimer->start( 350 ); |
438 | mUpdateTimer->start( 1200 ); | 438 | mUpdateTimer->start( 1200 ); |
439 | #endif | 439 | #endif |
440 | } | 440 | } |
441 | } | 441 | } |
442 | void KODayMatrix::updateEvents() | 442 | void KODayMatrix::updateEvents() |
443 | { | 443 | { |
444 | if ( !mCalendar ) return; | 444 | if ( !mCalendar ) return; |
445 | 445 | ||
446 | for( int i = 0; i < NUMDAYS; i++ ) { | 446 | for( int i = 0; i < NUMDAYS; i++ ) { |
447 | // if events are set for the day then remember to draw it bold | 447 | // if events are set for the day then remember to draw it bold |
448 | QPtrList<Event> eventlist = mCalendar->events( days[ i ] ); | 448 | QPtrList<Event> eventlist = mCalendar->events( days[ i ] ); |
449 | int numEvents = eventlist.count(); | 449 | int numEvents = eventlist.count(); |
450 | Event *event; | 450 | Event *event; |
451 | for( event = eventlist.first(); event != 0;event=eventlist.next()) { | 451 | for( event = eventlist.first(); event != 0;event=eventlist.next()) { |
452 | ushort recurType = event->doesRecur(); | 452 | ushort recurType = event->doesRecur(); |
453 | 453 | ||
454 | if ( ( recurType == Recurrence::rDaily && | 454 | if ( ( recurType == Recurrence::rDaily && |
455 | !KOPrefs::instance()->mDailyRecur ) || | 455 | !KOPrefs::instance()->mDailyRecur ) || |
456 | ( recurType == Recurrence::rWeekly && | 456 | ( recurType == Recurrence::rWeekly && |
457 | !KOPrefs::instance()->mWeeklyRecur ) ) { | 457 | !KOPrefs::instance()->mWeeklyRecur ) ) { |
458 | numEvents--; | 458 | numEvents--; |
459 | } | 459 | } |
460 | } | 460 | } |
461 | if ( numEvents ) | 461 | if ( numEvents ) |
462 | eDays.setBit(i); | 462 | eDays.setBit(i); |
463 | else | 463 | else |
464 | eDays.clearBit(i); | 464 | eDays.clearBit(i); |
465 | } | 465 | } |
466 | } | 466 | } |
467 | 467 | ||
468 | const QDate& KODayMatrix::getDate(int offset) | 468 | const QDate& KODayMatrix::getDate(int offset) |
469 | { | 469 | { |
470 | if (offset < 0 || offset > NUMDAYS-1) { | 470 | if (offset < 0 || offset > NUMDAYS-1) { |
471 | qDebug("Wrong offset2 %d", offset); | 471 | qDebug("Wrong offset2 %d", offset); |
472 | return days[0]; | 472 | return days[0]; |
473 | } | 473 | } |
474 | return days[offset]; | 474 | return days[offset]; |
475 | } | 475 | } |
476 | 476 | ||
477 | QString KODayMatrix::getHolidayLabel(int offset) | 477 | QString KODayMatrix::getHolidayLabel(int offset) |
478 | { | 478 | { |
479 | if (offset < 0 || offset > NUMDAYS-1) { | 479 | if (offset < 0 || offset > NUMDAYS-1) { |
480 | qDebug("Wrong offset1 %d", offset); | 480 | qDebug("Wrong offset1 %d", offset); |
481 | return QString(); | 481 | return QString(); |
482 | } | 482 | } |
483 | return mHolidays[offset]; | 483 | return mHolidays[offset]; |
484 | } | 484 | } |
485 | 485 | ||
486 | int KODayMatrix::getDayIndexFrom(int x, int y) | 486 | int KODayMatrix::getDayIndexFrom(int x, int y) |
487 | { | 487 | { |
488 | int colModulo = (width()-2) % 7; | 488 | int colModulo = (width()-2) % 7; |
489 | int rowModulo = (height()-2) % 6; | 489 | int rowModulo = (height()-2) % 6; |
490 | #if 0 | 490 | #if 0 |
491 | return 7*(y/daysize.height()) + (KOGlobals::self()->reverseLayout() ? | 491 | return 7*(y/daysize.height()) + (KOGlobals::self()->reverseLayout() ? |
492 | 6 - x/daysize.width() : x/daysize.width()); | 492 | 6 - x/daysize.width() : x/daysize.width()); |
493 | #endif | 493 | #endif |
494 | int xVal = (x-colModulo/2-2)/daysize.width(); | 494 | int xVal = (x-colModulo/2-2)/daysize.width(); |
495 | int yVal = (y-rowModulo/2-2)/daysize.height(); | 495 | int yVal = (y-rowModulo/2-2)/daysize.height(); |
496 | 496 | ||
497 | 497 | ||
498 | return 7*(yVal) + xVal; | 498 | return 7*(yVal) + xVal; |
499 | 499 | ||
500 | } | 500 | } |
501 | 501 | ||
502 | // ---------------------------------------------------------------------------- | 502 | // ---------------------------------------------------------------------------- |
503 | // M O U S E E V E N T H A N D L I N G | 503 | // M O U S E E V E N T H A N D L I N G |
504 | // ---------------------------------------------------------------------------- | 504 | // ---------------------------------------------------------------------------- |
505 | 505 | ||
506 | void KODayMatrix::mousePressEvent (QMouseEvent* e) | 506 | void KODayMatrix::mousePressEvent (QMouseEvent* e) |
507 | { | 507 | { |
508 | 508 | ||
509 | if ( e->button() == LeftButton ) | 509 | if ( e->button() == LeftButton ) |
510 | mouseDown = true; | 510 | mouseDown = true; |
511 | mSelStart = getDayIndexFrom(e->x(), e->y()); | 511 | mSelStart = getDayIndexFrom(e->x(), e->y()); |
512 | if (mSelStart > NUMDAYS-1) mSelStart=NUMDAYS-1; | 512 | if (mSelStart > NUMDAYS-1) mSelStart=NUMDAYS-1; |
513 | mSelInit = mSelStart; | 513 | mSelInit = mSelStart; |
514 | mSelEnd = mSelStart; | 514 | mSelEnd = mSelStart; |
515 | mRedrawNeeded = true; | 515 | mRedrawNeeded = true; |
516 | repaint(false); | 516 | repaint(false); |
517 | } | 517 | } |
518 | 518 | ||
519 | void KODayMatrix::mouseReleaseEvent (QMouseEvent* e) | 519 | void KODayMatrix::mouseReleaseEvent (QMouseEvent* e) |
520 | { | 520 | { |
521 | mRedrawNeeded = true; | 521 | mRedrawNeeded = true; |
522 | if ( e->button() == LeftButton ) | 522 | if ( e->button() == LeftButton ) |
523 | if ( ! mouseDown ) { | 523 | if ( ! mouseDown ) { |
524 | return; | 524 | return; |
525 | } | 525 | } |
526 | else | 526 | else |
527 | mouseDown = false; | 527 | mouseDown = false; |
528 | int tmp = getDayIndexFrom(e->x(), e->y()); | 528 | int tmp = getDayIndexFrom(e->x(), e->y()); |
529 | if (tmp > NUMDAYS-1) tmp=NUMDAYS-1; | 529 | if (tmp > NUMDAYS-1) tmp=NUMDAYS-1; |
530 | 530 | ||
531 | if (mSelInit > tmp) { | 531 | if (mSelInit > tmp) { |
532 | mSelEnd = mSelInit; | 532 | mSelEnd = mSelInit; |
533 | if (tmp != mSelStart) { | 533 | if (tmp != mSelStart) { |
534 | mSelStart = tmp; | 534 | mSelStart = tmp; |
535 | repaint(false); | 535 | repaint(false); |
536 | } | 536 | } |
537 | } else { | 537 | } else { |
538 | mSelStart = mSelInit; | 538 | mSelStart = mSelInit; |
539 | 539 | ||
540 | //repaint only if selection has changed | 540 | //repaint only if selection has changed |
541 | if (tmp != mSelEnd) { | 541 | if (tmp != mSelEnd) { |
542 | mSelEnd = tmp; | 542 | mSelEnd = tmp; |
543 | repaint(false); | 543 | repaint(false); |
544 | } | 544 | } |
545 | } | 545 | } |
546 | 546 | ||
547 | DateList daylist; | 547 | DateList daylist; |
548 | if ( mSelStart < 0 ) | 548 | if ( mSelStart < 0 ) |
549 | mSelStart = 0; | 549 | mSelStart = 0; |
550 | for (int i = mSelStart; i <= mSelEnd; i++) { | 550 | for (int i = mSelStart; i <= mSelEnd; i++) { |
551 | daylist.append(days[i]); | 551 | daylist.append(days[i]); |
552 | } | 552 | } |
553 | emit selected((const DateList)daylist); | 553 | emit selected((const DateList)daylist); |
554 | 554 | ||
555 | } | 555 | } |
556 | 556 | ||
557 | void KODayMatrix::mouseMoveEvent (QMouseEvent* e) | 557 | void KODayMatrix::mouseMoveEvent (QMouseEvent* e) |
558 | { | 558 | { |
559 | if ( ! mouseDown ) { | 559 | if ( ! mouseDown ) { |
560 | return; | 560 | return; |
561 | } | 561 | } |
562 | mRedrawNeeded = true; | 562 | mRedrawNeeded = true; |
563 | int tmp = getDayIndexFrom(e->x(), e->y()); | 563 | int tmp = getDayIndexFrom(e->x(), e->y()); |
564 | if (tmp > NUMDAYS-1) tmp=NUMDAYS-1; | 564 | if (tmp > NUMDAYS-1) tmp=NUMDAYS-1; |
565 | 565 | ||
566 | if (mSelInit > tmp) { | 566 | if (mSelInit > tmp) { |
567 | mSelEnd = mSelInit; | 567 | mSelEnd = mSelInit; |
568 | if (tmp != mSelStart) { | 568 | if (tmp != mSelStart) { |
569 | mSelStart = tmp; | 569 | mSelStart = tmp; |
570 | repaint(false); | 570 | repaint(false); |
571 | } | 571 | } |
572 | } else { | 572 | } else { |
573 | mSelStart = mSelInit; | 573 | mSelStart = mSelInit; |
574 | 574 | ||
575 | //repaint only if selection has changed | 575 | //repaint only if selection has changed |
576 | if (tmp != mSelEnd) { | 576 | if (tmp != mSelEnd) { |
577 | mSelEnd = tmp; | 577 | mSelEnd = tmp; |
578 | repaint(false); | 578 | repaint(false); |
579 | } | 579 | } |
580 | } | 580 | } |
581 | } | 581 | } |
582 | 582 | ||
583 | // ---------------------------------------------------------------------------- | 583 | // ---------------------------------------------------------------------------- |
584 | // D R A G ' N D R O P H A N D L I N G | 584 | // D R A G ' N D R O P H A N D L I N G |
585 | // ---------------------------------------------------------------------------- | 585 | // ---------------------------------------------------------------------------- |
586 | 586 | ||
587 | void KODayMatrix::dragEnterEvent(QDragEnterEvent *e) | 587 | void KODayMatrix::dragEnterEvent(QDragEnterEvent *e) |
588 | { | 588 | { |
589 | #ifndef KORG_NODND | 589 | #ifndef KORG_NODND |
590 | if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) ) { | 590 | if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) ) { |
591 | e->ignore(); | 591 | e->ignore(); |
592 | return; | 592 | return; |
593 | } | 593 | } |
594 | 594 | ||
595 | // some visual feedback | 595 | // some visual feedback |
596 | // oldPalette = palette(); | 596 | // oldPalette = palette(); |
597 | // setPalette(my_HilitePalette); | 597 | // setPalette(my_HilitePalette); |
598 | // update(); | 598 | // update(); |
599 | #endif | 599 | #endif |
600 | } | 600 | } |
601 | 601 | ||
602 | void KODayMatrix::dragMoveEvent(QDragMoveEvent *e) | 602 | void KODayMatrix::dragMoveEvent(QDragMoveEvent *e) |
603 | { | 603 | { |
604 | #ifndef KORG_NODND | 604 | #ifndef KORG_NODND |
605 | if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) ) { | 605 | if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) ) { |
606 | e->ignore(); | 606 | e->ignore(); |
607 | return; | 607 | return; |
608 | } | 608 | } |
609 | 609 | ||
610 | e->accept(); | 610 | e->accept(); |
611 | #endif | 611 | #endif |
612 | } | 612 | } |
613 | 613 | ||
614 | void KODayMatrix::dragLeaveEvent(QDragLeaveEvent */*dl*/) | 614 | void KODayMatrix::dragLeaveEvent(QDragLeaveEvent */*dl*/) |
615 | { | 615 | { |
616 | #ifndef KORG_NODND | 616 | #ifndef KORG_NODND |
617 | // setPalette(oldPalette); | 617 | // setPalette(oldPalette); |
618 | // update(); | 618 | // update(); |
619 | #endif | 619 | #endif |
620 | } | 620 | } |
621 | 621 | ||
622 | void KODayMatrix::dropEvent(QDropEvent *e) | 622 | void KODayMatrix::dropEvent(QDropEvent *e) |
623 | { | 623 | { |
624 | #ifndef KORG_NODND | 624 | #ifndef KORG_NODND |
625 | // kdDebug() << "KODayMatrix::dropEvent(e) begin" << endl; | 625 | // kdDebug() << "KODayMatrix::dropEvent(e) begin" << endl; |
626 | 626 | ||
627 | if (!mCalendar || !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) ) { | 627 | if (!mCalendar || !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) ) { |
628 | e->ignore(); | 628 | e->ignore(); |
629 | return; | 629 | return; |
630 | } | 630 | } |
631 | 631 | ||
632 | DndFactory factory( mCalendar ); | 632 | DndFactory factory( mCalendar ); |
633 | Event *event = factory.createDrop(e); | 633 | Event *event = factory.createDrop(e); |
634 | 634 | ||
635 | if (event) { | 635 | if (event) { |
636 | e->acceptAction(); | 636 | e->acceptAction(); |
637 | 637 | ||
638 | Event *existingEvent = mCalendar->event(event->uid()); | 638 | Event *existingEvent = mCalendar->event(event->uid()); |
639 | 639 | ||
640 | if(existingEvent) { | 640 | if(existingEvent) { |
641 | // uniquify event | 641 | // uniquify event |
642 | event->recreate(); | 642 | event->recreate(); |
643 | /* | 643 | /* |
644 | KMessageBox::sorry(this, | 644 | KMessageBox::sorry(this, |
645 | i18n("Event already exists in this calendar."), | 645 | i18n("Event already exists in this calendar."), |
646 | i18n("Drop Event")); | 646 | i18n("Drop Event")); |
647 | delete event; | 647 | delete event; |
648 | return; | 648 | return; |
649 | */ | 649 | */ |
650 | } | 650 | } |
651 | // kdDebug() << "Drop new Event" << endl; | 651 | // kdDebug() << "Drop new Event" << endl; |
652 | // Adjust date | 652 | // Adjust date |
653 | QDateTime start = event->dtStart(); | 653 | QDateTime start = event->dtStart(); |
654 | QDateTime end = event->dtEnd(); | 654 | QDateTime end = event->dtEnd(); |
655 | int duration = start.daysTo(end); | 655 | int duration = start.daysTo(end); |
656 | int idx = getDayIndexFrom(e->pos().x(), e->pos().y()); | 656 | int idx = getDayIndexFrom(e->pos().x(), e->pos().y()); |
657 | 657 | ||
658 | start.setDate(days[idx]); | 658 | start.setDate(days[idx]); |
659 | end.setDate(days[idx].addDays(duration)); | 659 | end.setDate(days[idx].addDays(duration)); |
660 | 660 | ||
661 | event->setDtStart(start); | 661 | event->setDtStart(start); |
662 | event->setDtEnd(end); | 662 | event->setDtEnd(end); |
663 | mCalendar->addEvent(event); | 663 | mCalendar->addEvent(event); |
664 | 664 | ||
665 | emit eventDropped(event); | 665 | emit eventDropped(event); |
666 | } else { | 666 | } else { |
667 | // kdDebug() << "KODayMatrix::dropEvent(): Event from drop not decodable" << endl; | 667 | // kdDebug() << "KODayMatrix::dropEvent(): Event from drop not decodable" << endl; |
668 | e->ignore(); | 668 | e->ignore(); |
669 | } | 669 | } |
670 | #endif | 670 | #endif |
671 | } | 671 | } |
672 | 672 | ||
673 | // ---------------------------------------------------------------------------- | 673 | // ---------------------------------------------------------------------------- |
674 | // P A I N T E V E N T H A N D L I N G | 674 | // P A I N T E V E N T H A N D L I N G |
675 | // ---------------------------------------------------------------------------- | 675 | // ---------------------------------------------------------------------------- |
676 | 676 | ||
677 | void KODayMatrix::paintEvent(QPaintEvent * pevent) | 677 | void KODayMatrix::paintEvent(QPaintEvent * pevent) |
678 | { | 678 | { |
679 | 679 | ||
680 | if ( width() <= 0 || height() <= 0 ) | 680 | if ( width() <= 0 || height() <= 0 ) |
681 | return; | 681 | return; |
682 | if ( mPendingUpdateBeforeRepaint ) { | 682 | if ( mPendingUpdateBeforeRepaint ) { |
683 | updateViewTimed(); | 683 | updateViewTimed(); |
684 | mPendingUpdateBeforeRepaint = false; | 684 | mPendingUpdateBeforeRepaint = false; |
685 | } | 685 | } |
686 | if ( myPix.width() != width() || myPix.height()!=height() ) { | 686 | if ( myPix.width() != width() || myPix.height()!=height() ) { |
687 | myPix.resize(size() ); | 687 | myPix.resize(size() ); |
688 | mRedrawNeeded = true; | 688 | mRedrawNeeded = true; |
689 | } | 689 | } |
690 | 690 | ||
691 | if ( mRedrawNeeded ) { | 691 | if ( mRedrawNeeded ) { |
692 | //qDebug("REDRAW "); | 692 | //qDebug("REDRAW "); |
693 | QPainter p(&myPix); | 693 | QPainter p(&myPix); |
694 | p.setFont(font()); | 694 | p.setFont(font()); |
695 | 695 | ||
696 | 696 | ||
697 | int dheight = daysize.height(); | 697 | int dheight = daysize.height(); |
698 | int dwidth = daysize.width(); | 698 | int dwidth = daysize.width(); |
699 | int row,col; | 699 | int row,col; |
700 | int selw, selh; | 700 | int selw, selh; |
701 | int xyOff = frameWidth(); | 701 | int xyOff = frameWidth(); |
702 | int colModulo = (width()-2) % 7; | 702 | int colModulo = (width()-2) % 7; |
703 | int rowModulo = (height()-2) % 6; | 703 | int rowModulo = (height()-2) % 6; |
704 | //qDebug("col %d row %d ",colModulo,rowModulo ); | 704 | //qDebug("col %d row %d ",colModulo,rowModulo ); |
705 | 705 | ||
706 | bool isRTL = KOGlobals::self()->reverseLayout(); | 706 | bool isRTL = KOGlobals::self()->reverseLayout(); |
707 | 707 | ||
708 | // draw background and topleft frame | 708 | // draw background and topleft frame |
709 | p.fillRect(0,0,width(),height(), mDefaultBackColor); | 709 | p.fillRect(0,0,width(),height(), mDefaultBackColor); |
710 | p.setPen(mDefaultTextColor); | 710 | p.setPen(mDefaultTextColor); |
711 | p.drawRect(0, 0, width(), height()); | 711 | p.drawRect(0, 0, width(), height()); |
712 | int mSelStartT = mSelStart; | 712 | int mSelStartT = mSelStart; |
713 | int mSelEndT = mSelEnd; | 713 | int mSelEndT = mSelEnd; |
714 | if ( mSelEndT >= NUMDAYS ) | 714 | if ( mSelEndT >= NUMDAYS ) |
715 | mSelEndT = NUMDAYS-1; | 715 | mSelEndT = NUMDAYS-1; |
716 | // draw selected days with highlighted background color | 716 | // draw selected days with highlighted background color |
717 | if (mSelStart != NOSELECTION) { | 717 | if (mSelStart != NOSELECTION) { |
718 | bool skip = false; | 718 | bool skip = false; |
719 | if ( ! mouseDown ) { | 719 | if ( ! mouseDown ) { |
720 | int mo = days[20].month(); | 720 | int mo = days[20].month(); |
721 | //qDebug("-- %d %d ", mSelStartT, mSelEndT); | 721 | //qDebug("-- %d %d ", mSelStartT, mSelEndT); |
722 | //qDebug("%d %d %d - d %d", mo, days[mSelStartT].month() , days[mSelEndT].month(), days[mSelEndT].day() ); | 722 | //qDebug("%d %d %d - d %d", mo, days[mSelStartT].month() , days[mSelEndT].month(), days[mSelEndT].day() ); |
723 | int startMo = days[mSelStartT].month(); | 723 | int startMo = days[mSelStartT].month(); |
724 | int endMo = days[mSelEndT].month(); | 724 | int endMo = days[mSelEndT].month(); |
725 | if ( startMo == 12 && mo == 1 && endMo <= 2 ) | 725 | if ( startMo == 12 && mo == 1 && endMo <= 2 ) |
726 | startMo = 1; | 726 | startMo = 1; |
727 | if ( endMo == 1 && mo == 12 ) | 727 | if ( endMo == 1 && mo == 12 ) |
728 | endMo = 12; | 728 | endMo = 12; |
729 | if ( mo == 12 && startMo == 1 ) | 729 | if ( mo == 12 && startMo == 1 ) |
730 | startMo = 13; | 730 | startMo = 13; |
731 | if ( (startMo > mo || endMo < mo) ) { | 731 | if ( (startMo > mo || endMo < mo) ) { |
732 | skip = true; | 732 | skip = true; |
733 | } else { | 733 | } else { |
734 | if ( days[mSelStartT].month() != mo ) { | 734 | if ( days[mSelStartT].month() != mo ) { |
735 | int add = days[mSelStartT].daysInMonth ()-days[mSelStartT].day(); | 735 | int add = days[mSelStartT].daysInMonth ()-days[mSelStartT].day(); |
736 | mSelStartT += add +1; | 736 | mSelStartT += add +1; |
737 | } | 737 | } |
738 | if ( days[mSelEndT].month() != mo ) { | 738 | if ( days[mSelEndT].month() != mo ) { |
739 | int sub = days[mSelEndT].day(); | 739 | int sub = days[mSelEndT].day(); |
740 | mSelEndT -= sub ; | 740 | mSelEndT -= sub ; |
741 | } | 741 | } |
742 | } | 742 | } |
743 | } | 743 | } |
744 | //qDebug("SKIP %d ", skip); | 744 | //qDebug("SKIP %d ", skip); |
745 | if ( ! skip ) { | 745 | if ( ! skip ) { |
746 | row = mSelStartT/7; | 746 | row = mSelStartT/7; |
747 | col = mSelStartT -row*7; | 747 | col = mSelStartT -row*7; |
748 | QColor selcol = KOPrefs::instance()->mHighlightColor; | 748 | QColor selcol = KOPrefs::instance()->mHighlightColor; |
749 | int addCol = 0; | 749 | int addCol = 0; |
750 | int addRow = 0; | 750 | int addRow = 0; |
751 | int addRow2 = 0; | 751 | int addRow2 = 0; |
752 | int addCol2 = 0; | 752 | int addCol2 = 0; |
753 | if (row == mSelEndT/7) { | 753 | if (row == mSelEndT/7) { |
754 | if ( rowModulo ) { | 754 | if ( rowModulo ) { |
755 | if ( row >= 6 - rowModulo ) | 755 | if ( row >= 6 - rowModulo ) |
756 | addRow = row - 5 + rowModulo; | 756 | addRow = row - 5 + rowModulo; |
757 | } | 757 | } |
758 | if ( colModulo ) { | 758 | if ( colModulo ) { |
759 | int colt1 = mSelEndT%7; | 759 | int colt1 = mSelEndT%7; |
760 | //qDebug("colt1 %d ", colt1 ); | 760 | //qDebug("colt1 %d ", colt1 ); |
761 | if ( colt1 >= 7 - colModulo ) | 761 | if ( colt1 >= 7 - colModulo ) |
762 | addCol = colt1 - 7 + colModulo+1; | 762 | addCol = colt1 - 7 + colModulo+1; |
763 | int colt = mSelStartT%7; | 763 | int colt = mSelStartT%7; |
764 | if ( colt >= 7 - colModulo ) | 764 | if ( colt >= 7 - colModulo ) |
765 | addCol2 = colt - 7 + colModulo; | 765 | addCol2 = colt - 7 + colModulo; |
766 | addCol -= addCol2; | 766 | addCol -= addCol2; |
767 | //qDebug("COL %d %d %d %d ",col , colt1 ,addCol ,addCol2 ); | 767 | //qDebug("COL %d %d %d %d ",col , colt1 ,addCol ,addCol2 ); |
768 | } | 768 | } |
769 | // Single row selection | 769 | // Single row selection |
770 | if ( row == 0) | 770 | if ( row == 0) |
771 | addRow = 1; | 771 | addRow = 1; |
772 | p.fillRect(isRTL ? (7 - (mSelEndT-mSelStartT+1) - col)*dwidth : col*dwidth+1+addCol2, | 772 | p.fillRect(isRTL ? (7 - (mSelEndT-mSelStartT+1) - col)*dwidth : col*dwidth+1+addCol2, |
773 | row*dheight+addRow, (mSelEndT-mSelStartT+1)*dwidth+addCol, dheight+1, selcol); | 773 | row*dheight+addRow, (mSelEndT-mSelStartT+1)*dwidth+addCol, dheight+1, selcol); |
774 | } else { | 774 | } else { |
775 | // draw first row to the right | 775 | // draw first row to the right |
776 | if ( colModulo ) { | 776 | if ( colModulo ) { |
777 | if ( col >= 7 - colModulo ) | 777 | if ( col >= 7 - colModulo ) |
778 | addCol2 = col - 7 + colModulo; | 778 | addCol2 = col - 7 + colModulo; |
779 | } | 779 | } |
780 | if ( rowModulo ) { | 780 | if ( rowModulo ) { |
781 | if ( row >= 6 - rowModulo ) | 781 | if ( row >= 6 - rowModulo ) |
782 | addRow = row - 5 + rowModulo; | 782 | addRow = row - 5 + rowModulo; |
783 | } | 783 | } |
784 | if ( row == 0) | 784 | if ( row == 0) |
785 | addRow = 1; | 785 | addRow = 1; |
786 | int drawWid = width()-(col*dwidth+1+addCol2)-1; | 786 | int drawWid = width()-(col*dwidth+1+addCol2)-1; |
787 | p.fillRect(isRTL ? 0 : col*dwidth+1+addCol2, row*dheight+addRow, drawWid, | 787 | p.fillRect(isRTL ? 0 : col*dwidth+1+addCol2, row*dheight+addRow, drawWid, |
788 | dheight+1, selcol); | 788 | dheight+1, selcol); |
789 | // draw full block till last line | 789 | // draw full block till last line |
790 | selh = mSelEndT/7-row; | 790 | selh = mSelEndT/7-row; |
791 | addRow = 0; | 791 | addRow = 0; |
792 | if ( rowModulo ) { | 792 | if ( rowModulo ) { |
793 | if ( mSelEndT/7 >= 6 - rowModulo ) | 793 | if ( mSelEndT/7 >= 6 - rowModulo ) |
794 | addRow = mSelEndT/7 - 5 + rowModulo; | 794 | addRow = mSelEndT/7 - 5 + rowModulo; |
795 | } | 795 | } |
796 | if (selh > 1) { | 796 | if (selh > 1) { |
797 | p.fillRect(1, (row+1)*dheight, 7*dwidth+colModulo, (selh-1)*dheight+addRow,selcol); | 797 | p.fillRect(1, (row+1)*dheight, 7*dwidth+colModulo, (selh-1)*dheight+addRow,selcol); |
798 | } | 798 | } |
799 | // draw last block from left to mSelEndT | 799 | // draw last block from left to mSelEndT |
800 | selw = mSelEndT-7*(mSelEndT/7)+1; | 800 | selw = mSelEndT-7*(mSelEndT/7)+1; |
801 | //qDebug("esl %d ",selw ); | 801 | //qDebug("esl %d ",selw ); |
802 | int add = 0; | 802 | int add = 0; |
803 | if ( colModulo ) { | 803 | if ( colModulo ) { |
804 | add = 7 - colModulo; | 804 | add = 7 - colModulo; |
805 | if ( selw > add ) | 805 | if ( selw > add ) |
806 | add = selw - add; | 806 | add = selw - add; |
807 | else | 807 | else |
808 | add = 0; | 808 | add = 0; |
809 | } | 809 | } |
810 | //qDebug("add %d ", add); | 810 | //qDebug("add %d ", add); |
811 | p.fillRect(isRTL ? (7-selw)*dwidth : 1, (row+selh)*dheight+addRow, | 811 | p.fillRect(isRTL ? (7-selw)*dwidth : 1, (row+selh)*dheight+addRow, |
812 | selw*dwidth+add, dheight+1, selcol); | 812 | selw*dwidth+add, dheight+1, selcol); |
813 | } | 813 | } |
814 | } | 814 | } |
815 | } | 815 | } |
816 | 816 | ||
817 | // iterate over all days in the matrix and draw the day label in appropriate colors | 817 | // iterate over all days in the matrix and draw the day label in appropriate colors |
818 | QColor actcol = mDefaultTextColorShaded; | 818 | QColor actcol = mDefaultTextColorShaded; |
819 | p.setPen(actcol); | 819 | p.setPen(actcol); |
820 | QPen tmppen; | 820 | QPen tmppen; |
821 | for(int i = 0; i < NUMDAYS; i++) { | 821 | for(int i = 0; i < NUMDAYS; i++) { |
822 | row = i/7; | 822 | row = i/7; |
823 | col = isRTL ? 6-(i-row*7) : i-row*7; | 823 | col = isRTL ? 6-(i-row*7) : i-row*7; |
824 | 824 | ||
825 | // if it is the first day of a month switch color from normal to shaded and vice versa | 825 | // if it is the first day of a month switch color from normal to shaded and vice versa |
826 | if ( KOGlobals::self()->calendarSystem()->day( days[i] ) == 1) { | 826 | if ( KOGlobals::self()->calendarSystem()->day( days[i] ) == 1) { |
827 | if (actcol == mDefaultTextColorShaded) { | 827 | if (actcol == mDefaultTextColorShaded) { |
828 | actcol = mDefaultTextColor; | 828 | actcol = mDefaultTextColor; |
829 | } else { | 829 | } else { |
830 | actcol = mDefaultTextColorShaded; | 830 | actcol = mDefaultTextColorShaded; |
831 | } | 831 | } |
832 | p.setPen(actcol); | 832 | p.setPen(actcol); |
833 | } | 833 | } |
834 | if (actcol == mDefaultTextColorShaded) { | 834 | if (actcol == mDefaultTextColorShaded) { |
835 | if ( ! mouseDown ) { | 835 | if ( ! mouseDown ) { |
836 | continue; | 836 | continue; |
837 | } | 837 | } |
838 | } | 838 | } |
839 | //Reset pen color after selected days block | 839 | //Reset pen color after selected days block |
840 | if (i == mSelEndT+1) { | 840 | if (i == mSelEndT+1) { |
841 | p.setPen(actcol); | 841 | p.setPen(actcol); |
842 | } | 842 | } |
843 | 843 | ||
844 | // if today then draw rectangle around day | 844 | // if today then draw rectangle around day |
845 | if (today == i) { | 845 | if (today == i) { |
846 | tmppen = p.pen(); | 846 | tmppen = p.pen(); |
847 | QPen mTodayPen(p.pen()); | 847 | QPen mTodayPen(p.pen()); |
848 | if ( daysize.width() < 20 ) | 848 | if ( daysize.width() < 20 ) |
849 | mTodayPen.setWidth(1); | 849 | mTodayPen.setWidth(1); |
850 | else | 850 | else |
851 | mTodayPen.setWidth(mTodayMarginWidth); | 851 | mTodayPen.setWidth(mTodayMarginWidth); |
852 | //draw red rectangle for holidays | 852 | //draw red rectangle for holidays |
853 | if (!mHolidays[i].isNull()) { | 853 | if (!mHolidays[i].isNull()) { |
854 | if (actcol == mDefaultTextColor) { | 854 | if (actcol == mDefaultTextColor) { |
855 | mTodayPen.setColor(KOPrefs::instance()->mHolidayColor); | 855 | mTodayPen.setColor(KOPrefs::instance()->mHolidayColor); |
856 | } else { | 856 | } else { |
857 | mTodayPen.setColor(mHolidayColorShaded); | 857 | mTodayPen.setColor(mHolidayColorShaded); |
858 | } | 858 | } |
859 | } | 859 | } |
860 | //draw gray rectangle for today if in selection | 860 | //draw gray rectangle for today if in selection |
861 | if (i >= mSelStartT && i <= mSelEndT) { | 861 | if (i >= mSelStartT && i <= mSelEndT) { |
862 | QColor grey("grey"); | 862 | QColor grey("grey"); |
863 | mTodayPen.setColor(grey); | 863 | mTodayPen.setColor(grey); |
864 | } | 864 | } |
865 | p.setPen(mTodayPen); | 865 | p.setPen(mTodayPen); |
866 | 866 | ||
867 | 867 | ||
868 | int addCol = 0; | 868 | int addCol = 0; |
869 | int addRow = 0; | 869 | int addRow = 0; |
870 | if (rowModulo) { | 870 | if (rowModulo) { |
871 | if ( row >= 6 - rowModulo ) | 871 | if ( row >= 6 - rowModulo ) |
872 | addRow = row - 5 + rowModulo; | 872 | addRow = row - 5 + rowModulo; |
873 | } | 873 | } |
874 | if ( colModulo ) { | 874 | if ( colModulo ) { |
875 | if ( col >= 7 - colModulo ) | 875 | if ( col >= 7 - colModulo ) |
876 | addCol = col - 6 + colModulo-1; | 876 | addCol = col - 6 + colModulo-1; |
877 | } | 877 | } |
878 | 878 | ||
879 | addCol += 1; | 879 | addCol += 1; |
880 | p.drawRect(col*dwidth+addCol, row*dheight+addRow, dwidth, dheight+1); | 880 | if ( row == 0 ) |
881 | addRow = 1; | ||
882 | p.drawRect(col*dwidth+addCol, row*dheight+addRow, dwidth+1, dheight+1); | ||
881 | p.setPen(tmppen); | 883 | p.setPen(tmppen); |
882 | } | 884 | } |
883 | 885 | ||
884 | // if any events are on that day then draw it using a bold font | 886 | // if any events are on that day then draw it using a bold font |
885 | if ( eDays.testBit(i) ) { | 887 | if ( eDays.testBit(i) ) { |
886 | QFont myFont = font(); | 888 | QFont myFont = font(); |
887 | myFont.setBold(true); | 889 | myFont.setBold(true); |
888 | p.setFont(myFont); | 890 | p.setFont(myFont); |
889 | } | 891 | } |
890 | 892 | ||
891 | // if it is a holiday then use the default holiday color | 893 | // if it is a holiday then use the default holiday color |
892 | if ( !mHolidays[i].isNull()) { | 894 | if ( !mHolidays[i].isNull()) { |
893 | if ( bDays.testBit(i) ) { | 895 | if ( bDays.testBit(i) ) { |
894 | if ( hDays.testBit(i) ) | 896 | if ( hDays.testBit(i) ) |
895 | p.setPen(QColor(Qt::green)); | 897 | p.setPen(QColor(Qt::green)); |
896 | else | 898 | else |
897 | p.setPen(QColor(Qt::green).dark()); | 899 | p.setPen(QColor(Qt::green).dark()); |
898 | } else { | 900 | } else { |
899 | if (actcol == mDefaultTextColor ) { | 901 | if (actcol == mDefaultTextColor ) { |
900 | p.setPen(KOPrefs::instance()->mHolidayColor); | 902 | p.setPen(KOPrefs::instance()->mHolidayColor); |
901 | } else { | 903 | } else { |
902 | p.setPen(mHolidayColorShaded); | 904 | p.setPen(mHolidayColorShaded); |
903 | } | 905 | } |
904 | } | 906 | } |
905 | } | 907 | } |
906 | 908 | ||
907 | // draw selected days with special color | 909 | // draw selected days with special color |
908 | // DO NOT specially highlight holidays in selection ! | 910 | // DO NOT specially highlight holidays in selection ! |
909 | if (i >= mSelStartT && i <= mSelEndT) { | 911 | if (i >= mSelStartT && i <= mSelEndT) { |
910 | ;//p.setPen(mSelectedDaysColor); | 912 | ;//p.setPen(mSelectedDaysColor); |
911 | } | 913 | } |
912 | 914 | ||
913 | int addCol = 0; | 915 | int addCol = 0; |
914 | int addRow = 0; | 916 | int addRow = 0; |
915 | if ( colModulo ) { | 917 | if ( colModulo ) { |
916 | if ( col >= 7 - colModulo ) | 918 | if ( col >= 7 - colModulo ) |
917 | addCol = col - 7 + colModulo; | 919 | addCol = col - 7 + colModulo; |
918 | } | 920 | } |
919 | if ( rowModulo ) { | 921 | if ( rowModulo ) { |
920 | if ( row >= 6 - rowModulo ) | 922 | if ( row >= 6 - rowModulo ) |
921 | addRow = row - 5 + rowModulo; | 923 | addRow = row - 5 + rowModulo; |
922 | } | 924 | } |
923 | //qDebug("add %d %d -- %d %d ", col, addCol, row, addRow); | 925 | //qDebug("add %d %d -- %d %d ", col, addCol, row, addRow); |
924 | ++addCol;//++addCol; | 926 | ++addCol;//++addCol; |
925 | if ( row == 0) | 927 | if ( row == 0) |
926 | addRow = 1; | 928 | addRow = 1; |
927 | p.drawText(col*dwidth+addCol, row*dheight+addRow, dwidth, dheight, | 929 | p.drawText(col*dwidth+addCol, row*dheight+addRow, dwidth, dheight, |
928 | Qt::AlignHCenter | Qt::AlignVCenter, daylbls[i]); | 930 | Qt::AlignHCenter | Qt::AlignVCenter, daylbls[i]); |
929 | 931 | ||
930 | // reset color to actual color | 932 | // reset color to actual color |
931 | if (!mHolidays[i].isNull()) { | 933 | if (!mHolidays[i].isNull()) { |
932 | p.setPen(actcol); | 934 | p.setPen(actcol); |
933 | } | 935 | } |
934 | // reset bold font to plain font | 936 | // reset bold font to plain font |
935 | if ( eDays.testBit(i)) { | 937 | if ( eDays.testBit(i)) { |
936 | QFont myFont = font(); | 938 | QFont myFont = font(); |
937 | myFont.setBold(false); | 939 | myFont.setBold(false); |
938 | p.setFont(myFont); | 940 | p.setFont(myFont); |
939 | } | 941 | } |
940 | } | 942 | } |
941 | } else { | 943 | } else { |
942 | //qDebug("NO redraw "); | 944 | //qDebug("NO redraw "); |
943 | } | 945 | } |
944 | bitBlt (this, 0, 0, &myPix, 0 ,0,width(), height() ,CopyROP); | 946 | bitBlt (this, 0, 0, &myPix, 0 ,0,width(), height() ,CopyROP); |
945 | mRedrawNeeded = false; | 947 | mRedrawNeeded = false; |
946 | } | 948 | } |
947 | 949 | ||
948 | // ---------------------------------------------------------------------------- | 950 | // ---------------------------------------------------------------------------- |
949 | // R E SI Z E E V E N T H A N D L I N G | 951 | // R E SI Z E E V E N T H A N D L I N G |
950 | // ---------------------------------------------------------------------------- | 952 | // ---------------------------------------------------------------------------- |
951 | 953 | ||
952 | void KODayMatrix::resizeEvent(QResizeEvent *) | 954 | void KODayMatrix::resizeEvent(QResizeEvent *) |
953 | { | 955 | { |
954 | QRect sz = frameRect(); | 956 | QRect sz = frameRect(); |
955 | daysize.setHeight(sz.height()*7 / NUMDAYS); | 957 | daysize.setHeight(sz.height()*7 / NUMDAYS); |
956 | daysize.setWidth(sz.width() / 7); | 958 | daysize.setWidth(sz.width() / 7); |
957 | } | 959 | } |
958 | 960 | ||
959 | QSize KODayMatrix::sizeHint() const | 961 | QSize KODayMatrix::sizeHint() const |
960 | { | 962 | { |
961 | 963 | ||
962 | QFontMetrics fm ( font() ); | 964 | QFontMetrics fm ( font() ); |
963 | int wid = fm.width( "30") *7+3; | 965 | int wid = fm.width( "30") *7+3; |
964 | int hei = fm.height() * 6+3; | 966 | int hei = fm.height() * 6+3; |
965 | //qDebug("KODayMatrix::sizeHint()********************* %d %d", wid , hei); | 967 | //qDebug("KODayMatrix::sizeHint()********************* %d %d", wid , hei); |
966 | return QSize ( wid, hei ); | 968 | return QSize ( wid, hei ); |
967 | 969 | ||
968 | } | 970 | } |