home *** CD-ROM | disk | FTP | other *** search
/ Altsys Virtuoso 2.0K / virtuoso_20k.iso / DemoApps / Graphics / Multimedia / Movie / Source / MovieApp.update / MovieView.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-01  |  359 b   |  18 lines

  1. #import <appkit/View.h>
  2.     int filetype;
  3.  
  4. @interface MovieView:View
  5. {
  6.     id *frames; /* pointer to array of Bitmap id's */
  7.     int width, height, currentFrame, numFrames;
  8.     char *path;
  9. }
  10.  
  11. + newPath:(const char *)thePath Width:(int)w Height:(int)h NumFrames:(int)nf;
  12. - showFrameNumber:(int)frameNumber;
  13. - (int)numFrames;
  14. - (int)currentFrame;
  15. - free;
  16.  
  17. @end
  18.