Trait sourceview5::prelude::ColorChooserExt

source ·
pub trait ColorChooserExt: IsA<ColorChooser> + Sealed + 'static {
    // Provided methods
    fn rgba(&self) -> RGBA { ... }
    fn uses_alpha(&self) -> bool { ... }
    fn set_rgba(&self, color: &RGBA) { ... }
    fn set_use_alpha(&self, use_alpha: bool) { ... }
    fn connect_color_activated<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, &RGBA) + 'static { ... }
    fn connect_rgba_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
    fn connect_use_alpha_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
}
👎Deprecated: Since 4.10

Provided Methods§

source

fn rgba(&self) -> RGBA

👎Deprecated: Since 4.10
source

fn uses_alpha(&self) -> bool

👎Deprecated: Since 4.10
source

fn set_rgba(&self, color: &RGBA)

👎Deprecated: Since 4.10
source

fn set_use_alpha(&self, use_alpha: bool)

👎Deprecated: Since 4.10
source

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

👎Deprecated: Since 4.10
source

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

👎Deprecated: Since 4.10
source

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

👎Deprecated: Since 4.10

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> ColorChooserExt for O
where O: IsA<ColorChooser>,