Verovio
Source code documentation
mordent.h
1 // Name: mordent.h
3 // Author: Klaus Rettinghaus
4 // Created: 2017
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_MORDENT_H__
9 #define __VRV_MORDENT_H__
10 
11 #include "atts_cmn.h"
12 #include "atts_cmnornaments.h"
13 #include "atts_externalsymbols.h"
14 #include "controlelement.h"
15 #include "timeinterface.h"
16 
17 namespace vrv {
18 
19 //----------------------------------------------------------------------------
20 // Mordent
21 //----------------------------------------------------------------------------
22 
26 class Mordent : public ControlElement,
27  public TimePointInterface,
28  public AttExtSymAuth,
29  public AttExtSymNames,
30  public AttOrnamentAccid,
31  public AttPlacementRelStaff,
32  public AttMordentLog {
33 public:
38  Mordent();
40  virtual ~Mordent();
41  Object *Clone() const override { return new Mordent(*this); }
42  void Reset() override;
43  std::string GetClassName() const override { return "mordent"; }
45 
49  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
51  const TimePointInterface *GetTimePointInterface() const override
52  {
53  return vrv_cast<const TimePointInterface *>(this);
54  }
56 
60  char32_t GetMordentGlyph() const;
61 
62  //----------//
63  // Functors //
64  //----------//
65 
69  FunctorCode Accept(Functor &functor) override;
71  FunctorCode Accept(ConstFunctor &functor) const override;
72  FunctorCode AcceptEnd(Functor &functor) override;
73  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
75 
76 protected:
77  //
78 private:
79  //
80 public:
81  //
82 private:
83  //
84 };
85 
86 } // namespace vrv
87 
88 #endif
vrv::Mordent::GetMordentGlyph
char32_t GetMordentGlyph() const
Get the SMuFL glyph for the mordent based on type, long attribute or glyph.num.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Mordent::Reset
void Reset() override
Virtual reset method.
vrv::Mordent::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Mordent
This class models the MEI <mordent> element.
Definition: mordent.h:26
vrv::Mordent::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: mordent.h:41
vrv::ControlElement
This class represents elements appearing within a measure.
Definition: controlelement.h:28
vrv::TimePointInterface
This class is an interface for elements having a single time point, such as tempo,...
Definition: timeinterface.h:35