110 lines
3.2 KiB
QML
110 lines
3.2 KiB
QML
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Io
|
|
import Quickshell.Services.Pipewire
|
|
import qs.Commons
|
|
import qs.Modules.SettingsPanel
|
|
import qs.Services
|
|
import qs.Widgets
|
|
import qs.Modules.Bar.Extras
|
|
|
|
Item {
|
|
id: root
|
|
|
|
property ShellScreen screen
|
|
property real scaling: 1.0
|
|
|
|
// Widget properties passed from Bar.qml for per-instance settings
|
|
property string widgetId: ""
|
|
property string section: ""
|
|
property int sectionWidgetIndex: -1
|
|
property int sectionWidgetsCount: 0
|
|
|
|
property var widgetMetadata: BarWidgetRegistry.widgetMetadata[widgetId]
|
|
property var widgetSettings: {
|
|
if (section && sectionWidgetIndex >= 0) {
|
|
var widgets = Settings.data.bar.widgets[section]
|
|
if (widgets && sectionWidgetIndex < widgets.length) {
|
|
return widgets[sectionWidgetIndex]
|
|
}
|
|
}
|
|
return {}
|
|
}
|
|
|
|
readonly property bool isBarVertical: Settings.data.bar.position === "left" || Settings.data.bar.position === "right"
|
|
readonly property string displayMode: (widgetSettings.displayMode !== undefined) ? widgetSettings.displayMode : widgetMetadata.displayMode
|
|
|
|
// Used to avoid opening the pill on Quickshell startup
|
|
property bool firstVolumeReceived: false
|
|
property int wheelAccumulator: 0
|
|
|
|
implicitWidth: pill.width
|
|
implicitHeight: pill.height
|
|
|
|
function getIcon() {
|
|
if (AudioService.muted) {
|
|
return "volume-mute"
|
|
}
|
|
return (AudioService.volume <= Number.EPSILON) ? "volume-zero" : (AudioService.volume <= 0.5) ? "volume-low" : "volume-high"
|
|
}
|
|
|
|
// Connection used to open the pill when volume changes
|
|
Connections {
|
|
target: AudioService.sink?.audio ? AudioService.sink?.audio : null
|
|
function onVolumeChanged() {
|
|
// Logger.log("Bar:Volume", "onVolumeChanged")
|
|
if (!firstVolumeReceived) {
|
|
// Ignore the first volume change
|
|
firstVolumeReceived = true
|
|
} else {
|
|
pill.show()
|
|
externalHideTimer.restart()
|
|
}
|
|
}
|
|
}
|
|
|
|
Timer {
|
|
id: externalHideTimer
|
|
running: false
|
|
interval: 1500
|
|
onTriggered: {
|
|
pill.hide()
|
|
}
|
|
}
|
|
|
|
BarPill {
|
|
id: pill
|
|
|
|
compact: (Settings.data.bar.density === "compact")
|
|
rightOpen: BarWidgetRegistry.getPillDirection(root)
|
|
icon: getIcon()
|
|
autoHide: false // Important to be false so we can hover as long as we want
|
|
text: Math.floor(AudioService.volume * 100)
|
|
suffix: "%"
|
|
forceOpen: displayMode === "alwaysShow"
|
|
forceClose: displayMode === "alwaysHide"
|
|
tooltipText: "Volume: " + Math.round(AudioService.volume * 100) + "%\nLeft click to toggle mute.\nRight click for settings.\nScroll to modify volume."
|
|
|
|
onWheel: function (delta) {
|
|
wheelAccumulator += delta
|
|
if (wheelAccumulator >= 120) {
|
|
wheelAccumulator = 0
|
|
AudioService.increaseVolume()
|
|
} else if (wheelAccumulator <= -120) {
|
|
wheelAccumulator = 0
|
|
AudioService.decreaseVolume()
|
|
}
|
|
}
|
|
onClicked: {
|
|
AudioService.setOutputMuted(!AudioService.muted)
|
|
}
|
|
onRightClicked: {
|
|
var settingsPanel = PanelService.getPanel("settingsPanel")
|
|
settingsPanel.requestedTab = SettingsPanel.Tab.Audio
|
|
settingsPanel.open()
|
|
}
|
|
onMiddleClicked: {
|
|
Quickshell.execDetached(["pwvucontrol"])
|
|
}
|
|
}
|
|
}
|