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/qevent.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/qevent.h')
-rw-r--r-- | src/gui/kernel/qevent.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/kernel/qevent.h b/src/gui/kernel/qevent.h index 506e0c1..e9a1386 100644 --- a/src/gui/kernel/qevent.h +++ b/src/gui/kernel/qevent.h @@ -746,6 +746,7 @@ public: private: QTouchEventTouchPointPrivate *d; + friend class QApplication; friend class QApplicationPrivate; }; @@ -759,6 +760,7 @@ public: protected: QList<TouchPoint *> _touchPoints; + friend class QApplication; friend class QApplicationPrivate; }; |