libs-gdl2/EOModeler/EOModelerEditor.m
Matt Rice 93221c9bc9 * EOModeler/EOMInspectorController.m (-init): Don't release the window
on close.
        (_selectionChanged:): Fix view swapping.  Set view as needing display.

        * EOModeler/EOModelExtensions.m:
        (+mutableAttributedStringWithBoldSubstitutionsWithFormat:): Implement.

        * EOModeler/EOModelerApp.h: Add -removeDocument:, -documentAtPath:,
        and -loadDocumentAtPath: methods.

        * EOModeler/EOModelerApp.m (-init:): Add parentheses around
        assignment.
        (-allPasteboardTypes): Initial implementation.
        (-removeDocument:): If removing the active document, set the active
        document to nil.
        (-documentWithPath:): Change array iterators to unsigned.
        (-registerColumNames:forClass:provider:): Ditto.
        (-modelContainingFetchSpecification:): Temporarily return nil.
        (-nameForFetchSpecification:): Ditto.

        * EOModeler/EOModelerDocument.h: Declare consistency check
        notification constants. Add -adaptor, -appendConsistencyCheckErrorText:,
        -appendConsistencyCheckSuccessText:, -addEntity:, -addRelationship,
        -addAttribute and -delete.

        * EOModeler/EOModelerDocument.m: Add consistency check notification
        constants.  Add private category interface.
        (-firstSelectionOfClass:): Change array iterators to unsigned.
        Remove debugging logs.
        (-validateMenuItem:): Initial implementation.
        (-initWithModel:): Add parentheses around assignment.  Add the model
        to the default model group.
        (-dealloc, -delete:): Initial implementation.
        (-isDirty, -prepareToSave,-checkCloseDocument): Return no temporarily
        until implemented.
        (-saveToPath:): Break long messages into separate lines.
        (-addDefaultEditor:, -addEntity:, -addAttribute:): Ditto.
        (-addRelationship:, ):
        (-activate): Remove commented out code.
        (-closeEditor:, -checkCloseEditor:): Add comments.
        (-canFlattenSelectedAttribute): Add temporary return value.
        (-windowWillClose:): Remove self from the open documents.
        (-checkConsistency:): Implement.
        (-appendConsistencyCheckErrorText:): Ditto.
        (-appendConsistencyCheckSuccessText:): Ditto.

        * EOModeler/EOModelerEditor.m (-initWithDocument:): Add parentheses
        around assignment.  Don't retain our document.
        (-selectionPath:, -viewedObjectPath): Return nil.
        (-[EOModelerCompoundEditor dealloc]): Implement.
        (-[EOModelerCompoundEditor initWithParentObject:): Add parentheses
        around assignment.
        (-[EOModelerEmbedibleEditor pathViewPreferenceHint:): Return nil.

        * EOModeler/GNUmakefile: Remove extra whitespace.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@21440 72102866-910b-0410-8b05-ffd578937521
2005-07-09 17:44:40 +00:00

402 lines
8.9 KiB
Objective-C

/**
EOModelerEditor.m <title>EOModelerEditor Classes</title>
Copyright (C) 2005 Free Software Foundation, Inc.
Author: Matt Rice <ratmice@yahoo.com>
Date: April 2005
This file is part of the GNUstep Database Library.
<license>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
</license>
**/
#include <Foundation/NSArray.h>
#include <Foundation/NSObject.h>
#include "EOModeler/EOModelerEditor.h"
#include "EOModeler/EOModelerDocument.h"
#include "EOModeler/EOModelerApp.h"
#include <Foundation/NSNotification.h>
#include <Foundation/NSException.h>
#include <AppKit/NSView.h>
@implementation EOModelerEditor
- (void) dealloc
{
[super dealloc];
}
- (EOModelerEditor *)initWithDocument:(EOModelerDocument *)document
{
if ((self = [super init]))
{
_document = document;
}
return self;
}
- (EOModelerDocument *)document
{
return _document;
}
- (void)setSelectionPath:(NSArray *)newSelection
{
[self subclassResponsibility: _cmd];
}
- (NSArray *)selectionPath
{
[self subclassResponsibility: _cmd];
return nil;
}
- (void)activate
{
[self subclassResponsibility: _cmd];
}
- (NSArray *)selectionWithinViewedObject
{
return [NSArray array];
}
- (void)setSelectionWithinViewedObject:(NSArray *)newSelection
{
[self subclassResponsibility: _cmd];
}
- (void)setViewedObjectPath:(NSArray *)newPath
{
[self subclassResponsibility: _cmd];
}
- (NSArray *)viewedObjectPath
{
[self subclassResponsibility: _cmd];
return nil;
}
@end
@implementation EOModelerCompoundEditor
- (void) dealloc
{
RELEASE(_editors);
RELEASE(_viewedObjectPath);
RELEASE(_selectionWithinViewedObject);
[super dealloc];
}
- (id) initWithDocument:(id)doc
{
self = [super initWithDocument:doc];
_editors = [[NSMutableArray alloc] init];
_activeEditor = nil;
_viewedObjectPath = [[NSArray alloc] initWithObjects:[doc model], nil];
_selectionWithinViewedObject = [NSArray new];
return self;
}
- (EOModelerEmbedibleEditor *)activeEditor
{
return _activeEditor;
}
- (void)activateEditorWithClass:(Class)embedibleEditorClass
{
int i, count = [_editors count];
for (i = 0; i < count; i++)
{
EOModelerEmbedibleEditor *anEditor = [_editors objectAtIndex:i];
if ([anEditor isKindOfClass: embedibleEditorClass])
{
[anEditor activate];
_activeEditor = anEditor;
}
}
}
- (void)activateEmbeddedEditor:(EOModelerEmbedibleEditor *)editor
{
unsigned int index = [_editors indexOfObjectIdenticalTo: editor];
if (index == NSNotFound)
{
[_editors addObject: editor];
}
[editor activate];
_activeEditor = editor;
}
- (EOModelerEmbedibleEditor *)embedibleEditorOfClass:(Class)editorClass
{
int i, count = [_editors count];
for (i = 0; i < count; i++)
{
EOModelerEmbedibleEditor *anEditor = [_editors objectAtIndex:i];
if ([anEditor isKindOfClass: editorClass])
{
return anEditor;
}
}
{
EOModelerEmbedibleEditor *newEditor = [[editorClass alloc] initWithParentEditor:self];
[self registerEmbedibleEditor: newEditor];
RELEASE(newEditor);
return newEditor;
}
}
- (void)registerEmbedibleEditor:(EOModelerEmbedibleEditor *)editor
{
[_editors addObject:editor];
}
/* getting the selection */
- (NSArray *)selectionPath
{
return [_viewedObjectPath arrayByAddingObject:_selectionWithinViewedObject];
}
- (NSArray *) viewedObjectPath
{
return _viewedObjectPath;
}
- (NSArray *)selectionWithinViewedObject
{
return _selectionWithinViewedObject;
}
/* setting the selection */
- (void)setSelectionPath:(NSArray *)newSelection
{
unsigned int indexOfLast = [newSelection indexOfObject:[newSelection lastObject]];
NSRange allButLastElement;
/* int i,j;
printf("%@\n",NSStringFromSelector(_cmd));
for (i = 0; i < [newSelection count]; i++)
{
id foo = [newSelection objectAtIndex:i];
if ([foo isKindOfClass:[NSArray class]])
{
printf("\t");
for (j = 0; j < [foo count]; j++)
printf("%@", [[foo objectAtIndex:j] class]);
printf("\n");
}
else
printf("%@\n", [[newSelection objectAtIndex:i] class]);
}
*/
if (indexOfLast != NSNotFound || indexOfLast != 1)
{
allButLastElement.location = 0;
allButLastElement.length = indexOfLast;
ASSIGN(_viewedObjectPath, [newSelection subarrayWithRange:allButLastElement]);
ASSIGN(_selectionWithinViewedObject, [newSelection lastObject]);
}
else
{
[[NSException exceptionWithName:@"foo" reason:@"bar" userInfo:nil] raise];
ASSIGN(_viewedObjectPath, [NSArray array]);
ASSIGN(_selectionWithinViewedObject, [NSArray array]);
}
[[NSNotificationCenter defaultCenter] postNotificationName:EOMSelectionChangedNotification
object:nil];
}
- (void) setSelectionWithinViewedObject:(NSArray *) newSelection
{
/*
int i,j;
printf("%@\n",NSStringFromSelector(_cmd));
for (i = 0; i < [newSelection count]; i++)
{
id foo = [newSelection objectAtIndex:i];
if ([foo isKindOfClass:[NSArray class]])
{
printf("\t");
for (j = 0; j < [foo count]; j++)
printf("%@", [[foo objectAtIndex:j] class]);
printf("\n");
}
else
printf("%@\n", [[newSelection objectAtIndex:i] class]);
} */
ASSIGN(_selectionWithinViewedObject, newSelection);
[[NSNotificationCenter defaultCenter] postNotificationName:EOMSelectionChangedNotification
object:nil];
}
- (void) setViewedObjectPath:(NSArray *)newPath
{
/*
int i,j;
printf("%@\n",NSStringFromSelector(_cmd));
for (i = 0; i < [newPath count]; i++)
{
id foo = [newPath objectAtIndex:i];
if ([foo isKindOfClass:[NSArray class]])
{
printf("\t");
for (j = 0; j < [foo count]; j++)
printf("%@", [[foo objectAtIndex:j] class]);
printf("\n");
}
else
printf("%@\n", [[newPath objectAtIndex:i] class]);
}
*/
ASSIGN(_viewedObjectPath, newPath);
[[NSNotificationCenter defaultCenter] postNotificationName:EOMSelectionChangedNotification
object:nil];
}
- (void)setStoredProceduresSelected:(BOOL)selected
{
_storedProceduresSelected = selected;
}
- (BOOL)storedProceduresSelected
{
if ([[_viewedObjectPath lastObject] isKindOfClass: NSClassFromString(@"EOModel")])
{
return _storedProceduresSelected;
}
return NO;
}
/* viewing the selection */
- (void)viewSelectedObject
{
/*
if (![_selectionWithinViewedObject count])
return;
{
id object = [_selectionWithinViewedObject objectAtIndex:0];
[self setSelectionPath: [[_viewedObjectPath arrayByAddingObject: object]
arrayByAddingObject:[NSArray array]]];
}
*/
}
- (void) activate
{
[EOMApp setCurrentEditor:self];
}
@end
@implementation EOModelerEmbedibleEditor
- (EOModelerEmbedibleEditor *) initWithParentEditor:(EOModelerCompoundEditor *)parentEditor
{
if ((self = [super initWithDocument: [parentEditor document]]))
{
_parentEditor = parentEditor;
}
return self;
}
- (EOModelerCompoundEditor *)parentEditor
{
return _parentEditor;
}
- (void)selectionDidChange:(NSNotification *)notification
{
if (self == [_parentEditor activeEditor])
{
[self activate];
}
}
/** subclasses should return YES if they can edit the current selection (should return NO if there is no selection */
- (BOOL)canSupportCurrentSelection
{
return NO;
}
/* subclasses should implement */
- (NSArray *)friendEditorClasses
{
return nil;
}
/* subclasses should implement */
- (NSView *)mainView
{
return nil;
}
- (NSString *)pathViewPreferenceHint
{
[self subclassResponsibility: _cmd];
return nil;
}
- (void)print
{
[self subclassResponsibility: _cmd];
}
/* getting the selection */
- (NSArray *)selectionPath
{
return [[self parentEditor] selectionPath];
}
- (NSArray *) viewedObjectPath
{
return [[self parentEditor] viewedObjectPath];
}
- (NSArray *)selectionWithinViewedObject
{
return [[self parentEditor] selectionWithinViewedObject];
}
/* setting the selection */
- (void)setSelectionPath:(NSArray *)newSelection
{
[[self parentEditor] setSelectionPath: newSelection];
}
- (void) setSelectionWithinViewedObject:(NSArray *) newSelection
{
[[self parentEditor] setSelectionWithinViewedObject: newSelection];
}
- (void) setViewedObjectPath:(NSArray *)newPath
{
[[self parentEditor] setViewedObjectPath: newPath];
}
@end