home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Programming / GDBbundle-1.0-MIS / src / TextEdit / Info.bproj / InfoView.h < prev    next >
Encoding:
Text File  |  1997-04-01  |  592 b   |  31 lines

  1. /* Author Cristian Cserveny, 1994.
  2.    Converted to the OpenStep version by Ovidiu Predescu, 1997.
  3. */
  4.  
  5. #import <AppKit/NSView.h>
  6.  
  7. @class NSMutableArray;
  8.  
  9. @interface InfoView : NSView
  10. {
  11.   NSMutableArray* images;
  12.   NSImage* resultImage;
  13.   int currentImageIndex;
  14.   int tickNo;
  15.   float xTile, yTile;
  16.   NSPoint point;
  17.   int imagesToDisplay;
  18. }
  19.  
  20. - (void)showImageNumber:(int)index;
  21. - (void)showAllImages;
  22.  
  23. - (void)addImageNamed:(NSString*)name;
  24. - (void)addImage:(NSImage*)image;
  25.  
  26. - (void)drawRect:(NSRect)rect;
  27. - (void)animateOneImage:(NSTimer*)timer;
  28. - (void)animateAllImages:(NSTimer*)timer;
  29.  
  30. @end
  31.