mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-08 06:25:37 -05:00
839 lines
43 KiB
QML
839 lines
43 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import Quickshell
|
|
import Quickshell.Widgets
|
|
import Quickshell.Io
|
|
import qs.Common
|
|
import qs.Services
|
|
|
|
Item {
|
|
id: networkTab
|
|
|
|
property int networkSubTab: {
|
|
// Default to WiFi tab if WiFi is connected, otherwise Ethernet
|
|
if (NetworkService.networkStatus === "wifi") return 1
|
|
else if (NetworkService.networkStatus === "ethernet") return 0
|
|
else return 1 // Default to WiFi when nothing is connected
|
|
}
|
|
|
|
|
|
Column {
|
|
anchors.fill: parent
|
|
spacing: Theme.spacingM
|
|
|
|
// Network sub-tabs
|
|
Row {
|
|
width: parent.width
|
|
spacing: Theme.spacingXS
|
|
|
|
Rectangle {
|
|
width: (parent.width - Theme.spacingXS) / 2
|
|
height: 36
|
|
radius: Theme.cornerRadiusSmall
|
|
color: networkTab.networkSubTab === 0 ?
|
|
Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.16) :
|
|
ethernetTabArea.containsMouse ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.08) : "transparent"
|
|
|
|
Row {
|
|
anchors.centerIn: parent
|
|
spacing: Theme.spacingXS
|
|
|
|
Text {
|
|
text: "lan"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: Theme.iconSize - 4
|
|
color: networkTab.networkSubTab === 0 ? Theme.primary : Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
Text {
|
|
text: "Ethernet"
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: networkTab.networkSubTab === 0 ? Theme.primary : Theme.surfaceText
|
|
font.weight: networkTab.networkSubTab === 0 ? Font.Medium : Font.Normal
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
id: ethernetTabArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
networkTab.networkSubTab = 0
|
|
WifiService.autoRefreshEnabled = false
|
|
}
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
width: (parent.width - Theme.spacingXS) / 2
|
|
height: 36
|
|
radius: Theme.cornerRadiusSmall
|
|
color: networkTab.networkSubTab === 1 ?
|
|
Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.16) :
|
|
wifiTabArea.containsMouse ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.08) : "transparent"
|
|
|
|
Row {
|
|
anchors.centerIn: parent
|
|
spacing: Theme.spacingXS
|
|
|
|
Text {
|
|
text: NetworkService.wifiEnabled ? "wifi" : "wifi_off"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: Theme.iconSize - 4
|
|
color: networkTab.networkSubTab === 1 ? Theme.primary : Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
Text {
|
|
text: "Wi-Fi"
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: networkTab.networkSubTab === 1 ? Theme.primary : Theme.surfaceText
|
|
font.weight: networkTab.networkSubTab === 1 ? Font.Medium : Font.Normal
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
id: wifiTabArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
networkTab.networkSubTab = 1
|
|
WifiService.autoRefreshEnabled = true
|
|
if (NetworkService.wifiEnabled) {
|
|
WifiService.scanWifi()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Ethernet Tab Content
|
|
Flickable {
|
|
width: parent.width
|
|
height: parent.height - 48
|
|
visible: networkTab.networkSubTab === 0
|
|
clip: true
|
|
contentWidth: width
|
|
contentHeight: ethernetContent.height
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
flickDeceleration: 8000
|
|
maximumFlickVelocity: 15000
|
|
|
|
ScrollBar.vertical: ScrollBar {
|
|
policy: ScrollBar.AsNeeded
|
|
}
|
|
|
|
Column {
|
|
id: ethernetContent
|
|
width: parent.width
|
|
spacing: Theme.spacingL
|
|
|
|
// Ethernet status card
|
|
Rectangle {
|
|
width: parent.width
|
|
height: 70
|
|
radius: Theme.cornerRadius
|
|
color: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b, 0.5)
|
|
border.color: NetworkService.networkStatus === "ethernet" ? Theme.primary : Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.12)
|
|
border.width: NetworkService.networkStatus === "ethernet" ? 2 : 1
|
|
visible: true
|
|
|
|
Row {
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: Theme.spacingL
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
spacing: Theme.spacingM
|
|
|
|
Text {
|
|
text: "lan"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: Theme.iconSizeLarge - 4
|
|
color: networkTab.networkStatus === "ethernet" ? Theme.primary : Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
Column {
|
|
spacing: 4
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
Text {
|
|
text: networkTab.networkStatus === "ethernet" ? (networkTab.ethernetInterface || "Ethernet") : "Ethernet"
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: networkTab.networkStatus === "ethernet" ? Theme.primary : Theme.surfaceText
|
|
font.weight: Font.Medium
|
|
}
|
|
|
|
Text {
|
|
text: NetworkService.ethernetConnected ? (NetworkService.ethernetIP || "Connected") : "Disconnected"
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.7)
|
|
}
|
|
}
|
|
|
|
// Force Ethernet preference button
|
|
Rectangle {
|
|
width: 150
|
|
height: 30
|
|
color: networkTab.networkStatus === "ethernet" ? Theme.primary : Theme.surface
|
|
border.color: Theme.primary
|
|
border.width: 1
|
|
radius: 6
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
z: 10
|
|
opacity: networkTab.changingNetworkPreference ? 0.6 : 1.0
|
|
visible: networkTab.networkStatus !== "ethernet"
|
|
|
|
Behavior on opacity {
|
|
NumberAnimation {
|
|
duration: Theme.shortDuration
|
|
easing.type: Theme.standardEasing
|
|
}
|
|
}
|
|
|
|
Row {
|
|
anchors.centerIn: parent
|
|
spacing: Theme.spacingXS
|
|
|
|
Text {
|
|
id: ethernetPreferenceIcon
|
|
text: networkTab.changingNetworkPreference ? "sync" : ""
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: networkTab.networkStatus === "ethernet" ? Theme.background : Theme.primary
|
|
visible: networkTab.changingNetworkPreference
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
rotation: networkTab.changingNetworkPreference ? ethernetPreferenceIcon.rotation : 0
|
|
|
|
RotationAnimation {
|
|
target: ethernetPreferenceIcon
|
|
property: "rotation"
|
|
running: networkTab.changingNetworkPreference
|
|
from: 0
|
|
to: 360
|
|
duration: 1000
|
|
loops: Animation.Infinite
|
|
}
|
|
}
|
|
|
|
Text {
|
|
text: networkTab.changingNetworkPreference ? "Switching..." :
|
|
(networkTab.networkStatus === "ethernet" ? "" : "Prefer over WiFi")
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: networkTab.networkStatus === "ethernet" ? Theme.background : Theme.primary
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
font.weight: Font.Medium
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
propagateComposedEvents: false
|
|
enabled: !networkTab.changingNetworkPreference
|
|
onClicked: {
|
|
console.log("*** ETHERNET PREFERENCE BUTTON CLICKED ***")
|
|
if (networkTab.networkStatus !== "ethernet") {
|
|
console.log("Setting preference to ethernet")
|
|
NetworkService.setNetworkPreference("ethernet")
|
|
} else {
|
|
console.log("Setting preference to auto")
|
|
NetworkService.setNetworkPreference("auto")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Ethernet control button
|
|
Rectangle {
|
|
width: parent.width
|
|
height: 50
|
|
radius: Theme.cornerRadius
|
|
color: ethernetControlArea.containsMouse ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.08) : Qt.rgba(Theme.surfaceVariant.r, Theme.surfaceVariant.g, Theme.surfaceVariant.b, 0.08)
|
|
|
|
Row {
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: Theme.spacingM
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
spacing: Theme.spacingM
|
|
|
|
Text {
|
|
text: networkTab.ethernetConnected ? "link_off" : "link"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: Theme.iconSize
|
|
color: networkTab.ethernetConnected ? Theme.error : Theme.primary
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
Text {
|
|
text: networkTab.ethernetConnected ? "Disconnect Ethernet" : "Connect Ethernet"
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: Theme.surfaceText
|
|
font.weight: Font.Medium
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
id: ethernetControlArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
NetworkService.toggleNetworkConnection("ethernet")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// WiFi Tab Content
|
|
Flickable {
|
|
width: parent.width
|
|
height: parent.height - 48
|
|
visible: networkTab.networkSubTab === 1
|
|
clip: true
|
|
contentWidth: width
|
|
contentHeight: wifiContent.height
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
flickDeceleration: 8000
|
|
maximumFlickVelocity: 15000
|
|
|
|
ScrollBar.vertical: ScrollBar {
|
|
policy: ScrollBar.AsNeeded
|
|
}
|
|
|
|
Column {
|
|
id: wifiContent
|
|
width: parent.width
|
|
spacing: Theme.spacingL
|
|
|
|
// WiFi toggle control (only show if WiFi hardware is available)
|
|
Rectangle {
|
|
width: parent.width
|
|
height: 50
|
|
radius: Theme.cornerRadius
|
|
color: wifiToggleArea.containsMouse ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.08) : Qt.rgba(Theme.surfaceVariant.r, Theme.surfaceVariant.g, Theme.surfaceVariant.b, 0.08)
|
|
visible: NetworkService.wifiAvailable
|
|
opacity: NetworkService.wifiToggling ? 0.6 : 1.0
|
|
|
|
Behavior on opacity {
|
|
NumberAnimation {
|
|
duration: Theme.shortDuration
|
|
easing.type: Theme.standardEasing
|
|
}
|
|
}
|
|
|
|
Row {
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: Theme.spacingM
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
spacing: Theme.spacingM
|
|
|
|
Text {
|
|
id: wifiToggleIcon
|
|
text: NetworkService.wifiToggling ? "sync" : "power_settings_new"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: Theme.iconSize
|
|
color: NetworkService.wifiEnabled ? Theme.primary : Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.5)
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
rotation: NetworkService.wifiToggling ? wifiToggleIcon.rotation : 0
|
|
|
|
RotationAnimation {
|
|
target: wifiToggleIcon
|
|
property: "rotation"
|
|
running: NetworkService.wifiToggling
|
|
from: 0
|
|
to: 360
|
|
duration: 1000
|
|
loops: Animation.Infinite
|
|
}
|
|
|
|
Behavior on rotation {
|
|
RotationAnimation {
|
|
duration: 200
|
|
easing.type: Easing.OutQuad
|
|
}
|
|
}
|
|
}
|
|
|
|
Text {
|
|
text: NetworkService.wifiToggling ? "Switching WiFi..." : (NetworkService.wifiEnabled ? "Turn WiFi Off" : "Turn WiFi On")
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: Theme.surfaceText
|
|
font.weight: Font.Medium
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
id: wifiToggleArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
NetworkService.toggleWifiRadio()
|
|
}
|
|
}
|
|
}
|
|
|
|
// Current WiFi connection (if connected)
|
|
Rectangle {
|
|
width: parent.width
|
|
height: 80
|
|
radius: Theme.cornerRadius
|
|
color: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b, 0.5)
|
|
border.color: networkTab.networkStatus === "wifi" ? Theme.primary : Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.12)
|
|
border.width: networkTab.networkStatus === "wifi" ? 2 : 1
|
|
visible: NetworkService.wifiAvailable && NetworkService.wifiEnabled
|
|
|
|
Row {
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: Theme.spacingL
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
spacing: Theme.spacingM
|
|
|
|
Text {
|
|
text: networkTab.networkStatus === "wifi" ?
|
|
(WifiService.wifiSignalStrength === "excellent" ? "wifi" :
|
|
WifiService.wifiSignalStrength === "good" ? "wifi_2_bar" :
|
|
WifiService.wifiSignalStrength === "fair" ? "wifi_1_bar" :
|
|
WifiService.wifiSignalStrength === "poor" ? "wifi_calling_3" : "wifi") : "wifi"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: Theme.iconSizeLarge
|
|
color: networkTab.networkStatus === "wifi" ? Theme.primary : Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
Column {
|
|
spacing: 4
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
Text {
|
|
text: NetworkService.networkStatus === "wifi" ? (WifiService.currentWifiSSID || "Connected") : "Not Connected"
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
color: networkTab.networkStatus === "wifi" ? Theme.primary : Theme.surfaceText
|
|
font.weight: Font.Medium
|
|
}
|
|
|
|
Text {
|
|
text: NetworkService.networkStatus === "wifi" ? (NetworkService.wifiIP || "Connected") : "Select a network below"
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.7)
|
|
}
|
|
}
|
|
|
|
// Force WiFi preference button
|
|
Rectangle {
|
|
width: 150
|
|
height: 30
|
|
color: networkTab.networkStatus === "wifi" ? Theme.primary : Theme.surface
|
|
border.color: Theme.primary
|
|
border.width: 1
|
|
radius: 6
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
opacity: networkTab.changingNetworkPreference ? 0.6 : 1.0
|
|
visible: networkTab.networkStatus !== "wifi"
|
|
|
|
Behavior on opacity {
|
|
NumberAnimation {
|
|
duration: Theme.shortDuration
|
|
easing.type: Theme.standardEasing
|
|
}
|
|
}
|
|
|
|
Row {
|
|
anchors.centerIn: parent
|
|
spacing: Theme.spacingXS
|
|
|
|
Text {
|
|
id: wifiPreferenceIcon
|
|
text: networkTab.changingNetworkPreference ? "sync" : ""
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: networkTab.networkStatus === "wifi" ? Theme.background : Theme.primary
|
|
visible: networkTab.changingNetworkPreference
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
rotation: networkTab.changingNetworkPreference ? wifiPreferenceIcon.rotation : 0
|
|
|
|
RotationAnimation {
|
|
target: wifiPreferenceIcon
|
|
property: "rotation"
|
|
running: networkTab.changingNetworkPreference
|
|
from: 0
|
|
to: 360
|
|
duration: 1000
|
|
loops: Animation.Infinite
|
|
}
|
|
}
|
|
|
|
Text {
|
|
text: NetworkService.changingNetworkPreference ? "Switching..." :
|
|
(NetworkService.networkStatus === "wifi" ? "" : "Prefer over Ethernet")
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: NetworkService.networkStatus === "wifi" ? Theme.background : Theme.primary
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
font.weight: Font.Medium
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
propagateComposedEvents: false
|
|
enabled: !networkTab.changingNetworkPreference
|
|
onClicked: {
|
|
console.log("Force WiFi preference clicked")
|
|
if (NetworkService.networkStatus !== "wifi") {
|
|
NetworkService.setNetworkPreference("wifi")
|
|
} else {
|
|
NetworkService.setNetworkPreference("auto")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Available WiFi Networks
|
|
Column {
|
|
width: parent.width
|
|
spacing: Theme.spacingM
|
|
visible: NetworkService.wifiEnabled
|
|
|
|
Row {
|
|
width: parent.width
|
|
|
|
Text {
|
|
text: "Available Networks"
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
color: Theme.surfaceText
|
|
font.weight: Font.Medium
|
|
}
|
|
|
|
Item { width: parent.width - 200; height: 1 }
|
|
|
|
Rectangle {
|
|
width: 32
|
|
height: 32
|
|
radius: 16
|
|
color: refreshArea.containsMouse ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.12) :
|
|
WifiService.isScanning ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.06) : "transparent"
|
|
|
|
Text {
|
|
id: refreshIcon
|
|
anchors.centerIn: parent
|
|
text: WifiService.isScanning ? "sync" : "refresh"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: Theme.iconSize - 4
|
|
color: Theme.surfaceText
|
|
rotation: WifiService.isScanning ? refreshIcon.rotation : 0
|
|
|
|
RotationAnimation {
|
|
target: refreshIcon
|
|
property: "rotation"
|
|
running: WifiService.isScanning
|
|
from: 0
|
|
to: 360
|
|
duration: 1000
|
|
loops: Animation.Infinite
|
|
}
|
|
|
|
Behavior on rotation {
|
|
RotationAnimation {
|
|
duration: 200
|
|
easing.type: Easing.OutQuad
|
|
}
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
id: refreshArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
enabled: !WifiService.isScanning
|
|
onClicked: {
|
|
if (NetworkService.wifiEnabled) {
|
|
WifiService.scanWifi()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Connection status indicator
|
|
Rectangle {
|
|
width: parent.width
|
|
height: 40
|
|
radius: Theme.cornerRadius
|
|
color: {
|
|
if (WifiService.connectionStatus === "connecting") {
|
|
return Qt.rgba(Theme.warning.r, Theme.warning.g, Theme.warning.b, 0.12)
|
|
} else if (WifiService.connectionStatus === "failed") {
|
|
return Qt.rgba(Theme.error.r, Theme.error.g, Theme.error.b, 0.12)
|
|
} else if (WifiService.connectionStatus === "connected") {
|
|
return Qt.rgba(Theme.success.r, Theme.success.g, Theme.success.b, 0.12)
|
|
}
|
|
return "transparent"
|
|
}
|
|
border.color: {
|
|
if (WifiService.connectionStatus === "connecting") {
|
|
return Qt.rgba(Theme.warning.r, Theme.warning.g, Theme.warning.b, 0.3)
|
|
} else if (WifiService.connectionStatus === "failed") {
|
|
return Qt.rgba(Theme.error.r, Theme.error.g, Theme.error.b, 0.3)
|
|
} else if (WifiService.connectionStatus === "connected") {
|
|
return Qt.rgba(Theme.success.r, Theme.success.g, Theme.success.b, 0.3)
|
|
}
|
|
return "transparent"
|
|
}
|
|
border.width: WifiService.connectionStatus !== "" ? 1 : 0
|
|
visible: WifiService.connectionStatus !== ""
|
|
|
|
Row {
|
|
anchors.centerIn: parent
|
|
spacing: Theme.spacingS
|
|
|
|
Text {
|
|
id: connectionIcon
|
|
text: {
|
|
if (WifiService.connectionStatus === "connecting") return "sync"
|
|
if (WifiService.connectionStatus === "failed") return "error"
|
|
if (WifiService.connectionStatus === "connected") return "check_circle"
|
|
return ""
|
|
}
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: Theme.iconSize - 6
|
|
color: {
|
|
if (WifiService.connectionStatus === "connecting") return Theme.warning
|
|
if (WifiService.connectionStatus === "failed") return Theme.error
|
|
if (WifiService.connectionStatus === "connected") return Theme.success
|
|
return Theme.surfaceText
|
|
}
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
rotation: WifiService.connectionStatus === "connecting" ? connectionIcon.rotation : 0
|
|
|
|
RotationAnimation {
|
|
target: connectionIcon
|
|
property: "rotation"
|
|
running: WifiService.connectionStatus === "connecting"
|
|
from: 0
|
|
to: 360
|
|
duration: 1000
|
|
loops: Animation.Infinite
|
|
}
|
|
|
|
Behavior on rotation {
|
|
RotationAnimation {
|
|
duration: 200
|
|
easing.type: Easing.OutQuad
|
|
}
|
|
}
|
|
}
|
|
|
|
Text {
|
|
text: {
|
|
if (WifiService.connectionStatus === "connecting") return "Connecting to " + WifiService.connectingSSID
|
|
if (WifiService.connectionStatus === "failed") return "Failed to connect to " + WifiService.connectingSSID
|
|
if (WifiService.connectionStatus === "connected") return "Connected to " + WifiService.connectingSSID
|
|
return ""
|
|
}
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: {
|
|
if (WifiService.connectionStatus === "connecting") return Theme.warning
|
|
if (WifiService.connectionStatus === "failed") return Theme.error
|
|
if (WifiService.connectionStatus === "connected") return Theme.success
|
|
return Theme.surfaceText
|
|
}
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|
|
Behavior on color {
|
|
ColorAnimation {
|
|
duration: Theme.shortDuration
|
|
easing.type: Theme.standardEasing
|
|
}
|
|
}
|
|
}
|
|
|
|
// WiFi networks list (only show if WiFi is available and enabled)
|
|
Repeater {
|
|
model: NetworkService.wifiAvailable && NetworkService.wifiEnabled ? WifiService.wifiNetworks : []
|
|
|
|
Rectangle {
|
|
width: parent.width
|
|
height: 50
|
|
radius: Theme.cornerRadiusSmall
|
|
color: networkArea.containsMouse ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.08) :
|
|
modelData.connected ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.12) : "transparent"
|
|
border.color: modelData.connected ? Theme.primary : "transparent"
|
|
border.width: modelData.connected ? 1 : 0
|
|
|
|
Item {
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingM
|
|
|
|
// Signal strength icon
|
|
Text {
|
|
id: signalIcon
|
|
anchors.left: parent.left
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
text: modelData.signalStrength === "excellent" ? "wifi" :
|
|
modelData.signalStrength === "good" ? "wifi_2_bar" :
|
|
modelData.signalStrength === "fair" ? "wifi_1_bar" :
|
|
modelData.signalStrength === "poor" ? "wifi_calling_3" : "wifi"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: Theme.iconSize
|
|
color: modelData.connected ? Theme.primary : Theme.surfaceText
|
|
}
|
|
|
|
// Network info
|
|
Column {
|
|
anchors.left: signalIcon.right
|
|
anchors.leftMargin: Theme.spacingM
|
|
anchors.right: rightIcons.left
|
|
anchors.rightMargin: Theme.spacingM
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
spacing: 2
|
|
|
|
Text {
|
|
width: parent.width
|
|
text: modelData.ssid
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: modelData.connected ? Theme.primary : Theme.surfaceText
|
|
font.weight: modelData.connected ? Font.Medium : Font.Normal
|
|
elide: Text.ElideRight
|
|
}
|
|
|
|
Text {
|
|
width: parent.width
|
|
text: {
|
|
if (modelData.connected) return "Connected"
|
|
if (modelData.saved) return "Saved" + (modelData.secured ? " • Secured" : " • Open")
|
|
return modelData.secured ? "Secured" : "Open"
|
|
}
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.7)
|
|
elide: Text.ElideRight
|
|
}
|
|
}
|
|
|
|
// Right side icons
|
|
Row {
|
|
id: rightIcons
|
|
anchors.right: parent.right
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
spacing: Theme.spacingXS
|
|
|
|
// Lock icon (if secured)
|
|
Text {
|
|
text: "lock"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: Theme.iconSize - 6
|
|
color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.6)
|
|
visible: modelData.secured
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
// Forget button (for saved networks)
|
|
Rectangle {
|
|
width: 28
|
|
height: 28
|
|
radius: 14
|
|
color: forgetArea.containsMouse ? Qt.rgba(Theme.error.r, Theme.error.g, Theme.error.b, 0.12) : "transparent"
|
|
visible: modelData.saved || modelData.connected
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
text: "delete"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: Theme.iconSize - 6
|
|
color: forgetArea.containsMouse ? Theme.error : Theme.surfaceText
|
|
}
|
|
|
|
MouseArea {
|
|
id: forgetArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
WifiService.forgetWifiNetwork(modelData.ssid)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
id: networkArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
if (modelData.connected) {
|
|
// Already connected, do nothing or show info
|
|
return
|
|
}
|
|
|
|
if (modelData.saved) {
|
|
// Saved network, connect directly
|
|
WifiService.connectToWifi(modelData.ssid)
|
|
} else if (modelData.secured) {
|
|
// Secured network, need password - use root dialog
|
|
wifiPasswordDialog.wifiPasswordSSID = modelData.ssid
|
|
wifiPasswordDialog.wifiPasswordInput = ""
|
|
wifiPasswordDialog.wifiPasswordDialogVisible = true
|
|
} else {
|
|
// Open network, connect directly
|
|
WifiService.connectToWifi(modelData.ssid)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// WiFi disabled message
|
|
Column {
|
|
width: parent.width
|
|
spacing: Theme.spacingM
|
|
visible: !NetworkService.wifiEnabled
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
Text {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
text: "wifi_off"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: 48
|
|
color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.3)
|
|
}
|
|
|
|
Text {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
text: "WiFi is turned off"
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.6)
|
|
}
|
|
|
|
Text {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
text: "Turn on WiFi to see available networks"
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.4)
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
} |