 |
Verovio
Source code documentation
|
12 #include "atts_mensural.h"
13 #include "atts_visual.h"
14 #include "layerelement.h"
27 class Stem :
public LayerElement,
public AttGraced,
public AttStemVis,
public AttVisibility {
37 void Reset()
override;
38 std::string GetClassName()
const override {
return "stem"; }
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; }
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; }
74 bool IsVirtual()
const {
return m_isVirtual; }
76 void IsVirtual(
bool isVirtual) { m_isVirtual = isVirtual; }
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;
107 int AdjustSlashes(
const Doc *doc,
const Staff *staff,
int flagOffset)
const;
112 void CalculateStemModRelY(
const Doc *doc,
const Staff *staff);
120 data_STEMDIRECTION m_drawingStemDir;
124 int m_drawingStemLen;
128 data_STEMMODIFIER m_drawingStemMod;
136 int m_drawingStemAdjust;
147 #endif //__VRV_STEM_H__
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: stem.h:42
data_STEMMODIFIER GetDrawingStemMod() const override
Get the stem mod for the element (if any)
Definition: stem.h:63
void FillAttributes(const AttStems &attSource)
Fill the attributes from the AttStems attribute of the parent note/chord.
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.
This class represents a basic object.
Definition: object.h:59
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
void Reset() override
Virtual reset method.
This class models a stem as a layer element part and as MEI <stem> element.
Definition: stem.h:27
int CompareToElementPosition(const Doc *doc, const LayerElement *otherElement, int margin) const
Helper to adjust overlapping layers for stems.
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
Object * Clone() const override
Method call for copying child classes.
Definition: stem.h:36
bool IsSupportedChild(ClassId classId) override
Add an element (only flag supported) to a stem.