2020-01-09 18:31:07 +01:00
|
|
|
//! Use the widgets supported out-of-the-box.
|
|
|
|
|
//!
|
|
|
|
|
//! # Re-exports
|
|
|
|
|
//! For convenience, the contents of this module are available at the root
|
|
|
|
|
//! module. Therefore, you can directly type:
|
|
|
|
|
//!
|
|
|
|
|
//! ```
|
|
|
|
|
//! use iced_wgpu::{button, Button};
|
|
|
|
|
//! ```
|
2019-12-29 10:57:01 +01:00
|
|
|
pub mod button;
|
2020-01-07 02:54:54 +01:00
|
|
|
pub mod checkbox;
|
2019-12-31 11:36:54 +01:00
|
|
|
pub mod container;
|
2020-01-07 01:53:26 +01:00
|
|
|
pub mod progress_bar;
|
2020-01-07 02:25:57 +01:00
|
|
|
pub mod radio;
|
2020-01-06 21:01:09 +01:00
|
|
|
pub mod scrollable;
|
2020-01-07 00:28:08 +01:00
|
|
|
pub mod slider;
|
2020-01-01 18:26:49 +01:00
|
|
|
pub mod text_input;
|
2020-01-09 18:31:07 +01:00
|
|
|
|
|
|
|
|
#[doc(no_inline)]
|
|
|
|
|
pub use button::Button;
|
|
|
|
|
#[doc(no_inline)]
|
|
|
|
|
pub use checkbox::Checkbox;
|
|
|
|
|
#[doc(no_inline)]
|
|
|
|
|
pub use container::Container;
|
|
|
|
|
#[doc(no_inline)]
|
|
|
|
|
pub use progress_bar::ProgressBar;
|
|
|
|
|
#[doc(no_inline)]
|
|
|
|
|
pub use radio::Radio;
|
|
|
|
|
#[doc(no_inline)]
|
|
|
|
|
pub use scrollable::Scrollable;
|
|
|
|
|
#[doc(no_inline)]
|
|
|
|
|
pub use slider::Slider;
|
|
|
|
|
#[doc(no_inline)]
|
|
|
|
|
pub use text_input::TextInput;
|
2020-02-11 23:14:25 +01:00
|
|
|
|
|
|
|
|
#[cfg(feature = "canvas")]
|
|
|
|
|
pub mod canvas;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "canvas")]
|
|
|
|
|
#[doc(no_inline)]
|
|
|
|
|
pub use canvas::Canvas;
|