Verovio
Source code documentation
nc.h
1 // Name: nc.h
3 // Author: Andrew Tran
4 // Created: 2017
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_NC_H__
9 #define __VRV_NC_H__
10 
11 #include <cassert>
12 
13 //----------------------------------------------------------------------------
14 
15 #include "atts_analytical.h"
16 #include "atts_neumes.h"
17 #include "atts_shared.h"
18 #include "atts_visual.h"
19 #include "durationinterface.h"
20 #include "layerelement.h"
21 #include "pitchinterface.h"
22 #include "positioninterface.h"
23 
24 namespace vrv {
25 
26 //----------------------------------------------------------------------------
27 // Nc
28 //----------------------------------------------------------------------------
29 
34 class Nc : public LayerElement,
35  public DurationInterface,
36  public PitchInterface,
37  public PositionInterface,
38  public AttColor,
39  public AttCurvatureDirection,
40  public AttIntervalMelodic,
41  public AttNcForm {
42 public:
47  Nc();
49  virtual ~Nc();
50  Object *Clone() const override { return new Nc(*this); }
51  void Reset() override;
52  std::string GetClassName() const override { return "nc"; }
54 
55  bool IsSupportedChild(ClassId classId) override;
56 
60  DurationInterface *GetDurationInterface() override { return vrv_cast<DurationInterface *>(this); }
62  const DurationInterface *GetDurationInterface() const override { return vrv_cast<const DurationInterface *>(this); }
63  PitchInterface *GetPitchInterface() override { return vrv_cast<PitchInterface *>(this); }
64  const PitchInterface *GetPitchInterface() const override { return vrv_cast<const PitchInterface *>(this); }
65  PositionInterface *GetPositionInterface() override { return vrv_cast<PositionInterface *>(this); }
66  const PositionInterface *GetPositionInterface() const override { return vrv_cast<const PositionInterface *>(this); }
68 
73  int PitchOrLocDifferenceTo(const Nc *nc) const;
74 
75  //----------//
76  // Functors //
77  //----------//
78 
82  FunctorCode Accept(Functor &functor) override;
84  FunctorCode Accept(ConstFunctor &functor) const override;
85  FunctorCode AcceptEnd(Functor &functor) override;
86  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
88 
94  struct DrawingGlyph {
95  wchar_t m_fontNo = 0;
96  float m_xOffset = 0.0;
97  float m_yOffset = 0.0;
98  };
99 
100 private:
101  //
102 public:
104  std::vector<DrawingGlyph> m_drawingGlyphs;
105 
106 private:
107  //
108 };
109 
110 } // namespace vrv
111 
112 #endif
vrv::Nc
This class models the MEI <nc> element.
Definition: nc.h:34
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::Nc::Reset
void Reset() override
Virtual reset method.
vrv::Nc::PitchOrLocDifferenceTo
int PitchOrLocDifferenceTo(const Nc *nc) const
Calclulate the pitch or loc difference between to nc.
vrv::Nc::DrawingGlyph
A Structure holding a glyph paramter for the nc.
Definition: nc.h:94
vrv::Nc::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Nc::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Base method for checking if a child can be added.
vrv::Nc::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: nc.h:50
vrv::DurationInterface
This class is an interface for elements with duration, such as notes and rests.
Definition: durationinterface.h:31
vrv::Nc::m_drawingGlyphs
std::vector< DrawingGlyph > m_drawingGlyphs
Drawing glyphs.
Definition: nc.h:104
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