Verovio
Source code documentation
tempo.h
1 // Name: tempo.h
3 // Author: Laurent Pugin
4 // Created: 2015
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_TEMPO_H__
9 #define __VRV_TEMPO_H__
10 
11 #include "atts_midi.h"
12 #include "controlelement.h"
13 #include "textdirinterface.h"
14 #include "timeinterface.h"
15 
16 namespace vrv {
17 
18 class TextElement;
19 
20 //----------------------------------------------------------------------------
21 // Tempo
22 //----------------------------------------------------------------------------
23 
27 class Tempo : public ControlElement,
28  public TextDirInterface,
29  public TimeSpanningInterface,
30  public AttExtender,
31  public AttLang,
32  public AttMidiTempo,
33  public AttMmTempo {
34 public:
39  Tempo();
41  virtual ~Tempo();
42  Object *Clone() const override { return new Tempo(*this); }
43  void Reset() override;
44  std::string GetClassName() const override { return "tempo"; }
46 
50  TextDirInterface *GetTextDirInterface() override { return vrv_cast<TextDirInterface *>(this); }
52  const TextDirInterface *GetTextDirInterface() const override { return vrv_cast<const TextDirInterface *>(this); }
53  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
54  const TimePointInterface *GetTimePointInterface() const override
55  {
56  return vrv_cast<const TimePointInterface *>(this);
57  }
58  TimeSpanningInterface *GetTimeSpanningInterface() override { return vrv_cast<TimeSpanningInterface *>(this); }
59  const TimeSpanningInterface *GetTimeSpanningInterface() const override
60  {
61  return vrv_cast<const TimeSpanningInterface *>(this);
62  }
64 
69  bool IsSupportedChild(ClassId classId) override;
70 
74  int GetDrawingXRelativeToStaff(int staffN) const;
76  void SetDrawingXRelative(int staffN, int drawingX) { m_drawingXRels[staffN] = drawingX; }
77  void ResetDrawingXRelative() { m_drawingXRels.clear(); }
79 
83  bool IsExtenderElement() const override { return GetExtender() == BOOLEAN_true; }
84 
85  //----------//
86  // Functors //
87  //----------//
88 
92  FunctorCode Accept(Functor &functor) override;
94  FunctorCode Accept(ConstFunctor &functor) const override;
95  FunctorCode AcceptEnd(Functor &functor) override;
96  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
98 
99  //----------//
100  // Static //
101  //----------//
102 
106  static double CalcTempo(const AttMmTempo *attMmTempo);
107 
108 private:
109  //
110 public:
111  //
112 private:
113  std::map<int, int> m_drawingXRels;
114 };
115 
116 } // namespace vrv
117 
118 #endif
vrv::Tempo::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: tempo.h:42
vrv::Tempo
This class is an interface for <tempo> elements at the measure level.
Definition: tempo.h:27
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Tempo::IsExtenderElement
bool IsExtenderElement() const override
See FloatingObject::IsExtenderElement.
Definition: tempo.h:83
vrv::Tempo::Reset
void Reset() override
Virtual reset method.
vrv::Tempo::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::Tempo::CalcTempo
static double CalcTempo(const AttMmTempo *attMmTempo)
Calculate tempo from attMmTempo (@mm, @mm.unit, @mm.dots)
vrv::TextDirInterface
This class is an interface for elements implementing a text directive, such as <dir>,...
Definition: textdirinterface.h:26
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::Tempo::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element (text, rend.
vrv::ControlElement
This class represents elements appearing within a measure.
Definition: controlelement.h:28
vrv::TimeSpanningInterface
This class is an interface for spanning elements, such as slur, hairpin, etc.
Definition: timeinterface.h:141