Verovio
Source code documentation
repeatmark.h
1 // Name: repeatmark.h
3 // Author: Laurent Pugin
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_REPEATMARK_H__
9 #define __VRV_REPEATMARK_H__
10 
11 #include "atts_cmn.h"
12 #include "atts_externalsymbols.h"
13 #include "controlelement.h"
14 #include "textdirinterface.h"
15 #include "timeinterface.h"
16 
17 namespace vrv {
18 
19 //----------------------------------------------------------------------------
20 // RepeatMark
21 //----------------------------------------------------------------------------
22 
26 class RepeatMark : public ControlElement,
27  public TextListInterface,
28  public TextDirInterface,
29  public TimePointInterface,
30  public AttExtSymAuth,
31  public AttExtSymNames,
32  public AttRepeatMarkLog {
33 public:
38  RepeatMark();
40  virtual ~RepeatMark();
41  Object *Clone() const override { return new RepeatMark(*this); }
42  void Reset() override;
43  std::string GetClassName() const override { return "repeatMark"; }
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  }
58 
63  bool IsSupportedChild(ClassId classId) override;
64 
68  char32_t GetMarkGlyph() const;
69 
70  //----------//
71  // Functors //
72  //----------//
73 
77  FunctorCode Accept(Functor &functor) override;
79  FunctorCode Accept(ConstFunctor &functor) const override;
80  FunctorCode AcceptEnd(Functor &functor) override;
81  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
83 
84 protected:
85  //
86 private:
87  //
88 public:
89  //
90 private:
91  //
92 };
93 
94 } // namespace vrv
95 
96 #endif
vrv::RepeatMark
This class models the MEI <ornam> element.
Definition: repeatmark.h:26
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::RepeatMark::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::RepeatMark::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::RepeatMark::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: repeatmark.h:41
vrv::RepeatMark::GetMarkGlyph
char32_t GetMarkGlyph() const
Get the SMuFL glyph for the repeatMark based on func or glyph.num.
vrv::ControlElement
This class represents elements appearing within a measure.
Definition: controlelement.h:28
vrv::RepeatMark::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element (text, rend.
vrv::TimePointInterface
This class is an interface for elements having a single time point, such as tempo,...
Definition: timeinterface.h:35