blob: 1592e90cd914f76d8ad81500b949d781de5e1c63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#import "MASShortcutMonitor.h"
/**
@brief Binds actions to user defaults keys.
If you store shortcuts in user defaults (for example by binding
a @p MASShortcutView to user defaults), you can use this class to
connect an action directly to a user defaults key. If the shortcut
stored under the key changes, the action will get automatically
updated to the new one.
This class is mostly a wrapper around a @p MASShortcutMonitor. It
watches the changes in user defaults and updates the shortcut monitor
accordingly with the new shortcuts.
*/
@interface MASShortcutBinder : NSObject
/**
@brief A convenience shared instance.
You may use it so that you don’t have to manage an instance by hand,
but it’s perfectly fine to allocate and use a separate instance instead.
*/
+ (instancetype) sharedBinder;
/**
@brief The underlying shortcut monitor.
*/
@property(strong) MASShortcutMonitor *shortcutMonitor;
/**
@brief Binding options customizing the access to user defaults.
As an example, you can use @p NSValueTransformerNameBindingOption to customize
the storage format used for the shortcuts. By default the shortcuts are converted
from @p NSData (@p NSKeyedUnarchiveFromDataTransformerName). Note that if the
binder is to work with @p MASShortcutView, both object have to use the same storage
format.
*/
@property(copy) NSDictionary *bindingOptions;
/**
@brief Binds given action to a shortcut stored under the given defaults key.
In other words, no matter what shortcut you store under the given key,
pressing it will always trigger the given action.
*/
- (void) bindShortcutWithDefaultsKey: (NSString*) defaultsKeyName toAction: (dispatch_block_t) action;
/**
@brief Disconnect the binding between user defaults and action.
In other words, the shortcut stored under the given key will no longer trigger an action.
*/
- (void) breakBindingWithDefaultsKey: (NSString*) defaultsKeyName;
/**
@brief Register default shortcuts in user defaults.
This is a convenience frontent to [NSUserDefaults registerDefaults].
The dictionary should contain a map of user defaults’ keys to appropriate
keyboard shortcuts. The shortcuts will be transformed according to
@p bindingOptions and registered using @p registerDefaults.
*/
- (void) registerDefaultShortcuts: (NSDictionary*) defaultShortcuts;
@end
|