mirror of
https://github.com/griffi-gh/hUI.git
synced 2024-11-21 22:58:42 -06:00
upd api to frame
This commit is contained in:
parent
6ec12187ac
commit
dac0c7ac6d
|
@ -73,24 +73,21 @@ fn main() {
|
||||||
children: ElementList(vec![
|
children: ElementList(vec![
|
||||||
Box::new(FillRect {
|
Box::new(FillRect {
|
||||||
size: (Size::Relative(0.5), Size::Absolute(30.)).into(),
|
size: (Size::Relative(0.5), Size::Absolute(30.)).into(),
|
||||||
background: vec4(0.75, 0., 0., 1.).into(),
|
frame: Box::new(vec4(0.75, 0., 0., 1.)),
|
||||||
..Default::default()
|
|
||||||
}),
|
}),
|
||||||
Box::new(FillRect {
|
Box::new(FillRect {
|
||||||
size: (Size::Relative(z / 2. + 0.5), Size::Absolute(30.)).into(),
|
size: (Size::Relative(z / 2. + 0.5), Size::Absolute(30.)).into(),
|
||||||
background: Corners::left_right(
|
frame: Box::new(Corners::left_right(
|
||||||
vec4(1., 0., 0., 1.),
|
vec4(1., 0., 0., 1.),
|
||||||
vec4(0., 1., 0., 1.)
|
vec4(0., 1., 0., 1.)
|
||||||
).into(),
|
)),
|
||||||
..Default::default()
|
|
||||||
}),
|
}),
|
||||||
]),
|
]),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
}),
|
}),
|
||||||
Box::new(FillRect {
|
Box::new(FillRect {
|
||||||
size: (Size::Relative(z / 2. + 0.5), Size::Absolute(30.)).into(),
|
size: (Size::Relative(z / 2. + 0.5), Size::Absolute(30.)).into(),
|
||||||
background: vec4(0., 0.75, 0., 1.).into(),
|
frame: Box::new(vec4(0., 0.75, 0., 1.)),
|
||||||
..Default::default()
|
|
||||||
}),
|
}),
|
||||||
Box::new(Container {
|
Box::new(Container {
|
||||||
gap: 5.,
|
gap: 5.,
|
||||||
|
@ -102,12 +99,11 @@ fn main() {
|
||||||
for i in 0..10 {
|
for i in 0..10 {
|
||||||
x.push(Box::new(FillRect {
|
x.push(Box::new(FillRect {
|
||||||
size: (Size::Absolute(50.), Size::Absolute(50.)).into(),
|
size: (Size::Absolute(50.), Size::Absolute(50.)).into(),
|
||||||
background: if i == 1 {
|
frame: Box::new(if i == 1 {
|
||||||
vec4(0.75, 0.75, 0.75, 0.75).into()
|
vec4(0.75, 0.75, 0.75, 0.75)
|
||||||
} else {
|
} else {
|
||||||
vec4(0.5, 0.5, 0.5, 0.75).into()
|
vec4(0.5, 0.5, 0.5, 0.75)
|
||||||
},
|
}),
|
||||||
..Default::default()
|
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
ElementList(x)
|
ElementList(x)
|
||||||
|
@ -130,8 +126,7 @@ fn main() {
|
||||||
children: ElementList(vec![
|
children: ElementList(vec![
|
||||||
Box::new(FillRect {
|
Box::new(FillRect {
|
||||||
size: (Size::Absolute(50.), Size::Absolute(50.)).into(),
|
size: (Size::Absolute(50.), Size::Absolute(50.)).into(),
|
||||||
background: vec4(1., 1., 1., 0.75).into(),
|
frame: Box::new(vec4(1., 1., 1., 0.75)),
|
||||||
..Default::default()
|
|
||||||
}),
|
}),
|
||||||
]),
|
]),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
|
|
|
@ -73,13 +73,11 @@ fn main() {
|
||||||
}
|
}
|
||||||
elem.push(Box::new(FillRect {
|
elem.push(Box::new(FillRect {
|
||||||
size: (Size::Relative(1.), Size::Absolute(10.)).into(),
|
size: (Size::Relative(1.), Size::Absolute(10.)).into(),
|
||||||
background: vec4(0., 0., 1., 1.).into(),
|
frame: Box::new(vec4(0., 0., 1., 1.)),
|
||||||
..Default::default()
|
|
||||||
}));
|
}));
|
||||||
elem.push(Box::new(FillRect {
|
elem.push(Box::new(FillRect {
|
||||||
size: (Size::Relative(1.), Size::Absolute(10.)).into(),
|
size: (Size::Relative(1.), Size::Absolute(10.)).into(),
|
||||||
background: vec4(1., 1., 0., 1.).into(),
|
frame: Box::new(vec4(1., 1., 0., 1.)),
|
||||||
..Default::default()
|
|
||||||
}));
|
}));
|
||||||
elem.push(Box::new(Text {
|
elem.push(Box::new(Text {
|
||||||
text: "Hello, world!\nżółty liść. życie nie ma sensu i wszyscy zginemy;\nтест кирилиці їїїїїїїїїїї\njapanese text: テスト".into(),
|
text: "Hello, world!\nżółty liść. życie nie ma sensu i wszyscy zginemy;\nтест кирилиці їїїїїїїїїїї\njapanese text: テスト".into(),
|
||||||
|
@ -90,13 +88,11 @@ fn main() {
|
||||||
if instant.elapsed().as_secs() & 1 != 0 {
|
if instant.elapsed().as_secs() & 1 != 0 {
|
||||||
elem.push(Box::new(FillRect {
|
elem.push(Box::new(FillRect {
|
||||||
size: (Size::Relative(1.), Size::Absolute(10.)).into(),
|
size: (Size::Relative(1.), Size::Absolute(10.)).into(),
|
||||||
background: vec4(1., 0., 0., 1.).into(),
|
frame: Box::new(vec4(1., 0., 0., 1.)),
|
||||||
..Default::default()
|
|
||||||
}));
|
}));
|
||||||
elem.push(Box::new(FillRect {
|
elem.push(Box::new(FillRect {
|
||||||
size: (Size::Relative(1.), Size::Absolute(10.)).into(),
|
size: (Size::Relative(1.), Size::Absolute(10.)).into(),
|
||||||
background: vec4(0., 0., 0., 1.).into(),
|
frame: Box::new(vec4(0., 0., 0., 1.)),
|
||||||
..Default::default()
|
|
||||||
}));
|
}));
|
||||||
elem.push(Box::new(Spacer(100.)));
|
elem.push(Box::new(Spacer(100.)));
|
||||||
elem.push(Box::new(Text {
|
elem.push(Box::new(Text {
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
use std::time::Instant;
|
use std::time::Instant;
|
||||||
use hui::{
|
use hui::{
|
||||||
color, size,
|
color, element::{
|
||||||
layout::{Alignment, Direction},
|
|
||||||
element::{
|
|
||||||
container::Container,
|
container::Container,
|
||||||
fill_rect::FillRect,
|
fill_rect::FillRect,
|
||||||
UiElementExt
|
UiElementExt
|
||||||
},
|
}, frame_rect, layout::{Alignment, Direction}, size
|
||||||
};
|
};
|
||||||
|
|
||||||
#[path = "../boilerplate.rs"]
|
#[path = "../boilerplate.rs"]
|
||||||
|
@ -32,8 +30,10 @@ ui_main!(
|
||||||
for i in 0..10 {
|
for i in 0..10 {
|
||||||
FillRect::default()
|
FillRect::default()
|
||||||
.with_size(size!((40 + i * 10)))
|
.with_size(size!((40 + i * 10)))
|
||||||
.with_corner_radius(8.)
|
.with_frame(frame_rect! {
|
||||||
.with_background(color::DARK_RED)
|
color: color::DARK_RED,
|
||||||
|
corner_radius: 8.
|
||||||
|
})
|
||||||
.add_child(ui);
|
.add_child(ui);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
40
hui-examples/examples/ui_test_7_9patch.rs
Normal file
40
hui-examples/examples/ui_test_7_9patch.rs
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
use std::time::Instant;
|
||||||
|
use hui::{
|
||||||
|
color, element::{
|
||||||
|
container::Container,
|
||||||
|
fill_rect::FillRect,
|
||||||
|
UiElementExt
|
||||||
|
}, frame_rect, layout::{Alignment, Direction}, size
|
||||||
|
};
|
||||||
|
|
||||||
|
#[path = "../boilerplate.rs"]
|
||||||
|
#[macro_use]
|
||||||
|
mod boilerplate;
|
||||||
|
|
||||||
|
ui_main!(
|
||||||
|
"hUI: 9-Patch demo",
|
||||||
|
init: |_| {
|
||||||
|
Instant::now()
|
||||||
|
},
|
||||||
|
run: |ui, size, instant| {
|
||||||
|
let width_ratio = 0.5 + 0.5 * instant.elapsed().as_secs_f32().sin().powi(2);
|
||||||
|
Container::default()
|
||||||
|
.with_size(size!(width_ratio/, 100%))
|
||||||
|
.with_direction(Direction::Horizontal)
|
||||||
|
.with_align(Alignment::Center)
|
||||||
|
.with_padding(5.)
|
||||||
|
.with_gap(10.)
|
||||||
|
.with_background(color::WHITE)
|
||||||
|
.with_wrap(true)
|
||||||
|
.with_children(|ui| {
|
||||||
|
FillRect::default()
|
||||||
|
.with_size(size!(300, 100))
|
||||||
|
.with_frame(frame_rect! {
|
||||||
|
color: color::DARK_RED,
|
||||||
|
corner_radius: 8.
|
||||||
|
})
|
||||||
|
.add_child(ui);
|
||||||
|
})
|
||||||
|
.add_root(ui, size);
|
||||||
|
}
|
||||||
|
);
|
|
@ -55,7 +55,7 @@ ui_main!(
|
||||||
.add_child(ui);
|
.add_child(ui);
|
||||||
FillRect::default()
|
FillRect::default()
|
||||||
.with_size(size!(100%, 1))
|
.with_size(size!(100%, 1))
|
||||||
.with_background(color::rgb_hex(0x2d2d30))
|
.with_frame(color::rgb_hex(0x2d2d30))
|
||||||
.add_child(ui);
|
.add_child(ui);
|
||||||
Container::default()
|
Container::default()
|
||||||
.with_size(size!(100%, 100%))
|
.with_size(size!(100%, 100%))
|
||||||
|
@ -67,7 +67,7 @@ ui_main!(
|
||||||
.add_child(ui);
|
.add_child(ui);
|
||||||
FillRect::default()
|
FillRect::default()
|
||||||
.with_size(size!(1, 100%))
|
.with_size(size!(1, 100%))
|
||||||
.with_background(color::rgb_hex(0x2d2d30))
|
.with_frame(color::rgb_hex(0x2d2d30))
|
||||||
.add_child(ui);
|
.add_child(ui);
|
||||||
Container::default()
|
Container::default()
|
||||||
.with_size(size!(200, 100%))
|
.with_size(size!(200, 100%))
|
||||||
|
|
|
@ -1,39 +1,41 @@
|
||||||
//! Simple filled rectangle with the specified size, background and corner radius
|
//! Simple filled rectangle with the specified size, background and corner radius
|
||||||
|
|
||||||
use derive_setters::Setters;
|
use derive_setters::Setters;
|
||||||
use glam::{vec2, Vec4};
|
use glam::vec2;
|
||||||
use crate::{
|
use crate::{
|
||||||
draw::{RoundedCorners, UiDrawCommand},
|
draw::{RoundedCorners, UiDrawCommand},
|
||||||
element::{MeasureContext, ProcessContext, UiElement},
|
element::{MeasureContext, ProcessContext, UiElement},
|
||||||
|
frame::{Frame, FrameRect},
|
||||||
layout::{Size, Size2d},
|
layout::{Size, Size2d},
|
||||||
measure::Response,
|
measure::Response,
|
||||||
rect::{Corners, FillColor},
|
size
|
||||||
size,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Simple filled rectangle with the specified size, background, and corner radius
|
/// Simple filled rectangle with the specified size, background, and corner radius
|
||||||
#[derive(Debug, Clone, Copy, Setters)]
|
#[derive(Setters)]
|
||||||
#[setters(prefix = "with_")]
|
#[setters(prefix = "with_")]
|
||||||
pub struct FillRect {
|
pub struct FillRect {
|
||||||
/// Size of the rectangle
|
/// Size of the rectangle
|
||||||
#[setters(into)]
|
#[setters(into)]
|
||||||
pub size: Size2d,
|
pub size: Size2d,
|
||||||
|
|
||||||
/// Background color of the rectangle
|
/// Frame
|
||||||
#[setters(into)]
|
#[setters(skip)]
|
||||||
pub background: FillColor,
|
pub frame: Box<dyn Frame>,
|
||||||
|
}
|
||||||
|
|
||||||
/// Corner radius of the rectangle
|
impl FillRect {
|
||||||
#[setters(into)]
|
pub fn with_frame(mut self, frame: impl Frame + 'static) -> Self {
|
||||||
pub corner_radius: Corners<f32>,
|
self.frame = Box::new(frame);
|
||||||
|
self
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for FillRect {
|
impl Default for FillRect {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
size: size!(10, 10),
|
size: size!(10, 10),
|
||||||
background: Vec4::new(0., 0., 0., 0.5).into(),
|
frame: Box::new(FrameRect::color((0., 0., 0., 0.5))),
|
||||||
corner_radius: Corners::all(0.),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -62,16 +64,17 @@ impl UiElement for FillRect {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn process(&self, ctx: ProcessContext) {
|
fn process(&self, ctx: ProcessContext) {
|
||||||
if !self.background.is_transparent() {
|
// if !self.background.is_transparent() {
|
||||||
ctx.draw.add(UiDrawCommand::Rectangle {
|
// ctx.draw.add(UiDrawCommand::Rectangle {
|
||||||
position: ctx.layout.position,
|
// position: ctx.layout.position,
|
||||||
size: ctx.measure.size,
|
// size: ctx.measure.size,
|
||||||
color: self.background.corners(),
|
// color: self.background.corners(),
|
||||||
texture: None,
|
// texture: None,
|
||||||
rounded_corners: (self.corner_radius.max_f32() > 0.).then_some({
|
// rounded_corners: (self.corner_radius.max_f32() > 0.).then_some({
|
||||||
RoundedCorners::from_radius(self.corner_radius)
|
// RoundedCorners::from_radius(self.corner_radius)
|
||||||
}),
|
// }),
|
||||||
});
|
// });
|
||||||
}
|
// }
|
||||||
|
self.frame.draw(ctx.draw, ctx.layout.position, ctx.measure.size);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,12 +42,15 @@ pub struct Slider {
|
||||||
pub size: Size2d,
|
pub size: Size2d,
|
||||||
|
|
||||||
/// Track frame
|
/// Track frame
|
||||||
|
#[setters(skip)]
|
||||||
pub track: Box<dyn Frame>,
|
pub track: Box<dyn Frame>,
|
||||||
|
|
||||||
/// Track active frame
|
/// Track active frame
|
||||||
|
#[setters(skip)]
|
||||||
pub track_active: Box<dyn Frame>,
|
pub track_active: Box<dyn Frame>,
|
||||||
|
|
||||||
/// Handle frame
|
/// Handle frame
|
||||||
|
#[setters(skip)]
|
||||||
pub handle: Box<dyn Frame>,
|
pub handle: Box<dyn Frame>,
|
||||||
|
|
||||||
/// Track height relative to the slider height\
|
/// Track height relative to the slider height\
|
||||||
|
@ -97,6 +100,21 @@ impl Slider {
|
||||||
..self
|
..self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn with_track(mut self, track: impl Frame + 'static) -> Self {
|
||||||
|
self.track = Box::new(track);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn with_track_active(mut self, track_active: impl Frame + 'static) -> Self {
|
||||||
|
self.track_active = Box::new(track_active);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn with_handle(mut self, handle: impl Frame + 'static) -> Self {
|
||||||
|
self.handle = Box::new(handle);
|
||||||
|
self
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl UiElement for Slider {
|
impl UiElement for Slider {
|
||||||
|
|
Loading…
Reference in a new issue