8 #ifndef __VRV_PEDAL_H__
9 #define __VRV_PEDAL_H__
12 #include "atts_externalsymbols.h"
13 #include "atts_visual.h"
14 #include "controlelement.h"
15 #include "timeinterface.h"
30 public AttExtSymNames,
33 public AttPlacementRelStaff,
34 public AttVerticalGroup {
44 void Reset()
override;
45 std::string GetClassName()
const override {
return "pedal"; }
51 TimePointInterface *GetTimePointInterface()
override {
return vrv_cast<TimePointInterface *>(
this); }
53 const TimePointInterface *GetTimePointInterface()
const override
55 return vrv_cast<const TimePointInterface *>(
this);
57 TimeSpanningInterface *GetTimeSpanningInterface()
override {
return vrv_cast<TimeSpanningInterface *>(
this); }
58 const TimeSpanningInterface *GetTimeSpanningInterface()
const override
60 return vrv_cast<const TimeSpanningInterface *>(
this);
67 bool EndsWithBounce()
const {
return m_endsWithBounce; }
69 void EndsWithBounce(
bool endsWithBounce) { m_endsWithBounce = endsWithBounce; }
80 data_PEDALSTYLE
GetPedalForm(
const Doc *doc,
const System *system)
const;
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;
100 bool m_endsWithBounce;