summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/qnx/qqnxintegration.h
diff options
context:
space:
mode:
authorThomas McGuire <thomas.mcguire@kdab.com>2012-03-29 16:30:19 +0200
committerQt by Nokia <qt-info@nokia.com>2012-04-02 21:02:56 +0200
commitf5bc6db6c3fa58e2bdc615a51709f7970129a2af (patch)
tree8397eeea868e1eb6b5b2820faa8a6208807bd449 /src/plugins/platforms/qnx/qqnxintegration.h
parent5dd7cd5316dc9afd0e99d5c0e17a432a9cb6d33a (diff)
Add a native interface with the possibility to query the window group
This is needed for QtMultimedia, as it uses the native mmrenderer API which expects to get passed the window group when creating a video overlay window. Change-Id: I07d790e6e20714741c04917068b41b71b8939fa4 Reviewed-by: Robin Burchell <robin+qt@viroteck.net> Reviewed-by: Rafael Roquetto <rafael.roquetto@kdab.com>
Diffstat (limited to 'src/plugins/platforms/qnx/qqnxintegration.h')
-rw-r--r--src/plugins/platforms/qnx/qqnxintegration.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/platforms/qnx/qqnxintegration.h b/src/plugins/platforms/qnx/qqnxintegration.h
index 5a5e2c69c9..f29baf1323 100644
--- a/src/plugins/platforms/qnx/qqnxintegration.h
+++ b/src/plugins/platforms/qnx/qqnxintegration.h
@@ -52,6 +52,7 @@ QT_BEGIN_NAMESPACE
class QQnxEventThread;
class QQnxInputContext;
+class QQnxNativeInterface;
class QQnxNavigatorEventHandler;
class QQnxAbstractVirtualKeyboard;
class QQnxWindow;
@@ -86,6 +87,8 @@ public:
QPlatformFontDatabase *fontDatabase() const { return m_fontDatabase; }
+ QPlatformNativeInterface *nativeInterface() const;
+
#ifndef QT_NO_CLIPBOARD
QPlatformClipboard *clipboard() const;
#endif
@@ -114,6 +117,7 @@ private:
QPlatformFontDatabase *m_fontDatabase;
bool m_paintUsingOpenGL;
QAbstractEventDispatcher *m_eventDispatcher;
+ QQnxNativeInterface *m_nativeInterface;
QQnxServices *m_services;
QList<QQnxScreen*> m_screens;
QQnxScreenEventHandler *m_screenEventHandler;