mirror of
https://github.com/griffi-gh/hUI.git
synced 2024-11-10 01:48:42 -06:00
82 lines
2.2 KiB
Rust
82 lines
2.2 KiB
Rust
use hui::{
|
|
draw::TextureFormat,
|
|
element::{
|
|
br::Break,
|
|
container::Container,
|
|
image::Image,
|
|
slider::Slider,
|
|
text::Text,
|
|
UiElementExt,
|
|
},
|
|
layout::{Alignment, Direction},
|
|
size, Signal,
|
|
};
|
|
|
|
#[derive(Signal)]
|
|
enum CounterSignal {
|
|
ChangeValue(u32)
|
|
}
|
|
|
|
#[path = "../boilerplate.rs"]
|
|
#[macro_use]
|
|
mod boilerplate;
|
|
|
|
const IMAGE_DATA: &[u8] = include_bytes!("../assets/icons/visual-studio-code-icon_32x32.rgba");
|
|
|
|
ui_main!(
|
|
"hUI: Internal input test",
|
|
init: |ui| {
|
|
let image = ui.add_image(TextureFormat::Rgba, IMAGE_DATA, 32);
|
|
(0, image)
|
|
},
|
|
run: |ui, size, (ref mut counter, image)| {
|
|
Container::default()
|
|
.with_size(size!(100%))
|
|
.with_padding(10.)
|
|
.with_align((Alignment::Center, Alignment::Begin))
|
|
.with_direction(Direction::Horizontal)
|
|
.with_gap(5.)
|
|
.with_background((0.1, 0.1, 0.1))
|
|
.with_wrap(true)
|
|
.with_children(|ui| {
|
|
Text::new(format!("Number of images: {counter}"))
|
|
.with_text_size(32)
|
|
.add_child(ui);
|
|
Break.add_child(ui);
|
|
Text::new("Absolute tracking slider:")
|
|
.with_text_size(16)
|
|
.add_child(ui);
|
|
Break.add_child(ui);
|
|
Slider::new(*counter as f32 / 100.)
|
|
.with_size(size!(66%, 20))
|
|
.on_change(|x| {
|
|
CounterSignal::ChangeValue((x * 100.).round() as u32)
|
|
})
|
|
.add_child(ui);
|
|
Break.add_child(ui);
|
|
Text::new("Relative tracking slider (Experimental):")
|
|
.with_text_size(16)
|
|
.add_child(ui);
|
|
Break.add_child(ui);
|
|
Slider::new(*counter as f32 / 100.)
|
|
.with_size(size!(66%, 20))
|
|
.with_follow_mode(hui::element::slider::SliderFollowMode::Relative)
|
|
.on_change(|x| {
|
|
CounterSignal::ChangeValue((x * 100.).round() as u32)
|
|
})
|
|
.add_child(ui);
|
|
Break.add_child(ui);
|
|
for _ in 0..*counter {
|
|
Image::new(*image)
|
|
.with_size(size!(48, 48))
|
|
.add_child(ui);
|
|
}
|
|
})
|
|
.add_root(ui, size);
|
|
|
|
ui.process_signals(|sig| match sig {
|
|
CounterSignal::ChangeValue(v) => *counter = v,
|
|
});
|
|
}
|
|
);
|