use super::menu::{self, Menu};
use crate::widget::icon;
use derive_setters::Setters;
use iced::Radians;
use iced_core::event::{self, Event};
use iced_core::text::{self, Paragraph, Text};
use iced_core::widget::tree::{self, Tree};
use iced_core::{alignment, keyboard, layout, mouse, overlay, renderer, svg, touch, Shadow};
use iced_core::{
Clipboard, Layout, Length, Padding, Pixels, Rectangle, Shell, Size, Vector, Widget,
};
use iced_widget::pick_list::{self, Catalog};
use std::ffi::OsStr;
use std::hash::{DefaultHasher, Hash, Hasher};
#[derive(Setters)]
pub struct Dropdown<'a, S: AsRef<str>, Message> {
#[setters(skip)]
on_selected: Box<dyn Fn(usize) -> Message + 'a>,
#[setters(skip)]
selections: &'a [S],
#[setters]
icons: &'a [icon::Handle],
#[setters(skip)]
selected: Option<usize>,
#[setters(into)]
width: Length,
gap: f32,
#[setters(into)]
padding: Padding,
#[setters(strip_option)]
text_size: Option<f32>,
text_line_height: text::LineHeight,
#[setters(strip_option)]
font: Option<crate::font::Font>,
}
impl<'a, S: AsRef<str>, Message> Dropdown<'a, S, Message> {
pub const DEFAULT_GAP: f32 = 4.0;
pub const DEFAULT_PADDING: Padding = Padding::new(8.0);
pub fn new(
selections: &'a [S],
selected: Option<usize>,
on_selected: impl Fn(usize) -> Message + 'a,
) -> Self {
Self {
on_selected: Box::new(on_selected),
selections,
icons: &[],
selected,
width: Length::Shrink,
gap: Self::DEFAULT_GAP,
padding: Self::DEFAULT_PADDING,
text_size: None,
text_line_height: text::LineHeight::Relative(1.2),
font: None,
}
}
}
impl<'a, S: AsRef<str>, Message: 'a> Widget<Message, crate::Theme, crate::Renderer>
for Dropdown<'a, S, Message>
{
fn tag(&self) -> tree::Tag {
tree::Tag::of::<State>()
}
fn state(&self) -> tree::State {
tree::State::new(State::new())
}
fn diff(&mut self, tree: &mut Tree) {
let state = tree.state.downcast_mut::<State>();
state
.selections
.resize_with(self.selections.len(), crate::Plain::default);
state.hashes.resize(self.selections.len(), 0);
for (i, selection) in self.selections.iter().enumerate() {
let mut hasher = DefaultHasher::new();
selection.as_ref().hash(&mut hasher);
let text_hash = hasher.finish();
if state.hashes[i] == text_hash {
continue;
}
state.hashes[i] = text_hash;
state.selections[i].update(Text {
content: selection.as_ref(),
bounds: Size::INFINITY,
size: iced::Pixels(self.text_size.unwrap_or(14.0)),
line_height: self.text_line_height,
font: self.font.unwrap_or_else(crate::font::default),
horizontal_alignment: alignment::Horizontal::Left,
vertical_alignment: alignment::Vertical::Top,
shaping: text::Shaping::Advanced,
wrapping: text::Wrapping::default(),
});
}
}
fn size(&self) -> Size<Length> {
Size::new(self.width, Length::Shrink)
}
fn layout(
&self,
tree: &mut Tree,
renderer: &crate::Renderer,
limits: &layout::Limits,
) -> layout::Node {
layout(
renderer,
limits,
self.width,
self.gap,
self.padding,
self.text_size.unwrap_or(14.0),
self.text_line_height,
self.font,
self.selected.and_then(|id| {
self.selections
.get(id)
.map(AsRef::as_ref)
.zip(tree.state.downcast_mut::<State>().selections.get_mut(id))
}),
!self.icons.is_empty(),
)
}
fn on_event(
&mut self,
tree: &mut Tree,
event: Event,
layout: Layout<'_>,
cursor: mouse::Cursor,
_renderer: &crate::Renderer,
_clipboard: &mut dyn Clipboard,
shell: &mut Shell<'_, Message>,
_viewport: &Rectangle,
) -> event::Status {
update(
&event,
layout,
cursor,
shell,
self.on_selected.as_ref(),
self.selected,
self.selections,
|| tree.state.downcast_mut::<State>(),
)
}
fn mouse_interaction(
&self,
_tree: &Tree,
layout: Layout<'_>,
cursor: mouse::Cursor,
_viewport: &Rectangle,
_renderer: &crate::Renderer,
) -> mouse::Interaction {
mouse_interaction(layout, cursor)
}
fn draw(
&self,
tree: &Tree,
renderer: &mut crate::Renderer,
theme: &crate::Theme,
_style: &iced_core::renderer::Style,
layout: Layout<'_>,
cursor: mouse::Cursor,
viewport: &Rectangle,
) {
let font = self.font.unwrap_or_else(|| crate::font::default());
draw(
renderer,
theme,
layout,
cursor,
self.gap,
self.padding,
self.text_size,
self.text_line_height,
font,
self.selected.and_then(|id| self.selections.get(id)),
self.selected.and_then(|id| self.icons.get(id)),
tree.state.downcast_ref::<State>(),
viewport,
);
}
fn overlay<'b>(
&'b mut self,
tree: &'b mut Tree,
layout: Layout<'_>,
renderer: &crate::Renderer,
translation: Vector,
) -> Option<overlay::Element<'b, Message, crate::Theme, crate::Renderer>> {
let state = tree.state.downcast_mut::<State>();
overlay(
layout,
renderer,
state,
self.gap,
self.padding,
self.text_size.unwrap_or(14.0),
self.text_line_height,
self.font,
self.selections,
self.icons,
self.selected,
&self.on_selected,
translation,
)
}
}
impl<'a, S: AsRef<str>, Message: 'a> From<Dropdown<'a, S, Message>>
for crate::Element<'a, Message>
{
fn from(pick_list: Dropdown<'a, S, Message>) -> Self {
Self::new(pick_list)
}
}
#[derive(Debug)]
pub struct State {
icon: Option<svg::Handle>,
menu: menu::State,
keyboard_modifiers: keyboard::Modifiers,
is_open: bool,
hovered_option: Option<usize>,
hashes: Vec<u64>,
selections: Vec<crate::Plain>,
}
impl State {
pub fn new() -> Self {
Self {
icon: match icon::from_name("pan-down-symbolic").size(16).handle().data {
icon::Data::Name(named) => named
.path()
.filter(|path| path.extension().is_some_and(|ext| ext == OsStr::new("svg")))
.map(iced_core::svg::Handle::from_path),
icon::Data::Svg(handle) => Some(handle),
icon::Data::Image(_) => None,
},
menu: menu::State::default(),
keyboard_modifiers: keyboard::Modifiers::default(),
is_open: false,
hovered_option: None,
selections: Vec::new(),
hashes: Vec::new(),
}
}
}
impl Default for State {
fn default() -> Self {
Self::new()
}
}
#[allow(clippy::too_many_arguments)]
pub fn layout(
renderer: &crate::Renderer,
limits: &layout::Limits,
width: Length,
gap: f32,
padding: Padding,
text_size: f32,
text_line_height: text::LineHeight,
font: Option<crate::font::Font>,
selection: Option<(&str, &mut crate::Plain)>,
has_icons: bool,
) -> layout::Node {
use std::f32;
let limits = limits.width(width).height(Length::Shrink).shrink(padding);
let max_width = match width {
Length::Shrink => {
let measure = move |(label, paragraph): (_, &mut crate::Plain)| -> f32 {
paragraph.update(Text {
content: label,
bounds: Size::new(f32::MAX, f32::MAX),
size: iced::Pixels(text_size),
line_height: text_line_height,
font: font.unwrap_or_else(|| crate::font::default()),
horizontal_alignment: alignment::Horizontal::Left,
vertical_alignment: alignment::Vertical::Top,
shaping: text::Shaping::Advanced,
wrapping: text::Wrapping::default(),
});
paragraph.min_width().round()
};
selection.map(measure).unwrap_or_default()
}
_ => 0.0,
};
let icon_size = if has_icons { 24.0 } else { 0.0 };
let size = {
let intrinsic = Size::new(
max_width + icon_size + gap + 16.0,
f32::from(text_line_height.to_absolute(Pixels(text_size))),
);
limits
.resolve(width, Length::Shrink, intrinsic)
.expand(padding)
};
layout::Node::new(size)
}
#[allow(clippy::too_many_arguments)]
pub fn update<'a, S: AsRef<str>, Message>(
event: &Event,
layout: Layout<'_>,
cursor: mouse::Cursor,
shell: &mut Shell<'_, Message>,
on_selected: &dyn Fn(usize) -> Message,
selected: Option<usize>,
selections: &[S],
state: impl FnOnce() -> &'a mut State,
) -> event::Status {
match event {
Event::Mouse(mouse::Event::ButtonPressed(mouse::Button::Left))
| Event::Touch(touch::Event::FingerPressed { .. }) => {
let state = state();
if state.is_open {
state.is_open = false;
event::Status::Captured
} else if cursor.is_over(layout.bounds()) {
state.is_open = true;
state.hovered_option = selected;
event::Status::Captured
} else {
event::Status::Ignored
}
}
Event::Mouse(mouse::Event::WheelScrolled {
delta: mouse::ScrollDelta::Lines { .. },
}) => {
let state = state();
if state.keyboard_modifiers.command()
&& cursor.is_over(layout.bounds())
&& !state.is_open
{
let next_index = selected.map(|index| index + 1).unwrap_or_default();
if selections.len() < next_index {
shell.publish((on_selected)(next_index));
}
event::Status::Captured
} else {
event::Status::Ignored
}
}
Event::Keyboard(keyboard::Event::ModifiersChanged(modifiers)) => {
let state = state();
state.keyboard_modifiers = *modifiers;
event::Status::Ignored
}
_ => event::Status::Ignored,
}
}
#[must_use]
pub fn mouse_interaction(layout: Layout<'_>, cursor: mouse::Cursor) -> mouse::Interaction {
let bounds = layout.bounds();
let is_mouse_over = cursor.is_over(bounds);
if is_mouse_over {
mouse::Interaction::Pointer
} else {
mouse::Interaction::default()
}
}
#[allow(clippy::too_many_arguments)]
pub fn overlay<'a, S: AsRef<str>, Message: 'a>(
layout: Layout<'_>,
_renderer: &crate::Renderer,
state: &'a mut State,
gap: f32,
padding: Padding,
text_size: f32,
_text_line_height: text::LineHeight,
_font: Option<crate::font::Font>,
selections: &'a [S],
icons: &'a [icon::Handle],
selected_option: Option<usize>,
on_selected: &'a dyn Fn(usize) -> Message,
translation: Vector,
) -> Option<overlay::Element<'a, Message, crate::Theme, crate::Renderer>> {
if state.is_open {
let bounds = layout.bounds();
let menu = Menu::new(
&mut state.menu,
selections,
icons,
&mut state.hovered_option,
selected_option,
|option| {
state.is_open = false;
(on_selected)(option)
},
None,
)
.width({
let measure = |_label: &str, selection_paragraph: &crate::Paragraph| -> f32 {
selection_paragraph.min_width().round()
};
let pad_width = padding.horizontal().mul_add(2.0, 16.0);
let icon_width = if icons.is_empty() { 0.0 } else { 24.0 };
selections
.iter()
.zip(state.selections.iter_mut())
.map(|(label, selection)| measure(label.as_ref(), selection.raw()))
.fold(0.0, |next, current| current.max(next))
+ gap
+ pad_width
+ icon_width
})
.padding(padding)
.text_size(text_size);
let mut position = layout.position();
position.x -= padding.left;
position.x += translation.x;
position.y += translation.y;
Some(menu.overlay(position, bounds.height))
} else {
None
}
}
#[allow(clippy::too_many_arguments)]
pub fn draw<'a, S>(
renderer: &mut crate::Renderer,
theme: &crate::Theme,
layout: Layout<'_>,
cursor: mouse::Cursor,
gap: f32,
padding: Padding,
text_size: Option<f32>,
text_line_height: text::LineHeight,
font: crate::font::Font,
selected: Option<&'a S>,
icon: Option<&'a icon::Handle>,
state: &'a State,
viewport: &Rectangle,
) where
S: AsRef<str> + 'a,
{
let bounds = layout.bounds();
let is_mouse_over = cursor.is_over(bounds);
let style = if is_mouse_over {
theme.style(&(), pick_list::Status::Hovered)
} else {
theme.style(&(), pick_list::Status::Active)
};
iced_core::Renderer::fill_quad(
renderer,
renderer::Quad {
bounds,
border: style.border,
shadow: Shadow::default(),
},
style.background,
);
if let Some(handle) = state.icon.clone() {
let svg_handle = svg::Svg::new(handle).color(style.text_color);
svg::Renderer::draw_svg(
renderer,
svg_handle,
Rectangle {
x: bounds.x + bounds.width - gap - 16.0,
y: bounds.center_y() - 8.0,
width: 16.0,
height: 16.0,
},
);
}
if let Some(content) = selected.map(AsRef::as_ref) {
let text_size = text_size.unwrap_or_else(|| text::Renderer::default_size(renderer).0);
let mut bounds = Rectangle {
x: bounds.x + padding.left,
y: bounds.center_y(),
width: bounds.width - padding.horizontal(),
height: f32::from(text_line_height.to_absolute(Pixels(text_size))),
};
if let Some(handle) = icon {
let icon_bounds = Rectangle {
x: bounds.x,
y: bounds.y - (bounds.height / 2.0) - 2.0,
width: 20.0,
height: 20.0,
};
bounds.x += 24.0;
icon::draw(renderer, handle, icon_bounds);
}
text::Renderer::fill_text(
renderer,
Text {
content: content.to_string(),
size: iced::Pixels(text_size),
line_height: text_line_height,
font,
bounds: bounds.size(),
horizontal_alignment: alignment::Horizontal::Left,
vertical_alignment: alignment::Vertical::Center,
shaping: text::Shaping::Advanced,
wrapping: text::Wrapping::default(),
},
bounds.position(),
style.text_color,
*viewport,
);
}
}