feat: add battery status indicator
This commit is contained in:
parent
74caaa8d0e
commit
37add5008a
1 changed files with 15 additions and 0 deletions
|
@ -20,6 +20,7 @@ BRectangle {
|
||||||
percentage: UPower.displayDevice?.healthPercentage ?? 0
|
percentage: UPower.displayDevice?.healthPercentage ?? 0
|
||||||
visible: UPower.displayDevice?.healthSupported ?? false
|
visible: UPower.displayDevice?.healthSupported ?? false
|
||||||
}
|
}
|
||||||
|
|
||||||
Pill {
|
Pill {
|
||||||
id: battery
|
id: battery
|
||||||
width: parent.width * (!UPower.displayDevice?.healthSupported || 3 / 5)
|
width: parent.width * (!UPower.displayDevice?.healthSupported || 3 / 5)
|
||||||
|
@ -29,5 +30,19 @@ BRectangle {
|
||||||
percentage: UPower.displayDevice?.percentage ?? 0
|
percentage: UPower.displayDevice?.percentage ?? 0
|
||||||
color: 100 * percentage / 360
|
color: 100 * percentage / 360
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
font.pointSize: 25
|
||||||
|
anchors.fill: parent
|
||||||
|
verticalAlignment: Text.AlignVCenter
|
||||||
|
horizontalAlignment: Text.AlignHCenter
|
||||||
|
|
||||||
|
text: if (UPower.displayDevice?.state === UPowerDeviceState.Charging)
|
||||||
|
return ""
|
||||||
|
else if (UPower.displayDevice?.state === UPowerDeviceState.PendingCharge && !UPower.onBattery)
|
||||||
|
return ""
|
||||||
|
|
||||||
|
visible: text
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue