Verovio
Source code documentation
dynam.h
1 // Name: dynam.h
3 // Author: Laurent Pugin
4 // Created: 2016
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_DYNAM_H__
9 #define __VRV_DYNAM_H__
10 
11 #include "atts_midi.h"
12 #include "controlelement.h"
13 #include "textdirinterface.h"
14 #include "timeinterface.h"
15 
16 namespace vrv {
17 
18 class TextElement;
19 
20 //----------------------------------------------------------------------------
21 // Dynam
22 //----------------------------------------------------------------------------
23 
24 class Dynam : public ControlElement,
25  public TextListInterface,
26  public TextDirInterface,
27  public TimeSpanningInterface,
28  public AttEnclosingChars,
29  public AttExtender,
30  public AttLineRendBase,
31  public AttMidiValue,
32  public AttMidiValue2,
33  public AttVerticalGroup {
34 public:
39  Dynam();
41  virtual ~Dynam();
42  Object *Clone() const override { return new Dynam(*this); }
43  void Reset() override;
44  std::string GetClassName() const override { return "dynam"; }
46 
50  TextDirInterface *GetTextDirInterface() override { return vrv_cast<TextDirInterface *>(this); }
52  const TextDirInterface *GetTextDirInterface() const override { return vrv_cast<const TextDirInterface *>(this); }
53  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
54  const TimePointInterface *GetTimePointInterface() const override
55  {
56  return vrv_cast<const TimePointInterface *>(this);
57  }
58  TimeSpanningInterface *GetTimeSpanningInterface() override { return vrv_cast<TimeSpanningInterface *>(this); }
59  const TimeSpanningInterface *GetTimeSpanningInterface() const override
60  {
61  return vrv_cast<const TimeSpanningInterface *>(this);
62  }
64 
69  bool IsSupportedChild(ClassId classId) override;
70 
74  bool IsSymbolOnly() const;
75 
80  std::u32string GetSymbolStr(const bool singleGlyphs) const;
81 
85  bool IsExtenderElement() const override { return GetExtender() == BOOLEAN_true; }
86 
90  std::pair<char32_t, char32_t> GetEnclosingGlyphs() const;
91 
92  //----------------//
93  // Static methods //
94  //----------------//
95 
96  static bool GetSymbolsInStr(std::u32string str, ArrayOfStringDynamTypePairs &tokens);
97 
98  static bool IsSymbolOnly(const std::u32string &str);
99 
100  static std::u32string GetSymbolStr(const std::u32string &str, const bool singleGlyphs);
101 
102  //----------//
103  // Functors //
104  //----------//
105 
109  FunctorCode Accept(Functor &functor) override;
111  FunctorCode Accept(ConstFunctor &functor) const override;
112  FunctorCode AcceptEnd(Functor &functor) override;
113  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
115 
116 protected:
117  //
118 private:
119  //
120 public:
121  //
122 private:
124  mutable std::u32string m_symbolStr;
125 };
126 
127 } // namespace vrv
128 
129 #endif
vrv::Dynam::IsSymbolOnly
bool IsSymbolOnly() const
Return true if the dynam text is only composed of f, p, r, z, etc.
vrv::Dynam::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: dynam.h:42
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Dynam::Reset
void Reset() override
Virtual reset method.
vrv::Dynam::GetSymbolStr
std::u32string GetSymbolStr(const bool singleGlyphs) const
Return the SMuFL str for the dynamic symbol.
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::TextListInterface
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:972
vrv::Dynam::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::TextDirInterface
This class is an interface for elements implementing a text directive, such as <dir>,...
Definition: textdirinterface.h:26
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::Dynam::IsExtenderElement
bool IsExtenderElement() const override
See FloatingObject::IsExtenderElement.
Definition: dynam.h:85
vrv::Dynam
Definition: dynam.h:24
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::Dynam::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element (text, rend.
vrv::Dynam::GetEnclosingGlyphs
std::pair< char32_t, char32_t > GetEnclosingGlyphs() const
Retrieve parentheses / brackets from the enclose attribute.