diff options
author | 2022-12-12 01:53:45 +0100 | |
---|---|---|
committer | 2023-04-13 06:19:42 +0200 | |
commit | dfc1868179d96236ddf2a9eb590832d810afb6c3 (patch) | |
tree | 3adc4fd2eb1e6bd183ed1df1d32b32a970d09a46 /native/src/widget.rs | |
parent | cf35c85f8cb16fb3c02f1eeb27b9a7736d35ef59 (diff) | |
download | iced-dfc1868179d96236ddf2a9eb590832d810afb6c3.tar.gz iced-dfc1868179d96236ddf2a9eb590832d810afb6c3.tar.bz2 iced-dfc1868179d96236ddf2a9eb590832d810afb6c3.zip |
feat(native): Add MouseListener widget
Diffstat (limited to '')
-rw-r--r-- | native/src/widget.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs index 2b3ca7be..4eb3d1ba 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -17,6 +17,7 @@ pub mod column; pub mod container; pub mod helpers; pub mod image; +pub mod mouse_listener; pub mod operation; pub mod pane_grid; pub mod pick_list; @@ -51,6 +52,8 @@ pub use helpers::*; #[doc(no_inline)] pub use image::Image; #[doc(no_inline)] +pub use mouse_listener::MouseListener; +#[doc(no_inline)] pub use pane_grid::PaneGrid; #[doc(no_inline)] pub use pick_list::PickList; |