Draft draggable and graphics logic for TitleBar

This commit is contained in:
Héctor Ramón Jiménez 2020-06-05 14:02:29 +02:00
parent e8e656b330
commit 4dc5bffdfb
7 changed files with 268 additions and 73 deletions

View File

@ -39,20 +39,10 @@ where
let (content, mouse_interaction) = let (content, mouse_interaction) =
content.draw(self, &defaults, content_layout, cursor_position); content.draw(self, &defaults, content_layout, cursor_position);
if style.background.is_some() || style.border_width > 0 { if let Some(background) = background(bounds, &style) {
let quad = Primitive::Quad {
bounds,
background: style
.background
.unwrap_or(Background::Color(Color::TRANSPARENT)),
border_radius: style.border_radius,
border_width: style.border_width,
border_color: style.border_color,
};
( (
Primitive::Group { Primitive::Group {
primitives: vec![quad, content], primitives: vec![background, content],
}, },
mouse_interaction, mouse_interaction,
) )
@ -61,3 +51,22 @@ where
} }
} }
} }
pub(crate) fn background(
bounds: Rectangle,
style: &container::Style,
) -> Option<Primitive> {
if style.background.is_none() && style.border_width > 0 {
return None;
}
Some(Primitive::Quad {
bounds,
background: style
.background
.unwrap_or(Background::Color(Color::TRANSPARENT)),
border_radius: style.border_radius,
border_width: style.border_width,
border_color: style.border_color,
})
}

View File

