rust_widgets 0.9.6

Pure Rust cross-platform native GUI library with hardware-adaptive rendering, 60+ widgets, touch/gesture support, i18n, and SVG-pipeline-accurate output
//! Dialog widgets.
#[cfg(not(feature = "mini"))]
pub mod bottom_sheet;
pub mod color_dialog;
pub mod file_dialog;
#[cfg(not(feature = "mini"))]
pub mod find_replace_dialog;
pub mod font_dialog;
pub mod input_dialog;
pub mod message_box;
#[cfg(not(feature = "mini"))]
pub mod modal_bottom_sheet;
#[cfg(not(feature = "mini"))]
pub mod popover;
pub mod popup_window;
pub mod progress_dialog;
#[cfg(not(feature = "mini"))]
pub mod tooltip;
#[cfg(not(feature = "mini"))]
pub mod wizard;
// Re-export dialog types
#[cfg(not(feature = "mini"))]
pub use bottom_sheet::BottomSheet;
pub use color_dialog::ColorDialog;
pub use file_dialog::FileDialog;
#[cfg(not(feature = "mini"))]
pub use find_replace_dialog::FindReplaceDialog;
pub use font_dialog::FontDialog;
pub use input_dialog::InputDialog;
pub use message_box::MessageBox;
#[cfg(not(feature = "mini"))]
pub use modal_bottom_sheet::ModalBottomSheet;
#[cfg(not(feature = "mini"))]
pub use popover::Popover;
pub use popup_window::PopupWindow;
pub use progress_dialog::ProgressDialog;
#[cfg(not(feature = "mini"))]
pub use tooltip::Tooltip;
#[cfg(not(feature = "mini"))]
pub use wizard::{WizardDialog, WizardStep};