-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
GormCore/English.lproj/GormObjectOutlineView.gorm/data.classes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"## Comment" = "Do NOT change this file, Gorm maintains it"; | ||
FirstResponder = { | ||
Actions = ( | ||
"iconView:", | ||
"outlineView:" | ||
); | ||
Super = NSObject; | ||
}; | ||
GormObjectViewController = { | ||
Actions = ( | ||
"iconView:", | ||
"outlineView:" | ||
); | ||
Outlets = ( | ||
displayView, | ||
iconButton, | ||
outlineButton | ||
); | ||
Super = NSViewController; | ||
}; | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* All rights reserved */ | ||
|
||
#ifndef GormObjectViewController_H_INCLUDE | ||
#define GormObjectViewController_H_INCLUDE | ||
|
||
#import <AppKit/AppKit.h> | ||
|
||
@interface GormObjectViewController : NSViewController | ||
{ | ||
IBOutlet id displayView; | ||
IBOutlet id iconButton; | ||
IBOutlet id outlineButton; | ||
} | ||
|
||
- (IBAction) iconView: (id)sender; | ||
- (IBAction) outlineView: (id)sender; | ||
|
||
@end | ||
|
||
#endif // GormObjectViewController_H_INCLUDE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* All rights reserved */ | ||
|
||
#import "GormObjectViewController.h" | ||
|
||
@implementation GormObjectViewController | ||
|
||
- (IBAction) iconView: (id)sender | ||
{ | ||
} | ||
|
||
- (IBAction) outlineView: (id)sender | ||
{ | ||
} | ||
|
||
@end |