harbour-batterybuddy/application/qml/pages/SettingsPage.qml

368 lines
13 KiB
QML
Raw Normal View History

/**
* Battery Buddy, a Sailfish application to prolong battery lifetime
*
2020-03-21 04:27:09 +03:00
* Copyright (C) 2019-2020 Matti Viljanen
*
* Battery Buddy is free software: you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* Battery Buddy 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
2020-03-24 11:02:30 +03:00
* General Public License along with Battery Buddy. If not, see <http://www.gnu.org/licenses/>.
*
* Author: Matti Viljanen
*/
2021-04-09 23:27:20 +03:00
import QtQuick 2.2
import Sailfish.Silica 1.0
import Process 1.0
2020-03-20 23:57:59 +03:00
import "../components"
Page {
id: settingsPage
2020-03-21 17:03:07 +03:00
allowedOrientations: Orientation.Portrait | Orientation.Landscape | Orientation.LandscapeInverted
2020-03-21 14:12:45 +03:00
Component.onCompleted: {
}
2021-04-09 23:25:43 +03:00
//////////////////////////////////////////////////
//
// TIMERS AND PROCESSES
//
//////////////////////////////////////////////////
Timer {
id: startupTimer
interval: 100
repeat: false
running: true
onTriggered: {
autoStopCharging.checked = settings.limitEnabled
highLimitSlider.value = settings.highLimit
lowLimitSlider.value = settings.lowLimit
highAlertSlider.value = settings.highAlert
lowAlertSlider.value = settings.lowAlert
highIntervalSlider.value = settings.highNotificationsInterval
lowIntervalSlider.value = settings.lowNotificationsInterval
console.debug("SettingsPage values updated")
daemonCheck.start()
}
}
Timer {
id: daemonToggle
interval: 100
running: false
repeat: false
onTriggered: {
var action = daemonEnabledSwitch.checked ? "disable" : "enable"
console.log("Action: " + action)
2021-04-10 01:32:09 +03:00
_toggleProcess.start("systemctl", ["--user", action, "harbour-batterybuddy.service"])
}
}
Process {
// Only used by daemonToggle timer
id: _toggleProcess
onFinished: {
daemonCheck.start()
console.debug("Service toggle " + (errorCode() === 0 ? "succeeded" : "failed"))
}
}
Timer {
id: daemonCheck
interval: 0
running: false
repeat: false
onTriggered: {
2021-04-10 01:32:09 +03:00
_checkProcess.start("systemctl", ["--user", "is-enabled", "harbour-batterybuddy.service"])
}
}
Process {
// Only used by daemonCheck timer
id: _checkProcess
onFinished: {
if(errorCode() === 0) {
daemonEnabledSwitch.checked = true
}
else {
daemonEnabledSwitch.checked = false
}
daemonEnabledSwitch.busy = false
console.info("Service is " + (errorCode() === 0 ? "enabled" : "disabled"))
}
2020-03-21 14:12:45 +03:00
}
2021-04-09 23:25:43 +03:00
//////////////////////////////////////////////////
//
// MAIN CONTENT
//
//////////////////////////////////////////////////
SilicaFlickable {
anchors.fill: parent
2020-03-21 17:03:07 +03:00
contentHeight: flow.height + Theme.horizontalPageMargin
2020-03-21 04:25:26 +03:00
PullDownMenu {
MenuItem {
text: qsTr("About", "About this application")
onClicked: pageStack.push(Qt.resolvedUrl("AboutPage.qml"))
}
}
2020-03-21 17:03:07 +03:00
Flow {
id: flow
anchors {
2020-03-21 17:03:07 +03:00
top: parent.top
left: parent.left
right: parent.right
}
2020-03-21 17:03:07 +03:00
height: header.height + Math.max(columnOne.heigh, columnTwo.height)
2020-03-21 17:03:07 +03:00
PageHeader {
id: header
title: qsTr("Settings")
}
2021-04-09 23:25:43 +03:00
//////////////////////////////////////////////////
//
// THE LEFT/TOP COLUMN
//
//////////////////////////////////////////////////
2020-03-21 17:03:07 +03:00
Column {
id: columnOne
width: isPortrait ? parent.width : parent.width / 2
spacing: Theme.paddingMedium
Label {
x: Theme.paddingLarge
text: qsTr("Background service")
color: Theme.highlightColor
}
TextSwitch {
id: daemonEnabledSwitch
text: qsTr("Start background service at startup")
checked: true
onClicked: {
busy = true
checked = !checked
daemonToggle.start()
}
}
2020-03-21 17:03:07 +03:00
Label {
x: Theme.paddingLarge
text: qsTr("Charging settings")
color: Theme.highlightColor
}
Label {
text: qsTr("This option disables charging automatically when the battery has charged above the pausing percentage and enables it again when the battery has depleted below the resuming percentage.")
anchors {
left: parent.left
right: parent.right
leftMargin: Theme.horizontalPageMargin*2
rightMargin: Theme.horizontalPageMargin
}
color: Theme.primaryColor
font.pixelSize: Theme.fontSizeExtraSmall
wrapMode: Text.Wrap
}
2020-03-21 17:03:07 +03:00
TextSwitch {
id: autoStopCharging
text: qsTr("Automatic charging control")
onCheckedChanged: settings.limitEnabled = checked
}
2020-03-21 17:03:07 +03:00
SectionHeader { text: qsTr("Pause charging limit") }
MySlider {
2020-03-21 17:03:07 +03:00
id: highLimitSlider
2021-04-10 01:42:08 +03:00
minimumValue: 6
maximumValue: 100
2020-03-21 17:03:07 +03:00
stepSize: 1
valueText: value + "%"
onValueChanged: {
if(lowLimitSlider.value >= value)
lowLimitSlider.value = value - 1
}
onReleased: save()
function save() {
settings.lowLimit = lowLimitSlider.value
settings.highLimit = value
}
}
AdjustmentButtons {
targetSlider: highLimitSlider
smallChange: 1
largeChange: 5
}
SectionHeader { text: qsTr("Resume charging limit") }
MySlider {
2020-03-21 17:03:07 +03:00
id: lowLimitSlider
2021-04-10 01:42:08 +03:00
minimumValue: 5
maximumValue: 99
2020-03-21 17:03:07 +03:00
stepSize: 1
valueText: value + "%"
onValueChanged: {
if(highLimitSlider.value <= value)
highLimitSlider.value = value + 1
}
onReleased: save()
function save() {
settings.lowLimit = value
settings.highLimit = highLimitSlider.value
}
}
AdjustmentButtons {
targetSlider: lowLimitSlider
smallChange: 1
largeChange: 5
}
}
2021-04-09 23:25:43 +03:00
//////////////////////////////////////////////////
//
// THE RIGHT/BOTTOM COLUMN
//
//////////////////////////////////////////////////
2020-03-21 17:03:07 +03:00
Column {
id: columnTwo
width: isPortrait ? parent.width : parent.width / 2
spacing: Theme.paddingMedium
Label {
x: Theme.paddingLarge
text: qsTr("Notification settings")
color: Theme.highlightColor
}
Label {
text: qsTr("Display visual and audible notifications about reached battery charge levels, when the battery charge is below or above desired percentage.")
anchors {
left: parent.left
right: parent.right
leftMargin: Theme.horizontalPageMargin*2
rightMargin: Theme.horizontalPageMargin
}
color: Theme.primaryColor
font.pixelSize: Theme.fontSizeExtraSmall
wrapMode: Text.Wrap
}
SectionHeader { text: qsTr("Battery full notification") }
MySlider {
2020-03-21 17:03:07 +03:00
id: highAlertSlider
2021-04-10 01:42:08 +03:00
minimumValue: 6
2020-03-21 17:03:07 +03:00
maximumValue: 100
stepSize: 1
valueText: value + "%"
onValueChanged: {
if(lowAlertSlider.value >= value)
lowAlertSlider.value = value - 1
}
onReleased: save()
function save() {
settings.lowAlert = lowAlertSlider.value
settings.highAlert = value
}
2020-03-21 17:03:07 +03:00
}
AdjustmentButtons {
targetSlider: highAlertSlider
smallChange: 1
largeChange: 5
}
SectionHeader { text: qsTr("Battery low notification") }
MySlider {
2020-03-21 17:03:07 +03:00
id: lowAlertSlider
2021-04-10 01:42:08 +03:00
minimumValue: 5
2020-03-21 17:03:07 +03:00
maximumValue: 99
stepSize: 1
valueText: value + "%"
onValueChanged: {
if(highAlertSlider.value <= value)
highAlertSlider.value = value + 1
}
onReleased: save()
function save(){
settings.lowAlert = value
settings.highAlert = highAlertSlider.value
}
2020-03-21 17:03:07 +03:00
}
AdjustmentButtons {
targetSlider: lowAlertSlider
smallChange: 1
largeChange: 5
}
SectionHeader { text: qsTr("Battery high notification interval") }
MySlider {
id: highIntervalSlider
minimumValue: 50
maximumValue: 610
2020-03-21 17:03:07 +03:00
stepSize: 10
valueText: updateValueText()
onValueChanged: updateValueText()
function updateValueText() {
if(value == 50)
return qsTr("Once")
if(value == 610)
return qsTr("Never")
return Math.floor(value / 60) + (value % 60 < 10 ? ":0" + value % 60 : ":" + value % 60)
}
onReleased: save()
function save() {
settings.highNotificationsInterval = value
}
}
AdjustmentButtons {
targetSlider: highIntervalSlider
smallChange: 10
largeChange: 60
2020-03-21 17:03:07 +03:00
}
SectionHeader { text: qsTr("Battery low notification interval") }
MySlider {
id: lowIntervalSlider
minimumValue: 50
maximumValue: 610
stepSize: 10
valueText: updateValueText()
onValueChanged: updateValueText()
function updateValueText() {
if(value == 50)
return qsTr("Once")
if(value == 610)
return qsTr("Never")
return Math.floor(value / 60) + (value % 60 < 10 ? ":0" + value % 60 : ":" + value % 60)
}
onReleased: save()
function save() {
settings.lowNotificationsInterval = value
}
}
AdjustmentButtons {
targetSlider: lowIntervalSlider
smallChange: 10
largeChange: 60
}
}
}
}
}