egui/emigui/src/containers/resize.rs

253 lines
8.4 KiB
Rust
Raw Normal View History

2020-04-25 12:37:39 +00:00
#![allow(unused_variables)] // TODO
2020-04-25 12:37:39 +00:00
use crate::*;
#[derive(Clone, Copy, Debug, serde_derive::Deserialize, serde_derive::Serialize)]
pub(crate) struct State {
size: Vec2,
2020-04-25 12:37:39 +00:00
}
2020-04-29 19:58:41 +00:00
// TODO: auto-shink/grow should be part of another container!
2020-04-25 12:37:39 +00:00
#[derive(Clone, Copy, Debug)]
pub struct Resize {
/// If false, we are no enabled
resizable: bool,
2020-04-25 12:37:39 +00:00
// Will still try to stay within parent region bounds
min_size: Vec2,
max_size: Vec2,
default_size: Vec2,
// If true, won't allow you to make window so big that it creates spacing
auto_shrink_width: bool,
auto_shrink_height: bool,
2020-04-25 12:37:39 +00:00
// If true, won't allow you to resize smaller than that everything fits.
expand_width_to_fit_content: bool,
expand_height_to_fit_content: bool,
handle_offset: Vec2,
2020-04-25 12:37:39 +00:00
}
impl Default for Resize {
fn default() -> Self {
Self {
resizable: true,
2020-04-25 12:37:39 +00:00
min_size: Vec2::splat(32.0),
max_size: Vec2::infinity(),
default_size: vec2(f32::INFINITY, 200.0), // TODO
auto_shrink_width: false,
auto_shrink_height: false,
2020-04-25 12:37:39 +00:00
expand_width_to_fit_content: true,
expand_height_to_fit_content: true,
handle_offset: Default::default(),
2020-04-25 12:37:39 +00:00
}
}
}
impl Resize {
pub fn default_height(mut self, height: f32) -> Self {
self.default_size.y = height;
self
}
pub fn default_size(mut self, default_size: Vec2) -> Self {
self.default_size = default_size;
self
}
pub fn min_size(mut self, min_size: Vec2) -> Self {
self.min_size = min_size;
self
}
pub fn max_size(mut self, max_size: Vec2) -> Self {
self.max_size = max_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.resizable = resizable;
self
}
pub fn fixed_size(mut self, size: Vec2) -> Self {
self.auto_shrink_width = false;
self.auto_shrink_height = false;
self.expand_width_to_fit_content = false;
self.expand_height_to_fit_content = false;
self.default_size = size;
self.min_size = size;
self.max_size = size;
self.resizable = false;
self
}
2020-04-25 12:37:39 +00:00
pub fn as_wide_as_possible(mut self) -> Self {
self.min_size.x = f32::INFINITY;
self
}
/// true: prevent from resizing to smaller than contents.
/// false: allow shrinking to smaller than contents.
pub fn auto_expand(mut self, auto_expand: bool) -> Self {
self.expand_width_to_fit_content = auto_expand;
self.expand_height_to_fit_content = auto_expand;
self
}
/// true: prevent from resizing to smaller than contents.
/// false: allow shrinking to smaller than contents.
pub fn auto_expand_width(mut self, auto_expand: bool) -> Self {
self.expand_width_to_fit_content = auto_expand;
self
}
/// true: prevent from resizing to smaller than contents.
/// false: allow shrinking to smaller than contents.
pub fn auto_expand_height(mut self, auto_expand: bool) -> Self {
self.expand_height_to_fit_content = auto_expand;
self
}
/// Offset the position of the resize handle by this much
pub fn handle_offset(mut self, handle_offset: Vec2) -> Self {
self.handle_offset = handle_offset;
self
}
pub fn auto_shrink_width(mut self, auto_shrink_width: bool) -> Self {
self.auto_shrink_width = auto_shrink_width;
self
}
pub fn auto_shrink_height(mut self, auto_shrink_height: bool) -> Self {
self.auto_shrink_height = auto_shrink_height;
self
}
2020-04-25 12:37:39 +00:00
}
// TODO: a common trait for Things that follow this pattern
impl Resize {
pub fn show(mut self, region: &mut Region, add_contents: impl FnOnce(&mut Region)) {
if !self.resizable {
return add_contents(region);
}
2020-04-25 12:37:39 +00:00
let id = region.make_child_id("scroll");
self.min_size = self.min_size.min(region.available_space());
self.max_size = self.max_size.min(region.available_space());
self.max_size = self.max_size.max(self.min_size);
let (is_new, mut state) = match region.memory().resize.get(&id) {
Some(state) => (false, *state),
2020-04-25 12:37:39 +00:00
None => {
let default_size = self.default_size.clamp(self.min_size..=self.max_size);
(true, State { size: default_size })
}
};
state.size = state.size.clamp(self.min_size..=self.max_size);
let last_frame_size = state.size;
2020-04-25 12:37:39 +00:00
let position = region.cursor();
// Resize-corner:
let corner_size = Vec2::splat(16.0); // TODO: style
let corner_rect = Rect::from_min_size(
position + state.size + self.handle_offset - corner_size,
corner_size,
);
let corner_interact = region.interact_rect(corner_rect, id.with("corner"));
2020-04-25 12:37:39 +00:00
if corner_interact.active {
if let Some(mouse_pos) = region.input().mouse_pos {
// This is the desired size. We may not be able to achieve it.
2020-05-04 19:54:59 +00:00
state.size =
mouse_pos - position + 0.5 * corner_interact.rect.size() - self.handle_offset;
2020-04-25 12:37:39 +00:00
// We don't clamp to max size, because we want to be able to push against outer bounds.
// For instance, if we are inside a bigger Resize region, we want to expand that.
// state.size = state.size.clamp(self.min_size..=self.max_size);
state.size = state.size.max(self.min_size);
}
}
// ------------------------------
let inner_rect = Rect::from_min_size(region.cursor(), state.size);
let desired_size = {
let mut content_clip_rect = region
.clip_rect()
.intersect(inner_rect.expand(region.style().clip_rect_margin));
// If we pull the resize handle to shrink, we want to TRY to shink it.
// After laying out the contents, we might be much bigger.
// In those cases we don't want the clip_rect to be smaller, because
// then we will clip the contents of the region even thought the result gets larger. This is simply ugly!
// So we use the memory of last_frame_size to make the clip rect large enough.
content_clip_rect.max = content_clip_rect
.max
.max(content_clip_rect.min + last_frame_size)
.min(region.clip_rect().max); // Respect parent region
let mut contents_region = region.child_region(inner_rect);
contents_region.set_clip_rect(content_clip_rect);
2020-04-25 12:37:39 +00:00
add_contents(&mut contents_region);
contents_region.bounding_size()
2020-04-25 12:37:39 +00:00
};
let desired_size = desired_size.ceil(); // Avoid rounding errors in math
// ------------------------------
if self.auto_shrink_width {
2020-04-25 12:37:39 +00:00
state.size.x = state.size.x.min(desired_size.x);
}
if self.auto_shrink_height {
2020-04-25 12:37:39 +00:00
state.size.y = state.size.y.min(desired_size.y);
}
if self.expand_width_to_fit_content || is_new {
state.size.x = state.size.x.max(desired_size.x);
}
if self.expand_height_to_fit_content || is_new {
state.size.y = state.size.y.max(desired_size.y);
}
state.size = state.size.max(self.min_size);
// state.size = state.size.clamp(self.min_size..=self.max_size);
state.size = state.size.round(); // TODO: round to pixels
region.reserve_space(state.size, None);
2020-04-25 12:37:39 +00:00
// ------------------------------
2020-05-04 19:54:59 +00:00
paint_resize_corner(region, &corner_interact);
2020-04-25 12:37:39 +00:00
if corner_interact.hovered || corner_interact.active {
region.ctx().output().cursor_icon = CursorIcon::ResizeNwSe;
2020-04-25 12:37:39 +00:00
}
region.memory().resize.insert(id, state);
}
}
2020-05-04 19:54:59 +00:00
fn paint_resize_corner(region: &mut Region, interact: &InteractInfo) {
let color = region.style().interact_stroke_color(interact);
let width = region.style().interact_stroke_width(interact);
2020-04-25 12:37:39 +00:00
2020-05-04 19:54:59 +00:00
let corner = interact.rect.right_bottom().round(); // TODO: round to pixels
2020-04-25 12:37:39 +00:00
let mut w = 2.0;
while w < 12.0 {
region.add_paint_cmd(PaintCmd::line_segment(
(pos2(corner.x - w, corner.y), pos2(corner.x, corner.y - w)),
color,
width,
));
w += 4.0;
}
}