aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativetextedit/data/horizontalAlignment_RightToLeft.qml
blob: 6e739bf2bbfcbdfb4924b3ac3d2160e2a1a8c504 (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
import QtQuick 1.0

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

    property alias horizontalAlignment: text.horizontalAlignment
    property string text: "اختبا"

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

        TextEdit {
            id: text
            objectName: "text"
            anchors.fill: parent
            text: top.text
            focus: true
        }
    }
}