Verovio
Source code documentation
adjustsylspacingfunctor.h
1 // Name: adjustsylspacingfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTSYLSPACINGFUNCTOR_H__
9 #define __VRV_ADJUSTSYLSPACINGFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustSylSpacingFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
29  virtual ~AdjustSylSpacingFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return true; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitMeasureEnd(Measure *measure) override;
42  FunctorCode VisitStaff(Staff *staff) override;
43  FunctorCode VisitSystem(System *system) override;
44  FunctorCode VisitSystemEnd(System *system) override;
45  FunctorCode VisitVerse(Verse *verse) override;
47 
48 protected:
49  //
50 private:
51  //
52 public:
53  //
54 private:
55  // List of adjustment tuples (Alignment start|Alignment end|distance)
56  ArrayOfAdjustmentTuples m_overlappingSyl;
57  // The previous verse
58  Verse *m_previousVerse;
59  // The previous syl
60  Syl *m_lastSyl;
61  // The previous measure
62  Measure *m_previousMeasure;
63  // The current LabelAbbr
64  LabelAbbr *m_currentLabelAbbr;
65  // Amount of free space
66  int m_freeSpace;
67  // The staff size
68  int m_staffSize;
69 };
70 
71 } // namespace vrv
72 
73 #endif // __VRV_ADJUSTSYLSPACINGFUNCTOR_H__
vrv::LabelAbbr
This class models the MEI <labelAbbr> element.
Definition: labelabbr.h:22
vrv::Staff
This class represents a staff in a laid-out score (Doc).
Definition: staff.h:102
vrv::Measure
This class represents a measure in a page-based score (Doc).
Definition: measure.h:37
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::Verse
Definition: verse.h:23
vrv::AdjustSylSpacingFunctor
This class adjusts the spacing of the syl processing verse by verse.
Definition: adjustsylspacingfunctor.h:22
vrv::System
This class represents a system in a laid-out score (Doc).
Definition: system.h:36
vrv::Syl
Syl is a TimeSpanningInterface for managing syllable connectors.
Definition: syl.h:31
vrv::AdjustSylSpacingFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustsylspacingfunctor.h:35
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151