Changeset 4710
- Timestamp:
- 04/23/07 22:46:09 (2 years ago)
- Files:
-
- Footagehead/trunk/English.lproj/FullscreenWindow.nib/classes.nib (modified) (2 diffs)
- Footagehead/trunk/English.lproj/Window.nib/classes.nib (modified) (2 diffs)
- Footagehead/trunk/FHBrowserWindowController.h (modified) (1 diff)
- Footagehead/trunk/FHFullscreenWindowController.h (modified) (1 diff)
- Footagehead/trunk/FHWindowController.h (added)
- Footagehead/trunk/FHWindowController.m (added)
- Footagehead/trunk/Footagehead.xcodeproj/project.pbxproj (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Footagehead/trunk/English.lproj/FullscreenWindow.nib/classes.nib
r4709 r4710 6 6 LANGUAGE = ObjC; 7 7 OUTLETS = {"_imageView" = FHImageView; }; 8 SUPERCLASS = WIWindowController;8 SUPERCLASS = FHWindowController; 9 9 }, 10 10 { … … 13 13 OUTLETS = {"_scrollView" = NSScrollView; }; 14 14 SUPERCLASS = NSView; 15 }, 16 { 17 CLASS = FHWindowController; 18 LANGUAGE = ObjC; 19 SUPERCLASS = WIWindowController; 15 20 }, 16 21 {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, Footagehead/trunk/English.lproj/Window.nib/classes.nib
r4709 r4710 42 42 "_tableView" = FHTableView; 43 43 }; 44 SUPERCLASS = WIWindowController;44 SUPERCLASS = FHWindowController; 45 45 }, 46 46 { … … 61 61 OUTLETS = {"_imageScrollView" = NSScrollView; "_imageView" = FHImageView; }; 62 62 SUPERCLASS = WITableView; 63 }, 64 { 65 CLASS = FHWindowController; 66 LANGUAGE = ObjC; 67 SUPERCLASS = WIWindowController; 63 68 }, 64 69 { Footagehead/trunk/FHBrowserWindowController.h
r4709 r4710 27 27 */ 28 28 29 #import "FHWindowController.h" 30 29 31 @class FHTableView, FHImageView; 30 32 @class FHImageLoader, FHHandler; 31 33 32 @interface FHBrowserWindowController : WIWindowController {34 @interface FHBrowserWindowController : FHWindowController { 33 35 IBOutlet NSBox *_contentBox; 34 36 IBOutlet WISplitView *_splitView; Footagehead/trunk/FHFullscreenWindowController.h
r4709 r4710 27 27 */ 28 28 29 #import "FHWindowController.h" 30 29 31 @class FHImageView; 30 32 @class FHImageLoader; 31 33 32 @interface FHFullscreenWindowController : WIWindowController {34 @interface FHFullscreenWindowController : FHWindowController { 33 35 IBOutlet FHImageView *_imageView; 34 36 Footagehead/trunk/Footagehead.xcodeproj/project.pbxproj
r4709 r4710 156 156 A58BE75009BB53C400C3C20D /* RotateRight.tiff in Resources */ = {isa = PBXBuildFile; fileRef = A58BE74F09BB53C400C3C20D /* RotateRight.tiff */; }; 157 157 A599A110075F94F400A03BA5 /* FHFileCell.m in Sources */ = {isa = PBXBuildFile; fileRef = A599A10E075F94F400A03BA5 /* FHFileCell.m */; }; 158 A5A183EF0BDD5231004788EF /* FHWindowController.h in Copy Files (Frameworks) */ = {isa = PBXBuildFile; fileRef = A5A183ED0BDD5231004788EF /* FHWindowController.h */; }; 159 A5A183F00BDD5231004788EF /* FHWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = A5A183EE0BDD5231004788EF /* FHWindowController.m */; }; 158 160 A5B1F611067B3AA100111D0A /* FHHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A5B1F60F067B3AA100111D0A /* FHHandler.m */; }; 159 161 A5B1F617067B3B7900111D0A /* FHFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A5B1F616067B3B7900111D0A /* FHFileHandler.m */; }; … … 267 269 files = ( 268 270 A5643D310A26056A00ADF4F5 /* WiredAdditions.framework in Copy Files (Frameworks) */, 271 A5A183EF0BDD5231004788EF /* FHWindowController.h in Copy Files (Frameworks) */, 269 272 ); 270 273 name = "Copy Files (Frameworks)"; … … 422 425 A599A10D075F94F400A03BA5 /* FHFileCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FHFileCell.h; sourceTree = "<group>"; }; 423 426 A599A10E075F94F400A03BA5 /* FHFileCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FHFileCell.m; sourceTree = "<group>"; }; 427 A5A183ED0BDD5231004788EF /* FHWindowController.h */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.h; path = FHWindowController.h; sourceTree = "<group>"; }; 428 A5A183EE0BDD5231004788EF /* FHWindowController.m */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.objc; path = FHWindowController.m; sourceTree = "<group>"; }; 424 429 A5B1F60E067B3AA100111D0A /* FHHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FHHandler.h; sourceTree = "<group>"; }; 425 430 A5B1F60F067B3AA100111D0A /* FHHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FHHandler.m; sourceTree = "<group>"; }; … … 588 593 isa = PBXGroup; 589 594 children = ( 595 77B1517E0BD8FEA2009B6183 /* FHBrowserWindowController.m */, 596 77B1517D0BD8FEA2009B6183 /* FHBrowserWindowController.h */, 590 597 A587DF79055AA418005D2097 /* FHController.m */, 591 598 A587DF7D055AA418005D2097 /* FHController.h */, … … 602 609 77BD99500760B7380007D034 /* FHTableView.m */, 603 610 77BD994F0760B7380007D034 /* FHTableView.h */, 604 77B1517E0BD8FEA2009B6183 /* FHBrowserWindowController.m */,605 77B1517D0BD8FEA2009B6183 /* FHBrowserWindowController.h */,611 A5A183EE0BDD5231004788EF /* FHWindowController.m */, 612 A5A183ED0BDD5231004788EF /* FHWindowController.h */, 606 613 ); 607 614 name = Interface; … … 1361 1368 77B151800BD8FEA2009B6183 /* FHBrowserWindowController.m in Sources */, 1362 1369 A5B44F98087F9A2D003B1DA1 /* FHZipHandler.m in Sources */, 1370 A5A183F00BDD5231004788EF /* FHWindowController.m in Sources */, 1363 1371 ); 1364 1372 runOnlyForDeploymentPostprocessing = 0;
