pub trait ColorChooserImpl: ObjectImpl {
    fn rgba(&self, color_chooser: &Self::Type) -> RGBA;
    fn set_rgba(&self, color_chooser: &Self::Type, rgba: RGBA);

    fn add_palette(
        &self,
        color_chooser: &Self::Type,
        orientation: Orientation,
        colors_per_line: i32,
        colors: &[RGBA]
    ) { ... } fn color_activated(&self, color_chooser: &Self::Type, rgba: RGBA) { ... } }

Required methods

Provided methods

Implementors