Verovio
Source code documentation
adjustlayersfunctor.h
1 // Name: adjustlayersfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTLAYERSFUNCTOR_H__
9 #define __VRV_ADJUSTLAYERSFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustLayersFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
27  AdjustLayersFunctor(Doc *doc, const std::vector<int> &staffNs);
29  virtual ~AdjustLayersFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return true; }
36 
37  /*
38  * Set the ignore dots flag
39  */
40  void IgnoreDots(bool ignoreDots) { m_ignoreDots = ignoreDots; }
41 
42  /*
43  * Functor interface
44  */
46  FunctorCode VisitAlignmentReference(AlignmentReference *alignmentReference) override;
47  FunctorCode VisitAlignmentReferenceEnd(AlignmentReference *alignmentReference) override;
48  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
49  FunctorCode VisitMeasure(Measure *measure) override;
50  FunctorCode VisitScore(Score *score) override;
52 
53 protected:
54  //
55 private:
56  //
57 public:
58  //
59 private:
60  // The list of staffN in the top-level scoreDef
61  std::vector<int> m_staffNs;
62  // The current layerN set in the AlignmentRef (negative values for cross-staff)
63  int m_currentLayerN;
64  // The elements for the previous layer(s)
65  std::vector<LayerElement *> m_previous;
66  // The elements of the current layer
67  std::vector<LayerElement *> m_current;
68  // Indicates whether the element is in unison
69  bool m_unison;
70  // Indicates whether dots should be ignored
71  bool m_ignoreDots;
72  // Indicates whether the element (note) has a stem.sameas note
73  bool m_stemSameas;
74  // The total shift of the current note or chord
75  int m_accumulatedShift;
76 };
77 
78 } // namespace vrv
79 
80 #endif // __VRV_ADJUSTLAYERSFUNCTOR_H__
vrv::AdjustLayersFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustlayersfunctor.h:35
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::AdjustLayersFunctor
This class adjusts the position of notes and chords for multiple layers.
Definition: adjustlayersfunctor.h:22
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151