summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qapplication_win.cpp
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@trolltech.com>2009-08-10 19:50:01 +0200
committerJoerg Bornemann <joerg.bornemann@trolltech.com>2009-08-10 19:51:40 +0200
commitdd9d869300d34725bc480d827f91b3103c84f045 (patch)
tree328c248c188d547fdbea40a67ba06929de0980b8 /src/gui/kernel/qapplication_win.cpp
parent4096911423fcd52c59d83f153b3a83ae99312a70 (diff)
fixing the Windows CE build after adding gesture support
We must guard the code with QT_WINCE_GESTURES. Reviewed-by: TrustMe
Diffstat (limited to 'src/gui/kernel/qapplication_win.cpp')
-rw-r--r--src/gui/kernel/qapplication_win.cpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/gui/kernel/qapplication_win.cpp b/src/gui/kernel/qapplication_win.cpp
index bb910b70ef..a0142e1645 100644
--- a/src/gui/kernel/qapplication_win.cpp
+++ b/src/gui/kernel/qapplication_win.cpp
@@ -816,13 +816,13 @@ void qt_init(QApplicationPrivate *priv, int)
priv->GetGestureInfo = 0;
priv->GetGestureExtraArgs = 0;
-#ifdef Q_WS_WINCE_WM
+#if defined(Q_WS_WINCE_WM) && defined(QT_WINCE_GESTURES)
priv->GetGestureInfo = (PtrGetGestureInfo) &TKGetGestureInfo;
priv->GetGestureExtraArgs = (PtrGetGestureExtraArgs) &TKGetGestureExtraArguments;
priv->CloseGestureInfoHandle = (PtrCloseGestureInfoHandle) 0;
priv->SetGestureConfig = (PtrSetGestureConfig) 0;
priv->GetGestureConfig = (PtrGetGestureConfig) 0;
-#else
+#elif !defined(Q_WS_WINCE)
priv->GetGestureInfo =
(PtrGetGestureInfo)QLibrary::resolve(QLatin1String("user32"),
"GetGestureInfo");
@@ -1252,7 +1252,10 @@ void QApplication::beep()
static void alert_widget(QWidget *widget, int duration)
{
-#ifndef Q_OS_WINCE
+#ifdef Q_OS_WINCE
+ Q_UNUSED(widget);
+ Q_UNUSED(duration);
+#else
bool stopFlash = duration < 0;
if (widget && (!widget->isActiveWindow() || stopFlash)) {
@@ -3729,10 +3732,14 @@ bool QETWidget::translateGestureEvent(const MSG &msg)
gi.cbSize = sizeof(GESTUREINFO);
QApplicationPrivate *qAppPriv = QApplicationPrivate::instance();
-#ifdef Q_WS_WINCE_WM
+#if defined(Q_WS_WINCE_WM) && defined(QT_WINCE_GESTURES)
+#undef GID_ZOOM
#define GID_ZOOM 0xf000
+#undef GID_ROTATE
#define GID_ROTATE 0xf001
+#undef GID_TWOFINGERTAP
#define GID_TWOFINGERTAP 0xf002
+#undef GID_ROLLOVER
#define GID_ROLLOVER 0xf003
#endif
BOOL bResult = false;