home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Connectivity / GateKeeper-2.1 / IconView.h < prev    next >
Encoding:
Text File  |  1996-07-03  |  923 b   |  43 lines

  1. //************************************************************************
  2. //
  3. //    IconView.h.  
  4. //
  5. //        Displays an image in the app Icon
  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.  
  21. #import <appkit/appkit.h>
  22.  
  23. @interface IconView:View
  24. {
  25.     id    appTile;
  26.     id    appIconContentView;
  27.     id    Image;
  28.     NXRect aRect;
  29.     id timeCell;
  30.     id timeFont;
  31.     id    oldImage;
  32.     id    mailIcon;
  33.     BOOL mailFlag;
  34. }
  35.  
  36. - (NXPoint) _centerPoint:anImage;
  37. - _display:anImage;
  38. - setImage:theImage; 
  39. - getTextCell; 
  40. - setMailFlag:(BOOL)flag; 
  41.  
  42. @end
  43.