use tuix::*;
const STYLE: &str = r#"
dropdown {
border-width: 1px;
border-color: #555555;
background-color: white;
}
dropdown .label {
child-space: 1s;
color: black;
}
dropdown .icon {
color: #555555;
}
popup {
background-color: #d2d2d2;
}
list {
border-width: 1px;
border-color: #555555;
}
list>check_button {
height: 30px;
child-space: 1s;
background-color: #d2d2d2;
}
list>check_button:hover {
background-color: #e2e2e2;
}
list>check_button:active {
background-color: #c2c2c2;
}
list>check_button:checked {
background-color: #c2c2ff;
}
list>check_button:focus {
border-width: 1px;
border-color: black;
}
"#;
#[derive(Debug, Clone, PartialEq)]
enum CustomEvent {
ChangeColor(Color),
}
#[derive(Default)]
struct Container {
dropdown: Entity,
}
impl Widget for Container {
type Ret = Entity;
type Data = ();
fn on_build(&mut self, state: &mut State, container: Entity) -> Self::Ret {
self.dropdown = Dropdown::<()>::new("Test")
.build(state, container, |builder| {
builder
.set_width(Pixels(210.0))
.set_height(Pixels(30.0))
.set_space(Stretch(1.0))
});
Element::new().build(state, self.dropdown, |builder|
builder
.set_height(Pixels(5.0))
);
CheckButton::with_label("Red")
.set_checked(true)
.on_checked(|_, state, button|{
button.emit(state, CustomEvent::ChangeColor(Color::rgb(200, 50, 50)));
button.emit(state, PopupEvent::Close);
button.emit(state, DropdownEvent::SetText("Red".to_string()));
})
.build(state, self.dropdown, |builder|
builder
.set_color(Color::black())
);
CheckButton::with_label("Green")
.on_checked(|_, state, button|{
button.emit(state, CustomEvent::ChangeColor(Color::rgb(50, 200, 50)));
button.emit(state, PopupEvent::Close);
button.emit(state, DropdownEvent::SetText("Green".to_string()));
})
.build(state, self.dropdown, |builder|
builder
.set_color(Color::black())
);
CheckButton::with_label("Blue")
.on_checked(|_, state, button|{
button.emit(state, CustomEvent::ChangeColor(Color::rgb(50, 50, 200)));
button.emit(state, PopupEvent::Close);
button.emit(state, DropdownEvent::SetText("Blue".to_string()));
})
.build(state, self.dropdown, |builder|
builder
.set_color(Color::black())
);
Element::new().build(state, self.dropdown, |builder|
builder
.set_height(Pixels(5.0))
);
container.set_background_color(state, Color::white()).set_focusable(state, false)
}
fn on_event(&mut self, state: &mut State, entity: Entity, event: &mut Event) {
if let Some(custom_event) = event.message.downcast() {
match custom_event {
CustomEvent::ChangeColor(color) => {
entity.set_background_color(state, *color);
event.consume();
}
}
}
}
}
fn main() {
let app = Application::new(
WindowDescription::new()
.with_title("Spinbox")
.with_inner_size(300, 300),
|state, window| {
window.set_background_color(state, Color::white()).set_focusable(state, false);
state.add_theme(STYLE);
Container::default().build(state, window, |builder| builder);
},
);
app.run();
}