Verovio
Source code documentation
adjustxoverflowfunctor.h
1 // Name: adjustxoverflowfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTXOVERFLOWFUNCTOR_H__
9 #define __VRV_ADJUSTXOVERFLOWFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustXOverflowFunctor
17 //----------------------------------------------------------------------------
18 
24 public:
28  AdjustXOverflowFunctor(int margin);
30  virtual ~AdjustXOverflowFunctor() = default;
32 
33  /*
34  * Abstract base implementation
35  */
36  bool ImplementsEndInterface() const override { return true; }
37 
38  /*
39  * Getter and setter for various properties
40  */
42  void SetCurrentSystem(System *system) { m_currentSystem = system; }
43  void SetLastMeasure(Measure *measure) { m_lastMeasure = measure; }
44  FloatingPositioner *GetWidestPositioner() const { return m_currentWidest; }
46 
47  /*
48  * Functor interface
49  */
51  FunctorCode VisitControlElement(ControlElement *controlElement) override;
52  FunctorCode VisitMeasure(Measure *measure) override;
53  FunctorCode VisitSystem(System *system) override;
54  FunctorCode VisitSystemEnd(System *system) override;
56 
57 protected:
58  //
59 private:
60  //
61 public:
62  //
63 private:
64  // The current system
65  System *m_currentSystem;
66  // The last measure
67  Measure *m_lastMeasure;
68  // The current widest control event
69  FloatingPositioner *m_currentWidest;
70  // The margin
71  int m_margin;
72 };
73 
74 } // namespace vrv
75 
76 #endif // __VRV_ADJUSTXOVERFLOWFUNCTOR_H__
vrv::AdjustXOverflowFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustxoverflowfunctor.h:36
vrv::AdjustXOverflowFunctor
This class adjusts the X position of right barlines in order to make sure there is no text content ov...
Definition: adjustxoverflowfunctor.h:23
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::System
This class represents a system in a laid-out score (Doc).
Definition: system.h:36