pub trait ColorChooserDialogExt: IsA<ColorChooserDialog> + Sealed + 'static {
    // Provided methods
    fn shows_editor(&self) -> bool { ... }
    fn set_show_editor(&self, show_editor: bool) { ... }
    fn connect_show_editor_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn shows_editor(&self) -> bool

source

fn set_show_editor(&self, show_editor: bool)

source

fn connect_show_editor_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

Implementors§