mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 12:01:16 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@5597 72102866-910b-0410-8b05-ffd578937521
855 lines
20 KiB
Objective-C
855 lines
20 KiB
Objective-C
/* GormObjectEditor.m
|
||
*
|
||
* Copyright (C) 1999 Free Software Foundation, Inc.
|
||
*
|
||
* Author: Richard Frith-Macdonald <richard@brainstrom.co.uk>
|
||
* Date: 1999
|
||
*
|
||
* 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"
|
||
|
||
/*
|
||
* Method to return the image that should be used to display objects within
|
||
* the matrix containing the objects in a document.
|
||
*/
|
||
@implementation NSObject (GormObjectAdditions)
|
||
- (NSString*) inspectorClassName
|
||
{
|
||
return @"GormObjectInspector";
|
||
}
|
||
- (NSString*) connectInspectorClassName
|
||
{
|
||
return @"GormConnectionInspector";
|
||
}
|
||
- (NSString*) sizeInspectorClassName
|
||
{
|
||
return @"GormObjectInspector";
|
||
}
|
||
- (NSString*) helpInspectorClassName
|
||
{
|
||
return @"GormObjectInspector";
|
||
}
|
||
- (NSString*) classInspectorClassName
|
||
{
|
||
return @"GormClassInspector";
|
||
}
|
||
- (NSString*) editorClassName
|
||
{
|
||
return @"GormObjectEditor";
|
||
}
|
||
- (NSImage*) imageForViewer
|
||
{
|
||
static NSImage *image = nil;
|
||
|
||
if (image == nil)
|
||
{
|
||
NSBundle *bundle = [NSBundle mainBundle];
|
||
NSString *path = [bundle pathForImageResource: @"GormObject"];
|
||
|
||
image = [[NSImage alloc] initWithContentsOfFile: path];
|
||
}
|
||
return image;
|
||
}
|
||
@end
|
||
|
||
|
||
|
||
@implementation GormObjectEditor
|
||
|
||
static NSMapTable *docMap = 0;
|
||
|
||
+ (void) initialize
|
||
{
|
||
if (self == [GormObjectEditor class])
|
||
{
|
||
docMap = NSCreateMapTable(NSNonRetainedObjectMapKeyCallBacks,
|
||
NSObjectMapValueCallBacks, 2);
|
||
}
|
||
}
|
||
|
||
- (BOOL) acceptsTypeFromArray: (NSArray*)types
|
||
{
|
||
if ([types containsObject: IBObjectPboardType] == YES)
|
||
return YES;
|
||
return NO;
|
||
}
|
||
|
||
- (BOOL) activate
|
||
{
|
||
[window makeKeyAndOrderFront: self];
|
||
return YES;
|
||
}
|
||
|
||
- (void) addObject: (id)anObject
|
||
{
|
||
if (anObject != nil
|
||
&& [objects indexOfObjectIdenticalTo: anObject] == NSNotFound)
|
||
{
|
||
[objects addObject: anObject];
|
||
[self refreshCells];
|
||
}
|
||
}
|
||
|
||
- (id) changeSelection: (id)sender
|
||
{
|
||
int row = [self selectedRow];
|
||
int col = [self selectedColumn];
|
||
int index = row * [self numberOfColumns] + col;
|
||
id obj = nil;
|
||
|
||
if (index >= 0 && index < [objects count])
|
||
{
|
||
obj = [objects objectAtIndex: index];
|
||
[self selectObjects: [NSArray arrayWithObject: obj]];
|
||
}
|
||
return obj;
|
||
}
|
||
|
||
- (void) close
|
||
{
|
||
[self closeSubeditors];
|
||
}
|
||
|
||
- (void) closeSubeditors
|
||
{
|
||
}
|
||
|
||
- (BOOL) containsObject: (id)object
|
||
{
|
||
if ([objects indexOfObjectIdenticalTo: object] == NSNotFound)
|
||
return NO;
|
||
return YES;
|
||
}
|
||
|
||
- (void) copySelection
|
||
{
|
||
if (selected != nil)
|
||
{
|
||
[document copyObjects: [self selection]
|
||
type: IBViewPboardType
|
||
toPasteboard: [NSPasteboard generalPasteboard]];
|
||
}
|
||
}
|
||
|
||
- (void) dealloc
|
||
{
|
||
RELEASE(objects);
|
||
[super dealloc];
|
||
}
|
||
|
||
- (void) deleteSelection
|
||
{
|
||
if (selected != nil
|
||
&& [[document nameForObject: selected] isEqualToString: @"NSOwner"] == NO
|
||
&& [[document nameForObject: selected] isEqualToString: @"NSFirst"] == NO
|
||
&& [[document nameForObject: selected] isEqualToString: @"NSFont"] == NO)
|
||
{
|
||
[document detachObject: selected];
|
||
[objects removeObjectIdenticalTo: selected];
|
||
[self selectObjects: [NSArray array]];
|
||
[self refreshCells];
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Dragging source protocol implementation
|
||
*/
|
||
- (void) draggedImage: (NSImage*)i endedAt: (NSPoint)p deposited: (BOOL)f
|
||
{
|
||
}
|
||
|
||
- (unsigned) draggingEntered: (id<NSDraggingInfo>)sender
|
||
{
|
||
NSArray *types;
|
||
|
||
dragPb = [sender draggingPasteboard];
|
||
types = [dragPb types];
|
||
if ([types containsObject: IBObjectPboardType] == YES)
|
||
{
|
||
dragType = IBObjectPboardType;
|
||
}
|
||
else if ([types containsObject: GormLinkPboardType] == YES)
|
||
{
|
||
dragType = GormLinkPboardType;
|
||
}
|
||
else
|
||
{
|
||
dragType = nil;
|
||
}
|
||
return [self draggingUpdated: sender];
|
||
}
|
||
|
||
- (unsigned) draggingUpdated: (id<NSDraggingInfo>)sender
|
||
{
|
||
if (dragType == IBObjectPboardType)
|
||
{
|
||
return NSDragOperationCopy;
|
||
}
|
||
else if (dragType == GormLinkPboardType)
|
||
{
|
||
NSPoint loc = [sender draggingLocation];
|
||
int r, c;
|
||
int pos;
|
||
id obj = nil;
|
||
|
||
loc = [self convertPoint: loc fromView: nil];
|
||
[self getRow: &r column: &c forPoint: loc];
|
||
pos = r * [self numberOfColumns] + c;
|
||
if (pos >= 0 && pos < [objects count])
|
||
{
|
||
obj = [objects objectAtIndex: pos];
|
||
}
|
||
if (obj == [NSApp connectSource])
|
||
{
|
||
return 0; /* Can't drag an object onto itsself */
|
||
}
|
||
[NSApp displayConnectionBetween: [NSApp connectSource] and: obj];
|
||
if (obj != nil)
|
||
{
|
||
return NSDragOperationLink;
|
||
}
|
||
else
|
||
{
|
||
return 0;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
return 0;
|
||
}
|
||
}
|
||
|
||
- (unsigned int) draggingSourceOperationMaskForLocal: (BOOL)flag
|
||
{
|
||
return NSDragOperationLink;
|
||
}
|
||
|
||
- (void) drawSelection
|
||
{
|
||
}
|
||
|
||
- (id<IBDocuments>) document
|
||
{
|
||
return document;
|
||
}
|
||
|
||
- (id) editedObject
|
||
{
|
||
return selected;
|
||
}
|
||
|
||
/*
|
||
* Initialisation - register to receive DnD with our own types.
|
||
*/
|
||
- (id) initWithObject: (id)anObject inDocument: (id<IBDocuments>)aDocument
|
||
{
|
||
id old = NSMapGet(docMap, (void*)aDocument);
|
||
|
||
if (old != nil)
|
||
{
|
||
RELEASE(self);
|
||
self = RETAIN(old);
|
||
[self addObject: anObject];
|
||
return self;
|
||
}
|
||
|
||
self = [super init];
|
||
if (self != nil)
|
||
{
|
||
NSButtonCell *proto;
|
||
|
||
document = aDocument;
|
||
|
||
[self registerForDraggedTypes: [NSArray arrayWithObjects:
|
||
IBObjectPboardType, GormLinkPboardType, nil]];
|
||
|
||
[self setAutosizesCells: NO];
|
||
[self setCellSize: NSMakeSize(72,72)];
|
||
[self setIntercellSpacing: NSMakeSize(8,8)];
|
||
[self setAutoresizingMask: NSViewMinYMargin|NSViewWidthSizable];
|
||
[self setMode: NSRadioModeMatrix];
|
||
/*
|
||
* Send mouse click actions to self, so we can handle selection.
|
||
*/
|
||
[self setAction: @selector(changeSelection:)];
|
||
[self setDoubleAction: @selector(raiseSelection:)];
|
||
[self setTarget: self];
|
||
|
||
objects = [NSMutableArray new];
|
||
proto = [NSButtonCell new];
|
||
[proto setBordered: NO];
|
||
[proto setAlignment: NSCenterTextAlignment];
|
||
[proto setImagePosition: NSImageAbove];
|
||
[proto setSelectable: NO];
|
||
[proto setEditable: NO];
|
||
[self setPrototype: proto];
|
||
RELEASE(proto);
|
||
NSMapInsert(docMap, (void*)aDocument, (void*)self);
|
||
[self addObject: anObject];
|
||
}
|
||
return self;
|
||
}
|
||
|
||
- (void) makeSelectionVisible: (BOOL)flag
|
||
{
|
||
if (flag == YES && selected != nil)
|
||
{
|
||
unsigned pos = [objects indexOfObjectIdenticalTo: selected];
|
||
int r = pos / [self numberOfColumns];
|
||
int c = pos % [self numberOfColumns];
|
||
|
||
[self selectCellAtRow: r column: c];
|
||
}
|
||
else
|
||
{
|
||
[self deselectAllCells];
|
||
}
|
||
[self displayIfNeeded];
|
||
[[self window] flushWindow];
|
||
}
|
||
|
||
- (void) mouseDown: (NSEvent*)theEvent
|
||
{
|
||
if ([theEvent modifierFlags] & NSControlKeyMask)
|
||
{
|
||
NSPoint loc = [theEvent locationInWindow];
|
||
NSString *name;
|
||
int r, c;
|
||
int pos;
|
||
id obj;
|
||
|
||
loc = [self convertPoint: loc fromView: nil];
|
||
[self getRow: &r column: &c forPoint: loc];
|
||
pos = r * [self numberOfColumns] + c;
|
||
if (pos >= 0 && pos < [objects count])
|
||
{
|
||
obj = [objects objectAtIndex: pos];
|
||
}
|
||
if (obj != nil && obj != selected)
|
||
{
|
||
[self selectObjects: [NSArray arrayWithObject: obj]];
|
||
[self makeSelectionVisible: YES];
|
||
}
|
||
name = [document nameForObject: obj];
|
||
if ([name isEqualToString: @"NSFirst"] == NO)
|
||
{
|
||
NSPasteboard *pb;
|
||
|
||
pb = [NSPasteboard pasteboardWithName: NSDragPboard];
|
||
[pb declareTypes: [NSArray arrayWithObject: GormLinkPboardType]
|
||
owner: self];
|
||
[pb setString: name forType: GormLinkPboardType];
|
||
[NSApp displayConnectionBetween: obj and: nil];
|
||
|
||
[self dragImage: [NSApp linkImage]
|
||
at: loc
|
||
offset: NSZeroSize
|
||
event: theEvent
|
||
pasteboard: pb
|
||
source: self
|
||
slideBack: YES];
|
||
[self makeSelectionVisible: YES];
|
||
return;
|
||
}
|
||
}
|
||
|
||
[super mouseDown: theEvent];
|
||
}
|
||
|
||
- (id<IBEditors>) openSubeditorForObject: (id)anObject
|
||
{
|
||
return nil;
|
||
}
|
||
|
||
- (void) orderFront
|
||
{
|
||
[window orderFront: self];
|
||
}
|
||
|
||
- (void) pasteInSelection
|
||
{
|
||
}
|
||
|
||
- (BOOL) performDragOperation: (id<NSDraggingInfo>)sender
|
||
{
|
||
if (dragType == IBObjectPboardType)
|
||
{
|
||
NSArray *array;
|
||
NSEnumerator *enumerator;
|
||
id obj;
|
||
|
||
/*
|
||
* Ask the document to get the dragged objects from the pasteboard and
|
||
* add them to it's collection of known objects.
|
||
*/
|
||
array = [document pasteType: IBViewPboardType
|
||
fromPasteboard: dragPb
|
||
parent: [objects objectAtIndex: 0]];
|
||
enumerator = [array objectEnumerator];
|
||
while ((obj = [enumerator nextObject]) != nil)
|
||
{
|
||
[self addObject: obj];
|
||
}
|
||
return YES;
|
||
}
|
||
else if (dragType == GormLinkPboardType)
|
||
{
|
||
NSPoint loc = [sender draggingLocation];
|
||
NSString *name = [dragPb stringForType: GormLinkPboardType];
|
||
int r, c;
|
||
int pos;
|
||
id obj = nil;
|
||
|
||
NSLog(@"Got link from %@", name);
|
||
loc = [self convertPoint: loc fromView: nil];
|
||
[self getRow: &r column: &c forPoint: loc];
|
||
pos = r * [self numberOfColumns] + c;
|
||
if (pos >= 0 && pos < [objects count])
|
||
{
|
||
obj = [objects objectAtIndex: pos];
|
||
}
|
||
if (obj == nil)
|
||
{
|
||
return NO;
|
||
}
|
||
else
|
||
{
|
||
[NSApp displayConnectionBetween: [NSApp connectSource] and: obj];
|
||
[NSApp startConnecting];
|
||
return YES;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
NSLog(@"Drop with unrecognized type!");
|
||
return NO;
|
||
}
|
||
}
|
||
|
||
- (BOOL) prepareForDragOperation: (id<NSDraggingInfo>)sender
|
||
{
|
||
/*
|
||
* Tell the source that we will accept the drop if we can.
|
||
*/
|
||
if (dragType == IBObjectPboardType)
|
||
{
|
||
/*
|
||
* We can accept objects dropped anywhere.
|
||
*/
|
||
return YES;
|
||
}
|
||
else if (dragType == GormLinkPboardType)
|
||
{
|
||
NSPoint loc = [sender draggingLocation];
|
||
int r, c;
|
||
int pos;
|
||
id obj = nil;
|
||
|
||
loc = [self convertPoint: loc fromView: nil];
|
||
[self getRow: &r column: &c forPoint: loc];
|
||
pos = r * [self numberOfColumns] + c;
|
||
if (pos >= 0 && pos < [objects count])
|
||
{
|
||
obj = [objects objectAtIndex: pos];
|
||
}
|
||
if (obj != nil)
|
||
{
|
||
return YES;
|
||
}
|
||
}
|
||
return NO;
|
||
}
|
||
|
||
- (id) raiseSelection: (id)sender
|
||
{
|
||
id obj = [self changeSelection: sender];
|
||
|
||
if ([obj isKindOfClass: [NSWindow class]])
|
||
{
|
||
[obj makeKeyAndOrderFront: self];
|
||
}
|
||
else if ([obj isKindOfClass: [NSMenu class]])
|
||
{
|
||
NSLog(@"Menu needs raising"); /* FIXME */
|
||
}
|
||
return self;
|
||
}
|
||
|
||
/*
|
||
* Return the rectangle in which an objects image will be displayed.
|
||
*/
|
||
- (NSRect) rectForObject: (id)anObject
|
||
{
|
||
unsigned pos = [objects indexOfObjectIdenticalTo: anObject];
|
||
NSRect rect;
|
||
int r;
|
||
int c;
|
||
|
||
if (pos == NSNotFound)
|
||
return NSZeroRect;
|
||
r = pos / [self numberOfColumns];
|
||
c = pos % [self numberOfColumns];
|
||
rect = [self cellFrameAtRow: r column: c];
|
||
/*
|
||
* Adjust to image area.
|
||
*/
|
||
rect.size.width -= 15;
|
||
rect.size.height -= 15;
|
||
return rect;
|
||
}
|
||
|
||
- (void) refreshCells
|
||
{
|
||
unsigned count = [objects count];
|
||
unsigned index;
|
||
int cols = 0;
|
||
int rows;
|
||
int width;
|
||
|
||
width = [[self superview] bounds].size.width;
|
||
while (width >= 72)
|
||
{
|
||
width -= (72 + 8);
|
||
cols++;
|
||
}
|
||
if (cols == 0)
|
||
{
|
||
cols = 1;
|
||
}
|
||
rows = count / cols;
|
||
if (rows == 0 || rows * cols != count)
|
||
{
|
||
rows++;
|
||
}
|
||
[self renewRows: rows columns: cols];
|
||
|
||
for (index = 0; index < count; index++)
|
||
{
|
||
id obj = [objects objectAtIndex: index];
|
||
NSButtonCell *but = [self cellAtRow: index/cols column: index%cols];
|
||
|
||
[but setImage: [obj imageForViewer]];
|
||
[but setTitle: [document nameForObject: obj]];
|
||
[but setShowsStateBy: NSChangeGrayCellMask];
|
||
[but setHighlightsBy: NSChangeGrayCellMask];
|
||
}
|
||
while (index < rows * cols)
|
||
{
|
||
NSButtonCell *but = [self cellAtRow: index/cols column: index%cols];
|
||
|
||
[but setImage: nil];
|
||
[but setTitle: nil];
|
||
[but setShowsStateBy: NSNoCellMask];
|
||
[but setHighlightsBy: NSNoCellMask];
|
||
index++;
|
||
}
|
||
[self setIntercellSpacing: NSMakeSize(8,8)];
|
||
[self sizeToCells];
|
||
[self setNeedsDisplay: YES];
|
||
}
|
||
|
||
- (void) removeObject: (id)anObject
|
||
{
|
||
unsigned pos;
|
||
|
||
pos = [objects indexOfObjectIdenticalTo: anObject];
|
||
if (pos == NSNotFound)
|
||
{
|
||
return;
|
||
}
|
||
[objects removeObjectAtIndex: pos];
|
||
[self refreshCells];
|
||
}
|
||
|
||
- (void) resetObject: (id)anObject
|
||
{
|
||
}
|
||
|
||
- (void) resizeWithOldSuperviewSize: (NSSize)oldSize
|
||
{
|
||
[self refreshCells];
|
||
}
|
||
|
||
- (void) selectObjects: (NSArray*)anArray
|
||
{
|
||
id obj = [anArray lastObject];
|
||
|
||
selected = obj;
|
||
[document setSelectionFromEditor: self];
|
||
}
|
||
|
||
- (NSArray*) selection
|
||
{
|
||
if (selected == nil)
|
||
return [NSArray array];
|
||
else
|
||
return [NSArray arrayWithObject: selected];
|
||
}
|
||
|
||
- (unsigned) selectionCount
|
||
{
|
||
return (selected == nil) ? 0 : 1;
|
||
}
|
||
|
||
- (void) validateEditing
|
||
{
|
||
}
|
||
|
||
- (BOOL) wantsSelection
|
||
{
|
||
return NO;
|
||
}
|
||
|
||
- (NSWindow*) window
|
||
{
|
||
return [super window];
|
||
}
|
||
@end
|
||
|
||
|
||
@implementation NSView (GormInspectors)
|
||
- (NSString*) sizeInspectorClassName
|
||
{
|
||
return @"GormViewSizeInspector";
|
||
}
|
||
@end
|
||
|
||
@interface GormViewSizeInspector : IBInspector
|
||
{
|
||
NSButton *top;
|
||
NSButton *bottom;
|
||
NSButton *left;
|
||
NSButton *right;
|
||
NSButton *width;
|
||
NSButton *height;
|
||
}
|
||
@end
|
||
|
||
@implementation GormViewSizeInspector
|
||
|
||
NSImage *eHCoil = nil;
|
||
NSImage *eVCoil = nil;
|
||
NSImage *eHLine = nil;
|
||
NSImage *eVLine = nil;
|
||
NSImage *mHCoil = nil;
|
||
NSImage *mVCoil = nil;
|
||
NSImage *mHLine = nil;
|
||
NSImage *mVLine = nil;
|
||
|
||
+ (void) initialize
|
||
{
|
||
if (self == [GormViewSizeInspector class])
|
||
{
|
||
NSBundle *bundle = [NSBundle mainBundle];
|
||
NSString *path;
|
||
|
||
path = [bundle pathForImageResource: @"GormEHCoil"];
|
||
eHCoil = [[NSImage alloc] initWithContentsOfFile: path];
|
||
path = [bundle pathForImageResource: @"GormEVCoil"];
|
||
eVCoil = [[NSImage alloc] initWithContentsOfFile: path];
|
||
path = [bundle pathForImageResource: @"GormEHLine"];
|
||
eHLine = [[NSImage alloc] initWithContentsOfFile: path];
|
||
path = [bundle pathForImageResource: @"GormEVLine"];
|
||
eVLine = [[NSImage alloc] initWithContentsOfFile: path];
|
||
path = [bundle pathForImageResource: @"GormMHCoil"];
|
||
mHCoil = [[NSImage alloc] initWithContentsOfFile: path];
|
||
path = [bundle pathForImageResource: @"GormMVCoil"];
|
||
mVCoil = [[NSImage alloc] initWithContentsOfFile: path];
|
||
path = [bundle pathForImageResource: @"GormMHLine"];
|
||
mHLine = [[NSImage alloc] initWithContentsOfFile: path];
|
||
path = [bundle pathForImageResource: @"GormMVLine"];
|
||
mVLine = [[NSImage alloc] initWithContentsOfFile: path];
|
||
}
|
||
}
|
||
|
||
- (void) dealloc
|
||
{
|
||
RELEASE(window);
|
||
[super dealloc];
|
||
}
|
||
|
||
- (id) init
|
||
{
|
||
self = [super init];
|
||
if (self != nil)
|
||
{
|
||
NSView *contents;
|
||
NSButton *button;
|
||
NSBox *box;
|
||
NSRect rect;
|
||
|
||
rect = NSMakeRect(0, 0, IVW, IVH);
|
||
window = [[NSWindow alloc] initWithContentRect: rect
|
||
styleMask: NSBorderlessWindowMask
|
||
backing: NSBackingStoreRetained
|
||
defer: NO];
|
||
contents = [window contentView];
|
||
|
||
rect = NSMakeRect((IVW-200)/2, (IVW-200)/2, 200, 200);
|
||
box = [[NSBox alloc] initWithFrame: NSZeroRect];
|
||
[box setBorderType: NSBezelBorder];
|
||
[box setTitle: @"Autosizing"];
|
||
[box setTitlePosition: NSAtTop];
|
||
[box setFrameFromContentFrame: rect];
|
||
[contents addSubview: box];
|
||
RELEASE(box);
|
||
|
||
rect = NSMakeRect(50, 50, 100, 100);
|
||
button = [[NSButton alloc] initWithFrame: rect];
|
||
[button setTitle: @""];
|
||
[button setEnabled: NO];
|
||
[box addSubview: button];
|
||
|
||
rect = NSMakeRect(90,150,20,50);
|
||
top = [[NSButton alloc] initWithFrame: rect];
|
||
[top setImagePosition: NSImageOnly];
|
||
[top setImage: eVLine];
|
||
[top setAlternateImage: eVCoil];
|
||
[top setBordered: NO];
|
||
[top setButtonType: NSToggleButton];
|
||
[top setTag: NSViewMaxYMargin];
|
||
[top setTarget: self];
|
||
[top setAction: @selector(setAutosize:)];
|
||
[box addSubview: top];
|
||
RELEASE(top);
|
||
|
||
rect = NSMakeRect(90,0,20,50);
|
||
bottom = [[NSButton alloc] initWithFrame: rect];
|
||
[bottom setImagePosition: NSImageOnly];
|
||
[bottom setImage: eVLine];
|
||
[bottom setAlternateImage: eVCoil];
|
||
[bottom setBordered: NO];
|
||
[bottom setButtonType: NSToggleButton];
|
||
[bottom setTag: NSViewMinYMargin];
|
||
[bottom setTarget: self];
|
||
[bottom setAction: @selector(setAutosize:)];
|
||
[box addSubview: bottom];
|
||
RELEASE(bottom);
|
||
|
||
rect = NSMakeRect(0,90,50,20);
|
||
left = [[NSButton alloc] initWithFrame: rect];
|
||
[left setImagePosition: NSImageOnly];
|
||
[left setImage: eHLine];
|
||
[left setAlternateImage: eHCoil];
|
||
[left setBordered: NO];
|
||
[left setButtonType: NSToggleButton];
|
||
[left setTag: NSViewMinXMargin];
|
||
[left setTarget: self];
|
||
[left setAction: @selector(setAutosize:)];
|
||
[box addSubview: left];
|
||
RELEASE(left);
|
||
|
||
rect = NSMakeRect(150,90,50,20);
|
||
right = [[NSButton alloc] initWithFrame: rect];
|
||
[right setImagePosition: NSImageOnly];
|
||
[right setImage: eHLine];
|
||
[right setAlternateImage: eHCoil];
|
||
[right setBordered: NO];
|
||
[right setButtonType: NSToggleButton];
|
||
[right setTag: NSViewMaxXMargin];
|
||
[right setTarget: self];
|
||
[right setAction: @selector(setAutosize:)];
|
||
[box addSubview: right];
|
||
RELEASE(right);
|
||
|
||
rect = NSMakeRect(51,90,97,20);
|
||
width = [[NSButton alloc] initWithFrame: rect];
|
||
[width setImagePosition: NSImageOnly];
|
||
[width setImage: mHLine];
|
||
[width setAlternateImage: mHCoil];
|
||
[width setBordered: NO];
|
||
[width setButtonType: NSToggleButton];
|
||
[width setTag: NSViewWidthSizable];
|
||
[width setTarget: self];
|
||
[width setAction: @selector(setAutosize:)];
|
||
[box addSubview: width];
|
||
RELEASE(width);
|
||
|
||
rect = NSMakeRect(90,51,20,97);
|
||
height = [[NSButton alloc] initWithFrame: rect];
|
||
[height setImagePosition: NSImageOnly];
|
||
[height setImage: mVLine];
|
||
[height setAlternateImage: mVCoil];
|
||
[height setBordered: NO];
|
||
[height setButtonType: NSToggleButton];
|
||
[height setTag: NSViewHeightSizable];
|
||
[height setTarget: self];
|
||
[height setAction: @selector(setAutosize:)];
|
||
[box addSubview: height];
|
||
RELEASE(height);
|
||
}
|
||
return self;
|
||
}
|
||
|
||
- (void) setAutosize: (id)sender
|
||
{
|
||
unsigned mask = [sender tag];
|
||
|
||
if ([sender state] == NSOnState)
|
||
{
|
||
mask = [object autoresizingMask] | mask;
|
||
}
|
||
else
|
||
{
|
||
mask = [object autoresizingMask] & ~mask;
|
||
}
|
||
[object setAutoresizingMask: mask];
|
||
}
|
||
|
||
- (void) setObject: (id)anObject
|
||
{
|
||
if (anObject != nil && anObject != object)
|
||
{
|
||
unsigned mask = [anObject autoresizingMask];
|
||
|
||
ASSIGN(object, anObject);
|
||
if (mask & NSViewMaxYMargin)
|
||
[top setState: NSOnState];
|
||
else
|
||
[top setState: NSOffState];
|
||
|
||
if (mask & NSViewMinYMargin)
|
||
[bottom setState: NSOnState];
|
||
else
|
||
[bottom setState: NSOffState];
|
||
|
||
if (mask & NSViewMaxXMargin)
|
||
[right setState: NSOnState];
|
||
else
|
||
[right setState: NSOffState];
|
||
|
||
if (mask & NSViewMinXMargin)
|
||
[left setState: NSOnState];
|
||
else
|
||
[left setState: NSOffState];
|
||
|
||
if (mask & NSViewWidthSizable)
|
||
[width setState: NSOnState];
|
||
else
|
||
[width setState: NSOffState];
|
||
|
||
if (mask & NSViewHeightSizable)
|
||
[height setState: NSOnState];
|
||
else
|
||
[height setState: NSOffState];
|
||
}
|
||
}
|
||
|
||
@end
|
||
|