Verovio
Source code documentation
keyaccid.h
1 // Name: keyaccid.h
3 // Author: Laurent Pugin
4 // Created: 2019
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_KEYACCID_H__
9 #define __VRV_KEYACCID_H__
10 
11 #include "atts_externalsymbols.h"
12 #include "atts_gestural.h"
13 #include "layerelement.h"
14 #include "pitchinterface.h"
15 #include "positioninterface.h"
16 
17 namespace vrv {
18 
19 //----------------------------------------------------------------------------
20 // KeyAccid
21 //----------------------------------------------------------------------------
22 
26 class KeyAccid : public LayerElement,
27  public PitchInterface,
28  public PositionInterface,
29  public AttAccidental,
30  public AttColor,
31  public AttEnclosingChars,
32  public AttExtSymAuth,
33  public AttExtSymNames {
34 public:
39  KeyAccid();
41  virtual ~KeyAccid();
42  Object *Clone() const override { return new KeyAccid(*this); }
43  void Reset() override;
44  std::string GetClassName() const override { return "keyAccid"; }
46 
50  PitchInterface *GetPitchInterface() override { return vrv_cast<PitchInterface *>(this); }
52  const PitchInterface *GetPitchInterface() const override { return vrv_cast<const PitchInterface *>(this); }
53  PositionInterface *GetPositionInterface() override { return vrv_cast<PositionInterface *>(this); }
54  const PositionInterface *GetPositionInterface() const override { return vrv_cast<const PositionInterface *>(this); }
56 
61  std::u32string GetSymbolStr(data_NOTATIONTYPE notationType) const;
62 
66  int CalcStaffLoc(Clef *clef, int clefLocOffset) const;
67 
68  //----------//
69  // Functors //
70  //----------//
71 
75  FunctorCode Accept(Functor &functor) override;
77  FunctorCode Accept(ConstFunctor &functor) const override;
78  FunctorCode AcceptEnd(Functor &functor) override;
79  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
81 
82 private:
83  //
84 public:
85  //
86 private:
87  //
88 };
89 
90 } // namespace vrv
91 
92 #endif
vrv::KeyAccid::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::PositionInterface
This class is an interface for elements with a position on the staff, such as rests.
Definition: positioninterface.h:30
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::KeyAccid::GetSymbolStr
std::u32string GetSymbolStr(data_NOTATIONTYPE notationType) const
Retrieve SMuFL string for the accidental.
vrv::KeyAccid::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: keyaccid.h:42
vrv::KeyAccid::CalcStaffLoc
int CalcStaffLoc(Clef *clef, int clefLocOffset) const
Determine the staff location.
vrv::KeyAccid::Reset
void Reset() override
Virtual reset method.
vrv::KeyAccid
This class models the MEI <keyAccid> element.
Definition: keyaccid.h:26
vrv::PitchInterface
This class is an interface for elements with pitch, such as notes and neumes.
Definition: pitchinterface.h:28
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46