aboutsummaryrefslogtreecommitdiffstats
path: root/DemoApplication/pages/Page2.qml
blob: 9d5a796f27cd7c658f5312b836f5b45ebf4122db (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import QtQuick 2.9
import QtQuick.Controls 2.4

import CursorNavigation 1.0
import controls 1.0

Item {
    width: parent.width
    height: parent.height

    Item {
        width: 580
        height: 450
        anchors.centerIn: parent
        FocusScope {
            id: focusScope
            width: 198
            height: 359
            anchors.right: parent.right
            anchors.top: parent.top
            anchors.topMargin: 20


            CNListView {
                id: listView
                anchors.fill: parent
                spacing: 4

                model: ListModel {
                    ListElement {
                        name: "Grey"
                        colorCode: "grey"
                    }

                    ListElement {
                        name: "Red"
                        colorCode: "red"
                    }

                    ListElement {
                        name: "Blue"
                        colorCode: "blue"
                    }

                    ListElement {
                        name: "Green"
                        colorCode: "green"
                    }
                    ListElement {
                        name: "Cyan"
                        colorCode: "cyan"
                    }
                    ListElement {
                        name: "Magenta"
                        colorCode: "magenta"
                    }
                    ListElement {
                        name: "Yellow"
                        colorCode: "yellow"
                    }
                    ListElement {
                        name: "Black"
                        colorCode: "black"
                    }
                }
            }
        }
        CNButton {
            id: button3
            anchors.top: focusScope.bottom
            anchors.topMargin: 20
            anchors.right: parent.right
            anchors.rightMargin: 60
            text: qsTr("Button")
        }
        Column {
            anchors.verticalCenter: parent.verticalCenter
            anchors.left: parent.left
            anchors.leftMargin: 50
            spacing: 30
            CNButton {
                text: qsTr("Button")
            }

            CNButton {
                text: qsTr("Button")
            }

            CNButton {
                text: qsTr("Button")
            }
        }
    }
}