Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
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
10QML is designed to be easily extensible through C++ code. The classes in the \l {Qt Qml} module
11enable QML objects to be loaded and manipulated from C++, and the nature of QML engine's
12integration with Qt's \l{Meta Object System}{meta object system} enables C++ functionality to be
13invoked directly from QML. This allows the development of hybrid applications which are implemented
14with a mixture of QML, JavaScript and C++ code.
15
16Integrating 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
20with QML and JavaScript within \l{qtqml-documents-topic.html}{QML documents}, and the latter with
21C++
22\li Use and invoke some C++ functionality from QML (for example, to invoke your application logic,
23use 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
25images 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
30To provide some C++ data or functionality to QML, it must be made available from a QObject-derived
31class. Due to the QML engine's integration with the meta object system, the properties, methods and
32signals 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
34required 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}{
39registered 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
44instance'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
46QML code} as a \e {context property} or \e {context object}, allowing the instance's properties,
47methods and signals to be accessed from QML
48\endlist
49
50These are the most common methods of accessing C++ functionality from QML code; for more options and
51details, see the main documentation pages that are described in the sections further below.
52Additionally, aside from the ability to access C++ functionality from QML, the \l {Qt Qml} module also
53provides 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
55details.
56
57It is often desirable to expose some state as global properties to QML.
58\l{qtqml-cppintegration-exposecppstate.html}{Exposing State from C++ to QML}
59describes how to do this.
60
61Finally, the C++ code may be integrated into either a C++ application or a C++ plugin depending on
62whether it is to be distributed as a standalone application or a library. A plugin can be integrated
63with 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
65information.
66
67\section1 Choosing the Correct Integration Method Between C++ and QML
68
69To quickly determine which integration method is appropriate for your situation, the following
70flowchart can be used:
71
72\image cpp-qml-integration-flowchart.png
73
74For a description of the macros in the flowchart, see the
75\l {qtqml-cppintegration-definetypes.html}{Defining QML Types from C++} documentation.
76
77\section1 Exposing Attributes of C++ Classes to QML
78
79QML can easily be extended from C++ due to the QML engine's integration with the Qt meta object
80system. This integration allows the properties, methods and signals of any QObject-derived class to
81be accessible from QML: properties can be read and modified, methods can be invoked from JavaScript
82expressions and signal handlers are automatically created for signals as necessary. Additionally,
83enumeration values of a QObject-derived class are accessible from QML.
84
85See \l{qtqml-cppintegration-exposecppattributes.html}{Exposing Attributes of C++ Types to QML} for
86more information.
87
88
89\section1 Defining QML Types from C++
90
91QML types can be defined in C++ and then registered with the \l{qtqml-typesystem-topic.html}{QML
92type system}. This allows a C++ class to be instantiated as a \l {QML Object Types}{QML object type}, enabling custom
93object types to be implemented in C++ and integrated into existing QML code. A C++ class may be also
94registered for other purposes: for example, it could be registered as a \e {Singleton Type} to enable a
95single class instance to be imported by QML code, or it could be registered to enable the
96enumeration values of a non-instantiable class to be accessible from QML.
97
98Additionally, the \l {Qt Qml} module provides mechanisms to define QML types that integrate with QML
99concepts like attached properties and default properties.
100
101For more information on registering and creating custom QML types from C++, see the \l
102{qtqml-cppintegration-definetypes.html}{Defining QML Types from C++} documentation.
103
104
105\section1 Embedding C++ Objects into QML with Context Properties
106
107C++ objects and values can be embedded directly into the context (or \e scope) of loaded QML objects
108using \e {context properties} and \e {context objects}. This is achieved through the QQmlContext
109class provided by the \l {Qt Qml} module, which exposes data to the context of a QML component, allowing
110data to be injected from C++ into QML.
111
112See \l{qtqml-cppintegration-contextproperties.html}{Embedding C++ Objects into QML with Context
113Properties} for more information.
114
115
116\section1 Interacting with QML Objects from C++
117
118QML object types can be instantiated from C++ and inspected in order to access their properties,
119invoke their methods and receive their signal notifications. This is possible due to the fact that
120all QML object types are implemented using QObject-derived classes, enabling the QML engine to
121dynamically load and introspect objects through the Qt meta object system.
122
123\include warning.qdocinc
124
125For more information on accessing QML objects from C++, see the documentation on
126\l{qtqml-cppintegration-interactqmlfromcpp.html}{Interacting with QML Objects from C++},
127and the \l {Exposing Data from C++ to QML} section of the Best Practices page.
128
129
130\section1 Data Type Conversion Between QML and C++
131
132When data values are exchanged between QML and C++, they are converted by the QML engine to have the
133correct data types as appropriate for use from QML or C++, providing the data types involved are
134known to the engine.
135
136See \l{qtqml-cppintegration-data.html}{Data Type Conversion Between QML and C++} for information on
137the built-in types supported by the engine and how these types are converted for use when exchanged
138between QML and C++.
139
140*/