WP5StylesListener.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) 2004 Marc Maurer (uwog@uwog.net)
12 * Copyright (C) 2006-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 WP5STYLESLISTENER_H
29#define WP5STYLESLISTENER_H
30
31#include "WP5Listener.h"
32#include "WPXStylesListener.h"
33#include <list>
34#include "WPXPageSpan.h"
35#include "WPXTable.h"
36#include "WP5SubDocument.h"
37#include "WPXTableList.h"
38
40{
41public:
42 WP5StylesListener(std::list<WPXPageSpan> &pageList, WPXTableList tableList);
43
44 void startDocument() override {}
45 void startSubDocument() override {}
46 void setFont(const librevenge::RVNGString & /* fontName */, double /* fontSize */) override {}
47 void setTabs(const std::vector<WPXTabStop> & /* tabStops */, unsigned short /* tabOffset */) override {}
48 void insertCharacter(unsigned /* character */) override
49 {
50 /*if (!isUndoOn())*/ m_currentPageHasContent = true;
51 }
52 void insertTab(unsigned char /* tabType */, double /* tabPosition */) override
53 {
54 /*if (!isUndoOn())*/ m_currentPageHasContent = true;
55 }
56 void insertIndent(unsigned char /* indentType */, double /* indentPosition */) override
57 {
58 /*if (!isUndoOn())*/ m_currentPageHasContent = true;
59 }
60 void characterColorChange(unsigned char /* red */, unsigned char /* green */, unsigned char /* blue */) override {}
61 void insertEOL() override
62 {
63 /*if (!isUndoOn())*/ m_currentPageHasContent = true;
64 }
65 void insertBreak(unsigned char breakType) override;
66 void attributeChange(bool /* isOn */, unsigned char /* attribute */) override {}
67 void lineSpacingChange(double /* lineSpacing */) override {}
68 void justificationChange(unsigned char /* justification */) override {}
69 void pageMarginChange(unsigned char side, unsigned short margin) override;
70 void pageFormChange(unsigned short length, unsigned short width, WPXFormOrientation orientation) override;
71 void marginChange(unsigned char side, unsigned short margin) override;
72 void endDocument() override;
73 void endSubDocument() override;
74
75 void defineTable(unsigned char /* position */, unsigned short /* leftOffset */) override {}
76 void addTableColumnDefinition(unsigned /* width */, unsigned /* leftGutter */, unsigned /* rightGutter */,
77 unsigned /* attributes */, unsigned char /* alignment */) override {}
78 void startTable() override;
79 void insertRow(unsigned short rowHeight, bool isMinimumHeight, bool isHeaderRow) override;
80 void insertCell(unsigned char colSpan, unsigned char rowSpan, unsigned char borderBits,
81 const RGBSColor *cellFgColor, const RGBSColor *cellBgColor,
82 const RGBSColor *cellBorderColor, WPXVerticalAlignment cellVerticalAlignment,
83 bool useCellAttributes, unsigned cellAttributes) override;
84 void endTable() override {}
85
86 void insertNoteReference(const librevenge::RVNGString & /* noteReference */) override {}
87 void insertNote(WPXNoteType /* noteType */, const WP5SubDocument * /* subDocument */) override {}
88 void headerFooterGroup(unsigned char headerFooterType, unsigned char occurrenceBits, const std::shared_ptr<WP5SubDocument> &subDocument) override;
89 void suppressPageCharacteristics(unsigned char suppressCode) override;
90
91 void boxOn(unsigned char /* positionAndType */, unsigned char /* alignment */, unsigned short /* width */, unsigned short /* height */, unsigned short /* x */, unsigned short /* y */) override {}
92 void boxOff() override {}
93 void insertGraphicsData(const librevenge::RVNGBinaryData * /* data */) override {}
94
95protected:
96 void _handleSubDocument(const WPXSubDocument *subDocument, WPXSubDocumentType subDocumentType, WPXTableList tableList, int nextTableIndice = 0);
97
98private:
102
104 std::shared_ptr<WPXTable> m_currentTable;
108 std::list<WPXPageSpan>::iterator m_pageListHardPageMark;
109};
110
111#endif /* WP5STYLESLISTENER_H */
112/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
WP5Listener()
Definition WP5Listener.cpp:34
void startTable() override
Definition WP5StylesListener.cpp:259
void headerFooterGroup(unsigned char headerFooterType, unsigned char occurrenceBits, const std::shared_ptr< WP5SubDocument > &subDocument) override
Definition WP5StylesListener.cpp:198
WP5StylesListener(std::list< WPXPageSpan > &pageList, WPXTableList tableList)
Definition WP5StylesListener.cpp:35
bool m_currentPageHasContent
Definition WP5StylesListener.h:106
WPXPageSpan m_nextPage
Definition WP5StylesListener.h:101
void endSubDocument() override
Definition WP5StylesListener.cpp:55
WP5StylesListener & operator=(const WP5StylesListener &)
void _handleSubDocument(const WPXSubDocument *subDocument, WPXSubDocumentType subDocumentType, WPXTableList tableList, int nextTableIndice=0)
Definition WP5StylesListener.cpp:294
void insertIndent(unsigned char, double) override
Definition WP5StylesListener.h:56
void insertBreak(unsigned char breakType) override
Definition WP5StylesListener.cpp:60
void boxOn(unsigned char, unsigned char, unsigned short, unsigned short, unsigned short, unsigned short) override
Definition WP5StylesListener.h:91
void startDocument() override
Definition WP5StylesListener.h:44
void insertGraphicsData(const librevenge::RVNGBinaryData *) override
Definition WP5StylesListener.h:93
void setFont(const librevenge::RVNGString &, double) override
Definition WP5StylesListener.h:46
std::list< WPXPageSpan >::iterator m_pageListHardPageMark
Definition WP5StylesListener.h:108
void pageFormChange(unsigned short length, unsigned short width, WPXFormOrientation orientation) override
Definition WP5StylesListener.cpp:135
void insertRow(unsigned short rowHeight, bool isMinimumHeight, bool isHeaderRow) override
Definition WP5StylesListener.cpp:269
WPXPageSpan m_currentPage
Definition WP5StylesListener.h:101
double m_tempMarginLeft
Definition WP5StylesListener.h:105
void endDocument() override
Definition WP5StylesListener.cpp:50
void startSubDocument() override
Definition WP5StylesListener.h:45
void endTable() override
Definition WP5StylesListener.h:84
WP5StylesListener(const WP5StylesListener &)
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 WP5StylesListener.cpp:280
void characterColorChange(unsigned char, unsigned char, unsigned char) override
Definition WP5StylesListener.h:60
void insertCharacter(unsigned) override
Definition WP5StylesListener.h:48
void insertEOL() override
Definition WP5StylesListener.h:61
void justificationChange(unsigned char) override
Definition WP5StylesListener.h:68
std::shared_ptr< WPXTable > m_currentTable
Definition WP5StylesListener.h:104
void addTableColumnDefinition(unsigned, unsigned, unsigned, unsigned, unsigned char) override
Definition WP5StylesListener.h:76
void setTabs(const std::vector< WPXTabStop > &, unsigned short) override
Definition WP5StylesListener.h:47
void lineSpacingChange(double) override
Definition WP5StylesListener.h:67
WPXTableList m_tableList
Definition WP5StylesListener.h:103
void insertTab(unsigned char, double) override
Definition WP5StylesListener.h:52
void insertNoteReference(const librevenge::RVNGString &) override
Definition WP5StylesListener.h:86
void pageMarginChange(unsigned char side, unsigned short margin) override
Definition WP5StylesListener.cpp:116
void attributeChange(bool, unsigned char) override
Definition WP5StylesListener.h:66
double m_tempMarginRight
Definition WP5StylesListener.h:105
void boxOff() override
Definition WP5StylesListener.h:92
bool m_isSubDocument
Definition WP5StylesListener.h:107
void defineTable(unsigned char, unsigned short) override
Definition WP5StylesListener.h:75
void marginChange(unsigned char side, unsigned short margin) override
Definition WP5StylesListener.cpp:151
void insertNote(WPXNoteType, const WP5SubDocument *) override
Definition WP5StylesListener.h:87
void suppressPageCharacteristics(unsigned char suppressCode) override
Definition WP5StylesListener.cpp:243
Definition WP5SubDocument.h:34
Definition WPXPageSpan.h:43
WPXStylesListener(std::list< WPXPageSpan > &pageList)
Definition WPXStylesListener.cpp:31
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

Generated for libwpd by doxygen 1.14.0