Verovio
Source code documentation
adjustneumexfunctor.h
1 // Name: adjustneumexfunctor.h
3 // Author: Laurent Pugin
4 // Created: 2024
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTNEUMEXFUNCTOR_H__
9 #define __VRV_ADJUSTNEUMEXFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustNeumeXFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
29  virtual ~AdjustNeumeXFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return true; }
36 
37  /*
38  * Functor interface
39  */
42  FunctorCode VisitLayer(Layer *layer) override;
43  FunctorCode VisitLayerEnd(Layer *layer) override;
44  FunctorCode VisitStaff(Staff *staff) override;
45  FunctorCode VisitNeume(Neume *neume) override;
46  FunctorCode VisitSyl(Syl *syl) override;
47 
49 
50 protected:
51  //
52 private:
53  //
54 public:
55  //
56 private:
58  int m_minPos;
60  int m_neumeMinPos;
61 };
62 
63 } // namespace vrv
64 
65 #endif // __VRV_ADJUSTNEUMEXFUNCTOR_H__
vrv::Staff
This class represents a staff in a laid-out score (Doc).
Definition: staff.h:102
vrv::AdjustNeumeXFunctor
This class adjusts the X position of accidentals.
Definition: adjustneumexfunctor.h:22
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::Neume
This class models the MEI <neume> element.
Definition: neume.h:60
vrv::Syl
Syl is a TimeSpanningInterface for managing syllable connectors.
Definition: syl.h:31
vrv::AdjustNeumeXFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustneumexfunctor.h:35
vrv::Layer
This class represents a layer in a laid-out score (Doc).
Definition: layer.h:33
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151