slint/internal/compiler/widgets/cupertino-base/std-widgets-impl.slint
2023-11-21 14:45:07 +01:00

25 lines
1.1 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 { CupertinoPalette, CupertinoFontSettings } from "styling.slint";
export global StyleMetrics {
out property <length> layout-spacing: 10px;
out property <length> layout-padding: 12px;
out property <length> text-cursor-width: 1px;
out property <color> window-background: CupertinoPalette.background;
out property <color> default-text-color: CupertinoPalette.foreground;
out property <color> textedit-background: CupertinoPalette.background-alt;
out property <color> textedit-text-color: CupertinoPalette.foreground;
out property <color> textedit-background-disabled: CupertinoPalette.surface-tertiary;
out property <color> textedit-text-color-disabled: CupertinoPalette.foreground-secondary;
out property <bool> dark-color-scheme: CupertinoPalette.dark-color-scheme;
}