Trait gtk::prelude::ColorChooserExt  
                   
                       [−]
                   
               [src]
pub trait ColorChooserExt {
    fn get_rgba(&self) -> RGBA;
    fn get_use_alpha(&self) -> bool;
    fn set_rgba(&self, color: &RGBA);
    fn set_use_alpha(&self, use_alpha: bool);
    fn connect_color_activated<F: Fn(&Self, &RGBA) + 'static>(
        &self, 
        f: F
    ) -> u64;
}
            Required Methods
fn get_rgba(&self) -> RGBA
fn get_use_alpha(&self) -> bool
fn set_rgba(&self, color: &RGBA)
fn set_use_alpha(&self, use_alpha: bool)
fn connect_color_activated<F: Fn(&Self, &RGBA) + 'static>(&self, f: F) -> u64
Implementors
impl<O: IsA<ColorChooser> + IsA<Object>> ColorChooserExt for O