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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
|
{
fpGUI - Free Pascal GUI Toolkit
Copyright (C) 2006 - 2008 See the file AUTHORS.txt, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, included in this distribution,
for details about redistributing fpGUI.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Description:
Defines a Text Edit control. Also known a Text Entry control.
}
unit gui_edit;
{$mode objfpc}{$H+}
interface
uses
Classes,
SysUtils,
gfxbase,
fpgfx,
gfx_widget,
gui_menu;
type
TfpgEditBorderStyle = (ebsNone, ebsDefault, ebsSingle);
TfpgCustomEdit = class(TfpgWidget)
private
FAutoSelect: Boolean;
FHideSelection: Boolean;
FPopupMenu: TfpgPopupMenu;
FDefaultPopupMenu: TfpgPopupMenu;
FText: string;
FFont: TfpgFont;
FPasswordMode: Boolean;
FBorderStyle: TfpgEditBorderStyle;
FOnChange: TNotifyEvent;
FMaxLength: integer;
FSelecting: Boolean;
procedure Adjust(UsePxCursorPos: boolean = false);
procedure AdjustTextOffset(UsePxCursorPos: boolean);
procedure AdjustDrawingInfo;
// function PointToCharPos(x, y: integer): integer;
procedure DeleteSelection;
procedure DoCopy;
procedure DoPaste;
procedure SetAutoSelect(const AValue: Boolean);
procedure SetBorderStyle(const AValue: TfpgEditBorderStyle);
procedure SetHideSelection(const AValue: Boolean);
procedure SetPasswordMode(const AValue: boolean);
function GetFontDesc: string;
procedure SetFontDesc(const AValue: string);
procedure SetText(const AValue: string);
procedure DefaultPopupCut(Sender: TObject);
procedure DefaultPopupCopy(Sender: TObject);
procedure DefaultPopupPaste(Sender: TObject);
procedure DefaultPopupClearAll(Sender: TObject);
procedure SetDefaultPopupMenuItemsState;
protected
FSideMargin: integer;
FMouseDragPos: integer;
FSelStart: integer;
FSelOffset: integer;
FCursorPos: integer; // Caret position (characters)
FCursorPx: integer; // Caret position (pixels)
FTextOffset: integer;
FDrawOffset: integer;
FVisibleText: TfpgString;
FVisSelStartPx: integer;
FVisSelEndPx: integer;
procedure DoOnChange; virtual;
procedure ShowDefaultPopupMenu(const x, y: integer; const shiftstate: TShiftState); virtual;
procedure HandlePaint; override;
procedure HandleResize(awidth, aheight: TfpgCoord); override;
procedure HandleKeyChar(var AText: TfpgChar; var shiftstate: TShiftState; var consumed: Boolean); override;
procedure HandleKeyPress(var keycode: word; var shiftstate: TShiftState; var consumed: Boolean); override;
procedure HandleLMouseDown(x, y: integer; shiftstate: TShiftState); override;
procedure HandleRMouseDown(x, y: integer; shiftstate: TShiftState); override;
procedure HandleMouseMove(x, y: integer; btnstate: word; shiftstate: TShiftState); override;
procedure HandleDoubleClick(x, y: integer; button: word; shiftstate: TShiftState); override;
procedure HandleMouseEnter; override;
procedure HandleMouseExit; override;
procedure HandleSetFocus; override;
procedure HandleKillFocus; override;
function GetDrawText: String;
property AutoSelect: Boolean read FAutoSelect write SetAutoSelect default True;
property BorderStyle: TfpgEditBorderStyle read FBorderStyle write SetBorderStyle default ebsDefault;
property Font: TfpgFont read FFont;
property FontDesc: String read GetFontDesc write SetFontDesc;
property HideSelection: Boolean read FHideSelection write SetHideSelection default True;
property MaxLength: Integer read FMaxLength write FMaxLength;
property PasswordMode: Boolean read FPasswordMode write SetPasswordMode default False;
property PopupMenu: TfpgPopupMenu read FPopupMenu write FPopupMenu;
property Text: String read FText write SetText;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function SelectionText: string;
procedure SelectAll;
procedure Clear;
procedure ClearSelection;
procedure CopyToClipboard;
procedure CutToClipboard;
procedure PasteFromClipboard;
end;
TfpgEdit = class(TfpgCustomEdit)
public
property Font;
property PopupMenu; // UI Designer doesn't fully support it yet
published
property AutoSelect;
property BackgroundColor default clBoxColor;
property BorderStyle;
property FontDesc;
property HideSelection;
property MaxLength;
property PasswordMode;
property TabOrder;
property Text;
property TextColor;
property OnChange;
property OnEnter;
property OnExit;
property OnKeyPress;
property OnMouseEnter;
property OnMouseExit;
property OnPaint;
end;
TfpgBaseNumericEdit = class(TfpgCustomEdit)
private
fOldColor: TfpgColor;
fAlignment: TAlignment;
fDecimalSeparator: char;
fNegativeColor: TfpgColor;
fThousandSeparator: char;
procedure SetOldColor(const AValue: TfpgColor);
procedure SetAlignment(const AValue: TAlignment);
procedure SetDecimalSeparator(const AValue: char);
procedure SetNegativeColor(const AValue: TfpgColor);
procedure SetThousandSeparator(const AValue: char);
protected
procedure HandleKeyChar(var AText: TfpgChar; var shiftstate: TShiftState; var consumed: Boolean); override;
procedure HandlePaint; override;
procedure Format; virtual;
procedure Justify; virtual; // to implement in derived classes
property OldColor: TfpgColor read fOldColor write SetOldColor;
property Alignment: TAlignment read fAlignment write SetAlignment default taRightJustify;
property AutoSelect;
property BackgroundColor default clBoxColor;
property BorderStyle;
{Someone likes to use English operating system but localized decimal and thousand separators
Still to implement !!}
property DecimalSeparator: char read fDecimalSeparator write SetDecimalSeparator;
property ThousandSeparator: char read fThousandSeparator write SetThousandSeparator;
property NegativeColor: TfpgColor read fNegativeColor write SetNegativeColor;
property HideSelection;
// property MaxLength; { probably MaxValue and MinValue }
property TabOrder;
property TextColor;
property OnChange;
property OnEnter;
property OnExit;
property OnKeyPress;
property OnMouseEnter;
property OnMouseExit;
property OnPaint;
property Text; { this should become Value }
public
constructor Create(AOwner: TComponent); override;
published
property FontDesc;
end;
{ TfpgEditInteger }
TfpgEditInteger = class(TfpgBaseNumericEdit)
protected
function GetValue: integer; virtual;
procedure SetValue(const AValue: integer); virtual;
procedure Format; override;
procedure HandleKeyChar(var AText: TfpgChar; var shiftstate: TShiftState; var consumed: Boolean); override;
published
property Alignment;
property NegativeColor;
property Value: integer read GetValue write SetValue;
end;
{ TfpgEditFloat }
TfpgEditFloat = class(TfpgBaseNumericEdit)
protected
function GetValue: extended; virtual;
procedure SetValue(const AValue: extended); virtual;
procedure HandleKeyChar(var AText: TfpgChar; var shiftstate: TShiftState; var consumed: Boolean); override;
published
property Alignment;
property NegativeColor;
property DecimalSeparator;
property Value: extended read GetValue write SetValue;
end;
function CreateEdit(AOwner: TComponent; x, y, w, h: TfpgCoord): TfpgEdit;
implementation
uses
gfx_UTF8utils,
gfx_constants;
const
// internal popupmenu item names
ipmCut = 'miDefaultCut';
ipmCopy = 'miDefaultCopy';
ipmPaste = 'miDefaultPaste';
ipmClearAll = 'miDefaultClearAll';
function CreateEdit(AOwner: TComponent; x, y, w, h: TfpgCoord): TfpgEdit;
begin
Result := TfpgEdit.Create(AOwner);
Result.Left := x;
Result.Top := y;
if w > 0 then
Result.Width := w;
if h < TfpgEdit(Result).FFont.Height + 6 then
Result.Height:= TfpgEdit(Result).FFont.Height + 6
else
Result.Height:= h;
end;
{ TfpgCustomEdit }
procedure TfpgCustomEdit.Adjust(UsePxCursorPos: boolean = false);
begin
AdjustTextOffset(False);
AdjustDrawingInfo;
end;
procedure TfpgCustomEdit.AdjustTextOffset(UsePxCursorPos: boolean);
{If UsePxCursorPos then determines FCursorPos from FCursorPx (that holds mouse pointer coordinates)
Calculates exact FCursorPx (relative to the widget bounding box) from FCursorPos
Calculates FTextOffset based on FCursorPx}
var
dtext: string;
ch: string; // current character
chnum: integer; // its ordinal number
chx: integer; // its X position relative to widget
bestchx: integer; // chx, nearest to the mouse position (indicated by FCursorPx if UsePxCursorPos = True)
tw: integer; // total characters width, that becomes FCursorPx relative to the beginning of the text
ptw: integer;
dpos: integer; // helps to pass through an utf-8 string quickly
VisibleWidth: integer; // width of the edit field minus side margins
begin
if UsePxCursorPos then
begin
if FCursorPx > 0 then // bestchx < chx minimum
bestchx := Low(chx) + 1 + FCursorPx
else // bestchx > chx maximum
bestchx := High(chx) - 1 + FCursorPx;
end else
FCursorPx := 0;
dtext := GetDrawText;
ch := '';
chnum := 0;
tw := 0;
dpos := 0;
while dpos <= Length(dtext) do
begin
dpos := UTF8CharAtByte(dtext, dpos, ch);
ptw := tw;
tw := tw + FFont.TextWidth(ch);
chx := tw - FTextOffset + FSideMargin;
if UsePxCursorPos then
begin
if abs(chx - FCursorPx) < abs(bestchx - FCursorPx) then
begin
bestchx := chx;
FCursorPos := chnum;
end else
begin
tw := ptw;
break;
end;
end else
begin
if chnum >= FCursorPos then
break;
end;
Inc(chnum);
end;
VisibleWidth := (FWidth - 2 * FSideMargin);
if tw - FTextOffset > VisibleWidth - 2 then
FTextOffset := tw - VisibleWidth + 2
else if tw - FTextOffset < 0 then
begin
FTextOffset := tw;
if tw <> 0 then
Dec(FTextOffset, 2);
end;
FCursorPx := tw - FTextOffset + FSideMargin;
end;
procedure TfpgCustomEdit.AdjustDrawingInfo;
// Calculates FVisSelStartPx, FVisSelEndPx, FVisibleText, FDrawOffset
var
// fvc, lvc: integer; // first/last visible characters
vtstartbyte, vtendbyte: integer; // visible characters' start/end in utf-8 string, bytes
bestfx, bestlx: integer;
dtext: string;
ch: string; // current character
chnum: integer; // its ordinal number
chx: integer; // its X position relative to widget
tw: integer; // total characters width, that becomes FCursorPx relative to the beginning of the text
ptw: integer; // total width on the previous step
dpos: integer; // helps to pass through an utf-8 string quickly
pdp: integer; // dpos on the previous step
vstart, vend: integer; // visible area start and end, pixels
slstart, slend: integer; // selection start and end, pixels
begin
vstart := FSideMargin;
vend := FWidth - FSideMargin;
if FSelOffset > 0 then
begin
slstart := FSelStart;
slend := FSelStart + FSelOffset;
end else
begin
slstart := FSelStart + FSelOffset;
slend := FSelStart;
end;
FVisSelStartPx := vend; // because we stop the search
FVisSelEndPx := vend; // after last visible character is found
bestfx := High(chx) - 1 + vstart;
bestlx := Low(chx) + 1 + vend;
dtext := GetDrawText;
ch := '';
chnum := 0;
tw := 0;
dpos := 0;
{fvc := 0;
lvc := 0;}
FDrawOffset := 0;
while dpos <= Length(dtext) do
begin
pdp := dpos;
dpos := UTF8CharAtByte(dtext, dpos, ch);
ptw := tw;
tw := tw + FFont.TextWidth(ch);
chx := tw - FTextOffset + FSideMargin;
// calculate selection-related fields
if chnum = slstart then
FVisSelStartPx := chx;
if chnum = slend then
FVisSelEndPx := chx;
// search for the first/last visible characters
if abs(chx - vstart) < abs(bestfx - vstart) then
begin
bestfx := chx;
// fvc := chnum;
vtstartbyte := pdp;
FDrawOffset := ptw;
end;
// in small edit field the same character can be both the first and the last, so no 'else' allowed
if abs(chx - vend) < abs(bestlx - vend) then
begin
bestlx := chx;
// lvc := chnum;
vtendbyte := UTF8CharAtByte(dtext, dpos, ch); // plus one more character
end else
break; // we can safely break after last visible character is found
Inc(chnum);
end;
if FVisSelStartPx < vstart then
FVisSelStartPx := vstart;
if FVisSelEndPx > vend then
FVisSelEndPx := vend;
// FVisibleText := UTF8Copy(dtext, fvc, lvc - fvc + 2);
FVisibleText := Copy(dtext, vtstartbyte, vtendbyte - vtstartbyte);
FDrawOffset := FTextOffset - FDrawOffset;
end;
{function TfpgCustomEdit.PointToCharPos(x, y: integer): integer;
var
n: integer;
cx: integer; // character X position
bestcx: integer;
dtext: string;
tw, dpos: integer;
ch: string;
begin
ch := '';
dtext := GetDrawText;
if x > 0 then // bestcx < cx minimum
bestcx := Low(cx) + 1 + x
else // bestcx > cx maximum
bestcx := High(cx) - 1 + x;
tw := 0;
dpos := 0;
n := 0;
Result := n;
// searching the appropriate character position
while dpos <= Length(dtext) do
begin
dpos := UTF8CharAtByte(dtext, dpos, ch);
tw := tw + FFont.TextWidth(ch);
cx := tw - FTextOffset + FSideMargin;
if abs(cx - x) < abs(bestcx - x) then
begin
bestcx := cx;
Result := n;
end else
Exit; //==>
Inc(n);
end;
end;}
procedure TfpgCustomEdit.SetBorderStyle(const AValue: TfpgEditBorderStyle);
begin
if FBorderStyle = AValue then
Exit; //==>
FBorderStyle := AValue;
RePaint;
end;
procedure TfpgCustomEdit.SetHideSelection(const AValue: Boolean);
begin
if FHideSelection = AValue then
Exit;
FHideSelection := AValue;
end;
procedure TfpgCustomEdit.HandlePaint;
var
r: TfpgRect;
tw, tw2, st, len: integer;
dtext: string;
// paint selection rectangle
procedure DrawSelection;
var
lcolor: TfpgColor;
r: TfpgRect;
begin
if Focused then
begin
lcolor := clSelection;
Canvas.SetTextColor(clSelectionText);
end
else
begin
lcolor := clInactiveSel;
Canvas.SetTextColor(clText1);
end;
r.SetRect(FVisSelStartPx, 3, FVisSelEndPx - FVisSelStartPx, FFont.Height);
Canvas.SetColor(lcolor);
Canvas.FillRectangle(r);
Canvas.SetTextColor(clWhite);
Canvas.AddClipRect(r);
fpgStyle.DrawString(Canvas, -FDrawOffset + FSideMargin, 3, FVisibleText, Enabled);
Canvas.ClearClipRect;
end;
begin
Canvas.ClearClipRect;
r.SetRect(0, 0, Width, Height);
case BorderStyle of
ebsNone:
begin
// do nothing
end;
ebsDefault:
begin
Canvas.DrawControlFrame(r);
InflateRect(r, -2, -2);
end;
ebsSingle:
begin
Canvas.SetColor(clShadow2);
Canvas.DrawRectangle(r);
InflateRect(r, -1, -1);
end;
end;
Canvas.SetClipRect(r);
if Enabled then
Canvas.SetColor(FBackgroundColor)
else
Canvas.SetColor(clWindowBackground);
Canvas.FillRectangle(r);
dtext := GetDrawText;
Canvas.SetFont(FFont);
Canvas.SetTextColor(FTextColor);
fpgStyle.DrawString(Canvas, -FDrawOffset + FSideMargin, 3, FVisibleText, Enabled);
if Focused then
begin
// drawing selection
if FSelOffset <> 0 then
DrawSelection;
// drawing cursor
fpgCaret.SetCaret(Canvas, FCursorPx, 3, fpgCaret.Width, FFont.Height);
end
else
begin
// drawing selection
if (AutoSelect = False) and (FSelOffset <> 0) and (HideSelection = False) then
DrawSelection;
fpgCaret.UnSetCaret(Canvas);
end;
end;
procedure TfpgCustomEdit.HandleResize(awidth, aheight: TfpgCoord);
begin
inherited HandleResize(awidth, aheight);
AdjustDrawingInfo;
end;
procedure TfpgCustomEdit.HandleKeyChar(var AText: TfpgChar;
var shiftstate: TShiftState; var consumed: Boolean);
var
s: TfpgChar;
prevval: string;
begin
prevval := Text;
s := AText;
if not consumed then
begin
// Handle only printable characters
// UTF-8 characters beyond ANSI range are supposed to be printable
if ((Ord(AText[1]) > 31) and (Ord(AText[1]) < 127)) or (Length(AText) > 1) then
begin
if (FMaxLength <= 0) or (UTF8Length(FText) < FMaxLength) then
begin
DeleteSelection;
UTF8Insert(s, FText, FCursorPos + 1);
Inc(FCursorPos);
FSelStart := FCursorPos;
Adjust;
end;
consumed := True;
end;
if prevval <> Text then
DoOnChange;
end;
if consumed then
RePaint;
inherited HandleKeyChar(AText, shiftstate, consumed);
end;
procedure TfpgCustomEdit.HandleKeyPress(var keycode: word;
var shiftstate: TShiftState; var consumed: boolean);
var
hasChanged: boolean;
procedure StopSelection;
begin
FSelStart := FCursorPos;
FSelOffset := 0;
end;
begin
hasChanged := False;
Consumed := True;
case CheckClipBoardKey(keycode, shiftstate) of
ckCopy:
begin
DoCopy;
end;
ckPaste:
begin
DoPaste;
hasChanged := True;
end;
ckCut:
begin
DoCopy;
DeleteSelection;
Adjust;
hasChanged := True;
end;
else
Consumed := False;
end;
if not Consumed then
begin
// checking for movement keys:
case keycode of
keyLeft:
if FCursorPos > 0 then
begin
consumed := True;
Dec(FCursorPos);
if (ssCtrl in shiftstate) then
// word search...
// while (FCursorPos > 0) and not ptkIsAlphaNum(copy(FText,FCursorPos,1))
// do Dec(FCursorPos);
// while (FCursorPos > 0) and ptkIsAlphaNum(copy(FText,FCursorPos,1))
// do Dec(FCursorPos);
;
end;
keyRight:
if FCursorPos < UTF8Length(FText) then
begin
consumed := True;
Inc(FCursorPos);
if (ssCtrl in shiftstate) then
// word search...
// while (FCursorPos < Length(FText)) and ptkIsAlphaNum(copy(FText,FCursorPos+1,1))
// do Inc(FCursorPos);
// while (FCursorPos < Length(FText)) and not ptkIsAlphaNum(copy(FText,FCursorPos+1,1))
// do Inc(FCursorPos);
;
end;
keyHome:
begin
consumed := True;
FCursorPos := 0;
end;
keyEnd:
begin
consumed := True;
FCursorPos := UTF8Length(FText);
end;
end;
if Consumed then
begin
FSelecting := (ssShift in shiftstate);
if FSelecting then
FSelOffset := FCursorPos - FSelStart
else
StopSelection;
Adjust;
end;
end; // movement key checking
if not Consumed then
begin
consumed := True;
case keycode of
keyBackSpace:
begin
if FCursorPos > 0 then
begin
UTF8Delete(FText, FCursorPos, 1);
Dec(FCursorPos);
hasChanged := True;
end;// backspace
end;
keyDelete:
begin
if FSelOffset <> 0 then
DeleteSelection
else if FCursorPos < UTF8Length(FText) then
UTF8Delete(FText, FCursorPos + 1, 1);
hasChanged := True;
end;
else
Consumed := False;
end;
if Consumed then
begin
StopSelection;
Adjust;
end;
end; { if }
if consumed then
RePaint
else
inherited;
if hasChanged then
if Assigned(FOnChange) then
FOnChange(self);
end;
procedure TfpgCustomEdit.HandleLMouseDown(x, y: integer; shiftstate: TShiftState);
{var
cp: integer;}
begin
inherited HandleLMouseDown(x, y, shiftstate);
{cp := PointToCharPos(x, y);
FMouseDragPos := cp;
FCursorPos := cp;
if (ssShift in shiftstate) then
FSelOffset := FCursorPos - FSelStart
else
begin
FSelStart := cp;
FSelOffset := 0;
end;
Adjust;
Repaint;}
FCursorPx := x;
AdjustTextOffset(True);
FMouseDragPos := FCursorPos;
if (ssShift in shiftstate) then
FSelOffset := FCursorPos - FSelStart
else
begin
FSelStart := FCursorPos;
FSelOffset := 0;
end;
AdjustDrawingInfo;
RePaint;
end;
procedure TfpgCustomEdit.HandleRMouseDown(x, y: integer; shiftstate: TShiftState);
begin
inherited HandleRMouseDown(x, y, shiftstate);
if Assigned(PopupMenu) then
PopupMenu.ShowAt(self, x, y)
else
ShowDefaultPopupMenu(x, y, ShiftState);
end;
procedure TfpgCustomEdit.HandleMouseMove(x, y: integer; btnstate: word; shiftstate: TShiftState);
var
cp: integer;
begin
if (btnstate and MOUSE_LEFT) = 0 then
Exit;
{cp := PointToCharPos(x, y);
//FMouseDragPos := cp;
FSelOffset := cp - FSelStart;
if FCursorPos <> cp then
begin
FCursorPos := cp;
Adjust;
Repaint;
end;}
cp := FCursorPos;
FCursorPx := x;
AdjustTextOffset(True);
if FCursorPos <> cp then
begin
FSelOffset := FCursorPos - FSelStart;
AdjustDrawingInfo;
Repaint;
end;
end;
procedure TfpgCustomEdit.HandleDoubleClick(x, y: integer; button: word; shiftstate: TShiftState);
begin
// button is always Mouse_Left, but lets leave this test here for good measure
if button = MOUSE_LEFT then
SelectAll
else
inherited;
end;
procedure TfpgCustomEdit.HandleMouseEnter;
begin
inherited HandleMouseEnter;
if (csDesigning in ComponentState) then
Exit;
if Enabled then
MouseCursor := mcIBeam;
end;
procedure TfpgCustomEdit.HandleMouseExit;
begin
inherited HandleMouseExit;
if (csDesigning in ComponentState) then
Exit;
MouseCursor := mcDefault;
end;
procedure TfpgCustomEdit.HandleSetFocus;
begin
inherited HandleSetFocus;
if AutoSelect then
SelectAll;
end;
procedure TfpgCustomEdit.HandleKillFocus;
begin
inherited HandleKillFocus;
if AutoSelect then
FSelOffset := 0;
end;
function TfpgCustomEdit.GetDrawText: string;
begin
if not PassWordMode then
Result := FText
else
Result := StringOfChar('*', UTF8Length(FText));
end;
constructor TfpgCustomEdit.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FFont := fpgGetFont('#Edit1'); // owned object !
Focusable := True;
FHeight := FFont.Height + 6;
FWidth := 120;
FTextColor := Parent.TextColor;
FBackgroundColor := clBoxColor;
FAutoSelect := True;
FSelecting := False;
FHideSelection := True;
FSideMargin := 3;
FMaxLength := 0; // no limit
FText := '';
FCursorPos := UTF8Length(FText);
FSelStart := FCursorPos;
FSelOffset := 0;
FTextOffset := 0;
FPasswordMode := False;
FBorderStyle := ebsDefault;
FPopupMenu := nil;
FDefaultPopupMenu := nil;
FOnChange := nil;
end;
destructor TfpgCustomEdit.Destroy;
begin
if Assigned(FDefaultPopupMenu) then
FDefaultPopupMenu.Free;
FFont.Free;
inherited Destroy;
end;
function TfpgCustomEdit.SelectionText: string;
begin
if FSelOffset <> 0 then
begin
if FSelOffset < 0 then
Result := UTF8Copy(FText, 1 + FSelStart + FSelOffset, -FSelOffset)
else
begin
Result := UTF8Copy(FText, 1 + FSelStart, FSelOffset);
end;
end
else
Result := '';
end;
procedure TfpgCustomEdit.SetPasswordMode (const AValue: boolean );
begin
if FPasswordMode = AValue then
Exit; //==>
FPasswordMode := AValue;
Adjust;
RePaint;
end;
function TfpgCustomEdit.GetFontDesc: string;
begin
Result := FFont.FontDesc;
end;
procedure TfpgCustomEdit.SetFontDesc(const AValue: string);
begin
FFont.Free;
FFont := fpgGetFont(AValue);
if Height < FFont.Height + 6 then
Height:= FFont.Height + 6;
Adjust;
RePaint;
end;
procedure TfpgCustomEdit.SetText(const AValue: string);
var
s: string;
begin
if FText = AValue then
Exit;
if FMaxLength <> 0 then
begin
if UTF8Length(FText) > FMaxLength then
s := UTF8Copy(AValue, 1, FMaxLength)
else
s := AValue;
end
else
s := AValue;
FText := s;
FCursorPos := UTF8Length(FText);
FSelStart := FCursorPos;
FSelOffset := 0;
FTextOffset := 0;
Adjust;
RePaint;
end;
procedure TfpgCustomEdit.DefaultPopupCut(Sender: TObject);
begin
CutToClipboard;
end;
procedure TfpgCustomEdit.DefaultPopupCopy(Sender: TObject);
begin
CopyToClipboard;
end;
procedure TfpgCustomEdit.DefaultPopupPaste(Sender: TObject);
begin
PasteFromClipboard
end;
procedure TfpgCustomEdit.DefaultPopupClearAll(Sender: TObject);
begin
Clear;
end;
procedure TfpgCustomEdit.SetDefaultPopupMenuItemsState;
var
i: integer;
itm: TfpgMenuItem;
begin
for i := 0 to FDefaultPopupMenu.ComponentCount-1 do
begin
if FDefaultPopupMenu.Components[i] is TfpgMenuItem then
begin
itm := TfpgMenuItem(FDefaultPopupMenu.Components[i]);
// enabled/disable menu items
if itm.Name = ipmCut then
itm.Enabled := FSelOffset <> 0
else if itm.Name = ipmCopy then
itm.Enabled := FSelOffset <> 0
else if itm.Name = ipmPaste then
itm.Enabled := fpgClipboard.Text <> ''
else if itm.Name = ipmClearAll then
itm.Enabled := Text <> '';
end;
end;
end;
procedure TfpgCustomEdit.DoOnChange;
begin
if Assigned(FOnChange) then
FOnChange(self);
end;
procedure TfpgCustomEdit.ShowDefaultPopupMenu(const x, y: integer;
const shiftstate: TShiftState);
var
itm: TfpgMenuItem;
begin
if not Assigned(FDefaultPopupMenu) then
begin
{ todo: This text needs to be localized }
FDefaultPopupMenu := TfpgPopupMenu.Create(nil);
itm := FDefaultPopupMenu.AddMenuItem(rsCut, '', @DefaultPopupCut);
itm.Name := ipmCut;
itm := FDefaultPopupMenu.AddMenuItem(rsCopy, '', @DefaultPopupCopy);
itm.Name := ipmCopy;
itm := FDefaultPopupMenu.AddMenuItem(rsPaste, '', @DefaultPopupPaste);
itm.Name := ipmPaste;
itm := FDefaultPopupMenu.AddMenuItem(rsDelete, '', @DefaultPopupClearAll);
itm.Name := ipmClearAll;
end;
SetDefaultPopupMenuItemsState;
FDefaultPopupMenu.ShowAt(self, x, y);
end;
procedure TfpgCustomEdit.DeleteSelection;
begin
if FSelOffset <> 0 then
begin
if FSelOffset < 0 then
begin
UTF8Delete(FText, 1 + FSelStart + FSelOffset, -FSelOffset);
FCurSorPos := FSelStart + FSelOffset;
end
else
begin
UTF8Delete(FText, 1 + FSelStart, FSelOffset);
FCurSorPos := FSelStart;
end;
FSelOffset := 0;
FSelStart := FCursorPos;
end;
end;
procedure TfpgCustomEdit.DoCopy;
begin
if FSelOffset = 0 then
Exit; //==>
fpgClipboard.Text := SelectionText;
end;
procedure TfpgCustomEdit.DoPaste;
var
s: string;
begin
DeleteSelection;
s := fpgClipboard.Text;
if (FMaxLength > 0) then
if UTF8Length(FText) + UTF8Length(s) > FMaxLength then
s := UTF8Copy(s, 1, FMaxLength - UTF8Length(FText)); // trim the clipboard text if needed
if UTF8Length(s) < 1 then
Exit; //==>
UTF8Insert(s, FText, FCursorPos + 1);
FCursorPos := FCursorPos + UTF8Length(s);
FSelStart := FCursorPos;
Adjust;
Repaint;
end;
procedure TfpgCustomEdit.SetAutoSelect(const AValue: Boolean);
begin
if FAutoSelect = AValue then
Exit; //==>
FAutoSelect := AValue;
end;
procedure TfpgCustomEdit.SelectAll;
begin
FSelecting := True;
FSelStart := 0;
FSelOffset := UTF8Length(FText);
FCursorPos := FSelOffset;
Adjust;
Repaint;
end;
procedure TfpgCustomEdit.Clear;
begin
Text := '';
end;
procedure TfpgCustomEdit.ClearSelection;
begin
DeleteSelection;
Adjust;
RePaint;
end;
procedure TfpgCustomEdit.CopyToClipboard;
begin
DoCopy;
end;
procedure TfpgCustomEdit.CutToClipboard;
begin
DoCopy;
DeleteSelection;
Adjust;
RePaint;
end;
procedure TfpgCustomEdit.PasteFromClipboard;
begin
DoPaste;
end;
{ TfpgBaseNumericEdit }
procedure TfpgBaseNumericEdit.SetOldColor(const AValue: TfpgColor);
begin
if fOldColor=AValue then exit;
fOldColor:=AValue;
end;
procedure TfpgBaseNumericEdit.SetAlignment(const AValue: TAlignment);
begin
if fAlignment=AValue then exit;
fAlignment:=AValue;
end;
procedure TfpgBaseNumericEdit.SetDecimalSeparator(const AValue: char);
begin
if fDecimalSeparator=AValue then exit;
fDecimalSeparator:=AValue;
end;
procedure TfpgBaseNumericEdit.SetNegativeColor(const AValue: TfpgColor);
begin
if fNegativeColor=AValue then exit;
fNegativeColor:=AValue;
end;
procedure TfpgBaseNumericEdit.SetThousandSeparator(const AValue: char);
begin
if fThousandSeparator=AValue then exit;
fThousandSeparator:=AValue;
end;
procedure TfpgBaseNumericEdit.Justify;
begin
//based on Alignment property this method will align the derived edit correctly.
end;
procedure TfpgBaseNumericEdit.HandleKeyChar(var AText: TfpgChar;
var shiftstate: TShiftState; var consumed: Boolean);
begin
Format; // just call format virtual procedure to have a simple way to manage polymorphism here
inherited HandleKeyChar(AText, shiftstate, consumed);
end;
procedure TfpgBaseNumericEdit.HandlePaint;
var
x: TfpgCoord;
s: string;
r: TfpgRect;
tw: integer;
begin
if Alignment = taRightJustify then
begin
Canvas.BeginDraw;
inherited HandlePaint;
// Canvas.ClearClipRect;
// r.SetRect(0, 0, Width, Height);
Canvas.Clear(BackgroundColor);
Canvas.SetFont(Font);
Canvas.SetTextColor(TextColor);
x := Width - Font.TextWidth(Text) - 1;
Canvas.DrawString(x,1,Text);
Canvas.EndDraw;
if Focused then
fpgCaret.SetCaret(Canvas, x + Font.TextWidth(Text) - 1, 3, fpgCaret.Width, Font.Height);
end
else
inherited;
end;
procedure TfpgBaseNumericEdit.Format;
begin
// Colour negative number
if LeftStr(Text,1) = '-' then
TextColor := NegativeColor
else
TextColor := OldColor;
end;
constructor TfpgBaseNumericEdit.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
fAlignment := taRightJustify;
DecimalSeparator := SysUtils.DecimalSeparator;
ThousandSeparator := SysUtils.ThousandSeparator;
NegativeColor := clRed;
OldColor := TextColor;
end;
{ TfpgEditInteger }
function TfpgEditInteger.GetValue: integer;
begin
try
Result := StrToInt(Text);
except
on E: EConvertError do
begin
Result := 0;
Text := '';
Invalidate;
end;
end;
end;
procedure TfpgEditInteger.SetValue(const AValue: integer);
begin
try
Text := IntToStr(AValue);
except
on E: EConvertError do
Text := '';
end;
end;
procedure TfpgEditInteger.Format;
begin
// here there will be, for example, thousand separator integer formatting routine
inherited Format;
end;
procedure TfpgEditInteger.HandleKeyChar(var AText: TfpgChar;
var shiftstate: TShiftState; var consumed: Boolean);
var
n: integer;
begin
n := Ord(AText[1]);
if ((n >= 48) and (n <= 57) or (n = Ord('-')) and (Pos(AText[1], Self.Text) <= 0)) then
consumed := False
else
consumed := True;
inherited HandleKeyChar(AText, shiftstate, consumed);
end;
{ TfpgEditFloat }
function TfpgEditFloat.GetValue: extended;
begin
try
Result := StrToFloat(Text);
except
on E: EConvertError do
begin
Result := 0;
Text := FloatToStr(Result);
end;
end;
end;
procedure TfpgEditFloat.SetValue(const AValue: extended);
begin
try
Text := FloatToStr(AValue);
except
on E: EConvertError do
Text := '';
end;
end;
procedure TfpgEditFloat.HandleKeyChar(var AText: TfpgChar;
var shiftstate: TShiftState; var consumed: Boolean);
var
n: integer;
begin
n := Ord(AText[1]);
if ((n >= 48) and (n <= 57) or (n = Ord('-')) and (Pos(AText[1], Self.Text) <= 0))
or ((n = Ord(Self.DecimalSeparator)) and (Pos(AText[1], Self.Text) <= 0)) then
consumed := False
else
consumed := True;
inherited HandleKeyChar(AText, shiftstate, consumed);
end;
end.
|