blob: 85c20d903d3eb248ccc0986eac5412b577945654 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
import Qt 4.6
Rectangle {
width: 800
height: 800
color: "black"
Rectangle {
id: MyPhone
transformOrigin: "Center"
anchors.centerIn: parent
width: 800
height: 480
clip: true
states: State {
name: "rotated"
PropertyChanges { target: MyListView; z: 2 }
PropertyChanges { target: TopBar; y: -30 }
PropertyChanges { target: BottomBar; y: 480 }
PropertyChanges { target: LeftBar; x: 0 }
PropertyChanges { target: RightBar; x: 770 }
}
transitions: Transition {
from: "" ; to: "rotated"
reversible: true
SequentialAnimation {
NumberAnimation { targets: [TopBar, BottomBar]; properties: "x,y"; easing: "easeInOutQuad" }
NumberAnimation { targets: [LeftBar, RightBar]; properties: "x,y"; easing: "easeInOutQuad"}
}
}
color: "lightsteelblue"
VisualDataModel {
id: Model
model: ListModel {
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; }
Item { id: GridItem; Package.name: "grid"; width:400; height: 120; }
Loader { id: MyContent; width:400; height: 120; source: weblet }
StateGroup {
states: [
State {
name: "InList"
when: MyPhone.state == "rotated"
ParentChange { target: MyContent; parent: List }
PropertyChanges { target: MyContent; x: 120; y: 0; rotation: 90}
},
State {
name: "InGrid"
when: MyPhone.state != "rotated"
ParentChange { target: MyContent; parent: GridItem }
PropertyChanges { target: MyContent; x: 0; y: 0; }
}
]
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" }
}
}
]
}
}
}
Item {
FlowView {
id: MyListView
vertical: true
y: 40
x: 40
width: 800
height: 400
column: 1
model: Model.parts.list
}
FlowView {
z: 1
y: 60
width: 800
height: 400
column: 2
model: Model.parts.grid
}
}
Rectangle {
id: TopBar
width: 800
height: 30
}
Rectangle {
id: BottomBar
width: 800
height: 30
y: 450
}
Rectangle {
id: LeftBar
x: -30
width: 30
height: 480
}
Rectangle {
id: RightBar
x: 800
width: 30
height: 480
}
}
Rectangle {
width: 80
height: 80
anchors.right: parent.right
anchors.bottom: parent.bottom
Text { text: "Switch" }
MouseRegion {
anchors.fill: parent
onClicked: if(MyPhone.state == "rotated") MyPhone.state=""; else MyPhone.state = "rotated";
}
}
}
|