8 #ifndef __VRV_BEAMSPAN_H__
9 #define __VRV_BEAMSPAN_H__
13 #include "controlelement.h"
14 #include "drawinginterface.h"
15 #include "plistinterface.h"
16 #include "timeinterface.h"
46 void Reset()
override;
47 std::string GetClassName()
const override {
return "beamSpan"; }
53 PlistInterface *GetPlistInterface()
override {
return vrv_cast<PlistInterface *>(
this); }
55 const PlistInterface *GetPlistInterface()
const override {
return vrv_cast<const PlistInterface *>(
this); }
56 TimePointInterface *GetTimePointInterface()
override {
return vrv_cast<TimePointInterface *>(
this); }
57 const TimePointInterface *GetTimePointInterface()
const override
59 return vrv_cast<const TimePointInterface *>(
this);
61 TimeSpanningInterface *GetTimeSpanningInterface()
override {
return vrv_cast<TimeSpanningInterface *>(
this); }
62 const TimeSpanningInterface *GetTimeSpanningInterface()
const override
64 return vrv_cast<const TimeSpanningInterface *>(
this);
71 void InitBeamSegments();
73 void ClearBeamSegments();
79 BeamSpanSegment *
GetSegment(
int index) {
return m_beamSegments.at(index); }
81 const BeamSpanSegment *
GetSegment(
int index)
const {
return m_beamSegments.at(index); }
82 BeamSpanSegment *GetSegmentForSystem(
const System *system);
83 const BeamSpanSegment *GetSegmentForSystem(
const System *system)
const;
91 void ResetBeamedElements() { m_beamedElements.clear(); }
92 void SetBeamedElements(
const ArrayOfObjects &beamedElements) { m_beamedElements = beamedElements; }
98 using SpanIndexVector = std::vector<std::pair<vrv::ArrayOfObjects::const_iterator, Object *>>;
100 bool AddSpanningSegment(
const Doc *doc,
const SpanIndexVector &elements,
int index,
bool newSegment =
true);
110 FunctorCode
Accept(Functor &functor)
override;
112 FunctorCode
Accept(ConstFunctor &functor)
const override;
113 FunctorCode AcceptEnd(Functor &functor)
override;
114 FunctorCode AcceptEnd(ConstFunctor &functor)
const override;
125 std::vector<BeamSpanSegment *> m_beamSegments;
129 ArrayOfObjects m_beamedElements;
134 #endif //__VRV_BEAMSPAN_H__