diff options
| author | Sami Lempinen <sami.lempinen@nokia.com> | 2011-04-05 06:52:46 (GMT) |
|---|---|---|
| committer | Sami Lempinen <sami.lempinen@nokia.com> | 2011-04-05 06:52:46 (GMT) |
| commit | bb438c948378024669112807a1858a313fac6f01 (patch) | |
| tree | 089f0bbd39c46afbae5e47f8ac990977024bc91c /doc/src/snippets/code/doc_src_plugins-howto.qdoc | |
| parent | ebe4edf58728f4dc5cf633ba6fb92dea721b2bdc (diff) | |
| parent | c3e903409b96fede96cb4a7b95ba308663c88879 (diff) | |
| download | Qt-bb438c948378024669112807a1858a313fac6f01.zip Qt-bb438c948378024669112807a1858a313fac6f01.tar.gz Qt-bb438c948378024669112807a1858a313fac6f01.tar.bz2 | |
Merge remote-tracking branch 'qt/master'
Diffstat (limited to 'doc/src/snippets/code/doc_src_plugins-howto.qdoc')
| -rw-r--r-- | doc/src/snippets/code/doc_src_plugins-howto.qdoc | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/doc/src/snippets/code/doc_src_plugins-howto.qdoc b/doc/src/snippets/code/doc_src_plugins-howto.qdoc index e80faee..b03dfed 100644 --- a/doc/src/snippets/code/doc_src_plugins-howto.qdoc +++ b/doc/src/snippets/code/doc_src_plugins-howto.qdoc @@ -38,69 +38,6 @@ ** ****************************************************************************/ -//! [0] -class MyStylePlugin : public QStylePlugin -{ -public: - QStringList keys() const; - QStyle *create(const QString &key); -}; -//! [0] - - -//! [1] -#include "mystyleplugin.h" - -QStringList MyStylePlugin::keys() const -{ - return QStringList() << "MyStyle"; -} - -QStyle *MyStylePlugin::create(const QString &key) -{ - if (key.toLower() == "mystyle") - return new MyStyle; - return 0; -} - -Q_EXPORT_PLUGIN2(pnp_mystyleplugin, MyStylePlugin) -//! [1] - - -//! [2] -QApplication::setStyle(QStyleFactory::create("MyStyle")); -//! [2] - - -//! [3] -CONFIG += release -//! [3] - - -//! [4] -#include <QApplication> -#include <QtPlugin> - -Q_IMPORT_PLUGIN(qjpeg) -Q_IMPORT_PLUGIN(qgif) -Q_IMPORT_PLUGIN(qkrcodecs) - -int main(int argc, char *argv[]) -{ - QApplication app(argc, argv); - ... - return app.exec(); -} -//! [4] - - -//! [5] -QTPLUGIN += qjpeg \ - qgif \ - qkrcodecs -//! [5] - - //! [6] HKEY_CURRENT_USER\Software\Trolltech\OrganizationDefaults\Qt Plugin Cache 4.2.debug HKEY_CURRENT_USER\Software\Trolltech\OrganizationDefaults\Qt Plugin Cache 4.2.false |
