Verovio
Source code documentation
pghead.h
1 // Name: pghead.h
3 // Author: Laurent Pugin
4 // Created: 2017
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_PGHEAD_H__
9 #define __VRV_PGHEAD_H__
10 
11 #include "runningelement.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // PgHead
17 //----------------------------------------------------------------------------
18 
22 class PgHead : public RunningElement {
23 public:
28  PgHead();
30  virtual ~PgHead();
31  void Reset() override;
32  std::string GetClassName() const override { return "pgHead"; }
34 
38  int GetTotalHeight(const Doc *doc) const override;
39 
40  bool GenerateFromMEIHeader(const pugi::xml_document &header);
41 
42  //----------//
43  // Functors //
44  //----------//
45 
49  FunctorCode Accept(Functor &functor) override;
51  FunctorCode Accept(ConstFunctor &functor) const override;
52  FunctorCode AcceptEnd(Functor &functor) override;
53  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
55 
56 private:
57  //
58 public:
59  //
60 private:
61  //
62 };
63 
64 } // namespace vrv
65 
66 #endif
vrv::PgHead
This class represents an MEI pgHead.
Definition: pghead.h:22
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::PgHead::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::RunningElement
This class represents running elements (headers and footers).
Definition: runningelement.h:28
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::PgHead::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::PgHead::GetTotalHeight
int GetTotalHeight(const Doc *doc) const override
Overriden to get the appropriate margin.