// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial // widget imports import { Button } from "widget-button.slint"; import { CheckBox } from "widget-checkbox.slint"; import { ScrollView } from "widget-scrollview.slint"; import { md } from "md.slint"; export { Button, CheckBox, ScrollView } export global StyleMetrics { out property layout-spacing: 8px; out property layout-padding: 8px; out property text-cursor-width: 2px; out property default-text-color: md.sys.color.on-surface; out property textedit-background: transparent; out property textedit-text-color: md.sys.color.on-surface; out property textedit-background-disabled: transparent; out property textedit-text-color-disabled: md.sys.color.on-surface; out property dark-color-scheme: md.dark-color-scheme; out property default-font-family: "Roboto"; out property window-background: md.sys.color.background; }