Verovio
Source code documentation
adjustarticfunctor.h
1 // Name: adjustarticfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTARTICFUNCTOR_H__
9 #define __VRV_ADJUSTARTICFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustArticFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
27  AdjustArticFunctor(Doc *doc);
29  virtual ~AdjustArticFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return false; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitArtic(Artic *artic) override;
42  FunctorCode VisitChord(Chord *chord) override;
43  FunctorCode VisitNote(Note *note) override;
45 
46 protected:
47  //
48 private:
49  //
50 public:
51  //
52 private:
53  // The list of above / below articulations
54  std::list<Artic *> m_articAbove;
55  std::list<Artic *> m_articBelow;
56  // The parent element to which the articulations refer
57  LayerElement *m_parent;
58 };
59 
60 //----------------------------------------------------------------------------
61 // AdjustArticWithSlursFunctor
62 //----------------------------------------------------------------------------
63 
68 public:
74  virtual ~AdjustArticWithSlursFunctor() = default;
76 
77  /*
78  * Abstract base implementation
79  */
80  bool ImplementsEndInterface() const override { return false; }
81 
82  /*
83  * Functor interface
84  */
86  FunctorCode VisitArtic(Artic *artic) override;
88 
89 protected:
90  //
91 private:
92  //
93 public:
94  //
95 private:
96  //
97 };
98 
99 } // namespace vrv
100 
101 #endif // __VRV_ADJUSTARTICFUNCTOR_H__
vrv::AdjustArticFunctor
This class adjusts the position of articulations.
Definition: adjustarticfunctor.h:22
vrv::AdjustArticWithSlursFunctor
This class adjusts the position of outside articulations with slur.
Definition: adjustarticfunctor.h:67
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::Chord
This class represents a collection of notes in the same layer with the same onset time.
Definition: chord.h:32
vrv::Artic
Definition: artic.h:22
vrv::AdjustArticWithSlursFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustarticfunctor.h:80
vrv::Note
This class models the MEI <note> element.
Definition: note.h:47
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::AdjustArticFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustarticfunctor.h:35
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151