Verovio
Source code documentation
adjusttupletsyfunctor.h
1 // Name: adjusttupletsyfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTTUPLETSYFUNCTOR_H__
9 #define __VRV_ADJUSTTUPLETSYFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustTupletsYFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
29  virtual ~AdjustTupletsYFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return false; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitTuplet(Tuplet *tuplet) override;
43 
44 protected:
45  //
46 private:
50  void AdjustTupletBracketY(Tuplet *tuplet, const Staff *staff) const;
52  void AdjustTupletNumY(Tuplet *tuplet, const Staff *staff) const;
54 
58  void AdjustTupletBracketBeamY(Tuplet *tuplet, TupletBracket *bracket, const Beam *beam, const Staff *staff) const;
59 
60  // Calculate the vertical bracket adjustment based on a list of point obstacles
61  int CalcBracketShift(Point referencePos, double slope, int sign, const std::list<Point> &obstacles) const;
62 
63 public:
64  //
65 private:
66  //
67 };
68 
69 //----------------------------------------------------------------------------
70 // AdjustTupletNumOverlapFunctor
71 //----------------------------------------------------------------------------
72 
77 public:
83  const TupletNum *tupletNum, const Staff *staff, data_STAFFREL_basic drawingNumPos, int drawingY);
84  virtual ~AdjustTupletNumOverlapFunctor() = default;
86 
87  /*
88  * Abstract base implementation
89  */
90  bool ImplementsEndInterface() const override { return false; }
91 
92  /*
93  * Setter for the margins
94  */
96  void SetHorizontalMargin(int margin) { m_horizontalMargin = margin; }
97  void SetVerticalMargin(int margin) { m_verticalMargin = margin; }
99 
100  /*
101  * Getter for the drawing Y
102  */
103  int GetDrawingY() const { return m_drawingY; }
104 
105  /*
106  * Functor interface
107  */
109  FunctorCode VisitLayerElement(const LayerElement *layerElement) override;
111 
112 protected:
113  //
114 private:
115  //
116 public:
117  //
118 private:
119  // The tupletNum for which the relative position is calculated
120  const TupletNum *m_tupletNum;
121  // The drawing position of tupletNum
122  data_STAFFREL_basic m_drawingNumPos;
123  // The margins for tupletNum overlap
124  int m_horizontalMargin;
125  int m_verticalMargin;
126  // The staff relevant for positioning the tuplet
127  const Staff *m_staff;
128  // The drawing Y position
129  int m_drawingY;
130 };
131 
132 //----------------------------------------------------------------------------
133 // AdjustTupletWithSlursFunctor
134 //----------------------------------------------------------------------------
135 
140 public:
146  virtual ~AdjustTupletWithSlursFunctor() = default;
148 
149  /*
150  * Abstract base implementation
151  */
152  bool ImplementsEndInterface() const override { return false; }
153 
154  /*
155  * Functor interface
156  */
158  FunctorCode VisitTuplet(Tuplet *tuplet) override;
160 
161 protected:
162  //
163 private:
164  //
165 public:
166  //
167 private:
168  //
169 };
170 
171 } // namespace vrv
172 
173 #endif // __VRV_ADJUSTTUPLETSYFUNCTOR_H__
vrv::Staff
This class represents a staff in a laid-out score (Doc).
Definition: staff.h:102
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::TupletBracket
This class models a bracket as a layer element part and has no direct MEI equivalent.
Definition: elementpart.h:150
vrv::AdjustTupletWithSlursFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjusttupletsyfunctor.h:152
vrv::Beam
Definition: beam.h:279
vrv::AdjustTupletsYFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjusttupletsyfunctor.h:35
vrv::TupletNum
This class models a tuplet num as a layer element part and has no direct MEI equivalent.
Definition: elementpart.h:249
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::AdjustTupletWithSlursFunctor
This class adjusts the Y position of tuplets with inner slurs.
Definition: adjusttupletsyfunctor.h:139
vrv::AdjustTupletsYFunctor
This class calculates the Y position of tuplet brackets and num.
Definition: adjusttupletsyfunctor.h:22
vrv::Tuplet
Definition: tuplet.h:28
vrv::AdjustTupletNumOverlapFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjusttupletsyfunctor.h:90
vrv::Point
Simple class for representing points.
Definition: devicecontextbase.h:203
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151
vrv::AdjustTupletNumOverlapFunctor
This class calculates the Y relative position of tupletNum based on overlaps with other elements.
Definition: adjusttupletsyfunctor.h:76