mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-28 21:04:47 +00:00

* added focus state to StandardLIstView * (wip) focus handling for qt style * Update CHANGELOG.md Co-authored-by: Thorbjørn Lindeijer <bjorn@lindeijer.nl> * Share StandardListView between all styles * Update internal/compiler/widgets/material-base/combobox.slint Co-authored-by: Thorbjørn Lindeijer <bjorn@lindeijer.nl> * code review feedback --------- Co-authored-by: Thorbjørn Lindeijer <bjorn@lindeijer.nl>
28 lines
1.2 KiB
Text
28 lines
1.2 KiB
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
|
|
|
|
import { ColorSchemeSelector } from "color-scheme.slint";
|
|
|
|
import { Button } from "button.slint";
|
|
export { Button }
|
|
|
|
import { ScrollView } from "scrollview.slint";
|
|
export { ScrollView }
|
|
|
|
import { ListItem } from "components.slint";
|
|
export { ListItem }
|
|
|
|
import { FluentPalette, FluentFontSettings } 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: FluentPalette.dark-color-scheme;
|
|
}
|