Verovio
Source code documentation
mensur.h
1 // Name: mensur.h
3 // Author: Laurent Pugin
4 // Created: 2011
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_MENSUR_H__
9 #define __VRV_MENSUR_H__
10 
11 #include "atts_mensural.h"
12 #include "atts_shared.h"
13 #include "atts_visual.h"
14 #include "layerelement.h"
15 
16 namespace vrv {
17 
18 //----------------------------------------------------------------------------
19 // Mensur
20 //----------------------------------------------------------------------------
21 
22 class ScoreDefInterface;
23 
27 class Mensur : public LayerElement,
28  public AttColor,
29  public AttCue,
30  public AttDurationRatio,
31  public AttMensuralShared,
32  public AttMensurVis,
33  public AttSlashCount,
34  public AttStaffLoc {
35 public:
40  Mensur();
42  virtual ~Mensur();
43  Object *Clone() const override { return new Mensur(*this); }
44  void Reset() override;
45  std::string GetClassName() const override { return "mensur"; }
47 
49  bool HasToBeAligned() const override { return true; }
50 
52  bool IsScoreDefElement() const override { return (this->GetParent() && this->GetFirstAncestor(SCOREDEF)); }
53 
54  //----------//
55  // Functors //
56  //----------//
57 
61  FunctorCode Accept(Functor &functor) override;
63  FunctorCode Accept(ConstFunctor &functor) const override;
64  FunctorCode AcceptEnd(Functor &functor) override;
65  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
67 
68 private:
69  //
70 public:
71  //----------------//
72  // Static members //
73  //----------------//
74 
79  static const int s_num;
84  static const int s_numBase;
85 
86 private:
87 };
88 
89 } // namespace vrv
90 
91 #endif
vrv::Object::GetParent
Object * GetParent()
Get the parent of the Object.
Definition: object.h:379
vrv::Mensur::s_numBase
static const int s_numBase
Static member for setting a value from a controller.
Definition: mensur.h:84
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Mensur::s_num
static const int s_num
Static member for setting a value from a controller.
Definition: mensur.h:79
vrv::Object::GetFirstAncestor
Object * GetFirstAncestor(const ClassId classId, int maxSteps=-1)
Return the first ancestor of the specified type.
vrv::Mensur::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Mensur
This class models the MEI <mensur> element.
Definition: mensur.h:27
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::Mensur::IsScoreDefElement
bool IsScoreDefElement() const override
Override the method since check is required.
Definition: mensur.h:52
vrv::Mensur::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: mensur.h:43
vrv::Mensur::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::Mensur::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: mensur.h:49