home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / MiniExamples / Rotato / TestView.h < prev    next >
Text File  |  1991-05-10  |  472b  |  25 lines

  1. /*  
  2.  * 
  3.  * TestView.h    -- How to rotate an NXImage
  4.  * 
  5.  * You may freely copy, distribute, and reuse the code in this example.
  6.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  7.  * fitness for any particular use.
  8.  *
  9.  * Written by Henry Krempel -- NeXT Developer Support
  10.  *
  11.  */
  12. #import <appkit/View.h>
  13.  
  14. @interface TestView:View
  15. {
  16.     id image1, image2, image3;
  17. }
  18.  
  19. - setR1:sender;
  20. - flipImage:sender;
  21.  
  22. - drawSelf:(NXRect *)r :(int)rectCount;
  23.  
  24. @end
  25.