WP6ParagraphGroup.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) 2002 William Lachance (wrlach@gmail.com)
11  * Copyright (C) 2002 Marc Maurer (uwog@uwog.net)
12  *
13  * For minor contributions see the git repository.
14  *
15  * Alternatively, the contents of this file may be used under the terms
16  * of the GNU Lesser General Public License Version 2.1 or later
17  * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
18  * applicable instead of those above.
19  *
20  * For further information visit http://libwpd.sourceforge.net
21  */
22 
23 /* "This product is not manufactured, approved, or supported by
24  * Corel Corporation or Corel Corporation Limited."
25  */
26 
27 #ifndef WP6PARAGRAPHGROUP_H
28 #define WP6PARAGRAPHGROUP_H
29 
30 #include "WP6VariableLengthGroup.h"
31 #include "WP6FileStructure.h"
32 #include <vector>
33 
35 {
36 public:
37  WP6ParagraphGroup_LineSpacingSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption);
38  void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override;
39 
40 private:
41  double m_lineSpacing;
42 };
43 
45 {
46 public:
47  WP6ParagraphGroup_JustificationModeSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption);
48  void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override;
49 
50 private:
51  unsigned char m_justification;
52 };
53 
55 {
56 public:
57  WP6ParagraphGroup_SpacingAfterParagraphSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption, const unsigned short sizeNonDeletable);
58  void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override;
59 
60 private:
63  unsigned short m_sizeNonDeletable;
64 };
65 
67 {
68 public:
69  WP6ParagraphGroup_TabSetSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption);
71  void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override;
72 
73 private:
76  std::vector<bool> m_usePreWP9LeaderMethods;
77  std::vector<WPXTabStop> m_tabStops;
78 };
79 
81 {
82 public:
83  WP6ParagraphGroup_IndentFirstLineSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption);
84  void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override;
85 
86 private:
87  signed short m_firstLineOffset;
88 };
89 
91 {
92 public:
93  WP6ParagraphGroup_LeftMarginAdjustmentSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption);
94  void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override;
95 
96 private:
97  signed short m_leftMargin;
98 };
99 
101 {
102 public:
103  WP6ParagraphGroup_RightMarginAdjustmentSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption);
104  void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override;
105 
106 private:
107  signed short m_rightMargin;
108 };
109 
111 {
112 public:
113  WP6ParagraphGroup_OutlineDefineSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption);
114  void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override;
115 
116 private:
117  unsigned short m_outlineHash;
119  unsigned char m_tabBehaviourFlag;
120 };
121 
123 {
124 public:
125  WP6ParagraphGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption);
126  ~WP6ParagraphGroup() override;
127  void _readContents(librevenge::RVNGInputStream *input, WPXEncryption *encryption) override;
128  void parse(WP6Listener *listener) override;
129 private:
133 };
134 
135 #endif /* WP6PARAGRAPHGROUP_H */
136 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
WP6ParagraphGroup & operator=(const WP6ParagraphGroup &)
Definition: WP6Listener.h:40
Definition: WP6ParagraphGroup.h:34
Definition: WP6ParagraphGroup.h:44
WP6ParagraphGroup_IndentFirstLineSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption)
Definition: WP6ParagraphGroup.cpp:238
void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override
Definition: WP6ParagraphGroup.cpp:99
WP6ParagraphGroup_LineSpacingSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption)
Definition: WP6ParagraphGroup.cpp:88
WP6ParagraphGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption)
Definition: WP6ParagraphGroup.cpp:34
std::vector< bool > m_usePreWP9LeaderMethods
Definition: WP6ParagraphGroup.h:76
void parse(WP6Listener *listener) override
Definition: WP6ParagraphGroup.cpp:80
void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override
Definition: WP6ParagraphGroup.cpp:224
~WP6ParagraphGroup_TabSetSubGroup() override
Definition: WP6ParagraphGroup.cpp:220
Definition: WP6ParagraphGroup.h:66
WP6ParagraphGroup_OutlineDefineSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption)
Definition: WP6ParagraphGroup.cpp:320
void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override
Definition: WP6ParagraphGroup.cpp:245
Definition: WP6VariableLengthGroup.h:33
Definition: WP6ParagraphGroup.h:100
void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override
Definition: WP6ParagraphGroup.cpp:286
unsigned char m_numberingMethods[WP6_NUM_LIST_LEVELS]
Definition: WP6ParagraphGroup.h:118
double m_tabAdjustValue
Definition: WP6ParagraphGroup.h:75
WP6ParagraphGroup_TabSetSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption)
Definition: WP6ParagraphGroup.cpp:106
double m_spacingAfterParagraphRelative
Definition: WP6ParagraphGroup.h:62
unsigned char m_tabBehaviourFlag
Definition: WP6ParagraphGroup.h:119
std::vector< WPXTabStop > m_tabStops
Definition: WP6ParagraphGroup.h:77
signed short m_rightMargin
Definition: WP6ParagraphGroup.h:107
signed short m_firstLineOffset
Definition: WP6ParagraphGroup.h:87
void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override
Definition: WP6ParagraphGroup.cpp:273
void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override
Definition: WP6ParagraphGroup.cpp:259
signed short m_leftMargin
Definition: WP6ParagraphGroup.h:97
~WP6ParagraphGroup() override
Definition: WP6ParagraphGroup.cpp:41
unsigned short m_sizeNonDeletable
Definition: WP6ParagraphGroup.h:63
Definition: WP6ParagraphGroup.h:110
WP6ParagraphGroup_JustificationModeSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption)
Definition: WP6ParagraphGroup.cpp:280
unsigned short m_outlineHash
Definition: WP6ParagraphGroup.h:117
WP6ParagraphGroup_SpacingAfterParagraphSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption, const unsigned short sizeNonDeletable)
Definition: WP6ParagraphGroup.cpp:292
#define WP6_NUM_LIST_LEVELS
Definition: WP6FileStructure.h:36
WP6ParagraphGroup_LeftMarginAdjustmentSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption)
Definition: WP6ParagraphGroup.cpp:252
Definition: WPXEncryption.h:35
void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override
Definition: WP6ParagraphGroup.cpp:336
Definition: WP6ParagraphGroup.h:122
void parse(WP6Listener *listener, const unsigned char numPrefixIDs, unsigned short const *prefixIDs) const override
Definition: WP6ParagraphGroup.cpp:312
bool m_isRelative
Definition: WP6ParagraphGroup.h:74
WP6ParagraphGroup_RightMarginAdjustmentSubGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption)
Definition: WP6ParagraphGroup.cpp:266
Definition: WP6ParagraphGroup.h:54
WP6VariableLengthGroup_SubGroup * m_subGroupData
Definition: WP6ParagraphGroup.h:132
Definition: WP6ParagraphGroup.h:90
void _readContents(librevenge::RVNGInputStream *input, WPXEncryption *encryption) override
Definition: WP6ParagraphGroup.cpp:47
double m_lineSpacing
Definition: WP6ParagraphGroup.h:41
unsigned char m_justification
Definition: WP6ParagraphGroup.h:51
Definition: WP6VariableLengthGroup.h:40
double m_spacingAfterParagraphAbsolute
Definition: WP6ParagraphGroup.h:61
Definition: WP6ParagraphGroup.h:80

Generated for libwpd by doxygen 1.8.14