Verovio
Source code documentation
tabdursym.h
1 // Name: tabdursym.h
3 // Author: Laurent Pugin
4 // Created: 2019
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_TABDURSYM_H__
9 #define __VRV_TABDURSYM_H__
10 
11 #include "atts_shared.h"
12 #include "atts_stringtab.h"
13 #include "drawinginterface.h"
14 #include "layerelement.h"
15 
16 namespace vrv {
17 
18 //----------------------------------------------------------------------------
19 // TabDurSym
20 //----------------------------------------------------------------------------
21 
25 class TabDurSym : public LayerElement,
27  public AttNNumberLike,
28  public AttStringtab,
29  public AttVisualOffsetVo {
30 public:
35  TabDurSym();
37  virtual ~TabDurSym();
38  Object *Clone() const override { return new TabDurSym(*this); }
39  void Reset() override;
40  std::string GetClassName() const override { return "tabDurSym"; }
42 
46  StemmedDrawingInterface *GetStemmedDrawingInterface() override { return vrv_cast<StemmedDrawingInterface *>(this); }
48  const StemmedDrawingInterface *GetStemmedDrawingInterface() const override
49  {
50  return vrv_cast<const StemmedDrawingInterface *>(this);
51  }
53 
55  bool HasToBeAligned() const override { return true; }
56 
60  bool IsSupportedChild(ClassId classId) override;
61 
65  void AddChild(Object *object) override;
66 
71  Point GetStemUpSE(const Doc *doc, int staffSize, bool isCueSize) const override;
73  Point GetStemDownNW(const Doc *doc, int staffSize, bool isCueSize) const override;
74  int CalcStemLenInThirdUnits(const Staff *staff, data_STEMDIRECTION stemDir) const override;
76 
84  void AdjustDrawingYRel(const Staff *staff, const Doc *doc);
85 
86  //----------//
87  // Functors //
88  //----------//
89 
93  FunctorCode Accept(Functor &functor) override;
95  FunctorCode Accept(ConstFunctor &functor) const override;
96  FunctorCode AcceptEnd(Functor &functor) override;
97  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
99 
100 protected:
101  //
102 private:
103  //
104 public:
105  //
106 private:
107  //
108 };
109 
110 } // namespace vrv
111 
112 #endif
vrv::Staff
This class represents a staff in a laid-out score (Doc).
Definition: staff.h:102
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::TabDurSym
This class models the MEI <tabDurSym> element.
Definition: tabdursym.h:25
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::TabDurSym::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element to a element.
vrv::TabDurSym::AddChild
void AddChild(Object *object) override
Overwritten method for note.
vrv::TabDurSym::AdjustDrawingYRel
void AdjustDrawingYRel(const Staff *staff, const Doc *doc)
Adjust the drawing y relative value for TabDurSym placed below the staff.
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::TabDurSym::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::StemmedDrawingInterface
This class is an interface for MEI stemmed element.
Definition: drawinginterface.h:353
vrv::TabDurSym::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: tabdursym.h:55
vrv::TabDurSym::GetStemUpSE
Point GetStemUpSE(const Doc *doc, int staffSize, bool isCueSize) const override
Get the stem up / stem down attachment point.
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Point
Simple class for representing points.
Definition: devicecontextbase.h:203
vrv::TabDurSym::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: tabdursym.h:38