Main Page
Namespaces
Classes
Files
File List
File Members
WP1StylesListener.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 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 WP1STYLESLISTENER_H
29
#define WP1STYLESLISTENER_H
30
31
#include "
WP1Listener.h
"
32
#include "
WP1SubDocument.h
"
33
#include "
WPXStylesListener.h
"
34
#include <vector>
35
#include "
WPXPageSpan.h
"
36
#include "
WPXTable.h
"
37
38
class
WP1StylesListener
:
public
WP1Listener
,
protected
WPXStylesListener
39
{
40
public
:
41
WP1StylesListener
(std::list<WPXPageSpan> &pageList, std::vector<WP1SubDocument *> &subDocuments);
42
~WP1StylesListener
() {}
43
44
void
startDocument
() {}
45
void
startSubDocument
() {}
46
void
insertCharacter
(
unsigned
/* character */
)
47
{
48
if
(!
isUndoOn
())
m_currentPageHasContent
=
true
;
49
}
50
void
insertExtendedCharacter
(
unsigned
char
/* extendedCharacter */
)
51
{
52
if
(!
isUndoOn
())
m_currentPageHasContent
=
true
;
53
}
54
void
insertTab
()
55
{
56
if
(!
isUndoOn
())
m_currentPageHasContent
=
true
;
57
}
58
void
insertEOL
()
59
{
60
if
(!
isUndoOn
())
m_currentPageHasContent
=
true
;
61
}
62
void
insertBreak
(
unsigned
char
breakType);
63
void
insertNote
(
WPXNoteType
/* noteType */
,
WP1SubDocument
*
/* subDocument */
) {}
64
void
attributeChange
(
bool
/* isOn */
,
unsigned
char
/* attribute */
) {}
65
void
fontPointSize
(
unsigned
char
/* pointSize */
) {}
66
void
fontId
(
unsigned
short
/* id */
) {}
67
void
marginReset
(
unsigned
short
leftMargin,
unsigned
short
rightMargin);
68
void
topMarginSet
(
unsigned
short
topMargin);
69
void
bottomMarginSet
(
unsigned
short
bottomMargin);
70
void
leftIndent
(
unsigned
short
/* leftMarginOffset */
)
71
{
72
if
(!
isUndoOn
())
m_currentPageHasContent
=
true
;
73
}
74
void
leftRightIndent
(
unsigned
short
/* leftRightMarginOffset */
)
75
{
76
if
(!
isUndoOn
())
m_currentPageHasContent
=
true
;
77
}
78
void
leftMarginRelease
(
unsigned
short
/* release */
) {}
79
void
setTabs
(
const
std::vector<WPXTabStop> &
/* tabStops */
) {}
80
void
headerFooterGroup
(
unsigned
char
headerFooterDefinition,
WP1SubDocument
*subDocument);
81
void
suppressPageCharacteristics
(
unsigned
char
suppressCode);
82
void
justificationChange
(
unsigned
char
/* justification */
) {}
83
void
lineSpacingChange
(
unsigned
char
/* spacing */
) {}
84
void
flushRightOn
() {}
85
void
flushRightOff
() {}
86
void
centerOn
() {}
87
void
centerOff
() {}
88
void
endDocument
();
89
void
endSubDocument
();
90
void
insertPicture
(
unsigned
short
/* width */
,
unsigned
short
/* height */
,
const
librevenge::RVNGBinaryData &
/* binaryData */
) {}
91
92
protected
:
93
void
_handleSubDocument
(
const
WPXSubDocument
*subDocument,
WPXSubDocumentType
subDocumentType,
WPXTableList
tableList,
int
nextTableIndice = 0);
94
95
private
:
96
WPXPageSpan
m_currentPage
,
m_nextPage
;
97
std::vector<WP1SubDocument *> &
m_subDocuments
;
98
double
m_tempMarginLeft
,
m_tempMarginRight
;
99
bool
m_currentPageHasContent
;
100
bool
m_isSubDocument
;
101
std::list<WPXPageSpan>::iterator
m_pageListHardPageMark
;
102
};
103
104
#endif
/* WP1STYLESLISTENER_H */
105
/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
Generated for libwpd by
doxygen
1.8.4