Verovio
Source code documentation
devicecontext.h
1 // Name: devicecontext.h
3 // Author: Laurent Pugin
4 // Created: 2010
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_DC_H__
9 #define __VRV_DC_H__
10 
11 #include <stack>
12 #include <string>
13 
14 //----------------------------------------------------------------------------
15 
16 #include "devicecontextbase.h"
17 #include "resources.h"
18 #include "vrvdef.h"
19 
20 //----------------------------------------------------------------------------
21 
22 #include "pugixml.hpp"
23 
24 namespace vrv {
25 
26 class Glyph;
27 class Object;
28 class View;
29 class Zone;
30 
31 extern "C" {
32 static inline double DegToRad(double deg)
33 {
34  return (deg * M_PI) / 180.0;
35 }
36 static inline double RadToDeg(double deg)
37 {
38  return (deg * 180.0) / M_PI;
39 }
40 }
41 
42 // ---------------------------------------------------------------------------
43 // DeviceContext
44 // ---------------------------------------------------------------------------
45 
58 public:
64  {
65  m_classId = DEVICE_CONTEXT;
66  m_resources = NULL;
67  m_isDeactivatedX = false;
68  m_isDeactivatedY = false;
69  m_width = 0;
70  m_height = 0;
71  m_contentHeight = 0;
72  m_userScaleX = 1.0;
73  m_userScaleY = 1.0;
74  m_baseWidth = 0;
75  m_baseHeight = 0;
76  m_pushBack = false;
77  m_viewBoxFactor = (double)DEFINITION_FACTOR;
78  this->SetBrush(1.0);
79  this->SetPen(1, PEN_SOLID);
80  }
81  DeviceContext(ClassId classId)
82  {
83  m_classId = classId;
84  m_resources = NULL;
85  m_isDeactivatedX = false;
86  m_isDeactivatedY = false;
87  m_width = 0;
88  m_height = 0;
89  m_contentHeight = 0;
90  m_userScaleX = 1.0;
91  m_userScaleY = 1.0;
92  m_baseWidth = 0;
93  m_baseHeight = 0;
94  m_pushBack = false;
95  m_viewBoxFactor = (double)DEFINITION_FACTOR;
96  this->SetBrush(1.0);
97  this->SetPen(1, PEN_SOLID);
98  }
99  virtual ~DeviceContext();
100  ClassId GetClassId() const { return m_classId; }
101  bool Is(ClassId classId) const { return (m_classId == classId); }
103 
108  const Resources *GetResources(bool showWarning = false) const;
110  bool HasResources() const { return (m_resources != NULL); }
111  void SetResources(const Resources *resources) { m_resources = resources; }
112  void ResetResources() { m_resources = NULL; }
114 
119  void SetWidth(int width) { m_width = width; }
121  void SetHeight(int height) { m_height = height; }
122  void SetContentHeight(int height) { m_contentHeight = height; }
123  void SetUserScale(double scaleX, double scaleY)
124  {
125  m_userScaleX = scaleX;
126  m_userScaleY = scaleY;
127  }
128  void SetBaseSize(int width, int height)
129  {
130  m_baseWidth = width;
131  m_baseHeight = height;
132  }
133  void SetViewBoxFactor(double ppuFactor);
134  int GetWidth() const { return m_width; }
135  int GetHeight() const { return m_height; }
136  int GetContentHeight() const { return m_contentHeight; }
137  double GetUserScaleX() { return m_userScaleX; }
138  double GetUserScaleY() { return m_userScaleY; }
139  std::pair<int, int> GetBaseSize() const { return std::make_pair(m_baseWidth, m_baseHeight); }
140  double GetViewBoxFactor() const { return m_viewBoxFactor; }
142 
147  void SetBrush(float opacity, int color = COLOR_NONE);
149  void SetPen(int width, PenStyle style, int dashLength = 0, int gapLength = 0,
150  LineCapStyle lineCap = LINECAP_DEFAULT, LineJoinStyle lineJoin = LINEJOIN_DEFAULT, float opacity = 1.0,
151  int color = COLOR_NONE);
152  void SetFont(FontInfo *font);
153  void SetPushBack() { m_pushBack = true; }
154  void ResetBrush();
155  void ResetPen();
156  void ResetFont();
157  void ResetPushBack() { m_pushBack = false; }
158  virtual void SetBackground(int color, int style = PEN_SOLID) = 0;
159  virtual void SetBackgroundImage(void *image, double opacity = 1.0) = 0;
160  virtual void SetBackgroundMode(int mode) = 0;
161  virtual void SetTextForeground(int color) = 0;
162  virtual void SetTextBackground(int color) = 0;
163  virtual void SetLogicalOrigin(int x, int y) = 0;
165 
169  FontInfo *GetFont();
171  bool HasFont() const { return !m_fontStack.empty(); }
173 
177  virtual void GetTextExtent(const std::string &string, TextExtend *extend, bool typeSize);
179  virtual void GetTextExtent(const std::u32string &string, TextExtend *extend, bool typeSize);
180  virtual void GetSmuflTextExtent(const std::u32string &string, TextExtend *extend);
181 
185  virtual Point GetLogicalOrigin() = 0;
188 
192  virtual void DrawQuadBezierPath(Point bezier[3]) = 0;
194  virtual void DrawCubicBezierPath(Point bezier[4]) = 0;
195  virtual void DrawCubicBezierPathFilled(Point bezier1[4], Point bezier2[4]) = 0;
196  virtual void DrawBentParallelogramFilled(Point side[4], int height) = 0;
197  virtual void DrawCircle(int x, int y, int radius) = 0;
198  virtual void DrawEllipse(int x, int y, int width, int height) = 0;
199  virtual void DrawEllipticArc(int x, int y, int width, int height, double start, double end) = 0;
200  virtual void DrawLine(int x1, int y1, int x2, int y2) = 0;
201  virtual void DrawPolyline(int n, Point points[], bool close = false) = 0;
202  virtual void DrawPolygon(int n, Point points[]) = 0;
203  virtual void DrawRectangle(int x, int y, int width, int height) = 0;
204  virtual void DrawRotatedText(const std::string &text, int x, int y, double angle) = 0;
205  virtual void DrawRoundedRectangle(int x, int y, int width, int height, int radius) = 0;
206  virtual void DrawText(const std::string &text, const std::u32string &wtext = U"", int x = VRV_UNSET,
207  int y = VRV_UNSET, int width = VRV_UNSET, int height = VRV_UNSET)
208  = 0;
209  virtual void DrawMusicText(const std::u32string &text, int x, int y, bool setSmuflGlyph = false) = 0;
210  virtual void DrawSpline(int n, Point points[]) = 0;
211  virtual void DrawGraphicUri(int x, int y, int width, int height, const std::string &uri) = 0;
212  virtual void DrawSvgShape(int x, int y, int width, int height, double scale, pugi::xml_node svg) = 0;
213  virtual void DrawBackgroundImage(int x = 0, int y = 0) = 0;
215 
220  virtual void DrawPlaceholder(int x, int y) {}
221 
227  virtual void StartText(int x, int y, data_HORIZONTALALIGNMENT alignment = HORIZONTALALIGNMENT_left) = 0;
229  virtual void EndText() = 0;
230 
235  virtual void MoveTextTo(int x, int y, data_HORIZONTALALIGNMENT alignment) = 0;
237  virtual void MoveTextVerticallyTo(int y) = 0;
239 
248  void DeactivateGraphic();
250  void DeactivateGraphicX();
251  void DeactivateGraphicY();
252  void ReactivateGraphic();
254 
259  virtual void StartGraphic(Object *object, const std::string &gClass, const std::string &gId,
261  GraphicID graphicID = PRIMARY, bool preprend = false)
262  = 0;
263  virtual void EndGraphic(Object *object, View *view) = 0;
265 
270  virtual void StartCustomGraphic(const std::string &name, std::string gClass = "", std::string gId = "") {}
272  virtual void EndCustomGraphic() {}
274 
278  virtual void SetCustomGraphicColor(const std::string &color) {}
279 
283  virtual void SetCustomGraphicAttributes(const std::string &data, const std::string &value) {}
284 
289  virtual void ResumeGraphic(Object *object, std::string gId) = 0;
291  virtual void EndResumedGraphic(Object *object, View *view) = 0;
293 
298  virtual void StartTextGraphic(Object *object, const std::string &gClass, const std::string &gId)
300  {
301  StartGraphic(object, gClass, gId);
302  }
303  virtual void EndTextGraphic(Object *object, View *view) { EndGraphic(object, view); }
305 
310  virtual void RotateGraphic(Point const &orig, double angle) = 0;
313 
317  virtual void StartPage() = 0;
319  virtual void EndPage() = 0;
321 
325  virtual void AddDescription(const std::string &text) {}
328 
334  virtual bool UseGlobalStyling() { return false; }
335 
336  //----------------//
337  // Static methods //
338  //----------------//
339 
341  static int RGB2Int(char red, char green, char blue) { return (red << 16 | green << 8 | blue); }
342 
343 private:
344  void AddGlyphToTextExtend(const Glyph *glyph, TextExtend *extend);
345 
346 public:
347  //
348 protected:
349  std::stack<Pen> m_penStack;
350  std::stack<Brush> m_brushStack;
351  std::stack<FontInfo *> m_fontStack;
352 
355  bool m_isDeactivatedY;
356 
359 
360  Zone *m_facsimile = NULL;
361 
362 private:
364  ClassId m_classId;
365 
367  const Resources *m_resources;
368 
370  int m_width;
371  int m_height;
372 
374  int m_baseWidth;
375  int m_baseHeight;
376 
378  int m_contentHeight;
379 
381  double m_userScaleX;
382  double m_userScaleY;
383 
385  double m_viewBoxFactor;
386 };
387 
388 } // namespace vrv
389 
390 #endif // __AX_DC_H__
vrv::Zone
Implements the zone element in MEI.
Definition: zone.h:30
vrv::DeviceContext::DrawPlaceholder
virtual void DrawPlaceholder(int x, int y)
Special method for forcing bounding boxes to be updated Used for invisible elements (e....
Definition: devicecontext.h:220
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::DeviceContext::RGB2Int
static int RGB2Int(char red, char green, char blue)
Color conversion method.
Definition: devicecontext.h:341
vrv::DeviceContext::SetCustomGraphicColor
virtual void SetCustomGraphicColor(const std::string &color)
Method for changing the color of a custom graphic.
Definition: devicecontext.h:278
vrv::DeviceContext::m_isDeactivatedX
bool m_isDeactivatedX
flag for indicating if the graphic is deactivated
Definition: devicecontext.h:354
vrv::FontInfo
This class is store font properties.
Definition: devicecontextbase.h:137
vrv::DeviceContext
This class is an abstract device context.
Definition: devicecontext.h:57
vrv::DeviceContext::SetCustomGraphicAttributes
virtual void SetCustomGraphicAttributes(const std::string &data, const std::string &value)
Method for adding custom graphic data-* attributes.
Definition: devicecontext.h:283
vrv::Resources
This class provides resource values.
Definition: resources.h:30
vrv::DeviceContext::UseGlobalStyling
virtual bool UseGlobalStyling()
Method indicating if default global styling is used.
Definition: devicecontext.h:334
vrv::DeviceContext::m_pushBack
bool m_pushBack
push back mode
Definition: devicecontext.h:358
vrv::View
This class is a drawing context and corresponds to the view of a MVC design pattern.
Definition: view.h:105
vrv::Glyph
This class is used for storing a music font glyph.
Definition: glyph.h:31
vrv::Point
Simple class for representing points.
Definition: devicecontextbase.h:203
vrv::TextExtend
Simple class for representing text extends.
Definition: devicecontextbase.h:345