Verovio
Source code documentation
turn.h
1 // Name: turn.h
3 // Author: Klaus Rettinghaus
4 // Created: 2017
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_TURN_H__
9 #define __VRV_TURN_H__
10 
11 #include "atts_cmn.h"
12 #include "atts_cmnornaments.h"
13 #include "atts_externalsymbols.h"
14 #include "controlelement.h"
15 #include "timeinterface.h"
16 
17 namespace vrv {
18 
19 //----------------------------------------------------------------------------
20 // Turn
21 //----------------------------------------------------------------------------
22 
26 class Turn : public ControlElement,
27  public TimePointInterface,
28  public AttExtSymAuth,
29  public AttExtSymNames,
30  public AttOrnamentAccid,
31  public AttPlacementRelStaff,
32  public AttTurnLog {
33 public:
38  Turn();
40  virtual ~Turn();
41  Object *Clone() const override { return new Turn(*this); }
42  void Reset() override;
43  std::string GetClassName() const override { return "turn"; }
45 
49  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
51  const TimePointInterface *GetTimePointInterface() const override
52  {
53  return vrv_cast<const TimePointInterface *>(this);
54  }
56 
60  char32_t GetTurnGlyph() const;
61 
65  int GetTurnHeight(const Doc *doc, int staffSize) const;
66 
67  //----------//
68  // Functors //
69  //----------//
70 
74  FunctorCode Accept(Functor &functor) override;
76  FunctorCode Accept(ConstFunctor &functor) const override;
77  FunctorCode AcceptEnd(Functor &functor) override;
78  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
80 
81 protected:
82  //
83 private:
84  //
85 public:
90 
91 private:
92  //
93 };
94 
95 } // namespace vrv
96 
97 #endif
vrv::Turn
This class models the MEI <turn> element.
Definition: turn.h:26
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Turn::Reset
void Reset() override
Virtual reset method.
vrv::Turn::GetTurnGlyph
char32_t GetTurnGlyph() const
Get the SMuFL glyph for the turn based on form or glyph.num.
vrv::Turn::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: turn.h:41
vrv::Turn::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Turn::m_drawingEndElement
LayerElement * m_drawingEndElement
The end point of a delayed turn when @startid is used.
Definition: turn.h:89
vrv::ControlElement
This class represents elements appearing within a measure.
Definition: controlelement.h:28
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Turn::GetTurnHeight
int GetTurnHeight(const Doc *doc, int staffSize) const
Get the turn height ignoring slash.
vrv::TimePointInterface
This class is an interface for elements having a single time point, such as tempo,...
Definition: timeinterface.h:35