MoreTextInternal::Paragraph Struct Referencefinal

Internal: the paragraph of a MoreText. More...

Inheritance diagram for MoreTextInternal::Paragraph:
MWAWParagraph

Public Member Functions

 Paragraph ()
 constructor More...
 
 Paragraph (Paragraph const &)=default
 
Paragraphoperator= (Paragraph const &)=default
 
 ~Paragraph () final
 destructor More...
 
void setLeftMargin (double margin, bool fromParent)
 set the left margin in inch More...
 
void setRightMargin (double margin, bool fromParent)
 set the right margin in inch More...
 
void updateToFinalState (MWAWParagraph const &parent, int level, MWAWListManager &listManager)
 update the paragraph to obtain the final paragraph More...
 
- Public Member Functions inherited from MWAWParagraph
 MWAWParagraph ()
 constructor More...
 
 MWAWParagraph (MWAWParagraph const &)=default
 
MWAWParagraphoperator= (MWAWParagraph const &)=default
 
MWAWParagraphoperator= (MWAWParagraph &&)=default
 
virtual ~MWAWParagraph ()
 destructor More...
 
bool operator== (MWAWParagraph const &p) const
 operator== More...
 
bool operator!= (MWAWParagraph const &p) const
 operator!= More...
 
int cmp (MWAWParagraph const &p) const
 a comparison function More...
 
double getMarginsWidth () const
 return the paragraph margin width (in inches) More...
 
bool hasBorders () const
 check if the paragraph has some borders More...
 
bool hasDifferentBorders () const
 check if the paragraph has different borders More...
 
void resizeBorders (size_t newSize)
 a function used to resize the borders list ( adding empty borders if needed ) More...
 
void setInterline (double value, librevenge::RVNGUnit unit, LineSpacingType type=Fixed)
 set the interline More...
 
void addTo (librevenge::RVNGPropertyList &propList, bool inTable) const
 add to the propList More...
 
void insert (MWAWParagraph const &para)
 insert the set values of para in the actual paragraph More...
 

Public Attributes

double m_marginsFromParent [2]
 the left and right margins from parent in inches More...
 
int m_listType
 the list type (0: none, 1: leader, ...) More...
 
MWAWListLevel m_customListLevel
 a custom list level ( only defined if m_listType>=0xb) More...
 
bool m_pageBreak
 true if we need to add a page break before More...
 
bool m_keepOutlineTogether
 true if we need to keep outline together More...
 
- Public Attributes inherited from MWAWParagraph
MWAWVariable< double > m_margins [3]
 the margins More...
 
MWAWVariable< librevenge::RVNGUnit > m_marginsUnit
 the margins INCH, ... More...
 
MWAWVariable< double > m_spacings [3]
 the line spacing More...
 
MWAWVariable< librevenge::RVNGUnit > m_spacingsInterlineUnit
 the interline unit PERCENT or INCH, ... More...
 
MWAWVariable< LineSpacingTypem_spacingsInterlineType
 the interline type: fixed, atLeast, ... More...
 
MWAWVariable< std::vector< MWAWTabStop > > m_tabs
 the tabulations More...
 
MWAWVariable< bool > m_tabsRelativeToLeftMargin
 true if the tabs are relative to left margin, false if there are relative to the page margin (default) More...
 
MWAWVariable< Justificationm_justify
 the justification More...
 
MWAWVariable< int > m_breakStatus
 a list of bits: 0x1 (unbreakable), 0x2 (do not break after) More...
 
MWAWVariable< libmwaw::WritingModem_writingMode
 the writing mode More...
 
MWAWVariable< int > m_listLevelIndex
 the actual level index More...
 
MWAWVariable< int > m_listId
 the list id (if know ) More...
 
MWAWVariable< int > m_listStartValue
 the list start value (if set ) More...
 
MWAWVariable< MWAWListLevelm_listLevel
 the actual level More...
 
MWAWVariable< MWAWColorm_backgroundColor
 the background color More...
 
std::vector< MWAWVariable< MWAWBorder > > m_borders
 list of border ( order MWAWBorder::Pos) More...
 
MWAWVariable< int > m_dropNumCharacters
 the drop number character More...
 
MWAWVariable< int > m_dropNumLines
 the drop number of lines More...
 
std::string m_styleName
 the style name More...
 
std::string m_extra
 a string to store some errors More...
 

Additional Inherited Members

- Public Types inherited from MWAWParagraph
enum  { NoBreakBit = 0x1, NoBreakWithNextBit =0x2 }
 some bit use to defined the break status More...
 
enum  Justification {
  JustificationLeft, JustificationFull, JustificationCenter, JustificationRight,
  JustificationFullAllLines
}
 an enum used to defined the paragraph justification: left, center, right, full ... More...
 
enum  LineSpacingType { Fixed, AtLeast }
 the line spacing type: fixed or at least More...
 

Detailed Description

Internal: the paragraph of a MoreText.

Constructor & Destructor Documentation

◆ Paragraph() [1/2]

MoreTextInternal::Paragraph::Paragraph ( )
inline

constructor

◆ Paragraph() [2/2]

MoreTextInternal::Paragraph::Paragraph ( Paragraph const &  )
default

◆ ~Paragraph()

MoreTextInternal::Paragraph::~Paragraph ( )
final

destructor

Member Function Documentation

◆ operator=()

Paragraph& MoreTextInternal::Paragraph::operator= ( Paragraph const &  )
default

◆ setLeftMargin()

void MoreTextInternal::Paragraph::setLeftMargin ( double  margin,
bool  fromParent 
)
inline

set the left margin in inch

◆ setRightMargin()

void MoreTextInternal::Paragraph::setRightMargin ( double  margin,
bool  fromParent 
)
inline

set the right margin in inch

◆ updateToFinalState()

void MoreTextInternal::Paragraph::updateToFinalState ( MWAWParagraph const &  parent,
int  level,
MWAWListManager listManager 
)
inline

update the paragraph to obtain the final paragraph

Referenced by MoreText::sendTopic().

Member Data Documentation

◆ m_customListLevel

MWAWListLevel MoreTextInternal::Paragraph::m_customListLevel

a custom list level ( only defined if m_listType>=0xb)

Referenced by updateToFinalState().

◆ m_keepOutlineTogether

bool MoreTextInternal::Paragraph::m_keepOutlineTogether

true if we need to keep outline together

◆ m_listType

int MoreTextInternal::Paragraph::m_listType

the list type (0: none, 1: leader, ...)

Referenced by MoreTextInternal::Outline::Outline(), MoreText::sendTopic(), and updateToFinalState().

◆ m_marginsFromParent

double MoreTextInternal::Paragraph::m_marginsFromParent[2]

the left and right margins from parent in inches

Referenced by Paragraph(), setLeftMargin(), setRightMargin(), and updateToFinalState().

◆ m_pageBreak

bool MoreTextInternal::Paragraph::m_pageBreak

true if we need to add a page break before


The documentation for this struct was generated from the following file:

Generated for libmwaw by doxygen 1.8.14