123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- /*
- * Copyright (C) 2015 Malte Veerman <malte.veerman@gmail.com>
- *
- * 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 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 Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- */
- import QtQuick 2.4
- import QtQuick.Controls 1.3
- import QtQuick.Layouts 1.2
- import QtQuick.Dialogs 1.2
- import org.kde.kirigami 2.4 as Kirigami
- import org.kde.kcm 1.0
- import Fancontrol.Qml 1.0 as Fancontrol
- Item {
- property QtObject loader: Fancontrol.Base.loader
- property QtObject systemdCom: Fancontrol.Base.systemdCom
- property QtObject pwmFanModel: Fancontrol.Base.pwmFanModel
- property QtObject tempModel: Fancontrol.Base.tempModel
- property var locale: Qt.locale()
- property real textWidth: 0
- property var pwmFans: pwmFanModel.fans
- id: root
- implicitWidth: 1024
- implicitHeight: 768
- Connections {
- target: Fancontrol.Base
- onNeedsApplyChanged: kcm.needsSave = Fancontrol.Base.needsApply
- }
- Connections {
- target: kcm
- onAboutToSave: {
- Fancontrol.Base.apply();
- }
- onAboutToLoad: {
- Fancontrol.Base.load();
- enabledBox.checked = systemdCom.serviceActive;
- }
- onAboutToDefault: enabledBox.checked = false
- }
- ColumnLayout {
- id: noFansInfo
- width: parent.width
- anchors.verticalCenter: parent.verticalCenter
- spacing: Kirigami.Units.smallSpacing * 2
- visible: pwmFans.length === 0
- Label {
- Layout.alignment: Qt.AlignCenter
- text: i18n("There are no pwm capable fans in your system.")
- font.pointSize: 14
- font.bold: true
- }
- Button {
- Layout.alignment: Qt.AlignCenter
- text: loader.sensorsDetected ? i18n("Detect fans again") : i18n("Detect fans")
- iconName: kcm.needsAuthorization ? "dialog-password" : ""
- onClicked: loader.detectSensors()
- }
- }
- CheckBox {
- id: enabledBox
- anchors.top: parent.top
- visible: pwmFans.length > 0
- text: i18n("Control fans manually")
- checked: systemdCom.serviceEnabled && systemdCom.serviceActive;
- onCheckedChanged: {
- systemdCom.serviceActive = enabledBox.checked;
- loader.restartServiceAfterTesting = checked;
- autostartBox.checked = true;
- }
- Connections {
- target: systemdCom
- onServiceActiveChanged: if (systemdCom.serviceActive != enabledBox.checked) enabledBox.checked = systemdCom.serviceActive
- }
- }
- ColumnLayout {
- id: bodyLayout
- width: parent.width
- anchors.bottom: advancedButton.top
- anchors.top: enabledBox.bottom
- anchors.bottomMargin: advancedButton.height / 4
- visible: enabledBox.checked
- CheckBox {
- id: autostartBox
- text: i18n("Enable service at boot")
- checked: systemdCom.serviceEnabled
- onCheckedChanged: systemdCom.serviceEnabled = checked
- Connections {
- target: systemdCom
- onServiceEnabledChanged: if (systemdCom.serviceEnabled != autostartBox.checked) autostartBox.checked = systemdCom.serviceEnabled
- }
- }
- RowLayout {
- visible: enabledBox.checked && pwmFans.length > 0
- Label {
- text: i18n("Fan:")
- Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter
- renderType: Text.NativeRendering
- }
- ComboBox {
- id: fanComboBox
- model: pwmFanModel
- textRole: "display"
- Layout.fillWidth: true
- Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
- }
- Button {
- Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
- text: i18n("Detect fans")
- iconName: kcm.needsAuthorization ? "dialog-password" : ""
- onClicked: loader.detectSensors()
- }
- }
- Loader {
- Layout.fillWidth: true
- Layout.fillHeight: true
- active: pwmFans.length > fanComboBox.currentIndex && fanComboBox.currentIndex >= 0
- sourceComponent: Fancontrol.FanItem {
- unit: Fancontrol.Base.unit
- fan: pwmFans[fanComboBox.currentIndex]
- systemdCom: root.systemdCom
- tempModel: root.tempModel
- minTemp: Fancontrol.Base.minTemp
- maxTemp: Fancontrol.Base.maxTemp
- }
- }
- }
- Item {
- id: advancedButton
- property bool expanded: false
- anchors.bottom: settingsArea.top
- width: parent.width
- height: advancedArrow.height
- visible: enabledBox.checked
- Image {
- id: advancedArrow
- source: parent.expanded ? "image://icon/go-down" : "image://icon/go-next"
- fillMode: Image.PreserveAspectFit
- height: advancedLabel.implicitHeight
- }
- Label {
- id: advancedLabel
- anchors.left: advancedArrow.right
- text: i18n("Advanced settings")
- font.bold: true
- }
- MouseArea {
- anchors.fill: parent
- onClicked: parent.expanded = !parent.expanded
- }
- }
- ColumnLayout {
- id: settingsArea
- visible: enabledBox.checked && parent.height - enabledBox.height - bodyLayout.height - advancedButton.height > height
- width: parent.width
- anchors.bottom: parent.bottom
- clip: true
- state: advancedButton.expanded ? "VISIBLE" : "HIDDEN"
- states: [
- State {
- name: "VISIBLE"
- PropertyChanges {
- target: settingsArea
- height: settingsArea.implicitHeight
- }
- },
- State {
- name: "HIDDEN"
- PropertyChanges {
- target: settingsArea
- height: 0
- }
- }
- ]
- transitions: Transition {
- NumberAnimation {
- properties: "height"
- easing.type: Easing.InOutQuad
- }
- }
- RowLayout {
- width: parent.width
- Label {
- Layout.preferredWidth: root.textWidth
- clip: true
- text: i18n("Interval:")
- horizontalAlignment: Text.AlignRight
- Component.onCompleted: root.textWidth = Math.max(root.textWidth, contentWidth)
- }
- SpinBox {
- Layout.minimumWidth: implicitWidth
- Layout.fillWidth: true
- value: loader.interval
- suffix: " " + i18np("second", "seconds", loader.interval)
- minimumValue: 1.0
- onValueChanged: loader.interval = value
- }
- }
- RowLayout {
- width: parent.width
- Label {
- Layout.preferredWidth: root.textWidth
- clip: true
- text: i18n("Minimum temperature for fan graphs:")
- horizontalAlignment: Text.AlignRight
- Component.onCompleted: root.textWidth = Math.max(root.textWidth, contentWidth)
- }
- SpinBox {
- id: minTempBox
- Layout.minimumWidth: implicitWidth
- Layout.fillWidth: true
- decimals: 2
- maximumValue: maxTempBox.value
- minimumValue: Units.fromKelvin(0, Fancontrol.Base.unit)
- value: Units.fromCelsius(Fancontrol.Base.minTemp, Fancontrol.Base.unit)
- suffix: Fancontrol.Base.unit
- onValueChanged: Fancontrol.Base.minTemp = Units.toCelsius(value, Fancontrol.Base.unit)
- }
- }
- RowLayout {
- width: parent.width
- Label {
- Layout.preferredWidth: root.textWidth
- clip: true
- text: i18n("Maximum temperature for fan graphs:")
- horizontalAlignment: Text.AlignRight
- Component.onCompleted: root.textWidth = Math.max(root.textWidth, contentWidth)
- }
- SpinBox {
- id: maxTempBox
- Layout.minimumWidth: implicitWidth
- Layout.fillWidth: true
- decimals: 2
- maximumValue: Number.POSITIVE_INFINITY
- minimumValue: minTempBox.value
- value: Units.fromCelsius(Fancontrol.Base.maxTemp, Fancontrol.Base.unit)
- suffix: Fancontrol.Base.unit
- onValueChanged: Fancontrol.Base.maxTemp = Units.toCelsius(value, Fancontrol.Base.unit)
- }
- }
- RowLayout {
- width: parent.width
- Label {
- Layout.preferredWidth: root.textWidth
- clip: true
- text: i18n("Name of the fancontrol systemd service:")
- horizontalAlignment: Text.AlignRight
- Component.onCompleted: root.textWidth = Math.max(root.textWidth, contentWidth)
- }
- Fancontrol.OptionInput {
- Layout.minimumWidth: implicitWidth
- Layout.fillWidth: true
- color: systemdCom.serviceExists ? "green" : "red"
- value: Fancontrol.Base.serviceName
- onTextChanged: Fancontrol.Base.serviceName = text
- }
- }
- RowLayout {
- width: parent.width
- Label {
- Layout.preferredWidth: root.textWidth
- clip: true
- text: i18n("Path to the fancontrol config file:")
- horizontalAlignment: Text.AlignRight
- Component.onCompleted: root.textWidth = Math.max(root.textWidth, contentWidth)
- }
- Fancontrol.OptionInput {
- Layout.minimumWidth: implicitWidth
- Layout.fillWidth: true
- value: Fancontrol.Base.configUrl.toString().replace("file://", "")
- color: Fancontrol.Base.configValid ? "green" : "red"
- onTextChanged: Fancontrol.Base.configUrl = text
- }
- Button {
- action: loadAction
- }
- }
- }
- Action {
- id: loadAction
- iconName: "document-open"
- onTriggered: openFileDialog.open()
- tooltip: i18n("Load configuration file")
- shortcut: StandardKey.Open
- }
- FileDialog {
- id: openFileDialog
- title: i18n("Please choose a configuration file")
- folder: "file:///etc"
- selectExisting: true
- selectMultiple: false
- onAccepted: Fancontrol.Base.configUrl = fileUrl;
- }
- Fancontrol.ErrorDialog {
- id: errorDialog
- modality: Qt.ApplicationModal
- }
- }
|