 |
Verovio
Source code documentation
|
8 #ifndef __VRV_FINDLAYERELEMENTSFUNCTOR_H__
9 #define __VRV_FINDLAYERELEMENTSFUNCTOR_H__
15 #include "alignfunctor.h"
49 std::set<int> GetLayers()
const {
return m_layers; }
55 FunctorCode VisitLayerElement(
const LayerElement *layerElement)
override;
56 FunctorCode VisitMensur(
const Mensur *mensur)
override;
57 FunctorCode VisitMeterSig(
const MeterSig *meterSig)
override;
72 std::set<int> m_layers;
74 AlignMeterParams m_meterParams;
107 void ConsiderAllLayersButCurrent() { m_allLayersButCurrent =
true; }
112 ListOfConstObjects GetElements()
const {
return m_elements; }
118 FunctorCode VisitLayerElement(
const LayerElement *layerElement)
override;
133 ListOfConstObjects m_elements;
135 AlignMeterParams m_meterParams;
137 const Layer *m_layer;
139 bool m_allLayersButCurrent;
168 void SetMinMaxPos(
int minPos,
int maxPos);
173 void SetMinMaxLayerN(
int minLayerN,
int maxLayerN);
178 void SetStaffNs(
const std::set<int> &staffNs) { m_staffNs = staffNs; }
183 void SetClassIds(
const std::vector<ClassId> &classIds) { m_classIds = classIds; }
188 void ClearElements() { m_elements.clear(); }
193 std::vector<const LayerElement *> GetElements()
const {
return m_elements; }
199 FunctorCode VisitLayerElement(
const LayerElement *layerElement)
override;
200 FunctorCode VisitMeasure(
const Measure *measure)
override;
215 std::set<int> m_staffNs;
221 const TimeSpanningInterface *m_interface;
223 std::vector<ClassId> m_classIds;
225 std::vector<const LayerElement *> m_elements;
256 const LayerElement *GetRelativeElement()
const {
return m_relativeElement; }
262 FunctorCode VisitLayerElement(
const LayerElement *layerElement)
override;
273 const LayerElement *m_relativeElement;
275 int m_initialElementIndex;
277 bool m_isInNeighboringLayer;
282 #endif // __VRV_FINDLAYERELEMENTSFUNCTOR_H__
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findlayerelementsfunctor.h:39
This class goes through all layer elements of the layer and returns the next/previous element (depend...
Definition: findlayerelementsfunctor.h:238
This class models the MEI <meterSig> element.
Definition: metersig.h:27
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findlayerelementsfunctor.h:251
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findlayerelementsfunctor.h:97
Definition: fraction.h:19
This class models the MEI <mensur> element.
Definition: mensur.h:27
This class retrieves all layer elements between two horizontal positions.
Definition: findlayerelementsfunctor.h:150
This class collects all layers which appear in the given time / duration.
Definition: findlayerelementsfunctor.h:26
This abstract class is the base class for all const functors.
Definition: functor.h:126
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findlayerelementsfunctor.h:163
This class collects all layer elements which appear in the given time / duration.
Definition: findlayerelementsfunctor.h:84
This class is an interface for spanning elements, such as slur, hairpin, etc.
Definition: timeinterface.h:141
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
This class represents a layer in a laid-out score (Doc).
Definition: layer.h:33