mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 20:11:20 +00:00
GormBoxEditor.m GormButtonEditor.h GormButtonEditor.m GormControlEditor.h GormControlEditor.m GormInternalViewEditor.h GormInternalViewEditor.m GormMatrixEditor.h GormPlacementInfo.h GormPosingView.h GormPosingView.m GormSplitViewEditor.h GormSplitViewEditor.m GormTabViewEditor.h GormTabViewEditor.m GormViewEditor.h GormViewEditor.m GormViewWithContentViewEditor.h GormViewWithContentViewEditor.m GormViewWithSubviewsEditor.h GormViewWithSubviewsEditor.m Palettes/3Containers/GormTableViewEditor.h Palettes/3Containers/GormTableViewEditor.m ChangeLog GNUmakefile Gorm.h Gorm.m GormClassEditor.m GormClassManager.m GormCustomClassInspector.m GormCustomView.m GormDocument.m GormMatrixEditor.m GormObjectEditor.m GormOutlineView.m GormPrivate.h GormWindowEditor.m Palettes/0Menus/GormMenuEditor.m Palettes/1Windows/main.m Palettes/2Controls/GormBoxInspector.gorm Palettes/2Controls/GormButtonInspector.gorm Palettes/2Controls/GormTextFieldInspector.gorm Palettes/2Controls/main.m Palettes/3Containers/GNUmakefile Palettes/3Containers/GormNSBrowser.m Palettes/3Containers/GormNSOutlineView.m Palettes/3Containers/GormNSTableView.h Palettes/3Containers/GormTableColumnInspector.classes Palettes/3Containers/GormTableColumnInspector.gorm Palettes/3Containers/GormTableViewInspector.gorm Palettes/3Containers/inspectors.m Palettes/3Containers/main.m Palettes/4Data/inspectors.m Palettes/4Data/main.m git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@14267 72102866-910b-0410-8b05-ffd578937521
74 lines
1.2 KiB
Objective-C
74 lines
1.2 KiB
Objective-C
#import "Gorm.h"
|
|
#import "GormPrivate.h"
|
|
|
|
@implementation GormClassEditor
|
|
|
|
- (GormClassEditor*) initWithDocument: (GormDocument*)doc
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
document = doc; // loose connection
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void) dealloc
|
|
{
|
|
RELEASE(selectedClassName);
|
|
|
|
[super dealloc];
|
|
}
|
|
|
|
+ (GormClassEditor*) classEditorForDocument: (GormDocument*)doc
|
|
{
|
|
return AUTORELEASE([[self alloc] initWithDocument: doc]);
|
|
}
|
|
|
|
- (void) setSelectedClassName: (NSString*)cn
|
|
{
|
|
ASSIGN(selectedClassName, cn);
|
|
}
|
|
|
|
//--- IBSelectionOwners protocol ---
|
|
- (unsigned) selectionCount
|
|
{
|
|
return (selectedClassName == nil)?0: 1;
|
|
}
|
|
|
|
- (NSArray*) selection
|
|
{
|
|
// when asked for a selection, it returns a class proxy
|
|
if (selectedClassName != nil)
|
|
{
|
|
NSArray *array;
|
|
GormClassProxy *classProxy;
|
|
|
|
classProxy = [[GormClassProxy alloc] initWithClassName:
|
|
selectedClassName];
|
|
array = [NSArray arrayWithObject: classProxy];
|
|
RELEASE(classProxy);
|
|
return array;
|
|
}
|
|
else
|
|
{
|
|
return [NSArray array];
|
|
}
|
|
}
|
|
|
|
- (void) drawSelection
|
|
{
|
|
|
|
}
|
|
|
|
- (void) makeSelectionVisible: (BOOL)flag
|
|
{
|
|
|
|
}
|
|
|
|
- (void) selectObjects: (NSArray*)objects
|
|
{
|
|
}
|
|
@end
|
|
|
|
|