Verovio
Source code documentation
adjustxposfunctor.h
1 // Name: adjustxposfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTXPOSFUNCTOR_H__
9 #define __VRV_ADJUSTXPOSFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustXPosAlignmentOffset
17 //----------------------------------------------------------------------------
18 
24  AdjustXPosAlignmentOffset() { this->Reset(); }
25 
26  void Reset()
27  {
28  m_alignment = NULL;
29  m_offset = 0;
30  m_overlappingBB = NULL;
31  }
32 
33  // data members
34  Alignment *m_alignment;
35  int m_offset;
36  BoundingBox *m_overlappingBB;
37 };
38 
39 //----------------------------------------------------------------------------
40 // AdjustXPosFunctor
41 //----------------------------------------------------------------------------
42 
48 class AdjustXPosFunctor : public DocFunctor {
49 public:
53  AdjustXPosFunctor(Doc *doc, const std::vector<int> &staffNs);
55  virtual ~AdjustXPosFunctor() = default;
57 
58  /*
59  * Abstract base implementation
60  */
61  bool ImplementsEndInterface() const override { return true; }
62 
63  /*
64  * Set the included and excluded classes
65  */
67  void SetIncluded(const std::vector<ClassId> &classIDs) { m_includes = classIDs; }
68  void ClearIncluded() { m_includes.clear(); }
69  void SetExcluded(const std::vector<ClassId> &classIDs) { m_excludes = classIDs; }
70  void ClearExcluded() { m_excludes.clear(); }
72 
73  /*
74  * Set the right bar lines only flag
75  */
76  void SetRightBarLinesOnly(bool rightBarLinesOnly) { m_rightBarLinesOnly = rightBarLinesOnly; }
77 
78  /*
79  * Functor interface
80  */
82  FunctorCode VisitAlignment(Alignment *alignment) override;
83  FunctorCode VisitAlignmentEnd(Alignment *alignment) override;
84  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
85  FunctorCode VisitMeasure(Measure *measure) override;
86  FunctorCode VisitScore(Score *score) override;
88 
89 protected:
90  //
91 private:
95  std::pair<int, int> CalculateXPosOffset(LayerElement *layerElement);
96 
97 public:
98  //
99 private:
100  // The minimum position (i.e., the width of the previous element)
101  int m_minPos;
102  // The upcoming minimum position (i.e., the min pos for the next element)
103  int m_upcomingMinPos;
104  // The cumulated shift on the previous aligners
105  int m_cumulatedXShift;
106  // The current staff @n (used for grace note alignment)
107  int m_staffN;
108  // The current staff size
109  int m_staffSize;
110  // The current staff is neume
111  bool m_isNeumeStaff;
112  // The list of staffN in the top-level scoreDef
113  std::vector<int> m_staffNs;
114  // The bounding boxes in the previous aligner
115  std::vector<BoundingBox *> m_boundingBoxes;
116  // The upcoming bounding boxes (to be used in the next aligner)
117  std::vector<BoundingBox *> m_upcomingBoundingBoxes;
118  // The list of types to include
119  std::vector<ClassId> m_includes;
120  // The list of types to exclude
121  std::vector<ClassId> m_excludes;
122  // Indicates whether only right bar line positions should be considered
123  bool m_rightBarLinesOnly;
124  // The list of tie endpoints for the current measure
125  MeasureTieEndpoints m_measureTieEndpoints;
126  // The current alignment
127  AdjustXPosAlignmentOffset m_currentAlignment;
128  // The preceeding alignment
129  AdjustXPosAlignmentOffset m_previousAlignment;
130  // The current measure
131  Measure *m_measure;
132 };
133 
134 } // namespace vrv
135 
136 #endif // __VRV_ADJUSTXPOSFUNCTOR_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::AdjustXPosFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustxposfunctor.h:61
vrv::AdjustXPosAlignmentOffset
This struct holds information about alignment, possible offset and overlapping bounding box.
Definition: adjustxposfunctor.h:23
vrv::Alignment
This class stores an alignment position elements will point to.
Definition: horizontalaligner.h:73
vrv::AdjustXPosFunctor
This class adjusts the X positions of the staff content by looking at the bounding boxes.
Definition: adjustxposfunctor.h:48
vrv::BoundingBox
This class represents a basic object in the layout domain.
Definition: boundingbox.h:32
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151