pub trait GlobalShortcutManager: Debug + Clone + Send + Sync {
    // Required methods
    fn is_registered(&self, accelerator: &str) -> Result<bool>;
    fn register<F: Fn() + Send + 'static>(
        &mut self,
        accelerator: &str,
        handler: F
    ) -> Result<()>;
    fn unregister_all(&mut self) -> Result<()>;
    fn unregister(&mut self, accelerator: &str) -> Result<()>;
}
Expand description

A global shortcut manager.

Required Methods§

source

fn is_registered(&self, accelerator: &str) -> Result<bool>

Whether the application has registered the given accelerator.

source

fn register<F: Fn() + Send + 'static>( &mut self, accelerator: &str, handler: F ) -> Result<()>

Register a global shortcut of accelerator.

source

fn unregister_all(&mut self) -> Result<()>

Unregister all accelerators registered by the manager instance.

source

fn unregister(&mut self, accelerator: &str) -> Result<()>

Unregister the provided accelerator.

Implementors§