2020-04-25 20:49:57 +00:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
use crate::{widgets::*, *};
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
2020-04-26 20:30:24 +00:00
|
|
|
/// A wrapper around other containers for things you often want in a window
|
2020-04-25 20:49:57 +00:00
|
|
|
pub struct Window {
|
2020-05-08 15:16:32 +00:00
|
|
|
pub title_label: Label,
|
2020-05-10 11:14:52 +00:00
|
|
|
pub area: Area,
|
2020-05-10 11:06:16 +00:00
|
|
|
pub frame: Option<Frame>,
|
2020-05-01 00:08:01 +00:00
|
|
|
pub resize: Resize,
|
2020-05-10 17:00:48 +00:00
|
|
|
pub scroll: Option<ScrollArea>,
|
2020-04-25 20:49:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Window {
|
2020-05-08 15:16:32 +00:00
|
|
|
// TODO: Into<Label>
|
2020-04-25 20:49:57 +00:00
|
|
|
pub fn new(title: impl Into<String>) -> Self {
|
|
|
|
let title = title.into();
|
2020-05-10 11:14:52 +00:00
|
|
|
let area = Area::new(&title);
|
2020-05-08 15:16:32 +00:00
|
|
|
let title_label = Label::new(title)
|
|
|
|
.text_style(TextStyle::Heading)
|
|
|
|
.multiline(false);
|
2020-04-25 20:49:57 +00:00
|
|
|
Self {
|
2020-05-08 15:16:32 +00:00
|
|
|
title_label,
|
2020-05-10 11:14:52 +00:00
|
|
|
area,
|
2020-05-10 11:06:16 +00:00
|
|
|
frame: None,
|
2020-04-25 20:49:57 +00:00
|
|
|
resize: Resize::default()
|
|
|
|
.handle_offset(Vec2::splat(4.0))
|
2020-05-01 00:08:01 +00:00
|
|
|
.auto_shrink_width(true)
|
|
|
|
.auto_expand_width(true)
|
2020-04-26 20:30:24 +00:00
|
|
|
.auto_shrink_height(false)
|
2020-05-01 00:08:01 +00:00
|
|
|
.auto_expand_height(false),
|
2020-05-10 17:00:48 +00:00
|
|
|
scroll: Some(
|
|
|
|
ScrollArea::default()
|
2020-04-26 20:30:24 +00:00
|
|
|
.always_show_scroll(false)
|
2020-05-10 17:00:48 +00:00
|
|
|
.max_height(f32::INFINITY),
|
|
|
|
), // As large as we can be
|
2020-04-25 20:49:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-01 00:08:01 +00:00
|
|
|
/// This is quite a crap idea
|
|
|
|
/// Usage: `Winmdow::new(...).mutate(|w| w.resize = w.resize.auto_expand_width(true))`
|
|
|
|
pub fn mutate(mut self, mutate: impl Fn(&mut Self)) -> Self {
|
|
|
|
mutate(&mut self);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This is quite a crap idea
|
|
|
|
/// Usage: `Winmdow::new(...).resize(|r| r.auto_expand_width(true))`
|
|
|
|
pub fn resize(mut self, mutate: impl Fn(Resize) -> Resize) -> Self {
|
|
|
|
self.resize = mutate(self.resize);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-04-25 20:49:57 +00:00
|
|
|
pub fn default_pos(mut self, default_pos: Pos2) -> Self {
|
2020-05-10 11:14:52 +00:00
|
|
|
self.area = self.area.default_pos(default_pos);
|
2020-04-25 20:49:57 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn default_size(mut self, default_size: Vec2) -> Self {
|
|
|
|
self.resize = self.resize.default_size(default_size);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn min_size(mut self, min_size: Vec2) -> Self {
|
|
|
|
self.resize = self.resize.min_size(min_size);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn max_size(mut self, max_size: Vec2) -> Self {
|
|
|
|
self.resize = self.resize.max_size(max_size);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn fixed_size(mut self, size: Vec2) -> Self {
|
|
|
|
self.resize = self.resize.fixed_size(size);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Can you resize it with the mouse?
|
|
|
|
/// Note that a window can still auto-resize
|
|
|
|
pub fn resizable(mut self, resizable: bool) -> Self {
|
|
|
|
self.resize = self.resize.resizable(resizable);
|
|
|
|
self
|
|
|
|
}
|
2020-05-10 17:00:48 +00:00
|
|
|
|
|
|
|
/// Not resizable, just takes the size of its contents.
|
|
|
|
pub fn auto_sized(mut self) -> Self {
|
|
|
|
self.resize = self.resize.auto_sized();
|
|
|
|
self.scroll = None;
|
|
|
|
self
|
|
|
|
}
|
2020-04-25 20:49:57 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 17:00:48 +00:00
|
|
|
impl<'open> Window<'open> {
|
2020-05-10 11:06:16 +00:00
|
|
|
pub fn show(self, ctx: &Arc<Context>, add_contents: impl FnOnce(&mut Ui)) -> InteractInfo {
|
2020-04-25 20:49:57 +00:00
|
|
|
let Window {
|
2020-05-08 15:16:32 +00:00
|
|
|
title_label,
|
2020-05-10 11:14:52 +00:00
|
|
|
area,
|
2020-05-10 11:06:16 +00:00
|
|
|
frame,
|
2020-04-25 20:49:57 +00:00
|
|
|
resize,
|
2020-04-26 20:30:24 +00:00
|
|
|
scroll,
|
2020-04-25 20:49:57 +00:00
|
|
|
} = self;
|
2020-05-10 11:06:16 +00:00
|
|
|
let frame = frame.unwrap_or_else(|| Frame::window(&ctx.style()));
|
2020-05-08 15:16:32 +00:00
|
|
|
|
2020-04-26 20:30:24 +00:00
|
|
|
// TODO: easier way to compose these
|
2020-05-10 11:14:52 +00:00
|
|
|
area.show(ctx, |ui| {
|
2020-05-08 20:42:31 +00:00
|
|
|
frame.show(ui, |ui| {
|
|
|
|
resize.show(ui, |ui| {
|
|
|
|
ui.add(title_label);
|
|
|
|
ui.add(Separator::new().line_width(1.0)); // TODO: nicer way to split window title from contents
|
2020-05-10 17:00:48 +00:00
|
|
|
|
|
|
|
if let Some(scroll) = scroll {
|
2020-05-10 11:06:16 +00:00
|
|
|
scroll.show(ui, add_contents)
|
2020-05-10 17:00:48 +00:00
|
|
|
} else {
|
|
|
|
add_contents(ui)
|
|
|
|
}
|
2020-04-26 20:30:24 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2020-04-25 20:49:57 +00:00
|
|
|
}
|
|
|
|
}
|