pub trait ColorChooserWidgetExt: 'static {
    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; }
Expand description

Trait containing all ColorChooserWidget methods.

Implementors

ColorChooserWidget

Required Methods

The ::show-editor property is true when the color chooser is showing the single-color editor. It can be set to switch the color chooser into single-color editing mode.

The ::show-editor property is true when the color chooser is showing the single-color editor. It can be set to switch the color chooser into single-color editing mode.

Implementors