Verovio
Source code documentation
anchoredtext.h
1 // Name: anchoredtext.h
3 // Author: Laurent Pugin
4 // Created: 2015
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ANCHORED_TEXT_H__
9 #define __VRV_ANCHORED_TEXT_H__
10 
11 #include "controlelement.h"
12 #include "textdirinterface.h"
13 
14 namespace vrv {
15 
16 class TextElement;
17 
18 //----------------------------------------------------------------------------
19 // AnchoredText
20 //----------------------------------------------------------------------------
21 
26 public:
31  AnchoredText();
33  virtual ~AnchoredText();
34  Object *Clone() const override { return new AnchoredText(*this); }
35  void Reset() override;
36  std::string GetClassName() const override { return "anchoredText"; }
38 
42  TextDirInterface *GetTextDirInterface() override { return vrv_cast<TextDirInterface *>(this); }
44  const TextDirInterface *GetTextDirInterface() const override { return vrv_cast<const TextDirInterface *>(this); }
46 
51  bool IsSupportedChild(ClassId classId) override;
52 
53  //----------//
54  // Functors //
55  //----------//
56 
60  FunctorCode Accept(Functor &functor) override;
62  FunctorCode Accept(ConstFunctor &functor) const override;
63  FunctorCode AcceptEnd(Functor &functor) override;
64  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
66 
67 private:
68  //
69 public:
70  //
71 private:
72 };
73 
74 } // namespace vrv
75 
76 #endif
vrv::AnchoredText::Reset
void Reset() override
Virtual reset method.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::AnchoredText
This class is an interface for <anchoredText> elements at the measure level.
Definition: anchoredtext.h:25
vrv::AnchoredText::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::AnchoredText::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element (text, rend.
vrv::TextDirInterface
This class is an interface for elements implementing a text directive, such as <dir>,...
Definition: textdirinterface.h:26
vrv::AnchoredText::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: anchoredtext.h:34
vrv::ControlElement
This class represents elements appearing within a measure.
Definition: controlelement.h:28