home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / DrawingInAnAppIcon / FoneController.h < prev    next >
Text File  |  1992-10-27  |  2KB  |  53 lines

  1. //----------------------------------------------------------------------------------------------------
  2. //
  3. //    FoneController
  4. //
  5. //    Inherits From:        Object
  6. //
  7. //    Declared In:        FoneController.h
  8. //
  9. //    Class Description
  10. //
  11. //        FoneController manages the animation of Fone.app's icon.
  12. //        NOTE: FoneController is the application's delegate.
  13. //
  14. //    Disclaimer
  15. //
  16. //        You may freely copy, distribute and reuse this software and its
  17. //        associated documentation. I disclaim any warranty of any kind, 
  18. //        expressed or implied, as to its fitness for any particular use.
  19. //
  20. //----------------------------------------------------------------------------------------------------
  21. #import <appkit/appkit.h>
  22.  
  23.  
  24. @interface FoneController : Object
  25. {
  26.     id    appTile;
  27.     id    appIconContentView;
  28.     id    imageList;
  29.     
  30.     DPSTimedEntry    timedEntry;
  31. }
  32.  
  33. //----------------------------------------------------------------------------------------------------
  34. // Application Delegate Method
  35. //----------------------------------------------------------------------------------------------------
  36. - appDidInit: sender;
  37.  
  38.  
  39. //----------------------------------------------------------------------------------------------------
  40. // Action Methods
  41. //----------------------------------------------------------------------------------------------------
  42. - ring: sender;
  43. - answer: sender;
  44.  
  45.  
  46. //----------------------------------------------------------------------------------------------------
  47. // DPS Timed Entry Method
  48. //----------------------------------------------------------------------------------------------------
  49. - removeTimedEntry;
  50.  
  51.  
  52. @end
  53.