summaryrefslogtreecommitdiffstats
path: root/src/corelib/global/qnamespace.h
diff options
context:
space:
mode:
authorDenis Dzyubenko <denis.dzyubenko@nokia.com>2009-03-20 16:26:55 (GMT)
committerDenis Dzyubenko <denis.dzyubenko@nokia.com>2009-05-11 14:51:44 (GMT)
commit20afdd7120872cc3c52b34283a574370db71efab (patch)
treef6638e33af6f133068e8feb08097cac4716fb5da /src/corelib/global/qnamespace.h
parent76fa94daad48382630a7a1b15dc692c6dcad6b93 (diff)
downloadQt-20afdd7120872cc3c52b34283a574370db71efab.zip
Qt-20afdd7120872cc3c52b34283a574370db71efab.tar.gz
Qt-20afdd7120872cc3c52b34283a574370db71efab.tar.bz2
Added Qt::GestureUpdated state for the gesture.
So in total there are three main states - Started, Updated, Finished.
Diffstat (limited to 'src/corelib/global/qnamespace.h')
-rw-r--r--src/corelib/global/qnamespace.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/corelib/global/qnamespace.h b/src/corelib/global/qnamespace.h
index 7875fba..b5b5291 100644
--- a/src/corelib/global/qnamespace.h
+++ b/src/corelib/global/qnamespace.h
@@ -1565,8 +1565,10 @@ public:
enum GestureState
{
- GestureStarted = 0,
- GestureFinished = 1
+ NoGesture,
+ GestureStarted = 1,
+ GestureUpdated = 2,
+ GestureFinished = 3
};
enum DirectionType