blob: 5c0daa252a0a390c756bea00d4edf1a518250fa0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | #import "MASShortcut.h"
@interface MASShortcutMonitor : NSObject
- (instancetype) init __unavailable;
+ (instancetype) sharedMonitor;
- (void) registerShortcut: (MASShortcut*) shortcut withAction: (dispatch_block_t) action;
- (BOOL) isShortcutRegistered: (MASShortcut*) shortcut;
- (void) unregisterShortcut: (MASShortcut*) shortcut;
- (void) unregisterAllShortcuts;
@end
 |