aboutsummaryrefslogtreecommitdiffstats
path: root/src/qtquick1/graphicsitems/qdeclarativeloader.cpp
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2011-07-15 09:02:55 +1000
committerQt by Nokia <qt-info@nokia.com>2011-07-21 04:05:19 +0200
commit6b8e98aec3f382fedea704691da40376cbe88e5e (patch)
treec2d6bf149afbfe8961a49ada92c90677a8aa3845 /src/qtquick1/graphicsitems/qdeclarativeloader.cpp
parent0592e17e18e26acc177bc7556a3c9888582f0045 (diff)
Bulk update of QtQuick 1 docs to \qmlmodule syntax
Change-Id: I7ed2b54ef5a706dcaf7e19d221a6dda7b2620e8c Reviewed-on: http://codereview.qt.nokia.com/1681 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com> Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
Diffstat (limited to 'src/qtquick1/graphicsitems/qdeclarativeloader.cpp')
-rw-r--r--src/qtquick1/graphicsitems/qdeclarativeloader.cpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/qtquick1/graphicsitems/qdeclarativeloader.cpp b/src/qtquick1/graphicsitems/qdeclarativeloader.cpp
index 92b34d7001..7162c31662 100644
--- a/src/qtquick1/graphicsitems/qdeclarativeloader.cpp
+++ b/src/qtquick1/graphicsitems/qdeclarativeloader.cpp
@@ -120,8 +120,9 @@ void QDeclarative1LoaderPrivate::initResize()
/*!
\qmlclass Loader QDeclarative1Loader
+ \inqmlmodule QtQuick 1
\ingroup qml-utility-elements
- \since 4.7
+ \since QtQuick 1.0
\inherits Item
\brief The Loader item allows dynamically loading an Item-based
@@ -247,7 +248,7 @@ QDeclarative1Loader::~QDeclarative1Loader()
}
/*!
- \qmlproperty url Loader::source
+ \qmlproperty url QtQuick1::Loader::source
This property holds the URL of the QML component to instantiate.
Note the QML component must be an \l{Item}-based component. The loader
@@ -291,7 +292,7 @@ void QDeclarative1Loader::setSource(const QUrl &url)
}
/*!
- \qmlproperty Component Loader::sourceComponent
+ \qmlproperty Component QtQuick1::Loader::sourceComponent
This property holds the \l{Component} to instantiate.
\qml
@@ -427,7 +428,7 @@ void QDeclarative1LoaderPrivate::_q_sourceLoaded()
}
/*!
- \qmlproperty enumeration Loader::status
+ \qmlproperty enumeration QtQuick1::Loader::status
This property holds the status of QML loading. It can be one of:
\list
@@ -489,7 +490,7 @@ void QDeclarative1Loader::componentComplete()
/*!
- \qmlsignal Loader::onLoaded()
+ \qmlsignal QtQuick1::Loader::onLoaded()
This handler is called when the \l status becomes \c Loader.Ready, or on successful
initial load.
@@ -497,7 +498,7 @@ void QDeclarative1Loader::componentComplete()
/*!
-\qmlproperty real Loader::progress
+\qmlproperty real QtQuick1::Loader::progress
This property holds the progress of loading QML data from the network, from
0.0 (nothing loaded) to 1.0 (finished). Most QML files are quite small, so
@@ -554,7 +555,7 @@ void QDeclarative1LoaderPrivate::_q_updateSize(bool loaderGeometryChanged)
}
/*!
- \qmlproperty Item Loader::item
+ \qmlproperty Item QtQuick1::Loader::item
This property holds the top-level item that is currently loaded.
*/
QGraphicsObject *QDeclarative1Loader::item() const