Verovio
Source code documentation
adjustdotsfunctor.h
1 // Name: adjustdotsfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTDOTSFUNCTOR_H__
9 #define __VRV_ADJUSTDOTSFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustDotsFunctor
17 //----------------------------------------------------------------------------
18 
22 class AdjustDotsFunctor : public DocFunctor {
23 public:
27  AdjustDotsFunctor(Doc *doc, const std::vector<int> &staffNs);
29  virtual ~AdjustDotsFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return true; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitAlignmentEnd(Alignment *alignment) override;
42  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
43  FunctorCode VisitMeasure(Measure *measure) override;
44  FunctorCode VisitScore(Score *score) override;
46 
47 protected:
48  //
49 private:
50  //
51 public:
52  //
53 private:
54  // The list of staffN in the top-level scoreDef
55  std::vector<int> m_staffNs;
56  // The list of all elements (except for dots) for the alignment in the staff
57  std::vector<LayerElement *> m_elements;
58  // The list of all dots for the alignment in the staff
59  std::vector<Dots *> m_dots;
60 };
61 
62 } // namespace vrv
63 
64 #endif // __VRV_ADJUSTDOTSFUNCTOR_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::AdjustDotsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustdotsfunctor.h:35
vrv::Alignment
This class stores an alignment position elements will point to.
Definition: horizontalaligner.h:73
vrv::AdjustDotsFunctor
This class adjusts the position of the dots for multiple layers.
Definition: adjustdotsfunctor.h:22
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