diff options
author | Richard Moe Gustavsen <richard.gustavsen@nokia.com> | 2009-08-27 13:59:36 (GMT) |
---|---|---|
committer | Richard Moe Gustavsen <richard.gustavsen@nokia.com> | 2009-08-27 14:00:40 (GMT) |
commit | 74dfe3e87c6a126e090a86b918f383e4bba9cb5a (patch) | |
tree | 912aa572c51a78d71b13867cf0edead4ff000eca /src/gui/kernel/qapplication_p.h | |
parent | 13ccfeb578f86709ce5cb17c2cde94a5320da379 (diff) | |
download | Qt-74dfe3e87c6a126e090a86b918f383e4bba9cb5a.zip Qt-74dfe3e87c6a126e090a86b918f383e4bba9cb5a.tar.gz Qt-74dfe3e87c6a126e090a86b918f383e4bba9cb5a.tar.bz2 |
Gestures: Implement swipe gesture
Note: if this fails building on any platform, talk to Denis!
Diffstat (limited to 'src/gui/kernel/qapplication_p.h')
-rw-r--r-- | src/gui/kernel/qapplication_p.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/kernel/qapplication_p.h b/src/gui/kernel/qapplication_p.h index e839617..f7f8ce9 100644 --- a/src/gui/kernel/qapplication_p.h +++ b/src/gui/kernel/qapplication_p.h @@ -264,12 +264,15 @@ typedef struct tagGESTURECONFIG class QPanGesture; class QPinchGesture; +class QSwipeGesture; + struct QStandardGestures { QPanGesture *pan; QPinchGesture *pinch; + QSwipeGesture *swipe; - QStandardGestures() : pan(0), pinch(0) { } + QStandardGestures() : pan(0), pinch(0), swipe(0) { } }; |