@ -35,7 +35,7 @@ where
&mut self, &mut self,
defaults: &Self::Defaults, defaults: &Self::Defaults,
content: &[(Pane, Content<'_, Message, Self>)], content: &[(Pane, Content<'_, Message, Self>)],
dragging: Option<Pane>, dragging: Option<(Pane, Point)>,
resizing: Option<Axis>, resizing: Option<Axis>,
layout: Layout<'_>, layout: Layout<'_>,
cursor_position: Point, cursor_position: Point,
@ -63,32 +63,40 @@ where
mouse_interaction = new_mouse_interaction; mouse_interaction = new_mouse_interaction;
} }
if Some(*id) == dragging { if let Some((dragging, origin)) = dragging {
dragged_pane = Some((i, layout)); if *id == dragging {
dragged_pane = Some((i, layout, origin));
}
} }
primitive primitive
}) })
.collect(); .collect();
let primitives = if let Some((index, layout)) = dragged_pane { let primitives = if let Some((index, layout, origin)) = dragged_pane {
let pane = panes.remove(index); let pane = panes.remove(index);
let bounds = layout.bounds(); let bounds = layout.bounds();
if let Primitive::Group { primitives } = &pane {
panes.push(
primitives.first().cloned().unwrap_or(Primitive::None),
);
}
// TODO: Fix once proper layering is implemented. // TODO: Fix once proper layering is implemented.
// This is a pretty hacky way to achieve layering. // This is a pretty hacky way to achieve layering.
let clip = Primitive::Clip { let clip = Primitive::Clip {
bounds: Rectangle { bounds: Rectangle {
x: cursor_position.x - bounds.width / 2.0, x: cursor_position.x - origin.x,
y: cursor_position.y - bounds.height / 2.0, y: cursor_position.y - origin.y,
width: bounds.width + 0.5, width: bounds.width + 0.5,
height: bounds.height + 0.5, height: bounds.height + 0.5,
}, },
offset: Vector::new(0, 0), offset: Vector::new(0, 0),
content: Box::new(Primitive::Translate { content: Box::new(Primitive::Translate {
translation: Vector::new( translation: Vector::new(
cursor_position.x - bounds.x - bounds.width / 2.0, cursor_position.x - bounds.x - origin.x,
cursor_position.y - bounds.y - bounds.height / 2.0, cursor_position.y - bounds.y - origin.y,
), ),
content: Box::new(pane), content: Box::new(pane),
}), }),
@ -119,48 +127,77 @@ where
fn draw_pane<Message>( fn draw_pane<Message>(
&mut self, &mut self,
defaults: &Self::Defaults, defaults: &Self::Defaults,
bounds: Rectangle,
style_sheet: &Self::Style,
title_bar: Option<(&TitleBar<'_, Message, Self>, Layout<'_>)>, title_bar: Option<(&TitleBar<'_, Message, Self>, Layout<'_>)>,
body: (&Element<'_, Message, Self>, Layout<'_>), body: (&Element<'_, Message, Self>, Layout<'_>),
cursor_position: Point, cursor_position: Point,
) -> Self::Output { ) -> Self::Output {
let style = style_sheet.style();
let (body, body_layout) = body; let (body, body_layout) = body;
let (body_primitive, body_interaction) = let (body_primitive, body_interaction) =
body.draw(self, defaults, body_layout, cursor_position); body.draw(self, defaults, body_layout, cursor_position);
let background = crate::widget::container::background(bounds, &style);
if let Some((title_bar, title_bar_layout)) = title_bar { if let Some((title_bar, title_bar_layout)) = title_bar {
let show_controls = bounds.contains(cursor_position);
let is_over_draggable =
title_bar.is_over_draggable(title_bar_layout, cursor_position);
let (title_bar_primitive, title_bar_interaction) = title_bar.draw( let (title_bar_primitive, title_bar_interaction) = title_bar.draw(
self, self,
defaults, defaults,
title_bar_layout, title_bar_layout,
cursor_position, cursor_position,
show_controls,
); );
( (
Primitive::Group { Primitive::Group {
primitives: vec![title_bar_primitive, body_primitive], primitives: vec![
background.unwrap_or(Primitive::None),
title_bar_primitive,
body_primitive,
],
}, },
if title_bar_interaction > body_interaction { if is_over_draggable {
mouse::Interaction::Grab
} else if title_bar_interaction > body_interaction {
title_bar_interaction title_bar_interaction
} else { } else {
body_interaction body_interaction
}, },
) )
} else { } else {
(body_primitive, body_interaction) (
if let Some(background) = background {
Primitive::Group {
primitives: vec![background, body_primitive],
}
} else {
body_primitive
},
body_interaction,
)
} }
} }
fn draw_title_bar<Message>( fn draw_title_bar<Message>(
&mut self, &mut self,
defaults: &Self::Defaults, defaults: &Self::Defaults,
style: &<Self as iced_native::container::Renderer>::Style, bounds: Rectangle,
style_sheet: &Self::Style,
title: (&Element<'_, Message, Self>, Layout<'_>), title: (&Element<'_, Message, Self>, Layout<'_>),
controls: Option<(&Element<'_, Message, Self>, Layout<'_>)>, controls: Option<(&Element<'_, Message, Self>, Layout<'_>)>,
cursor_position: Point, cursor_position: Point,
) -> Self::Output { ) -> Self::Output {
let style = style_sheet.style();
let (title, title_layout) = title; let (title, title_layout) = title;
let background = crate::widget::container::background(bounds, &style);
let (title_primitive, _) = let (title_primitive, _) =
title.draw(self, defaults, title_layout, cursor_position); title.draw(self, defaults, title_layout, cursor_position);
@ -170,12 +207,25 @@ where
( (
Primitive::Group { Primitive::Group {
primitives: vec![title_primitive, controls_primitive], primitives: vec![
background.unwrap_or(Primitive::None),
title_primitive,
controls_primitive,
],
}, },
controls_interaction, controls_interaction,
) )
} else { } else {
(title_primitive, mouse::Interaction::default()) (
if let Some(background) = background {
Primitive::Group {
primitives: vec![background, title_primitive],
}
} else {
title_primitive
},
mouse::Interaction::default(),
)
} }
} }
} }

View File

