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
QQmlParserStatus Class Referenceabstract

The QQmlParserStatus class provides updates on the QML parser state. More...

#include <qqmlparserstatus.h>

Inherited by MyObject, QDeclarativeCategory, QDeclarativeGeoRouteModel, QDeclarativeGeoRouteQuery, QDeclarativeGeoServiceProvider, QDeclarativeGeocodeModel, QDeclarativePlace, QDeclarativePlaceContentModel, QDeclarativePositionSource, QDeclarativeSatelliteSource, QDeclarativeSearchModelBase, QDeclarativeSupportedCategoriesModel, QOpenXrInputAction, QPhysicsWorld, QQmlBind, QQmlConnections, QQmlDelegateModel, QQmlInstantiator, QQmlLoggingCategory, QQmlSettings, QQmlSettings, QQmlTableModel, QQmlTimer, QQmlXmlListModel, QQuick3DInfiniteGrid, QQuick3DObject, QQuick3DParticleAbstractShape, QQuick3DParticleEmitBurst, QQuick3DParticleSpriteSequence, QQuickAbstractAnimation, QQuickAbstractDialog, QQuickBoundaryRule, QQuickButtonGroup, QQuickCalendarModel, QQuickFolderListModel, QQuickFrameAnimation, QQuickImageSelector, QQuickItem, QQuickLabsPlatformDialog, QQuickLabsPlatformMenu, QQuickLabsPlatformMenuBar, QQuickLabsPlatformMenuItem, QQuickLabsPlatformSystemTrayIcon, QQuickParticleGroup, QQuickPath, QQuickPdfDocument, QQuickPlaylist, QQuickPointerHandler, QQuickPopup, QQuickShortcut, QQuickStateGroup, QQuickWindowQmlImpl, QQuickWorkerScript, QWaylandQuickCompositor, QWaylandQuickHardwareLayer, QWaylandQuickOutput, and QWaylandQuickXdgOutputV1.

+ Collaboration diagram for QQmlParserStatus:

Public Member Functions

 QQmlParserStatus ()
 
virtual ~QQmlParserStatus ()
 
virtual void classBegin ()=0
 Invoked after class creation, but before any properties have been set.
 
virtual void componentComplete ()=0
 Invoked after the root component that caused this instantiation has completed construction.
 

Friends

class QQmlComponent
 
class QQmlComponentPrivate
 
class QQmlEnginePrivate
 
class QQmlObjectCreator
 

Detailed Description

The QQmlParserStatus class provides updates on the QML parser state.

Since
5.0 \inmodule QtQml

QQmlParserStatus provides a mechanism for classes instantiated by a QQmlEngine to receive notification at key points in their creation.

This class is often used for optimization purposes, as it allows you to defer an expensive operation until after all the properties have been set on an object. For example, QML's \l {Text} element uses the parser status to defer text layout until all of its properties have been set (we don't want to layout when the text is assigned, and then relayout when the font is assigned, and relayout again when the width is assigned, and so on).

Be aware that QQmlParserStatus methods are only called when a class is instantiated by a QQmlEngine. If you create the same class directly from C++, these methods will not be called automatically. To avoid this problem, it is recommended that you start deferring operations from classBegin instead of from the initial creation of your class. This will still prevent multiple revaluations during initial binding assignment in QML, but will not defer operations invoked from C++.

To use QQmlParserStatus, you must inherit both a QObject-derived class and QQmlParserStatus, and use the Q_INTERFACES() macro.

class MyObject : public QObject, public QQmlParserStatus
{
public:
MyObject(QObject *parent = nullptr);
// ...
void classBegin() override;
void componentComplete() override;
};
void classBegin() override
Invoked after class creation, but before any properties have been set.
void componentComplete() override
Invoked after the root component that caused this instantiation has completed construction.
The QQmlParserStatus class provides updates on the QML parser state.
#define Q_INTERFACES(x)

Definition at line 13 of file qqmlparserstatus.h.

Constructor & Destructor Documentation

◆ QQmlParserStatus()

QQmlParserStatus::QQmlParserStatus ( )

Definition at line 39 of file qqmlparserstatus.cpp.

