mirror of
				https://github.com/slint-ui/slint.git
				synced 2025-10-31 20:08:35 +00:00 
			
		
		
		
	 be7c125726
			
		
	
	
		be7c125726
		
			
		
	
	
	
	
		
			
			* [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
		
			
				
	
	
		
			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 { CupertinoPalette } from "styling.slint";
 | |
| export { MenuBarItem, MenuBar, MenuFrame, MenuItem } from "menu.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.alternate-background;
 | |
|     out property <color> textedit-text-color: CupertinoPalette.foreground;
 | |
|     out property <color> textedit-background-disabled: CupertinoPalette.tertiary-control-background;
 | |
|     out property <color> textedit-text-color-disabled: CupertinoPalette.foreground-secondary;
 | |
|     out property <bool> dark-color-scheme: Palette.color-scheme == ColorScheme.dark;
 | |
| }
 | |
| 
 | |
| export global Palette {
 | |
|     out property <brush> background: CupertinoPalette.background;
 | |
|     out property <brush> foreground: CupertinoPalette.foreground;
 | |
|     out property <brush> alternate-background: CupertinoPalette.alternate-background;
 | |
|     out property <brush> alternate-foreground: CupertinoPalette.alternate-foreground;
 | |
|     out property <brush> control-background: CupertinoPalette.control-background;
 | |
|     out property <brush> control-foreground: CupertinoPalette.control-foreground;
 | |
|     out property <brush> accent-background: CupertinoPalette.accent-background;
 | |
|     out property <brush> accent-foreground: CupertinoPalette.accent-foreground;
 | |
|     out property <brush> selection-background: CupertinoPalette.selection-background;
 | |
|     out property <brush> selection-foreground: CupertinoPalette.selection-foreground;
 | |
|     out property <brush> border: CupertinoPalette.border;
 | |
|     in-out property <ColorScheme> color-scheme <=> CupertinoPalette.color-scheme;
 | |
| }
 |