src/hbcore/gestures/hbpangesturelogic_p.h
changeset 30 80e4d18b72f5
parent 28 b7da29130b0e
--- a/src/hbcore/gestures/hbpangesturelogic_p.h	Fri Sep 17 08:32:10 2010 +0300
+++ b/src/hbcore/gestures/hbpangesturelogic_p.h	Mon Oct 04 00:38:12 2010 +0300
@@ -26,11 +26,8 @@
 #ifndef HBPANGESTURELOGIC_P_H
 #define HBPANGESTURELOGIC_P_H
 
-#include "hbgestures_p.h"
 #include "hbglobal.h"
-#include "hbpangesture_p.h"
 
-#include <QTime>
 #include <QEvent>
 #include <QGestureRecognizer>
 #include <QList>
@@ -55,40 +52,44 @@
             Qt::GestureState gestureState,
             HbPanGesture *gesture,
             QObject *watched,
-            QMouseEvent *me );
+            QMouseEvent *me,
+            qint64 currentTime );
     QGestureRecognizer::Result handleMouseMove(
             Qt::GestureState gestureState,
             HbPanGesture *gesture,
             QObject *watched,
-            QMouseEvent *me );
+            QMouseEvent *me,
+            qint64 currentTime );
     QGestureRecognizer::Result handleMouseRelease(
             Qt::GestureState gestureState,
             HbPanGesture *gesture,
             QObject *watched,
-            QMouseEvent *me );
+            QMouseEvent *me,
+            qint64 currentTime );
     QGestureRecognizer::Result handleTouchBegin(
             Qt::GestureState gestureState,
             HbPanGesture *gesture,
             QObject *watched,
-            QTouchEvent *te );
+            QTouchEvent *te,
+            qint64 currentTime );
     QGestureRecognizer::Result handleTouchMove(
             Qt::GestureState gestureState,
             HbPanGesture *gesture,
             QObject *watched,
-            QTouchEvent *te );
+            QTouchEvent *te,
+            qint64 currentTime );
     QGestureRecognizer::Result handleTouchEnd(
             Qt::GestureState gestureState,
             HbPanGesture *gesture,
             QObject *watched,
-            QTouchEvent *te );
+            QTouchEvent *te,
+            qint64 currentTime );
     QGestureRecognizer::Result recognize(
             Qt::GestureState gestureState,
             HbPanGesture *gesture,
             QObject *watched,
             QEvent *event,
-            QTime currentTime);
-
-    QTime mCurrentTime;    
+            qint64 currentTime);
 };
 
 #endif // HBPANGESTURELOGIC_P_H