aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativebehaviors/data/startup2.qml
blob: 0654ef3644ac778d76b2ef57a1e1d8ce9a9d76f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.0

Rectangle {
    width: 800;
    height: 480;

    Text { id:theText; text: "hello world" }

    Rectangle {
        objectName: "innerRect"
        color: "red"
        x: theText.width
        Behavior on x { NumberAnimation {} }
        width: 100; height: 100
    }
}