mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 12:01:16 +00:00
are internal classes. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@15079 72102866-910b-0410-8b05-ffd578937521
3088 lines
83 KiB
Objective-C
3088 lines
83 KiB
Objective-C
/* GormDocument.m
|
||
*
|
||
* Copyright (C) 1999 Free Software Foundation, Inc.
|
||
*
|
||
* Author: Richard Frith-Macdonald <richard@brainstrom.co.uk>
|
||
* Date: 1999
|
||
* Author: Gregory John Casamento <greg_casamento@yahoo.com>
|
||
* Date: 2002
|
||
*
|
||
* 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 2 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||
*/
|
||
|
||
#include "GormPrivate.h"
|
||
#include "GormClassManager.h"
|
||
#include "GormCustomView.h"
|
||
#include "GormOutlineView.h"
|
||
#include <AppKit/NSImage.h>
|
||
#include <AppKit/NSSound.h>
|
||
|
||
NSString *IBDidOpenDocumentNotification = @"IBDidOpenDocumentNotification";
|
||
NSString *IBWillSaveDocumentNotification = @"IBWillSaveDocumentNotification";
|
||
NSString *IBDidSaveDocumentNotification = @"IBDidSaveDocumentNotification";
|
||
NSString *IBWillCloseDocumentNotification = @"IBWillCloseDocumentNotification";
|
||
|
||
@interface GormDocument (GModel)
|
||
- (id) openGModel: (NSString *)path;
|
||
@end
|
||
|
||
@implementation GormFirstResponder
|
||
- (NSImage*) imageForViewer
|
||
{
|
||
static NSImage *image = nil;
|
||
|
||
if (image == nil)
|
||
{
|
||
NSBundle *bundle = [NSBundle mainBundle];
|
||
NSString *path = [bundle pathForImageResource: @"GormFirstResponder"];
|
||
|
||
image = [[NSImage alloc] initWithContentsOfFile: path];
|
||
}
|
||
return image;
|
||
}
|
||
- (NSString*) inspectorClassName
|
||
{
|
||
return @"GormNotApplicableInspector";
|
||
}
|
||
- (NSString*) connectInspectorClassName
|
||
{
|
||
return @"GormConnectionInspector";
|
||
}
|
||
- (NSString*) sizeInspectorClassName
|
||
{
|
||
return @"GormNotApplicableInspector";
|
||
}
|
||
- (NSString*) classInspectorClassName
|
||
{
|
||
return @"GormNotApplicableInspector";
|
||
}
|
||
@end
|
||
|
||
@implementation GormFontManager
|
||
- (NSImage*) imageForViewer
|
||
{
|
||
static NSImage *image = nil;
|
||
|
||
if (image == nil)
|
||
{
|
||
NSBundle *bundle = [NSBundle mainBundle];
|
||
NSString *path = [bundle pathForImageResource: @"GormFontManager"];
|
||
|
||
image = [[NSImage alloc] initWithContentsOfFile: path];
|
||
}
|
||
return image;
|
||
}
|
||
@end
|
||
|
||
|
||
|
||
/*
|
||
* Trivial classes for connections from objects to their editors, and from
|
||
* child editors to their parents. This does nothing special, but we can
|
||
* use the fact that it's a different class to search for it in the connections
|
||
* array.
|
||
*/
|
||
@interface GormObjectToEditor : NSNibConnector
|
||
@end
|
||
|
||
@implementation GormObjectToEditor
|
||
@end
|
||
|
||
@interface GormEditorToParent : NSNibConnector
|
||
@end
|
||
|
||
@implementation GormEditorToParent
|
||
@end
|
||
|
||
@implementation GormDocument
|
||
|
||
static NSImage *objectsImage = nil;
|
||
static NSImage *imagesImage = nil;
|
||
static NSImage *soundsImage = nil;
|
||
static NSImage *classesImage = nil;
|
||
|
||
+ (void) initialize
|
||
{
|
||
if (self == [GormDocument class])
|
||
{
|
||
NSBundle *bundle;
|
||
NSString *path;
|
||
|
||
bundle = [NSBundle mainBundle];
|
||
path = [bundle pathForImageResource: @"GormObject"];
|
||
if (path != nil)
|
||
{
|
||
objectsImage = [[NSImage alloc] initWithContentsOfFile: path];
|
||
}
|
||
path = [bundle pathForImageResource: @"GormImage"];
|
||
if (path != nil)
|
||
{
|
||
imagesImage = [[NSImage alloc] initWithContentsOfFile: path];
|
||
}
|
||
path = [bundle pathForImageResource: @"GormSound"];
|
||
if (path != nil)
|
||
{
|
||
soundsImage = [[NSImage alloc] initWithContentsOfFile: path];
|
||
}
|
||
path = [bundle pathForImageResource: @"GormClass"];
|
||
if (path != nil)
|
||
{
|
||
classesImage = [[NSImage alloc] initWithContentsOfFile: path];
|
||
}
|
||
|
||
[self setVersion: GNUSTEP_NIB_VERSION];
|
||
}
|
||
}
|
||
|
||
- (void) addConnector: (id<IBConnectors>)aConnector
|
||
{
|
||
if ([connections indexOfObjectIdenticalTo: aConnector] == NSNotFound)
|
||
{
|
||
[connections addObject: aConnector];
|
||
}
|
||
}
|
||
|
||
- (NSArray*) allConnectors
|
||
{
|
||
return [NSArray arrayWithArray: connections];
|
||
}
|
||
|
||
|
||
- (void) attachObject: (id)anObject toParent: (id)aParent
|
||
{
|
||
NSArray *old;
|
||
|
||
/*
|
||
* Create a connector that links this object to its parent.
|
||
* A nil parent is the root of the hierarchy so we use a dummy object for it.
|
||
*/
|
||
if (aParent == nil)
|
||
{
|
||
aParent = filesOwner;
|
||
}
|
||
old = [self connectorsForSource: anObject ofClass: [NSNibConnector class]];
|
||
if ([old count] > 0)
|
||
{
|
||
[[old objectAtIndex: 0] setDestination: aParent];
|
||
}
|
||
else
|
||
{
|
||
NSNibConnector *con = [NSNibConnector new];
|
||
|
||
[con setSource: anObject];
|
||
[con setDestination: aParent];
|
||
[self addConnector: (id<IBConnectors>)con];
|
||
RELEASE(con);
|
||
}
|
||
/*
|
||
* Make sure that there is a name for this object.
|
||
*/
|
||
if ([self nameForObject: anObject] == nil)
|
||
{
|
||
[self setName: nil forObject: anObject];
|
||
}
|
||
|
||
/*
|
||
* Add top-level objects to objectsView and open their editors.
|
||
*/
|
||
if ([anObject isKindOfClass: [NSWindow class]] == YES
|
||
// || [anObject isKindOfClass: [NSMenu class]] == YES
|
||
|| [anObject isKindOfClass: [GSNibItem class]] == YES)
|
||
{
|
||
[objectsView addObject: anObject];
|
||
[[self openEditorForObject: anObject] activate];
|
||
if ([anObject isKindOfClass: [NSWindow class]] == YES)
|
||
{
|
||
// RETAIN(anObject);
|
||
[anObject setReleasedWhenClosed: NO];
|
||
}
|
||
}
|
||
|
||
if ([anObject isKindOfClass: [NSMenu class]] == YES)
|
||
{
|
||
[[self openEditorForObject: anObject] activate];
|
||
}
|
||
|
||
/*
|
||
* if this a scrollview, it is interesting to add its contentview
|
||
* if it is a tableview or a textview
|
||
*/
|
||
if (([anObject isKindOfClass: [NSScrollView class]] == YES)
|
||
&& ([(NSScrollView *)anObject documentView] != nil))
|
||
{
|
||
if ([[anObject documentView] isKindOfClass:
|
||
[NSTableView class]] == YES)
|
||
{
|
||
int i;
|
||
int count;
|
||
NSArray *tc;
|
||
id tv = [anObject documentView];
|
||
tc = [tv tableColumns];
|
||
count = [tc count];
|
||
[self attachObject: tv
|
||
toParent: aParent];
|
||
|
||
for (i = 0; i < count; i++)
|
||
{
|
||
[self attachObject: [tc objectAtIndex: i]
|
||
toParent: aParent];
|
||
}
|
||
}
|
||
else if ([[anObject documentView] isKindOfClass:
|
||
[NSTextView class]] == YES)
|
||
{
|
||
[self attachObject: [anObject documentView]
|
||
toParent: aParent];
|
||
}
|
||
}
|
||
}
|
||
|
||
- (void) attachObjects: (NSArray*)anArray toParent: (id)aParent
|
||
{
|
||
NSEnumerator *enumerator = [anArray objectEnumerator];
|
||
NSObject *obj;
|
||
|
||
while ((obj = [enumerator nextObject]) != nil)
|
||
{
|
||
[self attachObject: obj toParent: aParent];
|
||
}
|
||
}
|
||
|
||
// sound support
|
||
- (GormSound *)_createSoundPlaceHolder: (NSString *)path
|
||
{
|
||
NSString *name = [[path lastPathComponent] stringByDeletingPathExtension];
|
||
return AUTORELEASE([[GormSound alloc] initWithName: name path: path]);
|
||
}
|
||
|
||
// image support
|
||
- (GormImage *)_createImagePlaceHolder: (NSString *)path
|
||
{
|
||
NSMutableDictionary *dict = [NSMutableDictionary dictionary];
|
||
NSString *name = [[path lastPathComponent] stringByDeletingPathExtension];
|
||
// [dict setObject: path forKey: @"Path"];
|
||
// [dict setObject: name forKey: @"Name"];
|
||
return TEST_AUTORELEASE([[GormImage alloc] initWithName: name path: path]);
|
||
}
|
||
|
||
// template support
|
||
- (void) _replaceObjectsWithTemplates
|
||
{
|
||
if(![classManager isCustomClassMapEmpty])
|
||
{
|
||
NSEnumerator *en = [nameTable keyEnumerator];
|
||
NSString *key = nil;
|
||
|
||
while((key = [en nextObject]) != nil)
|
||
{
|
||
id obj = [nameTable objectForKey: key];
|
||
id template = nil;
|
||
NSString *className = [classManager customClassForObject: key];
|
||
|
||
[tempNameTable setObject: obj forKey: key]; // save the old object
|
||
NSLog(@"className = (%@), obj = (%@), key = (%@)",className,obj,key);
|
||
if(className != nil)
|
||
{
|
||
// The order in which these are handled is important. The mutually
|
||
// exclusive conditions below need to be evaluated in sequence to determine
|
||
// which template class should be used.
|
||
|
||
if([obj isKindOfClass: [NSWindow class]])
|
||
{
|
||
BOOL isVisible = [self objectIsVisibleAtLaunch: obj];
|
||
template = [[GormNSWindowTemplate alloc] initWithObject: obj
|
||
className: className];
|
||
[self setObject: obj isVisibleAtLaunch: NO];
|
||
[self setObject: template isVisibleAtLaunch: isVisible];
|
||
}
|
||
else if([obj isKindOfClass: [NSTextView class]])
|
||
{
|
||
template = [[GormNSTextViewTemplate alloc] initWithObject: obj
|
||
className: className];
|
||
[[obj superview] replaceSubview: obj with: template];
|
||
}
|
||
else if([obj isKindOfClass: [NSText class]])
|
||
{
|
||
template = [[GormNSTextTemplate alloc] initWithObject: obj
|
||
className: className];
|
||
[[obj superview] replaceSubview: obj with: template];
|
||
}
|
||
else if([obj isKindOfClass: [NSButton class]])
|
||
{
|
||
template = [[GormNSButtonTemplate alloc] initWithObject: obj
|
||
className: className];
|
||
[[obj superview] replaceSubview: obj with: template];
|
||
}
|
||
else if([obj isKindOfClass: [NSControl class]])
|
||
{
|
||
template = [[GormNSControlTemplate alloc] initWithObject: obj
|
||
className: className];
|
||
[[obj superview] replaceSubview: obj with: template];
|
||
}
|
||
else if([obj isKindOfClass: [NSView class]])
|
||
{
|
||
template = [[GormNSViewTemplate alloc] initWithObject: obj
|
||
className: className];
|
||
[[obj superview] replaceSubview: obj with: template];
|
||
}
|
||
else if([obj isKindOfClass: [NSMenu class]])
|
||
{
|
||
template = [[GormNSMenuTemplate alloc] initWithObject: obj
|
||
className: className];
|
||
}
|
||
|
||
[nameTable setObject: template forKey: key];
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
- (void) beginArchiving
|
||
{
|
||
NSEnumerator *enumerator;
|
||
id<IBConnectors> con;
|
||
id obj;
|
||
|
||
/*
|
||
* Map all connector sources and destinations to their name strings.
|
||
* Deactivate editors so they won't be archived.
|
||
*/
|
||
|
||
enumerator = [connections objectEnumerator];
|
||
while ((con = [enumerator nextObject]) != nil)
|
||
{
|
||
if ([con isKindOfClass: [GormObjectToEditor class]] == YES)
|
||
{
|
||
[savedEditors addObject: con];
|
||
[[con destination] deactivate];
|
||
}
|
||
else if ([con isKindOfClass: [GormEditorToParent class]] == YES)
|
||
{
|
||
[savedEditors addObject: con];
|
||
}
|
||
else
|
||
{
|
||
NSString *name;
|
||
obj = [con source];
|
||
name = [self nameForObject: obj];
|
||
[con setSource: name];
|
||
obj = [con destination];
|
||
name = [self nameForObject: obj];
|
||
[con setDestination: name];
|
||
}
|
||
}
|
||
[connections removeObjectsInArray: savedEditors];
|
||
|
||
/*
|
||
* Method to replace custom objects with templates for archiving.
|
||
*/
|
||
// ASSIGN(customClasses, [classManager customClassMap]); // assign the custom classes in the class manager
|
||
// RETAIN(customClasses);
|
||
if(![(Gorm *)NSApp isTestingInterface]) // if we arent testing the interface, substitute the templates when appropriate.
|
||
{
|
||
[self _replaceObjectsWithTemplates];
|
||
}
|
||
|
||
// [customClasses setObject: @"TestValue" forKey: @"TestKey"]; // temporary
|
||
NSLog(@"*** customClassMap = %@",[classManager customClassMap]);
|
||
[nameTable setObject: [classManager customClassMap] forKey: @"GSCustomClassMap"];
|
||
|
||
/*
|
||
* Remove objects and connections that shouldn't be archived.
|
||
*/
|
||
NSMapRemove(objToName, (void*)[nameTable objectForKey: @"NSOwner"]);
|
||
[nameTable removeObjectForKey: @"NSOwner"];
|
||
NSMapRemove(objToName, (void*)[nameTable objectForKey: @"NSFirst"]);
|
||
[nameTable removeObjectForKey: @"NSFirst"];
|
||
if (fontManager != nil)
|
||
{
|
||
NSMapRemove(objToName, (void*)[nameTable objectForKey: @"NSFont"]);
|
||
[nameTable removeObjectForKey: @"NSFont"];
|
||
}
|
||
|
||
/* Add information about the NSOwner to the archive */
|
||
NSMapInsert(objToName, (void*)[filesOwner className], (void*)@"NSOwner");
|
||
[nameTable setObject: [filesOwner className] forKey: @"NSOwner"];
|
||
|
||
}
|
||
|
||
- (void) changeCurrentClass: (id)sender
|
||
{
|
||
int row = [classesView selectedRow];
|
||
if(row >= 0)
|
||
{
|
||
[classEditor setSelectedClassName: [classesView itemAtRow: row]];
|
||
[self setSelectionFromEditor: (id)classEditor];
|
||
}
|
||
}
|
||
|
||
- (void) changeView: (id)sender
|
||
{
|
||
int tag = [[sender selectedCell] tag];
|
||
|
||
switch (tag)
|
||
{
|
||
case 0: // objects
|
||
[selectionBox setContentView: scrollView];
|
||
break;
|
||
case 1: // images
|
||
[selectionBox setContentView: imagesScrollView];
|
||
break;
|
||
case 2: // sounds
|
||
[selectionBox setContentView: soundsScrollView];
|
||
break;
|
||
case 3: // classes
|
||
[selectionBox setContentView: classesScrollView];
|
||
break;
|
||
}
|
||
}
|
||
|
||
- (GormClassManager*) classManager
|
||
{
|
||
return classManager;
|
||
}
|
||
|
||
/*
|
||
* A Gorm document is encoded in the archive as a GSNibContainer ...
|
||
* A class that the gnustep gui library knbows about and can unarchive.
|
||
*/
|
||
- (Class) classForCoder
|
||
{
|
||
return [GSNibContainer class];
|
||
}
|
||
|
||
- (NSArray*) connectorsForDestination: (id)destination
|
||
{
|
||
return [self connectorsForDestination: destination ofClass: 0];
|
||
}
|
||
|
||
- (NSArray*) connectorsForDestination: (id)destination
|
||
ofClass: (Class)aConnectorClass
|
||
{
|
||
NSMutableArray *array = [NSMutableArray arrayWithCapacity: 16];
|
||
NSEnumerator *enumerator = [connections objectEnumerator];
|
||
id<IBConnectors> c;
|
||
|
||
while ((c = [enumerator nextObject]) != nil)
|
||
{
|
||
if ([c destination] == destination
|
||
&& (aConnectorClass == 0 || aConnectorClass == [c class]))
|
||
{
|
||
[array addObject: c];
|
||
}
|
||
}
|
||
return array;
|
||
}
|
||
|
||
- (NSArray*) connectorsForSource: (id)source
|
||
{
|
||
return [self connectorsForSource: source ofClass: 0];
|
||
}
|
||
|
||
- (NSArray*) connectorsForSource: (id)source
|
||
ofClass: (Class)aConnectorClass
|
||
{
|
||
NSMutableArray *array = [NSMutableArray arrayWithCapacity: 16];
|
||
NSEnumerator *enumerator = [connections objectEnumerator];
|
||
id<IBConnectors> c;
|
||
|
||
while ((c = [enumerator nextObject]) != nil)
|
||
{
|
||
if ([c source] == source
|
||
&& (aConnectorClass == 0 || aConnectorClass == [c class]))
|
||
{
|
||
[array addObject: c];
|
||
}
|
||
}
|
||
return array;
|
||
}
|
||
|
||
- (BOOL) containsObject: (id)anObject
|
||
{
|
||
if ([self nameForObject: anObject] == nil)
|
||
{
|
||
return NO;
|
||
}
|
||
return YES;
|
||
}
|
||
|
||
- (BOOL) containsObjectWithName: (NSString*)aName forParent: (id)parent
|
||
{
|
||
id obj = [nameTable objectForKey: aName];
|
||
|
||
if (obj == nil)
|
||
{
|
||
return NO;
|
||
}
|
||
return YES;
|
||
}
|
||
|
||
- (BOOL) copyObject: (id)anObject
|
||
type: (NSString*)aType
|
||
toPasteboard: (NSPasteboard*)aPasteboard
|
||
{
|
||
return [self copyObjects: [NSArray arrayWithObject: anObject]
|
||
type: aType
|
||
toPasteboard: aPasteboard];
|
||
}
|
||
|
||
- (BOOL) copyObjects: (NSArray*)anArray
|
||
type: (NSString*)aType
|
||
toPasteboard: (NSPasteboard*)aPasteboard
|
||
{
|
||
NSEnumerator *enumerator;
|
||
NSMutableSet *editors;
|
||
id obj;
|
||
NSData *data;
|
||
|
||
/*
|
||
* Remove all editors from the selected objects before archiving
|
||
* and restore them afterwards.
|
||
*/
|
||
editors = [NSMutableSet new];
|
||
enumerator = [anArray objectEnumerator];
|
||
while ((obj = [enumerator nextObject]) != nil)
|
||
{
|
||
id editor = [self editorForObject: obj create: NO];
|
||
|
||
if (editor != nil)
|
||
{
|
||
[editors addObject: editor];
|
||
[editor deactivate];
|
||
}
|
||
}
|
||
data = [NSArchiver archivedDataWithRootObject: anArray];
|
||
enumerator = [editors objectEnumerator];
|
||
while ((obj = [enumerator nextObject]) != nil)
|
||
{
|
||
[obj activate];
|
||
}
|
||
RELEASE(editors);
|
||
|
||
[aPasteboard declareTypes: [NSArray arrayWithObject: aType]
|
||
owner: self];
|
||
return [aPasteboard setData: data forType: aType];
|
||
}
|
||
|
||
- (id) createSubclass: (id)sender
|
||
{
|
||
int i = [classesView selectedRow];
|
||
|
||
if(i >= 0 && ![classesView isEditing])
|
||
{
|
||
NSString *newClassName;
|
||
id itemSelected = [classesView itemAtRow: i];
|
||
|
||
newClassName = [classManager addClassWithSuperClassName:
|
||
itemSelected];
|
||
RETAIN(newClassName);
|
||
[classesView reloadData];
|
||
[classesView expandItem: itemSelected];
|
||
i = [classesView rowForItem: newClassName];
|
||
[classesView selectRow: i byExtendingSelection: NO];
|
||
[self editClass: self];
|
||
}
|
||
|
||
return self;
|
||
}
|
||
|
||
- (void) pasteboardChangedOwner: (NSPasteboard*)sender
|
||
{
|
||
NSDebugLog(@"Owner changed for %@", sender);
|
||
}
|
||
|
||
- (void) dealloc
|
||
{
|
||
[[NSNotificationCenter defaultCenter] removeObserver: self];
|
||
[window setDelegate: nil];
|
||
[window performClose: self];
|
||
RELEASE(classManager);
|
||
RELEASE(classEditor);
|
||
RELEASE(hidden);
|
||
RELEASE(filesOwner);
|
||
RELEASE(firstResponder);
|
||
RELEASE(fontManager);
|
||
NSFreeMapTable(objToName);
|
||
RELEASE(documentPath);
|
||
RELEASE(savedEditors);
|
||
RELEASE(scrollView);
|
||
RELEASE(classesScrollView);
|
||
RELEASE(tempNameTable);
|
||
[super dealloc];
|
||
}
|
||
|
||
- (void) detachObject: (id)anObject
|
||
{
|
||
NSString *name = RETAIN([self nameForObject: anObject]);
|
||
unsigned count;
|
||
|
||
[[self editorForObject: anObject create: NO] close];
|
||
|
||
count = [connections count];
|
||
while (count-- > 0)
|
||
{
|
||
id<IBConnectors> con = [connections objectAtIndex: count];
|
||
|
||
if ([con destination] == anObject || [con source] == anObject)
|
||
{
|
||
[connections removeObjectAtIndex: count];
|
||
}
|
||
}
|
||
NSMapRemove(objToName, (void*)anObject);
|
||
if ([anObject isKindOfClass: [NSWindow class]] == YES
|
||
|| [anObject isKindOfClass: [NSMenu class]] == YES)
|
||
{
|
||
[objectsView removeObject: anObject];
|
||
}
|
||
/*
|
||
* Make sure this object isn't in the list of objects to be made visible
|
||
* on nib loading.
|
||
*/
|
||
[self setObject: anObject isVisibleAtLaunch: NO];
|
||
|
||
[nameTable removeObjectForKey: name];
|
||
RELEASE(name);
|
||
}
|
||
|
||
- (void) detachObjects: (NSArray*)anArray
|
||
{
|
||
NSEnumerator *enumerator = [anArray objectEnumerator];
|
||
NSObject *obj;
|
||
|
||
while ((obj = [enumerator nextObject]) != nil)
|
||
{
|
||
[self detachObject: obj];
|
||
}
|
||
}
|
||
|
||
- (NSString*) documentPath
|
||
{
|
||
return documentPath;
|
||
}
|
||
|
||
- (id) parseHeader: (NSString *)headerPath
|
||
{
|
||
NSString *headerFile = [NSString stringWithContentsOfFile: headerPath];
|
||
NSScanner *headerScanner = [NSScanner scannerWithString: headerFile];
|
||
GormClassManager *cm = [self classManager];
|
||
|
||
while(![headerScanner isAtEnd])
|
||
{
|
||
NSString *classString = nil;
|
||
BOOL classfound = NO, result = NO;
|
||
NSArray *outletTokens = [NSArray arrayWithObjects: @"id", @"IBOutlet id", nil];
|
||
NSArray *actionTokens = [NSArray arrayWithObjects: @"(void)", @"(IBAction)", nil];
|
||
NSEnumerator *outletEnum = [outletTokens objectEnumerator];
|
||
NSEnumerator *actionEnum = [actionTokens objectEnumerator];
|
||
NSString *outletToken = nil;
|
||
NSString *actionToken = nil;
|
||
|
||
classfound = [headerScanner scanUpToString: @"@interface"
|
||
intoString: NULL];
|
||
|
||
[headerScanner scanUpToString: @"@end"
|
||
intoString: &classString];
|
||
|
||
if(classfound && ![headerScanner isAtEnd])
|
||
{
|
||
NSString
|
||
*className = nil,
|
||
*superClassName = nil,
|
||
*ivarString = nil,
|
||
*methodString = nil;
|
||
NSScanner
|
||
*classScanner = [NSScanner scannerWithString: classString],
|
||
*ivarScanner = nil,
|
||
*methodScanner = nil;
|
||
NSCharacterSet *stopSet = [NSCharacterSet characterSetWithCharactersInString: @" :"];
|
||
NSMutableArray
|
||
*actions = [NSMutableArray array],
|
||
*outlets = [NSMutableArray array];
|
||
|
||
[classScanner scanString: @"@interface"
|
||
intoString: NULL];
|
||
[classScanner scanUpToCharactersFromSet: stopSet
|
||
intoString: &className];
|
||
[classScanner scanString: @":"
|
||
intoString: NULL];
|
||
[classScanner scanUpToString: @"\n"
|
||
intoString: &superClassName];
|
||
[classScanner scanUpToString: @"{"
|
||
intoString: NULL];
|
||
[classScanner scanUpToString: @"}"
|
||
intoString: &ivarString];
|
||
[classScanner scanUpToString: @"@end"
|
||
intoString: &methodString];
|
||
NSDebugLog(@"Found a class \"%@\" with super class \"%@\"", className,
|
||
superClassName);
|
||
|
||
// Interate over the possible tokens which can make an
|
||
// ivar an outlet.
|
||
while((outletToken = [outletEnum nextObject]) != nil)
|
||
{
|
||
NSDebugLog(@"outlet Token = %@",outletToken);
|
||
// Scan the variables of the class...
|
||
ivarScanner = [NSScanner scannerWithString: ivarString];
|
||
while(![ivarScanner isAtEnd])
|
||
{
|
||
NSString *outlet = nil;
|
||
|
||
[ivarScanner scanUpToString: outletToken
|
||
intoString: NULL];
|
||
[ivarScanner scanString: outletToken
|
||
intoString: NULL];
|
||
[ivarScanner scanUpToString: @";"
|
||
intoString: &outlet];
|
||
if([ivarScanner isAtEnd] == NO
|
||
&& [outlets indexOfObject: outlet] == NSNotFound)
|
||
{
|
||
NSDebugLog(@"outlet = %@",outlet);
|
||
[outlets addObject: outlet];
|
||
}
|
||
}
|
||
}
|
||
|
||
while((actionToken = [actionEnum nextObject]) != nil)
|
||
{
|
||
NSDebugLog(@"Action token %@",actionToken);
|
||
methodScanner = [NSScanner scannerWithString: methodString];
|
||
while(![methodScanner isAtEnd])
|
||
{
|
||
NSString *action = nil;
|
||
BOOL hasArguments = NO;
|
||
NSCharacterSet *stopSet = [NSCharacterSet characterSetWithCharactersInString: @";:"];
|
||
|
||
// Scan the method name
|
||
[methodScanner scanUpToString: actionToken
|
||
intoString: NULL];
|
||
[methodScanner scanString: actionToken
|
||
intoString: NULL];
|
||
[methodScanner scanUpToCharactersFromSet: stopSet
|
||
intoString: &action];
|
||
|
||
// This will return true if the method has args.
|
||
hasArguments = [methodScanner scanString: @":"
|
||
intoString: NULL];
|
||
|
||
if(hasArguments)
|
||
{
|
||
BOOL isAction = NO;
|
||
NSString *argType = nil;
|
||
|
||
// If the argument is (id) then the method can
|
||
// be considered an action and we add it to the list.
|
||
isAction = [methodScanner scanString: @"(id)"
|
||
intoString: &argType];
|
||
|
||
if(![methodScanner isAtEnd])
|
||
{
|
||
if(isAction)
|
||
{
|
||
/* Add the ':' back */
|
||
action = [action stringByAppendingString: @":"];
|
||
NSDebugLog(@"action = %@",action);
|
||
[actions addObject: action];
|
||
}
|
||
else
|
||
{
|
||
NSDebugLog(@"Not an action");
|
||
}
|
||
}
|
||
}
|
||
} // end while
|
||
} // end while
|
||
|
||
result = [cm addClassNamed: className
|
||
withSuperClassNamed: superClassName
|
||
withActions: actions
|
||
withOutlets: outlets];
|
||
if(result)
|
||
{
|
||
NSLog(@"Class %@ added", className);
|
||
[classesView reloadData];
|
||
}
|
||
else
|
||
{
|
||
NSLog(@"Class %@ failed to add", className);
|
||
}
|
||
} // if we found a class
|
||
}
|
||
return self;
|
||
}
|
||
|
||
- (id) addAttributeToClass: (id)sender
|
||
{
|
||
[classesView addAttributeToClass];
|
||
return self;
|
||
}
|
||
|
||
- (id) remove: (id)sender
|
||
{
|
||
id anitem;
|
||
int i = [classesView selectedRow];
|
||
|
||
// if no selection, then return.
|
||
if(i == -1)
|
||
{
|
||
return self;
|
||
}
|
||
|
||
anitem = [classesView itemAtRow: i];
|
||
if([anitem isKindOfClass: [GormOutletActionHolder class]])
|
||
{
|
||
id itemBeingEdited = [classesView itemBeingEdited];
|
||
|
||
// if the class being edited is a custom class, then allow the deletion...
|
||
if([classManager isCustomClass: itemBeingEdited])
|
||
{
|
||
if([classesView editType] == Actions)
|
||
{
|
||
// if this action is an action on the class, not it's superclass
|
||
// allow the deletion...
|
||
if([classManager isAction: [anitem getName]
|
||
ofClass: itemBeingEdited])
|
||
{
|
||
[classManager removeAction: [anitem getName]
|
||
fromClassNamed: itemBeingEdited];
|
||
[classesView removeItemAtRow: i];
|
||
}
|
||
}
|
||
else if([classesView editType] == Outlets)
|
||
{
|
||
// if this outlet is an outlet on the class, not it's superclass
|
||
// allow the deletion...
|
||
if([classManager isOutlet: [anitem getName]
|
||
ofClass: itemBeingEdited])
|
||
{
|
||
[classManager removeOutlet: [anitem getName]
|
||
fromClassNamed: itemBeingEdited];
|
||
[classesView removeItemAtRow: i];
|
||
}
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
NSArray *subclasses = [classManager subClassesOf: anitem];
|
||
// if the class has no subclasses, then delete.
|
||
if([subclasses count] == 0)
|
||
{
|
||
// if the class being edited is a custom class, then allow the deletion...
|
||
if([classManager isCustomClass: anitem])
|
||
{
|
||
[classManager removeClassNamed: anitem];
|
||
[classesView reloadData];
|
||
}
|
||
}
|
||
else
|
||
{
|
||
NSString *message = [NSString stringWithFormat:
|
||
@"The class %@ has subclasses which must be removed",
|
||
anitem];
|
||
NSRunAlertPanel(@"Problem removing class",
|
||
message,
|
||
nil, nil, nil);
|
||
}
|
||
}
|
||
return self;
|
||
}
|
||
|
||
- (id) loadClass: (id)sender
|
||
{
|
||
NSArray *fileTypes = [NSArray arrayWithObjects: @"h", @"H", nil];
|
||
NSOpenPanel *oPanel = [NSOpenPanel openPanel];
|
||
int result;
|
||
|
||
[oPanel setAllowsMultipleSelection: NO];
|
||
[oPanel setCanChooseFiles: YES];
|
||
[oPanel setCanChooseDirectories: NO];
|
||
result = [oPanel runModalForDirectory: nil
|
||
file: nil
|
||
types: fileTypes];
|
||
if (result == NSOKButton)
|
||
{
|
||
return [self parseHeader: [oPanel filename]];
|
||
}
|
||
|
||
return nil;
|
||
}
|
||
|
||
- (id) editClass: (id)sender
|
||
{
|
||
[self changeCurrentClass: sender];
|
||
|
||
return self;
|
||
}
|
||
|
||
- (id) createClassFiles: (id)sender
|
||
{
|
||
NSSavePanel *sp;
|
||
NSString *className = [classesView itemBeingEdited];
|
||
int result;
|
||
|
||
sp = [NSSavePanel savePanel];
|
||
[sp setRequiredFileType: @"m"];
|
||
[sp setTitle: @"Save source file as..."];
|
||
if (documentPath == nil)
|
||
result = [sp runModalForDirectory: NSHomeDirectory()
|
||
file: [className stringByAppendingPathExtension: @"m"]];
|
||
else
|
||
result = [sp runModalForDirectory:
|
||
[documentPath stringByDeletingLastPathComponent]
|
||
file: [className stringByAppendingPathExtension: @"m"]];
|
||
|
||
if (result == NSOKButton)
|
||
{
|
||
NSString *sourceName = [sp filename];
|
||
NSString *headerName;
|
||
|
||
[sp setRequiredFileType: @"h"];
|
||
[sp setTitle: @"Save header file as..."];
|
||
result = [sp runModalForDirectory:
|
||
[sourceName stringByDeletingLastPathComponent]
|
||
file:
|
||
[[[sourceName lastPathComponent]
|
||
stringByDeletingPathExtension]
|
||
stringByAppendingString: @".h"]];
|
||
if (result == NSOKButton)
|
||
{
|
||
headerName = [sp filename];
|
||
NSLog(@"Saving %@",className);
|
||
if (![classManager makeSourceAndHeaderFilesForClass: className
|
||
withName: sourceName
|
||
and: headerName])
|
||
{
|
||
NSRunAlertPanel(@"Alert",
|
||
@"Could not create the class's file",
|
||
nil, nil, nil);
|
||
}
|
||
|
||
return self;
|
||
}
|
||
}
|
||
return nil;
|
||
}
|
||
|
||
- (void) editor: (id<IBEditors>)anEditor didCloseForObject: (id)anObject
|
||
{
|
||
NSArray *links;
|
||
|
||
/*
|
||
* If there is a link from this editor to a parent, remove it.
|
||
*/
|
||
links = [self connectorsForSource: anEditor
|
||
ofClass: [GormEditorToParent class]];
|
||
NSAssert([links count] < 2, NSInternalInconsistencyException);
|
||
if ([links count] == 1)
|
||
{
|
||
[connections removeObjectIdenticalTo: [links objectAtIndex: 0]];
|
||
}
|
||
|
||
/*
|
||
* Remove the connection linking the object to this editor
|
||
*/
|
||
links = [self connectorsForSource: anObject
|
||
ofClass: [GormObjectToEditor class]];
|
||
NSAssert([links count] < 2, NSInternalInconsistencyException);
|
||
if ([links count] == 1)
|
||
{
|
||
[connections removeObjectIdenticalTo: [links objectAtIndex: 0]];
|
||
}
|
||
|
||
/*
|
||
* Make sure that this editor is not the selection owner.
|
||
*/
|
||
if ([(id<IBSelectionOwners>)NSApp selectionOwner] == anEditor)
|
||
{
|
||
[self resignSelectionForEditor: anEditor];
|
||
}
|
||
}
|
||
|
||
- (id<IBEditors>) editorForObject: (id)anObject
|
||
create: (BOOL)flag
|
||
{
|
||
return [self editorForObject: anObject inEditor: nil create: flag];
|
||
}
|
||
|
||
- (id<IBEditors>) editorForObject: (id)anObject
|
||
inEditor: (id<IBEditors>)anEditor
|
||
create: (BOOL)flag
|
||
{
|
||
NSArray *links;
|
||
|
||
/*
|
||
* Look up the editor links for the object to see if it already has an
|
||
* editor. If it does return it, otherwise create a new editor and a
|
||
* link to it if the flag is set.
|
||
*/
|
||
links = [self connectorsForSource: anObject
|
||
ofClass: [GormObjectToEditor class]];
|
||
if ([links count] == 0 && flag == YES)
|
||
{
|
||
Class eClass;
|
||
id<IBEditors> editor;
|
||
id<IBConnectors> link;
|
||
|
||
eClass = NSClassFromString([anObject editorClassName]);
|
||
editor = [[eClass alloc] initWithObject: anObject inDocument: self];
|
||
link = [GormObjectToEditor new];
|
||
[link setSource: anObject];
|
||
[link setDestination: editor];
|
||
[connections addObject: link];
|
||
RELEASE(link);
|
||
if (anEditor == nil)
|
||
{
|
||
/*
|
||
* By default all editors are owned by the top-level editor of
|
||
* the document.
|
||
*/
|
||
anEditor = objectsView;
|
||
}
|
||
if (anEditor != editor)
|
||
{
|
||
/*
|
||
* Link to the parent of the editor.
|
||
*/
|
||
link = [GormEditorToParent new];
|
||
[link setSource: editor];
|
||
[link setDestination: anEditor];
|
||
[connections addObject: link];
|
||
RELEASE(link);
|
||
}
|
||
else
|
||
{
|
||
NSLog(@"WARNING anEditor = editor");
|
||
}
|
||
[editor activate];
|
||
RELEASE(editor);
|
||
return editor;
|
||
}
|
||
else if ([links count] == 0)
|
||
{
|
||
return nil;
|
||
}
|
||
else
|
||
{
|
||
[[[links lastObject] destination] activate];
|
||
return [[links lastObject] destination];
|
||
}
|
||
}
|
||
|
||
- (void) _replaceTemplatesWithObjects
|
||
{
|
||
NSEnumerator *en = [tempNameTable keyEnumerator];
|
||
NSString *key = nil;
|
||
|
||
while((key = [en nextObject]) != nil)
|
||
{
|
||
id obj = [tempNameTable objectForKey: key];
|
||
id template = [nameTable objectForKey: key];
|
||
|
||
if([template isKindOfClass: [GormNSWindowTemplate class]])
|
||
{
|
||
BOOL isVisible = [self objectIsVisibleAtLaunch: template];
|
||
[obj setContentView: [template contentView]];
|
||
[self setObject: template isVisibleAtLaunch: NO];
|
||
[self setObject: obj isVisibleAtLaunch: isVisible];
|
||
}
|
||
else if([template isKindOfClass: [GormNSTextViewTemplate class]])
|
||
{
|
||
[[template superview] replaceSubview: template with: obj];
|
||
}
|
||
else if([template isKindOfClass: [GormNSTextTemplate class]])
|
||
{
|
||
[[template superview] replaceSubview: template with: obj];
|
||
}
|
||
else if([template isKindOfClass: [GormNSButtonTemplate class]])
|
||
{
|
||
[[template superview] replaceSubview: template with: obj];
|
||
}
|
||
else if([template isKindOfClass: [GormNSControlTemplate class]])
|
||
{
|
||
[[template superview] replaceSubview: template with: obj];
|
||
}
|
||
else if([template isKindOfClass: [GormNSViewTemplate class]])
|
||
{
|
||
[[template superview] replaceSubview: template with: obj];
|
||
}
|
||
else if([template isKindOfClass: [GormNSMenuTemplate class]])
|
||
{
|
||
[[template superview] replaceSubview: template with: obj];
|
||
}
|
||
[nameTable setObject: obj forKey: key];
|
||
}
|
||
[tempNameTable removeAllObjects];
|
||
}
|
||
|
||
- (void) endArchiving
|
||
{
|
||
NSEnumerator *enumerator;
|
||
id<IBConnectors> con;
|
||
id obj;
|
||
|
||
/*
|
||
* Restore removed objects.
|
||
*/
|
||
[nameTable setObject: filesOwner forKey: @"NSOwner"];
|
||
NSMapInsert(objToName, (void*)filesOwner, (void*)@"NSOwner");
|
||
|
||
[nameTable setObject: firstResponder forKey: @"NSFirst"];
|
||
NSMapInsert(objToName, (void*)firstResponder, (void*)@"NSFirst");
|
||
|
||
if (fontManager != nil)
|
||
{
|
||
[nameTable setObject: fontManager forKey: @"NSFont"];
|
||
NSMapInsert(objToName, (void*)fontManager, (void*)@"NSFont");
|
||
}
|
||
|
||
/*
|
||
* Method to replace custom templates with objects for archiving.
|
||
*/
|
||
if(![(Gorm *)NSApp isTestingInterface]) // do not use templates if we are testing.
|
||
{
|
||
[self _replaceTemplatesWithObjects];
|
||
}
|
||
|
||
/*
|
||
* Map all connector source and destination names to their objects.
|
||
*/
|
||
enumerator = [connections objectEnumerator];
|
||
while ((con = [enumerator nextObject]) != nil)
|
||
{
|
||
NSString *name;
|
||
name = (NSString*)[con source];
|
||
obj = [self objectForName: name];
|
||
[con setSource: obj];
|
||
name = (NSString*)[con destination];
|
||
obj = [self objectForName: name];
|
||
[con setDestination: obj];
|
||
}
|
||
|
||
/*
|
||
* Restore editor links and reactivate the editors.
|
||
*/
|
||
[connections addObjectsFromArray: savedEditors];
|
||
enumerator = [savedEditors objectEnumerator];
|
||
while ((con = [enumerator nextObject]) != nil)
|
||
{
|
||
if ([[con source] isKindOfClass: [NSView class]] == NO)
|
||
[[con destination] activate];
|
||
}
|
||
[savedEditors removeAllObjects];
|
||
}
|
||
|
||
- (void) handleNotification: (NSNotification*)aNotification
|
||
{
|
||
NSString *name = [aNotification name];
|
||
|
||
if ([name isEqual: NSWindowWillCloseNotification] == YES)
|
||
{
|
||
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
|
||
NSEnumerator *enumerator;
|
||
id obj;
|
||
|
||
[nc postNotificationName: IBWillCloseDocumentNotification
|
||
object: self];
|
||
|
||
enumerator = [nameTable objectEnumerator];
|
||
while ((obj = [enumerator nextObject]) != nil)
|
||
{
|
||
if ([obj isKindOfClass: [NSMenu class]] == YES)
|
||
{
|
||
if ([[obj window] isVisible] == YES)
|
||
{
|
||
[hidden addObject: obj];
|
||
[obj close];
|
||
}
|
||
}
|
||
else if ([obj isKindOfClass: [NSWindow class]] == YES)
|
||
{
|
||
if ([obj isVisible] == YES)
|
||
{
|
||
[hidden addObject: obj];
|
||
[obj orderOut: self];
|
||
}
|
||
}
|
||
}
|
||
|
||
[self setDocumentActive: NO];
|
||
}
|
||
else if ([name isEqual: NSWindowDidBecomeKeyNotification] == YES)
|
||
{
|
||
[self setDocumentActive: YES];
|
||
}
|
||
else if ([name isEqual: NSWindowWillMiniaturizeNotification] == YES)
|
||
{
|
||
[self setDocumentActive: NO];
|
||
}
|
||
else if ([name isEqual: NSWindowDidDeminiaturizeNotification] == YES)
|
||
{
|
||
[self setDocumentActive: YES];
|
||
}
|
||
else if ([name isEqual: IBWillBeginTestingInterfaceNotification] == YES)
|
||
{
|
||
if ([window isVisible] == YES)
|
||
{
|
||
[hidden addObject: window];
|
||
[window setExcludedFromWindowsMenu: YES];
|
||
[window orderOut: self];
|
||
}
|
||
if ([(id<IB>)NSApp activeDocument] == self)
|
||
{
|
||
NSEnumerator *enumerator;
|
||
id obj;
|
||
|
||
enumerator = [nameTable objectEnumerator];
|
||
while ((obj = [enumerator nextObject]) != nil)
|
||
{
|
||
if ([obj isKindOfClass: [NSMenu class]] == YES)
|
||
{
|
||
if ([[obj window] isVisible] == YES)
|
||
{
|
||
[hidden addObject: obj];
|
||
[obj close];
|
||
}
|
||
}
|
||
else if ([obj isKindOfClass: [NSWindow class]] == YES)
|
||
{
|
||
if ([obj isVisible] == YES)
|
||
{
|
||
[hidden addObject: obj];
|
||
[obj orderOut: self];
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
else if ([name isEqual: IBWillEndTestingInterfaceNotification] == YES)
|
||
{
|
||
if ([hidden count] > 0)
|
||
{
|
||
NSEnumerator *enumerator;
|
||
id obj;
|
||
|
||
enumerator = [hidden objectEnumerator];
|
||
while ((obj = [enumerator nextObject]) != nil)
|
||
{
|
||
if ([obj isKindOfClass: [NSMenu class]] == YES)
|
||
{
|
||
[obj display];
|
||
}
|
||
else if ([obj isKindOfClass: [NSWindow class]] == YES)
|
||
{
|
||
[obj orderFront: self];
|
||
}
|
||
}
|
||
[hidden removeAllObjects];
|
||
[window setExcludedFromWindowsMenu: NO];
|
||
}
|
||
}
|
||
else if ([name isEqual: IBClassNameChangedNotification] == YES)
|
||
{
|
||
if ([aNotification object] == classManager) [classesView reloadData];
|
||
}
|
||
}
|
||
|
||
- (id) init
|
||
{
|
||
self = [super init];
|
||
if (self != nil)
|
||
{
|
||
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
|
||
NSRect winrect = NSMakeRect(100,100,340,252);
|
||
NSRect selectionRect = {{0, 188}, {240, 64}};
|
||
NSRect scrollRect = {{0, 0}, {340, 188}};
|
||
NSRect mainRect = {{20, 0}, {320, 188}};
|
||
NSImage *image;
|
||
NSButtonCell *cell;
|
||
NSTableColumn *tableColumn;
|
||
unsigned style;
|
||
NSColor *salmonColor =
|
||
[NSColor colorWithCalibratedRed: 0.850980
|
||
green: 0.737255
|
||
blue: 0.576471
|
||
alpha: 1.0 ];
|
||
|
||
classManager = [[GormClassManager alloc] init];
|
||
classEditor = [[GormClassEditor alloc] initWithDocument: self];
|
||
/*
|
||
* NB. We must retain the map values (object names) as the nameTable
|
||
* may not hold identical name objects, but merely equal strings.
|
||
*/
|
||
objToName = NSCreateMapTableWithZone(NSObjectMapKeyCallBacks,
|
||
NSObjectMapValueCallBacks, 128, [self zone]);
|
||
|
||
// for saving objects when the gorm file is persisted. Used for templates.
|
||
tempNameTable = [[NSMutableDictionary alloc] initWithCapacity: 8];
|
||
|
||
// for saving the editors when the gorm file is persisted.
|
||
savedEditors = [NSMutableArray new];
|
||
|
||
// defferred windows for this document...
|
||
deferredWindows = [NSMutableArray new];
|
||
|
||
// sounds & images
|
||
sounds = [NSMutableSet new];
|
||
images = [NSMutableSet new];
|
||
|
||
style = NSTitledWindowMask | NSClosableWindowMask
|
||
| NSResizableWindowMask | NSMiniaturizableWindowMask;
|
||
window = [[NSWindow alloc] initWithContentRect: winrect
|
||
styleMask: style
|
||
backing: NSBackingStoreRetained
|
||
defer: NO];
|
||
[window setMinSize: [window frame].size];
|
||
[window setTitle: @"UNTITLED"];
|
||
|
||
[window setDelegate: self];
|
||
|
||
[nc addObserver: self
|
||
selector: @selector(handleNotification:)
|
||
name: NSWindowWillCloseNotification
|
||
object: window];
|
||
[nc addObserver: self
|
||
selector: @selector(handleNotification:)
|
||
name: NSWindowDidBecomeKeyNotification
|
||
object: window];
|
||
[nc addObserver: self
|
||
selector: @selector(handleNotification:)
|
||
name: NSWindowWillMiniaturizeNotification
|
||
object: window];
|
||
[nc addObserver: self
|
||
selector: @selector(handleNotification:)
|
||
name: NSWindowDidDeminiaturizeNotification
|
||
object: window];
|
||
[nc addObserver: self
|
||
selector: @selector(handleNotification:)
|
||
name: IBClassNameChangedNotification
|
||
object: nil];
|
||
|
||
selectionView = [[NSMatrix alloc] initWithFrame: selectionRect
|
||
mode: NSRadioModeMatrix
|
||
cellClass: [NSButtonCell class]
|
||
numberOfRows: 1
|
||
numberOfColumns: 4];
|
||
[selectionView setTarget: self];
|
||
[selectionView setAction: @selector(changeView:)];
|
||
[selectionView setAutosizesCells: NO];
|
||
[selectionView setCellSize: NSMakeSize(64,64)];
|
||
[selectionView setIntercellSpacing: NSMakeSize(28,0)];
|
||
[selectionView setAutoresizingMask: NSViewMinYMargin|NSViewWidthSizable];
|
||
|
||
if ((image = objectsImage) != nil)
|
||
{
|
||
cell = [selectionView cellAtRow: 0 column: 0];
|
||
[cell setTag: 0];
|
||
[cell setImage: image];
|
||
[cell setTitle: @"Objects"];
|
||
[cell setBordered: NO];
|
||
[cell setAlignment: NSCenterTextAlignment];
|
||
[cell setImagePosition: NSImageAbove];
|
||
}
|
||
|
||
if ((image = imagesImage) != nil)
|
||
{
|
||
cell = [selectionView cellAtRow: 0 column: 1];
|
||
[cell setTag: 1];
|
||
[cell setImage: image];
|
||
[cell setTitle: @"Images"];
|
||
[cell setBordered: NO];
|
||
[cell setAlignment: NSCenterTextAlignment];
|
||
[cell setImagePosition: NSImageAbove];
|
||
}
|
||
|
||
if ((image = soundsImage) != nil)
|
||
{
|
||
cell = [selectionView cellAtRow: 0 column: 2];
|
||
[cell setTag: 2];
|
||
[cell setImage: image];
|
||
[cell setTitle: @"Sounds"];
|
||
[cell setBordered: NO];
|
||
[cell setAlignment: NSCenterTextAlignment];
|
||
[cell setImagePosition: NSImageAbove];
|
||
}
|
||
|
||
if ((image = classesImage) != nil)
|
||
{
|
||
cell = [selectionView cellAtRow: 0 column: 3];
|
||
[cell setTag: 3];
|
||
[cell setImage: image];
|
||
[cell setTitle: @"Classes"];
|
||
[cell setBordered: NO];
|
||
[cell setAlignment: NSCenterTextAlignment];
|
||
[cell setImagePosition: NSImageAbove];
|
||
}
|
||
|
||
[[window contentView] addSubview: selectionView];
|
||
RELEASE(selectionView);
|
||
|
||
selectionBox = [[NSBox alloc] initWithFrame: scrollRect];
|
||
[selectionBox setTitlePosition: NSNoTitle];
|
||
[selectionBox setBorderType: NSNoBorder];
|
||
[selectionBox setAutoresizingMask:
|
||
NSViewHeightSizable|NSViewWidthSizable];
|
||
[[window contentView] addSubview: selectionBox];
|
||
RELEASE(selectionBox);
|
||
|
||
// objects...
|
||
mainRect.origin = NSMakePoint(0,0);
|
||
scrollView = [[NSScrollView alloc] initWithFrame: scrollRect];
|
||
[scrollView setHasVerticalScroller: YES];
|
||
[scrollView setHasHorizontalScroller: NO];
|
||
[scrollView setAutoresizingMask: NSViewHeightSizable|NSViewWidthSizable];
|
||
objectsView = [[GormObjectEditor alloc] initWithObject: nil
|
||
inDocument: self];
|
||
AUTORELEASE(objectsView);
|
||
[objectsView setFrame: mainRect];
|
||
[objectsView setAutoresizingMask: NSViewHeightSizable|NSViewWidthSizable];
|
||
[scrollView setDocumentView: objectsView];
|
||
RELEASE(objectsView);
|
||
|
||
// images...
|
||
mainRect.origin = NSMakePoint(0,0);
|
||
imagesScrollView = [[NSScrollView alloc] initWithFrame: scrollRect];
|
||
[imagesScrollView setHasVerticalScroller: YES];
|
||
[imagesScrollView setHasHorizontalScroller: NO];
|
||
[imagesScrollView setAutoresizingMask: NSViewHeightSizable|NSViewWidthSizable];
|
||
imagesView = [[GormImageEditor alloc] initWithObject: nil
|
||
inDocument: self];
|
||
AUTORELEASE(imagesView);
|
||
[imagesView setFrame: mainRect];
|
||
[imagesView setAutoresizingMask: NSViewHeightSizable|NSViewWidthSizable];
|
||
[imagesScrollView setDocumentView: imagesView];
|
||
RELEASE(imagesView);
|
||
|
||
// sounds...
|
||
mainRect.origin = NSMakePoint(0,0);
|
||
soundsScrollView = [[NSScrollView alloc] initWithFrame: scrollRect];
|
||
[soundsScrollView setHasVerticalScroller: YES];
|
||
[soundsScrollView setHasHorizontalScroller: NO];
|
||
[soundsScrollView setAutoresizingMask: NSViewHeightSizable|NSViewWidthSizable];
|
||
soundsView = [[GormSoundEditor alloc] initWithObject: nil
|
||
inDocument: self];
|
||
AUTORELEASE(soundsView);
|
||
[soundsView setFrame: mainRect];
|
||
[soundsView setAutoresizingMask: NSViewHeightSizable|NSViewWidthSizable];
|
||
[soundsScrollView setDocumentView: soundsView];
|
||
RELEASE(soundsView);
|
||
|
||
// classes...
|
||
classesScrollView = [[NSScrollView alloc] initWithFrame: scrollRect];
|
||
[classesScrollView setHasVerticalScroller: YES];
|
||
[classesScrollView setHasHorizontalScroller: NO];
|
||
[classesScrollView setAutoresizingMask:
|
||
NSViewHeightSizable|NSViewWidthSizable];
|
||
|
||
mainRect.origin = NSMakePoint(0,0);
|
||
classesView = [[GormOutlineView alloc] initWithFrame: mainRect];
|
||
[classesView setMenu: [(Gorm*)NSApp classMenu]];
|
||
[classesView setDataSource: self];
|
||
[classesView setDelegate: self];
|
||
[classesView setAutoresizesAllColumnsToFit: YES];
|
||
[classesView setAllowsColumnResizing: NO];
|
||
[classesView setDrawsGrid: NO];
|
||
[classesView setIndentationMarkerFollowsCell: YES];
|
||
[classesView setAutoresizesOutlineColumn: YES];
|
||
[classesView setIndentationPerLevel: 10];
|
||
[classesView setAttributeOffset: 30];
|
||
[classesView setBackgroundColor: salmonColor ];
|
||
[classesView setRowHeight: 18];
|
||
[classesScrollView setDocumentView: classesView];
|
||
RELEASE(classesView);
|
||
|
||
tableColumn = [[NSTableColumn alloc] initWithIdentifier: @"classes"];
|
||
[[tableColumn headerCell] setStringValue: @"Classes"];
|
||
[tableColumn setMinWidth: 190]; // 200
|
||
[tableColumn setResizable: YES];
|
||
[tableColumn setEditable: YES];
|
||
[classesView addTableColumn: tableColumn];
|
||
[classesView setOutlineTableColumn: tableColumn];
|
||
RELEASE(tableColumn);
|
||
|
||
tableColumn = [[NSTableColumn alloc] initWithIdentifier: @"outlets"];
|
||
[[tableColumn headerCell] setStringValue: @"Outlet"];
|
||
[tableColumn setWidth: 50]; // 45
|
||
[tableColumn setResizable: NO];
|
||
[tableColumn setEditable: NO];
|
||
[classesView addTableColumn: tableColumn];
|
||
[classesView setOutletColumn: tableColumn];
|
||
RELEASE(tableColumn);
|
||
|
||
tableColumn = [[NSTableColumn alloc] initWithIdentifier: @"actions"];
|
||
[[tableColumn headerCell] setStringValue: @"Action"];
|
||
[tableColumn setWidth: 50]; // 45
|
||
[tableColumn setResizable: NO];
|
||
[tableColumn setEditable: NO];
|
||
[classesView addTableColumn: tableColumn];
|
||
[classesView setActionColumn: tableColumn];
|
||
RELEASE(tableColumn);
|
||
|
||
[classesView sizeToFit];
|
||
|
||
// expand all of the items in the classesView...
|
||
[classesView expandItem: @"NSObject"];
|
||
|
||
[selectionBox setContentView: scrollView];
|
||
|
||
/*
|
||
* Set up special-case dummy objects and add them to the objects view.
|
||
*/
|
||
filesOwner = [GormFilesOwner new];
|
||
[self setName: @"NSOwner" forObject: filesOwner];
|
||
[objectsView addObject: filesOwner];
|
||
firstResponder = [GormFirstResponder new];
|
||
[self setName: @"NSFirst" forObject: firstResponder];
|
||
[objectsView addObject: firstResponder];
|
||
fontManager = [GormFontManager new];
|
||
[self setName: @"NSFont" forObject: fontManager];
|
||
|
||
/*
|
||
* Set image for this miniwindow.
|
||
*/
|
||
[window setMiniwindowImage: [(id)filesOwner imageForViewer]];
|
||
|
||
hidden = [NSMutableArray new];
|
||
/*
|
||
* Watch to see when we are starting/ending testing.
|
||
*/
|
||
[nc addObserver: self
|
||
selector: @selector(handleNotification:)
|
||
name: IBWillBeginTestingInterfaceNotification
|
||
object: nil];
|
||
[nc addObserver: self
|
||
selector: @selector(handleNotification:)
|
||
name: IBWillEndTestingInterfaceNotification
|
||
object: nil];
|
||
}
|
||
return self;
|
||
}
|
||
|
||
- (id) instantiateClass: (id)sender
|
||
{
|
||
NSDebugLog(@"document -> instantiateClass: ");
|
||
|
||
if ([[selectionView selectedCell] tag] == 3)
|
||
{
|
||
int i = [classesView selectedRow];
|
||
|
||
if (i >= 0)
|
||
{
|
||
id className = [classesView itemAtRow: i];
|
||
GSNibItem *item =
|
||
[[GormObjectProxy alloc] initWithClassName: className
|
||
frame: NSMakeRect(0,0,0,0)];
|
||
|
||
[self setName: nil forObject: item];
|
||
[self attachObject: item toParent: nil];
|
||
//[self setObject: item isVisibleAtLaunch: NO];
|
||
RELEASE(item);
|
||
|
||
[selectionView selectCellWithTag: 0];
|
||
[selectionBox setContentView: scrollView];
|
||
}
|
||
|
||
}
|
||
|
||
return nil;
|
||
}
|
||
|
||
- (BOOL) isActive
|
||
{
|
||
return isActive;
|
||
}
|
||
|
||
- (NSString*) nameForObject: (id)anObject
|
||
{
|
||
return (NSString*)NSMapGet(objToName, (void*)anObject);
|
||
}
|
||
|
||
- (id) objectForName: (NSString*)name
|
||
{
|
||
return [nameTable objectForKey: name];
|
||
}
|
||
|
||
- (BOOL) objectIsVisibleAtLaunch: (id)anObject
|
||
{
|
||
return [[nameTable objectForKey: @"NSVisible"] containsObject: anObject];
|
||
}
|
||
|
||
- (NSArray*) objects
|
||
{
|
||
return [nameTable allValues];
|
||
}
|
||
|
||
/*
|
||
* NB. This assumes we have an empty document to start with - the loaded
|
||
* document is merged in to it.
|
||
*/
|
||
- (id) loadDocument: (NSString*)aFile
|
||
{
|
||
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
|
||
NSMutableDictionary *nt;
|
||
NSData *data;
|
||
NSUnarchiver *u;
|
||
GSNibContainer *c;
|
||
NSEnumerator *enumerator;
|
||
id <IBConnectors> con;
|
||
NSString *ownerClass;
|
||
NSFileManager *mgr = [NSFileManager defaultManager];
|
||
BOOL isDir = NO;
|
||
NSDirectoryEnumerator *dirEnumerator;
|
||
|
||
if([mgr fileExistsAtPath: aFile isDirectory: &isDir])
|
||
{
|
||
// if the data is in a directory, then load from objects.gorm in the directory
|
||
if(isDir == NO)
|
||
{
|
||
data = [NSData dataWithContentsOfFile: aFile];
|
||
NSDebugLog(@"Loaded data from file...");
|
||
}
|
||
else
|
||
{
|
||
NSString *newFileName = [aFile stringByAppendingPathComponent: @"objects.gorm"];
|
||
data = [NSData dataWithContentsOfFile: newFileName];
|
||
NSDebugLog(@"Loaded data from %@...",newFileName);
|
||
}
|
||
}
|
||
else
|
||
{
|
||
// no file exists...
|
||
data = nil;
|
||
}
|
||
|
||
// check the data...
|
||
if (data == nil)
|
||
{
|
||
NSRunAlertPanel(NULL,
|
||
[NSString stringWithFormat: @"Could not read '%@' data", aFile],
|
||
@"OK", NULL, NULL);
|
||
return nil;
|
||
}
|
||
|
||
/*
|
||
* Create an unarchiver, and use it to unarchive the nib file while
|
||
* handling class replacement so that standard objects understood
|
||
* by the gui library are converted to their Gorm internal equivalents.
|
||
*/
|
||
u = AUTORELEASE([[NSUnarchiver alloc] initForReadingWithData: data]);
|
||
[u decodeClassName: @"GSNibContainer" asClassName: @"GormDocument"];
|
||
[u decodeClassName: @"GSNibItem" asClassName: @"GormObjectProxy"];
|
||
[u decodeClassName: @"GSCustomView" asClassName: @"GormCustomView"];
|
||
[u decodeClassName: @"NSMenu" asClassName: @"GormNSMenu"];
|
||
[u decodeClassName: @"NSWindow" asClassName: @"GormNSWindow"];
|
||
[u decodeClassName: @"NSBrowser" asClassName: @"GormNSBrowser"];
|
||
[u decodeClassName: @"NSTableView" asClassName: @"GormNSTableView"];
|
||
[u decodeClassName: @"NSOutlineView" asClassName: @"GormNSOutlineView"];
|
||
[u decodeClassName: @"NSPopUpButton" asClassName: @"GormNSPopUpButton"];
|
||
[u decodeClassName: @"NSPopUpButtonCell" asClassName: @"GormNSPopUpButtonCell"];
|
||
|
||
// templates
|
||
[u decodeClassName: @"NSWindowTemplate" asClassName: @"GormNSWindowTemplate"];
|
||
[u decodeClassName: @"NSViewTemplate" asClassName: @"GormNSViewTemplate"];
|
||
[u decodeClassName: @"NSTextTemplate" asClassName: @"GormNSTextTemplate"];
|
||
[u decodeClassName: @"NSControlTemplate" asClassName: @"GormNSControlTemplate"];
|
||
[u decodeClassName: @"NSButtonTemplate" asClassName: @"GormNSButtonTemplate"];
|
||
[u decodeClassName: @"NSTextViewTemplate" asClassName: @"GormNSTextViewTemplate"];
|
||
[u decodeClassName: @"NSViewTemplate" asClassName: @"GormNSViewTemplate"];
|
||
[u decodeClassName: @"NSMenuTemplate" asClassName: @"GormNSMenuTemplate"];
|
||
|
||
c = [u decodeObject];
|
||
if (c == nil || [c isKindOfClass: [GSNibContainer class]] == NO)
|
||
{
|
||
NSRunAlertPanel(NULL, @"Could not unarchive document data",
|
||
@"OK", NULL, NULL);
|
||
return nil;
|
||
}
|
||
|
||
// retrieve the custom class data...
|
||
[classManager setCustomClassMap: [[c nameTable] objectForKey: @"GSCustomClassMap"]];
|
||
|
||
if(isDir == NO)
|
||
{
|
||
if (![classManager loadCustomClasses: [[aFile stringByDeletingPathExtension]
|
||
stringByAppendingPathExtension: @"classes"]])
|
||
{
|
||
NSRunAlertPanel(NULL, @"Could not open the associated classes file.\n"
|
||
@"You won't be able to edit connections on custom classes",
|
||
@"OK", NULL, NULL);
|
||
}
|
||
}
|
||
else
|
||
{
|
||
if (![classManager loadCustomClasses: [aFile stringByAppendingPathComponent: @"data.classes"]])
|
||
{
|
||
NSRunAlertPanel(NULL, @"Could not open the associated classes file.\n"
|
||
@"You won't be able to edit connections on custom classes",
|
||
@"OK", NULL, NULL);
|
||
}
|
||
}
|
||
|
||
[classesView reloadData];
|
||
|
||
/*
|
||
* In the newly loaded nib container, we change all the connectors
|
||
* to hold the objects rather than their names (using our own dummy
|
||
* object as the 'NSOwner'.
|
||
*/
|
||
ownerClass = [[c nameTable] objectForKey: @"NSOwner"];
|
||
if (ownerClass)
|
||
[filesOwner setClassName: ownerClass];
|
||
[[c nameTable] setObject: filesOwner forKey: @"NSOwner"];
|
||
[[c nameTable] setObject: firstResponder forKey: @"NSFirst"];
|
||
|
||
/* Iterate over the contents of nameTable and create the connections */
|
||
nt = [c nameTable];
|
||
enumerator = [[c connections] objectEnumerator];
|
||
while ((con = [enumerator nextObject]) != nil)
|
||
{
|
||
NSString *name;
|
||
id obj;
|
||
|
||
name = (NSString*)[con source];
|
||
obj = [nt objectForKey: name];
|
||
[con setSource: obj];
|
||
name = (NSString*)[con destination];
|
||
obj = [nt objectForKey: name];
|
||
[con setDestination: obj];
|
||
}
|
||
|
||
/*
|
||
* Now we merge the objects from the nib container into our own data
|
||
* structures, taking care not to overwrite our NSOwner and NSFirst.
|
||
*/
|
||
[nt removeObjectForKey: @"NSOwner"];
|
||
[nt removeObjectForKey: @"NSFirst"];
|
||
[connections addObjectsFromArray: [c connections]];
|
||
[nameTable addEntriesFromDictionary: nt];
|
||
|
||
[self rebuildObjToNameMapping];
|
||
|
||
/*
|
||
* set our new file name
|
||
*/
|
||
ASSIGN(documentPath, aFile);
|
||
[window setTitleWithRepresentedFilename: documentPath];
|
||
[nc postNotificationName: IBDidOpenDocumentNotification
|
||
object: self];
|
||
|
||
/*
|
||
* read in all of the sounds in the .gorm wrapper and load them into the editor.
|
||
*/
|
||
dirEnumerator = [mgr enumeratorAtPath: documentPath];
|
||
if(dirEnumerator)
|
||
{
|
||
NSString *file = nil;
|
||
NSArray *fileTypes = [NSSound soundUnfilteredFileTypes];
|
||
while((file = [dirEnumerator nextObject]))
|
||
{
|
||
if([fileTypes containsObject: [file pathExtension]])
|
||
{
|
||
NSString *soundPath = [documentPath stringByAppendingPathComponent: file];
|
||
// add the sound...
|
||
NSLog(@"Add the sound %@",file);
|
||
[soundsView addObject: [self _createSoundPlaceHolder: soundPath]];
|
||
[sounds addObject: soundPath];
|
||
}
|
||
}
|
||
}
|
||
|
||
/*
|
||
* read in all of the images in the .gorm wrapper and load them into the editor.
|
||
*/
|
||
dirEnumerator = [mgr enumeratorAtPath: documentPath];
|
||
if(dirEnumerator)
|
||
{
|
||
NSString *file = nil;
|
||
NSArray *fileTypes = [NSImage imageFileTypes];
|
||
while((file = [dirEnumerator nextObject]))
|
||
{
|
||
if([fileTypes containsObject: [file pathExtension]])
|
||
{
|
||
NSString *imagePath = [documentPath stringByAppendingPathComponent: file];
|
||
// add the image...
|
||
id placeHolder = [self _createImagePlaceHolder: imagePath];
|
||
if (placeHolder)
|
||
{
|
||
NSLog(@"Add the image %@",file);
|
||
[imagesView addObject: placeHolder];
|
||
[images addObject: imagePath];
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// get the custom class map and set it into the class manager...
|
||
// NSLog(@"customClasses = %@",customClasses);
|
||
// [classManager setCustomClassMap: customClasses];
|
||
|
||
NSLog(@"nameTable = %@",[c nameTable]);
|
||
|
||
return self;
|
||
}
|
||
|
||
/*
|
||
* Build our reverse mapping information and other initialisation
|
||
*/
|
||
- (void) rebuildObjToNameMapping
|
||
{
|
||
NSEnumerator *enumerator;
|
||
NSString *name;
|
||
|
||
NSResetMapTable(objToName);
|
||
NSMapInsert(objToName, (void*)filesOwner, (void*)@"NSOwner");
|
||
NSMapInsert(objToName, (void*)firstResponder, (void*)@"NSFirst");
|
||
enumerator = [nameTable keyEnumerator];
|
||
while ((name = [enumerator nextObject]) != nil)
|
||
{
|
||
id obj = [nameTable objectForKey: name];
|
||
|
||
NSMapInsert(objToName, (void*)obj, (void*)name);
|
||
if ([obj isKindOfClass: [NSMenu class]] == YES)
|
||
{
|
||
if ([name isEqual: @"NSMenu"] == YES)
|
||
{
|
||
NSRect frame = [[NSScreen mainScreen] frame];
|
||
|
||
[[obj window] setFrameTopLeftPoint:
|
||
NSMakePoint(1, frame.size.height-200)];
|
||
[[self openEditorForObject: obj] activate];
|
||
[objectsView addObject: obj];
|
||
}
|
||
}
|
||
else if ([obj isKindOfClass: [NSWindow class]] == YES)
|
||
{
|
||
[objectsView addObject: obj];
|
||
[[self openEditorForObject: obj] activate];
|
||
}
|
||
else if ([obj isKindOfClass: [GSNibItem class]] == YES
|
||
&& [obj isKindOfClass: [GormCustomView class]] == NO)
|
||
{
|
||
[objectsView addObject: obj];
|
||
//[[self openEditorForObject: obj] activate];
|
||
}
|
||
}
|
||
}
|
||
|
||
/*
|
||
* NB. This assumes we have an empty document to start with - the loaded
|
||
* document is merged in to it.
|
||
*/
|
||
- (id) openDocument: (id)sender
|
||
{
|
||
NSArray *fileTypes;
|
||
NSOpenPanel *oPanel = [NSOpenPanel openPanel];
|
||
int result;
|
||
NSString *pth = [[NSUserDefaults standardUserDefaults]
|
||
objectForKey:@"OpenDir"];
|
||
|
||
if ([[NSUserDefaults standardUserDefaults] boolForKey: @"OpenNibs"] == YES)
|
||
{
|
||
fileTypes = [NSArray arrayWithObjects: @"gorm", @"gmodel", @"nib", nil];
|
||
}
|
||
else
|
||
{
|
||
fileTypes = [NSArray arrayWithObjects: @"gorm", @"gmodel", nil];
|
||
}
|
||
[oPanel setAllowsMultipleSelection: NO];
|
||
[oPanel setCanChooseFiles: YES];
|
||
[oPanel setCanChooseDirectories: NO];
|
||
result = [oPanel runModalForDirectory: pth
|
||
file: nil
|
||
types: fileTypes];
|
||
if (result == NSOKButton)
|
||
{
|
||
NSString *filename = [oPanel filename];
|
||
NSString *ext = [filename pathExtension];
|
||
|
||
[[NSUserDefaults standardUserDefaults] setObject: [oPanel directory]
|
||
forKey:@"OpenDir"];
|
||
if([ext isEqualToString:@"gorm"] || [ext isEqualToString:@"nib"])
|
||
{
|
||
return [self loadDocument: filename];
|
||
}
|
||
else if([ext isEqualToString:@"gmodel"])
|
||
{
|
||
return [self openGModel: filename];
|
||
}
|
||
}
|
||
return nil; /* Failed */
|
||
}
|
||
|
||
- (id<IBEditors>) openEditorForObject: (id)anObject
|
||
{
|
||
id<IBEditors> e = [self editorForObject: anObject create: YES];
|
||
id<IBEditors, IBSelectionOwners> p = [self parentEditorForEditor: e];
|
||
|
||
if (p != nil && p != objectsView)
|
||
{
|
||
[self openEditorForObject: [p editedObject]];
|
||
}
|
||
[e orderFront];
|
||
[[e window] makeKeyAndOrderFront: self];
|
||
return e;
|
||
}
|
||
|
||
- (id<IBEditors, IBSelectionOwners>) parentEditorForEditor: (id<IBEditors>)anEditor
|
||
{
|
||
NSArray *links;
|
||
GormObjectToEditor *con;
|
||
|
||
links = [self connectorsForSource: anEditor
|
||
ofClass: [GormEditorToParent class]];
|
||
con = [links lastObject];
|
||
return [con destination];
|
||
}
|
||
|
||
- (id) parentOfObject: (id)anObject
|
||
{
|
||
NSArray *old;
|
||
id<IBConnectors> con;
|
||
|
||
old = [self connectorsForSource: anObject ofClass: [NSNibConnector class]];
|
||
con = [old lastObject];
|
||
if ([con destination] != filesOwner && [con destination] != firstResponder)
|
||
{
|
||
return [con destination];
|
||
}
|
||
return nil;
|
||
}
|
||
|
||
- (NSArray*) pasteType: (NSString*)aType
|
||
fromPasteboard: (NSPasteboard*)aPasteboard
|
||
parent: (id)parent
|
||
{
|
||
NSData *data;
|
||
NSArray *objects;
|
||
NSEnumerator *enumerator;
|
||
NSPoint filePoint;
|
||
NSPoint screenPoint;
|
||
NSUnarchiver *u;
|
||
|
||
data = [aPasteboard dataForType: aType];
|
||
if (data == nil)
|
||
{
|
||
NSLog(@"Pasteboard %@ doesn't contain data of %@", aPasteboard, aType);
|
||
return nil;
|
||
}
|
||
u = AUTORELEASE([[NSUnarchiver alloc] initForReadingWithData: data]);
|
||
[u decodeClassName: @"GSCustomView"
|
||
asClassName: @"GormCustomView"];
|
||
objects = [u decodeObject];
|
||
enumerator = [objects objectEnumerator];
|
||
filePoint = [window mouseLocationOutsideOfEventStream];
|
||
screenPoint = [window convertBaseToScreen: filePoint];
|
||
|
||
/*
|
||
* Windows and panels are a special case - for a multiple window paste,
|
||
* the windows need to be positioned so they are not on top of each other.
|
||
*/
|
||
if ([aType isEqualToString: IBWindowPboardType] == YES)
|
||
{
|
||
NSWindow *win;
|
||
|
||
while ((win = [enumerator nextObject]) != nil)
|
||
{
|
||
[win setFrameTopLeftPoint: screenPoint];
|
||
screenPoint.x += 10;
|
||
screenPoint.y -= 10;
|
||
}
|
||
}
|
||
[self attachObjects: objects toParent: parent];
|
||
[self touch];
|
||
return objects;
|
||
}
|
||
|
||
- (void) removeConnector: (id<IBConnectors>)aConnector
|
||
{
|
||
[connections removeObjectIdenticalTo: aConnector];
|
||
}
|
||
|
||
- (void) resignSelectionForEditor: (id<IBEditors>)editor
|
||
{
|
||
NSEnumerator *enumerator = [connections objectEnumerator];
|
||
Class editClass = [GormObjectToEditor class];
|
||
id<IBConnectors> c;
|
||
|
||
/*
|
||
* This editor wants to give up the selection. Go through all the known
|
||
* editors (with links in the connections array) and try to find one
|
||
* that wants to take over the selection. Activate whatever editor we
|
||
* find (if any).
|
||
*/
|
||
while ((c = [enumerator nextObject]) != nil)
|
||
{
|
||
if ([c class] == editClass)
|
||
{
|
||
id<IBEditors> e = [c destination];
|
||
|
||
if (e != editor && [e wantsSelection] == YES)
|
||
{
|
||
[e activate];
|
||
[self setSelectionFromEditor: e];
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
/*
|
||
* No editor available to take the selection - set a nil owner.
|
||
*/
|
||
[self setSelectionFromEditor: nil];
|
||
}
|
||
|
||
- (void) setupDefaults: (NSString*)type
|
||
{
|
||
if (hasSetDefaults == YES)
|
||
{
|
||
return;
|
||
}
|
||
hasSetDefaults = YES;
|
||
if ([type isEqual: @"Application"] == YES)
|
||
{
|
||
NSMenu *aMenu;
|
||
NSWindow *aWindow;
|
||
NSRect frame = [[NSScreen mainScreen] frame];
|
||
unsigned style = NSTitledWindowMask | NSClosableWindowMask
|
||
| NSResizableWindowMask | NSMiniaturizableWindowMask;
|
||
|
||
if ([NSMenu respondsToSelector: @selector(allocSubstitute)])
|
||
{
|
||
aMenu = [[NSMenu allocSubstitute] init];
|
||
}
|
||
else
|
||
{
|
||
aMenu = [[NSMenu alloc] init];
|
||
}
|
||
|
||
if ([NSWindow respondsToSelector: @selector(allocSubstitute)])
|
||
{
|
||
aWindow = [[NSWindow allocSubstitute]
|
||
initWithContentRect: NSMakeRect(0,0,600, 400)
|
||
styleMask: style
|
||
backing: NSBackingStoreRetained
|
||
defer: NO];
|
||
}
|
||
else
|
||
{
|
||
aWindow = [[NSWindow alloc]
|
||
initWithContentRect: NSMakeRect(0,0,600, 400)
|
||
styleMask: style
|
||
backing: NSBackingStoreRetained
|
||
defer: NO];
|
||
}
|
||
[aWindow setFrameTopLeftPoint:
|
||
NSMakePoint(220, frame.size.height-100)];
|
||
[aWindow setTitle: @"My Window"];
|
||
[self setName: @"My Window" forObject: aWindow];
|
||
[self attachObject: aWindow toParent: nil];
|
||
[self setObject: aWindow isVisibleAtLaunch: YES];
|
||
RELEASE(aWindow);
|
||
|
||
[aMenu setTitle: @"Main Menu"];
|
||
[aMenu addItemWithTitle: @"Hide"
|
||
action: @selector(hide:)
|
||
keyEquivalent: @"h"];
|
||
[aMenu addItemWithTitle: @"Quit"
|
||
action: @selector(terminate:)
|
||
keyEquivalent: @"q"];
|
||
[self setName: @"NSMenu" forObject: aMenu];
|
||
[self attachObject: aMenu toParent: nil];
|
||
[objectsView addObject: aMenu];
|
||
// RETAIN(aMenu);
|
||
|
||
[[aMenu window] setFrameTopLeftPoint:
|
||
NSMakePoint(1, frame.size.height-200)];
|
||
RELEASE(aMenu);
|
||
}
|
||
else if ([type isEqual: @"Inspector"] == YES)
|
||
{
|
||
NSWindow *aWindow;
|
||
NSRect frame = [[NSScreen mainScreen] frame];
|
||
unsigned style = NSTitledWindowMask | NSClosableWindowMask;
|
||
|
||
aWindow = [[NSWindow alloc] initWithContentRect: NSMakeRect(0,0,IVW,IVH)
|
||
styleMask: style
|
||
backing: NSBackingStoreRetained
|
||
defer: NO];
|
||
[aWindow setFrameTopLeftPoint:
|
||
NSMakePoint(220, frame.size.height-100)];
|
||
[aWindow setTitle: @"Inspector Window"];
|
||
[self setName: @"InspectorWin" forObject: aWindow];
|
||
[self attachObject: aWindow toParent: nil];
|
||
RELEASE(aWindow);
|
||
}
|
||
else if ([type isEqual: @"Palette"] == YES)
|
||
{
|
||
NSWindow *aWindow;
|
||
NSRect frame = [[NSScreen mainScreen] frame];
|
||
unsigned style = NSTitledWindowMask | NSClosableWindowMask;
|
||
|
||
aWindow = [[NSWindow alloc] initWithContentRect: NSMakeRect(0,0,272,192)
|
||
styleMask: style
|
||
backing: NSBackingStoreRetained
|
||
defer: NO];
|
||
[aWindow setFrameTopLeftPoint:
|
||
NSMakePoint(220, frame.size.height-100)];
|
||
[aWindow setTitle: @"Palette Window"];
|
||
[self setName: @"PaletteWin" forObject: aWindow];
|
||
[self attachObject: aWindow toParent: nil];
|
||
RELEASE(aWindow);
|
||
}
|
||
}
|
||
|
||
- (void) setName: (NSString*)aName forObject: (id)object
|
||
{
|
||
id oldObject;
|
||
NSString *oldName;
|
||
|
||
if (object == nil)
|
||
{
|
||
NSLog(@"Attempt to set name for nil object");
|
||
return;
|
||
}
|
||
if (aName == nil)
|
||
{
|
||
/*
|
||
* No name given - so we must generate one unless we already have one.
|
||
*/
|
||
oldName = [self nameForObject: object];
|
||
if (oldName == nil)
|
||
{
|
||
NSString *base;
|
||
unsigned i = 0;
|
||
|
||
/*
|
||
* Generate a sensible name for the object based on its class.
|
||
*/
|
||
if ([object isKindOfClass: [GSNibItem class]])
|
||
{
|
||
// use the actual class name for proxies
|
||
base = [(id)object className];
|
||
}
|
||
else
|
||
{
|
||
base = NSStringFromClass([object class]);
|
||
}
|
||
if ([base hasPrefix: @"NS"] || [base hasPrefix: @"GS"])
|
||
{
|
||
base = [base substringFromIndex: 2];
|
||
}
|
||
aName = base;
|
||
while ([nameTable objectForKey: aName] != nil)
|
||
{
|
||
aName = [base stringByAppendingFormat: @"%u", ++i];
|
||
}
|
||
}
|
||
else
|
||
{
|
||
return; /* Already named ... nothing to do */
|
||
}
|
||
}
|
||
else
|
||
{
|
||
oldObject = [nameTable objectForKey: aName];
|
||
if (oldObject != nil)
|
||
{
|
||
NSLog(@"Attempt to re-use name '%@'", aName);
|
||
return;
|
||
}
|
||
oldName = [self nameForObject: object];
|
||
if (oldName != nil)
|
||
{
|
||
if ([oldName isEqual: aName] == YES)
|
||
{
|
||
return; /* Already have this name ... nothing to do */
|
||
}
|
||
RETAIN(object);
|
||
AUTORELEASE(object);
|
||
[nameTable removeObjectForKey: oldName];
|
||
NSMapRemove(objToName, (void*)object);
|
||
}
|
||
}
|
||
aName = [aName copy]; /* Make sure it's immutable */
|
||
[nameTable setObject: object forKey: aName];
|
||
NSMapInsert(objToName, (void*)object, (void*)aName);
|
||
RELEASE(aName);
|
||
if (oldName != nil)
|
||
{
|
||
[nameTable removeObjectForKey: oldName];
|
||
}
|
||
if ([objectsView containsObject: object] == YES)
|
||
{
|
||
[objectsView refreshCells];
|
||
}
|
||
}
|
||
|
||
- (void) setObject: (id)anObject isVisibleAtLaunch: (BOOL)flag
|
||
{
|
||
NSMutableArray *a = [nameTable objectForKey: @"NSVisible"];
|
||
|
||
if (flag == YES)
|
||
{
|
||
if (a == nil)
|
||
{
|
||
a = [NSMutableArray new];
|
||
[nameTable setObject: a forKey: @"NSVisible"];
|
||
RELEASE(a);
|
||
}
|
||
if ([a containsObject: anObject] == NO)
|
||
{
|
||
[a addObject: anObject];
|
||
}
|
||
}
|
||
else
|
||
{
|
||
[a removeObject: anObject];
|
||
}
|
||
}
|
||
|
||
- (void) setWindow: (id)anObject isDeffered: (BOOL)flag
|
||
{
|
||
if (flag == YES)
|
||
{
|
||
if ([deferredWindows containsObject: anObject] == NO)
|
||
{
|
||
[deferredWindows addObject: anObject];
|
||
}
|
||
}
|
||
else
|
||
{
|
||
[deferredWindows removeObject: anObject];
|
||
}
|
||
}
|
||
|
||
- (BOOL) isWindowDeferred: (id)aWindow
|
||
{
|
||
return [deferredWindows containsObject: aWindow];
|
||
}
|
||
|
||
/*
|
||
* To revert to a saved version, we actually load a new document and
|
||
* close the original document, returning the id of the new document.
|
||
*/
|
||
- (id) revertDocument: (id)sender
|
||
{
|
||
GormDocument *reverted = AUTORELEASE([GormDocument new]);
|
||
|
||
if ([reverted loadDocument: documentPath] != nil)
|
||
{
|
||
NSRect frame = [window frame];
|
||
|
||
[window setReleasedWhenClosed: YES];
|
||
[window close];
|
||
[[reverted window] setFrame: frame display: YES];
|
||
return reverted;
|
||
}
|
||
return nil;
|
||
}
|
||
|
||
- (id) saveAsDocument: (id)sender
|
||
{
|
||
NSUserDefaults *defs = [NSUserDefaults standardUserDefaults];
|
||
NSSavePanel *sp;
|
||
int result;
|
||
|
||
sp = [NSSavePanel savePanel];
|
||
|
||
if ([defs boolForKey: @"SaveAsNib"] == YES)
|
||
{
|
||
[sp setRequiredFileType: @"nib"];
|
||
}
|
||
else
|
||
{
|
||
[sp setRequiredFileType: @"gorm"];
|
||
}
|
||
|
||
result = [sp runModalForDirectory: NSHomeDirectory() file: @""];
|
||
|
||
if (result == NSOKButton)
|
||
{
|
||
NSFileManager *mgr = [NSFileManager defaultManager];
|
||
NSString *path = [sp filename];
|
||
NSString *old = documentPath;
|
||
id retval;
|
||
|
||
if ([path isEqual: documentPath] == NO
|
||
&& [mgr fileExistsAtPath: path] == YES)
|
||
{
|
||
/* NSSavePanel has already asked if it's ok to replace */
|
||
NSString *bPath = [path stringByAppendingString: @"~"];
|
||
|
||
[mgr removeFileAtPath: bPath handler: nil];
|
||
[mgr movePath: path toPath: bPath handler: nil];
|
||
}
|
||
documentPath = RETAIN(path);
|
||
retval = [self saveDocument: sender];
|
||
if (retval == nil)
|
||
{
|
||
RELEASE(documentPath);
|
||
documentPath = old;
|
||
}
|
||
else
|
||
{
|
||
RELEASE(old);
|
||
/* FIXME - need to update files window title etc */
|
||
return self;
|
||
}
|
||
}
|
||
return nil;
|
||
}
|
||
|
||
- (id) saveDocument: (id)sender
|
||
{
|
||
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
|
||
BOOL archiveResult;
|
||
NSArchiver *archiver;
|
||
NSMutableData *archiverData;
|
||
NSString *gormPath;
|
||
NSString *classesPath;
|
||
NSFileManager *mgr = [NSFileManager defaultManager];
|
||
BOOL isDir;
|
||
BOOL fileExists;
|
||
|
||
if (documentPath == nil)
|
||
{
|
||
return [self saveAsDocument: sender];
|
||
}
|
||
|
||
[nc postNotificationName: IBWillSaveDocumentNotification
|
||
object: self];
|
||
|
||
[self beginArchiving];
|
||
|
||
// set up the necessary paths...
|
||
gormPath = [documentPath stringByAppendingPathComponent: @"objects.gorm"];
|
||
classesPath = [documentPath stringByAppendingPathComponent: @"data.classes"];
|
||
|
||
archiverData = [NSMutableData dataWithCapacity: 0];
|
||
archiver = [[NSArchiver alloc] initForWritingWithMutableData: archiverData];
|
||
|
||
/* Special gorm classes to their archive equivalents. */
|
||
[archiver encodeClassName: @"GormObjectProxy"
|
||
intoClassName: @"GSNibItem"];
|
||
[archiver encodeClassName: @"GormCustomView"
|
||
intoClassName: @"GSCustomView"];
|
||
[archiver encodeClassName: @"GormNSMenu"
|
||
intoClassName: @"NSMenu"];
|
||
[archiver encodeClassName: @"GormNSWindow"
|
||
intoClassName: @"NSWindow"];
|
||
[archiver encodeClassName: @"GormNSBrowser"
|
||
intoClassName: @"NSBrowser"];
|
||
[archiver encodeClassName: @"GormNSTableView"
|
||
intoClassName: @"NSTableView"];
|
||
[archiver encodeClassName: @"GormNSOutlineView"
|
||
intoClassName: @"NSOutlineView"];
|
||
[archiver encodeClassName: @"GormNSPopUpButton"
|
||
intoClassName: @"NSPopUpButton"];
|
||
[archiver encodeClassName: @"GormNSPopUpButtonCell"
|
||
intoClassName: @"NSPopUpButtonCell"];
|
||
|
||
/* Templates */
|
||
[archiver encodeClassName: @"GormNSWindowTemplate"
|
||
intoClassName: @"NSWindowTemplate"];
|
||
[archiver encodeClassName: @"GormNSViewTemplate"
|
||
intoClassName: @"NSViewTemplate"];
|
||
[archiver encodeClassName: @"GormNSTextTemplate"
|
||
intoClassName: @"NSTextTemplate"];
|
||
[archiver encodeClassName: @"GormNSControlTemplate"
|
||
intoClassName: @"NSControlTemplate"];
|
||
[archiver encodeClassName: @"GormNSButtonTemplate"
|
||
intoClassName: @"NSButtonTemplate"];
|
||
[archiver encodeClassName: @"GormNSTextViewTemplate"
|
||
intoClassName: @"NSTextViewTemplate"];
|
||
[archiver encodeClassName: @"GormNSViewTemplate"
|
||
intoClassName: @"NSViewTemplate"];
|
||
[archiver encodeClassName: @"GormNSMenuTemplate"
|
||
intoClassName: @"NSMenuTemplate"];
|
||
|
||
[archiver encodeRootObject: self];
|
||
|
||
fileExists = [mgr fileExistsAtPath: documentPath isDirectory: &isDir];
|
||
if(fileExists)
|
||
{
|
||
if(isDir == NO)
|
||
{
|
||
NSString *saveFilePath = [documentPath stringByAppendingPathExtension: @"save"];
|
||
|
||
// move the old file to something...
|
||
if(![mgr movePath: documentPath toPath: saveFilePath handler: nil])
|
||
{
|
||
NSLog(@"Error moving old %@ file to %@",documentPath,saveFilePath);
|
||
}
|
||
|
||
// create the new directory..
|
||
archiveResult = [mgr createDirectoryAtPath: documentPath attributes: nil];
|
||
}
|
||
else
|
||
{
|
||
// set to yes since the directory is already present.
|
||
archiveResult = YES;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
// create the directory...
|
||
archiveResult = [mgr createDirectoryAtPath: documentPath attributes: nil];
|
||
}
|
||
|
||
if(archiveResult)
|
||
{
|
||
// save the data...
|
||
archiveResult = [archiverData writeToFile: gormPath atomically: YES];
|
||
RELEASE(archiver);
|
||
if (archiveResult)
|
||
{
|
||
// save the custom classes.. and we're done...
|
||
archiveResult = [classManager saveToFile: classesPath];
|
||
|
||
// copy sounds into the new folder...
|
||
if(archiveResult)
|
||
{
|
||
NSEnumerator *en = [sounds objectEnumerator];
|
||
id object = nil;
|
||
|
||
while((object = [en nextObject]) != nil)
|
||
{
|
||
NSString *soundPath = [documentPath stringByAppendingPathComponent: [object lastPathComponent]];
|
||
BOOL copied = [mgr copyPath: object toPath: soundPath handler: nil];
|
||
|
||
if(!copied)
|
||
{
|
||
NSLog(@"Could not find sound at path %@", object);
|
||
}
|
||
}
|
||
|
||
en = [images objectEnumerator];
|
||
|
||
while((object = [en nextObject]) != nil)
|
||
{
|
||
NSString *imagePath = [documentPath stringByAppendingPathComponent: [object lastPathComponent]];
|
||
BOOL copied = [mgr copyPath: object toPath: imagePath handler: nil];
|
||
|
||
if(!copied)
|
||
{
|
||
NSLog(@"Could not find image at path %@", object);
|
||
}
|
||
}
|
||
|
||
}
|
||
}
|
||
}
|
||
|
||
[self endArchiving];
|
||
|
||
if (archiveResult == NO)
|
||
{
|
||
NSRunAlertPanel(NULL, @"Could not save document",
|
||
@"OK", NULL, NULL);
|
||
return nil;
|
||
}
|
||
|
||
[window setDocumentEdited: NO];
|
||
[window setTitleWithRepresentedFilename: documentPath];
|
||
|
||
[nc postNotificationName: IBDidSaveDocumentNotification
|
||
object: self];
|
||
return self;
|
||
}
|
||
|
||
- (void) setDocumentActive: (BOOL)flag
|
||
{
|
||
if (flag != isActive)
|
||
{
|
||
NSEnumerator *enumerator;
|
||
id obj;
|
||
|
||
enumerator = [nameTable objectEnumerator];
|
||
if (flag == YES)
|
||
{
|
||
[(GormDocument*)[(id<IB>)NSApp activeDocument] setDocumentActive: NO];
|
||
isActive = YES;
|
||
while ((obj = [enumerator nextObject]) != nil)
|
||
{
|
||
if ([obj isKindOfClass: [NSWindow class]] == YES)
|
||
{
|
||
[obj orderFront: self];
|
||
}
|
||
else if ([obj isKindOfClass: [NSMenu class]] == YES)
|
||
{
|
||
[obj display];
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
isActive = NO;
|
||
while ((obj = [enumerator nextObject]) != nil)
|
||
{
|
||
if ([obj isKindOfClass: [NSWindow class]] == YES)
|
||
{
|
||
[obj orderOut: self];
|
||
}
|
||
else if ([obj isKindOfClass: [NSMenu class]] == YES)
|
||
{
|
||
[obj close];
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
- (void) setSelectionFromEditor: (id<IBEditors>)anEditor
|
||
{
|
||
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
|
||
NSDebugLog(@"setSelectionFromEditor %@", anEditor);
|
||
if([(id)anEditor respondsToSelector: @selector(window)])
|
||
{
|
||
[[anEditor window] makeFirstResponder: anEditor];
|
||
}
|
||
[nc postNotificationName: IBSelectionChangedNotification
|
||
object: anEditor];
|
||
}
|
||
|
||
- (void) touch
|
||
{
|
||
[window setDocumentEdited: YES];
|
||
}
|
||
|
||
- (NSWindow*) windowAndRect: (NSRect*)r forObject: (id)object
|
||
{
|
||
/*
|
||
* Get the window and rectangle for which link markup should be drawn.
|
||
*/
|
||
if ([objectsView containsObject: object] == YES)
|
||
{
|
||
/*
|
||
* objects that exist in the document objects view must have their link
|
||
* markup drawn there, so we ask the view for the required rectangle.
|
||
*/
|
||
*r = [objectsView rectForObject: object];
|
||
return [objectsView window];
|
||
}
|
||
else if ([object isKindOfClass: [NSMenuItem class]] == YES)
|
||
{
|
||
NSArray *links;
|
||
NSMenu *menu;
|
||
id editor;
|
||
|
||
/*
|
||
* Menu items must have their markup drawn in the window of the
|
||
* editor of the parent menu.
|
||
*/
|
||
links = [self connectorsForSource: object
|
||
ofClass: [NSNibConnector class]];
|
||
menu = [[links lastObject] destination];
|
||
editor = [self editorForObject: menu create: NO];
|
||
*r = [editor rectForObject: object];
|
||
return [editor window];
|
||
}
|
||
else if ([object isKindOfClass: [NSView class]] == YES)
|
||
{
|
||
/*
|
||
* Normal view objects just get link markup drawn on them.
|
||
*/
|
||
id temp = object;
|
||
id editor = [self editorForObject: temp create: NO];
|
||
|
||
while((temp != nil) && (editor == nil))
|
||
{
|
||
temp = [temp superview];
|
||
editor = [self editorForObject: temp create: NO];
|
||
}
|
||
|
||
if (temp == nil)
|
||
{
|
||
*r = [object convertRect: [object bounds] toView: nil];
|
||
}
|
||
else if ([editor respondsToSelector:
|
||
@selector(windowAndRect:forObject:)])
|
||
{
|
||
return [editor windowAndRect: r forObject: object];
|
||
}
|
||
}
|
||
else if ([object isKindOfClass: [NSTableColumn class]] == YES)
|
||
{
|
||
NSTableView *tv = [[(NSTableColumn*)object dataCell] controlView];
|
||
NSTableHeaderView *th = [tv headerView];
|
||
int index;
|
||
|
||
if (th == nil || tv == nil)
|
||
{
|
||
NSLog(@"fail 1 %@ %@ %@", [(NSTableColumn*)object headerCell], th, tv);
|
||
*r = NSZeroRect;
|
||
return nil;
|
||
}
|
||
|
||
index = [[tv tableColumns] indexOfObject: object];
|
||
|
||
if (index == NSNotFound)
|
||
{
|
||
NSLog(@"fail 2");
|
||
*r = NSZeroRect;
|
||
return nil;
|
||
}
|
||
|
||
*r = [th convertRect: [th headerRectOfColumn: index]
|
||
toView: nil];
|
||
return [th window];
|
||
}
|
||
else
|
||
{
|
||
*r = NSZeroRect;
|
||
return nil;
|
||
}
|
||
|
||
// never reached, keeps gcc happy
|
||
return nil;
|
||
}
|
||
|
||
- (NSWindow*) window
|
||
{
|
||
return window;
|
||
}
|
||
|
||
- (BOOL) windowShouldClose: (id)sender
|
||
{
|
||
if ([window isDocumentEdited] == YES)
|
||
{
|
||
NSString *msg;
|
||
int result;
|
||
|
||
if (documentPath == nil)
|
||
{
|
||
msg = @"Document 'UNTITLED' has been modified";
|
||
}
|
||
else
|
||
{
|
||
msg = [NSString stringWithFormat: @"Document '%@' has been modified",
|
||
[documentPath lastPathComponent]];
|
||
}
|
||
result = NSRunAlertPanel(NULL, msg, @"Save", @"Cancel", @"Don't Save");
|
||
if (result == NSAlertAlternateReturn)
|
||
{
|
||
return NO;
|
||
}
|
||
else if (result != NSAlertOtherReturn)
|
||
{
|
||
[self saveDocument: self];
|
||
}
|
||
}
|
||
return YES;
|
||
}
|
||
|
||
// convenience methods for formatting outlets/actions
|
||
- (NSString*) _identifierString: (NSString*)str
|
||
{
|
||
static NSCharacterSet *illegal = nil;
|
||
static NSCharacterSet *numeric = nil;
|
||
NSRange r;
|
||
NSMutableString *m;
|
||
|
||
if (illegal == nil)
|
||
{
|
||
illegal = [[NSCharacterSet characterSetWithCharactersInString:
|
||
@"_0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"]
|
||
invertedSet];
|
||
numeric = [NSCharacterSet characterSetWithCharactersInString:
|
||
@"0123456789"];
|
||
RETAIN(illegal);
|
||
RETAIN(numeric);
|
||
}
|
||
if (str == nil)
|
||
{
|
||
return nil;
|
||
}
|
||
m = [str mutableCopy];
|
||
r = [str rangeOfCharacterFromSet: illegal];
|
||
while (r.length > 0)
|
||
{
|
||
[m deleteCharactersInRange: r];
|
||
r = [m rangeOfCharacterFromSet: illegal];
|
||
}
|
||
r = [str rangeOfCharacterFromSet: numeric];
|
||
while (r.length > 0 && r.location == 0)
|
||
{
|
||
[m deleteCharactersInRange: r];
|
||
r = [m rangeOfCharacterFromSet: numeric];
|
||
}
|
||
str = [m copy];
|
||
RELEASE(m);
|
||
AUTORELEASE(str);
|
||
|
||
return str;
|
||
}
|
||
|
||
- (NSString *)_formatAction: (NSString *)action
|
||
{
|
||
NSString *identifier = [[self _identifierString: action] stringByAppendingString: @":"];
|
||
return identifier;
|
||
}
|
||
|
||
- (NSString *)_formatOutlet: (NSString *)outlet
|
||
{
|
||
NSString *identifier = [self _identifierString: outlet];
|
||
return identifier;
|
||
}
|
||
|
||
- (BOOL) removeConnectionsWithLabel: (NSString *)name
|
||
forClassNamed: (NSString *)className
|
||
isAction: (BOOL)action
|
||
{
|
||
NSEnumerator *en = [connections objectEnumerator];
|
||
id<IBConnectors> c = nil;
|
||
BOOL removed = YES;
|
||
|
||
// remove all.
|
||
while((c = [en nextObject]) != nil)
|
||
{
|
||
id proxy = nil;
|
||
NSString *label = [c label];
|
||
|
||
if(action)
|
||
{
|
||
if(![label hasSuffix: @":"])
|
||
continue;
|
||
proxy = [c destination];
|
||
}
|
||
else
|
||
{
|
||
if([label hasSuffix: @":"])
|
||
continue;
|
||
proxy = [c source];
|
||
}
|
||
|
||
if([label isEqualToString: name] &&
|
||
[[proxy className] isEqualToString: className])
|
||
{
|
||
NSString *title = [NSString stringWithFormat: @"Modifying %@",(action==YES?@"Action":@"Outlet")];
|
||
NSString *msg = [NSString stringWithFormat: @"This will break all connections to '%@'. Continue?",
|
||
name];
|
||
int retval = NSRunAlertPanel(title,msg,@"OK",@"Cancel",nil,nil);
|
||
if(retval == NSAlertDefaultReturn)
|
||
{
|
||
removed = YES;
|
||
[self removeConnector: c];
|
||
}
|
||
else
|
||
{
|
||
removed = NO;
|
||
}
|
||
}
|
||
}
|
||
|
||
// done...
|
||
NSDebugLog(@"Removed references to %@ on %@",name, className);
|
||
return removed;
|
||
}
|
||
|
||
// --- NSOutlineView dataSource ---
|
||
- (id) outlineView: (NSOutlineView *)anOutlineView
|
||
objectValueForTableColumn: (NSTableColumn *)aTableColumn
|
||
byItem: item
|
||
{
|
||
if (anOutlineView == classesView)
|
||
{
|
||
id identifier = [aTableColumn identifier];
|
||
id className = item;
|
||
|
||
if ([identifier isEqualToString: @"classes"])
|
||
{
|
||
return className;
|
||
}
|
||
else if ([identifier isEqualToString: @"outlets"])
|
||
{
|
||
return [NSString stringWithFormat: @"%d",
|
||
[[classManager allOutletsForClassNamed: className] count]];
|
||
}
|
||
else if ([identifier isEqualToString: @"actions"])
|
||
{
|
||
return [NSString stringWithFormat: @"%d",
|
||
[[classManager allActionsForClassNamed: className] count]];
|
||
}
|
||
|
||
}
|
||
return @"";
|
||
}
|
||
|
||
- (void) outlineView: (NSOutlineView *)anOutlineView
|
||
setObjectValue: (id)anObject
|
||
forTableColumn: (NSTableColumn *)aTableColumn
|
||
byItem: (id)item
|
||
{
|
||
GormOutlineView *gov = (GormOutlineView *)anOutlineView;
|
||
|
||
if([item isKindOfClass: [GormOutletActionHolder class]])
|
||
{
|
||
if(![anObject isEqualToString: @""])
|
||
{
|
||
NSString *name = [item getName];
|
||
if([gov editType] == Actions)
|
||
{
|
||
NSString *formattedAction = [self _formatAction: anObject];
|
||
if(![classManager isAction: formattedAction
|
||
ofClass: [gov itemBeingEdited]])
|
||
{
|
||
BOOL removed = [self removeConnectionsWithLabel: name forClassNamed: [gov itemBeingEdited] isAction: YES];
|
||
if(removed)
|
||
{
|
||
[classManager replaceAction: name
|
||
withAction: formattedAction
|
||
forClassNamed: [gov itemBeingEdited]];
|
||
[(GormOutletActionHolder *)item setName: formattedAction];
|
||
}
|
||
}
|
||
else
|
||
{
|
||
NSString *message = [NSString stringWithFormat:
|
||
@"The class %@ already has an action named %@",
|
||
[gov itemBeingEdited],formattedAction];
|
||
NSRunAlertPanel(@"Problem Adding Action",
|
||
message,nil,nil,nil);
|
||
|
||
}
|
||
}
|
||
else if([gov editType] == Outlets)
|
||
{
|
||
NSString *formattedOutlet = [self _formatOutlet: anObject];
|
||
|
||
if(![classManager isOutlet: formattedOutlet
|
||
ofClass: [gov itemBeingEdited]])
|
||
{
|
||
BOOL removed = [self removeConnectionsWithLabel: name forClassNamed: [gov itemBeingEdited] isAction: NO];
|
||
if(removed)
|
||
{
|
||
[classManager replaceOutlet: name
|
||
withOutlet: formattedOutlet
|
||
forClassNamed: [gov itemBeingEdited]];
|
||
[(GormOutletActionHolder *)item setName: formattedOutlet];
|
||
}
|
||
}
|
||
else
|
||
{
|
||
NSString *message = [NSString stringWithFormat:
|
||
@"The class %@ already has an outlet named %@",
|
||
[gov itemBeingEdited],formattedOutlet];
|
||
NSRunAlertPanel(@"Problem Adding Outlet",
|
||
message,nil,nil,nil);
|
||
|
||
}
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
if(![anObject isEqualToString: @""])
|
||
{
|
||
[classManager renameClassNamed: item newName: anObject];
|
||
[gov reloadData];
|
||
}
|
||
}
|
||
[gov setNeedsDisplay: YES];
|
||
}
|
||
|
||
- (int) outlineView: (NSOutlineView *)anOutlineView
|
||
numberOfChildrenOfItem: (id)item
|
||
{
|
||
if(item == nil)
|
||
{
|
||
return 1;
|
||
}
|
||
else
|
||
{
|
||
NSArray *subclasses = [classManager subClassesOf: item];
|
||
return [subclasses count];
|
||
}
|
||
|
||
return 0;
|
||
}
|
||
|
||
- (BOOL) outlineView: (NSOutlineView *)anOutlineView
|
||
isItemExpandable: (id)item
|
||
{
|
||
NSArray *subclasses = nil;
|
||
if(item == nil)
|
||
return YES;
|
||
|
||
subclasses = [classManager subClassesOf: item];
|
||
if([subclasses count] > 0)
|
||
return YES;
|
||
|
||
return NO;
|
||
}
|
||
|
||
- (id) outlineView: (NSOutlineView *)anOutlineView
|
||
child: (int)index
|
||
ofItem: (id)item
|
||
{
|
||
if(item == nil && index == 0)
|
||
{
|
||
return @"NSObject";
|
||
}
|
||
else
|
||
{
|
||
NSArray *subclasses = [classManager subClassesOf: item];
|
||
return [subclasses objectAtIndex: index];
|
||
}
|
||
|
||
return nil;
|
||
}
|
||
|
||
// GormOutlineView data source methods...
|
||
- (NSArray *)outlineView: (NSOutlineView *)anOutlineView
|
||
actionsForItem: (id)item
|
||
{
|
||
NSArray *actions = [classManager allActionsForClassNamed: item];
|
||
return actions;
|
||
}
|
||
|
||
- (NSArray *)outlineView: (NSOutlineView *)anOutlineView
|
||
outletsForItem: (id)item
|
||
{
|
||
NSArray *outlets = [classManager allOutletsForClassNamed: item];
|
||
return outlets;
|
||
}
|
||
|
||
- (NSString *)outlineView: (NSOutlineView *)anOutlineView
|
||
addNewActionForClass: (id)item
|
||
{
|
||
GormOutlineView *gov = (GormOutlineView *)anOutlineView;
|
||
if(![classManager isCustomClass: [gov itemBeingEdited]])
|
||
{
|
||
return nil;
|
||
}
|
||
return [classManager addNewActionToClassNamed: item];
|
||
}
|
||
|
||
- (NSString *)outlineView: (NSOutlineView *)anOutlineView
|
||
addNewOutletForClass: (id)item
|
||
{
|
||
GormOutlineView *gov = (GormOutlineView *)anOutlineView;
|
||
if(![classManager isCustomClass: [gov itemBeingEdited]])
|
||
{
|
||
return nil;
|
||
}
|
||
return [classManager addNewOutletToClassNamed: item];
|
||
}
|
||
|
||
// Delegate methods
|
||
- (BOOL) outlineView: (NSOutlineView *)outlineView
|
||
shouldEditTableColumn: (NSTableColumn *)tableColumn
|
||
item: (id)item
|
||
{
|
||
BOOL result = NO;
|
||
GormOutlineView *gov = (GormOutlineView *)outlineView;
|
||
|
||
NSLog(@"in the delegate %@", [tableColumn identifier]);
|
||
if(tableColumn == [gov outlineTableColumn])
|
||
{
|
||
NSLog(@"outline table col");
|
||
if(![item isKindOfClass: [GormOutletActionHolder class]])
|
||
{
|
||
result = [classManager isCustomClass: item];
|
||
}
|
||
else
|
||
{
|
||
id itemBeingEdited = [gov itemBeingEdited];
|
||
if([classManager isCustomClass: itemBeingEdited])
|
||
{
|
||
if([gov editType] == Actions)
|
||
{
|
||
result = [classManager isAction: [item getName]
|
||
ofClass: itemBeingEdited];
|
||
}
|
||
else if([gov editType] == Outlets)
|
||
{
|
||
result = [classManager isOutlet: [item getName]
|
||
ofClass: itemBeingEdited];
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
return result;
|
||
}
|
||
|
||
// for debuging purpose
|
||
- (void) printAllEditors
|
||
{
|
||
NSMutableSet *set = [NSMutableSet setWithCapacity: 16];
|
||
NSEnumerator *enumerator = [connections objectEnumerator];
|
||
id<IBConnectors> c;
|
||
|
||
while ((c = [enumerator nextObject]) != nil)
|
||
{
|
||
if ([GormObjectToEditor class] == [c class])
|
||
{
|
||
[set addObject: [c destination]];
|
||
}
|
||
}
|
||
|
||
NSLog(@"all editors %@", set);
|
||
}
|
||
|
||
// sound support...
|
||
- (id) openSound: (id)sender
|
||
{
|
||
NSArray *fileTypes = [NSSound soundUnfilteredFileTypes];
|
||
NSOpenPanel *oPanel = [NSOpenPanel openPanel];
|
||
int result;
|
||
|
||
[oPanel setAllowsMultipleSelection: NO];
|
||
[oPanel setCanChooseFiles: YES];
|
||
[oPanel setCanChooseDirectories: NO];
|
||
result = [oPanel runModalForDirectory: nil
|
||
file: nil
|
||
types: fileTypes];
|
||
if (result == NSOKButton)
|
||
{
|
||
NSLog(@"Loading sound file: %@",[oPanel filename]);
|
||
[soundsView addObject: [self _createSoundPlaceHolder: [oPanel filename]]];
|
||
[sounds addObject: [oPanel filename]];
|
||
return self;
|
||
}
|
||
|
||
return nil;
|
||
}
|
||
|
||
// sound support...
|
||
- (id) openImage: (id)sender
|
||
{
|
||
NSArray *fileTypes = [NSImage imageFileTypes];
|
||
NSOpenPanel *oPanel = [NSOpenPanel openPanel];
|
||
int result;
|
||
|
||
[oPanel setAllowsMultipleSelection: NO];
|
||
[oPanel setCanChooseFiles: YES];
|
||
[oPanel setCanChooseDirectories: NO];
|
||
result = [oPanel runModalForDirectory: nil
|
||
file: nil
|
||
types: fileTypes];
|
||
if (result == NSOKButton)
|
||
{
|
||
NSLog(@"Loading image file: %@",[oPanel filename]);
|
||
[imagesView addObject: [self _createImagePlaceHolder: [oPanel filename]]];
|
||
[images addObject: [oPanel filename]];
|
||
return self;
|
||
}
|
||
|
||
return nil;
|
||
}
|
||
|
||
- (void) addImage: (NSString*) path
|
||
{
|
||
[images addObject: path];
|
||
}
|
||
@end
|