Add new gorm file and controller

This commit is contained in:
Gregory John Casamento 2022-11-12 13:01:56 -05:00
parent e3331dc088
commit ecd126aa18
4 changed files with 65 additions and 0 deletions

View 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;
};
}

Binary file not shown.

Binary file not shown.

View 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