Verovio
Source code documentation
stem.h
1 // Name: stem.h
3 // Author: Laurent Pugin
4 // Created: 2017
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_STEM_H__
9 #define __VRV_STEM_H__
10 
11 #include "atts_cmn.h"
12 #include "atts_mensural.h"
13 #include "atts_visual.h"
14 #include "layerelement.h"
15 
16 namespace vrv {
17 
18 class Flag;
19 
20 //----------------------------------------------------------------------------
21 // Stem
22 //----------------------------------------------------------------------------
23 
27 class Stem : public LayerElement, public AttGraced, public AttStemVis, public AttVisibility {
28 public:
33  Stem();
35  virtual ~Stem();
36  Object *Clone() const override { return new Stem(*this); }
37  void Reset() override;
38  std::string GetClassName() const override { return "stem"; }
40 
42  bool HasToBeAligned() const override { return true; }
43 
47  bool IsSupportedChild(ClassId classId) override;
48 
52  void FillAttributes(const AttStems &attSource);
53 
57  data_STEMDIRECTION GetDrawingStemDir() const { return m_drawingStemDir; }
59  void SetDrawingStemDir(data_STEMDIRECTION drawingStemDir) { m_drawingStemDir = drawingStemDir; }
60  int GetDrawingStemLen() const { return m_drawingStemLen; }
61  void SetDrawingStemLen(int drawingStemLen) { m_drawingStemLen = drawingStemLen; }
62  // Since Stem does not inherit from AttStems we override LayerElement::GetDrawingStemMod()
63  data_STEMMODIFIER GetDrawingStemMod() const override { return m_drawingStemMod; }
64  bool HasDrawingStemMod() const { return (m_drawingStemMod != STEMMODIFIER_NONE); }
65  void SetDrawingStemMod(data_STEMMODIFIER mod) { m_drawingStemMod = mod; }
66  int GetDrawingStemAdjust() const { return m_drawingStemAdjust; }
67  void SetDrawingStemAdjust(int drawingStemAdjust) { m_drawingStemAdjust = drawingStemAdjust; }
68  int GetStemModRelY() const { return m_stemModRelY; }
70 
74  bool IsVirtual() const { return m_isVirtual; }
76  void IsVirtual(bool isVirtual) { m_isVirtual = isVirtual; }
78 
82  int CompareToElementPosition(const Doc *doc, const LayerElement *otherElement, int margin) const;
83 
87  int CalculateStemModAdjustment(const Doc *doc, const Staff *staff, int flagOffset = 0);
88 
89  //----------//
90  // Functors //
91  //----------//
92 
96  FunctorCode Accept(Functor &functor) override;
98  FunctorCode Accept(ConstFunctor &functor) const override;
99  FunctorCode AcceptEnd(Functor &functor) override;
100  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
102 
103 private:
107  int AdjustSlashes(const Doc *doc, const Staff *staff, int flagOffset) const;
108 
112  void CalculateStemModRelY(const Doc *doc, const Staff *staff);
113 
114 public:
115  //
116 private:
120  data_STEMDIRECTION m_drawingStemDir;
124  int m_drawingStemLen;
128  data_STEMMODIFIER m_drawingStemMod;
132  int m_stemModRelY;
136  int m_drawingStemAdjust;
142  bool m_isVirtual;
143 };
144 
145 } // namespace vrv
146 
147 #endif //__VRV_STEM_H__
vrv::Stem::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: stem.h:42
vrv::Stem::GetDrawingStemMod
data_STEMMODIFIER GetDrawingStemMod() const override
Get the stem mod for the element (if any)
Definition: stem.h:63
vrv::Stem::FillAttributes
void FillAttributes(const AttStems &attSource)
Fill the attributes from the AttStems attribute of the parent note/chord.
vrv::Stem::CalculateStemModAdjustment
int CalculateStemModAdjustment(const Doc *doc, const Staff *staff, int flagOffset=0)
Helper to calculate stem modifier relative Y rel and required adjustment for stem length.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Stem::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Stem::Reset
void Reset() override
Virtual reset method.
vrv::Stem
This class models a stem as a layer element part and as MEI <stem> element.
Definition: stem.h:27
vrv::Stem::CompareToElementPosition
int CompareToElementPosition(const Doc *doc, const LayerElement *otherElement, int margin) const
Helper to adjust overlapping layers for stems.
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Stem::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: stem.h:36
vrv::Stem::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element (only flag supported) to a stem.