Verovio
Source code documentation
adjustarpegfunctor.h
1 // Name: adjustarpegfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTARPEGFUNCTOR_H__
9 #define __VRV_ADJUSTARPEGFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustArpegFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
27  AdjustArpegFunctor(Doc *doc);
29  virtual ~AdjustArpegFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return true; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitAlignment(Alignment *alignment) override;
42  FunctorCode VisitArpeg(Arpeg *arpeg) override;
43  FunctorCode VisitMeasureEnd(Measure *measure) override;
45 
46 protected:
47  //
48 private:
49  //
50 public:
51  //
52 private:
53  // The array of Alignment|Arpeg|StaffN|bool tuples
54  ArrayOfAlignmentArpegTuples m_alignmentArpegTuples;
55  // The current MeasureAligner
56  MeasureAligner *m_measureAligner;
57 };
58 
59 } // namespace vrv
60 
61 #endif // __VRV_ADJUSTARPEGFUNCTOR_H__
vrv::Measure
This class represents a measure in a page-based score (Doc).
Definition: measure.h:37
vrv::AdjustArpegFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustarpegfunctor.h:35
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::Arpeg
This class models the MEI <arpeg> element.
Definition: arpeg.h:26
vrv::Alignment
This class stores an alignment position elements will point to.
Definition: horizontalaligner.h:73
vrv::MeasureAligner
This class aligns the content of a measure It contains a vector of Alignment.
Definition: horizontalaligner.h:425
vrv::AdjustArpegFunctor
This class adjusts the Arpeg position.
Definition: adjustarpegfunctor.h:22
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151