blob: 1833cf005a5c7fab6c30a2ef9b0c5a4fe09833a2 (
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
|
import Qt 4.6
Rectangle {
width: 800;
height: 480;
color: "black";
Rectangle {
id: gr
color: "green"
width: 100; height: 100
}
MouseRegion {
id: mouser
anchors.fill: parent
}
Rectangle {
id: np
x: 300
width: 300; height: 300
color: "yellow"
clip: true
Rectangle {
color: "red"
x: 100; y: 100; height: 100; width: 100
}
}
Rectangle {
id: vp
x: 200; y: 200
width: 100; height: 100
color: "blue"
rotation: 45
scale: 2
}
states: State {
name: "state1"
when: mouser.pressed
ParentChange {
target: gr
parent: np
x: 100; y: 100; width: 200;
}
}
transitions: Transition {
reversible: true
to: "state1"
ParentAnimation {
target: gr; via: vp;
NumberAnimation { properties: "x,y,rotation,scale,width" }
}
}
}
|