-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathGdiPlusLabelDrawer.cpp
More file actions
379 lines (327 loc) · 13.4 KB
/
GdiPlusLabelDrawer.cpp
File metadata and controls
379 lines (327 loc) · 13.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
#include "stdafx.h"
#include "GdiPlusLabelDrawer.h"
#include "UtilityFunctions.h"
using namespace Gdiplus;
// *********************************************************************
// InitGraphics()
// *********************************************************************
void GdiPlusLabelDrawer::InitGraphics(Gdiplus::Graphics* g, ILabels* labels)
{
_graphics = g;
_compositingQuality = _graphics->GetCompositingQuality();
_smoothingMode = _graphics->GetSmoothingMode();
_textRenderingHint = _graphics->GetTextRenderingHint();
tkTextRenderingHint textRenderingHint;
labels->get_TextRenderingHint(&textRenderingHint);
tkSmoothingMode smoothingMode = m_globalSettings.labelsSmoothingMode;
tkCompositingQuality compositingQuality = m_globalSettings.labelsCompositingQuality;
_graphics->SetCompositingQuality((CompositingQuality)compositingQuality);
_graphics->SetSmoothingMode((SmoothingMode)smoothingMode);
_graphics->SetTextRenderingHint((TextRenderingHint)textRenderingHint);
_graphics->SetTextContrast(0u);
}
// *********************************************************************
// RestoreGraphics()
// *********************************************************************
void GdiPlusLabelDrawer::RestoreGraphics()
{
_graphics->SetCompositingQuality(_compositingQuality);
_graphics->SetSmoothingMode(_smoothingMode);
_graphics->SetTextRenderingHint(_textRenderingHint);
}
// *********************************************************************
// InitFromCategory()
// *********************************************************************
void GdiPlusLabelDrawer::InitFromCategory(CLabelOptions* options, bool hasRotation)
{
InitPensAndBrushes(options, hasRotation);
TryAutoSetRenderingHint(options, hasRotation);
}
// *********************************************************************
// InitPensAndBrushes()
// *********************************************************************
void GdiPlusLabelDrawer::InitPensAndBrushes(CLabelOptions* options, bool hasRotation)
{
long alphaFont = (options->fontTransparency << 24);
long alphaFrame = (options->frameTransparency << 24);
_clFont1 = Utility::OleColor2GdiPlus(options->fontColor, options->fontTransparency);
_clFont2 = Utility::OleColor2GdiPlus(options->fontColor2, options->fontTransparency);
_clFrameBack1.SetValue(alphaFrame | BGR_TO_RGB(options->frameBackColor));
_clFrameBack2.SetValue(alphaFrame | BGR_TO_RGB(options->frameBackColor2));
_penFontOutline = new Pen(Color(alphaFont | BGR_TO_RGB(options->fontOutlineColor)), (Gdiplus::REAL)options->fontOutlineWidth);
_penFontOutline->SetLineJoin(LineJoinRound);
double haloWidth = fabs(options->fontSize / 16.0 * options->haloSize);
_penHalo = new Pen(Color(alphaFont | BGR_TO_RGB(options->haloColor)), (Gdiplus::REAL)haloWidth);
_penHalo->SetLineJoin(LineJoinRound);
_penFrameOutline = new Pen(Color(alphaFrame | BGR_TO_RGB(options->frameOutlineColor)), (Gdiplus::REAL)options->frameOutlineWidth);
_penFrameOutline->SetDashStyle(DashStyle(options->frameOutlineStyle));
_brushFont = new SolidBrush(_clFont1);
_brushFrame = new SolidBrush(_clFrameBack1);
_brushShadow = new SolidBrush(Color(alphaFont | BGR_TO_RGB(options->shadowColor)));
ConvertAlignment(options->inboxAlignment, stringFormat);
stringFormat.SetFormatFlags(StringFormatFlagsNoClip); // doesn't work?
}
// *********************************************************************
// TryAutoSetRenderingHint()
// *********************************************************************
void GdiPlusLabelDrawer::TryAutoSetRenderingHint(CLabelOptions* options, bool hasRotation)
{
if (m_globalSettings.autoChooseRenderingHintForLabels)
{
Gdiplus::TextRenderingHint hint = TextRenderingHintSingleBitPerPixelGridFit;
// JIRA MWGIS-74: not only rotation, but GraphicsPath-related functions also require AntiAliasing
if (hasRotation || options->shadowVisible || options->haloVisible || options->fontOutlineVisible)
{
if (options->frameVisible && options->frameTransparency == 255) {
hint = TextRenderingHintClearTypeGridFit;
}
else {
hint = TextRenderingHintAntiAlias;
}
}
_graphics->SetTextRenderingHint(hint);
}
}
// *********************************************************************
// DrawLabel()
// *********************************************************************
void GdiPlusLabelDrawer::DrawLabel(CLabelOptions* options, CRect& r, double piX, double piY, double angle)
{
rect.X = static_cast<Gdiplus::REAL>(r.left);
rect.Y = static_cast<Gdiplus::REAL>(r.top);
rect.Width = static_cast<Gdiplus::REAL>(r.Width());
rect.Height = static_cast<Gdiplus::REAL>(r.Height());
Gdiplus::Matrix mtxInit;
_graphics->GetTransform(&mtxInit);
//Gdiplus::Matrix mtx;
//mtx.Translate((Gdiplus::REAL)piX, (Gdiplus::REAL)piY);
//mtx.Rotate((Gdiplus::REAL)angle);
//_graphics->SetTransform(&mtx);
_graphics->TranslateTransform(static_cast<Gdiplus::REAL>(piX), static_cast<Gdiplus::REAL>(piY));
_graphics->RotateTransform(static_cast<Gdiplus::REAL>(angle));
// drawing frame
if (options->frameTransparency != 0 && options->frameVisible)
{
if (options->frameGradientMode != gmNone)
{
_brushFrameGrad = new LinearGradientBrush(rect, _clFrameBack1, _clFrameBack2, (LinearGradientMode)options->frameGradientMode);
DrawLabelFrame(_brushFrameGrad, *_penFrameOutline, options);
delete _brushFrameGrad;
}
else
{
DrawLabelFrame(_brushFrame, *_penFrameOutline, options);
}
}
if (options->fontTransparency != 0)
{
const bool pathNeeded = options && (options->shadowVisible || options->haloVisible || options->fontOutlineVisible);
GraphicsPath* gp = NULL;
if (pathNeeded)
{
gp = new GraphicsPath();
gp->StartFigure();
FontFamily fam;
font->GetFamily(&fam);
// JIRA MWGIS-74: GraphicsPath font units are 'em's rather than Points
const Gdiplus::REAL factor = _graphics->GetDpiX() / 72; // 4.0 / 3.0;
gp->AddString(text, text.GetLength(), &fam, font->GetStyle(), (font->GetSize() * factor), rect, &stringFormat);
gp->CloseFigure();
}
// drawing outlines
if (options->shadowVisible)
{
Gdiplus::Matrix mtx1;
mtx1.Translate(static_cast<Gdiplus::REAL>(options->shadowOffsetX), static_cast<Gdiplus::REAL>(options->shadowOffsetY));
gp->Transform(&mtx1);
_graphics->FillPath(_brushShadow, gp);
mtx1.Translate(static_cast<Gdiplus::REAL>(-1 * options->shadowOffsetX), static_cast<Gdiplus::REAL>(-1 * options->shadowOffsetY));
gp->Transform(&mtx1);
}
if (options && options->haloVisible)
{
_graphics->DrawPath(_penHalo, gp);
_graphics->FillPath(_brushFont, gp);
}
if (options->fontOutlineVisible)
{
_graphics->DrawPath(_penFontOutline, gp);
_graphics->FillPath(_brushFont, gp);
}
Gdiplus::Status status;
if (options->fontGradientMode != gmNone)
{
_brushFontGrad = new LinearGradientBrush(rect, _clFont1, _clFont2, (LinearGradientMode)options->fontGradientMode);
status = _graphics->DrawString(text, text.GetLength(), font, rect, &stringFormat, _brushFontGrad);
delete _brushFontGrad;
}
else if (!pathNeeded)
{
// if path has not already been filled, draw the text here
status = _graphics->DrawString(text, text.GetLength(), font, rect, &stringFormat, _brushFont);
}
if (pathNeeded) {
delete gp;
}
}
_graphics->SetTransform(&mtxInit);
}
// *****************************************************************
// Converts label alignment to GDI+ constants
// *****************************************************************
inline void GdiPlusLabelDrawer::ConvertAlignment(tkLabelAlignment alignment, Gdiplus::StringFormat& format)
{
switch (alignment)
{
case laCenter: format.SetAlignment(StringAlignmentCenter); format.SetLineAlignment(StringAlignmentCenter); break;
case laCenterLeft: format.SetAlignment(StringAlignmentNear); format.SetLineAlignment(StringAlignmentCenter); break;
case laCenterRight: format.SetAlignment(StringAlignmentFar); format.SetLineAlignment(StringAlignmentCenter); break;
case laBottomCenter: format.SetAlignment(StringAlignmentCenter); format.SetLineAlignment(StringAlignmentFar); break;
case laBottomLeft: format.SetAlignment(StringAlignmentNear); format.SetLineAlignment(StringAlignmentFar); break;
case laBottomRight: format.SetAlignment(StringAlignmentFar); format.SetLineAlignment(StringAlignmentFar); break;
case laTopCenter: format.SetAlignment(StringAlignmentCenter); format.SetLineAlignment(StringAlignmentNear); break;
case laTopLeft: format.SetAlignment(StringAlignmentNear); format.SetLineAlignment(StringAlignmentNear); break;
case laTopRight: format.SetAlignment(StringAlignmentFar); format.SetLineAlignment(StringAlignmentNear); break;
}
}
// ********************************************************************
// DrawLabelFrame
// ********************************************************************
void GdiPlusLabelDrawer::DrawLabelFrame(Gdiplus::Brush* brush, Gdiplus::Pen& pen, CLabelOptions* options)
{
switch (options->frameType)
{
case lfRectangle:
_graphics->FillRectangle(brush, rect);
_graphics->DrawRectangle(&pen, rect);
break;
case lfRoundedRectangle:
{
float left = rect.X;
float right = rect.X + rect.Width;
float top = rect.Y;
float bottom = rect.Y + rect.Height;
Gdiplus::GraphicsPath* path = new Gdiplus::GraphicsPath();
path->StartFigure();
// MWGIS-229
// start arcs outside of left and right boundaries, rather than
// fitting them within, else we may not fully contain the text.
path->AddLine(left, top, right, top);
path->AddArc(right, top, rect.Height, rect.Height, -90.0, 180.0);
path->AddLine(right, bottom, left, bottom);
path->AddArc(left, top, rect.Height, rect.Height, 90.0, 180.0);
path->CloseFigure();
_graphics->FillPath(brush, path);
_graphics->DrawPath(&pen, path);
delete path;
break;
}
case lfPointedRectangle:
{
float left = rect.X;
float right = rect.X + rect.Width;
float top = rect.Y;
float bottom = rect.Y + rect.Height;
Gdiplus::GraphicsPath* path = new Gdiplus::GraphicsPath();
path->StartFigure();
// MWGIS-229
// place endcaps outside of left and right boundaries, rather than
// fitting them within, else we may not fully contain the text.
path->AddLine(left, top, right, top);
path->AddLine(right, top, right, (top + bottom) / 2);
path->AddLine(right, (top + bottom) / 2, right, bottom);
path->AddLine(right, bottom, left, bottom);
path->AddLine(left, bottom, left, (top + bottom) / 2);
path->AddLine(left, (top + bottom) / 2, left, top);
path->CloseFigure();
_graphics->FillPath(brush, path);
_graphics->DrawPath(&pen, path);
delete path;
break;
}
}
return;
}
// *********************************************************************
// CreateFont()
// *********************************************************************
Gdiplus::Font* GdiPlusLabelDrawer::CreateFont(CLabelOptions* options, double fontSize, double scaleFactor)
{
CStringW fontName = OLE2W(options->fontName);
if (scaleFactor != 1.0) {
fontSize = fontSize * scaleFactor;
}
// MWGIS-121; rather than return null, enforce a minimum font size of 4
if (fontSize < 4) {
fontSize = 4;
}
int style = FontStyleRegular;
if (options->fontStyle & fstItalic) style = style | FontStyleItalic;
if (options->fontStyle & fstBold) style = style | FontStyleBold;
if (options->fontStyle & fstStrikeout) style = style | FontStyleStrikeout;
if (options->fontStyle & fstUnderline) style = style | FontStyleUnderline;
return new Gdiplus::Font(fontName, (Gdiplus::REAL)fontSize, style);
}
// *********************************************************************
// MeasureString()
// *********************************************************************
void GdiPlusLabelDrawer::MeasureString(CLabelInfo* lbl, CRect& r)
{
USES_CONVERSION;
text = lbl->text;
_graphics->MeasureString(text, text.GetLength(), font, PointF(0.0f, 0.0f), &rect);
// in some case we lose the last letter by clipping;
rect.Width += 1;
rect.Height += 1;
// converting to CRect to prevent duplication in the code below
r.left = static_cast<LONG>(rect.X);
r.top = static_cast<LONG>(rect.Y);
r.right = static_cast<LONG>(rect.X + rect.Width);
r.bottom = static_cast<LONG>(rect.Y + rect.Height);
}
// *********************************************************************
// SelectFont()
// *********************************************************************
void GdiPlusLabelDrawer::SelectFont(CLabelOptions* options, CLabelInfo* lbl, double scaleFactor)
{
if (!_fonts[lbl->fontSize])
{
this->font = CreateFont(options, lbl->fontSize, scaleFactor);
_fonts[lbl->fontSize] = this->font;
}
else {
this->font = _fonts[lbl->fontSize];
}
}
// *********************************************************************
// SelectFont()
// *********************************************************************
void GdiPlusLabelDrawer::SelectFont(CLabelOptions* options, double fontSize, double scaleFactor)
{
this->font = CreateFont(options, fontSize, scaleFactor);
}
// *********************************************************************
// ReleaseFonts()
// *********************************************************************
void GdiPlusLabelDrawer::ReleaseFonts(bool useVariableFontSize)
{
if (useVariableFontSize)
{
for (int i = 0; i <= MAX_LABEL_SIZE; i++)
{
if (_fonts[i])
{
Gdiplus::Font * f = _fonts[i];
delete f;
_fonts[i] = NULL;
}
}
}
else {
if (font)
{
delete font;
font = NULL;
}
}
}