abstreet/ezgui/src/managed.rs

916 lines
30 KiB
Rust
Raw Normal View History

use crate::layout::Widget;
2020-01-02 20:35:41 +03:00
use crate::widgets::PopupMenu;
use crate::{
Button, Color, DrawBoth, EventCtx, Filler, GeomBatch, GfxCtx, Histogram, HorizontalAlignment,
JustDraw, Plot, RewriteColor, ScreenDims, ScreenPt, ScreenRectangle, Slider, Text,
VerticalAlignment,
};
2020-01-02 20:35:41 +03:00
use abstutil::Cloneable;
use geom::{Distance, Duration, Polygon};
use std::collections::{HashMap, HashSet};
use stretch::geometry::{Rect, Size};
use stretch::node::{Node, Stretch};
2020-01-15 02:18:27 +03:00
use stretch::number::Number;
use stretch::style::{
AlignItems, Dimension, FlexDirection, FlexWrap, JustifyContent, PositionType, Style,
};
2020-01-02 20:35:41 +03:00
type Menu = PopupMenu<Box<dyn Cloneable>>;
pub struct ManagedWidget {
widget: WidgetType,
style: LayoutStyle,
rect: ScreenRectangle,
2019-12-22 21:52:41 +03:00
bg: Option<DrawBoth>,
}
enum WidgetType {
Draw(JustDraw),
Btn(Button),
Slider(String),
2020-01-02 20:35:41 +03:00
Menu(String),
Filler(String),
// TODO Sadness. Can't have some kind of wildcard generic here?
DurationPlot(Plot<Duration>),
UsizePlot(Plot<usize>),
Histogram(Histogram),
Row(Vec<ManagedWidget>),
Column(Vec<ManagedWidget>),
}
struct LayoutStyle {
bg_color: Option<Color>,
outline: Option<(f64, Color)>,
align_items: Option<AlignItems>,
justify_content: Option<JustifyContent>,
flex_wrap: Option<FlexWrap>,
size: Option<Size<Dimension>>,
padding: Option<Rect<Dimension>>,
margin: Option<Rect<Dimension>>,
position_type: Option<PositionType>,
position: Option<Rect<Dimension>>,
}
impl LayoutStyle {
fn apply(&self, style: &mut Style) {
if let Some(x) = self.align_items {
style.align_items = x;
}
if let Some(x) = self.justify_content {
style.justify_content = x;
}
if let Some(x) = self.flex_wrap {
style.flex_wrap = x;
}
if let Some(x) = self.size {
style.size = x;
}
if let Some(x) = self.padding {
style.padding = x;
}
if let Some(x) = self.margin {
style.margin = x;
}
if let Some(x) = self.position_type {
style.position_type = x;
}
if let Some(x) = self.position {
style.position = x;
}
}
}
// Layouting
// TODO Maybe I just want margin, not padding. And maybe more granular controls per side. And to
// apply margin to everything in a row or column.
// TODO Row and columns feel backwards when using them.
impl ManagedWidget {
pub fn centered(mut self) -> ManagedWidget {
self.style.align_items = Some(AlignItems::Center);
self.style.justify_content = Some(JustifyContent::SpaceAround);
self
}
pub fn centered_cross(mut self) -> ManagedWidget {
self.style.align_items = Some(AlignItems::Center);
self
}
pub fn evenly_spaced(mut self) -> ManagedWidget {
self.style.justify_content = Some(JustifyContent::SpaceBetween);
self
}
// This one is really weird. percent_width should be LESS than the max_size_percent given to
// the overall Composite, otherwise weird things happen.
pub fn flex_wrap(mut self, ctx: &EventCtx, percent_width: usize) -> ManagedWidget {
self.style.size = Some(Size {
width: Dimension::Points(
(ctx.canvas.window_width * (percent_width as f64) / 100.0) as f32,
),
height: Dimension::Undefined,
});
self.style.flex_wrap = Some(FlexWrap::Wrap);
self.style.justify_content = Some(JustifyContent::SpaceAround);
self
}
pub fn bg(mut self, color: Color) -> ManagedWidget {
self.style.bg_color = Some(color);
self
}
// Callers have to adjust padding too, probably
pub fn outline(mut self, thickness: f64, color: Color) -> ManagedWidget {
self.style.outline = Some((thickness, color));
self
}
pub fn padding(mut self, pixels: usize) -> ManagedWidget {
self.style.padding = Some(Rect {
start: Dimension::Points(pixels as f32),
end: Dimension::Points(pixels as f32),
top: Dimension::Points(pixels as f32),
bottom: Dimension::Points(pixels as f32),
});
self
}
pub fn margin(mut self, pixels: usize) -> ManagedWidget {
self.style.margin = Some(Rect {
start: Dimension::Points(pixels as f32),
end: Dimension::Points(pixels as f32),
top: Dimension::Points(pixels as f32),
bottom: Dimension::Points(pixels as f32),
});
self
}
pub fn align_right(mut self) -> ManagedWidget {
self.style.margin = Some(Rect {
start: Dimension::Auto,
end: Dimension::Undefined,
top: Dimension::Undefined,
bottom: Dimension::Undefined,
});
self
}
fn abs(mut self, x: f64, y: f64) -> ManagedWidget {
self.style.position_type = Some(PositionType::Absolute);
self.style.position = Some(Rect {
start: Dimension::Points(x as f32),
end: Dimension::Undefined,
top: Dimension::Points(y as f32),
bottom: Dimension::Undefined,
});
self
}
}
// Convenient?? constructors
impl ManagedWidget {
fn new(widget: WidgetType) -> ManagedWidget {
ManagedWidget {
widget,
style: LayoutStyle {
bg_color: None,
outline: None,
align_items: None,
justify_content: None,
flex_wrap: None,
size: None,
padding: None,
margin: None,
position_type: None,
position: None,
},
rect: ScreenRectangle::placeholder(),
bg: None,
}
}
pub fn draw_batch(ctx: &EventCtx, batch: GeomBatch) -> ManagedWidget {
ManagedWidget::new(WidgetType::Draw(JustDraw::wrap(DrawBoth::new(
ctx,
batch,
Vec::new(),
))))
}
pub fn just_draw(j: JustDraw) -> ManagedWidget {
ManagedWidget::new(WidgetType::Draw(j))
}
pub fn draw_text(ctx: &EventCtx, txt: Text) -> ManagedWidget {
ManagedWidget::new(WidgetType::Draw(JustDraw::text(txt, ctx)))
}
pub fn draw_svg(ctx: &EventCtx, filename: &str) -> ManagedWidget {
ManagedWidget::new(WidgetType::Draw(JustDraw::svg(filename, ctx)))
}
// TODO Argh uncomposable APIs
pub fn draw_svg_transform(
ctx: &EventCtx,
filename: &str,
rewrite: RewriteColor,
) -> ManagedWidget {
ManagedWidget::new(WidgetType::Draw(JustDraw::svg_transform(
filename, rewrite, ctx,
)))
}
pub fn btn(btn: Button) -> ManagedWidget {
ManagedWidget::new(WidgetType::Btn(btn))
}
pub fn slider(label: &str) -> ManagedWidget {
ManagedWidget::new(WidgetType::Slider(label.to_string()))
}
2020-01-02 20:35:41 +03:00
pub fn menu(label: &str) -> ManagedWidget {
ManagedWidget::new(WidgetType::Menu(label.to_string()))
}
pub fn filler(label: &str) -> ManagedWidget {
ManagedWidget::new(WidgetType::Filler(label.to_string()))
}
pub(crate) fn duration_plot(plot: Plot<Duration>) -> ManagedWidget {
ManagedWidget::new(WidgetType::DurationPlot(plot))
}
pub(crate) fn usize_plot(plot: Plot<usize>) -> ManagedWidget {
ManagedWidget::new(WidgetType::UsizePlot(plot))
}
pub(crate) fn histogram(histogram: Histogram) -> ManagedWidget {
ManagedWidget::new(WidgetType::Histogram(histogram))
}
pub fn row(widgets: Vec<ManagedWidget>) -> ManagedWidget {
ManagedWidget::new(WidgetType::Row(widgets))
}
pub fn col(widgets: Vec<ManagedWidget>) -> ManagedWidget {
ManagedWidget::new(WidgetType::Column(widgets))
}
}
// Internals
impl ManagedWidget {
fn event(
&mut self,
ctx: &mut EventCtx,
sliders: &mut HashMap<String, Slider>,
2020-01-02 20:35:41 +03:00
menus: &mut HashMap<String, Menu>,
) -> Option<Outcome> {
match self.widget {
WidgetType::Draw(_) => {}
WidgetType::Btn(ref mut btn) => {
btn.event(ctx);
if btn.clicked() {
return Some(Outcome::Clicked(btn.action.clone()));
}
}
WidgetType::Slider(ref name) => {
sliders.get_mut(name).unwrap().event(ctx);
}
2020-01-02 20:35:41 +03:00
WidgetType::Menu(ref name) => {
menus.get_mut(name).unwrap().event(ctx);
}
WidgetType::Filler(_)
| WidgetType::DurationPlot(_)
| WidgetType::UsizePlot(_)
| WidgetType::Histogram(_) => {}
WidgetType::Row(ref mut widgets) | WidgetType::Column(ref mut widgets) => {
for w in widgets {
2020-01-02 20:35:41 +03:00
if let Some(o) = w.event(ctx, sliders, menus) {
return Some(o);
}
}
}
}
None
}
2020-01-02 20:35:41 +03:00
fn draw(
&self,
g: &mut GfxCtx,
sliders: &HashMap<String, Slider>,
menus: &HashMap<String, Menu>,
) {
if let Some(ref bg) = self.bg {
2019-12-22 21:52:41 +03:00
bg.redraw(ScreenPt::new(self.rect.x1, self.rect.y1), g);
}
match self.widget {
WidgetType::Draw(ref j) => j.draw(g),
WidgetType::Btn(ref btn) => btn.draw(g),
2020-01-15 03:50:26 +03:00
WidgetType::Slider(ref name) => {
if name != "horiz scrollbar" && name != "vert scrollbar" {
sliders[name].draw(g);
}
}
2020-01-02 20:35:41 +03:00
WidgetType::Menu(ref name) => menus[name].draw(g),
WidgetType::Filler(_) => {}
WidgetType::DurationPlot(ref plot) => plot.draw(g),
WidgetType::UsizePlot(ref plot) => plot.draw(g),
WidgetType::Histogram(ref hgram) => hgram.draw(g),
WidgetType::Row(ref widgets) | WidgetType::Column(ref widgets) => {
for w in widgets {
2020-01-02 20:35:41 +03:00
w.draw(g, sliders, menus);
}
}
}
}
// Populate a flattened list of Nodes, matching the traversal order
fn get_flexbox(
&self,
parent: Node,
sliders: &HashMap<String, Slider>,
2020-01-02 20:35:41 +03:00
menus: &HashMap<String, Menu>,
fillers: &HashMap<String, Filler>,
stretch: &mut Stretch,
nodes: &mut Vec<Node>,
) {
// TODO Can I use | in the match and "cast" to Widget?
let widget: &dyn Widget = match self.widget {
WidgetType::Draw(ref widget) => widget,
WidgetType::Btn(ref widget) => widget,
WidgetType::Slider(ref name) => &sliders[name],
2020-01-02 20:35:41 +03:00
WidgetType::Menu(ref name) => &menus[name],
WidgetType::Filler(ref name) => &fillers[name],
WidgetType::DurationPlot(ref widget) => widget,
WidgetType::UsizePlot(ref widget) => widget,
WidgetType::Histogram(ref widget) => widget,
WidgetType::Row(ref widgets) => {
let mut style = Style {
flex_direction: FlexDirection::Row,
..Default::default()
};
self.style.apply(&mut style);
let row = stretch.new_node(style, Vec::new()).unwrap();
nodes.push(row);
for widget in widgets {
2020-01-02 20:35:41 +03:00
widget.get_flexbox(row, sliders, menus, fillers, stretch, nodes);
}
stretch.add_child(parent, row).unwrap();
return;
}
WidgetType::Column(ref widgets) => {
let mut style = Style {
flex_direction: FlexDirection::Column,
..Default::default()
};
self.style.apply(&mut style);
let col = stretch.new_node(style, Vec::new()).unwrap();
nodes.push(col);
for widget in widgets {
2020-01-02 20:35:41 +03:00
widget.get_flexbox(col, sliders, menus, fillers, stretch, nodes);
}
stretch.add_child(parent, col).unwrap();
return;
}
};
let dims = widget.get_dims();
let mut style = Style {
size: Size {
width: Dimension::Points(dims.width as f32),
height: Dimension::Points(dims.height as f32),
},
..Default::default()
};
self.style.apply(&mut style);
let node = stretch.new_node(style, Vec::new()).unwrap();
stretch.add_child(parent, node).unwrap();
nodes.push(node);
}
fn apply_flexbox(
&mut self,
sliders: &mut HashMap<String, Slider>,
2020-01-02 20:35:41 +03:00
menus: &mut HashMap<String, Menu>,
fillers: &mut HashMap<String, Filler>,
stretch: &Stretch,
nodes: &mut Vec<Node>,
dx: f64,
dy: f64,
2020-01-15 02:47:35 +03:00
scroll_offset: (f64, f64),
ctx: &EventCtx,
) {
let result = stretch.layout(nodes.pop().unwrap()).unwrap();
let x: f64 = result.location.x.into();
let y: f64 = result.location.y.into();
let width: f64 = result.size.width.into();
let height: f64 = result.size.height.into();
let top_left = match self.widget {
WidgetType::Slider(ref name) => {
// Don't scroll the scrollbars
if name == "horiz scrollbar" || name == "vert scrollbar" {
ScreenPt::new(x, y)
} else {
2020-01-15 02:47:35 +03:00
ScreenPt::new(x + dx - scroll_offset.0, y + dy - scroll_offset.1)
}
}
2020-01-15 02:47:35 +03:00
_ => ScreenPt::new(x + dx - scroll_offset.0, y + dy - scroll_offset.1),
};
self.rect = ScreenRectangle::top_left(top_left, ScreenDims::new(width, height));
// Assume widgets don't dynamically change, so we just upload the background once.
if self.bg.is_none() && (self.style.bg_color.is_some() || self.style.outline.is_some()) {
let mut batch = GeomBatch::new();
if let Some(c) = self.style.bg_color {
batch.push(c, Polygon::rounded_rectangle(width, height, 5.0));
}
if let Some((thickness, c)) = self.style.outline {
batch.push(
c,
Polygon::rounded_rectangle(width, height, 5.0)
.to_outline(Distance::meters(thickness)),
);
2019-12-22 21:52:41 +03:00
}
self.bg = Some(DrawBoth::new(ctx, batch, Vec::new()));
}
match self.widget {
WidgetType::Draw(ref mut widget) => {
widget.set_pos(top_left);
}
WidgetType::Btn(ref mut widget) => {
widget.set_pos(top_left);
}
WidgetType::Slider(ref name) => {
sliders.get_mut(name).unwrap().set_pos(top_left);
}
2020-01-02 20:35:41 +03:00
WidgetType::Menu(ref name) => {
menus.get_mut(name).unwrap().set_pos(top_left);
}
WidgetType::Filler(ref name) => {
fillers.get_mut(name).unwrap().set_pos(top_left);
}
WidgetType::DurationPlot(ref mut widget) => {
widget.set_pos(top_left);
}
WidgetType::UsizePlot(ref mut widget) => {
widget.set_pos(top_left);
}
WidgetType::Histogram(ref mut widget) => {
widget.set_pos(top_left);
}
WidgetType::Row(ref mut widgets) => {
// layout() doesn't return absolute position; it's relative to the container.
for widget in widgets {
widget.apply_flexbox(
sliders,
2020-01-02 20:35:41 +03:00
menus,
fillers,
stretch,
nodes,
x + dx,
y + dy,
2020-01-15 02:47:35 +03:00
scroll_offset,
ctx,
);
}
}
WidgetType::Column(ref mut widgets) => {
for widget in widgets {
widget.apply_flexbox(
sliders,
2020-01-02 20:35:41 +03:00
menus,
fillers,
stretch,
nodes,
x + dx,
y + dy,
2020-01-15 02:47:35 +03:00
scroll_offset,
ctx,
);
}
}
}
}
fn get_all_click_actions(&self, actions: &mut HashSet<String>) {
match self.widget {
WidgetType::Draw(_)
| WidgetType::Slider(_)
2020-01-02 20:35:41 +03:00
| WidgetType::Menu(_)
| WidgetType::Filler(_)
| WidgetType::DurationPlot(_)
| WidgetType::UsizePlot(_) => {}
WidgetType::Histogram(_) => {}
WidgetType::Btn(ref btn) => {
if actions.contains(&btn.action) {
panic!(
"Two buttons in one Composite both use action {}",
btn.action
);
}
actions.insert(btn.action.clone());
}
WidgetType::Row(ref widgets) | WidgetType::Column(ref widgets) => {
for w in widgets {
w.get_all_click_actions(actions);
}
}
}
}
fn center_of(&self, name: &str) -> Option<ScreenPt> {
let found = match self.widget {
WidgetType::Draw(_) => false,
WidgetType::Btn(ref btn) => btn.action == name,
WidgetType::Slider(ref n) => n == name,
WidgetType::Menu(ref n) => n == name,
WidgetType::Filler(ref n) => n == name,
WidgetType::DurationPlot(_) => false,
WidgetType::UsizePlot(_) => false,
WidgetType::Histogram(_) => false,
WidgetType::Row(ref widgets) | WidgetType::Column(ref widgets) => {
for widget in widgets {
if let Some(pt) = widget.center_of(name) {
return Some(pt);
}
}
return None;
}
};
if found {
Some(self.rect.center())
} else {
None
}
}
}
2020-01-07 21:08:39 +03:00
pub struct CompositeBuilder {
top_level: ManagedWidget,
2020-01-07 21:08:39 +03:00
sliders: HashMap<String, Slider>,
menus: HashMap<String, Menu>,
fillers: HashMap<String, Filler>,
horiz: HorizontalAlignment,
vert: VerticalAlignment,
max_percent_width: f64,
max_percent_height: f64,
2020-01-07 21:08:39 +03:00
}
pub struct Composite {
top_level: ManagedWidget,
sliders: HashMap<String, Slider>,
2020-01-02 20:35:41 +03:00
menus: HashMap<String, Menu>,
fillers: HashMap<String, Filler>,
horiz: HorizontalAlignment,
vert: VerticalAlignment,
max_percent_width: f64,
max_percent_height: f64,
2020-01-15 02:47:35 +03:00
scrollable_x: bool,
scrollable_y: bool,
contents_dims: ScreenDims,
container_dims: ScreenDims,
2020-01-15 02:18:27 +03:00
clip_rect: Option<ScreenRectangle>,
}
pub enum Outcome {
Clicked(String),
}
const SCROLL_SPEED: f64 = 5.0;
2020-01-02 20:35:41 +03:00
// TODO These APIs aren't composable. Need a builer pattern or ideally, to scrape all the special
// objects from the tree.
impl Composite {
2020-01-07 21:08:39 +03:00
pub fn new(top_level: ManagedWidget) -> CompositeBuilder {
CompositeBuilder {
top_level,
sliders: HashMap::new(),
2020-01-02 20:35:41 +03:00
menus: HashMap::new(),
fillers: HashMap::new(),
horiz: HorizontalAlignment::Center,
vert: VerticalAlignment::Center,
max_percent_width: 1.0,
max_percent_height: 1.0,
}
}
fn recompute_layout(&mut self, ctx: &EventCtx) {
let mut stretch = Stretch::new();
let root = stretch
.new_node(
Style {
..Default::default()
},
Vec::new(),
)
.unwrap();
let mut nodes = vec![];
2020-01-02 20:35:41 +03:00
self.top_level.get_flexbox(
root,
&self.sliders,
&self.menus,
&self.fillers,
&mut stretch,
&mut nodes,
);
nodes.reverse();
// TODO Express more simply. Constraining this seems useless.
2020-01-15 02:18:27 +03:00
let container_size = Size {
width: Number::Undefined,
height: Number::Undefined,
2020-01-15 02:18:27 +03:00
};
stretch.compute_layout(root, container_size).unwrap();
// TODO I'm so confused why these 2 are acting differently. :(
let effective_dims = if self.scrollable_x || self.scrollable_y {
self.container_dims
} else {
let result = stretch.layout(root).unwrap();
ScreenDims::new(result.size.width.into(), result.size.height.into())
};
let top_left = ctx
.canvas
.align_window(effective_dims, self.horiz, self.vert);
let offset = self.scroll_offset();
self.top_level.apply_flexbox(
&mut self.sliders,
2020-01-02 20:35:41 +03:00
&mut self.menus,
&mut self.fillers,
&stretch,
&mut nodes,
top_left.x,
top_left.y,
offset,
ctx,
);
assert!(nodes.is_empty());
}
fn scroll_offset(&self) -> (f64, f64) {
2020-01-15 02:47:35 +03:00
let x = if self.scrollable_x {
self.slider("horiz scrollbar").get_percent()
* (self.contents_dims.width - self.container_dims.width).max(0.0)
} else {
0.0
2020-01-15 02:47:35 +03:00
};
let y = if self.scrollable_y {
self.slider("vert scrollbar").get_percent()
* (self.contents_dims.height - self.container_dims.height).max(0.0)
} else {
0.0
};
(x, y)
}
2020-01-15 02:47:35 +03:00
fn set_scroll_offset(&mut self, ctx: &EventCtx, offset: (f64, f64)) {
let mut changed = false;
if self.scrollable_x {
changed = true;
let max = (self.contents_dims.width - self.container_dims.width).max(0.0);
if max == 0.0 {
assert_eq!(offset.0, 0.0);
self.mut_slider("horiz scrollbar").set_percent(ctx, 0.0);
} else {
self.mut_slider("horiz scrollbar")
.set_percent(ctx, offset.0 / max);
}
}
2020-01-15 02:47:35 +03:00
if self.scrollable_y {
changed = true;
let max = (self.contents_dims.height - self.container_dims.height).max(0.0);
if max == 0.0 {
assert_eq!(offset.1, 0.0);
self.mut_slider("vert scrollbar").set_percent(ctx, 0.0);
} else {
self.mut_slider("vert scrollbar")
.set_percent(ctx, offset.1 / max);
}
}
if changed {
self.recompute_layout(ctx);
}
}
pub fn event(&mut self, ctx: &mut EventCtx) -> Option<Outcome> {
2020-01-15 02:47:35 +03:00
if (self.scrollable_x || self.scrollable_y)
&& ctx
.canvas
.get_cursor_in_screen_space()
.map(|pt| self.top_level.rect.contains(pt))
.unwrap_or(false)
{
2020-01-15 02:47:35 +03:00
if let Some((dx, dy)) = ctx.input.get_mouse_scroll() {
let x_offset = if self.scrollable_x {
let offset = self.scroll_offset().0 + dx * SCROLL_SPEED;
2020-01-15 02:47:35 +03:00
let max = (self.contents_dims.width - self.container_dims.width).max(0.0);
abstutil::clamp(offset, 0.0, max)
} else {
0.0
};
let y_offset = if self.scrollable_y {
let offset = self.scroll_offset().1 - dy * SCROLL_SPEED;
2020-01-15 02:47:35 +03:00
let max = (self.contents_dims.height - self.container_dims.height).max(0.0);
abstutil::clamp(offset, 0.0, max)
} else {
0.0
};
// TODO Refactor the clamping, do it in set_scroll_offset
self.set_scroll_offset(ctx, (x_offset, y_offset));
}
}
if ctx.input.is_window_resized() {
self.recompute_layout(ctx);
}
let before = self.scroll_offset();
2020-01-02 20:35:41 +03:00
let result = self
.top_level
.event(ctx, &mut self.sliders, &mut self.menus);
if self.scroll_offset() != before {
self.recompute_layout(ctx);
}
result
}
pub fn draw(&self, g: &mut GfxCtx) {
if let Some(ref rect) = self.clip_rect {
g.enable_clipping(rect.clone());
g.canvas.mark_covered_area(rect.clone());
} else {
g.canvas.mark_covered_area(self.top_level.rect.clone());
2020-01-15 02:18:27 +03:00
}
2020-01-02 20:35:41 +03:00
self.top_level.draw(g, &self.sliders, &self.menus);
2020-01-15 02:47:35 +03:00
if self.scrollable_x || self.scrollable_y {
2020-01-15 02:18:27 +03:00
g.disable_clipping();
2020-01-15 03:50:26 +03:00
// Draw the scrollbars after clipping is disabled, because they actually live just
// outside the rectangle.
if self.scrollable_x {
self.sliders["horiz scrollbar"].draw(g);
}
if self.scrollable_y {
self.sliders["vert scrollbar"].draw(g);
}
2020-01-15 02:18:27 +03:00
}
}
pub fn get_all_click_actions(&self) -> HashSet<String> {
let mut actions = HashSet::new();
self.top_level.get_all_click_actions(&mut actions);
actions
}
pub fn preserve_scroll(&self) -> (f64, f64) {
self.scroll_offset()
}
2020-01-15 02:47:35 +03:00
pub fn restore_scroll(&mut self, ctx: &EventCtx, offset: (f64, f64)) {
self.set_scroll_offset(ctx, offset);
}
pub fn slider(&self, name: &str) -> &Slider {
&self.sliders[name]
}
pub fn mut_slider(&mut self, name: &str) -> &mut Slider {
self.sliders.get_mut(name).unwrap()
}
2020-01-02 20:35:41 +03:00
pub fn menu(&self, name: &str) -> &Menu {
&self.menus[name]
}
pub fn filler_rect(&self, name: &str) -> ScreenRectangle {
let f = &self.fillers[name];
ScreenRectangle::top_left(f.top_left, f.dims)
}
pub fn center_of(&self, name: &str) -> ScreenPt {
if let Some(pt) = self.top_level.center_of(name) {
pt
} else {
panic!("Can't find center_of {}", name);
}
}
pub fn center_of_panel(&self) -> ScreenPt {
self.top_level.rect.center()
}
}
2020-01-07 21:08:39 +03:00
impl CompositeBuilder {
pub fn build(self, ctx: &mut EventCtx) -> Composite {
let mut c = Composite {
top_level: self.top_level,
sliders: self.sliders,
menus: self.menus,
fillers: self.fillers,
2020-01-15 02:18:27 +03:00
horiz: self.horiz,
vert: self.vert,
max_percent_width: self.max_percent_width,
max_percent_height: self.max_percent_height,
2020-01-15 02:47:35 +03:00
scrollable_x: false,
scrollable_y: false,
contents_dims: ScreenDims::new(0.0, 0.0),
container_dims: ScreenDims::new(0.0, 0.0),
2020-01-15 02:18:27 +03:00
clip_rect: None,
2020-01-07 21:08:39 +03:00
};
c.recompute_layout(ctx);
2020-01-15 02:18:27 +03:00
2020-01-15 02:47:35 +03:00
c.contents_dims = ScreenDims::new(c.top_level.rect.width(), c.top_level.rect.height());
c.container_dims = ScreenDims::new(
c.contents_dims
.width
.min(c.max_percent_width * ctx.canvas.window_width),
c.contents_dims
.height
.min(c.max_percent_height * ctx.canvas.window_height),
2020-01-15 02:47:35 +03:00
);
2020-01-15 02:18:27 +03:00
// If the panel fits without a scrollbar, don't add one.
let top_left = ctx.canvas.align_window(c.container_dims, c.horiz, c.vert);
2020-01-15 02:47:35 +03:00
if c.contents_dims.width > c.container_dims.width {
c.scrollable_x = true;
2020-01-07 21:08:39 +03:00
c.sliders.insert(
2020-01-15 02:47:35 +03:00
"horiz scrollbar".to_string(),
Slider::horizontal(
ctx,
c.container_dims.width,
c.container_dims.width * (c.container_dims.width / c.contents_dims.width),
),
2020-01-07 21:08:39 +03:00
);
c.top_level = ManagedWidget::col(vec![
c.top_level,
ManagedWidget::slider("horiz scrollbar")
.abs(top_left.x, top_left.y + c.container_dims.height),
]);
2020-01-15 02:47:35 +03:00
}
if c.contents_dims.height > c.container_dims.height {
c.scrollable_y = true;
c.sliders.insert(
"vert scrollbar".to_string(),
Slider::vertical(
ctx,
c.container_dims.height,
c.container_dims.height * (c.container_dims.height / c.contents_dims.height),
),
2020-01-15 02:47:35 +03:00
);
c.top_level = ManagedWidget::row(vec![
c.top_level,
ManagedWidget::slider("vert scrollbar")
.abs(top_left.x + c.container_dims.width, top_left.y),
]);
2020-01-15 02:47:35 +03:00
}
if c.scrollable_x || c.scrollable_y {
2020-01-07 21:08:39 +03:00
c.recompute_layout(ctx);
2020-01-15 03:50:26 +03:00
c.clip_rect = Some(ScreenRectangle::top_left(top_left, c.container_dims));
2020-01-07 21:08:39 +03:00
}
2020-01-15 02:47:35 +03:00
ctx.no_op_event(true, |ctx| assert!(c.event(ctx).is_none()));
2020-01-07 21:08:39 +03:00
c
}
pub fn aligned(
mut self,
horiz: HorizontalAlignment,
vert: VerticalAlignment,
) -> CompositeBuilder {
self.horiz = horiz;
self.vert = vert;
2020-01-07 21:08:39 +03:00
self
}
pub fn max_size_percent(mut self, pct_width: usize, pct_height: usize) -> CompositeBuilder {
if pct_width == 100 && pct_height == 100 {
panic!("By default, Composites are capped at 100% of the screen. This is redundant.");
}
self.max_percent_width = (pct_width as f64) / 100.0;
self.max_percent_height = (pct_height as f64) / 100.0;
self
}
2020-01-07 21:08:39 +03:00
pub fn filler(mut self, name: &str, filler: Filler) -> CompositeBuilder {
self.fillers.insert(name.to_string(), filler);
self
}
pub fn slider(mut self, name: &str, slider: Slider) -> CompositeBuilder {
self.sliders.insert(name.to_string(), slider);
self
}
pub fn menu(mut self, name: &str, menu: Menu) -> CompositeBuilder {
self.menus.insert(name.to_string(), menu);
self
}
}