40 #ifndef MWAW_TEXT_LISTENER_H 41 #define MWAW_TEXT_LISTENER_H 45 #include <librevenge/librevenge.h> 79 void setDocumentLanguage(std::string locale);
84 void endDocument(
bool sendDelayedSubDoc=
true);
86 bool isDocumentStarted()
const;
105 bool isPageSpanOpened()
const;
113 bool insertHeader(
MWAWSubDocumentPtr subDocument, librevenge::RVNGPropertyList
const &extras);
115 bool insertFooter(
MWAWSubDocumentPtr subDocument, librevenge::RVNGPropertyList
const &extras);
117 bool isHeaderFooterOpened()
const;
122 void insertChar(uint8_t character);
125 void insertCharacter(
unsigned char c);
134 void insertUnicode(uint32_t character);
136 void insertUnicodeString(librevenge::RVNGString
const &str);
141 void insertEOL(
bool softBreak=
false);
151 bool isParagraphOpened()
const;
159 void insertField(
MWAWField const &field);
163 void openLink(
MWAWLink const &link);
175 void insertPicture(
MWAWPosition const &pos,
const librevenge::RVNGBinaryData &binaryData,
190 void openTableRow(
float h, librevenge::RVNGUnit unit,
bool headerRow=
false);
192 void closeTableRow();
194 void openTableCell(
MWAWCell const &cell);
196 void closeTableCell();
202 bool canOpenSectionAddBreak()
const;
204 bool isSectionOpened()
const;
218 void _closeSection();
220 void _openPageSpan(
bool sendHeaderFooters=
true);
222 void _closePageSpan();
224 void _startSubDocument();
225 void _endSubDocument();
227 void _handleFrameParameters(librevenge::RVNGPropertyList &propList,
MWAWPosition const &pos);
229 void _openParagraph();
230 void _closeParagraph();
231 void _appendParagraphProperties(librevenge::RVNGPropertyList &propList,
const bool isListElement=
false);
232 void _resetParagraphState(
const bool isListElement=
false);
235 void _openListElement();
237 void _closeListElement();
244 int _getListId()
const;
254 void _flushDeferredTabs();
256 void _insertBreakIfNecessary(librevenge::RVNGPropertyList &propList);
261 shared_ptr<MWAWTextListenerInternal::State> _pushParsingState();
263 void _popParsingState();
267 shared_ptr<MWAWTextListenerInternal::DocumentState>
m_ds;
269 shared_ptr<MWAWTextListenerInternal::State>
m_ps;
271 std::vector<shared_ptr<MWAWTextListenerInternal::State> >
m_psStack;
MWAWParserState & m_parserState
the parser state
Definition: MWAWTextListener.hxx:273
bool isDocumentStarted() const
returns true if a document is opened
Definition: MWAWTextListener.cxx:517
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:380
a structure used to define a picture style
Definition: MWAWGraphicStyle.hxx:47
SubDocumentType
Definition: libmwaw_internal.hxx:173
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:717
bool canWriteText() const
returns true if we can add text data
Definition: MWAWTextListener.hxx:98
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:453
Class to store font.
Definition: MWAWFont.hxx:44
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:267
Internal and low level namespace to define the states of MWAWTextListener.
Definition: MWAWTextListener.cxx:70
a class which stores section properties
Definition: MWAWSection.hxx:45
shared_ptr< MWAWInputStream > MWAWInputStreamPtr
a smart pointer of MWAWInputStream
Definition: libmwaw_internal.hxx:439
Type getType() const
returns the listener type
Definition: MWAWTextListener.hxx:73
a structure used to define a picture shape
Definition: MWAWGraphicShape.hxx:45
class to store the paragraph properties
Definition: MWAWParagraph.hxx:82
a field
Definition: libmwaw_internal.hxx:361
shared_ptr< MWAWTextListenerInternal::State > m_ps
the actual local parse state
Definition: MWAWTextListener.hxx:269
a note
Definition: libmwaw_internal.hxx:394
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:275
std::vector< shared_ptr< MWAWTextListenerInternal::State > > m_psStack
stack of local state
Definition: MWAWTextListener.hxx:271
static MWAWGraphicStyle emptyStyle()
returns an empty style.
Definition: MWAWGraphicStyle.hxx:204