[go: up one dir, main page]

[][src]Trait gio::prelude::SimpleActionExt

pub trait SimpleActionExt {
    fn set_enabled(&self, enabled: bool);
fn set_state(&self, value: &Variant);
fn connect_activate<F: Fn(&Self, &Option<Variant>) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_change_state<F: Fn(&Self, &Option<Variant>) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_enabled_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_name_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_state_type_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors

impl<O: IsA<SimpleAction> + IsA<Object>> SimpleActionExt for O
[src]