Add visible_bounds helper to widget::selector
This commit is contained in:
parent
445b6c8608
commit
7c1f193542
1 changed files with 12 additions and 0 deletions
|
|
@ -3,6 +3,8 @@ pub use iced_selector::Selector;
|
|||
|
||||
pub use iced_selector::target::{Bounded, Match, Target, Text};
|
||||
|
||||
use crate::core::Rectangle;
|
||||
|
||||
use crate::Task;
|
||||
use crate::core::widget;
|
||||
use crate::task;
|
||||
|
|
@ -16,3 +18,13 @@ pub fn find_by_id(id: impl Into<widget::Id>) -> Task<Option<Match>> {
|
|||
pub fn find_by_text(text: impl Into<String>) -> Task<Option<Text>> {
|
||||
task::widget(Selector::find(text.into()))
|
||||
}
|
||||
|
||||
/// Finds the visible bounds of the first [`Selector`] target.
|
||||
pub fn visible_bounds<S>(selector: S) -> Task<Option<Rectangle>>
|
||||
where
|
||||
S: Selector + Send + 'static,
|
||||
S::Output: Bounded + Clone + Send + 'static,
|
||||
{
|
||||
task::widget(selector.find())
|
||||
.map(|target| target.as_ref().and_then(Bounded::visible_bounds))
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue