Verovio
Source code documentation
arpeg.h
1 // Name: arpeg.h
3 // Author: Laurent Pugin
4 // Created: 2017
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ARPEG_H__
9 #define __VRV_ARPEG_H__
10 
11 #include "atts_cmn.h"
12 #include "atts_visual.h"
13 #include "controlelement.h"
14 #include "plistinterface.h"
15 #include "timeinterface.h"
16 
17 namespace vrv {
18 
19 //----------------------------------------------------------------------------
20 // Arpeg
21 //----------------------------------------------------------------------------
22 
26 class Arpeg : public ControlElement,
27  public PlistInterface,
28  public TimePointInterface,
29  public AttArpegLog,
30  public AttArpegVis,
31  public AttEnclosingChars {
32 public:
37  Arpeg();
39  virtual ~Arpeg();
40  Object *Clone() const override { return new Arpeg(*this); }
41  void Reset() override;
42  std::string GetClassName() const override { return "arpeg"; }
44 
48  int GetDrawingX() const override;
51 
55  std::set<Note *> GetNotes();
57  std::set<const Note *> GetNotes() const;
59 
64  void GetDrawingTopBottomNotes(Note *&top, Note *&bottom);
65 
69  Staff *GetCrossStaff();
71  const Staff *GetCrossStaff() const;
73 
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
82  {
83  return vrv_cast<const TimePointInterface *>(this);
84  }
86 
90  int GetDrawingXRel() const { return m_drawingXRel; }
92  virtual void SetDrawingXRel(int drawingXRel);
93  void CacheXRel(bool restore = false);
95 
99  bool IsValidRef(const Object *ref) const override;
100 
101  //----------//
102  // Functors //
103  //----------//
104 
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;
114 
115 protected:
116  //
117 private:
118  //
119 public:
120  //
121 private:
127  int m_drawingXRel;
128 
132  int m_cachedXRel;
133 };
134 
135 } // namespace vrv
136 
137 #endif
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Arpeg::IsValidRef
bool IsValidRef(const Object *ref) const override
Custom method for @plist validation.
vrv::Arpeg
This class models the MEI <arpeg> element.
Definition: arpeg.h:26
vrv::Arpeg::GetCrossStaff
Staff * GetCrossStaff()
Get cross staff of the front element if all elements of arpeggio are cross-staff.
vrv::Arpeg::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: arpeg.h:40
vrv::Arpeg::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Arpeg::GetNotes
std::set< Note * > GetNotes()
Get all notes of the arpeggio.
vrv::ControlElement
This class represents elements appearing within a measure.
Definition: controlelement.h:28
vrv::PlistInterface
This class is an interface for elements having a single time point, such as tempo,...
Definition: plistinterface.h:29
vrv::Arpeg::Reset
void Reset() override
Virtual reset method.
vrv::Arpeg::GetDrawingTopBottomNotes
void GetDrawingTopBottomNotes(Note *&top, Note *&bottom)
Set the top and bottom note of the arpeg.
vrv::TimePointInterface
This class is an interface for elements having a single time point, such as tempo,...
Definition: timeinterface.h:35