@ -1,7 +1,7 @@
use crate::{ use crate::{
button, checkbox, column, progress_bar, radio, row, scrollable, slider, button, checkbox, column, container, progress_bar, radio, row, scrollable,
text, text_input, Color, Element, Font, HorizontalAlignment, Layout, Point, slider, text, text_input, Color, Element, Font, HorizontalAlignment,
Rectangle, Renderer, Size, VerticalAlignment, Layout, Point, Rectangle, Renderer, Size, VerticalAlignment,
}; };
/// A renderer that does nothing. /// A renderer that does nothing.
@ -226,3 +226,18 @@ impl progress_bar::Renderer for Null {
) { ) {
} }
} }
impl container::Renderer for Null {
type Style = ();
fn draw<Message>(
&mut self,
_defaults: &Self::Defaults,
_bounds: Rectangle,
_cursor_position: Point,
_style: &Self::Style,
_content: &Element<'_, Message, Self>,
_content_layout: Layout<'_>,
) {
}
}

View File

@ -30,7 +30,7 @@ pub use title_bar::TitleBar;
use crate::{ use crate::{
container, keyboard, layout, mouse, row, Clipboard, Element, Event, Hasher, container, keyboard, layout, mouse, row, Clipboard, Element, Event, Hasher,
Layout, Length, Point, Size, Widget, Layout, Length, Point, Rectangle, Size, Widget,
}; };
/// A collection of panes distributed using either vertical or horizontal splits /// A collection of panes distributed using either vertical or horizontal splits
@ -427,17 +427,18 @@ where
clicked_region.next() clicked_region.next()
{ {
match &self.on_drag { match &self.on_drag {
Some(on_drag) Some(on_drag) => {
if content.is_over_drag_target( if let Some(origin) =
layout, content.drag_origin(layout, cursor_position)
cursor_position, {
) => self.state.pick_pane(pane, origin);
{
self.state.pick_pane(pane);
messages.push(on_drag(DragEvent::Picked { messages.push(on_drag(DragEvent::Picked {
pane: *pane, pane: *pane,
})); }));
} else {
self.state.focus(pane);
}
} }
_ => { _ => {
self.state.focus(pane); self.state.focus(pane);
@ -448,7 +449,7 @@ where
} }
} }
mouse::Event::ButtonReleased(mouse::Button::Left) => { mouse::Event::ButtonReleased(mouse::Button::Left) => {
if let Some(pane) = self.state.picked_pane() { if let Some((pane, _)) = self.state.picked_pane() {
self.state.focus(&pane); self.state.focus(&pane);
if let Some(on_drag) = &self.on_drag { if let Some(on_drag) = &self.on_drag {
@ -657,7 +658,7 @@ pub trait Renderer: crate::Renderer + container::Renderer + Sized {
&mut self, &mut self,
defaults: &Self::Defaults, defaults: &Self::Defaults,
content: &[(Pane, Content<'_, Message, Self>)], content: &[(Pane, Content<'_, Message, Self>)],
dragging: Option<Pane>, dragging: Option<(Pane, Point)>,
resizing: Option<Axis>, resizing: Option<Axis>,
layout: Layout<'_>, layout: Layout<'_>,
cursor_position: Point, cursor_position: Point,
@ -676,6 +677,8 @@ pub trait Renderer: crate::Renderer + container::Renderer + Sized {
fn draw_pane<Message>( fn draw_pane<Message>(
&mut self, &mut self,
defaults: &Self::Defaults, defaults: &Self::Defaults,
bounds: Rectangle,
style: &Self::Style,
title_bar: Option<(&TitleBar<'_, Message, Self>, Layout<'_>)>, title_bar: Option<(&TitleBar<'_, Message, Self>, Layout<'_>)>,
body: (&Element<'_, Message, Self>, Layout<'_>), body: (&Element<'_, Message, Self>, Layout<'_>),
cursor_position: Point, cursor_position: Point,
@ -684,6 +687,7 @@ pub trait Renderer: crate::Renderer + container::Renderer + Sized {
fn draw_title_bar<Message>( fn draw_title_bar<Message>(
&mut self, &mut self,
defaults: &Self::Defaults, defaults: &Self::Defaults,
bounds: Rectangle,
style: &Self::Style, style: &Self::Style,
title: (&Element<'_, Message, Self>, Layout<'_>), title: (&Element<'_, Message, Self>, Layout<'_>),
controls: Option<(&Element<'_, Message, Self>, Layout<'_>)>, controls: Option<(&Element<'_, Message, Self>, Layout<'_>)>,

View File

@ -1,7 +1,7 @@
use crate::container; use crate::container;
use crate::layout; use crate::layout;
use crate::pane_grid::{self, TitleBar}; use crate::pane_grid::{self, TitleBar};
use crate::{Clipboard, Element, Event, Hasher, Layout, Point, Size}; use crate::{Clipboard, Element, Event, Hasher, Layout, Point, Size, Vector};
/// The content of a [`Pane`]. /// The content of a [`Pane`].
/// ///
@ -9,6 +9,7 @@ use crate::{Clipboard, Element, Event, Hasher, Layout, Point, Size};
pub struct Content<'a, Message, Renderer: container::Renderer> { pub struct Content<'a, Message, Renderer: container::Renderer> {
title_bar: Option<TitleBar<'a, Message, Renderer>>, title_bar: Option<TitleBar<'a, Message, Renderer>>,
body: Element<'a, Message, Renderer>, body: Element<'a, Message, Renderer>,
style: Renderer::Style,
} }
impl<'a, Message, Renderer> Content<'a, Message, Renderer> impl<'a, Message, Renderer> Content<'a, Message, Renderer>
@ -19,6 +20,7 @@ where
Self { Self {
title_bar: None, title_bar: None,
body: body.into(), body: body.into(),
style: Renderer::Style::default(),
} }
} }
@ -29,6 +31,14 @@ where
self.title_bar = Some(title_bar); self.title_bar = Some(title_bar);
self self
} }
/// Sets the style of the [`TitleBar`].
///
/// [`TitleBar`]: struct.TitleBar.html
pub fn style(mut self, style: impl Into<Renderer::Style>) -> Self {
self.style = style.into();
self
}
} }
impl<'a, Message, Renderer> Content<'a, Message, Renderer> impl<'a, Message, Renderer> Content<'a, Message, Renderer>
@ -49,6 +59,8 @@ where
renderer.draw_pane( renderer.draw_pane(
defaults, defaults,
layout.bounds(),
&self.style,
Some((title_bar, title_bar_layout)), Some((title_bar, title_bar_layout)),
(&self.body, body_layout), (&self.body, body_layout),
cursor_position, cursor_position,
@ -56,6 +68,8 @@ where
} else { } else {
renderer.draw_pane( renderer.draw_pane(
defaults, defaults,
layout.bounds(),
&self.style,
None, None,
(&self.body, layout), (&self.body, layout),
cursor_position, cursor_position,
@ -63,12 +77,25 @@ where
} }
} }
pub(crate) fn is_over_drag_target( pub fn drag_origin(
&self, &self,
_layout: Layout<'_>, layout: Layout<'_>,
_cursor_position: Point, cursor_position: Point,
) -> bool { ) -> Option<Point> {
false if let Some(title_bar) = &self.title_bar {
let mut children = layout.children();
let title_bar_layout = children.next().unwrap();
if title_bar.is_over_draggable(title_bar_layout, cursor_position) {
let position = layout.position();
Some(cursor_position - Vector::new(position.x, position.y))
} else {
None
}
} else {
None
}
} }
pub(crate) fn layout( pub(crate) fn layout(
@ -115,14 +142,31 @@ where
renderer: &Renderer, renderer: &Renderer,
clipboard: Option<&dyn Clipboard>, clipboard: Option<&dyn Clipboard>,
) { ) {
let body_layout = if let Some(title_bar) = &mut self.title_bar {
let mut children = layout.children();
title_bar.on_event(
event.clone(),
children.next().unwrap(),
cursor_position,
messages,
renderer,
clipboard,
);
children.next().unwrap()
} else {
layout
};
self.body.on_event( self.body.on_event(
event, event,
layout, body_layout,
cursor_position, cursor_position,
messages, messages,
renderer, renderer,
clipboard, clipboard,
) );
} }
pub(crate) fn hash_layout(&self, state: &mut Hasher) { pub(crate) fn hash_layout(&self, state: &mut Hasher) {

View File

@ -313,13 +313,14 @@ pub struct Internal {
action: Action, action: Action,
} }
#[derive(Debug, Clone, Copy, PartialEq, Eq)] #[derive(Debug, Clone, Copy, PartialEq)]
pub enum Action { pub enum Action {
Idle { Idle {
focus: Option<Pane>, focus: Option<Pane>,
}, },
Dragging { Dragging {
pane: Pane, pane: Pane,
origin: Point,
}, },
Resizing { Resizing {
split: Split, split: Split,
@ -334,7 +335,7 @@ impl Action {
Action::Idle { focus } | Action::Resizing { focus, .. } => { Action::Idle { focus } | Action::Resizing { focus, .. } => {
focus.map(|pane| (pane, Focus::Idle)) focus.map(|pane| (pane, Focus::Idle))
} }
Action::Dragging { pane } => Some((*pane, Focus::Dragging)), Action::Dragging { pane, .. } => Some((*pane, Focus::Dragging)),
} }
} }
} }
@ -351,9 +352,9 @@ impl Internal {
} }
} }
pub fn picked_pane(&self) -> Option<Pane> { pub fn picked_pane(&self) -> Option<(Pane, Point)> {
match self.action { match self.action {
Action::Dragging { pane } => Some(pane), Action::Dragging { pane, origin } => Some((pane, origin)),
_ => None, _ => None,
} }
} }
@ -385,8 +386,11 @@ impl Internal {
self.action = Action::Idle { focus: Some(*pane) }; self.action = Action::Idle { focus: Some(*pane) };
} }
pub fn pick_pane(&mut self, pane: &Pane) { pub fn pick_pane(&mut self, pane: &Pane, origin: Point) {
self.action = Action::Dragging { pane: *pane }; self.action = Action::Dragging {
pane: *pane,
origin,
};
} }
pub fn pick_split(&mut self, split: &Split, axis: Axis) { pub fn pick_split(&mut self, split: &Split, axis: Axis) {

View File

@ -1,7 +1,7 @@
use crate::container; use crate::container;
use crate::layout; use crate::layout;
use crate::pane_grid; use crate::pane_grid;
use crate::{Element, Layout, Point, Size}; use crate::{Clipboard, Element, Event, Layout, Point, Size};
pub struct TitleBar<'a, Message, Renderer: container::Renderer> { pub struct TitleBar<'a, Message, Renderer: container::Renderer> {
title: Element<'a, Message, Renderer>, title: Element<'a, Message, Renderer>,
@ -38,6 +38,14 @@ where
self.padding = units; self.padding = units;
self self
} }
/// Sets the style of the [`TitleBar`].
///
/// [`TitleBar`]: struct.TitleBar.html
pub fn style(mut self, style: impl Into<Renderer::Style>) -> Self {
self.style = style.into();
self
}
} }
impl<'a, Message, Renderer> TitleBar<'a, Message, Renderer> impl<'a, Message, Renderer> TitleBar<'a, Message, Renderer>
@ -50,30 +58,63 @@ where
defaults: &Renderer::Defaults, defaults: &Renderer::Defaults,
layout: Layout<'_>, layout: Layout<'_>,
cursor_position: Point, cursor_position: Point,
show_controls: bool,
) -> Renderer::Output { ) -> Renderer::Output {
let mut children = layout.children();
let padded = children.next().unwrap();
if let Some(controls) = &self.controls { if let Some(controls) = &self.controls {
let mut children = layout.children(); let mut children = padded.children();
let title_layout = children.next().unwrap(); let title_layout = children.next().unwrap();
let controls_layout = children.next().unwrap(); let controls_layout = children.next().unwrap();
renderer.draw_title_bar( renderer.draw_title_bar(
defaults, defaults,
layout.bounds(),
&self.style, &self.style,
(&self.title, title_layout), (&self.title, title_layout),
Some((controls, controls_layout)), if show_controls {
Some((controls, controls_layout))
} else {
None
},
cursor_position, cursor_position,
) )
} else { } else {
renderer.draw_title_bar( renderer.draw_title_bar(
defaults, defaults,
layout.bounds(),
&self.style, &self.style,
(&self.title, layout), (&self.title, padded),
None, None,
cursor_position, cursor_position,
) )
} }
} }
pub fn is_over_draggable(
&self,
layout: Layout<'_>,
cursor_position: Point,
) -> bool {
if layout.bounds().contains(cursor_position) {
let mut children = layout.children();
let padded = children.next().unwrap();
if self.controls.is_some() {
let mut children = padded.children();
let _ = children.next().unwrap();
let controls_layout = children.next().unwrap();
!controls_layout.bounds().contains(cursor_position)
} else {
true
}
} else {
false
}
}
pub(crate) fn layout( pub(crate) fn layout(
&self, &self,
renderer: &Renderer, renderer: &Renderer,
@ -82,38 +123,66 @@ where
let padding = f32::from(self.padding); let padding = f32::from(self.padding);
let limits = limits.pad(padding); let limits = limits.pad(padding);
let mut node = if let Some(controls) = &self.controls { let node = if let Some(controls) = &self.controls {
let max_size = limits.max(); let max_size = limits.max();
let title_layout = self let mut controls_layout = controls
.title
.layout(renderer, &layout::Limits::new(Size::ZERO, max_size)); .layout(renderer, &layout::Limits::new(Size::ZERO, max_size));
let title_size = title_layout.size(); let controls_size = controls_layout.size();
let space_before_controls = max_size.width - controls_size.width;
let mut controls_layout = controls.layout( let mut title_layout = self.title.layout(
renderer, renderer,
&layout::Limits::new( &layout::Limits::new(
Size::ZERO, Size::ZERO,
Size::new( Size::new(space_before_controls, max_size.height),
max_size.width - title_size.width,
max_size.height,
),
), ),
); );
controls_layout.move_to(Point::new(title_size.width, 0.0)); title_layout.move_to(Point::new(padding, padding));
controls_layout
.move_to(Point::new(space_before_controls + padding, padding));
let title_size = title_layout.size();
let height = title_size.height.max(controls_size.height);
layout::Node::with_children( layout::Node::with_children(
max_size, Size::new(max_size.width, height),
vec![title_layout, controls_layout], vec![title_layout, controls_layout],
) )
} else { } else {
self.title.layout(renderer, &limits) self.title.layout(renderer, &limits)
}; };
node.move_to(Point::new(padding, padding)); layout::Node::with_children(node.size().pad(padding), vec![node])
}
node pub(crate) fn on_event(
&mut self,
event: Event,
layout: Layout<'_>,
cursor_position: Point,
messages: &mut Vec<Message>,
renderer: &Renderer,
clipboard: Option<&dyn Clipboard>,
) {
if let Some(controls) = &mut self.controls {
let mut children = layout.children();
let padded = children.next().unwrap();
let mut children = padded.children();
let _ = children.next();
let controls_layout = children.next().unwrap();
controls.on_event(
event,
controls_layout,
cursor_position,
messages,
renderer,
clipboard,
);
}
} }
} }