40 #ifndef MWAW_TEXT_LISTENER_H 41 #define MWAW_TEXT_LISTENER_H 45 #include <librevenge/librevenge.h> 79 void setDocumentMetaData(librevenge::RVNGPropertyList
const &metadata);
81 void setDocumentLanguage(std::string
const &locale);
86 void endDocument(
bool sendDelayedSubDoc=
true);
88 bool isDocumentStarted()
const;
111 bool isPageSpanOpened()
const;
119 bool insertHeader(
MWAWSubDocumentPtr subDocument, librevenge::RVNGPropertyList
const &extras);
121 bool insertFooter(
MWAWSubDocumentPtr subDocument, librevenge::RVNGPropertyList
const &extras);
123 bool isHeaderFooterOpened()
const;
128 void insertChar(uint8_t character);
131 void insertCharacter(
unsigned char c);
140 void insertUnicode(uint32_t character);
142 void insertUnicodeString(librevenge::RVNGString
const &str);
147 void insertEOL(
bool softBreak=
false);
157 bool isParagraphOpened()
const;
165 void insertField(
MWAWField const &field);
169 void openLink(
MWAWLink const &link);
196 void openTableRow(
float h, librevenge::RVNGUnit unit,
bool headerRow=
false);
198 void closeTableRow();
200 void openTableCell(
MWAWCell const &cell);
202 void closeTableCell();
208 bool canOpenSectionAddBreak()
const;
210 bool isSectionOpened()
const;
224 void _closeSection();
226 void _openPageSpan(
bool sendHeaderFooters=
true);
228 void _closePageSpan();
230 void _startSubDocument();
231 void _endSubDocument();
233 void _handleFrameParameters(librevenge::RVNGPropertyList &propList,
MWAWPosition const &pos);
235 void _openParagraph();
236 void _closeParagraph();
237 void _appendParagraphProperties(librevenge::RVNGPropertyList &propList,
const bool isListElement=
false);
238 void _resetParagraphState(
const bool isListElement=
false);
241 void _openListElement();
243 void _closeListElement();
250 int _getListId()
const;
260 void _flushDeferredTabs();
262 void _insertBreakIfNecessary(librevenge::RVNGPropertyList &propList);
267 shared_ptr<MWAWTextListenerInternal::State> _pushParsingState();
269 void _popParsingState();
273 shared_ptr<MWAWTextListenerInternal::DocumentState>
m_ds;
275 shared_ptr<MWAWTextListenerInternal::State>
m_ps;
277 std::vector<shared_ptr<MWAWTextListenerInternal::State> >
m_psStack;
bool isDocumentStarted() const
returns true if a document is opened
Definition: MWAWTextListener.cxx:490
MWAWParserState & m_parserState
the parser state
Definition: MWAWTextListener.hxx:279
A class which defines the page properties.
Definition: MWAWPageSpan.hxx:95
This class contents the main functions needed to create a Word processing Document.
Definition: MWAWTextListener.hxx:64
a link
Definition: libmwaw_internal.hxx:392
a structure used to define a picture style
Definition: MWAWGraphicStyle.hxx:47
SubDocumentType
Definition: libmwaw_internal.hxx:178
a class used to recreate the table structure using cell informations, ....
Definition: MWAWTable.hxx:51
MWAWVec2< int > MWAWVec2i
MWAWVec2 of int.
Definition: libmwaw_internal.hxx:778
Type getType() const
returns the listener type
Definition: MWAWTextListener.hxx:73
Type
the listener type
Definition: MWAWListener.hxx:56
a structure used to define a cell and its format
Definition: MWAWCell.hxx:52
shared_ptr< MWAWSubDocument > MWAWSubDocumentPtr
a smart pointer of MWAWSubDocument
Definition: libmwaw_internal.hxx:514
Class to store font.
Definition: MWAWFont.hxx:43
a class to define the parser state
Definition: MWAWParser.hxx:49
BreakType
the different break type
Definition: MWAWListener.hxx:58
shared_ptr< MWAWTextListenerInternal::DocumentState > m_ds
the main parse state
Definition: MWAWTextListener.hxx:273
Internal and low level namespace to define the states of MWAWTextListener.
Definition: MWAWTextListener.cxx:70
small class use to define a embedded object
Definition: libmwaw_internal.hxx:425
a class which stores section properties
Definition: MWAWSection.hxx:45
shared_ptr< MWAWInputStream > MWAWInputStreamPtr
a smart pointer of MWAWInputStream
Definition: libmwaw_internal.hxx:500
a structure used to define a picture shape
Definition: MWAWGraphicShape.hxx:45
class to store the paragraph properties
Definition: MWAWParagraph.hxx:81
a field
Definition: libmwaw_internal.hxx:369
shared_ptr< MWAWTextListenerInternal::State > m_ps
the actual local parse state
Definition: MWAWTextListener.hxx:275
a note
Definition: libmwaw_internal.hxx:406
Class to define the position of an object (textbox, picture, ..) in the document. ...
Definition: MWAWPosition.hxx:47
This class contains a virtual interface to all listener.
Definition: MWAWListener.hxx:49
librevenge::RVNGTextInterface * m_documentInterface
the document interface
Definition: MWAWTextListener.hxx:281
std::vector< shared_ptr< MWAWTextListenerInternal::State > > m_psStack
stack of local state
Definition: MWAWTextListener.hxx:277
bool canWriteText() const
returns true if we can add text data
Definition: MWAWTextListener.hxx:104
static MWAWGraphicStyle emptyStyle()
returns an empty style.
Definition: MWAWGraphicStyle.hxx:268