aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qmltc/myApp.qml
blob: f4f9aa2f785216f84a81cdf8de91ba8e3a84e759 (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
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QmltcExample 1.0 // application's own QML module

Rectangle {
    id: window

    width: 640
    height: 480
    focus: true
    color: "#F9F4EC"

    readonly property color textColor: "#601A4A"

    Row {
        id: row
        anchors.centerIn: window
        spacing: 10

        Column {
            id: column
            spacing: 5

            Text {
                text: "Hello, QML World!"
                font.pixelSize: slider.value
                color: textColor
            }

            MySlider {
                id: slider
                from: 20
                value: 20
                to: 30
            }
        }

        Column {
            spacing: 5

            Text {
                id: rndText
                font.pixelSize: 25
                color: textColor
                text: "0.00"
            }

            Rectangle {
                id: rndColorRect
                height: 20
                width: rndButton.width
                color: "black"

                MyColorPicker { // comes from C++
                    id: colorPicker
                    onEncodedColorChanged: rndColorRect.color = colorPicker.decodeColor()
                }
            }

            MyButton {
                id: rndButton
                text: "PICK"
                onClicked: function() {
                    var value = Math.random();
                    rndText.text = value.toFixed(rndButton.text.length - 2);
                    colorPicker.encodedColor = value;
                }
            }
        }
    }
}