34 #ifndef MWAW_CONTENT_LISTENER_H
35 #define MWAW_CONTENT_LISTENER_H
39 #include <libwpd/libwpd.h>
44 class WPXDocumentInterface;
46 class WPXPropertyListVector;
62 namespace MWAWContentListenerInternal
160 std::string type=
"image/pict",
161 WPXPropertyList frameExtras=WPXPropertyList());
164 WPXPropertyList frameExtras=WPXPropertyList(),
165 WPXPropertyList textboxExtras=WPXPropertyList());
169 void openTable(std::vector<float>
const &colWidth, WPXUnit unit,
170 WPXPropertyList tableExtras=WPXPropertyList());
174 void openTableRow(
float h, WPXUnit unit,
bool headerRow=
false);
245 shared_ptr<MWAWContentListenerInternal::DocumentState>
m_ds;
247 shared_ptr<MWAWContentListenerInternal::State>
m_ps;
249 std::vector<shared_ptr<MWAWContentListenerInternal::State> >
m_psStack;
void _openParagraph()
Definition: MWAWContentListener.cxx:697
bool isHeaderFooterOpened() const
returns true if the header/footer is open
Definition: MWAWContentListener.cxx:581
bool isParagraphOpened() const
returns true if a paragraph or a list is opened
Definition: MWAWContentListener.cxx:380
void closeTable()
closes this table
Definition: MWAWContentListener.cxx:1490
shared_ptr< MWAWSubDocument > MWAWSubDocumentPtr
Definition: MSK4Zone.hxx:47
void _closeListElement()
close a list level
Definition: MWAWContentListener.cxx:800
shared_ptr< MWAWContentListenerInternal::DocumentState > m_ds
the main parse state
Definition: MWAWContentListener.hxx:245
shared_ptr< MWAWInputStream > MWAWInputStreamPtr
Definition: ACText.hxx:44
void insertCharacter(unsigned char c)
insert a character using the font converter to find the utf8 character
Definition: MWAWContentListener.cxx:209
MWAWParagraph const & getParagraph() const
returns the actual paragraph
Definition: MWAWContentListener.cxx:392
MWAWPageSpan const & getPageSpan()
returns the current page span
Definition: MWAWContentListener.cxx:515
void insertField(MWAWField const &field)
adds a field type
Definition: MWAWContentListener.cxx:400
A class which defines the page properties.
Definition: MWAWPageSpan.hxx:100
bool isSectionOpened() const
returns true if a section is opened
Definition: MWAWContentListener.cxx:615
bool closeSection()
close a section
Definition: MWAWContentListener.cxx:641
bool openSection(MWAWSection const §ion)
open a section if possible
Definition: MWAWContentListener.cxx:625
void handleSubDocument(MWAWSubDocumentPtr subDocument, libmwaw::SubDocumentType subDocumentType)
function called to add a subdocument
Definition: MWAWContentListener.cxx:1357
bool insertHeader(MWAWSubDocumentPtr subDocument, WPXPropertyList const &extras)
insert a header
Definition: MWAWContentListener.cxx:586
void _openSection()
Definition: MWAWContentListener.cxx:656
void openTableRow(float h, WPXUnit unit, bool headerRow=false)
open a row with given height ( if h < 0.0, set min-row-height = -h )
Definition: MWAWContentListener.cxx:1504
void insertUnicode(uint32_t character)
adds an unicode character.
Definition: MWAWContentListener.cxx:251
void insertEOL(bool softBreak=false)
adds an end of line ( by default an hard one)
Definition: MWAWContentListener.cxx:268
void _flushText()
Definition: MWAWContentListener.cxx:946
SubDocumentType
Definition: libmwaw_internal.hxx:157
void insertComment(MWAWSubDocumentPtr &subDocument)
adds comment
Definition: MWAWContentListener.cxx:1031
void _insertBreakIfNecessary(WPXPropertyList &propList)
Definition: MWAWContentListener.cxx:340
void startDocument()
starts the document
Definition: MWAWContentListener.cxx:464
int _getListId() const
low level: find a list id which corresponds to actual list and a change of level. ...
Definition: MWAWContentListener.cxx:816
void insertTab()
adds a tab
Definition: MWAWContentListener.cxx:285
virtual ~MWAWContentListener()
destructor
Definition: MWAWContentListener.cxx:190
void _appendParagraphProperties(WPXPropertyList &propList, const bool isListElement=false)
Definition: MWAWContentListener.cxx:755
a structure used to defined the cell position, and a format
Definition: MWAWCell.hxx:295
Vec2< int > Vec2i
Vec2 of int.
Definition: libmwaw_internal.hxx:543
WPXDocumentInterface * m_documentInterface
the document interface
Definition: MWAWContentListener.hxx:253
shared_ptr< MWAWContentListener > MWAWContentListenerPtr
Definition: MWAWContentListener.hxx:260
void _handleFrameParameters(WPXPropertyList &propList, MWAWPosition const &pos)
Definition: MWAWContentListener.cxx:1161
shared_ptr< MWAWContentListenerInternal::State > m_ps
the actual local parse state
Definition: MWAWContentListener.hxx:247
void closeTableRow()
closes this row
Definition: MWAWContentListener.cxx:1525
void addEmptyTableCell(Vec2i const &pos, Vec2i span=Vec2i(1, 1))
add empty cell
Definition: MWAWContentListener.cxx:1535
bool isPageSpanOpened() const
returns true if a page is opened
Definition: MWAWContentListener.cxx:510
void openTableCell(MWAWCell const &cell, WPXPropertyList const &extras)
low level function to define a cell.
Definition: MWAWContentListener.cxx:1554
Class to store font.
Definition: MWAWFont.hxx:47
void openTable(std::vector< float > const &colWidth, WPXUnit unit, WPXPropertyList tableExtras=WPXPropertyList())
open a table
Definition: MWAWContentListener.cxx:1454
a class to define the parser state
Definition: MWAWParser.hxx:60
void insertUnicodeString(WPXString const &str)
adds a unicode string
Definition: MWAWContentListener.cxx:261
void endDocument(bool sendDelayedSubDoc=true)
ends the document
Definition: MWAWContentListener.cxx:479
void _openPageSpan(bool sendHeaderFooters=true)
Definition: MWAWContentListener.cxx:523
void insertBreak(BreakType breakType)
inserts a break type: ColumBreak, PageBreak, ..
Definition: MWAWContentListener.cxx:296
bool insertFooter(MWAWSubDocumentPtr subDocument, WPXPropertyList const &extras)
insert a footer
Definition: MWAWContentListener.cxx:599
void _resetParagraphState(const bool isListElement=false)
Definition: MWAWContentListener.cxx:747
void _closeSection()
Definition: MWAWContentListener.cxx:677
abstract class used to store a subdocument (with a comparison function)
Definition: MWAWSubDocument.hxx:49
void _closeParagraph()
Definition: MWAWContentListener.cxx:726
void _openSpan()
Definition: MWAWContentListener.cxx:890
void _closeSpan()
Definition: MWAWContentListener.cxx:914
void _flushDeferredTabs()
Definition: MWAWContentListener.cxx:927
BreakType
Definition: MWAWContentListener.hxx:71
void _openListElement()
open a list level
Definition: MWAWContentListener.cxx:768
void setParagraph(MWAWParagraph const ¶graph)
sets the paragraph
Definition: MWAWContentListener.cxx:385
a class which stores section properties
Definition: MWAWSection.hxx:45
void setFont(MWAWFont const &font)
sets the font
Definition: MWAWContentListener.cxx:359
void _changeList()
update the list so that it corresponds to the actual level
Definition: MWAWContentListener.cxx:833
void insertTextBox(MWAWPosition const &pos, MWAWSubDocumentPtr subDocument, WPXPropertyList frameExtras=WPXPropertyList(), WPXPropertyList textboxExtras=WPXPropertyList())
adds a textbox in given position
Definition: MWAWContentListener.cxx:1056
MWAWFont const & getFont() const
returns the actual font
Definition: MWAWContentListener.cxx:375
class to store the paragraph properties
Definition: MWAWParagraph.hxx:83
void _endSubDocument()
Definition: MWAWContentListener.cxx:1440
void insertChar(uint8_t character)
adds a basic character, ..
Definition: MWAWContentListener.cxx:198
bool openFrame(MWAWPosition const &pos, WPXPropertyList extras=WPXPropertyList())
Definition: MWAWContentListener.cxx:1094
a field
Definition: libmwaw_internal.hxx:279
void insertNote(MWAWNote const ¬e, MWAWSubDocumentPtr &subDocument)
insert a note
Definition: MWAWContentListener.cxx:976
void _popParsingState()
resets the previous parsing state
Definition: MWAWContentListener.cxx:1718
bool isSubDocumentOpened(libmwaw::SubDocumentType &subdocType) const
returns try if a subdocument is open
Definition: MWAWContentListener.cxx:1426
MWAWParserState & m_parserState
the parser state
Definition: MWAWContentListener.hxx:251
a note
Definition: libmwaw_internal.hxx:297
Definition: MWAWContentListener.hxx:71
Class to define the position of an object (textbox, picture, ..) in the document. ...
Definition: MWAWPosition.hxx:47
MWAWContentListener & operator=(const MWAWContentListener &)
void _startSubDocument()
Definition: MWAWContentListener.cxx:1434
Definition: MWAWContentListener.hxx:68
void _closePageSpan()
Definition: MWAWContentListener.cxx:566
a small structure used to store the informations about a list
Definition: MWAWList.hxx:101
void closeFrame()
Definition: MWAWContentListener.cxx:1150
shared_ptr< MWAWContentListenerInternal::State > _pushParsingState()
creates a new parsing state (copy of the actual state)
Definition: MWAWContentListener.cxx:1704
Definition: MWAWContentListener.hxx:71
void insertPicture(MWAWPosition const &pos, const WPXBinaryData &binaryData, std::string type="image/pict", WPXPropertyList frameExtras=WPXPropertyList())
adds a picture in given position
Definition: MWAWContentListener.cxx:1069
std::vector< shared_ptr< MWAWContentListenerInternal::State > > m_psStack
stack of local state
Definition: MWAWContentListener.hxx:249
void closeTableCell()
close a cell
Definition: MWAWContentListener.cxx:1684
void setDocumentLanguage(std::string locale)
sets the documents language
Definition: MWAWContentListener.cxx:458
MWAWSection const & getSection() const
returns the actual section
Definition: MWAWContentListener.cxx:620
Definition: MWAWContentListener.hxx:71
MWAWContentListener(MWAWParserState &parserState, std::vector< MWAWPageSpan > const &pageList, WPXDocumentInterface *documentInterface)
constructor
Definition: MWAWContentListener.cxx:184