Verovio
Source code documentation
artic.h
1 // Name: artic.h
3 // Author: Laurent Pugin
4 // Created: 2016
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ARTIC_H__
9 #define __VRV_ARTIC_H__
10 
11 #include "atts_externalsymbols.h"
12 #include "atts_gestural.h"
13 #include "atts_shared.h"
14 #include "layerelement.h"
15 
16 namespace vrv {
17 
18 //----------------------------------------------------------------------------
19 // Artic
20 //----------------------------------------------------------------------------
21 
22 class Artic : public LayerElement,
23  public AttArticulation,
24  public AttArticulationGes,
25  public AttColor,
26  public AttEnclosingChars,
27  public AttExtSymAuth,
28  public AttExtSymNames,
29  public AttPlacementRelEvent {
30 public:
35  Artic();
37  virtual ~Artic();
38  Object *Clone() const override { return new Artic(*this); }
39  void Reset() override;
40  std::string GetClassName() const override { return "artic"; }
42 
44  bool HasToBeAligned() const override { return true; }
45 
47  bool IsRelativeToStaff() const override { return true; }
48 
49  data_ARTICULATION GetArticFirst() const;
50 
51  void GetAllArtics(bool direction, std::vector<Artic *> &artics);
52 
56  bool IsInsideArtic() const;
58  bool IsOutsideArtic() const { return !IsInsideArtic(); };
60 
64  bool AlwaysAbove() const;
65 
66  void AddSlurPositioner(FloatingCurvePositioner *positioner, bool start);
67 
71  data_STAFFREL GetDrawingPlace() const { return m_drawingPlace; }
73  void SetDrawingPlace(data_STAFFREL drawingPlace) { m_drawingPlace = drawingPlace; }
75 
79  char32_t GetArticGlyph(data_ARTICULATION artic, data_STAFFREL place) const;
80 
84  std::pair<char32_t, char32_t> GetEnclosingGlyphs() const;
85 
86  //----------------//
87  // Static methods //
88  //----------------//
89 
95  static bool VerticalCorr(char32_t code, data_STAFFREL place);
96 
100  static bool IsCentered(data_ARTICULATION artic);
101 
102  //----------//
103  // Functors //
104  //----------//
105 
109  FunctorCode Accept(Functor &functor) override;
111  FunctorCode Accept(ConstFunctor &functor) const override;
112  FunctorCode AcceptEnd(Functor &functor) override;
113  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
115 
116 private:
117  bool IsInsideArtic(data_ARTICULATION artic) const;
118 
119 public:
120  std::vector<FloatingCurvePositioner *> m_startSlurPositioners;
121  std::vector<FloatingCurvePositioner *> m_endSlurPositioners;
122 
126  static const std::vector<data_ARTICULATION> s_outStaffArtic;
130  static const std::vector<data_ARTICULATION> s_aboveStaffArtic;
131 
132 private:
133  //
134  data_STAFFREL m_drawingPlace;
135 };
136 
137 } // namespace vrv
138 
139 #endif
vrv::Artic::GetArticGlyph
char32_t GetArticGlyph(data_ARTICULATION artic, data_STAFFREL place) const
Retrieves the appropriate SMuFL code for a data_ARTICULATION with data_STAFFREL.
vrv::Artic::AlwaysAbove
bool AlwaysAbove() const
Check if the articList contains data_ARTICULATION has to be place above staff.
vrv::Artic::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: artic.h:44
vrv::Artic::s_aboveStaffArtic
static const std::vector< data_ARTICULATION > s_aboveStaffArtic
A static array for storing the articulation that have to be place above the staff is possible.
Definition: artic.h:130
vrv::Artic::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Artic::s_outStaffArtic
static const std::vector< data_ARTICULATION > s_outStaffArtic
A static array for storing the articulation that have to be placed outside the staff.
Definition: artic.h:126
vrv::Artic::IsInsideArtic
bool IsInsideArtic() const
Return the inside and outside part of an artic if any (NULL otherwiser)
vrv::Artic::VerticalCorr
static bool VerticalCorr(char32_t code, data_STAFFREL place)
Static method that retrieves the vertical correction for a SMuFL code with data_STAFFREL.
vrv::Artic
Definition: artic.h:22
vrv::Artic::GetDrawingPlace
data_STAFFREL GetDrawingPlace() const
Getter and setter for the drawing place.
Definition: artic.h:72
vrv::Artic::GetEnclosingGlyphs
std::pair< char32_t, char32_t > GetEnclosingGlyphs() const
Retrieve parentheses / brackets from the enclose attribute.
vrv::Artic::IsRelativeToStaff
bool IsRelativeToStaff() const override
Override the method since it is align to the staff.
Definition: artic.h:47
vrv::Artic::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::Artic::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: artic.h:38
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Artic::IsCentered
static bool IsCentered(data_ARTICULATION artic)
Static method that returns true if the data_ARTICULATION has to be centered between staff lines.