summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qwindowsysteminterface_p.h
diff options
context:
space:
mode:
authorTasuku Suzuki <stasuku@gmail.com>2014-01-03 14:38:12 +0900
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-10 19:36:47 +0100
commitf568e43e107ba909eaad300729ee93354b0a1846 (patch)
tree1d82b73ff7b6c9c349e6f92a425370e842862e17 /src/gui/kernel/qwindowsysteminterface_p.h
parent263fdd15da120c664de9ab6c43932a70cda9997b (diff)
Make qtbase compile with QT_NO_GESTURES
Change-Id: I90f173265e177ff37ce80da3983080651856259d Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'src/gui/kernel/qwindowsysteminterface_p.h')
-rw-r--r--src/gui/kernel/qwindowsysteminterface_p.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/kernel/qwindowsysteminterface_p.h b/src/gui/kernel/qwindowsysteminterface_p.h
index 8cafb8da5c..42dbe7509e 100644
--- a/src/gui/kernel/qwindowsysteminterface_p.h
+++ b/src/gui/kernel/qwindowsysteminterface_p.h
@@ -91,7 +91,9 @@ public:
PlatformPanel = UserInputEvent | 0x17,
ContextMenu = UserInputEvent | 0x18,
EnterWhatsThisMode = UserInputEvent | 0x19,
+#ifndef QT_NO_GESTURES
Gesture = UserInputEvent | 0x1a,
+#endif
ApplicationStateChanged = 0x19,
FlushEvents = 0x20,
WindowScreenChanged = 0x21
@@ -400,6 +402,7 @@ public:
};
#endif
+#ifndef QT_NO_GESTURES
class GestureEvent : public InputEvent {
public:
GestureEvent(QWindow *window, ulong time, Qt::NativeGestureType type, QPointF pos, QPointF globalPos)
@@ -414,6 +417,7 @@ public:
ulong sequenceId;
quint64 intValue;
};
+#endif
class WindowSystemEventList {
QList<WindowSystemEvent *> impl;