mirror of
https://github.com/slint-ui/slint.git
synced 2025-07-13 08:05:19 +00:00

This replaces the previously hidden `StyleMetrics.style-name` that was only accessible for internal use.
37 lines
2.1 KiB
Text
37 lines
2.1 KiB
Text
// 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 { 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 { MenuBarItem, MenuBar, MenuFrame, MenuItem } from "menu.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;
|
|
}
|