mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
3f355e3083
- BrightnessService: Add onIsDdcChanged handler to fetch brightness when DDC is detected at startup - BrightnessService: Fix condition to update brightness when value is 0 - BrightnessPanel: Refresh DDC brightness when panel opens - BrightnessCard: Fix timer to only run on user interaction (not continuously)
156 lines
4.6 KiB
QML
156 lines
4.6 KiB
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell
|
|
import qs.Commons
|
|
import qs.Services.Hardware
|
|
import qs.Widgets
|
|
|
|
// Brightness control card for the ControlCenter
|
|
NBox {
|
|
id: root
|
|
|
|
Layout.fillWidth: true
|
|
clip: true
|
|
|
|
// Get the primary monitor (first screen)
|
|
readonly property var brightnessMonitor: {
|
|
if (Quickshell.screens.length > 0) {
|
|
return BrightnessService.getMonitorForScreen(Quickshell.screens[0]);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
property real localBrightness: 0
|
|
property bool localBrightnessChanging: false
|
|
|
|
Component.onCompleted: {
|
|
if (brightnessMonitor) {
|
|
localBrightness = brightnessMonitor.brightness || 0;
|
|
}
|
|
}
|
|
|
|
// Update local brightness when monitor changes
|
|
Connections {
|
|
target: BrightnessService
|
|
function onMonitorBrightnessChanged(monitor, newBrightness) {
|
|
if (monitor === brightnessMonitor && !localBrightnessChanging) {
|
|
localBrightness = newBrightness;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Update local brightness when monitor's brightness property changes
|
|
Connections {
|
|
target: brightnessMonitor
|
|
ignoreUnknownSignals: true
|
|
function onBrightnessUpdated() {
|
|
if (brightnessMonitor && !localBrightnessChanging) {
|
|
localBrightness = brightnessMonitor.brightness || 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Timer to debounce brightness changes - only runs when user is changing slider
|
|
Timer {
|
|
id: debounceTimer
|
|
interval: 100
|
|
running: false
|
|
repeat: false
|
|
onTriggered: {
|
|
if (brightnessMonitor && Math.abs(localBrightness - brightnessMonitor.brightness) >= 0.01) {
|
|
brightnessMonitor.setBrightness(localBrightness);
|
|
}
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
anchors.fill: parent
|
|
anchors.margins: Style.marginM
|
|
spacing: Style.marginM
|
|
|
|
// Brightness Section
|
|
ColumnLayout {
|
|
spacing: Style.marginXXS
|
|
Layout.fillWidth: true
|
|
Layout.preferredWidth: 0
|
|
opacity: brightnessMonitor && brightnessMonitor.brightnessControlAvailable ? 1.0 : 0.5
|
|
enabled: brightnessMonitor && brightnessMonitor.brightnessControlAvailable
|
|
|
|
// Brightness Header
|
|
RowLayout {
|
|
Layout.fillWidth: true
|
|
spacing: Style.marginXS
|
|
|
|
NIconButton {
|
|
icon: {
|
|
if (!brightnessMonitor)
|
|
return "brightness-low";
|
|
const brightness = brightnessMonitor.brightness || 0;
|
|
if (brightness <= 0.001)
|
|
return "sun-off";
|
|
return brightness <= 0.5 ? "brightness-low" : "brightness-high";
|
|
}
|
|
baseSize: Style.baseWidgetSize * 0.5
|
|
colorFg: Color.mOnSurface
|
|
colorBg: "transparent"
|
|
colorBgHover: Color.mHover
|
|
colorFgHover: Color.mOnHover
|
|
}
|
|
|
|
NText {
|
|
text: brightnessMonitor ? I18n.tr("common.brightness") : "No display"
|
|
pointSize: Style.fontSizeXS
|
|
color: Color.mOnSurfaceVariant
|
|
elide: Text.ElideRight
|
|
Layout.fillWidth: true
|
|
Layout.preferredWidth: 0
|
|
}
|
|
|
|
NText {
|
|
text: brightnessMonitor ? Math.round(localBrightness * 100) + "%" : "N/A"
|
|
pointSize: Style.fontSizeXS
|
|
color: Color.mOnSurfaceVariant
|
|
opacity: brightnessMonitor && brightnessMonitor.brightnessControlAvailable ? 1.0 : 0.5
|
|
}
|
|
}
|
|
|
|
// Brightness Slider
|
|
NSlider {
|
|
id: brightnessSlider
|
|
Layout.fillWidth: true
|
|
from: 0
|
|
to: 1
|
|
value: localBrightness
|
|
stepSize: 0.01
|
|
heightRatio: 0.5
|
|
onMoved: {
|
|
localBrightness = value;
|
|
debounceTimer.restart();
|
|
}
|
|
onPressedChanged: localBrightnessChanging = pressed
|
|
tooltipText: `${Math.round(localBrightness * 100)}%`
|
|
tooltipDirection: "bottom"
|
|
|
|
// MouseArea to handle wheel events when hovering over the slider
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
acceptedButtons: Qt.NoButton
|
|
propagateComposedEvents: true
|
|
|
|
onWheel: wheel => {
|
|
if (brightnessSlider.enabled && brightnessMonitor && brightnessMonitor.brightnessControlAvailable) {
|
|
const delta = wheel.angleDelta.y || wheel.angleDelta.x;
|
|
const step = Settings.data.brightness.brightnessStep / 100.0; // Convert percentage to 0-1 range
|
|
const increment = delta > 0 ? step : -step;
|
|
const newValue = Math.max(0, Math.min(1, localBrightness + increment));
|
|
localBrightness = newValue;
|
|
debounceTimer.restart();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|