◆ ~QQmlParserStatus()

QQmlParserStatus::~QQmlParserStatus ( )
virtual

Definition at line 45 of file qqmlparserstatus.cpp.

Member Function Documentation

◆ classBegin()

void QQmlParserStatus::classBegin ( )
pure virtual

Invoked after class creation, but before any properties have been set.

Implemented in QQmlSettings, QQuickBoundaryRule, QQuickFolderListModel, QQmlTableModel, QQuickLabsPlatformDialog, QQuickLabsPlatformMenu, QQuickLabsPlatformMenuBar, QQuickLabsPlatformMenuItem, QQuickLabsPlatformSystemTrayIcon, QQmlSettings, QQuickParticleGroup, MyObject, QQmlLoggingCategory, QQmlBind, QQmlConnections, QQmlTimer, QQmlDelegateModel, QQmlInstantiator, QQuickWorkerScript, QQmlXmlListModel, QQuickPointerHandler, QQuickItem, QQuickWindowContainer, QQuickWindowQmlImpl, QQuickAbstractAnimation, QQuickFrameAnimation, QQuickPath, QQuickShortcut, QQuickStateGroup, QQuickImageSelector, QQuickAbstractDialog, QQuickShape, QQuickApplicationWindow, QQuickButtonGroup, QQuickCalendarModel, QQuickControl, QQuickLabel, QQuickPopup, QQuickRangeSlider, QQuickScrollBar, QQuickSpinBox, QQuickTextArea, QQuickTextField, QDeclarativeGeocodeModel, QDeclarativeGeoRouteModel, QDeclarativeGeoRouteQuery, QDeclarativeGeoServiceProvider, QDeclarativeCategory, QDeclarativePlace, QDeclarativePlaceContentModel, QDeclarativeSearchModelBase, QDeclarativeSupportedCategoriesModel, QDeclarativeGeoMapItemGroup, QDeclarativeGeoMapItemView, QQuickPlaylist, QDeclarativePositionSource, QDeclarativeSatelliteSource, QQuick3DInfiniteGrid, QQuick3DObject, QQuick3DParticleAbstractShape, QQuick3DParticleEmitBurst, QQuick3DParticleSpriteSequence, QOpenXRActionMapper, QOpenXrInputAction, QPhysicsWorld, QWaylandQuickCompositor, QWaylandQuickHardwareLayer, QWaylandQuickOutput, QWaylandQuickXdgOutputV1, and QQuickPdfDocument.

Referenced by QQmlComponentPrivate::beginCreate(), QQuickWindowContainer::classBegin(), QQuickLabel::classBegin(), QQuickTextArea::classBegin(), and QQuickTextField::classBegin().

+ Here is the caller graph for this function:

◆ componentComplete()

void QQmlParserStatus::componentComplete ( )
pure virtual

Invoked after the root component that caused this instantiation has completed construction.

At this point all static values and binding values have been assigned to the class.

