Verovio
Source code documentation
runningelement.h
1 // Name: runningelement.h
3 // Author: Laurent Pugin
4 // Created: 2017
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_RUNNING_ELEMENT_H__
9 #define __VRV_RUNNING_ELEMENT_H__
10 
11 #include "atts_shared.h"
12 #include "textlayoutelement.h"
13 
14 namespace vrv {
15 
16 class Page;
17 class Staff;
18 class TextElement;
19 
20 //----------------------------------------------------------------------------
21 // RunningElement
22 //----------------------------------------------------------------------------
23 
28 class RunningElement : public TextLayoutElement, public AttFormework {
29 public:
34  // RunningElement();
36  RunningElement(ClassId classId);
37  virtual ~RunningElement();
38  void Reset() override;
40 
45  Object *Clone() const override { return NULL; }
46 
50  bool IsGenerated() const { return m_isGenerated; }
52  void IsGenerated(bool isGenerated) { m_isGenerated = isGenerated; }
54 
58  int GetDrawingX() const override;
60  int GetDrawingY() const override;
62 
63  int GetTotalWidth(const Doc *doc) const override;
64 
65  /*
66  * @name Setter and getter for the current drawing page
67  */
69  void SetDrawingPage(Page *page);
70  Page *GetDrawingPage() { return m_drawingPage; }
71  const Page *GetDrawingPage() const { return m_drawingPage; }
73 
77  int GetDrawingYRel() const { return m_drawingYRel; }
79  virtual void SetDrawingYRel(int drawingYRel);
81 
85  void SetCurrentPageNum(const Page *currentPage);
86 
90  void LoadFooter(const Doc *doc);
91 
95  void AddPageNum(data_HORIZONTALALIGNMENT halign, data_VERTICALALIGNMENT valign);
96 
97  //----------//
98  // Functors //
99  //----------//
100 
104  FunctorCode Accept(Functor &functor) override;
106  FunctorCode Accept(ConstFunctor &functor) const override;
107  FunctorCode AcceptEnd(Functor &functor) override;
108  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
110 
111 private:
112  //
113 
114 public:
115  //
116 private:
120  Page *m_drawingPage;
121 
125  int m_drawingYRel;
126 
130  bool m_isGenerated;
131 };
132 
133 } // namespace vrv
134 
135 #endif
vrv::RunningElement::AddPageNum
void AddPageNum(data_HORIZONTALALIGNMENT halign, data_VERTICALALIGNMENT valign)
Add page numbering to the running element.
vrv::RunningElement::LoadFooter
void LoadFooter(const Doc *doc)
Load the footer from the resources (footer.svg)
vrv::RunningElement::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::RunningElement::SetCurrentPageNum
void SetCurrentPageNum(const Page *currentPage)
Set the current page number by looking for a <num label="page">#</num> element.
vrv::RunningElement
This class represents running elements (headers and footers).
Definition: runningelement.h:28
vrv::RunningElement::Clone
Object * Clone() const override
Disable cloning of the running elements (for now?).
Definition: runningelement.h:45
vrv::TextLayoutElement
This class represents a text element featuring horizontal and vertical layout.
Definition: textlayoutelement.h:24
vrv::RunningElement::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.