Verovio
Source code documentation
adjustharmgrpsspacingfunctor.h
1 // Name: adjustharmgrpsspacingfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTHARMGRPSSPACINGFUNCTOR_H__
9 #define __VRV_ADJUSTHARMGRPSSPACINGFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustHarmGrpsSpacingFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
29  virtual ~AdjustHarmGrpsSpacingFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return true; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitHarm(Harm *harm) override;
42  FunctorCode VisitMeasureEnd(Measure *measure) override;
43  FunctorCode VisitSystem(System *system) override;
44  FunctorCode VisitSystemEnd(System *system) override;
46 
47 protected:
48  //
49 private:
50  //
51 public:
52  //
53 private:
54  // The grpIds of harms in the system
55  std::vector<int> m_grpIds;
56  // The current grp id (0 for the first pass)
57  int m_currentGrp;
58  // The adjustment tuples (Alignment start|Alignment end|distance)
59  ArrayOfAdjustmentTuples m_overlappingHarm;
60  // The previous harm positioner (if any)
61  FloatingPositioner *m_previousHarmPositioner;
62  // The previous harm start (if any)
63  LayerElement *m_previousHarmStart;
64  // The previous measure (if any)
65  Measure *m_previousMeasure;
66  // The current system
67  System *m_currentSystem;
68 };
69 
70 } // namespace vrv
71 
72 #endif // __VRV_ADJUSTHARMGRPSSPACINGFUNCTOR_H__
vrv::Measure
This class represents a measure in a page-based score (Doc).
Definition: measure.h:37
vrv::AdjustHarmGrpsSpacingFunctor
This class adjusts the horizontal position of harms by groups in order to avoid overlapping.
Definition: adjustharmgrpsspacingfunctor.h:22
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::AdjustHarmGrpsSpacingFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustharmgrpsspacingfunctor.h:35
vrv::System
This class represents a system in a laid-out score (Doc).
Definition: system.h:36
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Harm
This class models the MEI <harm> element.
Definition: harm.h:27
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151
vrv::FloatingPositioner
This class represents a basic object in the layout domain.
Definition: floatingobject.h:165