mirror of
https://github.com/arcan1s/netctl-gui.git
synced 2025-07-13 13:55:51 +00:00
update ChangeLog
update CmakeLists update PKGBUILDs fix GUI building
This commit is contained in:
276
sources/plasmoid-kf5/package/contents/ui/main.qml
Normal file
276
sources/plasmoid-kf5/package/contents/ui/main.qml
Normal file
@ -0,0 +1,276 @@
|
||||
/***************************************************************************
|
||||
* This file is part of netctl-gui *
|
||||
* *
|
||||
* netctl-gui 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. *
|
||||
* *
|
||||
* netctl-gui 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 General Public License *
|
||||
* along with netctl-gui. If not, see http://www.gnu.org/licenses/ *
|
||||
***************************************************************************/
|
||||
|
||||
import QtQuick 2.4
|
||||
import QtQuick.Controls 1.3 as QtControls
|
||||
import org.kde.plasma.plasmoid 2.0
|
||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||
import org.kde.plasma.components 2.0 as PlasmaComponents
|
||||
|
||||
import org.kde.plasma.private.netctl 1.0
|
||||
|
||||
|
||||
Item {
|
||||
id: main
|
||||
|
||||
// variables
|
||||
// internal
|
||||
property bool debug: NetctlAdds.isDebugEnabled()
|
||||
property variant fontWeight: {
|
||||
"light": Font.Light,
|
||||
"normal": Font.Normal,
|
||||
"demibold": Font.DemiBold,
|
||||
"bold": Font.Bold,
|
||||
"black": Font.Black
|
||||
}
|
||||
property variant align: {
|
||||
"left": Text.AlignLeft,
|
||||
"center": Text.AlignHCenter,
|
||||
"right": Text.AlignRight,
|
||||
"justify": Text.AlignJustify
|
||||
}
|
||||
// external
|
||||
property variant iconPath: {
|
||||
"true": plasmoid.configuration.activeIconPath,
|
||||
"false": plasmoid.configuration.inactiveIconPath
|
||||
}
|
||||
property variant info: {
|
||||
"active": "false",
|
||||
"current": "N\\A",
|
||||
"extip4": "127.0.0.1",
|
||||
"extip6": "::1",
|
||||
"info": "N\\A",
|
||||
"intip4": "127.0.0.1",
|
||||
"intip6": "::1",
|
||||
"interfaces": "lo",
|
||||
"profiles": "",
|
||||
"status": "N\\A"
|
||||
}
|
||||
property string pattern: plasmoid.configuration.textPattern
|
||||
property bool status: false
|
||||
property string sudoPath: plasmoid.configuration.useSudo ? plasmoid.configuration.sudoPath : ""
|
||||
// signals
|
||||
signal needUpdate
|
||||
signal netctlStateChanged
|
||||
|
||||
// init
|
||||
Plasmoid.icon: iconPath["false"]
|
||||
Plasmoid.backgroundHints: "DefaultBackground"
|
||||
Plasmoid.toolTipMainText: "Netctl"
|
||||
Plasmoid.associatedApplication: plasmoid.configuration.guiPath
|
||||
|
||||
PlasmaCore.DataSource {
|
||||
id: mainData
|
||||
engine: "netctl"
|
||||
connectedSources: ["active", "current", "extip4", "extip6", "interfaces", "intip4", "intip6", "profiles", "status"]
|
||||
interval: plasmoid.configuration.autoUpdateInterval
|
||||
|
||||
onNewData: {
|
||||
if (debug) console.log("[main::onNewData] : Update source " + sourceName)
|
||||
|
||||
var needToBeUpdated = false
|
||||
if (data.value == "N\\A") return
|
||||
if (info[sourceName] != data.value) needToBeUpdated = true
|
||||
if (sourceName == "active") {
|
||||
if (info[sourceName] != data.value)
|
||||
// inverterd status
|
||||
NetctlAdds.sendNotification("Info", i18n("Network status has been changed to '%1'",
|
||||
status ? i18n("inactive") : i18n("active")))
|
||||
status = data.value == "true"
|
||||
} else if (sourceName == "current") {
|
||||
info["info"] = NetctlAdds.getInfo(data.value, info["status"])
|
||||
}
|
||||
// update
|
||||
info[sourceName] = data.value
|
||||
if (needToBeUpdated) needUpdate()
|
||||
}
|
||||
}
|
||||
|
||||
// ui
|
||||
Grid {
|
||||
id: mainGrid
|
||||
columns: 2
|
||||
|
||||
Image {
|
||||
id: icon
|
||||
source: iconPath["false"]
|
||||
}
|
||||
Text {
|
||||
id: text
|
||||
color: plasmoid.configuration.fontColor
|
||||
font.family: plasmoid.configuration.fontFamily
|
||||
font.italic: plasmoid.configuration.fontStyle == "italic" ? true : false
|
||||
font.pointSize: plasmoid.configuration.fontSize
|
||||
font.weight: fontWeight[plasmoid.configuration.fontWeight]
|
||||
horizontalAlignment: align[plasmoid.configuration.textAlign]
|
||||
textFormat: Text.RichText
|
||||
text: "N\\A"
|
||||
}
|
||||
}
|
||||
|
||||
Component.onCompleted: {
|
||||
if (debug) console.log("[main::onCompleted]")
|
||||
|
||||
// actions
|
||||
plasmoid.setAction("titleAction", "netctl-gui", plasmoid.icon)
|
||||
plasmoid.setAction("startProfile", i18n("Start profile"), "dialog-apply")
|
||||
plasmoid.setAction("stopProfile", i18n("Stop profile"), "dialog-close")
|
||||
plasmoid.setAction("stopAllProfiles", i18n("Stop all profiles"), "dialog-close")
|
||||
plasmoid.setAction("switchToProfile", i18n("Switch to profile"))
|
||||
plasmoid.setAction("restartProfile", i18n("Restart profile"), "stock-refresh")
|
||||
plasmoid.setAction("enableProfile", i18n("Enable profile"))
|
||||
plasmoid.setAction("startWifi", i18n("Show WiFi menu"), "image://netctl/wifi.png")
|
||||
// helper
|
||||
if (plasmoid.configuration.useHelper) {
|
||||
NetctlAdds.runCmd(plasmoid.configuration.helperPath)
|
||||
plasmoid.configuration.useHelper = NetctlAdds.checkHelperStatus()
|
||||
}
|
||||
}
|
||||
|
||||
onNeedUpdate: {
|
||||
if (debug) console.log("[main::onNeedUpdate]")
|
||||
|
||||
icon.source = iconPath[info["active"]]
|
||||
Plasmoid.icon = iconPath[info["active"]]
|
||||
text.text = NetctlAdds.parsePattern(pattern, info)
|
||||
Plasmoid.toolTipSubText = info["info"]
|
||||
netctlStateChanged()
|
||||
// updae geometry
|
||||
text.update()
|
||||
icon.height = text.contentHeight
|
||||
icon.width = text.contentHeight
|
||||
icon.update()
|
||||
height = text.contentHeight
|
||||
width = icon.paintedWidth + text.contentWidth
|
||||
update()
|
||||
|
||||
}
|
||||
|
||||
onNetctlStateChanged: {
|
||||
if (debug) console.log("[main::onNetctlStateChanged]")
|
||||
|
||||
var titleAction = plasmoid.action("titleAction")
|
||||
var startAction = plasmoid.action("startProfile")
|
||||
var stopAction = plasmoid.action("stopProfile")
|
||||
var stopAllAction = plasmoid.action("stopAllProfiles")
|
||||
var switchToAction = plasmoid.action("switchToProfile")
|
||||
var restartAction = plasmoid.action("restartProfile")
|
||||
var enableAction = plasmoid.action("enableProfile")
|
||||
var wifiAction = plasmoid.action("startWifi")
|
||||
|
||||
titleAction.iconSource = plasmoid.icon
|
||||
titleAction.text = info["current"] + " " + info["status"]
|
||||
|
||||
if (info["status"] == "(netctl-auto)") {
|
||||
startAction.visible = false
|
||||
stopAction.visible = false
|
||||
stopAllAction.visible = false
|
||||
switchToAction.visible = true
|
||||
restartAction.visible = false
|
||||
enableAction.visible = false
|
||||
} else {
|
||||
if (info["current"].indexOf("|") > -1) {
|
||||
startAction.visible = true
|
||||
stopAction.visible = false
|
||||
stopAllAction.visible = true
|
||||
switchToAction.visible = false
|
||||
restartAction.visible = false
|
||||
enableAction.visible = false
|
||||
} else {
|
||||
startAction.visible = true
|
||||
stopAction.visible = status
|
||||
stopAllAction.visible = false
|
||||
switchToAction.visible = false
|
||||
restartAction.visible = status
|
||||
enableAction.visible = status
|
||||
}
|
||||
if (status) {
|
||||
startAction.text = i18n("Start another profile")
|
||||
stopAction.text = i18n("Stop %1", info["current"])
|
||||
restartAction.text = i18n("Restart %1", info["current"])
|
||||
if (info["status"].indexOf("enabled") > -1)
|
||||
enableAction.text = i18n("Disable %1", info["current"])
|
||||
else
|
||||
enableAction.text = i18n("Enable %1", info["current"])
|
||||
} else
|
||||
startAction.text = i18n("Start profile")
|
||||
}
|
||||
|
||||
wifiAction.visible = plasmoid.configuration.useWifi
|
||||
}
|
||||
|
||||
function action_titleAction() {
|
||||
if (debug) console.log("[main::action_titleAction]")
|
||||
|
||||
NetctlAdds.runCmd(plasmoid.configuration.guiPath)
|
||||
}
|
||||
|
||||
function action_startProfile() {
|
||||
if (debug) console.log("[main::action_startProfile]")
|
||||
|
||||
NetctlAdds.startProfileSlot(info["profiles"].split(","), status,
|
||||
plasmoid.configuration.useHelper,
|
||||
plasmoid.configuration.netctlPath,
|
||||
sudoPath)
|
||||
}
|
||||
|
||||
function action_stopProfile() {
|
||||
if (debug) console.log("[main::action_stopProfile]")
|
||||
|
||||
NetctlAdds.stopProfileSlot(info, plasmoid.configuration.useHelper,
|
||||
plasmoid.configuration.netctlPath,
|
||||
sudoPath)
|
||||
}
|
||||
|
||||
function action_stopAllProfiles() {
|
||||
if (debug) console.log("[main::action_stopAllProfiles]")
|
||||
|
||||
NetctlAdds.stopAllProfilesSlot(plasmoid.configuration.useHelper,
|
||||
plasmoid.configuration.netctlPath,
|
||||
sudoPath)
|
||||
}
|
||||
|
||||
function action_switchToProfile() {
|
||||
if (debug) console.log("[main::action_switchToProfile]")
|
||||
|
||||
NetctlAdds.switchToProfileSlot(info["profiles"].split(","),
|
||||
plasmoid.configuration.useHelper,
|
||||
plasmoid.configuration.netctlAutoPath)
|
||||
}
|
||||
|
||||
function action_restartProfile() {
|
||||
if (debug) console.log("[main::action_restartProfile]")
|
||||
|
||||
NetctlAdds.restartProfileSlot(info, plasmoid.configuration.useHelper,
|
||||
plasmoid.configuration.netctlPath,
|
||||
sudoPath)
|
||||
}
|
||||
|
||||
function action_enableProfile() {
|
||||
if (debug) console.log("[main::action_enableProfile]")
|
||||
|
||||
NetctlAdds.enableProfileSlot(info, plasmoid.configuration.useHelper,
|
||||
plasmoid.configuration.netctlPath,
|
||||
sudoPath)
|
||||
}
|
||||
|
||||
function action_startWifi() {
|
||||
if (debug) console.log("[main::action_startWifi]")
|
||||
|
||||
NetctlAdds.runCmd(plasmoid.configuration.wifiPath)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user