Verovio
Source code documentation
adjustfloatingpositionerfunctor.h
1 // Name: adjustfloatingpositionerfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTFLOATINGPOSITIONERFUNCTOR_H__
9 #define __VRV_ADJUSTFLOATINGPOSITIONERFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustFloatingPositionersFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
29  virtual ~AdjustFloatingPositionersFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return false; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitStaffAlignment(StaffAlignment *staffAlignment) override;
42  FunctorCode VisitSystem(System *system) override;
44 
45 protected:
46  //
47 private:
48  //
49 public:
50  //
51 private:
52  // The class ID
53  ClassId m_classId;
54  // Indicates if we are processing floating objects to be put in between the staff
55  bool m_inBetween;
56 };
57 
58 //----------------------------------------------------------------------------
59 // AdjustFloatingPositionerGrpsFunctor
60 //----------------------------------------------------------------------------
61 
66 public:
72  virtual ~AdjustFloatingPositionerGrpsFunctor() = default;
74 
75  /*
76  * Abstract base implementation
77  */
78  bool ImplementsEndInterface() const override { return false; }
79 
80  /*
81  * Various setter
82  */
84  void SetClassIDs(const std::vector<ClassId> &classIds) { m_classIds = classIds; }
85  void SetPlace(data_STAFFREL place) { m_place = place; }
87 
88  /*
89  * Functor interface
90  */
92  FunctorCode VisitStaffAlignment(StaffAlignment *staffAlignment) override;
94 
95 protected:
96  //
97 private:
98  // Adjust the position of groups to ensure that any group is positioned further away from the staff
99  // than preceding groups
100  void AdjustGroupsMonotone(const StaffAlignment *staffAlignment, const ArrayOfFloatingPositioners &positioners,
101  ArrayOfIntPairs &grpIdYRel) const;
102 
103 public:
104  //
105 private:
106  // The class IDs to group
107  std::vector<ClassId> m_classIds;
108  // The place w.r.t. the staff
109  data_STAFFREL m_place;
110 };
111 
112 //----------------------------------------------------------------------------
113 // AdjustFloatingPositionersBetweenFunctor
114 //----------------------------------------------------------------------------
115 
120 public:
126  virtual ~AdjustFloatingPositionersBetweenFunctor() = default;
128 
129  /*
130  * Abstract base implementation
131  */
132  bool ImplementsEndInterface() const override { return false; }
133 
134  /*
135  * Functor interface
136  */
138  FunctorCode VisitStaffAlignment(StaffAlignment *staffAlignment) override;
139  FunctorCode VisitSystem(System *system) override;
141 
142 protected:
143  //
144 private:
145  //
146 public:
147  //
148 private:
149  // The previous staff alignment
150  StaffAlignment *m_previousStaffAlignment;
151 };
152 
153 } // namespace vrv
154 
155 #endif // __VRV_ADJUSTFLOATINGPOSITIONERFUNCTOR_H__
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::AdjustFloatingPositionersFunctor
This class adjusts the position of all floating positioners, staff by staff.
Definition: adjustfloatingpositionerfunctor.h:22
vrv::AdjustFloatingPositionerGrpsFunctor
This class adjusts the position of all floating positioners that are grouped, staff by staff.
Definition: adjustfloatingpositionerfunctor.h:65
vrv::AdjustFloatingPositionersFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustfloatingpositionerfunctor.h:35
vrv::AdjustFloatingPositionersBetweenFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustfloatingpositionerfunctor.h:132
vrv::System
This class represents a system in a laid-out score (Doc).
Definition: system.h:36
vrv::AdjustFloatingPositionerGrpsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustfloatingpositionerfunctor.h:78
vrv::StaffAlignment
This class stores an alignement position staves will point to.
Definition: verticalaligner.h:172
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151
vrv::AdjustFloatingPositionersBetweenFunctor
This class adjusts the position of floating positioners placed between staves.
Definition: adjustfloatingpositionerfunctor.h:119