Verovio
Source code documentation
dot.h
1 // Name: dot.h
3 // Author: Laurent Pugin
4 // Created: 2014
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_DOT_H__
9 #define __VRV_DOT_H__
10 
11 #include "layerelement.h"
12 #include "positioninterface.h"
13 
14 namespace vrv {
15 
16 class Note;
17 
18 //----------------------------------------------------------------------------
19 // Dot
20 //----------------------------------------------------------------------------
21 
22 class Dot : public LayerElement, public PositionInterface, public AttColor, public AttDotLog {
23 public:
28  Dot();
30  virtual ~Dot();
31  Object *Clone() const override { return new Dot(*this); }
32  void Reset() override;
33  std::string GetClassName() const override { return "dot"; }
35 
39  PositionInterface *GetPositionInterface() override { return vrv_cast<PositionInterface *>(this); }
41  const PositionInterface *GetPositionInterface() const override { return vrv_cast<const PositionInterface *>(this); }
43 
45  bool HasToBeAligned() const override { return true; }
46 
47  //----------//
48  // Functors //
49  //----------//
50 
54  FunctorCode Accept(Functor &functor) override;
56  FunctorCode Accept(ConstFunctor &functor) const override;
57  FunctorCode AcceptEnd(Functor &functor) override;
58  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
60 
61 private:
62  //
63 public:
68 
73 
74 private:
75 };
76 
77 } // namespace vrv
78 
79 #endif
vrv::Dot::m_drawingNextElement
LayerElement * m_drawingNextElement
A pointer to the next LayerElement (note, barLine, etc.)
Definition: dot.h:72
vrv::Dot::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: dot.h:45
vrv::Dot::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::PositionInterface
This class is an interface for elements with a position on the staff, such as rests.
Definition: positioninterface.h:30
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Dot::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: dot.h:31
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::Dot::m_drawingPreviousElement
LayerElement * m_drawingPreviousElement
A pointer to the previous LayerElement it relates to.
Definition: dot.h:67
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::Dot
Definition: dot.h:22
vrv::Dot::Reset
void Reset() override
Virtual reset method.
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46