Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
topic.qdoc
Go to the documentation of this file.
1
// Copyright (C) 2017 The Qt Company Ltd.
2
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
3
4
/*!
5
\page qtqml-cppintegration-overview.html
6
\title Overview - QML and C++ Integration
7
\brief Highlights important points about integrating C++ with QML.
8
\ingroup explanations-programminglanguages
9
10
QML is designed to be easily extensible through C++ code. The classes in the \l {Qt Qml} module
11
enable QML objects to be loaded and manipulated from C++, and the nature of QML engine's
12
integration with Qt's \l{Meta Object System}{meta object system} enables C++ functionality to be
13
invoked directly from QML. This allows the development of hybrid applications which are implemented
14
with a mixture of QML, JavaScript and C++ code.
15
16
Integrating QML and C++ provides a variety of opportunities, including the ability to:
17
18
\list
19
\li Separate the user interface code from the application logic code, by implementing the former
20
with QML and JavaScript within \l{qtqml-documents-topic.html}{QML documents}, and the latter with
21
C++
22
\li Use and invoke some C++ functionality from QML (for example, to invoke your application logic,
23
use a data model implemented in C++, or call some functions in a third-party C++ library)
24
\li Access functionality in the \l {Qt Qml} or \l {Qt Quick} C++ API (for example, to dynamically generate
25
images using QQuickImageProvider)
26
\li Implement your own \l{qtqml-typesystem-objecttypes.html}{QML object types} from C++
27
\unicode{0x2014} whether for use within your own specific application, or for distribution to others
28
\endlist
29
30
To provide some C++ data or functionality to QML, it must be made available from a QObject-derived
31
class. Due to the QML engine's integration with the meta object system, the properties, methods and
32
signals of any QObject-derived class are accessible from QML, as described in
33
\l{qtqml-cppintegration-exposecppattributes.html}{Exposing Attributes of C++ Types to QML}. Once the
34
required functionality is provided by such a class, it can be exposed to QML in a variety of ways:
35
36
\list
37
\li The class can be
38
\l{qtqml-cppintegration-definetypes.html#registering-an-instantiable-object-type}{
39
registered as an instantiable QML type}, so that it can be instantiated and used like any ordinary
40
\l{qtqml-typesystem-objecttypes.html}{QML object type} from QML code
41
\li The class can be registered as a
42
\l{qtqml-cppintegration-definetypes.html#registering-singleton-objects-with-a-singleton-type}
43
{Singleton Type} so that a single instance of the class may be imported from QML code, allowing the
44
instance's properties, methods and signals to be accessed from QML
45
\li An instance of the class can be \l{qtqml-cppintegration-contextproperties.html}{embedded into
46
QML code} as a \e {context property} or \e {context object}, allowing the instance's properties,
47
methods and signals to be accessed from QML
48
\endlist
49
50
These are the most common methods of accessing C++ functionality from QML code; for more options and
51
details, see the main documentation pages that are described in the sections further below.
52
Additionally, aside from the ability to access C++ functionality from QML, the \l {Qt Qml} module also
53
provides ways to do the reverse and manipulate QML objects from C++ code. See
54
\l{qtqml-cppintegration-interactqmlfromcpp.html}{Interacting with QML Objects from C++} for more
55
details.
56
57
It is often desirable to expose some state as global properties to QML.
58
\l{qtqml-cppintegration-exposecppstate.html}{Exposing State from C++ to QML}
59
describes how to do this.
60
61
Finally, the C++ code may be integrated into either a C++ application or a C++ plugin depending on
62
whether it is to be distributed as a standalone application or a library. A plugin can be integrated
63
with a QML module that can then be imported and used by QML code in other applications; see
64
\l{qtqml-modules-cppplugins.html}{Providing Types and Functionality in a C++ Plugin} for more
65
information.
66
67
\section1 Choosing the Correct Integration Method Between C++ and QML
68
69
To quickly determine which integration method is appropriate for your situation, the following
70
flowchart can be used:
71
72
\image cpp-qml-integration-flowchart.png {Flow chart helps user to select the
73
correct integration}
74
75
For a description of the macros in the flowchart, see the
76
\l {qtqml-cppintegration-definetypes.html}{Defining QML Types from C++} documentation.
77
78
\section1 Exposing Attributes of C++ Classes to QML
79
80
QML can easily be extended from C++ due to the QML engine's integration with the Qt meta object
81
system. This integration allows the properties, methods and signals of any QObject-derived class to
82
be accessible from QML: properties can be read and modified, methods can be invoked from JavaScript
83
expressions and signal handlers are automatically created for signals as necessary. Additionally,
84
enumeration values of a QObject-derived class are accessible from QML.
85
86
See \l{qtqml-cppintegration-exposecppattributes.html}{Exposing Attributes of C++ Types to QML} for
87
more information.
88
89
90
\section1 Defining QML Types from C++
91
92
QML types can be defined in C++ and then registered with the \l{qtqml-typesystem-topic.html}{QML
93
type system}. This allows a C++ class to be instantiated as a \l {QML Object Types}{QML object type}, enabling custom
94
object types to be implemented in C++ and integrated into existing QML code. A C++ class may be also
95
registered for other purposes: for example, it could be registered as a \e {Singleton Type} to enable a
96
single class instance to be imported by QML code, or it could be registered to enable the
97
enumeration values of a non-instantiable class to be accessible from QML.
98
99
Additionally, the \l {Qt Qml} module provides mechanisms to define QML types that integrate with QML
100
concepts like attached properties and default properties.
101
102
For more information on registering and creating custom QML types from C++, see the \l
103
{qtqml-cppintegration-definetypes.html}{Defining QML Types from C++} documentation.
104
105
106
\section1 Embedding C++ Objects into QML with Context Properties
107
108
C++ objects and values can be embedded directly into the context (or \e scope) of loaded QML objects
109
using \e {context properties} and \e {context objects}. This is achieved through the QQmlContext
110
class provided by the \l {Qt Qml} module, which exposes data to the context of a QML component, allowing
111
data to be injected from C++ into QML.
112
113
See \l{qtqml-cppintegration-contextproperties.html}{Embedding C++ Objects into QML with Context
114
Properties} for more information.
115
116
117
\section1 Interacting with QML Objects from C++
118
119
QML object types can be instantiated from C++ and inspected in order to access their properties,
120
invoke their methods and receive their signal notifications. This is possible due to the fact that
121
all QML object types are implemented using QObject-derived classes, enabling the QML engine to
122
dynamically load and introspect objects through the Qt meta object system.
123
124
\include warning.qdocinc
125
126
For more information on accessing QML objects from C++, see the documentation on
127
\l{qtqml-cppintegration-interactqmlfromcpp.html}{Interacting with QML Objects from C++},
128
and the \l {Exposing Data from C++ to QML} section of the Best Practices page.
129
130
131
\section1 Data Type Conversion Between QML and C++
132
133
When data values are exchanged between QML and C++, they are converted by the QML engine to have the
134
correct data types as appropriate for use from QML or C++, providing the data types involved are
135
known to the engine.
136
137
See \l{qtqml-cppintegration-data.html}{Data Type Conversion Between QML and C++} for information on
138
the built-in types supported by the engine and how these types are converted for use when exchanged
139
between QML and C++.
140
141
*/
qtdeclarative
src
qml
doc
src
cppintegration
topic.qdoc
Generated on
for Qt by
1.14.0