home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / UNIX / ARCHIE / CLIENTS / NEXTARCH.TAR / NeXTArchie / MorphView.h < prev    next >
Encoding:
Text File  |  1992-01-21  |  296 b   |  17 lines

  1. /* A view class that dissolves one image into another */
  2.  
  3. #import <appkit/View.h>
  4.  
  5. @interface MorphView : View
  6. {
  7.     id image0;    // The NXImages which dissolve into one another
  8.     id image1;
  9. }
  10.  
  11. - initFrame: (NXRect *) frame;
  12.  
  13. - morph : sender;
  14. - drawSelf:(const NXRect *) rects :(int) rectCount;
  15.  
  16. @end
  17.