home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Headers / eointerface / NXImageFormatter.h < prev    next >
Encoding:
Text File  |  1994-05-14  |  777 b   |  39 lines

  1. /*
  2. **    NXImageFormatter.h
  3. **    Copyright (c) 1992, NeXT Computer, Inc.  All rights reserved. 
  4. */
  5.  
  6. #import "NXFormatter.h"
  7. #import "NXTableProtocols.h"
  8.  
  9. #import <appkit/appkit.h>
  10.  
  11.  
  12. // NXImageFormatter is functionally identical to the Database Kit's
  13. // DBImageFormatter. Please refer to the DatabaseKit documentation for use
  14. // of this class.
  15.  
  16.  
  17. @interface NXImageFormatter : NXFormatter
  18. {
  19.     id    defaultImage;
  20. }
  21.  
  22.  
  23. - init;
  24. - free;
  25.  
  26. - setDefaultImage:anImage;
  27. - defaultImage;
  28.  
  29. - drawFieldAt:(unsigned int) row :(unsigned int) column
  30.     inside:(NXRect *) frame inView:view
  31.     withAttributes:(id <NXTableVectors>) rowAttrs
  32.               :(id <NXTableVectors>) columnAttrs
  33.     usePositions:(BOOL) useRowPos :(BOOL) useColumnPos;
  34.  
  35. - write:(NXTypedStream *) stream;
  36. - read:(NXTypedStream *) stream;
  37.  
  38. @end
  39.