-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathdigital-charge-state.qml
122 lines (112 loc) · 3.68 KB
/
digital-charge-state.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
/*
* Copyright (C) 2022 - Ed Beroset <github.com/beroset>
* 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.15
import QtQuick.Shapes 1.15
import org.asteroid.controls 1.0
import org.asteroid.utils 1.0
import Nemo.Mce 1.0
Item {
Icon {
id: batteryIcon
name: "ios-battery-charging"
visible: batteryChargeState.value === MceBatteryState.Charging
anchors {
centerIn: parent
verticalCenterOffset: -parent.height * 0.272
}
width: parent.width * 0.2
height: parent.height * 0.2
opacity: displayAmbient ? 0.4 : 0.9
}
Text {
id: datetext
anchors {
centerIn: parent
verticalCenterOffset: parent.height * 0.25
}
font {
family: "Titillium"
weight: Font.Thin
pixelSize: parent.height * 0.06
}
color: "white"
text: wallClock.time.toLocaleString(Qt.locale(), "ddd dd");
}
Text {
id: time
anchors.centerIn: parent
font {
family: "Titillium"
weight: Font.Thin
pixelSize: parent.height * 0.30
}
color: "white"
text: wallClock.time.toLocaleString(Qt.locale(), (use12H.value ? "hhmm ap" : "HHmm")).slice(0,4);
}
Text {
id: ampm
visible: use12H.value
anchors {
centerIn: parent
verticalCenterOffset: parent.height * 0.143
}
font {
family: "Titillium"
weight: Font.Bold
pixelSize: parent.height * 0.05
}
color: "white"
text: wallClock.time.toLocaleString(Qt.locale(), "ap");
}
Shape {
id: chargeArc
property real angle: batteryChargePercentage.percent * 360 / 100
// radius of arc is scalefactor * height or width
property real scalefactor: 0.46
property var chargecolor: Math.floor(batteryChargePercentage.percent / 33.35)
visible: true // batteryChargeState.value == MceBatteryState.Charging
opacity: displayAmbient ? 0.5 : 1.0
anchors.fill: parent
smooth: true
readonly property var colorArray: [ "red", "yellow", Qt.rgba(0.318, 1, 0.051, 0.9)]
ShapePath {
fillColor: "transparent"
strokeColor: chargeArc.colorArray[chargeArc.chargecolor]
strokeWidth: parent.height * 0.02
capStyle: ShapePath.RoundCap
joinStyle: ShapePath.RoundJoin
startX: width / 2
startY: height * ( 0.5 - chargeArc.scalefactor)
PathAngleArc {
centerX: parent.width / 2
centerY: parent.height / 2
radiusX: chargeArc.scalefactor * parent.width
radiusY: chargeArc.scalefactor * parent.height
startAngle: -90
sweepAngle: chargeArc.angle
moveToStart: false
}
}
}
MceBatteryLevel {
id: batteryChargePercentage
}
MceBatteryState {
id: batteryChargeState
}
}