Changeset 4715
- Timestamp:
- 04/24/07 11:14:31 (1 year ago)
- Files:
-
- Footagehead/trunk/English.lproj/Browser.nib (moved) (moved from Footagehead/trunk/English.lproj/BrowserWindow.nib)
- Footagehead/trunk/English.lproj/Browser.nib/classes.nib (modified) (1 diff)
- Footagehead/trunk/English.lproj/Browser.nib/info.nib (modified) (1 diff)
- Footagehead/trunk/English.lproj/Browser.nib/keyedobjects.nib (modified) (previous)
- Footagehead/trunk/English.lproj/Slideshow.nib (moved) (moved from Footagehead/trunk/English.lproj/FullscreenWindow.nib)
- Footagehead/trunk/English.lproj/Slideshow.nib/classes.nib (modified) (2 diffs)
- Footagehead/trunk/English.lproj/Slideshow.nib/info.nib (modified) (1 diff)
- Footagehead/trunk/English.lproj/Slideshow.nib/keyedobjects.nib (modified) (previous)
- Footagehead/trunk/FHBrowserController.h (moved) (moved from Footagehead/trunk/FHBrowserWindowController.h) (2 diffs)
- Footagehead/trunk/FHBrowserController.m (moved) (moved from Footagehead/trunk/FHBrowserWindowController.m) (8 diffs)
- Footagehead/trunk/FHController.h (modified) (2 diffs)
- Footagehead/trunk/FHController.m (modified) (4 diffs)
- Footagehead/trunk/FHSlideshowController.h (moved) (moved from Footagehead/trunk/FHFullscreenWindowController.h) (1 diff)
- Footagehead/trunk/FHSlideshowController.m (moved) (moved from Footagehead/trunk/FHFullscreenWindowController.m) (1 diff)
- Footagehead/trunk/FHSlideshowWindow.h (moved) (moved from Footagehead/trunk/FHFullscreenWindow.h) (1 diff)
- Footagehead/trunk/FHSlideshowWindow.m (moved) (moved from Footagehead/trunk/FHFullscreenWindow.m) (1 diff)
- Footagehead/trunk/FHTableView.m (modified) (1 diff)
- Footagehead/trunk/Footagehead.xcodeproj/project.pbxproj (modified) (15 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Footagehead/trunk/English.lproj/Browser.nib/classes.nib
r4711 r4715 14 14 previousPage = id; 15 15 }; 16 CLASS = FHBrowser WindowController;16 CLASS = FHBrowserController; 17 17 LANGUAGE = ObjC; 18 18 OUTLETS = { Footagehead/trunk/English.lproj/Browser.nib/info.nib
r4711 r4715 15 15 <array> 16 16 <integer>82</integer> 17 <integer>65</integer> 18 <integer>52</integer> 17 19 <integer>7</integer> 18 <integer>52</integer>19 <integer>65</integer>20 20 </array> 21 21 <key>IBSystem Version</key> 22 <string>8P 2137</string>22 <string>8P135</string> 23 23 </dict> 24 24 </plist> Footagehead/trunk/English.lproj/Slideshow.nib/classes.nib
r4710 r4715 1 1 { 2 2 IBClasses = ( 3 {CLASS = FHFullscreenWindow; LANGUAGE = ObjC; SUPERCLASS = NSWindow; },4 {5 CLASS = FHFullscreenWindowController;6 LANGUAGE = ObjC;7 OUTLETS = {"_imageView" = FHImageView; };8 SUPERCLASS = FHWindowController;9 },10 3 { 11 4 CLASS = FHImageView; … … 14 7 SUPERCLASS = NSView; 15 8 }, 9 { 10 CLASS = FHSlideshowController; 11 LANGUAGE = ObjC; 12 OUTLETS = {"_imageView" = FHImageView; }; 13 SUPERCLASS = FHWindowController; 14 }, 15 {CLASS = FHSlideshowWindow; LANGUAGE = ObjC; SUPERCLASS = NSWindow; }, 16 16 { 17 17 CLASS = FHWindowController; Footagehead/trunk/English.lproj/Slideshow.nib/info.nib
r4709 r4715 12 12 </array> 13 13 <key>IBSystem Version</key> 14 <string>8P 2137</string>14 <string>8P135</string> 15 15 </dict> 16 16 </plist> Footagehead/trunk/FHBrowserController.h
r4710 r4715 32 32 @class FHImageLoader, FHHandler; 33 33 34 @interface FHBrowser WindowController : FHWindowController {34 @interface FHBrowserController : FHWindowController { 35 35 IBOutlet NSBox *_contentBox; 36 36 IBOutlet WISplitView *_splitView; … … 72 72 73 73 74 #define FHBrowser WindowControllerDidLoadHandler @"FHBrowserWindowControllerDidLoadHandler"75 #define FHBrowser WindowControllerChangedZoomMode @"FHBrowserWindowControllerChangedZoomMode"74 #define FHBrowserControllerDidLoadHandler @"FHBrowserControllerDidLoadHandler" 75 #define FHBrowserControllerChangedZoomMode @"FHBrowserControllerChangedZoomMode" 76 76 77 77 Footagehead/trunk/FHBrowserController.m
r4713 r4715 27 27 */ 28 28 29 #import "FHBrowser WindowController.h"29 #import "FHBrowserController.h" 30 30 #import "FHCache.h" 31 31 #import "FHFile.h" 32 32 #import "FHFileCell.h" 33 #import "FHFullscreenWindowController.h"34 33 #import "FHHandler.h" 35 34 #import "FHImage.h" … … 37 36 #import "FHImageView.h" 38 37 #import "FHSettings.h" 39 40 @interface FHBrowserWindowController(Private) 38 #import "FHSlideshowController.h" 39 40 @interface FHBrowserController(Private) 41 41 42 42 - (NSToolbar *)_toolbar; … … 62 62 63 63 64 @implementation FHBrowser WindowController(Private)64 @implementation FHBrowserController(Private) 65 65 66 66 - (NSToolbar *)_toolbar { … … 265 265 266 266 [[NSNotificationCenter defaultCenter] 267 postNotificationName:FHBrowser WindowControllerDidLoadHandler267 postNotificationName:FHBrowserControllerDidLoadHandler 268 268 object:_handler]; 269 269 … … 448 448 449 449 450 @implementation FHBrowser WindowController450 @implementation FHBrowserController 451 451 452 452 - (id)init { 453 self = [super initWithWindowNibName:@"Browser Window"];453 self = [super initWithWindowNibName:@"Browser"]; 454 454 455 455 _imageLoader = [[FHImageLoader alloc] init]; … … 1114 1114 [FHSettings setInt:scaling forKey:FHImageScalingMethod]; 1115 1115 1116 [[NSNotificationCenter defaultCenter] postNotificationName:FHBrowser WindowControllerChangedZoomMode];1116 [[NSNotificationCenter defaultCenter] postNotificationName:FHBrowserControllerChangedZoomMode]; 1117 1117 1118 1118 [self _updateRightStatus]; … … 1170 1170 1171 1171 - (void)slideshowPanelDidEnd:(NSOpenPanel *)sheet returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo { 1172 FH FullscreenWindowController *controller;1172 FHSlideshowController *controller; 1173 1173 1174 1174 [_screenPanel close]; … … 1180 1180 [FHSettings setInt:[_screenAutoSwitchTextField intValue] forKey:FHFullscreenAutoSwitchTime]; 1181 1181 1182 controller = [[FH FullscreenWindowController alloc] initWithFiles:[_handler files] index:[_tableView selectedRow]];1182 controller = [[FHSlideshowController alloc] initWithFiles:[_handler files] index:[_tableView selectedRow]]; 1183 1183 [controller showWindow:self]; 1184 1184 [controller release]; Footagehead/trunk/FHController.h
r4709 r4715 27 27 */ 28 28 29 @class FHBrowser WindowController;30 @class FHImageView, FH FullscreenWindow;29 @class FHBrowserController; 30 @class FHImageView, FHSlideshowWindow; 31 31 @class FHHandler, FHFile; 32 32 … … 75 75 IBOutlet NSTextView *_openSpotlightTextView; 76 76 77 FHBrowser WindowController *_browserController;77 FHBrowserController *_browserController; 78 78 79 FH FullscreenWindow *_fullscreenWindow;79 FHSlideshowWindow *_fullscreenWindow; 80 80 FHHandler *_handler; 81 81 Footagehead/trunk/FHController.m
r4709 r4715 28 28 29 29 #import "NSImage-FHAdditions.h" 30 #import "FHBrowser WindowController.h"30 #import "FHBrowserController.h" 31 31 #import "FHCache.h" 32 32 #import "FHController.h" 33 33 #import "FHFile.h" 34 34 #import "FHFileCell.h" 35 #import "FH FullscreenWindow.h"35 #import "FHSlideshowWindow.h" 36 36 #import "FHHandler.h" 37 37 #import "FHImage.h" … … 268 268 addObserver:self 269 269 selector:@selector(windowControllerDidLoadHandler:) 270 name:FHBrowser WindowControllerDidLoadHandler];270 name:FHBrowserControllerDidLoadHandler]; 271 271 272 272 [[NSNotificationCenter defaultCenter] 273 273 addObserver:self 274 274 selector:@selector(windowControllerChangedZoomMode:) 275 name:FHBrowser WindowControllerChangedZoomMode];275 name:FHBrowserControllerChangedZoomMode]; 276 276 277 277 [[[NSWorkspace sharedWorkspace] notificationCenter] … … 285 285 name:NSWorkspaceDidUnmountNotification]; 286 286 287 _browserController = [[FHBrowser WindowController alloc] init];287 _browserController = [[FHBrowserController alloc] init]; 288 288 } 289 289 … … 451 451 452 452 // --- create fullscreen window 453 _fullscreenWindow = [[FH FullscreenWindow alloc]453 _fullscreenWindow = [[FHSlideshowWindow alloc] 454 454 initWithContentRect:screenRect 455 455 styleMask:NSBorderlessWindowMask Footagehead/trunk/FHSlideshowController.h
r4710 r4715 32 32 @class FHImageLoader; 33 33 34 @interface FH FullscreenWindowController : FHWindowController {34 @interface FHSlideshowController : FHWindowController { 35 35 IBOutlet FHImageView *_imageView; 36 36 Footagehead/trunk/FHSlideshowController.m
r4709 r4715 28 28 29 29 #import "FHFile.h" 30 #import "FH FullscreenWindowController.h"30 #import "FHSlideshowController.h" 31 31 #import "FHImageLoader.h" 32 32 #import "FHImageView.h" 33 33 #import "FHSettings.h" 34 34 35 @implementation FH FullscreenWindowController35 @implementation FHSlideshowController 36 36 37 37 - (id)initWithFiles:(NSArray *)files index:(NSUInteger)index { 38 self = [super initWithWindowNibName:@" FullscreenWindow"];38 self = [super initWithWindowNibName:@"Slideshow"]; 39 39 40 40 _files = [files retain]; Footagehead/trunk/FHSlideshowWindow.h
r4706 r4715 27 27 */ 28 28 29 @interface FH FullscreenWindow : NSWindow29 @interface FHSlideshowWindow : NSWindow 30 30 31 31 @end Footagehead/trunk/FHSlideshowWindow.m
r4706 r4715 29 29 #import "NSImage-FHAdditions.h" 30 30 #import "FHController.h" 31 #import "FH FullscreenWindow.h"31 #import "FHSlideshowWindow.h" 32 32 33 @implementation FH FullscreenWindow33 @implementation FHSlideshowWindow 34 34 35 35 - (void)sendEvent:(NSEvent *)event { Footagehead/trunk/FHTableView.m
r4709 r4715 29 29 #import "FHImageView.h" 30 30 #import "FHTableView.h" 31 #import "FHBrowser WindowController.h"31 #import "FHBrowserController.h" 32 32 33 33 @implementation FHTableView Footagehead/trunk/Footagehead.xcodeproj/project.pbxproj
r4714 r4715 45 45 46 46 /* Begin PBXBuildFile section */ 47 770042A20BDE01CC00900647 /* Browser.nib in Resources */ = {isa = PBXBuildFile; fileRef = 770042940BDE01CC00900647 /* Browser.nib */; }; 48 770042A30BDE01CC00900647 /* Slideshow.nib in Resources */ = {isa = PBXBuildFile; fileRef = 770042960BDE01CC00900647 /* Slideshow.nib */; }; 47 49 77494704085A57F600BA0915 /* FHImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 77494702085A57F600BA0915 /* FHImage.m */; }; 48 50 775BA4F2075F70ED00F0941E /* NSImage-FHAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 775BA4F0075F70ED00F0941E /* NSImage-FHAdditions.m */; }; … … 71 73 778F0CD40B64C96D00E3CD47 /* FHLHAHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 778F0CD20B64C96D00E3CD47 /* FHLHAHandler.m */; }; 72 74 778F0DE30B64D45500E3CD47 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 778F0DE20B64D45500E3CD47 /* CoreFoundation.framework */; }; 73 77B151800BD8FEA2009B6183 /* FHBrowser WindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 77B1517E0BD8FEA2009B6183 /* FHBrowserWindowController.m */; };74 77B151840BD8FEB1009B6183 /* FH FullscreenWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 77B151820BD8FEB1009B6183 /* FHFullscreenWindowController.m */; };75 77B151800BD8FEA2009B6183 /* FHBrowserController.m in Sources */ = {isa = PBXBuildFile; fileRef = 77B1517E0BD8FEA2009B6183 /* FHBrowserController.m */; }; 76 77B151840BD8FEB1009B6183 /* FHSlideshowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 77B151820BD8FEB1009B6183 /* FHSlideshowController.m */; }; 75 77 77B151880BD8FEBB009B6183 /* FHImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 77B151860BD8FEBB009B6183 /* FHImageLoader.m */; }; 76 77B151BD0BD8FF63009B6183 /* FullscreenWindow.nib in Resources */ = {isa = PBXBuildFile; fileRef = 77B151BA0BD8FF63009B6183 /* FullscreenWindow.nib */; };77 78 77BD99520760B7380007D034 /* FHTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 77BD99500760B7380007D034 /* FHTableView.m */; }; 78 79 77CDAE72083B3515003BE654 /* ReleaseNotes.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 77CDAE70083B3515003BE654 /* ReleaseNotes.rtf */; }; … … 91 92 A52DF8F60566E76100D2BE94 /* Error.tiff in Resources */ = {isa = PBXBuildFile; fileRef = A52DF8F50566E76000D2BE94 /* Error.tiff */; }; 92 93 A53901F40596A3E7000FBFD6 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A53901F30596A3E7000FBFD6 /* Carbon.framework */; }; 93 A54BD5420566834700E3ACBC /* FH FullscreenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = A54BD5400566834700E3ACBC /* FHFullscreenWindow.m */; };94 A54BD5420566834700E3ACBC /* FHSlideshowWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = A54BD5400566834700E3ACBC /* FHSlideshowWindow.m */; }; 94 95 A5643D300A26056800ADF4F5 /* WiredAdditions.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A5643CB80A26055300ADF4F5 /* WiredAdditions.framework */; }; 95 96 A5643D310A26056A00ADF4F5 /* WiredAdditions.framework in Copy Files (Frameworks) */ = {isa = PBXBuildFile; fileRef = A5643CB80A26055300ADF4F5 /* WiredAdditions.framework */; }; … … 102 103 A599A110075F94F400A03BA5 /* FHFileCell.m in Sources */ = {isa = PBXBuildFile; fileRef = A599A10E075F94F400A03BA5 /* FHFileCell.m */; }; 103 104 A5A183F00BDD5231004788EF /* FHWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = A5A183EE0BDD5231004788EF /* FHWindowController.m */; }; 104 A5A184180BDD52D6004788EF /* BrowserWindow.nib in Resources */ = {isa = PBXBuildFile; fileRef = A5A184160BDD52D6004788EF /* BrowserWindow.nib */; };105 105 A5A184320BDD5467004788EF /* ActualSize.tiff in Resources */ = {isa = PBXBuildFile; fileRef = A5A184310BDD5467004788EF /* ActualSize.tiff */; }; 106 106 A5A184340BDD546D004788EF /* ZoomToFit.tiff in Resources */ = {isa = PBXBuildFile; fileRef = A5A184330BDD546D004788EF /* ZoomToFit.tiff */; }; … … 226 226 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; }; 227 227 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; }; 228 770042950BDE01CC00900647 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/Browser.nib; sourceTree = "<group>"; }; 229 770042970BDE01CC00900647 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/Slideshow.nib; sourceTree = "<group>"; }; 228 230 7739664D08574E5400058AF5 /* Footagehead.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Footagehead.xcconfig; sourceTree = "<group>"; }; 229 231 77396B390857A18300058AF5 /* WiredAdditions.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WiredAdditions.xcodeproj; path = WiredAdditions/WiredAdditions.xcodeproj; sourceTree = SOURCE_ROOT; }; … … 263 265 778F0CD20B64C96D00E3CD47 /* FHLHAHandler.m */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.objc; path = FHLHAHandler.m; sourceTree = "<group>"; }; 264 266 778F0DE20B64D45500E3CD47 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; }; 265 77B1517D0BD8FEA2009B6183 /* FHBrowser WindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FHBrowserWindowController.h; sourceTree = "<group>"; };266 77B1517E0BD8FEA2009B6183 /* FHBrowser WindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FHBrowserWindowController.m; sourceTree = "<group>"; };267 77B151810BD8FEB1009B6183 /* FH FullscreenWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FHFullscreenWindowController.h; sourceTree = "<group>"; };268 77B151820BD8FEB1009B6183 /* FH FullscreenWindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FHFullscreenWindowController.m; sourceTree = "<group>"; };267 77B1517D0BD8FEA2009B6183 /* FHBrowserController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FHBrowserController.h; sourceTree = "<group>"; }; 268 77B1517E0BD8FEA2009B6183 /* FHBrowserController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FHBrowserController.m; sourceTree = "<group>"; }; 269 77B151810BD8FEB1009B6183 /* FHSlideshowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FHSlideshowController.h; sourceTree = "<group>"; }; 270 77B151820BD8FEB1009B6183 /* FHSlideshowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FHSlideshowController.m; sourceTree = "<group>"; }; 269 271 77B151850BD8FEBB009B6183 /* FHImageLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FHImageLoader.h; sourceTree = "<group>"; }; 270 272 77B151860BD8FEBB009B6183 /* FHImageLoader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FHImageLoader.m; sourceTree = "<group>"; }; 271 77B151BB0BD8FF63009B6183 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/FullscreenWindow.nib; sourceTree = "<group>"; };272 273 77B151CF0BD8FF94009B6183 /* WiredAdditions */ = {isa = PBXFileReference; lastKnownFileType = folder; path = WiredAdditions; sourceTree = SOURCE_ROOT; }; 274 77B16B2C0BDE0064009B6183 /* FHBrowserWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FHBrowserWindowController.h; sourceTree = "<group>"; }; 275 77B16B2E0BDE0091009B6183 /* FHBrowserWindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FHBrowserWindowController.m; sourceTree = "<group>"; }; 276 77B16B2F0BDE00A4009B6183 /* FHFullscreenWindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FHFullscreenWindowController.m; sourceTree = "<group>"; }; 277 77B16B300BDE00B3009B6183 /* FHFullscreenWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FHFullscreenWindowController.h; sourceTree = "<group>"; }; 278 77B16B450BDE010C009B6183 /* FHFullscreenWindow.h */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.h; path = FHFullscreenWindow.h; sourceTree = "<group>"; }; 279 77B16B460BDE0124009B6183 /* FHFullscreenWindow.m */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.objc; path = FHFullscreenWindow.m; sourceTree = "<group>"; }; 273 280 77BD994F0760B7380007D034 /* FHTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FHTableView.h; sourceTree = "<group>"; }; 274 281 77BD99500760B7380007D034 /* FHTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FHTableView.m; sourceTree = "<group>"; }; … … 298 305 A53901F30596A3E7000FBFD6 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; }; 299 306 A53AC86E05D9325F00A39CED /* Japanese */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = Japanese; path = Japanese.lproj/Credits.rtf; sourceTree = "<group>"; }; 300 A54BD5400566834700E3ACBC /* FH FullscreenWindow.m */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.objc; path = FHFullscreenWindow.m; sourceTree = "<group>"; };301 A54BD5410566834700E3ACBC /* FH FullscreenWindow.h */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.h; path = FHFullscreenWindow.h; sourceTree = "<group>"; };307 A54BD5400566834700E3ACBC /* FHSlideshowWindow.m */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.objc; path = FHSlideshowWindow.m; sourceTree = "<group>"; }; 308 A54BD5410566834700E3ACBC /* FHSlideshowWindow.h */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.h; path = FHSlideshowWindow.h; sourceTree = "<group>"; }; 302 309 A5643CB80A26055300ADF4F5 /* WiredAdditions.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WiredAdditions.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 303 310 A570FD9C0863661300317D0F /* NSData-FHAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData-FHAdditions.h"; sourceTree = "<group>"; }; … … 315 322 A5A183ED0BDD5231004788EF /* FHWindowController.h */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.h; path = FHWindowController.h; sourceTree = "<group>"; }; 316 323 A5A183EE0BDD5231004788EF /* FHWindowController.m */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.objc; path = FHWindowController.m; sourceTree = "<group>"; }; 317 A5A184170BDD52D6004788EF /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/BrowserWindow.nib; sourceTree = "<group>"; };318 324 A5A184310BDD5467004788EF /* ActualSize.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = ActualSize.tiff; sourceTree = "<group>"; }; 319 325 A5A184330BDD546D004788EF /* ZoomToFit.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = ZoomToFit.tiff; sourceTree = "<group>"; }; … … 488 494 isa = PBXGroup; 489 495 children = ( 490 77B1517E0BD8FEA2009B6183 /* FHBrowserWindowController.m */, 491 77B1517D0BD8FEA2009B6183 /* FHBrowserWindowController.h */, 496 77B16B2E0BDE0091009B6183 /* FHBrowserWindowController.m */, 497 77B16B2C0BDE0064009B6183 /* FHBrowserWindowController.h */, 498 77B1517E0BD8FEA2009B6183 /* FHBrowserController.m */, 499 77B1517D0BD8FEA2009B6183 /* FHBrowserController.h */, 492 500 A587DF79055AA418005D2097 /* FHController.m */, 493 501 A587DF7D055AA418005D2097 /* FHController.h */, 494 502 A599A10E075F94F400A03BA5 /* FHFileCell.m */, 495 503 A599A10D075F94F400A03BA5 /* FHFileCell.h */, 496 A54BD5400566834700E3ACBC /* FHFullscreenWindow.m */,497 A54BD5410566834700E3ACBC /* FHFullscreenWindow.h */,498 77B151820BD8FEB1009B6183 /* FHFullscreenWindowController.m */,499 77B151810BD8FEB1009B6183 /* FHFullscreenWindowController.h */,500 504 77B151860BD8FEBB009B6183 /* FHImageLoader.m */, 501 505 77B151850BD8FEBB009B6183 /* FHImageLoader.h */, 502 506 77CDB021083B6B85003BE654 /* FHImageView.m */, 503 507 77CDB020083B6B85003BE654 /* FHImageView.h */, 508 77B151820BD8FEB1009B6183 /* FHSlideshowController.m */, 509 77B151810BD8FEB1009B6183 /* FHSlideshowController.h */, 510 A54BD5400566834700E3ACBC /* FHSlideshowWindow.m */, 511 A54BD5410566834700E3ACBC /* FHSlideshowWindow.h */, 512 77B16B460BDE0124009B6183 /* FHFullscreenWindow.m */, 513 77B16B450BDE010C009B6183 /* FHFullscreenWindow.h */, 514 77B16B2F0BDE00A4009B6183 /* FHFullscreenWindowController.m */, 515 77B16B300BDE00B3009B6183 /* FHFullscreenWindowController.h */, 504 516 77BD99500760B7380007D034 /* FHTableView.m */, 505 517 77BD994F0760B7380007D034 /* FHTableView.h */, … … 575 587 A5E5174205774ED40004F5D6 /* Credits.rtf */, 576 588 77CDAE70083B3515003BE654 /* ReleaseNotes.rtf */, 577 A5A184160BDD52D6004788EF /* BrowserWindow.nib */, 578 77B151BA0BD8FF63009B6183 /* FullscreenWindow.nib */, 589 770042940BDE01CC00900647 /* Browser.nib */, 579 590 29B97318FDCFA39411CA2CEA /* MainMenu.nib */, 591 770042960BDE01CC00900647 /* Slideshow.nib */, 580 592 A51395F405771ED4007FE220 /* Footagehead.icns */, 581 593 A5A184310BDD5467004788EF /* ActualSize.tiff */, … … 992 1004 A5E5174405774ED40004F5D6 /* Credits.rtf in Resources */, 993 1005 77CDAE72083B3515003BE654 /* ReleaseNotes.rtf in Resources */, 994 A5A184180BDD52D6004788EF /* BrowserWindow.nib in Resources */, 995 77B151BD0BD8FF63009B6183 /* FullscreenWindow.nib in Resources */, 1006 770042A20BDE01CC00900647 /* Browser.nib in Resources */, 996 1007 8D11072A0486CEB800E47090 /* MainMenu.nib in Resources */, 1008 770042A30BDE01CC00900647 /* Slideshow.nib in Resources */, 997 1009 778F0C590B64C8B200E3CD47 /* lha in Resources */, 998 1010 A5B451EA0880AE56003B1DA1 /* unrar in Resources */, … … 1112 1124 775BA4F2075F70ED00F0941E /* NSImage-FHAdditions.m in Sources */, 1113 1125 778F0B160B64C27100E3CD47 /* FHArchiveHandler.m in Sources */, 1114 77B151800BD8FEA2009B6183 /* FHBrowser WindowController.m in Sources */,1126 77B151800BD8FEA2009B6183 /* FHBrowserController.m in Sources */, 1115 1127 A5B1FB9F067CB90400111D0A /* FHCache.m in Sources */, 1116 1128 A587DF83055AA418005D2097 /* FHController.m in Sources */, … … 1127 1139 77CDB023083B6B85003BE654 /* FHImageView.m in Sources */, 1128 1140 77B151880BD8FEBB009B6183 /* FHImageLoader.m in Sources */, 1129 A54BD5420566834700E3ACBC /* FHFullscreenWindow.m in Sources */,1130 77B151840BD8FEB1009B6183 /* FHFullscreenWindowController.m in Sources */,1131 1141 778F0CD40B64C96D00E3CD47 /* FHLHAHandler.m in Sources */, 1132 1142 A5B1F9C1067BDF2300111D0A /* FHRangeHandler.m in Sources */, 1133 1143 A5B452260880B181003B1DA1 /* FHRARHandler.m in Sources */, 1134 1144 A587DF85055AA418005D2097 /* FHSettings.m in Sources */, 1145 77B151840BD8FEB1009B6183 /* FHSlideshowController.m in Sources */, 1146 A54BD5420566834700E3ACBC /* FHSlideshowWindow.m in Sources */, 1135 1147 A5092F57083E7812006646D1 /* FHSpotlightHandler.m in Sources */, 1136 1148 77BD99520760B7380007D034 /* FHTableView.m in Sources */, … … 1233 1245 sourceTree = "<group>"; 1234 1246 }; 1235 77 B151BA0BD8FF63009B6183 /* FullscreenWindow.nib */ = {1247 770042940BDE01CC00900647 /* Browser.nib */ = { 1236 1248 isa = PBXVariantGroup; 1237 1249 children = ( 1238 77B151BB0BD8FF63009B6183 /* English */, 1239 ); 1240 name = FullscreenWindow.nib; 1250 770042950BDE01CC00900647 /* English */, 1251 ); 1252 name = Browser.nib; 1253 sourceTree = "<group>"; 1254 }; 1255 770042960BDE01CC00900647 /* Slideshow.nib */ = { 1256 isa = PBXVariantGroup; 1257 children = ( 1258 770042970BDE01CC00900647 /* English */, 1259 ); 1260 name = Slideshow.nib; 1241 1261 sourceTree = "<group>"; 1242 1262 }; … … 1247 1267 ); 1248 1268 name = ReleaseNotes.rtf; 1249 sourceTree = "<group>";1250 };1251 A5A184160BDD52D6004788EF /* BrowserWindow.nib */ = {1252 isa = PBXVariantGroup;1253 children = (1254 A5A184170BDD52D6004788EF /* English */,1255 );1256 name = BrowserWindow.nib;1257 1269 sourceTree = "<group>"; 1258 1270 };
