-
Notifications
You must be signed in to change notification settings - Fork 11
/
TSServiceAppFilterWindowController.m
450 lines (360 loc) · 15 KB
/
TSServiceAppFilterWindowController.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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
//
// TSServiceAppFilterWindowController.m
// ThisService
//
// Created by Jesper on 2012-07-01.
// Copyright 2012 waffle software. All rights reserved.
// BSD licensed - see license.txt for more information.
//
//
#import "TSServiceAppFilterWindowController.h"
#import "TSServiceAppFilter.h"
#import "NSWorkspace+SmallIcon.h"
@interface TSServiceAppFilterEntry : NSObject {
NSString *_appID;
NSString *_name;
NSImage *_appIcon;
}
@property (retain) NSString *appID;
@property (retain) NSString *name;
@property (retain) NSImage *appIcon;
+ (TSServiceAppFilterEntry *)entryWithAppID:(NSString *)appID;
+ (TSServiceAppFilterEntry *)entryWithAppAtURL:(NSURL *)appURL;
- (TSServiceAppFilterEntry *)initWithAppID:(NSString *)appID name:(NSString *)name appIcon:(NSImage *)appIcon;
- (NSComparisonResult)compareEntry:(TSServiceAppFilterEntry *)other;
@end
@implementation TSServiceAppFilterEntry
@synthesize appID=_appID, name=_name, appIcon=_appIcon;
- (NSComparisonResult)compareEntry:(TSServiceAppFilterEntry *)other {
SEL maybeAvailableCompareSelector = @selector(localizedStandardCompare:);
NSComparisonResult nameComparison;
if ([NSString instancesRespondToSelector:maybeAvailableCompareSelector]) {
nameComparison = [self.name localizedStandardCompare:other.name];
} else {
nameComparison = [self.name localizedCaseInsensitiveCompare:other.name];
}
if (nameComparison != NSOrderedSame) return nameComparison;
return [self.appID compare:other.appID options:NSCaseInsensitiveSearch];
}
- (TSServiceAppFilterEntry *)initWithAppID:(NSString *)appID name:(NSString *)name appIcon:(NSImage *)appIcon
{
self = [super init];
if (self) {
_appID = [appID retain];
_name = [name retain];
_appIcon = [appIcon retain];
}
return self;
}
+ (TSServiceAppFilterEntry *)entryWithAppID:(NSString *)appID url:(NSURL *)url {
if (!appID) return nil;
if (url) {
NSString *path = [url path];
NSImage *icon = [[NSWorkspace sharedWorkspace] smallIconForFileAtPath:path];
NSString *name = [[NSFileManager defaultManager] displayNameAtPath:path];
return [[[self alloc] initWithAppID:appID name:name appIcon:icon] autorelease];
} else {
return [[[self alloc] initWithAppID:appID name:nil appIcon:nil] autorelease];
}
}
+ (TSServiceAppFilterEntry *)entryWithAppID:(NSString *)appID {
NSURL *url = [[NSWorkspace sharedWorkspace] URLForApplicationWithBundleIdentifier:appID];
return [self entryWithAppID:appID url:url];
}
+ (TSServiceAppFilterEntry *)entryWithAppAtURL:(NSURL *)appURL {
NSString *extension = [[appURL path] pathExtension];
if (![extension isEqualToString:@"app"]) return nil;
NSBundle *bundle = [NSBundle bundleWithURL:appURL];
if (bundle) {
NSString *identifier = [bundle bundleIdentifier];
if (identifier) {
return [self entryWithAppID:identifier];
}
}
return nil;
}
@end
@interface TSServiceAppFilterWindowController ()
@end
@implementation TSServiceAppFilterWindowController
@synthesize applicationDropDown;
@synthesize okButton;
@synthesize tableView;
- (id)initWithWindow:(NSWindow *)window
{
self = [super initWithWindow:window];
if (self) {
// Initialization code here.
}
return self;
}
- (void)setInitialAppFilter:(TSServiceAppFilter *)anInitialAppFilter {
initialAppFilter = [anInitialAppFilter retain];
}
- (void)setEditor:(id<TSServiceAppFilterWindowControllerDelegate>)newEditor {
editor = newEditor;
}
- (void)setApps:(NSMutableArray *)newApps {
[apps autorelease];
apps = [newApps retain];
NSMutableSet *newAppIDsInUse = [NSMutableSet set];
for (TSServiceAppFilterEntry *entry in apps) {
[newAppIDsInUse addObject:entry.appID];
}
// [okButton setEnabled:enabled];
[appIDsInUse autorelease];
appIDsInUse = [newAppIDsInUse retain];
}
-(void)awakeFromNib {
// [okButton setEnabled:NO];
NSSet *appIDs = (initialAppFilter == nil ? [NSSet set] : initialAppFilter.applicationIdentifiers);
NSMutableArray *appsByName = [NSMutableArray array];
for (NSString *appID in appIDs) {
TSServiceAppFilterEntry *entry = [TSServiceAppFilterEntry entryWithAppID:appID];
if (entry) {
[appsByName addObject:entry];
}
}
[appsByName sortUsingSelector:@selector(compareEntry:)];
[self setApps:appsByName];
[tableView registerForDraggedTypes:[NSArray arrayWithObjects:NSFilenamesPboardType, NSURLPboardType, nil]];
NSFileManager *fm = [NSFileManager defaultManager];
NSArray *candidates = [NSArray arrayWithObjects:@"/Applications", @"/Applications/Utilities", [@"~/Applications" stringByExpandingTildeInPath], nil];
NSMutableArray *entries = [NSMutableArray array];
for (NSString *path in candidates) {
NSArray *folderenum = [fm contentsOfDirectoryAtPath:path error:NULL];
if (!folderenum) continue;
for (NSString *filename in folderenum) {
if (![[filename pathExtension] isEqualToString:@"app"]) continue;
NSString *fullPath = [path stringByAppendingPathComponent:filename];
BOOL isDir;
if (![fm fileExistsAtPath:fullPath isDirectory:&isDir] || !isDir) continue;
NSURL *fileURL = [NSURL fileURLWithPath:fullPath];
TSServiceAppFilterEntry *entry = [TSServiceAppFilterEntry entryWithAppAtURL:fileURL];
if (!entry) continue;
[entries addObject:entry];
}
}
NSWorkspace *workspace = [NSWorkspace sharedWorkspace];
NSURL *urlToFinder = [workspace URLForApplicationWithBundleIdentifier:@"com.apple.Finder"];
if (urlToFinder) {
TSServiceAppFilterEntry *entryToFinder = [TSServiceAppFilterEntry entryWithAppAtURL:urlToFinder];
[entries addObject:entryToFinder];
}
[entries sortUsingSelector:@selector(compareEntry:)];
NSMenu *menu = [applicationDropDown menu];
NSInteger numberOfItems = [menu numberOfItems];
for (NSInteger menuIndex = 1; menuIndex < numberOfItems; menuIndex++) {
NSInteger yesLiterallyTheIndexOne = 1;
[menu removeItemAtIndex:yesLiterallyTheIndexOne];
}
for (TSServiceAppFilterEntry *entry in entries) {
NSMenuItem *menuItem = [[[NSMenuItem alloc] initWithTitle:entry.name action:@selector(addApplication:) keyEquivalent:@""] autorelease];
[menuItem setRepresentedObject:entry];
[menuItem setImage:[workspace smallIconForFileAtPath:[[workspace URLForApplicationWithBundleIdentifier:entry.appID] path]]];
[menu addItem:menuItem];
}
}
-(BOOL)validateMenuItem:(NSMenuItem *)menuItem {
if (menuItem.action == @selector(addApplication:)) {
TSServiceAppFilterEntry *entry = menuItem.representedObject;
return !([appIDsInUse containsObject:entry.appID]);
}
return [super validateMenuItem:menuItem];
}
- (void)addApplication:(id)sender {
NSMenuItem *item = sender;
TSServiceAppFilterEntry *newEntry = [item representedObject];
NSMutableArray *allCurrentApps = [[apps mutableCopy] autorelease];
BOOL added = NO;
for (TSServiceAppFilterEntry *existingEntry in allCurrentApps) {
if ([existingEntry.appID isEqualToString:newEntry.appID]) {
newEntry = nil;
break;
}
}
if (newEntry) {
[allCurrentApps addObject:newEntry];
added = YES;
}
if (!added) return;
[allCurrentApps sortUsingSelector:@selector(compareEntry:)];
[self setApps:allCurrentApps];
[tableView reloadData];
[tableView deselectAll:nil];
[self willChangeValueForKey:@"canDelete"];
[self didChangeValueForKey:@"canDelete"];
return;
}
- (void)tableViewSelectionDidChange:(NSNotification *)aNotification {
[self willChangeValueForKey:@"canDelete"];
[self didChangeValueForKey:@"canDelete"];
}
+ (NSSet *)keyPathsForValuesAffectingCanDelete {
return [NSSet setWithObject:@"tableView.selectedRow"];
}
- (BOOL)canDelete {
if (!apps) return NO;
NSInteger appCount = [apps count];
if (appCount == 0) return NO;
return [[tableView selectedRowIndexes] count] > 0;
}
- (void)deleteSelectedRows {
NSIndexSet *selectedRows = [tableView selectedRowIndexes];
if (selectedRows && [selectedRows count]) {
NSMutableArray *newApps = [apps mutableCopy];
[newApps removeObjectsAtIndexes:selectedRows];
[self setApps:[newApps autorelease]];
[tableView reloadData];
if ([[tableView selectedRowIndexes] count] > 1) {
[tableView deselectAll:nil];
}
if ([apps count] == 0) {
[tableView deselectAll:nil];
}
}
[self willChangeValueForKey:@"canDelete"];
[self didChangeValueForKey:@"canDelete"];
}
-(BOOL)tableView:(NSTableView *)aTableView acceptDrop:(id<NSDraggingInfo>)info row:(NSInteger)row dropOperation:(NSTableViewDropOperation)dropOperation {
NSPasteboard *pboard = [info draggingPasteboard];
NSMutableArray *candidateApps = [NSMutableArray array];
if ([[pboard types] containsObject:NSFilenamesPboardType]) {
NSArray *files = [pboard propertyListForType:NSFilenamesPboardType];
for (NSString *path in files) {
if ([[path pathExtension] isEqualToString:@"app"]) {
[candidateApps addObject:path];
}
}
} else if ( [[pboard types] containsObject:NSURLPboardType] ) {
NSURL *fileURL = [NSURL URLFromPasteboard:pboard];
if ([[[fileURL path] pathExtension] isEqualToString:@"app"]) {
[candidateApps addObject:[fileURL path]];
}
}
NSMutableArray *allCurrentApps = [[apps mutableCopy] autorelease];
BOOL added = NO;
for (NSString *capp in candidateApps) {
TSServiceAppFilterEntry *newEntry = [TSServiceAppFilterEntry entryWithAppAtURL:[NSURL fileURLWithPath:capp]];
for (TSServiceAppFilterEntry *existingEntry in allCurrentApps) {
if ([existingEntry.appID isEqualToString:newEntry.appID]) {
newEntry = nil;
break;
}
}
if (newEntry) {
[allCurrentApps addObject:newEntry];
added = YES;
}
}
if (!added) return NO;
[allCurrentApps sortUsingSelector:@selector(compareEntry:)];
[self setApps:allCurrentApps];
[tableView reloadData];
[tableView deselectAll:nil];
[self willChangeValueForKey:@"canDelete"];
[self didChangeValueForKey:@"canDelete"];
return YES;
}
- (NSDragOperation)tableView:(NSTableView *)aTableView validateDrop:(id < NSDraggingInfo >)info proposedRow:(NSInteger)row proposedDropOperation:(NSTableViewDropOperation)operation {
NSPasteboard *pboard = [info draggingPasteboard];
NSMutableArray *candidateApps = [NSMutableArray array];
if ([[pboard types] containsObject:NSFilenamesPboardType]) {
NSArray *files = [pboard propertyListForType:NSFilenamesPboardType];
for (NSString *path in files) {
if ([[path pathExtension] isEqualToString:@"app"]) {
[candidateApps addObject:path];
}
}
} else if ( [[pboard types] containsObject:NSURLPboardType] ) {
NSURL *fileURL = [NSURL URLFromPasteboard:pboard];
if ([[[fileURL path] pathExtension] isEqualToString:@"app"]) {
[candidateApps addObject:[fileURL path]];
}
}
for (NSString *capp in candidateApps) {
TSServiceAppFilterEntry *newEntry = [TSServiceAppFilterEntry entryWithAppAtURL:[NSURL fileURLWithPath:capp]];
for (TSServiceAppFilterEntry *existingEntry in apps) {
if ([existingEntry.appID isEqualToString:newEntry.appID]) {
newEntry = nil;
break;
}
}
if (newEntry) {
NSMutableArray *allCurrentApps = [[apps mutableCopy] autorelease];
[allCurrentApps addObject:newEntry];
[allCurrentApps sortUsingSelector:@selector(compareEntry:)];
NSUInteger idxOfNew = [allCurrentApps indexOfObject:newEntry];
if (idxOfNew != NSNotFound) {
[tableView setDropRow:idxOfNew dropOperation:NSTableViewDropAbove];
return NSDragOperationCopy;
}
}
}
return NSDragOperationNone;
}
- (void)windowDidLoad
{
[super windowDidLoad];
// Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
}
- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView {
NSInteger appCount = [apps count];
if (appCount == 0) return 1;
return appCount;
}
- (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
NSInteger appCount = [apps count];
BOOL emptyRow = (appCount == 0);
TSServiceAppFilterEntry *entry = (emptyRow ? nil : [apps objectAtIndex:row]);
NSUInteger idxOfColumn = [[tableView tableColumns] indexOfObject:tableColumn];
if (idxOfColumn == 0) {
if (emptyRow) return nil;
return entry.appIcon;
} else if (idxOfColumn == 1) {
if (emptyRow) return @"All applications";
if (!entry.name) return @"?";
return entry.name;
} else if (idxOfColumn == 2) {
if (emptyRow) return @"";
return entry.appID;
}
return nil;
}
- (NSIndexSet *)tableView:(NSTableView *)tableView selectionIndexesForProposedSelection:(NSIndexSet *)proposedSelectionIndexes {
NSInteger appCount = [apps count];
BOOL emptyRow = (appCount == 0);
[self willChangeValueForKey:@"canDelete"];
[self didChangeValueForKey:@"canDelete"];
if (emptyRow) return [NSIndexSet indexSet];
return proposedSelectionIndexes;
}
- (void)tableView:(NSTableView *)aTableView willDisplayCell:(id)aCell forTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
if (tableColumn == nil) return;
NSInteger appCount = [apps count];
BOOL emptyRow = (appCount == 0);
BOOL emptyRowOrNoName = emptyRow ? YES : ((TSServiceAppFilterEntry *)[apps objectAtIndex:row]).name == nil;
NSUInteger idxOfColumn = [[tableView tableColumns] indexOfObject:tableColumn];
if (idxOfColumn == 1) {
NSColor *color = (emptyRowOrNoName ? [[NSColor textColor] colorWithAlphaComponent:0.6] : [NSColor textColor]);
[aCell setTextColor:color];
}
}
- (IBAction)done:(id)sender {
NSSet *appIDs = [NSSet setWithArray:[apps valueForKey:@"appID"]];
TSServiceAppFilter *appFilter = appIDs.count == 0 ? nil : [TSServiceAppFilter appFilterWithApplicationIdentifiers:appIDs];
[editor serviceAppFilterWindowController:self savedChanges:appFilter];
}
- (IBAction)cancel:(id)sender {
[editor serviceAppFilterWindowControllerCancelled:self];
}
- (IBAction)deleteSelectedRowsByButton:(id)sender {
[self deleteSelectedRows];
}
- (void)dealloc {
[apps release];
[appIDsInUse release];
[initialAppFilter release];
[super dealloc];
}
@end