summaryrefslogtreecommitdiffstats
path: root/native/src/widget/row.rs
diff options
context:
space:
mode:
authorLibravatar Nick Senger <dev@nsenger.com>2023-02-09 21:16:12 -0800
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-02-16 16:15:45 +0100
commit84a6038961a5ebd1366ae8c6ba9e44be07d37f16 (patch)
tree37b117701d58380112f187f377dc06477c4b0c70 /native/src/widget/row.rs
parent6a683b603d555c9d7f589f99738d4151192b91ef (diff)
downloadiced-84a6038961a5ebd1366ae8c6ba9e44be07d37f16.tar.gz
iced-84a6038961a5ebd1366ae8c6ba9e44be07d37f16.tar.bz2
iced-84a6038961a5ebd1366ae8c6ba9e44be07d37f16.zip
provide ID to operation.container in applicable widgets
Diffstat (limited to '')
-rw-r--r--native/src/widget/row.rs59
1 files changed, 47 insertions, 12 deletions
diff --git a/native/src/widget/row.rs b/native/src/widget/row.rs
index 108e98e4..1ea670b0 100644
--- a/native/src/widget/row.rs
+++ b/native/src/widget/row.rs
@@ -4,7 +4,7 @@ use crate::layout::{self, Layout};
use crate::mouse;
use crate::overlay;
use crate::renderer;
-use crate::widget::{Operation, Tree};
+use crate::widget::{self, Operation, Tree};
use crate::{
Alignment, Clipboard, Element, Length, Padding, Point, Rectangle, Shell,
Widget,
@@ -13,6 +13,7 @@ use crate::{
/// A container that distributes its contents horizontally.
#[allow(missing_debug_implementations)]
pub struct Row<'a, Message, Renderer> {
+ id: Option<Id>,
spacing: u16,
padding: Padding,
width: Length,
@@ -32,6 +33,7 @@ impl<'a, Message, Renderer> Row<'a, Message, Renderer> {
children: Vec<Element<'a, Message, Renderer>>,
) -> Self {
Row {
+ id: None,
spacing: 0,
padding: Padding::ZERO,
width: Length::Shrink,
@@ -41,6 +43,12 @@ impl<'a, Message, Renderer> Row<'a, Message, Renderer> {
}
}
+ /// Sets the [`Id`] of the [`Row`].
+ pub fn id(mut self, id: Id) -> Self {
+ self.id = Some(id);
+ self
+ }
+
/// Sets the horizontal spacing _between_ elements.
///
/// Custom margins per element do not exist in iced. You should use this
@@ -137,17 +145,20 @@ where
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)| {
- child
- .as_widget()
- .operate(state, layout, renderer, operation);
- })
- });
+ operation.container(
+ self.id.as_ref().map(|id| &id.0),
+ &mut |operation| {
+ self.children
+ .iter()
+ .zip(&mut tree.children)
+ .zip(layout.children())
+ .for_each(|((child, state), layout)| {
+ child
+ .as_widget()
+ .operate(state, layout, renderer, operation);
+ })
+ },
+ );
}
fn on_event(
@@ -251,3 +262,27 @@ where
Self::new(row)
}
}
+
+/// The identifier of a [`Row`].
+#[derive(Debug, Clone, PartialEq, Eq, Hash)]
+pub struct Id(widget::Id);
+
+impl Id {
+ /// Creates a custom [`Id`].
+ pub fn new(id: impl Into<std::borrow::Cow<'static, str>>) -> Self {
+ Self(widget::Id::new(id))
+ }
+
+ /// Creates a unique [`Id`].
+ ///
+ /// This function produces a different [`Id`] every time it is called.
+ pub fn unique() -> Self {
+ Self(widget::Id::unique())
+ }
+}
+
+impl From<Id> for widget::Id {
+ fn from(id: Id) -> Self {
+ id.0
+ }
+}