slint/internal/compiler/widgets/material-base/combobox.slint
Florian Blasius 6da8120dfa
added palette global (#3984)
* Update docs/reference/src/language/builtins/globals.md

Co-authored-by: Simon Hausmann <simon.hausmann@slint.dev>

* Update docs/reference/src/language/builtins/globals.md

Co-authored-by: Simon Hausmann <simon.hausmann@slint.dev>

* Update docs/reference/src/language/builtins/globals.md

Co-authored-by: Simon Hausmann <simon.hausmann@slint.dev>

* Update docs/reference/src/language/builtins/globals.md

Co-authored-by: Simon Hausmann <simon.hausmann@slint.dev>

* Update docs/reference/src/language/builtins/globals.md

Co-authored-by: Simon Hausmann <simon.hausmann@slint.dev>


---------

Co-authored-by: Florian Blasius <florian.blasius@slint-ui.com>
Co-authored-by: Simon Hausmann <simon.hausmann@slint.dev>
Co-authored-by: Florian Blasius <flovansl@fedora.fritz.box>
2023-12-11 14:44:05 +00:00

108 lines
3.3 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 { 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 <bool> enabled <=> i-base.enabled;
out property <bool> has-focus <=> i-base.has-focus;
in-out property <int> current-index <=> i-base.current-index;
in-out property <string> 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);
}
}
}
}
}
}