Widget style: simplify -light/-dark handling

Instead of having all style duplicated and re-using a base, we just hack
into the funciton that queries the dark/light theme based on the style
suffix known at compile time.

This removes one of the problem that happens when trying to work on the
widget style with the extension, as it relies on include path hacks
This commit is contained in:
Olivier Goffart 2024-08-20 15:02:54 +02:00
parent 9bdade0105
commit 686f5e43e2
174 changed files with 262 additions and 385 deletions

View file

@ -1,4 +1,36 @@
// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
export { StyleMetrics, ScrollView, LineEdit, Button, ListItem, Palette } from "../fluent-base/std-widgets-impl.slint";
export { Button } from "button.slint";
export { ScrollView } from "scrollview.slint";
export { ListItem } from "components.slint";
export { LineEdit } from "lineedit.slint";
import { FluentPalette } from "styling.slint";
export global StyleMetrics {
out property <length> layout-spacing: 8px;
out property <length> layout-padding: 8px;
out property <length> text-cursor-width: 1px;
out property <color> window-background: FluentPalette.background;
out property <color> default-text-color: FluentPalette.foreground;
out property <color> textedit-background: FluentPalette.background;
out property <color> textedit-text-color: FluentPalette.foreground;
out property <color> textedit-background-disabled: FluentPalette.control-disabled;
out property <color> textedit-text-color-disabled: FluentPalette.text-disabled;
out property <bool> dark-color-scheme: Palette.color-scheme == ColorScheme.dark;
}
export global Palette {
out property <brush> background: FluentPalette.background;
out property <brush> foreground: FluentPalette.foreground;
out property <brush> alternate-background: FluentPalette.alternate-background;
out property <brush> alternate-foreground: FluentPalette.alternate-foreground;
out property <brush> control-background: FluentPalette.control-background;
out property <brush> control-foreground: FluentPalette.control-foreground;
out property <brush> accent-background: FluentPalette.accent-background;
out property <brush> accent-foreground: FluentPalette.accent-foreground;
out property <brush> selection-background: FluentPalette.selection-background;
out property <brush> selection-foreground: FluentPalette.selection-foreground;
out property <brush> border: FluentPalette.border;
in-out property <ColorScheme> color-scheme <=> FluentPalette.color-scheme;
}