8 #ifndef __VRV_JUSTIFYFUNCTOR_H__
9 #define __VRV_JUSTIFYFUNCTOR_H__
40 void SetSystemFullWidth(
int width) { m_systemFullWidth = width; }
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;
64 double m_justifiableRatio;
69 int m_systemFullWidth;
71 bool m_applySectionRestartShift;
78 using ShiftMap = std::map<const StaffAlignment *, int>;
102 void SetJustificationSum(
double justificationSum) { m_justificationSum = justificationSum; }
103 void SetSpaceToDistribute(
int space) { m_spaceToDistribute = space; }
104 const ShiftMap &GetShiftForStaff()
const {
return m_shiftForStaff; }
111 FunctorCode VisitStaffAlignment(StaffAlignment *staffAlignment)
override;
112 FunctorCode VisitSystem(System *system)
override;
123 int m_cumulatedShift;
127 int m_spaceToDistribute;
129 double m_justificationSum;
132 ShiftMap m_shiftForStaff;
160 void SetShiftForStaff(
const ShiftMap &shiftMap) { m_shiftForStaff = shiftMap; }
166 FunctorCode VisitChord(Chord *chord)
override;
175 int GetShift(
const Staff *staff)
const;
182 ShiftMap m_shiftForStaff;
187 #endif // __VRV_JUSTIFYFUNCTOR_H__