home *** CD-ROM | disk | FTP | other *** search
- /*
- * Winfo
- * by Paul S. Kleppner
- *
- * This program may be freely distributed, but not sold.
- * It is provided without warranty of any kind, expressed or
- * implied, as to its fitness for any particular use.
- */
-
- /*
- * WView. This is the content view for the display window
- * on which everything is drawn.
- */
-
- #import <appkit/View.h>
-
- @interface WViewClient
- - mouseDownProxy:(NXEvent *)event;
- @end
-
- @interface WView : View
- {
- id myClient;
- }
- + newForClient:client;
- @end
-