pub trait AccelLabelExt: 'static {
    fn get_accel(&self) -> (u32, ModifierType);
    fn get_accel_widget(&self) -> Option<Widget>;
    fn get_accel_width(&self) -> u32;
    fn refetch(&self) -> bool;
    fn set_accel(&self, accelerator_key: u32, accelerator_mods: ModifierType);
    fn set_accel_closure(&self, accel_closure: Option<&Closure>);
    fn set_accel_widget<P: IsA<Widget>>(&self, accel_widget: Option<&P>);
    fn get_property_accel_closure(&self) -> Option<Closure>;
    fn connect_property_accel_closure_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_property_accel_widget_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors