Up
Authors
- Ovidiu Predescu (
ovidiu@net-community.com
)
-
- Richard Frith-Macdonald (
richard@brainstorm.co.uk
)
-
Copyright: (C) 1996 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSClipView.h
Availability: OpenStep
Description forthcoming.
Instance Variables
Method summary
- (BOOL)
acceptsFirstResponder;
Availability: OpenStep
Description forthcoming.
- (BOOL)
autoscroll: (
NSEvent*)theEvent;
Availability: OpenStep
Scrolls in response to mouse-dragged events.
- (
NSColor*)
backgroundColor;
Availability: OpenStep
- (NSPoint)
constrainScrollPoint: (NSPoint)proposedNewOrigin;
Availability: OpenStep
- (BOOL)
copiesOnScroll;
Availability: OpenStep
Description forthcoming.
- (
NSCursor*)
documentCursor;
Availability: OpenStep
- (NSRect)
documentRect;
Availability: OpenStep
- (id)
documentView;
Availability: OpenStep
- (NSRect)
documentVisibleRect;
Availability: OpenStep
- (BOOL)
drawsBackground;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (BOOL)
isFlipped;
Availability: OpenStep
Description forthcoming.
- (void)
rotateByAngle: (float)angle;
Availability: OpenStep
Description forthcoming.
- (void)
scaleUnitSquareToSize: (NSSize)newUnitSize;
Availability: OpenStep
Description forthcoming.
- (void)
scrollToPoint: (NSPoint)aPoint;
Availability: OpenStep
Description forthcoming.
- (void)
setBackgroundColor: (
NSColor*)aColor;
Availability: OpenStep
Sets the NSClipView's background color to aColor and marks self for display. Sets the opaque flag if needed (to YES
if the NSClipView does not draw its background, if the background color is nil
or if the background color alpha component is less than 1.0, NO
otherwise)
See Also: -backgroundColor
[NSView -isOpaque]
- (void)
setBoundsOrigin: (NSPoint)aPoint;
Availability: OpenStep
Description forthcoming.
- (void)
setBoundsRotation: (float)angle;
Availability: OpenStep
Description forthcoming.
- (void)
setBoundsSize: (NSSize)aSize;
Availability: OpenStep
Description forthcoming.
- (void)
setCopiesOnScroll: (BOOL)flag;
Availability: OpenStep
Description forthcoming.
- (void)
setDocumentCursor: (
NSCursor*)aCursor;
Availability: OpenStep
- (void)
setDocumentView: (
NSView*)aView;
Availability: OpenStep
Sets aView the NSClipView's document view to aView
See Also: -documentView
- (void)
setDrawsBackground: (BOOL)flag;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (void)
setFrameOrigin: (NSPoint)aPoint;
Availability: OpenStep
Description forthcoming.
- (void)
setFrameRotation: (float)angle;
Availability: OpenStep
Description forthcoming.
- (void)
setFrameSize: (NSSize)aSize;
Availability: OpenStep
Description forthcoming.
- (void)
translateOriginToPoint: (NSPoint)aPoint;
Availability: OpenStep
Description forthcoming.
- (void)
viewBoundsChanged: (NSNotification*)aNotification;
Availability: OpenStep
Description forthcoming.
- (void)
viewFrameChanged: (NSNotification*)aNotification;
Availability: OpenStep
Used when the document view frame notify its change. (with NSViewFrameDidChangeNotification)
Instance Variables for NSClipView Class
@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.
@protected BOOL _copiesOnScroll;
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.
@protected NSCursor* _cursor;
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.
@protected NSView* _documentView;
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.
@protected BOOL _drawsBackground;
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.
@protected BOOL _isOpaque;
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.
Up