Verovio
Source code documentation
justifyfunctor.h
1 // Name: justifyfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_JUSTIFYFUNCTOR_H__
9 #define __VRV_JUSTIFYFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // JustifyXFunctor
17 //----------------------------------------------------------------------------
18 
22 class JustifyXFunctor : public DocFunctor {
23 public:
27  JustifyXFunctor(Doc *doc);
29  virtual ~JustifyXFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return false; }
36 
37  /*
38  * Set the full system width
39  */
40  void SetSystemFullWidth(int width) { m_systemFullWidth = width; }
41 
42  /*
43  * Functor interface
44  */
46  FunctorCode VisitAlignment(Alignment *alignment) override;
47  FunctorCode VisitMeasure(Measure *measure) override;
48  FunctorCode VisitMeasureAligner(MeasureAligner *measureAligner) override;
49  FunctorCode VisitScoreDef(ScoreDef *scoreDef) override;
50  FunctorCode VisitSection(Section *section) override;
51  FunctorCode VisitSystem(System *system) override;
53 
54 protected:
55  //
56 private:
57  //
58 public:
59  //
60 private:
61  // The relative X position of the next measure
62  int m_measureXRel;
63  // The justification ratio
64  double m_justifiableRatio;
65  // The left/right barline X position
66  int m_leftBarLineX;
67  int m_rightBarLineX;
68  // The system full width (without system margins)
69  int m_systemFullWidth;
70  // Indicates shift of next measure due to section restart
71  bool m_applySectionRestartShift;
72 };
73 
74 //----------------------------------------------------------------------------
75 // JustifyYFunctor
76 //----------------------------------------------------------------------------
77 
78 using ShiftMap = std::map<const StaffAlignment *, int>;
79 
83 class JustifyYFunctor : public DocFunctor {
84 public:
88  JustifyYFunctor(Doc *doc);
90  virtual ~JustifyYFunctor() = default;
92 
93  /*
94  * Abstract base implementation
95  */
96  bool ImplementsEndInterface() const override { return false; }
97 
98  /*
99  * Setter and getter for various properties
100  */
102  void SetJustificationSum(double justificationSum) { m_justificationSum = justificationSum; }
103  void SetSpaceToDistribute(int space) { m_spaceToDistribute = space; }
104  const ShiftMap &GetShiftForStaff() const { return m_shiftForStaff; }
106 
107  /*
108  * Functor interface
109  */
111  FunctorCode VisitStaffAlignment(StaffAlignment *staffAlignment) override;
112  FunctorCode VisitSystem(System *system) override;
114 
115 protected:
116  //
117 private:
118  //
119 public:
120  //
121 private:
122  // The cumulated shift
123  int m_cumulatedShift;
124  // The relative shift of the staff w.r.t. the system
125  int m_relativeShift;
126  // The amount of space for distribution
127  int m_spaceToDistribute;
128  // The sum of justification factors per page
129  double m_justificationSum;
130  // A map of calculated shifts per StaffAlignment
131  // => this is transferred to the JustifyYAdjustCrossStaffFunctor
132  ShiftMap m_shiftForStaff;
133 };
134 
135 //----------------------------------------------------------------------------
136 // JustifyYAdjustCrossStaffFunctor
137 //----------------------------------------------------------------------------
138 
143 public:
149  virtual ~JustifyYAdjustCrossStaffFunctor() = default;
151 
152  /*
153  * Abstract base implementation
154  */
155  bool ImplementsEndInterface() const override { return false; }
156 
157  /*
158  * Transfer the shift map
159  */
160  void SetShiftForStaff(const ShiftMap &shiftMap) { m_shiftForStaff = shiftMap; }
161 
162  /*
163  * Functor interface
164  */
166  FunctorCode VisitChord(Chord *chord) override;
168 
169 protected:
170  //
171 private:
172  /*
173  * Calculate the shift due to vertical justification
174  */
175  int GetShift(const Staff *staff) const;
176 
177 public:
178  //
179 private:
180  // A map of calculated shifts per StaffAlignment
181  // => this is transferred from the JustifyYFunctor
182  ShiftMap m_shiftForStaff;
183 };
184 
185 } // namespace vrv
186 
187 #endif // __VRV_JUSTIFYFUNCTOR_H__
vrv::JustifyXFunctor
This class justifies the X positions.
Definition: justifyfunctor.h:22
vrv::JustifyYFunctor
This class justifies the Y positions.
Definition: justifyfunctor.h:83
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::JustifyYAdjustCrossStaffFunctor
This class adjusts the cross staff content after vertical justification.
Definition: justifyfunctor.h:142
vrv::JustifyYFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: justifyfunctor.h:96
vrv::JustifyXFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: justifyfunctor.h:35
vrv::JustifyYAdjustCrossStaffFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: justifyfunctor.h:155
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151