pub trait AccelGroupExtManual: IsA<AccelGroup> + Sealed + 'static {
    // Provided methods
    fn connect_accel_group<F>(
        &self,
        accel_key: u32,
        accel_mods: ModifierType,
        accel_flags: AccelFlags,
        func: F
    ) -> Closure
       where F: Fn(&Self, &Object, u32, ModifierType) -> bool + 'static { ... }
    fn connect_accel_group_by_path<F>(
        &self,
        accel_path: &str,
        func: F
    ) -> Closure
       where F: Fn(&Self, &Object, u32, ModifierType) -> bool + 'static { ... }
}

Provided Methods§

source

fn connect_accel_group<F>( &self, accel_key: u32, accel_mods: ModifierType, accel_flags: AccelFlags, func: F ) -> Closurewhere F: Fn(&Self, &Object, u32, ModifierType) -> bool + 'static,

source

fn connect_accel_group_by_path<F>(&self, accel_path: &str, func: F) -> Closurewhere F: Fn(&Self, &Object, u32, ModifierType) -> bool + 'static,

Implementors§