Verovio
Source code documentation
calcdotsfunctor.h
1 // Name: calcdotsfunctor.h
3 // Author: David Bauer
4 // Created: 2022
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_CALCDOTSFUNCTOR_H__
9 #define __VRV_CALCDOTSFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // CalcDotsFunctor
17 //----------------------------------------------------------------------------
18 
22 class CalcDotsFunctor : public DocFunctor {
23 public:
27  CalcDotsFunctor(Doc *doc);
29  virtual ~CalcDotsFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return false; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitChord(Chord *chord) override;
42  FunctorCode VisitNote(Note *note) override;
43  FunctorCode VisitRest(Rest *rest) override;
45 
46 protected:
47  //
48 private:
53  bool IsDotOverlappingWithFlag(const Note *note, const int staffSize, int dotLocShift) const;
54 
55 public:
56  //
57 private:
58  // The chord dots object when processing chord notes
59  Dots *m_chordDots;
60  // The chord drawing X position
61  int m_chordDrawingX;
62  // The chord stem direction
63  data_STEMDIRECTION m_chordStemDir;
64 };
65 
66 } // namespace vrv
67 
68 #endif // __VRV_CALCDOTSFUNCTOR_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::Dots
This class models a group of dots as a layer element part and has no direct MEI equivalent.
Definition: elementpart.h:27
vrv::Chord
This class represents a collection of notes in the same layer with the same onset time.
Definition: chord.h:32
vrv::CalcDotsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: calcdotsfunctor.h:35
vrv::CalcDotsFunctor
This class sets the drawing dot positions, including for chords.
Definition: calcdotsfunctor.h:22
vrv::Note
This class models the MEI <note> element.
Definition: note.h:47
vrv::Rest
This class models the MEI <rest> element.
Definition: rest.h:37
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151