Implemented in QQmlSettings, QQuickMultiEffect, QQuickBoundaryRule, QQuickFolderListModel, QQmlTableModel, QQuickLabsPlatformDialog, QQuickLabsPlatformMenu, QQuickLabsPlatformMenuBar, QQuickLabsPlatformMenuItem, QQuickLabsPlatformSystemTrayIcon, QQmlSettings, QQuickParticleAffector, QQuickParticleEmitter, QQuickParticleGroup, QQuickParticlePainter, QQuickParticleSystem, MyObject, QQmlLoggingCategory, QQmlBind, QQmlConnections, QQmlTimer, QQmlDelegateModel, QQmlInstantiator, QQuickWorkerScript, QQmlXmlListModel, QQuickHoverHandler, QQuickPointerHandler, QQuickCanvasItem, QQuickAnimatedImage, QQuickAnimatedSprite, QQuickFlickable, QQuickImageBase, QQuickItem, QQuickItemView, QQuickLoader, QQuickPathView, QQuickBasePositioner, QQuickRepeater, QQuickShaderEffect, QQuickText, QQuickTextEdit, QQuickTextInput, QQuickWindowContainer, QQuickWindowQmlImpl, QQuickAbstractAnimation, QQuickFrameAnimation, QQuickPath, QQuickShortcut, QQuickStateGroup, QQuickMaterialPlaceholderText, QQuickMaterialTextContainer, QQuickIconImage, QQuickIconLabel, QQuickImageSelector, QQuickPlaceholderText, QQuickTumblerView, QQuickAbstractDialog, QQuickAbstractColorPicker, QQuickFileDialogImpl, QQuickFolderBreadcrumbBar, QQuickFolderDialogImpl, QQuickLayout, QQuickGridLayoutBase, QQuickStackLayout, QQuickStyleItem, QQuickShape, QQuickAbstractButton, QQuickApplicationWindow, QQuickButtonGroup, QQuickCalendarModel, QQuickComboBox, QQuickContainer, QQuickControl, QQuickDayOfWeekRow, QQuickDial, QQuickDialogButtonBox, QQuickGroupBox, QQuickLabel, QQuickMenu, QQuickMenuItem, QQuickMonthGrid, QQuickPage, QQuickPane, QQuickPopup, QQuickProgressBar, QQuickRangeSlider, QQuickScrollBar, QQuickScrollView, QQuickSlider, QQuickSpinBox, QQuickSplitView, QQuickStackView, QQuickSwipeDelegate, QQuickSwipeView, QQuickTabBar, QQuickTextArea, QQuickTextField, QQuickTreeViewDelegate, QQuickTumbler, QQuickWeekNumberColumn, QDeclarativeGeocodeModel, QDeclarativeGeoRouteModel, QDeclarativeGeoRouteQuery, QDeclarativeGeoServiceProvider, QDeclarativeCategory, QDeclarativePlace, QDeclarativePlaceContentModel, QDeclarativeSearchModelBase, QDeclarativeSupportedCategoriesModel, QDeclarativeGeoMap, QDeclarativeGeoMapItemGroup, QDeclarativeGeoMapItemView, QQuickPlaylist, QDeclarativePositionSource, QDeclarativeSatelliteSource, QQuick3DRuntimeLoader, QQuick3DInfiniteGrid, QQuick3DLoader, QQuick3DNode, QQuick3DObject, QQuick3DRepeater, QQuick3DViewport, QQuick3DParticle, QQuick3DParticleAbstractShape, QQuick3DParticleAffector, QQuick3DParticleEmitBurst, QQuick3DParticleEmitter, QQuick3DParticleModelBlendParticle, QQuick3DParticleModelParticle, QQuick3DParticleSpriteParticle, QQuick3DParticleSpriteSequence, QQuick3DParticleSystem, QOpenXRActionMapper, QOpenXrInputAction, QOpenXrHandModel, QOpenXRItem, QPhysicsWorld, QWaylandQuickCompositor, QWaylandQuickHardwareLayer, QWaylandQuickOutput, QWaylandQuickXdgOutputV1, and QQuickPdfDocument.

Referenced by QQuickHoverHandler::componentComplete(), QQuickTextEdit::componentComplete(), QQuickTextInput::componentComplete(), QQuickWindowContainer::componentComplete(), QQuickMaterialTextContainer::componentComplete(), QQuickIconImage::componentComplete(), QQuickFileDialogImpl::componentComplete(), QQuickFolderDialogImpl::componentComplete(), QQuickGroupBox::componentComplete(), QQuickSwipeDelegate::componentComplete(), QQuickTreeViewDelegate::componentComplete(), QOpenXrHandModel::componentComplete(), and QQmlObjectCreator::finalize().

+ Here is the caller graph for this function:

Friends And Related Symbol Documentation

◆ QQmlComponent

friend class QQmlComponent
friend

Definition at line 23 of file qqmlparserstatus.h.

◆ QQmlComponentPrivate

friend class QQmlComponentPrivate
friend

Definition at line 24 of file qqmlparserstatus.h.

◆ QQmlEnginePrivate

friend class QQmlEnginePrivate
friend

Definition at line 25 of file qqmlparserstatus.h.

◆ QQmlObjectCreator

friend class QQmlObjectCreator
friend

Definition at line 26 of file qqmlparserstatus.h.


The documentation for this class was generated from the following files: