iced_audio 0.13.2

An extension to the Iced GUI library with useful widgets for audio applications
Documentation
mod core;
mod widget;

pub mod style;

pub use crate::core::*;

pub use core::text_marks;
pub use core::tick_marks;

#[cfg(feature = "knob")]
pub use widget::knob;
#[cfg(feature = "knob")]
pub use widget::knob::Knob;

#[cfg(feature = "h_slider")]
pub use widget::h_slider;
#[cfg(feature = "h_slider")]
pub use widget::h_slider::HSlider;

#[cfg(feature = "v_slider")]
pub use widget::v_slider;
#[cfg(feature = "v_slider")]
pub use widget::v_slider::VSlider;

#[cfg(feature = "ramp")]
pub use widget::ramp;
#[cfg(feature = "ramp")]
pub use widget::ramp::Ramp;

#[cfg(feature = "xy_pad")]
pub use widget::xy_pad;
#[cfg(feature = "xy_pad")]
pub use widget::xy_pad::XYPad;

#[cfg(feature = "mod_range_input")]
pub use widget::mod_range_input;
#[cfg(feature = "mod_range_input")]
pub use widget::mod_range_input::ModRangeInput;