13 lines
262 B
Objective-C
13 lines
262 B
Objective-C
#import "MASShortcut.h"
|
|
|
|
extern FourCharCode const MASHotKeySignature;
|
|
|
|
@interface MASHotKey : NSObject
|
|
|
|
@property(readonly) UInt32 carbonID;
|
|
@property(copy) dispatch_block_t action;
|
|
|
|
+ (instancetype) registeredHotKeyWithShortcut: (MASShortcut*) shortcut;
|
|
|
|
@end
|