iced-yoda/widget/src/row.rs

254 lines
6.6 KiB
Rust
Raw Normal View History

//! Distribute content horizontally.
use crate::core::event::{self, Event};
use crate::core::layout::{self, Layout};
use crate::core::mouse;
use crate::core::overlay;
use crate::core::renderer;
use crate::core::widget::{Operation, Tree};
use crate::core::{
2023-02-17 16:23:29 +01:00
Alignment, Clipboard, Element, Length, Padding, Pixels, Point, Rectangle,
Shell, Widget,
};
2019-09-20 19:15:31 +02:00
/// A container that distributes its contents horizontally.
#[allow(missing_debug_implementations)]
pub struct Row<'a, Message, Renderer = crate::Renderer> {
2023-02-17 16:23:29 +01:00
spacing: f32,
2020-11-23 17:19:21 +00:00
padding: Padding,
width: Length,
height: Length,
align_items: Alignment,
children: Vec<Element<'a, Message, Renderer>>,
}
impl<'a, Message, Renderer> Row<'a, Message, Renderer> {
/// Creates an empty [`Row`].
pub fn new() -> Self {
Self::with_children(Vec::new())
}
/// Creates a [`Row`] with the given elements.
pub fn with_children(
children: Vec<Element<'a, Message, Renderer>>,
) -> Self {
Row {
2023-02-17 16:23:29 +01:00
spacing: 0.0,
2020-11-23 17:19:21 +00:00
padding: Padding::ZERO,
width: Length::Shrink,
height: Length::Shrink,
align_items: Alignment::Start,
children,
}
}
/// Sets the horizontal spacing _between_ elements.
///
2022-05-02 20:16:00 +02:00
/// Custom margins per element do not exist in iced. You should use this
/// method instead! While less flexible, it helps you keep spacing between
/// elements consistent.
2023-02-17 16:23:29 +01:00
pub fn spacing(mut self, amount: impl Into<Pixels>) -> Self {
self.spacing = amount.into().0;
self
}
2020-11-23 17:19:21 +00:00
/// Sets the [`Padding`] of the [`Row`].
pub fn padding<P: Into<Padding>>(mut self, padding: P) -> Self {
self.padding = padding.into();
self
}
/// Sets the width of the [`Row`].
pub fn width(mut self, width: impl Into<Length>) -> Self {
self.width = width.into();
self
}
/// Sets the height of the [`Row`].
pub fn height(mut self, height: impl Into<Length>) -> Self {
self.height = height.into();
self
}
/// Sets the vertical alignment of the contents of the [`Row`] .
pub fn align_items(mut self, align: Alignment) -> Self {
self.align_items = align;
self
}
/// Adds an [`Element`] to the [`Row`].
pub fn push(
mut self,
child: impl Into<Element<'a, Message, Renderer>>,
) -> Self {
self.children.push(child.into());
self
}
}
2019-09-20 19:15:31 +02:00
impl<'a, Message, Renderer> Default for Row<'a, Message, Renderer> {
fn default() -> Self {
Self::new()
}
}
impl<'a, Message, Renderer> Widget<Message, Renderer>
2019-09-20 19:15:31 +02:00
for Row<'a, Message, Renderer>
where
Renderer: crate::core::Renderer,
2019-09-20 19:15:31 +02:00
{
fn children(&self) -> Vec<Tree> {
self.children.iter().map(Tree::new).collect()
}
fn diff(&self, tree: &mut Tree) {
tree.diff_children(&self.children)
}
fn width(&self) -> Length {
self.width
}
fn height(&self) -> Length {
self.height
}
fn layout(
&self,
renderer: &Renderer,
limits: &layout::Limits,
) -> layout::Node {
let limits = limits.width(self.width).height(self.height);
layout::flex::resolve(
layout::flex::Axis::Horizontal,
renderer,
&limits,
2020-11-23 17:19:21 +00:00
self.padding,
2023-02-17 16:23:29 +01:00
self.spacing,
self.align_items,
&self.children,
)
2019-09-20 19:15:31 +02:00
}
fn operate(
&self,
tree: &mut Tree,
layout: Layout<'_>,
2022-12-22 14:29:24 +01:00
renderer: &Renderer,
operation: &mut dyn Operation<Message>,
) {
operation.container(None, &mut |operation| {
self.children
.iter()
.zip(&mut tree.children)
.zip(layout.children())
.for_each(|((child, state), layout)| {
2022-12-22 14:29:24 +01:00
child
.as_widget()
.operate(state, layout, renderer, operation);
})
});
}
2019-09-20 19:15:31 +02:00
fn on_event(
&mut self,
tree: &mut Tree,
2019-09-20 19:15:31 +02:00
event: Event,
layout: Layout<'_>,
2019-09-20 19:15:31 +02:00
cursor_position: Point,
renderer: &Renderer,
clipboard: &mut dyn Clipboard,
shell: &mut Shell<'_, Message>,
) -> event::Status {
2020-11-12 00:48:40 +01:00
self.children
.iter_mut()
.zip(&mut tree.children)
2020-11-12 00:48:40 +01:00
.zip(layout.children())
.map(|((child, state), layout)| {
child.as_widget_mut().on_event(
state,
event.clone(),
layout,
cursor_position,
renderer,
clipboard,
shell,
2020-11-12 00:48:40 +01:00
)
})
.fold(event::Status::Ignored, event::Status::merge)
2019-09-20 19:15:31 +02:00
}
fn mouse_interaction(
&self,
tree: &Tree,
layout: Layout<'_>,
cursor_position: Point,
viewport: &Rectangle,
renderer: &Renderer,
) -> mouse::Interaction {
self.children
.iter()
.zip(&tree.children)
.zip(layout.children())
.map(|((child, state), layout)| {
child.as_widget().mouse_interaction(
state,
layout,
cursor_position,
viewport,
renderer,
)
})
.max()
.unwrap_or_default()
}
2019-09-20 19:15:31 +02:00
fn draw(
&self,
tree: &Tree,
2019-09-20 19:15:31 +02:00
renderer: &mut Renderer,
theme: &Renderer::Theme,
style: &renderer::Style,
layout: Layout<'_>,
2019-09-20 19:15:31 +02:00
cursor_position: Point,
viewport: &Rectangle,
) {
for ((child, state), layout) in self
.children
.iter()
.zip(&tree.children)
.zip(layout.children())
{
child.as_widget().draw(
state,
renderer,
theme,
style,
layout,
cursor_position,
viewport,
);
2021-10-14 17:05:37 +07:00
}
2019-09-20 19:15:31 +02:00
}
fn overlay<'b>(
2022-11-19 12:25:59 -08:00
&'b mut self,
tree: &'b mut Tree,
2020-05-07 01:33:11 +02:00
layout: Layout<'_>,
renderer: &Renderer,
) -> Option<overlay::Element<'b, Message, Renderer>> {
2022-11-19 12:25:59 -08:00
overlay::from_children(&mut self.children, tree, layout, renderer)
2020-05-07 01:33:11 +02:00
}
2019-09-20 19:15:31 +02:00
}
impl<'a, Message, Renderer> From<Row<'a, Message, Renderer>>
for Element<'a, Message, Renderer>
where
Message: 'a,
Renderer: crate::core::Renderer + 'a,
2019-09-20 19:15:31 +02:00
{
fn from(row: Row<'a, Message, Renderer>) -> Self {
Self::new(row)
2019-09-20 19:15:31 +02:00
}
}