diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-09-07 06:19:33 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-09-07 06:19:33 (GMT) |
commit | cdc50db23a89721f793ef353fb4d64b0631456c0 (patch) | |
tree | 06f017b87a3052ddb32359b14b6ae94ca070183d /src/declarative/qml/qmlcomponent.h | |
parent | eb1890d43f2abbac594f17eea047e88c3c0b529e (diff) | |
download | Qt-cdc50db23a89721f793ef353fb4d64b0631456c0.zip Qt-cdc50db23a89721f793ef353fb4d64b0631456c0.tar.gz Qt-cdc50db23a89721f793ef353fb4d64b0631456c0.tar.bz2 |
Add status and progress properties to Loader.
Diffstat (limited to 'src/declarative/qml/qmlcomponent.h')
-rw-r--r-- | src/declarative/qml/qmlcomponent.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/declarative/qml/qmlcomponent.h b/src/declarative/qml/qmlcomponent.h index 60b7ccd..af250e5 100644 --- a/src/declarative/qml/qmlcomponent.h +++ b/src/declarative/qml/qmlcomponent.h @@ -84,6 +84,8 @@ public: QList<QmlError> errors() const; + qreal progress() const; + QUrl url() const; virtual QObject *create(QmlContext *context = 0); @@ -95,6 +97,7 @@ public: Q_SIGNALS: void statusChanged(QmlComponent::Status); + void progressChanged(qreal); protected: QmlComponent(QmlComponentPrivate &dd, QObject* parent); |