forked from zsdwxm/KernowSoftwareFMX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathksDrawFunctions.pas
499 lines (416 loc) · 15.4 KB
/
ksDrawFunctions.pas
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
{*******************************************************************************
* *
* ksDrawFunctions - control drawing functions for ksListView *
* *
* https://github.com/gmurt/KernowSoftwareFMX *
* *
* Copyright 2015 Graham Murt *
* *
* email: graham@kernow-software.co.uk *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); *
* you may not use this file except in compliance with the License. *
* You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* *
*******************************************************************************}
{ *** HTML SUPPORT - PLEASE READ ***
In order to use the HTML formatting within ksListView, you will need to have the
TMS Pack for FireMonkey installed.
You can get this from the following link...
http://www.tmssoftware.com/site/tmsfmxpack.asp
Once installed, simply uncomment the conditional define below
}
//{$DEFINE USE_TMS_HTML_ENGINE}
unit ksDrawFunctions;
interface
uses Classes, FMX.Graphics, FMX.Types, Types, System.UIConsts, System.UITypes,
FMX.ListView.Types, Generics.Collections, FMX.Platform;
type
TksButtonStyle = (ksButtonDefault, ksButtonSegmentLeft, ksButtonSegmentMiddle, ksButtonSegmentRight);
function GetScreenScale: single;
function IsBlankBitmap(ABmp: TBitmap; const ABlankColor: TAlphaColor = claNull): Boolean;
function GetColorOrDefault(AColor, ADefaultIfNull: TAlphaColor): TAlphaColor;
procedure DrawSwitch(ACanvas: TCanvas; ARect: TRectF; AChecked, AEnabled: Boolean; ASelectedColor: TAlphaColor);
procedure DrawButton(ACanvas: TCanvas; ARect: TRectF; AText: string; ASelected: Boolean; AColor: TAlphaColor; AStyle: TksButtonStyle);
function TextWidth(AText: string; AFont: TFont): single;
function TextHeight(AText: string; AFont: TFont; AWordWrap: Boolean; const AWidth: single = 0): single;
function TextSizeHtml(AText: string; AFont: TFont; const AWidth: single = 0): TPointF;
procedure RenderText(ACanvas: TCanvas;
x, y,
AWidth, AHeight: single;
AText: string;
AFont: TFont;
ATextColor: TAlphaColor;
AWordWrap: Boolean;
AHorzAlign: TTextAlign;
AVertAlign: TTextAlign;
ATrimming: TTextTrimming);
procedure RenderHhmlText(ACanvas: TCanvas;
x, y,
AWidth, AHeight: single;
AText: string;
AFont: TFont;
ATextColor: TAlphaColor;
AWordWrap: Boolean;
AHorzAlign: TTextAlign;
AVertAlign: TTextAlign;
ATrimming: TTextTrimming);
implementation
uses SysUtils, FMX.TextLayout, Math, FMX.Objects, FMX.Styles, FMX.Styles.Objects,
FMX.Forms {$IFDEF USE_TMS_HTML_ENGINE} , FMX.TMSHTMLEngine {$ENDIF};
var
_ScreenScale: single;
ATextLayout: TTextLayout;
function GetColorOrDefault(AColor, ADefaultIfNull: TAlphaColor): TAlphaColor;
begin
Result := AColor;
if Result = claNull then
Result := ADefaultIfNull;
end;
function GetScreenScale: single;
var
Service: IFMXScreenService;
begin
if _ScreenScale > 0 then
begin
Result := _ScreenScale;
Exit;
end;
Service := IFMXScreenService(TPlatformServices.Current.GetPlatformService
(IFMXScreenService));
Result := Service.GetScreenScale;
{$IFDEF IOS}
//if Result < 2 then
// Result := 2;
{$ENDIF}
_ScreenScale := Result;
end;
function TextSizeHtml(AText: string; AFont: TFont; const AWidth: single = 0): TPointF;
{$IFDEF USE_TMS_HTML_ENGINE}
var
AnchorVal,
StripVal,
FocusAnchor: string;
XSize,
YSize: single;
HyperLinks,
MouseLink: Integer;
HoverRect:TRectF;
ABmp: TBitmap;
{$ENDIF}
begin
Result := PointF(0, 0);
{$IFDEF USE_TMS_HTML_ENGINE}
XSize := AWidth;
if XSize <= 0 then
XSize := MaxSingle;
ABmp := TBitmap.Create(10, 10);
try
ABmp.BitmapScale := GetScreenScale;
ABmp.Canvas.Assign(AFont);
{$IFDEF USE_TMS_HTML_ENGINE}
HTMLDrawEx(ABmp.Canvas, AText, RectF(0, 0, XSize, MaxSingle), 0,0, 0, 0, 0, False,
False, False, False, False, False, False, 1, claNull,
claNull, claNull, claNull, AnchorVal, StripVal, FocusAnchor, XSize, YSize, HyperLinks, MouseLink,
HoverRect, 1, nil, 1);
Result := PointF(XSize, YSize);
{$ELSE}
Result := PointF(0, 0);
{$ENDIF}
finally
FreeAndNil(ABmp);
end;
{$ENDIF}
end;
function TextWidth(AText: string; AFont: TFont): single;
var
APoint: TPointF;
begin
ATextLayout.BeginUpdate;
// Setting the layout MaxSize
APoint.X := MaxSingle;
APoint.Y := 100;
ATextLayout.MaxSize := aPoint;
ATextLayout.Text := AText;
ATextLayout.WordWrap := False;
ATextLayout.Font.Assign(AFont);
ATextLayout.HorizontalAlign := TTextAlign.Leading;
ATextLayout.EndUpdate;
Result := ATextLayout.Width;
end;
function TextHeight(AText: string; AFont: TFont; AWordWrap: Boolean; const AWidth: single = 0): single;
var
APoint: TPointF;
begin
ATextLayout.BeginUpdate;
// Setting the layout MaxSize
APoint.X := MaxSingle;
if AWidth > 0 then
APoint.X := AWidth;
APoint.Y := 100;
ATextLayout.MaxSize := aPoint;
ATextLayout.Text := AText;
ATextLayout.WordWrap := AWordWrap;
ATextLayout.Font.Assign(AFont);
ATextLayout.HorizontalAlign := TTextAlign.Leading;
ATextLayout.VerticalAlign := TTextAlign.Leading;
ATextLayout.EndUpdate;
Result := ATextLayout.TextHeight;
end;
procedure RenderText(ACanvas: TCanvas;
x, y,
AWidth, AHeight: single;
AText: string;
AFont: TFont;
ATextColor: TAlphaColor;
AWordWrap: Boolean;
AHorzAlign: TTextAlign;
AVertAlign: TTextAlign;
ATrimming: TTextTrimming);
begin
ATextLayout.BeginUpdate;
ATextLayout.Text := AText;
ATextLayout.WordWrap := AWordWrap;
ATextLayout.Font.Assign(AFont);
ATextLayout.Color := ATextColor;
ATextLayout.HorizontalAlign := AHorzAlign;
ATextLayout.VerticalAlign := AVertAlign;
ATextLayout.Trimming := ATrimming;
ATextLayout.TopLeft := PointF(x, y);
ATextLayout.MaxSize := PointF(AWidth, AHeight);
ATextLayout.EndUpdate;
ATextLayout.RenderLayout(ACanvas);
end;
procedure RenderHhmlText(ACanvas: TCanvas;
x, y,
AWidth, AHeight: single;
AText: string;
AFont: TFont;
ATextColor: TAlphaColor;
AWordWrap: Boolean;
AHorzAlign: TTextAlign;
AVertAlign: TTextAlign;
ATrimming: TTextTrimming);
{$IFDEF USE_TMS_HTML_ENGINE}
var
AnchorVal,
StripVal,
FocusAnchor: string;
XSize,
YSize: single;
HyperLinks,
MouseLink: Integer;
HoverRect:TRectF;
{$ENDIF}
begin
{$IFDEF USE_TMS_HTML_ENGINE}
ACanvas.Fill.Color := ATextColor;
ACanvas.Font.Assign(AFont);
HTMLDrawEx(ACanvas, AText, RectF(x,y , x+AWidth, y+AHeight), 0,0, 0, 0, 0, False,
False, True, False, False, False, AWordWrap, 1, claNull,
claNull, claNull, claNull, AnchorVal, StripVal, FocusAnchor, XSize, YSize, HyperLinks, MouseLink,
HoverRect, 1, nil, 1);
{$ELSE}
AFont.Size := 10;
RenderText(ACanvas, x, y, AWidth, AHeight, 'Requires TMS FMX', AFont, ATextColor, AWordWrap, AHorzAlign, AVertAlign, ATrimming);
{$ENDIF}
end;
function IsBlankBitmap(ABmp: TBitmap; const ABlankColor: TAlphaColor = claNull): Boolean;
var
ABlank: TBitmap;
begin
ABlank := TBitmap.Create(ABmp.Width, ABmp.Height);
try
ABlank.Clear(ABlankColor);
Result := ABmp.EqualsBitmap(ABlank);
finally
FreeAndNil(ABlank);
end;
end;
procedure DrawSwitch(ACanvas: TCanvas; ARect: TRectF; AChecked, AEnabled: Boolean; ASelectedColor: TAlphaColor);
var
ABmp: TBitmap;
r: TRectF;
ASwitchRect: TRectF;
begin
ABmp := TBitmap.Create(Round(ARect.Width * GetScreenScale), Round(ARect.Height * GetScreenScale));
try
ABmp.Clear(claNull);
ABmp.BitmapScale := GetScreenScale;
ABmp.Canvas.BeginScene;
ABmp.Canvas.StrokeThickness := GetScreenScale;
r := RectF(0, 0, ABmp.Height, ABmp.Height);
if not AChecked then
ASwitchRect := r;
ABmp.Canvas.Stroke.Color := claSilver;
ABmp.Canvas.Fill.Color := claWhite;
if AChecked then
Abmp.Canvas.Fill.Color := ASelectedColor;
if AEnabled = False then
ABmp.Canvas.Fill.Color := claGainsboro;
ABmp.Canvas.FillEllipse(r, 1, ABmp.Canvas.Fill);
ABmp.Canvas.DrawEllipse(r, 1, ABmp.Canvas.Stroke);
OffsetRect(r, ABmp.Width-r.Height, 0);
if AChecked then
ASwitchRect := r;
ABmp.Canvas.FillEllipse(r, 1, ABmp.Canvas.Fill);
ABmp.Canvas.DrawEllipse(r, 1, ABmp.Canvas.Stroke);
//ABmp.Canvas.Fill.Color := claWhite;
ABmp.Canvas.FillRect(RectF(0 + (r.Width/2), 0, ABmp.Width - (r.Width/2), ABmp.Height), 0, 0, AllCorners, 1, ABmp.Canvas.Fill);
r := RectF(ABmp.Height/2, 0, ABmp.Width-(ABmp.Height/2), ABmp.Height);
ABmp.Canvas.FillRect(r, 0, 0, AllCorners, 1, ABmp.Canvas.Fill);
ABmp.Canvas.StrokeThickness := 3;
r.Bottom := r.Bottom -1;
r.Left := r.Left - (GetScreenScale*4);
r.Right := r.Right + (GetScreenScale*4);
ABmp.Canvas.DrawRectSides(r, 0, 0, AllCorners, 1, [TSide.Top, TSide.Bottom], ABmp.Canvas.Stroke);
ABmp.Canvas.StrokeThickness := 2;
ABmp.Canvas.Fill.Color := claWhite;
if AEnabled = False then
begin
ABmp.Canvas.Fill.Color := $FFEEEEEE;
end;
if AChecked then
begin
InflateRect(ASwitchRect, -2, -2);
ABmp.Canvas.FillEllipse(ASwitchRect, 1, ABmp.Canvas.Fill);
end
else
begin
InflateRect(ASwitchRect, -1, -1);
ABmp.Canvas.Stroke.Color := claSilver;
ABmp.Canvas.DrawEllipse(ASwitchRect, 1, ABmp.Canvas.Stroke);
end;
ABmp.Canvas.EndScene;
ACanvas.DrawBitmap(ABmp, RectF(0, 0, ABmp.Width, ABmp.Height), ARect, 1, False);
finally
FreeAndNil(ABmp);
end;
end;
procedure DrawButton(ACanvas: TCanvas; ARect: TRectF; AText: string; ASelected: Boolean; AColor: TAlphaColor; AStyle: TksButtonStyle);
var
ABmp: TBitmap;
r: TRectF;
ARadius: single;
AFill, AOutline, AFontColor: TAlphaColor;
AScale: single;
begin
AScale := 2;
ARadius := 5*AScale;
ABmp := TBitmap.Create(Round(ARect.Width * AScale), Round(ARect.Height * AScale));
try
if AColor = claNull then
AColor := claDodgerblue;
ABmp.Clear(claNull);
ABmp.BitmapScale := AScale;
r := RectF(0, 0, ABmp.Width, ABmp.Height);
ABmp.Canvas.BeginScene;
ABmp.Canvas.StrokeThickness := AScale;
ABmp.Canvas.Stroke.Color := claSilver;
ABmp.Canvas.Font.Size := (13 * AScale);
if ASelected then
begin
AFill := AColor;
AOutline := AColor;
AFontColor := claWhite;
end
else
begin
AFill := claWhite;
AOutline := AColor;
AFontColor := AColor;
end;
ABmp.Canvas.Blending := True;
ABmp.Canvas.Fill.Color := AFill;
ABmp.Canvas.Stroke.Color := AOutline;
if AStyle = ksButtonSegmentLeft then
begin
ABmp.Canvas.FillRect(r, ARadius, ARadius, [TCorner.TopLeft, TCorner.BottomLeft], 1, ABmp.Canvas.Fill);
ABmp.Canvas.DrawRect(r, ARadius, ARadius, [TCorner.TopLeft, TCorner.BottomLeft], 1, ABmp.Canvas.Stroke);
end
else
if AStyle = ksButtonSegmentRight then
begin
ABmp.Canvas.FillRect(r, ARadius, ARadius, [TCorner.TopRight, TCorner.BottomRight], 1, ABmp.Canvas.Fill);
ABmp.Canvas.DrawRect(r, ARadius, ARadius, [TCorner.TopRight, TCorner.BottomRight], 1, ABmp.Canvas.Stroke);
end
else
begin
ABmp.Canvas.FillRect(r, 0, 0, AllCorners, 1, ABmp.Canvas.Fill);
ABmp.Canvas.DrawRect(r, 0, 0, AllCorners, 1, ABmp.Canvas.Stroke);
end;
ABmp.Canvas.Fill.Color := AFontColor;
ABmp.Canvas.FillText(r, AText, False, 1, [], TTextAlign.Center);
ABmp.Canvas.EndScene;
ACanvas.DrawBitmap(ABmp, RectF(0, 0, ABmp.Width, ABmp.Height), ARect, 1, True);
finally
FreeAndNil(ABmp);
end;
end;
procedure DrawCheckMarkAccessory(ACanvas: TCanvas; ARect: TRectF; AColor: TAlphaColor);
var
ABmp: TBitmap;
r: TRectF;
begin
ABmp := TBitmap.Create(Round(ARect.Width * GetScreenScale), Round(ARect.Height * GetScreenScale));
try
ABmp.Clear(claNull);
ABmp.BitmapScale := GetScreenScale;
ABmp.Canvas.BeginScene;
ABmp.Canvas.StrokeThickness := 2*GetScreenScale;
ABmp.Canvas.Stroke.Color := AColor;
r := RectF(0, 0, ABmp.Height, ABmp.Height);
ABmp.Canvas.DrawLine(PointF(4, ABmp.Height/2), PointF(ABmp.Width/3, ABmp.Height-4), 1);
ABmp.Canvas.DrawLine(PointF(ABmp.Width/3, ABmp.Height-4), PointF(ABmp.Width-4, 0), 1);
ABmp.Canvas.EndScene;
ACanvas.DrawBitmap(ABmp, RectF(0, 0, ABmp.Width, ABmp.Height), ARect, 1, False);
finally
FreeAndNil(ABmp);
end;
end;
procedure DrawMoreAccessory(ACanvas: TCanvas; ARect: TRectF; AColor: TAlphaColor);
var
ABmp: TBitmap;
APath: TPathData;
APadding: single;
begin
ABmp := TBitmap.Create(Round(ARect.Width * GetScreenScale), Round(ARect.Height * GetScreenScale));
try
ABmp.Clear(claNull);
ABmp.BitmapScale := GetScreenScale;
ABmp.Canvas.BeginScene;
ABmp.Canvas.StrokeThickness := GetScreenScale*2;
ABmp.Canvas.Stroke.Color := AColor;
ABmp.Canvas.StrokeJoin := TStrokeJoin.Miter;
APadding := GetScreenScale;
APath := TPathData.Create;
try
APath.MoveTo(PointF(ABmp.Width / 2, ABmp.Height-APadding));
APath.LineTo(PointF(ABmp.Width-APadding, (ABmp.Height/2)));
APath.LineTo(PointF(ABmp.Width / 2, APadding));
APath.MoveTo(PointF(ABmp.Width-APadding, (ABmp.Height/2)));
APath.ClosePath;
ABmp.Canvas.DrawPath(APath, 1);
finally
FreeAndNil(APath);
end;
ABmp.Canvas.EndScene;
ACanvas.DrawBitmap(ABmp, RectF(0, 0, ABmp.Width, ABmp.Height), ARect, 1, False);
finally
FreeAndNil(ABmp);
end;
end;
initialization
_ScreenScale := 0;
ATextLayout := TTextLayoutManager.DefaultTextLayout.Create;
finalization
FreeAndNil(ATextLayout);
end.