source: trunk/src/declarative/qml/qdeclarativeextensionplugin.cpp@ 1107

Last change on this file since 1107 was 846, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 6.4 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the QtDeclarative module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include "qdeclarativeextensionplugin.h"
43
44QT_BEGIN_NAMESPACE
45
46/*!
47 \since 4.7
48 \class QDeclarativeExtensionPlugin
49 \brief The QDeclarativeExtensionPlugin class provides an abstract base for custom QML extension plugins.
50
51 \ingroup plugins
52
53 QDeclarativeExtensionPlugin is a plugin interface that makes it possible to
54 create QML extensions that can be loaded dynamically into QML applications.
55 These extensions allow custom QML types to be made available to the QML engine.
56
57 To write a QML extension plugin:
58
59 \list
60 \o Subclass QDeclarativeExtensionPlugin, implement registerTypes() method
61 to register types using qmlRegisterType(), and export the class using the Q_EXPORT_PLUGIN2() macro
62 \o Write an appropriate project file for the plugin
63 \o Create a \l{Writing a qmldir file}{qmldir file} to describe the plugin
64 \endlist
65
66 QML extension plugins can be used to provide either application-specific or
67 library-like plugins. Library plugins should limit themselves to registering types,
68 as any manipulation of the engine's root context may cause conflicts
69 or other issues in the library user's code.
70
71
72 \section1 An example
73
74 Suppose there is a new \c TimeModel C++ class that should be made available
75 as a new QML element. It provides the current time through \c hour and \c minute
76 properties, like this:
77
78 \snippet examples/declarative/cppextensions/plugins/plugin.cpp 0
79 \dots
80
81 To make this class available as a QML type, create a plugin that registers
82 this type with a specific \l {QML Modules}{module} using qmlRegisterType(). For this example the plugin
83 module will be named \c com.nokia.TimeExample (as defined in the project
84 file further below).
85
86 \snippet examples/declarative/cppextensions/plugins/plugin.cpp plugin
87 \codeline
88 \snippet examples/declarative/cppextensions/plugins/plugin.cpp export
89
90 This registers the \c TimeModel class with the 1.0 version of this
91 plugin library, as a QML type called \c Time. The Q_ASSERT statement
92 ensures the module is imported correctly by any QML components that use this plugin.
93
94 The project file defines the project as a plugin library and specifies
95 it should be built into the \c com/nokia/TimeExample directory:
96
97 \code
98 TEMPLATE = lib
99 CONFIG += qt plugin
100 QT += declarative
101
102 DESTDIR = com/nokia/TimeExample
103 TARGET = qmlqtimeexampleplugin
104 ...
105 \endcode
106
107 Finally, a \l{Writing a qmldir file}{qmldir file} is required in the \c com/nokia/TimeExample directory