8 #ifndef __VRV_DC_BASE_H__
9 #define __VRV_DC_BASE_H__
24 #define COLOR_WHITE 255 << 16 | 255 << 8 | 255
26 #define COLOR_RED 255 << 16
27 #define COLOR_BLUE 255
28 #define COLOR_GREEN 255 << 8
29 #define COLOR_CYAN 255 << 8 | 255
30 #define COLOR_LIGHT_GREY 127 << 16 | 127 << 8 | 127
35 enum PenStyle : int8_t { PEN_SOLID = 0, PEN_DOT, PEN_LONG_DASH, PEN_SHORT_DASH, PEN_DOT_DASH };
37 enum LineCapStyle : int8_t { LINECAP_DEFAULT = 0, LINECAP_BUTT, LINECAP_ROUND, LINECAP_SQUARE };
39 enum LineJoinStyle : int8_t {
64 , m_lineCap(LINECAP_DEFAULT)
65 , m_lineJoin(LINEJOIN_DEFAULT)
70 Pen(
int width, PenStyle style,
int dashLength,
int gapLength, LineCapStyle lineCap, LineJoinStyle lineJoin,
71 float opacity,
int color)
74 , m_dashLength(dashLength)
75 , m_gapLength(gapLength)
77 , m_lineJoin(lineJoin)
83 int GetColor()
const {
return m_color; }
84 void SetColor(
int color) { m_color = color; }
85 bool HasColor()
const {
return (m_color != COLOR_NONE); }
86 int GetWidth()
const {
return m_width; }
87 void SetWidth(
int width) { m_width = width; }
88 int GetDashLength()
const {
return m_dashLength; }
89 void SetDashLength(
int dashLength) { m_dashLength = dashLength; }
90 int GetGapLength()
const {
return m_gapLength; }
91 void SetGapLength(
int gapLength) { m_gapLength = gapLength; }
92 LineCapStyle GetLineCap()
const {
return m_lineCap; }
93 void SetLineCap(LineCapStyle lineCap) { m_lineCap = lineCap; }
94 LineJoinStyle GetLineJoin()
const {
return m_lineJoin; }
95 void SetLineJoin(LineJoinStyle lineJoin) { m_lineJoin = lineJoin; }
96 PenStyle GetStyle()
const {
return m_style; }
97 void SetStyle(PenStyle style) { m_style = style; }
98 float GetOpacity()
const {
return m_opacity; }
99 void SetOpacity(
float opacity) { m_opacity = opacity; }
100 bool HasOpacity()
const {
return (m_opacity != -1.0); }
105 int m_dashLength, m_gapLength;
106 LineCapStyle m_lineCap;
107 LineJoinStyle m_lineJoin;
114 Brush() : m_opacity(-1.0), m_color(COLOR_NONE) {}
115 Brush(
float opacity,
int color) : m_opacity(opacity), m_color(color) {}
117 int GetColor()
const {
return m_color; }
118 void SetColor(
int color) { m_color = color; }
119 bool HasColor()
const {
return (m_color != COLOR_NONE); }
120 float GetOpacity()
const {
return m_opacity; }
121 void SetOpacity(
float opacity) { m_opacity = opacity; }
122 bool HasOpacity()
const {
return (m_opacity != -1.0); }
142 m_letterSpacing = 0.0;
144 m_style = FONTSTYLE_NONE;
145 m_weight = FONTWEIGHT_NONE;
146 m_underlined =
false;
147 m_supSubScript =
false;
150 m_widthToHeightRatio = 1.0;
151 m_smuflFont = SMUFL_NONE;
156 int GetPointSize()
const {
return m_pointSize; }
157 int GetLetterSpacing()
const {
return m_letterSpacing; }
158 data_FONTSTYLE GetStyle()
const {
return m_style; }
159 data_FONTWEIGHT GetWeight()
const {
return m_weight; }
160 bool GetUnderlined()
const {
return m_underlined; }
161 bool GetSupSubScript()
const {
return m_supSubScript; }
162 std::string GetFaceName()
const {
return m_faceName; }
163 int GetFamily()
const {
return m_family; }
164 int GetEncoding()
const {
return m_encoding; }
165 float GetWidthToHeightRatio()
const {
return m_widthToHeightRatio; }
166 SmuflTextFont GetSmuflFont()
const {
return m_smuflFont; }
168 void SetPointSize(
int pointSize) { m_pointSize = pointSize; }
169 void SetLetterSpacing(
double letterSpacing) { m_letterSpacing = letterSpacing; }
170 void SetStyle(data_FONTSTYLE style) { m_style = style; }
171 void SetWeight(data_FONTWEIGHT weight) { m_weight = weight; }
172 void SetUnderlined(
bool underlined) { m_underlined = underlined; }
173 void SetSupSubScript(
bool supSubScript) { m_supSubScript = supSubScript; }
174 void SetFaceName(
const std::string &faceName) { m_faceName = faceName; }
175 void SetFamily(
int family) { m_family = family; }
176 void SetEncoding(
int encoding) { m_encoding = encoding; }
177 void SetWidthToHeightRatio(
float ratio) { m_widthToHeightRatio = ratio; }
178 void SetSmuflFont(SmuflTextFont smuflFont) { m_smuflFont = smuflFont; }
179 void SetSmuflWithFallback(
bool fallback) { m_smuflFont = (fallback) ? SMUFL_FONT_FALLBACK : SMUFL_FONT_SELECTED; }
185 data_FONTSTYLE m_style;
186 data_FONTWEIGHT m_weight;
189 std::string m_faceName;
191 float m_widthToHeightRatio;
192 SmuflTextFont m_smuflFont;
207 Point() : x(0), y(0) {}
208 Point(
int xx,
int yy) : x(xx), y(yy) {}
213 bool operator==(
const Point &p)
const {
return x == p.x && y == p.y; }
214 bool operator!=(
const Point &p)
const {
return !(*
this == p); }
217 Point operator+(
const Point &p)
const {
return { x + p.x, y + p.y }; }
218 Point operator-(
const Point &p)
const {
return { x - p.x, y - p.y }; }
233 Point operator-()
const {
return { -x, -y }; }
237 int x = std::min(p1.x, p2.x);
238 int y = std::min(p1.y, p2.y);
244 int x = std::max(p1.x, p2.x);
245 int y = std::max(p1.y, p2.y);
270 void Rotate(
float angle,
const Point &rotationPoint);
275 void SetControlOffset(
int offset) { m_leftControlOffset = m_rightControlOffset = offset; }
277 void SetLeftControlOffset(
int offset) { m_leftControlOffset = offset; }
278 void SetRightControlOffset(
int offset) { m_rightControlOffset = offset; }
279 int GetLeftControlOffset()
const {
return m_leftControlOffset; }
280 int GetRightControlOffset()
const {
return m_rightControlOffset; }
286 void SetControlHeight(
int height) { m_leftControlHeight = m_rightControlHeight = height; }
288 void SetLeftControlHeight(
int height) { m_leftControlHeight = height; }
289 void SetRightControlHeight(
int height) { m_rightControlHeight = height; }
290 int GetLeftControlHeight()
const {
return m_leftControlHeight; }
291 int GetRightControlHeight()
const {
return m_rightControlHeight; }
297 void SetControlSides(
bool leftAbove,
bool rightAbove);
299 bool IsLeftControlAbove()
const {
return m_leftControlAbove; }
300 bool IsRightControlAbove()
const {
return m_rightControlAbove; }
306 void CalcInitialControlPointParams();
308 void CalcInitialControlPointParams(
const Doc *doc,
float angle,
int staffSize);
316 void UpdateControlPoints();
327 int m_leftControlOffset = 0;
328 int m_rightControlOffset = 0;
329 int m_leftControlHeight = 0;
330 int m_rightControlHeight = 0;
331 bool m_leftControlAbove =
true;
332 bool m_rightControlAbove =
true;
347 int m_width, m_height, m_leftBearing, m_ascent, m_descent, m_advX;
349 TextExtend() : m_width(0), m_height(0), m_leftBearing(0), m_ascent(0), m_descent(0), m_advX(0) {}
356 #endif // __AX_DC_BASE_H__