diff options
author | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-05-28 10:25:32 (GMT) |
---|---|---|
committer | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-05-28 10:25:32 (GMT) |
commit | ec8654a61e574539f1b948b82a19371b160f4f4e (patch) | |
tree | 9e3f6bd91e26cd3fc4bb72a7300ebb53b53244ee /src/gui/kernel/qapplication_qws.cpp | |
parent | 9667870db5b929c76656f3a4235b9539a1d5de5b (diff) | |
download | Qt-ec8654a61e574539f1b948b82a19371b160f4f4e.zip Qt-ec8654a61e574539f1b948b82a19371b160f4f4e.tar.gz Qt-ec8654a61e574539f1b948b82a19371b160f4f4e.tar.bz2 |
Refactor the touch event dispatching code in preparation for allowing external event generators
This introduces QEvent::RawTouch event type, which should be used by the low-level
translator. This raw QTouchEvent can be sent to either QApplication or to a window,
and Qt will do the rest to dispatch the touch points to the correct place.
Diffstat (limited to 'src/gui/kernel/qapplication_qws.cpp')
-rw-r--r-- | src/gui/kernel/qapplication_qws.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/kernel/qapplication_qws.cpp b/src/gui/kernel/qapplication_qws.cpp index 1125610..a366ed6 100644 --- a/src/gui/kernel/qapplication_qws.cpp +++ b/src/gui/kernel/qapplication_qws.cpp @@ -3746,4 +3746,9 @@ void QApplication::setArgs(int c, char **v) d->argv = v; } +void QApplicationPrivate::initializeMultitouch_sys() +{ } +void QApplicationPrivate::cleanupMultitouch_sys() +{ } + QT_END_NAMESPACE |