diff -r a5a1242fd2e8 -r b0711afde476 calendarui/views/src/calenpreviewpane.cpp --- a/calendarui/views/src/calenpreviewpane.cpp Thu Sep 02 20:25:23 2010 +0300 +++ b/calendarui/views/src/calenpreviewpane.cpp Fri Sep 17 08:29:05 2010 +0300 @@ -421,6 +421,9 @@ event->accept(Qt::PanGesture); } else { event->accept(Qt::PanGesture); + // Since user tried to tap and ended up giving low pan + // hence, handle it as tap + tapTriggered(); OstTraceFunctionExit0( DUP1_CALENPREVIEWPANE_GESTUREEVENT_EXIT ); return; } @@ -437,6 +440,9 @@ event->accept(Qt::PanGesture); }else { event->accept(Qt::PanGesture); + // Since user tried to tap and ended up giving low pan + // hence, handle it as tap + tapTriggered(); OstTraceFunctionExit0( DUP2_CALENPREVIEWPANE_GESTUREEVENT_EXIT ); return; } @@ -444,14 +450,15 @@ } } else if(QTapGesture *tapGesture = qobject_cast(event->gesture(Qt::TapGesture))) { if (tapGesture && tapGesture->state() == Qt::GestureFinished) { - HbInstantFeedback::play(HbFeedback::Basic); - // Preview pane tapped - // Stop the scrolling first - stopScrolling(); - // Issue command to launch agenda view - mServices.IssueCommandL(ECalenAgendaView); - mView->disconnectAboutToQuitEvent(); - event->accept(Qt::TapGesture); + event->accept(Qt::TapGesture); + // Handle the tap + tapTriggered(); + } + } else if(QTapAndHoldGesture *tapGesture = qobject_cast(event->gesture(Qt::TapAndHoldGesture))) { + if (tapGesture && tapGesture->state() == Qt::GestureFinished) { + event->accept(Qt::TapAndHoldGesture); + // Handle the tap + tapTriggered(); } } @@ -459,6 +466,24 @@ } /*! + Handles the tap and launches the agendaview + */ +void CalenPreviewPane::tapTriggered() +{ + OstTraceFunctionEntry0( CALENPREVIEWPANE_TAPTRIGGERED_ENTRY ); + + HbInstantFeedback::play(HbFeedback::Basic); + // Preview pane tapped + // Stop the scrolling first + stopScrolling(); + // Issue command to launch agenda view + mServices.IssueCommandL(ECalenAgendaView); + mView->disconnectAboutToQuitEvent(); + + OstTraceFunctionExit0( CALENPREVIEWPANE_TAPTRIGGERED_EXIT ); +} + +/*! Set monthview pointer */ void CalenPreviewPane::setView(CalenMonthView* view)