summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qapplication.h
diff options
context:
space:
mode:
authorDenis Dzyubenko <denis.dzyubenko@nokia.com>2009-03-06 13:42:51 (GMT)
committerDenis Dzyubenko <denis.dzyubenko@nokia.com>2009-05-11 13:42:39 (GMT)
commit3cad576b7ce221ca92c07a513c4c0fbe9886f8e5 (patch)
tree54d36ca587a642bb25e0473631477b51c3ad66d7 /src/gui/kernel/qapplication.h
parentb231b0bcd36d531d3558cee12be263a98391b9db (diff)
downloadQt-3cad576b7ce221ca92c07a513c4c0fbe9886f8e5.zip
Qt-3cad576b7ce221ca92c07a513c4c0fbe9886f8e5.tar.gz
Qt-3cad576b7ce221ca92c07a513c4c0fbe9886f8e5.tar.bz2
Fixes: Add missing functions for a adding custom gesture recognizers.
Diffstat (limited to 'src/gui/kernel/qapplication.h')
-rw-r--r--src/gui/kernel/qapplication.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/kernel/qapplication.h b/src/gui/kernel/qapplication.h
index 634226f..70458ef 100644
--- a/src/gui/kernel/qapplication.h
+++ b/src/gui/kernel/qapplication.h
@@ -71,6 +71,7 @@ class QStyle;
class QEventLoop;
class QIcon;
class QInputContext;
+class QGestureRecognizer;
template <typename T> class QList;
class QLocale;
#if defined(Q_WS_QWS)
@@ -266,6 +267,9 @@ public:
static bool keypadNavigationEnabled();
#endif
+ void addGestureRecognizer(QGestureRecognizer *recognizer);
+ void removeGestureRecognizer(QGestureRecognizer *recognizer);
+
Q_SIGNALS:
void lastWindowClosed();
void focusChanged(QWidget *old, QWidget *now);