summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qapplication.h
diff options
context:
space:
mode:
authorJørgen Lind <jorgen.lind@nokia.com>2011-04-15 17:52:34 +0200
committerJørgen Lind <jorgen.lind@nokia.com>2011-04-15 17:52:34 +0200
commit5769a3bf3c14b08e83ee785a7877be0fd6a37376 (patch)
treefaf0273e1f0a9ddc31de9cfea9ce7cfce15108a6 /src/gui/kernel/qapplication.h
parentdd14d7d1fb0327c702e548db794acca65628ac54 (diff)
Add platformNativeInterface assessor to QApplication
Diffstat (limited to 'src/gui/kernel/qapplication.h')
-rw-r--r--src/gui/kernel/qapplication.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/kernel/qapplication.h b/src/gui/kernel/qapplication.h
index aa62518df8..fb61d36307 100644
--- a/src/gui/kernel/qapplication.h
+++ b/src/gui/kernel/qapplication.h
@@ -79,6 +79,8 @@ template <typename T> class QList;
class QLocale;
#if defined(Q_WS_QWS)
class QDecoration;
+#elif defined(Q_WS_QPA)
+class QPlatformNativeInterface;
#endif
#if defined(Q_OS_SYMBIAN)
class QSymbianEvent;
@@ -254,6 +256,10 @@ public:
#endif
#endif
+#if defined(Q_WS_QPA)
+ static QPlatformNativeInterface *platformNativeInterface();
+#endif
+
#if defined(Q_WS_WIN)
void winFocus(QWidget *, bool);