home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / Apps / DevTools / ManPagesFromHeaders / Source / RTF.h < prev    next >
Encoding:
Text File  |  1993-05-06  |  526 b   |  28 lines

  1. /* 
  2.  * RTF is Based on an object by Simson Garfinkel and Michael Mahoney
  3.  * in "NeXTSTEP Programming" published by Telos ISBN  0-387-97884-4
  4.  */
  5.  
  6. #import <appkit/appkit.h>
  7. #import <streams/streams.h>
  8.  
  9. @interface RTF:Object
  10. {
  11.     NXStream *textStream;
  12. }
  13. - (NXStream *)stream;
  14. - appendRTF:(const char *)string;
  15. - append:(const char *)string;
  16. - bold:(BOOL)flag;
  17. - setJustify:(int)mode;
  18. - setFontSize: (int) size;
  19. - setLeftMargin: (int) marginInTwips;
  20. - tab;
  21. - free;
  22.  
  23. - changeToHelvetica;
  24. - changeToTimes;
  25. - italic:(BOOL)flag;
  26.  
  27. @end
  28.