Verovio
Source code documentation
keysig.h
1 
3 // Name: keysig.h
4 // Author: Rodolfo Zitellini
5 // Created: 10/07/2012
6 // Copyright (c) Authors and others. All rights reserved.
8 
9 #ifndef __VRV_KEYSIG_H__
10 #define __VRV_KEYSIG_H__
11 
12 #include <optional>
13 
14 //----------------------------------------------------------------------------
15 
16 #include "atts_analytical.h"
17 #include "atts_shared.h"
18 #include "atts_visual.h"
19 #include "layerelement.h"
20 
21 namespace vrv {
22 
23 class Clef;
24 class ScoreDefInterface;
25 
26 //----------------------------------------------------------------------------
27 // KeyAccidInfo
28 //----------------------------------------------------------------------------
32 struct KeyAccidInfo {
33  data_ACCIDENTAL_WRITTEN accid;
34  data_PITCHNAME pname;
35 };
36 
37 //----------------------------------------------------------------------------
38 // KeySig
39 //----------------------------------------------------------------------------
40 
44 class KeySig : public LayerElement,
45  public ObjectListInterface,
46  public AttAccidental,
47  public AttColor,
48  public AttKeyMode,
49  public AttKeySigLog,
50  public AttKeySigVis,
51  public AttPitch,
52  public AttVisibility {
53 public:
58  KeySig();
60  virtual ~KeySig();
61  Object *Clone() const override { return new KeySig(*this); }
62  void Reset() override;
63  std::string GetClassName() const override { return "keySig"; }
65 
67  bool HasToBeAligned() const override { return true; }
68 
70  bool IsScoreDefElement() const override { return (this->GetParent() && this->GetFirstAncestor(SCOREDEF)); }
71 
75  bool IsSupportedChild(ClassId classId) override;
76 
80  bool AddChildAdditionalCheck(Object *child) override;
81 
83  int GetAccidCount(bool fromAttribute = false) const;
84 
86  data_ACCIDENTAL_WRITTEN GetAccidType() const;
87 
91  bool HasNonAttribKeyAccidChildren() const;
93  void GenerateKeyAccidAttribChildren();
95 
101  data_KEYSIGNATURE ConvertToSig() const;
102 
106  void FillMap(MapOfOctavedPitchAccid &mapOfPitchAccid) const;
107 
108  int GetFifthsInt() const;
109 
110  //----------------//
111  // Static methods //
112  //----------------//
113 
117  static data_PITCHNAME GetAccidPnameAt(data_ACCIDENTAL_WRITTEN alterationType, int pos);
118  static int GetOctave(data_ACCIDENTAL_WRITTEN alterationType, data_PITCHNAME pitch, const Clef *clef);
119 
120  //----------//
121  // Functors //
122  //----------//
123 
127  FunctorCode Accept(Functor &functor) override;
129  FunctorCode Accept(ConstFunctor &functor) const override;
130  FunctorCode AcceptEnd(Functor &functor) override;
131  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
133 
134 protected:
138  void FilterList(ListOfConstObjects &childList) const override;
139 
140 private:
144  std::optional<KeyAccidInfo> GetKeyAccidInfoAt(int pos) const;
145 
146 public:
151  bool m_skipCancellation;
153  data_ACCIDENTAL_WRITTEN m_drawingCancelAccidType;
154  char m_drawingCancelAccidCount;
156 
157  //----------------//
158  // Static members //
159  //----------------//
160 
161  static const data_PITCHNAME s_pnameForFlats[];
162  static const data_PITCHNAME s_pnameForSharps[];
163 
164 private:
165  static const int octave_map[2][9][7];
166 };
167 
168 } // namespace vrv
169 
170 #endif
vrv::Object::GetParent
Object * GetParent()
Get the parent of the Object.
Definition: object.h:379
vrv::KeySig::FilterList
void FilterList(ListOfConstObjects &childList) const override
Filter the flat list and keep only StaffDef elements.
vrv::KeySig::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::KeySig::AddChildAdditionalCheck
bool AddChildAdditionalCheck(Object *child) override
Additional check when adding a child.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::KeySig::HasNonAttribKeyAccidChildren
bool HasNonAttribKeyAccidChildren() const
Generate KeyAccid attribute children.
vrv::KeySig::ConvertToSig
data_KEYSIGNATURE ConvertToSig() const
Try to convert a keySig content (keyAccid) to a @sig value This can work only if the content represen...
vrv::KeySig::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: keysig.h:61
vrv::Object::GetFirstAncestor
Object * GetFirstAncestor(const ClassId classId, int maxSteps=-1)
Return the first ancestor of the specified type.
vrv::KeySig::GetAccidCount
int GetAccidCount(bool fromAttribute=false) const
Accid number getter.
vrv::KeySig::GetAccidPnameAt
static data_PITCHNAME GetAccidPnameAt(data_ACCIDENTAL_WRITTEN alterationType, int pos)
Static methods for calculating position;.
vrv::KeyAccidInfo
Useful information regarding a KeyAccid child.
Definition: keysig.h:32
vrv::Clef
This class models the MEI <clef> element.
Definition: clef.h:27
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::KeySig::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: keysig.h:67
vrv::KeySig::IsScoreDefElement
bool IsScoreDefElement() const override
Override the method since check is required.
Definition: keysig.h:70
vrv::ObjectListInterface
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:873
vrv::KeySig::m_skipCancellation
bool m_skipCancellation
Variables for storing cancellation introduced by the key sig.
Definition: keysig.h:152
vrv::KeySig::Reset
void Reset() override
Virtual reset method.
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::KeySig::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element (a keyAccid) to a keySig.
vrv::KeySig::FillMap
void FillMap(MapOfOctavedPitchAccid &mapOfPitchAccid) const
Fill the map of modified pitches.
vrv::KeySig
This class models the MEI <keySig> element.
Definition: keysig.h:44
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::KeySig::GetAccidType
data_ACCIDENTAL_WRITTEN GetAccidType() const
Accid type getter.