Verovio
Source code documentation
syllable.h
1 // Name: syllable.h
3 // Author: Andrew Tran
4 // Created: 2017
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_SYLLABLE_H__
9 #define __VRV_SYLLABLE_H__
10 
11 #include "atts_shared.h"
12 #include "layerelement.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // Syllable
18 //----------------------------------------------------------------------------
19 
20 class ScoreDefInterface;
21 
25 class Syllable : public LayerElement, public ObjectListInterface, public AttColor, public AttSlashCount {
26 public:
31  Syllable();
33  void Init();
34  virtual ~Syllable();
35  Object *Clone() const override { return new Syllable(*this); }
36  void Reset() override;
37  std::string GetClassName() const override { return "syllable"; }
39 
44  bool IsSupportedChild(ClassId classId) override;
45 
47  bool HasToBeAligned() const override { return true; }
48 
53  bool MarkupAddSyl();
54 
58  FunctorCode Accept(Functor &functor) override;
60  FunctorCode Accept(ConstFunctor &functor) const override;
61  FunctorCode AcceptEnd(Functor &functor) override;
62  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
64 
65 private:
66  //
67 public:
68 private:
69 };
70 
71 } // namespace vrv
72 
73 #endif
vrv::Syllable::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: syllable.h:35
vrv::Syllable
This class models the MEI <mensur> element.
Definition: syllable.h:25
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Syllable::MarkupAddSyl
bool MarkupAddSyl()
Add a default syl to this syllable if one does not exist.
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::Syllable::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Syllable::Reset
void Reset() override
Virtual reset method.
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::Syllable::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: syllable.h:47
vrv::Syllable::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element (a note or a rest) to a syllable.
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46