aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktextedit/data/twoInAColumn.qml
blob: 4fde0e01707bab9884c4f088c120c482fd39207b (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
import QtQuick
import QtQuick.Layouts

ColumnLayout {
    height: 200
    width: 400
    spacing: -6
    Rectangle {
        border.color: top.activeFocus ? "steelblue" : "lightgrey"
        Layout.fillHeight: true
        Layout.fillWidth: true
        Layout.margins: 6
        TextEdit {
            id: top
            objectName: "top"
            text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
            anchors.fill: parent
        }
    }
    Rectangle {
        border.color: bottom.activeFocus ? "steelblue" : "lightgrey"
        Layout.fillHeight: true
        Layout.fillWidth: true
        Layout.margins: 6
        TextEdit {
            id: bottom
            objectName: "bottom"
            text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
            anchors.fill: parent
        }
    }
}