iced_audio 0.13.0

An extension to the Iced GUI library with useful widgets for audio applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::{
    ModulationRange,
    core::{text_marks, tick_marks},
    style::v_slider::{ModRangeAppearance, TextMarksAppearance, TickMarksAppearance},
};

pub struct ValueMarkers<'a> {
    pub tick_marks: Option<&'a tick_marks::Group>,
    pub text_marks: Option<&'a text_marks::Group>,
    pub mod_range_1: Option<&'a ModulationRange>,
    pub mod_range_2: Option<&'a ModulationRange>,
    pub tick_marks_style: Option<TickMarksAppearance>,
    pub text_marks_style: Option<TextMarksAppearance>,
    pub mod_range_style_1: Option<ModRangeAppearance>,
    pub mod_range_style_2: Option<ModRangeAppearance>,
}