QQmlIncubator ClassThe QQmlIncubator class allows QML objects to be created asynchronously. More... #include <QQmlIncubator>
Public Types
Public Functions
Protected Functions
Detailed DescriptionThe QQmlIncubator class allows QML objects to be created asynchronously. Creating QML objects - like delegates in a view, or a new page in an application - can take a noticable amount of time, especially on resource constrained mobile devices. When an application uses QQmlComponent::create() directly, the QML object instance is created synchronously which, depending on the complexity of the object, can cause noticable pauses or stutters in the application. The use of QQmlIncubator gives more control over the creation of a QML object, including allowing it to be created asynchronously using application idle time. The following example shows a simple use of QQmlIncubator. QQmlIncubator incubator; component->create(incubator); while (incubator.isReady()) { QCoreApplication::processEvents(QEventLoop::AllEvents, 50); } QObject *object = incubator.object(); Asynchronous incubators are controlled by a QQmlIncubationController that is set on the QQmlEngine, which lets the engine know when the application is idle and incubating objects should be processed. If an incubation controller is not set on the QQmlEngine, QQmlIncubator creates objects synchronously regardless of the specified IncubationMode. QQmlIncubator supports three incubation modes:
Member Type Documentation
|
Constant | Value | Description |
---|---|---|
QQmlIncubator::Asynchronous | 0 | The object will be created asynchronously. |
QQmlIncubator::AsynchronousIfNested | 1 | If the object is being created in a context that is already part of an asynchronous creation, this incubator will join that existing incubation and execute asynchronously. The existing incubation will not become Ready until both it and this incubation have completed. Otherwise, the incubation will execute synchronously. |
QQmlIncubator::Synchronous | 2 | The object will be created synchronously. |
Specifies the status of the QQmlIncubator.
Constant | Value | Description |
---|---|---|
QQmlIncubator::Null | 0 | Incubation is not in progress. Call QQmlComponent::create() to begin incubating. |
QQmlIncubator::Ready | 1 | The object is fully created and can be accessed by calling object(). |
QQmlIncubator::Loading | 2 | The object is in the process of being created. |
QQmlIncubator::Error | 3 | An error occurred. The errors can be access by calling errors(). |
Create a new incubator with the specified mode
Clears the incubator. Any in-progress incubation is aborted. If the incubator is in the Ready state, the created object is not deleted.
Return the list of errors encountered while incubating the object.
Force any in-progress incubation to finish synchronously. Once this call returns, the incubator will not be in the Loading state.
Return the incubation mode passed to the QQmlIncubator constructor.
Returns true if the incubator's status() is Error.
Returns true if the incubator's status() is Loading.
Returns true if the incubator's status() is Null.
Returns true if the incubator's status() is Ready.
Return the incubated object if the status is Ready, otherwise 0.
Called after the object is first created, but before property bindings are evaluated and, if applicable, QQmlParserStatus::componentComplete() is called. This is equivalent to the point between QQmlComponent::beginCreate() and QQmlComponent::endCreate(), and can be used to assign initial values to the object's properties.
The default implementation does nothing.
Return the current status of the incubator.
Called when the status of the incubator changes. status is the new status.
The default implementation does nothing.
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 5.0-snapshot | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter contacter par email ou par MP ! |
Copyright © 2000-2012 - www.developpez.com