Verovio
Source code documentation
system.h
1 // Name: system.h
3 // Author: Laurent Pugin
4 // Created: 2011
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_SYSTEM_H__
9 #define __VRV_SYSTEM_H__
10 
11 #include "drawinginterface.h"
12 #include "editorial.h"
13 #include "object.h"
14 #include "verticalaligner.h"
15 #include "vrvdef.h"
16 
17 namespace vrv {
18 
19 class SystemMilestoneEnd;
20 class DeviceContext;
21 class Ending;
22 class Measure;
23 class ScoreDef;
24 class Slur;
25 class Staff;
26 
27 //----------------------------------------------------------------------------
28 // System
29 //----------------------------------------------------------------------------
30 
36 class System : public Object, public DrawingListInterface, public AttTyped {
37 public:
42  System();
44  virtual ~System();
45  void Reset() override;
46  std::string GetClassName() const override { return "system"; }
48 
52  bool IsSupportedChild(ClassId classId) override;
55 
59  int GetDrawingX() const override;
61  int GetDrawingY() const override;
63 
67  int GetDrawingXRel() const { return m_drawingXRel; }
69  virtual void SetDrawingXRel(int drawingXRel);
70  int GetDrawingYRel() const { return m_drawingYRel; }
71  virtual void SetDrawingYRel(int drawingYRel);
73 
77  int GetDrawingLabelsWidth() const;
79  void SetDrawingLabelsWidth(int width);
80  int GetDrawingAbbrLabelsWidth() const { return m_drawingAbbrLabelsWidth; }
81  void SetDrawingAbbrLabelsWidth(int width);
82  void ResetDrawingAbbrLabelsWidth() { m_drawingAbbrLabelsWidth = 0; }
84 
88  int GetHeight() const;
89 
93  int GetMinimumSystemSpacing(const Doc *doc) const;
94 
98  int GetSystemIdx() const { return Object::GetIdx(); }
99 
100  bool SetCurrentFloatingPositioner(
101  int staffN, FloatingObject *object, Object *objectX, Object *objectY, char spanningType = SPANNING_START_END);
102 
106  ScoreDef *GetDrawingScoreDef() { return m_drawingScoreDef; }
108  const ScoreDef *GetDrawingScoreDef() const { return m_drawingScoreDef; }
109  void SetDrawingScoreDef(ScoreDef *drawingScoreDef);
110  void ResetDrawingScoreDef();
112 
117  bool HasMixedDrawingStemDir(const LayerElement *start, const LayerElement *end) const;
118 
122  curvature_CURVEDIR GetPreferredCurveDirection(
123  const LayerElement *start, const LayerElement *end, const Slur *slur) const;
124 
128  bool IsDrawingOptimized() const { return m_drawingIsOptimized; }
130  void IsDrawingOptimized(bool drawingIsOptimized) { m_drawingIsOptimized = drawingIsOptimized; }
132 
137  void AddToDrawingListIfNecessary(Object *object);
138 
143  bool IsFirstInPage() const;
145  bool IsLastInPage() const;
146  bool IsFirstOfMdiv() const;
147  bool IsLastOfMdiv() const;
148  bool IsFirstOfSelection() const;
149  bool IsLastOfSelection() const;
151 
155  double EstimateJustificationRatio(const Doc *doc) const;
156 
161 
162  //----------//
163  // Functors //
164  //----------//
165 
169  FunctorCode Accept(Functor &functor) override;
171  FunctorCode Accept(ConstFunctor &functor) const override;
172  FunctorCode AcceptEnd(Functor &functor) override;
173  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
175 
176 public:
177  SystemAligner m_systemAligner;
178 
179 public:
203  int m_drawingTotalWidth;
205  int m_drawingJustifiableWidth;
207 
212  int m_castOffTotalWidth;
214  int m_castOffJustifiableWidth;
216 
217 protected:
228 
229 private:
233  ScoreDef *m_drawingScoreDef;
234 
239  bool m_drawingIsOptimized;
240 };
241 
242 } // namespace vrv
243 
244 #endif
vrv::System::GetMinimumSystemSpacing
int GetMinimumSystemSpacing(const Doc *doc) const
Return the minimus system spacing.
vrv::System::m_systemLeftMar
int m_systemLeftMar
System left margin (MEI scoredef@system.leftmar).
Definition: system.h:181
vrv::System::GetSystemIdx
int GetSystemIdx() const
Return the index position of the system in its page parent.
Definition: system.h:98
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::System::m_drawingFacsY
int m_drawingFacsY
The Y absolute position of the staff for facsimile (transcription) encodings.
Definition: system.h:188
vrv::System::EstimateJustificationRatio
double EstimateJustificationRatio(const Doc *doc) const
Estimate the justification ratio from the castoff system widths and the desired page width.
vrv::Object::GetIdx
int GetIdx() const
Return the index position of the object in its parent (-1 if not found)
vrv::DrawingListInterface
This class is an interface for elements with duration, such as notes and rests.
Definition: drawinginterface.h:33
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::System::m_drawingAbbrLabelsWidth
int m_drawingAbbrLabelsWidth
The width used by the abbreviated labels at the left of the system.
Definition: system.h:198
vrv::System::m_drawingXRel
int m_drawingXRel
The X relative position of the system.
Definition: system.h:222
vrv::System::GetHeight
int GetHeight() const
Return the height of the system.
vrv::System::m_drawingFacsX
int m_drawingFacsX
The x absolute position of the system for facsimile layouts.
Definition: system.h:193
vrv::System::GetPreferredCurveDirection
curvature_CURVEDIR GetPreferredCurveDirection(const LayerElement *start, const LayerElement *end, const Slur *slur) const
Get preferred curve direction based on the starting and ending point of the slur.
vrv::System::AddToDrawingListIfNecessary
void AddToDrawingListIfNecessary(Object *object)
Add an object to the drawing list but only if necessary.
vrv::FloatingObject
This class represents elements appearing within a measure.
Definition: floatingobject.h:28
vrv::System::m_systemRightMar
int m_systemRightMar
System right margin (MEI scoredef@system.rightmar).
Definition: system.h:183
vrv::System
This class represents a system in a laid-out score (Doc).
Definition: system.h:36
vrv::ScoreDef
This class represents a MEI scoreDef.
Definition: scoredef.h:129
vrv::System::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Base method for checking if a child can be added.
vrv::System::HasMixedDrawingStemDir
bool HasMixedDrawingStemDir(const LayerElement *start, const LayerElement *end) const
Check if the notes between the start and end have mixed drawing stem directions.
vrv::System::m_drawingYRel
int m_drawingYRel
The Y relative position of the system.
Definition: system.h:227
vrv::System::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::System::ConvertToUnCastOffMensuralSystem
void ConvertToUnCastOffMensuralSystem()
Reverse of ConvertToCastOffMensural()