summaryrefslogtreecommitdiffstats
path: root/examples/declarative/behaviours/behavior.qml
blob: c84bf62e75bfabcba47e54d51bcbba90b8972df0 (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
import Qt 4.6

Rectangle {
    color: "black"
    width: 400; height: 400

    Rectangle {
        color: "transparent"
        anchors.centerIn: parent
        width: 200; height: 200
        radius: 30
        border.width: 10; border.color: "white";

        SideRect {
            id: leftRect
            anchors.verticalCenter: parent.verticalCenter
            anchors.horizontalCenter: parent.left
            text: "Left"
        }

        SideRect {
            id: rightRect
            anchors.verticalCenter: parent.verticalCenter
            anchors.horizontalCenter: parent.right
            text: "Right"
        }

        SideRect {
            id: topRect
            anchors.verticalCenter: parent.top
            anchors.horizontalCenter: parent.horizontalCenter
            text: "Top"
        }

        SideRect {
            id: bottomRect
            anchors.verticalCenter: parent.bottom
            anchors.horizontalCenter: parent.horizontalCenter
            text: "Bottom"
        }


        Rectangle {
            id: focusRect

            property string text

            color: "red"
            width: 75; height: 50
            radius: 5
            border.width: 10; border.color: "white";
            x: 100-37; y: 100-25
            Behavior on x { NumberAnimation { duration: 300 } }
            Behavior on y { NumberAnimation { duration: 300 } }
            Text {
                id: focusText
                text: focusRect.text;
                Behavior on text {
                    SequentialAnimation {
                        NumberAnimation { target: focusText; property: "opacity"; to: 0; duration: 150 }
                        PropertyAction {}
                        NumberAnimation { target: focusText; property: "opacity"; to: 1; duration: 150 }
                    }
                }
                anchors.centerIn: parent;
                color: "white";
                font.pixelSize: 16
                font.bold: true
            }
        }
    }
}