-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathPGDocumentController.m
915 lines (806 loc) · 34.5 KB
/
PGDocumentController.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
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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
/* Copyright © 2007-2008 The Sequential Project. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal with the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimers.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimers in the
documentation and/or other materials provided with the distribution.
3. Neither the name of The Sequential Project nor the names of its
contributors may be used to endorse or promote products derived from
this Software without specific prior written permission.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS WITH THE SOFTWARE. */
#import "PGDocumentController.h"
#import <Carbon/Carbon.h>
#import <sys/resource.h>
// Models
#import "PGDocument.h"
#import "PGResourceAdapter.h"
#import "PGContainerAdapter.h"
#import "PGResourceIdentifier.h"
#import "PGBookmark.h"
// Controllers
#import "PGPrefController.h"
#import "PGDisplayController.h"
#import "PGWindowController.h"
#import "PGFullscreenController.h"
#import "PGExifPanelController.h"
#import "PGTimerPanelController.h"
#import "PGActivityPanelController.h"
#import "PGURLAlert.h"
// Other
#import "PGAttachments.h"
#import "PGKeyboardLayout.h"
#import "PGLegacy.h"
// Categories
#import "NSArrayAdditions.h"
#import "NSColorAdditions.h"
#import "NSMenuItemAdditions.h"
#import "NSObjectAdditions.h"
#import "NSStringAdditions.h"
#import "NSUserDefaultsAdditions.h"
NSString *const PGAntialiasWhenUpscalingKey = @"PGAntialiasWhenUpscaling";
NSString *const PGAnimatesImagesKey = @"PGAnimatesImages";
NSString *const PGRoundsImageCornersKey = @"PGRoundsImageCorners";
NSString *const PGAutozoomsWindowsKey = @"PGAutozoomsWindows";
NSString *const PGOnlyAutozoomsSingleImagesKey = @"PGOnlyAutozoomsSingleImages";
NSString *const PGBackgroundColorKey = @"PGBackgroundColor";
NSString *const PGBackgroundPatternKey = @"PGBackgroundPattern";
NSString *const PGMouseClickActionKey = @"PGMouseClickAction";
NSString *const PGEscapeKeyMappingKey = @"PGEscapeKeyMapping";
static NSString *const PGRecentItemsKey = @"PGRecentItems2";
static NSString *const PGRecentItemsDeprecated2Key = @"PGRecentItems"; // Deprecated after 1.3.2
static NSString *const PGRecentItemsDeprecatedKey = @"PGRecentDocuments"; // Deprecated after 1.2.2.
static NSString *const PGFullscreenKey = @"PGFullscreen";
static NSString *const PGNSApplicationName = @"NSApplicationName";
static NSString *const PGPathFinderApplicationName = @"Path Finder";
static NSString *const PGFinderApplicationName = @"Finder";
OSType PGHFSTypeCodeForPseudoFileType(NSString *type)
{
return CFSwapInt32BigToHost(*(OSType *)[[type dataUsingEncoding:NSUTF8StringEncoding] bytes]);
}
NSString *PGPseudoFileTypeForHFSTypeCode(OSType type)
{
OSType const swapped = CFSwapInt32HostToBig(type);
return [[[NSString alloc] initWithBytes:(const void *)&swapped length:4 encoding:NSUTF8StringEncoding] autorelease];
}
static PGDocumentController *PGSharedDocumentController = nil;
@interface PGDocumentController (Private)
- (void)_setFullscreen:(BOOL)flag;
- (void)_setRevealsInBrowser:(BOOL)flag;
- (void)_setPageMenu:(NSMenu *)aMenu;
- (PGDocument *)_openNew:(BOOL)flag document:(PGDocument *)document display:(BOOL)display;
- (void)_applicationLaunched:(NSString *)app;
- (void)_applicationTerminated:(NSString *)app;
@end
@implementation PGDocumentController
#pragma mark Class Methods
+ (PGDocumentController *)sharedDocumentController
{
return PGSharedDocumentController ? PGSharedDocumentController : [[self alloc] init];
}
#pragma mark NSObject
+ (void)initialize
{
if([PGDocumentController class] != self) return;
NSNumber *const yes = [NSNumber numberWithBool:YES], *no = [NSNumber numberWithBool:NO];
[[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithObjectsAndKeys:
yes, PGAntialiasWhenUpscalingKey,
yes, PGAnimatesImagesKey,
yes, PGRoundsImageCornersKey,
yes, PGAutozoomsWindowsKey,
yes, PGOnlyAutozoomsSingleImagesKey,
[NSArchiver archivedDataWithRootObject:[NSColor blackColor]], PGBackgroundColorKey,
[NSNumber numberWithUnsignedInt:PGNoPattern], PGBackgroundPatternKey,
[NSNumber numberWithInt:PGNextPreviousAction], PGMouseClickActionKey,
[NSNumber numberWithUnsignedInt:1], PGMaxDepthKey,
no, PGFullscreenKey,
[NSNumber numberWithInt:PGFullscreenMapping], PGEscapeKeyMappingKey,
nil]];
}
#pragma mark Instance Methods
- (IBAction)provideFeedback:(id)sender
{
if(![[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"mailto:[email protected]"]]) NSBeep();
}
- (IBAction)showPreferences:(id)sender
{
[[PGPrefController sharedPrefController] showWindow:self];
}
#pragma mark -
- (IBAction)closeAll:(id)sender
{
[[_fullscreenController window] close];
PGDocument *doc;
NSEnumerator *const docEnum = [[self documents] objectEnumerator];
while((doc = [docEnum nextObject])) [[[doc displayController] window] performClose:self];
}
#pragma mark -
- (IBAction)switchToPathFinder:(id)sender
{
if(![[[[NSAppleScript alloc] initWithSource:@"tell application \"Path Finder\" to activate"] autorelease] executeAndReturnError:NULL]) NSBeep();
}
- (IBAction)switchToFinder:(id)sender
{
if(![[[[NSAppleScript alloc] initWithSource:@"tell application \"Finder\" to activate"] autorelease] executeAndReturnError:NULL]) NSBeep();
}
#pragma mark -
- (IBAction)open:(id)sender
{
[NSApp activateIgnoringOtherApps:YES];
NSOpenPanel *const openPanel = [NSOpenPanel openPanel];
[openPanel setCanChooseDirectories:YES];
[openPanel setCanChooseFiles:YES];
[openPanel setAllowsMultipleSelection:YES];
NSURL *const URL = [[[self currentDocument] identifier] URL];
NSString *const path = [URL isFileURL] ? [URL path] : nil;
if([openPanel runModalForDirectory:[path stringByDeletingLastPathComponent] file:[path lastPathComponent] types:[PGResourceAdapter supportedExtensionsWhichMustAlwaysLoad:NO]] == NSOKButton) [self application:NSApp openFiles:[openPanel filenames]];
}
- (IBAction)openURL:(id)sender
{
[NSApp activateIgnoringOtherApps:YES];
NSURL *const URL = [(PGURLAlert *)[[[PGURLAlert alloc] init] autorelease] runModal];
if(URL) [self openDocumentWithContentsOfURL:URL display:YES];
}
- (IBAction)openRecentDocument:(id)sender
{
NSURL *const URL = [[sender representedObject] URL];
if(URL) [self openDocumentWithContentsOfURL:URL display:YES];
}
- (IBAction)clearRecentDocuments:(id)sender
{
[self setRecentDocumentIdentifiers:[NSArray array]];
}
#pragma mark -
- (IBAction)changeImageScalingMode:(id)sender
{
[[self currentPrefObject] setImageScalingMode:[sender tag]];
[[self currentPrefObject] setImageScaleFactor:1];
}
- (IBAction)changeImageScalingConstraint:(id)sender
{
[[self currentPrefObject] setImageScalingConstraint:[sender tag]];
}
- (IBAction)changeImageScaleFactor:(id)sender
{
[[self currentPrefObject] setImageScaleFactor:powf(2, [sender tag])];
[[self currentPrefObject] setImageScalingMode:PGConstantFactorScaling];
}
#pragma mark -
- (IBAction)changeSortOrder:(id)sender
{
[[self currentPrefObject] setSortOrder:(([sender tag] & PGSortOrderMask) | ([[self currentPrefObject] sortOrder] & PGSortOptionsMask))];
}
- (IBAction)changeSortDirection:(id)sender
{
[[self currentPrefObject] setSortOrder:(([[self currentPrefObject] sortOrder] & ~PGSortDescendingMask) | [sender tag])];
}
- (IBAction)changeSortRepeat:(id)sender
{
[[self currentPrefObject] setSortOrder:(([[self currentPrefObject] sortOrder] & ~PGSortRepeatMask) | [sender tag])];
}
- (IBAction)changeReadingDirection:(id)sender
{
[[self currentPrefObject] setReadingDirection:[sender tag]];
}
#pragma mark -
- (IBAction)toggleExif:(id)sender
{
[_exifPanel toggleShown];
}
- (IBAction)toggleTimer:(id)sender
{
[_timerPanel toggleShown];
}
- (IBAction)toggleActivity:(id)sender
{
[_activityPanel toggleShown];
}
- (IBAction)selectPreviousDocument:(id)sender
{
PGDocument *const doc = [self next:NO documentBeyond:[self currentDocument]];
[[doc displayController] activateDocument:doc];
}
- (IBAction)selectNextDocument:(id)sender
{
PGDocument *const doc = [self next:YES documentBeyond:[self currentDocument]];
[[doc displayController] activateDocument:doc];
}
- (IBAction)activateDocument:(id)sender
{
PGDocument *const doc = [sender representedObject];
[[doc displayController] activateDocument:doc];
}
#pragma mark -
- (IBAction)showKeyboardShortcuts:(id)sender
{
[[NSHelpManager sharedHelpManager] openHelpAnchor:@"shortcuts" inBook:@"Sequential Help"];
}
#pragma mark -
- (BOOL)performEscapeKeyAction
{
switch([[[NSUserDefaults standardUserDefaults] objectForKey:PGEscapeKeyMappingKey] intValue]) {
case PGFullscreenMapping: return [self performToggleFullscreen];
case PGQuitMapping: [NSApp terminate:self]; return YES;
}
return NO;
}
- (BOOL)performToggleFullscreen
{
return [toggleFullscreen AE_performAction];
}
- (BOOL)performToggleInfo
{
return [toggleInfo AE_performAction];
}
#pragma mark -
- (NSArray *)recentDocumentIdentifiers
{
return [[_recentDocumentIdentifiers retain] autorelease];
}
- (void)setRecentDocumentIdentifiers:(NSArray *)anArray
{
NSParameterAssert(anArray);
if(_prefsLoaded && [anArray isEqual:_recentDocumentIdentifiers]) return;
[_recentDocumentIdentifiers AE_removeObjectObserver:self name:PGResourceIdentifierDidChangeNotification];
[_recentDocumentIdentifiers release];
_recentDocumentIdentifiers = [[anArray subarrayWithRange:NSMakeRange(0, MIN([anArray count], [self maximumRecentDocumentCount]))] retain];
[_recentDocumentIdentifiers AE_addObjectObserver:self selector:@selector(recentDocumentIdentifierDidChange:) name:PGResourceIdentifierDidChangeNotification];
[self recentDocumentIdentifierDidChange:nil];
}
- (unsigned)maximumRecentDocumentCount
{
return 10;
}
#pragma mark -
- (PGDisplayController *)displayControllerForNewDocument
{
if([self fullscreen]) {
if(!_fullscreenController) _fullscreenController = [[PGFullscreenController alloc] init];
return _fullscreenController;
}
return [[[PGWindowController alloc] init] autorelease];
}
- (BOOL)fullscreen
{
return _fullscreen;
}
- (void)setFullscreen:(BOOL)flag
{
if(_prefsLoaded && flag == _fullscreen) return;
_fullscreen = flag;
[[NSUserDefaults standardUserDefaults] setObject:[NSNumber numberWithBool:flag] forKey:PGFullscreenKey];
[toggleFullscreen setTitle:NSLocalizedString((flag ? @"Exit Full Screen" : @"Enter Full Screen"), @"Enter/exit full screen. Two states of the same item.")];
[fitToView setTitle:NSLocalizedString((flag ? @"Fit to Screen" : @"Fit to Window"), @"Scale image down so the entire thing fits menu item. Two labels, depending on mode.")];
[self _setFullscreen:flag];
}
#pragma mark -
- (NSArray *)documents
{
return [[_documents copy] autorelease];
}
- (void)addDocument:(PGDocument *)document
{
NSParameterAssert([_documents indexOfObjectIdenticalTo:document] == NSNotFound);
if(![_documents count]) [windowsMenu addItem:windowsMenuSeparator];
[_documents addObject:document];
NSMenuItem *const item = [[[NSMenuItem alloc] init] autorelease];
[item setRepresentedObject:document];
[item setAction:@selector(activateDocument:)];
[item setTarget:self];
[windowsMenu addItem:item];
[self _setFullscreen:YES];
}
- (void)removeDocument:(PGDocument *)document
{
NSParameterAssert(!document || [_documents indexOfObjectIdenticalTo:document] != NSNotFound);
if(document == [self currentDocument]) [self setCurrentDocument:nil];
if(!document) return;
[_documents removeObject:document];
unsigned const i = [windowsMenu indexOfItemWithRepresentedObject:document];
if(NSNotFound != i) [windowsMenu removeItemAtIndex:i];
if(![_documents count]) [windowsMenuSeparator AE_removeFromMenu];
[self _setFullscreen:[_documents count] > 0];
}
- (PGDocument *)documentForResourceIdentifier:(PGResourceIdentifier *)ident
{
PGDocument *doc;
NSEnumerator *const docEnum = [_documents objectEnumerator];
while((doc = [docEnum nextObject])) if([[doc identifier] isEqual:ident]) return doc;
return nil;
}
- (PGDocument *)next:(BOOL)flag
documentBeyond:(PGDocument *)document
{
NSArray *const docs = [[PGDocumentController sharedDocumentController] documents];
unsigned const count = [docs count];
if(count <= 1) return nil;
unsigned i = [docs indexOfObjectIdenticalTo:[self currentDocument]];
if(NSNotFound == i) return nil;
if(flag) {
if([docs count] == ++i) i = 0;
} else if(0 == i--) i = [docs count] - 1;
return [docs objectAtIndex:i];
}
- (NSMenuItem *)windowsMenuItemForDocument:(PGDocument *)document
{
int const i = [windowsMenu indexOfItemWithRepresentedObject:document];
return -1 == i ? nil : [windowsMenu itemAtIndex:i];
}
#pragma mark -
- (NSMenu *)defaultPageMenu
{
return [[defaultPageMenu retain] autorelease];
}
- (PGPrefObject *)currentPrefObject
{
return _currentDocument ? _currentDocument : [PGPrefObject globalPrefObject];
}
- (PGDocument *)currentDocument
{
return _currentDocument;
}
- (void)setCurrentDocument:(PGDocument *)document
{
[[self currentPrefObject] AE_removeObserver:self name:PGPrefObjectReadingDirectionDidChangeNotification];
[[self currentPrefObject] AE_removeObserver:self name:PGPrefObjectShowsInfoDidChangeNotification];
[[self currentPrefObject] AE_removeObserver:self name:PGPrefObjectShowsThumbnailsDidChangeNotification];
_currentDocument = document;
[self _setRevealsInBrowser:[_currentDocument isOnline]];
[self _setPageMenu:(_currentDocument ? [_currentDocument pageMenu] : [self defaultPageMenu])];
[[self currentPrefObject] AE_addObserver:self selector:@selector(readingDirectionDidChange:) name:PGPrefObjectReadingDirectionDidChangeNotification];
[[self currentPrefObject] AE_addObserver:self selector:@selector(showsInfoDidChange:) name:PGPrefObjectShowsInfoDidChangeNotification];
[[self currentPrefObject] AE_addObserver:self selector:@selector(showsThumbnailsDidChange:) name:PGPrefObjectShowsThumbnailsDidChangeNotification];
[self readingDirectionDidChange:nil];
[self showsInfoDidChange:nil];
[self showsThumbnailsDidChange:nil];
}
#pragma mark -
- (id)openDocumentWithContentsOfURL:(NSURL *)URL
display:(BOOL)display
{
PGResourceIdentifier *const identifier = [URL AE_resourceIdentifier];
PGDocument *const doc = [self documentForResourceIdentifier:identifier];
return [self _openNew:!doc document:(doc ? doc : [[[PGDocument alloc] initWithResourceIdentifier:identifier] autorelease]) display:display];
}
- (id)openDocumentWithBookmark:(PGBookmark *)aBookmark
display:(BOOL)display
{
PGDocument *const doc = [self documentForResourceIdentifier:[aBookmark documentIdentifier]];
[doc openBookmark:aBookmark];
return [self _openNew:!doc document:(doc ? doc : [[[PGDocument alloc] initWithBookmark:aBookmark] autorelease]) display:display];
}
- (void)noteNewRecentDocument:(PGDocument *)document
{
PGResourceIdentifier *const identifier = [document identifier];
if(!identifier) return;
NSMutableArray *const identifiers = [[[self recentDocumentIdentifiers] mutableCopy] autorelease];
[identifiers removeObject:identifier];
[identifiers insertObject:identifier atIndex:0];
[self setRecentDocumentIdentifiers:identifiers];
}
#pragma mark -
- (void)handleAppleEvent:(NSAppleEventDescriptor *)event
withReplyEvent:(NSAppleEventDescriptor *)replyEvent
{
if([event eventClass] == kInternetEventClass && [event eventID] == kAEGetURL) [self openDocumentWithContentsOfURL:[NSURL URLWithString:[[event paramDescriptorForKeyword:keyDirectObject] stringValue]] display:YES];
}
#pragma mark -
- (void)recentDocumentIdentifierDidChange:(NSNotification *)aNotif
{
[[NSUserDefaults standardUserDefaults] setObject:[NSKeyedArchiver archivedDataWithRootObject:_recentDocumentIdentifiers] forKey:PGRecentItemsKey];
}
- (void)workspaceDidLaunchApplication:(NSNotification *)aNotif
{
if(aNotif) return [self _applicationLaunched:[[aNotif userInfo] objectForKey:PGNSApplicationName]];
[switchToPathFinder AE_removeFromMenu];
[revealInPathFinder AE_removeFromMenu];
[switchToFinder AE_removeFromMenu];
[revealInFinder AE_removeFromMenu];
[_runningApps release];
_runningApps = [[NSCountedSet alloc] init];
NSDictionary *dict;
NSEnumerator *const dictEnum = [[[NSWorkspace sharedWorkspace] launchedApplications] objectEnumerator];
while((dict = [dictEnum nextObject])) [self _applicationLaunched:[dict objectForKey:PGNSApplicationName]];
}
- (void)workspaceDidTerminateApplication:(NSNotification *)aNotif
{
NSParameterAssert(aNotif);
[self _applicationTerminated:[[aNotif userInfo] objectForKey:PGNSApplicationName]];
}
- (void)readingDirectionDidChange:(NSNotification *)aNotif
{
NSString *prev, *next;
if([[self currentPrefObject] readingDirection] == PGReadingDirectionLeftToRight) prev = @"[", next = @"]";
else prev = @"]", next = @"[";
[previousPage setKeyEquivalent:prev];
[nextPage setKeyEquivalent:next];
[firstPage setKeyEquivalent:prev];
[lastPage setKeyEquivalent:next];
[previousPage setKeyEquivalentModifierMask:0];
[nextPage setKeyEquivalentModifierMask:0];
}
- (void)showsInfoDidChange:(NSNotification *)aNotif
{
[toggleInfo setTitle:NSLocalizedString(([[self currentPrefObject] showsInfo] ? @"Hide Info" : @"Show Info"), @"Lets the user toggle the on-screen display. Two states of the same item.")];
}
- (void)showsThumbnailsDidChange:(NSNotification *)aNotif
{
[toggleThumbnails setTitle:NSLocalizedString(([[self currentPrefObject] showsThumbnails] ? @"Hide Thumbnails" : @"Show Thumbnails"), @"Lets the user toggle whether thumbnails are shown. Two states of the same item.")];
}
#pragma mark Private Protocol
- (void)_setFullscreen:(BOOL)flag
{
if(flag == _inFullscreen) return;
NSDisableScreenUpdates();
if(!flag) {
_inFullscreen = flag;
[_fullscreenController prepareToExitFullscreen];
NSMutableArray *const docs = [[[self documents] mutableCopy] autorelease];
PGDocument *const currentDoc = [_fullscreenController activeDocument];
if(currentDoc) {
[docs removeObjectIdenticalTo:currentDoc];
[docs addObject:currentDoc];
}
PGDocument *doc;
NSEnumerator *const docEnum = [docs objectEnumerator];
while((doc = [docEnum nextObject])) {
[doc setDisplayController:[self displayControllerForNewDocument]];
[[doc displayController] showWindow:self];
}
[[_fullscreenController window] close];
[_fullscreenController release];
_fullscreenController = nil;
} else if([[self documents] count] && [self fullscreen]) {
_inFullscreen = flag;
PGDocument *const currentDoc = [self currentDocument];
_fullscreenController = [[PGFullscreenController alloc] init];
PGDocument *doc;
NSEnumerator *const docEnum = [[self documents] objectEnumerator];
while((doc = [docEnum nextObject])) {
PGDisplayController *const oldController = [doc displayController];
if(!oldController) continue;
[doc setDisplayController:_fullscreenController];
[[oldController window] close];
}
[_fullscreenController setActiveDocument:currentDoc closeIfAppropriate:NO];
[_fullscreenController showWindow:self];
}
NSEnableScreenUpdates();
}
#pragma mark -
- (void)_setRevealsInBrowser:(BOOL)flag
{
if(flag == _revealsInBrowser) return;
_revealsInBrowser = flag;
if(flag) {
[revealInPathFinder AE_removeFromMenu];
[revealInFinder AE_removeFromMenu];
[revealInBrowser AE_addAfterItem:precedingRevealItem];
} else {
[revealInBrowser AE_removeFromMenu];
[self workspaceDidLaunchApplication:nil];
}
}
- (void)_setPageMenu:(NSMenu *)aMenu
{
NSMenu *const mainMenu = [NSApp mainMenu];
unsigned const pageMenuItemIndex = [mainMenu indexOfItem:[[pageMenuItem retain] autorelease]];
[mainMenu removeItemAtIndex:pageMenuItemIndex]; // Works around a Tiger bug where two Page menus appear.
NSMenu *const oldMenu = [pageMenuItem submenu];
NSMenu *const newMenu = aMenu ? aMenu : defaultPageMenu;
[newMenu setTitle:[pageMenuItem title]]; // Otherwise the title can get changed.
firstPage = [newMenu itemAtIndex:[oldMenu indexOfItem:firstPage]]; // Since we change the whole menu, make sure to get the current menu's items.
previousPage = [newMenu itemAtIndex:[oldMenu indexOfItem:previousPage]];
nextPage = [newMenu itemAtIndex:[oldMenu indexOfItem:nextPage]];
lastPage = [newMenu itemAtIndex:[oldMenu indexOfItem:lastPage]];
[pageMenuItem setSubmenu:newMenu];
[mainMenu insertItem:pageMenuItem atIndex:pageMenuItemIndex];
[self readingDirectionDidChange:nil];
}
#pragma mark -
- (PGDocument *)_openNew:(BOOL)flag
document:(PGDocument *)document
display:(BOOL)display
{
if(!document) return nil;
if(flag) [self addDocument:document];
if(display) [document createUI];
return document;
}
#pragma mark -
- (void)_applicationLaunched:(NSString *)app
{
[_runningApps addObject:app];
if([_runningApps countForObject:app] != 1) return;
if([PGPathFinderApplicationName isEqual:app]) {
[switchToPathFinder AE_addAfterItem:precedingSwitchItem];
if(!_revealsInBrowser) [revealInPathFinder AE_addAfterItem:precedingRevealItem];
} else if([PGFinderApplicationName isEqual:app]) {
[switchToFinder AE_addAfterItem:([switchToPathFinder menu] ? switchToPathFinder : precedingSwitchItem)];
if(!_revealsInBrowser) [revealInFinder AE_addAfterItem:([revealInPathFinder menu] ? revealInPathFinder : precedingRevealItem)];
}
}
- (void)_applicationTerminated:(NSString *)app
{
[_runningApps removeObject:[[app retain] autorelease]];
if([_runningApps countForObject:app] != 0) return;
if([PGPathFinderApplicationName isEqual:app]) {
[switchToPathFinder AE_removeFromMenu];
if(!_revealsInBrowser) [revealInPathFinder AE_removeFromMenu];
} else if([PGFinderApplicationName isEqual:app]) {
[switchToFinder AE_removeFromMenu];
if(!_revealsInBrowser) [revealInFinder AE_removeFromMenu];
}
}
#pragma mark NSNibAwakening Protocol
- (void)awakeFromNib
{
[switchToPathFinder retain];
[switchToFinder retain];
[revealInPathFinder retain];
[revealInFinder retain];
[revealInBrowser retain];
[revealInBrowser AE_removeFromMenu];
[defaultPageMenu retain];
[windowsMenuSeparator retain];
[windowsMenuSeparator AE_removeFromMenu];
[rotate90CC setAttributedTitle:[NSAttributedString PG_attributedStringWithAttachmentCell:[[[PGRotationMenuIconCell alloc] initWithMenuItem:rotate90CC rotation:90] autorelease] label:[rotate90CC title]]];
[rotate270CC setAttributedTitle:[NSAttributedString PG_attributedStringWithAttachmentCell:[[[PGRotationMenuIconCell alloc] initWithMenuItem:rotate270CC rotation:-90] autorelease] label:[rotate270CC title]]];
[rotate180 setAttributedTitle:[NSAttributedString PG_attributedStringWithAttachmentCell:[[[PGRotationMenuIconCell alloc] initWithMenuItem:rotate180 rotation:180] autorelease] label:[rotate180 title]]];
[mirrorHorz setAttributedTitle:[NSAttributedString PG_attributedStringWithAttachmentCell:[[[PGMirrorMenuIconCell alloc] initWithMenuItem:mirrorHorz rotation:0] autorelease] label:[mirrorHorz title]]];
[mirrorVert setAttributedTitle:[NSAttributedString PG_attributedStringWithAttachmentCell:[[[PGMirrorMenuIconCell alloc] initWithMenuItem:mirrorVert rotation:90] autorelease] label:[mirrorVert title]]];
[zoomIn setKeyEquivalent:(PGIsLeopardOrLater() ? @"+" : @"=")]; // Leopard is smart about this.
[zoomIn setKeyEquivalentModifierMask:NSCommandKeyMask];
[selectPreviousDocument setKeyEquivalent:[NSString stringWithFormat:@"%C", 0x21E1]];
[selectPreviousDocument setKeyEquivalentModifierMask:NSCommandKeyMask];
[selectNextDocument setKeyEquivalent:[NSString stringWithFormat:@"%C", 0x21E3]];
[selectNextDocument setKeyEquivalentModifierMask:NSCommandKeyMask];
NSUserDefaults *const defaults = [NSUserDefaults standardUserDefaults];
[self setFullscreen:[[defaults objectForKey:PGFullscreenKey] boolValue]];
_prefsLoaded = YES;
[self setCurrentDocument:nil];
[self workspaceDidLaunchApplication:nil];
[self readingDirectionDidChange:nil];
[self showsInfoDidChange:nil];
[self showsThumbnailsDidChange:nil];
}
#pragma mark NSMenuValidation Protocol
#define PGFuzzyEqualityToCellState(a, b) ({ double __a = (double)(a); double __b = (double)(b); ((__a) == (__b) ? NSOnState : ((__a) == round(__b) ? NSMixedState : NSOffState)); })
- (BOOL)validateMenuItem:(NSMenuItem *)anItem
{
id const pref = [self currentPrefObject];
SEL const action = [anItem action];
int const tag = [anItem tag];
if(@selector(changeReadingDirection:) == action) [anItem setState:[pref readingDirection] == tag];
else if(@selector(changeImageScalingMode:) == action) [anItem setState:([pref imageScalingMode] == tag ? PGFuzzyEqualityToCellState(0, log2f([pref imageScaleFactor])) : NSOffState)];
else if(@selector(changeImageScaleFactor:) == action) [anItem setState:PGFuzzyEqualityToCellState(tag, log2f([pref imageScaleFactor]))];
else if(@selector(changeImageScalingConstraint:) == action) [anItem setState:tag == [pref imageScalingConstraint]];
else if(@selector(changeSortOrder:) == action) [anItem setState:tag == (PGSortOrderMask & [pref sortOrder])];
else if(@selector(changeSortDirection:) == action) {
[anItem setState:tag == (PGSortDescendingMask & [pref sortOrder])];
if(([pref sortOrder] & PGSortOrderMask) == PGSortShuffle) return NO;
} else if(@selector(changeSortRepeat:) == action) [anItem setState:tag == (PGSortRepeatMask & [pref sortOrder])];
if(@selector(activateDocument:) == action) [anItem setState:([anItem representedObject] == [self currentDocument])];
if([[self documents] count] <= 1) {
if(@selector(selectPreviousDocument:) == action) return NO;
if(@selector(selectNextDocument:) == action) return NO;
}
if(![self currentDocument]) {
if(@selector(changeReadingDirection:) == action) return NO;
if(@selector(changeImageScalingMode:) == action) return NO;
if(@selector(changeImageScaleFactor:) == action) return NO;
if(@selector(changeImageScalingConstraint:) == action) return NO;
if(@selector(changeSortOrder:) == action) return NO;
if(@selector(changeSortDirection:) == action) return NO;
if(@selector(changeSortRepeat:) == action) return NO;
}
return [super validateMenuItem:anItem];
}
#pragma mark NSMenuDelegate Protocol
- (int)numberOfItemsInMenu:(NSMenu *)menu
{
if(menu == recentMenu) {
[_recentMenuSeparatorItem AE_removeFromMenu]; // The separator gets moved around as we rebuild the menu.
NSMutableArray *const identifiers = [NSMutableArray array];
PGResourceIdentifier *identifier;
NSEnumerator *const identifierEnum = [[self recentDocumentIdentifiers] objectEnumerator];
while((identifier = [identifierEnum nextObject])) if([identifier URL]) [identifiers addObject:identifier]; // Make sure the URLs are valid.
[self setRecentDocumentIdentifiers:identifiers];
return [identifiers count] + 1;
}
return -1;
}
- (BOOL)menu:(NSMenu *)menu
updateItem:(NSMenuItem *)item
atIndex:(int)index
shouldCancel:(BOOL)shouldCancel
{
NSString *title = @"";
NSAttributedString *attributedTitle = nil;
SEL action = NULL;
id representedObject = nil;
if(menu == recentMenu) {
NSArray *const identifiers = [self recentDocumentIdentifiers];
if((unsigned)index < [identifiers count]) {
PGResourceIdentifier *const identifier = [identifiers objectAtIndex:index];
NSString *const name = [identifier displayName];
BOOL uniqueName = YES;
PGResourceIdentifier *comparisonIdentifier;
NSEnumerator *const comparisonIdentifierEnum = [identifiers objectEnumerator];
while(uniqueName && (comparisonIdentifier = [comparisonIdentifierEnum nextObject])) if(comparisonIdentifier != identifier && [[comparisonIdentifier displayName] isEqual:name]) uniqueName = NO;
attributedTitle = [identifier attributedStringWithWithAncestory:!uniqueName];
action = @selector(openRecentDocument:);
representedObject = identifier;
} else {
title = NSLocalizedString(@"Clear Menu", @"Clear the Open Recent menu. Should be the same as the standard text.");
if(index) {
if(!_recentMenuSeparatorItem) _recentMenuSeparatorItem = [[NSMenuItem separatorItem] retain];
[menu insertItem:_recentMenuSeparatorItem atIndex:index];
action = @selector(clearRecentDocuments:);
}
}
}
[item setTitle:title];
[item setAttributedTitle:attributedTitle];
[item setAction:action];
[item setRepresentedObject:representedObject];
return YES;
}
#pragma mark NSApplicationNotifications Protocol
- (BOOL)application:(NSApplication *)sender
openFile:(NSString *)filename
{
return !![self openDocumentWithContentsOfURL:[filename AE_fileURL] display:YES];
}
- (void)application:(NSApplication *)sender
openFiles:(NSArray *)filenames
{
NSString *filename;
NSEnumerator *filenameEnum = [filenames objectEnumerator];
while((filename = [filenameEnum nextObject])) [self openDocumentWithContentsOfURL:[filename AE_fileURL] display:YES];
[sender replyToOpenOrPrint:NSApplicationDelegateReplySuccess];
}
#pragma mark NSResponder
- (BOOL)performKeyEquivalent:(NSEvent *)anEvent
{
if(!([anEvent modifierFlags] & (NSCommandKeyMask | NSShiftKeyMask | NSControlKeyMask | NSAlternateKeyMask))) switch([anEvent keyCode]) {
case PGKeyEscape: [self performEscapeKeyAction]; break;
case PGKeyQ: [NSApp terminate:self]; return YES;
}
return NO;
}
#pragma mark NSObject
- (id)init
{
if((self = [super init])) {
NSUserDefaults *const defaults = [NSUserDefaults standardUserDefaults];
id recentItemsData = [defaults objectForKey:PGRecentItemsKey];
if(!recentItemsData) {
recentItemsData = [defaults objectForKey:PGRecentItemsDeprecated2Key];
[defaults removeObjectForKey:PGRecentItemsDeprecated2Key]; // Don't leave unused data around.
}
if(!recentItemsData) {
recentItemsData = [defaults objectForKey:PGRecentItemsDeprecatedKey];
[defaults removeObjectForKey:PGRecentItemsDeprecatedKey]; // Don't leave unused data around.
}
[self setRecentDocumentIdentifiers:(recentItemsData ? [NSKeyedUnarchiver unarchiveObjectWithData:recentItemsData] : [NSArray array])];
_documents = [[NSMutableArray alloc] init];
_classesByExtension = [[NSMutableDictionary alloc] init];
_exifPanel = [[PGExifPanelController alloc] init];
_timerPanel = [[PGTimerPanelController alloc] init];
_activityPanel = [[PGActivityPanelController alloc] init];
NSNotificationCenter *const workspaceCenter = [[NSWorkspace sharedWorkspace] notificationCenter];
[workspaceCenter addObserver:self selector:@selector(workspaceDidLaunchApplication:) name:NSWorkspaceDidLaunchApplicationNotification object:nil];
[workspaceCenter addObserver:self selector:@selector(workspaceDidTerminateApplication:) name:NSWorkspaceDidTerminateApplicationNotification object:nil];
if(!PGSharedDocumentController) {
PGSharedDocumentController = [self retain];
[[NSAppleEventManager sharedAppleEventManager] setEventHandler:self andSelector:@selector(handleAppleEvent:withReplyEvent:) forEventClass:kInternetEventClass andEventID:kAEGetURL];
[self setNextResponder:[NSApp nextResponder]];
[NSApp setNextResponder:self];
}
}
return self;
}
- (void)dealloc
{
if(PGSharedDocumentController == self) [[NSAppleEventManager sharedAppleEventManager] removeEventHandlerForEventClass:kInternetEventClass andEventID:kAEGetURL];
[self AE_removeObserver];
[switchToPathFinder release];
[switchToFinder release];
[revealInPathFinder release];
[revealInFinder release];
[revealInBrowser release];
[defaultPageMenu release];
[windowsMenuSeparator release];
[_runningApps release];
[_recentMenuSeparatorItem release];
[_recentDocumentIdentifiers release];
[_documents release];
[_fullscreenController release];
[_exifPanel release];
[_timerPanel release];
[_activityPanel release];
[_classesByExtension release];
[super dealloc];
}
@end
@interface PGApplication : NSApplication
@end
@interface PGWindow : NSWindow
@end
@interface PGView : NSView
@end
@interface PGMenu : NSMenu
@end
@implementation PGApplication
+ (void)initialize
{
if([PGApplication class] != self) return;
[PGWindow poseAsClass:[NSWindow class]];
[PGView poseAsClass:[NSView class]];
[PGMenu poseAsClass:[NSMenu class]];
[[NSUserDefaults standardUserDefaults] addSuiteNamed:@"com.poisonousinsect.Sequential"]; // Fall back on the old preference file if necessary.
struct rlimit l = {RLIM_INFINITY, RLIM_INFINITY};
(void)setrlimit(RLIMIT_NOFILE, &l); // We use a lot of file descriptors, especially prior to Leopard where we don't have FSEvents.
}
// Allow our document controller to catch key equivalents.
- (void)sendEvent:(NSEvent *)anEvent
{
if([anEvent window] || [anEvent type] != NSKeyDown || (![[self mainMenu] performKeyEquivalent:anEvent] && ![[PGDocumentController sharedDocumentController] performKeyEquivalent:anEvent])) [super sendEvent:anEvent];
}
@end
@implementation PGWindow
// Catch events that would normally be swallowed.
- (void)keyDown:(NSEvent *)anEvent
{
if(![[PGDocumentController sharedDocumentController] performKeyEquivalent:anEvent]) [super keyDown:anEvent];
}
// Categories can't call super, and there's only one method that validates every action, so sadly we have to use class posing for this.
- (BOOL)validateMenuItem:(NSMenuItem *)anItem
{
if(@selector(PG_grow:) == [anItem action]) return !!([self styleMask] & NSResizableWindowMask);
return [super validateMenuItem:anItem];
}
@end
@implementation PGView
// Help tab between windows.
- (NSView *)nextValidKeyView
{
NSView *const view = [super nextValidKeyView];
return view ? view : self;
}
- (NSView *)previousValidKeyView
{
NSView *const view = [super previousValidKeyView];
return view ? view : self;
}
@end
@implementation PGMenu
- (BOOL)performKeyEquivalent:(NSEvent *)anEvent
{
// Some non-English keyboard layouts switch to English when the Command key is held, but that doesn't help our shortcuts that don't use Command, so we have to check by key code.
int i = 0;
for(; i < [self numberOfItems]; i++) {
NSMenuItem *const item = [self itemAtIndex:i];
NSString *const equiv = [item keyEquivalent];
unsigned short keyCode;
if([equiv length] == 1
&& (keyCode = PGKeyCodeFromUnichar([equiv characterAtIndex:0])) != PGKeyUnknown
&& [anEvent keyCode] == keyCode
&& ([anEvent modifierFlags] & (NSControlKeyMask | NSAlternateKeyMask | NSCommandKeyMask)) == [item keyEquivalentModifierMask]) return [item AE_performAction];
else if([[item submenu] performKeyEquivalent:anEvent]) return YES;
}
return [super performKeyEquivalent:anEvent];
}
@end