aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativebehaviors/data/startup2.qml
blob: eb627613d44a1527bc279d11f48dc3da4113e535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 1.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
    }
}