Verovio
Source code documentation
bboxdevicecontext.h
1 // Name: bboxdevicecontext.h
3 // Author: Laurent Pugin
4 // Created: 2011
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_BBOX_DC_H__
9 #define __VRV_BBOX_DC_H__
10 
11 #include <vector>
12 
13 //----------------------------------------------------------------------------
14 
15 #include "devicecontext.h"
16 
17 #define BBOX_BOTH 0
18 #define BBOX_HORIZONTAL_ONLY 1
19 #define BBOX_VERTICAL_ONLY 2
20 
21 namespace vrv {
22 
23 class Object;
24 
25 //----------------------------------------------------------------------------
26 // BBoxDeviceContext
27 //----------------------------------------------------------------------------
28 
39 public:
43  BBoxDeviceContext(View *view, int width, int height, unsigned char update = BBOX_BOTH);
45  virtual ~BBoxDeviceContext();
47 
51  void SetBackground(int color, int style = PEN_SOLID) override;
53  void SetBackgroundImage(void *image, double opacity = 1.0) override {};
54  void SetBackgroundMode(int mode) override;
55  void SetTextForeground(int color) override;
56  void SetTextBackground(int color) override;
57  void SetLogicalOrigin(int x, int y) override;
58  void SetUserScale(double xScale, double yScale);
60 
64  Point GetLogicalOrigin() override;
67 
71  void DrawQuadBezierPath(Point bezier[3]) override;
73  void DrawCubicBezierPath(Point bezier[4]) override;
74  void DrawCubicBezierPathFilled(Point bezier1[4], Point bezier2[4]) override;
75  void DrawBentParallelogramFilled(Point side[4], int height) override;
76  void DrawCircle(int x, int y, int radius) override;
77  void DrawEllipse(int x, int y, int width, int height) override;
78  void DrawEllipticArc(int x, int y, int width, int height, double start, double end) override;
79  void DrawLine(int x1, int y1, int x2, int y2) override;
80  void DrawPolyline(int n, Point points[], bool close) override;
81  void DrawPolygon(int n, Point points[]) override;
82  void DrawRectangle(int x, int y, int width, int height) override;
83  void DrawRotatedText(const std::string &text, int x, int y, double angle) override;
84  void DrawRoundedRectangle(int x, int y, int width, int height, int radius) override;
85  void DrawText(const std::string &text, const std::u32string &wtext = U"", int x = VRV_UNSET, int y = VRV_UNSET,
86  int width = VRV_UNSET, int height = VRV_UNSET) override;
87  void DrawMusicText(const std::u32string &text, int x, int y, bool setSmuflGlyph = false) override;
88  void DrawSpline(int n, Point points[]) override;
89  void DrawGraphicUri(int x, int y, int width, int height, const std::string &uri) override;
90  void DrawSvgShape(int x, int y, int width, int height, double scale, pugi::xml_node svg) override;
91  void DrawBackgroundImage(int x = 0, int y = 0) override {};
93 
98  void DrawPlaceholder(int x, int y) override;
99 
103  void StartText(int x, int y, data_HORIZONTALALIGNMENT alignment = HORIZONTALALIGNMENT_left) override;
105  void EndText() override;
106 
110  void MoveTextTo(int x, int y, data_HORIZONTALALIGNMENT alignment) override;
112  void MoveTextVerticallyTo(int y) override;
114 
118  void StartGraphic(Object *object, const std::string &gClass, const std::string &gId, GraphicID graphicID = PRIMARY,
120  bool prepend = false) override;
121  void EndGraphic(Object *object, View *view) override;
123 
127  void ResumeGraphic(Object *object, std::string gId) override;
129  void EndResumedGraphic(Object *object, View *view) override;
131 
135  void RotateGraphic(Point const &orig, double angle) override;
138 
142  void StartPage() override;
144  void EndPage() override;
146 
147  bool UpdateHorizontalValues() { return (m_update != BBOX_VERTICAL_ONLY); }
148  bool UpdateVerticalValues() { return (m_update != BBOX_HORIZONTAL_ONLY); }
149 
153  void AddDescription(const std::string &text) override {};
156 
157 private:
161  void ResetGraphicRotation();
162 
166  std::pair<int, int> GetPenWidthOverlap() const;
167 
168 public:
169  //
170 private:
174  int m_width, m_height;
176  double m_userScaleX, m_userScaleY;
178 
182  unsigned char m_update;
183 
187  Point m_rotationOrigin;
189  double m_rotationAngle;
191 
196  int m_textX, m_textY, m_textWidth, m_textHeight, m_textAscent, m_textDescent;
197  bool m_drawingText;
198  data_HORIZONTALALIGNMENT m_textAlignment;
199 
203  std::vector<Object *> m_objects;
204 
208  View *m_view;
209 
210  void UpdateBB(int x1, int y1, int x2, int y2, char32_t glyph = 0);
211 };
212 
213 } // namespace vrv
214 
215 #endif // __VRV_BBOX_DC_H__
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::DeviceContext
This class is an abstract device context.
Definition: devicecontext.h:57
vrv::BBoxDeviceContext::DrawPlaceholder
void DrawPlaceholder(int x, int y) override
Special method for forcing bounding boxes to be updated Used for invisible elements (e....
vrv::BBoxDeviceContext
This class calculates the bounding box of the object being drawn.
Definition: bboxdevicecontext.h:38
vrv::View
This class is a drawing context and corresponds to the view of a MVC design pattern.
Definition: view.h:105
vrv::Point
Simple class for representing points.
Definition: devicecontextbase.h:203