Up
Authors
- Scott Christley(
scottc@net-community.com
)
-
- Felipe A. Rodriguez(
far@ix.netcom.com
)
-
- Ovidiu Predescu(
ovidiu@net-community.com
)
-
- Richard Frith-Macdonald(
richard@brainstorm.co.uk
)
-
The view class which encapsulates all drawing functionality
Copyright: (C) (C) 1996 Free Software Foundation, Inc.
NSView is an abstract class which provides facilities
for drawing in a window and receiving events. It is the
superclass of many of the visual elements of the
GUI.
In order to display itself, a view must be placed in a
window (represented by an NSWindow object). Within the
window is a hierarchy of NSViews, headed by the window's
content view. Every other view in a window is a
descendant of this view.
Subclasses can override drawRect:
in
order to implement their appearance. Other methods of
NSView and NSResponder can also be overridden to handle
user generated events.
- Declared in:
- AppKit/NSView.h
Standards:
Method summary
+ (NSMenu*) defaultMenu;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
+ (NSView*) focusView;
Standards: GNUstep, MacOS-X, OpenStep
Return the view at the top of graphics contexts
stack or nil
if none is focused.
- (BOOL) acceptsFirstMouse: (NSEvent*)theEvent;
Standards: GNUstep, MacOS-X, OpenStep
Returns YES
if the view object will
accept the first click received when in an inactive
window, and NO
otherwise.
- (void) addCursorRect: (NSRect)aRect cursor: (NSCursor*)anObject;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) addSubview: (NSView*)aView;
Standards: GNUstep, MacOS-X, OpenStep
Adds aView as a subview of the receiver.
- (void) addSubview: (NSView*)aView positioned: (NSWindowOrderingMode)place relativeTo: (NSView*)otherView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) addToPageSetup;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSToolTipTag) addToolTipRect: (NSRect)aRect owner: (id)anObject userData: (void*)data;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (NSTrackingRectTag) addTrackingRect: (NSRect)aRect owner: (id)anObject userData: (void*)data assumeInside: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) adjustPageHeightNew: (float*)newBottom top: (float)oldTop bottom: (float)oldBottom limit: (float)bottomLimit;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) adjustPageWidthNew: (float*)newRight left: (float)oldLeft right: (float)oldRight limit: (float)rightLimit;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSRect) adjustScroll: (NSRect)newVisible;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) allocateGState;
Standards: GNUstep, MacOS-X, OpenStep
Tell the view to maintain a private gstate object
which encapsulates all the information about
drawing, such as coordinate transforms, line
widths, etc. If you do not invoke this method, a
gstate object is constructed each time the view is
lockFocused. Allocating a private gstate may
improve the performance of views that are focused
a lot and have a lot of customized drawing parameters.
View subclasses should override the setUpGstate
method to set these custom parameters.
- (NSView*) ancestorSharedWithView: (NSView*)aView;
Standards: GNUstep, MacOS-X, OpenStep
Returns self
if aView is
the receiver or aView is a subview of the
receiver, the ancestor view shared by
aView and the receiver, if any,
aView if it is an ancestor of the
receiver, otherwise returns nil
.
- (BOOL) autoresizesSubviews;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (unsigned int) autoresizingMask;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) autoscroll: (NSEvent*)theEvent;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) beginDocument;
Standards: NotOpenStep, GNUstep, MacOS-X
Writes header and job information for the PostScript
document. This includes at a minimum, PostScript
header information. It may also include job setup
information if the output is intended for a
printer (i.e. not an EPS file). Most of the
information for writing the header comes from
the NSPrintOperation and NSPrintInfo objects associated
with the current print operation. There isn't normally
anything that the program needs to override at the
beginning of a document, although if there is
additional setup that needs to be done, you can
override the NSView's methods endHeaderComments,
endPrologue, beginSetup, and/or endSetup. This
method calls the above methods in the listed order
before or after writing the required information.
For an EPS operation, the beginSetup and endSetup
methods aren't used.
- (void) beginPage: (int)ordinalNum label: (NSString*)aString bBox: (NSRect)pageRect fonts: (NSString*)fontNames;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) beginPageInRect: (NSRect)aRect atPlacement: (NSPoint)location;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) beginPageSetupRect: (NSRect)aRect placement: (NSPoint)location;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) beginPrologueBBox: (NSRect)bBox creationDate: (NSString*)dateCreated createdBy: (NSString*)anApplication fonts: (NSString*)fontNames forWhom: (NSString*)user pages: (int)numPages title: (NSString*)aTitle;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) beginSetup;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) beginTrailer;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSRect) bounds;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (float) boundsRotation;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) canDraw;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSRect) centerScanRect: (NSRect)aRect;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSPoint) convertPoint: (NSPoint)aPoint fromView: (NSView*)aView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSPoint) convertPoint: (NSPoint)aPoint toView: (NSView*)aView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSRect) convertRect: (NSRect)aRect fromView: (NSView*)aView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSRect) convertRect: (NSRect)aRect toView: (NSView*)aView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSSize) convertSize: (NSSize)aSize fromView: (NSView*)aView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSSize) convertSize: (NSSize)aSize toView: (NSView*)aView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSData*) dataWithEPSInsideRect: (NSRect)aRect;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSData*) dataWithPDFInsideRect: (NSRect)aRect;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) didAddSubview: (NSView*)subview;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) discardCursorRects;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) display;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) displayIfNeeded;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) displayIfNeededIgnoringOpacity;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) displayIfNeededInRect: (NSRect)aRect;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) displayIfNeededInRectIgnoringOpacity: (NSRect)aRect;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) displayRect: (NSRect)rect;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) displayRectIgnoringOpacity: (NSRect)aRect;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) dragFile: (NSString*)filename fromRect: (NSRect)rect slideBack: (BOOL)slideFlag event: (NSEvent*)event;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) dragImage: (NSImage*)anImage at: (NSPoint)viewLocation offset: (NSSize)initialOffset event: (NSEvent*)event pasteboard: (NSPasteboard*)pboard source: (id)sourceObject slideBack: (BOOL)slideFlag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) drawPageBorderWithSize: (NSSize)borderSize;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) drawRect: (NSRect)rect;
Standards: GNUstep, MacOS-X, OpenStep
This method is invoked to handle drawing inside the
view. The default NSView's implementation does
nothing; subclasses might override it to draw
something inside the view. Since NSView's
implementation is guaranteed to be empty,
you should not call super's implementation when you
override it in subclasses. drawRect: is invoked
when the focus has already been locked on the view;
you can use arbitrary postscript functions in drawRect:
to draw inside your view; the coordinate system in which
you draw is the view's own coordinate system (this
means for example that you should refer to the
rectangle covered by the view using its bounds,
and not its frame). The argument of drawRect: is the
rectangle which needs to be redrawn. In a lossy
implementation, you can ignore the argument
and redraw the whole view; if you are aiming at
performance, you may want to redraw only what
is inside the rectangle which needs to be redrawn; this
usually improves drawing performance considerably.
- (void) drawSheetBorderWithSize: (NSSize)borderSize;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSScrollView*) enclosingScrollView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) endDocument;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) endHeaderComments;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) endPage;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) endPageSetup;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) endPrologue;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) endSetup;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) endTrailer;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) fax: (id)sender;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSRect) frame;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (float) frameRotation;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (int) gState;
Standards: GNUstep, MacOS-X, OpenStep
Returns an identifier that represents the view's
gstate object, which is used to encapsulate drawing
information about the view. Most of the time a
gstate object is created from scratch when the view
is focused, so if the view is not currently focused or
allocateGState has not been called, then
this method will
- (float) heightAdjustLimit;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSView*) hitTest: (NSPoint)aPoint;
Standards: GNUstep, MacOS-X, OpenStep
Returns the subview, lowest in the receiver's
hierarchy, which contains aPoint
- (id) initWithFrame: (NSRect)frameRect;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) isDescendantOf: (NSView*)aView;
Standards: GNUstep, MacOS-X, OpenStep
Returns YES
if aView is an
ancestor of the receiver.
- (BOOL) isFlipped;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) isOpaque;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) isRotatedFromBase;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) isRotatedOrScaledFromBase;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) knowsPageRange: (NSRange*)range;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (BOOL) knowsPagesFirst: (int*)firstPageNum last: (int*)lastPageNum;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSPoint) locationOfPrintRect: (NSRect)aRect;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) lockFocus;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) lockFocusIfCanDraw;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (NSMenu*) menuForEvent: (NSEvent*)theEvent;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (BOOL) mouse: (NSPoint)aPoint inRect: (NSRect)aRect;
Standards: GNUstep, MacOS-X, OpenStep
Returns whether or not aPoint lies
within aRect
- (BOOL) needsDisplay;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSView*) nextKeyView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSView*) nextValidKeyView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSView*) opaqueAncestor;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) performKeyEquivalent: (NSEvent*)theEvent;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) performMnemonic: (NSString*)aString;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (BOOL) postsBoundsChangedNotifications;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) postsFrameChangedNotifications;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSView*) previousKeyView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSView*) previousValidKeyView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) print: (id)sender;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSString*) printJobTitle;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (NSRect) rectForPage: (int)page;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) reflectScrolledClipView: (NSClipView*)aClipView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) registerForDraggedTypes: (NSArray*)types;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) releaseGState;
Standards: GNUstep, MacOS-X, OpenStep
Frees the gstate object, if there is one. Note that
the next time the view is lockFocused, the gstate will
be allocated again.
- (void) removeAllToolTips;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) removeCursorRect: (NSRect)aRect cursor: (NSCursor*)anObject;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) removeFromSuperview;
Standards: GNUstep, MacOS-X, OpenStep
Removes the receiver from its superviews list of
subviews, by invoking the superviews [
-removeSubview:
] method, and marks the rectangle that the reciever
occupied in the superview as needing redisplay.
This is dangerous to use during display, since it
alters the rectangles needing display.
- (void) removeFromSuperviewWithoutNeedingDisplay;
Standards: GNUstep, MacOS-X, OpenStep
Removes the receiver from its superviews list of
subviews, by invoking the superviews [
-removeSubview:
] method.
- (void) removeSubview: (NSView*)aSubview;
Standards: NotMacOS-X, NotOpenStep
Removes the view from the receivers list of
subviews and from the responder chain.
Also invokes [aView
-viewWillMoveToWindow:
nil
] to handle removal of aView (and
recursively, its children) from its window -
performing tidyup by invalidating cursor rects
etc.
- (void) removeToolTip: (NSToolTipTag)tag;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) removeTrackingRect: (NSTrackingRectTag)tag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) renewGState;
Standards: GNUstep, MacOS-X, OpenStep
Invalidates the view's gstate object so it will
be set up again using setUpGState the next time the view
is focused.
- (void) replaceSubview: (NSView*)oldView with: (NSView*)newView;
Standards: GNUstep, MacOS-X, OpenStep
Removes oldView from the receiver and
places newView in its place.
- (void) resetCursorRects;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) resizeSubviewsWithOldSize: (NSSize)oldSize;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) resizeWithOldSuperviewSize: (NSSize)oldSize;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) rotateByAngle: (float)angle;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) scaleUnitSquareToSize: (NSSize)newSize;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) scrollClipView: (NSClipView*)aClipView toPoint: (NSPoint)aPoint;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) scrollPoint: (NSPoint)aPoint;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) scrollRect: (NSRect)aRect by: (NSSize)delta;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) scrollRectToVisible: (NSRect)aRect;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setAutoresizesSubviews: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setAutoresizingMask: (unsigned int)mask;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setBounds: (NSRect)aRect;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setBoundsOrigin: (NSPoint)newOrigin;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setBoundsRotation: (float)angle;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setBoundsSize: (NSSize)newSize;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setFrame: (NSRect)frameRect;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setFrameOrigin: (NSPoint)newOrigin;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setFrameRotation: (float)angle;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setFrameSize: (NSSize)newSize;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setNeedsDisplay: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setNeedsDisplayInRect: (NSRect)rect;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setNextKeyView: (NSView*)aView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setPostsBoundsChangedNotifications: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setPostsFrameChangedNotifications: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setPreviousKeyView: (NSView*)aView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setToolTip: (NSString*)string;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) setUpGState;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) shouldDelayWindowOrderingForEvent: (NSEvent*)anEvent;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) shouldDrawColor;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) sortSubviewsUsingFunction: (int(*)(id,id,void*))compare context: (void*)context;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSArray*) subviews;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSView*) superview;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (int) tag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSString*) toolTip;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) translateOriginToPoint: (NSPoint)point;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) unlockFocus;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) unregisterDraggedTypes;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) viewDidMoveToSuperview;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) viewDidMoveToWindow;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) viewWillMoveToSuperview: (NSView*)newSuper;
Standards: GNUstep, MacOS-X, OpenStep
Notifies the receiver that its superview is being
changed to newSuperview.
- (void) viewWillMoveToWindow: (NSWindow*)newWindow;
Standards: GNUstep, MacOS-X, OpenStep
Notifies the receiver that it will now be a view
of newWindow. Note, this method is also used
when removing a view from a window (in which case,
newWindow is nil
) to let all
the subviews know that they have also been removed from
the window.
- (id) viewWithTag: (int)aTag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSRect) visibleRect;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (float) widthAdjustLimit;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) willRemoveSubview: (NSView*)subview;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (NSWindow*) window;
Standards: GNUstep, MacOS-X, OpenStep
Returns the window in which the receiver resides.
- (void) writeEPSInsideRect: (NSRect)rect toPasteboard: (NSPasteboard*)pasteboard;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) writePDFInsideRect: (NSRect)aRect toPasteboard: (NSPasteboard*)pboard;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- Declared in:
- AppKit/NSView.h
Standards:
- NotOpenStep
- NotMacOS-X
- GNUstep
Description forthcoming.
Method summary
- (void) _invalidateCoordinates;
Standards: NotOpenStep, NotMacOS-X, GNUstep
Description forthcoming.
- (NSAffineTransform*) _matrixFromWindow;
Standards: NotOpenStep, NotMacOS-X, GNUstep
Description forthcoming.
- (NSAffineTransform*) _matrixToWindow;
Standards: NotOpenStep, NotMacOS-X, GNUstep
Description forthcoming.
- (void) _rebuildCoordinates;
Standards: NotOpenStep, NotMacOS-X, GNUstep
Description forthcoming.
Up