8 #ifndef __VRV_HAIRPIN_H__
9 #define __VRV_HAIRPIN_H__
12 #include "atts_visual.h"
13 #include "controlelement.h"
14 #include "timeinterface.h"
29 public AttLineRendBase,
30 public AttPlacementRelStaff,
31 public AttVerticalGroup {
41 void Reset()
override;
42 std::string GetClassName()
const override {
return "hairpin"; }
48 TimePointInterface *GetTimePointInterface()
override {
return vrv_cast<TimePointInterface *>(
this); }
50 const TimePointInterface *GetTimePointInterface()
const override
52 return vrv_cast<const TimePointInterface *>(
this);
54 TimeSpanningInterface *GetTimeSpanningInterface()
override {
return vrv_cast<TimeSpanningInterface *>(
this); }
55 const TimeSpanningInterface *GetTimeSpanningInterface()
const override
57 return vrv_cast<const TimeSpanningInterface *>(
this);
64 int GetDrawingLength()
const {
return m_drawingLength; }
66 void SetDrawingLength(
int length) { m_drawingLength = length; }
67 bool HasDrawingLength()
const {
return (m_drawingLength > 0); }
70 int CalcHeight(
const Doc *doc,
int staffSize,
char spanningType,
const FloatingPositioner *leftHairpin,
71 const FloatingPositioner *rightHaipin)
const;
76 void SetLeftLink(ControlElement *leftLink);
78 ControlElement *GetLeftLink() {
return m_leftLink; }
79 const ControlElement *GetLeftLink()
const {
return m_leftLink; }
80 void SetRightLink(ControlElement *rightLink);
81 ControlElement *GetRightLink() {
return m_rightLink; }
82 const ControlElement *GetRightLink()
const {
return m_rightLink; }
98 FunctorCode
Accept(Functor &functor)
override;
100 FunctorCode
Accept(ConstFunctor &functor)
const override;
101 FunctorCode AcceptEnd(Functor &functor)
override;
102 FunctorCode AcceptEnd(ConstFunctor &functor)
const override;
116 ControlElement *m_leftLink;
122 ControlElement *m_rightLink;