feat: Tooltips and Better Surface Management
This commit is contained in:
parent
c7edd37b03
commit
337b80d4ca
90 changed files with 3651 additions and 977 deletions
|
|
@ -97,6 +97,14 @@ pub mod aspect_ratio;
|
|||
#[cfg(feature = "autosize")]
|
||||
pub mod autosize;
|
||||
|
||||
pub(crate) mod responsive_container;
|
||||
|
||||
#[cfg(feature = "surface-message")]
|
||||
mod responsive_menu_bar;
|
||||
#[cfg(feature = "surface-message")]
|
||||
#[doc(inline)]
|
||||
pub use responsive_menu_bar::responsive_menu_bar;
|
||||
|
||||
pub mod button;
|
||||
#[doc(inline)]
|
||||
pub use button::{Button, IconButton, LinkButton, TextButton};
|
||||
|
|
@ -335,9 +343,12 @@ pub use toggler::toggler;
|
|||
|
||||
#[doc(inline)]
|
||||
pub use tooltip::{tooltip, Tooltip};
|
||||
|
||||
#[cfg(all(feature = "wayland", feature = "winit"))]
|
||||
pub mod wayland;
|
||||
|
||||
pub mod tooltip {
|
||||
use crate::Element;
|
||||
use std::borrow::Cow;
|
||||
|
||||
pub use iced::widget::tooltip::Position;
|
||||
|
||||
|
|
@ -362,6 +373,10 @@ pub mod warning;
|
|||
#[doc(inline)]
|
||||
pub use warning::*;
|
||||
|
||||
pub mod wrapper;
|
||||
#[doc(inline)]
|
||||
pub use wrapper::*;
|
||||
|
||||
#[cfg(feature = "markdown")]
|
||||
#[doc(inline)]
|
||||
pub use iced::widget::markdown;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue