Verovio
Source code documentation
controlelement.h
1 // Name: controlelement.h
3 // Author: Laurent Pugin
4 // Created: 2015
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_CONTROL_ELEMENT_H__
9 #define __VRV_CONTROL_ELEMENT_H__
10 
11 #include "altsyminterface.h"
12 #include "atts_shared.h"
13 #include "atts_visual.h"
14 #include "devicecontextbase.h"
15 #include "floatingobject.h"
16 #include "linkinginterface.h"
17 
18 namespace vrv {
19 
20 //----------------------------------------------------------------------------
21 // ControlElement
22 //----------------------------------------------------------------------------
23 
29  public AltSymInterface,
30  public LinkingInterface,
31  public AttColor,
32  public AttLabelled,
33  public AttTyped {
34 public:
41  ControlElement(ClassId classId);
42  virtual ~ControlElement();
43  void Reset() override;
45 
49  AltSymInterface *GetAltSymInterface() override { return vrv_cast<AltSymInterface *>(this); }
51  const AltSymInterface *GetAltSymInterface() const override { return vrv_cast<const AltSymInterface *>(this); }
52  LinkingInterface *GetLinkingInterface() override { return vrv_cast<LinkingInterface *>(this); }
53  const LinkingInterface *GetLinkingInterface() const override { return vrv_cast<const LinkingInterface *>(this); }
55 
59  data_HORIZONTALALIGNMENT GetChildRendAlignment() const;
60 
66  data_STAFFREL GetLayerPlace(data_STAFFREL defaultValue) const;
67 
68  //----------//
69  // Functors //
70  //----------//
71 
75  FunctorCode Accept(Functor &functor) override;
77  FunctorCode Accept(ConstFunctor &functor) const override;
78  FunctorCode AcceptEnd(Functor &functor) override;
79  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
81 
82 private:
83  //
84 public:
85  //
86 private:
87  //
88 };
89 
90 } // namespace vrv
91 
92 #endif
vrv::ControlElement::GetLayerPlace
data_STAFFREL GetLayerPlace(data_STAFFREL defaultValue) const
Check if the ControlElement applies at a point where there is more than on layer.
vrv::LinkingInterface
This class is an interface for elements having a link It is not an abstract class but should not be i...
Definition: linkinginterface.h:31
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::AltSymInterface
This class is an interface for elements having a @altsym It is not an abstract class but should not b...
Definition: altsyminterface.h:30
vrv::FloatingObject
This class represents elements appearing within a measure.
Definition: floatingobject.h:28
vrv::ControlElement::Reset
void Reset() override
Virtual reset method.
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::ControlElement::GetChildRendAlignment
data_HORIZONTALALIGNMENT GetChildRendAlignment() const
Check if the ControlElement has a Rend child and return its @halign equivalent (if any)
vrv::ControlElement
This class represents elements appearing within a measure.
Definition: controlelement.h:28
vrv::ControlElement::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.