Verovio
Source code documentation
calcalignmentxposfunctor.h
1 // Name: calcalignmentxposfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_CALCALIGNMENTXPOSFUNCTOR_H__
9 #define __VRV_CALCALIGNMENTXPOSFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // CalcAlignmentXPosFunctor
17 //----------------------------------------------------------------------------
18 
24 public:
30  virtual ~CalcAlignmentXPosFunctor() = default;
32 
33  /*
34  * Abstract base implementation
35  */
36  bool ImplementsEndInterface() const override { return false; }
37 
38  /*
39  * Getter and setter for the longest note duration
40  */
42  int GetLongestActualDur() const { return m_longestActualDur; }
43  void SetLongestActualDur(data_DURATION dur) { m_longestActualDur = dur; }
45 
46  /*
47  * Functor interface
48  */
50  FunctorCode VisitAlignment(Alignment *alignment) override;
51  FunctorCode VisitMeasure(Measure *measure) override;
52  FunctorCode VisitMeasureAligner(MeasureAligner *measureAligner) override;
53  FunctorCode VisitSystem(System *system) override;
55 
56 protected:
57  //
58 private:
59  //
60 public:
61  //
62 private:
63  // The previous time position
64  Fraction m_previousTime;
65  // The previous x rel position
66  int m_previousXRel;
67  // Duration of the longest note
68  data_DURATION m_longestActualDur;
69  // The estimated justification ratio of the system
70  double m_estimatedJustificationRatio;
71  // The last alignment that was not timestamp-only
72  Alignment *m_lastNonTimestamp;
73  // The list of timestamp-only alignments that need to be adjusted
74  std::list<Alignment *> m_timestamps;
75  // The MeasureAligner
76  MeasureAligner *m_measureAligner;
77 };
78 
79 } // namespace vrv
80 
81 #endif // __VRV_CALCALIGNMENTXPOSFUNCTOR_H__
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::CalcAlignmentXPosFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: calcalignmentxposfunctor.h:36
vrv::CalcAlignmentXPosFunctor
This class calculates the position of the Alignment.
Definition: calcalignmentxposfunctor.h:23
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151