Verovio
Source code documentation
tuning.h
1 // Name: tuning.h
3 // Author: Laurent Pugin
4 // Created: 2019
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_TUNING_H__
9 #define __VRV_TUNING_H__
10 
11 #include "atts_shared.h"
12 #include "object.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // Tuning
18 //----------------------------------------------------------------------------
19 
23 class Tuning : public Object, public AttTuningLog {
24 public:
29  Tuning();
31  virtual ~Tuning();
32  Object *Clone() const override { return new Tuning(*this); }
33  void Reset() override;
34  std::string GetClassName() const override { return "tuning"; }
36 
40  bool IsSupportedChild(ClassId classId) override;
41 
61  int CalcPitchPos(int course, data_NOTATIONTYPE notationType, int lines, int listSize, int index, int loc,
62  int tabLine, int tabAnchorline, bool topAlign) const;
63 
73  int CalcPitchNumber(int course, int fret, data_NOTATIONTYPE notationType) const;
74 
75  //----------//
76  // Functors //
77  //----------//
78 
82  FunctorCode Accept(Functor &functor) override;
84  FunctorCode Accept(ConstFunctor &functor) const override;
85  FunctorCode AcceptEnd(Functor &functor) override;
86  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
88 
89 protected:
90  //
91 private:
92  //
93 public:
94  //
95 private:
96  //
97 };
98 
99 } // namespace vrv
100 
101 #endif
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Tuning
This class models the MEI <tuning> element.
Definition: tuning.h:23
vrv::Tuning::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: tuning.h:32
vrv::Tuning::CalcPitchPos
int CalcPitchPos(int course, data_NOTATIONTYPE notationType, int lines, int listSize, int index, int loc, int tabLine, int tabAnchorline, bool topAlign) const
Return the line for a note according to tablature type.
vrv::Tuning::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Tuning::CalcPitchNumber
int CalcPitchNumber(int course, int fret, data_NOTATIONTYPE notationType) const
Calculate the MIDI note number for course/fret.
vrv::Tuning::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::Tuning::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element to a element.