Verovio
Source code documentation
pitchinterface.h
1 // Name: pitchinterface.h
3 // Author: Laurent Pugin
4 // Created: 2011
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_PITCH_INTERFACE_H__
9 #define __VRV_PITCH_INTERFACE_H__
10 
11 #include "atts_gestural.h"
12 #include "atts_shared.h"
13 #include "interface.h"
14 
15 namespace vrv {
16 
17 class Clef;
18 class Layer;
19 
20 //----------------------------------------------------------------------------
21 // PitchInterface
22 //----------------------------------------------------------------------------
23 
28 class PitchInterface : public Interface, public AttNoteGes, public AttOctave, public AttPitch, public AttPitchGes {
29 public:
36  virtual ~PitchInterface();
37  void Reset() override;
38  InterfaceId IsInterface() const override { return INTERFACE_PITCH; }
40 
44  void SetOctDefault(data_OCTAVE oct) { m_octDefault = oct; }
46  data_OCTAVE GetOctDefault() const { return m_octDefault; }
47  bool HasOctDefault() const { return (m_octDefault != MEI_UNSET_OCT); }
49 
54  bool HasIdenticalPitchInterface(const PitchInterface *otherPitchInterface) const;
55 
59  void AdjustPitchByOffset(int pitchOffset);
60 
65  int PitchDifferenceTo(const PitchInterface *pi) const;
66 
71  void AdjustPitchForNewClef(const Clef *oldClef, const Clef *newClef);
72 
73  //----------------//
74  // Static methods //
75  //----------------//
76 
81  static void AdjustPname(int &pname, int &oct);
82 
88  static int CalcLoc(const LayerElement *element, const Layer *layer, const LayerElement *crossStaffElement,
89  bool topChordNote = true);
90 
95  static int CalcLoc(data_PITCHNAME pname, int oct, int clefLocOffset);
96 
97 private:
98  //
99 public:
100  //
101 private:
105  data_OCTAVE m_octDefault;
106 };
107 
108 } // namespace vrv
109 
110 #endif
vrv::PitchInterface::AdjustPname
static void AdjustPname(int &pname, int &oct)
Adjust the pname and the octave for values outside the range.
vrv::PitchInterface::AdjustPitchByOffset
void AdjustPitchByOffset(int pitchOffset)
Shift pname and octave by a certain number of steps.
vrv::Interface
This is a base class for regrouping MEI att classes.
Definition: interface.h:32
vrv::PitchInterface::AdjustPitchForNewClef
void AdjustPitchForNewClef(const Clef *oldClef, const Clef *newClef)
adjust the pitch value so that it stays in the same x,y position given it's new and old clefs
vrv::PitchInterface::CalcLoc
static int CalcLoc(const LayerElement *element, const Layer *layer, const LayerElement *crossStaffElement, bool topChordNote=true)
Calculate the loc for a note, rest or chord considering its position in the layer.
vrv::PitchInterface::PitchDifferenceTo
int PitchDifferenceTo(const PitchInterface *pi) const
Get steps between calling object and parameter.
vrv::PitchInterface::HasIdenticalPitchInterface
bool HasIdenticalPitchInterface(const PitchInterface *otherPitchInterface) const
Interface comparison operator.
vrv::PitchInterface::IsInterface
InterfaceId IsInterface() const override
Virtual method returning the InterfaceId of the interface.
Definition: pitchinterface.h:38
vrv::PitchInterface::Reset
void Reset() override
Virtual reset method.
vrv::PitchInterface
This class is an interface for elements with pitch, such as notes and neumes.
Definition: pitchinterface.h:28