From 21a4b9e0e81c4a4867105d60fe98c96cac165668 Mon Sep 17 00:00:00 2001 From: Matti Viljanen Date: Fri, 20 Mar 2020 16:16:30 +0200 Subject: [PATCH] Remove audio tests from main page --- qml/harbour-batterybuddy.qml | 58 ++++++++++++++++++++ qml/pages/MainPage.qml | 102 ----------------------------------- 2 files changed, 58 insertions(+), 102 deletions(-) diff --git a/qml/harbour-batterybuddy.qml b/qml/harbour-batterybuddy.qml index 76f01c3..8f724fc 100644 --- a/qml/harbour-batterybuddy.qml +++ b/qml/harbour-batterybuddy.qml @@ -16,11 +16,69 @@ * Author: Matti Viljanen */ import QtQuick 2.0 +import QtMultimedia 5.6 import Sailfish.Silica 1.0 +import Nemo.Notifications 1.0 import "pages" ApplicationWindow { + SoundEffect { + id: alertLow + volume: 0.6 + source: settings.lowAlertFile + + } + + SoundEffect { + id: alertHigh + volume: 0.6 + source: settings.highAlertFile + } + + Notification { + id: notification + property bool test: false + appName: qsTr("Battery Buddy") + appIcon: "/usr/share/icons/hicolor/128x128/apps/harbour-batterybuddy.png" + summary: qsTr("Battery charge", "Battery charge 20%") +" "+ battery.charge + "%" + body: test ? qsTr("This is a test.") : battery.charging ? qsTr("Please disconnect the charger.") : qsTr("Please connect the charger.") + previewSummary: summary + previewBody: body + urgency: Notification.Critical + function republish() { + if(replacesId > 0) + close() + publish() + } + function republishTest() { + test = true + republish() + test = false + } + } + + Timer { + id: alertTimer + interval: settings.interval * 1000 // sec -> msec + running: true + repeat: true + onTriggered: { + if(battery.charge <= settings.lowerLimit && battery.state === "discharging") { + alertLow.play() + notification.republish() + } + else if(battery.charge >= settings.upperLimit && + (battery.state === "charging" && battery.charging === true) || (battery.state === "idle" && battery.charging === false)) { + alertHigh.play() + notification.republish() + } + else if(notification.replacesId > 0) { + notification.close() + } + } + } + initialPage: Component { MainPage { } } cover: Qt.resolvedUrl("cover/CoverPage.qml") allowedOrientations: defaultAllowedOrientations diff --git a/qml/pages/MainPage.qml b/qml/pages/MainPage.qml index 780469c..0620dda 100644 --- a/qml/pages/MainPage.qml +++ b/qml/pages/MainPage.qml @@ -16,9 +16,7 @@ * Author: Matti Viljanen */ import QtQuick 2.0 -import QtMultimedia 5.6 import Sailfish.Silica 1.0 -import Nemo.Notifications 1.0 import "../components" Page { @@ -36,62 +34,6 @@ Page { } } - SoundEffect { - id: alertLow - volume: 0.6 - source: settings.lowAlertFile - - } - - SoundEffect { - id: alertHigh - volume: 0.6 - source: settings.highAlertFile - } - - Notification { - id: notification - property bool test: false - appName: qsTr("Battery Buddy") - appIcon: "/usr/share/icons/hicolor/128x128/apps/harbour-batterybuddy.png" - summary: qsTr("Battery charge", "Battery charge 20%") +" "+ battery.charge + "%" - body: test ? qsTr("This is a test.") : battery.charging ? qsTr("Please disconnect the charger.") : qsTr("Please connect the charger.") - previewSummary: summary - previewBody: body - urgency: Notification.Critical - function republish() { - if(replacesId > 0) - close() - publish() - } - function republishTest() { - test = true - republish() - test = false - } - } - - Timer { - id: alertTimer - interval: settings.interval * 1000 // sec -> msec - running: true - repeat: true - onTriggered: { - if(battery.charge <= settings.lowerLimit && battery.state === "discharging") { - alertLow.play() - notification.republish() - } - else if(battery.charge >= settings.upperLimit && - (battery.state === "charging" && battery.charging === true) || (battery.state === "idle" && battery.charging === false)) { - alertHigh.play() - notification.republish() - } - else if(notification.replacesId > 0) { - notification.close() - } - } - } - // To enable PullDownMenu, place our content in a SilicaFlickable SilicaFlickable { id: mainFlickable @@ -168,50 +110,6 @@ Page { color: Theme.primaryColor font.pixelSize: Theme.fontSizeSmall } - Label { - x: Theme.paddingLarge - text: qsTr("Alert tests") - color: Theme.highlightColor - } - Label { - x: Theme.paddingLarge*2 - width: parent.width - x*2; - wrapMode: Text.Wrap - text: qsTr("Click the buttons to test the sound and notification.") - color: Theme.primaryColor - font.pixelSize: Theme.fontSizeSmall - } - Item { - width: parent.width - height: lowButton.height - anchors.left: parent.left - Item { - width: parent.width / 2 - height: lowButton.height - Button { - id: lowButton - anchors.centerIn: parent - text: qsTr("Discharged") - onClicked: { - alertLow.play() - notification.republishTest() - } - } - } - Item { - anchors.right: parent.right - width: parent.width / 2 - height: lowButton.height - Button { - text: qsTr("Charged") - anchors.centerIn: parent - onClicked: { - alertHigh.play() - notification.republishTest() - } - } - } - } Item { width: parent.width height: Theme.paddingLarge