From fb1a503cc54b081c39f8a8313ca3fd7769ceb464 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Fri, 2 Oct 2009 12:23:34 +1000 Subject: Update following component file name changes. --- examples/declarative/flowview/flowview.qml | 44 +++++++++++++++--------------- 1 file 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" } + } + } ] } -- cgit v0.12