Verovio
Source code documentation
layer.h
1 // Name: layer.h
3 // Author: Laurent Pugin
4 // Created: 2011
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_LAYER_H__
9 #define __VRV_LAYER_H__
10 
11 #include "atts_shared.h"
12 #include "drawinginterface.h"
13 #include "object.h"
14 
15 namespace vrv {
16 
17 class Clef;
18 class DeviceContext;
19 class LayerElement;
20 class Measure;
21 class Note;
22 class StaffDef;
23 
24 //----------------------------------------------------------------------------
25 // Layer
26 //----------------------------------------------------------------------------
27 
33 class Layer : public Object,
34  public DrawingListInterface,
35  public ObjectListInterface,
36  public AttCue,
37  public AttNInteger,
38  public AttTyped,
39  public AttVisibility {
40 public:
45  Layer();
47  virtual ~Layer();
48  Object *Clone() const override { return new Layer(*this); }
49  void Reset() override;
50  std::string GetClassName() const override { return "layer"; }
52 
56  void CloneReset() override;
57 
61  bool IsSupportedChild(ClassId classId) override;
64 
69  int GetLayerIdx() const { return Object::GetIdx(); }
70 
71  LayerElement *GetPrevious(const LayerElement *element);
72  const LayerElement *GetPrevious(const LayerElement *element) const;
73  LayerElement *GetAtPos(int x);
74  const LayerElement *GetAtPos(int x) const;
75 
82  Clef *GetClef(const LayerElement *test);
84  const Clef *GetClef(const LayerElement *test) const;
86 
92  Clef *GetClefFacs(const LayerElement *test);
94  const Clef *GetClefFacs(const LayerElement *test) const;
96 
101  int GetClefLocOffset(const LayerElement *test) const;
102 
106  int GetCrossStaffClefLocOffset(const LayerElement *element, int locOffset) const;
107 
112  void SetDrawingStemDir(data_STEMDIRECTION stemDirection) { m_drawingStemDir = stemDirection; }
114  data_STEMDIRECTION GetDrawingStemDir(const LayerElement *element) const;
115  data_STEMDIRECTION GetDrawingStemDir(const ArrayOfBeamElementCoords *coords) const;
116  data_STEMDIRECTION GetDrawingStemDir() const { return m_drawingStemDir; }
118 
123  std::set<int> GetLayersNForTimeSpanOf(const LayerElement *element) const;
125  int GetLayerCountForTimeSpanOf(const LayerElement *element) const;
127 
132  std::set<int> GetLayersNInTimeSpan(
134  const Fraction &time, const Fraction &duration, const Measure *measure, int staff) const;
135  int GetLayerCountInTimeSpan(
136  const Fraction &time, const Fraction &duration, const Measure *measure, int staff) const;
138 
144  ListOfObjects GetLayerElementsForTimeSpanOf(const LayerElement *element, bool excludeCurrent = false);
146  ListOfConstObjects GetLayerElementsForTimeSpanOf(const LayerElement *element, bool excludeCurrent = false) const;
148 
153  ListOfObjects GetLayerElementsInTimeSpan(
155  const Fraction &time, const Fraction &duration, const Measure *measure, int staff, bool excludeCurrent);
156  ListOfConstObjects GetLayerElementsInTimeSpan(
157  const Fraction &time, const Fraction &duration, const Measure *measure, int staff, bool excludeCurrent) const;
159 
163  Clef *GetCurrentClef();
165  const Clef *GetCurrentClef() const;
166  KeySig *GetCurrentKeySig();
167  const KeySig *GetCurrentKeySig() const;
168  Mensur *GetCurrentMensur();
169  const Mensur *GetCurrentMensur() const;
170  MeterSig *GetCurrentMeterSig();
171  const MeterSig *GetCurrentMeterSig() const;
172  Proport *GetCurrentProport();
173  const Proport *GetCurrentProport() const;
175 
176  void ResetStaffDefObjects();
177 
181  void SetDrawingStaffDefValues(StaffDef *currentStaffDef);
183 
184  bool DrawKeySigCancellation() const { return m_drawKeySigCancellation; }
185  void SetDrawKeySigCancellation(bool drawKeySigCancellation) { m_drawKeySigCancellation = drawKeySigCancellation; }
186 
187  Clef *GetStaffDefClef() { return m_staffDefClef; }
188  const Clef *GetStaffDefClef() const { return m_staffDefClef; }
189  KeySig *GetStaffDefKeySig() { return m_staffDefKeySig; }
190  const KeySig *GetStaffDefKeySig() const { return m_staffDefKeySig; }
191  Mensur *GetStaffDefMensur() { return m_staffDefMensur; }
192  const Mensur *GetStaffDefMensur() const { return m_staffDefMensur; }
193  MeterSig *GetStaffDefMeterSig() { return m_staffDefMeterSig; }
194  const MeterSig *GetStaffDefMeterSig() const { return m_staffDefMeterSig; }
195  MeterSigGrp *GetStaffDefMeterSigGrp() { return m_staffDefMeterSigGrp; }
196  const MeterSigGrp *GetStaffDefMeterSigGrp() const { return m_staffDefMeterSigGrp; }
197 
198  bool HasStaffDef() const
199  {
200  return (m_staffDefClef || m_staffDefKeySig || m_staffDefMensur || m_staffDefMeterSig || m_staffDefMeterSigGrp);
201  }
203 
207  void SetDrawingCautionValues(StaffDef *currentStaffDef);
209 
210  bool DrawCautionKeySigCancel() const { return m_drawCautionKeySigCancel; }
211  void SetDrawCautionKeySigCancel(bool drawCautionKeySig) { m_drawCautionKeySigCancel = drawCautionKeySig; }
212 
213  Clef *GetCautionStaffDefClef() { return m_cautionStaffDefClef; }
214  const Clef *GetCautionStaffDefClef() const { return m_cautionStaffDefClef; }
215  KeySig *GetCautionStaffDefKeySig() { return m_cautionStaffDefKeySig; }
216  const KeySig *GetCautionStaffDefKeySig() const { return m_cautionStaffDefKeySig; }
217  Mensur *GetCautionStaffDefMensur() { return m_cautionStaffDefMensur; }
218  const Mensur *GetCautionStaffDefMensur() const { return m_cautionStaffDefMensur; }
219  MeterSig *GetCautionStaffDefMeterSig() { return m_cautionStaffDefMeterSig; }
220  const MeterSig *GetCautionStaffDefMeterSig() const { return m_cautionStaffDefMeterSig; }
221 
222  bool HasCautionStaffDef() const
223  {
224  return (
225  m_cautionStaffDefClef || m_cautionStaffDefKeySig || m_cautionStaffDefMensur || m_cautionStaffDefMeterSig);
226  }
228 
233  void SetCrossStaffFromAbove(bool crossStaff) { m_crossStaffFromAbove = crossStaff; }
234  bool HasCrossStaffFromAbove() const { return m_crossStaffFromAbove; }
235  void SetCrossStaffFromBelow(bool crossStaff) { m_crossStaffFromBelow = crossStaff; }
236  bool HasCrossStaffFromBelow() const { return m_crossStaffFromBelow; }
238 
239  //----------//
240  // Functors //
241  //----------//
242 
246  FunctorCode Accept(Functor &functor) override;
248  FunctorCode Accept(ConstFunctor &functor) const override;
249  FunctorCode AcceptEnd(Functor &functor) override;
250  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
252 
253 private:
254  //
255 public:
256  //
257 private:
261  data_STEMDIRECTION m_drawingStemDir;
262 
266  bool m_crossStaffFromBelow;
267  bool m_crossStaffFromAbove;
268 
270  Clef *m_staffDefClef;
271  KeySig *m_staffDefKeySig;
272  Mensur *m_staffDefMensur;
273  MeterSig *m_staffDefMeterSig;
274  MeterSigGrp *m_staffDefMeterSigGrp;
275  bool m_drawKeySigCancellation;
276 
278  Clef *m_cautionStaffDefClef;
279  KeySig *m_cautionStaffDefKeySig;
280  Mensur *m_cautionStaffDefMensur;
281  MeterSig *m_cautionStaffDefMeterSig;
282  bool m_drawCautionKeySigCancel;
283 };
284 
285 } // namespace vrv
286 
287 #endif
vrv::Layer::GetClefFacs
Clef * GetClefFacs(const LayerElement *test)
Get the current clef based on facsimile for the test element.
vrv::Layer::SetDrawingCautionValues
void SetDrawingCautionValues(StaffDef *currentStaffDef)
Set drawing caution clef, keysig, mensur, metersig if necessary and if available.
vrv::Layer::GetCrossStaffClefLocOffset
int GetCrossStaffClefLocOffset(const LayerElement *element, int locOffset) const
Return the clef offset for the position if there are cross-staff clefs on the same layer.
vrv::Layer::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Object::GetIdx
int GetIdx() const
Return the index position of the object in its parent (-1 if not found)
vrv::DrawingListInterface
This class is an interface for elements with duration, such as notes and rests.
Definition: drawinginterface.h:33
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Layer::GetClef
Clef * GetClef(const LayerElement *test)
Get the current clef for the test element.
vrv::Layer::GetClefLocOffset
int GetClefLocOffset(const LayerElement *test) const
Return the clef offset for the position x.
vrv::Layer::GetLayerElementsInTimeSpan
ListOfObjects GetLayerElementsInTimeSpan(const Fraction &time, const Fraction &duration, const Measure *measure, int staff, bool excludeCurrent)
Get the list of the layer elements used within a time span.
vrv::Clef
This class models the MEI <clef> element.
Definition: clef.h:27
vrv::Layer::GetLayerIdx
int GetLayerIdx() const
Return the index position of the layer in its staff parent.
Definition: layer.h:69
vrv::ObjectListInterface
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:873
vrv::Layer::GetCurrentClef
Clef * GetCurrentClef()
Get the current clef, keysig, mensur and meterSig.
vrv::Layer::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: layer.h:48
vrv::Layer::SetDrawingStaffDefValues
void SetDrawingStaffDefValues(StaffDef *currentStaffDef)
Set drawing clef, keysig, mensur, metersig, metersiggrp if necessary and if available.
vrv::Layer::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Base method for checking if a child can be added.
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Layer
This class represents a layer in a laid-out score (Doc).
Definition: layer.h:33
vrv::Layer::GetLayerElementsForTimeSpanOf
ListOfObjects GetLayerElementsForTimeSpanOf(const LayerElement *element, bool excludeCurrent=false)
Get the list of the layer elements for the duration of an element Takes into account cross-staff situ...
vrv::Layer::CloneReset
void CloneReset() override
Overriding CloneReset() method to be called after copy / assignment calls.