home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Misc / aa_m68k_Only / NDCamera.0.21 / Source / SimpleImageView.h < prev    next >
Encoding:
Text File  |  1995-07-03  |  687 b   |  29 lines

  1. //        Written by Thomas Engel Copyright (c) 1995 by Thomas Engel.
  2. //                Version 1.0.  All rights reserved.
  3. //
  4. //        This notice may not be removed from this source code.
  5. //
  6. //    This object is included in the MiscKit by permission from the author
  7. //    and its use is governed by the MiscKit license, found in the file
  8. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  9. //    for a list of all applicable permissions and restrictions.
  10. //    
  11.  
  12. #import <appkit/appkit.h>
  13.  
  14. @interface SimpleImageView:View 
  15. {
  16.     id    theImage;
  17. }
  18.  
  19. + initialize;
  20.  
  21. - setImage:anImage;
  22.  
  23. - drawSelf:(const NXRect *)rects :(int)rectCount;
  24.  
  25. - read:(NXTypedStream *)stream;
  26. - write:(NXTypedStream *)stream;
  27.  
  28. @end
  29.