Verovio
Source code documentation
miscfunctor.h
1 // Name: miscfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_MISCFUNCTOR_H__
9 #define __VRV_MISCFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // ApplyPPUFactorFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
27  ApplyPPUFactorFunctor(Page *page = NULL);
29  virtual ~ApplyPPUFactorFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return false; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
42  FunctorCode VisitMeasure(Measure *measure) override;
43  FunctorCode VisitPage(Page *page) override;
44  FunctorCode VisitStaff(Staff *staff) override;
45  FunctorCode VisitSurface(Surface *surface) override;
46  FunctorCode VisitSystem(System *system) override;
47  FunctorCode VisitZone(Zone *zone) override;
49 
50 protected:
51  //
52 private:
53  //
54 public:
55  //
56 private:
57  // The current page
58  Page *m_page;
59 };
60 
61 //----------------------------------------------------------------------------
62 // GetAlignmentLeftRightFunctor
63 //----------------------------------------------------------------------------
64 
69 public:
75  virtual ~GetAlignmentLeftRightFunctor() = default;
77 
78  /*
79  * Abstract base implementation
80  */
81  bool ImplementsEndInterface() const override { return false; }
82 
83  /*
84  * Set the classes to exclude
85  */
86  void ExcludeClasses(const std::vector<ClassId> &excludeClasses) { m_excludeClasses = excludeClasses; }
87 
88  /*
89  * Get the minimum left and maximum right
90  */
92  int GetMinLeft() const { return m_minLeft; }
93  int GetMaxRight() const { return m_maxRight; }
95 
96  /*
97  * Functor interface
98  */
100  FunctorCode VisitObject(const Object *object) override;
102 
103 protected:
104  //
105 private:
106  //
107 public:
108  //
109 private:
110  // The min left and right
111  int m_minLeft;
112  int m_maxRight;
113  // The classes which are ignored
114  std::vector<ClassId> m_excludeClasses;
115 };
116 
117 //----------------------------------------------------------------------------
118 // InitProcessingListsFunctor
119 //----------------------------------------------------------------------------
120 
125 public:
131  virtual ~InitProcessingListsFunctor() = default;
133 
134  /*
135  * Abstract base implementation
136  */
137  bool ImplementsEndInterface() const override { return false; }
138 
139  /*
140  * Getter for the int trees
141  */
143  const IntTree &GetLayerTree() const { return m_layerTree; }
144  const IntTree &GetVerseTree() const { return m_verseTree; }
146 
147  /*
148  * Functor interface
149  */
151  FunctorCode VisitLayer(const Layer *layer) override;
152  FunctorCode VisitVerse(const Verse *verse) override;
154 
155 protected:
156  //
157 private:
158  //
159 public:
160  //
161 private:
162  // The IntTree for staff/layer
163  IntTree m_layerTree;
164  // The IntTree for staff/layer/verse
165  IntTree m_verseTree;
166 };
167 
168 //----------------------------------------------------------------------------
169 // ReorderByXPosFunctor
170 //----------------------------------------------------------------------------
171 
176 public:
182  virtual ~ReorderByXPosFunctor() = default;
184 
185  /*
186  * Abstract base implementation
187  */
188  bool ImplementsEndInterface() const override { return false; }
189 
190  /*
191  * Functor interface
192  */
194  FunctorCode VisitObject(Object *object) override;
196 
197 protected:
198  //
199 private:
200  //
201 public:
202  //
203 private:
204  //
205 };
206 
207 } // namespace vrv
208 
209 #endif // __VRV_MISCFUNCTOR_H__
vrv::Staff
This class represents a staff in a laid-out score (Doc).
Definition: staff.h:102
vrv::InitProcessingListsFunctor
This class builds a tree of ints (IntTree) with the staff/layer/verse numbers.
Definition: miscfunctor.h:124
vrv::Measure
This class represents a measure in a page-based score (Doc).
Definition: measure.h:37
vrv::GetAlignmentLeftRightFunctor
This class retrieves the minimum left and maximum right for an alignment.
Definition: miscfunctor.h:68
vrv::Zone
Implements the zone element in MEI.
Definition: zone.h:30
vrv::Surface
Implements the surface element in MEI.
Definition: surface.h:30
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::ApplyPPUFactorFunctor
This class applies the Pixel Per Unit factor of the page to its elements.
Definition: miscfunctor.h:22
vrv::ApplyPPUFactorFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: miscfunctor.h:35
vrv::ReorderByXPosFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: miscfunctor.h:188
vrv::ReorderByXPosFunctor
This class reorders elements by x-position.
Definition: miscfunctor.h:175
vrv::InitProcessingListsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: miscfunctor.h:137
vrv::IntTree
Generic int map recursive structure for storing hierachy of values For example, we want to process al...
Definition: vrvdef.h:419
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::Page
This class represents a page in a laid-out score (Doc).
Definition: page.h:31
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::System
This class represents a system in a laid-out score (Doc).
Definition: system.h:36
vrv::GetAlignmentLeftRightFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: miscfunctor.h:81
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46