aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment.qml
blob: 3114c48209c552b5fece8650eb9a224b6cc683f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import QtQuick 1.0

Rectangle {
    id: top
    width: 70; height: 70;

    property alias horizontalAlignment: text.horizontalAlignment
    property string text: "Test"

    Rectangle {
        anchors.centerIn: parent
        width: 60
        height: 20
        color: "green"

        TextInput {
            id: text
            anchors.fill: parent
            text: top.text
        }
    }
}