2 * RichEdit - RTF writer module
4 * Copyright 2005 by Phil Krylov
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(richedit
);
31 ME_StreamOutRTFText(ME_OutStream
*pStream
, const WCHAR
*text
, LONG nChars
);
35 ME_StreamOutInit(ME_TextEditor
*editor
, EDITSTREAM
*stream
)
37 ME_OutStream
*pStream
= ALLOC_OBJ(ME_OutStream
);
38 pStream
->stream
= stream
;
39 pStream
->stream
->dwError
= 0;
42 pStream
->nFontTblLen
= 0;
43 pStream
->nColorTblLen
= 1;
44 pStream
->nNestingLevel
= 0;
50 ME_StreamOutFlush(ME_OutStream
*pStream
)
55 EDITSTREAM
*stream
= pStream
->stream
;
57 while (nStart
< pStream
->pos
) {
58 TRACE("sending %u bytes\n", pStream
->pos
- nStart
);
59 /* Some apps seem not to set *pcb unless a problem arises, relying
60 on initial random nWritten value, which is usually >STREAMOUT_BUFFER_SIZE */
61 nRemaining
= pStream
->pos
- nStart
;
62 nWritten
= 0xDEADBEEF;
63 stream
->dwError
= stream
->pfnCallback(stream
->dwCookie
, (LPBYTE
)pStream
->buffer
+ nStart
,
64 pStream
->pos
- nStart
, &nWritten
);
65 TRACE("error=%u written=%u\n", stream
->dwError
, nWritten
);
66 if (nWritten
> (pStream
->pos
- nStart
) || nWritten
<0) {
67 FIXME("Invalid returned written size *pcb: 0x%x (%d) instead of %d\n",
68 (unsigned)nWritten
, nWritten
, nRemaining
);
69 nWritten
= nRemaining
;
71 if (nWritten
== 0 || stream
->dwError
)
73 pStream
->written
+= nWritten
;
82 ME_StreamOutFree(ME_OutStream
*pStream
)
84 LONG written
= pStream
->written
;
85 TRACE("total length = %u\n", written
);
93 ME_StreamOutMove(ME_OutStream
*pStream
, const char *buffer
, int len
)
96 int space
= STREAMOUT_BUFFER_SIZE
- pStream
->pos
;
97 int fit
= min(space
, len
);
99 TRACE("%u:%u:%s\n", pStream
->pos
, fit
, debugstr_an(buffer
,fit
));
100 memmove(pStream
->buffer
+ pStream
->pos
, buffer
, fit
);
104 if (pStream
->pos
== STREAMOUT_BUFFER_SIZE
) {
105 if (!ME_StreamOutFlush(pStream
))
114 ME_StreamOutPrint(ME_OutStream
*pStream
, const char *format
, ...)
116 char string
[STREAMOUT_BUFFER_SIZE
]; /* This is going to be enough */
120 va_start(valist
, format
);
121 len
= vsnprintf(string
, sizeof(string
), format
, valist
);
124 return ME_StreamOutMove(pStream
, string
, len
);
129 ME_StreamOutRTFHeader(ME_OutStream
*pStream
, int dwFormat
)
131 const char *cCharSet
= NULL
;
136 if (dwFormat
& SF_USECODEPAGE
) {
139 switch (HIWORD(dwFormat
)) {
142 nCodePage
= GetACP();
145 nCodePage
= GetOEMCP();
146 if (nCodePage
== 437)
148 else if (nCodePage
== 850)
157 if (HIWORD(dwFormat
) == CP_MACCP
) {
159 nCodePage
= 10000; /* MacRoman */
162 nCodePage
= 1252; /* Latin-1 */
164 if (GetCPInfoExW(HIWORD(dwFormat
), 0, &info
))
165 nCodePage
= info
.CodePage
;
169 /* TODO: If the original document contained an \ansicpg value, retain it.
170 * Otherwise, M$ richedit emits a codepage number determined from the
171 * charset of the default font here. Anyway, this value is not used by
173 nCodePage
= GetACP();
175 if (nCodePage
== CP_UTF8
)
176 success
= ME_StreamOutPrint(pStream
, "{\\urtf");
178 success
= ME_StreamOutPrint(pStream
, "{\\rtf1\\%s\\ansicpg%u\\uc1", cCharSet
, nCodePage
);
183 pStream
->nDefaultCodePage
= nCodePage
;
185 /* FIXME: This should be a document property */
186 /* TODO: handle SFF_PLAINRTF */
187 language
= GetUserDefaultLangID();
188 if (!ME_StreamOutPrint(pStream
, "\\deff0\\deflang%u\\deflangfe%u", language
, language
))
191 /* FIXME: This should be a document property */
192 pStream
->nDefaultFont
= 0;
199 ME_StreamOutRTFFontAndColorTbl(ME_OutStream
*pStream
, ME_DisplayItem
*pFirstRun
,
200 ME_DisplayItem
*pLastRun
)
202 ME_DisplayItem
*item
= pFirstRun
;
203 ME_FontTableItem
*table
= pStream
->fonttbl
;
205 ME_DisplayItem
*pLastPara
= ME_GetParagraph(pLastRun
);
206 ME_DisplayItem
*pCell
= NULL
;
209 CHARFORMAT2W
*fmt
= &item
->member
.run
.style
->fmt
;
212 if (fmt
->dwMask
& CFM_FACE
) {
213 WCHAR
*face
= fmt
->szFaceName
;
214 BYTE bCharSet
= (fmt
->dwMask
& CFM_CHARSET
) ? fmt
->bCharSet
: DEFAULT_CHARSET
;
216 for (i
= 0; i
< pStream
->nFontTblLen
; i
++)
217 if (table
[i
].bCharSet
== bCharSet
218 && (table
[i
].szFaceName
== face
|| !lstrcmpW(table
[i
].szFaceName
, face
)))
220 if (i
== pStream
->nFontTblLen
&& i
< STREAMOUT_FONTTBL_SIZE
) {
221 table
[i
].bCharSet
= bCharSet
;
222 table
[i
].szFaceName
= face
;
223 pStream
->nFontTblLen
++;
227 if (fmt
->dwMask
& CFM_COLOR
&& !(fmt
->dwEffects
& CFE_AUTOCOLOR
)) {
228 crColor
= fmt
->crTextColor
;
229 for (i
= 1; i
< pStream
->nColorTblLen
; i
++)
230 if (pStream
->colortbl
[i
] == crColor
)
232 if (i
== pStream
->nColorTblLen
&& i
< STREAMOUT_COLORTBL_SIZE
) {
233 pStream
->colortbl
[i
] = crColor
;
234 pStream
->nColorTblLen
++;
237 if (fmt
->dwMask
& CFM_BACKCOLOR
&& !(fmt
->dwEffects
& CFE_AUTOBACKCOLOR
)) {
238 crColor
= fmt
->crBackColor
;
239 for (i
= 1; i
< pStream
->nColorTblLen
; i
++)
240 if (pStream
->colortbl
[i
] == crColor
)
242 if (i
== pStream
->nColorTblLen
&& i
< STREAMOUT_COLORTBL_SIZE
) {
243 pStream
->colortbl
[i
] = crColor
;
244 pStream
->nColorTblLen
++;
248 if (item
== pLastRun
)
250 item
= ME_FindItemFwd(item
, diRun
);
252 item
= ME_GetParagraph(pFirstRun
);
254 if (item
->member
.para
.pCell
&& item
->member
.para
.pCell
)
256 pCell
= item
->member
.para
.pCell
;
259 ME_Border
* borders
[4] = { &pCell
->member
.cell
.border
.top
,
260 &pCell
->member
.cell
.border
.left
,
261 &pCell
->member
.cell
.border
.bottom
,
262 &pCell
->member
.cell
.border
.right
};
263 for (i
= 0; i
< 4; i
++)
265 if (borders
[i
]->width
> 0)
268 COLORREF crColor
= borders
[i
]->colorRef
;
269 for (j
= 1; j
< pStream
->nColorTblLen
; j
++)
270 if (pStream
->colortbl
[j
] == crColor
)
272 if (j
== pStream
->nColorTblLen
&& j
< STREAMOUT_COLORTBL_SIZE
) {
273 pStream
->colortbl
[j
] = crColor
;
274 pStream
->nColorTblLen
++;
280 if (item
== pLastPara
)
282 item
= item
->member
.para
.next_para
;
285 if (!ME_StreamOutPrint(pStream
, "{\\fonttbl"))
288 for (i
= 0; i
< pStream
->nFontTblLen
; i
++) {
289 if (table
[i
].bCharSet
!= DEFAULT_CHARSET
) {
290 if (!ME_StreamOutPrint(pStream
, "{\\f%u\\fcharset%u ", i
, table
[i
].bCharSet
))
293 if (!ME_StreamOutPrint(pStream
, "{\\f%u ", i
))
296 if (!ME_StreamOutRTFText(pStream
, table
[i
].szFaceName
, -1))
298 if (!ME_StreamOutPrint(pStream
, ";}"))
301 if (!ME_StreamOutPrint(pStream
, "}\r\n"))
304 /* Output colors table if not empty */
305 if (pStream
->nColorTblLen
> 1) {
306 if (!ME_StreamOutPrint(pStream
, "{\\colortbl;"))
308 for (i
= 1; i
< pStream
->nColorTblLen
; i
++) {
309 if (!ME_StreamOutPrint(pStream
, "\\red%u\\green%u\\blue%u;",
310 pStream
->colortbl
[i
] & 0xFF,
311 (pStream
->colortbl
[i
] >> 8) & 0xFF,
312 (pStream
->colortbl
[i
] >> 16) & 0xFF))
315 if (!ME_StreamOutPrint(pStream
, "}"))
323 ME_StreamOutRTFTableProps(ME_TextEditor
*editor
, ME_OutStream
*pStream
,
324 ME_DisplayItem
*para
)
326 ME_DisplayItem
*cell
;
327 char props
[STREAMOUT_BUFFER_SIZE
] = "";
329 const char sideChar
[4] = {'t','l','b','r'};
331 if (!ME_StreamOutPrint(pStream
, "\\trowd"))
333 if (!editor
->bEmulateVersion10
) { /* v4.1 */
334 PARAFORMAT2
*pFmt
= ME_GetTableRowEnd(para
)->member
.para
.pFmt
;
335 para
= ME_GetTableRowStart(para
);
336 cell
= para
->member
.para
.next_para
->member
.para
.pCell
;
339 sprintf(props
+ strlen(props
), "\\trgaph%d", pFmt
->dxOffset
);
340 if (pFmt
->dxStartIndent
)
341 sprintf(props
+ strlen(props
), "\\trleft%d", pFmt
->dxStartIndent
);
343 ME_Border
* borders
[4] = { &cell
->member
.cell
.border
.top
,
344 &cell
->member
.cell
.border
.left
,
345 &cell
->member
.cell
.border
.bottom
,
346 &cell
->member
.cell
.border
.right
};
347 for (i
= 0; i
< 4; i
++)
349 if (borders
[i
]->width
)
352 COLORREF crColor
= borders
[i
]->colorRef
;
353 sprintf(props
+ strlen(props
), "\\clbrdr%c", sideChar
[i
]);
354 sprintf(props
+ strlen(props
), "\\brdrs");
355 sprintf(props
+ strlen(props
), "\\brdrw%d", borders
[i
]->width
);
356 for (j
= 1; j
< pStream
->nColorTblLen
; j
++) {
357 if (pStream
->colortbl
[j
] == crColor
) {
358 sprintf(props
+ strlen(props
), "\\brdrcf%u", j
);
364 sprintf(props
+ strlen(props
), "\\cellx%d", cell
->member
.cell
.nRightBoundary
);
365 cell
= cell
->member
.cell
.next_cell
;
366 } while (cell
->member
.cell
.next_cell
);
367 } else { /* v1.0 - 3.0 */
368 const ME_Border
* borders
[4] = { ¶
->member
.para
.border
.top
,
369 ¶
->member
.para
.border
.left
,
370 ¶
->member
.para
.border
.bottom
,
371 ¶
->member
.para
.border
.right
};
372 PARAFORMAT2
*pFmt
= para
->member
.para
.pFmt
;
374 assert(!(para
->member
.para
.nFlags
& (MEPF_ROWSTART
|MEPF_ROWEND
|MEPF_CELL
)));
376 sprintf(props
+ strlen(props
), "\\trgaph%d", pFmt
->dxOffset
);
377 if (pFmt
->dxStartIndent
)
378 sprintf(props
+ strlen(props
), "\\trleft%d", pFmt
->dxStartIndent
);
379 for (i
= 0; i
< 4; i
++)
381 if (borders
[i
]->width
)
384 COLORREF crColor
= borders
[i
]->colorRef
;
385 sprintf(props
+ strlen(props
), "\\trbrdr%c", sideChar
[i
]);
386 sprintf(props
+ strlen(props
), "\\brdrs");
387 sprintf(props
+ strlen(props
), "\\brdrw%d", borders
[i
]->width
);
388 for (j
= 1; j
< pStream
->nColorTblLen
; j
++) {
389 if (pStream
->colortbl
[j
] == crColor
) {
390 sprintf(props
+ strlen(props
), "\\brdrcf%u", j
);
396 for (i
= 0; i
< pFmt
->cTabCount
; i
++)
398 sprintf(props
+ strlen(props
), "\\cellx%d", pFmt
->rgxTabs
[i
] & 0x00FFFFFF);
401 if (!ME_StreamOutPrint(pStream
, props
))
408 ME_StreamOutRTFParaProps(ME_TextEditor
*editor
, ME_OutStream
*pStream
,
409 ME_DisplayItem
*para
)
411 PARAFORMAT2
*fmt
= para
->member
.para
.pFmt
;
412 char props
[STREAMOUT_BUFFER_SIZE
] = "";
415 if (!editor
->bEmulateVersion10
) { /* v4.1 */
416 if (para
->member
.para
.nFlags
& MEPF_ROWSTART
) {
417 pStream
->nNestingLevel
++;
418 if (pStream
->nNestingLevel
== 1) {
419 if (!ME_StreamOutRTFTableProps(editor
, pStream
, para
))
423 } else if (para
->member
.para
.nFlags
& MEPF_ROWEND
) {
424 pStream
->nNestingLevel
--;
425 if (pStream
->nNestingLevel
>= 1) {
426 if (!ME_StreamOutPrint(pStream
, "{\\*\\nesttableprops"))
428 if (!ME_StreamOutRTFTableProps(editor
, pStream
, para
))
430 if (!ME_StreamOutPrint(pStream
, "\\nestrow}{\\nonesttables\\par}\r\n"))
433 if (!ME_StreamOutPrint(pStream
, "\\row \r\n"))
438 } else { /* v1.0 - 3.0 */
439 if (para
->member
.para
.pFmt
->dwMask
& PFM_TABLE
&&
440 para
->member
.para
.pFmt
->wEffects
& PFE_TABLE
)
442 if (!ME_StreamOutRTFTableProps(editor
, pStream
, para
))
447 /* TODO: Don't emit anything if the last PARAFORMAT2 is inherited */
448 if (!ME_StreamOutPrint(pStream
, "\\pard"))
451 if (!editor
->bEmulateVersion10
) { /* v4.1 */
452 if (pStream
->nNestingLevel
> 0)
453 strcat(props
, "\\intbl");
454 if (pStream
->nNestingLevel
> 1)
455 sprintf(props
+ strlen(props
), "\\itap%d", pStream
->nNestingLevel
);
456 } else { /* v1.0 - 3.0 */
457 if (fmt
->dwMask
& PFM_TABLE
&& fmt
->wEffects
& PFE_TABLE
)
458 strcat(props
, "\\intbl");
461 /* TODO: PFM_BORDER. M$ does not emit any keywords for these properties, and
462 * when streaming border keywords in, PFM_BORDER is set, but wBorder field is
463 * set very different from the documentation.
464 * (Tested with RichEdit 5.50.25.0601) */
466 if (fmt
->dwMask
& PFM_ALIGNMENT
) {
467 switch (fmt
->wAlignment
) {
469 /* Default alignment: not emitted */
472 strcat(props
, "\\qr");
475 strcat(props
, "\\qc");
478 strcat(props
, "\\qj");
483 if (fmt
->dwMask
& PFM_LINESPACING
) {
484 /* FIXME: MSDN says that the bLineSpacingRule field is controlled by the
485 * PFM_SPACEAFTER flag. Is that true? I don't believe so. */
486 switch (fmt
->bLineSpacingRule
) {
487 case 0: /* Single spacing */
488 strcat(props
, "\\sl-240\\slmult1");
490 case 1: /* 1.5 spacing */
491 strcat(props
, "\\sl-360\\slmult1");
493 case 2: /* Double spacing */
494 strcat(props
, "\\sl-480\\slmult1");
497 sprintf(props
+ strlen(props
), "\\sl%d\\slmult0", fmt
->dyLineSpacing
);
500 sprintf(props
+ strlen(props
), "\\sl-%d\\slmult0", fmt
->dyLineSpacing
);
503 sprintf(props
+ strlen(props
), "\\sl-%d\\slmult1", fmt
->dyLineSpacing
* 240 / 20);
508 if (fmt
->dwMask
& PFM_DONOTHYPHEN
&& fmt
->wEffects
& PFE_DONOTHYPHEN
)
509 strcat(props
, "\\hyph0");
510 if (fmt
->dwMask
& PFM_KEEP
&& fmt
->wEffects
& PFE_KEEP
)
511 strcat(props
, "\\keep");
512 if (fmt
->dwMask
& PFM_KEEPNEXT
&& fmt
->wEffects
& PFE_KEEPNEXT
)
513 strcat(props
, "\\keepn");
514 if (fmt
->dwMask
& PFM_NOLINENUMBER
&& fmt
->wEffects
& PFE_NOLINENUMBER
)
515 strcat(props
, "\\noline");
516 if (fmt
->dwMask
& PFM_NOWIDOWCONTROL
&& fmt
->wEffects
& PFE_NOWIDOWCONTROL
)
517 strcat(props
, "\\nowidctlpar");
518 if (fmt
->dwMask
& PFM_PAGEBREAKBEFORE
&& fmt
->wEffects
& PFE_PAGEBREAKBEFORE
)
519 strcat(props
, "\\pagebb");
520 if (fmt
->dwMask
& PFM_RTLPARA
&& fmt
->wEffects
& PFE_RTLPARA
)
521 strcat(props
, "\\rtlpar");
522 if (fmt
->dwMask
& PFM_SIDEBYSIDE
&& fmt
->wEffects
& PFE_SIDEBYSIDE
)
523 strcat(props
, "\\sbys");
525 if (!(editor
->bEmulateVersion10
&& /* v1.0 - 3.0 */
526 fmt
->dwMask
& PFM_TABLE
&& fmt
->wEffects
& PFE_TABLE
))
528 if (fmt
->dwMask
& PFM_OFFSET
)
529 sprintf(props
+ strlen(props
), "\\li%d", fmt
->dxOffset
);
530 if (fmt
->dwMask
& PFM_OFFSETINDENT
|| fmt
->dwMask
& PFM_STARTINDENT
)
531 sprintf(props
+ strlen(props
), "\\fi%d", fmt
->dxStartIndent
);
532 if (fmt
->dwMask
& PFM_RIGHTINDENT
)
533 sprintf(props
+ strlen(props
), "\\ri%d", fmt
->dxRightIndent
);
534 if (fmt
->dwMask
& PFM_TABSTOPS
) {
535 static const char * const leader
[6] = { "", "\\tldot", "\\tlhyph", "\\tlul", "\\tlth", "\\tleq" };
537 for (i
= 0; i
< fmt
->cTabCount
; i
++) {
538 switch ((fmt
->rgxTabs
[i
] >> 24) & 0xF) {
540 strcat(props
, "\\tqc");
543 strcat(props
, "\\tqr");
546 strcat(props
, "\\tqdec");
549 /* Word bar tab (vertical bar). Handled below */
552 if (fmt
->rgxTabs
[i
] >> 28 <= 5)
553 strcat(props
, leader
[fmt
->rgxTabs
[i
] >> 28]);
554 sprintf(props
+strlen(props
), "\\tx%d", fmt
->rgxTabs
[i
]&0x00FFFFFF);
558 if (fmt
->dwMask
& PFM_SPACEAFTER
)
559 sprintf(props
+ strlen(props
), "\\sa%d", fmt
->dySpaceAfter
);
560 if (fmt
->dwMask
& PFM_SPACEBEFORE
)
561 sprintf(props
+ strlen(props
), "\\sb%d", fmt
->dySpaceBefore
);
562 if (fmt
->dwMask
& PFM_STYLE
)
563 sprintf(props
+ strlen(props
), "\\s%d", fmt
->sStyle
);
565 if (fmt
->dwMask
& PFM_SHADING
) {
566 static const char * const style
[16] = { "", "\\bgdkhoriz", "\\bgdkvert", "\\bgdkfdiag",
567 "\\bgdkbdiag", "\\bgdkcross", "\\bgdkdcross",
568 "\\bghoriz", "\\bgvert", "\\bgfdiag",
569 "\\bgbdiag", "\\bgcross", "\\bgdcross",
571 if (fmt
->wShadingWeight
)
572 sprintf(props
+ strlen(props
), "\\shading%d", fmt
->wShadingWeight
);
573 if (fmt
->wShadingStyle
& 0xF)
574 strcat(props
, style
[fmt
->wShadingStyle
& 0xF]);
575 sprintf(props
+ strlen(props
), "\\cfpat%d\\cbpat%d",
576 (fmt
->wShadingStyle
>> 4) & 0xF, (fmt
->wShadingStyle
>> 8) & 0xF);
579 if (*props
&& !ME_StreamOutPrint(pStream
, props
))
587 ME_StreamOutRTFCharProps(ME_OutStream
*pStream
, CHARFORMAT2W
*fmt
)
589 char props
[STREAMOUT_BUFFER_SIZE
] = "";
592 if (fmt
->dwMask
& CFM_ALLCAPS
&& fmt
->dwEffects
& CFE_ALLCAPS
)
593 strcat(props
, "\\caps");
594 if (fmt
->dwMask
& CFM_ANIMATION
)
595 sprintf(props
+ strlen(props
), "\\animtext%u", fmt
->bAnimation
);
596 if (fmt
->dwMask
& CFM_BACKCOLOR
) {
597 if (!(fmt
->dwEffects
& CFE_AUTOBACKCOLOR
)) {
598 for (i
= 1; i
< pStream
->nColorTblLen
; i
++)
599 if (pStream
->colortbl
[i
] == fmt
->crBackColor
) {
600 sprintf(props
+ strlen(props
), "\\cb%u", i
);
605 if (fmt
->dwMask
& CFM_BOLD
&& fmt
->dwEffects
& CFE_BOLD
)
606 strcat(props
, "\\b");
607 if (fmt
->dwMask
& CFM_COLOR
) {
608 if (!(fmt
->dwEffects
& CFE_AUTOCOLOR
)) {
609 for (i
= 1; i
< pStream
->nColorTblLen
; i
++)
610 if (pStream
->colortbl
[i
] == fmt
->crTextColor
) {
611 sprintf(props
+ strlen(props
), "\\cf%u", i
);
616 /* TODO: CFM_DISABLED */
617 if (fmt
->dwMask
& CFM_EMBOSS
&& fmt
->dwEffects
& CFE_EMBOSS
)
618 strcat(props
, "\\embo");
619 if (fmt
->dwMask
& CFM_HIDDEN
&& fmt
->dwEffects
& CFE_HIDDEN
)
620 strcat(props
, "\\v");
621 if (fmt
->dwMask
& CFM_IMPRINT
&& fmt
->dwEffects
& CFE_IMPRINT
)
622 strcat(props
, "\\impr");
623 if (fmt
->dwMask
& CFM_ITALIC
&& fmt
->dwEffects
& CFE_ITALIC
)
624 strcat(props
, "\\i");
625 if (fmt
->dwMask
& CFM_KERNING
)
626 sprintf(props
+ strlen(props
), "\\kerning%u", fmt
->wKerning
);
627 if (fmt
->dwMask
& CFM_LCID
) {
628 /* TODO: handle SFF_PLAINRTF */
629 if (LOWORD(fmt
->lcid
) == 1024)
630 strcat(props
, "\\noproof\\lang1024\\langnp1024\\langfe1024\\langfenp1024");
632 sprintf(props
+ strlen(props
), "\\lang%u", LOWORD(fmt
->lcid
));
634 /* CFM_LINK is not streamed out by M$ */
635 if (fmt
->dwMask
& CFM_OFFSET
) {
636 if (fmt
->yOffset
>= 0)
637 sprintf(props
+ strlen(props
), "\\up%d", fmt
->yOffset
);
639 sprintf(props
+ strlen(props
), "\\dn%d", -fmt
->yOffset
);
641 if (fmt
->dwMask
& CFM_OUTLINE
&& fmt
->dwEffects
& CFE_OUTLINE
)
642 strcat(props
, "\\outl");
643 if (fmt
->dwMask
& CFM_PROTECTED
&& fmt
->dwEffects
& CFE_PROTECTED
)
644 strcat(props
, "\\protect");
645 /* TODO: CFM_REVISED CFM_REVAUTHOR - probably using rsidtbl? */
646 if (fmt
->dwMask
& CFM_SHADOW
&& fmt
->dwEffects
& CFE_SHADOW
)
647 strcat(props
, "\\shad");
648 if (fmt
->dwMask
& CFM_SIZE
)
649 sprintf(props
+ strlen(props
), "\\fs%d", fmt
->yHeight
/ 10);
650 if (fmt
->dwMask
& CFM_SMALLCAPS
&& fmt
->dwEffects
& CFE_SMALLCAPS
)
651 strcat(props
, "\\scaps");
652 if (fmt
->dwMask
& CFM_SPACING
)
653 sprintf(props
+ strlen(props
), "\\expnd%u\\expndtw%u", fmt
->sSpacing
/ 5, fmt
->sSpacing
);
654 if (fmt
->dwMask
& CFM_STRIKEOUT
&& fmt
->dwEffects
& CFE_STRIKEOUT
)
655 strcat(props
, "\\strike");
656 if (fmt
->dwMask
& CFM_STYLE
) {
657 sprintf(props
+ strlen(props
), "\\cs%u", fmt
->sStyle
);
658 /* TODO: emit style contents here */
660 if (fmt
->dwMask
& (CFM_SUBSCRIPT
| CFM_SUPERSCRIPT
)) {
661 if (fmt
->dwEffects
& CFE_SUBSCRIPT
)
662 strcat(props
, "\\sub");
663 else if (fmt
->dwEffects
& CFE_SUPERSCRIPT
)
664 strcat(props
, "\\super");
666 if (fmt
->dwMask
& CFM_UNDERLINE
|| fmt
->dwMask
& CFM_UNDERLINETYPE
) {
667 if (fmt
->dwMask
& CFM_UNDERLINETYPE
)
668 switch (fmt
->bUnderlineType
) {
669 case CFU_CF1UNDERLINE
:
671 strcat(props
, "\\ul");
673 case CFU_UNDERLINEDOTTED
:
674 strcat(props
, "\\uld");
676 case CFU_UNDERLINEDOUBLE
:
677 strcat(props
, "\\uldb");
679 case CFU_UNDERLINEWORD
:
680 strcat(props
, "\\ulw");
682 case CFU_UNDERLINENONE
:
684 strcat(props
, "\\ul0");
687 else if (fmt
->dwEffects
& CFE_UNDERLINE
)
688 strcat(props
, "\\ul");
690 /* FIXME: How to emit CFM_WEIGHT? */
692 if (fmt
->dwMask
& CFM_FACE
|| fmt
->dwMask
& CFM_CHARSET
) {
695 if (fmt
->dwMask
& CFM_FACE
)
696 szFaceName
= fmt
->szFaceName
;
698 szFaceName
= pStream
->fonttbl
[0].szFaceName
;
699 for (i
= 0; i
< pStream
->nFontTblLen
; i
++) {
700 if (szFaceName
== pStream
->fonttbl
[i
].szFaceName
701 || !lstrcmpW(szFaceName
, pStream
->fonttbl
[i
].szFaceName
))
702 if (!(fmt
->dwMask
& CFM_CHARSET
)
703 || fmt
->bCharSet
== pStream
->fonttbl
[i
].bCharSet
)
706 if (i
< pStream
->nFontTblLen
)
708 if (i
!= pStream
->nDefaultFont
)
709 sprintf(props
+ strlen(props
), "\\f%u", i
);
711 /* In UTF-8 mode, charsets/codepages are not used */
712 if (pStream
->nDefaultCodePage
!= CP_UTF8
)
714 if (pStream
->fonttbl
[i
].bCharSet
== DEFAULT_CHARSET
)
715 pStream
->nCodePage
= pStream
->nDefaultCodePage
;
717 pStream
->nCodePage
= RTFCharSetToCodePage(NULL
, pStream
->fonttbl
[i
].bCharSet
);
723 if (!ME_StreamOutPrint(pStream
, props
))
730 ME_StreamOutRTFText(ME_OutStream
*pStream
, const WCHAR
*text
, LONG nChars
)
732 char buffer
[STREAMOUT_BUFFER_SIZE
];
737 nChars
= lstrlenW(text
);
740 /* In UTF-8 mode, font charsets are not used. */
741 if (pStream
->nDefaultCodePage
== CP_UTF8
) {
742 /* 6 is the maximum character length in UTF-8 */
743 fit
= min(nChars
, STREAMOUT_BUFFER_SIZE
/ 6);
744 nBytes
= WideCharToMultiByte(CP_UTF8
, 0, text
, fit
, buffer
,
745 STREAMOUT_BUFFER_SIZE
, NULL
, NULL
);
748 for (i
= 0; i
< nBytes
; i
++)
749 if (buffer
[i
] == '{' || buffer
[i
] == '}' || buffer
[i
] == '\\') {
750 if (!ME_StreamOutPrint(pStream
, "%.*s\\", i
- pos
, buffer
+ pos
))
755 if (!ME_StreamOutMove(pStream
, buffer
+ pos
, nBytes
- pos
))
758 } else if (*text
< 128) {
759 if (*text
== '{' || *text
== '}' || *text
== '\\')
760 buffer
[pos
++] = '\\';
761 buffer
[pos
++] = (char)(*text
++);
764 BOOL unknown
= FALSE
;
767 /* FIXME: In the MS docs for WideCharToMultiByte there is a big list of
768 * codepages including CP_SYMBOL for which the last parameter must be set
769 * to NULL for the function to succeed. But in Wine we need to care only
771 nBytes
= WideCharToMultiByte(pStream
->nCodePage
, 0, text
, 1,
773 (pStream
->nCodePage
== CP_SYMBOL
) ? NULL
: &unknown
);
775 pos
+= sprintf(buffer
+ pos
, "\\u%d?", (short)*text
);
776 else if ((BYTE
)*letter
< 128) {
777 if (*letter
== '{' || *letter
== '}' || *letter
== '\\')
778 buffer
[pos
++] = '\\';
779 buffer
[pos
++] = *letter
;
781 for (i
= 0; i
< nBytes
; i
++)
782 pos
+= sprintf(buffer
+ pos
, "\\'%02x", (BYTE
)letter
[i
]);
787 if (pos
>= STREAMOUT_BUFFER_SIZE
- 11) {
788 if (!ME_StreamOutMove(pStream
, buffer
, pos
))
793 return ME_StreamOutMove(pStream
, buffer
, pos
);
797 static BOOL
ME_StreamOutRTF(ME_TextEditor
*editor
, ME_OutStream
*pStream
,
798 const ME_Cursor
*start
, int nChars
, int dwFormat
)
800 ME_Cursor cursor
= *start
;
801 ME_DisplayItem
*prev_para
= cursor
.pPara
;
802 ME_Cursor endCur
= cursor
;
804 ME_MoveCursorChars(editor
, &endCur
, nChars
);
806 if (!ME_StreamOutRTFHeader(pStream
, dwFormat
))
809 if (!ME_StreamOutRTFFontAndColorTbl(pStream
, cursor
.pRun
, endCur
.pRun
))
812 /* TODO: stylesheet table */
814 /* FIXME: maybe emit something smarter for the generator? */
815 if (!ME_StreamOutPrint(pStream
, "{\\*\\generator Wine Riched20 2.0.????;}"))
818 /* TODO: information group */
820 /* TODO: document formatting properties */
822 /* FIXME: We have only one document section */
824 /* TODO: section formatting properties */
826 if (!ME_StreamOutRTFParaProps(editor
, pStream
, cursor
.pPara
))
830 if (cursor
.pPara
!= prev_para
)
832 prev_para
= cursor
.pPara
;
833 if (!ME_StreamOutRTFParaProps(editor
, pStream
, cursor
.pPara
))
837 if (cursor
.pRun
== endCur
.pRun
&& !endCur
.nOffset
)
839 TRACE("flags %xh\n", cursor
.pRun
->member
.run
.nFlags
);
840 /* TODO: emit embedded objects */
841 if (cursor
.pPara
->member
.para
.nFlags
& (MEPF_ROWSTART
|MEPF_ROWEND
))
843 if (cursor
.pRun
->member
.run
.nFlags
& MERF_GRAPHICS
) {
844 FIXME("embedded objects are not handled\n");
845 } else if (cursor
.pRun
->member
.run
.nFlags
& MERF_TAB
) {
846 if (editor
->bEmulateVersion10
&& /* v1.0 - 3.0 */
847 cursor
.pPara
->member
.para
.pFmt
->dwMask
& PFM_TABLE
&&
848 cursor
.pPara
->member
.para
.pFmt
->wEffects
& PFE_TABLE
)
850 if (!ME_StreamOutPrint(pStream
, "\\cell "))
853 if (!ME_StreamOutPrint(pStream
, "\\tab "))
856 } else if (cursor
.pRun
->member
.run
.nFlags
& MERF_ENDCELL
) {
857 if (pStream
->nNestingLevel
> 1) {
858 if (!ME_StreamOutPrint(pStream
, "\\nestcell "))
861 if (!ME_StreamOutPrint(pStream
, "\\cell "))
865 } else if (cursor
.pRun
->member
.run
.nFlags
& MERF_ENDPARA
) {
866 if (cursor
.pPara
->member
.para
.pFmt
->dwMask
& PFM_TABLE
&&
867 cursor
.pPara
->member
.para
.pFmt
->wEffects
& PFE_TABLE
&&
868 !(cursor
.pPara
->member
.para
.nFlags
& (MEPF_ROWSTART
|MEPF_ROWEND
|MEPF_CELL
)))
870 if (!ME_StreamOutPrint(pStream
, "\\row \r\n"))
873 if (!ME_StreamOutPrint(pStream
, "\r\n\\par"))
876 /* Skip as many characters as required by current line break */
877 nChars
= max(0, nChars
- cursor
.pRun
->member
.run
.strText
->nLen
);
878 } else if (cursor
.pRun
->member
.run
.nFlags
& MERF_ENDROW
) {
879 if (!ME_StreamOutPrint(pStream
, "\\line \r\n"))
885 if (!ME_StreamOutPrint(pStream
, "{"))
887 TRACE("style %p\n", cursor
.pRun
->member
.run
.style
);
888 if (!ME_StreamOutRTFCharProps(pStream
, &cursor
.pRun
->member
.run
.style
->fmt
))
891 nEnd
= (cursor
.pRun
== endCur
.pRun
) ? endCur
.nOffset
: cursor
.pRun
->member
.run
.strText
->nLen
;
892 if (!ME_StreamOutRTFText(pStream
, cursor
.pRun
->member
.run
.strText
->szData
+ cursor
.nOffset
,
893 nEnd
- cursor
.nOffset
))
896 if (!ME_StreamOutPrint(pStream
, "}"))
899 } while (cursor
.pRun
!= endCur
.pRun
&& ME_NextRun(&cursor
.pPara
, &cursor
.pRun
));
901 if (!ME_StreamOutMove(pStream
, "}\0", 2))
907 static BOOL
ME_StreamOutText(ME_TextEditor
*editor
, ME_OutStream
*pStream
,
908 const ME_Cursor
*start
, int nChars
, DWORD dwFormat
)
910 ME_Cursor cursor
= *start
;
912 UINT nCodePage
= CP_ACP
;
920 if (dwFormat
& SF_USECODEPAGE
)
921 nCodePage
= HIWORD(dwFormat
);
923 /* TODO: Handle SF_TEXTIZED */
925 while (success
&& nChars
&& cursor
.pRun
) {
926 nLen
= min(nChars
, cursor
.pRun
->member
.run
.strText
->nLen
- cursor
.nOffset
);
928 if (!editor
->bEmulateVersion10
&& cursor
.pRun
->member
.run
.nFlags
& MERF_ENDPARA
)
930 static const WCHAR szEOL
[2] = { '\r', '\n' };
932 /* richedit 2.0 - all line breaks are \r\n */
933 if (dwFormat
& SF_UNICODE
)
934 success
= ME_StreamOutMove(pStream
, (const char *)szEOL
, sizeof(szEOL
));
936 success
= ME_StreamOutMove(pStream
, "\r\n", 2);
938 if (dwFormat
& SF_UNICODE
)
939 success
= ME_StreamOutMove(pStream
, (const char *)(cursor
.pRun
->member
.run
.strText
->szData
+ cursor
.nOffset
),
940 sizeof(WCHAR
) * nLen
);
944 nSize
= WideCharToMultiByte(nCodePage
, 0, cursor
.pRun
->member
.run
.strText
->szData
+ cursor
.nOffset
,
945 nLen
, NULL
, 0, NULL
, NULL
);
946 if (nSize
> nBufLen
) {
948 buffer
= ALLOC_N_OBJ(char, nSize
);
951 WideCharToMultiByte(nCodePage
, 0, cursor
.pRun
->member
.run
.strText
->szData
+ cursor
.nOffset
,
952 nLen
, buffer
, nSize
, NULL
, NULL
);
953 success
= ME_StreamOutMove(pStream
, buffer
, nSize
);
959 cursor
.pRun
= ME_FindItemFwd(cursor
.pRun
, diRun
);
967 LRESULT
ME_StreamOutRange(ME_TextEditor
*editor
, DWORD dwFormat
,
968 const ME_Cursor
*start
,
969 int nChars
, EDITSTREAM
*stream
)
971 ME_OutStream
*pStream
= ME_StreamOutInit(editor
, stream
);
973 if (dwFormat
& SF_RTF
)
974 ME_StreamOutRTF(editor
, pStream
, start
, nChars
, dwFormat
);
975 else if (dwFormat
& SF_TEXT
|| dwFormat
& SF_TEXTIZED
)
976 ME_StreamOutText(editor
, pStream
, start
, nChars
, dwFormat
);
977 if (!pStream
->stream
->dwError
)
978 ME_StreamOutFlush(pStream
);
979 return ME_StreamOutFree(pStream
);
983 ME_StreamOut(ME_TextEditor
*editor
, DWORD dwFormat
, EDITSTREAM
*stream
)
988 if (dwFormat
& SFF_SELECTION
) {
990 start
= editor
->pCursors
[ME_GetSelectionOfs(editor
, &nStart
, &nTo
)];
991 nChars
= nTo
- nStart
;
993 ME_SetCursorToStart(editor
, &start
);
994 nChars
= ME_GetTextLength(editor
);
995 /* Generate an end-of-paragraph at the end of SCF_ALL RTF output */
996 if (dwFormat
& SF_RTF
)
999 return ME_StreamOutRange(editor
, dwFormat
, &start
, nChars
, stream
);