Verovio
Source code documentation
text.h
1 // Name: text.h
3 // Author: Laurent Pugin
4 // Created: 2015
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_TEXT_H__
9 #define __VRV_TEXT_H__
10 
11 #include "atts_shared.h"
12 #include "textelement.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // Text
18 //----------------------------------------------------------------------------
19 
23 class Text : public TextElement {
24 public:
29  Text();
31  virtual ~Text();
32  Object *Clone() const override { return new Text(*this); }
33  void Reset() override;
34  std::string GetClassName() const override { return "text"; }
36 
42  void SetText(const std::u32string &text) { m_text = text; }
44  std::u32string GetText() const { return m_text; }
46 
50  bool IsGenerated() const { return m_isGenerated; }
52  void IsGenerated(bool isGenerated) { m_isGenerated = isGenerated; }
54 
58  FunctorCode Accept(Functor &functor) override;
60  FunctorCode Accept(ConstFunctor &functor) const override;
61  FunctorCode AcceptEnd(Functor &functor) override;
62  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
64 
65 private:
66  //
67 public:
68  //
69 protected:
71  std::u32string m_text;
72 
73 private:
77  bool m_isGenerated;
78 };
79 
80 } // namespace vrv
81 
82 #endif
vrv::Text::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::Text
This class models CDATA (text)
Definition: text.h:23
vrv::TextElement
Definition: textelement.h:22
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Text::m_text
std::u32string m_text
The text content.
Definition: text.h:71
vrv::Text::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Text::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: text.h:32