summaryrefslogtreecommitdiff
path: root/src/extras/Styles/Flat/SpinBoxStyle.qml
blob: d9cc7033a414dd80d0648f8b17c0d9a5e4a15e97 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/****************************************************************************
**
** Copyright (C) 2021 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Quick Extras module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:COMM$
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** $QT_END_LICENSE$
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
****************************************************************************/
import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2 as Base
import QtQuick.Controls.Styles.Flat 1.0
import QtQuick.Controls.Private 1.0

Base.SpinBoxStyle {
    padding { top: 0; left: 0; right: 0; bottom: 0 }
    renderType: FlatStyle.__renderType

    panel: Item {
        property int horizontalAlignment: Qt.AlignHCenter
        property int verticalAlignment: Qt.AlignVCenter

        property color foregroundColor: !control.enabled ? FlatStyle.mediumFrameColor : FlatStyle.defaultTextColor
        property color selectionColor: FlatStyle.highlightColor
        property color selectedTextColor: FlatStyle.selectedTextColor
        property var margins: QtObject {
            readonly property real top: 2 * FlatStyle.scaleFactor
            readonly property real left: decrement.width
            readonly property real right: increment.width
            readonly property real bottom: 2 * FlatStyle.scaleFactor
        }

        property rect upRect: Qt.rect(increment.x, increment.y, increment.width, increment.height)
        property rect downRect: Qt.rect(decrement.x, decrement.y, decrement.width, decrement.height)

        property font font
        font.family: FlatStyle.fontFamily

        implicitWidth: Math.round(100 * FlatStyle.scaleFactor)
        implicitHeight: Math.round(26 * FlatStyle.scaleFactor)

        Item {
            id: decrement
            clip: true
            width: Math.round(28 * FlatStyle.scaleFactor)
            height: parent.height

            Rectangle {
                width: parent.width + FlatStyle.radius
                height: parent.height
                color: !control.enabled ? FlatStyle.lightFrameColor :
                        control.activeFocus && styleData.downPressed ? FlatStyle.checkedFocusedAndPressedColor :
                        control.activeFocus ? FlatStyle.highlightColor :
                        styleData.downPressed ? FlatStyle.checkedAndPressedColor : FlatStyle.styleColor
                radius: FlatStyle.radius
            }

            Rectangle {
                color: FlatStyle.backgroundColor
                width: Math.round(10 * FlatStyle.scaleFactor)
                height: Math.round(2 * FlatStyle.scaleFactor)
                anchors.horizontalCenter: parent.left
                anchors.horizontalCenterOffset: Math.round(14 * FlatStyle.scaleFactor)
                anchors.verticalCenter: parent.verticalCenter
            }
        }

        Item {
            id: increment
            clip: true
            width: Math.round(28 * FlatStyle.scaleFactor)
            height: parent.height
            anchors.right: parent.right

            Rectangle {
                width: parent.width + FlatStyle.radius
                height: parent.height
                anchors.right: parent.right
                color: !control.enabled ? FlatStyle.lightFrameColor :
                        control.activeFocus && styleData.upPressed ? FlatStyle.checkedFocusedAndPressedColor :
                        control.activeFocus ? FlatStyle.highlightColor :
                        styleData.upPressed ? FlatStyle.checkedAndPressedColor : FlatStyle.styleColor
                radius: FlatStyle.radius
            }

            Rectangle {
                color: FlatStyle.backgroundColor
                width: Math.round(10 * FlatStyle.scaleFactor)
                height: Math.round(2 * FlatStyle.scaleFactor)
                anchors.horizontalCenter: parent.right
                anchors.horizontalCenterOffset: Math.round(-14 * FlatStyle.scaleFactor)
                anchors.verticalCenter: parent.verticalCenter
            }

            Rectangle {
                color: FlatStyle.backgroundColor
                width: Math.round(2 * FlatStyle.scaleFactor)
                height: Math.round(10 * FlatStyle.scaleFactor)
                anchors.horizontalCenter: parent.right
                anchors.horizontalCenterOffset: Math.round(-14 * FlatStyle.scaleFactor)
                anchors.verticalCenter: parent.verticalCenter
            }
        }

        Rectangle {
            id: frame
            anchors.fill: parent
            anchors.leftMargin: decrement.width
            anchors.rightMargin: increment.width
            color: !control.enabled ? "transparent" :
                    control.activeFocus ? FlatStyle.highlightColor : FlatStyle.mediumFrameColor

            Rectangle {
                id: field
                anchors.fill: parent
                anchors.topMargin: Math.round((!control.enabled ? 0 : control.activeFocus ? 2 : 1) * FlatStyle.scaleFactor)
                anchors.bottomMargin: Math.round((!control.enabled ? 0 : control.activeFocus ? 2 : 1) * FlatStyle.scaleFactor)
                color: !control.enabled ? FlatStyle.disabledColor : FlatStyle.backgroundColor
                opacity: !control.enabled ? 0.1 : 1.0
            }
        }
    }

    __selectionHandle: null
    __cursorHandle: null
}