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
//! Menu and toolbar widgets.
pub mod action;
#[cfg(not(feature = "mini"))]
pub mod dropdown_menu;
pub mod menu;
pub mod menu_bar;
#[cfg(not(feature = "mini"))]
pub mod menu_button;
pub mod status_bar;
pub mod tool_bar;
pub mod tool_button;
// Re-export menu and toolbar types
pub use action::Action;
#[cfg(not(feature = "mini"))]
pub use dropdown_menu::{DropdownItem, DropdownMenu};
pub use menu::Menu;
pub use menu_bar::MenuBar;
#[cfg(not(feature = "mini"))]
pub use menu_button::{MenuButton, MenuItem};
pub use status_bar::StatusBar;
pub use tool_bar::ToolBar;
pub use tool_button::ToolButton;