mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Add new gorm file and controller
This commit is contained in:
parent
e3331dc088
commit
ecd126aa18
4 changed files with 65 additions and 0 deletions
30
English.lproj/GormObjectEditor.gorm/data.classes
Normal file
30
English.lproj/GormObjectEditor.gorm/data.classes
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"## Comment" = "Do NOT change this file, Gorm maintains it";
|
||||
FirstResponder = {
|
||||
Actions = (
|
||||
"createClassFiles:",
|
||||
"createSubclass:",
|
||||
"instantiateClass:",
|
||||
"loadClass:",
|
||||
"toggleView:",
|
||||
"removeClass:"
|
||||
);
|
||||
Super = NSObject;
|
||||
};
|
||||
GormClassEditor = {
|
||||
Actions = (
|
||||
"instantiateClass:",
|
||||
"createSubclass:",
|
||||
"loadClass:",
|
||||
"createClassFiles:",
|
||||
"removeClass:",
|
||||
"toggleView:"
|
||||
);
|
||||
Outlets = (
|
||||
classesView,
|
||||
mainView,
|
||||
viewToggle
|
||||
);
|
||||
Super = NSView;
|
||||
};
|
||||
}
|
BIN
English.lproj/GormObjectEditor.gorm/data.info
Normal file
BIN
English.lproj/GormObjectEditor.gorm/data.info
Normal file
Binary file not shown.
BIN
English.lproj/GormObjectEditor.gorm/objects.gorm
Normal file
BIN
English.lproj/GormObjectEditor.gorm/objects.gorm
Normal file
Binary file not shown.
35
GormCore/GormGenericEditorController.h
Normal file
35
GormCore/GormGenericEditorController.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/* GormGenericEditor.h
|
||||
*
|
||||
* Copyright (C) 1999, 2003 Free Software Foundation, Inc.
|
||||
*
|
||||
* Author: Richard Frith-Macdonald <richard@brainstrom.co.uk>
|
||||
* Author: Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
* Date: 1999, 2003, 2004
|
||||
*
|
||||
* This file is part of GNUstep.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#ifndef INCLUDED_GormGenericEditorController_h
|
||||
#define INCLUDED_GormGenericEditorController_h
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#import <InterfaceBuilder/InterfaceBuilder.h>
|
||||
|
||||
@interface GormGenericEditorController : NSViewController
|
||||
@end
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue