forked from eczarny/spectacle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpectacleHotKeyManager.m
230 lines (161 loc) · 5.57 KB
/
SpectacleHotKeyManager.m
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
#import "SpectacleHotKeyManager.h"
#import "SpectacleConstants.h"
static OSStatus hotKeyEventHandler(EventHandlerCallRef handlerCall, EventRef event, void *data);
#pragma mark -
@interface SpectacleHotKeyManager ()
@property (nonatomic) NSMutableDictionary *registeredHotKeysByName;
@property (nonatomic) BOOL isHotKeyHandlerInstalled;
@end
#pragma mark -
@implementation SpectacleHotKeyManager
static EventHotKeyID currentHotKeyID = {
.signature = 'ZERO',
.id = 0
};
- (id)init {
if ((self = [super init])) {
_registeredHotKeysByName = [NSMutableDictionary new];
_isHotKeyHandlerInstalled = NO;
}
return self;
}
#pragma mark -
+ (SpectacleHotKeyManager *)sharedManager {
static SpectacleHotKeyManager *sharedInstance = nil;
static dispatch_once_t predicate;
dispatch_once(&predicate, ^{
sharedInstance = [self new];
});
return sharedInstance;
}
#pragma mark -
- (NSInteger)registerHotKey: (ZKHotKey *)hotKey {
NSString *hotKeyName = hotKey.hotKeyName;
ZKHotKey *existingHotKey = [self registeredHotKeyForName: hotKeyName];
EventHotKeyRef hotKeyRef;
EventTargetRef eventTarget = GetEventDispatcherTarget();
OSStatus error;
if (existingHotKey) {
[hotKey setHotKeyAction: existingHotKey.hotKeyAction];
[self unregisterHotKeyForName: hotKeyName];
}
currentHotKeyID.id = ++currentHotKeyID.id;
error = RegisterEventHotKey((unsigned int)hotKey.hotKeyCode, (unsigned int)hotKey.hotKeyModifiers, currentHotKeyID, eventTarget, 0, &hotKeyRef);
if (error) {
NSLog(@"There was a problem registering hot key %@.", hotKeyName);
return -1;
}
hotKey.handle = currentHotKeyID.id;
hotKey.hotKeyRef = hotKeyRef;
_registeredHotKeysByName[hotKeyName] = hotKey;
[self updateUserDefaults];
[self installHotKeyEventHandler];
return hotKey.handle;
}
- (void)registerHotKeys: (NSArray *)hotKeys {
for (ZKHotKey *hotKey in hotKeys) {
[self registerHotKey: hotKey];
}
}
#pragma mark -
- (void)unregisterHotKeyForName: (NSString *)name {
ZKHotKey *hotKey = [self registeredHotKeyForName: name];
EventHotKeyRef hotKeyRef;
OSStatus error;
if (!hotKey) {
NSLog(@"The specified hot key has not been registered.");
return;
}
hotKeyRef = hotKey.hotKeyRef;
if (hotKeyRef) {
error = UnregisterEventHotKey(hotKeyRef);
if (error) {
NSLog(@"Receiving the following error code when unregistering hot key %@: %d", name, error);
}
_registeredHotKeysByName[name] = [ZKHotKey clearedHotKeyWithName: name];
[self updateUserDefaults];
} else {
NSLog(@"Unable to unregister hot key %@, no hotKeyRef appears to exist.", name);
}
}
- (void)unregisterHotKeys {
for (ZKHotKey *hotKey in self.registeredHotKeys) {
[self unregisterHotKeyForName: hotKey.hotKeyName];
}
}
#pragma mark -
- (NSArray *)registeredHotKeys {
return _registeredHotKeysByName.allValues;
}
- (ZKHotKey *)registeredHotKeyForName: (NSString *)name {
ZKHotKey *hotKey = _registeredHotKeysByName[name];
if (hotKey.isClearedHotKey) {
hotKey = nil;
}
return hotKey;
}
#pragma mark -
- (BOOL)isHotKeyRegistered: (ZKHotKey *)hotKey {
for (ZKHotKey *registeredHotKey in self.registeredHotKeys) {
if ([registeredHotKey isEqualToHotKey: hotKey]) {
return YES;
}
}
return NO;
}
#pragma mark -
- (void)updateUserDefaults {
NSUserDefaults *userDefaults = NSUserDefaults.standardUserDefaults;
for (ZKHotKey *hotKey in self.registeredHotKeys) {
NSData *hotKeyData = [NSKeyedArchiver archivedDataWithRootObject: hotKey];
NSString *hotKeyName = hotKey.hotKeyName;
if (![hotKeyData isEqualToData: [userDefaults dataForKey: hotKeyName]]) {
[userDefaults setObject: hotKeyData forKey: hotKeyName];
}
}
}
#pragma mark -
- (void)installHotKeyEventHandler {
if ((_registeredHotKeysByName.count > 0) && !_isHotKeyHandlerInstalled) {
EventTypeSpec typeSpec;
typeSpec.eventClass = kEventClassKeyboard;
typeSpec.eventKind = kEventHotKeyPressed;
InstallApplicationEventHandler(&hotKeyEventHandler, 1, &typeSpec, NULL, NULL);
_isHotKeyHandlerInstalled = YES;
}
}
#pragma mark -
- (ZKHotKey *)registeredHotKeyForHandle: (NSInteger)handle {
for (ZKHotKey *hotKey in self.registeredHotKeys) {
if (hotKey.handle == handle) {
return hotKey;
}
}
return nil;
}
#pragma mark -
- (OSStatus)handleHotKeyEvent: (EventRef)event {
ZKHotKey *hotKey;
EventHotKeyID hotKeyID;
OSStatus error = GetEventParameter(event, kEventParamDirectObject, typeEventHotKeyID, NULL, sizeof(EventHotKeyID), NULL, &hotKeyID);
if (error) {
return error;
}
hotKey = [self registeredHotKeyForHandle: hotKeyID.id];
if (!hotKey) {
NSLog(@"Unable to handle event for hot key with handle %d, the registered hot key does not exist.", hotKeyID.id);
}
switch (GetEventKind(event)) {
case kEventHotKeyPressed:
[hotKey triggerHotKeyAction];
break;
default:
break;
}
return 0;
}
#pragma mark -
static OSStatus hotKeyEventHandler(EventHandlerCallRef handlerCall, EventRef event, void *data) {
return [SpectacleHotKeyManager.sharedManager handleHotKeyEvent: event];
}
@end