pub trait ColorBalanceChannelExt: IsA<ColorBalanceChannel> + Sealed + 'static {
    // Provided method
    fn connect_value_changed<F: Fn(&Self, i32) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all ColorBalanceChannel methods.

§Implementors

ColorBalanceChannel

Provided Methods§

source

fn connect_value_changed<F: Fn(&Self, i32) + Send + Sync + 'static>( &self, f: F ) -> SignalHandlerId

Fired when the value of the indicated channel has changed.

§value

The new value

Object Safety§

This trait is not object safe.

Implementors§