mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-25 14:02:53 -05:00
- Fitt's law stuff, whole height on horiz, whole width in vertical - Probably missed stuff or breaks stuff, pretty big refactor
97 lines
3.6 KiB
QML
97 lines
3.6 KiB
QML
import QtQuick
|
|
import Quickshell
|
|
import qs.Common
|
|
import qs.Modules.Plugins
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
BasePill {
|
|
id: root
|
|
|
|
Ref {
|
|
service: VpnService
|
|
}
|
|
|
|
property var popoutTarget: null
|
|
|
|
signal toggleVpnPopup()
|
|
|
|
content: Component {
|
|
Item {
|
|
implicitWidth: root.widgetThickness - root.horizontalPadding * 2
|
|
implicitHeight: root.widgetThickness - root.horizontalPadding * 2
|
|
|
|
DankIcon {
|
|
id: icon
|
|
|
|
name: VpnService.isBusy ? "sync" : (VpnService.connected ? "vpn_lock" : "vpn_key_off")
|
|
size: Theme.barIconSize(root.barThickness, -4)
|
|
color: VpnService.connected ? Theme.primary : Theme.surfaceText
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
}
|
|
|
|
Loader {
|
|
id: tooltipLoader
|
|
active: false
|
|
sourceComponent: DankTooltip {}
|
|
}
|
|
|
|
MouseArea {
|
|
id: clickArea
|
|
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
acceptedButtons: Qt.LeftButton
|
|
onPressed: {
|
|
if (popoutTarget && popoutTarget.setTriggerPosition) {
|
|
const globalPos = root.visualContent.mapToGlobal(0, 0)
|
|
const currentScreen = parentScreen || Screen
|
|
const pos = SettingsData.getPopupTriggerPosition(globalPos, currentScreen, barThickness, root.visualWidth)
|
|
popoutTarget.setTriggerPosition(pos.x, pos.y, pos.width, section, currentScreen)
|
|
}
|
|
root.toggleVpnPopup();
|
|
}
|
|
onEntered: {
|
|
if (root.parentScreen && !(popoutTarget && popoutTarget.shouldBeVisible)) {
|
|
tooltipLoader.active = true
|
|
if (tooltipLoader.item) {
|
|
let tooltipText = ""
|
|
if (!VpnService.connected) {
|
|
tooltipText = "VPN Disconnected"
|
|
} else {
|
|
const names = VpnService.activeNames || []
|
|
if (names.length <= 1) {
|
|
tooltipText = "VPN Connected • " + (names[0] || "")
|
|
} else {
|
|
tooltipText = "VPN Connected • " + names[0] + " +" + (names.length - 1)
|
|
}
|
|
}
|
|
|
|
if (root.isVerticalOrientation) {
|
|
const globalPos = mapToGlobal(width / 2, height / 2)
|
|
const screenX = root.parentScreen ? root.parentScreen.x : 0
|
|
const screenY = root.parentScreen ? root.parentScreen.y : 0
|
|
const relativeY = globalPos.y - screenY
|
|
const tooltipX = root.axis?.edge === "left" ? (Theme.barHeight + SettingsData.dankBarSpacing + Theme.spacingXS) : (root.parentScreen.width - Theme.barHeight - SettingsData.dankBarSpacing - Theme.spacingXS)
|
|
const isLeft = root.axis?.edge === "left"
|
|
tooltipLoader.item.show(tooltipText, screenX + tooltipX, relativeY, root.parentScreen, isLeft, !isLeft)
|
|
} else {
|
|
const globalPos = mapToGlobal(width / 2, height)
|
|
const tooltipY = Theme.barHeight + SettingsData.dankBarSpacing + Theme.spacingXS
|
|
tooltipLoader.item.show(tooltipText, globalPos.x, tooltipY, root.parentScreen, false, false)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
onExited: {
|
|
if (tooltipLoader.item) {
|
|
tooltipLoader.item.hide()
|
|
}
|
|
tooltipLoader.active = false
|
|
}
|
|
}
|
|
}
|