[][src]Trait gtk::prelude::AccelGroupExtManual

pub trait AccelGroupExtManual: 'static {
    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
; }

Required 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, 

Loading content...

Implementors

impl<O: IsA<AccelGroup>> AccelGroupExtManual for O[src]

Loading content...