diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-10-22 02:38:42 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-10-22 02:39:43 (GMT) |
commit | 1f74d3220335d67b6b751be0a72eefd58145fea9 (patch) | |
tree | 8d95552a78e8f6ef76c419717e6c44b87c23851f /src/declarative | |
parent | be6a0b58680213da42d956ed9d1c77103be24c93 (diff) | |
download | Qt-1f74d3220335d67b6b751be0a72eefd58145fea9.zip Qt-1f74d3220335d67b6b751be0a72eefd58145fea9.tar.gz Qt-1f74d3220335d67b6b751be0a72eefd58145fea9.tar.bz2 |
Fix Flipable docs
Task-number: QTBUG-13789
Diffstat (limited to 'src/declarative')
-rw-r--r-- | src/declarative/graphicsitems/qdeclarativeflipable.cpp | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativeflipable.cpp b/src/declarative/graphicsitems/qdeclarativeflipable.cpp index 4ecf87b..f118a85 100644 --- a/src/declarative/graphicsitems/qdeclarativeflipable.cpp +++ b/src/declarative/graphicsitems/qdeclarativeflipable.cpp @@ -83,27 +83,28 @@ public: \section1 Example Usage - \beginfloatright - \inlineimage flipable.gif - \endfloat - The following example shows a Flipable item that flips whenever it is clicked, rotating about the y-axis. - The \l Rotation element is used to specify the angle and axis of the flip. - When \c flipped is true, the item changes to the "back" state, where - the angle is changed to 180 degrees to produce the flipping effect. + This flipable item has a \c flipped boolean property that is toggled + whenever the MouseArea within the flipable is clicked. When + \c flipped is true, the item changes to the "back" state; in this + state, the \c angle of the \l Rotation item is changed to 180 + degrees to produce the flipping effect. When \c flipped is false, the + item reverts to the default state, in which the \c angle value is 0. + + \snippet doc/src/snippets/declarative/flipable/flipable.qml 0 - \clearfloat - \snippet doc/src/snippets/declarative/flipable/flipable-snippet.qml 0 + \image flipable.gif - The \l Transition creates the animation that changes the angle over the - duration of one second. When the item changes between its "back" and + The \l Transition creates the animation that changes the angle over + four seconds. When the item changes between its "back" and default states, the NumberAnimation animates the angle between its old and new values. - See the \l {QML States} and \l {QML Animation} documentation for more - details on state changes and how animations work within transitions. + See \l {QML States} for details on state changes and the default + state, and \l {QML Animation} for more information on how animations + work within transitions. \sa {declarative/ui-components/flipable}{Flipable example} */ |