Trait sourceview5::prelude::ActionExt

source ·
pub trait ActionExt: IsA<Action> + Sealed + 'static {
Show 13 methods // Provided methods fn activate(&self, parameter: Option<&Variant>) { ... } fn change_state(&self, value: &Variant) { ... } fn is_enabled(&self) -> bool { ... } fn name(&self) -> GString { ... } fn parameter_type(&self) -> Option<VariantType> { ... } fn state(&self) -> Option<Variant> { ... } fn state_hint(&self) -> Option<Variant> { ... } fn state_type(&self) -> Option<VariantType> { ... } fn connect_enabled_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_name_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_parameter_type_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_state_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_state_type_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... }
}

Provided Methods§

source

fn activate(&self, parameter: Option<&Variant>)

source

fn change_state(&self, value: &Variant)

source

fn is_enabled(&self) -> bool

source

fn name(&self) -> GString

source

fn parameter_type(&self) -> Option<VariantType>

source

fn state(&self) -> Option<Variant>

source

fn state_hint(&self) -> Option<Variant>

source

fn state_type(&self) -> Option<VariantType>

source

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

source

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

source

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

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> ActionExt for O
where O: IsA<Action>,