-rw-r--r-- | korganizer/koagenda.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/korganizer/koagenda.cpp b/korganizer/koagenda.cpp index 355f4bb..99009a5 100644 --- a/korganizer/koagenda.cpp +++ b/korganizer/koagenda.cpp | |||
@@ -256,374 +256,376 @@ void KOAgenda::init() | |||
256 | //enableClipper(true); | 256 | //enableClipper(true); |
257 | 257 | ||
258 | // Grab key strokes for keyboard navigation of agenda. Seems to have no | 258 | // Grab key strokes for keyboard navigation of agenda. Seems to have no |
259 | // effect. Has to be fixed. | 259 | // effect. Has to be fixed. |
260 | setFocusPolicy(WheelFocus); | 260 | setFocusPolicy(WheelFocus); |
261 | 261 | ||
262 | connect(&mScrollUpTimer,SIGNAL(timeout()),SLOT(scrollUp())); | 262 | connect(&mScrollUpTimer,SIGNAL(timeout()),SLOT(scrollUp())); |
263 | connect(&mScrollDownTimer,SIGNAL(timeout()),SLOT(scrollDown())); | 263 | connect(&mScrollDownTimer,SIGNAL(timeout()),SLOT(scrollDown())); |
264 | connect(&mResizeTimer,SIGNAL(timeout()),SLOT(finishResize())); | 264 | connect(&mResizeTimer,SIGNAL(timeout()),SLOT(finishResize())); |
265 | 265 | ||
266 | mStartCellX = 0; | 266 | mStartCellX = 0; |
267 | mStartCellY = 0; | 267 | mStartCellY = 0; |
268 | mCurrentCellX = 0; | 268 | mCurrentCellX = 0; |
269 | mCurrentCellY = 0; | 269 | mCurrentCellY = 0; |
270 | 270 | ||
271 | mSelectionCellX = 0; | 271 | mSelectionCellX = 0; |
272 | mSelectionYTop = 0; | 272 | mSelectionYTop = 0; |
273 | mSelectionHeight = 0; | 273 | mSelectionHeight = 0; |
274 | 274 | ||
275 | mOldLowerScrollValue = -1; | 275 | mOldLowerScrollValue = -1; |
276 | mOldUpperScrollValue = -1; | 276 | mOldUpperScrollValue = -1; |
277 | 277 | ||
278 | mClickedItem = 0; | 278 | mClickedItem = 0; |
279 | 279 | ||
280 | mActionItem = 0; | 280 | mActionItem = 0; |
281 | mActionType = NOP; | 281 | mActionType = NOP; |
282 | mItemMoved = false; | 282 | mItemMoved = false; |
283 | 283 | ||
284 | mSelectedItem = 0; | 284 | mSelectedItem = 0; |
285 | 285 | ||
286 | // mItems.setAutoDelete(true); | 286 | // mItems.setAutoDelete(true); |
287 | 287 | ||
288 | resizeContents( mGridSpacingX * mColumns + 1 , mGridSpacingY * mRows + 1 ); | 288 | resizeContents( mGridSpacingX * mColumns + 1 , mGridSpacingY * mRows + 1 ); |
289 | 289 | ||
290 | viewport()->update(); | 290 | viewport()->update(); |
291 | 291 | ||
292 | setMinimumSize(30, 1); | 292 | setMinimumSize(30, 1); |
293 | // setMaximumHeight(mGridSpacingY * mRows + 5); | 293 | // setMaximumHeight(mGridSpacingY * mRows + 5); |
294 | 294 | ||
295 | // Disable horizontal scrollbar. This is a hack. The geometry should be | 295 | // Disable horizontal scrollbar. This is a hack. The geometry should be |
296 | // controlled in a way that the contents horizontally always fits. Then it is | 296 | // controlled in a way that the contents horizontally always fits. Then it is |
297 | // not necessary to turn off the scrollbar. | 297 | // not necessary to turn off the scrollbar. |
298 | setHScrollBarMode(AlwaysOff); | 298 | setHScrollBarMode(AlwaysOff); |
299 | if ( ! mAllDayMode ) | 299 | if ( ! mAllDayMode ) |
300 | setVScrollBarMode(AlwaysOn); | 300 | setVScrollBarMode(AlwaysOn); |
301 | else | 301 | else |
302 | setVScrollBarMode(AlwaysOff); | 302 | setVScrollBarMode(AlwaysOff); |
303 | 303 | ||
304 | setStartHour(KOPrefs::instance()->mDayBegins); | 304 | setStartHour(KOPrefs::instance()->mDayBegins); |
305 | 305 | ||
306 | calculateWorkingHours(); | 306 | calculateWorkingHours(); |
307 | 307 | ||
308 | connect(verticalScrollBar(),SIGNAL(valueChanged(int)), | 308 | connect(verticalScrollBar(),SIGNAL(valueChanged(int)), |
309 | SLOT(checkScrollBoundaries(int))); | 309 | SLOT(checkScrollBoundaries(int))); |
310 | 310 | ||
311 | // Create the Marcus Bains line. | 311 | // Create the Marcus Bains line. |
312 | if(mAllDayMode) | 312 | if(mAllDayMode) |
313 | mMarcusBains = 0; | 313 | mMarcusBains = 0; |
314 | else { | 314 | else { |
315 | mMarcusBains = new MarcusBains(this); | 315 | mMarcusBains = new MarcusBains(this); |
316 | addChild(mMarcusBains); | 316 | addChild(mMarcusBains); |
317 | } | 317 | } |
318 | mPopupKind = 0; | 318 | mPopupKind = 0; |
319 | mPopupItem = 0; | 319 | mPopupItem = 0; |
320 | } | 320 | } |
321 | 321 | ||
322 | void KOAgenda::clear() | 322 | void KOAgenda::clear() |
323 | { | 323 | { |
324 | KOAgendaItem *item; | 324 | KOAgendaItem *item; |
325 | for ( item=mItems.first(); item != 0; item=mItems.next() ) { | 325 | for ( item=mItems.first(); item != 0; item=mItems.next() ) { |
326 | mUnusedItems.append( item ); | 326 | mUnusedItems.append( item ); |
327 | //item->hide(); | 327 | //item->hide(); |
328 | } | 328 | } |
329 | mItems.clear(); | 329 | mItems.clear(); |
330 | mSelectedItem = 0; | 330 | mSelectedItem = 0; |
331 | clearSelection(); | 331 | clearSelection(); |
332 | } | 332 | } |
333 | 333 | ||
334 | void KOAgenda::clearSelection() | 334 | void KOAgenda::clearSelection() |
335 | { | 335 | { |
336 | mSelectionCellX = 0; | 336 | mSelectionCellX = 0; |
337 | mSelectionYTop = 0; | 337 | mSelectionYTop = 0; |
338 | mSelectionHeight = 0; | 338 | mSelectionHeight = 0; |
339 | } | 339 | } |
340 | 340 | ||
341 | void KOAgenda::marcus_bains() | 341 | void KOAgenda::marcus_bains() |
342 | { | 342 | { |
343 | if(mMarcusBains) mMarcusBains->updateLocation(true); | 343 | if(mMarcusBains) mMarcusBains->updateLocation(true); |
344 | } | 344 | } |
345 | 345 | ||
346 | 346 | ||
347 | void KOAgenda::changeColumns(int columns) | 347 | void KOAgenda::changeColumns(int columns) |
348 | { | 348 | { |
349 | if (columns == 0) { | 349 | if (columns == 0) { |
350 | qDebug("KOAgenda::changeColumns() called with argument 0 "); | 350 | qDebug("KOAgenda::changeColumns() called with argument 0 "); |
351 | return; | 351 | return; |
352 | } | 352 | } |
353 | clear(); | 353 | clear(); |
354 | mColumns = columns; | 354 | mColumns = columns; |
355 | computeSizes(); | 355 | computeSizes(); |
356 | } | 356 | } |
357 | 357 | ||
358 | /* | 358 | /* |
359 | This is the eventFilter function, which gets all events from the KOAgendaItems | 359 | This is the eventFilter function, which gets all events from the KOAgendaItems |
360 | contained in the agenda. It has to handle moving and resizing for all items. | 360 | contained in the agenda. It has to handle moving and resizing for all items. |
361 | */ | 361 | */ |
362 | bool KOAgenda::eventFilter ( QObject *object, QEvent *event ) | 362 | bool KOAgenda::eventFilter ( QObject *object, QEvent *event ) |
363 | { | 363 | { |
364 | // kdDebug() << "KOAgenda::eventFilter" << endl; | 364 | // kdDebug() << "KOAgenda::eventFilter" << endl; |
365 | switch(event->type()) { | 365 | switch(event->type()) { |
366 | case QEvent::MouseButtonPress: | 366 | case QEvent::MouseButtonPress: |
367 | case QEvent::MouseButtonDblClick: | 367 | case QEvent::MouseButtonDblClick: |
368 | case QEvent::MouseButtonRelease: | 368 | case QEvent::MouseButtonRelease: |
369 | case QEvent::MouseMove: | 369 | case QEvent::MouseMove: |
370 | return eventFilter_mouse(object, static_cast<QMouseEvent *>(event)); | 370 | return eventFilter_mouse(object, static_cast<QMouseEvent *>(event)); |
371 | 371 | ||
372 | case (QEvent::Leave): | 372 | case (QEvent::Leave): |
373 | if (!mActionItem) | 373 | if (!mActionItem) |
374 | setCursor(arrowCursor); | 374 | setCursor(arrowCursor); |
375 | return true; | 375 | return true; |
376 | 376 | ||
377 | default: | 377 | default: |
378 | return QScrollView::eventFilter(object,event); | 378 | return QScrollView::eventFilter(object,event); |
379 | } | 379 | } |
380 | } | 380 | } |
381 | void KOAgenda::popupMenu() | 381 | void KOAgenda::popupMenu() |
382 | { | 382 | { |
383 | mPopupTimer->stop(); | 383 | mPopupTimer->stop(); |
384 | if ( mPopupKind == 1 ) { | 384 | if ( mPopupKind == 1 || mPopupKind == 3 ) { |
385 | if (mActionItem ) { | 385 | if (mActionItem ) { |
386 | endItemAction(); | 386 | endItemAction(); |
387 | } | 387 | } |
388 | mLeftMouseDown = false; // no more leftMouse computation | 388 | mLeftMouseDown = false; // no more leftMouse computation |
389 | if (mPopupItem) { | 389 | if (mPopupItem) { |
390 | //mClickedItem = mPopupItem; | 390 | //mClickedItem = mPopupItem; |
391 | selectItem(mPopupItem); | 391 | selectItem(mPopupItem); |
392 | if ( mAllAgendaPopup && KOPrefs::instance()->mBlockPopupMenu ) | 392 | if ( mAllAgendaPopup && KOPrefs::instance()->mBlockPopupMenu && mPopupKind == 1 ) |
393 | mAllAgendaPopup->installEventFilter( this ); | 393 | mAllAgendaPopup->installEventFilter( this ); |
394 | emit showIncidencePopupSignal(mPopupItem->incidence()); | 394 | emit showIncidencePopupSignal(mPopupItem->incidence()); |
395 | 395 | ||
396 | } | 396 | } |
397 | } else if ( mPopupKind == 2 ) { | 397 | } else if ( mPopupKind == 2 || mPopupKind == 4 ) { |
398 | if ( mLeftMouseDown ) { // we have a simulated right click - clear left mouse action | 398 | if ( mLeftMouseDown ) { // we have a simulated right click - clear left mouse action |
399 | endSelectAction( false ); // do not emit new event signal | 399 | endSelectAction( false ); // do not emit new event signal |
400 | mLeftMouseDown = false; // no more leftMouse computation | 400 | mLeftMouseDown = false; // no more leftMouse computation |
401 | } | 401 | } |
402 | if ( KOPrefs::instance()->mBlockPopupMenu ) | 402 | if ( KOPrefs::instance()->mBlockPopupMenu && mPopupKind == 2 ) |
403 | mNewItemPopup->installEventFilter( this ); | 403 | mNewItemPopup->installEventFilter( this ); |
404 | mNewItemPopup->popup( mPopupPos); | 404 | mNewItemPopup->popup( mPopupPos); |
405 | 405 | ||
406 | } | 406 | } |
407 | mLeftMouseDown = false; | 407 | mLeftMouseDown = false; |
408 | mPopupItem = 0; | 408 | mPopupItem = 0; |
409 | mPopupKind = 0; | 409 | mPopupKind = 0; |
410 | } | 410 | } |
411 | 411 | ||
412 | bool KOAgenda::eventFilter_mouse(QObject *object, QMouseEvent *me) | 412 | bool KOAgenda::eventFilter_mouse(QObject *object, QMouseEvent *me) |
413 | { | 413 | { |
414 | static int startX = 0; | 414 | static int startX = 0; |
415 | static int startY = 0; | 415 | static int startY = 0; |
416 | static int blockmoveDist = ( QApplication::desktop()->width() < 480 ? 15 : 20 ); | 416 | static int blockmoveDist = ( QApplication::desktop()->width() < 480 ? 15 : 20 ); |
417 | static bool blockMoving = true; | 417 | static bool blockMoving = true; |
418 | 418 | ||
419 | //qDebug("KOAgenda::eventFilter_mous "); | 419 | //qDebug("KOAgenda::eventFilter_mous "); |
420 | if ( object == mNewItemPopup ) { | 420 | if ( object == mNewItemPopup ) { |
421 | //qDebug("mNewItemPopup "); | 421 | //qDebug("mNewItemPopup "); |
422 | if ( me->type() == QEvent::MouseButtonRelease ) { | 422 | if ( me->type() == QEvent::MouseButtonRelease ) { |
423 | mNewItemPopup->removeEventFilter( this ); | 423 | mNewItemPopup->removeEventFilter( this ); |
424 | int dX = me->globalPos().x() - mPopupPos.x();; | 424 | int dX = me->globalPos().x() - mPopupPos.x();; |
425 | if ( dX < 0 ) | 425 | if ( dX < 0 ) |
426 | dX = -dX; | 426 | dX = -dX; |
427 | int dY = me->globalPos().y() - mPopupPos.y(); | 427 | int dY = me->globalPos().y() - mPopupPos.y(); |
428 | if ( dY < 0 ) | 428 | if ( dY < 0 ) |
429 | dY = -dY; | 429 | dY = -dY; |
430 | if ( dX > blockmoveDist || dY > blockmoveDist ) { | 430 | if ( dX > blockmoveDist || dY > blockmoveDist ) { |
431 | mNewItemPopup->hide(); | 431 | mNewItemPopup->hide(); |
432 | } | 432 | } |
433 | } | 433 | } |
434 | return true; | 434 | return true; |
435 | } | 435 | } |
436 | if ( object == mAllAgendaPopup ) { | 436 | if ( object == mAllAgendaPopup ) { |
437 | //qDebug(" mAllAgendaPopup "); | 437 | //qDebug(" mAllAgendaPopup "); |
438 | if ( me->type() == QEvent::MouseButtonRelease ) { | 438 | if ( me->type() == QEvent::MouseButtonRelease ) { |
439 | mAllAgendaPopup->removeEventFilter( this ); | 439 | mAllAgendaPopup->removeEventFilter( this ); |
440 | int dX = me->globalPos().x() - mPopupPos.x();; | 440 | int dX = me->globalPos().x() - mPopupPos.x();; |
441 | if ( dX < 0 ) | 441 | if ( dX < 0 ) |
442 | dX = -dX; | 442 | dX = -dX; |
443 | int dY = me->globalPos().y() - mPopupPos.y(); | 443 | int dY = me->globalPos().y() - mPopupPos.y(); |
444 | if ( dY < 0 ) | 444 | if ( dY < 0 ) |
445 | dY = -dY; | 445 | dY = -dY; |
446 | if ( dX > blockmoveDist || dY > blockmoveDist ) { | 446 | if ( dX > blockmoveDist || dY > blockmoveDist ) { |
447 | mAllAgendaPopup->hide(); | 447 | mAllAgendaPopup->hide(); |
448 | } | 448 | } |
449 | } | 449 | } |
450 | return true; | 450 | return true; |
451 | } | 451 | } |
452 | QPoint viewportPos; | 452 | QPoint viewportPos; |
453 | if (object != viewport()) { | 453 | if (object != viewport()) { |
454 | viewportPos = ((QWidget *)object)->mapToParent(me->pos()); | 454 | viewportPos = ((QWidget *)object)->mapToParent(me->pos()); |
455 | } else { | 455 | } else { |
456 | viewportPos = me->pos(); | 456 | viewportPos = me->pos(); |
457 | } | 457 | } |
458 | 458 | ||
459 | switch (me->type()) { | 459 | switch (me->type()) { |
460 | case QEvent::MouseButtonPress: | 460 | case QEvent::MouseButtonPress: |
461 | if (me->button() == LeftButton) { | 461 | if (me->button() == LeftButton) { |
462 | mPopupTimer->start( 600 ); | 462 | mPopupTimer->start( 600 ); |
463 | mLeftMouseDown = true; | 463 | mLeftMouseDown = true; |
464 | } | 464 | } |
465 | blockMoving = true; | 465 | blockMoving = true; |
466 | startX = viewportPos.x(); | 466 | startX = viewportPos.x(); |
467 | startY = viewportPos.y(); | 467 | startY = viewportPos.y(); |
468 | mPopupPos = me->globalPos(); | 468 | mPopupPos = me->globalPos(); |
469 | if (object != viewport()) { | 469 | if (object != viewport()) { |
470 | mPopupItem = (KOAgendaItem *)object; | 470 | mPopupItem = (KOAgendaItem *)object; |
471 | mPopupKind = 1; | 471 | mPopupKind = 1; |
472 | if (me->button() == RightButton) { | 472 | if (me->button() == RightButton) { |
473 | mPopupKind = 3; | ||
473 | popupMenu(); | 474 | popupMenu(); |
474 | } else if (me->button() == LeftButton) { | 475 | } else if (me->button() == LeftButton) { |
475 | mActionItem = (KOAgendaItem *)object; | 476 | mActionItem = (KOAgendaItem *)object; |
476 | if (mActionItem) { | 477 | if (mActionItem) { |
477 | emit signalClearSelection(); | 478 | emit signalClearSelection(); |
478 | slotClearSelection(); | 479 | slotClearSelection(); |
479 | selectItem(mActionItem); | 480 | selectItem(mActionItem); |
480 | Incidence *incidence = mActionItem->incidence(); | 481 | Incidence *incidence = mActionItem->incidence(); |
481 | if ( incidence->isReadOnly() /*|| incidence->recurrence()->doesRecur() */) { | 482 | if ( incidence->isReadOnly() /*|| incidence->recurrence()->doesRecur() */) { |
482 | mActionItem = 0; | 483 | mActionItem = 0; |
483 | } else { | 484 | } else { |
484 | startItemAction(viewportPos); | 485 | startItemAction(viewportPos); |
485 | } | 486 | } |
486 | } | 487 | } |
487 | } | 488 | } |
488 | } else { // ---------- viewport() | 489 | } else { // ---------- viewport() |
489 | mPopupItem = 0; | 490 | mPopupItem = 0; |
490 | mPopupKind = 2; | 491 | mPopupKind = 2; |
491 | selectItem(0); | 492 | selectItem(0); |
492 | mActionItem = 0; | 493 | mActionItem = 0; |
493 | if (me->button() == RightButton) { | 494 | if (me->button() == RightButton) { |
494 | int x,y; | 495 | int x,y; |
495 | viewportToContents(viewportPos.x(),viewportPos.y(),x,y); | 496 | viewportToContents(viewportPos.x(),viewportPos.y(),x,y); |
496 | int gx,gy; | 497 | int gx,gy; |
497 | contentsToGrid(x,y,gx,gy); | 498 | contentsToGrid(x,y,gx,gy); |
498 | mCurrentCellX = gx; | 499 | mCurrentCellX = gx; |
499 | mCurrentCellY = gy; | 500 | mCurrentCellY = gy; |
500 | mStartCellX = gx; | 501 | mStartCellX = gx; |
501 | mStartCellY = gy; | 502 | mStartCellY = gy; |
503 | mPopupKind = 4; | ||
502 | popupMenu(); | 504 | popupMenu(); |
503 | } else if (me->button() == LeftButton) { | 505 | } else if (me->button() == LeftButton) { |
504 | setCursor(arrowCursor); | 506 | setCursor(arrowCursor); |
505 | startSelectAction(viewportPos); | 507 | startSelectAction(viewportPos); |
506 | } | 508 | } |
507 | } | 509 | } |
508 | break; | 510 | break; |
509 | 511 | ||
510 | case QEvent::MouseButtonRelease: | 512 | case QEvent::MouseButtonRelease: |
511 | if (me->button() == LeftButton ) { | 513 | if (me->button() == LeftButton ) { |
512 | mPopupTimer->stop(); | 514 | mPopupTimer->stop(); |
513 | } | 515 | } |
514 | if (object != viewport()) { | 516 | if (object != viewport()) { |
515 | if (me->button() == LeftButton && mLeftMouseDown) { | 517 | if (me->button() == LeftButton && mLeftMouseDown) { |
516 | if (mActionItem) { | 518 | if (mActionItem) { |
517 | QPoint clipperPos = clipper()->mapFromGlobal(viewport()->mapToGlobal(viewportPos)); | 519 | QPoint clipperPos = clipper()->mapFromGlobal(viewport()->mapToGlobal(viewportPos)); |
518 | //qDebug(" %d %d %d ",clipperPos.y(),visibleHeight() , 9 ); | 520 | //qDebug(" %d %d %d ",clipperPos.y(),visibleHeight() , 9 ); |
519 | if ( mActionType == MOVE && (clipperPos.y() > visibleHeight()-2 ||clipperPos.y() < 0 ) ) { | 521 | if ( mActionType == MOVE && (clipperPos.y() > visibleHeight()-2 ||clipperPos.y() < 0 ) ) { |
520 | mScrollUpTimer.stop(); | 522 | mScrollUpTimer.stop(); |
521 | mScrollDownTimer.stop(); | 523 | mScrollDownTimer.stop(); |
522 | mActionItem->resetMove(); | 524 | mActionItem->resetMove(); |
523 | placeSubCells( mActionItem ); | 525 | placeSubCells( mActionItem ); |
524 | // emit startDragSignal( mActionItem->incidence() ); | 526 | // emit startDragSignal( mActionItem->incidence() ); |
525 | setCursor( arrowCursor ); | 527 | setCursor( arrowCursor ); |
526 | mActionItem = 0; | 528 | mActionItem = 0; |
527 | mActionType = NOP; | 529 | mActionType = NOP; |
528 | mItemMoved = 0; | 530 | mItemMoved = 0; |
529 | mLeftMouseDown = false; | 531 | mLeftMouseDown = false; |
530 | return true; | 532 | return true; |
531 | } | 533 | } |
532 | endItemAction(); | 534 | endItemAction(); |
533 | } | 535 | } |
534 | } | 536 | } |
535 | 537 | ||
536 | } else { // ---------- viewport() | 538 | } else { // ---------- viewport() |
537 | if (me->button() == LeftButton && mLeftMouseDown ) { //left click | 539 | if (me->button() == LeftButton && mLeftMouseDown ) { //left click |
538 | endSelectAction( true ); // emit new event signal | 540 | endSelectAction( true ); // emit new event signal |
539 | } | 541 | } |
540 | } | 542 | } |
541 | if (me->button() == LeftButton) | 543 | if (me->button() == LeftButton) |
542 | mLeftMouseDown = false; | 544 | mLeftMouseDown = false; |
543 | 545 | ||
544 | break; | 546 | break; |
545 | 547 | ||
546 | case QEvent::MouseMove: | 548 | case QEvent::MouseMove: |
547 | //qDebug("mm "); | 549 | //qDebug("mm "); |
548 | if ( !mLeftMouseDown ) | 550 | if ( !mLeftMouseDown ) |
549 | return false; | 551 | return false; |
550 | if ( blockMoving ) { | 552 | if ( blockMoving ) { |
551 | int dX, dY; | 553 | int dX, dY; |
552 | dX = startX - viewportPos.x(); | 554 | dX = startX - viewportPos.x(); |
553 | if ( dX < 0 ) | 555 | if ( dX < 0 ) |
554 | dX = -dX; | 556 | dX = -dX; |
555 | dY = viewportPos.y() - startY; | 557 | dY = viewportPos.y() - startY; |
556 | if ( dY < 0 ) | 558 | if ( dY < 0 ) |
557 | dY = -dY; | 559 | dY = -dY; |
558 | //qDebug("%d %d %d ", dX, dY , blockmoveDist ); | 560 | //qDebug("%d %d %d ", dX, dY , blockmoveDist ); |
559 | if ( dX > blockmoveDist || dY > blockmoveDist ) { | 561 | if ( dX > blockmoveDist || dY > blockmoveDist ) { |
560 | blockMoving = false; | 562 | blockMoving = false; |
561 | } | 563 | } |
562 | } | 564 | } |
563 | if ( ! blockMoving ) | 565 | if ( ! blockMoving ) |
564 | mPopupTimer->stop(); | 566 | mPopupTimer->stop(); |
565 | if (object != viewport()) { | 567 | if (object != viewport()) { |
566 | KOAgendaItem *moveItem = (KOAgendaItem *)object; | 568 | KOAgendaItem *moveItem = (KOAgendaItem *)object; |
567 | if (!moveItem->incidence()->isReadOnly() ) { | 569 | if (!moveItem->incidence()->isReadOnly() ) { |
568 | if (!mActionItem) | 570 | if (!mActionItem) |
569 | setNoActionCursor(moveItem,viewportPos); | 571 | setNoActionCursor(moveItem,viewportPos); |
570 | else { | 572 | else { |
571 | if ( !blockMoving ) | 573 | if ( !blockMoving ) |
572 | performItemAction(viewportPos); | 574 | performItemAction(viewportPos); |
573 | } | 575 | } |
574 | } | 576 | } |
575 | } else { // ---------- viewport() | 577 | } else { // ---------- viewport() |
576 | mPopupPos = viewport()->mapToGlobal( me->pos() ); | 578 | mPopupPos = viewport()->mapToGlobal( me->pos() ); |
577 | if ( mActionType == SELECT ) { | 579 | if ( mActionType == SELECT ) { |
578 | performSelectAction( viewportPos ); | 580 | performSelectAction( viewportPos ); |
579 | } | 581 | } |
580 | } | 582 | } |
581 | break; | 583 | break; |
582 | 584 | ||
583 | case QEvent::MouseButtonDblClick: | 585 | case QEvent::MouseButtonDblClick: |
584 | mPopupTimer->stop(); | 586 | mPopupTimer->stop(); |
585 | if (object == viewport()) { | 587 | if (object == viewport()) { |
586 | selectItem(0); | 588 | selectItem(0); |
587 | int x,y; | 589 | int x,y; |
588 | viewportToContents(viewportPos.x(),viewportPos.y(),x,y); | 590 | viewportToContents(viewportPos.x(),viewportPos.y(),x,y); |
589 | int gx,gy; | 591 | int gx,gy; |
590 | contentsToGrid(x,y,gx,gy); | 592 | contentsToGrid(x,y,gx,gy); |
591 | emit newEventSignal(gx,gy); | 593 | emit newEventSignal(gx,gy); |
592 | } else { | 594 | } else { |
593 | KOAgendaItem *doubleClickedItem = (KOAgendaItem *)object; | 595 | KOAgendaItem *doubleClickedItem = (KOAgendaItem *)object; |
594 | selectItem(doubleClickedItem); | 596 | selectItem(doubleClickedItem); |
595 | if ( KOPrefs::instance()->mEditOnDoubleClick ) | 597 | if ( KOPrefs::instance()->mEditOnDoubleClick ) |
596 | emit editIncidenceSignal(doubleClickedItem->incidence()); | 598 | emit editIncidenceSignal(doubleClickedItem->incidence()); |
597 | else | 599 | else |
598 | emit showIncidenceSignal(doubleClickedItem->incidence()); | 600 | emit showIncidenceSignal(doubleClickedItem->incidence()); |
599 | } | 601 | } |
600 | break; | 602 | break; |
601 | 603 | ||
602 | default: | 604 | default: |
603 | break; | 605 | break; |
604 | } | 606 | } |
605 | return true; | 607 | return true; |
606 | 608 | ||
607 | } | 609 | } |
608 | 610 | ||
609 | void KOAgenda::newItem( int item ) | 611 | void KOAgenda::newItem( int item ) |
610 | { | 612 | { |
611 | if ( item == 1 ) { //new event | 613 | if ( item == 1 ) { //new event |
612 | newEventSignal(mStartCellX ,mStartCellY ); | 614 | newEventSignal(mStartCellX ,mStartCellY ); |
613 | } else | 615 | } else |
614 | if ( item == 2 ) { //new event | 616 | if ( item == 2 ) { //new event |
615 | newTodoSignal(mStartCellX ,mStartCellY ); | 617 | newTodoSignal(mStartCellX ,mStartCellY ); |
616 | } else | 618 | } else |
617 | { | 619 | { |
618 | emit showDateView( item, mStartCellX ); | 620 | emit showDateView( item, mStartCellX ); |
619 | // 3Day view | 621 | // 3Day view |
620 | // 4Week view | 622 | // 4Week view |
621 | // 5Month view | 623 | // 5Month view |
622 | // 6Journal view | 624 | // 6Journal view |
623 | } | 625 | } |
624 | } | 626 | } |
625 | void KOAgenda::slotClearSelection() | 627 | void KOAgenda::slotClearSelection() |
626 | { | 628 | { |
627 | if (mSelectionHeight) { | 629 | if (mSelectionHeight) { |
628 | int selectionX = mSelectionCellX * mGridSpacingX; | 630 | int selectionX = mSelectionCellX * mGridSpacingX; |
629 | int top = mSelectionYTop - 2 *mGridSpacingY; | 631 | int top = mSelectionYTop - 2 *mGridSpacingY; |