New implemtation by Axel "Mikesch" Katerbau (axel@objectpark.org)

with small changes from me. RTF output now support much more
attributes and even Unicode characters.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@16614 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2003-05-02 18:59:38 +00:00
parent accbe13cb3
commit 9b1e4f84e1
2 changed files with 924 additions and 515 deletions

View file

@ -1,32 +1,38 @@
/*
RTFProducer.h
/*
RTFProducer.h
Writes out a NSAttributedString as RTF
Writes out a NSAttributedString as RTF
Copyright (C) 2000 Free Software Foundation, Inc.
Copyright (C) 2000 Free Software Foundation, Inc.
Author: Fred Kiefer <FredKiefer@gmx.de>
Date: June 2000
This file is part of the GNUstep GUI Library.
Author: Fred Kiefer <FredKiefer@gmx.de>
Date: June 2000
Modifications: Axel Katerbau <axel@objectpark.org>
Date: April 2003
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
This file is part of the GNUstep GUI Library.
You should have received a copy of the GNU Library General Public
License along with this library; see the file COPYING.LIB.
If not, write to the Free Software Foundation,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; see the file COPYING.LIB.
If not, write to the Free Software Foundation,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef _GNUstep_H_RTFDProducer
#define _GNUstep_H_RTFDProducer
#include <AppKit/GSTextConverter.h>
//#include "GSTextConverter.h"
@class NSAttributedString;
@class NSMutableDictionary;
@ -36,22 +42,32 @@
@interface RTFDProducer: NSObject <GSTextProducer>
{
@public
@public
NSAttributedString *text;
NSMutableDictionary *fontDict;
NSMutableDictionary *colorDict;
NSMutableDictionary *docDict;
NSMutableArray *attachments;
NSColor *fgColor;
NSColor *bgColor;
NSFont *currentFont;
/*
NSMutableParagraphStyle *paragraph;
*/
NSDictionary *_attributesOfLastRun; /*" holds the attributes of the last run
to build the delta "*/
BOOL _inlineGraphics; /*" Indicates if graphics should be inlined. "*/
}
+ (NSData *)produceDataFrom: (NSAttributedString *)aText
documentAttributes: (NSDictionary *)dict;
+ (NSFileWrapper *)produceFileFrom: (NSAttributedString *)aText
documentAttributes: (NSDictionary *)dict;
@end
@interface RTFProducer: RTFDProducer
// Subclass with no special interface
@end
#endif

File diff suppressed because it is too large Load diff