LibreOffice Module writerfilter (master) 1
|
Classes | |
class | RTFColorTableEntry |
An entry in the color table. More... | |
class | RTFDocument |
The RTFDocument opens and resolves the RTF document. More... | |
class | RTFDocumentFactory |
Interface to create an RTFDocument instance. More... | |
class | RTFDocumentImpl |
Implementation of the RTFDocument interface. More... | |
class | RTFDrawingObject |
Stores the properties of a drawing object. More... | |
struct | RTFEncoding |
RTF legacy charsets. More... | |
struct | RTFFontNameSuffix |
Font name can contain special suffixes used to determine encoding for given font table entry For example "Arial CE" is "Arial" with CP1250 encoding List of these suffixes is not official and detected in a empirical way thus may be inexact and incomplete. More... | |
class | RTFFrame |
Stores the properties of a frame. More... | |
class | RTFHoriOrient |
Stores the horizontal orientation properties of an RTF fly frame. More... | |
class | RTFListener |
RTFTokenizer needs a class implementing this interface. More... | |
class | RTFLookahead |
This acts like an importer, but used for looking ahead, e.g. More... | |
class | RTFMathSymbol |
Represents an RTF Math Control Word. More... | |
class | RTFParserState |
State of the parser, which gets saved / restored when changing groups. More... | |
class | RTFPicture |
Stores the properties of a picture. More... | |
class | RTFReferenceProperties |
Sends RTFSprm instances to DomainMapper. More... | |
class | RTFReferenceTable |
Sends tables (e.g. font table) to the domain mapper. More... | |
class | RTFSdrImport |
Handles the import of drawings using RTF markup. More... | |
class | RTFShape |
Stores the properties of a shape. More... | |
class | RTFSkipDestination |
Skips a destination after a not parsed control word if it was prefixed with *. More... | |
class | RTFSprm |
RTF keyword with a parameter. More... | |
class | RTFSprms |
A list of RTFSprm with a copy constructor that performs a deep copy. More... | |
class | RTFSprmsImpl |
The payload of RTFSprms which is only copied on write. More... | |
struct | RTFStack |
An RTF stack is similar to std::stack, except that it has an operator[]. More... | |
class | RTFSymbol |
Represents an RTF Control Word. More... | |
class | RTFTokenizer |
RTF tokenizer that separates control words from text. More... | |
class | RTFValue |
Value of an RTF keyword. More... | |
class | RTFVertOrient |
Stores the vertical orientation properties of an RTF fly frame. More... | |
class | TableRowBuffer |
holds one nested table row More... | |
Typedefs | |
using | Buf_t = std::tuple< RTFBufferTypes, RTFValue::Pointer_t, tools::SvRef< TableRowBuffer > > |
A buffer storing dmapper calls. More... | |
using | RTFBuffer_t = std::deque< Buf_t > |
using | RTFSprmsImplBase = std::vector< std::pair< Id, RTFValue::Pointer_t > > |
Functions | |
const char * | keywordToString (RTFKeyword nKeyword) |
Id | getParagraphBorder (sal_uInt32 nIndex) |
void | putNestedAttribute (RTFSprms &rSprms, Id nParent, Id nId, const RTFValue::Pointer_t &pValue, RTFOverwrite eOverwrite, bool bAttribute) |
void | putNestedSprm (RTFSprms &rSprms, Id nParent, Id nId, const RTFValue::Pointer_t &pValue, RTFOverwrite eOverwrite) |
RTFValue::Pointer_t | getNestedAttribute (RTFSprms &rSprms, Id nParent, Id nId) |
Looks up the nParent then the nested nId attribute in rSprms. More... | |
RTFValue::Pointer_t | getNestedSprm (RTFSprms &rSprms, Id nParent, Id nId) |
Looks up the nParent then the nested nId sprm in rSprms. More... | |
bool | eraseNestedAttribute (RTFSprms &rSprms, Id nParent, Id nId) |
RTFSprms & | getLastAttributes (RTFSprms &rSprms, Id nId) |
void | putBorderProperty (RTFStack &aStates, Id nId, const RTFValue::Pointer_t &pValue) |
OString | DTTM22OString (tools::Long nDTTM) |
static RTFSprms | lcl_getBookmarkProperties (int nPos, const OUString &rString) |
static util::DateTime | lcl_getDateTime (RTFParserState const &aState) |
static void | lcl_DestinationToMath (OUStringBuffer *pDestinationText, oox::formulaimport::XmlStreamBuilder &rMathBuffer, bool &rMathNor) |
static void | lcl_copyFlatten (RTFReferenceProperties &rProps, RTFSprms &rStyleAttributes, RTFSprms &rStyleSprms) |
Copy rProps to rStyleAttributes and rStyleSprms, but in case of nested sprms, copy their children as toplevel sprms/attributes. More... | |
bool | findPropertyName (const std::vector< beans::PropertyValue > &rProperties, const OUString &rName) |
static bool | lcl_containsProperty (const uno::Sequence< beans::Property > &rProperties, std::u16string_view rName) |
static auto | FilterControlChars (Destination const destination, OUString const &rString) -> OUString |
bool | findPropertyName (const std::vector< css::beans::PropertyValue > &rProperties, const OUString &rName) |
Checks if rName is contained at least once in rProperties as a key. More... | |
static RTFValue::Pointer_t | getDefaultSPRM (Id const id, Id nStyleType) |
static bool | isSPRMDeduplicateDenylist (Id nId, RTFSprms *pDirect) |
Is it problematic to deduplicate this SPRM? More... | |
static bool | isSPRMChildrenExpected (Id nId) |
Should this SPRM be removed if all its children are removed? More... | |
static void | cloneAndDeduplicateSprm (std::pair< Id, RTFValue::Pointer_t > const &rSprm, RTFSprms &ret, Id nStyleType, RTFSprms *pDirect=nullptr) |
Does the clone / deduplication of a single sprm. More... | |
static RTFValue::Pointer_t | getListLevel (const RTFValue::Pointer_t &pAbstract, int nLevel) |
Extracts the list level matching nLevel from pAbstract. More... | |
Variables | |
RTFEncoding const | aRTFEncodings [] |
int | nRTFEncodings = std::size(aRTFEncodings) |
RTFFontNameSuffix const | aRTFFontNameSuffixes [] |
RTFSymbol const | aRTFControlWords [] |
const int | nRTFControlWords = SAL_N_ELEMENTS(aRTFControlWords) |
RTFMathSymbol const | aRTFMathControlWords [] |
const int | nRTFMathControlWords = SAL_N_ELEMENTS(aRTFMathControlWords) |
using writerfilter::rtftok::Buf_t = typedef std::tuple<RTFBufferTypes, RTFValue::Pointer_t, tools::SvRef<TableRowBuffer> > |
A buffer storing dmapper calls.
Definition at line 118 of file rtfdocumentimpl.hxx.
using writerfilter::rtftok::RTFBuffer_t = typedef std::deque<Buf_t> |
Definition at line 119 of file rtfdocumentimpl.hxx.
using writerfilter::rtftok::RTFSprmsImplBase = typedef std::vector<std::pair<Id, RTFValue::Pointer_t> > |
Definition at line 22 of file rtfsprm.hxx.
|
strong |
An RTF destination state is the last open destination control word.
Note that this is not a 1:1 mapping between destination control words, e.g. RTF_PICT gets mapped to Destination::PICT or Destination::SHAPEPROPERTYVALUEPICT.
Definition at line 21 of file rtfcontrolwords.hxx.
|
strong |
Enumerator | |
---|---|
NONE | |
PNG | |
JPEG | |
DIBITMAP |
Definition at line 102 of file rtfdocumentimpl.hxx.
|
strong |
Enumerator | |
---|---|
NONE | |
PARAGRAPH | |
PARAGRAPH_BOX | |
CELL | |
PAGE | |
CHARACTER |
Definition at line 60 of file rtfdocumentimpl.hxx.
Different kind of buffers for table cell contents.
Definition at line 71 of file rtfdocumentimpl.hxx.
|
strong |
Types of an RTF Control Word.
Enumerator | |
---|---|
FLAG | |
DESTINATION | |
SYMBOL | |
TOGGLE | |
VALUE |
Definition at line 1982 of file rtfcontrolwords.hxx.
|
strong |
Enumerator | |
---|---|
OK | |
GROUP_UNDER | |
GROUP_OVER | |
UNEXPECTED_EOF | |
HEX_INVALID | |
CHAR_OVER | |
CLASSIFICATION |
Definition at line 23 of file rtflistener.hxx.
|
strong |
Enumerator | |
---|---|
NONE | |
INSTRUCTION | |
RESULT |
Definition at line 110 of file rtfdocumentimpl.hxx.
|
strong |
Form field types.
Enumerator | |
---|---|
NONE | |
TEXT | |
CHECKBOX | |
LIST |
Definition at line 94 of file rtfdocumentimpl.hxx.
|
strong |
Enumerator | |
---|---|
NORMAL | |
BIN | |
HEX |
Definition at line 16 of file rtflistener.hxx.
|
strong |
Definition at line 162 of file rtfcontrolwords.hxx.
|
strong |
Definition at line 29 of file rtfsprm.hxx.
|
static |
Does the clone / deduplication of a single sprm.
Definition at line 285 of file rtfsprm.cxx.
References writerfilter::rtftok::RTFSprms::empty(), writerfilter::rtftok::RTFSprms::erase(), writerfilter::rtftok::RTFSprms::find(), getDefaultSPRM(), isSPRMChildrenExpected(), isSPRMDeduplicateDenylist(), and writerfilter::rtftok::RTFSprms::set().
Referenced by writerfilter::rtftok::RTFSprms::cloneAndDeduplicate().
OString writerfilter::rtftok::DTTM22OString | ( | tools::Long | nDTTM | ) |
Definition at line 212 of file rtfdocumentimpl.cxx.
References DateTimeToOString(), and msfilter::util::DTTM2DateTime().
Referenced by writerfilter::rtftok::RTFDocumentImpl::beforePopState(), and writerfilter::rtftok::RTFDocumentImpl::dispatchValue().
Definition at line 140 of file rtfdocumentimpl.cxx.
References writerfilter::rtftok::RTFSprms::erase(), writerfilter::rtftok::RTFSprms::find(), and nId.
Referenced by writerfilter::rtftok::RTFDocumentImpl::createStyleProperties(), writerfilter::rtftok::RTFSprms::deduplicateList(), and writerfilter::rtftok::RTFDocumentImpl::dispatchFlag().
|
static |
Definition at line 3741 of file rtfdocumentimpl.cxx.
References ch, i, linguistic::IsControlChar(), LEVELNUMBERS, LEVELTEXT, and SAL_INFO.
Referenced by writerfilter::rtftok::RTFDocumentImpl::checkUnicode().
bool writerfilter::rtftok::findPropertyName | ( | const std::vector< beans::PropertyValue > & | rProperties, |
const OUString & | rName | ||
) |
Definition at line 1811 of file rtfdocumentimpl.cxx.
Referenced by writerfilter::rtftok::RTFDocumentImpl::dispatchFlag().
bool writerfilter::rtftok::findPropertyName | ( | const std::vector< css::beans::PropertyValue > & | rProperties, |
const OUString & | rName | ||
) |
Checks if rName is contained at least once in rProperties as a key.
|
static |
Definition at line 158 of file rtfsprm.cxx.
References getParagraphBorder(), i, nBorder, and writerfilter::rtftok::RTFSprms::set().
Referenced by cloneAndDeduplicateSprm(), and writerfilter::rtftok::RTFSprms::duplicateList().
Definition at line 150 of file rtfdocumentimpl.cxx.
References writerfilter::rtftok::RTFSprms::find(), nId, p, and SAL_WARN.
Referenced by writerfilter::rtftok::RTFDocumentImpl::dispatchValue(), and putBorderProperty().
|
static |
Extracts the list level matching nLevel from pAbstract.
Definition at line 333 of file rtfsprm.cxx.
Referenced by writerfilter::rtftok::RTFSprms::duplicateList().
RTFValue::Pointer_t writerfilter::rtftok::getNestedAttribute | ( | RTFSprms & | rSprms, |
Id | nParent, | ||
Id | nId | ||
) |
Looks up the nParent then the nested nId attribute in rSprms.
Definition at line 122 of file rtfdocumentimpl.cxx.
References writerfilter::rtftok::RTFSprms::find(), and nId.
Referenced by writerfilter::rtftok::RTFDocumentImpl::checkFirstRun(), writerfilter::rtftok::RTFDocumentImpl::createStyleProperties(), writerfilter::rtftok::RTFSprms::deduplicateList(), and writerfilter::rtftok::RTFSprms::duplicateList().
RTFValue::Pointer_t writerfilter::rtftok::getNestedSprm | ( | RTFSprms & | rSprms, |
Id | nParent, | ||
Id | nId | ||
) |
Looks up the nParent then the nested nId sprm in rSprms.
Definition at line 131 of file rtfdocumentimpl.cxx.
References writerfilter::rtftok::RTFSprms::find(), and nId.
Referenced by writerfilter::rtftok::RTFSprms::deduplicateList(), writerfilter::rtftok::RTFSprms::duplicateList(), and writerfilter::rtftok::RTFDocumentImpl::getProperties().
Id writerfilter::rtftok::getParagraphBorder | ( | sal_uInt32 | nIndex | ) |
Definition at line 86 of file rtfdocumentimpl.cxx.
References nIndex.
Referenced by writerfilter::rtftok::RTFDocumentImpl::dispatchFlag(), getDefaultSPRM(), and putBorderProperty().
|
static |
Should this SPRM be removed if all its children are removed?
Definition at line 264 of file rtfsprm.cxx.
References nId.
Referenced by cloneAndDeduplicateSprm().
Is it problematic to deduplicate this SPRM?
Definition at line 225 of file rtfsprm.cxx.
References writerfilter::rtftok::RTFSprms::find(), and nId.
Referenced by cloneAndDeduplicateSprm().
const char * writerfilter::rtftok::keywordToString | ( | RTFKeyword | nKeyword | ) |
Definition at line 231 of file rtfdocumentimpl.cxx.
References aRTFControlWords, writerfilter::rtftok::RTFSymbol::GetKeyword(), i, and nRTFControlWords.
Referenced by writerfilter::rtftok::RTFDocumentImpl::dispatchDestination(), writerfilter::rtftok::RTFDocumentImpl::dispatchFlag(), writerfilter::rtftok::RTFDocumentImpl::dispatchSymbol(), writerfilter::rtftok::RTFDocumentImpl::dispatchToggle(), and writerfilter::rtftok::RTFDocumentImpl::dispatchValue().
|
static |
Definition at line 2264 of file rtfdocumentimpl.cxx.
Referenced by writerfilter::rtftok::RTFDocumentImpl::beforePopState().
|
static |
Copy rProps to rStyleAttributes and rStyleSprms, but in case of nested sprms, copy their children as toplevel sprms/attributes.
Definition at line 472 of file rtfdocumentimpl.cxx.
References writerfilter::rtftok::RTFReferenceProperties::getAttributes(), writerfilter::rtftok::RTFReferenceProperties::getSprms(), and writerfilter::rtftok::RTFSprms::set().
Referenced by writerfilter::rtftok::RTFDocumentImpl::getProperties().
|
static |
Definition at line 253 of file rtfdocumentimpl.cxx.
References oox::formulaimport::XmlStreamBuilder::appendCharacters(), oox::formulaimport::XmlStreamBuilder::appendClosingTag(), oox::formulaimport::XmlStreamBuilder::appendOpeningTag(), aStr, and t.
Referenced by writerfilter::rtftok::RTFDocumentImpl::beforePopState(), and writerfilter::rtftok::RTFDocumentImpl::pushState().
|
static |
Definition at line 217 of file rtfdocumentimpl.cxx.
References nPos, and writerfilter::rtftok::RTFSprms::set().
Referenced by writerfilter::rtftok::RTFDocumentImpl::beforePopState().
|
static |
Definition at line 241 of file rtfdocumentimpl.cxx.
References writerfilter::rtftok::RTFParserState::getDay(), writerfilter::rtftok::RTFParserState::getHour(), writerfilter::rtftok::RTFParserState::getMinute(), writerfilter::rtftok::RTFParserState::getMonth(), and writerfilter::rtftok::RTFParserState::getYear().
Referenced by writerfilter::rtftok::RTFDocumentImpl::beforePopState().
void writerfilter::rtftok::putBorderProperty | ( | RTFStack & | aStates, |
Id | nId, | ||
const RTFValue::Pointer_t & | pValue | ||
) |
Definition at line 160 of file rtfdocumentimpl.cxx.
References CELL, CHARACTER, writerfilter::rtftok::RTFSprms::find(), writerfilter::rtftok::RTFParserState::getBorderState(), writerfilter::rtftok::RTFParserState::getCharacterSprms(), getLastAttributes(), getParagraphBorder(), writerfilter::rtftok::RTFParserState::getParagraphSprms(), writerfilter::rtftok::RTFParserState::getSectionSprms(), writerfilter::rtftok::RTFParserState::getTableCellSprms(), i, nBorder, nId, NONE, p, PAGE, PARAGRAPH, PARAGRAPH_BOX, putNestedSprm(), writerfilter::rtftok::RTFSprms::set(), writerfilter::rtftok::RTFStack::top(), and YES.
Referenced by writerfilter::rtftok::RTFDocumentImpl::dispatchFlag(), and writerfilter::rtftok::RTFDocumentImpl::dispatchValue().
void writerfilter::rtftok::putNestedAttribute | ( | RTFSprms & | rSprms, |
Id | nParent, | ||
Id | nId, | ||
const RTFValue::Pointer_t & | pValue, | ||
RTFOverwrite | eOverwrite, | ||
bool | bAttribute | ||
) |
Definition at line 95 of file rtfdocumentimpl.cxx.
References COL_AUTO(), writerfilter::rtftok::RTFSprms::find(), nId, and writerfilter::rtftok::RTFSprms::set().
Referenced by writerfilter::rtftok::RTFDocumentImpl::beforePopState(), writerfilter::rtftok::RTFDocumentImpl::checkFirstRun(), writerfilter::rtftok::RTFDocumentImpl::dispatchCharacterAttributeValue(), writerfilter::rtftok::RTFDocumentImpl::dispatchFlag(), writerfilter::rtftok::RTFDocumentImpl::dispatchFloatingTableFlag(), writerfilter::rtftok::RTFDocumentImpl::dispatchTableSprmValue(), writerfilter::rtftok::RTFDocumentImpl::dispatchTableValue(), writerfilter::rtftok::RTFDocumentImpl::dispatchToggle(), writerfilter::rtftok::RTFDocumentImpl::dispatchValue(), writerfilter::rtftok::RTFSprms::duplicateList(), writerfilter::rtftok::RTFDocumentImpl::prepareProperties(), and putNestedSprm().
void writerfilter::rtftok::putNestedSprm | ( | RTFSprms & | rSprms, |
Id | nParent, | ||
Id | nId, | ||
const RTFValue::Pointer_t & | pValue, | ||
RTFOverwrite | eOverwrite | ||
) |
Definition at line 116 of file rtfdocumentimpl.cxx.
References nId, and putNestedAttribute().
Referenced by writerfilter::rtftok::RTFDocumentImpl::afterPopState(), writerfilter::rtftok::RTFDocumentImpl::dispatchFlag(), writerfilter::rtftok::RTFDocumentImpl::dispatchTableValue(), writerfilter::rtftok::RTFDocumentImpl::dispatchValue(), writerfilter::rtftok::RTFDocumentImpl::prepareProperties(), and putBorderProperty().
RTFSymbol const writerfilter::rtftok::aRTFControlWords |
Definition at line 15 of file rtfcontrolwords.cxx.
Referenced by keywordToString(), and writerfilter::rtftok::RTFTokenizer::RTFTokenizer().
RTFEncoding const writerfilter::rtftok::aRTFEncodings |
Definition at line 19 of file rtfcharsets.cxx.
Referenced by writerfilter::rtftok::RTFDocumentImpl::dispatchValue().
RTFFontNameSuffix const writerfilter::rtftok::aRTFFontNameSuffixes |
Definition at line 56 of file rtfcharsets.cxx.
Referenced by writerfilter::rtftok::RTFDocumentImpl::handleFontTableEntry().
RTFMathSymbol const writerfilter::rtftok::aRTFMathControlWords |
Definition at line 1843 of file rtfcontrolwords.cxx.
Referenced by writerfilter::rtftok::RTFTokenizer::RTFTokenizer().
const int writerfilter::rtftok::nRTFControlWords = SAL_N_ELEMENTS(aRTFControlWords) |
Definition at line 1841 of file rtfcontrolwords.cxx.
Referenced by keywordToString(), and writerfilter::rtftok::RTFTokenizer::RTFTokenizer().
int writerfilter::rtftok::nRTFEncodings = std::size(aRTFEncodings) |
Definition at line 54 of file rtfcharsets.cxx.
Referenced by writerfilter::rtftok::RTFDocumentImpl::dispatchValue().
const int writerfilter::rtftok::nRTFMathControlWords = SAL_N_ELEMENTS(aRTFMathControlWords) |
Definition at line 1891 of file rtfcontrolwords.cxx.
Referenced by writerfilter::rtftok::RTFTokenizer::RTFTokenizer().