2 * - Need to document error code meanings.
3 * - Need to do something with \* on destinations.
4 * - Make the parameter a long?
6 * reader.c - RTF file reader. Release 1.10.
8 * ASCII 10 (\n) and 13 (\r) are ignored and silently discarded.
9 * Nulls are also discarded.
10 * (although the read hook will still get a look at them.)
12 * "\:" is not a ":", it's a control symbol. But some versions of
13 * Word seem to write "\:" for ":". This reader treats "\:" as a
17 * - Add hack to skip "{\*\keycode ... }" group in stylesheet.
18 * This is probably the wrong thing to do, but it's simple.
20 * - Add THINK C awareness to malloc() declaration. Necessary so
21 * compiler knows the malloc argument is 4 bytes. Ugh.
23 * - Text characters are mapped onto standard codes, which are placed
25 * - Eliminated use of index() function.
27 * - Added zillions of new symbols (those defined in RTF spec 1.2).
29 * - Public functions RTFMsg() and RTFPanic() now take variable arguments.
30 * This means RTFPanic() now is used in place of what was formerly the
31 * internal function Error().
32 * - 8-bit characters are now legal, so they're not converted to \'xx
33 * hex char representation now.
35 * - Added public variables rtfLineNum and rtfLinePos.
36 * - #include string.h or strings.h, avoiding strncmp() problem where
37 * last argument is treated as zero when prototype isn't available.
39 * - Treat style numbers 222 and 0 properly as "no style" and "normal".
41 * Author: Paul DuBois dubois@primate.wisc.edu
43 * This software may be redistributed without restriction and used for
44 * any purpose whatsoever.
48 # define STRING_H <string.h>
67 * include hard coded charsets
79 #include "debugtools.h"
81 extern HANDLE RICHED32_hHeap
;
84 * Return pointer to new element of type t, or NULL
85 * if no memory available.
88 # define New(t) ((t *) RTFAlloc ((int) sizeof (t)))
90 /* maximum number of character values representable in a byte */
92 # define charSetSize 256
94 /* charset stack size */
96 # define maxCSStack 10
98 static int _RTFGetChar();
99 static void _RTFGetToken ();
100 static void _RTFGetToken2 ();
101 static int GetChar ();
102 static void ReadFontTbl ();
103 static void ReadColorTbl ();
104 static void ReadStyleSheet ();
105 static void ReadInfoGroup ();
106 static void ReadPictGroup ();
107 static void ReadObjGroup ();
108 static void LookupInit ();
109 static void Lookup ();
112 static void CharSetInit ();
113 static void ReadCharSetMaps ();
117 * Public variables (listed in rtf.h)
124 char *rtfTextBuf
= (char *) NULL
;
135 static int pushedChar
; /* pushback char if read too far */
137 static int pushedClass
; /* pushed token info for RTFUngetToken() */
138 static int pushedMajor
;
139 static int pushedMinor
;
140 static int pushedParam
;
141 static char *pushedTextBuf
= (char *) NULL
;
146 static RTFFont
*fontList
= (RTFFont
*) NULL
; /* these lists MUST be */
147 static RTFColor
*colorList
= (RTFColor
*) NULL
; /* initialized to NULL */
148 static RTFStyle
*styleList
= (RTFStyle
*) NULL
;
150 static char *inputName
= (char *) NULL
;
151 static char *outputName
= (char *) NULL
;
153 static EDITSTREAM editstream
;
154 static CHARLIST inputCharList
= {0, NULL
, NULL
};
157 * This array is used to map standard character names onto their numeric codes.
158 * The position of the name within the array is the code.
159 * stdcharnames.h is generated in the ../h directory.
162 static char *stdCharName
[] =
164 # include "stdcharnames.h"
170 * These arrays are used to map RTF input character values onto the standard
171 * character names represented by the values. Input character values are
172 * used as indices into the arrays to produce standard character codes.
176 static char *genCharSetFile
= (char *) NULL
;
177 static int genCharCode
[charSetSize
]; /* general */
178 static int haveGenCharSet
= 0;
180 static char *symCharSetFile
= (char *) NULL
;
181 static int symCharCode
[charSetSize
]; /* symbol */
182 static int haveSymCharSet
= 0;
184 static int curCharSet
= rtfCSGeneral
;
185 static int *curCharCode
= genCharCode
;
188 * By default, the reader is configured to handle charset mapping invisibly,
189 * including reading the charset files and switching charset maps as necessary
193 static int autoCharSetFlags
;
196 * Stack for keeping track of charset map on group begin/end. This is
197 * necessary because group termination reverts the font to the previous
198 * value, which may implicitly change it.
201 static int csStack
[maxCSStack
];
202 static int csTop
= 0;
205 * Get a char from the charlist. The charlist is used to store characters
206 * from the editstream.
214 if(CHARLIST_GetNbItems(&inputCharList
) == 0)
218 editstream
.pfnCallback(editstream
.dwCookie
, buff
, 1, &pcb
);
222 CHARLIST_Enqueue(&inputCharList
, buff
[0]);
224 myChar
= CHARLIST_Dequeue(&inputCharList
);
229 RTFSetEditStream(EDITSTREAM
*es
)
231 editstream
.dwCookie
= es
->dwCookie
;
232 editstream
.dwError
= es
->dwError
;
233 editstream
.pfnCallback
= es
->pfnCallback
;
237 * Initialize the reader. This may be called multiple times,
238 * to read multiple files. The only thing not reset is the input
239 * stream; that must be done with RTFSetStream().
249 RTFStyleElt
*eltList
, *ep
;
251 if (rtfTextBuf
== (char *) NULL
) /* initialize the text buffers */
253 rtfTextBuf
= RTFAlloc (rtfBufSiz
);
254 pushedTextBuf
= RTFAlloc (rtfBufSiz
);
255 if (rtfTextBuf
== (char *) NULL
256 || pushedTextBuf
== (char *) NULL
)
257 RTFPanic ("Cannot allocate text buffers.");
258 rtfTextBuf
[0] = pushedTextBuf
[0] = '\0';
262 RTFFree (outputName
);
263 inputName
= outputName
= (char *) NULL
;
265 /* initialize lookup table */
268 for (i
= 0; i
< rtfMaxClass
; i
++)
269 RTFSetClassCallback (i
, (RTFFuncPtr
) NULL
);
270 for (i
= 0; i
< rtfMaxDestination
; i
++)
271 RTFSetDestinationCallback (i
, (RTFFuncPtr
) NULL
);
273 /* install built-in destination readers */
274 RTFSetDestinationCallback (rtfFontTbl
, ReadFontTbl
);
275 RTFSetDestinationCallback (rtfColorTbl
, ReadColorTbl
);
276 RTFSetDestinationCallback (rtfStyleSheet
, ReadStyleSheet
);
277 RTFSetDestinationCallback (rtfInfo
, ReadInfoGroup
);
278 RTFSetDestinationCallback (rtfPict
, ReadPictGroup
);
279 RTFSetDestinationCallback (rtfObject
, ReadObjGroup
);
282 RTFSetReadHook ((RTFFuncPtr
) NULL
);
284 /* dump old lists if necessary */
286 while (fontList
!= (RTFFont
*) NULL
)
288 fp
= fontList
->rtfNextFont
;
289 RTFFree (fontList
->rtfFName
);
290 RTFFree ((char *) fontList
);
293 while (colorList
!= (RTFColor
*) NULL
)
295 cp
= colorList
->rtfNextColor
;
296 RTFFree ((char *) colorList
);
299 while (styleList
!= (RTFStyle
*) NULL
)
301 sp
= styleList
->rtfNextStyle
;
302 eltList
= styleList
->rtfSSEList
;
303 while (eltList
!= (RTFStyleElt
*) NULL
)
305 ep
= eltList
->rtfNextSE
;
306 RTFFree (eltList
->rtfSEText
);
307 RTFFree ((char *) eltList
);
310 RTFFree (styleList
->rtfSName
);
311 RTFFree ((char *) styleList
);
329 * Set or get the input or output file name. These are never guaranteed
330 * to be accurate, only insofar as the calling program makes them so.
334 RTFSetInputName (name
)
337 if ((inputName
= RTFStrSave (name
)) == (char *) NULL
)
338 RTFPanic ("RTFSetInputName: out of memory");
350 RTFSetOutputName (name
)
353 if ((outputName
= RTFStrSave (name
)) == (char *) NULL
)
354 RTFPanic ("RTFSetOutputName: out of memory");
366 /* ---------------------------------------------------------------------- */
369 * Callback table manipulation routines
374 * Install or return a writer callback for a token class
378 static RTFFuncPtr ccb
[rtfMaxClass
]; /* class callbacks */
382 RTFSetClassCallback (class, callback
)
386 if (class >= 0 && class < rtfMaxClass
)
387 ccb
[class] = callback
;
392 RTFGetClassCallback (class)
395 if (class >= 0 && class < rtfMaxClass
)
397 return ((RTFFuncPtr
) NULL
);
402 * Install or return a writer callback for a destination type
405 static RTFFuncPtr dcb
[rtfMaxDestination
]; /* destination callbacks */
409 RTFSetDestinationCallback (dest
, callback
)
413 if (dest
>= 0 && dest
< rtfMaxDestination
)
414 dcb
[dest
] = callback
;
419 RTFGetDestinationCallback (dest
)
422 if (dest
>= 0 && dest
< rtfMaxDestination
)
424 return ((RTFFuncPtr
) NULL
);
428 /* ---------------------------------------------------------------------- */
431 * Token reading routines
436 * Read the input stream, invoking the writer's callbacks
443 while (RTFGetToken () != rtfEOF
)
449 * Route a token. If it's a destination for which a reader is
450 * installed, process the destination internally, otherwise
451 * pass the token to the writer's class callback.
459 if (rtfClass
< 0 || rtfClass
>= rtfMaxClass
) /* watchdog */
461 RTFPanic ("Unknown class %d: %s (reader malfunction)",
462 rtfClass
, rtfTextBuf
);
464 if (RTFCheckCM (rtfControl
, rtfDestination
))
466 /* invoke destination-specific callback if there is one */
467 if ((p
= RTFGetDestinationCallback (rtfMinor
))
468 != (RTFFuncPtr
) NULL
)
474 /* invoke class callback if there is one */
475 if ((p
= RTFGetClassCallback (rtfClass
)) != (RTFFuncPtr
) NULL
)
481 * Skip to the end of the current group. When this returns,
482 * writers that maintain a state stack may want to call their
483 * state unstacker; global vars will still be set to the group's
492 while (RTFGetToken () != rtfEOF
)
494 if (rtfClass
== rtfGroup
)
496 if (rtfMajor
== rtfBeginGroup
)
498 else if (rtfMajor
== rtfEndGroup
)
501 break; /* end of initial group */
509 * Read one token. Call the read hook if there is one. The
510 * token class is the return value. Returns rtfEOF when there
511 * are no more tokens.
522 if ((p
= RTFGetReadHook ()) != (RTFFuncPtr
) NULL
)
523 (*p
) (); /* give read hook a look at token */
525 /* Silently discard newlines, carriage returns, nulls. */
526 if (!(rtfClass
== rtfText
527 && (rtfMajor
== '\n' || rtfMajor
== '\r'
528 || rtfMajor
== '\0')))
536 * Install or return a token reader hook.
539 static RTFFuncPtr readHook
;
560 if (pushedClass
>= 0) /* there's already an ungotten token */
561 RTFPanic ("cannot unget two tokens");
563 RTFPanic ("no token to unget");
564 pushedClass
= rtfClass
;
565 pushedMajor
= rtfMajor
;
566 pushedMinor
= rtfMinor
;
567 pushedParam
= rtfParam
;
568 (void) strcpy (pushedTextBuf
, rtfTextBuf
);
586 /* first check for pushed token from RTFUngetToken() */
588 if (pushedClass
>= 0)
590 rtfClass
= pushedClass
;
591 rtfMajor
= pushedMajor
;
592 rtfMinor
= pushedMinor
;
593 rtfParam
= pushedParam
;
594 (void) strcpy (rtfTextBuf
, pushedTextBuf
);
595 rtfTextLen
= strlen (rtfTextBuf
);
601 * Beyond this point, no token is ever seen twice, which is
602 * important, e.g., for making sure no "}" pops the font stack twice.
606 if (rtfClass
== rtfText
) /* map RTF char to standard code */
607 rtfMinor
= RTFMapChar (rtfMajor
);
610 * If auto-charset stuff is activated, see if anything needs doing,
611 * like reading the charset maps or switching between them.
614 if (autoCharSetFlags
== 0)
617 if ((autoCharSetFlags
& rtfReadCharSet
)
618 && RTFCheckCM (rtfControl
, rtfCharSet
))
622 else if ((autoCharSetFlags
& rtfSwitchCharSet
)
623 && RTFCheckCMM (rtfControl
, rtfCharAttr
, rtfFontNum
))
625 if ((fp
= RTFGetFont (rtfParam
)) != (RTFFont
*) NULL
)
627 if (strncmp (fp
->rtfFName
, "Symbol", 6) == 0)
628 curCharSet
= rtfCSSymbol
;
630 curCharSet
= rtfCSGeneral
;
631 RTFSetCharSet (curCharSet
);
634 else if ((autoCharSetFlags
& rtfSwitchCharSet
) && rtfClass
== rtfGroup
)
639 if (csTop
>= maxCSStack
)
640 RTFPanic ("_RTFGetToken: stack overflow");
641 csStack
[csTop
++] = curCharSet
;
645 RTFPanic ("_RTFGetToken: stack underflow");
646 curCharSet
= csStack
[--csTop
];
647 RTFSetCharSet (curCharSet
);
654 /* this shouldn't be called anywhere but from _RTFGetToken() */
662 /* initialize token vars */
664 rtfClass
= rtfUnknown
;
665 rtfParam
= rtfNoParam
;
666 rtfTextBuf
[rtfTextLen
= 0] = '\0';
668 /* get first character, which may be a pushback from previous token */
670 if (pushedChar
!= EOF
)
673 rtfTextBuf
[rtfTextLen
++] = c
;
674 rtfTextBuf
[rtfTextLen
] = '\0';
677 else if ((c
= GetChar ()) == EOF
)
686 rtfMajor
= rtfBeginGroup
;
692 rtfMajor
= rtfEndGroup
;
698 * Two possibilities here:
699 * 1) ASCII 9, effectively like \tab control symbol
700 * 2) literal text char
702 if (c
== '\t') /* ASCII 9 */
704 rtfClass
= rtfControl
;
705 rtfMajor
= rtfSpecialChar
;
715 if ((c
= GetChar ()) == EOF
)
717 /* early eof, whoops (class is rtfUnknown) */
723 * Three possibilities here:
724 * 1) hex encoded text char, e.g., \'d5, \'d3
725 * 2) special escaped text char, e.g., \{, \}
726 * 3) control symbol, e.g., \_, \-, \|, \<10>
728 if (c
== '\'') /* hex char */
732 if ((c
= GetChar ()) != EOF
&& (c2
= GetChar ()) != EOF
)
734 /* should do isxdigit check! */
736 rtfMajor
= RTFCharToHex (c
) * 16
740 /* early eof, whoops (class is rtfUnknown) */
745 /*if (index (":{}\\", c) != (char *) NULL)*/ /* escaped char */
746 if (c
== ':' || c
== '{' || c
== '}' || c
== '\\')
754 Lookup (rtfTextBuf
); /* sets class, major, minor */
760 if ((c
= GetChar ()) == EOF
)
765 * At this point, the control word is all collected, so the
766 * major/minor numbers are determined before the parameter
767 * (if any) is scanned. There will be one too many characters
768 * in the buffer, though, so fix up before and restore after
773 rtfTextBuf
[rtfTextLen
-1] = '\0';
774 Lookup (rtfTextBuf
); /* sets class, major, minor */
776 rtfTextBuf
[rtfTextLen
-1] = c
;
779 * Should be looking at first digit of parameter if there
780 * is one, unless it's negative. In that case, next char
781 * is '-', so need to gobble next char, and remember sign.
790 if (c
!= EOF
&& isdigit (c
))
793 while (isdigit (c
)) /* gobble parameter */
795 rtfParam
= rtfParam
* 10 + c
- '0';
796 if ((c
= GetChar ()) == EOF
)
802 * If control symbol delimiter was a blank, gobble it.
803 * Otherwise the character is first char of next token, so
804 * push it back for next call. In either case, delete the
805 * delimiter from the token buffer.
811 rtfTextBuf
[--rtfTextLen
] = '\0';
817 * Read the next character from the input. This handles setting the
818 * current line and position-within-line variables. Those variable are
819 * set correctly whether lines end with CR, LF, or CRLF (the last being
822 * bumpLine indicates whether the line number should be incremented on
823 * the *next* input character.
833 if ((c
= _RTFGetChar()) != EOF
)
835 rtfTextBuf
[rtfTextLen
++] = c
;
836 rtfTextBuf
[rtfTextLen
] = '\0';
840 oldBumpLine
= bumpLine
; /* non-zero if prev char was line ending */
847 if (prevChar
== '\r') /* oops, previous \r wasn't */
848 oldBumpLine
= 0; /* really a line ending */
851 if (oldBumpLine
) /* were we supposed to increment the */
852 { /* line count on this char? */
862 * Synthesize a token by setting the global variables to the
863 * values supplied. Typically this is followed with a call
864 * to RTFRouteToken().
866 * If a param value other than rtfNoParam is passed, it becomes
867 * part of the token text.
871 RTFSetToken (class, major
, minor
, param
, text
)
872 int class, major
, minor
, param
;
879 if (param
== rtfNoParam
)
880 (void) strcpy (rtfTextBuf
, text
);
882 sprintf (rtfTextBuf
, "%s%d", text
, param
);
883 rtfTextLen
= strlen (rtfTextBuf
);
887 /* ---------------------------------------------------------------------- */
890 * Routines to handle mapping of RTF character sets
891 * onto standard characters.
893 * RTFStdCharCode(name) given char name, produce numeric code
894 * RTFStdCharName(code) given char code, return name
895 * RTFMapChar(c) map input (RTF) char code to std code
896 * RTFSetCharSet(id) select given charset map
897 * RTFGetCharSet() get current charset map
899 * See ../h/README for more information about charset names and codes.
904 * Initialize charset stuff.
910 autoCharSetFlags
= (rtfReadCharSet
| rtfSwitchCharSet
);
911 RTFFree (genCharSetFile
);
912 genCharSetFile
= (char *) NULL
;
914 RTFFree (symCharSetFile
);
915 symCharSetFile
= (char *) NULL
;
917 curCharSet
= rtfCSGeneral
;
918 curCharCode
= genCharCode
;
923 * Specify the name of a file to be read when auto-charset-file reading is
928 RTFSetCharSetMap (name
, csId
)
932 if ((name
= RTFStrSave (name
)) == (char *) NULL
) /* make copy */
933 RTFPanic ("RTFSetCharSetMap: out of memory");
937 RTFFree (genCharSetFile
); /* free any previous value */
938 genCharSetFile
= name
;
941 RTFFree (symCharSetFile
); /* free any previous value */
942 symCharSetFile
= name
;
949 * Do auto-charset-file reading.
950 * will always use the ansi charset no mater what the value
951 * of the rtfTextBuf is.
953 * TODO: add support for other charset in the future.
962 if (genCharSetFile
!= (char *) NULL
)
963 (void) strcpy (buf
, genCharSetFile
);
965 sprintf (buf
, "%s-gen", &rtfTextBuf
[1]);
966 if (RTFReadCharSetMap (rtfCSGeneral
) == 0)
967 RTFPanic ("ReadCharSetMaps: Cannot read charset map %s", buf
);
968 if (symCharSetFile
!= (char *) NULL
)
969 (void) strcpy (buf
, symCharSetFile
);
971 sprintf (buf
, "%s-sym", &rtfTextBuf
[1]);
972 if (RTFReadCharSetMap (rtfCSSymbol
) == 0)
973 RTFPanic ("ReadCharSetMaps: Cannot read charset map %s", buf
);
979 * Convert a CaracterSetMap (caracter_name, caracter) into
980 * this form : array[caracter_ident] = caracter;
984 RTFReadCharSetMap (csId
)
992 return (0); /* illegal charset id */
996 stdCodeArray
= genCharCode
;
997 for (i
= 0; i
< charSetSize
; i
++)
999 stdCodeArray
[i
] = rtfSC_nothing
;
1002 for ( i
= 0 ; i
< sizeof(ansi_gen
)/(sizeof(int));i
+=2)
1004 stdCodeArray
[ ansi_gen
[i
+1] ] = ansi_gen
[i
];
1011 stdCodeArray
= symCharCode
;
1012 for (i
= 0; i
< charSetSize
; i
++)
1014 stdCodeArray
[i
] = rtfSC_nothing
;
1017 for ( i
= 0 ; i
< sizeof(ansi_sym
)/(sizeof(int));i
+=2)
1019 stdCodeArray
[ ansi_sym
[i
+1] ] = ansi_sym
[i
];
1029 * Given a standard character name (a string), find its code (a number).
1030 * Return -1 if name is unknown.
1034 RTFStdCharCode (name
)
1039 for (i
= 0; i
< rtfSC_MaxChar
; i
++)
1041 if (strcmp (name
, stdCharName
[i
]) == 0)
1049 * Given a standard character code (a number), find its name (a string).
1050 * Return NULL if code is unknown.
1054 RTFStdCharName (code
)
1057 if (code
< 0 || code
>= rtfSC_MaxChar
)
1058 return ((char *) NULL
);
1059 return (stdCharName
[code
]);
1064 * Given an RTF input character code, find standard character code.
1065 * The translator should read the appropriate charset maps when it finds a
1066 * charset control. However, the file might not contain one. In this
1067 * case, no map will be available. When the first attempt is made to
1068 * map a character under these circumstances, RTFMapChar() assumes ANSI
1069 * and reads the map as necessary.
1079 if (!haveGenCharSet
)
1081 if (RTFReadCharSetMap (rtfCSGeneral
) == 0)
1082 RTFPanic ("RTFMapChar: cannot read ansi-gen");
1086 if (!haveSymCharSet
)
1088 if (RTFReadCharSetMap (rtfCSSymbol
) == 0)
1089 RTFPanic ("RTFMapChar: cannot read ansi-sym");
1093 if (c
< 0 || c
>= charSetSize
)
1094 return (rtfSC_nothing
);
1095 return (curCharCode
[c
]);
1100 * Set the current character set. If csId is illegal, uses general charset.
1104 RTFSetCharSet (csId
)
1109 default: /* use general if csId unknown */
1111 curCharCode
= genCharCode
;
1115 curCharCode
= symCharCode
;
1125 return (curCharSet
);
1129 /* ---------------------------------------------------------------------- */
1132 * Special destination readers. They gobble the destination so the
1133 * writer doesn't have to deal with them. That's wrong for any
1134 * translator that wants to process any of these itself. In that
1135 * case, these readers should be overridden by installing a different
1136 * destination callback.
1138 * NOTE: The last token read by each of these reader will be the
1139 * destination's terminating '}', which will then be the current token.
1140 * That '}' token is passed to RTFRouteToken() - the writer has already
1141 * seen the '{' that began the destination group, and may have pushed a
1142 * state; it also needs to know at the end of the group that a state
1145 * It's important that rtf.h and the control token lookup table list
1146 * as many symbols as possible, because these destination readers
1147 * unfortunately make strict assumptions about the input they expect,
1148 * and a token of class rtfUnknown will throw them off easily.
1153 * Read { \fonttbl ... } destination. Old font tables don't have
1154 * braces around each table entry; try to adjust for that.
1161 char buf
[rtfBufSiz
], *bp
;
1163 char *fn
= "ReadFontTbl";
1167 (void) RTFGetToken ();
1168 if (RTFCheckCM (rtfGroup
, rtfEndGroup
))
1170 if (old
< 0) /* first entry - determine tbl type */
1172 if (RTFCheckCMM (rtfControl
, rtfCharAttr
, rtfFontNum
))
1173 old
= 1; /* no brace */
1174 else if (RTFCheckCM (rtfGroup
, rtfBeginGroup
))
1175 old
= 0; /* brace */
1176 else /* can't tell! */
1177 RTFPanic ("%s: Cannot determine format", fn
);
1179 if (old
== 0) /* need to find "{" here */
1181 if (!RTFCheckCM (rtfGroup
, rtfBeginGroup
))
1182 RTFPanic ("%s: missing \"{\"", fn
);
1183 (void) RTFGetToken (); /* yes, skip to next token */
1185 if ((fp
= New (RTFFont
)) == (RTFFont
*) NULL
)
1186 RTFPanic ("%s: cannot allocate font entry", fn
);
1188 fp
->rtfNextFont
= fontList
;
1191 fp
->rtfFName
= (char *) NULL
;
1192 fp
->rtfFAltName
= (char *) NULL
;
1195 fp
->rtfFCharSet
= 0;
1198 fp
->rtfFCodePage
= 0;
1200 while (rtfClass
!= rtfEOF
1201 && !RTFCheckCM (rtfText
, ';')
1202 && !RTFCheckCM (rtfGroup
, rtfEndGroup
))
1204 if (rtfClass
== rtfControl
)
1209 /* ignore token but announce it */
1210 RTFMsg ("%s: unknown token \"%s\"\n",
1213 fp
->rtfFFamily
= rtfMinor
;
1219 break; /* ignore unknown? */
1221 fp
->rtfFNum
= rtfParam
;
1229 break; /* ignore unknown? */
1230 case rtfFontCharSet
:
1231 fp
->rtfFCharSet
= rtfParam
;
1234 fp
->rtfFPitch
= rtfParam
;
1236 case rtfFontCodePage
:
1237 fp
->rtfFCodePage
= rtfParam
;
1240 case rtfFTypeTrueType
:
1241 fp
->rtfFType
= rtfParam
;
1247 else if (RTFCheckCM (rtfGroup
, rtfBeginGroup
)) /* dest */
1249 RTFSkipGroup (); /* ignore for now */
1251 else if (rtfClass
== rtfText
) /* font name */
1254 while (rtfClass
!= rtfEOF
1255 && !RTFCheckCM (rtfText
, ';')
1256 && !RTFCheckCM (rtfGroup
, rtfEndGroup
))
1259 (void) RTFGetToken ();
1262 /* FIX: in some cases the <fontinfo> isn't finished with a semi-column */
1263 if(RTFCheckCM (rtfGroup
, rtfEndGroup
))
1268 fp
->rtfFName
= RTFStrSave (buf
);
1269 if (fp
->rtfFName
== (char *) NULL
)
1270 RTFPanic ("%s: cannot allocate font name", fn
);
1271 /* already have next token; don't read one */
1272 /* at bottom of loop */
1277 /* ignore token but announce it */
1278 RTFMsg ("%s: unknown token \"%s\"\n",
1281 (void) RTFGetToken ();
1283 if (old
== 0) /* need to see "}" here */
1285 (void) RTFGetToken ();
1286 if (!RTFCheckCM (rtfGroup
, rtfEndGroup
))
1287 RTFPanic ("%s: missing \"}\"", fn
);
1290 if (fp
->rtfFNum
== -1)
1291 RTFPanic ("%s: missing font number", fn
);
1293 * Could check other pieces of structure here, too, I suppose.
1295 RTFRouteToken (); /* feed "}" back to router */
1300 * The color table entries have color values of -1 if
1301 * the default color should be used for the entry (only
1302 * a semi-colon is given in the definition, no color values).
1303 * There will be a problem if a partial entry (1 or 2 but
1304 * not 3 color values) is given. The possibility is ignored
1313 char *fn
= "ReadColorTbl";
1317 (void) RTFGetToken ();
1318 if (RTFCheckCM (rtfGroup
, rtfEndGroup
))
1320 if ((cp
= New (RTFColor
)) == (RTFColor
*) NULL
)
1321 RTFPanic ("%s: cannot allocate color entry", fn
);
1322 cp
->rtfCNum
= cnum
++;
1323 cp
->rtfCRed
= cp
->rtfCGreen
= cp
->rtfCBlue
= -1;
1324 cp
->rtfNextColor
= colorList
;
1326 while (RTFCheckCM (rtfControl
, rtfColorName
))
1330 case rtfRed
: cp
->rtfCRed
= rtfParam
; break;
1331 case rtfGreen
: cp
->rtfCGreen
= rtfParam
; break;
1332 case rtfBlue
: cp
->rtfCBlue
= rtfParam
; break;
1336 if (!RTFCheckCM (rtfText
, (int) ';'))
1337 RTFPanic ("%s: malformed entry", fn
);
1339 RTFRouteToken (); /* feed "}" back to router */
1344 * The "Normal" style definition doesn't contain any style number,
1345 * all others do. Normal style is given style rtfNormalStyleNum.
1352 RTFStyleElt
*sep
, *sepLast
;
1353 char buf
[rtfBufSiz
], *bp
;
1354 char *fn
= "ReadStyleSheet";
1358 (void) RTFGetToken ();
1359 if (RTFCheckCM (rtfGroup
, rtfEndGroup
))
1361 if ((sp
= New (RTFStyle
)) == (RTFStyle
*) NULL
)
1362 RTFPanic ("%s: cannot allocate stylesheet entry", fn
);
1363 sp
->rtfSName
= (char *) NULL
;
1365 sp
->rtfSType
= rtfParStyle
;
1366 sp
->rtfSAdditive
= 0;
1367 sp
->rtfSBasedOn
= rtfNoStyleNum
;
1368 sp
->rtfSNextPar
= -1;
1369 sp
->rtfSSEList
= sepLast
= (RTFStyleElt
*) NULL
;
1370 sp
->rtfNextStyle
= styleList
;
1371 sp
->rtfExpanding
= 0;
1373 if (!RTFCheckCM (rtfGroup
, rtfBeginGroup
))
1374 RTFPanic ("%s: missing \"{\"", fn
);
1377 (void) RTFGetToken ();
1378 if (rtfClass
== rtfEOF
1379 || RTFCheckCM (rtfText
, ';'))
1381 if (rtfClass
== rtfControl
)
1383 if (RTFCheckMM (rtfSpecialChar
, rtfOptDest
))
1384 continue; /* ignore "\*" */
1385 if (RTFCheckMM (rtfParAttr
, rtfStyleNum
))
1387 sp
->rtfSNum
= rtfParam
;
1388 sp
->rtfSType
= rtfParStyle
;
1391 if (RTFCheckMM (rtfCharAttr
, rtfCharStyleNum
))
1393 sp
->rtfSNum
= rtfParam
;
1394 sp
->rtfSType
= rtfCharStyle
;
1397 if (RTFCheckMM (rtfSectAttr
, rtfSectStyleNum
))
1399 sp
->rtfSNum
= rtfParam
;
1400 sp
->rtfSType
= rtfSectStyle
;
1403 if (RTFCheckMM (rtfStyleAttr
, rtfBasedOn
))
1405 sp
->rtfSBasedOn
= rtfParam
;
1408 if (RTFCheckMM (rtfStyleAttr
, rtfAdditive
))
1410 sp
->rtfSAdditive
= 1;
1413 if (RTFCheckMM (rtfStyleAttr
, rtfNext
))
1415 sp
->rtfSNextPar
= rtfParam
;
1418 if ((sep
= New (RTFStyleElt
)) == (RTFStyleElt
*) NULL
)
1419 RTFPanic ("%s: cannot allocate style element", fn
);
1420 sep
->rtfSEClass
= rtfClass
;
1421 sep
->rtfSEMajor
= rtfMajor
;
1422 sep
->rtfSEMinor
= rtfMinor
;
1423 sep
->rtfSEParam
= rtfParam
;
1424 if ((sep
->rtfSEText
= RTFStrSave (rtfTextBuf
))
1426 RTFPanic ("%s: cannot allocate style element text", fn
);
1427 if (sepLast
== (RTFStyleElt
*) NULL
)
1428 sp
->rtfSSEList
= sep
; /* first element */
1429 else /* add to end */
1430 sepLast
->rtfNextSE
= sep
;
1431 sep
->rtfNextSE
= (RTFStyleElt
*) NULL
;
1434 else if (RTFCheckCM (rtfGroup
, rtfBeginGroup
))
1437 * This passes over "{\*\keycode ... }, among
1438 * other things. A temporary (perhaps) hack.
1443 else if (rtfClass
== rtfText
) /* style name */
1446 while (rtfClass
== rtfText
)
1448 if (rtfMajor
== ';')
1450 /* put back for "for" loop */
1451 (void) RTFUngetToken ();
1455 (void) RTFGetToken ();
1458 if ((sp
->rtfSName
= RTFStrSave (buf
)) == (char *) NULL
)
1459 RTFPanic ("%s: cannot allocate style name", fn
);
1461 else /* unrecognized */
1463 /* ignore token but announce it */
1464 RTFMsg ("%s: unknown token \"%s\"\n",
1468 (void) RTFGetToken ();
1469 if (!RTFCheckCM (rtfGroup
, rtfEndGroup
))
1470 RTFPanic ("%s: missing \"}\"", fn
);
1473 * Check over the style structure. A name is a must.
1474 * If no style number was specified, check whether it's the
1475 * Normal style (in which case it's given style number
1476 * rtfNormalStyleNum). Note that some "normal" style names
1477 * just begin with "Normal" and can have other stuff following,
1478 * e.g., "Normal,Times 10 point". Ugh.
1480 * Some German RTF writers use "Standard" instead of "Normal".
1482 if (sp
->rtfSName
== (char *) NULL
)
1483 RTFPanic ("%s: missing style name", fn
);
1484 if (sp
->rtfSNum
< 0)
1486 if (strncmp (buf
, "Normal", 6) != 0
1487 && strncmp (buf
, "Standard", 8) != 0)
1488 RTFPanic ("%s: missing style number", fn
);
1489 sp
->rtfSNum
= rtfNormalStyleNum
;
1491 if (sp
->rtfSNextPar
== -1) /* if \snext not given, */
1492 sp
->rtfSNextPar
= sp
->rtfSNum
; /* next is itself */
1494 RTFRouteToken (); /* feed "}" back to router */
1502 RTFRouteToken (); /* feed "}" back to router */
1510 RTFRouteToken (); /* feed "}" back to router */
1518 RTFRouteToken (); /* feed "}" back to router */
1522 /* ---------------------------------------------------------------------- */
1525 * Routines to return pieces of stylesheet, or font or color tables.
1526 * References to style 0 are mapped onto the Normal style.
1538 for (s
= styleList
; s
!= (RTFStyle
*) NULL
; s
= s
->rtfNextStyle
)
1540 if (s
->rtfSNum
== num
)
1543 return (s
); /* NULL if not found */
1555 for (f
= fontList
; f
!= (RTFFont
*) NULL
; f
= f
->rtfNextFont
)
1557 if (f
->rtfFNum
== num
)
1560 return (f
); /* NULL if not found */
1572 for (c
= colorList
; c
!= (RTFColor
*) NULL
; c
= c
->rtfNextColor
)
1574 if (c
->rtfCNum
== num
)
1577 return (c
); /* NULL if not found */
1581 /* ---------------------------------------------------------------------- */
1585 * Expand style n, if there is such a style.
1595 if (n
== -1 || (s
= RTFGetStyle (n
)) == (RTFStyle
*) NULL
)
1597 if (s
->rtfExpanding
!= 0)
1598 RTFPanic ("Style expansion loop, style %d", n
);
1599 s
->rtfExpanding
= 1; /* set expansion flag for loop detection */
1601 * Expand "based-on" style (unless it's the same as the current
1602 * style -- Normal style usually gives itself as its own based-on
1603 * style). Based-on style expansion is done by synthesizing
1604 * the token that the writer needs to see in order to trigger
1605 * another style expansion, and feeding to token back through
1606 * the router so the writer sees it.
1608 if (n
!= s
->rtfSBasedOn
)
1610 RTFSetToken (rtfControl
, rtfParAttr
, rtfStyleNum
,
1611 s
->rtfSBasedOn
, "\\s");
1615 * Now route the tokens unique to this style. RTFSetToken()
1616 * isn't used because it would add the param value to the end
1617 * of the token text, which already has it in.
1619 for (se
= s
->rtfSSEList
; se
!= (RTFStyleElt
*) NULL
; se
= se
->rtfNextSE
)
1621 rtfClass
= se
->rtfSEClass
;
1622 rtfMajor
= se
->rtfSEMajor
;
1623 rtfMinor
= se
->rtfSEMinor
;
1624 rtfParam
= se
->rtfSEParam
;
1625 (void) strcpy (rtfTextBuf
, se
->rtfSEText
);
1626 rtfTextLen
= strlen (rtfTextBuf
);
1629 s
->rtfExpanding
= 0; /* done - clear expansion flag */
1633 /* ---------------------------------------------------------------------- */
1636 * Control symbol lookup routines
1640 typedef struct RTFKey RTFKey
;
1644 int rtfKMajor
; /* major number */
1645 int rtfKMinor
; /* minor number */
1646 char *rtfKStr
; /* symbol name */
1647 int rtfKHash
; /* symbol name hash value */
1651 * A minor number of -1 means the token has no minor number
1652 * (all valid minor numbers are >= 0).
1655 static RTFKey rtfKey
[] =
1658 * Special characters
1661 { rtfSpecialChar
, rtfIIntVersion
, "vern", 0 },
1662 { rtfSpecialChar
, rtfICreateTime
, "creatim", 0 },
1663 { rtfSpecialChar
, rtfIRevisionTime
, "revtim", 0 },
1664 { rtfSpecialChar
, rtfIPrintTime
, "printim", 0 },
1665 { rtfSpecialChar
, rtfIBackupTime
, "buptim", 0 },
1666 { rtfSpecialChar
, rtfIEditTime
, "edmins", 0 },
1667 { rtfSpecialChar
, rtfIYear
, "yr", 0 },
1668 { rtfSpecialChar
, rtfIMonth
, "mo", 0 },
1669 { rtfSpecialChar
, rtfIDay
, "dy", 0 },
1670 { rtfSpecialChar
, rtfIHour
, "hr", 0 },
1671 { rtfSpecialChar
, rtfIMinute
, "min", 0 },
1672 { rtfSpecialChar
, rtfISecond
, "sec", 0 },
1673 { rtfSpecialChar
, rtfINPages
, "nofpages", 0 },
1674 { rtfSpecialChar
, rtfINWords
, "nofwords", 0 },
1675 { rtfSpecialChar
, rtfINChars
, "nofchars", 0 },
1676 { rtfSpecialChar
, rtfIIntID
, "id", 0 },
1678 { rtfSpecialChar
, rtfCurHeadDate
, "chdate", 0 },
1679 { rtfSpecialChar
, rtfCurHeadDateLong
, "chdpl", 0 },
1680 { rtfSpecialChar
, rtfCurHeadDateAbbrev
, "chdpa", 0 },
1681 { rtfSpecialChar
, rtfCurHeadTime
, "chtime", 0 },
1682 { rtfSpecialChar
, rtfCurHeadPage
, "chpgn", 0 },
1683 { rtfSpecialChar
, rtfSectNum
, "sectnum", 0 },
1684 { rtfSpecialChar
, rtfCurFNote
, "chftn", 0 },
1685 { rtfSpecialChar
, rtfCurAnnotRef
, "chatn", 0 },
1686 { rtfSpecialChar
, rtfFNoteSep
, "chftnsep", 0 },
1687 { rtfSpecialChar
, rtfFNoteCont
, "chftnsepc", 0 },
1688 { rtfSpecialChar
, rtfCell
, "cell", 0 },
1689 { rtfSpecialChar
, rtfRow
, "row", 0 },
1690 { rtfSpecialChar
, rtfPar
, "par", 0 },
1691 /* newline and carriage return are synonyms for */
1692 /* \par when they are preceded by a \ character */
1693 { rtfSpecialChar
, rtfPar
, "\n", 0 },
1694 { rtfSpecialChar
, rtfPar
, "\r", 0 },
1695 { rtfSpecialChar
, rtfSect
, "sect", 0 },
1696 { rtfSpecialChar
, rtfPage
, "page", 0 },
1697 { rtfSpecialChar
, rtfColumn
, "column", 0 },
1698 { rtfSpecialChar
, rtfLine
, "line", 0 },
1699 { rtfSpecialChar
, rtfSoftPage
, "softpage", 0 },
1700 { rtfSpecialChar
, rtfSoftColumn
, "softcol", 0 },
1701 { rtfSpecialChar
, rtfSoftLine
, "softline", 0 },
1702 { rtfSpecialChar
, rtfSoftLineHt
, "softlheight", 0 },
1703 { rtfSpecialChar
, rtfTab
, "tab", 0 },
1704 { rtfSpecialChar
, rtfEmDash
, "emdash", 0 },
1705 { rtfSpecialChar
, rtfEnDash
, "endash", 0 },
1706 { rtfSpecialChar
, rtfEmSpace
, "emspace", 0 },
1707 { rtfSpecialChar
, rtfEnSpace
, "enspace", 0 },
1708 { rtfSpecialChar
, rtfBullet
, "bullet", 0 },
1709 { rtfSpecialChar
, rtfLQuote
, "lquote", 0 },
1710 { rtfSpecialChar
, rtfRQuote
, "rquote", 0 },
1711 { rtfSpecialChar
, rtfLDblQuote
, "ldblquote", 0 },
1712 { rtfSpecialChar
, rtfRDblQuote
, "rdblquote", 0 },
1713 { rtfSpecialChar
, rtfFormula
, "|", 0 },
1714 { rtfSpecialChar
, rtfNoBrkSpace
, "~", 0 },
1715 { rtfSpecialChar
, rtfNoReqHyphen
, "-", 0 },
1716 { rtfSpecialChar
, rtfNoBrkHyphen
, "_", 0 },
1717 { rtfSpecialChar
, rtfOptDest
, "*", 0 },
1718 { rtfSpecialChar
, rtfLTRMark
, "ltrmark", 0 },
1719 { rtfSpecialChar
, rtfRTLMark
, "rtlmark", 0 },
1720 { rtfSpecialChar
, rtfNoWidthJoiner
, "zwj", 0 },
1721 { rtfSpecialChar
, rtfNoWidthNonJoiner
, "zwnj", 0 },
1722 /* is this valid? */
1723 { rtfSpecialChar
, rtfCurHeadPict
, "chpict", 0 },
1726 * Character formatting attributes
1729 { rtfCharAttr
, rtfPlain
, "plain", 0 },
1730 { rtfCharAttr
, rtfBold
, "b", 0 },
1731 { rtfCharAttr
, rtfAllCaps
, "caps", 0 },
1732 { rtfCharAttr
, rtfDeleted
, "deleted", 0 },
1733 { rtfCharAttr
, rtfSubScript
, "dn", 0 },
1734 { rtfCharAttr
, rtfSubScrShrink
, "sub", 0 },
1735 { rtfCharAttr
, rtfNoSuperSub
, "nosupersub", 0 },
1736 { rtfCharAttr
, rtfExpand
, "expnd", 0 },
1737 { rtfCharAttr
, rtfExpandTwips
, "expndtw", 0 },
1738 { rtfCharAttr
, rtfKerning
, "kerning", 0 },
1739 { rtfCharAttr
, rtfFontNum
, "f", 0 },
1740 { rtfCharAttr
, rtfFontSize
, "fs", 0 },
1741 { rtfCharAttr
, rtfItalic
, "i", 0 },
1742 { rtfCharAttr
, rtfOutline
, "outl", 0 },
1743 { rtfCharAttr
, rtfRevised
, "revised", 0 },
1744 { rtfCharAttr
, rtfRevAuthor
, "revauth", 0 },
1745 { rtfCharAttr
, rtfRevDTTM
, "revdttm", 0 },
1746 { rtfCharAttr
, rtfSmallCaps
, "scaps", 0 },
1747 { rtfCharAttr
, rtfShadow
, "shad", 0 },
1748 { rtfCharAttr
, rtfStrikeThru
, "strike", 0 },
1749 { rtfCharAttr
, rtfUnderline
, "ul", 0 },
1750 { rtfCharAttr
, rtfDotUnderline
, "uld", 0 },
1751 { rtfCharAttr
, rtfDbUnderline
, "uldb", 0 },
1752 { rtfCharAttr
, rtfNoUnderline
, "ulnone", 0 },
1753 { rtfCharAttr
, rtfWordUnderline
, "ulw", 0 },
1754 { rtfCharAttr
, rtfSuperScript
, "up", 0 },
1755 { rtfCharAttr
, rtfSuperScrShrink
, "super", 0 },
1756 { rtfCharAttr
, rtfInvisible
, "v", 0 },
1757 { rtfCharAttr
, rtfForeColor
, "cf", 0 },
1758 { rtfCharAttr
, rtfBackColor
, "cb", 0 },
1759 { rtfCharAttr
, rtfRTLChar
, "rtlch", 0 },
1760 { rtfCharAttr
, rtfLTRChar
, "ltrch", 0 },
1761 { rtfCharAttr
, rtfCharStyleNum
, "cs", 0 },
1762 { rtfCharAttr
, rtfCharCharSet
, "cchs", 0 },
1763 { rtfCharAttr
, rtfLanguage
, "lang", 0 },
1764 /* this has disappeared from spec 1.2 */
1765 { rtfCharAttr
, rtfGray
, "gray", 0 },
1768 * Paragraph formatting attributes
1771 { rtfParAttr
, rtfParDef
, "pard", 0 },
1772 { rtfParAttr
, rtfStyleNum
, "s", 0 },
1773 { rtfParAttr
, rtfHyphenate
, "hyphpar", 0 },
1774 { rtfParAttr
, rtfInTable
, "intbl", 0 },
1775 { rtfParAttr
, rtfKeep
, "keep", 0 },
1776 { rtfParAttr
, rtfNoWidowControl
, "nowidctlpar", 0 },
1777 { rtfParAttr
, rtfKeepNext
, "keepn", 0 },
1778 { rtfParAttr
, rtfOutlineLevel
, "level", 0 },
1779 { rtfParAttr
, rtfNoLineNum
, "noline", 0 },
1780 { rtfParAttr
, rtfPBBefore
, "pagebb", 0 },
1781 { rtfParAttr
, rtfSideBySide
, "sbys", 0 },
1782 { rtfParAttr
, rtfQuadLeft
, "ql", 0 },
1783 { rtfParAttr
, rtfQuadRight
, "qr", 0 },
1784 { rtfParAttr
, rtfQuadJust
, "qj", 0 },
1785 { rtfParAttr
, rtfQuadCenter
, "qc", 0 },
1786 { rtfParAttr
, rtfFirstIndent
, "fi", 0 },
1787 { rtfParAttr
, rtfLeftIndent
, "li", 0 },
1788 { rtfParAttr
, rtfRightIndent
, "ri", 0 },
1789 { rtfParAttr
, rtfSpaceBefore
, "sb", 0 },
1790 { rtfParAttr
, rtfSpaceAfter
, "sa", 0 },
1791 { rtfParAttr
, rtfSpaceBetween
, "sl", 0 },
1792 { rtfParAttr
, rtfSpaceMultiply
, "slmult", 0 },
1794 { rtfParAttr
, rtfSubDocument
, "subdocument", 0 },
1796 { rtfParAttr
, rtfRTLPar
, "rtlpar", 0 },
1797 { rtfParAttr
, rtfLTRPar
, "ltrpar", 0 },
1799 { rtfParAttr
, rtfTabPos
, "tx", 0 },
1801 * FrameMaker writes \tql (to mean left-justified tab, apparently)
1802 * although it's not in the spec. It's also redundant, since lj
1803 * tabs are the default.
1805 { rtfParAttr
, rtfTabLeft
, "tql", 0 },
1806 { rtfParAttr
, rtfTabRight
, "tqr", 0 },
1807 { rtfParAttr
, rtfTabCenter
, "tqc", 0 },
1808 { rtfParAttr
, rtfTabDecimal
, "tqdec", 0 },
1809 { rtfParAttr
, rtfTabBar
, "tb", 0 },
1810 { rtfParAttr
, rtfLeaderDot
, "tldot", 0 },
1811 { rtfParAttr
, rtfLeaderHyphen
, "tlhyph", 0 },
1812 { rtfParAttr
, rtfLeaderUnder
, "tlul", 0 },
1813 { rtfParAttr
, rtfLeaderThick
, "tlth", 0 },
1814 { rtfParAttr
, rtfLeaderEqual
, "tleq", 0 },
1816 { rtfParAttr
, rtfParLevel
, "pnlvl", 0 },
1817 { rtfParAttr
, rtfParBullet
, "pnlvlblt", 0 },
1818 { rtfParAttr
, rtfParSimple
, "pnlvlbody", 0 },
1819 { rtfParAttr
, rtfParNumCont
, "pnlvlcont", 0 },
1820 { rtfParAttr
, rtfParNumOnce
, "pnnumonce", 0 },
1821 { rtfParAttr
, rtfParNumAcross
, "pnacross", 0 },
1822 { rtfParAttr
, rtfParHangIndent
, "pnhang", 0 },
1823 { rtfParAttr
, rtfParNumRestart
, "pnrestart", 0 },
1824 { rtfParAttr
, rtfParNumCardinal
, "pncard", 0 },
1825 { rtfParAttr
, rtfParNumDecimal
, "pndec", 0 },
1826 { rtfParAttr
, rtfParNumULetter
, "pnucltr", 0 },
1827 { rtfParAttr
, rtfParNumURoman
, "pnucrm", 0 },
1828 { rtfParAttr
, rtfParNumLLetter
, "pnlcltr", 0 },
1829 { rtfParAttr
, rtfParNumLRoman
, "pnlcrm", 0 },
1830 { rtfParAttr
, rtfParNumOrdinal
, "pnord", 0 },
1831 { rtfParAttr
, rtfParNumOrdinalText
, "pnordt", 0 },
1832 { rtfParAttr
, rtfParNumBold
, "pnb", 0 },
1833 { rtfParAttr
, rtfParNumItalic
, "pni", 0 },
1834 { rtfParAttr
, rtfParNumAllCaps
, "pncaps", 0 },
1835 { rtfParAttr
, rtfParNumSmallCaps
, "pnscaps", 0 },
1836 { rtfParAttr
, rtfParNumUnder
, "pnul", 0 },
1837 { rtfParAttr
, rtfParNumDotUnder
, "pnuld", 0 },
1838 { rtfParAttr
, rtfParNumDbUnder
, "pnuldb", 0 },
1839 { rtfParAttr
, rtfParNumNoUnder
, "pnulnone", 0 },
1840 { rtfParAttr
, rtfParNumWordUnder
, "pnulw", 0 },
1841 { rtfParAttr
, rtfParNumStrikethru
, "pnstrike", 0 },
1842 { rtfParAttr
, rtfParNumForeColor
, "pncf", 0 },
1843 { rtfParAttr
, rtfParNumFont
, "pnf", 0 },
1844 { rtfParAttr
, rtfParNumFontSize
, "pnfs", 0 },
1845 { rtfParAttr
, rtfParNumIndent
, "pnindent", 0 },
1846 { rtfParAttr
, rtfParNumSpacing
, "pnsp", 0 },
1847 { rtfParAttr
, rtfParNumInclPrev
, "pnprev", 0 },
1848 { rtfParAttr
, rtfParNumCenter
, "pnqc", 0 },
1849 { rtfParAttr
, rtfParNumLeft
, "pnql", 0 },
1850 { rtfParAttr
, rtfParNumRight
, "pnqr", 0 },
1851 { rtfParAttr
, rtfParNumStartAt
, "pnstart", 0 },
1853 { rtfParAttr
, rtfBorderTop
, "brdrt", 0 },
1854 { rtfParAttr
, rtfBorderBottom
, "brdrb", 0 },
1855 { rtfParAttr
, rtfBorderLeft
, "brdrl", 0 },
1856 { rtfParAttr
, rtfBorderRight
, "brdrr", 0 },
1857 { rtfParAttr
, rtfBorderBetween
, "brdrbtw", 0 },
1858 { rtfParAttr
, rtfBorderBar
, "brdrbar", 0 },
1859 { rtfParAttr
, rtfBorderBox
, "box", 0 },
1860 { rtfParAttr
, rtfBorderSingle
, "brdrs", 0 },
1861 { rtfParAttr
, rtfBorderThick
, "brdrth", 0 },
1862 { rtfParAttr
, rtfBorderShadow
, "brdrsh", 0 },
1863 { rtfParAttr
, rtfBorderDouble
, "brdrdb", 0 },
1864 { rtfParAttr
, rtfBorderDot
, "brdrdot", 0 },
1865 { rtfParAttr
, rtfBorderDot
, "brdrdash", 0 },
1866 { rtfParAttr
, rtfBorderHair
, "brdrhair", 0 },
1867 { rtfParAttr
, rtfBorderWidth
, "brdrw", 0 },
1868 { rtfParAttr
, rtfBorderColor
, "brdrcf", 0 },
1869 { rtfParAttr
, rtfBorderSpace
, "brsp", 0 },
1871 { rtfParAttr
, rtfShading
, "shading", 0 },
1872 { rtfParAttr
, rtfBgPatH
, "bghoriz", 0 },
1873 { rtfParAttr
, rtfBgPatV
, "bgvert", 0 },
1874 { rtfParAttr
, rtfFwdDiagBgPat
, "bgfdiag", 0 },
1875 { rtfParAttr
, rtfBwdDiagBgPat
, "bgbdiag", 0 },
1876 { rtfParAttr
, rtfHatchBgPat
, "bgcross", 0 },
1877 { rtfParAttr
, rtfDiagHatchBgPat
, "bgdcross", 0 },
1878 { rtfParAttr
, rtfDarkBgPatH
, "bgdkhoriz", 0 },
1879 { rtfParAttr
, rtfDarkBgPatV
, "bgdkvert", 0 },
1880 { rtfParAttr
, rtfFwdDarkBgPat
, "bgdkfdiag", 0 },
1881 { rtfParAttr
, rtfBwdDarkBgPat
, "bgdkbdiag", 0 },
1882 { rtfParAttr
, rtfDarkHatchBgPat
, "bgdkcross", 0 },
1883 { rtfParAttr
, rtfDarkDiagHatchBgPat
, "bgdkdcross", 0 },
1884 { rtfParAttr
, rtfBgPatLineColor
, "cfpat", 0 },
1885 { rtfParAttr
, rtfBgPatColor
, "cbpat", 0 },
1888 * Section formatting attributes
1891 { rtfSectAttr
, rtfSectDef
, "sectd", 0 },
1892 { rtfSectAttr
, rtfENoteHere
, "endnhere", 0 },
1893 { rtfSectAttr
, rtfPrtBinFirst
, "binfsxn", 0 },
1894 { rtfSectAttr
, rtfPrtBin
, "binsxn", 0 },
1895 { rtfSectAttr
, rtfSectStyleNum
, "ds", 0 },
1897 { rtfSectAttr
, rtfNoBreak
, "sbknone", 0 },
1898 { rtfSectAttr
, rtfColBreak
, "sbkcol", 0 },
1899 { rtfSectAttr
, rtfPageBreak
, "sbkpage", 0 },
1900 { rtfSectAttr
, rtfEvenBreak
, "sbkeven", 0 },
1901 { rtfSectAttr
, rtfOddBreak
, "sbkodd", 0 },
1903 { rtfSectAttr
, rtfColumns
, "cols", 0 },
1904 { rtfSectAttr
, rtfColumnSpace
, "colsx", 0 },
1905 { rtfSectAttr
, rtfColumnNumber
, "colno", 0 },
1906 { rtfSectAttr
, rtfColumnSpRight
, "colsr", 0 },
1907 { rtfSectAttr
, rtfColumnWidth
, "colw", 0 },
1908 { rtfSectAttr
, rtfColumnLine
, "linebetcol", 0 },
1910 { rtfSectAttr
, rtfLineModulus
, "linemod", 0 },
1911 { rtfSectAttr
, rtfLineDist
, "linex", 0 },
1912 { rtfSectAttr
, rtfLineStarts
, "linestarts", 0 },
1913 { rtfSectAttr
, rtfLineRestart
, "linerestart", 0 },
1914 { rtfSectAttr
, rtfLineRestartPg
, "lineppage", 0 },
1915 { rtfSectAttr
, rtfLineCont
, "linecont", 0 },
1917 { rtfSectAttr
, rtfSectPageWid
, "pgwsxn", 0 },
1918 { rtfSectAttr
, rtfSectPageHt
, "pghsxn", 0 },
1919 { rtfSectAttr
, rtfSectMarginLeft
, "marglsxn", 0 },
1920 { rtfSectAttr
, rtfSectMarginRight
, "margrsxn", 0 },
1921 { rtfSectAttr
, rtfSectMarginTop
, "margtsxn", 0 },
1922 { rtfSectAttr
, rtfSectMarginBottom
, "margbsxn", 0 },
1923 { rtfSectAttr
, rtfSectMarginGutter
, "guttersxn", 0 },
1924 { rtfSectAttr
, rtfSectLandscape
, "lndscpsxn", 0 },
1925 { rtfSectAttr
, rtfTitleSpecial
, "titlepg", 0 },
1926 { rtfSectAttr
, rtfHeaderY
, "headery", 0 },
1927 { rtfSectAttr
, rtfFooterY
, "footery", 0 },
1929 { rtfSectAttr
, rtfPageStarts
, "pgnstarts", 0 },
1930 { rtfSectAttr
, rtfPageCont
, "pgncont", 0 },
1931 { rtfSectAttr
, rtfPageRestart
, "pgnrestart", 0 },
1932 { rtfSectAttr
, rtfPageNumRight
, "pgnx", 0 },
1933 { rtfSectAttr
, rtfPageNumTop
, "pgny", 0 },
1934 { rtfSectAttr
, rtfPageDecimal
, "pgndec", 0 },
1935 { rtfSectAttr
, rtfPageURoman
, "pgnucrm", 0 },
1936 { rtfSectAttr
, rtfPageLRoman
, "pgnlcrm", 0 },
1937 { rtfSectAttr
, rtfPageULetter
, "pgnucltr", 0 },
1938 { rtfSectAttr
, rtfPageLLetter
, "pgnlcltr", 0 },
1939 { rtfSectAttr
, rtfPageNumHyphSep
, "pgnhnsh", 0 },
1940 { rtfSectAttr
, rtfPageNumSpaceSep
, "pgnhnsp", 0 },
1941 { rtfSectAttr
, rtfPageNumColonSep
, "pgnhnsc", 0 },
1942 { rtfSectAttr
, rtfPageNumEmdashSep
, "pgnhnsm", 0 },
1943 { rtfSectAttr
, rtfPageNumEndashSep
, "pgnhnsn", 0 },
1945 { rtfSectAttr
, rtfTopVAlign
, "vertalt", 0 },
1946 /* misspelled as "vertal" in specification 1.0 */
1947 { rtfSectAttr
, rtfBottomVAlign
, "vertalb", 0 },
1948 { rtfSectAttr
, rtfCenterVAlign
, "vertalc", 0 },
1949 { rtfSectAttr
, rtfJustVAlign
, "vertalj", 0 },
1951 { rtfSectAttr
, rtfRTLSect
, "rtlsect", 0 },
1952 { rtfSectAttr
, rtfLTRSect
, "ltrsect", 0 },
1954 /* I've seen these in an old spec, but not in real files... */
1955 /*rtfSectAttr, rtfNoBreak, "nobreak", 0,*/
1956 /*rtfSectAttr, rtfColBreak, "colbreak", 0,*/
1957 /*rtfSectAttr, rtfPageBreak, "pagebreak", 0,*/
1958 /*rtfSectAttr, rtfEvenBreak, "evenbreak", 0,*/
1959 /*rtfSectAttr, rtfOddBreak, "oddbreak", 0,*/
1962 * Document formatting attributes
1965 { rtfDocAttr
, rtfDefTab
, "deftab", 0 },
1966 { rtfDocAttr
, rtfHyphHotZone
, "hyphhotz", 0 },
1967 { rtfDocAttr
, rtfHyphConsecLines
, "hyphconsec", 0 },
1968 { rtfDocAttr
, rtfHyphCaps
, "hyphcaps", 0 },
1969 { rtfDocAttr
, rtfHyphAuto
, "hyphauto", 0 },
1970 { rtfDocAttr
, rtfLineStart
, "linestart", 0 },
1971 { rtfDocAttr
, rtfFracWidth
, "fracwidth", 0 },
1972 /* \makeback was given in old version of spec, it's now */
1973 /* listed as \makebackup */
1974 { rtfDocAttr
, rtfMakeBackup
, "makeback", 0 },
1975 { rtfDocAttr
, rtfMakeBackup
, "makebackup", 0 },
1976 { rtfDocAttr
, rtfRTFDefault
, "defformat", 0 },
1977 { rtfDocAttr
, rtfPSOverlay
, "psover", 0 },
1978 { rtfDocAttr
, rtfDocTemplate
, "doctemp", 0 },
1979 { rtfDocAttr
, rtfDefLanguage
, "deflang", 0 },
1981 { rtfDocAttr
, rtfFENoteType
, "fet", 0 },
1982 { rtfDocAttr
, rtfFNoteEndSect
, "endnotes", 0 },
1983 { rtfDocAttr
, rtfFNoteEndDoc
, "enddoc", 0 },
1984 { rtfDocAttr
, rtfFNoteText
, "ftntj", 0 },
1985 { rtfDocAttr
, rtfFNoteBottom
, "ftnbj", 0 },
1986 { rtfDocAttr
, rtfENoteEndSect
, "aendnotes", 0 },
1987 { rtfDocAttr
, rtfENoteEndDoc
, "aenddoc", 0 },
1988 { rtfDocAttr
, rtfENoteText
, "aftntj", 0 },
1989 { rtfDocAttr
, rtfENoteBottom
, "aftnbj", 0 },
1990 { rtfDocAttr
, rtfFNoteStart
, "ftnstart", 0 },
1991 { rtfDocAttr
, rtfENoteStart
, "aftnstart", 0 },
1992 { rtfDocAttr
, rtfFNoteRestartPage
, "ftnrstpg", 0 },
1993 { rtfDocAttr
, rtfFNoteRestart
, "ftnrestart", 0 },
1994 { rtfDocAttr
, rtfFNoteRestartCont
, "ftnrstcont", 0 },
1995 { rtfDocAttr
, rtfENoteRestart
, "aftnrestart", 0 },
1996 { rtfDocAttr
, rtfENoteRestartCont
, "aftnrstcont", 0 },
1997 { rtfDocAttr
, rtfFNoteNumArabic
, "ftnnar", 0 },
1998 { rtfDocAttr
, rtfFNoteNumLLetter
, "ftnnalc", 0 },
1999 { rtfDocAttr
, rtfFNoteNumULetter
, "ftnnauc", 0 },
2000 { rtfDocAttr
, rtfFNoteNumLRoman
, "ftnnrlc", 0 },
2001 { rtfDocAttr
, rtfFNoteNumURoman
, "ftnnruc", 0 },
2002 { rtfDocAttr
, rtfFNoteNumChicago
, "ftnnchi", 0 },
2003 { rtfDocAttr
, rtfENoteNumArabic
, "aftnnar", 0 },
2004 { rtfDocAttr
, rtfENoteNumLLetter
, "aftnnalc", 0 },
2005 { rtfDocAttr
, rtfENoteNumULetter
, "aftnnauc", 0 },
2006 { rtfDocAttr
, rtfENoteNumLRoman
, "aftnnrlc", 0 },
2007 { rtfDocAttr
, rtfENoteNumURoman
, "aftnnruc", 0 },
2008 { rtfDocAttr
, rtfENoteNumChicago
, "aftnnchi", 0 },
2010 { rtfDocAttr
, rtfPaperWidth
, "paperw", 0 },
2011 { rtfDocAttr
, rtfPaperHeight
, "paperh", 0 },
2012 { rtfDocAttr
, rtfPaperSize
, "psz", 0 },
2013 { rtfDocAttr
, rtfLeftMargin
, "margl", 0 },
2014 { rtfDocAttr
, rtfRightMargin
, "margr", 0 },
2015 { rtfDocAttr
, rtfTopMargin
, "margt", 0 },
2016 { rtfDocAttr
, rtfBottomMargin
, "margb", 0 },
2017 { rtfDocAttr
, rtfFacingPage
, "facingp", 0 },
2018 { rtfDocAttr
, rtfGutterWid
, "gutter", 0 },
2019 { rtfDocAttr
, rtfMirrorMargin
, "margmirror", 0 },
2020 { rtfDocAttr
, rtfLandscape
, "landscape", 0 },
2021 { rtfDocAttr
, rtfPageStart
, "pgnstart", 0 },
2022 { rtfDocAttr
, rtfWidowCtrl
, "widowctrl", 0 },
2024 { rtfDocAttr
, rtfLinkStyles
, "linkstyles", 0 },
2026 { rtfDocAttr
, rtfNoAutoTabIndent
, "notabind", 0 },
2027 { rtfDocAttr
, rtfWrapSpaces
, "wraptrsp", 0 },
2028 { rtfDocAttr
, rtfPrintColorsBlack
, "prcolbl", 0 },
2029 { rtfDocAttr
, rtfNoExtraSpaceRL
, "noextrasprl", 0 },
2030 { rtfDocAttr
, rtfNoColumnBalance
, "nocolbal", 0 },
2031 { rtfDocAttr
, rtfCvtMailMergeQuote
, "cvmme", 0 },
2032 { rtfDocAttr
, rtfSuppressTopSpace
, "sprstsp", 0 },
2033 { rtfDocAttr
, rtfSuppressPreParSpace
, "sprsspbf", 0 },
2034 { rtfDocAttr
, rtfCombineTblBorders
, "otblrul", 0 },
2035 { rtfDocAttr
, rtfTranspMetafiles
, "transmf", 0 },
2036 { rtfDocAttr
, rtfSwapBorders
, "swpbdr", 0 },
2037 { rtfDocAttr
, rtfShowHardBreaks
, "brkfrm", 0 },
2039 { rtfDocAttr
, rtfFormProtected
, "formprot", 0 },
2040 { rtfDocAttr
, rtfAllProtected
, "allprot", 0 },
2041 { rtfDocAttr
, rtfFormShading
, "formshade", 0 },
2042 { rtfDocAttr
, rtfFormDisplay
, "formdisp", 0 },
2043 { rtfDocAttr
, rtfPrintData
, "printdata", 0 },
2045 { rtfDocAttr
, rtfRevProtected
, "revprot", 0 },
2046 { rtfDocAttr
, rtfRevisions
, "revisions", 0 },
2047 { rtfDocAttr
, rtfRevDisplay
, "revprop", 0 },
2048 { rtfDocAttr
, rtfRevBar
, "revbar", 0 },
2050 { rtfDocAttr
, rtfAnnotProtected
, "annotprot", 0 },
2052 { rtfDocAttr
, rtfRTLDoc
, "rtldoc", 0 },
2053 { rtfDocAttr
, rtfLTRDoc
, "ltrdoc", 0 },
2059 { rtfStyleAttr
, rtfAdditive
, "additive", 0 },
2060 { rtfStyleAttr
, rtfBasedOn
, "sbasedon", 0 },
2061 { rtfStyleAttr
, rtfNext
, "snext", 0 },
2064 * Picture attributes
2067 { rtfPictAttr
, rtfMacQD
, "macpict", 0 },
2068 { rtfPictAttr
, rtfPMMetafile
, "pmmetafile", 0 },
2069 { rtfPictAttr
, rtfWinMetafile
, "wmetafile", 0 },
2070 { rtfPictAttr
, rtfDevIndBitmap
, "dibitmap", 0 },
2071 { rtfPictAttr
, rtfWinBitmap
, "wbitmap", 0 },
2072 { rtfPictAttr
, rtfPixelBits
, "wbmbitspixel", 0 },
2073 { rtfPictAttr
, rtfBitmapPlanes
, "wbmplanes", 0 },
2074 { rtfPictAttr
, rtfBitmapWid
, "wbmwidthbytes", 0 },
2076 { rtfPictAttr
, rtfPicWid
, "picw", 0 },
2077 { rtfPictAttr
, rtfPicHt
, "pich", 0 },
2078 { rtfPictAttr
, rtfPicGoalWid
, "picwgoal", 0 },
2079 { rtfPictAttr
, rtfPicGoalHt
, "pichgoal", 0 },
2080 /* these two aren't in the spec, but some writers emit them */
2081 { rtfPictAttr
, rtfPicGoalWid
, "picwGoal", 0 },
2082 { rtfPictAttr
, rtfPicGoalHt
, "pichGoal", 0 },
2083 { rtfPictAttr
, rtfPicScaleX
, "picscalex", 0 },
2084 { rtfPictAttr
, rtfPicScaleY
, "picscaley", 0 },
2085 { rtfPictAttr
, rtfPicScaled
, "picscaled", 0 },
2086 { rtfPictAttr
, rtfPicCropTop
, "piccropt", 0 },
2087 { rtfPictAttr
, rtfPicCropBottom
, "piccropb", 0 },
2088 { rtfPictAttr
, rtfPicCropLeft
, "piccropl", 0 },
2089 { rtfPictAttr
, rtfPicCropRight
, "piccropr", 0 },
2091 { rtfPictAttr
, rtfPicMFHasBitmap
, "picbmp", 0 },
2092 { rtfPictAttr
, rtfPicMFBitsPerPixel
, "picbpp", 0 },
2094 { rtfPictAttr
, rtfPicBinary
, "bin", 0 },
2097 * NeXT graphic attributes
2100 { rtfNeXTGrAttr
, rtfNeXTGWidth
, "width", 0 },
2101 { rtfNeXTGrAttr
, rtfNeXTGHeight
, "height", 0 },
2107 { rtfDestination
, rtfFontTbl
, "fonttbl", 0 },
2108 { rtfDestination
, rtfFontAltName
, "falt", 0 },
2109 { rtfDestination
, rtfEmbeddedFont
, "fonteb", 0 },
2110 { rtfDestination
, rtfFontFile
, "fontfile", 0 },
2111 { rtfDestination
, rtfFileTbl
, "filetbl", 0 },
2112 { rtfDestination
, rtfFileInfo
, "file", 0 },
2113 { rtfDestination
, rtfColorTbl
, "colortbl", 0 },
2114 { rtfDestination
, rtfStyleSheet
, "stylesheet", 0 },
2115 { rtfDestination
, rtfKeyCode
, "keycode", 0 },
2116 { rtfDestination
, rtfRevisionTbl
, "revtbl", 0 },
2117 { rtfDestination
, rtfInfo
, "info", 0 },
2118 { rtfDestination
, rtfITitle
, "title", 0 },
2119 { rtfDestination
, rtfISubject
, "subject", 0 },
2120 { rtfDestination
, rtfIAuthor
, "author", 0 },
2121 { rtfDestination
, rtfIOperator
, "operator", 0 },
2122 { rtfDestination
, rtfIKeywords
, "keywords", 0 },
2123 { rtfDestination
, rtfIComment
, "comment", 0 },
2124 { rtfDestination
, rtfIVersion
, "version", 0 },
2125 { rtfDestination
, rtfIDoccomm
, "doccomm", 0 },
2126 /* \verscomm may not exist -- was seen in earlier spec version */
2127 { rtfDestination
, rtfIVerscomm
, "verscomm", 0 },
2128 { rtfDestination
, rtfNextFile
, "nextfile", 0 },
2129 { rtfDestination
, rtfTemplate
, "template", 0 },
2130 { rtfDestination
, rtfFNSep
, "ftnsep", 0 },
2131 { rtfDestination
, rtfFNContSep
, "ftnsepc", 0 },
2132 { rtfDestination
, rtfFNContNotice
, "ftncn", 0 },
2133 { rtfDestination
, rtfENSep
, "aftnsep", 0 },
2134 { rtfDestination
, rtfENContSep
, "aftnsepc", 0 },
2135 { rtfDestination
, rtfENContNotice
, "aftncn", 0 },
2136 { rtfDestination
, rtfPageNumLevel
, "pgnhn", 0 },
2137 { rtfDestination
, rtfParNumLevelStyle
, "pnseclvl", 0 },
2138 { rtfDestination
, rtfHeader
, "header", 0 },
2139 { rtfDestination
, rtfFooter
, "footer", 0 },
2140 { rtfDestination
, rtfHeaderLeft
, "headerl", 0 },
2141 { rtfDestination
, rtfHeaderRight
, "headerr", 0 },
2142 { rtfDestination
, rtfHeaderFirst
, "headerf", 0 },
2143 { rtfDestination
, rtfFooterLeft
, "footerl", 0 },
2144 { rtfDestination
, rtfFooterRight
, "footerr", 0 },
2145 { rtfDestination
, rtfFooterFirst
, "footerf", 0 },
2146 { rtfDestination
, rtfParNumText
, "pntext", 0 },
2147 { rtfDestination
, rtfParNumbering
, "pn", 0 },
2148 { rtfDestination
, rtfParNumTextAfter
, "pntexta", 0 },
2149 { rtfDestination
, rtfParNumTextBefore
, "pntextb", 0 },
2150 { rtfDestination
, rtfBookmarkStart
, "bkmkstart", 0 },
2151 { rtfDestination
, rtfBookmarkEnd
, "bkmkend", 0 },
2152 { rtfDestination
, rtfPict
, "pict", 0 },
2153 { rtfDestination
, rtfObject
, "object", 0 },
2154 { rtfDestination
, rtfObjClass
, "objclass", 0 },
2155 { rtfDestination
, rtfObjName
, "objname", 0 },
2156 { rtfObjAttr
, rtfObjTime
, "objtime", 0 },
2157 { rtfDestination
, rtfObjData
, "objdata", 0 },
2158 { rtfDestination
, rtfObjAlias
, "objalias", 0 },
2159 { rtfDestination
, rtfObjSection
, "objsect", 0 },
2160 /* objitem and objtopic aren't documented in the spec! */
2161 { rtfDestination
, rtfObjItem
, "objitem", 0 },
2162 { rtfDestination
, rtfObjTopic
, "objtopic", 0 },
2163 { rtfDestination
, rtfObjResult
, "result", 0 },
2164 { rtfDestination
, rtfDrawObject
, "do", 0 },
2165 { rtfDestination
, rtfFootnote
, "footnote", 0 },
2166 { rtfDestination
, rtfAnnotRefStart
, "atrfstart", 0 },
2167 { rtfDestination
, rtfAnnotRefEnd
, "atrfend", 0 },
2168 { rtfDestination
, rtfAnnotID
, "atnid", 0 },
2169 { rtfDestination
, rtfAnnotAuthor
, "atnauthor", 0 },
2170 { rtfDestination
, rtfAnnotation
, "annotation", 0 },
2171 { rtfDestination
, rtfAnnotRef
, "atnref", 0 },
2172 { rtfDestination
, rtfAnnotTime
, "atntime", 0 },
2173 { rtfDestination
, rtfAnnotIcon
, "atnicn", 0 },
2174 { rtfDestination
, rtfField
, "field", 0 },
2175 { rtfDestination
, rtfFieldInst
, "fldinst", 0 },
2176 { rtfDestination
, rtfFieldResult
, "fldrslt", 0 },
2177 { rtfDestination
, rtfDataField
, "datafield", 0 },
2178 { rtfDestination
, rtfIndex
, "xe", 0 },
2179 { rtfDestination
, rtfIndexText
, "txe", 0 },
2180 { rtfDestination
, rtfIndexRange
, "rxe", 0 },
2181 { rtfDestination
, rtfTOC
, "tc", 0 },
2182 { rtfDestination
, rtfNeXTGraphic
, "NeXTGraphic", 0 },
2188 { rtfFontFamily
, rtfFFNil
, "fnil", 0 },
2189 { rtfFontFamily
, rtfFFRoman
, "froman", 0 },
2190 { rtfFontFamily
, rtfFFSwiss
, "fswiss", 0 },
2191 { rtfFontFamily
, rtfFFModern
, "fmodern", 0 },
2192 { rtfFontFamily
, rtfFFScript
, "fscript", 0 },
2193 { rtfFontFamily
, rtfFFDecor
, "fdecor", 0 },
2194 { rtfFontFamily
, rtfFFTech
, "ftech", 0 },
2195 { rtfFontFamily
, rtfFFBidirectional
, "fbidi", 0 },
2201 { rtfFontAttr
, rtfFontCharSet
, "fcharset", 0 },
2202 { rtfFontAttr
, rtfFontPitch
, "fprq", 0 },
2203 { rtfFontAttr
, rtfFontCodePage
, "cpg", 0 },
2204 { rtfFontAttr
, rtfFTypeNil
, "ftnil", 0 },
2205 { rtfFontAttr
, rtfFTypeTrueType
, "fttruetype", 0 },
2208 * File table attributes
2211 { rtfFileAttr
, rtfFileNum
, "fid", 0 },
2212 { rtfFileAttr
, rtfFileRelPath
, "frelative", 0 },
2213 { rtfFileAttr
, rtfFileOSNum
, "fosnum", 0 },
2219 { rtfFileSource
, rtfSrcMacintosh
, "fvalidmac", 0 },
2220 { rtfFileSource
, rtfSrcDOS
, "fvaliddos", 0 },
2221 { rtfFileSource
, rtfSrcNTFS
, "fvalidntfs", 0 },
2222 { rtfFileSource
, rtfSrcHPFS
, "fvalidhpfs", 0 },
2223 { rtfFileSource
, rtfSrcNetwork
, "fnetwork", 0 },
2229 { rtfColorName
, rtfRed
, "red", 0 },
2230 { rtfColorName
, rtfGreen
, "green", 0 },
2231 { rtfColorName
, rtfBlue
, "blue", 0 },
2237 { rtfCharSet
, rtfMacCharSet
, "mac", 0 },
2238 { rtfCharSet
, rtfAnsiCharSet
, "ansi", 0 },
2239 { rtfCharSet
, rtfPcCharSet
, "pc", 0 },
2240 { rtfCharSet
, rtfPcaCharSet
, "pca", 0 },
2246 { rtfTblAttr
, rtfRowDef
, "trowd", 0 },
2247 { rtfTblAttr
, rtfRowGapH
, "trgaph", 0 },
2248 { rtfTblAttr
, rtfCellPos
, "cellx", 0 },
2249 { rtfTblAttr
, rtfMergeRngFirst
, "clmgf", 0 },
2250 { rtfTblAttr
, rtfMergePrevious
, "clmrg", 0 },
2252 { rtfTblAttr
, rtfRowLeft
, "trql", 0 },
2253 { rtfTblAttr
, rtfRowRight
, "trqr", 0 },
2254 { rtfTblAttr
, rtfRowCenter
, "trqc", 0 },
2255 { rtfTblAttr
, rtfRowLeftEdge
, "trleft", 0 },
2256 { rtfTblAttr
, rtfRowHt
, "trrh", 0 },
2257 { rtfTblAttr
, rtfRowHeader
, "trhdr", 0 },
2258 { rtfTblAttr
, rtfRowKeep
, "trkeep", 0 },
2260 { rtfTblAttr
, rtfRTLRow
, "rtlrow", 0 },
2261 { rtfTblAttr
, rtfLTRRow
, "ltrrow", 0 },
2263 { rtfTblAttr
, rtfRowBordTop
, "trbrdrt", 0 },
2264 { rtfTblAttr
, rtfRowBordLeft
, "trbrdrl", 0 },
2265 { rtfTblAttr
, rtfRowBordBottom
, "trbrdrb", 0 },
2266 { rtfTblAttr
, rtfRowBordRight
, "trbrdrr", 0 },
2267 { rtfTblAttr
, rtfRowBordHoriz
, "trbrdrh", 0 },
2268 { rtfTblAttr
, rtfRowBordVert
, "trbrdrv", 0 },
2270 { rtfTblAttr
, rtfCellBordBottom
, "clbrdrb", 0 },
2271 { rtfTblAttr
, rtfCellBordTop
, "clbrdrt", 0 },
2272 { rtfTblAttr
, rtfCellBordLeft
, "clbrdrl", 0 },
2273 { rtfTblAttr
, rtfCellBordRight
, "clbrdrr", 0 },
2275 { rtfTblAttr
, rtfCellShading
, "clshdng", 0 },
2276 { rtfTblAttr
, rtfCellBgPatH
, "clbghoriz", 0 },
2277 { rtfTblAttr
, rtfCellBgPatV
, "clbgvert", 0 },
2278 { rtfTblAttr
, rtfCellFwdDiagBgPat
, "clbgfdiag", 0 },
2279 { rtfTblAttr
, rtfCellBwdDiagBgPat
, "clbgbdiag", 0 },
2280 { rtfTblAttr
, rtfCellHatchBgPat
, "clbgcross", 0 },
2281 { rtfTblAttr
, rtfCellDiagHatchBgPat
, "clbgdcross", 0 },
2283 * The spec lists "clbgdkhor", but the corresponding non-cell
2284 * control is "bgdkhoriz". At any rate Macintosh Word seems
2285 * to accept both "clbgdkhor" and "clbgdkhoriz".
2287 { rtfTblAttr
, rtfCellDarkBgPatH
, "clbgdkhoriz", 0 },
2288 { rtfTblAttr
, rtfCellDarkBgPatH
, "clbgdkhor", 0 },
2289 { rtfTblAttr
, rtfCellDarkBgPatV
, "clbgdkvert", 0 },
2290 { rtfTblAttr
, rtfCellFwdDarkBgPat
, "clbgdkfdiag", 0 },
2291 { rtfTblAttr
, rtfCellBwdDarkBgPat
, "clbgdkbdiag", 0 },
2292 { rtfTblAttr
, rtfCellDarkHatchBgPat
, "clbgdkcross", 0 },
2293 { rtfTblAttr
, rtfCellDarkDiagHatchBgPat
, "clbgdkdcross", 0 },
2294 { rtfTblAttr
, rtfCellBgPatLineColor
, "clcfpat", 0 },
2295 { rtfTblAttr
, rtfCellBgPatColor
, "clcbpat", 0 },
2301 { rtfFieldAttr
, rtfFieldDirty
, "flddirty", 0 },
2302 { rtfFieldAttr
, rtfFieldEdited
, "fldedit", 0 },
2303 { rtfFieldAttr
, rtfFieldLocked
, "fldlock", 0 },
2304 { rtfFieldAttr
, rtfFieldPrivate
, "fldpriv", 0 },
2305 { rtfFieldAttr
, rtfFieldAlt
, "fldalt", 0 },
2308 * Positioning attributes
2311 { rtfPosAttr
, rtfAbsWid
, "absw", 0 },
2312 { rtfPosAttr
, rtfAbsHt
, "absh", 0 },
2314 { rtfPosAttr
, rtfRPosMargH
, "phmrg", 0 },
2315 { rtfPosAttr
, rtfRPosPageH
, "phpg", 0 },
2316 { rtfPosAttr
, rtfRPosColH
, "phcol", 0 },
2317 { rtfPosAttr
, rtfPosX
, "posx", 0 },
2318 { rtfPosAttr
, rtfPosNegX
, "posnegx", 0 },
2319 { rtfPosAttr
, rtfPosXCenter
, "posxc", 0 },
2320 { rtfPosAttr
, rtfPosXInside
, "posxi", 0 },
2321 { rtfPosAttr
, rtfPosXOutSide
, "posxo", 0 },
2322 { rtfPosAttr
, rtfPosXRight
, "posxr", 0 },
2323 { rtfPosAttr
, rtfPosXLeft
, "posxl", 0 },
2325 { rtfPosAttr
, rtfRPosMargV
, "pvmrg", 0 },
2326 { rtfPosAttr
, rtfRPosPageV
, "pvpg", 0 },
2327 { rtfPosAttr
, rtfRPosParaV
, "pvpara", 0 },
2328 { rtfPosAttr
, rtfPosY
, "posy", 0 },
2329 { rtfPosAttr
, rtfPosNegY
, "posnegy", 0 },
2330 { rtfPosAttr
, rtfPosYInline
, "posyil", 0 },
2331 { rtfPosAttr
, rtfPosYTop
, "posyt", 0 },
2332 { rtfPosAttr
, rtfPosYCenter
, "posyc", 0 },
2333 { rtfPosAttr
, rtfPosYBottom
, "posyb", 0 },
2335 { rtfPosAttr
, rtfNoWrap
, "nowrap", 0 },
2336 { rtfPosAttr
, rtfDistFromTextAll
, "dxfrtext", 0 },
2337 { rtfPosAttr
, rtfDistFromTextX
, "dfrmtxtx", 0 },
2338 { rtfPosAttr
, rtfDistFromTextY
, "dfrmtxty", 0 },
2339 /* \dyfrtext no longer exists in spec 1.2, apparently */
2340 /* replaced by \dfrmtextx and \dfrmtexty. */
2341 { rtfPosAttr
, rtfTextDistY
, "dyfrtext", 0 },
2343 { rtfPosAttr
, rtfDropCapLines
, "dropcapli", 0 },
2344 { rtfPosAttr
, rtfDropCapType
, "dropcapt", 0 },
2350 { rtfObjAttr
, rtfObjEmb
, "objemb", 0 },
2351 { rtfObjAttr
, rtfObjLink
, "objlink", 0 },
2352 { rtfObjAttr
, rtfObjAutoLink
, "objautlink", 0 },
2353 { rtfObjAttr
, rtfObjSubscriber
, "objsub", 0 },
2354 { rtfObjAttr
, rtfObjPublisher
, "objpub", 0 },
2355 { rtfObjAttr
, rtfObjICEmb
, "objicemb", 0 },
2357 { rtfObjAttr
, rtfObjLinkSelf
, "linkself", 0 },
2358 { rtfObjAttr
, rtfObjLock
, "objupdate", 0 },
2359 { rtfObjAttr
, rtfObjUpdate
, "objlock", 0 },
2361 { rtfObjAttr
, rtfObjHt
, "objh", 0 },
2362 { rtfObjAttr
, rtfObjWid
, "objw", 0 },
2363 { rtfObjAttr
, rtfObjSetSize
, "objsetsize", 0 },
2364 { rtfObjAttr
, rtfObjAlign
, "objalign", 0 },
2365 { rtfObjAttr
, rtfObjTransposeY
, "objtransy", 0 },
2366 { rtfObjAttr
, rtfObjCropTop
, "objcropt", 0 },
2367 { rtfObjAttr
, rtfObjCropBottom
, "objcropb", 0 },
2368 { rtfObjAttr
, rtfObjCropLeft
, "objcropl", 0 },
2369 { rtfObjAttr
, rtfObjCropRight
, "objcropr", 0 },
2370 { rtfObjAttr
, rtfObjScaleX
, "objscalex", 0 },
2371 { rtfObjAttr
, rtfObjScaleY
, "objscaley", 0 },
2373 { rtfObjAttr
, rtfObjResRTF
, "rsltrtf", 0 },
2374 { rtfObjAttr
, rtfObjResPict
, "rsltpict", 0 },
2375 { rtfObjAttr
, rtfObjResBitmap
, "rsltbmp", 0 },
2376 { rtfObjAttr
, rtfObjResText
, "rslttxt", 0 },
2377 { rtfObjAttr
, rtfObjResMerge
, "rsltmerge", 0 },
2379 { rtfObjAttr
, rtfObjBookmarkPubObj
, "bkmkpub", 0 },
2380 { rtfObjAttr
, rtfObjPubAutoUpdate
, "pubauto", 0 },
2383 * Associated character formatting attributes
2386 { rtfACharAttr
, rtfACBold
, "ab", 0 },
2387 { rtfACharAttr
, rtfACAllCaps
, "caps", 0 },
2388 { rtfACharAttr
, rtfACForeColor
, "acf", 0 },
2389 { rtfACharAttr
, rtfACSubScript
, "adn", 0 },
2390 { rtfACharAttr
, rtfACExpand
, "aexpnd", 0 },
2391 { rtfACharAttr
, rtfACFontNum
, "af", 0 },
2392 { rtfACharAttr
, rtfACFontSize
, "afs", 0 },
2393 { rtfACharAttr
, rtfACItalic
, "ai", 0 },
2394 { rtfACharAttr
, rtfACLanguage
, "alang", 0 },
2395 { rtfACharAttr
, rtfACOutline
, "aoutl", 0 },
2396 { rtfACharAttr
, rtfACSmallCaps
, "ascaps", 0 },
2397 { rtfACharAttr
, rtfACShadow
, "ashad", 0 },
2398 { rtfACharAttr
, rtfACStrikeThru
, "astrike", 0 },
2399 { rtfACharAttr
, rtfACUnderline
, "aul", 0 },
2400 { rtfACharAttr
, rtfACDotUnderline
, "auld", 0 },
2401 { rtfACharAttr
, rtfACDbUnderline
, "auldb", 0 },
2402 { rtfACharAttr
, rtfACNoUnderline
, "aulnone", 0 },
2403 { rtfACharAttr
, rtfACWordUnderline
, "aulw", 0 },
2404 { rtfACharAttr
, rtfACSuperScript
, "aup", 0 },
2407 * Footnote attributes
2410 { rtfFNoteAttr
, rtfFNAlt
, "ftnalt", 0 },
2413 * Key code attributes
2416 { rtfKeyCodeAttr
, rtfAltKey
, "alt", 0 },
2417 { rtfKeyCodeAttr
, rtfShiftKey
, "shift", 0 },
2418 { rtfKeyCodeAttr
, rtfControlKey
, "ctrl", 0 },
2419 { rtfKeyCodeAttr
, rtfFunctionKey
, "fn", 0 },
2422 * Bookmark attributes
2425 { rtfBookmarkAttr
, rtfBookmarkFirstCol
, "bkmkcolf", 0 },
2426 { rtfBookmarkAttr
, rtfBookmarkLastCol
, "bkmkcoll", 0 },
2429 * Index entry attributes
2432 { rtfIndexAttr
, rtfIndexNumber
, "xef", 0 },
2433 { rtfIndexAttr
, rtfIndexBold
, "bxe", 0 },
2434 { rtfIndexAttr
, rtfIndexItalic
, "ixe", 0 },
2437 * Table of contents attributes
2440 { rtfTOCAttr
, rtfTOCType
, "tcf", 0 },
2441 { rtfTOCAttr
, rtfTOCLevel
, "tcl", 0 },
2444 * Drawing object attributes
2447 { rtfDrawAttr
, rtfDrawLock
, "dolock", 0 },
2448 { rtfDrawAttr
, rtfDrawPageRelX
, "doxpage", 0 },
2449 { rtfDrawAttr
, rtfDrawColumnRelX
, "dobxcolumn", 0 },
2450 { rtfDrawAttr
, rtfDrawMarginRelX
, "dobxmargin", 0 },
2451 { rtfDrawAttr
, rtfDrawPageRelY
, "dobypage", 0 },
2452 { rtfDrawAttr
, rtfDrawColumnRelY
, "dobycolumn", 0 },
2453 { rtfDrawAttr
, rtfDrawMarginRelY
, "dobymargin", 0 },
2454 { rtfDrawAttr
, rtfDrawHeight
, "dobhgt", 0 },
2456 { rtfDrawAttr
, rtfDrawBeginGroup
, "dpgroup", 0 },
2457 { rtfDrawAttr
, rtfDrawGroupCount
, "dpcount", 0 },
2458 { rtfDrawAttr
, rtfDrawEndGroup
, "dpendgroup", 0 },
2459 { rtfDrawAttr
, rtfDrawArc
, "dparc", 0 },
2460 { rtfDrawAttr
, rtfDrawCallout
, "dpcallout", 0 },
2461 { rtfDrawAttr
, rtfDrawEllipse
, "dpellipse", 0 },
2462 { rtfDrawAttr
, rtfDrawLine
, "dpline", 0 },
2463 { rtfDrawAttr
, rtfDrawPolygon
, "dppolygon", 0 },
2464 { rtfDrawAttr
, rtfDrawPolyLine
, "dppolyline", 0 },
2465 { rtfDrawAttr
, rtfDrawRect
, "dprect", 0 },
2466 { rtfDrawAttr
, rtfDrawTextBox
, "dptxbx", 0 },
2468 { rtfDrawAttr
, rtfDrawOffsetX
, "dpx", 0 },
2469 { rtfDrawAttr
, rtfDrawSizeX
, "dpxsize", 0 },
2470 { rtfDrawAttr
, rtfDrawOffsetY
, "dpy", 0 },
2471 { rtfDrawAttr
, rtfDrawSizeY
, "dpysize", 0 },
2473 { rtfDrawAttr
, rtfCOAngle
, "dpcoa", 0 },
2474 { rtfDrawAttr
, rtfCOAccentBar
, "dpcoaccent", 0 },
2475 { rtfDrawAttr
, rtfCOBestFit
, "dpcobestfit", 0 },
2476 { rtfDrawAttr
, rtfCOBorder
, "dpcoborder", 0 },
2477 { rtfDrawAttr
, rtfCOAttachAbsDist
, "dpcodabs", 0 },
2478 { rtfDrawAttr
, rtfCOAttachBottom
, "dpcodbottom", 0 },
2479 { rtfDrawAttr
, rtfCOAttachCenter
, "dpcodcenter", 0 },
2480 { rtfDrawAttr
, rtfCOAttachTop
, "dpcodtop", 0 },
2481 { rtfDrawAttr
, rtfCOLength
, "dpcolength", 0 },
2482 { rtfDrawAttr
, rtfCONegXQuadrant
, "dpcominusx", 0 },
2483 { rtfDrawAttr
, rtfCONegYQuadrant
, "dpcominusy", 0 },
2484 { rtfDrawAttr
, rtfCOOffset
, "dpcooffset", 0 },
2485 { rtfDrawAttr
, rtfCOAttachSmart
, "dpcosmarta", 0 },
2486 { rtfDrawAttr
, rtfCODoubleLine
, "dpcotdouble", 0 },
2487 { rtfDrawAttr
, rtfCORightAngle
, "dpcotright", 0 },
2488 { rtfDrawAttr
, rtfCOSingleLine
, "dpcotsingle", 0 },
2489 { rtfDrawAttr
, rtfCOTripleLine
, "dpcottriple", 0 },
2491 { rtfDrawAttr
, rtfDrawTextBoxMargin
, "dptxbxmar", 0 },
2492 { rtfDrawAttr
, rtfDrawTextBoxText
, "dptxbxtext", 0 },
2493 { rtfDrawAttr
, rtfDrawRoundRect
, "dproundr", 0 },
2495 { rtfDrawAttr
, rtfDrawPointX
, "dpptx", 0 },
2496 { rtfDrawAttr
, rtfDrawPointY
, "dppty", 0 },
2497 { rtfDrawAttr
, rtfDrawPolyCount
, "dppolycount", 0 },
2499 { rtfDrawAttr
, rtfDrawArcFlipX
, "dparcflipx", 0 },
2500 { rtfDrawAttr
, rtfDrawArcFlipY
, "dparcflipy", 0 },
2502 { rtfDrawAttr
, rtfDrawLineBlue
, "dplinecob", 0 },
2503 { rtfDrawAttr
, rtfDrawLineGreen
, "dplinecog", 0 },
2504 { rtfDrawAttr
, rtfDrawLineRed
, "dplinecor", 0 },
2505 { rtfDrawAttr
, rtfDrawLinePalette
, "dplinepal", 0 },
2506 { rtfDrawAttr
, rtfDrawLineDashDot
, "dplinedado", 0 },
2507 { rtfDrawAttr
, rtfDrawLineDashDotDot
, "dplinedadodo", 0 },
2508 { rtfDrawAttr
, rtfDrawLineDash
, "dplinedash", 0 },
2509 { rtfDrawAttr
, rtfDrawLineDot
, "dplinedot", 0 },
2510 { rtfDrawAttr
, rtfDrawLineGray
, "dplinegray", 0 },
2511 { rtfDrawAttr
, rtfDrawLineHollow
, "dplinehollow", 0 },
2512 { rtfDrawAttr
, rtfDrawLineSolid
, "dplinesolid", 0 },
2513 { rtfDrawAttr
, rtfDrawLineWidth
, "dplinew", 0 },
2515 { rtfDrawAttr
, rtfDrawHollowEndArrow
, "dpaendhol", 0 },
2516 { rtfDrawAttr
, rtfDrawEndArrowLength
, "dpaendl", 0 },
2517 { rtfDrawAttr
, rtfDrawSolidEndArrow
, "dpaendsol", 0 },
2518 { rtfDrawAttr
, rtfDrawEndArrowWidth
, "dpaendw", 0 },
2519 { rtfDrawAttr
, rtfDrawHollowStartArrow
,"dpastarthol", 0 },
2520 { rtfDrawAttr
, rtfDrawStartArrowLength
,"dpastartl", 0 },
2521 { rtfDrawAttr
, rtfDrawSolidStartArrow
, "dpastartsol", 0 },
2522 { rtfDrawAttr
, rtfDrawStartArrowWidth
, "dpastartw", 0 },
2524 { rtfDrawAttr
, rtfDrawBgFillBlue
, "dpfillbgcb", 0 },
2525 { rtfDrawAttr
, rtfDrawBgFillGreen
, "dpfillbgcg", 0 },
2526 { rtfDrawAttr
, rtfDrawBgFillRed
, "dpfillbgcr", 0 },
2527 { rtfDrawAttr
, rtfDrawBgFillPalette
, "dpfillbgpal", 0 },
2528 { rtfDrawAttr
, rtfDrawBgFillGray
, "dpfillbggray", 0 },
2529 { rtfDrawAttr
, rtfDrawFgFillBlue
, "dpfillfgcb", 0 },
2530 { rtfDrawAttr
, rtfDrawFgFillGreen
, "dpfillfgcg", 0 },
2531 { rtfDrawAttr
, rtfDrawFgFillRed
, "dpfillfgcr", 0 },
2532 { rtfDrawAttr
, rtfDrawFgFillPalette
, "dpfillfgpal", 0 },
2533 { rtfDrawAttr
, rtfDrawFgFillGray
, "dpfillfggray", 0 },
2534 { rtfDrawAttr
, rtfDrawFillPatIndex
, "dpfillpat", 0 },
2536 { rtfDrawAttr
, rtfDrawShadow
, "dpshadow", 0 },
2537 { rtfDrawAttr
, rtfDrawShadowXOffset
, "dpshadx", 0 },
2538 { rtfDrawAttr
, rtfDrawShadowYOffset
, "dpshady", 0 },
2540 { rtfVersion
, -1, "rtf", 0 },
2541 { rtfDefFont
, -1, "deff", 0 },
2543 { 0, -1, (char *) NULL
, 0 }
2548 * Initialize lookup table hash values. Only need to do this once.
2554 static int inited
= 0;
2559 for (rp
= rtfKey
; rp
->rtfKStr
!= (char *) NULL
; rp
++)
2560 rp
->rtfKHash
= Hash (rp
->rtfKStr
);
2567 * Determine major and minor number of control token. If it's
2568 * not found, the class turns into rtfUnknown.
2578 ++s
; /* skip over the leading \ character */
2580 for (rp
= rtfKey
; rp
->rtfKStr
!= (char *) NULL
; rp
++)
2582 if (hash
== rp
->rtfKHash
&& strcmp (s
, rp
->rtfKStr
) == 0)
2584 rtfClass
= rtfControl
;
2585 rtfMajor
= rp
->rtfKMajor
;
2586 rtfMinor
= rp
->rtfKMinor
;
2590 rtfClass
= rtfUnknown
;
2595 * Compute hash value of symbol
2605 while ((c
= *s
++) != '\0')
2611 /* ---------------------------------------------------------------------- */
2614 * Memory allocation routines
2619 * Return pointer to block of size bytes, or NULL if there's
2620 * not enough memory available.
2622 * This is called through RTFAlloc(), a define which coerces the
2623 * argument to int. This avoids the persistent problem of allocation
2624 * failing under THINK C when a long is passed.
2631 return HeapAlloc(RICHED32_hHeap
, 0, size
);
2636 * Saves a string on the heap and returns a pointer to it.
2646 if ((p
= RTFAlloc ((int) (strlen (s
) + 1))) == (char *) NULL
)
2647 return ((char *) NULL
);
2648 return (strcpy (p
, s
));
2656 if (p
!= (char *) NULL
)
2657 HeapFree(RICHED32_hHeap
, 0, p
);
2661 /* ---------------------------------------------------------------------- */
2665 * Token comparison routines
2669 RTFCheckCM (class, major
)
2672 return (rtfClass
== class && rtfMajor
== major
);
2677 RTFCheckCMM (class, major
, minor
)
2678 int class, major
, minor
;
2680 return (rtfClass
== class && rtfMajor
== major
&& rtfMinor
== minor
);
2685 RTFCheckMM (major
, minor
)
2688 return (rtfMajor
== major
&& rtfMinor
== minor
);
2692 /* ---------------------------------------------------------------------- */
2702 return (c
- '0'); /* '0'..'9' */
2703 return (c
- 'a' + 10); /* 'a'..'f' */
2713 return (i
- 10 + 'a');
2717 /* ---------------------------------------------------------------------- */
2720 * RTFReadOutputMap() -- Read output translation map
2724 * Read in an array describing the relation between the standard character set
2725 * and an RTF translator's corresponding output sequences. Each line consists
2726 * of a standard character name and the output sequence for that character.
2728 * outMap is an array of strings into which the sequences should be placed.
2729 * It should be declared like this in the calling program:
2731 * char *outMap[rtfSC_MaxChar];
2733 * reinit should be non-zero if outMap should be initialized
2739 RTFReadOutputMap (outMap
, reinit
)
2749 for (i
= 0; i
< rtfSC_MaxChar
; i
++)
2751 outMap
[i
] = (char *) NULL
;
2755 for (i
=0 ;i
< sizeof(text_map
)/sizeof(char*); i
+=2)
2758 seq
= text_map
[i
+1];
2759 stdCode
= RTFStdCharCode( name
);
2760 outMap
[stdCode
] = seq
;
2766 /* ---------------------------------------------------------------------- */
2769 * Open a library file.
2773 static FILE *(*libFileOpen
) () = NULL
;
2778 RTFSetOpenLibFileProc (proc
)
2786 RTFOpenLibFile (file
, mode
)
2790 if (libFileOpen
== NULL
)
2791 return ((FILE *) NULL
);
2792 return ((*libFileOpen
) (file
, mode
));
2796 /* ---------------------------------------------------------------------- */
2799 * Print message. Default is to send message to stderr
2800 * but this may be overridden with RTFSetMsgProc().
2802 * Message should include linefeeds as necessary. If the default
2803 * function is overridden, the overriding function may want to
2804 * map linefeeds to another line ending character or sequence if
2805 * the host system doesn't use linefeeds.
2817 static RTFFuncPtr msgProc
= DefaultMsgProc
;
2821 RTFSetMsgProc (proc
)
2831 * This version is for systems with stdarg
2835 RTFMsg (char *fmt
, ...)
2837 char buf
[rtfBufSiz
];
2840 va_start (args
,fmt
);
2841 vsprintf (buf
, fmt
, args
);
2846 # else /* !STDARG */
2852 * This version is for systems that have varargs.
2861 char buf
[rtfBufSiz
];
2864 fmt
= va_arg (args
, char *);
2865 vsprintf (buf
, fmt
, args
);
2870 # else /* !VARARGS */
2873 * This version is for systems that don't have varargs.
2877 RTFMsg (fmt
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
)
2879 char *a1
, *a2
, *a3
, *a4
, *a5
, *a6
, *a7
, *a8
, *a9
;
2881 char buf
[rtfBufSiz
];
2883 sprintf (buf
, fmt
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
);
2887 # endif /* !VARARGS */
2888 # endif /* !STDARG */
2891 /* ---------------------------------------------------------------------- */
2895 * Process termination. Print error message and exit. Also prints
2896 * current token, and current input line number and position within
2897 * line if any input has been read from the current file. (No input
2898 * has been read if prevChar is EOF).
2902 DefaultPanicProc (s
)
2910 static RTFFuncPtr panicProc
= DefaultPanicProc
;
2914 RTFSetPanicProc (proc
)
2924 * This version is for systems with stdarg
2928 RTFPanic (char *fmt
, ...)
2930 char buf
[rtfBufSiz
];
2933 va_start (args
,fmt
);
2934 vsprintf (buf
, fmt
, args
);
2936 (void) strcat (buf
, "\n");
2937 if (prevChar
!= EOF
&& rtfTextBuf
!= (char *) NULL
)
2939 sprintf (buf
+ strlen (buf
),
2940 "Last token read was \"%s\" near line %ld, position %d.\n",
2941 rtfTextBuf
, rtfLineNum
, rtfLinePos
);
2946 # else /* !STDARG */
2952 * This version is for systems that have varargs.
2961 char buf
[rtfBufSiz
];
2964 fmt
= va_arg (args
, char *);
2965 vsprintf (buf
, fmt
, args
);
2967 (void) strcat (buf
, "\n");
2968 if (prevChar
!= EOF
&& rtfTextBuf
!= (char *) NULL
)
2970 sprintf (buf
+ strlen (buf
),
2971 "Last token read was \"%s\" near line %ld, position %d.\n",
2972 rtfTextBuf
, rtfLineNum
, rtfLinePos
);
2977 # else /* !VARARGS */
2980 * This version is for systems that don't have varargs.
2984 RTFPanic (fmt
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
)
2986 char *a1
, *a2
, *a3
, *a4
, *a5
, *a6
, *a7
, *a8
, *a9
;
2988 char buf
[rtfBufSiz
];
2990 sprintf (buf
, fmt
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
);
2991 (void) strcat (buf
, "\n");
2992 if (prevChar
!= EOF
&& rtfTextBuf
!= (char *) NULL
)
2994 sprintf (buf
+ strlen (buf
),
2995 "Last token read was \"%s\" near line %ld, position %d.\n",
2996 rtfTextBuf
, rtfLineNum
, rtfLinePos
);
3001 # endif /* !VARARGS */
3002 # endif /* !STDARG */