blob: d989fcc63a715bfb3e73861d56d5693e95242d31 (
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:significant reason:default
import QtQuick
import Qt.labs.StyleKit
BaseStyle {
id: style
/* Properties and Controls left unspecified in a Style will be read from Style.fallbackStyle
* instead (that is, this file, unless the fallback style is changed). Here we can give the
* properties some sensible defaults. */
readonly property real indicatorSize: 24
control {
spacing: 5
padding: 5
background {
implicitWidth: 100
implicitHeight: 40
border.width: 1
border.color: "black"
color: style.palette.base
}
indicator {
implicitWidth: style.indicatorSize
implicitHeight: style.indicatorSize
color: style.palette.base
border.color: "black"
border.width: 1
foreground {
implicitWidth: Style.Stretch
implicitHeight: Style.Stretch
margins: 1
color: style.palette.accent
image.color: style.palette.accent
/* Note: don't set implicit size here, since the DelegateContainer will (and should)
* fall back to use the size of the image if not set. So if we hard-code a size here,
* it cannot be unset to be the size of the image (if any) again from the Style. */
}
}
handle {
implicitWidth: style.indicatorSize
implicitHeight: style.indicatorSize
radius: style.indicatorSize / 2
border.width: 1
border.color: "black"
color: style.palette.window
}
}
textInput {
padding: 5
background {
implicitWidth: 150
implicitHeight: 40
border.width: 1
border.color: "black"
color: style.palette.base
}
}
popup {
background {
implicitWidth: 200
implicitHeight: 200
border.width: 1
border.color: "black"
color: style.palette.base
}
}
pane {
background {
implicitWidth: 200
implicitHeight: 200
color: style.palette.window
}
}
page {
background.border.width: 0
}
frame {
background.color: style.palette.base
}
flatButton {
background.visible: false
hovered.background.visible: true
}
checkBox {
background.visible: false
indicator {
foreground {
visible: false
color: "transparent"
image.source: "qrc:/qt-project.org/imports/QtQuick/Controls/Basic/images/check.png"
}
}
text.alignment: Qt.AlignVCenter | Qt.AlignLeft
checked.indicator.foreground.visible: true
}
comboBox {
text.alignment: Qt.AlignVCenter
background.implicitWidth: 150
indicator {
color: style.palette.base
border.width: 0
foreground {
margins: 4
color: "transparent"
image.source: "qrc:/qt-project.org/imports/QtQuick/Controls/Basic/images/drop-indicator.png"
image.color: style.palette.buttonText
}
}
}
spinBox {
text.alignment: Qt.AlignHCenter | Qt.AlignVCenter
indicator {
implicitHeight: Style.Stretch
color: style.palette.base
border.width: 0
margins: 0
foreground {
color: "transparent"
image.fillMode: Image.PreserveAspectFit
image.source: "qrc:/qt-project.org/imports/QtQuick/Controls/Basic/images/arrow-indicator.png"
image.color: "black"
// Note: by setting a rotation, we cannot at the same time set the implicit size to
// Stretch, since Stretch will be based on the unrotated geometry of the indicator.
// So if the height of the indicator is different from the width, things will look wrong.
implicitWidth: 14
implicitHeight: 14
alignment: Qt.AlignCenter
}
down {
alignment: Qt.AlignLeft
foreground.rotation: 90
}
up {
alignment: Qt.AlignRight
foreground.rotation: -90
}
}
}
radioButton {
background.visible: false
indicator {
radius: 255
foreground {
margins: 4
visible: false
radius: 255
}
}
text.alignment: Qt.AlignVCenter | Qt.AlignLeft
checked.indicator.foreground.visible: true
}
itemDelegate {
text.alignment: Qt.AlignVCenter | Qt.AlignLeft
background {
// Make it flat
color: palette.base
border.width: 0
shadow.visible: false
}
hovered.background.color: palette.highlight
}
textField {
text.alignment: Qt.AlignVCenter
background {
implicitWidth: 150
color: style.palette.base
gradient: null
}
}
slider {
background {
visible: false
implicitWidth: 150
}
indicator {
implicitWidth: Style.Stretch
implicitHeight: 8
radius: 8
foreground {
radius: 7
}
}
}
switchControl {
background.visible: false
text.alignment: Qt.AlignVCenter
indicator {
implicitWidth: style.indicatorSize * 2
implicitHeight: style.indicatorSize
alignment: Qt.AlignLeft | Qt.AlignVCenter
radius: style.indicatorSize / 2
foreground {
color: style.palette.base
radius: style.indicatorSize / 2
}
}
checked.indicator.foreground.color: style.palette.accent
}
}
|