summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets/qabstractplatformmenubar_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/qabstractplatformmenubar_p.h')
-rw-r--r--src/gui/widgets/qabstractplatformmenubar_p.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gui/widgets/qabstractplatformmenubar_p.h b/src/gui/widgets/qabstractplatformmenubar_p.h
index 86e212be9d..cb4e5cba73 100644
--- a/src/gui/widgets/qabstractplatformmenubar_p.h
+++ b/src/gui/widgets/qabstractplatformmenubar_p.h
@@ -41,7 +41,9 @@
#ifndef QABSTRACTPLATFORMMENUBAR_P_H
#define QABSTRACTPLATFORMMENUBAR_P_H
+#include <qfactoryinterface.h>
#include <qglobal.h>
+#include <qplugin.h>
#ifndef QT_NO_MENUBAR
@@ -54,6 +56,16 @@ class QMenuBar;
class QObject;
class QWidget;
+class QAbstractPlatformMenuBar;
+
+struct QPlatformMenuBarFactoryInterface : public QFactoryInterface
+{
+ virtual QAbstractPlatformMenuBar *create() = 0;
+};
+
+#define QPlatformMenuBarFactoryInterface_iid "com.nokia.qt.QPlatformMenuBarFactoryInterface"
+Q_DECLARE_INTERFACE(QPlatformMenuBarFactoryInterface, QPlatformMenuBarFactoryInterface_iid)
+
/*!
The platform-specific implementation of a menubar
*/