Verovio
Source code documentation
textlayoutelement.h
1 // Name: textlayoutelement.h
3 // Author: Laurent Pugin
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_TEXT_LAYOUT_ELEMENT_H__
9 #define __VRV_TEXT_LAYOUT_ELEMENT_H__
10 
11 #include "atts_shared.h"
12 #include "object.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // TextLayoutElement
18 //----------------------------------------------------------------------------
19 
24 class TextLayoutElement : public Object, public ObjectListInterface, public AttTyped {
25 public:
30  TextLayoutElement(ClassId classId);
32  virtual ~TextLayoutElement();
33  void Reset() override;
35 
39  bool IsSupportedChild(ClassId classId) override;
42 
46  void ResetCells();
48  void AppendTextToCell(int index, TextElement *text);
50 
54  void ResetDrawingScaling();
57 
62  bool AdjustDrawingScaling(int width);
63 
69 
73 
75  virtual int GetTotalHeight(const Doc *doc) const = 0;
77  int GetContentHeight() const;
79  int GetRowHeight(int row) const;
81  int GetColHeight(int col) const;
83  int GetCellHeight(int cell) const;
84  // Width including margins */
85  virtual int GetTotalWidth(const Doc *doc) const = 0;
87  int GetContentWidth() const;
89  int GetRowWidth(int col) const;
91  int GetColWidth(int col) const;
93  int GetCellWidth(int cell) const;
94 
98  int GetAlignmentPos(data_HORIZONTALALIGNMENT h, data_VERTICALALIGNMENT v) const;
99 
100  //----------//
101  // Functors //
102  //----------//
103 
107  FunctorCode Accept(Functor &functor) override;
109  FunctorCode Accept(ConstFunctor &functor) const override;
110  FunctorCode AcceptEnd(Functor &functor) override;
111  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
113 
114 protected:
119  void FilterList(ListOfConstObjects &childList) const override;
120 
121 private:
122  //
123 public:
124  //
125 private:
130  ArrayOfTextElements m_cells[9];
131 
135  int m_drawingScalingPercent[3];
136 };
137 
138 } // namespace vrv
139 
140 #endif
vrv::TextLayoutElement::AdjustDrawingScaling
bool AdjustDrawingScaling(int width)
Scale the content of the running element.
vrv::TextLayoutElement::GetContentWidth
int GetContentWidth() const
Content width.
vrv::TextLayoutElement::GetColWidth
int GetColWidth(int col) const
Col from 0 to 2.
vrv::TextLayoutElement::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::TextLayoutElement::FilterList
void FilterList(ListOfConstObjects &childList) const override
Filter the list for a specific class.
vrv::TextLayoutElement::GetCellWidth
int GetCellWidth(int cell) const
Row from 0 to 8.
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::TextElement
Definition: textelement.h:22
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::TextLayoutElement::GetColHeight
int GetColHeight(int col) const
Col from 0 to 2.
vrv::TextLayoutElement::GetContentHeight
int GetContentHeight() const
Content height.
vrv::TextLayoutElement::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Base method for checking if a child can be added.
vrv::TextLayoutElement::GetRowWidth
int GetRowWidth(int col) const
Row from 0 to 2.
vrv::TextLayoutElement::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::TextLayoutElement::GetTotalHeight
virtual int GetTotalHeight(const Doc *doc) const =0
Height including margins.
vrv::TextLayoutElement::GetCellHeight
int GetCellHeight(int cell) const
Row from 0 to 8.
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::ObjectListInterface
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:873
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::TextLayoutElement::AdjustRunningElementYPos
bool AdjustRunningElementYPos()
Adjust the postition of the content of the running element.
vrv::TextLayoutElement::GetAlignmentPos
int GetAlignmentPos(data_HORIZONTALALIGNMENT h, data_VERTICALALIGNMENT v) const
Calculate the cell position.
vrv::TextLayoutElement
This class represents a text element featuring horizontal and vertical layout.
Definition: textlayoutelement.h:24
vrv::TextLayoutElement::GetRowHeight
int GetRowHeight(int row) const
Row from 0 to 2.