aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/src/qmllanguageref/modules/identifiedmodules.qdoc
blob: 914a40599ccdc0aba592cd875d4f2f5768e6c3b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the documentation of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:FDL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Free Documentation License Usage
** Alternatively, this file may be used under the terms of the GNU Free
** Documentation License version 1.3 as published by the Free Software
** Foundation and appearing in the file included in the packaging of
** this file. Please review the following information to ensure
** the GNU Free Documentation License version 1.3 requirements
** will be met: https://www.gnu.org/licenses/fdl-1.3.html.
** $QT_END_LICENSE$
**
****************************************************************************/
/*!
\page qtqml-modules-identifiedmodules.html
\title Identified Modules
\brief Creating and importing identified modules

Identified modules are modules that are installed and identifiable to the QML
engine by a URI in the form of a dotted identifier string, which should be
specified by the module in its \c qmldir file.  This enables such modules to
be imported with a unique identifier that remains the same no matter where the
module is located on the local file system.

When importing an identified module, an unquoted identifier is used, with a
mandatory version number:

\snippet qml/imports/installed-module.qml imports

Identified modules must be installed into the
\l{qtqml-syntax-imports.html#qml-import-path}{import path} in order to be found
by the QML engine.

\section1 Locally Installed Identified Modules

A directory of QML and/or C++ files can be shared as an identified module if it
contains a \l{qtqml-modules-qmldir.html}{qmldir file} with the module metadata
and is installed into the QML import path.  Any QML file on the local file
system can import this directory as a module by using an
\l{qtqml-syntax-imports.html}{import} statement that refers to the module's
URI, enabling the file to use the \l{qtqml-typesystem-objecttypes.html}
{QML object types} and \l{qtqml-javascript-resources.html}
{JavaScript resources} defined by the module.

The module's \c qmldir file must reside in a directory structure within the
\l{qtqml-syntax-imports.html#qml-import-path}{import path} that reflects the
URI dotted identifier string, where each dot (".") in the identifier reflects
a sub-level in the directory tree. For example, the \c qmldir file of the
module \c com.mycompany.mymodule must be located in the sub-path
\c com/mycompany/mymodule/qmldir somewhere in the
\l{qtqml-syntax-imports.html#qml-import-path}{import path}.

It is possible to store different versions of a module in subdirectories of its
own. For example, a version 2.1 of a module could be located under
\c com/mycompany/mymodule.2/qmldir or \c com/mycompany/mymodule.2.1/qmldir.
The engine will automatically load the module which matches best.

Alternatively, versioning for different types can be defined within a qmldir
file itself, however this can make updating such a module more difficult (as a
\c qmldir file merge must take place as part of the update procedure).


\section2 An Example

Consider the following QML project directory structure. Under the top level
directory \c myapp, there are a set of common UI components in a sub-directory
named \c mycomponents, and the main application code in a sub-directory named
\c main, like this:

\code
myapp
    |- mycomponents
        |- CheckBox.qml
        |- DialogBox.qml
        |- Slider.qml
    |- main
        |- application.qml
\endcode

To make the \c mycomponents directory available as an identified module, the
directory must include a \l{qtqml-modules-qmldir.html}{qmldir file} that
defines the module identifier, and describes the object types made available by
the module. For example, to make the \c CheckBox, \c DialogBox and \c Slider
types available for version 1.0 of the module, the \c qmldir file would contain
the following:

\code
module myapp.mycomponents
CheckBox 1.0 CheckBox.qml
DialogBox 1.0 DialogBox.qml
Slider 1.0 Slider.qml
\endcode

Additionally, the location of the \c qmldir file in the
\l{qtqml-syntax-imports.html#qml-import-path}{import path} must match the
module's dotted identifier string. So, say the top level \c myapp directory is
located in \c C:\qml\projects, and say the module should be identified as
"myapp.mycomponents". In this case:

\list
\li The path \c C:\qml\projects should be added to the
    \l{qtqml-syntax-imports.html#qml-import-path}{import path}
\li The qmldir file should be located under \c C:\qml\projects\myapp\mycomponents\qmldir
\endlist

Once this is done, a QML file located anywhere on the local filesystem can
import the module by referring to its URI and the appropriate version:

\qml
import myapp.mycomponents 1.0

DialogBox {
    CheckBox {
        // ...
    }
    Slider {
        // ...
    }
}
\endqml

\section1 Remotely Installed Identified Modules

Identified modules are also accessible as a network resource. In the previous
example, if the \c C:\qml\projects directory was hosted as
\c http://www.some-server.com/qml/projects and this URL was added to the QML
import path, the module could be imported in exactly the same way.

Note that when a file imports a module over a network, it can only access QML
and JavaScript resources provided by the module; it cannot access any types
defined by C++ plugins in the module.


\section1 Semantics of Identified Modules

An identified module is provided with the following guarantees by the QML
engine:
\list
\li other modules are unable to modify or override types in the module's
    namespace
\li other modules are unable to register new types into the module's
    namespace
\li usage of type names by clients will resolve deterministically to a given
    type definition depending on the versioning specified and the import order
\endlist

This ensures that clients which use the module can be certain that the
object types defined in the module will behave as the module author documented.

An identified module has several restrictions upon it:
\list
\li an identified module must be installed into the
    \l{qtqml-syntax-imports.html#qml-import-path}{QML import path}
\li the module identifier specified in the \l{qtqml-modules-qmldir.html}
    {module identifier directive} must match the install path of the module
    (relative to the QML import path, where directory separators are replaced
    with period characters)
\li the module must register its types into the module identifier type
    namespace
\li the module may not register types into any other module's namespace
\li clients must specify a version when importing the module
\endlist

For example, if an identified module is installed into
\c{$QML2_IMPORT_PATH/ExampleModule}, the module identifier directive must be:
\code
module ExampleModule
\endcode

If the strict module is installed into
\c{$QML2_IMPORT_PATH/com/example/CustomUi}, the module identifier directive
must be:
\code
module com.example.CustomUi
\endcode

Clients will then be able to import the above module with the following import
statement (assuming that the module registers types into version 1.0 of its
namespace):
\qml
import com.example.CustomUi 1.0
\endqml

*/