 |
Verovio
Source code documentation
|
8 #ifndef __VRV_BARLINE_H__
9 #define __VRV_BARLINE_H__
11 #include "atts_shared.h"
12 #include "atts_visual.h"
13 #include "layerelement.h"
20 enum class BarLinePosition { None, Left, Right };
33 public AttNNumberLike,
34 public AttVisibility {
45 void Reset()
override;
46 std::string GetClassName()
const override {
return "barLine"; }
61 bool HasRepetitionDots()
const;
66 BarLinePosition GetPosition()
const {
return m_position; }
68 void SetPosition(BarLinePosition position) { m_position = position; }
80 std::pair<bool, double> GetLengthFromContext(
const StaffDef *staffDef)
const;
82 std::pair<bool, data_BARMETHOD> GetMethodFromContext(
const StaffDef *staffDef)
const;
83 std::pair<bool, int> GetPlaceFromContext(
const StaffDef *staffDef)
const;
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;
106 BarLinePosition m_position;
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
Object * Clone() const override
Method call for copying child classes.
Definition: barline.h:44
bool SetAlignment(Alignment *alignment)
Use to set the alignment for the Measure BarLine members.
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
This class represents a basic object.
Definition: object.h:59
This class models the MEI <barLine> element.
Definition: barline.h:29
bool IsDrawnThrough(const StaffGrp *staffGrp) const
Check if the barline is drawn through.
This class stores an alignment position elements will point to.
Definition: horizontalaligner.h:73
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: barline.h:50
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46