summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Arve Saether <jan-arve.saether@digia.com>2013-05-29 09:43:14 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-29 19:22:50 +0200
commit81c5d0053e0c1bebbfd45a46d44c744e4576b543 (patch)
tree1e0e649bb1e1c428b20983fe50692655370e76e4
parent3e627574e97ead8e8f8a18bd9a940974515a2ceb (diff)
downloadqtdoc-81c5d0053e0c1bebbfd45a46d44c744e4576b543.tar.gz
Change "Item Layouts" to "Item Positioners"
This is because the title was changed in qtdeclarative. Also add a line with link to Qt Quick Layouts Change-Id: I044e53ae9c2cde39bd2b224caaf47017dff3455a Reviewed-by: Caroline Chao <caroline.chao@digia.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
-rw-r--r--doc/src/qmlapp/usecases/layouts.qdoc10
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/src/qmlapp/usecases/layouts.qdoc b/doc/src/qmlapp/usecases/layouts.qdoc
index ef2e0a26..865ad9b3 100644
--- a/doc/src/qmlapp/usecases/layouts.qdoc
+++ b/doc/src/qmlapp/usecases/layouts.qdoc
@@ -26,7 +26,7 @@
****************************************************************************/
/*!
\page qtquick-usecase-layouts.html
-\title Use Case - Layouts In QML
+\title Use Case - Positioners and Layouts In QML
\brief Example of how to create layouts for visual components in a QML application
There are several ways to position items in QML.
@@ -63,17 +63,19 @@ For full details, see \l {Positioning with Anchors} and the documentation of the
\image qmlapp/qml-uses-layouts-anchors.png
-\section1 Positioners
+\section1 Positioners and Layouts
-For the common case of wanting to position a set of types in a regular pattern, Qt Quick provides some positioner
+For the common case of wanting to \e position a set of types in a regular pattern, Qt Quick provides some positioner
types. Items placed in a positioner are automatically positioned in some way; for example, a \l Row positions items to be
horizontally adjacent (forming a row).
-For full details see \l {Item Layouts} and the documentation for \l{qtquick-qmltypereference.html#positioning}{the positioner types}.
+For full details see \l {Item Positioners} and the documentation for \l{qtquick-qmltypereference.html#positioning}{the positioner types}.
\snippet qmlapp/usecases/layouts.qml import
\snippet qmlapp/usecases/layouts.qml positioners
\image qmlapp/qml-uses-layouts-positioners.png
+If \e{positioning and resizing} is desired, you can use the layouts in \l{Qt Quick Layouts}.
+
*/