Verovio
Source code documentation
divline.h
1 // Name: divline.h
3 // Author: Yinan Zhou
4 // Created: 2021
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_DIVLINE_H__
9 #define __VRV_DIVLINE_H__
10 
11 #include "atts_externalsymbols.h"
12 #include "atts_neumes.h"
13 #include "atts_shared.h"
14 #include "layerelement.h"
15 
16 namespace vrv {
17 
18 //----------------------------------------------------------------------------
19 // DivLine
20 //----------------------------------------------------------------------------
21 
25 class DivLine : public LayerElement,
26  public AttColor,
27  public AttDivLineLog,
28  public AttExtSymAuth,
29  public AttExtSymNames,
30  public AttNNumberLike,
31  public AttVisibility {
32 public:
37  DivLine();
39  virtual ~DivLine();
40  Object *Clone() const override { return new DivLine(*this); }
41  void Reset() override;
42  std::string GetClassName() const override { return "divLine"; }
44 
46  bool HasToBeAligned() const override { return true; }
47 
52  bool SetAlignment(Alignment *alignment);
53 
57  std::wstring GetSymbolStr() const;
58 
62  static wchar_t GetDivLineGlyph(divLineLog_FORM);
63 
64 private:
65  //
66 public:
67  //
68 private:
69 };
70 
71 //----------------------------------------------------------------------------
72 // DivLineAttr
73 //----------------------------------------------------------------------------
74 
78 class DivLineAttr : public DivLine {
79 public:
84  DivLineAttr();
86  virtual ~DivLineAttr();
87  Object *Clone() const override { return new DivLineAttr(*this); }
88  std::string GetClassName() const override { return "divLineAttr"; }
90 
91  // void SetLeft() { m_isLeft = true; }
92 
93 private:
94  //
95 public:
96  //
97 private:
99  // bool m_isLeft;
100 };
101 
102 } // namespace vrv
103 
104 #endif
vrv::DivLine
This class models the MEI <divLine> element.
Definition: divline.h:25
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::DivLineAttr::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: divline.h:87
vrv::DivLine::SetAlignment
bool SetAlignment(Alignment *alignment)
Use to set the alignment for the Measure BarLine members.
vrv::Alignment
This class stores an alignment position elements will point to.
Definition: horizontalaligner.h:73
vrv::DivLine::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: divline.h:40
vrv::DivLine::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::DivLineAttr
This class models the divLine related attributes of a MEI measure.
Definition: divline.h:78
vrv::DivLine::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: divline.h:46
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::DivLine::GetSymbolStr
std::wstring GetSymbolStr() const
Retrieve SMuFL string for the divLine.