WifiPanel wip
This commit is contained in:
parent
ece8e210cc
commit
2a8752e81d
4 changed files with 339 additions and 455 deletions
|
|
@ -34,27 +34,10 @@ NIconButton {
|
||||||
}
|
}
|
||||||
tooltipText: "WiFi Networks"
|
tooltipText: "WiFi Networks"
|
||||||
onClicked: {
|
onClicked: {
|
||||||
if (!wifiMenuLoader.active) {
|
wifiPanel.toggle(screen)
|
||||||
wifiMenuLoader.isLoaded = true
|
|
||||||
}
|
|
||||||
if (wifiMenuLoader.item) {
|
|
||||||
if (wifiMenuLoader.item.visible) {
|
|
||||||
// Panel is visible, hide it with animation
|
|
||||||
if (wifiMenuLoader.item.hide) {
|
|
||||||
wifiMenuLoader.item.hide()
|
|
||||||
} else {
|
|
||||||
wifiMenuLoader.item.visible = false
|
|
||||||
NetworkService.onMenuClosed()
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// Panel is hidden, show it
|
|
||||||
wifiMenuLoader.item.visible = true
|
|
||||||
NetworkService.onMenuOpened()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
WiFiMenu {
|
WiFiPanel {
|
||||||
id: wifiMenuLoader
|
id: wifiPanel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,435 +0,0 @@
|
||||||
import QtQuick
|
|
||||||
import QtQuick.Layouts
|
|
||||||
import QtQuick.Controls
|
|
||||||
import Quickshell
|
|
||||||
import Quickshell.Wayland
|
|
||||||
import qs.Commons
|
|
||||||
import qs.Services
|
|
||||||
import qs.Widgets
|
|
||||||
|
|
||||||
// Loader for WiFi menu
|
|
||||||
NLoader {
|
|
||||||
id: root
|
|
||||||
|
|
||||||
content: Component {
|
|
||||||
NPanel {
|
|
||||||
id: wifiPanel
|
|
||||||
|
|
||||||
property string passwordPromptSsid: ""
|
|
||||||
property string passwordInput: ""
|
|
||||||
property bool showPasswordPrompt: false
|
|
||||||
|
|
||||||
function hide() {
|
|
||||||
wifiMenuRect.scaleValue = 0.8
|
|
||||||
wifiMenuRect.opacityValue = 0.0
|
|
||||||
|
|
||||||
hideTimer.start()
|
|
||||||
}
|
|
||||||
|
|
||||||
// Connect to NPanel's dismissed signal to handle external close events
|
|
||||||
Connections {
|
|
||||||
target: wifiPanel
|
|
||||||
ignoreUnknownSignals: true
|
|
||||||
function onDismissed() {
|
|
||||||
// Start hide animation
|
|
||||||
wifiMenuRect.scaleValue = 0.8
|
|
||||||
wifiMenuRect.opacityValue = 0.0
|
|
||||||
|
|
||||||
// Hide after animation completes
|
|
||||||
hideTimer.start()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Also handle visibility changes from external sources
|
|
||||||
onVisibleChanged: {
|
|
||||||
if (visible && Settings.data.network.wifiEnabled) {
|
|
||||||
NetworkService.refreshNetworks()
|
|
||||||
} else if (wifiMenuRect.opacityValue > 0) {
|
|
||||||
// Start hide animation
|
|
||||||
wifiMenuRect.scaleValue = 0.8
|
|
||||||
wifiMenuRect.opacityValue = 0.0
|
|
||||||
|
|
||||||
// Hide after animation completes
|
|
||||||
hideTimer.start()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Timer to hide panel after animation
|
|
||||||
Timer {
|
|
||||||
id: hideTimer
|
|
||||||
interval: Style.animationSlow
|
|
||||||
repeat: false
|
|
||||||
onTriggered: {
|
|
||||||
wifiPanel.visible = false
|
|
||||||
wifiPanel.dismissed()
|
|
||||||
// NetworkService.onMenuClosed()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
WlrLayershell.keyboardFocus: WlrKeyboardFocus.OnDemand
|
|
||||||
|
|
||||||
// Timer to refresh networks when WiFi is enabled while menu is open
|
|
||||||
Timer {
|
|
||||||
id: wifiEnableRefreshTimer
|
|
||||||
interval: 3000 // Wait 3 seconds for WiFi to be fully ready
|
|
||||||
repeat: false
|
|
||||||
onTriggered: {
|
|
||||||
if (Settings.data.network.wifiEnabled && wifiPanel.visible) {
|
|
||||||
NetworkService.refreshNetworks()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Rectangle {
|
|
||||||
id: wifiMenuRect
|
|
||||||
color: Color.mSurface
|
|
||||||
radius: Style.radiusL * scaling
|
|
||||||
border.color: Color.mOutline
|
|
||||||
border.width: Math.max(1, Style.borderS * scaling)
|
|
||||||
width: 340 * scaling
|
|
||||||
height: 500 * scaling
|
|
||||||
anchors {
|
|
||||||
right: parent.right
|
|
||||||
rightMargin: Style.marginXS * scaling
|
|
||||||
top: Settings.data.bar.position === "top" ? parent.top : undefined
|
|
||||||
bottom: Settings.data.bar.position === "bottom" ? parent.bottom : undefined
|
|
||||||
topMargin: Settings.data.bar.position === "top" ? Style.marginXS * scaling : undefined
|
|
||||||
bottomMargin: Settings.data.bar.position === "bottom" ? Style.barHeight * scaling + Style.marginXS * scaling : undefined
|
|
||||||
}
|
|
||||||
|
|
||||||
// Animation properties
|
|
||||||
property real scaleValue: 0.8
|
|
||||||
property real opacityValue: 0.0
|
|
||||||
|
|
||||||
scale: scaleValue
|
|
||||||
opacity: opacityValue
|
|
||||||
|
|
||||||
// Animate in when component is completed
|
|
||||||
Component.onCompleted: {
|
|
||||||
scaleValue = 1.0
|
|
||||||
opacityValue = 1.0
|
|
||||||
}
|
|
||||||
|
|
||||||
// Animation behaviors
|
|
||||||
Behavior on scale {
|
|
||||||
NumberAnimation {
|
|
||||||
duration: Style.animationSlow
|
|
||||||
easing.type: Easing.OutExpo
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Behavior on opacity {
|
|
||||||
NumberAnimation {
|
|
||||||
duration: Style.animationNormal
|
|
||||||
easing.type: Easing.OutQuad
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ColumnLayout {
|
|
||||||
anchors.fill: parent
|
|
||||||
anchors.margins: Style.marginL * scaling
|
|
||||||
spacing: Style.marginM * scaling
|
|
||||||
|
|
||||||
RowLayout {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
spacing: Style.marginM * scaling
|
|
||||||
|
|
||||||
NIcon {
|
|
||||||
text: "wifi"
|
|
||||||
font.pointSize: Style.fontSizeXXL * scaling
|
|
||||||
color: Color.mPrimary
|
|
||||||
}
|
|
||||||
|
|
||||||
NText {
|
|
||||||
text: "WiFi"
|
|
||||||
font.pointSize: Style.fontSizeL * scaling
|
|
||||||
font.bold: true
|
|
||||||
color: Color.mOnSurface
|
|
||||||
Layout.fillWidth: true
|
|
||||||
}
|
|
||||||
|
|
||||||
NIconButton {
|
|
||||||
icon: "refresh"
|
|
||||||
tooltipText: "Refresh Networks"
|
|
||||||
sizeMultiplier: 0.8
|
|
||||||
enabled: Settings.data.network.wifiEnabled && !NetworkService.isLoading
|
|
||||||
onClicked: {
|
|
||||||
NetworkService.refreshNetworks()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
NIconButton {
|
|
||||||
icon: "close"
|
|
||||||
tooltipText: "Close"
|
|
||||||
sizeMultiplier: 0.8
|
|
||||||
onClicked: {
|
|
||||||
wifiPanel.hide()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
NDivider {}
|
|
||||||
|
|
||||||
Item {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.fillHeight: true
|
|
||||||
|
|
||||||
// Loading indicator
|
|
||||||
ColumnLayout {
|
|
||||||
anchors.centerIn: parent
|
|
||||||
visible: Settings.data.network.wifiEnabled && NetworkService.isLoading
|
|
||||||
spacing: Style.marginM * scaling
|
|
||||||
|
|
||||||
NBusyIndicator {
|
|
||||||
running: NetworkService.isLoading
|
|
||||||
color: Color.mPrimary
|
|
||||||
size: Style.baseWidgetSize * scaling
|
|
||||||
Layout.alignment: Qt.AlignHCenter
|
|
||||||
}
|
|
||||||
|
|
||||||
NText {
|
|
||||||
text: "Scanning for networks..."
|
|
||||||
font.pointSize: Style.fontSizeNormal * scaling
|
|
||||||
color: Color.mOnSurfaceVariant
|
|
||||||
Layout.alignment: Qt.AlignHCenter
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// WiFi disabled message
|
|
||||||
ColumnLayout {
|
|
||||||
anchors.centerIn: parent
|
|
||||||
visible: !Settings.data.network.wifiEnabled
|
|
||||||
spacing: Style.marginM * scaling
|
|
||||||
|
|
||||||
NIcon {
|
|
||||||
text: "wifi_off"
|
|
||||||
font.pointSize: Style.fontSizeXXXL * scaling
|
|
||||||
color: Color.mOnSurfaceVariant
|
|
||||||
Layout.alignment: Qt.AlignHCenter
|
|
||||||
}
|
|
||||||
|
|
||||||
NText {
|
|
||||||
text: "WiFi is disabled"
|
|
||||||
font.pointSize: Style.fontSizeL * scaling
|
|
||||||
color: Color.mOnSurfaceVariant
|
|
||||||
Layout.alignment: Qt.AlignHCenter
|
|
||||||
}
|
|
||||||
|
|
||||||
NText {
|
|
||||||
text: "Enable WiFi to see available networks"
|
|
||||||
font.pointSize: Style.fontSizeNormal * scaling
|
|
||||||
color: Color.mOnSurfaceVariant
|
|
||||||
Layout.alignment: Qt.AlignHCenter
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Network list
|
|
||||||
ListView {
|
|
||||||
id: networkList
|
|
||||||
anchors.fill: parent
|
|
||||||
visible: Settings.data.network.wifiEnabled && !NetworkService.isLoading
|
|
||||||
model: Object.values(NetworkService.networks)
|
|
||||||
spacing: Style.marginM * scaling
|
|
||||||
clip: true
|
|
||||||
|
|
||||||
delegate: Item {
|
|
||||||
width: parent ? parent.width : 0
|
|
||||||
height: modelData.ssid === passwordPromptSsid
|
|
||||||
&& showPasswordPrompt ? 108 * scaling : Style.baseWidgetSize * 1.5 * scaling
|
|
||||||
|
|
||||||
ColumnLayout {
|
|
||||||
anchors.fill: parent
|
|
||||||
spacing: 0
|
|
||||||
|
|
||||||
Rectangle {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.preferredHeight: Style.baseWidgetSize * 1.5 * scaling
|
|
||||||
radius: Style.radiusM * scaling
|
|
||||||
color: modelData.connected ? Color.mPrimary : (networkMouseArea.containsMouse ? Color.mTertiary : Color.transparent)
|
|
||||||
|
|
||||||
RowLayout {
|
|
||||||
anchors.fill: parent
|
|
||||||
anchors.margins: Style.marginS * scaling
|
|
||||||
spacing: Style.marginS * scaling
|
|
||||||
|
|
||||||
NIcon {
|
|
||||||
text: NetworkService.signalIcon(modelData.signal)
|
|
||||||
font.pointSize: Style.fontSizeXXL * scaling
|
|
||||||
color: modelData.connected ? Color.mSurface : (networkMouseArea.containsMouse ? Color.mSurface : Color.mOnSurface)
|
|
||||||
}
|
|
||||||
|
|
||||||
ColumnLayout {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
spacing: Style.marginXS * scaling
|
|
||||||
|
|
||||||
// SSID
|
|
||||||
NText {
|
|
||||||
text: modelData.ssid || "Unknown Network"
|
|
||||||
font.pointSize: Style.fontSizeNormal * scaling
|
|
||||||
elide: Text.ElideRight
|
|
||||||
Layout.fillWidth: true
|
|
||||||
color: modelData.connected ? Color.mSurface : (networkMouseArea.containsMouse ? Color.mSurface : Color.mOnSurface)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Security Protocol
|
|
||||||
NText {
|
|
||||||
text: modelData.security && modelData.security !== "--" ? modelData.security : "Open"
|
|
||||||
font.pointSize: Style.fontSizeXS * scaling
|
|
||||||
elide: Text.ElideRight
|
|
||||||
Layout.fillWidth: true
|
|
||||||
color: modelData.connected ? Color.mSurface : (networkMouseArea.containsMouse ? Color.mSurface : Color.mOnSurface)
|
|
||||||
}
|
|
||||||
|
|
||||||
NText {
|
|
||||||
visible: NetworkService.connectStatusSsid === modelData.ssid
|
|
||||||
&& NetworkService.connectStatus === "error" && NetworkService.connectError.length > 0
|
|
||||||
text: NetworkService.connectError
|
|
||||||
color: Color.mError
|
|
||||||
font.pointSize: Style.fontSizeXS * scaling
|
|
||||||
elide: Text.ElideRight
|
|
||||||
Layout.fillWidth: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Item {
|
|
||||||
Layout.preferredWidth: Style.baseWidgetSize * 0.7 * scaling
|
|
||||||
Layout.preferredHeight: Style.baseWidgetSize * 0.7 * scaling
|
|
||||||
visible: NetworkService.connectStatusSsid === modelData.ssid
|
|
||||||
&& (NetworkService.connectStatus !== ""
|
|
||||||
|| NetworkService.connectingSsid === modelData.ssid)
|
|
||||||
|
|
||||||
NBusyIndicator {
|
|
||||||
visible: NetworkService.connectingSsid === modelData.ssid
|
|
||||||
running: NetworkService.connectingSsid === modelData.ssid
|
|
||||||
color: Color.mPrimary
|
|
||||||
anchors.centerIn: parent
|
|
||||||
size: Style.baseWidgetSize * 0.7 * scaling
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
NText {
|
|
||||||
visible: modelData.connected
|
|
||||||
text: "connected"
|
|
||||||
font.pointSize: Style.fontSizeXS * scaling
|
|
||||||
color: modelData.connected ? Color.mSurface : (networkMouseArea.containsMouse ? Color.mSurface : Color.mOnSurface)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
MouseArea {
|
|
||||||
id: networkMouseArea
|
|
||||||
anchors.fill: parent
|
|
||||||
hoverEnabled: true
|
|
||||||
onClicked: {
|
|
||||||
if (modelData.connected) {
|
|
||||||
NetworkService.disconnectNetwork(modelData.ssid)
|
|
||||||
} else if (NetworkService.isSecured(modelData.security) && !modelData.existing) {
|
|
||||||
passwordPromptSsid = modelData.ssid
|
|
||||||
showPasswordPrompt = true
|
|
||||||
passwordInput = "" // Clear previous input
|
|
||||||
Qt.callLater(function () {
|
|
||||||
passwordInputField.forceActiveFocus()
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
NetworkService.connectNetwork(modelData.ssid, modelData.security)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Password prompt section
|
|
||||||
Rectangle {
|
|
||||||
id: passwordPromptSection
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.preferredHeight: modelData.ssid === passwordPromptSsid && showPasswordPrompt ? 60 : 0
|
|
||||||
Layout.margins: Style.marginS * scaling
|
|
||||||
visible: modelData.ssid === passwordPromptSsid && showPasswordPrompt
|
|
||||||
color: Color.mSurfaceVariant
|
|
||||||
radius: Style.radiusS * scaling
|
|
||||||
|
|
||||||
RowLayout {
|
|
||||||
anchors.fill: parent
|
|
||||||
anchors.margins: Style.marginS * scaling
|
|
||||||
spacing: Style.marginS * scaling
|
|
||||||
|
|
||||||
Item {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.preferredHeight: Style.barHeight * scaling
|
|
||||||
|
|
||||||
Rectangle {
|
|
||||||
anchors.fill: parent
|
|
||||||
radius: Style.radiusXS * scaling
|
|
||||||
color: Color.transparent
|
|
||||||
border.color: passwordInputField.activeFocus ? Color.mPrimary : Color.mOutline
|
|
||||||
border.width: Math.max(1, Style.borderS * scaling)
|
|
||||||
|
|
||||||
TextInput {
|
|
||||||
id: passwordInputField
|
|
||||||
anchors.fill: parent
|
|
||||||
anchors.margins: Style.marginM * scaling
|
|
||||||
text: passwordInput
|
|
||||||
font.pointSize: Style.fontSizeM * scaling
|
|
||||||
color: Color.mOnSurface
|
|
||||||
verticalAlignment: TextInput.AlignVCenter
|
|
||||||
clip: true
|
|
||||||
focus: true
|
|
||||||
selectByMouse: true
|
|
||||||
activeFocusOnTab: true
|
|
||||||
inputMethodHints: Qt.ImhNone
|
|
||||||
echoMode: TextInput.Password
|
|
||||||
onTextChanged: passwordInput = text
|
|
||||||
onAccepted: {
|
|
||||||
NetworkService.submitPassword(passwordPromptSsid, passwordInput)
|
|
||||||
showPasswordPrompt = false
|
|
||||||
}
|
|
||||||
|
|
||||||
MouseArea {
|
|
||||||
id: passwordInputMouseArea
|
|
||||||
anchors.fill: parent
|
|
||||||
onClicked: passwordInputField.forceActiveFocus()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Rectangle {
|
|
||||||
Layout.preferredWidth: Style.baseWidgetSize * 2.5 * scaling
|
|
||||||
Layout.preferredHeight: Style.barHeight * scaling
|
|
||||||
radius: Style.radiusM * scaling
|
|
||||||
color: Color.mPrimary
|
|
||||||
|
|
||||||
Behavior on color {
|
|
||||||
ColorAnimation {
|
|
||||||
duration: Style.animationFast
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
NText {
|
|
||||||
anchors.centerIn: parent
|
|
||||||
text: "Connect"
|
|
||||||
color: Color.mSurface
|
|
||||||
font.pointSize: Style.fontSizeXS * scaling
|
|
||||||
}
|
|
||||||
|
|
||||||
MouseArea {
|
|
||||||
anchors.fill: parent
|
|
||||||
onClicked: {
|
|
||||||
NetworkService.submitPassword(passwordPromptSsid, passwordInput)
|
|
||||||
showPasswordPrompt = false
|
|
||||||
}
|
|
||||||
cursorShape: Qt.PointingHandCursor
|
|
||||||
hoverEnabled: true
|
|
||||||
onEntered: parent.color = Qt.darker(Color.mPrimary, 1.1)
|
|
||||||
onExited: parent.color = Color.mPrimary
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
335
Modules/Bar/WiFiPanel.qml
Normal file
335
Modules/Bar/WiFiPanel.qml
Normal file
|
|
@ -0,0 +1,335 @@
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import QtQuick.Controls
|
||||||
|
import Quickshell
|
||||||
|
import Quickshell.Wayland
|
||||||
|
import qs.Commons
|
||||||
|
import qs.Services
|
||||||
|
import qs.Widgets
|
||||||
|
|
||||||
|
NPanel {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
rWidth: 340 * scaling
|
||||||
|
rHeight: 500 * scaling
|
||||||
|
rAnchorRight: true
|
||||||
|
|
||||||
|
property string passwordPromptSsid: ""
|
||||||
|
property string passwordInput: ""
|
||||||
|
property bool showPasswordPrompt: false
|
||||||
|
|
||||||
|
onOpened: {
|
||||||
|
if (Settings.data.network.wifiEnabled && wifiPanel.visible) {
|
||||||
|
NetworkService.refreshNetworks()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
panelContent: Rectangle {
|
||||||
|
color: Color.transparent
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: Style.marginL * scaling
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
anchors.fill: parent
|
||||||
|
|
||||||
|
// Header
|
||||||
|
RowLayout {
|
||||||
|
NIcon {
|
||||||
|
text: "wifi"
|
||||||
|
font.pointSize: Style.fontSizeXXL * scaling
|
||||||
|
color: Color.mPrimary
|
||||||
|
}
|
||||||
|
|
||||||
|
NText {
|
||||||
|
text: "WiFi"
|
||||||
|
font.pointSize: Style.fontSizeL * scaling
|
||||||
|
font.bold: true
|
||||||
|
color: Color.mOnSurface
|
||||||
|
Layout.fillWidth: true
|
||||||
|
}
|
||||||
|
|
||||||
|
NIconButton {
|
||||||
|
icon: "refresh"
|
||||||
|
tooltipText: "Refresh Networks"
|
||||||
|
sizeMultiplier: 0.8
|
||||||
|
enabled: Settings.data.network.wifiEnabled && !NetworkService.isLoading
|
||||||
|
onClicked: {
|
||||||
|
NetworkService.refreshNetworks()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
NIconButton {
|
||||||
|
icon: "close"
|
||||||
|
tooltipText: "Close"
|
||||||
|
sizeMultiplier: 0.8
|
||||||
|
onClicked: {
|
||||||
|
root.close()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
NDivider {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.fillHeight: true
|
||||||
|
|
||||||
|
// Loading indicator
|
||||||
|
ColumnLayout {
|
||||||
|
anchors.centerIn: parent
|
||||||
|
visible: Settings.data.network.wifiEnabled && NetworkService.isLoading
|
||||||
|
spacing: Style.marginM * scaling
|
||||||
|
|
||||||
|
NBusyIndicator {
|
||||||
|
running: NetworkService.isLoading
|
||||||
|
color: Color.mPrimary
|
||||||
|
size: Style.baseWidgetSize * scaling
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
}
|
||||||
|
|
||||||
|
NText {
|
||||||
|
text: "Scanning for networks..."
|
||||||
|
font.pointSize: Style.fontSizeNormal * scaling
|
||||||
|
color: Color.mOnSurfaceVariant
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// WiFi disabled message
|
||||||
|
ColumnLayout {
|
||||||
|
anchors.centerIn: parent
|
||||||
|
visible: !Settings.data.network.wifiEnabled
|
||||||
|
spacing: Style.marginM * scaling
|
||||||
|
|
||||||
|
NIcon {
|
||||||
|
text: "wifi_off"
|
||||||
|
font.pointSize: Style.fontSizeXXXL * scaling
|
||||||
|
color: Color.mOnSurfaceVariant
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
}
|
||||||
|
|
||||||
|
NText {
|
||||||
|
text: "WiFi is disabled"
|
||||||
|
font.pointSize: Style.fontSizeL * scaling
|
||||||
|
color: Color.mOnSurfaceVariant
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
}
|
||||||
|
|
||||||
|
NText {
|
||||||
|
text: "Enable WiFi to see available networks"
|
||||||
|
font.pointSize: Style.fontSizeNormal * scaling
|
||||||
|
color: Color.mOnSurfaceVariant
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Network list
|
||||||
|
ListView {
|
||||||
|
id: networkList
|
||||||
|
anchors.fill: parent
|
||||||
|
visible: Settings.data.network.wifiEnabled && !NetworkService.isLoading
|
||||||
|
model: Object.values(NetworkService.networks)
|
||||||
|
spacing: Style.marginM * scaling
|
||||||
|
clip: true
|
||||||
|
|
||||||
|
delegate: Item {
|
||||||
|
width: parent ? parent.width : 0
|
||||||
|
height: modelData.ssid === passwordPromptSsid
|
||||||
|
&& showPasswordPrompt ? 108 * scaling : Style.baseWidgetSize * 1.5 * scaling
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
anchors.fill: parent
|
||||||
|
spacing: 0
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.preferredHeight: Style.baseWidgetSize * 1.5 * scaling
|
||||||
|
radius: Style.radiusS * scaling
|
||||||
|
color: modelData.connected ? Color.mPrimary : (networkMouseArea.containsMouse ? Color.mTertiary : Color.transparent)
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: Style.marginS * scaling
|
||||||
|
spacing: Style.marginS * scaling
|
||||||
|
|
||||||
|
NIcon {
|
||||||
|
text: NetworkService.signalIcon(modelData.signal)
|
||||||
|
font.pointSize: Style.fontSizeXXL * scaling
|
||||||
|
color: modelData.connected ? Color.mSurface : (networkMouseArea.containsMouse ? Color.mSurface : Color.mOnSurface)
|
||||||
|
}
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
spacing: Style.marginXS * scaling
|
||||||
|
|
||||||
|
// SSID
|
||||||
|
NText {
|
||||||
|
text: modelData.ssid || "Unknown Network"
|
||||||
|
font.pointSize: Style.fontSizeNormal * scaling
|
||||||
|
elide: Text.ElideRight
|
||||||
|
Layout.fillWidth: true
|
||||||
|
color: modelData.connected ? Color.mSurface : (networkMouseArea.containsMouse ? Color.mSurface : Color.mOnSurface)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Security Protocol
|
||||||
|
NText {
|
||||||
|
text: modelData.security && modelData.security !== "--" ? modelData.security : "Open"
|
||||||
|
font.pointSize: Style.fontSizeXS * scaling
|
||||||
|
elide: Text.ElideRight
|
||||||
|
Layout.fillWidth: true
|
||||||
|
color: modelData.connected ? Color.mSurface : (networkMouseArea.containsMouse ? Color.mSurface : Color.mOnSurface)
|
||||||
|
}
|
||||||
|
|
||||||
|
NText {
|
||||||
|
visible: NetworkService.connectStatusSsid === modelData.ssid
|
||||||
|
&& NetworkService.connectStatus === "error" && NetworkService.connectError.length > 0
|
||||||
|
text: NetworkService.connectError
|
||||||
|
color: Color.mError
|
||||||
|
font.pointSize: Style.fontSizeXS * scaling
|
||||||
|
elide: Text.ElideRight
|
||||||
|
Layout.fillWidth: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
Layout.preferredWidth: Style.baseWidgetSize * 0.7 * scaling
|
||||||
|
Layout.preferredHeight: Style.baseWidgetSize * 0.7 * scaling
|
||||||
|
visible: NetworkService.connectStatusSsid === modelData.ssid
|
||||||
|
&& (NetworkService.connectStatus !== ""
|
||||||
|
|| NetworkService.connectingSsid === modelData.ssid)
|
||||||
|
|
||||||
|
NBusyIndicator {
|
||||||
|
visible: NetworkService.connectingSsid === modelData.ssid
|
||||||
|
running: NetworkService.connectingSsid === modelData.ssid
|
||||||
|
color: Color.mPrimary
|
||||||
|
anchors.centerIn: parent
|
||||||
|
size: Style.baseWidgetSize * 0.7 * scaling
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
NText {
|
||||||
|
visible: modelData.connected
|
||||||
|
text: "connected"
|
||||||
|
font.pointSize: Style.fontSizeXS * scaling
|
||||||
|
color: modelData.connected ? Color.mSurface : (networkMouseArea.containsMouse ? Color.mSurface : Color.mOnSurface)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
id: networkMouseArea
|
||||||
|
anchors.fill: parent
|
||||||
|
hoverEnabled: true
|
||||||
|
onClicked: {
|
||||||
|
if (modelData.connected) {
|
||||||
|
NetworkService.disconnectNetwork(modelData.ssid)
|
||||||
|
} else if (NetworkService.isSecured(modelData.security) && !modelData.existing) {
|
||||||
|
passwordPromptSsid = modelData.ssid
|
||||||
|
showPasswordPrompt = true
|
||||||
|
passwordInput = "" // Clear previous input
|
||||||
|
Qt.callLater(function () {
|
||||||
|
passwordInputField.forceActiveFocus()
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
NetworkService.connectNetwork(modelData.ssid, modelData.security)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Password prompt section
|
||||||
|
Rectangle {
|
||||||
|
id: passwordPromptSection
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.preferredHeight: modelData.ssid === passwordPromptSsid && showPasswordPrompt ? 60 : 0
|
||||||
|
Layout.margins: Style.marginS * scaling
|
||||||
|
visible: modelData.ssid === passwordPromptSsid && showPasswordPrompt
|
||||||
|
color: Color.mSurfaceVariant
|
||||||
|
radius: Style.radiusS * scaling
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: Style.marginS * scaling
|
||||||
|
spacing: Style.marginS * scaling
|
||||||
|
|
||||||
|
Item {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.preferredHeight: Style.barHeight * scaling
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
anchors.fill: parent
|
||||||
|
radius: Style.radiusXS * scaling
|
||||||
|
color: Color.transparent
|
||||||
|
border.color: passwordInputField.activeFocus ? Color.mPrimary : Color.mOutline
|
||||||
|
border.width: Math.max(1, Style.borderS * scaling)
|
||||||
|
|
||||||
|
TextInput {
|
||||||
|
id: passwordInputField
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: Style.marginM * scaling
|
||||||
|
text: passwordInput
|
||||||
|
font.pointSize: Style.fontSizeM * scaling
|
||||||
|
color: Color.mOnSurface
|
||||||
|
verticalAlignment: TextInput.AlignVCenter
|
||||||
|
clip: true
|
||||||
|
focus: true
|
||||||
|
selectByMouse: true
|
||||||
|
activeFocusOnTab: true
|
||||||
|
inputMethodHints: Qt.ImhNone
|
||||||
|
echoMode: TextInput.Password
|
||||||
|
onTextChanged: passwordInput = text
|
||||||
|
onAccepted: {
|
||||||
|
NetworkService.submitPassword(passwordPromptSsid, passwordInput)
|
||||||
|
showPasswordPrompt = false
|
||||||
|
}
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
id: passwordInputMouseArea
|
||||||
|
anchors.fill: parent
|
||||||
|
onClicked: passwordInputField.forceActiveFocus()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
Layout.preferredWidth: Style.baseWidgetSize * 2.5 * scaling
|
||||||
|
Layout.preferredHeight: Style.barHeight * scaling
|
||||||
|
radius: Style.radiusM * scaling
|
||||||
|
color: Color.mPrimary
|
||||||
|
|
||||||
|
Behavior on color {
|
||||||
|
ColorAnimation {
|
||||||
|
duration: Style.animationFast
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
NText {
|
||||||
|
anchors.centerIn: parent
|
||||||
|
text: "Connect"
|
||||||
|
color: Color.mSurface
|
||||||
|
font.pointSize: Style.fontSizeXS * scaling
|
||||||
|
}
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
onClicked: {
|
||||||
|
NetworkService.submitPassword(passwordPromptSsid, passwordInput)
|
||||||
|
showPasswordPrompt = false
|
||||||
|
}
|
||||||
|
cursorShape: Qt.PointingHandCursor
|
||||||
|
hoverEnabled: true
|
||||||
|
onEntered: parent.color = Qt.darker(Color.mPrimary, 1.1)
|
||||||
|
onExited: parent.color = Color.mPrimary
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -97,6 +97,7 @@ Loader {
|
||||||
|
|
||||||
WlrLayershell.exclusionMode: ExclusionMode.Ignore
|
WlrLayershell.exclusionMode: ExclusionMode.Ignore
|
||||||
WlrLayershell.namespace: "noctalia-panel"
|
WlrLayershell.namespace: "noctalia-panel"
|
||||||
|
WlrLayershell.keyboardFocus: WlrKeyboardFocus.OnDemand
|
||||||
|
|
||||||
Behavior on color {
|
Behavior on color {
|
||||||
ColorAnimation {
|
ColorAnimation {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue