-rw-r--r-- | korganizer/koagenda.cpp | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/korganizer/koagenda.cpp b/korganizer/koagenda.cpp index 8c2996b..dcb46a8 100644 --- a/korganizer/koagenda.cpp +++ b/korganizer/koagenda.cpp | |||
@@ -175,7 +175,7 @@ KOAgenda::KOAgenda(int columns,int rows,int rowSize,QWidget *parent, | |||
175 | mGridSpacingY = rowSize; | 175 | mGridSpacingY = rowSize; |
176 | mAllDayMode = false; | 176 | mAllDayMode = false; |
177 | #ifndef DESKTOP_VERSION | 177 | #ifndef DESKTOP_VERSION |
178 | QPEApplication::setStylusOperation( viewport(), QPEApplication::RightOnHold ); | 178 | //QPEApplication::setStylusOperation( viewport(), QPEApplication::RightOnHold ); |
179 | #endif | 179 | #endif |
180 | mHolidayMask = 0; | 180 | mHolidayMask = 0; |
181 | init(); | 181 | init(); |
@@ -399,10 +399,14 @@ bool KOAgenda::eventFilter_mouse(QObject *object, QMouseEvent *me) | |||
399 | static bool blockMoving = true; | 399 | static bool blockMoving = true; |
400 | static bool leftMouseDown = false; | 400 | static bool leftMouseDown = false; |
401 | static bool rightMouseDown = false; | 401 | static bool rightMouseDown = false; |
402 | static QTime rightClickTime; | ||
403 | bool rightButtonPressed = false; | ||
402 | switch (me->type()) { | 404 | switch (me->type()) { |
403 | case QEvent::MouseButtonPress: | 405 | case QEvent::MouseButtonPress: |
404 | if (me->button() == LeftButton) | 406 | rightClickTime.restart(); |
407 | if (me->button() == LeftButton) { | ||
405 | leftMouseDown = true; | 408 | leftMouseDown = true; |
409 | } | ||
406 | else if (me->button() == RightButton) | 410 | else if (me->button() == RightButton) |
407 | rightMouseDown = true; | 411 | rightMouseDown = true; |
408 | blockMoving = true; | 412 | blockMoving = true; |
@@ -446,8 +450,10 @@ bool KOAgenda::eventFilter_mouse(QObject *object, QMouseEvent *me) | |||
446 | break; | 450 | break; |
447 | 451 | ||
448 | case QEvent::MouseButtonRelease: | 452 | case QEvent::MouseButtonRelease: |
453 | if ( rightClickTime.elapsed() > 700 && blockMoving ) | ||
454 | rightButtonPressed = true; | ||
449 | if (object != viewport()) { | 455 | if (object != viewport()) { |
450 | if (me->button() == RightButton) { | 456 | if (me->button() == RightButton || rightButtonPressed ) { |
451 | if ( blockMoving ) { | 457 | if ( blockMoving ) { |
452 | mClickedItem = (KOAgendaItem *)object; | 458 | mClickedItem = (KOAgendaItem *)object; |
453 | if (mActionItem ) { | 459 | if (mActionItem ) { |
@@ -473,6 +479,7 @@ bool KOAgenda::eventFilter_mouse(QObject *object, QMouseEvent *me) | |||
473 | mActionItem = 0; | 479 | mActionItem = 0; |
474 | mActionType = NOP; | 480 | mActionType = NOP; |
475 | mItemMoved = 0; | 481 | mItemMoved = 0; |
482 | leftMouseDown = false; | ||
476 | return true; | 483 | return true; |
477 | } | 484 | } |
478 | endItemAction(); | 485 | endItemAction(); |
@@ -480,7 +487,7 @@ bool KOAgenda::eventFilter_mouse(QObject *object, QMouseEvent *me) | |||
480 | } | 487 | } |
481 | 488 | ||
482 | } else { // ---------- viewport() | 489 | } else { // ---------- viewport() |
483 | if (me->button() == RightButton) { //right click | 490 | if (me->button() == RightButton || rightButtonPressed ) { //right click |
484 | if ( blockMoving ) { // we did mot moved the mouse much - popup menu | 491 | if ( blockMoving ) { // we did mot moved the mouse much - popup menu |
485 | if ( leftMouseDown ) { // we have a simulated right click - clear left mouse action | 492 | if ( leftMouseDown ) { // we have a simulated right click - clear left mouse action |
486 | endSelectAction( false ); // do not emit new event signal | 493 | endSelectAction( false ); // do not emit new event signal |