blob: 7146702dd2cac36353a41c14795f8c6133be8a5c (
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
import Qt 4.6
Rectangle {
id: page
width: 420
height: 420
color: "white"
Column {
id: layout1
y: 0
move: Transition {
NumberAnimation {
properties: "y"; easing.type: "OutBounce"
}
}
add: Transition {
NumberAnimation {
properties: "y"; easing.type: "OutQuad"
}
}
Rectangle { color: "red"; width: 100; height: 50; border.color: "black"; radius: 15 }
Rectangle { id: blueV1; color: "lightsteelblue"; width: 100; height: 50; border.color: "black"; radius: 15
opacity: Behavior{NumberAnimation{}}
}
Rectangle { color: "green"; width: 100; height: 50; border.color: "black"; radius: 15 }
Rectangle { id: blueV2; color: "lightsteelblue"; width: 100; height: 50; border.color: "black"; radius: 15
opacity: Behavior{NumberAnimation{}}
}
Rectangle { color: "orange"; width: 100; height: 50; border.color: "black"; radius: 15 }
}
Row {
id: layout2
y: 300
move: Transition {
NumberAnimation {
properties: "x"; easing.type: "OutBounce"
}
}
add: Transition {
NumberAnimation {
properties: "x"; easing.type: "OutQuad"
}
}
Rectangle { color: "red"; width: 50; height: 100; border.color: "black"; radius: 15 }
Rectangle { id: blueH1; color: "lightsteelblue"; width: 50; height: 100; border.color: "black"; radius: 15
opacity: Behavior{NumberAnimation{}}
}
Rectangle { color: "green"; width: 50; height: 100; border.color: "black"; radius: 15 }
Rectangle { id: blueH2; color: "lightsteelblue"; width: 50; height: 100; border.color: "black"; radius: 15
opacity: Behavior{NumberAnimation{}}
}
Rectangle { color: "orange"; width: 50; height: 100; border.color: "black"; radius: 15 }
}
Button {
text: "Remove"
icon: "del.png"
x: 135
y: 90
onClicked: {
blueH2.opacity = 0
blueH1.opacity = 0
blueV1.opacity = 0
blueV2.opacity = 0
blueG1.opacity = 0
blueG2.opacity = 0
blueG3.opacity = 0
blueF1.opacity = 0
blueF2.opacity = 0
blueF3.opacity = 0
}
}
Button {
text: "Add"
icon: "add.png"
x: 145
y: 140
onClicked: {
blueH2.opacity = 1
blueH1.opacity = 1
blueV1.opacity = 1
blueV2.opacity = 1
blueG1.opacity = 1
blueG2.opacity = 1
blueG3.opacity = 1
blueF1.opacity = 1
blueF2.opacity = 1
blueF3.opacity = 1
}
}
Grid {
x: 260
y: 0
columns: 3
move: Transition {
NumberAnimation {
properties: "x,y"; easing.type: "OutBounce"
}
}
add: Transition {
NumberAnimation {
properties: "x,y"; easing.type: "OutBounce"
}
}
Rectangle { color: "red"; width: 50; height: 50; border.color: "black"; radius: 15 }
Rectangle { id: blueG1; color: "lightsteelblue"; width: 50; height: 50; border.color: "black"; radius: 15
opacity: Behavior{NumberAnimation{}}
}
Rectangle { color: "green"; width: 50; height: 50; border.color: "black"; radius: 15 }
Rectangle { id: blueG2; color: "lightsteelblue"; width: 50; height: 50; border.color: "black"; radius: 15
opacity: Behavior{NumberAnimation{}}
}
Rectangle { color: "orange"; width: 50; height: 50; border.color: "black"; radius: 15 }
Rectangle { id: blueG3; color: "lightsteelblue"; width: 50; height: 50; border.color: "black"; radius: 15
opacity: Behavior{NumberAnimation{}}
}
Rectangle { color: "red"; width: 50; height: 50; border.color: "black"; radius: 15 }
Rectangle { color: "green"; width: 50; height: 50; border.color: "black"; radius: 15 }
Rectangle { color: "orange"; width: 50; height: 50; border.color: "black"; radius: 15 }
}
Flow {
id: layout4
x: 260
y: 250
width: 150
move: Transition {
NumberAnimation {
properties: "x,y"; easing.type: "OutBounce"
}
}
add: Transition {
NumberAnimation {
properties: "x,y"; easing.type: "OutBounce"
}
}
Rectangle { color: "red"; width: 50; height: 50; border.color: "black"; radius: 15 }
Rectangle { id: blueF1; color: "lightsteelblue"; width: 60; height: 50; border.color: "black"; radius: 15
opacity: Behavior{NumberAnimation{}}
}
Rectangle { color: "green"; width: 30; height: 50; border.color: "black"; radius: 15 }
Rectangle { id: blueF2; color: "lightsteelblue"; width: 60; height: 50; border.color: "black"; radius: 15
opacity: Behavior{NumberAnimation{}}
}
Rectangle { color: "orange"; width: 50; height: 50; border.color: "black"; radius: 15 }
Rectangle { id: blueF3; color: "lightsteelblue"; width: 40; height: 50; border.color: "black"; radius: 15
opacity: Behavior{NumberAnimation{}}
}
Rectangle { color: "red"; width: 80; height: 50; border.color: "black"; radius: 15 }
}
}
|