// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial import { MaterialPalette, MaterialFontSettings, Elevation, Icons } from "styling.slint"; import { ListItem, StateLayer } from "components.slint"; import { ComboBoxBase } from "../common/combobox-base.slint"; export component ComboBox { in property <[string]> model <=> i-base.model; in property enabled <=> i-base.enabled; out property has-focus <=> i-base.has-focus; in-out property current-index <=> i-base.current-index; in-out property current-value <=> i-base.current-value; callback selected <=> i-base.selected; min-width: max(160px, i-layout.min-width); min-height: max(22px, i-layout.min-height); horizontal-stretch: 1; vertical-stretch: 0; forward-focus: i-base; states [ disabled when !root.enabled : { i-background.border-color: MaterialPalette.control-foreground; i-background.opacity: 0.38; i-label.opacity: 0.38; i-icon.opacity: 0.38; } focused when root.has-focus : { i-background.border-width: 2px; i-background.border-color: MaterialPalette.accent-background; i-label.color: MaterialPalette.accent-background; i-icon.colorize: MaterialPalette.accent-background; } ] i-base := ComboBoxBase { width: 100%; height: 100%; show-popup => { i-popup.show(); } } i-background := Rectangle { width: 100%; height: 100%; border-radius: 4px; border-width: 1px; border-color: MaterialPalette.border; } i-layout := HorizontalLayout { padding-left: 16px; padding-right: 12px; spacing: 16px; i-label := Text { text <=> root.current-value; color: MaterialPalette.control-foreground; vertical-alignment: center; // FIXME after Roboto font can be loaded // font-family: MaterialFontSettings.body-large.font; font-size: MaterialFontSettings.body-large.font-size; font-weight: MaterialFontSettings.body-large.font-weight; } i-icon := Image { width: 24px; height: 24px; y: (parent.height - self.height) / 2; source: Icons.expand-more; colorize: MaterialPalette.control-foreground; } } i-popup := PopupWindow { x: 0; y: root.height; width: root.width; i-popup-container := Rectangle { background: MaterialPalette.alternate-background; drop-shadow-color: MaterialPalette.shadow; drop-shadow-blur: Elevation.level2; drop-shadow-offset-y: 1px; border-radius: 4px; } VerticalLayout { for value[index] in root.model: ListItem { item: { text: value }; is-selected: index == root.current-index; has-hover: i-touch-area.has-hover; pressed: i-touch-area.pressed; i-touch-area := StateLayer { clicked => { i-base.select(index); } } } } } }