apps-gorm/GormClassInspector.m
Gregory John Casamento ba5c344474 Adding new inspector for classes.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@16872 72102866-910b-0410-8b05-ffd578937521
2003-06-06 06:24:46 +00:00

283 lines
7.1 KiB
Objective-C

/** <title>GormClassInspector</title>
<abstract>allow user to select custom classes</abstract>
Copyright (C) 2003 Free Software Foundation, Inc.
Author: Gregory John Casamento <greg_casamento@yahoo.com>
Date: March 2003
This file is part of GNUstep.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; see the file COPYING.LIB.
If not, write to the Free Software Foundation,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* All Rights reserved */
#include <AppKit/AppKit.h>
#include "GormClassInspector.h"
#include "GormPrivate.h"
#include "GormClassManager.h"
#include "GormDocument.h"
// the data source classes for each of the tables...
@interface GormOutletDataSource : NSObject
{
id inspector;
}
- (void) setInspector: (id)ins;
@end
@interface GormActionDataSource : NSObject
{
id inspector;
}
- (void) setInspector: (id)ins;
@end
@implementation GormOutletDataSource
- (int) numberOfRowsInTableView: (NSTableView *)tv
{
NSArray *list = [[(Gorm *)NSApp classManager] allOutletsForClassNamed: [inspector _currentClass]];
return [list count];
}
- (id) tableView: (NSTableView *)tv
objectValueForTableColumn: (NSTableColumn *)tc
row: (int)rowIndex
{
NSArray *list = [[(Gorm *)NSApp classManager] allOutletsForClassNamed: [inspector _currentClass]];
return [list objectAtIndex: rowIndex];
}
- (void) tableView: (NSTableView *)tv
setObjectValue: (id)anObject
forTableColumn: (NSTableColumn *)tc
row: (int)rowIndex
{
NSArray *list = [[(Gorm *)NSApp classManager] allOutletsForClassNamed: [inspector _currentClass]];
NSString *name = [list objectAtIndex: rowIndex];
RETAIN(anObject);
[[(Gorm *)NSApp classManager] replaceOutlet: name
withOutlet: anObject
forClassNamed: [inspector _currentClass]];
}
// set methods
- (void) setInspector: (id)ins
{
ASSIGN(inspector, ins);
}
@end
@implementation GormActionDataSource
- (int) numberOfRowsInTableView: (NSTableView *)tv
{
NSArray *list = [[(Gorm *)NSApp classManager] allActionsForClassNamed: [inspector _currentClass]];
return [list count];
}
- (id) tableView: (NSTableView *)tv
objectValueForTableColumn: (NSTableColumn *)tc
row: (int)rowIndex
{
NSArray *list = [[(Gorm *)NSApp classManager] allActionsForClassNamed: [inspector _currentClass]];
return [list objectAtIndex: rowIndex];
}
- (void) tableView: (NSTableView *)tv
setObjectValue: (id)anObject
forTableColumn: (NSTableColumn *)tc
row: (int)rowIndex
{
NSArray *list = [[(Gorm *)NSApp classManager] allActionsForClassNamed: [inspector _currentClass]];
NSString *name = [list objectAtIndex: rowIndex];
RETAIN(anObject);
[[(Gorm *)NSApp classManager] replaceAction: name
withAction: anObject
forClassNamed: [inspector _currentClass]];
}
// set method
- (void) setInspector: (id)ins
{
ASSIGN(inspector, ins);
}
@end
@implementation GormClassInspector
+ (void) initialize
{
if (self == [GormClassInspector class])
{
// TBD
}
}
- (id) init
{
self = [super init];
if (self != nil)
{
// initialize all member variables...
actionTable = nil;
add = nil;
classField = nil;
outletTable = nil;
remove = nil;
tabView = nil;
currentClass = nil;
actionData = nil;
outletData = nil;
// load the gui...
if (![NSBundle loadNibNamed: @"GormClassInspector"
owner: self])
{
NSLog(@"Could not open gorm GormClassInspector");
return nil;
}
}
return self;
}
- (void) awakeFromNib
{
// instantiate..
actionData = [[GormActionDataSource alloc] init];
outletData = [[GormOutletDataSource alloc] init];
// initialize..
[actionData setInspector: self];
[outletData setInspector: self];
// use..
[actionTable setDataSource: actionData];
[outletTable setDataSource: outletData];
// delegate...
[actionTable setDelegate: self];
[outletTable setDelegate: self];
}
- (void) _refreshView
{
id addcell = [add cell];
id removecell = [remove cell];
BOOL isCustom = [classManager isCustomClass: [self _currentClass]];
[classField setStringValue: [self _currentClass]];
[outletTable reloadData];
[actionTable reloadData];
[addcell setEnabled: isCustom];
[removecell setEnabled: isCustom];
}
- (void) add: (id)sender
{
NSTabViewItem *tvi = [tabView selectedTabViewItem];
if([[tvi identifier] isEqualToString: @"Actions"])
{
[[(Gorm *)NSApp classManager] addNewActionToClassNamed: [self _currentClass]];
[actionTable reloadData];
}
else
{
[[(Gorm *)NSApp classManager] addNewOutletToClassNamed: [self _currentClass]];
[outletTable reloadData];
}
}
- (void) remove: (id)sender
{
NSTabViewItem *tvi = [tabView selectedTabViewItem];
if([[tvi identifier] isEqualToString: @"Actions"])
{
int i = [actionTable selectedRow];
NSArray *list = [[(Gorm *)NSApp classManager] allActionsForClassNamed: [self _currentClass]];
NSString *name = [list objectAtIndex: i];
[[(Gorm *)NSApp classManager] removeAction: name fromClassNamed: [self _currentClass]];
[actionTable reloadData];
}
else
{
int i = [outletTable selectedRow];
NSArray *list = [[(Gorm *)NSApp classManager] allOutletsForClassNamed: [self _currentClass]];
NSString *name = [list objectAtIndex: i];
[[(Gorm *)NSApp classManager] removeOutlet: name fromClassNamed: [self _currentClass]];
[outletTable reloadData];
}
}
- (void) select: (id)sender
{
NSLog(@"select...");
}
- (void) setObject: (id)anObject
{
ASSIGN(theobject,anObject);
ASSIGN(classManager, [(Gorm *)NSApp classManager]);
RETAIN(theobject);
[self _refreshView];
}
- (NSString *) _currentClass
{
return [theobject className];
}
- (BOOL) tableView: (NSTableView *)tableView
shouldEditTableColumn: (NSTableColumn *)aTableColumn
row: (int)rowIndex
{
BOOL result = NO;
NSArray *list = nil;
NSString *name = nil;
NSTabViewItem *tvi = [tabView selectedTabViewItem];
BOOL isAction = [[tvi identifier] isEqualToString: @"Actions"];
NSString *className = [self _currentClass];
// id classManager = [(Gorm *)NSApp classManager];
if(isAction)
{
list = [classManager allActionsForClassNamed: className];
name = [list objectAtIndex: rowIndex];
}
else
{
list = [classManager allOutletsForClassNamed: className];
name = [list objectAtIndex: rowIndex];
}
if([classManager isCustomClass: className])
{
if (isAction)
{
result = [classManager isAction: name
ofClass: className];
}
else
{
result = [classManager isOutlet: name
ofClass: className];
}
}
return result;
}
@end