diff options
author | Denis Dzyubenko <denis.dzyubenko@nokia.com> | 2009-08-03 15:02:58 (GMT) |
---|---|---|
committer | Denis Dzyubenko <denis.dzyubenko@nokia.com> | 2009-08-04 14:22:46 (GMT) |
commit | 6b85ec8790aad8ac01c04f7e7bd4913d8cd8d104 (patch) | |
tree | b45584416ababa562478ca35a7f2ef2c63936942 /src/gui/kernel/qstandardgestures_p.h | |
parent | 6e7a6478279a94a82af46e6814f113244aca46dd (diff) | |
download | Qt-6b85ec8790aad8ac01c04f7e7bd4913d8cd8d104.zip Qt-6b85ec8790aad8ac01c04f7e7bd4913d8cd8d104.tar.gz Qt-6b85ec8790aad8ac01c04f7e7bd4913d8cd8d104.tar.bz2 |
Removed the QTapAndHoldGesture
Moved the gesture implementation to the imageviewer example as it cannot be
fully implemented in a crossplatform way - for example on Windows tap and hold
is a system gesture that is transparent to the application.
Reviewed-by: trustme
Diffstat (limited to 'src/gui/kernel/qstandardgestures_p.h')
-rw-r--r-- | src/gui/kernel/qstandardgestures_p.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/gui/kernel/qstandardgestures_p.h b/src/gui/kernel/qstandardgestures_p.h index dd4fbc0..0fe24ee 100644 --- a/src/gui/kernel/qstandardgestures_p.h +++ b/src/gui/kernel/qstandardgestures_p.h @@ -85,20 +85,6 @@ public: #endif }; -class QTapAndHoldGesturePrivate : public QGesturePrivate -{ - Q_DECLARE_PUBLIC(QTapAndHoldGesture) - -public: - QTapAndHoldGesturePrivate() - : iteration(0) { } - - QBasicTimer timer; - int iteration; - static const int iterationCount; - static const int iterationTimeout; -}; - QT_END_NAMESPACE #endif // QSTANDARDGESTURES_P_H |