diff options
author | Bea Lam <bea.lam@nokia.com> | 2009-10-02 02:23:34 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2009-10-02 02:23:34 (GMT) |
commit | fb1a503cc54b081c39f8a8313ca3fd7769ceb464 (patch) | |
tree | 2e336f8868cc5739e19f205861000ced6b11186c /examples | |
parent | d535797f7fd5eebbc5d0128a477c57f71632a377 (diff) | |
download | Qt-fb1a503cc54b081c39f8a8313ca3fd7769ceb464.zip Qt-fb1a503cc54b081c39f8a8313ca3fd7769ceb464.tar.gz Qt-fb1a503cc54b081c39f8a8313ca3fd7769ceb464.tar.bz2 |
Update following component file name changes.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/declarative/flowview/flowview.qml | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/examples/declarative/flowview/flowview.qml b/examples/declarative/flowview/flowview.qml index 1ab8e92..85c20d9 100644 --- a/examples/declarative/flowview/flowview.qml +++ b/examples/declarative/flowview/flowview.qml @@ -35,12 +35,12 @@ Rectangle { VisualDataModel { id: Model model: ListModel { - ListElement { background: "red"; weblet: "rect.qml" } - ListElement { background: "yellow"; weblet: "rect.qml" } - ListElement { background: "blue"; weblet: "rect.qml" } - ListElement { background: "green"; weblet: "flickr.qml" } - ListElement { background: "orange"; weblet: "rect.qml" } - ListElement { background: "lightblue"; weblet: "rect.qml" } + ListElement { background: "red"; weblet: "RoundedRect.qml" } + ListElement { background: "yellow"; weblet: "RoundedRect.qml" } + ListElement { background: "blue"; weblet: "RoundedRect.qml" } + ListElement { background: "green"; weblet: "FlickrView.qml" } + ListElement { background: "orange"; weblet: "RoundedRect.qml" } + ListElement { background: "lightblue"; weblet: "RoundedRect.qml" } } delegate: Package { Item { id: List; Package.name: "list"; width:120; height: 400; } @@ -63,22 +63,22 @@ Rectangle { } ] transitions: [ - Transition { - from: "*"; to: "InGrid" - SequentialAnimation { - ParentAction{} - PauseAnimation { duration: 50 * List.FlowView.column } - NumberAnimation { properties: "x,y,rotation"; easing: "easeInOutQuad" } - } - }, - Transition { - from: "*"; to: "InList" - SequentialAnimation { - ParentAction{} - PauseAnimation { duration: 50 * (GridItem.FlowView.row * 2 + GridItem.FlowView.column) } - NumberAnimation { properties: "x,y,rotation"; easing: "easeInOutQuad" } - } - } + Transition { + from: "*"; to: "InGrid" + SequentialAnimation { + ParentAction{} + PauseAnimation { duration: 50 * List.FlowView.column } + NumberAnimation { properties: "x,y,rotation"; easing: "easeInOutQuad" } + } + }, + Transition { + from: "*"; to: "InList" + SequentialAnimation { + ParentAction{} + PauseAnimation { duration: 50 * (GridItem.FlowView.row * 2 + GridItem.FlowView.column) } + NumberAnimation { properties: "x,y,rotation"; easing: "easeInOutQuad" } + } + } ] } |