diff options
author | 2023-02-09 21:16:12 -0800 | |
---|---|---|
committer | 2023-02-16 16:15:45 +0100 | |
commit | 84a6038961a5ebd1366ae8c6ba9e44be07d37f16 (patch) | |
tree | 37b117701d58380112f187f377dc06477c4b0c70 /native/src/widget/button.rs | |
parent | 6a683b603d555c9d7f589f99738d4151192b91ef (diff) | |
download | iced-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/button.rs | 53 |
1 files changed, 44 insertions, 9 deletions
diff --git a/native/src/widget/button.rs b/native/src/widget/button.rs index b4276317..d1537b10 100644 --- a/native/src/widget/button.rs +++ b/native/src/widget/button.rs @@ -8,7 +8,7 @@ use crate::overlay; use crate::renderer; use crate::touch; use crate::widget::tree::{self, Tree}; -use crate::widget::Operation; +use crate::widget::{self, Operation}; use crate::{ Background, Clipboard, Color, Element, Layout, Length, Padding, Point, Rectangle, Shell, Vector, Widget, @@ -56,6 +56,7 @@ where Renderer: crate::Renderer, Renderer::Theme: StyleSheet, { + id: Option<Id>, content: Element<'a, Message, Renderer>, on_press: Option<Message>, width: Length, @@ -72,6 +73,7 @@ where /// Creates a new [`Button`] with the given content. pub fn new(content: impl Into<Element<'a, Message, Renderer>>) -> Self { Button { + id: None, content: content.into(), on_press: None, width: Length::Shrink, @@ -81,6 +83,12 @@ where } } + /// Sets the [`Id`] of the [`Button`]. + pub fn id(mut self, id: Id) -> Self { + self.id = Some(id); + self + } + /// Sets the width of the [`Button`]. pub fn width(mut self, width: Length) -> Self { self.width = width; @@ -172,14 +180,17 @@ where renderer: &Renderer, operation: &mut dyn Operation<Message>, ) { - operation.container(None, &mut |operation| { - self.content.as_widget().operate( - &mut tree.children[0], - layout.children().next().unwrap(), - renderer, - operation, - ); - }); + operation.container( + self.id.as_ref().map(|id| &id.0), + &mut |operation| { + self.content.as_widget().operate( + &mut tree.children[0], + layout.children().next().unwrap(), + renderer, + operation, + ); + }, + ); } fn on_event( @@ -453,3 +464,27 @@ pub fn mouse_interaction( mouse::Interaction::default() } } + +/// The identifier of a [`Button`]. +#[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 + } +} |