Verovio
Source code documentation
adjustgracexposfunctor.h
1 // Name: adjustgracexposfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTGRACEXPOSFUNCTOR_H__
9 #define __VRV_ADJUSTGRACEXPOSFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustGraceXPosFunctor
17 //----------------------------------------------------------------------------
18 
25 public:
29  AdjustGraceXPosFunctor(Doc *doc, const std::vector<int> &staffNs);
31  virtual ~AdjustGraceXPosFunctor() = default;
33 
34  /*
35  * Abstract base implementation
36  */
37  bool ImplementsEndInterface() const override { return true; }
38 
39  /*
40  * Functor interface
41  */
43  FunctorCode VisitAlignment(Alignment *alignment) override;
44  FunctorCode VisitAlignmentEnd(Alignment *alignment) override;
45  FunctorCode VisitAlignmentReference(AlignmentReference *alignmentReference) override;
46  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
47  FunctorCode VisitMeasure(Measure *measure) override;
48  FunctorCode VisitScore(Score *score) override;
50 
51 protected:
52  //
53 private:
54  //
55 public:
56  //
57 private:
58  // The list of staffN in the top-level scoreDef
59  std::vector<int> m_staffNs;
60  // The maximum position
61  int m_graceMaxPos;
62  // The upcoming maximum position (i.e., the min pos for the next element)
63  int m_graceUpcomingMaxPos;
64  // The cumulated shift on the previous aligners
65  int m_graceCumulatedXShift;
66  // Indicates whether the alignment is in a Measure or in a Grace
67  bool m_isGraceAlignment;
68  // The list of tie endpoints for the current measure
69  MeasureTieEndpoints m_measureTieEndpoints;
70  // The right ALIGNMENT_DEFAULT (if any)
71  Alignment *m_rightDefaultAlignment;
72 };
73 
74 } // namespace vrv
75 
76 #endif // __VRV_ADJUSTGRACEXPOSFUNCTOR_H__
vrv::Measure
This class represents a measure in a page-based score (Doc).
Definition: measure.h:37
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::AlignmentReference
This class stores a references of LayerElements for a staff.
Definition: horizontalaligner.h:290
vrv::AdjustGraceXPosFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustgracexposfunctor.h:37
vrv::Alignment
This class stores an alignment position elements will point to.
Definition: horizontalaligner.h:73
vrv::AdjustGraceXPosFunctor
This class adjusts the X positions of the grace notes looking at the bounding boxes.
Definition: adjustgracexposfunctor.h:24
vrv::Score
This class represent a <score> in MEI.
Definition: score.h:30
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151