NodeInstantiator QML Type

Dynamically creates nodes. More...

Import Statement: import Qt3D.Core 2.15
Since: Qt 5.5

Properties

Signals

Methods

Detailed Description

A NodeInstantiator can be used to control the dynamic creation of nodes, or to dynamically create multiple objects from a template.

The NodeInstantiator element will manage the objects it creates. Those objects are parented to the Instantiator and can also be deleted by the NodeInstantiator if the NodeInstantiator's properties change. Nodes can also be destroyed dynamically through other means, and the NodeInstantiator will not recreate them unless the properties of the NodeInstantiator change.

Property Documentation

active : bool

When active is true, and the delegate component is ready, the Instantiator will create objects according to the model. When active is false, no objects will be created and any previously created objects will be destroyed.

Default is true.


asynchronous : bool

When asynchronous is true the Instantiator will attempt to create objects asynchronously. This means that objects may not be available immediately, even if active is set to true.

You can use the objectAdded signal to respond to items being created.

Default is false.


[read-only] count : int

The number of objects the Instantiator is currently managing.


[default] delegate : QtQml::Component

The component used to create all objects.

Note that an extra variable, index, will be available inside instances of the delegate. This variable refers to the index of the instance inside the Instantiator, and can be used to obtain the object through the itemAt method of the Instantiator.

If this property is changed, all instances using the old delegate will be destroyed and new instances will be created using the new delegate.


model : variant

This property can be set to any of the supported data models:

  • A number that indicates the number of delegates to be created by the repeater
  • A model (for example, a ListModel item or a QAbstractItemModel subclass)
  • A string list
  • An object list

The type of model affects the properties that are exposed to the delegate.

Default value is 1, which creates a single delegate instance.

See also Data Models.


[read-only] object : QtQml::QtObject

This is a reference to the first created object, intended as a convenience for the case where only one object has been created.


Signal Documentation

objectAdded(int index, QtObject object)

This signal is emitted when a node is added to the NodeInstantiator. The index parameter holds the index which the node has been given, and the object parameter holds the Node that has been added.

The corresponding handler is onNodeAdded.

Note: The corresponding handler is onObjectAdded.


objectRemoved(int index, QtObject object)

This signal is emitted when an object is removed from the Instantiator. The index parameter holds the index which the object had been given, and the object parameter holds the QtObject that has been removed.

Do not keep a reference to object if it was created by this Instantiator, as in these cases it will be deleted shortly after the signal is handled.

The corresponding handler is onObjectRemoved.

Note: The corresponding handler is onObjectRemoved.


Method Documentation

QtQml::QtObject objectAt(int index)

Returns a reference to the object with the given index.


© 2023 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.