Verovio
Source code documentation
metersig.h
1 // Name: metersig.h
3 // Author: Laurent Pugin
4 // Created: 2014
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_METERSIG_H__
9 #define __VRV_METERSIG_H__
10 
11 #include "atts_externalsymbols.h"
12 #include "atts_shared.h"
13 #include "atts_visual.h"
14 #include "layerelement.h"
15 
16 namespace vrv {
17 
18 class ScoreDefInterface;
19 
20 //----------------------------------------------------------------------------
21 // MeterSig
22 //----------------------------------------------------------------------------
23 
27 class MeterSig : public LayerElement,
28  public AttColor,
29  public AttEnclosingChars,
30  public AttExtSymNames,
31  public AttMeterSigLog,
32  public AttMeterSigVis,
33  public AttTypography,
34  public AttVisibility {
35 public:
40  MeterSig();
42  virtual ~MeterSig();
43  Object *Clone() const override { return new MeterSig(*this); }
44  void Reset() override;
45  std::string GetClassName() const override { return "meterSig"; }
47 
49  bool HasToBeAligned() const override { return true; }
50 
52  bool IsScoreDefElement() const override { return (this->GetParent() && this->GetFirstAncestor(SCOREDEF)); }
53 
55  int GetTotalCount() const;
56 
58  int GetSymImplicitUnit() const;
59 
64  data_DURATION GetUnitAsDur() const;
65 
67  char32_t GetSymbolGlyph() const;
68 
70  std::pair<char32_t, char32_t> GetEnclosingGlyphs(bool smallGlpyh) const;
71 
72  //----------//
73  // Functors //
74  //----------//
75 
79  FunctorCode Accept(Functor &functor) override;
81  FunctorCode Accept(ConstFunctor &functor) const override;
82  FunctorCode AcceptEnd(Functor &functor) override;
83  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
85 
86 private:
87  //
88 public:
89  //
90 private:
91  //
92 };
93 
94 } // namespace vrv
95 
96 #endif
vrv::MeterSig::GetSymbolGlyph
char32_t GetSymbolGlyph() const
Retrieves the symbol glyph.
vrv::MeterSig::GetEnclosingGlyphs
std::pair< char32_t, char32_t > GetEnclosingGlyphs(bool smallGlpyh) const
Retrieve parentheses from the enclose attribute.
vrv::Object::GetParent
Object * GetParent()
Get the parent of the Object.
Definition: object.h:379
vrv::MeterSig::GetUnitAsDur
data_DURATION GetUnitAsDur() const
Return the unit (int) as data_DURATION (up to 32).
vrv::MeterSig
This class models the MEI <meterSig> element.
Definition: metersig.h:27
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::MeterSig::GetTotalCount
int GetTotalCount() const
Evaluate additive meter counts.
vrv::MeterSig::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: metersig.h:49
vrv::Object::GetFirstAncestor
Object * GetFirstAncestor(const ClassId classId, int maxSteps=-1)
Return the first ancestor of the specified type.
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::MeterSig::GetSymImplicitUnit
int GetSymImplicitUnit() const
Return the implicit unit according to the sym (if any, return 0 otherwise)
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::MeterSig::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: metersig.h:43
vrv::MeterSig::IsScoreDefElement
bool IsScoreDefElement() const override
Override the method since check is required.
Definition: metersig.h:52
vrv::MeterSig::Reset
void Reset() override
Virtual reset method.
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::MeterSig::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.