Verovio
Source code documentation
calcarticfunctor.h
1 // Name: calcarticfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_CALCARTICFUNCTOR_H__
9 #define __VRV_CALCARTICFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // CalcArticFunctor
17 //----------------------------------------------------------------------------
18 
22 class CalcArticFunctor : public DocFunctor {
23 public:
27  CalcArticFunctor(Doc *doc);
29  virtual ~CalcArticFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return false; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitArtic(Artic *artic) override;
42  FunctorCode VisitChord(Chord *chord) override;
43  FunctorCode VisitNote(Note *note) override;
45 
46 protected:
47  //
48 private:
49  // Calculate shift for the articulation based on its type and presence of other articulations
50  int CalculateHorizontalShift(const Artic *artic, bool virtualStem) const;
51  // Include the parent beam staff in the calculation of the above and below staff
52  void IncludeBeamStaff(LayerElement *layerElement);
53 
54 public:
55  //
56 private:
57  // The layer element parent
58  LayerElement *m_parent;
59  // The current stem direction
60  data_STEMDIRECTION m_stemDir;
61  // The above and below staff
62  Staff *m_staffAbove;
63  Staff *m_staffBelow;
64  // The above and below layer
65  Layer *m_layerAbove;
66  Layer *m_layerBelow;
67  // True if above/below is cross staff
68  bool m_crossStaffAbove;
69  bool m_crossStaffBelow;
70 };
71 
72 } // namespace vrv
73 
74 #endif // __VRV_CALCARTICFUNCTOR_H__
vrv::Staff
This class represents a staff in a laid-out score (Doc).
Definition: staff.h:102
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::Chord
This class represents a collection of notes in the same layer with the same onset time.
Definition: chord.h:32
vrv::CalcArticFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: calcarticfunctor.h:35
vrv::Artic
Definition: artic.h:22
vrv::Note
This class models the MEI <note> element.
Definition: note.h:47
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Layer
This class represents a layer in a laid-out score (Doc).
Definition: layer.h:33
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151
vrv::CalcArticFunctor
This class calculates the position of the outside articulations.
Definition: calcarticfunctor.h:22