diff options
author | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-05-04 15:17:34 (GMT) |
---|---|---|
committer | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-05-04 15:17:34 (GMT) |
commit | 2d0f49df3a3c44601bf2e41ea722c2384b71aab0 (patch) | |
tree | 41720f7885f1a3c0c2720fa0d0c388956001bb35 /src/gui/kernel/qwidget_p.h | |
parent | 36c97c3e530969d172179d715805804ffb96e792 (diff) | |
download | Qt-2d0f49df3a3c44601bf2e41ea722c2384b71aab0.zip Qt-2d0f49df3a3c44601bf2e41ea722c2384b71aab0.tar.gz Qt-2d0f49df3a3c44601bf2e41ea722c2384b71aab0.tar.bz2 |
Support sending touch events (with multiple touch points) to multiple widgets simultaneously
This is a first attempt, and it works, but it will need to be cleaned
up to remove as much state from QWidgetPrivate as possible.
Diffstat (limited to 'src/gui/kernel/qwidget_p.h')
-rw-r--r-- | src/gui/kernel/qwidget_p.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/kernel/qwidget_p.h b/src/gui/kernel/qwidget_p.h index 8731551..df17566 100644 --- a/src/gui/kernel/qwidget_p.h +++ b/src/gui/kernel/qwidget_p.h @@ -663,6 +663,9 @@ public: } QSize adjustedSize() const; + + QEvent::Type touchEventType; + QList<QTouchEvent::TouchPoint *> currentTouchPoints, activeTouchPoints; }; inline QWExtra *QWidgetPrivate::extraData() const |