pub trait ColorChooserExtManual: 'static {
    // Required method
    fn add_palette(
        &self,
        orientation: Orientation,
        colors_per_line: i32,
        colors: &[RGBA]
    );
}
Expand description

Trait containing manually implemented methods of ColorChooser.

Required Methods§

source

fn add_palette( &self, orientation: Orientation, colors_per_line: i32, colors: &[RGBA] )

Implementors§