Verovio
Source code documentation
harm.h
1 // Name: harm.h
3 // Author: Laurent Pugin
4 // Created: 2016
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_HARM_H__
9 #define __VRV_HARM_H__
10 
11 #include "controlelement.h"
12 #include "textdirinterface.h"
13 #include "timeinterface.h"
14 #include "transposition.h"
15 
16 namespace vrv {
17 
18 class TextElement;
19 
20 //----------------------------------------------------------------------------
21 // Harm (harmony)
22 //----------------------------------------------------------------------------
23 
27 class Harm : public ControlElement,
28  public TextListInterface,
29  public TextDirInterface,
30  public TimeSpanningInterface,
31  public AttLang,
32  public AttNNumberLike {
33 public:
38  Harm();
40  virtual ~Harm();
41  Object *Clone() const override { return new Harm(*this); }
42  void Reset() override;
43  std::string GetClassName() const override { return "harm"; }
45 
49  TextDirInterface *GetTextDirInterface() override { return vrv_cast<TextDirInterface *>(this); }
51  const TextDirInterface *GetTextDirInterface() const override { return vrv_cast<const TextDirInterface *>(this); }
52  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
53  const TimePointInterface *GetTimePointInterface() const override
54  {
55  return vrv_cast<const TimePointInterface *>(this);
56  }
57  TimeSpanningInterface *GetTimeSpanningInterface() override { return vrv_cast<TimeSpanningInterface *>(this); }
58  const TimeSpanningInterface *GetTimeSpanningInterface() const override
59  {
60  return vrv_cast<const TimeSpanningInterface *>(this);
61  }
63 
68  bool IsSupportedChild(ClassId classId) override;
69 
73  bool GetRootPitch(TransPitch &pitch, unsigned int &pos) const;
74  void SetRootPitch(const TransPitch &pitch, unsigned int endPos);
75  bool GetBassPitch(TransPitch &pitch) const;
76  void SetBassPitch(const TransPitch &pitch);
77 
78  //----------//
79  // Functors //
80  //----------//
81 
85  FunctorCode Accept(Functor &functor) override;
87  FunctorCode Accept(ConstFunctor &functor) const override;
88  FunctorCode AcceptEnd(Functor &functor) override;
89  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
91 
92 protected:
93  //
94 private:
95  //
96 public:
97  //
98 private:
99  //
100 };
101 
102 } // namespace vrv
103 
104 #endif
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Harm::Reset
void Reset() override
Virtual reset method.
vrv::TextListInterface
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:972
vrv::TextDirInterface
This class is an interface for elements implementing a text directive, such as <dir>,...
Definition: textdirinterface.h:26
vrv::Harm::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Harm::GetRootPitch
bool GetRootPitch(TransPitch &pitch, unsigned int &pos) const
Transposition related.
vrv::Harm::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element (text, rend.
vrv::ControlElement
This class represents elements appearing within a measure.
Definition: controlelement.h:28
vrv::TimeSpanningInterface
This class is an interface for spanning elements, such as slur, hairpin, etc.
Definition: timeinterface.h:141
vrv::Harm
This class models the MEI <harm> element.
Definition: harm.h:27
vrv::Harm::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: harm.h:41