Verovio
Source code documentation
page.h
1 // Name: page.h
3 // Author: Laurent Pugin
4 // Created: 2005
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_PAGE_H__
9 #define __VRV_PAGE_H__
10 
11 #include "object.h"
12 #include "scoredef.h"
13 
14 namespace vrv {
15 
16 class DeviceContext;
17 class RunningElement;
18 class Score;
19 class Staff;
20 class System;
21 
22 //----------------------------------------------------------------------------
23 // Page
24 //----------------------------------------------------------------------------
25 
31 class Page : public Object {
32 public:
37  Page();
39  virtual ~Page();
40  void Reset() override;
41  std::string GetClassName() const override { return "page"; }
43 
47  bool IsSupportedChild(ClassId classId) override;
50 
54  double GetPPUFactor() const { return m_PPUFactor; }
56  void SetPPUFactor(double PPUFactor) { m_PPUFactor = PPUFactor; }
58 
62  bool IsFirstOfSelection() const;
64  bool IsLastOfSelection() const;
66 
71  RunningElement *GetHeader();
73  const RunningElement *GetHeader() const;
74  RunningElement *GetFooter();
75  const RunningElement *GetFooter() const;
77 
81  int GetPageIdx() const { return Object::GetIdx(); }
82 
88  void LayOut();
89  void DeprecateLayout() { m_layoutDone = false; }
90 
95  void LayOutTranscription(bool force = false);
96 
100  void LayOutHorizontally();
101 
107  void LayOutHorizontallyWithCache(bool restore = false);
108 
112  void JustifyHorizontally();
113 
117  void LayOutVertically();
118 
122  void JustifyVertically();
123 
127  void ResetAligners();
128 
132  void LayOutPitchPos();
133 
139  int GetContentHeight() const;
140 
147  int GetContentWidth() const;
148 
149  //----------//
150  // Functors //
151  //----------//
152 
156  FunctorCode Accept(Functor &functor) override;
158  FunctorCode Accept(ConstFunctor &functor) const override;
159  FunctorCode AcceptEnd(Functor &functor) override;
160  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
162 
163 private:
167  void AdjustSylSpacingByVerse(const IntTree &verseTree, Doc *doc);
168 
172  void ReduceJustifiableHeight(const Doc *doc);
173 
174  //
175 public:
192  std::string m_surface;
193 
201 
206  Score *m_score;
208  Score *m_scoreEnd;
210 
214  double m_PPUFactor;
215 
221 
227 
228 private:
234  bool m_layoutDone;
235 };
236 
237 } // namespace vrv
238 
239 #endif
vrv::Page::JustifyHorizontally
void JustifyHorizontally()
Justifiy the content of the page (measures and their content) horizontally.
vrv::Page::JustifyVertically
void JustifyVertically()
Justifiy the content of the page (system/staves) vertically.
vrv::Page::ResetAligners
void ResetAligners()
Reset and set the horizontal and vertical alignment.
vrv::Page::m_drawingJustifiableHeight
int m_drawingJustifiableHeight
The height that can be justified once the systems are aligned.
Definition: page.h:220
vrv::Page::LayOutHorizontallyWithCache
void LayOutHorizontallyWithCache(bool restore=false)
Lay out the measures horizontally using the cached values.
vrv::Page::m_pageMarginTop
int m_pageMarginTop
Page top margin (MEI scoredef@page.topmar).
Definition: page.h:187
vrv::Page::LayOutTranscription
void LayOutTranscription(bool force=false)
Do the layout for a transcription page (with layout information).
vrv::Page::GetPageIdx
int GetPageIdx() const
Return the index position of the page in its document parent.
Definition: page.h:81
vrv::Object::GetIdx
int GetIdx() const
Return the index position of the object in its parent (-1 if not found)
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Page::LayOutPitchPos
void LayOutPitchPos()
Lay out the pitch positions and stems (without redoing the entire layout)
vrv::Page::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Page::GetContentWidth
int GetContentWidth() const
Return the width of the content by looking at the first system of the page.
vrv::Page::LayOutVertically
void LayOutVertically()
Lay out the content of the page (system/staves) vertically.
vrv::Page::m_pageMarginBottom
int m_pageMarginBottom
Page bottom margin (MEI scoredef@page.botmar).
Definition: page.h:181
vrv::Page::m_pageMarginRight
int m_pageMarginRight
Page right margin (MEI scoredef@page.rightmar).
Definition: page.h:185
vrv::Page::m_drawingScoreDef
ScoreDef m_drawingScoreDef
Hold the top scoreDef of the page.
Definition: page.h:200
vrv::Page::m_pageMarginLeft
int m_pageMarginLeft
Page left margin (MEI scoredef@page.leftmar).
Definition: page.h:183
vrv::RunningElement
This class represents running elements (headers and footers).
Definition: runningelement.h:28
vrv::Page::m_PPUFactor
double m_PPUFactor
Temporary member that will be replace by its LibMEI equivalent in the next version of the page-based ...
Definition: page.h:214
vrv::Page::LayOutHorizontally
void LayOutHorizontally()
Lay out the content of the page (measures and their content) horizontally.
vrv::Page::GetContentHeight
int GetContentHeight() const
Return the height of the content by looking at the last system of the page.
vrv::Page::m_pageWidth
int m_pageWidth
Page width (MEI scoredef@page.width).
Definition: page.h:177
vrv::Page
This class represents a page in a laid-out score (Doc).
Definition: page.h:31
vrv::Page::LayOut
void LayOut()
Do the layout of the page, which means aligning its content horizontally and vertically,...
vrv::Page::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::Page::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Base method for checking if a child can be added.
vrv::ScoreDef
This class represents a MEI scoreDef.
Definition: scoredef.h:129
vrv::Page::m_pageHeight
int m_pageHeight
Page height (MEI scoredef@page.height).
Definition: page.h:179
vrv::Page::m_justificationSum
double m_justificationSum
the sum of justification factors for each type of spacing in between systems and staves (staff,...
Definition: page.h:226
vrv::Score
This class represent a <score> in MEI.
Definition: score.h:30
vrv::Page::m_surface
std::string m_surface
Surface (MEI @surface).
Definition: page.h:192