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 <vector>
34 #include <list>
35 #include "WPXPageSpan.h"
36 #include "WPXTable.h"
37 #include "WP5SubDocument.h"
38 
40 {
41 public:
42  WP5StylesListener(std::list<WPXPageSpan> &pageList, WPXTableList tableList, std::vector<WP5SubDocument *> &subDocuments);
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, 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 
95 protected:
96  void _handleSubDocument(const WPXSubDocument *subDocument, WPXSubDocumentType subDocumentType, WPXTableList tableList, int nextTableIndice = 0);
97 
98 private:
102 
108  std::vector<WP5SubDocument *> &m_subDocuments;
109  std::list<WPXPageSpan>::iterator m_pageListHardPageMark;
110 };
111 
112 #endif /* WP5STYLESLISTENER_H */
113 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
Definition: WP5SubDocument.h:33
void boxOn(unsigned char, unsigned char, unsigned short, unsigned short, unsigned short, unsigned short) override
Definition: WP5StylesListener.h:91
void lineSpacingChange(double) override
Definition: WP5StylesListener.h:67
Definition: WP5Listener.h:39
void suppressPageCharacteristics(unsigned char suppressCode) override
Definition: WP5StylesListener.cpp:247
Definition: WPXTable.h:49
WPXTable * m_currentTable
Definition: WP5StylesListener.h:104
void boxOff() override
Definition: WP5StylesListener.h:92
WPXPageSpan m_nextPage
Definition: WP5StylesListener.h:101
void _handleSubDocument(const WPXSubDocument *subDocument, WPXSubDocumentType subDocumentType, WPXTableList tableList, int nextTableIndice=0)
Definition: WP5StylesListener.cpp:298
void characterColorChange(unsigned char, unsigned char, unsigned char) override
Definition: WP5StylesListener.h:60
bool m_isSubDocument
Definition: WP5StylesListener.h:107
WP5StylesListener & operator=(const WP5StylesListener &)
std::vector< WP5SubDocument * > & m_subDocuments
Definition: WP5StylesListener.h:108
void insertNote(WPXNoteType, const WP5SubDocument *) override
Definition: WP5StylesListener.h:87
std::list< WPXPageSpan >::iterator m_pageListHardPageMark
Definition: WP5StylesListener.h:109
void attributeChange(bool, unsigned char) override
Definition: WP5StylesListener.h:66
void endTable() override
Definition: WP5StylesListener.h:84
WPXSubDocumentType
Definition: libwpd_internal.h:111
WPXTableList m_tableList
Definition: WP5StylesListener.h:103
void insertGraphicsData(const librevenge::RVNGBinaryData *) override
Definition: WP5StylesListener.h:93
void justificationChange(unsigned char) override
Definition: WP5StylesListener.h:68
void endSubDocument() override
Definition: WP5StylesListener.cpp:56
WP5StylesListener(std::list< WPXPageSpan > &pageList, WPXTableList tableList, std::vector< WP5SubDocument *> &subDocuments)
Definition: WP5StylesListener.cpp:35
Definition: WPXTable.h:79
void startTable() override
Definition: WP5StylesListener.cpp:263
void insertCharacter(unsigned) override
Definition: WP5StylesListener.h:48
void setTabs(const std::vector< WPXTabStop > &, unsigned short) override
Definition: WP5StylesListener.h:47
WPXFormOrientation
Definition: libwpd_internal.h:105
WPXPageSpan m_currentPage
Definition: WP5StylesListener.h:101
Definition: WPXSubDocument.h:34
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:284
void insertEOL() override
Definition: WP5StylesListener.h:61
void startSubDocument() override
Definition: WP5StylesListener.h:45
WPXVerticalAlignment
Definition: libwpd_internal.h:107
void pageMarginChange(unsigned char side, unsigned short margin) override
Definition: WP5StylesListener.cpp:117
void endDocument() override
Definition: WP5StylesListener.cpp:51
void insertIndent(unsigned char, double) override
Definition: WP5StylesListener.h:56
Definition: libwpd_internal.h:166
void startDocument() override
Definition: WP5StylesListener.h:44
Definition: WPXPageSpan.h:77
void defineTable(unsigned char, unsigned short) override
Definition: WP5StylesListener.h:75
bool m_currentPageHasContent
Definition: WP5StylesListener.h:106
void pageFormChange(unsigned short length, unsigned short width, WPXFormOrientation orientation) override
Definition: WP5StylesListener.cpp:136
void marginChange(unsigned char side, unsigned short margin) override
Definition: WP5StylesListener.cpp:152
double m_tempMarginRight
Definition: WP5StylesListener.h:105
void headerFooterGroup(unsigned char headerFooterType, unsigned char occurrenceBits, WP5SubDocument *subDocument) override
Definition: WP5StylesListener.cpp:199
void insertNoteReference(const librevenge::RVNGString &) override
Definition: WP5StylesListener.h:86
Definition: WPXStylesListener.h:33
Definition: WP5StylesListener.h:39
void addTableColumnDefinition(unsigned, unsigned, unsigned, unsigned, unsigned char) override
Definition: WP5StylesListener.h:76
double m_tempMarginLeft
Definition: WP5StylesListener.h:105
void insertRow(unsigned short rowHeight, bool isMinimumHeight, bool isHeaderRow) override
Definition: WP5StylesListener.cpp:273
void insertTab(unsigned char, double) override
Definition: WP5StylesListener.h:52
void setFont(const librevenge::RVNGString &, double) override
Definition: WP5StylesListener.h:46
WPXNoteType
Definition: libwpd_internal.h:93
void insertBreak(unsigned char breakType) override
Definition: WP5StylesListener.cpp:61

Generated for libwpd by doxygen 1.8.14