Verovio
Source code documentation
adjusttempofunctor.h
1 // Name: adjusttempofunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTTEMPOFUNCTOR_H__
9 #define __VRV_ADJUSTTEMPOFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustTempoFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
27  AdjustTempoFunctor(Doc *doc);
29  virtual ~AdjustTempoFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return false; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitSystem(System *system) override;
42  FunctorCode VisitTempo(Tempo *tempo) override;
44 
45 protected:
46  //
47 private:
48  //
49 public:
50  //
51 private:
52  // The systemAligner
53  SystemAligner *m_systemAligner;
54 };
55 
56 } // namespace vrv
57 
58 #endif // __VRV_ADJUSTTEMPOFUNCTOR_H__
vrv::AdjustTempoFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjusttempofunctor.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::AdjustTempoFunctor
This class adjusts the X position of tempi.
Definition: adjusttempofunctor.h:22
vrv::Tempo
This class is an interface for <tempo> elements at the measure level.
Definition: tempo.h:27
vrv::System
This class represents a system in a laid-out score (Doc).
Definition: system.h:36
vrv::SystemAligner
This class aligns the content of a system It contains a vector of StaffAlignment.
Definition: verticalaligner.h:31
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151