QQmlIncubationController¶
QQmlIncubationController
instances drive the progress of QQmlIncubators. More…
Synopsis¶
Functions¶
def
engine
()def
incubateFor
(msecs)def
incubateWhile
(flag[, msecs=0])def
incubatingObjectCount
()
Virtual functions¶
def
incubatingObjectCountChanged
(arg__1)
Detailed Description¶
In order to behave asynchronously and not introduce stutters or freezes in an application, the process of creating objects a QQmlIncubators must be driven only during the application’s idle time.
QQmlIncubationController
allows the application to control exactly when, how often and for how long this processing occurs.A
QQmlIncubationController
derived instance should be created and set on aQQmlEngine
by calling thesetIncubationController()
method. Processing is then controlled by calling theincubateFor()
orincubateWhile()
methods as dictated by the application’s requirements.For example, this is an example of a incubation controller that will incubate for a maximum of 5 milliseconds out of every 16 milliseconds.
class PeriodicIncubationController : public QObject, public QQmlIncubationController { public: PeriodicIncubationController() { startTimer(16); } protected: void timerEvent(QTimerEvent *) override { incubateFor(5); } };Although the previous example would work, it is not optimal. Real world incubation controllers should try and maximize the amount of idle time they consume - rather than a static amount like 5 milliseconds - while not disturbing the application.
- class PySide2.QtQml.QQmlIncubationController¶
Create a new incubation controller.
- PySide2.QtQml.QQmlIncubationController.engine()¶
- Return type:
Return the
QQmlEngine
this incubation controller is set on, or 0 if it has not been set on any engine.
- PySide2.QtQml.QQmlIncubationController.incubateFor(msecs)¶
- Parameters:
msecs – int
Incubate objects for
msecs
, or until there are no more objects to incubate.
- PySide2.QtQml.QQmlIncubationController.incubateWhile(flag[, msecs=0])¶
- Parameters:
flag – bool
msecs – int
Note
This function is deprecated.
- PySide2.QtQml.QQmlIncubationController.incubatingObjectCount()¶
- Return type:
int
Return the number of objects currently incubating.
- PySide2.QtQml.QQmlIncubationController.incubatingObjectCountChanged(arg__1)¶
- Parameters:
arg__1 – int
Called when the number of incubating objects changes.
incubatingObjectCount
is the new number of incubating objects.The default implementation does nothing.
© 2022 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.