4 * Portions Copyright 2004 Mike McCormack for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * Derived from RTF Tools by Paul DuBois (dubois@primate.wisc.edu)
23 * Homepage: http://www.snake.net/software/RTF/
24 * Original license follows:
28 * reader.c - RTF file reader. Release 1.10.
32 * Author: Paul DuBois dubois@primate.wisc.edu
34 * This software may be redistributed without restriction and used for
35 * any purpose whatsoever.
47 #include "wine/debug.h"
52 WINE_DEFAULT_DEBUG_CHANNEL(richedit
);
54 extern HANDLE me_heap
;
56 static int _RTFGetChar(RTF_Info
*);
57 static void _RTFGetToken (RTF_Info
*);
58 static void _RTFGetToken2 (RTF_Info
*);
59 static int GetChar (RTF_Info
*);
60 static void ReadFontTbl (RTF_Info
*);
61 static void ReadColorTbl (RTF_Info
*);
62 static void ReadStyleSheet (RTF_Info
*);
63 static void ReadInfoGroup (RTF_Info
*);
64 static void ReadPictGroup (RTF_Info
*);
65 static void ReadObjGroup (RTF_Info
*);
66 static void LookupInit (void);
67 static void Lookup (RTF_Info
*, char *);
68 static int Hash (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 /* ---------------------------------------------------------------------- */
80 * Memory allocation routines
85 * Return pointer to block of size bytes, or NULL if there's
86 * not enough memory available.
88 static inline void *RTFAlloc(int size
)
90 return HeapAlloc(me_heap
, 0, size
);
94 static inline void * RTFReAlloc(void *ptr
, int size
)
96 return HeapReAlloc(me_heap
, 0, ptr
, size
);
101 * Saves a string on the heap and returns a pointer to it.
103 static inline char *RTFStrSave(char *s
)
107 p
= RTFAlloc (lstrlenA(s
) + 1);
110 return lstrcpyA (p
, s
);
114 static inline void RTFFree(void *p
)
116 HeapFree(me_heap
, 0, p
);
120 /* ---------------------------------------------------------------------- */
123 int _RTFGetChar(RTF_Info
*info
)
126 ME_InStream
*stream
= info
->stream
;
130 if (stream
->dwSize
<= stream
->dwUsed
)
132 ME_StreamInFill(stream
);
133 /* if error, it's EOF */
134 if (stream
->editstream
->dwError
)
136 /* if no bytes read, it's EOF */
137 if (stream
->dwSize
== 0)
140 ch
= stream
->buffer
[stream
->dwUsed
++];
146 void RTFSetEditStream(RTF_Info
*info
, ME_InStream
*stream
)
150 info
->stream
= stream
;
154 RTFDestroyAttrs(RTF_Info
*info
)
159 RTFStyleElt
*eltList
, *ep
;
161 while (info
->fontList
)
163 fp
= info
->fontList
->rtfNextFont
;
164 RTFFree (info
->fontList
->rtfFName
);
165 RTFFree (info
->fontList
);
168 while (info
->colorList
)
170 cp
= info
->colorList
->rtfNextColor
;
171 RTFFree (info
->colorList
);
172 info
->colorList
= cp
;
174 while (info
->styleList
)
176 sp
= info
->styleList
->rtfNextStyle
;
177 eltList
= info
->styleList
->rtfSSEList
;
180 ep
= eltList
->rtfNextSE
;
181 RTFFree (eltList
->rtfSEText
);
185 RTFFree (info
->styleList
->rtfSName
);
186 RTFFree (info
->styleList
);
187 info
->styleList
= sp
;
193 RTFDestroy(RTF_Info
*info
)
195 if (info
->rtfTextBuf
)
197 RTFFree(info
->rtfTextBuf
);
198 RTFFree(info
->pushedTextBuf
);
200 RTFDestroyAttrs(info
);
201 RTFFree(info
->cpOutputBuffer
);
206 * Initialize the reader. This may be called multiple times,
207 * to read multiple files. The only thing not reset is the input
208 * stream; that must be done with RTFSetStream().
211 void RTFInit(RTF_Info
*info
)
217 if (info
->rtfTextBuf
== NULL
) /* initialize the text buffers */
219 info
->rtfTextBuf
= RTFAlloc (rtfBufSiz
);
220 info
->pushedTextBuf
= RTFAlloc (rtfBufSiz
);
221 if (info
->rtfTextBuf
== NULL
|| info
->pushedTextBuf
== NULL
)
222 ERR ("Cannot allocate text buffers.");
223 info
->rtfTextBuf
[0] = info
->pushedTextBuf
[0] = '\0';
226 RTFFree (info
->inputName
);
227 RTFFree (info
->outputName
);
228 info
->inputName
= info
->outputName
= NULL
;
230 /* initialize lookup table */
233 for (i
= 0; i
< rtfMaxClass
; i
++)
234 RTFSetClassCallback (info
, i
, NULL
);
235 for (i
= 0; i
< rtfMaxDestination
; i
++)
236 RTFSetDestinationCallback (info
, i
, NULL
);
238 /* install built-in destination readers */
239 RTFSetDestinationCallback (info
, rtfFontTbl
, ReadFontTbl
);
240 RTFSetDestinationCallback (info
, rtfColorTbl
, ReadColorTbl
);
241 RTFSetDestinationCallback (info
, rtfStyleSheet
, ReadStyleSheet
);
242 RTFSetDestinationCallback (info
, rtfInfo
, ReadInfoGroup
);
243 RTFSetDestinationCallback (info
, rtfPict
, ReadPictGroup
);
244 RTFSetDestinationCallback (info
, rtfObject
, ReadObjGroup
);
247 RTFSetReadHook (info
, NULL
);
249 /* dump old lists if necessary */
251 RTFDestroyAttrs(info
);
253 info
->ansiCodePage
= 1252; /* Latin-1; actually unused */
254 info
->unicodeLength
= 1; /* \uc1 is the default */
255 info
->codePage
= info
->ansiCodePage
;
259 info
->pushedClass
= -1;
260 info
->pushedChar
= EOF
;
262 info
->rtfLineNum
= 0;
263 info
->rtfLinePos
= 0;
264 info
->prevChar
= EOF
;
267 info
->dwCPOutputCount
= 0;
268 if (!info
->cpOutputBuffer
)
270 info
->dwMaxCPOutputCount
= 0x1000;
271 info
->cpOutputBuffer
= RTFAlloc(info
->dwMaxCPOutputCount
);
276 * Set or get the input or output file name. These are never guaranteed
277 * to be accurate, only insofar as the calling program makes them so.
280 void RTFSetInputName(RTF_Info
*info
, char *name
)
284 info
->inputName
= RTFStrSave (name
);
285 if (info
->inputName
== NULL
)
286 ERR ("RTFSetInputName: out of memory");
290 char *RTFGetInputName(RTF_Info
*info
)
292 return (info
->inputName
);
296 void RTFSetOutputName(RTF_Info
*info
, char *name
)
300 info
->outputName
= RTFStrSave (name
);
301 if (info
->outputName
== NULL
)
302 ERR ("RTFSetOutputName: out of memory");
306 char *RTFGetOutputName(RTF_Info
*info
)
308 return (info
->outputName
);
313 /* ---------------------------------------------------------------------- */
316 * Callback table manipulation routines
321 * Install or return a writer callback for a token class
324 void RTFSetClassCallback(RTF_Info
*info
, int class, RTFFuncPtr callback
)
326 if (class >= 0 && class < rtfMaxClass
)
327 info
->ccb
[class] = callback
;
331 RTFFuncPtr
RTFGetClassCallback(RTF_Info
*info
, int class)
333 if (class >= 0 && class < rtfMaxClass
)
334 return info
->ccb
[class];
340 * Install or return a writer callback for a destination type
343 void RTFSetDestinationCallback(RTF_Info
*info
, int dest
, RTFFuncPtr callback
)
345 if (dest
>= 0 && dest
< rtfMaxDestination
)
346 info
->dcb
[dest
] = callback
;
350 RTFFuncPtr
RTFGetDestinationCallback(RTF_Info
*info
, int dest
)
352 if (dest
>= 0 && dest
< rtfMaxDestination
)
353 return info
->dcb
[dest
];
358 /* ---------------------------------------------------------------------- */
361 * Token reading routines
366 * Read the input stream, invoking the writer's callbacks
370 void RTFRead(RTF_Info
*info
)
372 while (RTFGetToken (info
) != rtfEOF
)
373 RTFRouteToken (info
);
378 * Route a token. If it's a destination for which a reader is
379 * installed, process the destination internally, otherwise
380 * pass the token to the writer's class callback.
383 void RTFRouteToken(RTF_Info
*info
)
389 if (info
->rtfClass
< 0 || info
->rtfClass
>= rtfMaxClass
) /* watchdog */
391 ERR( "Unknown class %d: %s (reader malfunction)",
392 info
->rtfClass
, info
->rtfTextBuf
);
394 if (RTFCheckCM (info
, rtfControl
, rtfDestination
))
396 /* invoke destination-specific callback if there is one */
397 p
= RTFGetDestinationCallback (info
, info
->rtfMinor
);
404 /* invoke class callback if there is one */
405 p
= RTFGetClassCallback (info
, info
->rtfClass
);
412 * Skip to the end of the current group. When this returns,
413 * writers that maintain a state stack may want to call their
414 * state unstacker; global vars will still be set to the group's
418 void RTFSkipGroup(RTF_Info
*info
)
424 while (RTFGetToken (info
) != rtfEOF
)
426 if (info
->rtfClass
== rtfGroup
)
428 if (info
->rtfMajor
== rtfBeginGroup
)
430 else if (info
->rtfMajor
== rtfEndGroup
)
433 break; /* end of initial group */
441 * Read one token. Call the read hook if there is one. The
442 * token class is the return value. Returns rtfEOF when there
443 * are no more tokens.
446 int RTFGetToken(RTF_Info
*info
)
451 /* don't try to return anything once EOF is reached */
452 if (info
->rtfClass
== rtfEOF
) {
459 p
= RTFGetReadHook (info
);
461 (*p
) (info
); /* give read hook a look at token */
463 /* Silently discard newlines, carriage returns, nulls. */
464 if (!(info
->rtfClass
== rtfText
&& info
->rtfFormat
!= SF_TEXT
465 && (info
->rtfMajor
== '\r' || info
->rtfMajor
== '\n' || info
->rtfMajor
== '\0')))
468 return (info
->rtfClass
);
473 * Install or return a token reader hook.
476 void RTFSetReadHook(RTF_Info
*info
, RTFFuncPtr f
)
482 RTFFuncPtr
RTFGetReadHook(RTF_Info
*info
)
484 return (info
->readHook
);
488 void RTFUngetToken(RTF_Info
*info
)
492 if (info
->pushedClass
>= 0) /* there's already an ungotten token */
493 ERR ("cannot unget two tokens");
494 if (info
->rtfClass
< 0)
495 ERR ("no token to unget");
496 info
->pushedClass
= info
->rtfClass
;
497 info
->pushedMajor
= info
->rtfMajor
;
498 info
->pushedMinor
= info
->rtfMinor
;
499 info
->pushedParam
= info
->rtfParam
;
500 lstrcpyA (info
->pushedTextBuf
, info
->rtfTextBuf
);
504 int RTFPeekToken(RTF_Info
*info
)
507 RTFUngetToken (info
);
508 return (info
->rtfClass
);
512 static void _RTFGetToken(RTF_Info
*info
)
516 if (info
->rtfFormat
== SF_TEXT
)
518 info
->rtfMajor
= GetChar (info
);
520 info
->rtfParam
= rtfNoParam
;
521 info
->rtfTextBuf
[info
->rtfTextLen
= 0] = '\0';
522 if (info
->rtfMajor
== EOF
)
523 info
->rtfClass
= rtfEOF
;
525 info
->rtfClass
= rtfText
;
529 /* first check for pushed token from RTFUngetToken() */
531 if (info
->pushedClass
>= 0)
533 info
->rtfClass
= info
->pushedClass
;
534 info
->rtfMajor
= info
->pushedMajor
;
535 info
->rtfMinor
= info
->pushedMinor
;
536 info
->rtfParam
= info
->pushedParam
;
537 lstrcpyA (info
->rtfTextBuf
, info
->pushedTextBuf
);
538 info
->rtfTextLen
= lstrlenA(info
->rtfTextBuf
);
539 info
->pushedClass
= -1;
544 * Beyond this point, no token is ever seen twice, which is
545 * important, e.g., for making sure no "}" pops the font stack twice.
548 _RTFGetToken2 (info
);
553 RTFCharSetToCodePage(RTF_Info
*info
, int charset
)
559 case DEFAULT_CHARSET
:
565 case SHIFTJIS_CHARSET
:
567 case HANGEUL_CHARSET
:
573 case CHINESEBIG5_CHARSET
:
577 case TURKISH_CHARSET
:
579 case VIETNAMESE_CHARSET
:
587 case RUSSIAN_CHARSET
:
591 case EASTEUROPE_CHARSET
:
600 /* FIXME: TranslateCharsetInfo does not work as good as it
601 * should, so let's use it only when all else fails */
602 if (!TranslateCharsetInfo(&n
, &csi
, TCI_SRCCHARSET
))
603 ERR("%s: unknown charset %u\n", __FUNCTION__
, charset
);
612 /* this shouldn't be called anywhere but from _RTFGetToken() */
614 static void _RTFGetToken2(RTF_Info
*info
)
621 /* initialize token vars */
623 info
->rtfClass
= rtfUnknown
;
624 info
->rtfParam
= rtfNoParam
;
625 info
->rtfTextBuf
[info
->rtfTextLen
= 0] = '\0';
627 /* get first character, which may be a pushback from previous token */
629 if (info
->pushedChar
!= EOF
)
631 c
= info
->pushedChar
;
632 info
->rtfTextBuf
[info
->rtfTextLen
++] = c
;
633 info
->rtfTextBuf
[info
->rtfTextLen
] = '\0';
634 info
->pushedChar
= EOF
;
636 else if ((c
= GetChar (info
)) == EOF
)
638 info
->rtfClass
= rtfEOF
;
644 info
->rtfClass
= rtfGroup
;
645 info
->rtfMajor
= rtfBeginGroup
;
650 info
->rtfClass
= rtfGroup
;
651 info
->rtfMajor
= rtfEndGroup
;
657 * Two possibilities here:
658 * 1) ASCII 9, effectively like \tab control symbol
659 * 2) literal text char
661 if (c
== '\t') /* ASCII 9 */
663 info
->rtfClass
= rtfControl
;
664 info
->rtfMajor
= rtfSpecialChar
;
665 info
->rtfMinor
= rtfTab
;
669 info
->rtfClass
= rtfText
;
674 if ((c
= GetChar (info
)) == EOF
)
676 /* early eof, whoops (class is rtfUnknown) */
682 * Three possibilities here:
683 * 1) hex encoded text char, e.g., \'d5, \'d3
684 * 2) special escaped text char, e.g., \{, \}
685 * 3) control symbol, e.g., \_, \-, \|, \<10>
687 if (c
== '\'') /* hex char */
691 if ((c
= GetChar (info
)) != EOF
&& (c2
= GetChar (info
)) != EOF
)
693 /* should do isxdigit check! */
694 info
->rtfClass
= rtfText
;
695 info
->rtfMajor
= RTFCharToHex (c
) * 16 + RTFCharToHex (c2
);
698 /* early eof, whoops (class is rtfUnknown) */
703 /*if (index (":{}\\", c) != (char *) NULL)*/ /* escaped char */
704 if (c
== ':' || c
== '{' || c
== '}' || c
== '\\')
706 info
->rtfClass
= rtfText
;
712 Lookup (info
, info
->rtfTextBuf
); /* sets class, major, minor */
718 if ((c
= GetChar (info
)) == EOF
)
723 * At this point, the control word is all collected, so the
724 * major/minor numbers are determined before the parameter
725 * (if any) is scanned. There will be one too many characters
726 * in the buffer, though, so fix up before and restore after
731 info
->rtfTextBuf
[info
->rtfTextLen
-1] = '\0';
732 Lookup (info
, info
->rtfTextBuf
); /* sets class, major, minor */
734 info
->rtfTextBuf
[info
->rtfTextLen
-1] = c
;
737 * Should be looking at first digit of parameter if there
738 * is one, unless it's negative. In that case, next char
739 * is '-', so need to gobble next char, and remember sign.
748 if (c
!= EOF
&& isdigit (c
))
751 while (isdigit (c
)) /* gobble parameter */
753 info
->rtfParam
= info
->rtfParam
* 10 + c
- '0';
754 if ((c
= GetChar (info
)) == EOF
)
757 info
->rtfParam
*= sign
;
760 * If control symbol delimiter was a blank, gobble it.
761 * Otherwise the character is first char of next token, so
762 * push it back for next call. In either case, delete the
763 * delimiter from the token buffer.
768 info
->pushedChar
= c
;
769 info
->rtfTextBuf
[--info
->rtfTextLen
] = '\0';
775 * Read the next character from the input. This handles setting the
776 * current line and position-within-line variables. Those variable are
777 * set correctly whether lines end with CR, LF, or CRLF (the last being
780 * bumpLine indicates whether the line number should be incremented on
781 * the *next* input character.
785 static int GetChar(RTF_Info
*info
)
792 if ((c
= _RTFGetChar(info
)) != EOF
)
794 info
->rtfTextBuf
[info
->rtfTextLen
++] = c
;
795 info
->rtfTextBuf
[info
->rtfTextLen
] = '\0';
797 if (info
->prevChar
== EOF
)
799 oldBumpLine
= info
->bumpLine
; /* non-zero if prev char was line ending */
806 if (info
->prevChar
== '\r') /* oops, previous \r wasn't */
807 oldBumpLine
= 0; /* really a line ending */
810 if (oldBumpLine
) /* were we supposed to increment the */
811 { /* line count on this char? */
813 info
->rtfLinePos
= 1;
821 * Synthesize a token by setting the global variables to the
822 * values supplied. Typically this is followed with a call
823 * to RTFRouteToken().
825 * If a param value other than rtfNoParam is passed, it becomes
826 * part of the token text.
829 void RTFSetToken(RTF_Info
*info
, int class, int major
, int minor
, int param
, const char *text
)
833 info
->rtfClass
= class;
834 info
->rtfMajor
= major
;
835 info
->rtfMinor
= minor
;
836 info
->rtfParam
= param
;
837 if (param
== rtfNoParam
)
838 lstrcpyA(info
->rtfTextBuf
, text
);
840 sprintf (info
->rtfTextBuf
, "%s%d", text
, param
);
841 info
->rtfTextLen
= lstrlenA (info
->rtfTextBuf
);
845 /* ---------------------------------------------------------------------- */
848 * Special destination readers. They gobble the destination so the
849 * writer doesn't have to deal with them. That's wrong for any
850 * translator that wants to process any of these itself. In that
851 * case, these readers should be overridden by installing a different
852 * destination callback.
854 * NOTE: The last token read by each of these reader will be the
855 * destination's terminating '}', which will then be the current token.
856 * That '}' token is passed to RTFRouteToken() - the writer has already
857 * seen the '{' that began the destination group, and may have pushed a
858 * state; it also needs to know at the end of the group that a state
861 * It's important that rtf.h and the control token lookup table list
862 * as many symbols as possible, because these destination readers
863 * unfortunately make strict assumptions about the input they expect,
864 * and a token of class rtfUnknown will throw them off easily.
869 * Read { \fonttbl ... } destination. Old font tables don't have
870 * braces around each table entry; try to adjust for that.
873 static void ReadFontTbl(RTF_Info
*info
)
876 char buf
[rtfBufSiz
], *bp
;
878 const char *fn
= "ReadFontTbl";
885 if (info
->rtfClass
== rtfEOF
)
887 if (RTFCheckCM (info
, rtfGroup
, rtfEndGroup
))
889 if (old
< 0) /* first entry - determine tbl type */
891 if (RTFCheckCMM (info
, rtfControl
, rtfCharAttr
, rtfFontNum
))
892 old
= 1; /* no brace */
893 else if (RTFCheckCM (info
, rtfGroup
, rtfBeginGroup
))
895 else /* can't tell! */
896 ERR ( "%s: Cannot determine format", fn
);
898 if (old
== 0) /* need to find "{" here */
900 if (!RTFCheckCM (info
, rtfGroup
, rtfBeginGroup
))
901 ERR ( "%s: missing \"{\"", fn
);
902 RTFGetToken (info
); /* yes, skip to next token */
903 if (info
->rtfClass
== rtfEOF
)
908 ERR ( "%s: cannot allocate font entry", fn
);
910 fp
->rtfNextFont
= info
->fontList
;
914 fp
->rtfFAltName
= NULL
;
917 fp
->rtfFCharSet
= DEFAULT_CHARSET
; /* 1 */
920 fp
->rtfFCodePage
= CP_ACP
;
922 while (info
->rtfClass
!= rtfEOF
923 && !RTFCheckCM (info
, rtfText
, ';')
924 && !RTFCheckCM (info
, rtfGroup
, rtfEndGroup
))
926 if (info
->rtfClass
== rtfControl
)
928 switch (info
->rtfMajor
)
931 /* ignore token but announce it */
932 ERR ("%s: unknown token \"%s\"\n",
933 fn
, info
->rtfTextBuf
);
936 fp
->rtfFFamily
= info
->rtfMinor
;
939 switch (info
->rtfMinor
)
942 break; /* ignore unknown? */
944 fp
->rtfFNum
= info
->rtfParam
;
949 switch (info
->rtfMinor
)
952 break; /* ignore unknown? */
954 fp
->rtfFCharSet
= info
->rtfParam
;
955 if (!fp
->rtfFCodePage
)
956 fp
->rtfFCodePage
= RTFCharSetToCodePage(info
, info
->rtfParam
);
959 fp
->rtfFPitch
= info
->rtfParam
;
961 case rtfFontCodePage
:
962 fp
->rtfFCodePage
= info
->rtfParam
;
965 case rtfFTypeTrueType
:
966 fp
->rtfFType
= info
->rtfParam
;
972 else if (RTFCheckCM (info
, rtfGroup
, rtfBeginGroup
)) /* dest */
974 RTFSkipGroup (info
); /* ignore for now */
976 else if (info
->rtfClass
== rtfText
) /* font name */
979 while (info
->rtfClass
== rtfText
980 && !RTFCheckCM (info
, rtfText
, ';'))
982 *bp
++ = info
->rtfMajor
;
986 /* FIX: in some cases the <fontinfo> isn't finished with a semi-column */
987 if(RTFCheckCM (info
, rtfGroup
, rtfEndGroup
))
989 RTFUngetToken (info
);
992 fp
->rtfFName
= RTFStrSave (buf
);
993 if (fp
->rtfFName
== NULL
)
994 ERR ( "%s: cannot allocate font name", fn
);
995 /* already have next token; don't read one */
996 /* at bottom of loop */
1001 /* ignore token but announce it */
1002 ERR ( "%s: unknown token \"%s\"\n",
1003 fn
,info
->rtfTextBuf
);
1006 if (info
->rtfClass
== rtfEOF
)
1009 if (info
->rtfClass
== rtfEOF
)
1011 if (old
== 0) /* need to see "}" here */
1014 if (!RTFCheckCM (info
, rtfGroup
, rtfEndGroup
))
1015 ERR ( "%s: missing \"}\"", fn
);
1016 if (info
->rtfClass
== rtfEOF
)
1020 /* Apply the real properties of the default font */
1021 if (fp
->rtfFNum
== info
->defFont
)
1023 if (info
->ansiCodePage
!= CP_UTF8
)
1024 info
->codePage
= fp
->rtfFCodePage
;
1025 TRACE("default font codepage %d\n", info
->codePage
);
1028 if (fp
->rtfFNum
== -1)
1029 ERR( "%s: missing font number", fn
);
1031 * Could check other pieces of structure here, too, I suppose.
1033 RTFRouteToken (info
); /* feed "}" back to router */
1035 /* Set default font */
1036 info
->rtfClass
= rtfControl
;
1037 info
->rtfMajor
= rtfCharAttr
;
1038 info
->rtfMinor
= rtfFontNum
;
1039 info
->rtfParam
= info
->defFont
;
1040 lstrcpyA(info
->rtfTextBuf
, "f");
1041 RTFUngetToken(info
);
1046 * The color table entries have color values of -1 if
1047 * the default color should be used for the entry (only
1048 * a semi-colon is given in the definition, no color values).
1049 * There will be a problem if a partial entry (1 or 2 but
1050 * not 3 color values) is given. The possibility is ignored
1054 static void ReadColorTbl(RTF_Info
*info
)
1058 const char *fn
= "ReadColorTbl";
1065 if (info
->rtfClass
== rtfEOF
)
1067 if (RTFCheckCM (info
, rtfGroup
, rtfEndGroup
))
1069 cp
= New (RTFColor
);
1071 ERR ( "%s: cannot allocate color entry", fn
);
1072 cp
->rtfCNum
= cnum
++;
1073 cp
->rtfCRed
= cp
->rtfCGreen
= cp
->rtfCBlue
= -1;
1074 cp
->rtfNextColor
= info
->colorList
;
1075 info
->colorList
= cp
;
1076 while (RTFCheckCM (info
, rtfControl
, rtfColorName
))
1078 switch (info
->rtfMinor
)
1080 case rtfRed
: cp
->rtfCRed
= info
->rtfParam
; break;
1081 case rtfGreen
: cp
->rtfCGreen
= info
->rtfParam
; break;
1082 case rtfBlue
: cp
->rtfCBlue
= info
->rtfParam
; break;
1086 if (info
->rtfClass
== rtfEOF
)
1088 if (!RTFCheckCM (info
, rtfText
, ';'))
1089 ERR ("%s: malformed entry", fn
);
1091 RTFRouteToken (info
); /* feed "}" back to router */
1096 * The "Normal" style definition doesn't contain any style number,
1097 * all others do. Normal style is given style rtfNormalStyleNum.
1100 static void ReadStyleSheet(RTF_Info
*info
)
1103 RTFStyleElt
*sep
, *sepLast
;
1104 char buf
[rtfBufSiz
], *bp
;
1105 const char *fn
= "ReadStyleSheet";
1113 if (info
->rtfClass
== rtfEOF
)
1115 if (RTFCheckCM (info
, rtfGroup
, rtfEndGroup
))
1117 sp
= New (RTFStyle
);
1119 ERR ( "%s: cannot allocate stylesheet entry", fn
);
1120 sp
->rtfSName
= NULL
;
1122 sp
->rtfSType
= rtfParStyle
;
1123 sp
->rtfSAdditive
= 0;
1124 sp
->rtfSBasedOn
= rtfNoStyleNum
;
1125 sp
->rtfSNextPar
= -1;
1126 sp
->rtfSSEList
= sepLast
= NULL
;
1127 sp
->rtfNextStyle
= info
->styleList
;
1128 sp
->rtfExpanding
= 0;
1129 info
->styleList
= sp
;
1130 if (!RTFCheckCM (info
, rtfGroup
, rtfBeginGroup
))
1131 ERR ( "%s: missing \"{\"", fn
);
1136 if (info
->rtfClass
== rtfEOF
1137 || RTFCheckCM (info
, rtfText
, ';'))
1139 if (info
->rtfClass
== rtfControl
)
1141 if (RTFCheckMM (info
, rtfSpecialChar
, rtfOptDest
)) {
1143 ERR( "%s: skipping optional destination", fn
);
1145 info
->rtfClass
= rtfGroup
;
1146 info
->rtfMajor
= rtfEndGroup
;
1148 break; /* ignore "\*" */
1150 if (RTFCheckMM (info
, rtfParAttr
, rtfStyleNum
))
1152 sp
->rtfSNum
= info
->rtfParam
;
1153 sp
->rtfSType
= rtfParStyle
;
1156 if (RTFCheckMM (info
, rtfCharAttr
, rtfCharStyleNum
))
1158 sp
->rtfSNum
= info
->rtfParam
;
1159 sp
->rtfSType
= rtfCharStyle
;
1162 if (RTFCheckMM (info
, rtfSectAttr
, rtfSectStyleNum
))
1164 sp
->rtfSNum
= info
->rtfParam
;
1165 sp
->rtfSType
= rtfSectStyle
;
1168 if (RTFCheckMM (info
, rtfStyleAttr
, rtfBasedOn
))
1170 sp
->rtfSBasedOn
= info
->rtfParam
;
1173 if (RTFCheckMM (info
, rtfStyleAttr
, rtfAdditive
))
1175 sp
->rtfSAdditive
= 1;
1178 if (RTFCheckMM (info
, rtfStyleAttr
, rtfNext
))
1180 sp
->rtfSNextPar
= info
->rtfParam
;
1183 sep
= New (RTFStyleElt
);
1185 ERR ( "%s: cannot allocate style element", fn
);
1186 sep
->rtfSEClass
= info
->rtfClass
;
1187 sep
->rtfSEMajor
= info
->rtfMajor
;
1188 sep
->rtfSEMinor
= info
->rtfMinor
;
1189 sep
->rtfSEParam
= info
->rtfParam
;
1190 sep
->rtfSEText
= RTFStrSave (info
->rtfTextBuf
);
1191 if (sep
->rtfSEText
== NULL
)
1192 ERR ( "%s: cannot allocate style element text", fn
);
1193 if (sepLast
== NULL
)
1194 sp
->rtfSSEList
= sep
; /* first element */
1195 else /* add to end */
1196 sepLast
->rtfNextSE
= sep
;
1197 sep
->rtfNextSE
= NULL
;
1200 else if (RTFCheckCM (info
, rtfGroup
, rtfBeginGroup
))
1203 * This passes over "{\*\keycode ... }, among
1204 * other things. A temporary (perhaps) hack.
1206 ERR( "%s: skipping begin", fn
);
1207 RTFSkipGroup (info
);
1210 else if (info
->rtfClass
== rtfText
) /* style name */
1213 while (info
->rtfClass
== rtfText
)
1215 if (info
->rtfMajor
== ';')
1217 /* put back for "for" loop */
1218 RTFUngetToken (info
);
1221 *bp
++ = info
->rtfMajor
;
1225 sp
->rtfSName
= RTFStrSave (buf
);
1226 if (sp
->rtfSName
== NULL
)
1227 ERR ( "%s: cannot allocate style name", fn
);
1229 else /* unrecognized */
1231 /* ignore token but announce it */
1232 ERR ( "%s: unknown token \"%s\"\n",
1233 fn
, info
->rtfTextBuf
);
1238 if (!RTFCheckCM (info
, rtfGroup
, rtfEndGroup
))
1239 ERR ( "%s: missing \"}\"", fn
);
1241 * Check over the style structure. A name is a must.
1242 * If no style number was specified, check whether it's the
1243 * Normal style (in which case it's given style number
1244 * rtfNormalStyleNum). Note that some "normal" style names
1245 * just begin with "Normal" and can have other stuff following,
1246 * e.g., "Normal,Times 10 point". Ugh.
1248 * Some German RTF writers use "Standard" instead of "Normal".
1250 if (sp
->rtfSName
== NULL
)
1251 ERR ( "%s: missing style name", fn
);
1252 if (sp
->rtfSNum
< 0)
1254 if (strncmp (buf
, "Normal", 6) != 0
1255 && strncmp (buf
, "Standard", 8) != 0)
1256 ERR ( "%s: missing style number", fn
);
1257 sp
->rtfSNum
= rtfNormalStyleNum
;
1259 if (sp
->rtfSNextPar
== -1) /* if \snext not given, */
1260 sp
->rtfSNextPar
= sp
->rtfSNum
; /* next is itself */
1262 /* otherwise we're just dealing with fake end group from skipped group */
1264 RTFRouteToken (info
); /* feed "}" back to router */
1268 static void ReadInfoGroup(RTF_Info
*info
)
1270 RTFSkipGroup (info
);
1271 RTFRouteToken (info
); /* feed "}" back to router */
1275 static void ReadPictGroup(RTF_Info
*info
)
1277 RTFSkipGroup (info
);
1278 RTFRouteToken (info
); /* feed "}" back to router */
1282 static void ReadObjGroup(RTF_Info
*info
)
1284 RTFSkipGroup (info
);
1285 RTFRouteToken (info
); /* feed "}" back to router */
1289 /* ---------------------------------------------------------------------- */
1292 * Routines to return pieces of stylesheet, or font or color tables.
1293 * References to style 0 are mapped onto the Normal style.
1297 RTFStyle
*RTFGetStyle(RTF_Info
*info
, int num
)
1302 return (info
->styleList
);
1303 for (s
= info
->styleList
; s
!= NULL
; s
= s
->rtfNextStyle
)
1305 if (s
->rtfSNum
== num
)
1308 return (s
); /* NULL if not found */
1312 RTFFont
*RTFGetFont(RTF_Info
*info
, int num
)
1317 return (info
->fontList
);
1318 for (f
= info
->fontList
; f
!= NULL
; f
= f
->rtfNextFont
)
1320 if (f
->rtfFNum
== num
)
1323 return (f
); /* NULL if not found */
1327 RTFColor
*RTFGetColor(RTF_Info
*info
, int num
)
1332 return (info
->colorList
);
1333 for (c
= info
->colorList
; c
!= NULL
; c
= c
->rtfNextColor
)
1335 if (c
->rtfCNum
== num
)
1338 return (c
); /* NULL if not found */
1342 /* ---------------------------------------------------------------------- */
1346 * Expand style n, if there is such a style.
1349 void RTFExpandStyle(RTF_Info
*info
, int n
)
1358 s
= RTFGetStyle (info
, n
);
1361 if (s
->rtfExpanding
!= 0)
1362 ERR ("Style expansion loop, style %d", n
);
1363 s
->rtfExpanding
= 1; /* set expansion flag for loop detection */
1365 * Expand "based-on" style (unless it's the same as the current
1366 * style -- Normal style usually gives itself as its own based-on
1367 * style). Based-on style expansion is done by synthesizing
1368 * the token that the writer needs to see in order to trigger
1369 * another style expansion, and feeding to token back through
1370 * the router so the writer sees it.
1372 if (n
!= s
->rtfSBasedOn
)
1374 RTFSetToken (info
, rtfControl
, rtfParAttr
, rtfStyleNum
,
1375 s
->rtfSBasedOn
, "\\s");
1376 RTFRouteToken (info
);
1379 * Now route the tokens unique to this style. RTFSetToken()
1380 * isn't used because it would add the param value to the end
1381 * of the token text, which already has it in.
1383 for (se
= s
->rtfSSEList
; se
!= NULL
; se
= se
->rtfNextSE
)
1385 info
->rtfClass
= se
->rtfSEClass
;
1386 info
->rtfMajor
= se
->rtfSEMajor
;
1387 info
->rtfMinor
= se
->rtfSEMinor
;
1388 info
->rtfParam
= se
->rtfSEParam
;
1389 lstrcpyA (info
->rtfTextBuf
, se
->rtfSEText
);
1390 info
->rtfTextLen
= lstrlenA (info
->rtfTextBuf
);
1391 RTFRouteToken (info
);
1393 s
->rtfExpanding
= 0; /* done - clear expansion flag */
1397 /* ---------------------------------------------------------------------- */
1400 * Control symbol lookup routines
1404 typedef struct RTFKey RTFKey
;
1408 int rtfKMajor
; /* major number */
1409 int rtfKMinor
; /* minor number */
1410 const char *rtfKStr
; /* symbol name */
1411 int rtfKHash
; /* symbol name hash value */
1415 * A minor number of -1 means the token has no minor number
1416 * (all valid minor numbers are >= 0).
1419 static RTFKey rtfKey
[] =
1422 * Special characters
1425 { rtfSpecialChar
, rtfIIntVersion
, "vern", 0 },
1426 { rtfSpecialChar
, rtfICreateTime
, "creatim", 0 },
1427 { rtfSpecialChar
, rtfIRevisionTime
, "revtim", 0 },
1428 { rtfSpecialChar
, rtfIPrintTime
, "printim", 0 },
1429 { rtfSpecialChar
, rtfIBackupTime
, "buptim", 0 },
1430 { rtfSpecialChar
, rtfIEditTime
, "edmins", 0 },
1431 { rtfSpecialChar
, rtfIYear
, "yr", 0 },
1432 { rtfSpecialChar
, rtfIMonth
, "mo", 0 },
1433 { rtfSpecialChar
, rtfIDay
, "dy", 0 },
1434 { rtfSpecialChar
, rtfIHour
, "hr", 0 },
1435 { rtfSpecialChar
, rtfIMinute
, "min", 0 },
1436 { rtfSpecialChar
, rtfISecond
, "sec", 0 },
1437 { rtfSpecialChar
, rtfINPages
, "nofpages", 0 },
1438 { rtfSpecialChar
, rtfINWords
, "nofwords", 0 },
1439 { rtfSpecialChar
, rtfINChars
, "nofchars", 0 },
1440 { rtfSpecialChar
, rtfIIntID
, "id", 0 },
1442 { rtfSpecialChar
, rtfCurHeadDate
, "chdate", 0 },
1443 { rtfSpecialChar
, rtfCurHeadDateLong
, "chdpl", 0 },
1444 { rtfSpecialChar
, rtfCurHeadDateAbbrev
, "chdpa", 0 },
1445 { rtfSpecialChar
, rtfCurHeadTime
, "chtime", 0 },
1446 { rtfSpecialChar
, rtfCurHeadPage
, "chpgn", 0 },
1447 { rtfSpecialChar
, rtfSectNum
, "sectnum", 0 },
1448 { rtfSpecialChar
, rtfCurFNote
, "chftn", 0 },
1449 { rtfSpecialChar
, rtfCurAnnotRef
, "chatn", 0 },
1450 { rtfSpecialChar
, rtfFNoteSep
, "chftnsep", 0 },
1451 { rtfSpecialChar
, rtfFNoteCont
, "chftnsepc", 0 },
1452 { rtfSpecialChar
, rtfCell
, "cell", 0 },
1453 { rtfSpecialChar
, rtfRow
, "row", 0 },
1454 { rtfSpecialChar
, rtfPar
, "par", 0 },
1455 /* newline and carriage return are synonyms for */
1456 /* \par when they are preceded by a \ character */
1457 { rtfSpecialChar
, rtfPar
, "\n", 0 },
1458 { rtfSpecialChar
, rtfPar
, "\r", 0 },
1459 { rtfSpecialChar
, rtfSect
, "sect", 0 },
1460 { rtfSpecialChar
, rtfPage
, "page", 0 },
1461 { rtfSpecialChar
, rtfColumn
, "column", 0 },
1462 { rtfSpecialChar
, rtfLine
, "line", 0 },
1463 { rtfSpecialChar
, rtfSoftPage
, "softpage", 0 },
1464 { rtfSpecialChar
, rtfSoftColumn
, "softcol", 0 },
1465 { rtfSpecialChar
, rtfSoftLine
, "softline", 0 },
1466 { rtfSpecialChar
, rtfSoftLineHt
, "softlheight", 0 },
1467 { rtfSpecialChar
, rtfTab
, "tab", 0 },
1468 { rtfSpecialChar
, rtfEmDash
, "emdash", 0 },
1469 { rtfSpecialChar
, rtfEnDash
, "endash", 0 },
1470 { rtfSpecialChar
, rtfEmSpace
, "emspace", 0 },
1471 { rtfSpecialChar
, rtfEnSpace
, "enspace", 0 },
1472 { rtfSpecialChar
, rtfBullet
, "bullet", 0 },
1473 { rtfSpecialChar
, rtfLQuote
, "lquote", 0 },
1474 { rtfSpecialChar
, rtfRQuote
, "rquote", 0 },
1475 { rtfSpecialChar
, rtfLDblQuote
, "ldblquote", 0 },
1476 { rtfSpecialChar
, rtfRDblQuote
, "rdblquote", 0 },
1477 { rtfSpecialChar
, rtfFormula
, "|", 0 },
1478 { rtfSpecialChar
, rtfNoBrkSpace
, "~", 0 },
1479 { rtfSpecialChar
, rtfNoReqHyphen
, "-", 0 },
1480 { rtfSpecialChar
, rtfNoBrkHyphen
, "_", 0 },
1481 { rtfSpecialChar
, rtfOptDest
, "*", 0 },
1482 { rtfSpecialChar
, rtfLTRMark
, "ltrmark", 0 },
1483 { rtfSpecialChar
, rtfRTLMark
, "rtlmark", 0 },
1484 { rtfSpecialChar
, rtfNoWidthJoiner
, "zwj", 0 },
1485 { rtfSpecialChar
, rtfNoWidthNonJoiner
, "zwnj", 0 },
1486 /* is this valid? */
1487 { rtfSpecialChar
, rtfCurHeadPict
, "chpict", 0 },
1488 { rtfSpecialChar
, rtfUnicode
, "u", 0 },
1491 * Character formatting attributes
1494 { rtfCharAttr
, rtfPlain
, "plain", 0 },
1495 { rtfCharAttr
, rtfBold
, "b", 0 },
1496 { rtfCharAttr
, rtfAllCaps
, "caps", 0 },
1497 { rtfCharAttr
, rtfDeleted
, "deleted", 0 },
1498 { rtfCharAttr
, rtfSubScript
, "dn", 0 },
1499 { rtfCharAttr
, rtfSubScrShrink
, "sub", 0 },
1500 { rtfCharAttr
, rtfNoSuperSub
, "nosupersub", 0 },
1501 { rtfCharAttr
, rtfExpand
, "expnd", 0 },
1502 { rtfCharAttr
, rtfExpandTwips
, "expndtw", 0 },
1503 { rtfCharAttr
, rtfKerning
, "kerning", 0 },
1504 { rtfCharAttr
, rtfFontNum
, "f", 0 },
1505 { rtfCharAttr
, rtfFontSize
, "fs", 0 },
1506 { rtfCharAttr
, rtfItalic
, "i", 0 },
1507 { rtfCharAttr
, rtfOutline
, "outl", 0 },
1508 { rtfCharAttr
, rtfRevised
, "revised", 0 },
1509 { rtfCharAttr
, rtfRevAuthor
, "revauth", 0 },
1510 { rtfCharAttr
, rtfRevDTTM
, "revdttm", 0 },
1511 { rtfCharAttr
, rtfSmallCaps
, "scaps", 0 },
1512 { rtfCharAttr
, rtfShadow
, "shad", 0 },
1513 { rtfCharAttr
, rtfStrikeThru
, "strike", 0 },
1514 { rtfCharAttr
, rtfUnderline
, "ul", 0 },
1515 { rtfCharAttr
, rtfDotUnderline
, "uld", 0 },
1516 { rtfCharAttr
, rtfDbUnderline
, "uldb", 0 },
1517 { rtfCharAttr
, rtfNoUnderline
, "ulnone", 0 },
1518 { rtfCharAttr
, rtfWordUnderline
, "ulw", 0 },
1519 { rtfCharAttr
, rtfSuperScript
, "up", 0 },
1520 { rtfCharAttr
, rtfSuperScrShrink
, "super", 0 },
1521 { rtfCharAttr
, rtfInvisible
, "v", 0 },
1522 { rtfCharAttr
, rtfForeColor
, "cf", 0 },
1523 { rtfCharAttr
, rtfBackColor
, "cb", 0 },
1524 { rtfCharAttr
, rtfRTLChar
, "rtlch", 0 },
1525 { rtfCharAttr
, rtfLTRChar
, "ltrch", 0 },
1526 { rtfCharAttr
, rtfCharStyleNum
, "cs", 0 },
1527 { rtfCharAttr
, rtfCharCharSet
, "cchs", 0 },
1528 { rtfCharAttr
, rtfLanguage
, "lang", 0 },
1529 /* this has disappeared from spec 1.2 */
1530 { rtfCharAttr
, rtfGray
, "gray", 0 },
1531 { rtfCharAttr
, rtfUnicodeLength
, "uc", 0 },
1534 * Paragraph formatting attributes
1537 { rtfParAttr
, rtfParDef
, "pard", 0 },
1538 { rtfParAttr
, rtfStyleNum
, "s", 0 },
1539 { rtfParAttr
, rtfHyphenate
, "hyphpar", 0 },
1540 { rtfParAttr
, rtfInTable
, "intbl", 0 },
1541 { rtfParAttr
, rtfKeep
, "keep", 0 },
1542 { rtfParAttr
, rtfNoWidowControl
, "nowidctlpar", 0 },
1543 { rtfParAttr
, rtfKeepNext
, "keepn", 0 },
1544 { rtfParAttr
, rtfOutlineLevel
, "level", 0 },
1545 { rtfParAttr
, rtfNoLineNum
, "noline", 0 },
1546 { rtfParAttr
, rtfPBBefore
, "pagebb", 0 },
1547 { rtfParAttr
, rtfSideBySide
, "sbys", 0 },
1548 { rtfParAttr
, rtfQuadLeft
, "ql", 0 },
1549 { rtfParAttr
, rtfQuadRight
, "qr", 0 },
1550 { rtfParAttr
, rtfQuadJust
, "qj", 0 },
1551 { rtfParAttr
, rtfQuadCenter
, "qc", 0 },
1552 { rtfParAttr
, rtfFirstIndent
, "fi", 0 },
1553 { rtfParAttr
, rtfLeftIndent
, "li", 0 },
1554 { rtfParAttr
, rtfRightIndent
, "ri", 0 },
1555 { rtfParAttr
, rtfSpaceBefore
, "sb", 0 },
1556 { rtfParAttr
, rtfSpaceAfter
, "sa", 0 },
1557 { rtfParAttr
, rtfSpaceBetween
, "sl", 0 },
1558 { rtfParAttr
, rtfSpaceMultiply
, "slmult", 0 },
1560 { rtfParAttr
, rtfSubDocument
, "subdocument", 0 },
1562 { rtfParAttr
, rtfRTLPar
, "rtlpar", 0 },
1563 { rtfParAttr
, rtfLTRPar
, "ltrpar", 0 },
1565 { rtfParAttr
, rtfTabPos
, "tx", 0 },
1567 * FrameMaker writes \tql (to mean left-justified tab, apparently)
1568 * although it's not in the spec. It's also redundant, since lj
1569 * tabs are the default.
1571 { rtfParAttr
, rtfTabLeft
, "tql", 0 },
1572 { rtfParAttr
, rtfTabRight
, "tqr", 0 },
1573 { rtfParAttr
, rtfTabCenter
, "tqc", 0 },
1574 { rtfParAttr
, rtfTabDecimal
, "tqdec", 0 },
1575 { rtfParAttr
, rtfTabBar
, "tb", 0 },
1576 { rtfParAttr
, rtfLeaderDot
, "tldot", 0 },
1577 { rtfParAttr
, rtfLeaderHyphen
, "tlhyph", 0 },
1578 { rtfParAttr
, rtfLeaderUnder
, "tlul", 0 },
1579 { rtfParAttr
, rtfLeaderThick
, "tlth", 0 },
1580 { rtfParAttr
, rtfLeaderEqual
, "tleq", 0 },
1582 { rtfParAttr
, rtfParLevel
, "pnlvl", 0 },
1583 { rtfParAttr
, rtfParBullet
, "pnlvlblt", 0 },
1584 { rtfParAttr
, rtfParSimple
, "pnlvlbody", 0 },
1585 { rtfParAttr
, rtfParNumCont
, "pnlvlcont", 0 },
1586 { rtfParAttr
, rtfParNumOnce
, "pnnumonce", 0 },
1587 { rtfParAttr
, rtfParNumAcross
, "pnacross", 0 },
1588 { rtfParAttr
, rtfParHangIndent
, "pnhang", 0 },
1589 { rtfParAttr
, rtfParNumRestart
, "pnrestart", 0 },
1590 { rtfParAttr
, rtfParNumCardinal
, "pncard", 0 },
1591 { rtfParAttr
, rtfParNumDecimal
, "pndec", 0 },
1592 { rtfParAttr
, rtfParNumULetter
, "pnucltr", 0 },
1593 { rtfParAttr
, rtfParNumURoman
, "pnucrm", 0 },
1594 { rtfParAttr
, rtfParNumLLetter
, "pnlcltr", 0 },
1595 { rtfParAttr
, rtfParNumLRoman
, "pnlcrm", 0 },
1596 { rtfParAttr
, rtfParNumOrdinal
, "pnord", 0 },
1597 { rtfParAttr
, rtfParNumOrdinalText
, "pnordt", 0 },
1598 { rtfParAttr
, rtfParNumBold
, "pnb", 0 },
1599 { rtfParAttr
, rtfParNumItalic
, "pni", 0 },
1600 { rtfParAttr
, rtfParNumAllCaps
, "pncaps", 0 },
1601 { rtfParAttr
, rtfParNumSmallCaps
, "pnscaps", 0 },
1602 { rtfParAttr
, rtfParNumUnder
, "pnul", 0 },
1603 { rtfParAttr
, rtfParNumDotUnder
, "pnuld", 0 },
1604 { rtfParAttr
, rtfParNumDbUnder
, "pnuldb", 0 },
1605 { rtfParAttr
, rtfParNumNoUnder
, "pnulnone", 0 },
1606 { rtfParAttr
, rtfParNumWordUnder
, "pnulw", 0 },
1607 { rtfParAttr
, rtfParNumStrikethru
, "pnstrike", 0 },
1608 { rtfParAttr
, rtfParNumForeColor
, "pncf", 0 },
1609 { rtfParAttr
, rtfParNumFont
, "pnf", 0 },
1610 { rtfParAttr
, rtfParNumFontSize
, "pnfs", 0 },
1611 { rtfParAttr
, rtfParNumIndent
, "pnindent", 0 },
1612 { rtfParAttr
, rtfParNumSpacing
, "pnsp", 0 },
1613 { rtfParAttr
, rtfParNumInclPrev
, "pnprev", 0 },
1614 { rtfParAttr
, rtfParNumCenter
, "pnqc", 0 },
1615 { rtfParAttr
, rtfParNumLeft
, "pnql", 0 },
1616 { rtfParAttr
, rtfParNumRight
, "pnqr", 0 },
1617 { rtfParAttr
, rtfParNumStartAt
, "pnstart", 0 },
1619 { rtfParAttr
, rtfBorderTop
, "brdrt", 0 },
1620 { rtfParAttr
, rtfBorderBottom
, "brdrb", 0 },
1621 { rtfParAttr
, rtfBorderLeft
, "brdrl", 0 },
1622 { rtfParAttr
, rtfBorderRight
, "brdrr", 0 },
1623 { rtfParAttr
, rtfBorderBetween
, "brdrbtw", 0 },
1624 { rtfParAttr
, rtfBorderBar
, "brdrbar", 0 },
1625 { rtfParAttr
, rtfBorderBox
, "box", 0 },
1626 { rtfParAttr
, rtfBorderSingle
, "brdrs", 0 },
1627 { rtfParAttr
, rtfBorderThick
, "brdrth", 0 },
1628 { rtfParAttr
, rtfBorderShadow
, "brdrsh", 0 },
1629 { rtfParAttr
, rtfBorderDouble
, "brdrdb", 0 },
1630 { rtfParAttr
, rtfBorderDot
, "brdrdot", 0 },
1631 { rtfParAttr
, rtfBorderDot
, "brdrdash", 0 },
1632 { rtfParAttr
, rtfBorderHair
, "brdrhair", 0 },
1633 { rtfParAttr
, rtfBorderWidth
, "brdrw", 0 },
1634 { rtfParAttr
, rtfBorderColor
, "brdrcf", 0 },
1635 { rtfParAttr
, rtfBorderSpace
, "brsp", 0 },
1637 { rtfParAttr
, rtfShading
, "shading", 0 },
1638 { rtfParAttr
, rtfBgPatH
, "bghoriz", 0 },
1639 { rtfParAttr
, rtfBgPatV
, "bgvert", 0 },
1640 { rtfParAttr
, rtfFwdDiagBgPat
, "bgfdiag", 0 },
1641 { rtfParAttr
, rtfBwdDiagBgPat
, "bgbdiag", 0 },
1642 { rtfParAttr
, rtfHatchBgPat
, "bgcross", 0 },
1643 { rtfParAttr
, rtfDiagHatchBgPat
, "bgdcross", 0 },
1644 { rtfParAttr
, rtfDarkBgPatH
, "bgdkhoriz", 0 },
1645 { rtfParAttr
, rtfDarkBgPatV
, "bgdkvert", 0 },
1646 { rtfParAttr
, rtfFwdDarkBgPat
, "bgdkfdiag", 0 },
1647 { rtfParAttr
, rtfBwdDarkBgPat
, "bgdkbdiag", 0 },
1648 { rtfParAttr
, rtfDarkHatchBgPat
, "bgdkcross", 0 },
1649 { rtfParAttr
, rtfDarkDiagHatchBgPat
, "bgdkdcross", 0 },
1650 { rtfParAttr
, rtfBgPatLineColor
, "cfpat", 0 },
1651 { rtfParAttr
, rtfBgPatColor
, "cbpat", 0 },
1654 * Section formatting attributes
1657 { rtfSectAttr
, rtfSectDef
, "sectd", 0 },
1658 { rtfSectAttr
, rtfENoteHere
, "endnhere", 0 },
1659 { rtfSectAttr
, rtfPrtBinFirst
, "binfsxn", 0 },
1660 { rtfSectAttr
, rtfPrtBin
, "binsxn", 0 },
1661 { rtfSectAttr
, rtfSectStyleNum
, "ds", 0 },
1663 { rtfSectAttr
, rtfNoBreak
, "sbknone", 0 },
1664 { rtfSectAttr
, rtfColBreak
, "sbkcol", 0 },
1665 { rtfSectAttr
, rtfPageBreak
, "sbkpage", 0 },
1666 { rtfSectAttr
, rtfEvenBreak
, "sbkeven", 0 },
1667 { rtfSectAttr
, rtfOddBreak
, "sbkodd", 0 },
1669 { rtfSectAttr
, rtfColumns
, "cols", 0 },
1670 { rtfSectAttr
, rtfColumnSpace
, "colsx", 0 },
1671 { rtfSectAttr
, rtfColumnNumber
, "colno", 0 },
1672 { rtfSectAttr
, rtfColumnSpRight
, "colsr", 0 },
1673 { rtfSectAttr
, rtfColumnWidth
, "colw", 0 },
1674 { rtfSectAttr
, rtfColumnLine
, "linebetcol", 0 },
1676 { rtfSectAttr
, rtfLineModulus
, "linemod", 0 },
1677 { rtfSectAttr
, rtfLineDist
, "linex", 0 },
1678 { rtfSectAttr
, rtfLineStarts
, "linestarts", 0 },
1679 { rtfSectAttr
, rtfLineRestart
, "linerestart", 0 },
1680 { rtfSectAttr
, rtfLineRestartPg
, "lineppage", 0 },
1681 { rtfSectAttr
, rtfLineCont
, "linecont", 0 },
1683 { rtfSectAttr
, rtfSectPageWid
, "pgwsxn", 0 },
1684 { rtfSectAttr
, rtfSectPageHt
, "pghsxn", 0 },
1685 { rtfSectAttr
, rtfSectMarginLeft
, "marglsxn", 0 },
1686 { rtfSectAttr
, rtfSectMarginRight
, "margrsxn", 0 },
1687 { rtfSectAttr
, rtfSectMarginTop
, "margtsxn", 0 },
1688 { rtfSectAttr
, rtfSectMarginBottom
, "margbsxn", 0 },
1689 { rtfSectAttr
, rtfSectMarginGutter
, "guttersxn", 0 },
1690 { rtfSectAttr
, rtfSectLandscape
, "lndscpsxn", 0 },
1691 { rtfSectAttr
, rtfTitleSpecial
, "titlepg", 0 },
1692 { rtfSectAttr
, rtfHeaderY
, "headery", 0 },
1693 { rtfSectAttr
, rtfFooterY
, "footery", 0 },
1695 { rtfSectAttr
, rtfPageStarts
, "pgnstarts", 0 },
1696 { rtfSectAttr
, rtfPageCont
, "pgncont", 0 },
1697 { rtfSectAttr
, rtfPageRestart
, "pgnrestart", 0 },
1698 { rtfSectAttr
, rtfPageNumRight
, "pgnx", 0 },
1699 { rtfSectAttr
, rtfPageNumTop
, "pgny", 0 },
1700 { rtfSectAttr
, rtfPageDecimal
, "pgndec", 0 },
1701 { rtfSectAttr
, rtfPageURoman
, "pgnucrm", 0 },
1702 { rtfSectAttr
, rtfPageLRoman
, "pgnlcrm", 0 },
1703 { rtfSectAttr
, rtfPageULetter
, "pgnucltr", 0 },
1704 { rtfSectAttr
, rtfPageLLetter
, "pgnlcltr", 0 },
1705 { rtfSectAttr
, rtfPageNumHyphSep
, "pgnhnsh", 0 },
1706 { rtfSectAttr
, rtfPageNumSpaceSep
, "pgnhnsp", 0 },
1707 { rtfSectAttr
, rtfPageNumColonSep
, "pgnhnsc", 0 },
1708 { rtfSectAttr
, rtfPageNumEmdashSep
, "pgnhnsm", 0 },
1709 { rtfSectAttr
, rtfPageNumEndashSep
, "pgnhnsn", 0 },
1711 { rtfSectAttr
, rtfTopVAlign
, "vertalt", 0 },
1712 /* misspelled as "vertal" in specification 1.0 */
1713 { rtfSectAttr
, rtfBottomVAlign
, "vertalb", 0 },
1714 { rtfSectAttr
, rtfCenterVAlign
, "vertalc", 0 },
1715 { rtfSectAttr
, rtfJustVAlign
, "vertalj", 0 },
1717 { rtfSectAttr
, rtfRTLSect
, "rtlsect", 0 },
1718 { rtfSectAttr
, rtfLTRSect
, "ltrsect", 0 },
1720 /* I've seen these in an old spec, but not in real files... */
1721 /*rtfSectAttr, rtfNoBreak, "nobreak", 0,*/
1722 /*rtfSectAttr, rtfColBreak, "colbreak", 0,*/
1723 /*rtfSectAttr, rtfPageBreak, "pagebreak", 0,*/
1724 /*rtfSectAttr, rtfEvenBreak, "evenbreak", 0,*/
1725 /*rtfSectAttr, rtfOddBreak, "oddbreak", 0,*/
1728 * Document formatting attributes
1731 { rtfDocAttr
, rtfDefTab
, "deftab", 0 },
1732 { rtfDocAttr
, rtfHyphHotZone
, "hyphhotz", 0 },
1733 { rtfDocAttr
, rtfHyphConsecLines
, "hyphconsec", 0 },
1734 { rtfDocAttr
, rtfHyphCaps
, "hyphcaps", 0 },
1735 { rtfDocAttr
, rtfHyphAuto
, "hyphauto", 0 },
1736 { rtfDocAttr
, rtfLineStart
, "linestart", 0 },
1737 { rtfDocAttr
, rtfFracWidth
, "fracwidth", 0 },
1738 /* \makeback was given in old version of spec, it's now */
1739 /* listed as \makebackup */
1740 { rtfDocAttr
, rtfMakeBackup
, "makeback", 0 },
1741 { rtfDocAttr
, rtfMakeBackup
, "makebackup", 0 },
1742 { rtfDocAttr
, rtfRTFDefault
, "defformat", 0 },
1743 { rtfDocAttr
, rtfPSOverlay
, "psover", 0 },
1744 { rtfDocAttr
, rtfDocTemplate
, "doctemp", 0 },
1745 { rtfDocAttr
, rtfDefLanguage
, "deflang", 0 },
1747 { rtfDocAttr
, rtfFENoteType
, "fet", 0 },
1748 { rtfDocAttr
, rtfFNoteEndSect
, "endnotes", 0 },
1749 { rtfDocAttr
, rtfFNoteEndDoc
, "enddoc", 0 },
1750 { rtfDocAttr
, rtfFNoteText
, "ftntj", 0 },
1751 { rtfDocAttr
, rtfFNoteBottom
, "ftnbj", 0 },
1752 { rtfDocAttr
, rtfENoteEndSect
, "aendnotes", 0 },
1753 { rtfDocAttr
, rtfENoteEndDoc
, "aenddoc", 0 },
1754 { rtfDocAttr
, rtfENoteText
, "aftntj", 0 },
1755 { rtfDocAttr
, rtfENoteBottom
, "aftnbj", 0 },
1756 { rtfDocAttr
, rtfFNoteStart
, "ftnstart", 0 },
1757 { rtfDocAttr
, rtfENoteStart
, "aftnstart", 0 },
1758 { rtfDocAttr
, rtfFNoteRestartPage
, "ftnrstpg", 0 },
1759 { rtfDocAttr
, rtfFNoteRestart
, "ftnrestart", 0 },
1760 { rtfDocAttr
, rtfFNoteRestartCont
, "ftnrstcont", 0 },
1761 { rtfDocAttr
, rtfENoteRestart
, "aftnrestart", 0 },
1762 { rtfDocAttr
, rtfENoteRestartCont
, "aftnrstcont", 0 },
1763 { rtfDocAttr
, rtfFNoteNumArabic
, "ftnnar", 0 },
1764 { rtfDocAttr
, rtfFNoteNumLLetter
, "ftnnalc", 0 },
1765 { rtfDocAttr
, rtfFNoteNumULetter
, "ftnnauc", 0 },
1766 { rtfDocAttr
, rtfFNoteNumLRoman
, "ftnnrlc", 0 },
1767 { rtfDocAttr
, rtfFNoteNumURoman
, "ftnnruc", 0 },
1768 { rtfDocAttr
, rtfFNoteNumChicago
, "ftnnchi", 0 },
1769 { rtfDocAttr
, rtfENoteNumArabic
, "aftnnar", 0 },
1770 { rtfDocAttr
, rtfENoteNumLLetter
, "aftnnalc", 0 },
1771 { rtfDocAttr
, rtfENoteNumULetter
, "aftnnauc", 0 },
1772 { rtfDocAttr
, rtfENoteNumLRoman
, "aftnnrlc", 0 },
1773 { rtfDocAttr
, rtfENoteNumURoman
, "aftnnruc", 0 },
1774 { rtfDocAttr
, rtfENoteNumChicago
, "aftnnchi", 0 },
1776 { rtfDocAttr
, rtfPaperWidth
, "paperw", 0 },
1777 { rtfDocAttr
, rtfPaperHeight
, "paperh", 0 },
1778 { rtfDocAttr
, rtfPaperSize
, "psz", 0 },
1779 { rtfDocAttr
, rtfLeftMargin
, "margl", 0 },
1780 { rtfDocAttr
, rtfRightMargin
, "margr", 0 },
1781 { rtfDocAttr
, rtfTopMargin
, "margt", 0 },
1782 { rtfDocAttr
, rtfBottomMargin
, "margb", 0 },
1783 { rtfDocAttr
, rtfFacingPage
, "facingp", 0 },
1784 { rtfDocAttr
, rtfGutterWid
, "gutter", 0 },
1785 { rtfDocAttr
, rtfMirrorMargin
, "margmirror", 0 },
1786 { rtfDocAttr
, rtfLandscape
, "landscape", 0 },
1787 { rtfDocAttr
, rtfPageStart
, "pgnstart", 0 },
1788 { rtfDocAttr
, rtfWidowCtrl
, "widowctrl", 0 },
1790 { rtfDocAttr
, rtfLinkStyles
, "linkstyles", 0 },
1792 { rtfDocAttr
, rtfNoAutoTabIndent
, "notabind", 0 },
1793 { rtfDocAttr
, rtfWrapSpaces
, "wraptrsp", 0 },
1794 { rtfDocAttr
, rtfPrintColorsBlack
, "prcolbl", 0 },
1795 { rtfDocAttr
, rtfNoExtraSpaceRL
, "noextrasprl", 0 },
1796 { rtfDocAttr
, rtfNoColumnBalance
, "nocolbal", 0 },
1797 { rtfDocAttr
, rtfCvtMailMergeQuote
, "cvmme", 0 },
1798 { rtfDocAttr
, rtfSuppressTopSpace
, "sprstsp", 0 },
1799 { rtfDocAttr
, rtfSuppressPreParSpace
, "sprsspbf", 0 },
1800 { rtfDocAttr
, rtfCombineTblBorders
, "otblrul", 0 },
1801 { rtfDocAttr
, rtfTranspMetafiles
, "transmf", 0 },
1802 { rtfDocAttr
, rtfSwapBorders
, "swpbdr", 0 },
1803 { rtfDocAttr
, rtfShowHardBreaks
, "brkfrm", 0 },
1805 { rtfDocAttr
, rtfFormProtected
, "formprot", 0 },
1806 { rtfDocAttr
, rtfAllProtected
, "allprot", 0 },
1807 { rtfDocAttr
, rtfFormShading
, "formshade", 0 },
1808 { rtfDocAttr
, rtfFormDisplay
, "formdisp", 0 },
1809 { rtfDocAttr
, rtfPrintData
, "printdata", 0 },
1811 { rtfDocAttr
, rtfRevProtected
, "revprot", 0 },
1812 { rtfDocAttr
, rtfRevisions
, "revisions", 0 },
1813 { rtfDocAttr
, rtfRevDisplay
, "revprop", 0 },
1814 { rtfDocAttr
, rtfRevBar
, "revbar", 0 },
1816 { rtfDocAttr
, rtfAnnotProtected
, "annotprot", 0 },
1818 { rtfDocAttr
, rtfRTLDoc
, "rtldoc", 0 },
1819 { rtfDocAttr
, rtfLTRDoc
, "ltrdoc", 0 },
1821 { rtfDocAttr
, rtfAnsiCodePage
, "ansicpg", 0 },
1822 { rtfDocAttr
, rtfUTF8RTF
, "urtf", 0 },
1828 { rtfStyleAttr
, rtfAdditive
, "additive", 0 },
1829 { rtfStyleAttr
, rtfBasedOn
, "sbasedon", 0 },
1830 { rtfStyleAttr
, rtfNext
, "snext", 0 },
1833 * Picture attributes
1836 { rtfPictAttr
, rtfMacQD
, "macpict", 0 },
1837 { rtfPictAttr
, rtfPMMetafile
, "pmmetafile", 0 },
1838 { rtfPictAttr
, rtfWinMetafile
, "wmetafile", 0 },
1839 { rtfPictAttr
, rtfDevIndBitmap
, "dibitmap", 0 },
1840 { rtfPictAttr
, rtfWinBitmap
, "wbitmap", 0 },
1841 { rtfPictAttr
, rtfPixelBits
, "wbmbitspixel", 0 },
1842 { rtfPictAttr
, rtfBitmapPlanes
, "wbmplanes", 0 },
1843 { rtfPictAttr
, rtfBitmapWid
, "wbmwidthbytes", 0 },
1845 { rtfPictAttr
, rtfPicWid
, "picw", 0 },
1846 { rtfPictAttr
, rtfPicHt
, "pich", 0 },
1847 { rtfPictAttr
, rtfPicGoalWid
, "picwgoal", 0 },
1848 { rtfPictAttr
, rtfPicGoalHt
, "pichgoal", 0 },
1849 /* these two aren't in the spec, but some writers emit them */
1850 { rtfPictAttr
, rtfPicGoalWid
, "picwGoal", 0 },
1851 { rtfPictAttr
, rtfPicGoalHt
, "pichGoal", 0 },
1852 { rtfPictAttr
, rtfPicScaleX
, "picscalex", 0 },
1853 { rtfPictAttr
, rtfPicScaleY
, "picscaley", 0 },
1854 { rtfPictAttr
, rtfPicScaled
, "picscaled", 0 },
1855 { rtfPictAttr
, rtfPicCropTop
, "piccropt", 0 },
1856 { rtfPictAttr
, rtfPicCropBottom
, "piccropb", 0 },
1857 { rtfPictAttr
, rtfPicCropLeft
, "piccropl", 0 },
1858 { rtfPictAttr
, rtfPicCropRight
, "piccropr", 0 },
1860 { rtfPictAttr
, rtfPicMFHasBitmap
, "picbmp", 0 },
1861 { rtfPictAttr
, rtfPicMFBitsPerPixel
, "picbpp", 0 },
1863 { rtfPictAttr
, rtfPicBinary
, "bin", 0 },
1866 * NeXT graphic attributes
1869 { rtfNeXTGrAttr
, rtfNeXTGWidth
, "width", 0 },
1870 { rtfNeXTGrAttr
, rtfNeXTGHeight
, "height", 0 },
1876 { rtfDestination
, rtfFontTbl
, "fonttbl", 0 },
1877 { rtfDestination
, rtfFontAltName
, "falt", 0 },
1878 { rtfDestination
, rtfEmbeddedFont
, "fonteb", 0 },
1879 { rtfDestination
, rtfFontFile
, "fontfile", 0 },
1880 { rtfDestination
, rtfFileTbl
, "filetbl", 0 },
1881 { rtfDestination
, rtfFileInfo
, "file", 0 },
1882 { rtfDestination
, rtfColorTbl
, "colortbl", 0 },
1883 { rtfDestination
, rtfStyleSheet
, "stylesheet", 0 },
1884 { rtfDestination
, rtfKeyCode
, "keycode", 0 },
1885 { rtfDestination
, rtfRevisionTbl
, "revtbl", 0 },
1886 { rtfDestination
, rtfGenerator
, "generator", 0 },
1887 { rtfDestination
, rtfInfo
, "info", 0 },
1888 { rtfDestination
, rtfITitle
, "title", 0 },
1889 { rtfDestination
, rtfISubject
, "subject", 0 },
1890 { rtfDestination
, rtfIAuthor
, "author", 0 },
1891 { rtfDestination
, rtfIOperator
, "operator", 0 },
1892 { rtfDestination
, rtfIKeywords
, "keywords", 0 },
1893 { rtfDestination
, rtfIComment
, "comment", 0 },
1894 { rtfDestination
, rtfIVersion
, "version", 0 },
1895 { rtfDestination
, rtfIDoccomm
, "doccomm", 0 },
1896 /* \verscomm may not exist -- was seen in earlier spec version */
1897 { rtfDestination
, rtfIVerscomm
, "verscomm", 0 },
1898 { rtfDestination
, rtfNextFile
, "nextfile", 0 },
1899 { rtfDestination
, rtfTemplate
, "template", 0 },
1900 { rtfDestination
, rtfFNSep
, "ftnsep", 0 },
1901 { rtfDestination
, rtfFNContSep
, "ftnsepc", 0 },
1902 { rtfDestination
, rtfFNContNotice
, "ftncn", 0 },
1903 { rtfDestination
, rtfENSep
, "aftnsep", 0 },
1904 { rtfDestination
, rtfENContSep
, "aftnsepc", 0 },
1905 { rtfDestination
, rtfENContNotice
, "aftncn", 0 },
1906 { rtfDestination
, rtfPageNumLevel
, "pgnhn", 0 },
1907 { rtfDestination
, rtfParNumLevelStyle
, "pnseclvl", 0 },
1908 { rtfDestination
, rtfHeader
, "header", 0 },
1909 { rtfDestination
, rtfFooter
, "footer", 0 },
1910 { rtfDestination
, rtfHeaderLeft
, "headerl", 0 },
1911 { rtfDestination
, rtfHeaderRight
, "headerr", 0 },
1912 { rtfDestination
, rtfHeaderFirst
, "headerf", 0 },
1913 { rtfDestination
, rtfFooterLeft
, "footerl", 0 },
1914 { rtfDestination
, rtfFooterRight
, "footerr", 0 },
1915 { rtfDestination
, rtfFooterFirst
, "footerf", 0 },
1916 { rtfDestination
, rtfParNumText
, "pntext", 0 },
1917 { rtfDestination
, rtfParNumbering
, "pn", 0 },
1918 { rtfDestination
, rtfParNumTextAfter
, "pntexta", 0 },
1919 { rtfDestination
, rtfParNumTextBefore
, "pntextb", 0 },
1920 { rtfDestination
, rtfBookmarkStart
, "bkmkstart", 0 },
1921 { rtfDestination
, rtfBookmarkEnd
, "bkmkend", 0 },
1922 { rtfDestination
, rtfPict
, "pict", 0 },
1923 { rtfDestination
, rtfObject
, "object", 0 },
1924 { rtfDestination
, rtfObjClass
, "objclass", 0 },
1925 { rtfDestination
, rtfObjName
, "objname", 0 },
1926 { rtfObjAttr
, rtfObjTime
, "objtime", 0 },
1927 { rtfDestination
, rtfObjData
, "objdata", 0 },
1928 { rtfDestination
, rtfObjAlias
, "objalias", 0 },
1929 { rtfDestination
, rtfObjSection
, "objsect", 0 },
1930 /* objitem and objtopic aren't documented in the spec! */
1931 { rtfDestination
, rtfObjItem
, "objitem", 0 },
1932 { rtfDestination
, rtfObjTopic
, "objtopic", 0 },
1933 { rtfDestination
, rtfObjResult
, "result", 0 },
1934 { rtfDestination
, rtfDrawObject
, "do", 0 },
1935 { rtfDestination
, rtfFootnote
, "footnote", 0 },
1936 { rtfDestination
, rtfAnnotRefStart
, "atrfstart", 0 },
1937 { rtfDestination
, rtfAnnotRefEnd
, "atrfend", 0 },
1938 { rtfDestination
, rtfAnnotID
, "atnid", 0 },
1939 { rtfDestination
, rtfAnnotAuthor
, "atnauthor", 0 },
1940 { rtfDestination
, rtfAnnotation
, "annotation", 0 },
1941 { rtfDestination
, rtfAnnotRef
, "atnref", 0 },
1942 { rtfDestination
, rtfAnnotTime
, "atntime", 0 },
1943 { rtfDestination
, rtfAnnotIcon
, "atnicn", 0 },
1944 { rtfDestination
, rtfField
, "field", 0 },
1945 { rtfDestination
, rtfFieldInst
, "fldinst", 0 },
1946 { rtfDestination
, rtfFieldResult
, "fldrslt", 0 },
1947 { rtfDestination
, rtfDataField
, "datafield", 0 },
1948 { rtfDestination
, rtfIndex
, "xe", 0 },
1949 { rtfDestination
, rtfIndexText
, "txe", 0 },
1950 { rtfDestination
, rtfIndexRange
, "rxe", 0 },
1951 { rtfDestination
, rtfTOC
, "tc", 0 },
1952 { rtfDestination
, rtfNeXTGraphic
, "NeXTGraphic", 0 },
1958 { rtfFontFamily
, rtfFFNil
, "fnil", 0 },
1959 { rtfFontFamily
, rtfFFRoman
, "froman", 0 },
1960 { rtfFontFamily
, rtfFFSwiss
, "fswiss", 0 },
1961 { rtfFontFamily
, rtfFFModern
, "fmodern", 0 },
1962 { rtfFontFamily
, rtfFFScript
, "fscript", 0 },
1963 { rtfFontFamily
, rtfFFDecor
, "fdecor", 0 },
1964 { rtfFontFamily
, rtfFFTech
, "ftech", 0 },
1965 { rtfFontFamily
, rtfFFBidirectional
, "fbidi", 0 },
1971 { rtfFontAttr
, rtfFontCharSet
, "fcharset", 0 },
1972 { rtfFontAttr
, rtfFontPitch
, "fprq", 0 },
1973 { rtfFontAttr
, rtfFontCodePage
, "cpg", 0 },
1974 { rtfFontAttr
, rtfFTypeNil
, "ftnil", 0 },
1975 { rtfFontAttr
, rtfFTypeTrueType
, "fttruetype", 0 },
1978 * File table attributes
1981 { rtfFileAttr
, rtfFileNum
, "fid", 0 },
1982 { rtfFileAttr
, rtfFileRelPath
, "frelative", 0 },
1983 { rtfFileAttr
, rtfFileOSNum
, "fosnum", 0 },
1989 { rtfFileSource
, rtfSrcMacintosh
, "fvalidmac", 0 },
1990 { rtfFileSource
, rtfSrcDOS
, "fvaliddos", 0 },
1991 { rtfFileSource
, rtfSrcNTFS
, "fvalidntfs", 0 },
1992 { rtfFileSource
, rtfSrcHPFS
, "fvalidhpfs", 0 },
1993 { rtfFileSource
, rtfSrcNetwork
, "fnetwork", 0 },
1999 { rtfColorName
, rtfRed
, "red", 0 },
2000 { rtfColorName
, rtfGreen
, "green", 0 },
2001 { rtfColorName
, rtfBlue
, "blue", 0 },
2007 { rtfCharSet
, rtfMacCharSet
, "mac", 0 },
2008 { rtfCharSet
, rtfAnsiCharSet
, "ansi", 0 },
2009 { rtfCharSet
, rtfPcCharSet
, "pc", 0 },
2010 { rtfCharSet
, rtfPcaCharSet
, "pca", 0 },
2016 { rtfTblAttr
, rtfRowDef
, "trowd", 0 },
2017 { rtfTblAttr
, rtfRowGapH
, "trgaph", 0 },
2018 { rtfTblAttr
, rtfCellPos
, "cellx", 0 },
2019 { rtfTblAttr
, rtfMergeRngFirst
, "clmgf", 0 },
2020 { rtfTblAttr
, rtfMergePrevious
, "clmrg", 0 },
2022 { rtfTblAttr
, rtfRowLeft
, "trql", 0 },
2023 { rtfTblAttr
, rtfRowRight
, "trqr", 0 },
2024 { rtfTblAttr
, rtfRowCenter
, "trqc", 0 },
2025 { rtfTblAttr
, rtfRowLeftEdge
, "trleft", 0 },
2026 { rtfTblAttr
, rtfRowHt
, "trrh", 0 },
2027 { rtfTblAttr
, rtfRowHeader
, "trhdr", 0 },
2028 { rtfTblAttr
, rtfRowKeep
, "trkeep", 0 },
2030 { rtfTblAttr
, rtfRTLRow
, "rtlrow", 0 },
2031 { rtfTblAttr
, rtfLTRRow
, "ltrrow", 0 },
2033 { rtfTblAttr
, rtfRowBordTop
, "trbrdrt", 0 },
2034 { rtfTblAttr
, rtfRowBordLeft
, "trbrdrl", 0 },
2035 { rtfTblAttr
, rtfRowBordBottom
, "trbrdrb", 0 },
2036 { rtfTblAttr
, rtfRowBordRight
, "trbrdrr", 0 },
2037 { rtfTblAttr
, rtfRowBordHoriz
, "trbrdrh", 0 },
2038 { rtfTblAttr
, rtfRowBordVert
, "trbrdrv", 0 },
2040 { rtfTblAttr
, rtfCellBordBottom
, "clbrdrb", 0 },
2041 { rtfTblAttr
, rtfCellBordTop
, "clbrdrt", 0 },
2042 { rtfTblAttr
, rtfCellBordLeft
, "clbrdrl", 0 },
2043 { rtfTblAttr
, rtfCellBordRight
, "clbrdrr", 0 },
2045 { rtfTblAttr
, rtfCellShading
, "clshdng", 0 },
2046 { rtfTblAttr
, rtfCellBgPatH
, "clbghoriz", 0 },
2047 { rtfTblAttr
, rtfCellBgPatV
, "clbgvert", 0 },
2048 { rtfTblAttr
, rtfCellFwdDiagBgPat
, "clbgfdiag", 0 },
2049 { rtfTblAttr
, rtfCellBwdDiagBgPat
, "clbgbdiag", 0 },
2050 { rtfTblAttr
, rtfCellHatchBgPat
, "clbgcross", 0 },
2051 { rtfTblAttr
, rtfCellDiagHatchBgPat
, "clbgdcross", 0 },
2053 * The spec lists "clbgdkhor", but the corresponding non-cell
2054 * control is "bgdkhoriz". At any rate Macintosh Word seems
2055 * to accept both "clbgdkhor" and "clbgdkhoriz".
2057 { rtfTblAttr
, rtfCellDarkBgPatH
, "clbgdkhoriz", 0 },
2058 { rtfTblAttr
, rtfCellDarkBgPatH
, "clbgdkhor", 0 },
2059 { rtfTblAttr
, rtfCellDarkBgPatV
, "clbgdkvert", 0 },
2060 { rtfTblAttr
, rtfCellFwdDarkBgPat
, "clbgdkfdiag", 0 },
2061 { rtfTblAttr
, rtfCellBwdDarkBgPat
, "clbgdkbdiag", 0 },
2062 { rtfTblAttr
, rtfCellDarkHatchBgPat
, "clbgdkcross", 0 },
2063 { rtfTblAttr
, rtfCellDarkDiagHatchBgPat
, "clbgdkdcross", 0 },
2064 { rtfTblAttr
, rtfCellBgPatLineColor
, "clcfpat", 0 },
2065 { rtfTblAttr
, rtfCellBgPatColor
, "clcbpat", 0 },
2071 { rtfFieldAttr
, rtfFieldDirty
, "flddirty", 0 },
2072 { rtfFieldAttr
, rtfFieldEdited
, "fldedit", 0 },
2073 { rtfFieldAttr
, rtfFieldLocked
, "fldlock", 0 },
2074 { rtfFieldAttr
, rtfFieldPrivate
, "fldpriv", 0 },
2075 { rtfFieldAttr
, rtfFieldAlt
, "fldalt", 0 },
2078 * Positioning attributes
2081 { rtfPosAttr
, rtfAbsWid
, "absw", 0 },
2082 { rtfPosAttr
, rtfAbsHt
, "absh", 0 },
2084 { rtfPosAttr
, rtfRPosMargH
, "phmrg", 0 },
2085 { rtfPosAttr
, rtfRPosPageH
, "phpg", 0 },
2086 { rtfPosAttr
, rtfRPosColH
, "phcol", 0 },
2087 { rtfPosAttr
, rtfPosX
, "posx", 0 },
2088 { rtfPosAttr
, rtfPosNegX
, "posnegx", 0 },
2089 { rtfPosAttr
, rtfPosXCenter
, "posxc", 0 },
2090 { rtfPosAttr
, rtfPosXInside
, "posxi", 0 },
2091 { rtfPosAttr
, rtfPosXOutSide
, "posxo", 0 },
2092 { rtfPosAttr
, rtfPosXRight
, "posxr", 0 },
2093 { rtfPosAttr
, rtfPosXLeft
, "posxl", 0 },
2095 { rtfPosAttr
, rtfRPosMargV
, "pvmrg", 0 },
2096 { rtfPosAttr
, rtfRPosPageV
, "pvpg", 0 },
2097 { rtfPosAttr
, rtfRPosParaV
, "pvpara", 0 },
2098 { rtfPosAttr
, rtfPosY
, "posy", 0 },
2099 { rtfPosAttr
, rtfPosNegY
, "posnegy", 0 },
2100 { rtfPosAttr
, rtfPosYInline
, "posyil", 0 },
2101 { rtfPosAttr
, rtfPosYTop
, "posyt", 0 },
2102 { rtfPosAttr
, rtfPosYCenter
, "posyc", 0 },
2103 { rtfPosAttr
, rtfPosYBottom
, "posyb", 0 },
2105 { rtfPosAttr
, rtfNoWrap
, "nowrap", 0 },
2106 { rtfPosAttr
, rtfDistFromTextAll
, "dxfrtext", 0 },
2107 { rtfPosAttr
, rtfDistFromTextX
, "dfrmtxtx", 0 },
2108 { rtfPosAttr
, rtfDistFromTextY
, "dfrmtxty", 0 },
2109 /* \dyfrtext no longer exists in spec 1.2, apparently */
2110 /* replaced by \dfrmtextx and \dfrmtexty. */
2111 { rtfPosAttr
, rtfTextDistY
, "dyfrtext", 0 },
2113 { rtfPosAttr
, rtfDropCapLines
, "dropcapli", 0 },
2114 { rtfPosAttr
, rtfDropCapType
, "dropcapt", 0 },
2120 { rtfObjAttr
, rtfObjEmb
, "objemb", 0 },
2121 { rtfObjAttr
, rtfObjLink
, "objlink", 0 },
2122 { rtfObjAttr
, rtfObjAutoLink
, "objautlink", 0 },
2123 { rtfObjAttr
, rtfObjSubscriber
, "objsub", 0 },
2124 { rtfObjAttr
, rtfObjPublisher
, "objpub", 0 },
2125 { rtfObjAttr
, rtfObjICEmb
, "objicemb", 0 },
2127 { rtfObjAttr
, rtfObjLinkSelf
, "linkself", 0 },
2128 { rtfObjAttr
, rtfObjLock
, "objupdate", 0 },
2129 { rtfObjAttr
, rtfObjUpdate
, "objlock", 0 },
2131 { rtfObjAttr
, rtfObjHt
, "objh", 0 },
2132 { rtfObjAttr
, rtfObjWid
, "objw", 0 },
2133 { rtfObjAttr
, rtfObjSetSize
, "objsetsize", 0 },
2134 { rtfObjAttr
, rtfObjAlign
, "objalign", 0 },
2135 { rtfObjAttr
, rtfObjTransposeY
, "objtransy", 0 },
2136 { rtfObjAttr
, rtfObjCropTop
, "objcropt", 0 },
2137 { rtfObjAttr
, rtfObjCropBottom
, "objcropb", 0 },
2138 { rtfObjAttr
, rtfObjCropLeft
, "objcropl", 0 },
2139 { rtfObjAttr
, rtfObjCropRight
, "objcropr", 0 },
2140 { rtfObjAttr
, rtfObjScaleX
, "objscalex", 0 },
2141 { rtfObjAttr
, rtfObjScaleY
, "objscaley", 0 },
2143 { rtfObjAttr
, rtfObjResRTF
, "rsltrtf", 0 },
2144 { rtfObjAttr
, rtfObjResPict
, "rsltpict", 0 },
2145 { rtfObjAttr
, rtfObjResBitmap
, "rsltbmp", 0 },
2146 { rtfObjAttr
, rtfObjResText
, "rslttxt", 0 },
2147 { rtfObjAttr
, rtfObjResMerge
, "rsltmerge", 0 },
2149 { rtfObjAttr
, rtfObjBookmarkPubObj
, "bkmkpub", 0 },
2150 { rtfObjAttr
, rtfObjPubAutoUpdate
, "pubauto", 0 },
2153 * Associated character formatting attributes
2156 { rtfACharAttr
, rtfACBold
, "ab", 0 },
2157 { rtfACharAttr
, rtfACAllCaps
, "caps", 0 },
2158 { rtfACharAttr
, rtfACForeColor
, "acf", 0 },
2159 { rtfACharAttr
, rtfACSubScript
, "adn", 0 },
2160 { rtfACharAttr
, rtfACExpand
, "aexpnd", 0 },
2161 { rtfACharAttr
, rtfACFontNum
, "af", 0 },
2162 { rtfACharAttr
, rtfACFontSize
, "afs", 0 },
2163 { rtfACharAttr
, rtfACItalic
, "ai", 0 },
2164 { rtfACharAttr
, rtfACLanguage
, "alang", 0 },
2165 { rtfACharAttr
, rtfACOutline
, "aoutl", 0 },
2166 { rtfACharAttr
, rtfACSmallCaps
, "ascaps", 0 },
2167 { rtfACharAttr
, rtfACShadow
, "ashad", 0 },
2168 { rtfACharAttr
, rtfACStrikeThru
, "astrike", 0 },
2169 { rtfACharAttr
, rtfACUnderline
, "aul", 0 },
2170 { rtfACharAttr
, rtfACDotUnderline
, "auld", 0 },
2171 { rtfACharAttr
, rtfACDbUnderline
, "auldb", 0 },
2172 { rtfACharAttr
, rtfACNoUnderline
, "aulnone", 0 },
2173 { rtfACharAttr
, rtfACWordUnderline
, "aulw", 0 },
2174 { rtfACharAttr
, rtfACSuperScript
, "aup", 0 },
2177 * Footnote attributes
2180 { rtfFNoteAttr
, rtfFNAlt
, "ftnalt", 0 },
2183 * Key code attributes
2186 { rtfKeyCodeAttr
, rtfAltKey
, "alt", 0 },
2187 { rtfKeyCodeAttr
, rtfShiftKey
, "shift", 0 },
2188 { rtfKeyCodeAttr
, rtfControlKey
, "ctrl", 0 },
2189 { rtfKeyCodeAttr
, rtfFunctionKey
, "fn", 0 },
2192 * Bookmark attributes
2195 { rtfBookmarkAttr
, rtfBookmarkFirstCol
, "bkmkcolf", 0 },
2196 { rtfBookmarkAttr
, rtfBookmarkLastCol
, "bkmkcoll", 0 },
2199 * Index entry attributes
2202 { rtfIndexAttr
, rtfIndexNumber
, "xef", 0 },
2203 { rtfIndexAttr
, rtfIndexBold
, "bxe", 0 },
2204 { rtfIndexAttr
, rtfIndexItalic
, "ixe", 0 },
2207 * Table of contents attributes
2210 { rtfTOCAttr
, rtfTOCType
, "tcf", 0 },
2211 { rtfTOCAttr
, rtfTOCLevel
, "tcl", 0 },
2214 * Drawing object attributes
2217 { rtfDrawAttr
, rtfDrawLock
, "dolock", 0 },
2218 { rtfDrawAttr
, rtfDrawPageRelX
, "doxpage", 0 },
2219 { rtfDrawAttr
, rtfDrawColumnRelX
, "dobxcolumn", 0 },
2220 { rtfDrawAttr
, rtfDrawMarginRelX
, "dobxmargin", 0 },
2221 { rtfDrawAttr
, rtfDrawPageRelY
, "dobypage", 0 },
2222 { rtfDrawAttr
, rtfDrawColumnRelY
, "dobycolumn", 0 },
2223 { rtfDrawAttr
, rtfDrawMarginRelY
, "dobymargin", 0 },
2224 { rtfDrawAttr
, rtfDrawHeight
, "dobhgt", 0 },
2226 { rtfDrawAttr
, rtfDrawBeginGroup
, "dpgroup", 0 },
2227 { rtfDrawAttr
, rtfDrawGroupCount
, "dpcount", 0 },
2228 { rtfDrawAttr
, rtfDrawEndGroup
, "dpendgroup", 0 },
2229 { rtfDrawAttr
, rtfDrawArc
, "dparc", 0 },
2230 { rtfDrawAttr
, rtfDrawCallout
, "dpcallout", 0 },
2231 { rtfDrawAttr
, rtfDrawEllipse
, "dpellipse", 0 },
2232 { rtfDrawAttr
, rtfDrawLine
, "dpline", 0 },
2233 { rtfDrawAttr
, rtfDrawPolygon
, "dppolygon", 0 },
2234 { rtfDrawAttr
, rtfDrawPolyLine
, "dppolyline", 0 },
2235 { rtfDrawAttr
, rtfDrawRect
, "dprect", 0 },
2236 { rtfDrawAttr
, rtfDrawTextBox
, "dptxbx", 0 },
2238 { rtfDrawAttr
, rtfDrawOffsetX
, "dpx", 0 },
2239 { rtfDrawAttr
, rtfDrawSizeX
, "dpxsize", 0 },
2240 { rtfDrawAttr
, rtfDrawOffsetY
, "dpy", 0 },
2241 { rtfDrawAttr
, rtfDrawSizeY
, "dpysize", 0 },
2243 { rtfDrawAttr
, rtfCOAngle
, "dpcoa", 0 },
2244 { rtfDrawAttr
, rtfCOAccentBar
, "dpcoaccent", 0 },
2245 { rtfDrawAttr
, rtfCOBestFit
, "dpcobestfit", 0 },
2246 { rtfDrawAttr
, rtfCOBorder
, "dpcoborder", 0 },
2247 { rtfDrawAttr
, rtfCOAttachAbsDist
, "dpcodabs", 0 },
2248 { rtfDrawAttr
, rtfCOAttachBottom
, "dpcodbottom", 0 },
2249 { rtfDrawAttr
, rtfCOAttachCenter
, "dpcodcenter", 0 },
2250 { rtfDrawAttr
, rtfCOAttachTop
, "dpcodtop", 0 },
2251 { rtfDrawAttr
, rtfCOLength
, "dpcolength", 0 },
2252 { rtfDrawAttr
, rtfCONegXQuadrant
, "dpcominusx", 0 },
2253 { rtfDrawAttr
, rtfCONegYQuadrant
, "dpcominusy", 0 },
2254 { rtfDrawAttr
, rtfCOOffset
, "dpcooffset", 0 },
2255 { rtfDrawAttr
, rtfCOAttachSmart
, "dpcosmarta", 0 },
2256 { rtfDrawAttr
, rtfCODoubleLine
, "dpcotdouble", 0 },
2257 { rtfDrawAttr
, rtfCORightAngle
, "dpcotright", 0 },
2258 { rtfDrawAttr
, rtfCOSingleLine
, "dpcotsingle", 0 },
2259 { rtfDrawAttr
, rtfCOTripleLine
, "dpcottriple", 0 },
2261 { rtfDrawAttr
, rtfDrawTextBoxMargin
, "dptxbxmar", 0 },
2262 { rtfDrawAttr
, rtfDrawTextBoxText
, "dptxbxtext", 0 },
2263 { rtfDrawAttr
, rtfDrawRoundRect
, "dproundr", 0 },
2265 { rtfDrawAttr
, rtfDrawPointX
, "dpptx", 0 },
2266 { rtfDrawAttr
, rtfDrawPointY
, "dppty", 0 },
2267 { rtfDrawAttr
, rtfDrawPolyCount
, "dppolycount", 0 },
2269 { rtfDrawAttr
, rtfDrawArcFlipX
, "dparcflipx", 0 },
2270 { rtfDrawAttr
, rtfDrawArcFlipY
, "dparcflipy", 0 },
2272 { rtfDrawAttr
, rtfDrawLineBlue
, "dplinecob", 0 },
2273 { rtfDrawAttr
, rtfDrawLineGreen
, "dplinecog", 0 },
2274 { rtfDrawAttr
, rtfDrawLineRed
, "dplinecor", 0 },
2275 { rtfDrawAttr
, rtfDrawLinePalette
, "dplinepal", 0 },
2276 { rtfDrawAttr
, rtfDrawLineDashDot
, "dplinedado", 0 },
2277 { rtfDrawAttr
, rtfDrawLineDashDotDot
, "dplinedadodo", 0 },
2278 { rtfDrawAttr
, rtfDrawLineDash
, "dplinedash", 0 },
2279 { rtfDrawAttr
, rtfDrawLineDot
, "dplinedot", 0 },
2280 { rtfDrawAttr
, rtfDrawLineGray
, "dplinegray", 0 },
2281 { rtfDrawAttr
, rtfDrawLineHollow
, "dplinehollow", 0 },
2282 { rtfDrawAttr
, rtfDrawLineSolid
, "dplinesolid", 0 },
2283 { rtfDrawAttr
, rtfDrawLineWidth
, "dplinew", 0 },
2285 { rtfDrawAttr
, rtfDrawHollowEndArrow
, "dpaendhol", 0 },
2286 { rtfDrawAttr
, rtfDrawEndArrowLength
, "dpaendl", 0 },
2287 { rtfDrawAttr
, rtfDrawSolidEndArrow
, "dpaendsol", 0 },
2288 { rtfDrawAttr
, rtfDrawEndArrowWidth
, "dpaendw", 0 },
2289 { rtfDrawAttr
, rtfDrawHollowStartArrow
,"dpastarthol", 0 },
2290 { rtfDrawAttr
, rtfDrawStartArrowLength
,"dpastartl", 0 },
2291 { rtfDrawAttr
, rtfDrawSolidStartArrow
, "dpastartsol", 0 },
2292 { rtfDrawAttr
, rtfDrawStartArrowWidth
, "dpastartw", 0 },
2294 { rtfDrawAttr
, rtfDrawBgFillBlue
, "dpfillbgcb", 0 },
2295 { rtfDrawAttr
, rtfDrawBgFillGreen
, "dpfillbgcg", 0 },
2296 { rtfDrawAttr
, rtfDrawBgFillRed
, "dpfillbgcr", 0 },
2297 { rtfDrawAttr
, rtfDrawBgFillPalette
, "dpfillbgpal", 0 },
2298 { rtfDrawAttr
, rtfDrawBgFillGray
, "dpfillbggray", 0 },
2299 { rtfDrawAttr
, rtfDrawFgFillBlue
, "dpfillfgcb", 0 },
2300 { rtfDrawAttr
, rtfDrawFgFillGreen
, "dpfillfgcg", 0 },
2301 { rtfDrawAttr
, rtfDrawFgFillRed
, "dpfillfgcr", 0 },
2302 { rtfDrawAttr
, rtfDrawFgFillPalette
, "dpfillfgpal", 0 },
2303 { rtfDrawAttr
, rtfDrawFgFillGray
, "dpfillfggray", 0 },
2304 { rtfDrawAttr
, rtfDrawFillPatIndex
, "dpfillpat", 0 },
2306 { rtfDrawAttr
, rtfDrawShadow
, "dpshadow", 0 },
2307 { rtfDrawAttr
, rtfDrawShadowXOffset
, "dpshadx", 0 },
2308 { rtfDrawAttr
, rtfDrawShadowYOffset
, "dpshady", 0 },
2310 { rtfVersion
, -1, "rtf", 0 },
2311 { rtfDefFont
, -1, "deff", 0 },
2313 { 0, -1, (char *) NULL
, 0 }
2315 #define RTF_KEY_COUNT (sizeof(rtfKey) / sizeof(RTFKey))
2317 typedef struct tagRTFHashTableEntry
{
2320 } RTFHashTableEntry
;
2322 static RTFHashTableEntry rtfHashTable
[RTF_KEY_COUNT
* 2];
2326 * Initialize lookup table hash values. Only need to do this once.
2329 static void LookupInit(void)
2331 static int inited
= 0;
2336 memset(rtfHashTable
, 0, RTF_KEY_COUNT
* 2 * sizeof(*rtfHashTable
));
2337 for (rp
= rtfKey
; rp
->rtfKStr
!= NULL
; rp
++) {
2340 rp
->rtfKHash
= Hash ((char*)rp
->rtfKStr
);
2341 index
= rp
->rtfKHash
% (RTF_KEY_COUNT
* 2);
2342 if (!rtfHashTable
[index
].count
)
2343 rtfHashTable
[index
].value
= RTFAlloc(sizeof(RTFKey
*));
2345 rtfHashTable
[index
].value
= RTFReAlloc(rtfHashTable
[index
].value
, sizeof(RTFKey
*) * (rtfHashTable
[index
].count
+ 1));
2346 rtfHashTable
[index
].value
[rtfHashTable
[index
].count
++] = rp
;
2354 * Determine major and minor number of control token. If it's
2355 * not found, the class turns into rtfUnknown.
2358 static void Lookup(RTF_Info
*info
, char *s
)
2362 RTFHashTableEntry
*entry
;
2366 ++s
; /* skip over the leading \ character */
2368 entry
= &rtfHashTable
[hash
% (RTF_KEY_COUNT
* 2)];
2369 for (i
= 0; i
< entry
->count
; i
++)
2371 rp
= entry
->value
[i
];
2372 if (hash
== rp
->rtfKHash
&& strcmp (s
, rp
->rtfKStr
) == 0)
2374 info
->rtfClass
= rtfControl
;
2375 info
->rtfMajor
= rp
->rtfKMajor
;
2376 info
->rtfMinor
= rp
->rtfKMinor
;
2380 info
->rtfClass
= rtfUnknown
;
2385 * Compute hash value of symbol
2388 static int Hash(char *s
)
2393 while ((c
= *s
++) != '\0')
2400 /* ---------------------------------------------------------------------- */
2404 * Token comparison routines
2407 int RTFCheckCM(RTF_Info
*info
, int class, int major
)
2409 return (info
->rtfClass
== class && info
->rtfMajor
== major
);
2413 int RTFCheckCMM(RTF_Info
*info
, int class, int major
, int minor
)
2415 return (info
->rtfClass
== class && info
->rtfMajor
== major
&& info
->rtfMinor
== minor
);
2419 int RTFCheckMM(RTF_Info
*info
, int major
, int minor
)
2421 return (info
->rtfMajor
== major
&& info
->rtfMinor
== minor
);
2425 /* ---------------------------------------------------------------------- */
2428 int RTFCharToHex(char c
)
2433 return (c
- '0'); /* '0'..'9' */
2434 return (c
- 'a' + 10); /* 'a'..'f' */
2438 int RTFHexToChar(int i
)
2442 return (i
- 10 + 'a');
2446 /* ---------------------------------------------------------------------- */
2449 * originally from RTF tools' text-writer.c
2451 * text-writer -- RTF-to-text translation writer code.
2453 * Read RTF input, write text of document (text extraction).
2456 static void TextClass (RTF_Info
*info
);
2457 static void ControlClass (RTF_Info
*info
);
2458 static void DefFont(RTF_Info
*info
);
2459 static void Destination (RTF_Info
*info
);
2460 static void SpecialChar (RTF_Info
*info
);
2461 static void RTFPutUnicodeChar (RTF_Info
*info
, int c
);
2464 * Initialize the writer.
2468 WriterInit (RTF_Info
*info
)
2474 BeginFile (RTF_Info
*info
)
2476 /* install class callbacks */
2478 RTFSetClassCallback (info
, rtfText
, TextClass
);
2479 RTFSetClassCallback (info
, rtfControl
, ControlClass
);
2485 * Write out a character.
2489 TextClass (RTF_Info
*info
)
2491 RTFPutCodePageChar(info
, info
->rtfMajor
);
2496 ControlClass (RTF_Info
*info
)
2500 switch (info
->rtfMajor
)
2511 case rtfDestination
:
2517 case rtfSpecialChar
:
2525 CharAttr(RTF_Info
*info
)
2529 switch (info
->rtfMinor
)
2532 font
= RTFGetFont(info
, info
->rtfParam
);
2535 if (info
->ansiCodePage
!= CP_UTF8
)
2536 info
->codePage
= font
->rtfFCodePage
;
2537 TRACE("font %d codepage %d\n", info
->rtfParam
, info
->codePage
);
2540 ERR( "unknown font %d\n", info
->rtfParam
);
2542 case rtfUnicodeLength
:
2543 info
->unicodeLength
= info
->rtfParam
;
2550 CharSet(RTF_Info
*info
)
2552 if (info
->ansiCodePage
== CP_UTF8
)
2555 switch (info
->rtfMinor
)
2557 case rtfAnsiCharSet
:
2558 info
->ansiCodePage
= 1252; /* Latin-1 */
2561 info
->ansiCodePage
= 10000; /* MacRoman */
2564 info
->ansiCodePage
= 437;
2567 info
->ansiCodePage
= 850;
2573 * This function notices destinations that aren't explicitly handled
2574 * and skips to their ends. This keeps, for instance, picture
2575 * data from being considered as plain text.
2579 Destination (RTF_Info
*info
)
2582 if (!RTFGetDestinationCallback(info
, info
->rtfMinor
))
2583 RTFSkipGroup (info
);
2588 DefFont(RTF_Info
*info
)
2590 TRACE("%d\n", info
->rtfParam
);
2591 info
->defFont
= info
->rtfParam
;
2596 DocAttr(RTF_Info
*info
)
2598 TRACE("minor %d, param %d\n", info
->rtfMinor
, info
->rtfParam
);
2600 switch (info
->rtfMinor
)
2602 case rtfAnsiCodePage
:
2603 info
->codePage
= info
->ansiCodePage
= info
->rtfParam
;
2606 info
->codePage
= info
->ansiCodePage
= CP_UTF8
;
2612 static void SpecialChar (RTF_Info
*info
)
2617 switch (info
->rtfMinor
)
2620 /* the next token determines destination, if it's unknown, skip the group */
2621 /* this way we filter out the garbage coming from unknown destinations */
2623 if (info
->rtfClass
!= rtfDestination
)
2626 RTFRouteToken(info
); /* "\*" is ignored with known destinations */
2632 RTFPutUnicodeChar(info
, info
->rtfParam
);
2634 /* After \u we must skip number of character tokens set by \ucN */
2635 for (i
= 0; i
< info
->unicodeLength
; i
++)
2638 if (info
->rtfClass
!= rtfText
)
2640 ERR("The token behind \\u is not text, but (%d,%d,%d)\n",
2641 info
->rtfClass
, info
->rtfMajor
, info
->rtfMinor
);
2642 RTFUngetToken(info
);
2653 RTFPutUnicodeChar (info
, '\n');
2656 RTFPutUnicodeChar (info
, ' '); /* make sure cells are separated */
2659 RTFPutUnicodeChar (info
, 0x00A0);
2662 RTFPutUnicodeChar (info
, '\t');
2664 case rtfNoBrkHyphen
:
2665 RTFPutUnicodeChar (info
, 0x2011);
2668 RTFPutUnicodeChar (info
, 0x2022);
2671 RTFPutUnicodeChar (info
, 0x2014);
2674 RTFPutUnicodeChar (info
, 0x2013);
2677 RTFPutUnicodeChar (info
, 0x2018);
2680 RTFPutUnicodeChar (info
, 0x2019);
2683 RTFPutUnicodeChar (info
, 0x201C);
2686 RTFPutUnicodeChar (info
, 0x201D);
2693 RTFFlushUnicodeOutputBuffer(RTF_Info
*info
)
2695 if (info
->dwOutputCount
)
2697 ME_InsertTextFromCursor(info
->editor
, 0, info
->OutputBuffer
,
2698 info
->dwOutputCount
, info
->style
);
2699 info
->dwOutputCount
= 0;
2704 RTFPutUnicodeString(RTF_Info
*info
, WCHAR
*string
, int length
)
2706 if (info
->dwCPOutputCount
)
2707 RTFFlushCPOutputBuffer(info
);
2710 int fit
= min(length
, sizeof(info
->OutputBuffer
) / sizeof(WCHAR
) - info
->dwOutputCount
);
2712 memmove(info
->OutputBuffer
+ info
->dwOutputCount
, string
, fit
* sizeof(WCHAR
));
2713 info
->dwOutputCount
+= fit
;
2714 if (fit
== sizeof(info
->OutputBuffer
) / sizeof(WCHAR
) - info
->dwOutputCount
)
2715 RTFFlushUnicodeOutputBuffer(info
);
2722 RTFFlushCPOutputBuffer(RTF_Info
*info
)
2724 int bufferMax
= info
->dwCPOutputCount
* 2 * sizeof(WCHAR
);
2725 WCHAR
*buffer
= (WCHAR
*)RTFAlloc(bufferMax
);
2728 length
= MultiByteToWideChar(info
->codePage
, 0, info
->cpOutputBuffer
,
2729 info
->dwCPOutputCount
, buffer
, bufferMax
/sizeof(WCHAR
));
2730 info
->dwCPOutputCount
= 0;
2732 RTFPutUnicodeString(info
, buffer
, length
);
2733 RTFFree((char *)buffer
);
2737 RTFFlushOutputBuffer(RTF_Info
*info
)
2739 if (info
->dwCPOutputCount
)
2740 RTFFlushCPOutputBuffer(info
);
2741 RTFFlushUnicodeOutputBuffer(info
);
2745 RTFPutUnicodeChar(RTF_Info
*info
, int c
)
2747 if (info
->dwCPOutputCount
)
2748 RTFFlushCPOutputBuffer(info
);
2749 if (info
->dwOutputCount
* sizeof(WCHAR
) >= ( sizeof info
->OutputBuffer
- 1 ) )
2750 RTFFlushUnicodeOutputBuffer( info
);
2751 info
->OutputBuffer
[info
->dwOutputCount
++] = c
;
2755 RTFPutCodePageChar(RTF_Info
*info
, int c
)
2757 /* Use dynamic buffer here because it's the best way to handle
2758 * MBCS codepages without having to worry about partial chars */
2759 if (info
->dwCPOutputCount
>= info
->dwMaxCPOutputCount
)
2761 info
->dwMaxCPOutputCount
*= 2;
2762 info
->cpOutputBuffer
= RTFReAlloc(info
->cpOutputBuffer
, info
->dwMaxCPOutputCount
);
2764 info
->cpOutputBuffer
[info
->dwCPOutputCount
++] = c
;