author | zautrix <zautrix> | 2005-02-19 20:56:28 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-02-19 20:56:28 (UTC) |
commit | 1994c2c1e8d28b9ff7e4a42954f24dc8e48a9ff5 (patch) (unidiff) | |
tree | 6a1044c3412c0bc7e07fcd89ba489a4326677f8d | |
parent | fc2d01e5acc939719f01b9dbe5696d47162514b1 (diff) | |
download | kdepimpi-1994c2c1e8d28b9ff7e4a42954f24dc8e48a9ff5.zip kdepimpi-1994c2c1e8d28b9ff7e4a42954f24dc8e48a9ff5.tar.gz kdepimpi-1994c2c1e8d28b9ff7e4a42954f24dc8e48a9ff5.tar.bz2 |
nochn fix
-rw-r--r-- | korganizer/komonthview.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/korganizer/komonthview.cpp b/korganizer/komonthview.cpp index ddac6e4..3aaa50a 100644 --- a/korganizer/komonthview.cpp +++ b/korganizer/komonthview.cpp | |||
@@ -131,257 +131,258 @@ void KNoScrollListBox::keyPressEvent(QKeyEvent *e) | |||
131 | } else { | 131 | } else { |
132 | setTopItem(topItem()-1); | 132 | setTopItem(topItem()-1); |
133 | } | 133 | } |
134 | } | 134 | } |
135 | break; | 135 | break; |
136 | case Key_Down: | 136 | case Key_Down: |
137 | if(e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton) { | 137 | if(e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton) { |
138 | e->ignore(); | 138 | e->ignore(); |
139 | break; | 139 | break; |
140 | } | 140 | } |
141 | setCurrentItem((currentItem()+1)%count()); | 141 | setCurrentItem((currentItem()+1)%count()); |
142 | if(!itemVisible(currentItem())) { | 142 | if(!itemVisible(currentItem())) { |
143 | if(currentItem() == 0) { | 143 | if(currentItem() == 0) { |
144 | setTopItem(0); | 144 | setTopItem(0); |
145 | } else { | 145 | } else { |
146 | setTopItem(topItem()+1); | 146 | setTopItem(topItem()+1); |
147 | } | 147 | } |
148 | } | 148 | } |
149 | break; | 149 | break; |
150 | case Key_I: | 150 | case Key_I: |
151 | QTimer::singleShot( 11, this, SLOT ( oneDown() ) ); | 151 | QTimer::singleShot( 11, this, SLOT ( oneDown() ) ); |
152 | e->ignore(); | 152 | e->ignore(); |
153 | break; | 153 | break; |
154 | case Key_Shift: | 154 | case Key_Shift: |
155 | emit shiftDown(); | 155 | emit shiftDown(); |
156 | break; | 156 | break; |
157 | default: | 157 | default: |
158 | e->ignore(); | 158 | e->ignore(); |
159 | break; | 159 | break; |
160 | } | 160 | } |
161 | } | 161 | } |
162 | 162 | ||
163 | void KNoScrollListBox::oneDown() | 163 | void KNoScrollListBox::oneDown() |
164 | { | 164 | { |
165 | setCurrentItem((currentItem()+1)%count()); | 165 | setCurrentItem((currentItem()+1)%count()); |
166 | if(!itemVisible(currentItem())) { | 166 | if(!itemVisible(currentItem())) { |
167 | if(currentItem() == 0) { | 167 | if(currentItem() == 0) { |
168 | setTopItem(0); | 168 | setTopItem(0); |
169 | } else { | 169 | } else { |
170 | setTopItem(topItem()+1); | 170 | setTopItem(topItem()+1); |
171 | } | 171 | } |
172 | } | 172 | } |
173 | } | 173 | } |
174 | void KNoScrollListBox::keyReleaseEvent(QKeyEvent *e) | 174 | void KNoScrollListBox::keyReleaseEvent(QKeyEvent *e) |
175 | { | 175 | { |
176 | switch(e->key()) { | 176 | switch(e->key()) { |
177 | case Key_Shift: | 177 | case Key_Shift: |
178 | emit shiftUp(); | 178 | emit shiftUp(); |
179 | break; | 179 | break; |
180 | default: | 180 | default: |
181 | break; | 181 | break; |
182 | } | 182 | } |
183 | } | 183 | } |
184 | 184 | ||
185 | void KNoScrollListBox::mousePressEvent(QMouseEvent *e) | 185 | void KNoScrollListBox::mousePressEvent(QMouseEvent *e) |
186 | { | 186 | { |
187 | QListBox::mousePressEvent(e); | 187 | QListBox::mousePressEvent(e); |
188 | 188 | ||
189 | if(e->button() == RightButton) { | 189 | if(e->button() == RightButton) { |
190 | emit rightClick(); | 190 | emit rightClick(); |
191 | } | 191 | } |
192 | } | 192 | } |
193 | 193 | ||
194 | MonthViewItem::MonthViewItem( Incidence *incidence, QDate qd, const QString & s) | 194 | MonthViewItem::MonthViewItem( Incidence *incidence, QDate qd, const QString & s) |
195 | : QListBoxItem() | 195 | : QListBoxItem() |
196 | { | 196 | { |
197 | setText( s ); | 197 | setText( s ); |
198 | 198 | ||
199 | mIncidence = incidence; | 199 | mIncidence = incidence; |
200 | mDate = qd; | 200 | mDate = qd; |
201 | mRecur = false; | 201 | mRecur = false; |
202 | mAlarm = false; | 202 | mAlarm = false; |
203 | mReply = false; | 203 | mReply = false; |
204 | mInfo = false; | 204 | mInfo = false; |
205 | } | 205 | } |
206 | 206 | ||
207 | void MonthViewItem::paint(QPainter *p) | 207 | void MonthViewItem::paint(QPainter *p) |
208 | { | 208 | { |
209 | #if QT_VERSION >= 0x030000 | 209 | #if QT_VERSION >= 0x030000 |
210 | bool sel = isSelected(); | 210 | bool sel = isSelected(); |
211 | #else | 211 | #else |
212 | bool sel = selected(); | 212 | bool sel = selected(); |
213 | #endif | 213 | #endif |
214 | 214 | ||
215 | 215 | ||
216 | if (KOPrefs::instance()->mMonthViewUsesCategoryColor) | 216 | if (KOPrefs::instance()->mMonthViewUsesCategoryColor) |
217 | { | 217 | { |
218 | p->setBackgroundColor( palette().color( QPalette::Normal, \ | 218 | p->setBackgroundColor( palette().color( QPalette::Normal, \ |
219 | sel ? QColorGroup::Highlight : QColorGroup::Background ) ); | 219 | sel ? QColorGroup::Highlight : QColorGroup::Background ) ); |
220 | p->eraseRect( 0, 0, listBox()->maxItemWidth(), height( listBox() ) ); | 220 | p->eraseRect( 0, 0, listBox()->maxItemWidth(), height( listBox() ) ); |
221 | } | 221 | } |
222 | int x = 1; | 222 | int x = 1; |
223 | //int y = 3;//(height() - mRecurPixmap.height()) /2; | 223 | //int y = 3;//(height() - mRecurPixmap.height()) /2; |
224 | int size = PIXMAP_SIZE; | 224 | int size = PIXMAP_SIZE; |
225 | if ( QApplication::desktop()->width() < 300 ) | 225 | if ( QApplication::desktop()->width() < 300 ) |
226 | size = 3; | 226 | size = 3; |
227 | int y = (height( listBox () ) - size -1 ) /2; | 227 | int heihei = height( listBox () ); |
228 | int y = (heihei - size -1 ) /2; | ||
228 | 229 | ||
229 | if ( KOPrefs::instance()->mMonthShowIcons ) { | 230 | if ( KOPrefs::instance()->mMonthShowIcons ) { |
230 | if ( mInfo ) { | 231 | if ( mInfo ) { |
231 | p->fillRect ( x, y,size,size, Qt::darkGreen ); | 232 | p->fillRect ( x, y,size,size, Qt::darkGreen ); |
232 | x += size + 1; | 233 | x += size + 1; |
233 | } | 234 | } |
234 | if ( mRecur ) { | 235 | if ( mRecur ) { |
235 | p->fillRect ( x, y,size,size, Qt::blue ); | 236 | p->fillRect ( x, y,size,size, Qt::blue ); |
236 | x += size + 1; | 237 | x += size + 1; |
237 | } | 238 | } |
238 | if ( mAlarm ) { | 239 | if ( mAlarm ) { |
239 | p->fillRect ( x, y,size,size, Qt::red ); | 240 | p->fillRect ( x, y,size,size, Qt::red ); |
240 | x += size + 1; | 241 | x += size + 1; |
241 | } | 242 | } |
242 | if ( mReply ) { | 243 | if ( mReply ) { |
243 | p->fillRect ( x, y,size,size, Qt::yellow ); | 244 | p->fillRect ( x, y,size,size, Qt::yellow ); |
244 | x += size + 1; | 245 | x += size + 1; |
245 | } | 246 | } |
246 | } | 247 | } |
247 | if ( mMultiday ) { | 248 | if ( mMultiday ) { |
248 | int yyy = y+(size/2); | 249 | int yyy = y+(size/2); |
249 | int sizeM = size+2; | 250 | int sizeM = size+2; |
250 | p->setBrush( QBrush::SolidPattern ); | 251 | p->setBrush( QBrush::SolidPattern ); |
251 | p->drawLine ( x+1, yyy, x +sizeM +sizeM/2-1, yyy ) ; | 252 | p->drawLine ( x+1, yyy, x +sizeM +sizeM/2-1, yyy ) ; |
252 | if ( mMultiday == 2 || mMultiday == 3 ) { | 253 | if ( mMultiday == 2 || mMultiday == 3 ) { |
253 | QPointArray pa ( 3 ); | 254 | QPointArray pa ( 3 ); |
254 | pa.setPoint (0, x, yyy ); | 255 | pa.setPoint (0, x, yyy ); |
255 | pa.setPoint (1, x+sizeM/2, yyy+sizeM/2 ); | 256 | pa.setPoint (1, x+sizeM/2, yyy+sizeM/2 ); |
256 | pa.setPoint (2, x+sizeM/2, yyy-sizeM/2 ); | 257 | pa.setPoint (2, x+sizeM/2, yyy-sizeM/2 ); |
257 | p->drawPolygon( pa ); | 258 | p->drawPolygon( pa ); |
258 | } | 259 | } |
259 | if ( mMultiday == 2 || mMultiday == 1 ) { | 260 | if ( mMultiday == 2 || mMultiday == 1 ) { |
260 | QPointArray pa ( 3 ); | 261 | QPointArray pa ( 3 ); |
261 | pa.setPoint (0, x+sizeM +sizeM/2, yyy ); | 262 | pa.setPoint (0, x+sizeM +sizeM/2, yyy ); |
262 | pa.setPoint (1, x+sizeM, yyy+sizeM/2 ); | 263 | pa.setPoint (1, x+sizeM, yyy+sizeM/2 ); |
263 | pa.setPoint (2, x+sizeM, yyy-sizeM/2 ); | 264 | pa.setPoint (2, x+sizeM, yyy-sizeM/2 ); |
264 | p->drawPolygon( pa ); | 265 | p->drawPolygon( pa ); |
265 | } | 266 | } |
266 | if ( mMultiday == 1 ) { | 267 | if ( mMultiday == 1 ) { |
267 | // p->fillRect ( x, yyy-sizeM/2+1, sizeM/2, size, QBrush ( QBrush::SolidPattern ) ); | 268 | // p->fillRect ( x, yyy-sizeM/2+1, sizeM/2, size, QBrush ( QBrush::SolidPattern ) ); |
268 | 269 | ||
269 | p->drawLine ( x+1, yyy-sizeM/2, x+1, yyy+sizeM/2 ); | 270 | p->drawLine ( x+1, yyy-sizeM/2, x+1, yyy+sizeM/2 ); |
270 | } | 271 | } |
271 | if ( mMultiday == 3 ) { | 272 | if ( mMultiday == 3 ) { |
272 | // p->fillRect ( x+sizeM, yyy-sizeM/2+1, sizeM/2, size, QBrush ( QBrush::SolidPattern ) ); | 273 | // p->fillRect ( x+sizeM, yyy-sizeM/2+1, sizeM/2, size, QBrush ( QBrush::SolidPattern ) ); |
273 | p->drawLine ( x+sizeM +sizeM/2-1, yyy-sizeM/2, x+sizeM +sizeM/2-1, yyy+sizeM/2 ); | 274 | p->drawLine ( x+sizeM +sizeM/2-1, yyy-sizeM/2, x+sizeM +sizeM/2-1, yyy+sizeM/2 ); |
274 | 275 | ||
275 | } | 276 | } |
276 | x += sizeM/2 + 1; | 277 | x += sizeM/2 + 1; |
277 | x += sizeM + 1; | 278 | x += sizeM + 1; |
278 | } | 279 | } |
279 | QFontMetrics fm = p->fontMetrics(); | 280 | QFontMetrics fm = p->fontMetrics(); |
280 | int yPos; | 281 | int yPos; |
281 | int pmheight = size; | 282 | int pmheight = size; |
282 | if( pmheight < fm.height() ) | 283 | if( pmheight < fm.height() ) |
283 | yPos = fm.ascent() + fm.leading()/2; | 284 | yPos = fm.ascent() + fm.leading()/2; |
284 | else | 285 | else |
285 | yPos = pmheight/2 - fm.height()/2 + fm.ascent(); | 286 | yPos = pmheight/2 - fm.height()/2 + fm.ascent(); |
286 | p->setPen( palette().color( QPalette::Normal, sel ? \ | 287 | p->setPen( palette().color( QPalette::Normal, sel ? \ |
287 | QColorGroup::HighlightedText : QColorGroup::Foreground ) ); | 288 | QColorGroup::HighlightedText : QColorGroup::Foreground ) ); |
288 | p->drawText( x, yPos, text() ); | 289 | p->drawText( x, yPos, text() ); |
289 | if ( mIncidence->cancelled() ) { | 290 | if ( mIncidence->cancelled() ) { |
290 | int wid = fm.width( text() ); | 291 | int wid = fm.width( text() ); |
291 | p->drawLine( x, yPos- fm.height()/2+3,x+wid, yPos- fm.height()/2 +3); | 292 | p->drawLine( x, heihei/2 ,x+wid, heihei/2 ); |
292 | } | 293 | } |
293 | 294 | ||
294 | } | 295 | } |
295 | 296 | ||
296 | int MonthViewItem::height(const QListBox *lb) const | 297 | int MonthViewItem::height(const QListBox *lb) const |
297 | { | 298 | { |
298 | if ( lb ) | 299 | if ( lb ) |
299 | return lb->fontMetrics().lineSpacing()+1; | 300 | return lb->fontMetrics().lineSpacing()+1; |
300 | return 10; | 301 | return 10; |
301 | } | 302 | } |
302 | 303 | ||
303 | int MonthViewItem::width(const QListBox *lb) const | 304 | int MonthViewItem::width(const QListBox *lb) const |
304 | { | 305 | { |
305 | int size = PIXMAP_SIZE; | 306 | int size = PIXMAP_SIZE; |
306 | if ( QApplication::desktop()->width() < 300 ) | 307 | if ( QApplication::desktop()->width() < 300 ) |
307 | size = 3; | 308 | size = 3; |
308 | int x = 1; | 309 | int x = 1; |
309 | if ( KOPrefs::instance()->mMonthShowIcons ) { | 310 | if ( KOPrefs::instance()->mMonthShowIcons ) { |
310 | if ( mInfo ) { | 311 | if ( mInfo ) { |
311 | x += size + 1; | 312 | x += size + 1; |
312 | } | 313 | } |
313 | if( mRecur ) { | 314 | if( mRecur ) { |
314 | x += size+1; | 315 | x += size+1; |
315 | } | 316 | } |
316 | if( mAlarm ) { | 317 | if( mAlarm ) { |
317 | x += size+1; | 318 | x += size+1; |
318 | } | 319 | } |
319 | if( mReply ) { | 320 | if( mReply ) { |
320 | x += size+1; | 321 | x += size+1; |
321 | } | 322 | } |
322 | } | 323 | } |
323 | if( mMultiday ) { | 324 | if( mMultiday ) { |
324 | x += size+1+2+size/2; | 325 | x += size+1+2+size/2; |
325 | } | 326 | } |
326 | 327 | ||
327 | return( x + lb->fontMetrics().width( text() ) + 1 ); | 328 | return( x + lb->fontMetrics().width( text() ) + 1 ); |
328 | } | 329 | } |
329 | 330 | ||
330 | 331 | ||
331 | MonthViewCell::MonthViewCell( KOMonthView *parent,QWidget* par ) | 332 | MonthViewCell::MonthViewCell( KOMonthView *parent,QWidget* par ) |
332 | : QWidget( par ), | 333 | : QWidget( par ), |
333 | mMonthView( parent ) | 334 | mMonthView( parent ) |
334 | { | 335 | { |
335 | 336 | ||
336 | QVBoxLayout *topLayout = new QVBoxLayout( this ); | 337 | QVBoxLayout *topLayout = new QVBoxLayout( this ); |
337 | 338 | ||
338 | // mLabel = new QLabel( this );QPushButton | 339 | // mLabel = new QLabel( this );QPushButton |
339 | mLabel = new QPushButton( this ); | 340 | mLabel = new QPushButton( this ); |
340 | //mLabel->setFrameStyle( QFrame::Panel | QFrame::Plain ); | 341 | //mLabel->setFrameStyle( QFrame::Panel | QFrame::Plain ); |
341 | //mLabel->setLineWidth( 1 ); | 342 | //mLabel->setLineWidth( 1 ); |
342 | //mLabel->setAlignment( AlignCenter ); | 343 | //mLabel->setAlignment( AlignCenter ); |
343 | mLabel->setFlat( true ); | 344 | mLabel->setFlat( true ); |
344 | mLabel->setFocusPolicy(NoFocus); | 345 | mLabel->setFocusPolicy(NoFocus); |
345 | mItemList = new KNoScrollListBox( this ); | 346 | mItemList = new KNoScrollListBox( this ); |
346 | mItemList->setMinimumSize( 10, 10 ); | 347 | mItemList->setMinimumSize( 10, 10 ); |
347 | mItemList->setFrameStyle( QFrame::Panel | QFrame::Plain ); | 348 | mItemList->setFrameStyle( QFrame::Panel | QFrame::Plain ); |
348 | mItemList->setLineWidth( 1 ); | 349 | mItemList->setLineWidth( 1 ); |
349 | topLayout->addWidget( mItemList ); | 350 | topLayout->addWidget( mItemList ); |
350 | mLabel->raise(); | 351 | mLabel->raise(); |
351 | // QColor( 0,0,255 ) QColor( 160,1600,255 ) | 352 | // QColor( 0,0,255 ) QColor( 160,1600,255 ) |
352 | mStandardPalette = palette(); | 353 | mStandardPalette = palette(); |
353 | mStandardPalette.setColor(QColorGroup::Base, mStandardPalette.color( QPalette::Normal, QColorGroup::Background ) ); | 354 | mStandardPalette.setColor(QColorGroup::Base, mStandardPalette.color( QPalette::Normal, QColorGroup::Background ) ); |
354 | 355 | ||
355 | enableScrollBars( false ); | 356 | enableScrollBars( false ); |
356 | updateConfig(); | 357 | updateConfig(); |
357 | //connect( mLabel, SIGNAL( clicked( )), SLOT( newEvent() )); | 358 | //connect( mLabel, SIGNAL( clicked( )), SLOT( newEvent() )); |
358 | connect( mLabel, SIGNAL( clicked( )), SLOT( showDay() )); | 359 | connect( mLabel, SIGNAL( clicked( )), SLOT( showDay() )); |
359 | connect( mItemList, SIGNAL( doubleClicked( QListBoxItem *) ), | 360 | connect( mItemList, SIGNAL( doubleClicked( QListBoxItem *) ), |
360 | SLOT( defaultAction( QListBoxItem * ) ) ); | 361 | SLOT( defaultAction( QListBoxItem * ) ) ); |
361 | connect( mItemList, SIGNAL( rightButtonPressed( QListBoxItem *, | 362 | connect( mItemList, SIGNAL( rightButtonPressed( QListBoxItem *, |
362 | const QPoint &) ), | 363 | const QPoint &) ), |
363 | SLOT( contextMenu( QListBoxItem * ) ) ); | 364 | SLOT( contextMenu( QListBoxItem * ) ) ); |
364 | connect( mItemList, SIGNAL( highlighted( QListBoxItem *) ), | 365 | connect( mItemList, SIGNAL( highlighted( QListBoxItem *) ), |
365 | SLOT( selection( QListBoxItem * ) ) ); | 366 | SLOT( selection( QListBoxItem * ) ) ); |
366 | connect( mItemList, SIGNAL( clicked( QListBoxItem * ) ), | 367 | connect( mItemList, SIGNAL( clicked( QListBoxItem * ) ), |
367 | SLOT( cellClicked( QListBoxItem * ) ) ); | 368 | SLOT( cellClicked( QListBoxItem * ) ) ); |
368 | connect( mItemList, SIGNAL( clicked( QListBoxItem * ) ), | 369 | connect( mItemList, SIGNAL( clicked( QListBoxItem * ) ), |
369 | SLOT( selection( QListBoxItem * ) ) ); | 370 | SLOT( selection( QListBoxItem * ) ) ); |
370 | } | 371 | } |
371 | #ifdef DESKTOP_VERSION | 372 | #ifdef DESKTOP_VERSION |
372 | QToolTipGroup *MonthViewCell::toolTipGroup() | 373 | QToolTipGroup *MonthViewCell::toolTipGroup() |
373 | { | 374 | { |
374 | if (!mToolTipGroup) mToolTipGroup = new QToolTipGroup(0); | 375 | if (!mToolTipGroup) mToolTipGroup = new QToolTipGroup(0); |
375 | return mToolTipGroup; | 376 | return mToolTipGroup; |
376 | } | 377 | } |
377 | #endif | 378 | #endif |
378 | 379 | ||
379 | void MonthViewCell::setDate( const QDate &date ) | 380 | void MonthViewCell::setDate( const QDate &date ) |
380 | { | 381 | { |
381 | // kdDebug() << "MonthViewCell::setDate(): " << date.toString() << endl; | 382 | // kdDebug() << "MonthViewCell::setDate(): " << date.toString() << endl; |
382 | mDate = date; | 383 | mDate = date; |
383 | 384 | ||
384 | 385 | ||
385 | 386 | ||
386 | //resizeEvent( 0 ); | 387 | //resizeEvent( 0 ); |
387 | } | 388 | } |