Verovio
Source code documentation
syl.h
1 // Name: syl.h
3 // Author: Laurent Pugin
4 // Created: 2014
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_SYL_H__
9 #define __VRV_SYL_H__
10 
11 #include "atts_shared.h"
12 #include "facsimileinterface.h"
13 #include "layerelement.h"
14 #include "timeinterface.h"
15 
16 namespace vrv {
17 
18 class Note;
19 class TextElement;
20 
21 //----------------------------------------------------------------------------
22 // Syl
23 //----------------------------------------------------------------------------
24 
31 class Syl : public LayerElement,
32  public TextListInterface,
33  public TimeSpanningInterface,
34  public AttLang,
35  public AttTypography,
36  public AttSylLog {
37 public:
42  Syl();
44  virtual ~Syl();
45  Object *Clone() const override { return new Syl(*this); }
46  void Reset() override;
47  std::string GetClassName() const override { return "syl"; }
49 
51  bool IsRelativeToStaff() const override { return true; }
52 
56  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
58  const TimePointInterface *GetTimePointInterface() const override
59  {
60  return vrv_cast<const TimePointInterface *>(this);
61  }
62  TimeSpanningInterface *GetTimeSpanningInterface() override { return vrv_cast<TimeSpanningInterface *>(this); }
63  const TimeSpanningInterface *GetTimeSpanningInterface() const override
64  {
65  return vrv_cast<const TimeSpanningInterface *>(this);
66  }
68 
73  bool IsSupportedChild(ClassId classId) override;
74 
78  int CalcHyphenLength(Doc *doc, int staffSize);
79 
83  int CalcConnectorSpacing(Doc *doc, int staffSize);
84 
85  int GetDrawingWidth() const;
86  int GetDrawingHeight() const;
87 
88  //----------------//
89  // Static methods //
90  //----------------//
91 
95  static void AdjustToLyricSize(const Doc *doc, int &value);
96 
97  //----------//
98  // Functors //
99  //----------//
100 
104  FunctorCode Accept(Functor &functor) override;
106  FunctorCode Accept(ConstFunctor &functor) const override;
107  FunctorCode AcceptEnd(Functor &functor) override;
108  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
110 
112  bool CreateDefaultZone(Doc *doc);
113 
114 private:
115  //
116 public:
123  data_STAFFREL m_drawingVersePlace;
124 
130 
131 private:
132 };
133 
134 } // namespace vrv
135 
136 #endif
vrv::Syl::CreateDefaultZone
bool CreateDefaultZone(Doc *doc)
Create a default zone for a syl based on syllable.
vrv::Syl::CalcHyphenLength
int CalcHyphenLength(Doc *doc, int staffSize)
Calculate the hyphen length using the text font.
vrv::Syl::m_drawingVerseN
int m_drawingVerseN
The verse number with multiple verses Value is 1 by default, set in PrepareLyrics.
Definition: syl.h:121
vrv::Syl::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Syl::Reset
void Reset() override
Virtual reset method.
vrv::Syl::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element (text, rend.
vrv::Syl::CalcConnectorSpacing
int CalcConnectorSpacing(Doc *doc, int staffSize)
Calculate the spacing needed depending on the @worpos and @con.
vrv::Syl::m_nextWordSyl
Syl * m_nextWordSyl
A pointer to the next syllable of the word.
Definition: syl.h:129
vrv::Syl::AdjustToLyricSize
static void AdjustToLyricSize(const Doc *doc, int &value)
Adjust proportionally to the lyric size.
vrv::TextListInterface
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:972
vrv::Syl::m_drawingVersePlace
data_STAFFREL m_drawingVersePlace
The verse place (below by default)
Definition: syl.h:123
vrv::Syl::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: syl.h:45
vrv::Syl
Syl is a TimeSpanningInterface for managing syllable connectors.
Definition: syl.h:31
vrv::TimeSpanningInterface
This class is an interface for spanning elements, such as slur, hairpin, etc.
Definition: timeinterface.h:141
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::TimePointInterface
This class is an interface for elements having a single time point, such as tempo,...
Definition: timeinterface.h:35
vrv::Syl::IsRelativeToStaff
bool IsRelativeToStaff() const override
Override the method since it is align to the staff.
Definition: syl.h:51