home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Connectivity / GateKeeper-2.1 / Animator.h < prev    next >
Encoding:
Text File  |  1997-03-08  |  993 b   |  39 lines

  1. //************************************************************************
  2. //
  3. //    Animator.h.  
  4. //        
  5. //        Controls app Icon animation
  6. //
  7. //            by    Felipe A. Rodriguez        
  8. //
  9. //    This code is supplied "as is" the author makes no warranty as to its 
  10. //    suitability for any purpose.  This code is free and may be distributed 
  11. //    in accordance with the terms of the:
  12. //        
  13. //            GNU GENERAL PUBLIC LICENSE
  14. //            Version 2, June 1991
  15. //            copyright (C) 1989, 1991 Free Software Foundation, Inc.
  16. //             675 Mass Ave, Cambridge, MA 02139, USA
  17. //
  18. //************************************************************************
  19.  
  20. #import <appkit/appkit.h>
  21.  
  22. @interface Animator:Object
  23. {
  24.     id  imageList;            // list of ptr's to our active but not linked anim
  25.     id  theIconView;
  26.     BOOL openGate;                // animate should do open gate icon sequence
  27.     BOOL standbyGate;            // animate should do open standby icon seq
  28. }
  29.  
  30. - iconView;
  31. - startAnimTimer;
  32. - setOpenGate:(BOOL)doSeq;
  33. - setStandbyGate:(BOOL)doSeq;
  34. - removeTimedEntry;
  35.  
  36.  
  37.  
  38. @end
  39.