Verovio
Source code documentation
pedal.h
1 // Name: pedal.h
3 // Author: Laurent Pugin
4 // Created: 2016
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_PEDAL_H__
9 #define __VRV_PEDAL_H__
10 
11 #include "atts_cmn.h"
12 #include "atts_externalsymbols.h"
13 #include "atts_visual.h"
14 #include "controlelement.h"
15 #include "timeinterface.h"
16 
17 namespace vrv {
18 
19 class System;
20 //----------------------------------------------------------------------------
21 // Pedal
22 //----------------------------------------------------------------------------
23 
27 class Pedal : public ControlElement,
28  public TimeSpanningInterface,
29  public AttExtSymAuth,
30  public AttExtSymNames,
31  public AttPedalLog,
32  public AttPedalVis,
33  public AttPlacementRelStaff,
34  public AttVerticalGroup {
35 public:
40  Pedal();
42  virtual ~Pedal();
43  Object *Clone() const override { return new Pedal(*this); }
44  void Reset() override;
45  std::string GetClassName() const override { return "pedal"; }
47 
51  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
53  const TimePointInterface *GetTimePointInterface() const override
54  {
55  return vrv_cast<const TimePointInterface *>(this);
56  }
57  TimeSpanningInterface *GetTimeSpanningInterface() override { return vrv_cast<TimeSpanningInterface *>(this); }
58  const TimeSpanningInterface *GetTimeSpanningInterface() const override
59  {
60  return vrv_cast<const TimeSpanningInterface *>(this);
61  }
63 
67  bool EndsWithBounce() const { return m_endsWithBounce; }
69  void EndsWithBounce(bool endsWithBounce) { m_endsWithBounce = endsWithBounce; }
71 
75  char32_t GetPedalGlyph() const;
76 
80  data_PEDALSTYLE GetPedalForm(const Doc *doc, const System *system) const;
81 
82  //----------//
83  // Functors //
84  //----------//
85 
89  FunctorCode Accept(Functor &functor) override;
91  FunctorCode Accept(ConstFunctor &functor) const override;
92  FunctorCode AcceptEnd(Functor &functor) override;
93  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
95 
96 private:
100  bool m_endsWithBounce;
101 };
102 
103 } // namespace vrv
104 
105 #endif
vrv::Pedal::Reset
void Reset() override
Virtual reset method.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Pedal
This class models the MEI <pedal> element.
Definition: pedal.h:27
vrv::Pedal::GetPedalForm
data_PEDALSTYLE GetPedalForm(const Doc *doc, const System *system) const
Get the pedal form based on the options and corresponding attributes from <pedal> and <scoreDef>
vrv::Pedal::GetPedalGlyph
char32_t GetPedalGlyph() const
Get the SMuFL glyph for the pedal based on function or glyph.num.
vrv::Pedal::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: pedal.h:43
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
vrv::Pedal::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.