mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-06 05:25:41 -05:00
203 lines
5.4 KiB
QML
203 lines
5.4 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import Quickshell
|
|
import Quickshell.Io
|
|
import Quickshell.Widgets
|
|
import qs.Common
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
DankModal {
|
|
id: root
|
|
|
|
property bool networkInfoModalVisible: false
|
|
property string networkSSID: ""
|
|
property var networkData: null
|
|
property string networkDetails: ""
|
|
|
|
function showNetworkInfo(ssid, data) {
|
|
networkSSID = ssid
|
|
networkData = data
|
|
networkInfoModalVisible = true
|
|
open()
|
|
NetworkService.fetchNetworkInfo(ssid)
|
|
}
|
|
|
|
function hideDialog() {
|
|
networkInfoModalVisible = false
|
|
close()
|
|
networkSSID = ""
|
|
networkData = null
|
|
networkDetails = ""
|
|
}
|
|
|
|
visible: networkInfoModalVisible
|
|
width: 600
|
|
height: 500
|
|
enableShadow: true
|
|
onBackgroundClicked: {
|
|
hideDialog()
|
|
}
|
|
onVisibleChanged: {
|
|
if (!visible) {
|
|
networkSSID = ""
|
|
networkData = null
|
|
networkDetails = ""
|
|
}
|
|
}
|
|
|
|
content: Component {
|
|
Item {
|
|
anchors.fill: parent
|
|
|
|
Column {
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingL
|
|
spacing: Theme.spacingL
|
|
|
|
Row {
|
|
width: parent.width
|
|
|
|
Column {
|
|
width: parent.width - 40
|
|
spacing: Theme.spacingXS
|
|
|
|
StyledText {
|
|
text: "Network Information"
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
color: Theme.surfaceText
|
|
font.weight: Font.Medium
|
|
}
|
|
|
|
StyledText {
|
|
text: "Details for \"" + networkSSID + "\""
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: Theme.surfaceTextMedium
|
|
width: parent.width
|
|
elide: Text.ElideRight
|
|
}
|
|
}
|
|
|
|
DankActionButton {
|
|
iconName: "close"
|
|
iconSize: Theme.iconSize - 4
|
|
iconColor: Theme.surfaceText
|
|
hoverColor: Theme.errorHover
|
|
onClicked: {
|
|
root.hideDialog()
|
|
}
|
|
}
|
|
}
|
|
|
|
Flickable {
|
|
width: parent.width
|
|
height: parent.height - 140
|
|
clip: true
|
|
contentWidth: width
|
|
contentHeight: detailsRect.height
|
|
|
|
// Qt 6.9+ scrolling: flickDeceleration/maximumFlickVelocity only affect touch now
|
|
interactive: true
|
|
flickDeceleration: 1500
|
|
maximumFlickVelocity: 2000
|
|
boundsBehavior: Flickable.DragAndOvershootBounds
|
|
boundsMovement: Flickable.FollowBoundsBehavior
|
|
pressDelay: 0
|
|
flickableDirection: Flickable.VerticalFlick
|
|
|
|
// Custom wheel handler for Qt 6.9+ responsive mouse wheel scrolling
|
|
WheelHandler {
|
|
acceptedDevices: PointerDevice.Mouse | PointerDevice.TouchPad
|
|
onWheel: event => {
|
|
let delta = event.pixelDelta.y
|
|
!== 0 ? event.pixelDelta.y * 1.8 : event.angleDelta.y / 120 * 60
|
|
let newY = parent.contentY - delta
|
|
newY = Math.max(0, Math.min(
|
|
parent.contentHeight - parent.height,
|
|
newY))
|
|
parent.contentY = newY
|
|
event.accepted = true
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
id: detailsRect
|
|
|
|
width: parent.width
|
|
height: Math.max(parent.parent.height,
|
|
detailsText.contentHeight + Theme.spacingM * 2)
|
|
radius: Theme.cornerRadius
|
|
color: Theme.surfaceHover
|
|
border.color: Theme.outlineStrong
|
|
border.width: 1
|
|
|
|
StyledText {
|
|
id: detailsText
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingM
|
|
text: NetworkService.networkInfoDetails.replace(/\\n/g, '\n')
|
|
|| "No information available"
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: Theme.surfaceText
|
|
wrapMode: Text.WordWrap
|
|
lineHeight: 1.5
|
|
}
|
|
}
|
|
|
|
ScrollBar.vertical: ScrollBar {
|
|
policy: ScrollBar.AsNeeded
|
|
}
|
|
|
|
ScrollBar.horizontal: ScrollBar {
|
|
policy: ScrollBar.AlwaysOff
|
|
}
|
|
}
|
|
|
|
Item {
|
|
width: parent.width
|
|
height: 40
|
|
|
|
Rectangle {
|
|
anchors.right: parent.right
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
width: Math.max(70, closeText.contentWidth + Theme.spacingM * 2)
|
|
height: 36
|
|
radius: Theme.cornerRadius
|
|
color: closeArea.containsMouse ? Qt.darker(Theme.primary,
|
|
1.1) : Theme.primary
|
|
|
|
StyledText {
|
|
id: closeText
|
|
|
|
anchors.centerIn: parent
|
|
text: "Close"
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: Theme.background
|
|
font.weight: Font.Medium
|
|
}
|
|
|
|
MouseArea {
|
|
id: closeArea
|
|
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
root.hideDialog()
|
|
}
|
|
}
|
|
|
|
Behavior on color {
|
|
ColorAnimation {
|
|
duration: Theme.shortDuration
|
|
easing.type: Theme.standardEasing
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|