Up

NSSplitView

Authors

Robert Vasvari (vrobi@ddrummer.com)
Felipe A. Rodriguez (far@ix.netcom.com)
Richard Frith-Macdonald (richard@brainstorm.co.uk)
Nicola Pero (n.pero@mi.flashnet.it)
Allows multiple views to share a region in a window

Copyright: (C) 1996, 1998, 1999, 2000, 2001, 2004 Free Software Foundation, Inc.


Contents -

  1. Software documentation for the NSSplitView class
  2. Software documentation for the NSObject(NSSplitViewDelegate) informal protocol
  3. Software documentation for the NSSplitView(GNUstepExtra) category

Software documentation for the NSSplitView class

NSSplitView : NSView

Declared in:
AppKit/NSSplitView.h
Availability: OpenStep

Description forthcoming.

Instance Variables

Method summary

adjustSubviews 

- (void) adjustSubviews;
Availability: OpenStep

Description forthcoming.

delegate 

- (id) delegate;
Availability: OpenStep

Description forthcoming.

dividerThickness 

- (float) dividerThickness;
Availability: OpenStep

Description forthcoming.

drawDividerInRect: 

- (void) drawDividerInRect: (NSRect)aRect;
Availability: OpenStep

Description forthcoming.

isPaneSplitter 

- (BOOL) isPaneSplitter;
Availability: MacOS-X 10.0.0

Description forthcoming.

isSubviewCollapsed: 

- (BOOL) isSubviewCollapsed: (NSView*)subview;
Availability: MacOS-X 10.0.0

Description forthcoming.

isVertical 

- (BOOL) isVertical;
Availability: OpenStep

Description forthcoming.

setDelegate: 

- (void) setDelegate: (id)anObject;
Availability: OpenStep

Description forthcoming.

setIsPaneSplitter: 

- (void) setIsPaneSplitter: (BOOL)flag;
Availability: MacOS-X 10.0.0

Description forthcoming.

setVertical: 

- (void) setVertical: (BOOL)flag;
Availability: OpenStep

Description forthcoming.



Instance Variables for NSSplitView Class

_backgroundColor

@protected NSColor* _backgroundColor;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_delegate

@protected id _delegate;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_dimpleImage

@protected NSImage* _dimpleImage;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_dividerColor

@protected NSColor* _dividerColor;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_dividerWidth

@protected float _dividerWidth;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_draggedBarWidth

@protected float _draggedBarWidth;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_isVertical

@protected BOOL _isVertical;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_never_displayed_before

@protected BOOL _never_displayed_before;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.




Software documentation for the NSObject(NSSplitViewDelegate) informal protocol

NSObject(NSSplitViewDelegate)

Declared in:
AppKit/NSSplitView.h
Availability: OpenStep

Description forthcoming.
Method summary

splitView: canCollapseSubview: 

- (BOOL) splitView: (NSSplitView*)sender canCollapseSubview: (NSView*)subview;
Availability: MacOS-X 10.0.0

Description forthcoming.

splitView: constrainMaxCoordinate: ofSubviewAt: 

- (float) splitView: (NSSplitView*)sender constrainMaxCoordinate: (float)proposedMax ofSubviewAt: (int)offset;
Availability: MacOS-X 10.0.0

Description forthcoming.

splitView: constrainMinCoordinate: maxCoordinate: ofSubviewAt: 

- (void) splitView: (NSSplitView*)sender constrainMinCoordinate: (float*)min maxCoordinate: (float*)max ofSubviewAt: (int)offset;
Availability: OpenStep

Description forthcoming.

splitView: constrainMinCoordinate: ofSubviewAt: 

- (float) splitView: (NSSplitView*)sender constrainMinCoordinate: (float)proposedMin ofSubviewAt: (int)offset;
Availability: MacOS-X 10.0.0

Description forthcoming.

splitView: constrainSplitPosition: ofSubviewAt: 

- (float) splitView: (NSSplitView*)sender constrainSplitPosition: (float)proposedPosition ofSubviewAt: (int)offset;
Availability: OpenStep

Description forthcoming.

splitView: resizeSubviewsWithOldSize: 

- (void) splitView: (NSSplitView*)sender resizeSubviewsWithOldSize: (NSSize)oldSize;
Availability: OpenStep

Description forthcoming.

splitViewDidResizeSubviews: 

- (void) splitViewDidResizeSubviews: (NSNotification*)notification;
Availability: OpenStep

Description forthcoming.

splitViewWillResizeSubviews: 

- (void) splitViewWillResizeSubviews: (NSNotification*)notification;
Availability: OpenStep

Description forthcoming.

Software documentation for the NSSplitView(GNUstepExtra) category

NSSplitView(GNUstepExtra)

Declared in:
AppKit/NSSplitView.h
Availability: Gui

Description forthcoming.
Method summary

backgroundColor 

- (NSColor*) backgroundColor;
Availability: Gui

Description forthcoming.

dimpleImage 

- (NSImage*) dimpleImage;
Availability: Gui

Description forthcoming.

dividerColor 

- (NSColor*) dividerColor;
Availability: Gui

Description forthcoming.

draggedBarWidth 

- (float) draggedBarWidth;
Availability: Gui

Description forthcoming.

setBackgroundColor: 

- (void) setBackgroundColor: (NSColor*)aColor;
Availability: Gui

Description forthcoming.

setDimpleImage: resetDividerThickness: 

- (void) setDimpleImage: (NSImage*)anImage resetDividerThickness: (BOOL)flag;
Availability: Gui

Description forthcoming.

setDividerColor: 

- (void) setDividerColor: (NSColor*)aColor;
Availability: Gui

Description forthcoming.

setDraggedBarWidth: 

- (void) setDraggedBarWidth: (float)newWidth;
Availability: Gui

Description forthcoming.


Up