Verovio
Source code documentation
calcstemfunctor.h
1 // Name: calcstemfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_CALCSTEMFUNCTOR_H__
9 #define __VRV_CALCSTEMFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // CalcStemFunctor
17 //----------------------------------------------------------------------------
18 
22 class CalcStemFunctor : public DocFunctor {
23 public:
27  CalcStemFunctor(Doc *doc);
29  virtual ~CalcStemFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return false; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitBeam(Beam *beam) override;
42  FunctorCode VisitBeamSpan(BeamSpan *beamSpan) override;
43  FunctorCode VisitChord(Chord *chord) override;
44  FunctorCode VisitFTrem(FTrem *fTrem) override;
45  FunctorCode VisitNote(Note *note) override;
46  FunctorCode VisitStaff(Staff *staff) override;
47  FunctorCode VisitStem(Stem *stem) override;
48  FunctorCode VisitTabDurSym(TabDurSym *tabDurSym) override;
49  FunctorCode VisitTabGrp(TabGrp *tabGrp) override;
51 
52 protected:
53  //
54 private:
59  data_STEMDIRECTION CalcStemDirection(const Chord *chord, int verticalCenter) const;
60 
64  void AdjustFlagPlacement(
65  const Doc *doc, Stem *stem, Flag *flag, int staffSize, int verticalCenter, data_DURATION duration) const;
66 
67 public:
68  //
69 private:
70  // The additional length for a chord stem (between the top and bottom note)
71  int m_chordStemLength;
72  // The vertical center of the staff
73  int m_verticalCenter;
74  // The actual duration of the chord / note
75  data_DURATION m_dur;
76  // The flag for grace notes (stem is not extended)
77  bool m_isGraceNote;
78  // The flag for stem.sameas notes
79  bool m_isStemSameasSecondary;
80  // The flag indicating that we have no note in tabGrp
81  bool m_tabGrpWithNoNote;
82  // The current staff (to avoid additional lookup)
83  Staff *m_staff;
84  // The current layer (ditto)
85  Layer *m_layer;
86  // The chord or note to which the stem belongs
87  StemmedDrawingInterface *m_interface;
88 };
89 
90 } // namespace vrv
91 
92 #endif // __VRV_CALCSTEMFUNCTOR_H__
vrv::Staff
This class represents a staff in a laid-out score (Doc).
Definition: staff.h:102
vrv::BeamSpan
This class models the MEI <beamSpan> element.
Definition: beamspan.h:31
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::FTrem
This class models the MEI <fTrem> element.
Definition: ftrem.h:25
vrv::TabDurSym
This class models the MEI <tabDurSym> element.
Definition: tabdursym.h:25
vrv::Chord
This class represents a collection of notes in the same layer with the same onset time.
Definition: chord.h:32
vrv::Flag
This class models a stem as a layer element part and has no direct MEI equivalent.
Definition: elementpart.h:97
vrv::TabGrp
This class models the MEI <tabGrp> element.
Definition: tabgrp.h:23
vrv::Beam
Definition: beam.h:279
vrv::CalcStemFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: calcstemfunctor.h:35
vrv::Note
This class models the MEI <note> element.
Definition: note.h:47
vrv::StemmedDrawingInterface
This class is an interface for MEI stemmed element.
Definition: drawinginterface.h:353
vrv::Stem
This class models a stem as a layer element part and as MEI <stem> element.
Definition: stem.h:27
vrv::CalcStemFunctor
This class sets the drawing stem positions, including for beams.
Definition: calcstemfunctor.h:22
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