home *** CD-ROM | disk | FTP | other *** search
- /*
- Background.h
- based on "Background"
- by Scott Hess and Andreas Windemut (1991)
- */
-
- #import <appkit/View.h>
- #import <dpsclient/dpsclient.h>
-
- @class NXImage, Window;
-
- @interface Background:View
- {
- NXImage *image;
- int drawMethod;
- BOOL has_alpha;
- id controller;
- }
-
- - free;
- - (Window *)initWinAttr;
- - setController: sender;
- - toBehind:sender;
- - toFront:sender;
- - (BOOL)isFront;
- - mouseDown:(NXEvent *)event;
- - (BOOL)acceptsFirstMouse;
- - setImage: (NXImage *)backimage hasAlpha:(BOOL)alpha with: (int)method;
- - drawSelf:(NXRect *)r :(int)count;
-
- @end
-