Verovio
Source code documentation
adjustaccidxfunctor.h
1 // Name: adjustaccidxfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTACCIDXFUNCTOR_H__
9 #define __VRV_ADJUSTACCIDXFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustAccidXFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
29  virtual ~AdjustAccidXFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return false; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitAlignment(Alignment *alignment) override;
42  FunctorCode VisitAlignmentReference(AlignmentReference *alignmentReference) override;
43  FunctorCode VisitMeasure(Measure *measure) override;
45 
46 protected:
47  //
48 private:
49  /*
50  * Get the accidentals for adjustment
51  */
52  std::vector<Accid *> GetAccidentalsForAdjustment(AlignmentReference *alignmentReference) const;
53 
58  void SetAccidLayerAlignment(Accid *accid, const AlignmentReference *alignmentReference) const;
59 
63  void AdjustAccidWithSpace(Accid *accid, AlignmentReference *alignmentReference, int staffSize);
64 
65 public:
66  //
67 private:
68  // The current measure
69  Measure *m_currentMeasure;
70 
71  // The accidentals that were already adjusted
72  std::set<Accid *> m_adjustedAccids;
73 };
74 
75 } // namespace vrv
76 
77 #endif // __VRV_ADJUSTACCIDXFUNCTOR_H__
vrv::Measure
This class represents a measure in a page-based score (Doc).
Definition: measure.h:37
vrv::AdjustAccidXFunctor
This class adjusts the X position of accidentals.
Definition: adjustaccidxfunctor.h:22
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::Accid
This class models the MEI <accid> element.
Definition: accid.h:27
vrv::AlignmentReference
This class stores a references of LayerElements for a staff.
Definition: horizontalaligner.h:290
vrv::Alignment
This class stores an alignment position elements will point to.
Definition: horizontalaligner.h:73
vrv::AdjustAccidXFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustaccidxfunctor.h:35
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151