Verovio
Source code documentation
ligature.h
1 // Name: ligature.h
3 // Author: Donald Byrd
4 // Created: 2016
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_LIGATURE_H__
9 #define __VRV_LIGATURE_H__
10 
11 #include "atts_mensural.h"
12 #include "drawinginterface.h"
13 #include "layerelement.h"
14 
15 namespace vrv {
16 
17 //----------------------------------------------------------------------------
18 // Ligature
19 //----------------------------------------------------------------------------
20 
28 class Ligature : public LayerElement, public ObjectListInterface, public AttLigatureVis {
29 public:
34  Ligature();
36  virtual ~Ligature();
37  Object *Clone() const override { return new Ligature(*this); }
38  void Reset() override;
39  std::string GetClassName() const override { return "ligature"; }
41 
43  bool HasToBeAligned() const override { return true; }
44 
48  bool IsSupportedChild(ClassId classId) override;
49 
53  Note *GetFirstNote();
55  const Note *GetFirstNote() const;
56  Note *GetLastNote();
57  const Note *GetLastNote() const;
59 
63  int GetDrawingNoteShape(const Note *note) const;
64 
65  //----------//
66  // Functors //
67  //----------//
68 
72  FunctorCode Accept(Functor &functor) override;
74  FunctorCode Accept(ConstFunctor &functor) const override;
75  FunctorCode AcceptEnd(Functor &functor) override;
76  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
78 
79 protected:
83  void FilterList(ListOfConstObjects &childList) const override;
84 
85 public:
89  std::vector<int> m_drawingShapes;
90 };
91 
92 } // namespace vrv
93 
94 #endif
vrv::Ligature::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: ligature.h:43
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Ligature::Reset
void Reset() override
Virtual reset method.
vrv::Ligature
This class represents a collection of notes in the same layer with successive onset times,...
Definition: ligature.h:28
vrv::Ligature::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add children (notes or editorial markup)
vrv::Ligature::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: ligature.h:37
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::ObjectListInterface
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:873
vrv::Note
This class models the MEI <note> element.
Definition: note.h:47
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::Ligature::FilterList
void FilterList(ListOfConstObjects &childList) const override
Filter the flat list and keep only Note elements.
vrv::Ligature::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Ligature::GetFirstNote
Note * GetFirstNote()
Return the first or last note.
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46