forked from AsteroidOS/unofficial-watchfaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
loader.qml
409 lines (333 loc) · 15.2 KB
/
loader.qml
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
import QtGraphicalEffects 1.12
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Dialogs 1.1
import QtQuick.Layouts 1.2
import Qt.labs.settings 1.0
ApplicationWindow {
id: appRoot
property bool displayAmbient: ambientCheckBox.checked
property var nameOfWatchfaceToBeTested: Qt.application.arguments[1]
property var backgroundImage: Qt.application.arguments[2]
readonly property var initialStaticTime: new Date('2021-12-02T13:37:42')
readonly property real mouseWheelScale: 1 / 15
title: nameOfWatchfaceToBeTested
minimumWidth: 640 + controls.width
minimumHeight: 640
Settings {
property alias round: roundCheckBox.checked
property alias nonSquare: nonSquare.checked
property alias displayAmbient: ambientCheckBox.checked
property alias halfSize: halfSize.checked
property alias twelveHour: twelveHourCheckBox.checked
property alias staticTime: setStaticTimeCheckBox.checked
}
RowLayout {
spacing: 0
ToolBar {
id: controls
Layout.fillHeight: true
padding: 5
background: Rectangle {
color: "lightblue"
}
ColumnLayout {
RowLayout {
Layout.alignment: Qt.AlignCenter
Button {
id: reloadButton
flat: false
text: "\u27f2"
ToolTip.visible: hovered
ToolTip.delay: 600
ToolTip.text: qsTr("Reload qml code")
onClicked: {
watchfaceLoader.source = appRoot.nameOfWatchfaceToBeTested
+ "/usr/share/asteroid-launcher/watchfaces/"
+ appRoot.nameOfWatchfaceToBeTested + ".qml?"
+ Math.random();
}
}
Button {
id: screenshotButton
flat: false
text: qsTr("Screenshot")
ToolTip.visible: hovered
ToolTip.delay: 600
ToolTip.text: qsTr("Take a 640px screenshot and store it as PNG image")
onClicked: roundCheckBox.checked ? watchfaceDisplayFrame.snapshot("-screenshot.png") : watchfaceDisplayFrame.snapshot(".png")
}
Button {
id: previewButton
property real sequencer: 0
function transSnapshots() {
if (sequencer === 1) {
watchfaceDisplayFrame.color = "transparent";
background.source = "";
frame.color = "transparent";
watchfaceDisplayFrame.snapshot("-trans.png");
}
if (sequencer === 2) {
background.source = appRoot.backgroundImage;
roundCheckBox.checked = false;
watchfaceDisplayFrame.snapshot(".png");
}
if (sequencer === 3) {
background.source = appRoot.backgroundImage;
roundCheckBox.checked = true;
watchfaceDisplayFrame.snapshot("-round.png");
}
if (sequencer === 4) {
frame.color = "black";
sequencer = 0;
snapshotsTimer.running = false;
}
}
Timer {
id: snapshotsTimer
interval: 500; running: false; repeat: true
onTriggered: {
previewButton.sequencer++
previewButton.transSnapshots()
}
}
flat: false
text: qsTr("Generate previews")
ToolTip.visible: hovered
ToolTip.delay: 600
ToolTip.text: qsTr("Generate preview images for the .thumbnails and watchfacepreview folders")
onClicked: snapshotsTimer.running = true
}
}
ColumnLayout {
Layout.alignment: Qt.AlignCenter
RowLayout {
Layout.alignment: Qt.AlignCenter
CheckBox {
id: roundCheckBox
font.pixelSize: 30
text: "\u25EF"
ToolTip.visible: hovered
ToolTip.delay: 600
ToolTip.text: qsTr("Show the watchface as it would look on a round watch")
checked: true
}
CheckBox {
id: nonSquare
font.pixelSize: 30
text: "\u25AF"
ToolTip.visible: hovered
ToolTip.delay: 600
ToolTip.text: qsTr("Show the watchface as it would look on a non-square watch")
}
CheckBox {
id: ambientCheckBox
font.pixelSize: 40
text: "\u263D"
ToolTip.visible: hovered
ToolTip.delay: 600
ToolTip.text: qsTr("Switch to AmbientMode on black background")
}
CheckBox {
id: halfSize
text: qsTr("320px")
ToolTip.visible: hovered
ToolTip.delay: 600
ToolTip.text: qsTr("Scale down view to 320x320px from 640px")
}
}
RowLayout {
Layout.alignment: Qt.AlignCenter
CheckBox {
id: twelveHourCheckBox
text: qsTr("12h")
ToolTip.delay: 600
ToolTip.visible: hovered
ToolTip.text: qsTr("Switch to 2x 12h day format with am/pm")
}
CheckBox {
id: setStaticTimeCheckBox
text: qsTr("Set Time")
ToolTip.delay: 600
ToolTip.visible: hovered
ToolTip.text: qsTr("Set a custom time by draging the tumblers or use the mouse wheel above them")
checked: false
}
}
RowLayout {
Layout.alignment: Qt.AlignHCenter
Frame {
padding: 0
Row {
Tumbler {
id: monthsTumbler
enabled: setStaticTimeCheckBox.checked
currentIndex: appRoot.initialStaticTime.getMonth()
model: 12
WheelHandler {
property: "currentIndex"
rotationScale: appRoot.mouseWheelScale
}
delegate: Label {
text: appRoot.locale.standaloneMonthName(index, Locale.ShortFormat)
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
}
Tumbler {
id: daysTumbler
enabled: setStaticTimeCheckBox.checked
currentIndex: appRoot.initialStaticTime.getDate() - 1
model: 31
WheelHandler {
property: "currentIndex"
rotationScale: appRoot.mouseWheelScale
}
delegate: Label {
text: index + 1
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
}
}
}
Frame {
padding: 0
Row {
Tumbler {
id: hoursTumbler
enabled: setStaticTimeCheckBox.checked
currentIndex: appRoot.initialStaticTime.getHours()
model: 24
WheelHandler {
property: "currentIndex"
rotationScale: appRoot.mouseWheelScale
}
}
Tumbler {
id: minutesTumbler
enabled: setStaticTimeCheckBox.checked
currentIndex: appRoot.initialStaticTime.getMinutes()
model: 60
WheelHandler {
property: "currentIndex"
rotationScale: appRoot.mouseWheelScale
}
}
Tumbler {
id: secondsTumbler
enabled: setStaticTimeCheckBox.checked
currentIndex: appRoot.initialStaticTime.getSeconds()
model: 60
WheelHandler {
property: "currentIndex"
rotationScale: appRoot.mouseWheelScale
}
}
}
}
}
}
RowLayout {
Layout.alignment: Qt.AlignHCenter
Text {
text: qsTr("featureSlider")
}
Slider {
id: featureSlider
width: 700
from: 0
value: 0.5
to: 1
ToolTip.visible: hovered
ToolTip.delay: 600
ToolTip.text: qsTr("Can be used to test a feature such as battery level.\nDevelopers can temporarily use 'featureSlider.value' in watchface code.")
Repeater {
model: 25
delegate: Rectangle {
anchors.bottom: parent.bottom
x: parent.horizontalPadding + parent.availableWidth * index / 24
implicitWidth: 1
implicitHeight: 8
color: "brown"
}
}
Text {
text: "0.0"
anchors.left: parent.left
}
Text {
text: "1.0"
anchors.right: parent.right
}
}
Text {
text: featureSlider.value.toFixed(3)
}
}
}
}
Rectangle {
id: watchfaceDisplayFrame
function snapshot(suffix) {
watchfaceDisplayFrame.grabToImage(function(result) {
result.saveToFile(appRoot.nameOfWatchfaceToBeTested + suffix);
}, Qt.size(640, 640));
}
height: halfSize.checked ? 320 : 640
width: nonSquare.checked ? height * 0.85 : height
Rectangle {
id: frame
anchors.fill: parent
color: "black"
focus: true
layer.enabled: roundCheckBox.checked
Keys.onReturnPressed: watchfaceDisplayFrame.snapshot()
Image {
id: background
visible: !appRoot.displayAmbient
source: appRoot.backgroundImage
anchors.fill: parent
}
Loader {
id: watchfaceLoader
anchors.fill: parent
source: appRoot.nameOfWatchfaceToBeTested
+ "/usr/share/asteroid-launcher/watchfaces/"
+ appRoot.nameOfWatchfaceToBeTested + ".qml"
}
layer.effect: OpacityMask {
anchors.fill: parent
source: frame
maskSource: Rectangle {
width: frame.width
height: frame.height
radius: frame.width / 2
}
}
}
Item {
id: use12H
property bool value: twelveHourCheckBox.checked
}
Item {
id: wallClock
property var time: getDisplayTime()
function getDisplayTime(statictime) {
var displayTime = new Date();
if (setStaticTimeCheckBox.checked) {
displayTime.setHours(hoursTumbler.currentIndex, minutesTumbler.currentIndex, secondsTumbler.currentIndex);
displayTime.setMonth(monthsTumbler.currentIndex, daysTumbler.currentIndex + 1);
}
return displayTime;
}
Timer {
interval: 1000
running: true
repeat: true
onTriggered: wallClock.time = wallClock.getDisplayTime()
}
}
}
}
}