summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qplatformintegration.h
diff options
context:
space:
mode:
authorMorten Johan Sorvig <morten.sorvig@nokia.com>2012-08-08 11:44:39 +0200
committerQt by Nokia <qt-info@nokia.com>2012-08-22 07:01:17 +0200
commit6c1670d8c273819435867c42725c0db0eee597dc (patch)
tree9de8f59b14624cb8c9678fa47820771f95e5b9d4 /src/gui/kernel/qplatformintegration.h
parent09dd19df5c4b708960e5aade568eb15d996ef200 (diff)
Add hint for touch -> mouse event synthesizing
Commit 7808ec79 changes QApplication to synthesize mouse events from (unhandled) touch events. On Mac OS X this creates a conflict for two-finger scroll swipes, which generates both touch events and mouse wheel events: scrolling in QTextEdit will also select the text. Add a SynthesizeMouseFromTouchEvents platform style hint that enables the event synthesising. Set to true by default and false in Cocoa. Change-Id: I1ffa5a141476aa38b81ce92a87eff676c7ec2276 Reviewed-by: Morten Johan Sørvig <morten.sorvig@nokia.com>
Diffstat (limited to 'src/gui/kernel/qplatformintegration.h')
-rw-r--r--src/gui/kernel/qplatformintegration.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/kernel/qplatformintegration.h b/src/gui/kernel/qplatformintegration.h
index 8ed48b268a..49dce3ea22 100644
--- a/src/gui/kernel/qplatformintegration.h
+++ b/src/gui/kernel/qplatformintegration.h
@@ -134,7 +134,8 @@ public:
PasswordMaskDelay,
FontSmoothingGamma,
StartDragVelocity,
- UseRtlExtensions
+ UseRtlExtensions,
+ SynthesizeMouseFromTouchEvents
};
virtual QVariant styleHint(StyleHint hint) const;