Verovio
Source code documentation
adjustyposfunctor.h
1 // Name: adjustyposfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTYPOSFUNCTOR_H__
9 #define __VRV_ADJUSTYPOSFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustYPosFunctor
17 //----------------------------------------------------------------------------
18 
22 class AdjustYPosFunctor : public DocFunctor {
23 public:
27  AdjustYPosFunctor(Doc *doc);
29  virtual ~AdjustYPosFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return false; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitDiv(Div *div) override;
42  FunctorCode VisitStaffAlignment(StaffAlignment *staffAlignment) override;
43  FunctorCode VisitSystem(System *system) override;
45 
46 protected:
47  //
48 private:
49  //
50 public:
51  //
52 private:
53  // The cumulated shift
54  int m_cumulatedShift;
55 };
56 
57 //----------------------------------------------------------------------------
58 // AdjustCrossStaffYPosFunctor
59 //----------------------------------------------------------------------------
60 
65 public:
71  virtual ~AdjustCrossStaffYPosFunctor() = default;
73 
74  /*
75  * Abstract base implementation
76  */
77  bool ImplementsEndInterface() const override { return false; }
78 
79  /*
80  * Functor interface
81  */
83  FunctorCode VisitChord(Chord *chord) override;
84  FunctorCode VisitSystem(System *system) override;
86 
87 protected:
88  //
89 private:
90  //
91 public:
92  //
93 private:
94  //
95 };
96 
97 } // namespace vrv
98 
99 #endif // __VRV_ADJUSTYPOSFUNCTOR_H__
vrv::AdjustYPosFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustyposfunctor.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::Div
This class represents an MEI Div.
Definition: div.h:24
vrv::AdjustCrossStaffYPosFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustyposfunctor.h:77
vrv::Chord
This class represents a collection of notes in the same layer with the same onset time.
Definition: chord.h:32
vrv::System
This class represents a system in a laid-out score (Doc).
Definition: system.h:36
vrv::AdjustYPosFunctor
This class adjusts the position of the StaffAlignment.
Definition: adjustyposfunctor.h:22
vrv::StaffAlignment
This class stores an alignement position staves will point to.
Definition: verticalaligner.h:172
vrv::AdjustCrossStaffYPosFunctor
This class adjusts the position of cross-staff elements after the adjustment of the staves.
Definition: adjustyposfunctor.h:64
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151