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)
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.
- (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)
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.
Instance Variables for NSClipView Class
@protected NSColor* _backgroundColor;
Availability: OpenStep
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;
Availability: OpenStep
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;
Availability: OpenStep
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;
Availability: OpenStep
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;
Availability: OpenStep
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;
Availability: OpenStep
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