summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2012-05-27 04:51:45 +0200
committerQt by Nokia <qt-info@nokia.com>2012-06-08 00:12:09 +0200
commitd173da37eedf8229518da7998249c47f364566b4 (patch)
tree611c90bc23075acce1772d43746a685e54b78354
parent1402660575609a5e936f7b3f656df49c60b812c4 (diff)
Remove QFactoryInterface from the generic plugins
Change-Id: I5a4351ca4b6605f9628496701bb8c6063cf36c78 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
-rw-r--r--src/gui/kernel/qgenericplugin_qpa.cpp18
-rw-r--r--src/gui/kernel/qgenericplugin_qpa.h10
-rw-r--r--src/gui/kernel/qgenericpluginfactory_qpa.cpp2
-rw-r--r--src/plugins/generic/evdevkeyboard/main.cpp6
-rw-r--r--src/plugins/generic/evdevmouse/main.cpp7
-rw-r--r--src/plugins/generic/evdevtouch/main.cpp6
-rw-r--r--src/plugins/generic/meego/main.cpp6
-rw-r--r--src/plugins/generic/tslib/main.cpp8
8 files changed, 8 insertions, 55 deletions
diff --git a/src/gui/kernel/qgenericplugin_qpa.cpp b/src/gui/kernel/qgenericplugin_qpa.cpp
index 493fc770b5..ef57ab8a9e 100644
--- a/src/gui/kernel/qgenericplugin_qpa.cpp
+++ b/src/gui/kernel/qgenericplugin_qpa.cpp
@@ -56,23 +56,17 @@ QT_BEGIN_NAMESPACE
Note that this class is only available in Qt QPA.
A mouse plugin can be created by subclassing
- QGenericPlugin and reimplementing the pure virtual keys() and
- create() functions. By exporting the derived class using the
- Q_EXPORT_PLUGIN2() macro, The default implementation of the
+ QGenericPlugin and reimplementing the pure virtual create()
+ function. By exporting the derived class using the
+ Q_PLUGIN_METADATA() macro, The default implementation of the
QGenericPluginFactory class will automatically detect the plugin and
load the driver into the server application at run-time. See \l
{How to Create Qt Plugins} for details.
- \sa QGenericPluginFactory
-*/
-
-/*!
- \fn QStringList QGenericPlugin::keys() const
-
- Implement this function to return the list of valid keys, i.e. the
- drivers supported by this plugin.
+ The json metadata file should contain a list of keys supported by this
+ plugin.
- \sa create()
+ \sa QGenericPluginFactory
*/
/*!
diff --git a/src/gui/kernel/qgenericplugin_qpa.h b/src/gui/kernel/qgenericplugin_qpa.h
index 4cba1988ef..2724a8c9e6 100644
--- a/src/gui/kernel/qgenericplugin_qpa.h
+++ b/src/gui/kernel/qgenericplugin_qpa.h
@@ -52,23 +52,15 @@ QT_BEGIN_NAMESPACE
#ifndef QT_NO_LIBRARY
-struct Q_GUI_EXPORT QGenericPluginFactoryInterface : public QFactoryInterface
-{
- virtual QObject* create(const QString &name, const QString &spec) = 0;
-};
-
#define QGenericPluginFactoryInterface_iid "org.qt-project.Qt.QGenericPluginFactoryInterface"
-Q_DECLARE_INTERFACE(QGenericPluginFactoryInterface, QGenericPluginFactoryInterface_iid)
-class Q_GUI_EXPORT QGenericPlugin : public QObject, public QGenericPluginFactoryInterface
+class Q_GUI_EXPORT QGenericPlugin : public QObject
{
Q_OBJECT
- Q_INTERFACES(QGenericPluginFactoryInterface:QFactoryInterface)
public:
explicit QGenericPlugin(QObject *parent = 0);
~QGenericPlugin();
- virtual QStringList keys() const = 0;
virtual QObject* create(const QString& name, const QString &spec) = 0;
};
diff --git a/src/gui/kernel/qgenericpluginfactory_qpa.cpp b/src/gui/kernel/qgenericpluginfactory_qpa.cpp
index 90da16f868..663b88e10d 100644
--- a/src/gui/kernel/qgenericpluginfactory_qpa.cpp
+++ b/src/gui/kernel/qgenericpluginfactory_qpa.cpp
@@ -83,7 +83,7 @@ QObject *QGenericPluginFactory::create(const QString& key, const QString &specif
#if !defined(Q_OS_WIN32) || defined(QT_MAKEDLL)
#ifndef QT_NO_LIBRARY
- if (QObject *object = qLoadPlugin1<QObject, QGenericPluginFactoryInterface>(loader(), driver, specification))
+ if (QObject *object = qLoadPlugin1<QObject, QGenericPlugin>(loader(), driver, specification))
return object;
#endif
#endif
diff --git a/src/plugins/generic/evdevkeyboard/main.cpp b/src/plugins/generic/evdevkeyboard/main.cpp
index b23fac810d..a169eee96b 100644
--- a/src/plugins/generic/evdevkeyboard/main.cpp
+++ b/src/plugins/generic/evdevkeyboard/main.cpp
@@ -52,7 +52,6 @@ class QEvdevKeyboardPlugin : public QGenericPlugin
public:
QEvdevKeyboardPlugin();
- QStringList keys() const;
QObject* create(const QString &key, const QString &specification);
};
@@ -61,11 +60,6 @@ QEvdevKeyboardPlugin::QEvdevKeyboardPlugin()
{
}
-QStringList QEvdevKeyboardPlugin::keys() const
-{
- return QStringList(QLatin1String("EvdevKeyboard"));
-}
-
QObject* QEvdevKeyboardPlugin::create(const QString &key,
const QString &specification)
{
diff --git a/src/plugins/generic/evdevmouse/main.cpp b/src/plugins/generic/evdevmouse/main.cpp
index b1d4703902..6e98cf4a5e 100644
--- a/src/plugins/generic/evdevmouse/main.cpp
+++ b/src/plugins/generic/evdevmouse/main.cpp
@@ -52,7 +52,6 @@ class QEvdevMousePlugin : public QGenericPlugin
public:
QEvdevMousePlugin();
- QStringList keys() const;
QObject* create(const QString &key, const QString &specification);
};
@@ -61,12 +60,6 @@ QEvdevMousePlugin::QEvdevMousePlugin()
{
}
-QStringList QEvdevMousePlugin::keys() const
-{
- return (QStringList()
- << QLatin1String("EvdevMouse"));
-}
-
QObject* QEvdevMousePlugin::create(const QString &key,
const QString &specification)
{
diff --git a/src/plugins/generic/evdevtouch/main.cpp b/src/plugins/generic/evdevtouch/main.cpp
index 2bdee0d332..33af3eddd8 100644
--- a/src/plugins/generic/evdevtouch/main.cpp
+++ b/src/plugins/generic/evdevtouch/main.cpp
@@ -52,7 +52,6 @@ class QEvdevTouchScreenPlugin : public QGenericPlugin
public:
QEvdevTouchScreenPlugin();
- QStringList keys() const;
QObject* create(const QString &key, const QString &specification);
};
@@ -60,11 +59,6 @@ QEvdevTouchScreenPlugin::QEvdevTouchScreenPlugin()
{
}
-QStringList QEvdevTouchScreenPlugin::keys() const
-{
- return QStringList() << "EvdevTouch";
-}
-
QObject* QEvdevTouchScreenPlugin::create(const QString &key,
const QString &spec)
{
diff --git a/src/plugins/generic/meego/main.cpp b/src/plugins/generic/meego/main.cpp
index 074b24a781..83e0a6c71e 100644
--- a/src/plugins/generic/meego/main.cpp
+++ b/src/plugins/generic/meego/main.cpp
@@ -49,7 +49,6 @@ class QMeeGoIntegrationPlugin : public QGenericPlugin
public:
QMeeGoIntegrationPlugin();
- QStringList keys() const;
QObject* create(const QString &key, const QString &specification);
};
@@ -58,11 +57,6 @@ QMeeGoIntegrationPlugin::QMeeGoIntegrationPlugin()
{
}
-QStringList QMeeGoIntegrationPlugin::keys() const
-{
- return QStringList() << QLatin1String("MeeGoIntegration");
-}
-
QObject* QMeeGoIntegrationPlugin::create(const QString &key, const QString &specification)
{
if (!key.compare(QLatin1String("MeeGoIntegration"), Qt::CaseInsensitive))
diff --git a/src/plugins/generic/tslib/main.cpp b/src/plugins/generic/tslib/main.cpp
index dc043138e9..f212626dff 100644
--- a/src/plugins/generic/tslib/main.cpp
+++ b/src/plugins/generic/tslib/main.cpp
@@ -52,7 +52,6 @@ class QTsLibPlugin : public QGenericPlugin
public:
QTsLibPlugin();
- QStringList keys() const;
QObject* create(const QString &key, const QString &specification);
};
@@ -61,13 +60,6 @@ QTsLibPlugin::QTsLibPlugin()
{
}
-QStringList QTsLibPlugin::keys() const
-{
- return (QStringList()
- << QLatin1String("Tslib")
- << QLatin1String("TslibRaw"));
-}
-
QObject* QTsLibPlugin::create(const QString &key,
const QString &specification)
{