diff options
author | Martin Jones <martin.jones@nokia.com> | 2010-02-17 04:51:56 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2010-02-17 04:51:56 (GMT) |
commit | 130e3a93094f1e05759d3adae03042b876ed2d1f (patch) | |
tree | 70f64d67b43dbf39dc3e7068f094e95607819c70 /src/declarative/graphicsitems | |
parent | cd9a35494b664e60693c2aac987ab9d166c0f865 (diff) | |
parent | a38a6fe09b93e7962163858bb5ae3d0b0244c91b (diff) | |
download | Qt-130e3a93094f1e05759d3adae03042b876ed2d1f.zip Qt-130e3a93094f1e05759d3adae03042b876ed2d1f.tar.gz Qt-130e3a93094f1e05759d3adae03042b876ed2d1f.tar.bz2 |
Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml
Diffstat (limited to 'src/declarative/graphicsitems')
-rw-r--r-- | src/declarative/graphicsitems/qmlgraphicslayoutitem.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/declarative/graphicsitems/qmlgraphicslayoutitem.cpp b/src/declarative/graphicsitems/qmlgraphicslayoutitem.cpp index 98361dc..856a37f 100644 --- a/src/declarative/graphicsitems/qmlgraphicslayoutitem.cpp +++ b/src/declarative/graphicsitems/qmlgraphicslayoutitem.cpp @@ -50,6 +50,13 @@ QT_BEGIN_NAMESPACE /*! \qmlclass LayoutItem QmlGraphicsLayoutItem \brief The LayoutItem element allows you to place your Fluid UI elements inside a classical Qt layout. + + LayoutItem is a variant of Item with a couple of additional properties. These properties provide the size hints + needed for items to work in conjunction with Qt Layouts. The Qt Layout will resize the LayoutItem as appropriate, + taking its size hints into account, and you can propagate this to the other elements in your UI via anchors and bindings. + + This is a QGraphicsLayoutItem subclass, and the properties merely expose the QGraphicsLayoutItem functionality to QML. + See the QGraphicsLayoutItem documentation for further details. */ /*! |