home *** CD-ROM | disk | FTP | other *** search
- /*
- * RTF is Based on an object by Simson Garfinkel and Michael Mahoney
- * in "NeXTSTEP Programming" published by Telos ISBN 0-387-97884-4
- */
-
- #import <appkit/appkit.h>
- #import <streams/streams.h>
-
- @interface RTF:Object
- {
- NXStream *textStream;
- }
- - (NXStream *)stream;
- - appendRTF:(const char *)string;
- - append:(const char *)string;
- - bold:(BOOL)flag;
- - setJustify:(int)mode;
- - setFontSize: (int) size;
- - setLeftMargin: (int) marginInTwips;
- - tab;
- - free;
-
- - changeToHelvetica;
- - changeToTimes;
- - italic:(BOOL)flag;
-
- @end
-