home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Headers / dbkit / DBTextFormatter.h < prev    next >
Text File  |  1992-04-23  |  641b  |  36 lines

  1. /*
  2. **      DBTextFormatter.h
  3. **      Database Kit, Release 3.0
  4. **      Copyright (c) 1992, NeXT Computer, Inc.  All rights reserved. 
  5. */
  6. #import <objc/Object.h>
  7. #import <appkit/graphics.h>        /* for NXCoord, NXSize */
  8. #import <dbkit/DBFormatter.h>
  9. #import <dbkit/tableProtocols.h>
  10.  
  11. @interface DBTextFormatter : DBFormatter
  12. {
  13. @private
  14.     unsigned int    _tfReserved[2];
  15.     id        _xyShow;
  16. @protected
  17.     id        font;
  18.     BOOL        batching;
  19. }
  20.  
  21.  
  22. - init;
  23. - free;
  24.  
  25. - font;
  26. - setFont:aFont;
  27.  
  28. - beginBatching:(id <DBTableVectors>) attrs;
  29. - resetBatching:(id <DBTableVectors>) attrs;
  30. - endBatching;
  31.  
  32. - write:(NXTypedStream *) stream;
  33. - read:(NXTypedStream *) stream;
  34.  
  35. @end
  36.