浏览代码

Delete fancontrol-gui.qml

Maldela 10 年之前
父节点
当前提交
26f212c209
共有 1 个文件被更改,包括 0 次插入212 次删除
  1. 0 212
      fancontrol-gui/qml/fancontrol-gui.qml

+ 0 - 212
fancontrol-gui/qml/fancontrol-gui.qml

@@ -1,212 +0,0 @@
-/*
- * Copyright (C) 2015  Malte Veerman <maldela@halloarsch.de>
- *
- * 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.Window 2.2
-import QtQuick.Dialogs 1.2
-import QtQuick.Layouts 1.1
-
-ApplicationWindow {
-    id: window
-    title: i18n("Fancontrol-GUI")
-    width: 1024
-    height: 768
-    visible: true
-
-    menuBar: MenuBar {
-        Menu {
-            title: i18n("File")
-            MenuItem {
-                text: i18n("Load configuration file")
-                onTriggered: openFileDialog.open();
-            }
-            MenuItem {
-                text: i18n("Save configuration file")
-                onTriggered: loader.save();
-            }
-            MenuItem {
-                text: i18n("Save configuration file as")
-                onTriggered: saveFileDialog.open();
-            }
-            MenuItem {
-                text: i18n("Exit")
-                onTriggered: Qt.quit();
-            }
-        }
-    }
-
-    toolBar: ToolBar {
-        id: toolBar
-        RowLayout {
-            id: toolBarLayout
-            anchors.fill: parent
-
-            ToolButton {
-                iconName: "document-open"
-                onClicked: openFileDialog.open();
-
-                ToolTip {
-                    text: i18n("Load configuration file")
-                }
-            }
-            ToolButton {
-                iconName: "document-save"
-                onClicked: loader.save();
-
-                ToolTip {
-                    text: i18n("Save configuration file")
-                }
-            }
-            ToolButton {
-                id: restartButton
-                iconName: activeTimer.serviceActive ? "system-reboot" : "system-run"
-                visible: typeof systemdCom !== "undefined"
-                onClicked: systemdCom.dbusAction("ReloadOrRestartUnit",
-                                                 [systemdCom.serviceName + ".service", "replace"])
-
-                ToolTip {
-                    text: activeTimer.serviceActive ? i18n("Restart fancontrol") : i18n("Start fancontrol")
-                }
-
-
-            }
-            ToolButton {
-                iconName: "system-shutdown"
-                visible: typeof systemdCom !== "undefined"
-                enabled: activeTimer.serviceActive
-                onClicked: systemdCom.dbusAction("StopUnit",
-                                                 [systemdCom.serviceName + ".service", "replace"])
-
-                ToolTip {
-                    text: i18n("Stop fancontrol")
-                }
-            }
-            Item {
-                id: placeholder
-                Layout.fillWidth: true
-            }
-            Slider {
-                id: sizeSlider
-                Layout.alignment: Qt.AlignRight
-                Layout.maximumWidth: 200
-                value: 0.4
-                visible: tabView.currentIndex == 1
-            }
-        }
-    }
-
-    TabView {
-        property real minTemp: 30.0
-        property real maxTemp: 90.0
-        property string unit: "Celsius"
-
-        id: tabView
-        anchors.fill: parent
-
-        Tab {
-            title: i18n("Sensors")
-            SensorsTab {}
-        }
-        Tab {
-            title: i18n("PwmFans")
-            PwmFansTab {
-                size: sizeSlider.value
-                minTemp: tabView.minTemp
-                maxTemp: tabView.maxTemp
-                unit: tabView.unit
-            }
-        }
-        Tab {
-            title: i18n("Configfile")
-            ConfigfileTab {}
-        }
-
-        Tab {
-            title: i18n("Settings")
-            SettingsTab {
-                id: settingsTab
-                interval: loader.interval
-                minTemp: tabView.minTemp
-                maxTemp: tabView.maxTemp
-                onMinTempChanged: tabView.minTemp = minTemp
-                onMaxTempChanged: tabView.maxTemp = maxTemp
-                onUnitChanged: tabView.unit = unit
-            }
-        }
-    }
-
-    statusBar: StatusBar {
-        Text {
-            property string systemdError: typeof systemdCom != "undefined" ? systemdCom.error : ""
-            property string loaderError: loader.error
-
-            color: "red"
-
-            onSystemdErrorChanged: {
-                if (systemdError !== "Success" && systemdError.search("succeeded") == -1)
-                    text = systemdError;
-                else if (loaderError === "Success" || loaderError === "")
-                    text = ""
-            }
-            onLoaderErrorChanged: {
-                if (loaderError !== "Success")
-                    text = loaderError;
-                else if (systemdError === "Success" || systemdError === "")
-                    text = ""
-            }
-        }
-    }
-
-    Timer {
-        property bool serviceActive
-
-        id: activeTimer
-        interval: 1000
-        running: typeof systemdCom !== "undefined"
-        repeat: true
-        onTriggered: serviceActive = systemdCom.serviceActive()
-    }
-
-    FileDialog {
-        id: openFileDialog
-        title: i18n("Please choose a configuration file")
-        folder: "file:///etc"
-        selectExisting: true
-        selectMultiple: false
-        modality: Qt.NonModal
-
-        onAccepted: {
-            loader.configUrl = fileUrl;
-        }
-    }
-
-    FileDialog {
-        id: saveFileDialog
-        title: i18n("Save configuration file as")
-        folder: "file:///etc"
-        selectExisting: false
-        selectMultiple: false
-        modality: Qt.NonModal
-
-        onAccepted: {
-            loader.save(fileUrl);
-        }
-    }
-}