diff options
author | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-03-24 10:04:45 (GMT) |
---|---|---|
committer | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-03-24 10:04:45 (GMT) |
commit | 07696ec4844e6eb9b9aec58a381d9c0f9403e7c2 (patch) | |
tree | 3fddf1e0bd2ae7271197c87f1cfbe89f2732da85 /doc | |
parent | 4e3ddb46e28f05b784c4cffec146c3f2306a3db8 (diff) | |
download | Qt-07696ec4844e6eb9b9aec58a381d9c0f9403e7c2.zip Qt-07696ec4844e6eb9b9aec58a381d9c0f9403e7c2.tar.gz Qt-07696ec4844e6eb9b9aec58a381d9c0f9403e7c2.tar.bz2 |
add the Qt::WA_AcceptTouchEvents attribute
this attribute must be set for a widget to get touch events (otherwise
the widget will only get mouse events).
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/qnamespace.qdoc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/src/qnamespace.qdoc b/doc/src/qnamespace.qdoc index 6220795..07972af 100644 --- a/doc/src/qnamespace.qdoc +++ b/doc/src/qnamespace.qdoc @@ -1192,6 +1192,11 @@ on Mac when using Carbon. This attribute has no effect on Cocoa. The attribute is off by default and can be enabled on a per-window basis. + \value WA_AcceptTouchEvents Allows touch events (see QTouchEvent) + to be sent to the widget. Must be set on all widgets that can + handle touch events. Without this attribute set, events from a + touch device will be sent as mouse events. + \omitvalue WA_SetLayoutDirection \omitvalue WA_InputMethodTransparent \omitvalue WA_WState_CompressKeys |