forked from cocoabits/MASShortcut
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMASShortcutView.m
414 lines (361 loc) · 13.3 KB
/
MASShortcutView.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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
#import "MASShortcutView.h"
#import "MASShortcut.h"
#define HINT_BUTTON_WIDTH 23.0
#define BUTTON_FONT_SIZE 11.0
#define SEGMENT_CHROME_WIDTH 6.0
#pragma mark -
@interface MASShortcutView () // Private accessors
@property (nonatomic, getter = isHinting) BOOL hinting;
@property (nonatomic, copy) NSString *shortcutPlaceholder;
@end
#pragma mark -
@implementation MASShortcutView {
NSButtonCell *_shortcutCell;
NSInteger _shortcutToolTipTag;
NSInteger _hintToolTipTag;
NSTrackingArea *_hintArea;
}
@synthesize enabled = _enabled;
@synthesize hinting = _hinting;
@synthesize shortcutValue = _shortcutValue;
@synthesize shortcutPlaceholder = _shortcutPlaceholder;
@synthesize shortcutValueChange = _shortcutValueChange;
@synthesize recording = _recording;
#pragma mark -
- (id)initWithFrame:(CGRect)frameRect
{
self = [super initWithFrame:frameRect];
if (self) {
_shortcutCell = [[NSButtonCell alloc] init];
_shortcutCell.buttonType = NSPushOnPushOffButton;
_shortcutCell.font = [[NSFontManager sharedFontManager] convertFont:_shortcutCell.font toSize:BUTTON_FONT_SIZE];
_enabled = YES;
[self resetShortcutCellStyle];
}
return self;
}
- (void)dealloc
{
[self activateEventMonitoring:NO];
[self activateResignObserver:NO];
}
#pragma mark - Public accessors
- (void)setEnabled:(BOOL)flag
{
if (_enabled != flag) {
_enabled = flag;
[self updateTrackingAreas];
self.recording = NO;
[self setNeedsDisplay:YES];
}
}
- (void)setAppearance:(MASShortcutViewAppearance)appearance
{
if (_appearance != appearance) {
_appearance = appearance;
[self resetShortcutCellStyle];
[self setNeedsDisplay:YES];
}
}
- (void)resetShortcutCellStyle
{
switch (_appearance) {
case MASShortcutViewAppearanceDefault: {
_shortcutCell.bezelStyle = NSRoundRectBezelStyle;
break;
}
case MASShortcutViewAppearanceTexturedRect: {
_shortcutCell.bezelStyle = NSTexturedRoundedBezelStyle;
break;
}
}
}
- (void)setRecording:(BOOL)flag
{
// Only one recorder can be active at the moment
static MASShortcutView *currentRecorder = nil;
if (flag && (currentRecorder != self)) {
currentRecorder.recording = NO;
currentRecorder = flag ? self : nil;
}
// Only enabled view supports recording
if (flag && !self.enabled) return;
if (_recording != flag) {
_recording = flag;
self.shortcutPlaceholder = nil;
[self resetToolTips];
[self activateEventMonitoring:_recording];
[self activateResignObserver:_recording];
[self setNeedsDisplay:YES];
}
}
- (void)setShortcutValue:(MASShortcut *)shortcutValue
{
_shortcutValue = shortcutValue;
[self resetToolTips];
[self setNeedsDisplay:YES];
if (self.shortcutValueChange) {
self.shortcutValueChange(self);
}
}
- (void)setShortcutPlaceholder:(NSString *)shortcutPlaceholder
{
_shortcutPlaceholder = shortcutPlaceholder.copy;
[self setNeedsDisplay:YES];
}
#pragma mark - Drawing
- (BOOL)isFlipped
{
return YES;
}
- (void)drawInRect:(CGRect)frame withTitle:(NSString *)title alignment:(NSTextAlignment)alignment state:(NSInteger)state
{
_shortcutCell.title = title;
_shortcutCell.alignment = alignment;
_shortcutCell.state = state;
_shortcutCell.enabled = self.enabled;
switch (_appearance) {
case MASShortcutViewAppearanceDefault: {
[_shortcutCell drawWithFrame:frame inView:self];
break;
}
case MASShortcutViewAppearanceTexturedRect: {
[_shortcutCell drawWithFrame:CGRectOffset(frame, 0.0, 1.0) inView:self];
break;
}
}
}
- (void)drawRect:(CGRect)dirtyRect
{
if (self.shortcutValue) {
[self drawInRect:self.bounds withTitle:MASShortcutChar(self.recording ? kMASShortcutGlyphEscape : kMASShortcutGlyphDeleteLeft)
alignment:NSRightTextAlignment state:NSOffState];
CGRect shortcutRect;
[self getShortcutRect:&shortcutRect hintRect:NULL];
NSString *title = (self.recording
? (_hinting
? NSLocalizedString(@"Use Old Shortuct", @"Cancel action button for non-empty shortcut in recording state")
: (self.shortcutPlaceholder.length > 0
? self.shortcutPlaceholder
: NSLocalizedString(@"Type New Shortcut", @"Non-empty shortcut button in recording state")))
: _shortcutValue ? _shortcutValue.description : @"");
[self drawInRect:shortcutRect withTitle:title alignment:NSCenterTextAlignment state:self.isRecording ? NSOnState : NSOffState];
}
else {
if (self.recording)
{
[self drawInRect:self.bounds withTitle:MASShortcutChar(kMASShortcutGlyphEscape) alignment:NSRightTextAlignment state:NSOffState];
CGRect shortcutRect;
[self getShortcutRect:&shortcutRect hintRect:NULL];
NSString *title = (_hinting
? NSLocalizedString(@"Cancel", @"Cancel action button in recording state")
: (self.shortcutPlaceholder.length > 0
? self.shortcutPlaceholder
: NSLocalizedString(@"Type Shortcut", @"Empty shortcut button in recording state")));
[self drawInRect:shortcutRect withTitle:title alignment:NSCenterTextAlignment state:NSOnState];
}
else
{
[self drawInRect:self.bounds withTitle:NSLocalizedString(@"Record Shortcut", @"Empty shortcut button in normal state")
alignment:NSCenterTextAlignment state:NSOffState];
}
}
}
#pragma mark - Mouse handling
- (void)getShortcutRect:(CGRect *)shortcutRectRef hintRect:(CGRect *)hintRectRef
{
CGRect shortcutRect, hintRect;
CGRectDivide(self.bounds, &hintRect, &shortcutRect, HINT_BUTTON_WIDTH, CGRectMaxXEdge);
if (shortcutRectRef) *shortcutRectRef = shortcutRect;
if (hintRectRef) *hintRectRef = hintRect;
}
- (BOOL)locationInShortcutRect:(CGPoint)location
{
CGRect shortcutRect;
[self getShortcutRect:&shortcutRect hintRect:NULL];
return CGRectContainsPoint(shortcutRect, [self convertPoint:location fromView:nil]);
}
- (BOOL)locationInHintRect:(CGPoint)location
{
CGRect hintRect;
[self getShortcutRect:NULL hintRect:&hintRect];
return CGRectContainsPoint(hintRect, [self convertPoint:location fromView:nil]);
}
- (void)mouseDown:(NSEvent *)event
{
if (self.enabled) {
if (self.shortcutValue) {
if (self.recording) {
if ([self locationInHintRect:event.locationInWindow]) {
self.recording = NO;
}
}
else {
if ([self locationInShortcutRect:event.locationInWindow]) {
self.recording = YES;
}
else {
self.shortcutValue = nil;
}
}
}
else {
if (self.recording) {
if ([self locationInHintRect:event.locationInWindow]) {
self.recording = NO;
}
}
else {
self.recording = YES;
}
}
}
else {
[super mouseDown:event];
}
}
#pragma mark - Handling mouse over
- (void)updateTrackingAreas
{
[super updateTrackingAreas];
if (_hintArea) {
[self removeTrackingArea:_hintArea];
_hintArea = nil;
}
// Forbid hinting if view is disabled
if (!self.enabled) return;
CGRect hintRect;
[self getShortcutRect:NULL hintRect:&hintRect];
NSTrackingAreaOptions options = (NSTrackingMouseEnteredAndExited | NSTrackingActiveAlways | NSTrackingAssumeInside);
_hintArea = [[NSTrackingArea alloc] initWithRect:hintRect options:options owner:self userInfo:nil];
[self addTrackingArea:_hintArea];
}
- (void)setHinting:(BOOL)flag
{
if (_hinting != flag) {
_hinting = flag;
[self setNeedsDisplay:YES];
}
}
- (void)mouseEntered:(NSEvent *)event
{
self.hinting = YES;
}
- (void)mouseExited:(NSEvent *)event
{
self.hinting = NO;
}
void *kUserDataShortcut = &kUserDataShortcut;
void *kUserDataHint = &kUserDataHint;
- (void)resetToolTips
{
if (_shortcutToolTipTag) {
[self removeToolTip:_shortcutToolTipTag], _shortcutToolTipTag = 0;
}
if (_hintToolTipTag) {
[self removeToolTip:_hintToolTipTag], _hintToolTipTag = 0;
}
if ((self.shortcutValue == nil) || self.recording || !self.enabled) return;
CGRect shortcutRect, hintRect;
[self getShortcutRect:&shortcutRect hintRect:&hintRect];
_shortcutToolTipTag = [self addToolTipRect:shortcutRect owner:self userData:kUserDataShortcut];
_hintToolTipTag = [self addToolTipRect:hintRect owner:self userData:kUserDataHint];
}
- (NSString *)view:(NSView *)view stringForToolTip:(NSToolTipTag)tag point:(CGPoint)point userData:(void *)data
{
if (data == kUserDataShortcut) {
return NSLocalizedString(@"Click to record new shortcut", @"Tooltip for non-empty shortcut button");
}
else if (data == kUserDataHint) {
return NSLocalizedString(@"Delete shortcut", @"Tooltip for hint button near the non-empty shortcut");
}
return nil;
}
#pragma mark - Event monitoring
- (void)activateEventMonitoring:(BOOL)shouldActivate
{
static BOOL isActive = NO;
if (isActive == shouldActivate) return;
isActive = shouldActivate;
static id eventMonitor = nil;
if (shouldActivate) {
__weak MASShortcutView *weakSelf = self;
NSEventMask eventMask = (NSKeyDownMask | NSFlagsChangedMask);
eventMonitor = [NSEvent addLocalMonitorForEventsMatchingMask:eventMask handler:^(NSEvent *event) {
MASShortcut *shortcut = [MASShortcut shortcutWithEvent:event];
if ((shortcut.keyCode == kVK_Delete) || (shortcut.keyCode == kVK_ForwardDelete)) {
// Delete shortcut
weakSelf.shortcutValue = nil;
weakSelf.recording = NO;
event = nil;
}
else if (shortcut.keyCode == kVK_Escape) {
// Cancel recording
weakSelf.recording = NO;
event = nil;
}
else if (shortcut.shouldBypass) {
// Command + W, Command + Q, ESC should deactivate recorder
weakSelf.recording = NO;
}
else {
// Verify possible shortcut
if (shortcut.keyCodeString.length > 0) {
if (shortcut.valid) {
// Verify that shortcut is not used
NSError *error = nil;
if ([shortcut isTakenError:&error]) {
// Prevent cancel of recording when Alert window is key
[weakSelf activateResignObserver:NO];
[weakSelf activateEventMonitoring:NO];
NSString *format = NSLocalizedString(@"The key combination %@ cannot be used",
@"Title for alert when shortcut is already used");
NSRunCriticalAlertPanel([NSString stringWithFormat:format, shortcut], error.localizedDescription,
NSLocalizedString(@"OK", @"Alert button when shortcut is already used"),
nil, nil);
weakSelf.shortcutPlaceholder = nil;
[weakSelf activateResignObserver:YES];
[weakSelf activateEventMonitoring:YES];
}
else {
weakSelf.shortcutValue = shortcut;
weakSelf.recording = NO;
}
}
else {
// Key press with or without SHIFT is not valid input
NSBeep();
}
}
else {
// User is playing with modifier keys
weakSelf.shortcutPlaceholder = shortcut.modifierFlagsString;
}
event = nil;
}
return event;
}];
}
else {
[NSEvent removeMonitor:eventMonitor];
}
}
- (void)activateResignObserver:(BOOL)shouldActivate
{
static BOOL isActive = NO;
if (isActive == shouldActivate) return;
isActive = shouldActivate;
static id observer = nil;
NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
if (shouldActivate) {
__weak MASShortcutView *weakSelf = self;
observer = [notificationCenter addObserverForName:NSWindowDidResignKeyNotification object:self.window
queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *notification) {
weakSelf.recording = NO;
}];
}
else {
[notificationCenter removeObserver:observer];
}
}
@end