home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / MiniExamples / AppKit / Winfo / WView.h < prev    next >
Encoding:
Text File  |  1991-04-22  |  475 b   |  27 lines

  1. /*
  2.  * Winfo
  3.  * by Paul S. Kleppner
  4.  *
  5.  * This program may be freely distributed, but not sold.
  6.  * It is provided without warranty of any kind, expressed or
  7.  * implied, as to its fitness for any particular use.
  8.  */
  9.  
  10. /*
  11.  * WView.  This is the content view for the display window
  12.  * on which everything is drawn.
  13.  */
  14.  
  15. #import <appkit/View.h>
  16.  
  17. @interface WViewClient
  18. - mouseDownProxy:(NXEvent *)event;
  19. @end
  20.  
  21. @interface WView : View
  22. {
  23.   id myClient;
  24. }
  25. + newForClient:client;
  26. @end
  27.