Verovio
Source code documentation
custos.h
1 // Name: custos.h
3 // Author: Laurent Pugin
4 // Created: 2014
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_CUSTOS_H__
9 #define __VRV_CUSTOS_H__
10 
11 #include "accid.h"
12 #include "atts_analytical.h"
13 #include "atts_shared.h"
14 #include "layerelement.h"
15 #include "pitchinterface.h"
16 #include "positioninterface.h"
17 
18 namespace vrv {
19 
20 //----------------------------------------------------------------------------
21 // Custos
22 //----------------------------------------------------------------------------
23 
24 class Custos : public LayerElement,
25  public PitchInterface,
26  public PositionInterface,
27  public AttColor,
28  public AttExtSymAuth,
29  public AttExtSymNames {
30 public:
35  Custos();
37  virtual ~Custos();
38  Object *Clone() const override { return new Custos(*this); }
39  void Reset() override;
40  std::string GetClassName() const override { return "custos"; }
42 
46  PitchInterface *GetPitchInterface() override { return vrv_cast<PitchInterface *>(this); }
48  const PitchInterface *GetPitchInterface() const override { return vrv_cast<const PitchInterface *>(this); }
50 
52  bool HasToBeAligned() const override { return true; }
53 
57  bool IsSupportedChild(ClassId classId) override;
58 
62  char32_t GetCustosGlyph(const data_NOTATIONTYPE notationType) const;
63 
64  //----------//
65  // Functors //
66  //----------//
67 
71  FunctorCode Accept(Functor &functor) override;
73  FunctorCode Accept(ConstFunctor &functor) const override;
74  FunctorCode AcceptEnd(Functor &functor) override;
75  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
77 
78 private:
79  //
80 public:
81  //
82 private:
83 };
84 
85 } // namespace vrv
86 
87 #endif
vrv::Custos::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an accid to a custos.
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::Custos::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: custos.h:52
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::Custos
Definition: custos.h:24
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::Custos::GetCustosGlyph
char32_t GetCustosGlyph(const data_NOTATIONTYPE notationType) const
Return a SMuFL code for the custos.
vrv::Custos::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: custos.h:38
vrv::Custos::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::PitchInterface
This class is an interface for elements with pitch, such as notes and neumes.
Definition: pitchinterface.h:28
vrv::Custos::Reset
void Reset() override
Virtual reset method.
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46