-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTurboControls.pas
More file actions
1124 lines (922 loc) · 24 KB
/
TurboControls.pas
File metadata and controls
1124 lines (922 loc) · 24 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
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
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// =====================================================================================================================
// *** TurboControls LCL Library ***
//
// Copyright (c) 2025-2026 Turborium
// License: Turborium Modified MIT License or GPL v3.
// See LICENSE.txt for the full license text of the Turborium Modified MIT License.
// SPDX-License-Identifier: LicenseRef-Turborium-Modified-MIT OR GPL-3.0-or-later
//
// Note:
// Users may obtain a commercial version of this software without the requirement
// to display the "About" notice in their application. Such commercial license is
// available directly from Turborium under separate terms and conditions.
//
// github.com/turborium/TurboControls
// Telegram: @turborium
// =====================================================================================================================
unit TurboControls;
{$MODE DELPHIUNICODE}
{$ASSERTIONS ON}
{$RANGECHECKS ON}
{$OVERFLOWCHECKS ON}
{$OPTIMIZATION ON}
{$SCOPEDENUMS ON}
interface
uses
Classes, Math, SysUtils, Graphics, Controls, TurboExternalGraphics;
type
{ TTurboChangeEvent }
TTurboChangeEvent = procedure(Sender: TObject; IsUserInput: Boolean) of object;
{ TTurboSide }
TTurboSide = (Left, Top, Right, Bottom);
{ TTurboSides }
TTurboSides = set of TTurboSide;
{ TTurboPadding }
TTurboPadding = class(TPersistent)
private
FLeft: Integer;
FTop: Integer;
FRight: Integer;
FBottom: Integer;
FDefaultLeft: Integer;
FDefaultTop: Integer;
FDefaultRight: Integer;
FDefaultBottom: Integer;
FAuto: TTurboSides;
FDefaultAuto: TTurboSides;
FOnChange: TNotifyEvent;
procedure SetLeft(Value: Integer);
procedure SetTop(Value: Integer);
procedure SetRight(Value: Integer);
procedure SetBottom(Value: Integer);
procedure SetAuto(Value: TTurboSides);
function IsLeftStored(): Boolean;
function IsTopStored(): Boolean;
function IsRightStored(): Boolean;
function IsBottomStored(): Boolean;
function IsAutoStored(): Boolean;
procedure Change();
protected
property Auto: TTurboSides read FAuto write SetAuto stored IsAutoStored;
public
constructor Create(DefaultLeft, DefaultTop, DefaultRight, DefaultBottom: Integer); overload;
constructor Create(); overload;
procedure AssignTo(Dest: TPersistent); override;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
published
property Left: Integer read FLeft write SetLeft stored IsLeftStored;
property Top: Integer read FTop write SetTop stored IsTopStored;
property Right: Integer read FRight write SetRight stored IsRightStored;
property Bottom: Integer read FBottom write SetBottom stored IsBottomStored;
end;
{ TTurboAutoPadding }
TTurboAutoPadding = class(TTurboPadding)
private
function GetIsAutoLeft(): Boolean;
function GetIsAutoTop(): Boolean;
function GetIsAutoRight(): Boolean;
function GetIsAutoBottom(): Boolean;
public
constructor Create(DefaultLeft, DefaultTop, DefaultRight, DefaultBottom: Integer; DefaultAutoSides: TTurboSides); overload;
constructor Create(); overload;
property IsAutoLeft: Boolean read GetIsAutoLeft;
property IsAutoTop: Boolean read GetIsAutoTop;
property IsAutoRight: Boolean read GetIsAutoRight;
property IsAutoBottom: Boolean read GetIsAutoBottom;
published
property Auto;
end;
{ TTurboDimension }
TTurboDimension = (Width, Height);
{ TTurboDimensions }
TTurboDimensions = set of TTurboDimension;
{ TTurboSize }
TTurboSize = class(TPersistent)
private
FWidth: Integer;
FHeight: Integer;
FDefaultWidth: Integer;
FDefaultHeight: Integer;
FAuto: TTurboDimensions;
FDefaultAuto: TTurboDimensions;
FOnChange: TNotifyEvent;
function IsAutoStored(): Boolean;
procedure SetAuto(Value: TTurboDimensions);
procedure SetHeight(Value: Integer);
procedure SetWidth(Value: Integer);
function IsWidthStored(): Boolean;
function IsHeightStored(): Boolean;
procedure Change();
protected
property Auto: TTurboDimensions read FAuto write SetAuto stored IsAutoStored;
public
constructor Create(DefaultWidth, DefaultHeight: Integer); overload;
constructor Create(); overload;
procedure AssignTo(Dest: TPersistent); override;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
published
property Width: Integer read FWidth write SetWidth stored IsWidthStored;
property Height: Integer read FHeight write SetHeight stored IsHeightStored;
end;
{ TTurboAutoSize }
TTurboAutoSize = class(TTurboSize)
private
function GetIsAutoWidth(): Boolean;
function GetIsAutoHeight(): Boolean;
public
constructor Create(DefaultWidth, DefaultHeight: Integer; DefaultAuto: TTurboDimensions); overload;
constructor Create(); overload;
property IsAutoWidth: Boolean read GetIsAutoWidth;
property IsAutoHeight: Boolean read GetIsAutoHeight;
published
property Auto;
end;
{ TTurboLength }
TTurboLength = class(TPersistent)
private
FAuto: Boolean;
FSize: Integer;
FDefaultAuto: Boolean;
FDefaultSize: Integer;
FOnChange: TNotifyEvent;
function IsAutoStored(): Boolean;
function IsSizeStored(): Boolean;
procedure SetAuto(Value: Boolean);
procedure SetSize(Value: Integer);
procedure Change();
protected
property Auto: Boolean read FAuto write SetAuto stored IsAutoStored;
public
constructor Create(DefaultSize: Integer); overload;
constructor Create(); overload;
procedure AssignTo(Dest: TPersistent); override;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
published
property Size: Integer read FSize write SetSize stored IsSizeStored;
end;
{ TTurboAutoLength }
TTurboAutoLength = class(TTurboLength)
private
function GetIsAuto(): Boolean;
public
constructor Create(DefaultSize: Integer; DefaultAuto: Boolean); overload;
constructor Create(); overload;
property IsAuto: Boolean read GetIsAuto;
published
property Auto;
end;
{ TTurboRange }
TTurboRange = record
private
FMax: Integer;
FMin: Integer;
function GetLength(): Integer; inline;
procedure SetMax(Value: Integer); inline;
procedure SetMin(Value: Integer); inline;
public
constructor Create(Min, Max: Integer);
function Ensure(Value: Integer): Integer; inline;
property Min: Integer read FMin write SetMin;
property Max: Integer read FMax write SetMax;
property Length: Integer read GetLength;
end;
{ TTurboFloatRange }
TTurboFloatRange = record
private
FMax: Double;
FMin: Double;
function GetLength(): Double; inline;
procedure SetMax(Value: Double); inline;
procedure SetMin(Value: Double); inline;
public
constructor Create(Min, Max: Double);
function Ensure(Value: Double): Double; inline;
property Min: Double read FMin write SetMin;
property Max: Double read FMax write SetMax;
property Length: Double read GetLength;
end;
{ TTurboCustomControl }
TTurboCustomControl = class(TCustomControl)
private
procedure UpdateOpaque();
protected
property ParentBackground default True;
procedure SetParentBackground(const ParentBackground: Boolean); override;
function IsAllowFocus(): Boolean; virtual;
public
constructor Create(Owner: TComponent); override;
function CanFocus(): Boolean; override;
procedure TrySetFocus();
end;
{ TTurboTransparentBackground }
TTurboTransparentBackground = class(TPersistent)
private
FCellSize: Integer;
FColor1: TColor;
FColor2: TColor;
FKind: TTurboTransparentBackgroundKind;
FOnChange: TNotifyEvent;
procedure SetCellSize(Value: Integer);
procedure SetColor1(Value: TColor);
procedure SetColor2(Value: TColor);
procedure SetKind(Value: TTurboTransparentBackgroundKind);
procedure Change();
public
constructor Create();
procedure AssignTo(Dest: TPersistent); override;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
published
property CellSize: Integer read FCellSize write SetCellSize default 4;
property Color1: TColor read FColor1 write SetColor1 default clGray;
property Color2: TColor read FColor2 write SetColor2 default clLtGray;
property Kind: TTurboTransparentBackgroundKind read FKind write SetKind default TTurboTransparentBackgroundKind.Chess;
end;
{ TTurboSelectionFrame }
TTurboSelectionFrame = class(TPersistent)
private
FColor1: TColor;
FColor2: TColor;
FHotOpacity: Byte;
FOnChange: TNotifyEvent;
FOpacity: Byte;
FPressedOpacity: Byte;
procedure SetColor1(Value: TColor);
procedure SetColor2(Value: TColor);
procedure SetHotOpacity(Value: Byte);
procedure SetOpacity(Value: Byte);
procedure SetPressedOpacity(Value: Byte);
procedure Change();
public
constructor Create();
procedure AssignTo(Dest: TPersistent); override;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
published
property Color1: TColor read FColor1 write SetColor1 default clWhite;
property Color2: TColor read FColor2 write SetColor2 default clBlack;
property HotOpacity: Byte read FHotOpacity write SetHotOpacity default 127;
property Opacity: Byte read FOpacity write SetOpacity default 255;
property PressedOpacity: Byte read FPressedOpacity write SetPressedOpacity default 200;
end;
implementation
{ TTurboPadding }
constructor TTurboPadding.Create(DefaultLeft, DefaultTop, DefaultRight, DefaultBottom: Integer);
begin
inherited Create();
FDefaultLeft := DefaultLeft;
FDefaultTop := DefaultTop;
FDefaultRight := DefaultRight;
FDefaultBottom := DefaultBottom;
FLeft := FDefaultLeft;
FTop := FDefaultTop;
FRight := FDefaultRight;
FBottom := FDefaultBottom;
end;
constructor TTurboPadding.Create();
begin
Create(0, 0, 0, 0);
end;
procedure TTurboPadding.SetLeft(Value: Integer);
begin
if Value < 0 then
begin
Value := 0;
end;
if Value = FLeft then
begin
exit;
end;
FLeft := Value;
Change();
end;
procedure TTurboPadding.SetTop(Value: Integer);
begin
if Value < 0 then
begin
Value := 0;
end;
if Value = FTop then
begin
exit;
end;
FTop := Value;
Change();
end;
procedure TTurboPadding.SetRight(Value: Integer);
begin
if Value < 0 then
begin
Value := 0;
end;
if Value = FRight then
begin
exit;
end;
FRight := Value;
Change();
end;
procedure TTurboPadding.SetBottom(Value: Integer);
begin
if Value < 0 then
begin
Value := 0;
end;
if Value = FBottom then
begin
exit;
end;
FBottom := Value;
Change();
end;
procedure TTurboPadding.SetAuto(Value: TTurboSides);
begin
if Value = FAuto then
begin
exit;
end;
FAuto := Value;
Change();
end;
function TTurboPadding.IsLeftStored(): Boolean;
begin
Result := ((FDefaultLeft <> FLeft) and not (Self is TTurboAutoPadding)) or not (TTurboSide.Left in FAuto);
end;
function TTurboPadding.IsTopStored(): Boolean;
begin
Result := ((FDefaultTop <> FTop) and not (Self is TTurboAutoPadding)) or not (TTurboSide.Top in FAuto);
end;
function TTurboPadding.IsRightStored(): Boolean;
begin
Result := ((FDefaultRight <> FRight) and not (Self is TTurboAutoPadding)) or not (TTurboSide.Right in FAuto);
end;
function TTurboPadding.IsBottomStored(): Boolean;
begin
Result := ((FDefaultBottom <> FBottom) and not (Self is TTurboAutoPadding)) or not (TTurboSide.Bottom in FAuto);
end;
function TTurboPadding.IsAutoStored(): Boolean;
begin
Result := FDefaultAuto <> FAuto;
end;
procedure TTurboPadding.Change();
begin
if Assigned(FOnChange) then
begin
FOnChange(Self);
end;
end;
procedure TTurboPadding.AssignTo(Dest: TPersistent);
var
NeedChange: Boolean;
begin
NeedChange := False;
if (Self is TTurboAutoPadding) and (Dest is TTurboAutoPadding) and (TTurboAutoPadding(Dest).FAuto <> FAuto) then
begin
TTurboAutoPadding(Dest).FAuto := FAuto;
NeedChange := True;
end;
if Dest is TTurboPadding then
begin
if (TTurboPadding(Dest).FLeft <> FLeft) or
(TTurboPadding(Dest).FTop <> FTop) or
(TTurboPadding(Dest).FRight <> FRight) or
(TTurboPadding(Dest).FBottom <> FBottom) then
begin
TTurboPadding(Dest).FLeft := FLeft;
TTurboPadding(Dest).FTop := FTop;
TTurboPadding(Dest).FRight := FRight;
TTurboPadding(Dest).FBottom := FBottom;
NeedChange := True;
end;
if NeedChange then
begin
TTurboPadding(Dest).Change();
end;
end else
begin
inherited AssignTo(Dest);
end;
end;
{ TTurboAutoPadding }
constructor TTurboAutoPadding.Create(DefaultLeft, DefaultTop, DefaultRight, DefaultBottom: Integer; DefaultAutoSides: TTurboSides);
begin
inherited Create(DefaultLeft, DefaultTop, DefaultRight, DefaultBottom);
FDefaultAuto := DefaultAutoSides;
FAuto := FDefaultAuto;
end;
constructor TTurboAutoPadding.Create();
begin
Create(0, 0, 0, 0, [TTurboSide.Left, TTurboSide.Top, TTurboSide.Right, TTurboSide.Bottom]);
end;
function TTurboAutoPadding.GetIsAutoLeft(): Boolean;
begin
Result := TTurboSide.Left in FAuto;
end;
function TTurboAutoPadding.GetIsAutoTop(): Boolean;
begin
Result := TTurboSide.Top in FAuto;
end;
function TTurboAutoPadding.GetIsAutoRight(): Boolean;
begin
Result := TTurboSide.Right in FAuto;
end;
function TTurboAutoPadding.GetIsAutoBottom(): Boolean;
begin
Result := TTurboSide.Bottom in FAuto;
end;
{ TTurboSize }
constructor TTurboSize.Create(DefaultWidth, DefaultHeight: Integer);
begin
inherited Create();
FDefaultWidth := DefaultWidth;
FDefaultHeight := DefaultHeight;
FWidth := FDefaultWidth;
FHeight := FDefaultHeight;
end;
constructor TTurboSize.Create();
begin
Create(0, 0);
end;
procedure TTurboSize.SetAuto(Value: TTurboDimensions);
begin
if Value = FAuto then
begin
exit;
end;
FAuto := Value;
Change();
end;
function TTurboSize.IsAutoStored(): Boolean;
begin
Result := FDefaultAuto <> FAuto;
end;
procedure TTurboSize.SetWidth(Value: Integer);
begin
if Value < 0 then
begin
Value := 0;
end;
if Value = FWidth then
begin
exit;
end;
FWidth := Value;
Change();
end;
procedure TTurboSize.SetHeight(Value: Integer);
begin
if Value < 0 then
begin
Value := 0;
end;
if Value = FHeight then
begin
exit;
end;
FHeight := Value;
Change();
end;
function TTurboSize.IsWidthStored(): Boolean;
begin
Result := ((FDefaultWidth <> FWidth) and not (Self is TTurboAutoSize)) or not (TTurboDimension.Width in FAuto);
end;
function TTurboSize.IsHeightStored(): Boolean;
begin
Result := ((FDefaultHeight <> FHeight) and not (Self is TTurboAutoSize)) or not (TTurboDimension.Height in FAuto);
end;
procedure TTurboSize.Change();
begin
if Assigned(FOnChange) then
begin
FOnChange(Self);
end;
end;
procedure TTurboSize.AssignTo(Dest: TPersistent);
var
NeedChange: Boolean;
begin
NeedChange := False;
if (Self is TTurboAutoSize) and (Dest is TTurboAutoSize) and (TTurboAutoSize(Dest).FAuto <> FAuto) then
begin
TTurboAutoSize(Dest).FAuto := FAuto;
NeedChange := True;
end;
if Dest is TTurboSize then
begin
if (TTurboSize(Dest).FWidth <> FWidth) or
(TTurboSize(Dest).FHeight <> FHeight) then
begin
TTurboSize(Dest).FWidth := FWidth;
TTurboSize(Dest).FHeight := FHeight;
NeedChange := True;
end;
if NeedChange then
begin
TTurboSize(Dest).Change();
end;
end else
begin
inherited AssignTo(Dest);
end;
end;
{ TTurboAutoSize }
constructor TTurboAutoSize.Create(DefaultWidth, DefaultHeight: Integer; DefaultAuto: TTurboDimensions);
begin
inherited Create(DefaultWidth, DefaultHeight);
FDefaultAuto := DefaultAuto;
FAuto := FDefaultAuto;
end;
constructor TTurboAutoSize.Create();
begin
Create(0, 0, [TTurboDimension.Width, TTurboDimension.Height]);
end;
function TTurboAutoSize.GetIsAutoWidth(): Boolean;
begin
Result := TTurboDimension.Width in FAuto;
end;
function TTurboAutoSize.GetIsAutoHeight(): Boolean;
begin
Result := TTurboDimension.Height in FAuto;
end;
{ TTurboLength }
constructor TTurboLength.Create(DefaultSize: Integer);
begin
FDefaultSize := DefaultSize;
FSize := FDefaultSize;
end;
constructor TTurboLength.Create();
begin
Create(0);
end;
function TTurboLength.IsAutoStored(): Boolean;
begin
Result := FAuto <> FDefaultAuto;
end;
function TTurboLength.IsSizeStored(): Boolean;
begin
Result := ((FDefaultSize <> FSize) and not (Self is TTurboAutoLength)) or not (FAuto);
end;
procedure TTurboLength.SetAuto(Value: Boolean);
begin
if Value = FAuto then
begin
exit;
end;
FAuto := Value;
Change();
end;
procedure TTurboLength.SetSize(Value: Integer);
begin
if Value < 0 then
begin
Value := 0;
end;
if Value = FSize then
begin
exit;
end;
FSize := Value;
Change();
end;
procedure TTurboLength.Change();
begin
if Assigned(FOnChange) then
begin
FOnChange(Self);
end;
end;
procedure TTurboLength.AssignTo(Dest: TPersistent);
var
NeedChange: Boolean;
begin
NeedChange := False;
if (Self is TTurboAutoLength) and (Dest is TTurboAutoLength) and (TTurboAutoLength(Dest).FAuto <> FAuto) then
begin
TTurboAutoLength(Dest).FAuto := FAuto;
NeedChange := True;
end;
if Dest is TTurboLength then
begin
if (TTurboLength(Dest).FSize <> FSize) then
begin
TTurboLength(Dest).FSize := FSize;
NeedChange := True;
end;
if NeedChange then
begin
TTurboLength(Dest).Change();
end;
end else
begin
inherited AssignTo(Dest);
end;
end;
{ TTurboAutoLength }
constructor TTurboAutoLength.Create(DefaultSize: Integer; DefaultAuto: Boolean);
begin
inherited Create(DefaultSize);
FDefaultAuto := DefaultAuto;
FAuto := FDefaultAuto;
end;
constructor TTurboAutoLength.Create();
begin
Create(0, True);
end;
function TTurboAutoLength.GetIsAuto(): Boolean;
begin
Result := FAuto;
end;
{ TTurboRange }
constructor TTurboRange.Create(Min, Max: Integer);
begin
if Min > Max then
begin
raise EArgumentException.Create('Min is greater than Max');
end;
FMin := Min;
FMax := Max;
end;
function TTurboRange.Ensure(Value: Integer): Integer;
begin
if Value < FMin then
begin
Result := FMin;
end else
if Value > FMax then
begin
Result := FMax;
end else
begin
Result := Value;
end;
end;
procedure TTurboRange.SetMax(Value: Integer);
begin
if FMax = Value then
begin
exit;
end;
FMax := Value;
if Value < FMin then
begin
FMin := Value;
end;
end;
function TTurboRange.GetLength(): Integer;
begin
Result := FMax - FMin;
end;
procedure TTurboRange.SetMin(Value: Integer);
begin
if FMin = Value then
begin
exit;
end;
FMin := Value;
if Value > FMax then
begin
FMax := Value;
end;
end;
{ TTurboFloatRange }
constructor TTurboFloatRange.Create(Min, Max: Double);
begin
if Min > Max then
begin
raise EArgumentException.Create('Min is greater than Max');
end;
FMin := Min;
FMax := Max;
end;
function TTurboFloatRange.GetLength(): Double;
begin
Result := FMax - FMin;
end;
procedure TTurboFloatRange.SetMax(Value: Double);
begin
if FMax = Value then
begin
exit;
end;
FMax := Value;
if Value < FMin then
begin
FMin := Value;
end;
end;
procedure TTurboFloatRange.SetMin(Value: Double);
begin
if FMin = Value then
begin
exit;
end;
FMin := Value;
if Value > FMax then
begin
FMax := Value;
end;
end;
function TTurboFloatRange.Ensure(Value: Double): Double;
begin
if Value < FMin then
begin
Result := FMin;
end else
if Value > FMax then
begin
Result := FMax;
end else
begin
Result := Value;
end;
end;
{ TTurboCustomControl }
constructor TTurboCustomControl.Create(Owner: TComponent);
begin
inherited Create(Owner);
ControlStyle := ControlStyle + [csParentBackground] - [csOpaque];
ParentColor := True;
end;
function TTurboCustomControl.CanFocus(): Boolean;
begin
Result := inherited CanFocus() and IsAllowFocus();
end;
procedure TTurboCustomControl.TrySetFocus();
begin
if CanFocus() then
begin
SetFocus();
end;
end;
procedure TTurboCustomControl.UpdateOpaque();
begin
if ParentBackground or ParentColor then
ControlStyle := ControlStyle - [csOpaque]
else
ControlStyle := ControlStyle + [csOpaque];
end;
procedure TTurboCustomControl.SetParentBackground(const ParentBackground: Boolean);
begin
inherited SetParentBackground(ParentBackground);
UpdateOpaque();
end;
function TTurboCustomControl.IsAllowFocus(): Boolean;
begin
Result := False;
end;
{ TTurboTransparentBackground }
constructor TTurboTransparentBackground.Create();
begin
inherited Create();
FKind := TTurboTransparentBackgroundKind.Chess;
FCellSize := 4;
FColor1 := clGray;
FColor2 := clLtGray;
end;
procedure TTurboTransparentBackground.SetCellSize(Value: Integer);
begin
FCellSize := EnsureRange(Value, 1, 32);
if FCellSize = Value then
begin
exit;
end;
FCellSize := Value;
Change();
end;
procedure TTurboTransparentBackground.SetColor1(Value: TColor);
begin
if FColor1 = Value then
begin
exit;
end;
FColor1 := Value;
Change();
end;
procedure TTurboTransparentBackground.SetColor2(Value: TColor);
begin
if FColor2 = Value then
begin
exit;
end;
FColor2 := Value;
Change();
end;
procedure TTurboTransparentBackground.SetKind(Value: TTurboTransparentBackgroundKind);
begin
if FKind = Value then
begin
exit;
end;
FKind := Value;
Change();
end;
procedure TTurboTransparentBackground.Change();
begin
if Assigned(FOnChange) then
begin
FOnChange(Self);
end;
end;
procedure TTurboTransparentBackground.AssignTo(Dest: TPersistent);
begin
if Dest is TTurboTransparentBackground then