 |
Verovio
Source code documentation
|
8 #ifndef __VRV_PITCH_INTERFACE_H__
9 #define __VRV_PITCH_INTERFACE_H__
11 #include "atts_gestural.h"
12 #include "atts_shared.h"
13 #include "interface.h"
37 void Reset()
override;
38 InterfaceId
IsInterface()
const override {
return INTERFACE_PITCH; }
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); }
88 static int CalcLoc(
const LayerElement *element,
const Layer *layer,
const LayerElement *crossStaffElement,
89 bool topChordNote =
true);
95 static int CalcLoc(data_PITCHNAME pname,
int oct,
int clefLocOffset);
105 data_OCTAVE m_octDefault;
static void AdjustPname(int &pname, int &oct)
Adjust the pname and the octave for values outside the range.
void AdjustPitchByOffset(int pitchOffset)
Shift pname and octave by a certain number of steps.
This is a base class for regrouping MEI att classes.
Definition: interface.h:32
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
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.
int PitchDifferenceTo(const PitchInterface *pi) const
Get steps between calling object and parameter.
bool HasIdenticalPitchInterface(const PitchInterface *otherPitchInterface) const
Interface comparison operator.
InterfaceId IsInterface() const override
Virtual method returning the InterfaceId of the interface.
Definition: pitchinterface.h:38
void Reset() override
Virtual reset method.
This class is an interface for elements with pitch, such as notes and neumes.
Definition: pitchinterface.h:28