WPSParagraph.h
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2/* libwps
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) 2009, 2011 Alonso Laurent (alonso@loria.fr)
11 * Copyright (C) 2006, 2007 Andrew Ziem
12 * Copyright (C) 2004-2006 Fridrich Strba (fridrich.strba@bluewin.ch)
13 * Copyright (C) 2004 Marc Maurer (uwog@uwog.net)
14 * Copyright (C) 2003-2005 William Lachance (william.lachance@sympatico.ca)
15 *
16 * For minor contributions see the git repository.
17 *
18 * Alternatively, the contents of this file may be used under the terms
19 * of the GNU Lesser General Public License Version 2.1 or later
20 * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
21 * applicable instead of those above.
22 *
23 * For further information visit http://libwps.sourceforge.net
24 */
25
26#ifndef WPS_PARAGRAPH
27# define WPS_PARAGRAPH
28
29#include <iostream>
30
31#include <vector>
32
33#include "libwps_internal.h"
34
35#include "WPSList.h"
36
38{
40 explicit WPSTabStop(double position = 0.0, Alignment alignment = LEFT, uint16_t leaderCharacter='\0', uint8_t leaderNumSpaces = 0)
41 : m_position(position)
42 , m_alignment(alignment)
43 , m_leaderCharacter(leaderCharacter)
44 , m_leaderNumSpaces(leaderNumSpaces)
45 {
46 }
47 void addTo(librevenge::RVNGPropertyListVector &propList, double decalX=0.0) const;
49 friend std::ostream &operator<<(std::ostream &o, WPSTabStop const &ft);
50 double m_position;
54};
55
58{
62
65 : m_spacingsInterlineUnit(librevenge::RVNG_PERCENT)
67 , m_tabs()
68 , m_justify(libwps::JustificationLeft)
69 , m_breakStatus(0)
71 , m_listLevel()
72 , m_backgroundColor(WPSColor::white())
73 , m_border(0)
75 , m_extra("")
76 {
77 for (int i = 0; i < 3; i++) m_margins[i] = m_spacings[i] = 0.0;
78 m_spacings[0] = 1.0; // interline normal
79 }
80 WPSParagraph(WPSParagraph const &)=default;
82 // destructor
83 virtual ~WPSParagraph();
85 void addTo(librevenge::RVNGPropertyList &propList, bool inTable) const;
87 void setInterline(double value, librevenge::RVNGUnit unit, LineSpacingType type=Fixed)
88 {
89 m_spacings[0]=value;
92 }
93
94 friend std::ostream &operator<<(std::ostream &o, WPSParagraph const &ft);
95
101 double m_margins[3]; // 0: first line left, 1: left, 2: right
107 double m_spacings[3]; // 0: interline, 1: before, 2: after
109 librevenge::RVNGUnit m_spacingsInterlineUnit;
113 std::vector<WPSTabStop> m_tabs;
114
118 int m_breakStatus; // BITS: 1: unbreakable, 2: dont break after
119
124
127
132
134 std::string m_extra;
135};
136#endif
137/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
Definition libwps_internal.cpp:39
Justification
Definition libwps_internal.h:249
a border list
Definition libwps_internal.h:395
the class to store a color
Definition libwps_internal.h:281
small structure to keep information about a level
Definition WPSList.h:41
class to store the paragraph properties
Definition WPSParagraph.h:58
libwps::Justification m_justify
the justification
Definition WPSParagraph.h:116
int m_listLevelIndex
the actual level index
Definition WPSParagraph.h:121
WPSParagraph(WPSParagraph const &)=default
WPSList::Level ListLevel
Definition WPSParagraph.h:59
ListLevel m_listLevel
the actual level
Definition WPSParagraph.h:123
WPSParagraph & operator=(WPSParagraph const &)=default
std::vector< WPSTabStop > m_tabs
the tabulations
Definition WPSParagraph.h:113
friend std::ostream & operator<<(std::ostream &o, WPSParagraph const &ft)
operator <<
Definition WPSParagraph.cpp:110
double m_margins[3]
the margins
Definition WPSParagraph.h:101
LineSpacingType m_spacingsInterlineType
the interline type: fixed, atLeast, ...
Definition WPSParagraph.h:111
std::string m_extra
a string to store some errors
Definition WPSParagraph.h:134
virtual ~WPSParagraph()
Definition WPSParagraph.cpp:189
WPSBorder m_borderStyle
the border style
Definition WPSParagraph.h:131
int m_breakStatus
a list of bits: 0x1 (unbreakable), 0x2 (do not break after)
Definition WPSParagraph.h:118
WPSParagraph()
constructor
Definition WPSParagraph.h:64
LineSpacingType
the line spacing type: fixed or at least
Definition WPSParagraph.h:61
@ Fixed
Definition WPSParagraph.h:61
@ AtLeast
Definition WPSParagraph.h:61
void addTo(librevenge::RVNGPropertyList &propList, bool inTable) const
add to the propList
Definition WPSParagraph.cpp:193
int m_border
list of bits to indicated a border 1: LeftBorderBit, 2: RightBorderBit, ...
Definition WPSParagraph.h:129
double m_spacings[3]
the line spacing
Definition WPSParagraph.h:107
void setInterline(double value, librevenge::RVNGUnit unit, LineSpacingType type=Fixed)
set the interline
Definition WPSParagraph.h:87
WPSColor m_backgroundColor
the background color
Definition WPSParagraph.h:126
librevenge::RVNGUnit m_spacingsInterlineUnit
the interline unit PERCENT or INCH, ...
Definition WPSParagraph.h:109
Definition WPSParagraph.h:38
Alignment
Definition WPSParagraph.h:39
@ RIGHT
Definition WPSParagraph.h:39
@ CENTER
Definition WPSParagraph.h:39
@ BAR
Definition WPSParagraph.h:39
@ DECIMAL
Definition WPSParagraph.h:39
@ LEFT
Definition WPSParagraph.h:39
void addTo(librevenge::RVNGPropertyListVector &propList, double decalX=0.0) const
Definition WPSParagraph.cpp:37
double m_position
Definition WPSParagraph.h:50
Alignment m_alignment
Definition WPSParagraph.h:51
uint16_t m_leaderCharacter
Definition WPSParagraph.h:52
uint8_t m_leaderNumSpaces
Definition WPSParagraph.h:53
friend std::ostream & operator<<(std::ostream &o, WPSTabStop const &ft)
operator <<
Definition WPSParagraph.cpp:79
WPSTabStop(double position=0.0, Alignment alignment=LEFT, uint16_t leaderCharacter='\0', uint8_t leaderNumSpaces=0)
Definition WPSParagraph.h:40

Generated on Sat Jul 19 2025 05:24:40 for libwps by doxygen 1.14.0