4 * Portions Copyright 2004 Mike McCormack for CodeWeavers
5 * Portions Copyright 2006 by Phil Krylov
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 * Derived from RTF Tools by Paul DuBois (dubois@primate.wisc.edu)
24 * Homepage: http://www.snake.net/software/RTF/
25 * Original license follows:
29 * reader.c - RTF file reader. Release 1.10.
33 * Author: Paul DuBois dubois@primate.wisc.edu
35 * This software may be redistributed without restriction and used for
36 * any purpose whatsoever.
48 #include "wine/debug.h"
53 WINE_DEFAULT_DEBUG_CHANNEL(richedit
);
55 extern HANDLE me_heap
;
57 static int _RTFGetChar(RTF_Info
*);
58 static void _RTFGetToken (RTF_Info
*);
59 static void _RTFGetToken2 (RTF_Info
*);
60 static int GetChar (RTF_Info
*);
61 static void ReadFontTbl (RTF_Info
*);
62 static void ReadColorTbl (RTF_Info
*);
63 static void ReadStyleSheet (RTF_Info
*);
64 static void ReadInfoGroup (RTF_Info
*);
65 static void ReadPictGroup (RTF_Info
*);
66 static void ReadObjGroup (RTF_Info
*);
67 static void Lookup (RTF_Info
*, char *);
68 static int Hash (const char *);
70 static void CharAttr(RTF_Info
*info
);
71 static void CharSet(RTF_Info
*info
);
72 static void DocAttr(RTF_Info
*info
);
74 static void RTFFlushCPOutputBuffer(RTF_Info
*info
);
75 static void RTFPutCodePageChar(RTF_Info
*info
, int c
);
77 /* ---------------------------------------------------------------------- */
81 * Saves a string on the heap and returns a pointer to it.
83 static inline char *RTFStrSave(const char *s
)
87 p
= heap_alloc (lstrlenA(s
) + 1);
90 return lstrcpyA (p
, s
);
94 /* ---------------------------------------------------------------------- */
97 int _RTFGetChar(RTF_Info
*info
)
100 ME_InStream
*stream
= info
->stream
;
102 if (stream
->dwSize
<= stream
->dwUsed
)
104 ME_StreamInFill(stream
);
105 /* if error, it's EOF */
106 if (stream
->editstream
->dwError
)
108 /* if no bytes read, it's EOF */
109 if (stream
->dwSize
== 0)
112 ch
= (unsigned char)stream
->buffer
[stream
->dwUsed
++];
118 void RTFSetEditStream(RTF_Info
*info
, ME_InStream
*stream
)
120 info
->stream
= stream
;
124 RTFDestroyAttrs(RTF_Info
*info
)
129 RTFStyleElt
*eltList
, *ep
;
131 while (info
->fontList
)
133 fp
= info
->fontList
->rtfNextFont
;
134 heap_free (info
->fontList
->rtfFName
);
135 heap_free (info
->fontList
);
138 while (info
->colorList
)
140 cp
= info
->colorList
->rtfNextColor
;
141 heap_free (info
->colorList
);
142 info
->colorList
= cp
;
144 while (info
->styleList
)
146 sp
= info
->styleList
->rtfNextStyle
;
147 eltList
= info
->styleList
->rtfSSEList
;
150 ep
= eltList
->rtfNextSE
;
151 heap_free (eltList
->rtfSEText
);
155 heap_free (info
->styleList
->rtfSName
);
156 heap_free (info
->styleList
);
157 info
->styleList
= sp
;
163 RTFDestroy(RTF_Info
*info
)
165 if (info
->rtfTextBuf
)
167 heap_free(info
->rtfTextBuf
);
168 heap_free(info
->pushedTextBuf
);
170 RTFDestroyAttrs(info
);
171 heap_free(info
->cpOutputBuffer
);
172 while (info
->tableDef
)
174 RTFTable
*tableDef
= info
->tableDef
;
175 info
->tableDef
= tableDef
->parent
;
182 * Initialize the reader. This may be called multiple times,
183 * to read multiple files. The only thing not reset is the input
184 * stream; that must be done with RTFSetStream().
187 void RTFInit(RTF_Info
*info
)
191 if (info
->rtfTextBuf
== NULL
) /* initialize the text buffers */
193 info
->rtfTextBuf
= heap_alloc (rtfBufSiz
);
194 info
->pushedTextBuf
= heap_alloc (rtfBufSiz
);
195 if (info
->rtfTextBuf
== NULL
|| info
->pushedTextBuf
== NULL
)
196 ERR ("Cannot allocate text buffers.\n");
197 info
->rtfTextBuf
[0] = info
->pushedTextBuf
[0] = '\0';
200 heap_free (info
->inputName
);
201 heap_free (info
->outputName
);
202 info
->inputName
= info
->outputName
= NULL
;
204 for (i
= 0; i
< rtfMaxClass
; i
++)
205 RTFSetClassCallback (info
, i
, NULL
);
206 for (i
= 0; i
< rtfMaxDestination
; i
++)
207 RTFSetDestinationCallback (info
, i
, NULL
);
209 /* install built-in destination readers */
210 RTFSetDestinationCallback (info
, rtfFontTbl
, ReadFontTbl
);
211 RTFSetDestinationCallback (info
, rtfColorTbl
, ReadColorTbl
);
212 RTFSetDestinationCallback (info
, rtfStyleSheet
, ReadStyleSheet
);
213 RTFSetDestinationCallback (info
, rtfInfo
, ReadInfoGroup
);
214 RTFSetDestinationCallback (info
, rtfPict
, ReadPictGroup
);
215 RTFSetDestinationCallback (info
, rtfObject
, ReadObjGroup
);
218 RTFSetReadHook (info
, NULL
);
220 /* dump old lists if necessary */
222 RTFDestroyAttrs(info
);
224 info
->ansiCodePage
= 1252; /* Latin-1; actually unused */
225 info
->unicodeLength
= 1; /* \uc1 is the default */
226 info
->codePage
= info
->ansiCodePage
;
230 info
->pushedClass
= -1;
231 info
->pushedChar
= EOF
;
233 info
->rtfLineNum
= 0;
234 info
->rtfLinePos
= 0;
235 info
->prevChar
= EOF
;
238 info
->dwCPOutputCount
= 0;
239 if (!info
->cpOutputBuffer
)
241 info
->dwMaxCPOutputCount
= 0x1000;
242 info
->cpOutputBuffer
= heap_alloc(info
->dwMaxCPOutputCount
);
245 info
->tableDef
= NULL
;
246 info
->nestingLevel
= 0;
247 info
->canInheritInTbl
= FALSE
;
248 info
->borderType
= 0;
252 * Set or get the input or output file name. These are never guaranteed
253 * to be accurate, only insofar as the calling program makes them so.
256 void RTFSetInputName(RTF_Info
*info
, const char *name
)
258 info
->inputName
= RTFStrSave (name
);
259 if (info
->inputName
== NULL
)
260 ERR ("RTFSetInputName: out of memory\n");
264 char *RTFGetInputName(const RTF_Info
*info
)
266 return (info
->inputName
);
270 void RTFSetOutputName(RTF_Info
*info
, const char *name
)
272 info
->outputName
= RTFStrSave (name
);
273 if (info
->outputName
== NULL
)
274 ERR ("RTFSetOutputName: out of memory\n");
278 char *RTFGetOutputName(const RTF_Info
*info
)
280 return (info
->outputName
);
285 /* ---------------------------------------------------------------------- */
288 * Callback table manipulation routines
293 * Install or return a writer callback for a token class
296 void RTFSetClassCallback(RTF_Info
*info
, int class, RTFFuncPtr callback
)
298 if (class >= 0 && class < rtfMaxClass
)
299 info
->ccb
[class] = callback
;
303 RTFFuncPtr
RTFGetClassCallback(const RTF_Info
*info
, int class)
305 if (class >= 0 && class < rtfMaxClass
)
306 return info
->ccb
[class];
312 * Install or return a writer callback for a destination type
315 void RTFSetDestinationCallback(RTF_Info
*info
, int dest
, RTFFuncPtr callback
)
317 if (dest
>= 0 && dest
< rtfMaxDestination
)
318 info
->dcb
[dest
] = callback
;
322 RTFFuncPtr
RTFGetDestinationCallback(const RTF_Info
*info
, int dest
)
324 if (dest
>= 0 && dest
< rtfMaxDestination
)
325 return info
->dcb
[dest
];
330 /* ---------------------------------------------------------------------- */
333 * Token reading routines
338 * Read the input stream, invoking the writer's callbacks
342 void RTFRead(RTF_Info
*info
)
344 while (RTFGetToken (info
) != rtfEOF
)
345 RTFRouteToken (info
);
350 * Route a token. If it's a destination for which a reader is
351 * installed, process the destination internally, otherwise
352 * pass the token to the writer's class callback.
355 void RTFRouteToken(RTF_Info
*info
)
359 if (info
->rtfClass
< 0 || info
->rtfClass
>= rtfMaxClass
) /* watchdog */
361 ERR( "Unknown class %d: %s (reader malfunction)\n",
362 info
->rtfClass
, info
->rtfTextBuf
);
364 if (RTFCheckCM (info
, rtfControl
, rtfDestination
))
366 /* invoke destination-specific callback if there is one */
367 p
= RTFGetDestinationCallback (info
, info
->rtfMinor
);
374 /* invoke class callback if there is one */
375 p
= RTFGetClassCallback (info
, info
->rtfClass
);
382 * Skip to the end of the current group. When this returns,
383 * writers that maintain a state stack may want to call their
384 * state unstacker; global vars will still be set to the group's
388 void RTFSkipGroup(RTF_Info
*info
)
392 while (RTFGetToken (info
) != rtfEOF
)
394 if (info
->rtfClass
== rtfGroup
)
396 if (info
->rtfMajor
== rtfBeginGroup
)
398 else if (info
->rtfMajor
== rtfEndGroup
)
401 break; /* end of initial group */
408 * Do no special processing on the group.
410 * This acts as a placeholder for a callback in order to indicate that it
411 * shouldn't be ignored. Instead it will fallback on the loop in RTFRead.
413 void RTFReadGroup (RTF_Info
*info
)
419 * Read one token. Call the read hook if there is one. The
420 * token class is the return value. Returns rtfEOF when there
421 * are no more tokens.
424 int RTFGetToken(RTF_Info
*info
)
428 /* don't try to return anything once EOF is reached */
429 if (info
->rtfClass
== rtfEOF
) {
436 p
= RTFGetReadHook (info
);
438 (*p
) (info
); /* give read hook a look at token */
440 /* Silently discard newlines, carriage returns, nulls. */
441 if (!(info
->rtfClass
== rtfText
&& info
->rtfFormat
!= SF_TEXT
442 && (info
->rtfMajor
== '\r' || info
->rtfMajor
== '\n' || info
->rtfMajor
== '\0')))
445 return (info
->rtfClass
);
450 * Install or return a token reader hook.
453 void RTFSetReadHook(RTF_Info
*info
, RTFFuncPtr f
)
459 RTFFuncPtr
RTFGetReadHook(const RTF_Info
*info
)
461 return (info
->readHook
);
465 void RTFUngetToken(RTF_Info
*info
)
467 if (info
->pushedClass
>= 0) /* there's already an ungotten token */
468 ERR ("cannot unget two tokens\n");
469 if (info
->rtfClass
< 0)
470 ERR ("no token to unget\n");
471 info
->pushedClass
= info
->rtfClass
;
472 info
->pushedMajor
= info
->rtfMajor
;
473 info
->pushedMinor
= info
->rtfMinor
;
474 info
->pushedParam
= info
->rtfParam
;
475 lstrcpyA (info
->pushedTextBuf
, info
->rtfTextBuf
);
479 int RTFPeekToken(RTF_Info
*info
)
482 RTFUngetToken (info
);
483 return (info
->rtfClass
);
487 static void _RTFGetToken(RTF_Info
*info
)
489 if (info
->rtfFormat
== SF_TEXT
)
491 info
->rtfMajor
= GetChar (info
);
493 info
->rtfParam
= rtfNoParam
;
494 info
->rtfTextBuf
[info
->rtfTextLen
= 0] = '\0';
495 if (info
->rtfMajor
== EOF
)
496 info
->rtfClass
= rtfEOF
;
498 info
->rtfClass
= rtfText
;
502 /* first check for pushed token from RTFUngetToken() */
504 if (info
->pushedClass
>= 0)
506 info
->rtfClass
= info
->pushedClass
;
507 info
->rtfMajor
= info
->pushedMajor
;
508 info
->rtfMinor
= info
->pushedMinor
;
509 info
->rtfParam
= info
->pushedParam
;
510 lstrcpyA (info
->rtfTextBuf
, info
->pushedTextBuf
);
511 info
->rtfTextLen
= lstrlenA(info
->rtfTextBuf
);
512 info
->pushedClass
= -1;
517 * Beyond this point, no token is ever seen twice, which is
518 * important, e.g., for making sure no "}" pops the font stack twice.
521 _RTFGetToken2 (info
);
526 RTFCharSetToCodePage(RTF_Info
*info
, int charset
)
532 case DEFAULT_CHARSET
:
538 case SHIFTJIS_CHARSET
:
540 case HANGEUL_CHARSET
:
546 case CHINESEBIG5_CHARSET
:
550 case TURKISH_CHARSET
:
552 case VIETNAMESE_CHARSET
:
560 case RUSSIAN_CHARSET
:
564 case EASTEUROPE_CHARSET
:
573 /* FIXME: TranslateCharsetInfo does not work as good as it
574 * should, so let's use it only when all else fails */
575 if (!TranslateCharsetInfo(&n
, &csi
, TCI_SRCCHARSET
))
576 ERR("unknown charset %d\n", charset
);
585 /* this shouldn't be called anywhere but from _RTFGetToken() */
587 static void _RTFGetToken2(RTF_Info
*info
)
592 /* initialize token vars */
594 info
->rtfClass
= rtfUnknown
;
595 info
->rtfParam
= rtfNoParam
;
596 info
->rtfTextBuf
[info
->rtfTextLen
= 0] = '\0';
598 /* get first character, which may be a pushback from previous token */
600 if (info
->pushedChar
!= EOF
)
602 c
= info
->pushedChar
;
603 info
->rtfTextBuf
[info
->rtfTextLen
++] = c
;
604 info
->rtfTextBuf
[info
->rtfTextLen
] = '\0';
605 info
->pushedChar
= EOF
;
607 else if ((c
= GetChar (info
)) == EOF
)
609 info
->rtfClass
= rtfEOF
;
615 info
->rtfClass
= rtfGroup
;
616 info
->rtfMajor
= rtfBeginGroup
;
621 info
->rtfClass
= rtfGroup
;
622 info
->rtfMajor
= rtfEndGroup
;
628 * Two possibilities here:
629 * 1) ASCII 9, effectively like \tab control symbol
630 * 2) literal text char
632 if (c
== '\t') /* ASCII 9 */
634 info
->rtfClass
= rtfControl
;
635 info
->rtfMajor
= rtfSpecialChar
;
636 info
->rtfMinor
= rtfTab
;
640 info
->rtfClass
= rtfText
;
645 if ((c
= GetChar (info
)) == EOF
)
647 /* early eof, whoops (class is rtfUnknown) */
653 * Three possibilities here:
654 * 1) hex encoded text char, e.g., \'d5, \'d3
655 * 2) special escaped text char, e.g., \{, \}
656 * 3) control symbol, e.g., \_, \-, \|, \<10>
658 if (c
== '\'') /* hex char */
662 if ((c
= GetChar (info
)) != EOF
&& (c2
= GetChar (info
)) != EOF
663 && isxdigit(c
) && isxdigit(c2
))
665 info
->rtfClass
= rtfText
;
666 info
->rtfMajor
= RTFCharToHex (c
) * 16 + RTFCharToHex (c2
);
669 /* early eof, whoops */
670 info
->rtfClass
= rtfEOF
;
671 info
->stream
->editstream
->dwError
= -14;
676 /*if (index (":{}\\", c) != (char *) NULL)*/ /* escaped char */
677 if (c
== ':' || c
== '{' || c
== '}' || c
== '\\')
679 info
->rtfClass
= rtfText
;
685 Lookup (info
, info
->rtfTextBuf
); /* sets class, major, minor */
691 if ((c
= GetChar (info
)) == EOF
)
696 * At this point, the control word is all collected, so the
697 * major/minor numbers are determined before the parameter
698 * (if any) is scanned. There will be one too many characters
699 * in the buffer, though, so fix up before and restore after
704 info
->rtfTextBuf
[info
->rtfTextLen
-1] = '\0';
705 Lookup (info
, info
->rtfTextBuf
); /* sets class, major, minor */
707 info
->rtfTextBuf
[info
->rtfTextLen
-1] = c
;
710 * Should be looking at first digit of parameter if there
711 * is one, unless it's negative. In that case, next char
712 * is '-', so need to gobble next char, and remember sign.
721 if (c
!= EOF
&& isdigit (c
))
724 while (isdigit (c
)) /* gobble parameter */
726 info
->rtfParam
= info
->rtfParam
* 10 + c
- '0';
727 if ((c
= GetChar (info
)) == EOF
)
730 info
->rtfParam
*= sign
;
733 * If control symbol delimiter was a blank, gobble it.
734 * Otherwise the character is first char of next token, so
735 * push it back for next call. In either case, delete the
736 * delimiter from the token buffer.
741 info
->pushedChar
= c
;
742 info
->rtfTextBuf
[--info
->rtfTextLen
] = '\0';
748 * Read the next character from the input. This handles setting the
749 * current line and position-within-line variables. Those variable are
750 * set correctly whether lines end with CR, LF, or CRLF (the last being
753 * bumpLine indicates whether the line number should be incremented on
754 * the *next* input character.
758 static int GetChar(RTF_Info
*info
)
763 if ((c
= _RTFGetChar(info
)) != EOF
)
765 info
->rtfTextBuf
[info
->rtfTextLen
++] = c
;
766 info
->rtfTextBuf
[info
->rtfTextLen
] = '\0';
768 if (info
->prevChar
== EOF
)
770 oldBumpLine
= info
->bumpLine
; /* non-zero if prev char was line ending */
777 if (info
->prevChar
== '\r') /* oops, previous \r wasn't */
778 oldBumpLine
= 0; /* really a line ending */
781 if (oldBumpLine
) /* were we supposed to increment the */
782 { /* line count on this char? */
784 info
->rtfLinePos
= 1;
792 * Synthesize a token by setting the global variables to the
793 * values supplied. Typically this is followed with a call
794 * to RTFRouteToken().
796 * If a param value other than rtfNoParam is passed, it becomes
797 * part of the token text.
800 void RTFSetToken(RTF_Info
*info
, int class, int major
, int minor
, int param
, const char *text
)
802 info
->rtfClass
= class;
803 info
->rtfMajor
= major
;
804 info
->rtfMinor
= minor
;
805 info
->rtfParam
= param
;
806 if (param
== rtfNoParam
)
807 lstrcpyA(info
->rtfTextBuf
, text
);
809 sprintf (info
->rtfTextBuf
, "%s%d", text
, param
);
810 info
->rtfTextLen
= lstrlenA (info
->rtfTextBuf
);
814 /* ---------------------------------------------------------------------- */
817 * Special destination readers. They gobble the destination so the
818 * writer doesn't have to deal with them. That's wrong for any
819 * translator that wants to process any of these itself. In that
820 * case, these readers should be overridden by installing a different
821 * destination callback.
823 * NOTE: The last token read by each of these reader will be the
824 * destination's terminating '}', which will then be the current token.
825 * That '}' token is passed to RTFRouteToken() - the writer has already
826 * seen the '{' that began the destination group, and may have pushed a
827 * state; it also needs to know at the end of the group that a state
830 * It's important that rtf.h and the control token lookup table list
831 * as many symbols as possible, because these destination readers
832 * unfortunately make strict assumptions about the input they expect,
833 * and a token of class rtfUnknown will throw them off easily.
838 * Read { \fonttbl ... } destination. Old font tables don't have
839 * braces around each table entry; try to adjust for that.
842 static void ReadFontTbl(RTF_Info
*info
)
845 char buf
[rtfBufSiz
], *bp
;
847 const char *fn
= "ReadFontTbl";
852 if (info
->rtfClass
== rtfEOF
)
854 if (RTFCheckCM (info
, rtfGroup
, rtfEndGroup
))
856 if (old
< 0) /* first entry - determine tbl type */
858 if (RTFCheckCMM (info
, rtfControl
, rtfCharAttr
, rtfFontNum
))
859 old
= 1; /* no brace */
860 else if (RTFCheckCM (info
, rtfGroup
, rtfBeginGroup
))
862 else /* can't tell! */
863 ERR ( "%s: Cannot determine format\n", fn
);
865 if (old
== 0) /* need to find "{" here */
867 if (!RTFCheckCM (info
, rtfGroup
, rtfBeginGroup
))
868 ERR ( "%s: missing \"{\"\n", fn
);
869 RTFGetToken (info
); /* yes, skip to next token */
870 if (info
->rtfClass
== rtfEOF
)
875 ERR ( "%s: cannot allocate font entry\n", fn
);
877 fp
->rtfNextFont
= info
->fontList
;
881 fp
->rtfFAltName
= NULL
;
883 fp
->rtfFFamily
= FF_DONTCARE
;
884 fp
->rtfFCharSet
= DEFAULT_CHARSET
; /* 1 */
885 fp
->rtfFPitch
= DEFAULT_PITCH
;
887 fp
->rtfFCodePage
= CP_ACP
;
889 while (info
->rtfClass
!= rtfEOF
890 && !RTFCheckCM (info
, rtfText
, ';')
891 && !RTFCheckCM (info
, rtfGroup
, rtfEndGroup
))
893 if (info
->rtfClass
== rtfControl
)
895 switch (info
->rtfMajor
)
898 /* ignore token but announce it */
899 WARN ("%s: unknown token \"%s\"\n",
900 fn
, info
->rtfTextBuf
);
903 fp
->rtfFFamily
= info
->rtfMinor
;
906 switch (info
->rtfMinor
)
909 break; /* ignore unknown? */
911 fp
->rtfFNum
= info
->rtfParam
;
916 switch (info
->rtfMinor
)
919 break; /* ignore unknown? */
921 fp
->rtfFCharSet
= info
->rtfParam
;
922 if (!fp
->rtfFCodePage
)
923 fp
->rtfFCodePage
= RTFCharSetToCodePage(info
, info
->rtfParam
);
926 fp
->rtfFPitch
= info
->rtfParam
;
928 case rtfFontCodePage
:
929 fp
->rtfFCodePage
= info
->rtfParam
;
932 case rtfFTypeTrueType
:
933 fp
->rtfFType
= info
->rtfParam
;
939 else if (RTFCheckCM (info
, rtfGroup
, rtfBeginGroup
)) /* dest */
941 RTFSkipGroup (info
); /* ignore for now */
943 else if (info
->rtfClass
== rtfText
) /* font name */
946 while (info
->rtfClass
== rtfText
947 && !RTFCheckCM (info
, rtfText
, ';'))
949 *bp
++ = info
->rtfMajor
;
953 /* FIX: in some cases the <fontinfo> isn't finished with a semi-column */
954 if(RTFCheckCM (info
, rtfGroup
, rtfEndGroup
))
956 RTFUngetToken (info
);
959 fp
->rtfFName
= RTFStrSave (buf
);
960 if (fp
->rtfFName
== NULL
)
961 ERR ( "%s: cannot allocate font name\n", fn
);
962 /* already have next token; don't read one */
963 /* at bottom of loop */
968 /* ignore token but announce it */
969 WARN ( "%s: unknown token \"%s\"\n",
970 fn
,info
->rtfTextBuf
);
973 if (info
->rtfClass
== rtfEOF
)
976 if (info
->rtfClass
== rtfEOF
)
978 if (old
== 0) /* need to see "}" here */
981 if (!RTFCheckCM (info
, rtfGroup
, rtfEndGroup
))
982 ERR ( "%s: missing \"}\"\n", fn
);
983 if (info
->rtfClass
== rtfEOF
)
987 /* Apply the real properties of the default font */
988 if (fp
->rtfFNum
== info
->defFont
)
990 if (info
->ansiCodePage
!= CP_UTF8
)
991 info
->codePage
= fp
->rtfFCodePage
;
992 TRACE("default font codepage %d\n", info
->codePage
);
995 if (fp
->rtfFNum
== -1)
996 ERR( "%s: missing font number\n", fn
);
998 * Could check other pieces of structure here, too, I suppose.
1000 RTFRouteToken (info
); /* feed "}" back to router */
1002 /* Set default font */
1003 info
->rtfClass
= rtfControl
;
1004 info
->rtfMajor
= rtfCharAttr
;
1005 info
->rtfMinor
= rtfFontNum
;
1006 info
->rtfParam
= info
->defFont
;
1007 lstrcpyA(info
->rtfTextBuf
, "f");
1008 RTFUngetToken(info
);
1013 * The color table entries have color values of -1 if
1014 * the default color should be used for the entry (only
1015 * a semi-colon is given in the definition, no color values).
1016 * There will be a problem if a partial entry (1 or 2 but
1017 * not 3 color values) is given. The possibility is ignored
1021 static void ReadColorTbl(RTF_Info
*info
)
1025 const char *fn
= "ReadColorTbl";
1026 int group_level
= 1;
1031 if (info
->rtfClass
== rtfEOF
)
1033 if (RTFCheckCM (info
, rtfGroup
, rtfEndGroup
))
1040 else if (RTFCheckCM(info
, rtfGroup
, rtfBeginGroup
))
1046 cp
= New (RTFColor
);
1048 ERR ( "%s: cannot allocate color entry\n", fn
);
1049 cp
->rtfCNum
= cnum
++;
1050 cp
->rtfCRed
= cp
->rtfCGreen
= cp
->rtfCBlue
= -1;
1051 cp
->rtfNextColor
= info
->colorList
;
1052 info
->colorList
= cp
;
1053 while (RTFCheckCM (info
, rtfControl
, rtfColorName
))
1055 switch (info
->rtfMinor
)
1057 case rtfRed
: cp
->rtfCRed
= info
->rtfParam
; break;
1058 case rtfGreen
: cp
->rtfCGreen
= info
->rtfParam
; break;
1059 case rtfBlue
: cp
->rtfCBlue
= info
->rtfParam
; break;
1063 if (info
->rtfClass
== rtfEOF
)
1065 if (!RTFCheckCM (info
, rtfText
, ';'))
1066 ERR ("%s: malformed entry\n", fn
);
1068 RTFRouteToken (info
); /* feed "}" back to router */
1073 * The "Normal" style definition doesn't contain any style number,
1074 * all others do. Normal style is given style rtfNormalStyleNum.
1077 static void ReadStyleSheet(RTF_Info
*info
)
1080 RTFStyleElt
*sep
, *sepLast
;
1081 char buf
[rtfBufSiz
], *bp
;
1082 const char *fn
= "ReadStyleSheet";
1088 if (info
->rtfClass
== rtfEOF
)
1090 if (RTFCheckCM (info
, rtfGroup
, rtfEndGroup
))
1092 sp
= New (RTFStyle
);
1094 ERR ( "%s: cannot allocate stylesheet entry\n", fn
);
1095 sp
->rtfSName
= NULL
;
1097 sp
->rtfSType
= rtfParStyle
;
1098 sp
->rtfSAdditive
= 0;
1099 sp
->rtfSBasedOn
= rtfNoStyleNum
;
1100 sp
->rtfSNextPar
= -1;
1101 sp
->rtfSSEList
= sepLast
= NULL
;
1102 sp
->rtfNextStyle
= info
->styleList
;
1103 sp
->rtfExpanding
= 0;
1104 info
->styleList
= sp
;
1105 if (!RTFCheckCM (info
, rtfGroup
, rtfBeginGroup
))
1106 ERR ( "%s: missing \"{\"\n", fn
);
1111 if (info
->rtfClass
== rtfEOF
1112 || RTFCheckCM (info
, rtfText
, ';'))
1114 if (info
->rtfClass
== rtfControl
)
1116 if (RTFCheckMM (info
, rtfSpecialChar
, rtfOptDest
)) {
1118 ERR( "%s: skipping optional destination\n", fn
);
1120 info
->rtfClass
= rtfGroup
;
1121 info
->rtfMajor
= rtfEndGroup
;
1123 break; /* ignore "\*" */
1125 if (RTFCheckMM (info
, rtfParAttr
, rtfStyleNum
))
1127 sp
->rtfSNum
= info
->rtfParam
;
1128 sp
->rtfSType
= rtfParStyle
;
1131 if (RTFCheckMM (info
, rtfCharAttr
, rtfCharStyleNum
))
1133 sp
->rtfSNum
= info
->rtfParam
;
1134 sp
->rtfSType
= rtfCharStyle
;
1137 if (RTFCheckMM (info
, rtfSectAttr
, rtfSectStyleNum
))
1139 sp
->rtfSNum
= info
->rtfParam
;
1140 sp
->rtfSType
= rtfSectStyle
;
1143 if (RTFCheckMM (info
, rtfStyleAttr
, rtfBasedOn
))
1145 sp
->rtfSBasedOn
= info
->rtfParam
;
1148 if (RTFCheckMM (info
, rtfStyleAttr
, rtfAdditive
))
1150 sp
->rtfSAdditive
= 1;
1153 if (RTFCheckMM (info
, rtfStyleAttr
, rtfNext
))
1155 sp
->rtfSNextPar
= info
->rtfParam
;
1158 sep
= New (RTFStyleElt
);
1160 ERR ( "%s: cannot allocate style element\n", fn
);
1161 sep
->rtfSEClass
= info
->rtfClass
;
1162 sep
->rtfSEMajor
= info
->rtfMajor
;
1163 sep
->rtfSEMinor
= info
->rtfMinor
;
1164 sep
->rtfSEParam
= info
->rtfParam
;
1165 sep
->rtfSEText
= RTFStrSave (info
->rtfTextBuf
);
1166 if (sep
->rtfSEText
== NULL
)
1167 ERR ( "%s: cannot allocate style element text\n", fn
);
1168 if (sepLast
== NULL
)
1169 sp
->rtfSSEList
= sep
; /* first element */
1170 else /* add to end */
1171 sepLast
->rtfNextSE
= sep
;
1172 sep
->rtfNextSE
= NULL
;
1175 else if (RTFCheckCM (info
, rtfGroup
, rtfBeginGroup
))
1178 * This passes over "{\*\keycode ... }, among
1179 * other things. A temporary (perhaps) hack.
1181 ERR( "%s: skipping begin\n", fn
);
1182 RTFSkipGroup (info
);
1185 else if (info
->rtfClass
== rtfText
) /* style name */
1188 while (info
->rtfClass
== rtfText
)
1190 if (info
->rtfMajor
== ';')
1192 /* put back for "for" loop */
1193 RTFUngetToken (info
);
1196 *bp
++ = info
->rtfMajor
;
1200 sp
->rtfSName
= RTFStrSave (buf
);
1201 if (sp
->rtfSName
== NULL
)
1202 ERR ( "%s: cannot allocate style name\n", fn
);
1204 else /* unrecognized */
1206 /* ignore token but announce it */
1207 WARN ( "%s: unknown token \"%s\"\n",
1208 fn
, info
->rtfTextBuf
);
1213 if (!RTFCheckCM (info
, rtfGroup
, rtfEndGroup
))
1214 ERR ( "%s: missing \"}\"\n", fn
);
1216 * Check over the style structure. A name is a must.
1217 * If no style number was specified, check whether it's the
1218 * Normal style (in which case it's given style number
1219 * rtfNormalStyleNum). Note that some "normal" style names
1220 * just begin with "Normal" and can have other stuff following,
1221 * e.g., "Normal,Times 10 point". Ugh.
1223 * Some German RTF writers use "Standard" instead of "Normal".
1225 if (sp
->rtfSName
== NULL
)
1226 ERR ( "%s: missing style name\n", fn
);
1227 if (sp
->rtfSNum
< 0)
1229 if (strncmp (buf
, "Normal", 6) != 0
1230 && strncmp (buf
, "Standard", 8) != 0)
1231 ERR ( "%s: missing style number\n", fn
);
1232 sp
->rtfSNum
= rtfNormalStyleNum
;
1234 if (sp
->rtfSNextPar
== -1) /* if \snext not given, */
1235 sp
->rtfSNextPar
= sp
->rtfSNum
; /* next is itself */
1237 /* otherwise we're just dealing with fake end group from skipped group */
1239 RTFRouteToken (info
); /* feed "}" back to router */
1243 static void ReadInfoGroup(RTF_Info
*info
)
1245 RTFSkipGroup (info
);
1246 RTFRouteToken (info
); /* feed "}" back to router */
1250 static void ReadPictGroup(RTF_Info
*info
)
1252 RTFSkipGroup (info
);
1253 RTFRouteToken (info
); /* feed "}" back to router */
1257 static void ReadObjGroup(RTF_Info
*info
)
1259 RTFSkipGroup (info
);
1260 RTFRouteToken (info
); /* feed "}" back to router */
1264 /* ---------------------------------------------------------------------- */
1267 * Routines to return pieces of stylesheet, or font or color tables.
1268 * References to style 0 are mapped onto the Normal style.
1272 RTFStyle
*RTFGetStyle(const RTF_Info
*info
, int num
)
1277 return (info
->styleList
);
1278 for (s
= info
->styleList
; s
!= NULL
; s
= s
->rtfNextStyle
)
1280 if (s
->rtfSNum
== num
)
1283 return (s
); /* NULL if not found */
1287 RTFFont
*RTFGetFont(const RTF_Info
*info
, int num
)
1292 return (info
->fontList
);
1293 for (f
= info
->fontList
; f
!= NULL
; f
= f
->rtfNextFont
)
1295 if (f
->rtfFNum
== num
)
1298 return (f
); /* NULL if not found */
1302 RTFColor
*RTFGetColor(const RTF_Info
*info
, int num
)
1307 return (info
->colorList
);
1308 for (c
= info
->colorList
; c
!= NULL
; c
= c
->rtfNextColor
)
1310 if (c
->rtfCNum
== num
)
1313 return (c
); /* NULL if not found */
1317 /* ---------------------------------------------------------------------- */
1321 * Expand style n, if there is such a style.
1324 void RTFExpandStyle(RTF_Info
*info
, int n
)
1331 s
= RTFGetStyle (info
, n
);
1334 if (s
->rtfExpanding
!= 0)
1335 ERR ("Style expansion loop, style %d\n", n
);
1336 s
->rtfExpanding
= 1; /* set expansion flag for loop detection */
1338 * Expand "based-on" style (unless it's the same as the current
1339 * style -- Normal style usually gives itself as its own based-on
1340 * style). Based-on style expansion is done by synthesizing
1341 * the token that the writer needs to see in order to trigger
1342 * another style expansion, and feeding to token back through
1343 * the router so the writer sees it.
1345 if (n
!= s
->rtfSBasedOn
)
1347 RTFSetToken (info
, rtfControl
, rtfParAttr
, rtfStyleNum
,
1348 s
->rtfSBasedOn
, "\\s");
1349 RTFRouteToken (info
);
1352 * Now route the tokens unique to this style. RTFSetToken()
1353 * isn't used because it would add the param value to the end
1354 * of the token text, which already has it in.
1356 for (se
= s
->rtfSSEList
; se
!= NULL
; se
= se
->rtfNextSE
)
1358 info
->rtfClass
= se
->rtfSEClass
;
1359 info
->rtfMajor
= se
->rtfSEMajor
;
1360 info
->rtfMinor
= se
->rtfSEMinor
;
1361 info
->rtfParam
= se
->rtfSEParam
;
1362 lstrcpyA (info
->rtfTextBuf
, se
->rtfSEText
);
1363 info
->rtfTextLen
= lstrlenA (info
->rtfTextBuf
);
1364 RTFRouteToken (info
);
1366 s
->rtfExpanding
= 0; /* done - clear expansion flag */
1370 /* ---------------------------------------------------------------------- */
1373 * Control symbol lookup routines
1377 typedef struct RTFKey RTFKey
;
1381 int rtfKMajor
; /* major number */
1382 int rtfKMinor
; /* minor number */
1383 const char *rtfKStr
; /* symbol name */
1384 int rtfKHash
; /* symbol name hash value */
1388 * A minor number of -1 means the token has no minor number
1389 * (all valid minor numbers are >= 0).
1392 static RTFKey rtfKey
[] =
1395 * Special characters
1398 { rtfSpecialChar
, rtfIIntVersion
, "vern", 0 },
1399 { rtfSpecialChar
, rtfICreateTime
, "creatim", 0 },
1400 { rtfSpecialChar
, rtfIRevisionTime
, "revtim", 0 },
1401 { rtfSpecialChar
, rtfIPrintTime
, "printim", 0 },
1402 { rtfSpecialChar
, rtfIBackupTime
, "buptim", 0 },
1403 { rtfSpecialChar
, rtfIEditTime
, "edmins", 0 },
1404 { rtfSpecialChar
, rtfIYear
, "yr", 0 },
1405 { rtfSpecialChar
, rtfIMonth
, "mo", 0 },
1406 { rtfSpecialChar
, rtfIDay
, "dy", 0 },
1407 { rtfSpecialChar
, rtfIHour
, "hr", 0 },
1408 { rtfSpecialChar
, rtfIMinute
, "min", 0 },
1409 { rtfSpecialChar
, rtfISecond
, "sec", 0 },
1410 { rtfSpecialChar
, rtfINPages
, "nofpages", 0 },
1411 { rtfSpecialChar
, rtfINWords
, "nofwords", 0 },
1412 { rtfSpecialChar
, rtfINChars
, "nofchars", 0 },
1413 { rtfSpecialChar
, rtfIIntID
, "id", 0 },
1415 { rtfSpecialChar
, rtfCurHeadDate
, "chdate", 0 },
1416 { rtfSpecialChar
, rtfCurHeadDateLong
, "chdpl", 0 },
1417 { rtfSpecialChar
, rtfCurHeadDateAbbrev
, "chdpa", 0 },
1418 { rtfSpecialChar
, rtfCurHeadTime
, "chtime", 0 },
1419 { rtfSpecialChar
, rtfCurHeadPage
, "chpgn", 0 },
1420 { rtfSpecialChar
, rtfSectNum
, "sectnum", 0 },
1421 { rtfSpecialChar
, rtfCurFNote
, "chftn", 0 },
1422 { rtfSpecialChar
, rtfCurAnnotRef
, "chatn", 0 },
1423 { rtfSpecialChar
, rtfFNoteSep
, "chftnsep", 0 },
1424 { rtfSpecialChar
, rtfFNoteCont
, "chftnsepc", 0 },
1425 { rtfSpecialChar
, rtfCell
, "cell", 0 },
1426 { rtfSpecialChar
, rtfRow
, "row", 0 },
1427 { rtfSpecialChar
, rtfPar
, "par", 0 },
1428 /* newline and carriage return are synonyms for */
1429 /* \par when they are preceded by a \ character */
1430 { rtfSpecialChar
, rtfPar
, "\n", 0 },
1431 { rtfSpecialChar
, rtfPar
, "\r", 0 },
1432 { rtfSpecialChar
, rtfSect
, "sect", 0 },
1433 { rtfSpecialChar
, rtfPage
, "page", 0 },
1434 { rtfSpecialChar
, rtfColumn
, "column", 0 },
1435 { rtfSpecialChar
, rtfLine
, "line", 0 },
1436 { rtfSpecialChar
, rtfSoftPage
, "softpage", 0 },
1437 { rtfSpecialChar
, rtfSoftColumn
, "softcol", 0 },
1438 { rtfSpecialChar
, rtfSoftLine
, "softline", 0 },
1439 { rtfSpecialChar
, rtfSoftLineHt
, "softlheight", 0 },
1440 { rtfSpecialChar
, rtfTab
, "tab", 0 },
1441 { rtfSpecialChar
, rtfEmDash
, "emdash", 0 },
1442 { rtfSpecialChar
, rtfEnDash
, "endash", 0 },
1443 { rtfSpecialChar
, rtfEmSpace
, "emspace", 0 },
1444 { rtfSpecialChar
, rtfEnSpace
, "enspace", 0 },
1445 { rtfSpecialChar
, rtfBullet
, "bullet", 0 },
1446 { rtfSpecialChar
, rtfLQuote
, "lquote", 0 },
1447 { rtfSpecialChar
, rtfRQuote
, "rquote", 0 },
1448 { rtfSpecialChar
, rtfLDblQuote
, "ldblquote", 0 },
1449 { rtfSpecialChar
, rtfRDblQuote
, "rdblquote", 0 },
1450 { rtfSpecialChar
, rtfFormula
, "|", 0 },
1451 { rtfSpecialChar
, rtfNoBrkSpace
, "~", 0 },
1452 { rtfSpecialChar
, rtfNoReqHyphen
, "-", 0 },
1453 { rtfSpecialChar
, rtfNoBrkHyphen
, "_", 0 },
1454 { rtfSpecialChar
, rtfOptDest
, "*", 0 },
1455 { rtfSpecialChar
, rtfLTRMark
, "ltrmark", 0 },
1456 { rtfSpecialChar
, rtfRTLMark
, "rtlmark", 0 },
1457 { rtfSpecialChar
, rtfNoWidthJoiner
, "zwj", 0 },
1458 { rtfSpecialChar
, rtfNoWidthNonJoiner
, "zwnj", 0 },
1459 /* is this valid? */
1460 { rtfSpecialChar
, rtfCurHeadPict
, "chpict", 0 },
1461 { rtfSpecialChar
, rtfUnicode
, "u", 0 },
1462 { rtfSpecialChar
, rtfNestCell
, "nestcell", 0 },
1463 { rtfSpecialChar
, rtfNestRow
, "nestrow", 0 },
1466 * Character formatting attributes
1469 { rtfCharAttr
, rtfPlain
, "plain", 0 },
1470 { rtfCharAttr
, rtfBold
, "b", 0 },
1471 { rtfCharAttr
, rtfAllCaps
, "caps", 0 },
1472 { rtfCharAttr
, rtfDeleted
, "deleted", 0 },
1473 { rtfCharAttr
, rtfSubScript
, "dn", 0 },
1474 { rtfCharAttr
, rtfSubScrShrink
, "sub", 0 },
1475 { rtfCharAttr
, rtfNoSuperSub
, "nosupersub", 0 },
1476 { rtfCharAttr
, rtfExpand
, "expnd", 0 },
1477 { rtfCharAttr
, rtfExpandTwips
, "expndtw", 0 },
1478 { rtfCharAttr
, rtfKerning
, "kerning", 0 },
1479 { rtfCharAttr
, rtfFontNum
, "f", 0 },
1480 { rtfCharAttr
, rtfFontSize
, "fs", 0 },
1481 { rtfCharAttr
, rtfItalic
, "i", 0 },
1482 { rtfCharAttr
, rtfOutline
, "outl", 0 },
1483 { rtfCharAttr
, rtfRevised
, "revised", 0 },
1484 { rtfCharAttr
, rtfRevAuthor
, "revauth", 0 },
1485 { rtfCharAttr
, rtfRevDTTM
, "revdttm", 0 },
1486 { rtfCharAttr
, rtfSmallCaps
, "scaps", 0 },
1487 { rtfCharAttr
, rtfShadow
, "shad", 0 },
1488 { rtfCharAttr
, rtfStrikeThru
, "strike", 0 },
1489 { rtfCharAttr
, rtfUnderline
, "ul", 0 },
1490 { rtfCharAttr
, rtfDotUnderline
, "uld", 0 },
1491 { rtfCharAttr
, rtfDbUnderline
, "uldb", 0 },
1492 { rtfCharAttr
, rtfNoUnderline
, "ulnone", 0 },
1493 { rtfCharAttr
, rtfWordUnderline
, "ulw", 0 },
1494 { rtfCharAttr
, rtfSuperScript
, "up", 0 },
1495 { rtfCharAttr
, rtfSuperScrShrink
, "super", 0 },
1496 { rtfCharAttr
, rtfInvisible
, "v", 0 },
1497 { rtfCharAttr
, rtfForeColor
, "cf", 0 },
1498 { rtfCharAttr
, rtfBackColor
, "cb", 0 },
1499 { rtfCharAttr
, rtfRTLChar
, "rtlch", 0 },
1500 { rtfCharAttr
, rtfLTRChar
, "ltrch", 0 },
1501 { rtfCharAttr
, rtfCharStyleNum
, "cs", 0 },
1502 { rtfCharAttr
, rtfCharCharSet
, "cchs", 0 },
1503 { rtfCharAttr
, rtfLanguage
, "lang", 0 },
1504 /* this has disappeared from spec 1.2 */
1505 { rtfCharAttr
, rtfGray
, "gray", 0 },
1506 { rtfCharAttr
, rtfUnicodeLength
, "uc", 0 },
1509 * Paragraph formatting attributes
1512 { rtfParAttr
, rtfParDef
, "pard", 0 },
1513 { rtfParAttr
, rtfStyleNum
, "s", 0 },
1514 { rtfParAttr
, rtfHyphenate
, "hyphpar", 0 },
1515 { rtfParAttr
, rtfInTable
, "intbl", 0 },
1516 { rtfParAttr
, rtfKeep
, "keep", 0 },
1517 { rtfParAttr
, rtfNoWidowControl
, "nowidctlpar", 0 },
1518 { rtfParAttr
, rtfKeepNext
, "keepn", 0 },
1519 { rtfParAttr
, rtfOutlineLevel
, "level", 0 },
1520 { rtfParAttr
, rtfNoLineNum
, "noline", 0 },
1521 { rtfParAttr
, rtfPBBefore
, "pagebb", 0 },
1522 { rtfParAttr
, rtfSideBySide
, "sbys", 0 },
1523 { rtfParAttr
, rtfQuadLeft
, "ql", 0 },
1524 { rtfParAttr
, rtfQuadRight
, "qr", 0 },
1525 { rtfParAttr
, rtfQuadJust
, "qj", 0 },
1526 { rtfParAttr
, rtfQuadCenter
, "qc", 0 },
1527 { rtfParAttr
, rtfFirstIndent
, "fi", 0 },
1528 { rtfParAttr
, rtfLeftIndent
, "li", 0 },
1529 { rtfParAttr
, rtfRightIndent
, "ri", 0 },
1530 { rtfParAttr
, rtfSpaceBefore
, "sb", 0 },
1531 { rtfParAttr
, rtfSpaceAfter
, "sa", 0 },
1532 { rtfParAttr
, rtfSpaceBetween
, "sl", 0 },
1533 { rtfParAttr
, rtfSpaceMultiply
, "slmult", 0 },
1535 { rtfParAttr
, rtfSubDocument
, "subdocument", 0 },
1537 { rtfParAttr
, rtfRTLPar
, "rtlpar", 0 },
1538 { rtfParAttr
, rtfLTRPar
, "ltrpar", 0 },
1540 { rtfParAttr
, rtfTabPos
, "tx", 0 },
1542 * FrameMaker writes \tql (to mean left-justified tab, apparently)
1543 * although it's not in the spec. It's also redundant, since lj
1544 * tabs are the default.
1546 { rtfParAttr
, rtfTabLeft
, "tql", 0 },
1547 { rtfParAttr
, rtfTabRight
, "tqr", 0 },
1548 { rtfParAttr
, rtfTabCenter
, "tqc", 0 },
1549 { rtfParAttr
, rtfTabDecimal
, "tqdec", 0 },
1550 { rtfParAttr
, rtfTabBar
, "tb", 0 },
1551 { rtfParAttr
, rtfLeaderDot
, "tldot", 0 },
1552 { rtfParAttr
, rtfLeaderHyphen
, "tlhyph", 0 },
1553 { rtfParAttr
, rtfLeaderUnder
, "tlul", 0 },
1554 { rtfParAttr
, rtfLeaderThick
, "tlth", 0 },
1555 { rtfParAttr
, rtfLeaderEqual
, "tleq", 0 },
1557 { rtfParAttr
, rtfParLevel
, "pnlvl", 0 },
1558 { rtfParAttr
, rtfParBullet
, "pnlvlblt", 0 },
1559 { rtfParAttr
, rtfParSimple
, "pnlvlbody", 0 },
1560 { rtfParAttr
, rtfParNumCont
, "pnlvlcont", 0 },
1561 { rtfParAttr
, rtfParNumOnce
, "pnnumonce", 0 },
1562 { rtfParAttr
, rtfParNumAcross
, "pnacross", 0 },
1563 { rtfParAttr
, rtfParHangIndent
, "pnhang", 0 },
1564 { rtfParAttr
, rtfParNumRestart
, "pnrestart", 0 },
1565 { rtfParAttr
, rtfParNumCardinal
, "pncard", 0 },
1566 { rtfParAttr
, rtfParNumDecimal
, "pndec", 0 },
1567 { rtfParAttr
, rtfParNumULetter
, "pnucltr", 0 },
1568 { rtfParAttr
, rtfParNumURoman
, "pnucrm", 0 },
1569 { rtfParAttr
, rtfParNumLLetter
, "pnlcltr", 0 },
1570 { rtfParAttr
, rtfParNumLRoman
, "pnlcrm", 0 },
1571 { rtfParAttr
, rtfParNumOrdinal
, "pnord", 0 },
1572 { rtfParAttr
, rtfParNumOrdinalText
, "pnordt", 0 },
1573 { rtfParAttr
, rtfParNumBold
, "pnb", 0 },
1574 { rtfParAttr
, rtfParNumItalic
, "pni", 0 },
1575 { rtfParAttr
, rtfParNumAllCaps
, "pncaps", 0 },
1576 { rtfParAttr
, rtfParNumSmallCaps
, "pnscaps", 0 },
1577 { rtfParAttr
, rtfParNumUnder
, "pnul", 0 },
1578 { rtfParAttr
, rtfParNumDotUnder
, "pnuld", 0 },
1579 { rtfParAttr
, rtfParNumDbUnder
, "pnuldb", 0 },
1580 { rtfParAttr
, rtfParNumNoUnder
, "pnulnone", 0 },
1581 { rtfParAttr
, rtfParNumWordUnder
, "pnulw", 0 },
1582 { rtfParAttr
, rtfParNumStrikethru
, "pnstrike", 0 },
1583 { rtfParAttr
, rtfParNumForeColor
, "pncf", 0 },
1584 { rtfParAttr
, rtfParNumFont
, "pnf", 0 },
1585 { rtfParAttr
, rtfParNumFontSize
, "pnfs", 0 },
1586 { rtfParAttr
, rtfParNumIndent
, "pnindent", 0 },
1587 { rtfParAttr
, rtfParNumSpacing
, "pnsp", 0 },
1588 { rtfParAttr
, rtfParNumInclPrev
, "pnprev", 0 },
1589 { rtfParAttr
, rtfParNumCenter
, "pnqc", 0 },
1590 { rtfParAttr
, rtfParNumLeft
, "pnql", 0 },
1591 { rtfParAttr
, rtfParNumRight
, "pnqr", 0 },
1592 { rtfParAttr
, rtfParNumStartAt
, "pnstart", 0 },
1594 { rtfParAttr
, rtfBorderTop
, "brdrt", 0 },
1595 { rtfParAttr
, rtfBorderBottom
, "brdrb", 0 },
1596 { rtfParAttr
, rtfBorderLeft
, "brdrl", 0 },
1597 { rtfParAttr
, rtfBorderRight
, "brdrr", 0 },
1598 { rtfParAttr
, rtfBorderBetween
, "brdrbtw", 0 },
1599 { rtfParAttr
, rtfBorderBar
, "brdrbar", 0 },
1600 { rtfParAttr
, rtfBorderBox
, "box", 0 },
1601 { rtfParAttr
, rtfBorderSingle
, "brdrs", 0 },
1602 { rtfParAttr
, rtfBorderThick
, "brdrth", 0 },
1603 { rtfParAttr
, rtfBorderShadow
, "brdrsh", 0 },
1604 { rtfParAttr
, rtfBorderDouble
, "brdrdb", 0 },
1605 { rtfParAttr
, rtfBorderDot
, "brdrdot", 0 },
1606 { rtfParAttr
, rtfBorderDot
, "brdrdash", 0 },
1607 { rtfParAttr
, rtfBorderHair
, "brdrhair", 0 },
1608 { rtfParAttr
, rtfBorderWidth
, "brdrw", 0 },
1609 { rtfParAttr
, rtfBorderColor
, "brdrcf", 0 },
1610 { rtfParAttr
, rtfBorderSpace
, "brsp", 0 },
1612 { rtfParAttr
, rtfShading
, "shading", 0 },
1613 { rtfParAttr
, rtfBgPatH
, "bghoriz", 0 },
1614 { rtfParAttr
, rtfBgPatV
, "bgvert", 0 },
1615 { rtfParAttr
, rtfFwdDiagBgPat
, "bgfdiag", 0 },
1616 { rtfParAttr
, rtfBwdDiagBgPat
, "bgbdiag", 0 },
1617 { rtfParAttr
, rtfHatchBgPat
, "bgcross", 0 },
1618 { rtfParAttr
, rtfDiagHatchBgPat
, "bgdcross", 0 },
1619 { rtfParAttr
, rtfDarkBgPatH
, "bgdkhoriz", 0 },
1620 { rtfParAttr
, rtfDarkBgPatV
, "bgdkvert", 0 },
1621 { rtfParAttr
, rtfFwdDarkBgPat
, "bgdkfdiag", 0 },
1622 { rtfParAttr
, rtfBwdDarkBgPat
, "bgdkbdiag", 0 },
1623 { rtfParAttr
, rtfDarkHatchBgPat
, "bgdkcross", 0 },
1624 { rtfParAttr
, rtfDarkDiagHatchBgPat
, "bgdkdcross", 0 },
1625 { rtfParAttr
, rtfBgPatLineColor
, "cfpat", 0 },
1626 { rtfParAttr
, rtfBgPatColor
, "cbpat", 0 },
1627 { rtfParAttr
, rtfNestLevel
, "itap", 0 },
1630 * Section formatting attributes
1633 { rtfSectAttr
, rtfSectDef
, "sectd", 0 },
1634 { rtfSectAttr
, rtfENoteHere
, "endnhere", 0 },
1635 { rtfSectAttr
, rtfPrtBinFirst
, "binfsxn", 0 },
1636 { rtfSectAttr
, rtfPrtBin
, "binsxn", 0 },
1637 { rtfSectAttr
, rtfSectStyleNum
, "ds", 0 },
1639 { rtfSectAttr
, rtfNoBreak
, "sbknone", 0 },
1640 { rtfSectAttr
, rtfColBreak
, "sbkcol", 0 },
1641 { rtfSectAttr
, rtfPageBreak
, "sbkpage", 0 },
1642 { rtfSectAttr
, rtfEvenBreak
, "sbkeven", 0 },
1643 { rtfSectAttr
, rtfOddBreak
, "sbkodd", 0 },
1645 { rtfSectAttr
, rtfColumns
, "cols", 0 },
1646 { rtfSectAttr
, rtfColumnSpace
, "colsx", 0 },
1647 { rtfSectAttr
, rtfColumnNumber
, "colno", 0 },
1648 { rtfSectAttr
, rtfColumnSpRight
, "colsr", 0 },
1649 { rtfSectAttr
, rtfColumnWidth
, "colw", 0 },
1650 { rtfSectAttr
, rtfColumnLine
, "linebetcol", 0 },
1652 { rtfSectAttr
, rtfLineModulus
, "linemod", 0 },
1653 { rtfSectAttr
, rtfLineDist
, "linex", 0 },
1654 { rtfSectAttr
, rtfLineStarts
, "linestarts", 0 },
1655 { rtfSectAttr
, rtfLineRestart
, "linerestart", 0 },
1656 { rtfSectAttr
, rtfLineRestartPg
, "lineppage", 0 },
1657 { rtfSectAttr
, rtfLineCont
, "linecont", 0 },
1659 { rtfSectAttr
, rtfSectPageWid
, "pgwsxn", 0 },
1660 { rtfSectAttr
, rtfSectPageHt
, "pghsxn", 0 },
1661 { rtfSectAttr
, rtfSectMarginLeft
, "marglsxn", 0 },
1662 { rtfSectAttr
, rtfSectMarginRight
, "margrsxn", 0 },
1663 { rtfSectAttr
, rtfSectMarginTop
, "margtsxn", 0 },
1664 { rtfSectAttr
, rtfSectMarginBottom
, "margbsxn", 0 },
1665 { rtfSectAttr
, rtfSectMarginGutter
, "guttersxn", 0 },
1666 { rtfSectAttr
, rtfSectLandscape
, "lndscpsxn", 0 },
1667 { rtfSectAttr
, rtfTitleSpecial
, "titlepg", 0 },
1668 { rtfSectAttr
, rtfHeaderY
, "headery", 0 },
1669 { rtfSectAttr
, rtfFooterY
, "footery", 0 },
1671 { rtfSectAttr
, rtfPageStarts
, "pgnstarts", 0 },
1672 { rtfSectAttr
, rtfPageCont
, "pgncont", 0 },
1673 { rtfSectAttr
, rtfPageRestart
, "pgnrestart", 0 },
1674 { rtfSectAttr
, rtfPageNumRight
, "pgnx", 0 },
1675 { rtfSectAttr
, rtfPageNumTop
, "pgny", 0 },
1676 { rtfSectAttr
, rtfPageDecimal
, "pgndec", 0 },
1677 { rtfSectAttr
, rtfPageURoman
, "pgnucrm", 0 },
1678 { rtfSectAttr
, rtfPageLRoman
, "pgnlcrm", 0 },
1679 { rtfSectAttr
, rtfPageULetter
, "pgnucltr", 0 },
1680 { rtfSectAttr
, rtfPageLLetter
, "pgnlcltr", 0 },
1681 { rtfSectAttr
, rtfPageNumHyphSep
, "pgnhnsh", 0 },
1682 { rtfSectAttr
, rtfPageNumSpaceSep
, "pgnhnsp", 0 },
1683 { rtfSectAttr
, rtfPageNumColonSep
, "pgnhnsc", 0 },
1684 { rtfSectAttr
, rtfPageNumEmdashSep
, "pgnhnsm", 0 },
1685 { rtfSectAttr
, rtfPageNumEndashSep
, "pgnhnsn", 0 },
1687 { rtfSectAttr
, rtfTopVAlign
, "vertalt", 0 },
1688 /* misspelled as "vertal" in specification 1.0 */
1689 { rtfSectAttr
, rtfBottomVAlign
, "vertalb", 0 },
1690 { rtfSectAttr
, rtfCenterVAlign
, "vertalc", 0 },
1691 { rtfSectAttr
, rtfJustVAlign
, "vertalj", 0 },
1693 { rtfSectAttr
, rtfRTLSect
, "rtlsect", 0 },
1694 { rtfSectAttr
, rtfLTRSect
, "ltrsect", 0 },
1696 /* I've seen these in an old spec, but not in real files... */
1697 /*rtfSectAttr, rtfNoBreak, "nobreak", 0,*/
1698 /*rtfSectAttr, rtfColBreak, "colbreak", 0,*/
1699 /*rtfSectAttr, rtfPageBreak, "pagebreak", 0,*/
1700 /*rtfSectAttr, rtfEvenBreak, "evenbreak", 0,*/
1701 /*rtfSectAttr, rtfOddBreak, "oddbreak", 0,*/
1704 * Document formatting attributes
1707 { rtfDocAttr
, rtfDefTab
, "deftab", 0 },
1708 { rtfDocAttr
, rtfHyphHotZone
, "hyphhotz", 0 },
1709 { rtfDocAttr
, rtfHyphConsecLines
, "hyphconsec", 0 },
1710 { rtfDocAttr
, rtfHyphCaps
, "hyphcaps", 0 },
1711 { rtfDocAttr
, rtfHyphAuto
, "hyphauto", 0 },
1712 { rtfDocAttr
, rtfLineStart
, "linestart", 0 },
1713 { rtfDocAttr
, rtfFracWidth
, "fracwidth", 0 },
1714 /* \makeback was given in old version of spec, it's now */
1715 /* listed as \makebackup */
1716 { rtfDocAttr
, rtfMakeBackup
, "makeback", 0 },
1717 { rtfDocAttr
, rtfMakeBackup
, "makebackup", 0 },
1718 { rtfDocAttr
, rtfRTFDefault
, "defformat", 0 },
1719 { rtfDocAttr
, rtfPSOverlay
, "psover", 0 },
1720 { rtfDocAttr
, rtfDocTemplate
, "doctemp", 0 },
1721 { rtfDocAttr
, rtfDefLanguage
, "deflang", 0 },
1723 { rtfDocAttr
, rtfFENoteType
, "fet", 0 },
1724 { rtfDocAttr
, rtfFNoteEndSect
, "endnotes", 0 },
1725 { rtfDocAttr
, rtfFNoteEndDoc
, "enddoc", 0 },
1726 { rtfDocAttr
, rtfFNoteText
, "ftntj", 0 },
1727 { rtfDocAttr
, rtfFNoteBottom
, "ftnbj", 0 },
1728 { rtfDocAttr
, rtfENoteEndSect
, "aendnotes", 0 },
1729 { rtfDocAttr
, rtfENoteEndDoc
, "aenddoc", 0 },
1730 { rtfDocAttr
, rtfENoteText
, "aftntj", 0 },
1731 { rtfDocAttr
, rtfENoteBottom
, "aftnbj", 0 },
1732 { rtfDocAttr
, rtfFNoteStart
, "ftnstart", 0 },
1733 { rtfDocAttr
, rtfENoteStart
, "aftnstart", 0 },
1734 { rtfDocAttr
, rtfFNoteRestartPage
, "ftnrstpg", 0 },
1735 { rtfDocAttr
, rtfFNoteRestart
, "ftnrestart", 0 },
1736 { rtfDocAttr
, rtfFNoteRestartCont
, "ftnrstcont", 0 },
1737 { rtfDocAttr
, rtfENoteRestart
, "aftnrestart", 0 },
1738 { rtfDocAttr
, rtfENoteRestartCont
, "aftnrstcont", 0 },
1739 { rtfDocAttr
, rtfFNoteNumArabic
, "ftnnar", 0 },
1740 { rtfDocAttr
, rtfFNoteNumLLetter
, "ftnnalc", 0 },
1741 { rtfDocAttr
, rtfFNoteNumULetter
, "ftnnauc", 0 },
1742 { rtfDocAttr
, rtfFNoteNumLRoman
, "ftnnrlc", 0 },
1743 { rtfDocAttr
, rtfFNoteNumURoman
, "ftnnruc", 0 },
1744 { rtfDocAttr
, rtfFNoteNumChicago
, "ftnnchi", 0 },
1745 { rtfDocAttr
, rtfENoteNumArabic
, "aftnnar", 0 },
1746 { rtfDocAttr
, rtfENoteNumLLetter
, "aftnnalc", 0 },
1747 { rtfDocAttr
, rtfENoteNumULetter
, "aftnnauc", 0 },
1748 { rtfDocAttr
, rtfENoteNumLRoman
, "aftnnrlc", 0 },
1749 { rtfDocAttr
, rtfENoteNumURoman
, "aftnnruc", 0 },
1750 { rtfDocAttr
, rtfENoteNumChicago
, "aftnnchi", 0 },
1752 { rtfDocAttr
, rtfPaperWidth
, "paperw", 0 },
1753 { rtfDocAttr
, rtfPaperHeight
, "paperh", 0 },
1754 { rtfDocAttr
, rtfPaperSize
, "psz", 0 },
1755 { rtfDocAttr
, rtfLeftMargin
, "margl", 0 },
1756 { rtfDocAttr
, rtfRightMargin
, "margr", 0 },
1757 { rtfDocAttr
, rtfTopMargin
, "margt", 0 },
1758 { rtfDocAttr
, rtfBottomMargin
, "margb", 0 },
1759 { rtfDocAttr
, rtfFacingPage
, "facingp", 0 },
1760 { rtfDocAttr
, rtfGutterWid
, "gutter", 0 },
1761 { rtfDocAttr
, rtfMirrorMargin
, "margmirror", 0 },
1762 { rtfDocAttr
, rtfLandscape
, "landscape", 0 },
1763 { rtfDocAttr
, rtfPageStart
, "pgnstart", 0 },
1764 { rtfDocAttr
, rtfWidowCtrl
, "widowctrl", 0 },
1766 { rtfDocAttr
, rtfLinkStyles
, "linkstyles", 0 },
1768 { rtfDocAttr
, rtfNoAutoTabIndent
, "notabind", 0 },
1769 { rtfDocAttr
, rtfWrapSpaces
, "wraptrsp", 0 },
1770 { rtfDocAttr
, rtfPrintColorsBlack
, "prcolbl", 0 },
1771 { rtfDocAttr
, rtfNoExtraSpaceRL
, "noextrasprl", 0 },
1772 { rtfDocAttr
, rtfNoColumnBalance
, "nocolbal", 0 },
1773 { rtfDocAttr
, rtfCvtMailMergeQuote
, "cvmme", 0 },
1774 { rtfDocAttr
, rtfSuppressTopSpace
, "sprstsp", 0 },
1775 { rtfDocAttr
, rtfSuppressPreParSpace
, "sprsspbf", 0 },
1776 { rtfDocAttr
, rtfCombineTblBorders
, "otblrul", 0 },
1777 { rtfDocAttr
, rtfTranspMetafiles
, "transmf", 0 },
1778 { rtfDocAttr
, rtfSwapBorders
, "swpbdr", 0 },
1779 { rtfDocAttr
, rtfShowHardBreaks
, "brkfrm", 0 },
1781 { rtfDocAttr
, rtfFormProtected
, "formprot", 0 },
1782 { rtfDocAttr
, rtfAllProtected
, "allprot", 0 },
1783 { rtfDocAttr
, rtfFormShading
, "formshade", 0 },
1784 { rtfDocAttr
, rtfFormDisplay
, "formdisp", 0 },
1785 { rtfDocAttr
, rtfPrintData
, "printdata", 0 },
1787 { rtfDocAttr
, rtfRevProtected
, "revprot", 0 },
1788 { rtfDocAttr
, rtfRevisions
, "revisions", 0 },
1789 { rtfDocAttr
, rtfRevDisplay
, "revprop", 0 },
1790 { rtfDocAttr
, rtfRevBar
, "revbar", 0 },
1792 { rtfDocAttr
, rtfAnnotProtected
, "annotprot", 0 },
1794 { rtfDocAttr
, rtfRTLDoc
, "rtldoc", 0 },
1795 { rtfDocAttr
, rtfLTRDoc
, "ltrdoc", 0 },
1797 { rtfDocAttr
, rtfAnsiCodePage
, "ansicpg", 0 },
1798 { rtfDocAttr
, rtfUTF8RTF
, "urtf", 0 },
1804 { rtfStyleAttr
, rtfAdditive
, "additive", 0 },
1805 { rtfStyleAttr
, rtfBasedOn
, "sbasedon", 0 },
1806 { rtfStyleAttr
, rtfNext
, "snext", 0 },
1809 * Picture attributes
1812 { rtfPictAttr
, rtfMacQD
, "macpict", 0 },
1813 { rtfPictAttr
, rtfPMMetafile
, "pmmetafile", 0 },
1814 { rtfPictAttr
, rtfWinMetafile
, "wmetafile", 0 },
1815 { rtfPictAttr
, rtfDevIndBitmap
, "dibitmap", 0 },
1816 { rtfPictAttr
, rtfWinBitmap
, "wbitmap", 0 },
1817 { rtfPictAttr
, rtfEmfBlip
, "emfblip", 0 },
1818 { rtfPictAttr
, rtfPixelBits
, "wbmbitspixel", 0 },
1819 { rtfPictAttr
, rtfBitmapPlanes
, "wbmplanes", 0 },
1820 { rtfPictAttr
, rtfBitmapWid
, "wbmwidthbytes", 0 },
1822 { rtfPictAttr
, rtfPicWid
, "picw", 0 },
1823 { rtfPictAttr
, rtfPicHt
, "pich", 0 },
1824 { rtfPictAttr
, rtfPicGoalWid
, "picwgoal", 0 },
1825 { rtfPictAttr
, rtfPicGoalHt
, "pichgoal", 0 },
1826 /* these two aren't in the spec, but some writers emit them */
1827 { rtfPictAttr
, rtfPicGoalWid
, "picwGoal", 0 },
1828 { rtfPictAttr
, rtfPicGoalHt
, "pichGoal", 0 },
1829 { rtfPictAttr
, rtfPicScaleX
, "picscalex", 0 },
1830 { rtfPictAttr
, rtfPicScaleY
, "picscaley", 0 },
1831 { rtfPictAttr
, rtfPicScaled
, "picscaled", 0 },
1832 { rtfPictAttr
, rtfPicCropTop
, "piccropt", 0 },
1833 { rtfPictAttr
, rtfPicCropBottom
, "piccropb", 0 },
1834 { rtfPictAttr
, rtfPicCropLeft
, "piccropl", 0 },
1835 { rtfPictAttr
, rtfPicCropRight
, "piccropr", 0 },
1837 { rtfPictAttr
, rtfPicMFHasBitmap
, "picbmp", 0 },
1838 { rtfPictAttr
, rtfPicMFBitsPerPixel
, "picbpp", 0 },
1840 { rtfPictAttr
, rtfPicBinary
, "bin", 0 },
1843 * NeXT graphic attributes
1846 { rtfNeXTGrAttr
, rtfNeXTGWidth
, "width", 0 },
1847 { rtfNeXTGrAttr
, rtfNeXTGHeight
, "height", 0 },
1853 { rtfDestination
, rtfFontTbl
, "fonttbl", 0 },
1854 { rtfDestination
, rtfFontAltName
, "falt", 0 },
1855 { rtfDestination
, rtfEmbeddedFont
, "fonteb", 0 },
1856 { rtfDestination
, rtfFontFile
, "fontfile", 0 },
1857 { rtfDestination
, rtfFileTbl
, "filetbl", 0 },
1858 { rtfDestination
, rtfFileInfo
, "file", 0 },
1859 { rtfDestination
, rtfColorTbl
, "colortbl", 0 },
1860 { rtfDestination
, rtfStyleSheet
, "stylesheet", 0 },
1861 { rtfDestination
, rtfKeyCode
, "keycode", 0 },
1862 { rtfDestination
, rtfRevisionTbl
, "revtbl", 0 },
1863 { rtfDestination
, rtfGenerator
, "generator", 0 },
1864 { rtfDestination
, rtfInfo
, "info", 0 },
1865 { rtfDestination
, rtfITitle
, "title", 0 },
1866 { rtfDestination
, rtfISubject
, "subject", 0 },
1867 { rtfDestination
, rtfIAuthor
, "author", 0 },
1868 { rtfDestination
, rtfIOperator
, "operator", 0 },
1869 { rtfDestination
, rtfIKeywords
, "keywords", 0 },
1870 { rtfDestination
, rtfIComment
, "comment", 0 },
1871 { rtfDestination
, rtfIVersion
, "version", 0 },
1872 { rtfDestination
, rtfIDoccomm
, "doccomm", 0 },
1873 /* \verscomm may not exist -- was seen in earlier spec version */
1874 { rtfDestination
, rtfIVerscomm
, "verscomm", 0 },
1875 { rtfDestination
, rtfNextFile
, "nextfile", 0 },
1876 { rtfDestination
, rtfTemplate
, "template", 0 },
1877 { rtfDestination
, rtfFNSep
, "ftnsep", 0 },
1878 { rtfDestination
, rtfFNContSep
, "ftnsepc", 0 },
1879 { rtfDestination
, rtfFNContNotice
, "ftncn", 0 },
1880 { rtfDestination
, rtfENSep
, "aftnsep", 0 },
1881 { rtfDestination
, rtfENContSep
, "aftnsepc", 0 },
1882 { rtfDestination
, rtfENContNotice
, "aftncn", 0 },
1883 { rtfDestination
, rtfPageNumLevel
, "pgnhn", 0 },
1884 { rtfDestination
, rtfParNumLevelStyle
, "pnseclvl", 0 },
1885 { rtfDestination
, rtfHeader
, "header", 0 },
1886 { rtfDestination
, rtfFooter
, "footer", 0 },
1887 { rtfDestination
, rtfHeaderLeft
, "headerl", 0 },
1888 { rtfDestination
, rtfHeaderRight
, "headerr", 0 },
1889 { rtfDestination
, rtfHeaderFirst
, "headerf", 0 },
1890 { rtfDestination
, rtfFooterLeft
, "footerl", 0 },
1891 { rtfDestination
, rtfFooterRight
, "footerr", 0 },
1892 { rtfDestination
, rtfFooterFirst
, "footerf", 0 },
1893 { rtfDestination
, rtfParNumText
, "pntext", 0 },
1894 { rtfDestination
, rtfParNumbering
, "pn", 0 },
1895 { rtfDestination
, rtfParNumTextAfter
, "pntexta", 0 },
1896 { rtfDestination
, rtfParNumTextBefore
, "pntextb", 0 },
1897 { rtfDestination
, rtfBookmarkStart
, "bkmkstart", 0 },
1898 { rtfDestination
, rtfBookmarkEnd
, "bkmkend", 0 },
1899 { rtfDestination
, rtfPict
, "pict", 0 },
1900 { rtfDestination
, rtfObject
, "object", 0 },
1901 { rtfDestination
, rtfObjClass
, "objclass", 0 },
1902 { rtfDestination
, rtfObjName
, "objname", 0 },
1903 { rtfObjAttr
, rtfObjTime
, "objtime", 0 },
1904 { rtfDestination
, rtfObjData
, "objdata", 0 },
1905 { rtfDestination
, rtfObjAlias
, "objalias", 0 },
1906 { rtfDestination
, rtfObjSection
, "objsect", 0 },
1907 /* objitem and objtopic aren't documented in the spec! */
1908 { rtfDestination
, rtfObjItem
, "objitem", 0 },
1909 { rtfDestination
, rtfObjTopic
, "objtopic", 0 },
1910 { rtfDestination
, rtfObjResult
, "result", 0 },
1911 { rtfDestination
, rtfDrawObject
, "do", 0 },
1912 { rtfDestination
, rtfFootnote
, "footnote", 0 },
1913 { rtfDestination
, rtfAnnotRefStart
, "atrfstart", 0 },
1914 { rtfDestination
, rtfAnnotRefEnd
, "atrfend", 0 },
1915 { rtfDestination
, rtfAnnotID
, "atnid", 0 },
1916 { rtfDestination
, rtfAnnotAuthor
, "atnauthor", 0 },
1917 { rtfDestination
, rtfAnnotation
, "annotation", 0 },
1918 { rtfDestination
, rtfAnnotRef
, "atnref", 0 },
1919 { rtfDestination
, rtfAnnotTime
, "atntime", 0 },
1920 { rtfDestination
, rtfAnnotIcon
, "atnicn", 0 },
1921 { rtfDestination
, rtfField
, "field", 0 },
1922 { rtfDestination
, rtfFieldInst
, "fldinst", 0 },
1923 { rtfDestination
, rtfFieldResult
, "fldrslt", 0 },
1924 { rtfDestination
, rtfDataField
, "datafield", 0 },
1925 { rtfDestination
, rtfIndex
, "xe", 0 },
1926 { rtfDestination
, rtfIndexText
, "txe", 0 },
1927 { rtfDestination
, rtfIndexRange
, "rxe", 0 },
1928 { rtfDestination
, rtfTOC
, "tc", 0 },
1929 { rtfDestination
, rtfNeXTGraphic
, "NeXTGraphic", 0 },
1930 { rtfDestination
, rtfNestTableProps
, "nesttableprops", 0 },
1931 { rtfDestination
, rtfNoNestTables
, "nonesttables", 0 },
1937 { rtfFontFamily
, rtfFFNil
, "fnil", 0 },
1938 { rtfFontFamily
, rtfFFRoman
, "froman", 0 },
1939 { rtfFontFamily
, rtfFFSwiss
, "fswiss", 0 },
1940 { rtfFontFamily
, rtfFFModern
, "fmodern", 0 },
1941 { rtfFontFamily
, rtfFFScript
, "fscript", 0 },
1942 { rtfFontFamily
, rtfFFDecor
, "fdecor", 0 },
1943 { rtfFontFamily
, rtfFFTech
, "ftech", 0 },
1944 { rtfFontFamily
, rtfFFBidirectional
, "fbidi", 0 },
1950 { rtfFontAttr
, rtfFontCharSet
, "fcharset", 0 },
1951 { rtfFontAttr
, rtfFontPitch
, "fprq", 0 },
1952 { rtfFontAttr
, rtfFontCodePage
, "cpg", 0 },
1953 { rtfFontAttr
, rtfFTypeNil
, "ftnil", 0 },
1954 { rtfFontAttr
, rtfFTypeTrueType
, "fttruetype", 0 },
1957 * File table attributes
1960 { rtfFileAttr
, rtfFileNum
, "fid", 0 },
1961 { rtfFileAttr
, rtfFileRelPath
, "frelative", 0 },
1962 { rtfFileAttr
, rtfFileOSNum
, "fosnum", 0 },
1968 { rtfFileSource
, rtfSrcMacintosh
, "fvalidmac", 0 },
1969 { rtfFileSource
, rtfSrcDOS
, "fvaliddos", 0 },
1970 { rtfFileSource
, rtfSrcNTFS
, "fvalidntfs", 0 },
1971 { rtfFileSource
, rtfSrcHPFS
, "fvalidhpfs", 0 },
1972 { rtfFileSource
, rtfSrcNetwork
, "fnetwork", 0 },
1978 { rtfColorName
, rtfRed
, "red", 0 },
1979 { rtfColorName
, rtfGreen
, "green", 0 },
1980 { rtfColorName
, rtfBlue
, "blue", 0 },
1986 { rtfCharSet
, rtfMacCharSet
, "mac", 0 },
1987 { rtfCharSet
, rtfAnsiCharSet
, "ansi", 0 },
1988 { rtfCharSet
, rtfPcCharSet
, "pc", 0 },
1989 { rtfCharSet
, rtfPcaCharSet
, "pca", 0 },
1995 { rtfTblAttr
, rtfRowDef
, "trowd", 0 },
1996 { rtfTblAttr
, rtfRowGapH
, "trgaph", 0 },
1997 { rtfTblAttr
, rtfCellPos
, "cellx", 0 },
1998 { rtfTblAttr
, rtfMergeRngFirst
, "clmgf", 0 },
1999 { rtfTblAttr
, rtfMergePrevious
, "clmrg", 0 },
2001 { rtfTblAttr
, rtfRowLeft
, "trql", 0 },
2002 { rtfTblAttr
, rtfRowRight
, "trqr", 0 },
2003 { rtfTblAttr
, rtfRowCenter
, "trqc", 0 },
2004 { rtfTblAttr
, rtfRowLeftEdge
, "trleft", 0 },
2005 { rtfTblAttr
, rtfRowHt
, "trrh", 0 },
2006 { rtfTblAttr
, rtfRowHeader
, "trhdr", 0 },
2007 { rtfTblAttr
, rtfRowKeep
, "trkeep", 0 },
2009 { rtfTblAttr
, rtfRTLRow
, "rtlrow", 0 },
2010 { rtfTblAttr
, rtfLTRRow
, "ltrrow", 0 },
2012 { rtfTblAttr
, rtfRowBordTop
, "trbrdrt", 0 },
2013 { rtfTblAttr
, rtfRowBordLeft
, "trbrdrl", 0 },
2014 { rtfTblAttr
, rtfRowBordBottom
, "trbrdrb", 0 },
2015 { rtfTblAttr
, rtfRowBordRight
, "trbrdrr", 0 },
2016 { rtfTblAttr
, rtfRowBordHoriz
, "trbrdrh", 0 },
2017 { rtfTblAttr
, rtfRowBordVert
, "trbrdrv", 0 },
2019 { rtfTblAttr
, rtfCellBordBottom
, "clbrdrb", 0 },
2020 { rtfTblAttr
, rtfCellBordTop
, "clbrdrt", 0 },
2021 { rtfTblAttr
, rtfCellBordLeft
, "clbrdrl", 0 },
2022 { rtfTblAttr
, rtfCellBordRight
, "clbrdrr", 0 },
2024 { rtfTblAttr
, rtfCellShading
, "clshdng", 0 },
2025 { rtfTblAttr
, rtfCellBgPatH
, "clbghoriz", 0 },
2026 { rtfTblAttr
, rtfCellBgPatV
, "clbgvert", 0 },
2027 { rtfTblAttr
, rtfCellFwdDiagBgPat
, "clbgfdiag", 0 },
2028 { rtfTblAttr
, rtfCellBwdDiagBgPat
, "clbgbdiag", 0 },
2029 { rtfTblAttr
, rtfCellHatchBgPat
, "clbgcross", 0 },
2030 { rtfTblAttr
, rtfCellDiagHatchBgPat
, "clbgdcross", 0 },
2032 * The spec lists "clbgdkhor", but the corresponding non-cell
2033 * control is "bgdkhoriz". At any rate Macintosh Word seems
2034 * to accept both "clbgdkhor" and "clbgdkhoriz".
2036 { rtfTblAttr
, rtfCellDarkBgPatH
, "clbgdkhoriz", 0 },
2037 { rtfTblAttr
, rtfCellDarkBgPatH
, "clbgdkhor", 0 },
2038 { rtfTblAttr
, rtfCellDarkBgPatV
, "clbgdkvert", 0 },
2039 { rtfTblAttr
, rtfCellFwdDarkBgPat
, "clbgdkfdiag", 0 },
2040 { rtfTblAttr
, rtfCellBwdDarkBgPat
, "clbgdkbdiag", 0 },
2041 { rtfTblAttr
, rtfCellDarkHatchBgPat
, "clbgdkcross", 0 },
2042 { rtfTblAttr
, rtfCellDarkDiagHatchBgPat
, "clbgdkdcross", 0 },
2043 { rtfTblAttr
, rtfCellBgPatLineColor
, "clcfpat", 0 },
2044 { rtfTblAttr
, rtfCellBgPatColor
, "clcbpat", 0 },
2050 { rtfFieldAttr
, rtfFieldDirty
, "flddirty", 0 },
2051 { rtfFieldAttr
, rtfFieldEdited
, "fldedit", 0 },
2052 { rtfFieldAttr
, rtfFieldLocked
, "fldlock", 0 },
2053 { rtfFieldAttr
, rtfFieldPrivate
, "fldpriv", 0 },
2054 { rtfFieldAttr
, rtfFieldAlt
, "fldalt", 0 },
2057 * Positioning attributes
2060 { rtfPosAttr
, rtfAbsWid
, "absw", 0 },
2061 { rtfPosAttr
, rtfAbsHt
, "absh", 0 },
2063 { rtfPosAttr
, rtfRPosMargH
, "phmrg", 0 },
2064 { rtfPosAttr
, rtfRPosPageH
, "phpg", 0 },
2065 { rtfPosAttr
, rtfRPosColH
, "phcol", 0 },
2066 { rtfPosAttr
, rtfPosX
, "posx", 0 },
2067 { rtfPosAttr
, rtfPosNegX
, "posnegx", 0 },
2068 { rtfPosAttr
, rtfPosXCenter
, "posxc", 0 },
2069 { rtfPosAttr
, rtfPosXInside
, "posxi", 0 },
2070 { rtfPosAttr
, rtfPosXOutSide
, "posxo", 0 },
2071 { rtfPosAttr
, rtfPosXRight
, "posxr", 0 },
2072 { rtfPosAttr
, rtfPosXLeft
, "posxl", 0 },
2074 { rtfPosAttr
, rtfRPosMargV
, "pvmrg", 0 },
2075 { rtfPosAttr
, rtfRPosPageV
, "pvpg", 0 },
2076 { rtfPosAttr
, rtfRPosParaV
, "pvpara", 0 },
2077 { rtfPosAttr
, rtfPosY
, "posy", 0 },
2078 { rtfPosAttr
, rtfPosNegY
, "posnegy", 0 },
2079 { rtfPosAttr
, rtfPosYInline
, "posyil", 0 },
2080 { rtfPosAttr
, rtfPosYTop
, "posyt", 0 },
2081 { rtfPosAttr
, rtfPosYCenter
, "posyc", 0 },
2082 { rtfPosAttr
, rtfPosYBottom
, "posyb", 0 },
2084 { rtfPosAttr
, rtfNoWrap
, "nowrap", 0 },
2085 { rtfPosAttr
, rtfDistFromTextAll
, "dxfrtext", 0 },
2086 { rtfPosAttr
, rtfDistFromTextX
, "dfrmtxtx", 0 },
2087 { rtfPosAttr
, rtfDistFromTextY
, "dfrmtxty", 0 },
2088 /* \dyfrtext no longer exists in spec 1.2, apparently */
2089 /* replaced by \dfrmtextx and \dfrmtexty. */
2090 { rtfPosAttr
, rtfTextDistY
, "dyfrtext", 0 },
2092 { rtfPosAttr
, rtfDropCapLines
, "dropcapli", 0 },
2093 { rtfPosAttr
, rtfDropCapType
, "dropcapt", 0 },
2099 { rtfObjAttr
, rtfObjEmb
, "objemb", 0 },
2100 { rtfObjAttr
, rtfObjLink
, "objlink", 0 },
2101 { rtfObjAttr
, rtfObjAutoLink
, "objautlink", 0 },
2102 { rtfObjAttr
, rtfObjSubscriber
, "objsub", 0 },
2103 { rtfObjAttr
, rtfObjPublisher
, "objpub", 0 },
2104 { rtfObjAttr
, rtfObjICEmb
, "objicemb", 0 },
2106 { rtfObjAttr
, rtfObjLinkSelf
, "linkself", 0 },
2107 { rtfObjAttr
, rtfObjLock
, "objupdate", 0 },
2108 { rtfObjAttr
, rtfObjUpdate
, "objlock", 0 },
2110 { rtfObjAttr
, rtfObjHt
, "objh", 0 },
2111 { rtfObjAttr
, rtfObjWid
, "objw", 0 },
2112 { rtfObjAttr
, rtfObjSetSize
, "objsetsize", 0 },
2113 { rtfObjAttr
, rtfObjAlign
, "objalign", 0 },
2114 { rtfObjAttr
, rtfObjTransposeY
, "objtransy", 0 },
2115 { rtfObjAttr
, rtfObjCropTop
, "objcropt", 0 },
2116 { rtfObjAttr
, rtfObjCropBottom
, "objcropb", 0 },
2117 { rtfObjAttr
, rtfObjCropLeft
, "objcropl", 0 },
2118 { rtfObjAttr
, rtfObjCropRight
, "objcropr", 0 },
2119 { rtfObjAttr
, rtfObjScaleX
, "objscalex", 0 },
2120 { rtfObjAttr
, rtfObjScaleY
, "objscaley", 0 },
2122 { rtfObjAttr
, rtfObjResRTF
, "rsltrtf", 0 },
2123 { rtfObjAttr
, rtfObjResPict
, "rsltpict", 0 },
2124 { rtfObjAttr
, rtfObjResBitmap
, "rsltbmp", 0 },
2125 { rtfObjAttr
, rtfObjResText
, "rslttxt", 0 },
2126 { rtfObjAttr
, rtfObjResMerge
, "rsltmerge", 0 },
2128 { rtfObjAttr
, rtfObjBookmarkPubObj
, "bkmkpub", 0 },
2129 { rtfObjAttr
, rtfObjPubAutoUpdate
, "pubauto", 0 },
2132 * Associated character formatting attributes
2135 { rtfACharAttr
, rtfACBold
, "ab", 0 },
2136 { rtfACharAttr
, rtfACAllCaps
, "caps", 0 },
2137 { rtfACharAttr
, rtfACForeColor
, "acf", 0 },
2138 { rtfACharAttr
, rtfACSubScript
, "adn", 0 },
2139 { rtfACharAttr
, rtfACExpand
, "aexpnd", 0 },
2140 { rtfACharAttr
, rtfACFontNum
, "af", 0 },
2141 { rtfACharAttr
, rtfACFontSize
, "afs", 0 },
2142 { rtfACharAttr
, rtfACItalic
, "ai", 0 },
2143 { rtfACharAttr
, rtfACLanguage
, "alang", 0 },
2144 { rtfACharAttr
, rtfACOutline
, "aoutl", 0 },
2145 { rtfACharAttr
, rtfACSmallCaps
, "ascaps", 0 },
2146 { rtfACharAttr
, rtfACShadow
, "ashad", 0 },
2147 { rtfACharAttr
, rtfACStrikeThru
, "astrike", 0 },
2148 { rtfACharAttr
, rtfACUnderline
, "aul", 0 },
2149 { rtfACharAttr
, rtfACDotUnderline
, "auld", 0 },
2150 { rtfACharAttr
, rtfACDbUnderline
, "auldb", 0 },
2151 { rtfACharAttr
, rtfACNoUnderline
, "aulnone", 0 },
2152 { rtfACharAttr
, rtfACWordUnderline
, "aulw", 0 },
2153 { rtfACharAttr
, rtfACSuperScript
, "aup", 0 },
2156 * Footnote attributes
2159 { rtfFNoteAttr
, rtfFNAlt
, "ftnalt", 0 },
2162 * Key code attributes
2165 { rtfKeyCodeAttr
, rtfAltKey
, "alt", 0 },
2166 { rtfKeyCodeAttr
, rtfShiftKey
, "shift", 0 },
2167 { rtfKeyCodeAttr
, rtfControlKey
, "ctrl", 0 },
2168 { rtfKeyCodeAttr
, rtfFunctionKey
, "fn", 0 },
2171 * Bookmark attributes
2174 { rtfBookmarkAttr
, rtfBookmarkFirstCol
, "bkmkcolf", 0 },
2175 { rtfBookmarkAttr
, rtfBookmarkLastCol
, "bkmkcoll", 0 },
2178 * Index entry attributes
2181 { rtfIndexAttr
, rtfIndexNumber
, "xef", 0 },
2182 { rtfIndexAttr
, rtfIndexBold
, "bxe", 0 },
2183 { rtfIndexAttr
, rtfIndexItalic
, "ixe", 0 },
2186 * Table of contents attributes
2189 { rtfTOCAttr
, rtfTOCType
, "tcf", 0 },
2190 { rtfTOCAttr
, rtfTOCLevel
, "tcl", 0 },
2193 * Drawing object attributes
2196 { rtfDrawAttr
, rtfDrawLock
, "dolock", 0 },
2197 { rtfDrawAttr
, rtfDrawPageRelX
, "doxpage", 0 },
2198 { rtfDrawAttr
, rtfDrawColumnRelX
, "dobxcolumn", 0 },
2199 { rtfDrawAttr
, rtfDrawMarginRelX
, "dobxmargin", 0 },
2200 { rtfDrawAttr
, rtfDrawPageRelY
, "dobypage", 0 },
2201 { rtfDrawAttr
, rtfDrawColumnRelY
, "dobycolumn", 0 },
2202 { rtfDrawAttr
, rtfDrawMarginRelY
, "dobymargin", 0 },
2203 { rtfDrawAttr
, rtfDrawHeight
, "dobhgt", 0 },
2205 { rtfDrawAttr
, rtfDrawBeginGroup
, "dpgroup", 0 },
2206 { rtfDrawAttr
, rtfDrawGroupCount
, "dpcount", 0 },
2207 { rtfDrawAttr
, rtfDrawEndGroup
, "dpendgroup", 0 },
2208 { rtfDrawAttr
, rtfDrawArc
, "dparc", 0 },
2209 { rtfDrawAttr
, rtfDrawCallout
, "dpcallout", 0 },
2210 { rtfDrawAttr
, rtfDrawEllipse
, "dpellipse", 0 },
2211 { rtfDrawAttr
, rtfDrawLine
, "dpline", 0 },
2212 { rtfDrawAttr
, rtfDrawPolygon
, "dppolygon", 0 },
2213 { rtfDrawAttr
, rtfDrawPolyLine
, "dppolyline", 0 },
2214 { rtfDrawAttr
, rtfDrawRect
, "dprect", 0 },
2215 { rtfDrawAttr
, rtfDrawTextBox
, "dptxbx", 0 },
2217 { rtfDrawAttr
, rtfDrawOffsetX
, "dpx", 0 },
2218 { rtfDrawAttr
, rtfDrawSizeX
, "dpxsize", 0 },
2219 { rtfDrawAttr
, rtfDrawOffsetY
, "dpy", 0 },
2220 { rtfDrawAttr
, rtfDrawSizeY
, "dpysize", 0 },
2222 { rtfDrawAttr
, rtfCOAngle
, "dpcoa", 0 },
2223 { rtfDrawAttr
, rtfCOAccentBar
, "dpcoaccent", 0 },
2224 { rtfDrawAttr
, rtfCOBestFit
, "dpcobestfit", 0 },
2225 { rtfDrawAttr
, rtfCOBorder
, "dpcoborder", 0 },
2226 { rtfDrawAttr
, rtfCOAttachAbsDist
, "dpcodabs", 0 },
2227 { rtfDrawAttr
, rtfCOAttachBottom
, "dpcodbottom", 0 },
2228 { rtfDrawAttr
, rtfCOAttachCenter
, "dpcodcenter", 0 },
2229 { rtfDrawAttr
, rtfCOAttachTop
, "dpcodtop", 0 },
2230 { rtfDrawAttr
, rtfCOLength
, "dpcolength", 0 },
2231 { rtfDrawAttr
, rtfCONegXQuadrant
, "dpcominusx", 0 },
2232 { rtfDrawAttr
, rtfCONegYQuadrant
, "dpcominusy", 0 },
2233 { rtfDrawAttr
, rtfCOOffset
, "dpcooffset", 0 },
2234 { rtfDrawAttr
, rtfCOAttachSmart
, "dpcosmarta", 0 },
2235 { rtfDrawAttr
, rtfCODoubleLine
, "dpcotdouble", 0 },
2236 { rtfDrawAttr
, rtfCORightAngle
, "dpcotright", 0 },
2237 { rtfDrawAttr
, rtfCOSingleLine
, "dpcotsingle", 0 },
2238 { rtfDrawAttr
, rtfCOTripleLine
, "dpcottriple", 0 },
2240 { rtfDrawAttr
, rtfDrawTextBoxMargin
, "dptxbxmar", 0 },
2241 { rtfDrawAttr
, rtfDrawTextBoxText
, "dptxbxtext", 0 },
2242 { rtfDrawAttr
, rtfDrawRoundRect
, "dproundr", 0 },
2244 { rtfDrawAttr
, rtfDrawPointX
, "dpptx", 0 },
2245 { rtfDrawAttr
, rtfDrawPointY
, "dppty", 0 },
2246 { rtfDrawAttr
, rtfDrawPolyCount
, "dppolycount", 0 },
2248 { rtfDrawAttr
, rtfDrawArcFlipX
, "dparcflipx", 0 },
2249 { rtfDrawAttr
, rtfDrawArcFlipY
, "dparcflipy", 0 },
2251 { rtfDrawAttr
, rtfDrawLineBlue
, "dplinecob", 0 },
2252 { rtfDrawAttr
, rtfDrawLineGreen
, "dplinecog", 0 },
2253 { rtfDrawAttr
, rtfDrawLineRed
, "dplinecor", 0 },
2254 { rtfDrawAttr
, rtfDrawLinePalette
, "dplinepal", 0 },
2255 { rtfDrawAttr
, rtfDrawLineDashDot
, "dplinedado", 0 },
2256 { rtfDrawAttr
, rtfDrawLineDashDotDot
, "dplinedadodo", 0 },
2257 { rtfDrawAttr
, rtfDrawLineDash
, "dplinedash", 0 },
2258 { rtfDrawAttr
, rtfDrawLineDot
, "dplinedot", 0 },
2259 { rtfDrawAttr
, rtfDrawLineGray
, "dplinegray", 0 },
2260 { rtfDrawAttr
, rtfDrawLineHollow
, "dplinehollow", 0 },
2261 { rtfDrawAttr
, rtfDrawLineSolid
, "dplinesolid", 0 },
2262 { rtfDrawAttr
, rtfDrawLineWidth
, "dplinew", 0 },
2264 { rtfDrawAttr
, rtfDrawHollowEndArrow
, "dpaendhol", 0 },
2265 { rtfDrawAttr
, rtfDrawEndArrowLength
, "dpaendl", 0 },
2266 { rtfDrawAttr
, rtfDrawSolidEndArrow
, "dpaendsol", 0 },
2267 { rtfDrawAttr
, rtfDrawEndArrowWidth
, "dpaendw", 0 },
2268 { rtfDrawAttr
, rtfDrawHollowStartArrow
,"dpastarthol", 0 },
2269 { rtfDrawAttr
, rtfDrawStartArrowLength
,"dpastartl", 0 },
2270 { rtfDrawAttr
, rtfDrawSolidStartArrow
, "dpastartsol", 0 },
2271 { rtfDrawAttr
, rtfDrawStartArrowWidth
, "dpastartw", 0 },
2273 { rtfDrawAttr
, rtfDrawBgFillBlue
, "dpfillbgcb", 0 },
2274 { rtfDrawAttr
, rtfDrawBgFillGreen
, "dpfillbgcg", 0 },
2275 { rtfDrawAttr
, rtfDrawBgFillRed
, "dpfillbgcr", 0 },
2276 { rtfDrawAttr
, rtfDrawBgFillPalette
, "dpfillbgpal", 0 },
2277 { rtfDrawAttr
, rtfDrawBgFillGray
, "dpfillbggray", 0 },
2278 { rtfDrawAttr
, rtfDrawFgFillBlue
, "dpfillfgcb", 0 },
2279 { rtfDrawAttr
, rtfDrawFgFillGreen
, "dpfillfgcg", 0 },
2280 { rtfDrawAttr
, rtfDrawFgFillRed
, "dpfillfgcr", 0 },
2281 { rtfDrawAttr
, rtfDrawFgFillPalette
, "dpfillfgpal", 0 },
2282 { rtfDrawAttr
, rtfDrawFgFillGray
, "dpfillfggray", 0 },
2283 { rtfDrawAttr
, rtfDrawFillPatIndex
, "dpfillpat", 0 },
2285 { rtfDrawAttr
, rtfDrawShadow
, "dpshadow", 0 },
2286 { rtfDrawAttr
, rtfDrawShadowXOffset
, "dpshadx", 0 },
2287 { rtfDrawAttr
, rtfDrawShadowYOffset
, "dpshady", 0 },
2289 { rtfVersion
, -1, "rtf", 0 },
2290 { rtfDefFont
, -1, "deff", 0 },
2292 { 0, -1, (char *) NULL
, 0 }
2294 #define RTF_KEY_COUNT (sizeof(rtfKey) / sizeof(RTFKey))
2296 typedef struct tagRTFHashTableEntry
{
2299 } RTFHashTableEntry
;
2301 static RTFHashTableEntry rtfHashTable
[RTF_KEY_COUNT
* 2];
2305 * Initialize lookup table hash values. Only need to do this once.
2308 void LookupInit(void)
2312 memset(rtfHashTable
, 0, sizeof rtfHashTable
);
2313 for (rp
= rtfKey
; rp
->rtfKStr
!= NULL
; rp
++)
2317 rp
->rtfKHash
= Hash (rp
->rtfKStr
);
2318 index
= rp
->rtfKHash
% (RTF_KEY_COUNT
* 2);
2319 if (!rtfHashTable
[index
].count
)
2320 rtfHashTable
[index
].value
= heap_alloc(sizeof(RTFKey
*));
2322 rtfHashTable
[index
].value
= heap_realloc(rtfHashTable
[index
].value
, sizeof(RTFKey
*) * (rtfHashTable
[index
].count
+ 1));
2323 rtfHashTable
[index
].value
[rtfHashTable
[index
].count
++] = rp
;
2327 void LookupCleanup(void)
2331 for (i
=0; i
<RTF_KEY_COUNT
*2; i
++)
2333 heap_free( rtfHashTable
[i
].value
);
2334 rtfHashTable
[i
].value
= NULL
;
2335 rtfHashTable
[i
].count
= 0;
2341 * Determine major and minor number of control token. If it's
2342 * not found, the class turns into rtfUnknown.
2345 static void Lookup(RTF_Info
*info
, char *s
)
2349 RTFHashTableEntry
*entry
;
2352 ++s
; /* skip over the leading \ character */
2354 entry
= &rtfHashTable
[hash
% (RTF_KEY_COUNT
* 2)];
2355 for (i
= 0; i
< entry
->count
; i
++)
2357 rp
= entry
->value
[i
];
2358 if (hash
== rp
->rtfKHash
&& strcmp (s
, rp
->rtfKStr
) == 0)
2360 info
->rtfClass
= rtfControl
;
2361 info
->rtfMajor
= rp
->rtfKMajor
;
2362 info
->rtfMinor
= rp
->rtfKMinor
;
2366 info
->rtfClass
= rtfUnknown
;
2371 * Compute hash value of symbol
2374 static int Hash(const char *s
)
2379 while ((c
= *s
++) != '\0')
2386 /* ---------------------------------------------------------------------- */
2390 * Token comparison routines
2393 int RTFCheckCM(const RTF_Info
*info
, int class, int major
)
2395 return (info
->rtfClass
== class && info
->rtfMajor
== major
);
2399 int RTFCheckCMM(const RTF_Info
*info
, int class, int major
, int minor
)
2401 return (info
->rtfClass
== class && info
->rtfMajor
== major
&& info
->rtfMinor
== minor
);
2405 int RTFCheckMM(const RTF_Info
*info
, int major
, int minor
)
2407 return (info
->rtfMajor
== major
&& info
->rtfMinor
== minor
);
2411 /* ---------------------------------------------------------------------- */
2414 int RTFCharToHex(char c
)
2419 return (c
- '0'); /* '0'..'9' */
2420 return (c
- 'a' + 10); /* 'a'..'f' */
2424 int RTFHexToChar(int i
)
2428 return (i
- 10 + 'a');
2432 /* ---------------------------------------------------------------------- */
2435 * originally from RTF tools' text-writer.c
2437 * text-writer -- RTF-to-text translation writer code.
2439 * Read RTF input, write text of document (text extraction).
2442 static void TextClass (RTF_Info
*info
);
2443 static void ControlClass (RTF_Info
*info
);
2444 static void DefFont(RTF_Info
*info
);
2445 static void Destination (RTF_Info
*info
);
2446 static void SpecialChar (RTF_Info
*info
);
2447 static void RTFPutUnicodeChar (RTF_Info
*info
, int c
);
2450 * Initialize the writer.
2454 WriterInit (RTF_Info
*info
)
2460 BeginFile (RTF_Info
*info
)
2462 /* install class callbacks */
2464 RTFSetClassCallback (info
, rtfText
, TextClass
);
2465 RTFSetClassCallback (info
, rtfControl
, ControlClass
);
2471 * Write out a character.
2475 TextClass (RTF_Info
*info
)
2477 RTFPutCodePageChar(info
, info
->rtfMajor
);
2482 ControlClass (RTF_Info
*info
)
2484 switch (info
->rtfMajor
)
2488 ME_RTFCharAttrHook(info
);
2491 ME_RTFParAttrHook(info
);
2494 ME_RTFTblAttrHook(info
);
2502 case rtfDestination
:
2508 case rtfSpecialChar
:
2510 ME_RTFSpecialCharHook(info
);
2517 CharAttr(RTF_Info
*info
)
2521 switch (info
->rtfMinor
)
2524 font
= RTFGetFont(info
, info
->rtfParam
);
2527 if (info
->ansiCodePage
!= CP_UTF8
)
2528 info
->codePage
= font
->rtfFCodePage
;
2529 TRACE("font %d codepage %d\n", info
->rtfParam
, info
->codePage
);
2532 ERR( "unknown font %d\n", info
->rtfParam
);
2534 case rtfUnicodeLength
:
2535 info
->unicodeLength
= info
->rtfParam
;
2542 CharSet(RTF_Info
*info
)
2544 if (info
->ansiCodePage
== CP_UTF8
)
2547 switch (info
->rtfMinor
)
2549 case rtfAnsiCharSet
:
2550 info
->ansiCodePage
= 1252; /* Latin-1 */
2553 info
->ansiCodePage
= 10000; /* MacRoman */
2556 info
->ansiCodePage
= 437;
2559 info
->ansiCodePage
= 850;
2565 * This function notices destinations that aren't explicitly handled
2566 * and skips to their ends. This keeps, for instance, picture
2567 * data from being considered as plain text.
2571 Destination (RTF_Info
*info
)
2573 if (!RTFGetDestinationCallback(info
, info
->rtfMinor
))
2574 RTFSkipGroup (info
);
2579 DefFont(RTF_Info
*info
)
2581 TRACE("%d\n", info
->rtfParam
);
2582 info
->defFont
= info
->rtfParam
;
2587 DocAttr(RTF_Info
*info
)
2589 TRACE("minor %d, param %d\n", info
->rtfMinor
, info
->rtfParam
);
2591 switch (info
->rtfMinor
)
2593 case rtfAnsiCodePage
:
2594 info
->codePage
= info
->ansiCodePage
= info
->rtfParam
;
2597 info
->codePage
= info
->ansiCodePage
= CP_UTF8
;
2603 static void SpecialChar (RTF_Info
*info
)
2605 switch (info
->rtfMinor
)
2608 /* the next token determines destination, if it's unknown, skip the group */
2609 /* this way we filter out the garbage coming from unknown destinations */
2611 if (info
->rtfClass
!= rtfDestination
)
2614 RTFRouteToken(info
); /* "\*" is ignored with known destinations */
2620 RTFPutUnicodeChar(info
, info
->rtfParam
);
2622 /* After \u we must skip number of character tokens set by \ucN */
2623 for (i
= 0; i
< info
->unicodeLength
; i
++)
2626 if (info
->rtfClass
!= rtfText
)
2628 ERR("The token behind \\u is not text, but (%d,%d,%d)\n",
2629 info
->rtfClass
, info
->rtfMajor
, info
->rtfMinor
);
2630 RTFUngetToken(info
);
2637 RTFFlushOutputBuffer(info
);
2638 ME_InsertEndRowFromCursor(info
->editor
, 0);
2643 RTFPutUnicodeChar (info
, '\r');
2644 if (info
->editor
->bEmulateVersion10
) RTFPutUnicodeChar (info
, '\n');
2647 RTFPutUnicodeChar (info
, 0x00A0);
2650 RTFPutUnicodeChar (info
, '\t');
2652 case rtfNoBrkHyphen
:
2653 RTFPutUnicodeChar (info
, 0x2011);
2656 RTFPutUnicodeChar (info
, 0x2022);
2659 RTFPutUnicodeChar (info
, 0x2014);
2662 RTFPutUnicodeChar (info
, 0x2013);
2665 RTFPutUnicodeChar (info
, 0x2018);
2668 RTFPutUnicodeChar (info
, 0x2019);
2671 RTFPutUnicodeChar (info
, 0x201C);
2674 RTFPutUnicodeChar (info
, 0x201D);
2681 RTFFlushUnicodeOutputBuffer(RTF_Info
*info
)
2683 if (info
->dwOutputCount
)
2685 ME_InsertTextFromCursor(info
->editor
, 0, info
->OutputBuffer
,
2686 info
->dwOutputCount
, info
->style
);
2687 info
->dwOutputCount
= 0;
2693 RTFPutUnicodeString(RTF_Info
*info
, const WCHAR
*string
, int length
)
2695 if (info
->dwCPOutputCount
)
2696 RTFFlushCPOutputBuffer(info
);
2699 int fit
= min(length
, sizeof(info
->OutputBuffer
) / sizeof(WCHAR
) - info
->dwOutputCount
);
2701 memmove(info
->OutputBuffer
+ info
->dwOutputCount
, string
, fit
* sizeof(WCHAR
));
2702 info
->dwOutputCount
+= fit
;
2705 if (sizeof(info
->OutputBuffer
) / sizeof(WCHAR
) == info
->dwOutputCount
)
2706 RTFFlushUnicodeOutputBuffer(info
);
2711 RTFFlushCPOutputBuffer(RTF_Info
*info
)
2713 int bufferMax
= info
->dwCPOutputCount
* 2 * sizeof(WCHAR
);
2714 WCHAR
*buffer
= heap_alloc(bufferMax
);
2717 length
= MultiByteToWideChar(info
->codePage
, 0, info
->cpOutputBuffer
,
2718 info
->dwCPOutputCount
, buffer
, bufferMax
/sizeof(WCHAR
));
2719 info
->dwCPOutputCount
= 0;
2721 RTFPutUnicodeString(info
, buffer
, length
);
2722 heap_free((char *)buffer
);
2726 RTFFlushOutputBuffer(RTF_Info
*info
)
2728 if (info
->dwCPOutputCount
)
2729 RTFFlushCPOutputBuffer(info
);
2730 RTFFlushUnicodeOutputBuffer(info
);
2734 RTFPutUnicodeChar(RTF_Info
*info
, int c
)
2736 if (info
->dwCPOutputCount
)
2737 RTFFlushCPOutputBuffer(info
);
2738 if (info
->dwOutputCount
* sizeof(WCHAR
) >= ( sizeof info
->OutputBuffer
- 1 ) )
2739 RTFFlushUnicodeOutputBuffer( info
);
2740 info
->OutputBuffer
[info
->dwOutputCount
++] = c
;
2744 RTFPutCodePageChar(RTF_Info
*info
, int c
)
2746 /* Use dynamic buffer here because it's the best way to handle
2747 * MBCS codepages without having to worry about partial chars */
2748 if (info
->dwCPOutputCount
>= info
->dwMaxCPOutputCount
)
2750 info
->dwMaxCPOutputCount
*= 2;
2751 info
->cpOutputBuffer
= heap_realloc(info
->cpOutputBuffer
, info
->dwMaxCPOutputCount
);
2753 info
->cpOutputBuffer
[info
->dwCPOutputCount
++] = c
;