// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial import { MaterialPalette, Elevation } from "styling.slint"; // Allows to select a value from a range of values. export component Slider { in property orientation: horizontal; private property vertical: orientation == Orientation.vertical; in property maximum: 100; in property enabled <=> i-touch-area.enabled; in property minimum: 0; out property has-focus: i-focus-scope.has-focus; in-out property value; callback changed(/* value */ float); min-width: vertical ? 20px : 0px; min-height: vertical ? 0px : 20px; accessible-role: slider; accessible-value: root.value; accessible-value-minimum: root.minimum; accessible-value-maximum: root.maximum; accessible-value-step: (root.maximum - root.minimum) / 100; states [ disabled when !root.enabled : { i-handle.background: MaterialPalette.control-foreground; i-handle.drop-shadow-blur: Elevation.level0; i-track.background: MaterialPalette.control-foreground; i-background.background: MaterialPalette.control-foreground; root.opacity: 0.38; } pressed when (i-touch-area.pressed && i-touch-area.i-handle-hover) || i-focus-scope.has-focus : { i-state-layer.opacity: 0.12; i-handle.drop-shadow-blur: Elevation.level0; } hover when i-touch-area.i-handle-hover : { i-state-layer.background: MaterialPalette.control-foreground; i-state-layer.opacity: 0.08; } ] i-background := Rectangle { background: MaterialPalette.control-background-variant; opacity: 0.38; x: (parent.width - self.width) / 2; y: (parent.height - self.height) / 2; width: vertical ? 4px : parent.width; height: vertical ? parent.height : 4px; border-radius: 2px; } i-track := Rectangle { background: MaterialPalette.accent-background; x: vertical ? (parent.width - self.width) / 2 : i-background.x; y: vertical ? i-background.y : (parent.height - self.height) / 2; width: vertical? i-background.width : i-handle.x + (i-handle.width / 2); height: vertical? i-handle.y + (i-handle.height / 2) : i-background.height; border-radius: i-background.border-radius; } i-state-layer := Rectangle { opacity: 0; background: MaterialPalette.accent-background; x: vertical ? (parent.width - self.width) / 2 : i-handle.x - (self.width - i-handle.width) / 2; y: vertical ? i-handle.y - (self.height - i-handle.height) / 2 : (parent.height - self.height) / 2; width: 40px; height: 40px; border-radius: max(self.width, self.height) / 2; animate opacity { duration: 250ms; easing: ease; } } i-handle := Rectangle { background: MaterialPalette.accent-background; x: vertical ? (parent.width - self.width) / 2 : (parent.width - i-handle.width) * (root.value - root.minimum) / (root.maximum - root.minimum); y: vertical ? (parent.height - i-handle.height) * (root.value - root.minimum) / (root.maximum - root.minimum) : (parent.height - self.height) / 2; width: vertical ? root.width : root.height; height: vertical ? root.width : root.height; border-radius: max(self.width, self.height) / 2; drop-shadow-color: MaterialPalette.shadow; drop-shadow-blur: Elevation.level1; drop-shadow-offset-y: 1px; animate drop-shadow-blur { duration: 250ms; easing: ease; } } i-touch-area := TouchArea { property pressed-value; property i-handle-hover: self.has-hover && self.mouse-x >= i-handle.x && self.mouse-x <= i-handle.x + i-handle.width && self.mouse-y >= i-handle.y && self.mouse-y <= i-handle.y + i-handle.height; pointer-event(event) => { if (event.button == PointerEventButton.left && event.kind == PointerEventKind.down) { self.pressed-value = root.value; } } moved => { if (!vertical && self.enabled && self.pressed) { root.value = max(root.minimum, min(root.maximum, self.pressed-value + (i-touch-area.mouse-x - i-touch-area.pressed-x) * (root.maximum - root.minimum) / (root.width - i-handle.width))); root.changed(root.value); } if (vertical && self.enabled && self.pressed) { root.value = max(root.minimum, min(root.maximum, self.pressed-value + (i-touch-area.mouse-y - i-touch-area.pressed-y) * (root.maximum - root.minimum) / (root.height - i-handle.height))); root.changed(root.value); } } } i-focus-scope := FocusScope { x: 0; y: 0; width: 0px; height: 0px; key-pressed(event) => { if (!vertical && self.enabled && event.text == Key.RightArrow) { root.value = Math.min(root.value + 1, root.maximum); accept } else if (!vertical && self.enabled && event.text == Key.LeftArrow) { root.value = Math.max(root.value - 1, root.minimum); accept } else if (vertical && self.enabled && event.text == Key.DownArrow) { root.value = Math.min(root.value + 1, root.maximum); accept } else if (vertical && self.enabled && event.text == Key.UpArrow) { root.value = Math.max(root.value - 1, root.minimum); accept } else { reject } } } }