-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathApplicationController.m
More file actions
149 lines (120 loc) · 3.57 KB
/
ApplicationController.m
File metadata and controls
149 lines (120 loc) · 3.57 KB
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
/**
* ApplicationController.m
* DropScript
*
* Created by Wilfredo S‡nchez on Sun May 02 2004.
* Copyright (c) 2004 Wilfredo S‡nchez Vega. All rights reserved.
**/
#import <Cocoa/Cocoa.h>
#import "ApplicationController.h"
@implementation ApplicationController
/**
* Inits
**/
- (id) init
{
if ((self = [super init]))
{
myAppIsLaunching = YES;
myAppWasLaunchedWithDocument = NO;
myScriptFilename = [[[NSBundle mainBundle] pathForResource:@"drop_script" ofType:nil] retain];
if (!myScriptFilename)
{
NSRunAlertPanel(@"Error", @"Missing script.", @"Bummer", nil, nil);
[NSApp terminate: self];
}
// Provide application services
// From http://stackoverflow.com/questions/49510/how-do-you-set-your-cocoa-application-as-the-default-web-browser
[NSApp setServicesProvider: self];
NSAppleEventManager *em = [NSAppleEventManager sharedAppleEventManager];
[em
setEventHandler:self
andSelector:@selector(handleURIEvent:withReplyEvent:)
forEventClass:kInternetEventClass
andEventID:kAEGetURL];
}
return self;
}
- (void) dealloc
{
[myScriptFilename release];
[super dealloc];
}
/**
* Actions
**/
- (void) runScriptWithArguments: (NSArray*) anArguments
{
[NSTask launchedTaskWithLaunchPath: myScriptFilename
arguments: anArguments];
}
/**
* IB Targets
**/
- (IBAction) open: (id) aSender
{
NSOpenPanel* anOpenPanel = [NSOpenPanel openPanel];
[anOpenPanel setCanChooseFiles : YES];
[anOpenPanel setCanChooseDirectories : YES];
[anOpenPanel setAllowsMultipleSelection: YES];
if ([anOpenPanel runModalForTypes:nil] == NSOKButton)
{
[self runScriptWithArguments: [anOpenPanel filenames]];
}
}
/**
* Application delegate
**/
- (BOOL) application: (NSApplication*) anApplication
openFile: (NSString* ) aFileName
{
if (myAppIsLaunching) myAppWasLaunchedWithDocument = YES;
if (myFilesToBatch == nil)
{
myFilesToBatch = [[NSMutableArray alloc] init];
[self performSelector: @selector(_delayedOpenFile:) withObject: nil afterDelay: 0];
}
[myFilesToBatch addObject: aFileName];
return YES;
}
- (void) _delayedOpenFile: (id) anObject
{
[self runScriptWithArguments: myFilesToBatch];
[myFilesToBatch release];
myFilesToBatch = nil;
if (myAppWasLaunchedWithDocument) [NSApp terminate: self];
}
- (void) applicationDidFinishLaunching: (NSNotification*) aNotification
{
myAppIsLaunching = NO;
}
/**
* Services
**/
- (void) dropService: (NSPasteboard*) aPasteBoard
userData: (NSString* ) aUserData
error: (NSString** ) anError
{
NSArray* aTypes = [aPasteBoard types];
id aData = nil;
if ([aTypes containsObject: NSFilenamesPboardType] &&
(aData = [aPasteBoard propertyListForType: NSFilenamesPboardType]))
{
[self runScriptWithArguments: aData];
}
else
{
*anError = @"Unknown data type in pasteboard.";
NSLog(@"Service invoked with no valid pasteboard data.", 0);
}
}
- (void)handleURIEvent:(NSAppleEventDescriptor *)event
withReplyEvent:(NSAppleEventDescriptor *)replyEvent
{
NSString *urlStr = [[event paramDescriptorForKeyword:keyDirectObject]
stringValue];
NSMutableArray *urls = [[NSMutableArray alloc] init];
[urls addObject: urlStr];
[self runScriptWithArguments: urls];
}
@end