-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathnumerals-duo-neon-green.qml
executable file
·123 lines (116 loc) · 4.48 KB
/
numerals-duo-neon-green.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
/*
* Copyright (C) 2021 - Darrel Griët <[email protected]>
* 2021 - Timo Könnecke <github.com/eLtMosen>
* 2016 - Sylvia van Os <[email protected]>
* 2015 - Florent Revest <[email protected]>
* 2012 - Vasiliy Sorokin <[email protected]>
* Aleksey Mikhailichenko <[email protected]>
* Arto Jalkanen <[email protected]>
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 2.1 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.9
import QtGraphicalEffects 1.12
import org.asteroid.utils 1.0
import org.asteroid.controls 1.0
Item {
property int length: width > height ? height : width
property string imgPath: "../watchfaces-img/numerals-duo-neon-green-"
id: root
Item {
x: DeviceInfo.hasRoundScreen ? length * 0.1 : (root.width != length ? root.width/2 - length/2 : 0)
y: DeviceInfo.hasRoundScreen ? length * 0.1 : (root.height != length ? root.height/2 - length/2 : 0)
width: DeviceInfo.hasRoundScreen ? length * 0.8 : length
height: DeviceInfo.hasRoundScreen ? length * 0.8 : length
Rectangle {
id: greenColor
anchors.fill: parent
smooth: true
visible: false
color: "#b0e60d"
}
Rectangle {
id: whiteColor
anchors.fill: parent
smooth: true
visible: false
color: "#ffffff"
}
Image {
id: topLeft
visible: false
smooth: true
fillMode: Image.PreserveAspectFit
x: parseInt(parent.width*0.135)
y: parseInt(parent.height*0.045)
sourceSize: Qt.size(parent.width/2 - parent.width*0.15, parent.height/2 - parent.height*0.15)
source: imgPath + wallClock.time.toLocaleString(Qt.locale(), "HH").slice(0, 1) + ".png"
}
Image {
id: topRight
visible: false
smooth: true
fillMode: Image.PreserveAspectFit
x: parseInt(parent.width/2 + parent.width*0.03)
y: parseInt(parent.height*0.045)
sourceSize: Qt.size(parent.width/2 - parent.width*0.15, parent.height/2 - parent.height*0.15)
source: imgPath + wallClock.time.toLocaleString(Qt.locale(), "HH").slice(1, 2) + ".png"
}
Image {
id: bottomLeft
visible: false
smooth: true
fillMode: Image.PreserveAspectFit
x: parseInt(parent.width*0.135)
y: parseInt(parent.height/2 + parent.height*0.025)
sourceSize: Qt.size(parent.width/2 - parent.width*0.15, parent.height/2 - parent.height*0.15)
source: imgPath + wallClock.time.toLocaleString(Qt.locale(), "mm").slice(0, 1) + ".png"
}
Image {
id: bottomRight
visible: false
smooth: true
fillMode: Image.PreserveAspectFit
x: parseInt(parent.width/2 + parent.width*0.03)
y: parseInt(parent.height/2 + parent.height*0.025)
sourceSize: Qt.size(parent.width/2 - parent.width*0.15, parent.height/2 - parent.height*0.15)
source: imgPath + wallClock.time.toLocaleString(Qt.locale(), "mm").slice(1, 2) + ".png"
}
OpacityMask {
invert: true
anchors.fill: topLeft
source: greenColor
maskSource: topLeft
}
OpacityMask {
invert: true
anchors.fill: topRight
source: greenColor
maskSource: topRight
}
OpacityMask {
invert: true
anchors.fill: bottomLeft
source: whiteColor
maskSource: bottomLeft
}
OpacityMask {
invert: true
anchors.fill: bottomRight
source: whiteColor
maskSource: bottomRight
}
}
}