forked from jessegrosjean/quickcursor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QCAppDelegate.m
395 lines (322 loc) · 15.3 KB
/
QCAppDelegate.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
//
// QCAppDelegate.m
// QuickCursor
//
// Created by Jesse Grosjean on 9/1/09.
// Copyright 2009 Hog Bay Software. All rights reserved.
//
#import "QCAppDelegate.h"
#import "PTHotKeyCenter.h"
#import "PTHotKey.h"
#import "QCUIElement.h"
#import "ODBEditor.h"
@implementation QCAppDelegate
+ (BOOL)universalAccessNeedsToBeTurnedOn {
if (!AXAPIEnabled()) {
NSString *message = NSLocalizedString(@"QuickCursor requires that you launch the Universal Access preferences pane and turn on \"Enable access for assistive devices\".", nil);
NSUInteger result = NSRunAlertPanel(message, @"", NSLocalizedString(@"OK", nil), NSLocalizedString(@"Quit QuickCursor", nil), NSLocalizedString(@"Cancel", nil));
switch (result) {
case NSAlertDefaultReturn:
[[NSWorkspace sharedWorkspace] openFile:@"/System/Library/PreferencePanes/UniversalAccessPref.prefPane"];
break;
case NSAlertAlternateReturn:
[NSApp terminate:self];
break;
}
return YES;
} else {
return NO;
}
}
- (NSArray *)validatedEditorMenuItems:(SEL)action {
static NSArray *cachedMenuItems = nil;
if (!cachedMenuItems) {
NSWorkspace *workspace = [NSWorkspace sharedWorkspace];
NSMutableArray *menuItems = [NSMutableArray array];
for (NSString *eachBundleID in [[NSBundle mainBundle] objectForInfoDictionaryKey:@"QCEditInChoices"]) {
NSString *bundlePath = [workspace absolutePathForAppBundleWithIdentifier:eachBundleID];
if (bundlePath) {
NSString *bundleName = [[NSBundle bundleWithPath:bundlePath] objectForInfoDictionaryKey:@"CFBundleName"]; // seems to be nil in some cases.
if (!bundleName) {
bundleName = [[bundlePath lastPathComponent] stringByDeletingPathExtension];
}
if ([eachBundleID isEqualToString:@"org.gnu.Aquamacs"]) {
bundleName = [bundleName stringByAppendingString:@" 2.2+"];
}
NSMenuItem *eachMenuItem = [[[NSMenuItem alloc] initWithTitle:bundleName action:NULL keyEquivalent:@""] autorelease];
[eachMenuItem setRepresentedObject:eachBundleID];
[eachMenuItem setIndentationLevel:1];
NSImage *icon = [workspace iconForFile:bundlePath];
[icon setSize:NSMakeSize(16, 16)];
[eachMenuItem setImage:icon];
[menuItems addObject:eachMenuItem];
}
}
[menuItems sortUsingDescriptors:[NSArray arrayWithObject:[[[NSSortDescriptor alloc] initWithKey:@"title" ascending:YES] autorelease]]];
cachedMenuItems = [menuItems retain];
}
NSMutableArray *results = [NSMutableArray array];
for (NSMenuItem *each in cachedMenuItems) {
NSMenuItem *eachCopy = [[each copy] autorelease];
[eachCopy setTarget:self];
[eachCopy setAction:action];
[results addObject:eachCopy];
}
return results;
}
- (void)updateHotKeys {
PTHotKeyCenter *hotKeyCenter = [PTHotKeyCenter sharedCenter];
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
for (PTHotKey *each in registeredHotKeys) {
[hotKeyCenter unregisterHotKey:each];
}
[registeredHotKeys removeAllObjects];
for (NSMenuItem *each in [self validatedEditorMenuItems:NULL]) {
id eachKeyComboPlist = [userDefaults objectForKey:[each representedObject]];
if (eachKeyComboPlist) {
PTKeyCombo *keyCombo = [[[PTKeyCombo alloc] initWithPlistRepresentation:eachKeyComboPlist] autorelease];
PTHotKey *hotKey = [[[PTHotKey alloc] initWithIdentifier:[each representedObject] keyCombo:keyCombo] autorelease];
[hotKey setTarget:self];
[hotKey setAction:@selector(beginQuickCursorEdit:)];
[hotKeyCenter registerHotKey:hotKey];
[registeredHotKeys addObject:hotKey];
}
}
}
- (BOOL)validateMenuItem:(NSMenuItem *)anItem {
if ([anItem action] == @selector(beginQuickCursorEdit:)) {
id keyComboPlist = [[NSUserDefaults standardUserDefaults] objectForKey:[anItem representedObject]];
BOOL clear = YES;
if (keyComboPlist) {
PTKeyCombo *keyComboObject = [[[PTKeyCombo alloc] initWithPlistRepresentation:keyComboPlist] autorelease];
if ([keyComboObject keyCode] != -1) {
[anItem setKeyEquivalent:[SRStringForKeyCode([keyComboObject keyCode]) lowercaseString]];
[anItem setKeyEquivalentModifierMask:SRCarbonToCocoaFlags([keyComboObject modifiers])];
clear = NO;
}
}
if (clear) {
[anItem setKeyEquivalent:@""];
[anItem setKeyEquivalentModifierMask:0];
}
}
return YES;
}
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
//NSMenu *m = [NSApp mainMenu];
quickCursorSessionQCUIElements = [[NSMutableSet alloc] init];
registeredHotKeys = [[NSMutableArray alloc] init];
[QCAppDelegate universalAccessNeedsToBeTurnedOn];
quickCursorStatusItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength] retain];
NSImage *image = [NSImage imageNamed:@"StatusItemIcon.png"];
[image setTemplate:YES];
[quickCursorStatusItem setImage:image];
[quickCursorStatusItem setHighlightMode:YES];
NSMenu *quickCursorMenu = [[[NSMenu alloc] init] autorelease];
[quickCursorMenu addItemWithTitle:NSLocalizedString(@"Edit In...", nil) action:NULL keyEquivalent:@""];
NSArray *supportedAppsMenuItems = [self validatedEditorMenuItems:@selector(beginQuickCursorEdit:)];
if ([supportedAppsMenuItems count] > 0) {
for (NSMenuItem *each in supportedAppsMenuItems) {
[quickCursorMenu addItem:each];
}
} else {
[quickCursorMenu addItemWithTitle:NSLocalizedString(@"No Supported Text Editors Found", nil) action:nil keyEquivalent:@""];
[[[quickCursorMenu itemArray] lastObject] setIndentationLevel:1];
}
[quickCursorMenu addItem:[NSMenuItem separatorItem]];
NSMenuItem *helpMenuItem = [[[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Help", nil) action:@selector(showHelp:) keyEquivalent:@""] autorelease];
[helpMenuItem setTarget:self];
[quickCursorMenu addItem:helpMenuItem];
NSMenuItem *aboutMenuItem = [[[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"About", nil) action:@selector(showAbout:) keyEquivalent:@""] autorelease];
[aboutMenuItem setTarget:self];
[quickCursorMenu addItem:aboutMenuItem];
NSMenuItem *preferencesMenuItem = [[[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Preferences...", nil) action:@selector(showPreferences:) keyEquivalent:@","] autorelease];
[preferencesMenuItem setTarget:self];
[quickCursorMenu addItem:preferencesMenuItem];
[quickCursorMenu addItem:[NSMenuItem separatorItem]];
NSMenuItem *quitMenuItem = [[[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Quit", nil) action:@selector(terminate:) keyEquivalent:@"q"] autorelease];
[quitMenuItem setTarget:NSApp];
[quickCursorMenu addItem:quitMenuItem];
[quickCursorStatusItem setMenu:quickCursorMenu];
[self updateHotKeys];
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
if (![userDefaults boolForKey:@"SuppressWelcomeDefaultKey"]) {
NSAlert *alert = [NSAlert alertWithMessageText:NSLocalizedString(@"Welcome to QuickCursor", nil)
defaultButton:NSLocalizedString(@"OK", nil)
alternateButton:nil
otherButton:nil
informativeTextWithFormat:NSLocalizedString(@"QuickCursor runs in the OS X menu bar. To use and configure QuickCursor click its menu bar icon.", nil)];
[alert setShowsSuppressionButton:YES];
[alert runModal];
if ([[alert suppressionButton] state] == NSOnState) {
[userDefaults setBool:YES forKey:@"SuppressWelcomeDefaultKey"];
}
}
}
#pragma mark Actions
- (BOOL)enableLoginItem {
NSString *bundleName = [[[NSBundle mainBundle] bundlePath] lastPathComponent];
LSSharedFileListRef loginItems = LSSharedFileListCreate(NULL, kLSSharedFileListSessionLoginItems, NULL);
BOOL result = NO;
// 1. Remove everything.
CFURLRef thePath;
UInt32 seedValue;
NSArray *loginItemsArray = (NSArray *)LSSharedFileListCopySnapshot(loginItems, &seedValue);
for (id item in loginItemsArray) {
LSSharedFileListItemRef itemRef = (LSSharedFileListItemRef)item;
if (LSSharedFileListItemResolve(itemRef, 0, (CFURLRef*) &thePath, NULL) == noErr) {
if ([[(NSURL *)thePath path] hasSuffix:bundleName])
result = YES;
}
}
[loginItemsArray release];
CFRelease(loginItems);
return result;
}
- (void)setEnableLoginItem:(BOOL)aBOOL {
NSString *bundlePath = [[NSBundle mainBundle] bundlePath];
CFURLRef bundlePathURL = (CFURLRef)[NSURL fileURLWithPath:bundlePath];
NSString *bundleName = [bundlePath lastPathComponent];
LSSharedFileListRef loginItems = LSSharedFileListCreate(NULL, kLSSharedFileListSessionLoginItems, NULL);
// 1. Remove everything.
CFURLRef thePath;
UInt32 seedValue;
NSArray *loginItemsArray = (NSArray *)LSSharedFileListCopySnapshot(loginItems, &seedValue);
for (id item in loginItemsArray) {
LSSharedFileListItemRef itemRef = (LSSharedFileListItemRef)item;
if (LSSharedFileListItemResolve(itemRef, 0, (CFURLRef*) &thePath, NULL) == noErr) {
if ([[(NSURL *)thePath path] hasSuffix:bundleName])
LSSharedFileListItemRemove(loginItems, itemRef); // Deleting the item
}
}
[loginItemsArray release];
// 2. Add back if needed.
if (aBOOL) {
LSSharedFileListItemRef item = LSSharedFileListInsertItemURL(loginItems, kLSSharedFileListItemLast, NULL, NULL, bundlePathURL, NULL, NULL);
if (item) {
CFRelease(item);
}
}
CFRelease(loginItems);
}
- (IBAction)showAbout:(id)sender {
[NSApp activateIgnoringOtherApps:YES];
[NSApp orderFrontStandardAboutPanel:sender];
}
- (IBAction)showPreferences:(id)sender {
if ([editInPopUpButton numberOfItems] == 0) {
[shortcutRecorder setCanCaptureGlobalHotKeys:YES];
[shortcutRecorder setDelegate:self];
for (NSMenuItem *each in [self validatedEditorMenuItems:NULL]) {
[[editInPopUpButton menu] addItem:each];
}
[self editInPopUpButtonClicked:nil];
if ([editInPopUpButton numberOfItems] == 0) {
[editInPopUpButton setEnabled:NO];
[shortcutRecorder setEnabled:NO];
}
}
[NSApp activateIgnoringOtherApps:YES];
[preferencesWindow center];
[preferencesWindow makeKeyAndOrderFront:sender];
}
- (IBAction)showHelp:(id)sender {
[[NSWorkspace sharedWorkspace] openFile:[[NSBundle mainBundle] pathForResource:@"QuickCursor User's Guide" ofType:@"pdf"]];
}
- (IBAction)editInPopUpButtonClicked:(id)sender {
id clicked = [[editInPopUpButton selectedItem] representedObject];
if (clicked) {
id keyComboPlist = [[NSUserDefaults standardUserDefaults] objectForKey:clicked];
if (keyComboPlist) {
KeyCombo keyCombo;
PTKeyCombo *keyComboObject = [[[PTKeyCombo alloc] initWithPlistRepresentation:keyComboPlist] autorelease];
keyCombo.code = [keyComboObject keyCode];
keyCombo.flags = [shortcutRecorder carbonToCocoaFlags:[keyComboObject modifiers]];
[shortcutRecorder setKeyCombo:keyCombo];
} else {
[shortcutRecorder setKeyCombo:SRMakeKeyCombo(ShortcutRecorderEmptyCode, ShortcutRecorderEmptyFlags)];
}
}
}
- (IBAction)beginQuickCursorEdit:(id)sender {
if ([QCAppDelegate universalAccessNeedsToBeTurnedOn]) {
return;
}
NSString *bundleID = nil;
if ([sender isKindOfClass:[NSMenuItem class]]) {
bundleID = [sender representedObject];
} else {
bundleID = [sender identifier];
}
QCUIElement *focusedElement = [QCUIElement focusedElement];
QCUIElement *sourceApplicationElement = [focusedElement application];
NSString *editString = [sourceApplicationElement readString];
NSString *processName = [sourceApplicationElement processName];
if (editString) {
NSDictionary *context = [NSDictionary dictionaryWithObjectsAndKeys:sourceApplicationElement, @"sourceApplicationElement", bundleID, @"editorBundleID", editString, @"originalString", processName, @"processName", nil];
NSString *windowTitle = focusedElement.window.title;
NSString *correctedWindowTitle = [windowTitle stringByReplacingOccurrencesOfString:@"/" withString:@":"];
NSString *editorCustomPath = [NSString stringWithFormat:@"%@ - %@", processName, correctedWindowTitle];
[[ODBEditor sharedODBEditor] setEditorBundleIdentifier:bundleID];
[[ODBEditor sharedODBEditor] editString:editString options:[NSDictionary dictionaryWithObject:editorCustomPath forKey:ODBEditorCustomPathKey] forClient:self context:context];
} else {
[[NSAlert alertWithMessageText:[NSString stringWithFormat:NSLocalizedString(@"Could not copy text from %@", nil), processName]
defaultButton:NSLocalizedString(@"OK", nil)
alternateButton:nil
otherButton:nil
informativeTextWithFormat:[NSString stringWithFormat:NSLocalizedString(@"QuickCursor could not copy text from %@. Please make sure that a text area has focus and try again.", nil), processName]] runModal];
}
}
#pragma mark ODBEditor Callbacks
- (void)odbEditor:(ODBEditor *)editor didModifyFile:(NSString *)path newFileLocation:(NSString *)newPath context:(NSDictionary *)context {
// never seems to be called.
}
- (void)odbEditor:(ODBEditor *)editor didClosefile:(NSString *)path context:(NSDictionary *)context; {
// never seems to be called.
}
- (void)odbEditor:(ODBEditor *)editor didModifyFileForString:(NSString *)newString context:(NSDictionary *)context; {
// HACK TextMate doesn't sedn a didCloseFile event when a file is closed as the result of the application shutdown process.
// But it does send a didModifyFile event, so here I'm catching that event and if the application is no longer running then I paste
// text back into source app... This test still has issues (user saves in textmate, then quite app after save), so commenting out for now. Darn TextMate!
/*NSString *editorBundleID = [context valueForKey:@"editorBundleID"];
if ([editorBundleID isEqualToString:@"com.macromates.textmate"]) {
NSRunningApplication *runingEditorApplication = [[NSRunningApplication runningApplicationsWithBundleIdentifier:editorBundleID] lastObject];
if (runingEditorApplication) {
NSLog(@"%@ is still running", editorBundleID);
} else {
NSLog(@"%@ is not still running", editorBundleID);
}
}*/
}
- (void)odbEditor:(ODBEditor *)editor didCloseFileForString:(NSString *)newString context:(NSDictionary *)context; {
QCUIElement *sourceApplicationElement = [context valueForKey:@"sourceApplicationElement"];
NSString *originalString = [context valueForKey:@"originalString"];
NSString *processName = [context valueForKey:@"processName"];
if (![originalString isEqualToString:newString]) {
if (![sourceApplicationElement writeString:newString]) {
NSBeep();
[NSApp activateIgnoringOtherApps:YES];
[[NSAlert alertWithMessageText:[NSString stringWithFormat:NSLocalizedString(@"Could not paste text back into %@", nil), processName]
defaultButton:NSLocalizedString(@"OK", nil)
alternateButton:nil
otherButton:nil
informativeTextWithFormat:NSLocalizedString(@"Your edited text has been saved to the clipboard and can be pasted into another application.", nil)] runModal];
}
} else {
[sourceApplicationElement activateProcess];
}
}
#pragma mark shortcutRecorder Delegate
- (BOOL)shortcutRecorder:(SRRecorderControl *)aRecorder isKeyCode:(NSInteger)keyCode andFlagsTaken:(NSUInteger)flags reason:(NSString **)aReason {
return NO;
}
- (void)shortcutRecorder:(SRRecorderControl *)aRecorder keyComboDidChange:(KeyCombo)newKeyCombo {
signed short code = newKeyCombo.code;
unsigned int flags = [aRecorder cocoaToCarbonFlags:newKeyCombo.flags];
PTKeyCombo *keyCombo = [[[PTKeyCombo alloc] initWithKeyCode:code modifiers:flags] autorelease];
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
[userDefaults setObject:[keyCombo plistRepresentation] forKey:[[editInPopUpButton selectedItem] representedObject]];
[self updateHotKeys];
[userDefaults synchronize];
}
@end