99 lines
2.8 KiB
QML
99 lines
2.8 KiB
QML
import QtQuick
|
|
import Quickshell
|
|
import qs.Commons
|
|
import qs.Modules.SettingsPanel
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
Item {
|
|
id: root
|
|
|
|
property ShellScreen screen
|
|
property real scaling: 1.0
|
|
property string barSection: ""
|
|
property int sectionWidgetIndex: 0
|
|
property int sectionWidgetsCount: 0
|
|
|
|
// Used to avoid opening the pill on Quickshell startup
|
|
property bool firstBrightnessReceived: false
|
|
|
|
implicitWidth: pill.width
|
|
implicitHeight: pill.height
|
|
visible: getMonitor() !== null
|
|
|
|
function getMonitor() {
|
|
return BrightnessService.getMonitorForScreen(screen) || null
|
|
}
|
|
|
|
function getIcon() {
|
|
var monitor = getMonitor()
|
|
var brightness = monitor ? monitor.brightness : 0
|
|
return brightness <= 0 ? "brightness_1" : brightness < 0.33 ? "brightness_low" : brightness
|
|
< 0.66 ? "brightness_medium" : "brightness_high"
|
|
}
|
|
|
|
// Connection used to open the pill when brightness changes
|
|
Connections {
|
|
target: getMonitor()
|
|
ignoreUnknownSignals: true
|
|
function onBrightnessUpdated() {
|
|
Logger.log("Bar-Brightness", "OnBrightnessUpdated")
|
|
var monitor = getMonitor()
|
|
if (!monitor)
|
|
return
|
|
var currentBrightness = monitor.brightness
|
|
|
|
// Ignore if this is the first time or if brightness hasn't actually changed
|
|
if (!firstBrightnessReceived) {
|
|
firstBrightnessReceived = true
|
|
monitor.lastBrightness = currentBrightness
|
|
return
|
|
}
|
|
|
|
// Only show pill if brightness actually changed (not just loaded from settings)
|
|
if (Math.abs(currentBrightness - monitor.lastBrightness) > 0.1) {
|
|
pill.show()
|
|
}
|
|
|
|
monitor.lastBrightness = currentBrightness
|
|
}
|
|
}
|
|
|
|
NPill {
|
|
id: pill
|
|
|
|
rightOpen: BarWidgetRegistry.getNPillDirection(root)
|
|
icon: getIcon()
|
|
iconCircleColor: Color.mPrimary
|
|
collapsedIconColor: Color.mOnSurface
|
|
autoHide: false // Important to be false so we can hover as long as we want
|
|
text: {
|
|
var monitor = getMonitor()
|
|
return monitor ? (Math.round(monitor.brightness * 100) + "%") : ""
|
|
}
|
|
tooltipText: {
|
|
var monitor = getMonitor()
|
|
if (!monitor)
|
|
return ""
|
|
return "Brightness: " + Math.round(monitor.brightness * 100) + "%\nMethod: " + monitor.method
|
|
+ "\nLeft click for advanced settings.\nScroll up/down to change brightness."
|
|
}
|
|
|
|
onWheel: function (angle) {
|
|
var monitor = getMonitor()
|
|
if (!monitor)
|
|
return
|
|
if (angle > 0) {
|
|
monitor.increaseBrightness()
|
|
} else if (angle < 0) {
|
|
monitor.decreaseBrightness()
|
|
}
|
|
}
|
|
|
|
onClicked: {
|
|
var settingsPanel = PanelService.getPanel("settingsPanel")
|
|
settingsPanel.requestedTab = SettingsPanel.Tab.Brightness
|
|
settingsPanel.open(screen)
|
|
}
|
|
}
|
|
}
|