mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Add initial layered inspector code
This commit is contained in:
parent
1798e879b2
commit
0435aded37
6 changed files with 37 additions and 1 deletions
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"## Comment" = "Do NOT change this file, Gorm maintains it";
|
||||
GormLayeredInspector = {
|
||||
Actions = (
|
||||
);
|
||||
Outlets = (
|
||||
tableView
|
||||
);
|
||||
Super = NSObject;
|
||||
};
|
||||
}
|
Binary file not shown.
Binary file not shown.
|
@ -155,11 +155,13 @@ Gorm_LANGUAGES = \
|
|||
|
||||
Gorm_HEADERS = \
|
||||
GormAppDelegate.h \
|
||||
GormLanguageViewController.h
|
||||
GormLanguageViewController.h \
|
||||
GormLayeredInspector.h
|
||||
|
||||
Gorm_OBJC_FILES = \
|
||||
GormAppDelegate.m \
|
||||
GormLanguageViewController.m \
|
||||
GormLayeredInspector.m \
|
||||
main.m
|
||||
|
||||
-include GNUmakefile.preamble
|
||||
|
|
16
Applications/Gorm/GormLayeredInspector.h
Normal file
16
Applications/Gorm/GormLayeredInspector.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
/* All rights reserved */
|
||||
|
||||
#ifndef GormLayeredInspector_H_INCLUDE
|
||||
#define GormLayeredInspector_H_INCLUDE
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@interface GormLayeredInspector : NSObject
|
||||
{
|
||||
IBOutlet id tableView;
|
||||
}
|
||||
|
||||
|
||||
@end
|
||||
|
||||
#endif // GormLayeredInspector_H_INCLUDE
|
7
Applications/Gorm/GormLayeredInspector.m
Normal file
7
Applications/Gorm/GormLayeredInspector.m
Normal file
|
@ -0,0 +1,7 @@
|
|||
/* All rights reserved */
|
||||
|
||||
#import "GormLayeredInspector.h"
|
||||
|
||||
@implementation GormLayeredInspector
|
||||
|
||||
@end
|
Loading…
Reference in a new issue