Verovio
Source code documentation
calcalignmentpitchposfunctor.h
1 // Name: calcalignmentpitchposfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_CALCALIGNMENTPITCHPOSFUNCTOR_H__
9 #define __VRV_CALCALIGNMENTPITCHPOSFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // CalcAlignmentPitchPosFunctor
17 //----------------------------------------------------------------------------
18 
24 public:
30  virtual ~CalcAlignmentPitchPosFunctor() = default;
32 
33  /*
34  * Abstract base implementation
35  */
36  bool ImplementsEndInterface() const override { return false; }
37 
38  /*
39  * Functor interface
40  */
42  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
43  FunctorCode VisitScore(Score *score) override;
44  FunctorCode VisitScoreDef(ScoreDef *scoreDef) override;
45  FunctorCode VisitStaffDef(StaffDef *staffDef) override;
47 
48 protected:
49  //
50 private:
51  //
52 public:
53  //
54 private:
55  // The current scoreDef default octave
56  data_OCTAVE m_octDefault;
57  // The current staffDef default octaves
58  std::map<int, data_OCTAVE> m_octDefaultForStaffN;
59 };
60 
61 } // namespace vrv
62 
63 #endif // __VRV_CALCALIGNMENTPITCHPOSFUNCTOR_H__
vrv::StaffDef
This class represents a MEI staffDef.
Definition: staffdef.h:26
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::CalcAlignmentPitchPosFunctor
This class calculates the drawing position (m_drawingX and m_drawingY) values for objects.
Definition: calcalignmentpitchposfunctor.h:23
vrv::ScoreDef
This class represents a MEI scoreDef.
Definition: scoredef.h:129
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
vrv::CalcAlignmentPitchPosFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: calcalignmentpitchposfunctor.h:36