pub trait ColorChooserRequestExt: IsA<ColorChooserRequest> + Sealed + 'static {
    // Provided methods
    fn cancel(&self) { ... }
    fn finish(&self) { ... }
    fn element_rectangle(&self) -> Rectangle { ... }
    fn rgba(&self) -> RGBA { ... }
    fn set_rgba(&self, rgba: &RGBA) { ... }
    fn connect_finished<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId { ... }
    fn connect_rgba_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn cancel(&self)

Available on crate feature v2_8 only.
source

fn finish(&self)

Available on crate feature v2_8 only.
source

fn element_rectangle(&self) -> Rectangle

Available on crate feature v2_8 only.
source

fn rgba(&self) -> RGBA

Available on crate feature v2_8 only.
source

fn set_rgba(&self, rgba: &RGBA)

Available on crate feature v2_8 only.
source

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

Available on crate feature v2_8 only.
source

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

Available on crate feature v2_8 only.

Object Safety§

This trait is not object safe.

Implementors§