home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / Palettes / Clocks / Inspectors.subproj / ImageWell.h < prev    next >
Text File  |  1992-12-09  |  940b  |  36 lines

  1. //------------------------------------------------------------------------------------------------
  2. //
  3. //    ImageWell
  4. //    
  5. //    Inherits From:    Control
  6. //
  7. //    Declared In:    ImageWell.h
  8. //
  9. //    Class Description
  10. //
  11. //        ImageWell supports dropping of any file from which an image
  12. //        can be created.
  13. //    
  14. //
  15. //    Disclaimer
  16. //
  17. //        You may freely copy, distribute and reuse this software and its
  18. //        associated documentation. I disclaim any warranty of any kind, 
  19. //        expressed or implied, as to its fitness for any particular use.
  20. //
  21. //------------------------------------------------------------------------------------------------
  22. #import <appkit/appkit.h>
  23.  
  24. @interface ImageWell : Control
  25. {
  26.     id    image;
  27. }
  28.  
  29. //------------------------------------------------------------------------------------------------
  30. //    Accessing Image
  31. //------------------------------------------------------------------------------------------------
  32. - image:anImage;
  33. - image;
  34.  
  35.  
  36. @end