blob: 69e39bea308b4f3b3b3c75d1df8eda56d3860416 (
plain) (
blame)
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
|
// SPDX-License-Identifier: GPL-2.0
import QtQuick 2.11
import QtQuick.Controls 2.4
import QtQuick.Layouts 1.11
SpinBox {
id: control
editable: true
font.pointSize: subsurfaceTheme.regularPointSize
contentItem: TextInput {
z: 2
text: control.textFromValue(control.value, control.locale)
font: control.font
color: control.enabled ? "black" : "lightgrey"
horizontalAlignment: Qt.AlignHCenter
verticalAlignment: Qt.AlignVCenter
readOnly: !control.editable
validator: control.validator
inputMethodHints: Qt.ImhFormattedNumbersOnly
}
up.indicator: Rectangle {
x: control.mirrored ? 0 : parent.width - width
height: control.height
implicitWidth: 30
implicitHeight: 30
color: control.enabled ? "grey" : "lightgrey"
border.color: control.enabled ? "grey" : "lightgrey"
Text {
text: "+"
font.pixelSize: control.font.pixelSize * 2
color: control.enabled ? "black" : "lightgrey"
anchors.fill: parent
fontSizeMode: Text.Fit
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
}
down.indicator: Rectangle {
x: control.mirrored ? parent.width - width : 0
height: control.height
implicitWidth: 30
implicitHeight: 30
color: control.enabled ? "grey" : "lightgrey"
border.color: control.enabled ? "grey" : "lightgrey"
Text {
text: "-"
font.pixelSize: control.font.pixelSize * 2
color: control.enabled ? "black" : "lightgrey"
anchors.fill: parent
fontSizeMode: Text.Fit
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
}
background: Rectangle {
implicitWidth: 140
color: subsurfaceTheme.backgroundColor
border.color: subsurfaceTheme.backgroundColor
}
}
|