 |
Verovio
Source code documentation
|
8 #ifndef __VRV_ARPEG_H__
9 #define __VRV_ARPEG_H__
12 #include "atts_visual.h"
13 #include "controlelement.h"
14 #include "plistinterface.h"
15 #include "timeinterface.h"
31 public AttEnclosingChars {
41 void Reset()
override;
42 std::string GetClassName()
const override {
return "arpeg"; }
48 int GetDrawingX()
const override;
57 std::set<const Note *>
GetNotes()
const;
77 PlistInterface *GetPlistInterface()
override {
return vrv_cast<PlistInterface *>(
this); }
79 const PlistInterface *GetPlistInterface()
const override {
return vrv_cast<const PlistInterface *>(
this); }
80 TimePointInterface *GetTimePointInterface()
override {
return vrv_cast<TimePointInterface *>(
this); }
81 const TimePointInterface *GetTimePointInterface()
const override
83 return vrv_cast<const TimePointInterface *>(
this);
90 int GetDrawingXRel()
const {
return m_drawingXRel; }
92 virtual void SetDrawingXRel(
int drawingXRel);
93 void CacheXRel(
bool restore =
false);
99 bool IsValidRef(
const Object *ref)
const override;
108 FunctorCode
Accept(Functor &functor)
override;
110 FunctorCode
Accept(ConstFunctor &functor)
const override;
111 FunctorCode AcceptEnd(Functor &functor)
override;
112 FunctorCode AcceptEnd(ConstFunctor &functor)
const override;
This class represents a basic object.
Definition: object.h:59
bool IsValidRef(const Object *ref) const override
Custom method for @plist validation.
This class models the MEI <arpeg> element.
Definition: arpeg.h:26
Staff * GetCrossStaff()
Get cross staff of the front element if all elements of arpeggio are cross-staff.
Object * Clone() const override
Method call for copying child classes.
Definition: arpeg.h:40
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
std::set< Note * > GetNotes()
Get all notes of the arpeggio.
This class represents elements appearing within a measure.
Definition: controlelement.h:28
This class is an interface for elements having a single time point, such as tempo,...
Definition: plistinterface.h:29
void Reset() override
Virtual reset method.
void GetDrawingTopBottomNotes(Note *&top, Note *&bottom)
Set the top and bottom note of the arpeg.
This class is an interface for elements having a single time point, such as tempo,...
Definition: timeinterface.h:35