home *** CD-ROM | disk | FTP | other *** search
- #import "DarkGrayView.h"
-
- @implementation DarkGrayView
-
- - drawSelf:(NXRect *)rects :(int)count
- {
- /* Set our drawing color to NX_DKGRAY */
- PSsetgray(NX_DKGRAY);
-
- /* Fill in our bounds */
- NXRectFill(&bounds);
-
- return self;
- }
-
- @end
-