@interface NSClipView : NSView
|
// Accessor Methods |
- (void)setCopiesOnScroll:(BOOL)flag;
|
- (BOOL)copiesOnScroll;
|
- (void)setBackgroundColor:(NSColor *)color;
|
- (NSColor *)backgroundColor;
|
- (void)setDrawsBackground:(BOOL)flag;
|
- (BOOL)drawsBackground;
|
- (void)setDocumentCursor:(NSCursor *)anObj;
|
- (NSCursor *)documentCursor;
|
- (void)setDocumentView:(NSView *)aView;
|
- (id)documentView;
|
// Instance Methods |
- (BOOL)autoscroll:(NSEvent *)theEvent;
|
- (NSPoint)constrainScrollPoint:(NSPoint)newOrigin;
|
- (NSRect)documentRect;
|
- (NSRect)documentVisibleRect;
|
- (void)scrollToPoint:(NSPoint)newOrigin;
|
- (void)viewBoundsChanged:(NSNotification *)notification;
|
- (void)viewFrameChanged:(NSNotification *)notification;
|