The <QtPlugin> header files defines macros for defining plugins. More...
Q_DECLARE_INTERFACE ( ClassName, Identifier ) | |
Q_EXPORT_PLUGIN2 ( PluginName, ClassName ) | |
Q_IMPORT_PLUGIN ( PluginName ) |
See also How to Create Qt Plugins.
This macro associates the given Identifier (a string literal) to the interface class called ClassName. The Identifier must be unique. For example:
Q_DECLARE_INTERFACE(BrushInterface, "com.trolltech.PlugAndPaint.BrushInterface/1.0")
This macro is normally used right after the class definition for ClassName, in a header file. See the Plug & Paint example for details.
If you want to use Q_DECLARE_INTERFACE with interface classes declared in a namespace then you have to make sure the Q_DECLARE_INTERFACE is not inside a namespace though. For example:
namespace Foo { struct MyInterface { ... }; } Q_DECLARE_INTERFACE(Foo::MyInterface, "org.examples.MyInterface")
See also Q_INTERFACES(), Q_EXPORT_PLUGIN2(), and How to Create Qt Plugins.
This macro exports the plugin class ClassName for the plugin specified by PluginName. The value of PluginName should correspond to the TARGET specified in the plugin's project file.
There should be exactly one occurrence of this macro in the source code for a Qt plugin, and it should be used where the implementation is written rather than in a header file.
Example:
Q_EXPORT_PLUGIN2(pnp_extrafilters, ExtraFiltersPlugin)
See the Plug & Paint example for details.
This function was introduced in Qt 4.1.
See also Q_DECLARE_INTERFACE() and How to Create Qt Plugins.
This macro imports the plugin named PluginName, corresponding to the TARGET specified in the plugin's project file.
Inserting this macro into your application's source code will allow you to make use of a static plugin.
Example:
Q_IMPORT_PLUGIN(qjpeg)
Static plugins must also be included by the linker when your application is built. For Qt's predefined plugins, you can use the QTPLUGIN to add the required plugins to your build. For example:
TEMPLATE = app QTPLUGIN += qjpeg qgif qmng # image formats
See also Static Plugins, How to Create Qt Plugins, and Using qmake.
© 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.
All other trademarks are property of their respective owners. Privacy Policy
Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.
Alternatively, this document may be used under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation.