home *** CD-ROM | disk | FTP | other *** search
- #import <appkit/View.h>
-
- @interface PaintDocView : View
- {
- id paintDropBitmap;
- id docBitmap;
- int brushShape;
- float brushSize;
- float paintColor;
- }
-
- - clear;
- - setDocBrushShape:(int)newBrushShape;
- - setDocBrushSize:(float)newBrushSize;
- - setDocPaintColor:(float)newPaintColor;
- - updatePaintDropBitmap;
- - mouseDown:(NXEvent*)theEvent;
- - paintOneDrop:(NXPoint *)cursorLocation;
- - drawSelf:(NXRect *)r:(int)count;
-
-
-
- @end
-