summaryrefslogtreecommitdiff
path: root/tests/manual/qml/testprojects/metainfohints/MainForm.ui.qml
blob: be32b09535d85280c4e47c4be20f4f4b1d7a2503 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import QtQuick 2.8
import QtQuick.Controls 2.1
import QtQuick.Layouts 1.3
import Qt.labs.calendar 1.0
import test 1.0

Item {
    property alias mouseArea: mouseArea
    property alias textEdit: textEdit

    width: 360
    height: 360
    TestComponent {
    }

    ForceClip {
    }

    Rectangle {
        id: rectangle
        x: 152
        y: 65
        width: 200
        height: 200
        color: "#ffffff"

        TestComponent {
            id: testComponent
            x: 55
            y: 35
            text: qsTr("This is text")
        }
    }

    Text {
        id: text1
        x: 17
        y: 133
        text: qsTr("Text")
        font.pixelSize: 12
    }

    TestLayout {
        id: testLayout
        x: 8
        y: 252
        width: 100
        height: 100

        CheckBox {
            id: checkBox
            text: qsTr("Check Box")
        }

        CheckBox {
            id: checkBox1
            text: qsTr("Check Box")
        }

        CheckBox {
            id: checkBox2
            text: qsTr("Check Box")
        }
    }
}