summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcomponent.h
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-09-07 06:19:33 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-09-07 06:19:33 (GMT)
commitcdc50db23a89721f793ef353fb4d64b0631456c0 (patch)
tree06f017b87a3052ddb32359b14b6ae94ca070183d /src/declarative/qml/qmlcomponent.h
parenteb1890d43f2abbac594f17eea047e88c3c0b529e (diff)
downloadQt-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.h3
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);