forked from edenwaith/GUI-Tar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWinController.m
More file actions
547 lines (479 loc) · 18.7 KB
/
Copy pathWinController.m
File metadata and controls
547 lines (479 loc) · 18.7 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
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
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
// Copyright 2003-2011 Chad Armstrong <support@edenwaith.com>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library. If not, see <http://www.gnu.org/licenses/>.
#import "WinController.h"
@implementation WinController
// =========================================================================
// (id) init
// -------------------------------------------------------------------------
// Version: 28. January 2004
// Created: Summer 2003
// =========================================================================
- (id) init
{
if (self = [super init])
{
timer = nil;
file_list = [[NSMutableArray alloc] initWithCapacity: 10];
outputString = [[NSMutableString alloc] init];
[self checkOSVersion];
}
return self;
}
// =========================================================================
// (void) dealloc
// -------------------------------------------------------------------------
// Created: 18 January 2009 0:08
// Version: 18 January 2009 0:08
// =========================================================================
- (void) dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver: self name: NSWindowWillCloseNotification object: window];
[outputFile closeFile];
[outputString release];
[preferenceController release];
[consoleController release];
[super dealloc];
}
// =========================================================================
// (void) awakeFromNib
// -------------------------------------------------------------------------
// Version: 18. March 2004 2:02
// Created: Summer 2003
// =========================================================================
- (void) awakeFromNib
{
[window center];
if ( [ [[tabView selectedTabViewItem] label] isEqual: @"Extractor"] )
{
[self windowShrink];
}
if ([[NSUserDefaults standardUserDefaults] objectForKey:@"ConsoleLogOpen"] != nil)
{
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"ConsoleLogOpen"] == YES)
{
[self toggleConsoleLog:nil];
}
}
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(windowsClosing:)
name:NSWindowWillCloseNotification
object:window];
}
// =========================================================================
// (void) windowsClosing: (NSNotification *) aNotification
// -------------------------------------------------------------------------
// Save any preferences before closing down the application.
// -------------------------------------------------------------------------
// Created: 16 February 2009 20:05
// Version: 16 February 2009 20:11
// =========================================================================
- (void) windowsClosing: (NSNotification *) aNotification
{
if (consoleController)
{
[[NSUserDefaults standardUserDefaults] setBool:[consoleController isVisible] forKey: @"ConsoleLogOpen"];
[[NSUserDefaults standardUserDefaults] synchronize];
}
}
// =========================================================================
// (BOOL) applicationShouldTerminateAfterLastWindowClosed
// -------------------------------------------------------------------------
// Connect the File Owner (CTRL-click & drag to WinController) as the delegate.
// -------------------------------------------------------------------------
// Version: Summer 2003
// Created: Summer 2003
// =========================================================================
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication
{
return YES;
}
// =========================================================================
// (void) application:(NSApplication*) openFile:
// -------------------------------------------------------------------------
// This method is only called when a file is dragged-n-dropped onto the
// GUI Tar icon. This is useful since the actions are performed slightly
// different.
// -------------------------------------------------------------------------
// Version: 28. January 2004
// Created: 20. January 2004
// =========================================================================
- (BOOL) application:(NSApplication *)theApplication openFile:(NSString *)filename
{
[file_list addObject: filename];
if (!timer)
{
timer = [NSTimer scheduledTimerWithTimeInterval:0.0
target: self
selector: @selector(addNewFiles:)
userInfo: nil
repeats: YES];
}
return NO;
}
// =========================================================================
// (void) addNewFiles : (NSTimer *) aTimer
// -------------------------------------------------------------------------
// Version: 28. January 2004
// Created: 27. January 2004
// =========================================================================
- (void) addNewFiles : (NSTimer *) aTimer
{
NSString *ret_function = [[NSString alloc] init];
[aTimer invalidate];
timer = nil;
ret_function = [self determineFunction];
if ([ret_function isEqualToString: @"Extractor"] == YES)
{
[self switchTab: @"Extractor"];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"notifyExtractor" object: file_list];
// Need to reinitalize the file_list to nothing after sending the data
[file_list removeAllObjects];
}
else if ([ret_function isEqualToString: @"Compressor"] == YES)
{
[self switchTab:@"Compressor"];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"notifyCompressor" object: file_list];
[file_list removeAllObjects];
}
else if ([ret_function isEqualToString:@"Mixed"] == YES)
{
NSBeep();
// Will probably just need to use the didEndSelector function instead.
// Look around line 315 of CController.m for other references
[NSApp beginSheet:querySheet modalForWindow:window
modalDelegate:self didEndSelector:NULL contextInfo:nil];
}
else if ([ret_function isEqualToString:@"Unknown"] == YES)
{
[file_list removeAllObjects];
}
[ret_function release];
}
// =========================================================================
// (NSString *) determineFunction
// -------------------------------------------------------------------------
// Try and determine if the dropped files are to be expanded from an archive
// or compressed form, of if the files are to be compressed and/or archived.
// -------------------------------------------------------------------------
// Version: 9 August 2006 21:40
// Created: 28. January 2004
// =========================================================================
- (NSString *) determineFunction
{
NSArray *file_types = [NSArray arrayWithObjects:@"tar", @"svgz", @"gz", @"tgz", @"z", @"Z", @"taz", @"tbz", @"tbz2", @"bz", @"bz2", @"zip", @"rar", @"7z", nil];
int fl_count = [file_list count];
int archive_count = 0;
int i = 0;
for (i = 0; i < fl_count; i++)
{
if ([file_types containsObject: [[file_list objectAtIndex: i] pathExtension]] == YES)
{
archive_count++;
}
}
if (archive_count == fl_count)
{
return @"Extractor";
}
else if (archive_count > 0)
{
return @"Mixed";
}
else if (archive_count == 0)
{
return @"Compressor";
}
else
{
return @"Unkown";
}
return @"Unknown";
}
// =========================================================================
// (IBAction) goToFunction: (id) sender
// -------------------------------------------------------------------------
// This function is called after the user selects an option from the
// querySheet (Extract or Compress).
// -------------------------------------------------------------------------
// Version: 15. February 2004
// Created: 15. February 2004 20:04
// =========================================================================
- (IBAction) goToFunction: (id) sender
{
[querySheet orderOut:nil];
[NSApp endSheet: querySheet];
if ([[sender title] isEqual: @"Extract"])
{
[self switchTab: @"Extractor"];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"notifyExtractor" object: file_list];
}
else if ([[sender title] isEqual: @"Compress"])
{
[self switchTab:@"Compressor"];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"notifyCompressor" object: file_list];
}
else // Error! Should never reach this point
{
NSBeep();
NSRunAlertPanel(@"Error", @"There was an unexpected error. Please report this problem to support@edenwaith.com", @"OK", nil, nil);
}
[file_list removeAllObjects];
}
#pragma mark -
// =========================================================================
// (void) switchTab: (NSString *) theFunction
// -------------------------------------------------------------------------
// When the tab is switched, tabView is called to grow or shrink the window
// -------------------------------------------------------------------------
// Version: 28. January 2004 21:39
// Created: 28. January 2004 21:39
// =========================================================================
- (void) switchTab: (NSString *) theFunction
{
if ( [[[tabView selectedTabViewItem] label] isEqual: @"Extractor"] && [theFunction isEqual: @"Compressor"] ) // switch to Compressor
{
[tabView selectTabViewItemAtIndex: 1];
}
else if ( [[[tabView selectedTabViewItem] label] isEqual: @"Compressor"] && [theFunction isEqual: @"Extractor"] ) // switch to Extractor
{
[tabView selectTabViewItemAtIndex: 0];
}
}
// =========================================================================
// (void) tabView: (NSTabView *)tabView didSelectTabViewItem: ...
// -------------------------------------------------------------------------
// Version: Summer 2003
// Created: Summer 2003
// =========================================================================
- (void) tabView:(NSTabView *)tabView didSelectTabViewItem: (NSTabViewItem *)tabViewItem
{
if ( [[tabViewItem label] isEqual: @"Extractor"])
{
[self windowShrink];
}
else if ( [[tabViewItem label] isEqual: @"Compressor"] )
{
[self windowGrow];
}
}
// =========================================================================
// (void) windowShrink
// -------------------------------------------------------------------------
// The NSTabView needs to be springy to the internal windows to move properly
// All other objects need to be springy to the outside bottom of the window
// -------------------------------------------------------------------------
// Version: Summer 2003
// Created: Summer 2003
// =========================================================================
- (void) windowShrink
{
NSRect aFrame = [window frame];
aFrame.origin.y += 147;
aFrame.size.height -= 147;
[window setFrame:NSMakeRect(aFrame.origin.x, aFrame.origin.y, aFrame.size.width, aFrame.size.height) display: YES animate: YES];
}
// =========================================================================
// (void) windowGrow
// -------------------------------------------------------------------------
// Version: Summer 2003
// Created: Summer 2003
// =========================================================================
- (void) windowGrow
{
NSRect aFrame = [window frame];
aFrame.origin.y -= 147;
aFrame.size.height += 147;
[window setFrame:NSMakeRect(aFrame.origin.x, aFrame.origin.y, aFrame.size.width, aFrame.size.height) display: YES animate: YES];
}
// =========================================================================
// (void) checkOSVersion
// -------------------------------------------------------------------------
// Check for the Mac OS version for Mac OS 10.0 through 10.6
// http://developer.apple.com/library/mac/#releasenotes/Cocoa/AppKit.html
// Unused system info code:
// NSString *aString = [[NSProcessInfo processInfo] operatingSystemVersionString];
// NSLog(@"Version: %@", aString);
// -------------------------------------------------------------------------
// Created: 22 September 2004 19:12
// Version: 21 January 2011 20:46
// =========================================================================
- (void) checkOSVersion
{
if ( floor(NSAppKitVersionNumber) <= 577 )
{
os_version = 1000;
}
else if ( floor(NSAppKitVersionNumber) <= 620 )
{
os_version = 1010;
}
else if ( floor(NSAppKitVersionNumber) <= 663)
{
os_version = 1020;
}
else if ( floor(NSAppKitVersionNumber) <= 743)
{
os_version = 1030;
}
else if ( floor(NSAppKitVersionNumber) <= 824)
{
os_version = 1040;
}
else if ( floor(NSAppKitVersionNumber) <= 949)
{
os_version = 1050;
}
else
{
os_version = 1060;
}
}
// =========================================================================
// (IBAction) goToProductPage: (id) sender
// -------------------------------------------------------------------------
// Version: 8. February 2004 2:32
// Created: 8. February 2004 2:32
// =========================================================================
- (IBAction) goToProductPage: (id) sender
{
[[NSWorkspace sharedWorkspace] openURL: [NSURL URLWithString:@"http://www.edenwaith.com/products/guitar/"]];
}
// =========================================================================
// (IBAction) goToFeedbackPage: (id) sender
// -------------------------------------------------------------------------
// Version: 6 August 2006 17:28
// Created: 16. February 2004 7:50
// =========================================================================
- (IBAction) goToFeedbackPage: (id) sender
{
[[NSWorkspace sharedWorkspace] openURL: [NSURL URLWithString:@"mailto:support@edenwaith.com?Subject=GUI%20Tar%20Feedback"]];
}
// =========================================================================
// (IBAction) openHelp: (id) sender
// -------------------------------------------------------------------------
// The Help system contents are too large for Mac OS 10.1's Help Viewer to
// handle, so a web browser is opened to view the Help files for Mac OS 10.1
// -------------------------------------------------------------------------
// Version: 31. January 2005 21:10
// Created: 31. January 2005 21:10
// =========================================================================
- (IBAction) openHelp: (id) sender
{
if (os_version >= 1020)
{
[NSApp showHelp: self];
}
else
{
[[NSWorkspace sharedWorkspace] openURL: [NSURL fileURLWithPath:[[[NSBundle mainBundle] pathForResource:@"Help" ofType:@""] stringByAppendingString: @"/index.html"] ] ];
}
}
#pragma mark -
// =========================================================================
// (IBAction) showPreferencePanel: (id) sender
// -------------------------------------------------------------------------
// Stub method. Not currently used.
// -------------------------------------------------------------------------
// Created: 13 June 2008 21:09
// Version: 13 June 2008 21:09
// =========================================================================
- (IBAction) showPreferencePanel: (id) sender
{
if (!preferenceController)
{
preferenceController = [[PreferenceController alloc] init];
}
[preferenceController showWindow: self];
}
// =========================================================================
// (IBAction) toggleConsoleLog: (id) sender
// -------------------------------------------------------------------------
// Created: 17 January 2009 23:30
// Version: 18 January 2009 0:20
// =========================================================================
- (IBAction) toggleConsoleLog: (id) sender
{
if (!consoleController)
{
consoleController = [[ConsoleController alloc] init];
}
if ([consoleController isVisible] == NO)
{
[consoleLogMenu setTitle: NSLocalizedString(@"Hide Console Log", nil)];
[[NSUserDefaults standardUserDefaults] setBool:YES forKey: @"ConsoleLogOpen"];
[consoleController showWindow: self];
[consoleController openConsoleLogPanel];
}
else
{
[consoleLogMenu setTitle: NSLocalizedString(@"Show Console Log", nil)];
[[NSUserDefaults standardUserDefaults] setBool:NO forKey: @"ConsoleLogOpen"];
[consoleController close];
}
}
// =========================================================================
// (void) consoleLogClosed
// -------------------------------------------------------------------------
// Created: 21 January 2009 22:16
// Version: 21 January 2009 22:16
// =========================================================================
- (void) consoleLogClosed
{
[consoleLogMenu setTitle: NSLocalizedString(@"Show Console Log", nil)];
}
// =========================================================================
// (void) directLogOutput: (NSString *) string
// -------------------------------------------------------------------------
// Write log output to either the Console Log (if it has been loaded), or
// write the data out to the GUITar.log file.
// -------------------------------------------------------------------------
// Created: 6 February 2009 22:47
// Version: 3 March 2009 20:52
// =========================================================================
- (void) directLogOutput: (NSString *) string
{
if (!consoleController)
{
[outputString appendString: string];
}
else
{
[consoleController writeToConsole: string];
}
}
// =========================================================================
// (void) saveLogFile
// -------------------------------------------------------------------------
// Created: 10 February 2009 20:11
// Version: 10 February 2009 20:11
// =========================================================================
- (void) saveLogFile
{
if (!consoleController)
{
outputFile = [NSFileHandle fileHandleForUpdatingAtPath: [@"~/Library/Logs/GUITar.log" stringByExpandingTildeInPath]];
[outputFile seekToEndOfFile];
[outputFile writeData: [outputString dataUsingEncoding: NSUTF8StringEncoding]];
}
else
{
[consoleController saveLogToFile];
}
}
@end