mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-10 05:39:16 +00:00

Instead of having all style duplicated and re-using a base, we just hack into the funciton that queries the dark/light theme based on the style suffix known at compile time. This removes one of the problem that happens when trying to work on the widget style with the extension, as it relies on include path hacks
114 lines
3.5 KiB
Text
114 lines
3.5 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
|
|
|
|
import { CosmicFontSettings, CosmicPalette, Icons, CosmicSizeSettings } from "styling.slint";
|
|
import { MenuBorder, ListItem, StateLayerBase } from "components.slint";
|
|
import { ComboBoxBase } from "../common/combobox-base.slint";
|
|
import { ScrollView } from "./scrollview.slint";
|
|
|
|
export component ComboBox {
|
|
in property <[string]> model <=> base.model;
|
|
in property <bool> enabled <=> base.enabled;
|
|
out property <bool> has-focus <=> base.has-focus;
|
|
in-out property <int> current-index <=> base.current-index;
|
|
in-out property <string> current-value <=> base.current-value;
|
|
|
|
callback selected <=> base.selected;
|
|
|
|
property <length> popup-padding: 4px;
|
|
|
|
property <int> visible-items: min(6, model.length);
|
|
|
|
min-width: max(160px, layout.min-height);
|
|
min-height: max(32px, layout.min-height);
|
|
horizontal-stretch: 1;
|
|
vertical-stretch: 0;
|
|
forward-focus: base;
|
|
accessible-role: combobox;
|
|
|
|
states [
|
|
disabled when !root.enabled : {
|
|
opacity: 0.5;
|
|
}
|
|
]
|
|
|
|
base := ComboBoxBase {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
show-popup => {
|
|
popup.show();
|
|
}
|
|
}
|
|
|
|
background := Rectangle {
|
|
border-radius: 16px;
|
|
background: CosmicPalette.control-background;
|
|
border-width: 1px;
|
|
border-color: CosmicPalette.border;
|
|
|
|
layout := HorizontalLayout {
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
spacing: 10px;
|
|
|
|
text := Text {
|
|
horizontal-alignment: left;
|
|
vertical-alignment: center;
|
|
font-size: CosmicFontSettings.body.font-size;
|
|
font-weight: CosmicFontSettings.body.font-weight;
|
|
color: CosmicPalette.control-foreground;
|
|
text: root.current-value;
|
|
}
|
|
|
|
Image {
|
|
y: (parent.height - self.height) / 2;
|
|
width: 16px;
|
|
height: 16px;
|
|
colorize: CosmicPalette.control-foreground;
|
|
source: Icons.dropdown;
|
|
}
|
|
}
|
|
|
|
StateLayerBase {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: background.border-radius;
|
|
pressed: base.pressed;
|
|
has-focus: base.has-focus;
|
|
has-hover: base.has-hover;
|
|
enabled: root.enabled;
|
|
}
|
|
}
|
|
|
|
popup := PopupWindow {
|
|
x: 0;
|
|
// Position the popup so that the first element is over the popup.
|
|
// Ideally it should be so that the current element is over the popup.
|
|
y: root.height + 4px;
|
|
width: root.width;
|
|
height: root.visible-items * CosmicSizeSettings.item-height + 2 * root.popup-padding;
|
|
|
|
MenuBorder {
|
|
ScrollView {
|
|
VerticalLayout {
|
|
alignment: start;
|
|
padding: root.popup-padding;
|
|
|
|
for value[index] in root.model : ListItem {
|
|
item: { text: value };
|
|
is-selected: index == root.current-index;
|
|
has-hover: touch-area.has-hover;
|
|
pressed: touch-area.pressed;
|
|
|
|
touch-area := TouchArea {
|
|
clicked => {
|
|
base.select(index);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|