Trait tauri_runtime::GlobalShortcutManager
source · [−]pub trait GlobalShortcutManager: Debug + Clone + Send + Sync {
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
fn is_registered(&self, accelerator: &str) -> Result<bool>
fn is_registered(&self, accelerator: &str) -> Result<bool>
Whether the application has registered the given accelerator
.
Register a global shortcut of accelerator
.
fn unregister_all(&mut self) -> Result<()>
fn unregister_all(&mut self) -> Result<()>
Unregister all accelerators registered by the manager instance.
fn unregister(&mut self, accelerator: &str) -> Result<()>
fn unregister(&mut self, accelerator: &str) -> Result<()>
Unregister the provided accelerator
.