WP5ContentListener.h
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2/* libwpd
3 * Version: MPL 2.0 / LGPLv2.1+
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * Major Contributor(s):
10 * Copyright (C) 2003 William Lachance (wrlach@gmail.com)
11 * Copyright (C) 2003 Marc Maurer (uwog@uwog.net)
12 * Copyright (C) 2005-2007 Fridrich Strba (fridrich.strba@bluewin.ch)
13 *
14 * For minor contributions see the git repository.
15 *
16 * Alternatively, the contents of this file may be used under the terms
17 * of the GNU Lesser General Public License Version 2.1 or later
18 * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
19 * applicable instead of those above.
20 *
21 * For further information visit http://libwpd.sourceforge.net
22 */
23
24/* "This product is not manufactured, approved, or supported by
25 * Corel Corporation or Corel Corporation Limited."
26 */
27
28#ifndef WP5CONTENTLISTENER_H
29#define WP5CONTENTLISTENER_H
30
31#include "WP5Listener.h"
32#include "WPXContentListener.h"
33#include "WP5SubDocument.h"
34#include "libwpd_internal.h"
35#include <memory>
36
48
50{
51public:
52 WP5ContentListener(std::list<WPXPageSpan> &pageList, librevenge::RVNGTextInterface *documentInterface);
53 ~WP5ContentListener() override;
54
55 void startDocument() override
56 {
58 }
63 void setFont(const librevenge::RVNGString &fontName, double fontSize) override;
64 void setTabs(const std::vector<WPXTabStop> &tabStops, unsigned short tabOffset) override;
65 void insertCharacter(unsigned character) override;
66 void insertTab(unsigned char tabType, double tabPosition) override;
67 void insertIndent(unsigned char indentType, double indentPosition) override;
68 void insertEOL() override;
69 void insertBreak(unsigned char breakType) override
70 {
72 }
73 void lineSpacingChange(double lineSpacing) override
74 {
76 }
77 void justificationChange(unsigned char justification) override
78 {
80 }
81 void characterColorChange(unsigned char red, unsigned char green, unsigned char blue) override;
82 void attributeChange(bool isOn, unsigned char attribute) override;
83 void pageMarginChange(unsigned char /* side */, unsigned short /* margin */) override {}
84 void pageFormChange(unsigned short /* length */, unsigned short /* width */, WPXFormOrientation /* orientation */) override {}
85 void marginChange(unsigned char side, unsigned short margin) override;
86 void paragraphMarginChange(unsigned char /* side */, signed short /* margin */) {}
87 void endDocument() override
88 {
90 }
91 void endSubDocument() override
92 {
94 }
95
96 void defineTable(unsigned char position, unsigned short leftOffset) override;
97 void addTableColumnDefinition(unsigned width, unsigned leftGutter, unsigned rightGutter,
98 unsigned attributes, unsigned char alignment) override;
99 void startTable() override;
100 void insertRow(unsigned short rowHeight, bool isMinimumHeight, bool isHeaderRow) override;
101 void insertCell(unsigned char colSpan, unsigned char rowSpan, unsigned char borderBits,
102 const RGBSColor *cellFgColor, const RGBSColor *cellBgColor,
103 const RGBSColor *cellBorderColor, WPXVerticalAlignment cellVerticalAlignment,
104 bool useCellAttributes, unsigned cellAttributes) override;
105 void endTable() override;
106
107 void insertNoteReference(const librevenge::RVNGString &noteReference) override;
108 void insertNote(WPXNoteType noteType, const WP5SubDocument *subDocument) override;
109 void headerFooterGroup(unsigned char headerFooterType, unsigned char occurrenceBits, const std::shared_ptr<WP5SubDocument> &subDocument) override;
110 void suppressPageCharacteristics(unsigned char /* suppressCode */) override {}
111
112 void setDefaultFont(const librevenge::RVNGString &fontName, double fontSize);
113
114 void boxOn(unsigned char positionAndType, unsigned char alignment, unsigned short width, unsigned short height, unsigned short x, unsigned short y) override;
115 void boxOff() override;
116 void insertGraphicsData(const librevenge::RVNGBinaryData *data) override;
117
118protected:
119 void _handleSubDocument(const WPXSubDocument *subDocument, WPXSubDocumentType subDocumentType, WPXTableList tableList, unsigned nextTableIndice = 0) override;
120
121 void _flushText() override;
122 void _changeList() override {}
123
124private:
127 std::unique_ptr<WP5ContentParsingState> m_parseState;
129 librevenge::RVNGString m_defaultFontName;
130};
131
132#endif /* WP5CONTENTLISTENER_H */
133/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
void setTabs(const std::vector< WPXTabStop > &tabStops, unsigned short tabOffset) override
Definition WP5ContentListener.cpp:506
double m_defaultFontSize
Definition WP5ContentListener.h:128
void suppressPageCharacteristics(unsigned char) override
Definition WP5ContentListener.h:110
void startTable() override
Definition WP5ContentListener.cpp:298
void insertEOL() override
Definition WP5ContentListener.cpp:225
void boxOn(unsigned char positionAndType, unsigned char alignment, unsigned short width, unsigned short height, unsigned short x, unsigned short y) override
Definition WP5ContentListener.cpp:605
void marginChange(unsigned char side, unsigned short margin) override
Definition WP5ContentListener.cpp:440
void addTableColumnDefinition(unsigned width, unsigned leftGutter, unsigned rightGutter, unsigned attributes, unsigned char alignment) override
Definition WP5ContentListener.cpp:273
void attributeChange(bool isOn, unsigned char attribute) override
Definition WP5ContentListener.cpp:370
void endDocument() override
Definition WP5ContentListener.h:87
void insertNoteReference(const librevenge::RVNGString &noteReference) override
Definition WP5ContentListener.cpp:516
void startDocument() override
Definition WP5ContentListener.h:55
void insertTab(unsigned char tabType, double tabPosition) override
Definition WP5ContentListener.cpp:72
void defineTable(unsigned char position, unsigned short leftOffset) override
Definition WP5ContentListener.cpp:238
void insertNote(WPXNoteType noteType, const WP5SubDocument *subDocument) override
Definition WP5ContentListener.cpp:524
void setDefaultFont(const librevenge::RVNGString &fontName, double fontSize)
Definition WP5ContentListener.cpp:599
void insertRow(unsigned short rowHeight, bool isMinimumHeight, bool isHeaderRow) override
Definition WP5ContentListener.cpp:319
void _changeList() override
Definition WP5ContentListener.h:122
std::unique_ptr< WP5ContentParsingState > m_parseState
Definition WP5ContentListener.h:127
~WP5ContentListener() override
Definition WP5ContentListener.cpp:55
void headerFooterGroup(unsigned char headerFooterType, unsigned char occurrenceBits, const std::shared_ptr< WP5SubDocument > &subDocument) override
Definition WP5ContentListener.cpp:594
void paragraphMarginChange(unsigned char, signed short)
Definition WP5ContentListener.h:86
void setFont(const librevenge::RVNGString &fontName, double fontSize) override
Definition WP5ContentListener.cpp:496
void justificationChange(unsigned char justification) override
Definition WP5ContentListener.h:77
void insertCharacter(unsigned character) override
Definition WP5ContentListener.cpp:64
librevenge::RVNGString m_defaultFontName
Definition WP5ContentListener.h:129
void characterColorChange(unsigned char red, unsigned char green, unsigned char blue) override
Definition WP5ContentListener.cpp:485
void _handleSubDocument(const WPXSubDocument *subDocument, WPXSubDocumentType subDocumentType, WPXTableList tableList, unsigned nextTableIndice=0) override
Definition WP5ContentListener.cpp:558
void insertCell(unsigned char colSpan, unsigned char rowSpan, unsigned char borderBits, const RGBSColor *cellFgColor, const RGBSColor *cellBgColor, const RGBSColor *cellBorderColor, WPXVerticalAlignment cellVerticalAlignment, bool useCellAttributes, unsigned cellAttributes) override
Definition WP5ContentListener.cpp:329
void endSubDocument() override
Definition WP5ContentListener.h:91
void insertIndent(unsigned char indentType, double indentPosition) override
Definition WP5ContentListener.cpp:167
void _flushText() override
Definition WP5ContentListener.cpp:823
WP5ContentListener(std::list< WPXPageSpan > &pageList, librevenge::RVNGTextInterface *documentInterface)
Definition WP5ContentListener.cpp:46
void pageFormChange(unsigned short, unsigned short, WPXFormOrientation) override
Definition WP5ContentListener.h:84
WP5ContentListener & operator=(const WP5ContentListener &)
void pageMarginChange(unsigned char, unsigned short) override
Definition WP5ContentListener.h:83
void insertGraphicsData(const librevenge::RVNGBinaryData *data) override
Definition WP5ContentListener.cpp:804
void boxOff() override
Definition WP5ContentListener.cpp:795
void lineSpacingChange(double lineSpacing) override
Definition WP5ContentListener.h:73
void endTable() override
Definition WP5ContentListener.cpp:352
void startSubDocument() override
Definition WP5ContentListener.h:59
WP5ContentListener(const WP5ContentListener &)
void insertBreak(unsigned char breakType) override
Definition WP5ContentListener.h:69
WP5Listener()
Definition WP5Listener.cpp:34
Definition WP5SubDocument.h:34
void lineSpacingChange(const double lineSpacing)
Definition WPXContentListener.cpp:1297
void endSubDocument()
Definition WPXContentListener.cpp:181
void endDocument()
Definition WPXContentListener.cpp:160
void insertBreak(const unsigned char breakType)
Definition WPXContentListener.cpp:1243
void startSubDocument()
Definition WPXContentListener.cpp:154
WPXContentListener(std::list< WPXPageSpan > &pageList, librevenge::RVNGTextInterface *documentInterface)
Definition WPXContentListener.cpp:127
void justificationChange(const unsigned char justification)
Definition WPXContentListener.cpp:1305
void startDocument()
Definition WPXContentListener.cpp:139
Definition WPXSubDocument.h:37
Definition WPXTableList.h:36
WPXFormOrientation
Definition libwpd_internal.h:105
WPXSubDocumentType
Definition libwpd_internal.h:111
WPXVerticalAlignment
Definition libwpd_internal.h:107
WPXNoteType
Definition libwpd_internal.h:93
Definition libwpd_internal.h:167
bool m_isFrameOpened
Definition WP5ContentListener.h:46
WP5ContentParsingState()
Definition WP5ContentListener.cpp:34
librevenge::RVNGString m_noteReference
Definition WP5ContentListener.h:42
~WP5ContentParsingState()
Definition WP5ContentListener.cpp:42
librevenge::RVNGString m_textBuffer
Definition WP5ContentListener.h:41
WPXTableList m_tableList
Definition WP5ContentListener.h:44

Generated for libwpd by doxygen 1.14.0