Verovio
Source code documentation
elementpart.h
1 // Name: elementpart.h
3 // Author: Laurent Pugin
4 // Created: 2017
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ELEMENT_PART_H__
9 #define __VRV_ELEMENT_PART_H__
10 
11 #include "atts_cmn.h"
12 #include "atts_shared.h"
13 #include "atts_visual.h"
14 #include "layerelement.h"
15 
16 namespace vrv {
17 
18 class TupletNum;
19 
20 //----------------------------------------------------------------------------
21 // Dots
22 //----------------------------------------------------------------------------
23 
27 class Dots : public LayerElement, public AttAugmentDots {
28 public:
33  Dots();
35  virtual ~Dots();
36  void Reset() override;
37  std::string GetClassName() const override { return "dots"; }
38  Object *Clone() const override { return new Dots(*this); }
40 
42  bool HasToBeAligned() const override { return true; }
43 
44  std::set<int> GetDotLocsForStaff(const Staff *staff) const;
45  std::set<int> &ModifyDotLocsForStaff(const Staff *staff);
46 
47  const MapOfDotLocs &GetMapOfDotLocs() const { return m_dotLocsByStaff; }
48  void SetMapOfDotLocs(const MapOfDotLocs &dotLocs) { m_dotLocsByStaff = dotLocs; };
49  void ResetMapOfDotLocs() { m_dotLocsByStaff.clear(); }
50 
51  void IsAdjusted(bool isAdjusted) { m_isAdjusted = isAdjusted; }
52  bool IsAdjusted() const { return m_isAdjusted; }
53 
54  //----------//
55  // Functors //
56  //----------//
57 
61  FunctorCode Accept(Functor &functor) override;
63  FunctorCode Accept(ConstFunctor &functor) const override;
64  FunctorCode AcceptEnd(Functor &functor) override;
65  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
67 
71  int GetFlagShift() const { return m_flagShift; }
73  void SetFlagShift(int shiftVal) { m_flagShift = shiftVal; }
75 
76 private:
77  //
78 public:
79  //
80 private:
84  MapOfDotLocs m_dotLocsByStaff;
85 
86  bool m_isAdjusted;
87  int m_flagShift;
88 };
89 
90 //----------------------------------------------------------------------------
91 // Flag
92 //----------------------------------------------------------------------------
93 
97 class Flag : public LayerElement {
98 public:
103  Flag();
105  virtual ~Flag();
106  void Reset() override;
107  std::string GetClassName() const override { return "flag"; }
108  Object *Clone() const override { return new Flag(*this); }
110 
112  bool HasToBeAligned() const override { return true; }
113 
114  char32_t GetFlagGlyph(data_STEMDIRECTION stemDir) const;
115 
116  Point GetStemUpSE(const Doc *doc, int staffSize, bool graceSize) const;
117  Point GetStemDownNW(const Doc *doc, int staffSize, bool graceSize) const;
118 
119  //----------//
120  // Functors //
121  //----------//
122 
126  FunctorCode Accept(Functor &functor) override;
128  FunctorCode Accept(ConstFunctor &functor) const override;
129  FunctorCode AcceptEnd(Functor &functor) override;
130  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
132 
133 private:
134  //
135 public:
138 
139 private:
140 };
141 
142 //----------------------------------------------------------------------------
143 // TupletBracket
144 //----------------------------------------------------------------------------
145 
150 class TupletBracket : public LayerElement, public AttTupletVis {
151 public:
156  TupletBracket();
158  virtual ~TupletBracket();
159  void Reset() override;
160  std::string GetClassName() const override { return "tupletBracket"; }
162 
166  int GetDrawingXRelLeft() const { return m_drawingXRelLeft; }
168  void SetDrawingXRelLeft(int drawingXRelLeft) { m_drawingXRelLeft = drawingXRelLeft; }
169  int GetDrawingXRelRight() const { return m_drawingXRelRight; }
170  void SetDrawingXRelRight(int drawingXRelRight) { m_drawingXRelRight = drawingXRelRight; }
171  // Vertical positions
172  int GetDrawingYRelLeft() const { return m_drawingYRelLeft; }
173  void SetDrawingYRelLeft(int drawingYRelLeft) { m_drawingYRelLeft = drawingYRelLeft; }
174  int GetDrawingYRelRight() const { return m_drawingYRelRight; }
175  void SetDrawingYRelRight(int drawingYRelRight) { m_drawingYRelRight = drawingYRelRight; }
177 
184  int GetDrawingXLeft() const;
186  int GetDrawingXRight() const;
187  int GetDrawingYLeft() const;
188  int GetDrawingYRight() const;
190 
194  TupletNum *GetAlignedNum() { return m_alignedNum; }
196  const TupletNum *GetAlignedNum() const { return m_alignedNum; }
197  void SetAlignedNum(TupletNum *alignedNum) { m_alignedNum = alignedNum; }
199 
200  //----------//
201  // Functors //
202  //----------//
203 
207  FunctorCode Accept(Functor &functor) override;
209  FunctorCode Accept(ConstFunctor &functor) const override;
210  FunctorCode AcceptEnd(Functor &functor) override;
211  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
213 
214 private:
215  //
216 public:
217  //
218 private:
223  int m_drawingXRelLeft;
228  int m_drawingXRelRight;
232  int m_drawingYRelLeft = 0;
236  int m_drawingYRelRight = 0;
238  TupletNum *m_alignedNum;
239 };
240 
241 //----------------------------------------------------------------------------
242 // TupletNum
243 //----------------------------------------------------------------------------
244 
249 class TupletNum : public LayerElement, public AttNumberPlacement, public AttTupletVis {
250 public:
255  TupletNum();
257  virtual ~TupletNum();
258  void Reset() override;
259  std::string GetClassName() const override { return "tupletNum"; }
261 
269  int GetDrawingYMid() const;
271  int GetDrawingXMid(const Doc *doc = NULL) const;
273 
277  TupletBracket *GetAlignedBracket() { return m_alignedBracket; }
279  const TupletBracket *GetAlignedBracket() const { return m_alignedBracket; }
280  void SetAlignedBracket(TupletBracket *alignedBracket);
282 
283  //----------//
284  // Functors //
285  //----------//
286 
290  FunctorCode Accept(Functor &functor) override;
292  FunctorCode Accept(ConstFunctor &functor) const override;
293  FunctorCode AcceptEnd(Functor &functor) override;
294  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
296 
297 private:
298  //
299 public:
300  //
301 private:
303  TupletBracket *m_alignedBracket;
304 };
305 
306 } // namespace vrv
307 
308 #endif
vrv::Dots::GetFlagShift
int GetFlagShift() const
Set/get methods for the flagShift.
Definition: elementpart.h:72
vrv::Staff
This class represents a staff in a laid-out score (Doc).
Definition: staff.h:102
vrv::TupletBracket::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::TupletNum::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::Flag::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: elementpart.h:112
vrv::Dots
This class models a group of dots as a layer element part and has no direct MEI equivalent.
Definition: elementpart.h:27
vrv::TupletBracket
This class models a bracket as a layer element part and has no direct MEI equivalent.
Definition: elementpart.h:150
vrv::TupletNum::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Dots::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::Flag
This class models a stem as a layer element part and has no direct MEI equivalent.
Definition: elementpart.h:97
vrv::Flag::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: elementpart.h:108
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::Dots::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::TupletNum
This class models a tuplet num as a layer element part and has no direct MEI equivalent.
Definition: elementpart.h:249
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::Dots::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: elementpart.h:42
vrv::TupletBracket::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::Flag::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::Flag::m_drawingNbFlags
int m_drawingNbFlags
The number of flags to be drawn.
Definition: elementpart.h:137
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Point
Simple class for representing points.
Definition: devicecontextbase.h:203
vrv::Flag::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Dots::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: elementpart.h:38