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
qqmlparserstatus.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant
4
6
7QT_BEGIN_NAMESPACE
8
9/*!
10 \class QQmlParserStatus
11 \since 5.0
12 \inmodule QtQml
13 \brief The QQmlParserStatus class provides updates on the QML parser state.
14
15 QQmlParserStatus provides a mechanism for classes instantiated by
16 a QQmlEngine to receive notification at key points in their creation.
17
18 This class is often used for optimization purposes, as it allows you to defer an
19 expensive operation until after all the properties have been set on an
20 object. For example, QML's \l {Text} element uses the parser status
21 to defer text layout until all of its properties have been set (we
22 don't want to layout when the \c text is assigned, and then relayout
23 when the \c font is assigned, and relayout again when the \c width is assigned,
24 and so on).
25
26 Be aware that QQmlParserStatus methods are only called when a class is instantiated
27 by a QQmlEngine. If you create the same class directly from C++, these methods will
28 not be called automatically. To avoid this problem, it is recommended that you start
29 deferring operations from classBegin instead of from the initial creation of your class.
30 This will still prevent multiple revaluations during initial binding assignment in QML,
31 but will not defer operations invoked from C++.
32
33 To use QQmlParserStatus, you must inherit both a QObject-derived class
34 and QQmlParserStatus, and use the Q_INTERFACES() macro.
35
36 \snippet code/src_qml_qqmlparserstatus.cpp 0
37*/
38
39/*! \internal */
40QQmlParserStatus::QQmlParserStatus()
41: d(0)
42{
43 Q_UNUSED(d);
44}
45
46/*! \internal */
47QQmlParserStatus::~QQmlParserStatus() = default;
48
49/*!
50 \fn void QQmlParserStatus::classBegin()
51
52 Invoked after class creation, but before any properties have been set.
53*/
54
55/*!
56 \fn void QQmlParserStatus::componentComplete()
57
58 Invoked after the root component that caused this instantiation has
59 completed construction. At this point all static values and binding values
60 have been assigned to the class.
61*/
62
63QT_END_NAMESPACE