1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
* Copyright 2010 Miklos Vajna.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef _RTFATTRIBUTEOUTPUT_HXX_
#define _RTFATTRIBUTEOUTPUT_HXX_
#include "attributeoutputbase.hxx"
#include "rtfexport.hxx"
#include <rtl/strbuf.hxx>
class SwGrfNode;
class SwOLENode;
class SdrObject;
class SwFlyFrmFmt;
/// The class that has handlers for various resource types when exporting as RTF
class RtfAttributeOutput : public AttributeOutputBase
{
public:
/// Export the state of RTL/CJK.
virtual void RTLAndCJKState( bool bIsRTL, sal_uInt16 nScript );
/// Start of the paragraph.
virtual void StartParagraph( ww8::WW8TableNodeInfo::Pointer_t pTextNodeInfo );
/// End of the paragraph.
virtual void EndParagraph( ww8::WW8TableNodeInfoInner::Pointer_t pTextNodeInfoInner );
/// Empty paragraph.
virtual void EmptyParagraph();
/// Called before we start outputting the attributes.
virtual void StartParagraphProperties( const SwTxtNode& rNode );
/// Called after we end outputting the attributes.
virtual void EndParagraphProperties();
/// Start of the text run.
virtual void StartRun( const SwRedlineData* pRedlineData );
/// End of the text run.
virtual void EndRun();
/// Called before we start outputting the attributes.
virtual void StartRunProperties();
/// Called after we end outputting the attributes.
virtual void EndRunProperties( const SwRedlineData* pRedlineData );
/// Output text (inside a run).
virtual void RunText( const String& rText, rtl_TextEncoding eCharSet = RTL_TEXTENCODING_UTF8 );
// Access to (anyway) private buffers, used by the sdr exporter
rtl::OStringBuffer& RunText();
rtl::OStringBuffer& Styles();
/// Output text (without markup).
virtual void RawText( const String& rText, bool bForceUnicode, rtl_TextEncoding eCharSet );
/// Output ruby start.
virtual void StartRuby( const SwTxtNode& rNode, xub_StrLen nPos, const SwFmtRuby& rRuby );
/// Output ruby end.
virtual void EndRuby();
/// Output URL start.
virtual bool StartURL( const String& rUrl, const String& rTarget );
/// Output URL end.
virtual bool EndURL();
virtual void FieldVanish( const String& rTxt, ww::eField eType );
/// Output redlining.
///
/// The common attribute that can be among the run properties.
virtual void Redline( const SwRedlineData* pRedline );
virtual void FormatDrop( const SwTxtNode& rNode, const SwFmtDrop& rSwFmtDrop, sal_uInt16 nStyle, ww8::WW8TableNodeInfo::Pointer_t pTextNodeInfo, ww8::WW8TableNodeInfoInner::Pointer_t pTextNodeInfoInner );
/// Output style.
virtual void ParagraphStyle( sal_uInt16 nStyle );
virtual void TableInfoCell( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
virtual void TableInfoRow( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
virtual void TableDefinition( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
virtual void TableDefaultBorders( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
virtual void TableBackgrounds( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
virtual void TableHeight( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
virtual void TableCanSplit( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
virtual void TableBidi( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
virtual void TableVerticalCell( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
virtual void TableNodeInfo( ww8::WW8TableNodeInfo::Pointer_t pNodeInfo );
virtual void TableNodeInfoInner( ww8::WW8TableNodeInfoInner::Pointer_t pNodeInfoInner );
virtual void TableOrientation( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
virtual void TableSpacing( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
virtual void TableRowEnd( sal_uInt32 nDepth );
/// Start of the styles table.
virtual void StartStyles();
/// End of the styles table.
virtual void EndStyles( sal_uInt16 nNumberOfStyles );
/// Write default style.
virtual void DefaultStyle( sal_uInt16 nStyle );
/// Start of a style in the styles table.
virtual void StartStyle( const String& rName, bool bPapFmt,
sal_uInt16 nBase, sal_uInt16 nNext, sal_uInt16 nWwId, sal_uInt16 nId,
bool bAutoUpdate );
/// End of a style in the styles table.
virtual void EndStyle();
/// Start of (paragraph or run) properties of a style.
virtual void StartStyleProperties( bool bParProp, sal_uInt16 nStyle );
/// End of (paragraph or run) properties of a style.
virtual void EndStyleProperties( bool bParProp );
/// Numbering rule and Id.
virtual void OutlineNumbering( sal_uInt8 nLvl, const SwNumFmt &rNFmt, const SwFmt &rFmt );
/// Page break
/// As a paragraph property - the paragraph should be on the next page.
virtual void PageBreakBefore( bool bBreak );
/// Write a section break
/// msword::ColumnBreak or msword::PageBreak
virtual void SectionBreak( sal_uInt8 nC, const WW8_SepInfo* pSectionInfo = NULL );
/// Start of the section properties.
virtual void StartSection();
/// End of the section properties.
virtual void EndSection();
/// Protection of forms.
virtual void SectionFormProtection( bool bProtected );
/// Numbering of the lines in the document.
virtual void SectionLineNumbering( sal_uLong nRestartNo, const SwLineNumberInfo& rLnNumInfo );
/// Has different headers/footers for the title page.
virtual void SectionTitlePage();
/// Description of the page borders.
virtual void SectionPageBorders( const SwFrmFmt* pFmt, const SwFrmFmt* pFirstPageFmt );
/// Columns populated from right/numbers on the right side?
virtual void SectionBiDi( bool bBiDi );
/// The style of the page numbers.
///
/// nPageRestartNumberr being 0 means no restart.
virtual void SectionPageNumbering( sal_uInt16 nNumType, sal_uInt16 nPageRestartNumber );
/// The type of breaking.
virtual void SectionType( sal_uInt8 nBreakCode );
/// Definition of a numbering instance.
virtual void NumberingDefinition( sal_uInt16 nId, const SwNumRule &rRule );
/// Start of the abstract numbering definition instance.
virtual void StartAbstractNumbering( sal_uInt16 nId );
/// End of the abstract numbering definition instance.
virtual void EndAbstractNumbering();
/// All the numbering level information.
virtual void NumberingLevel( sal_uInt8 nLevel,
sal_uInt16 nStart,
sal_uInt16 nNumberingType,
SvxAdjust eAdjust,
const sal_uInt8 *pNumLvlPos,
sal_uInt8 nFollow,
const wwFont *pFont,
const SfxItemSet *pOutSet,
sal_Int16 nIndentAt,
sal_Int16 nFirstLineIndex,
sal_Int16 nListTabPos,
const String &rNumberingString );
void WriteField_Impl( const SwField* pFld, ww::eField eType, const String& rFldCmd, sal_uInt8 nMode );
void WriteBookmarks_Impl( std::vector< rtl::OUString >& rStarts, std::vector< rtl::OUString >& rEnds );
void WriteHeaderFooter_Impl( const SwFrmFmt& rFmt, bool bHeader, const sal_Char* pStr, bool bTitlepg );
protected:
/// Output frames - the implementation.
virtual void OutputFlyFrame_Impl( const sw::Frame& rFmt, const Point& rNdTopLeft );
/// Sfx item Sfx item RES_CHRATR_CASEMAP
virtual void CharCaseMap( const SvxCaseMapItem& rCaseMap );
/// Sfx item Sfx item RES_CHRATR_COLOR
virtual void CharColor( const SvxColorItem& rColor);
/// Sfx item Sfx item RES_CHRATR_CONTOUR
virtual void CharContour( const SvxContourItem& rContour );
/// Sfx item RES_CHRATR_CROSSEDOUT
virtual void CharCrossedOut( const SvxCrossedOutItem& rCrossedOut );
/// Sfx item RES_CHRATR_ESCAPEMENT
virtual void CharEscapement( const SvxEscapementItem& rEscapement );
/// Sfx item RES_CHRATR_FONT
virtual void CharFont( const SvxFontItem& rFont );
/// Sfx item RES_CHRATR_FONTSIZE
virtual void CharFontSize( const SvxFontHeightItem& rFontSize );
/// Sfx item RES_CHRATR_KERNING
virtual void CharKerning( const SvxKerningItem& rKerning );
/// Sfx item RES_CHRATR_LANGUAGE
virtual void CharLanguage( const SvxLanguageItem& rLanguage );
/// Sfx item RES_CHRATR_POSTURE
virtual void CharPosture( const SvxPostureItem& rPosture );
/// Sfx item RES_CHRATR_SHADOWED
virtual void CharShadow( const SvxShadowedItem& rShadow );
/// Sfx item RES_CHRATR_UNDERLINE
virtual void CharUnderline( const SvxUnderlineItem& rUnderline );
/// Sfx item RES_CHRATR_WEIGHT
virtual void CharWeight( const SvxWeightItem& rWeight );
/// Sfx item RES_CHRATR_AUTOKERN
virtual void CharAutoKern( const SvxAutoKernItem& );
/// Sfx item RES_CHRATR_BLINK
virtual void CharAnimatedText( const SvxBlinkItem& rBlink );
/// Sfx item RES_CHRATR_BACKGROUND
virtual void CharBackground( const SvxBrushItem& rBrush );
/// Sfx item RES_CHRATR_CJK_FONT
virtual void CharFontCJK( const SvxFontItem& rFont );
/// Sfx item RES_CHRATR_CJK_FONTSIZE
virtual void CharFontSizeCJK( const SvxFontHeightItem& rFontSize );
/// Sfx item RES_CHRATR_CJK_LANGUAGE
virtual void CharLanguageCJK( const SvxLanguageItem& rLanguageItem );
/// Sfx item RES_CHRATR_CJK_POSTURE
virtual void CharPostureCJK( const SvxPostureItem& rPosture );
/// Sfx item RES_CHRATR_CJK_WEIGHT
virtual void CharWeightCJK( const SvxWeightItem& rWeight );
/// Sfx item RES_CHRATR_CTL_FONT
virtual void CharFontCTL( const SvxFontItem& rFont );
/// Sfx item RES_CHRATR_CTL_FONTSIZE
virtual void CharFontSizeCTL( const SvxFontHeightItem& rFontSize );
/// Sfx item RES_CHRATR_CTL_LANGUAGE
virtual void CharLanguageCTL( const SvxLanguageItem& rLanguageItem );
/// Sfx item RES_CHRATR_CTL_POSTURE
virtual void CharPostureCTL( const SvxPostureItem& rWeight );
/// Sfx item RES_CHRATR_CTL_WEIGHT
virtual void CharWeightCTL( const SvxWeightItem& rWeight );
/// Sfx item RES_CHRATR_ROTATE
virtual void CharRotate( const SvxCharRotateItem& rRotate );
/// Sfx item RES_CHRATR_EMPHASIS_MARK
virtual void CharEmphasisMark( const SvxEmphasisMarkItem& rEmphasisMark );
/// Sfx item RES_CHRATR_TWO_LINES
virtual void CharTwoLines( const SvxTwoLinesItem& rTwoLines );
/// Sfx item RES_CHRATR_SCALEW
virtual void CharScaleWidth( const SvxCharScaleWidthItem& rScaleWidth );
/// Sfx item RES_CHRATR_RELIEF
virtual void CharRelief( const SvxCharReliefItem& rRelief);
/// Sfx item RES_CHRATR_HIDDEN
virtual void CharHidden( const SvxCharHiddenItem& rHidden );
/// Sfx item RES_TXTATR_INETFMT
virtual void TextINetFormat( const SwFmtINetFmt& );
/// Sfx item RES_TXTATR_CHARFMT
virtual void TextCharFormat( const SwFmtCharFmt& );
/// Sfx item RES_TXTATR_FTN
virtual void TextFootnote_Impl( const SwFmtFtn& );
/// Sfx item RES_PARATR_LINESPACING
virtual void ParaLineSpacing_Impl( short nSpace, short nMulti );
/// Sfx item RES_PARATR_ADJUST
virtual void ParaAdjust( const SvxAdjustItem& rAdjust );
/// Sfx item RES_PARATR_SPLIT
virtual void ParaSplit( const SvxFmtSplitItem& rSplit );
/// Sfx item RES_PARATR_WIDOWS
virtual void ParaWidows( const SvxWidowsItem& rWidows );
/// Sfx item RES_PARATR_TABSTOP
virtual void ParaTabStop( const SvxTabStopItem& rTabStop );
/// Sfx item RES_PARATR_HYPHENZONE
virtual void ParaHyphenZone( const SvxHyphenZoneItem& );
/// Sfx item RES_PARATR_NUMRULE
virtual void ParaNumRule_Impl( const SwTxtNode *pTxtNd, sal_Int32 nLvl, sal_Int32 nNumId );
/// Sfx item RES_PARATR_SCRIPTSPACE
virtual void ParaScriptSpace( const SfxBoolItem& );
/// Sfx item RES_PARATR_VERTALIGN
virtual void ParaVerticalAlign( const SvxParaVertAlignItem& rAlign );
/// Sfx item RES_PARATR_SNAPTOGRID
virtual void ParaSnapToGrid( const SvxParaGridItem& );
/// Sfx item RES_FRM_SIZE
virtual void FormatFrameSize( const SwFmtFrmSize& );
/// Sfx item RES_PAPER_BIN
virtual void FormatPaperBin( const SvxPaperBinItem& );
/// Sfx item RES_LR_SPACE
virtual void FormatLRSpace( const SvxLRSpaceItem& rLRSpace );
/// Sfx item RES_UL_SPACE
virtual void FormatULSpace( const SvxULSpaceItem& rULSpace );
/// Sfx item RES_SURROUND
virtual void FormatSurround( const SwFmtSurround& );
/// Sfx item RES_VERT_ORIENT
virtual void FormatVertOrientation( const SwFmtVertOrient& );
/// Sfx item RES_HORI_ORIENT
virtual void FormatHorizOrientation( const SwFmtHoriOrient& );
/// Sfx item RES_ANCHOR
virtual void FormatAnchor( const SwFmtAnchor& );
/// Sfx item RES_BACKGROUND
virtual void FormatBackground( const SvxBrushItem& );
/// Sfx item RES_BOX
virtual void FormatBox( const SvxBoxItem& );
/// Sfx item RES_COL
virtual void FormatColumns_Impl( sal_uInt16 nCols, const SwFmtCol & rCol, bool bEven, SwTwips nPageSize );
/// Sfx item RES_KEEP
virtual void FormatKeep( const SvxFmtKeepItem& );
/// Sfx item RES_TEXTGRID
virtual void FormatTextGrid( const SwTextGridItem& );
/// Sfx item RES_LINENUMBER
virtual void FormatLineNumbering( const SwFmtLineNumber& );
/// Sfx item RES_FRAMEDIR
virtual void FormatFrameDirection( const SvxFrameDirectionItem& );
/// Write the expanded field
virtual void WriteExpand( const SwField* pFld );
virtual void RefField( const SwField& rFld, const String& rRef );
virtual void HiddenField( const SwField& rFld );
virtual void SetField( const SwField& rFld, ww::eField eType, const String& rCmd );
virtual void PostitField( const SwField* pFld );
virtual bool DropdownField( const SwField* pFld );
/// Reference to the export, where to get the data from
RtfExport &m_rExport;
private:
/// Output graphic fly frames.
void FlyFrameGraphic( const SwFlyFrmFmt* pFlyFrmFmt, const SwGrfNode& rGrfNode );
void FlyFrameOLE( const SwFlyFrmFmt* pFlyFrmFmt, SwOLENode& rOLENode, const Size& rSize );
void FlyFrameOLEData( SwOLENode& rOLENode );
/*
* Table methods.
*/
void InitTableHelper( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
void StartTable( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
void StartTableRow( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
void StartTableCell( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
void TableCellProperties( ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner );
void EndTableCell( );
void EndTableRow( );
void EndTable();
/// End cell, row, and even the entire table if necessary.
void FinishTableRowCell( ww8::WW8TableNodeInfoInner::Pointer_t pInner, bool bForceEmptyParagraph = false );
void WriteTextFootnoteNumStr(const SwFmtFtn& rFootnote);
/*
* Current style name and its ID.
*/
String m_rStyleName;
sal_uInt16 m_nStyleId;
/*
* Current list ID.
*/
sal_uInt16 m_nListId;
/*
* This is needed because the call order is: run text, run properties, paragraph properties.
* What we need is the opposite.
*/
rtl::OStringBuffer m_aRun;
rtl::OStringBuffer m_aRunText;
/*
* This is written after runs.
*/
rtl::OStringBuffer m_aAfterRuns;
/*
* Same for colors and stylesheets: first we just want to output colors,
* need to buffer the stylesheet table to output it after the color one.
*/
rtl::OStringBuffer m_aStylesheet;
/*
* This one just holds the style commands in the current style.
*/
rtl::OStringBuffer m_aStyles;
/*
* This is the same as m_aStyles but the conents of it is written last.
*/
rtl::OStringBuffer m_aStylesEnd;
/*
* We just get a "end of strike" mark at the end of strike, store here what to finish: single or double strike.
*/
bool m_bStrikeDouble;
/*
* The current table helper.
*/
SwWriteTable *m_pTableWrt;
/*
* Remember if we are in an open cell, or not.
*/
bool m_bTableCellOpen;
/*
* Remember the current table depth.
*/
sal_uInt32 m_nTableDepth;
/*
* Remember if we wrote a \cell or not.
*/
bool m_bTblAfterCell;
/*
* For late output of row definitions.
*/
rtl::OStringBuffer m_aRowDefs;
/*
* Is a column break needed after the next \par?
*/
bool m_nColBreakNeeded;
/*
* If section breaks should be buffered to m_aSectionBreaks
*/
bool m_bBufferSectionBreaks;
rtl::OStringBuffer m_aSectionBreaks;
/*
* If section headers (and footers) should be buffered to
* m_aSectionHeaders.
*/
bool m_bBufferSectionHeaders;
rtl::OStringBuffer m_aSectionHeaders;
/*
* Support for starting multiple tables at the same cell.
* If the current table is the last started one.
*/
bool m_bLastTable;
/*
* List of already started but not yet defined tables (need to be defined
* after the nested tables).
*/
std::vector< rtl::OString > m_aTables;
/*
* If cell info is already output.
*/
bool m_bWroteCellInfo;
/*
* If we had a field result in the URL.
*/
bool m_bHadFieldResult;
/// If we ended a table row without starting a new one.
bool m_bTableRowEnded;
/// Number of cells from the table definition, by depth.
std::map<sal_uInt32,sal_uInt32> m_aCells;
public:
RtfAttributeOutput( RtfExport &rExport );
virtual ~RtfAttributeOutput();
/// Return the right export class.
virtual MSWordExportBase& GetExport();
rtl::OStringBuffer m_aTabStop;
// These are used by wwFont::WriteRtf()
/// Start the font.
void StartFont( const String& rFamilyName ) const;
/// End the font.
void EndFont() const;
/// Alternate name for the font.
void FontAlternateName( const String& rName ) const;
/// Font charset.
void FontCharset( sal_uInt8 nCharSet ) const;
/// Font family.
void FontFamilyType( FontFamily eFamily, const wwFont &rFont ) const;
/// Font pitch.
void FontPitchType( FontPitch ePitch ) const;
/// Writes binary data as a hex dump.
static rtl::OString WriteHex(const sal_uInt8* pData, sal_uInt32 nSize, sal_uInt32 nLimit = 64);
static rtl::OString WriteHex(sal_Int32 nNum);
static rtl::OString WriteHex(rtl::OString sString);
};
#endif // _RTFATTRIBUTEOUTPUT_HXX_
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|