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
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
|
unit u_editgrid;
{$mode objfpc}{$H+}
interface
uses
Classes,
SysUtils,
fpg_base,
fpg_main,
fpg_basegrid,
fpg_customgrid,
fpg_grid,
fpg_edit,
fpg_combobox,
fpg_editcombo,
fpg_checkbox,
fpg_popupcalendar;
type
TEditType = (etNone, etText, etInteger, etFloat, etCurrency, etComboBox, etEditCombo, etCheckBox, etCalendar);
TEditing =(edNone, edRow, edColumn);
TfpgColumnData = class(TObject)
private
FMaxSet: boolean;
FMinSet: boolean;
public
constructor Create;
destructor Destroy; override;
property MaxSet: boolean read FMaxSet write FMaxSet;
property MinSet: boolean read FminSet write FminSet;
end;
TfpgNumericColumn = class(TfpgColumnData)
private
FMaxLimit: boolean;
FMinLimit: boolean;
FDecimals: integer;
FDecimalSeparator: TfpgChar;
FThousandSeparator: TfpgChar;
FShowThousand: boolean;
FNegativeColor: TfpgColor;
public
constructor Create;
destructor Destroy; override;
property MaxLimit: boolean read FMaxLimit write FMaxLimit;
property MinLimit: boolean read FMinLimit write FMinLimit;
property Decimals: integer read FDecimals write FDecimals;
property DecimalSeparator: TfpgChar read FDecimalSeparator write FDecimalSeparator;
property ThousandSeparator: TfpgChar read FThousandSeparator write FThousandSeparator;
property ShowThousand: boolean read FShowThousand write FShowThousand;
property NegativeColor: TfpgColor read FNegativeColor write FNegativeColor;
end;
TfpgIntegerColumn = class(TfpgNumericColumn)
private
FMaxVal: integer;
FMinVal: integer;
public
constructor Create;
destructor Destroy; override;
property MaxVal: integer read FMaxVal write FMaxVal;
property MinVal: integer read FMinVal write FMinVal;
end;
TfpgFloatColumn = class(TfpgNumericColumn)
private
FMaxVal: extended;
FMinVal: extended;
FFixedDecimals: integer;
public
constructor Create;
destructor Destroy; override;
property MaxVal: extended read FMaxVal write FMaxVal;
property MinVal: extended read FMinVal write FMinVal;
property FixedDecimals: integer read FFixedDecimals write FFixedDecimals;
end;
TfpgCurrencyColumn = class(TfpgNumericColumn)
private
FMaxVal: currency;
FMinVal: currency;
public
constructor Create;
destructor Destroy; override;
property MaxVal: currency read FMaxVal write FMaxVal;
property MinVal: currency read FMinVal write FMinVal;
end;
TfpgComboBoxColumn = class(TfpgColumnData)
private
FItems: TStringList;
FDropDownCount: integer;
public
constructor Create;
destructor Destroy; override;
property Items: TStringList read FItems write FItems;
property DropDownCount: integer read FDropDownCount write FDropDownCount;
end;
TfpgEditComboColumn = class(TfpgColumnData)
private
FItems: TStringList;
FAutoComplete: boolean;
FAllowNew: TAllowNew;
FDropDownCount: integer;
public
constructor Create;
destructor Destroy; override;
property Items: TStringList read FItems write FItems;
property AutoComplete: boolean read FAutoComplete write FAutoComplete;
property AllowNew: TAllowNew read FAllowNew write FAllowNew;
property DropDownCount: integer read FDropDownCount write FDropDownCount;
end;
TfpgCheckBoxColumn = class(TfpgColumnData)
private
FChecked: string;
FUnchecked: string;
FBoxText: string;
public
constructor Create;
destructor Destroy; override;
property CheckedText: string read FChecked write FChecked;
property UncheckedText: string read FUnchecked write FUnchecked;
property BoxText: string read FBoxText write FBoxText;
end;
TDates = class
FDate: TDateTime;
end;
TfpgCalendarColumn = class(TfpgColumnData)
private
FDatesList: TList;
FGridDateFormat: string;
FCalendarDateFormat: string;
FDateValue: TDateTime;
FMaxDate: TDateTime;
FMinDate: TDateTime;
FWeeklyHoliday: integer;
FWeekStartDay: integer;
FDayColor: TfpgColor;
FHolidayColor: TfpgColor;
FSingleClickSelect: boolean;
public
constructor Create;
destructor Destroy; override;
property DatesList: TList read FDatesList write FDatesList;
property GridDateFormat: string read FGridDateFormat write FGridDateFormat;
property CalendarDateFormat: string read FCalendarDateFormat write FCalendarDateFormat;
property DateValue: TDateTime read FDateValue write FDateValue;
property MaxDate: TDateTime read FMaxDate write FMaxDate;
property MinDate: TDateTime read FMinDate write FMinDate;
property WeeklyHoliday: integer read FWeeklyHoliday write FWeeklyHoliday;
property WeekStartDay: integer read FWeekStartDay write FWeekStartDay;
property DayColor: TfpgColor read FDayColor write FDayColor;
property HolidayColor: TfpgColor read FHolidayColor write FHolidayColor;
property SingleClickSelect: boolean read FSingleClickSelect write FSingleClickSelect;
end;
TfpgEditColumn = class(TfpgStringColumn)
private
FEditType: TEditType;
FData: TfpgColumnData;
public
property EditType: TEditType read FEditType write FEditType;
property Data: TfpgColumnData read FData write FData;
end;
TfpgCustomEditgrid = class(TfpgCustomStringGrid)
private
FDates: TDates;
FCellEditText: TFpgEdit;
FCellEditInteger: TFpgEditInteger;
FCellEditFloat: TFpgEditFloat;
FCellEditCurrency: TFpgEditCurrency;
FCellComboBox: TfpgComboBox;
FCellEditCombo: TfpgEditCombo;
FCellCheckBox: TfpgCheckBox;
FCellCalendar: TfpgCalendarCombo;
FFocusRect: TfpgRect;
FEditing: boolean;
FEditWay: TEditing;
procedure EditGridFocusChange(Sender: TObject; ARow,ACol: integer);
procedure EditGridDoubleClick(Sender: TObject; AButton: TMouseButton; AShift: TShiftState;
const AMousePos: TPoint);
procedure EditGridMouseDown(Sender: TObject; AButton: TMouseButton; AShift: TShiftState;
const AMousePos: TPoint);
procedure EditGridDrawCell(Sender: TObject; const ARow, ACol: Integer; const ARect: TfpgRect;
const AFlags: TfpgGridDrawState; var ADefaultDrawing: boolean);
function GetColumnEditType(AIndex: integer): TEditType;
function GetTextColor(AIndex: integer): TfpgColor;
procedure SetTextColor(AIndex: integer; const AValue: TfpgColor);
procedure SetEditCell;
procedure CloseEditCell;
procedure SetReturnWay;
procedure SetTabWay(ShiftState: TShiftState);
procedure IniTextCell;
procedure FCellEditTextKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
function GetNumericMaxLimit(AIndex: integer): boolean;
procedure SetNumericMaxLimit(AIndex: integer; const AValue: boolean);
function GetNumericMinLimit(AIndex: integer): boolean;
procedure SetNumericMinLimit(AIndex: integer; const AValue: boolean);
function GetNumericDecimals(AIndex: integer): integer;
procedure SetNumericDecimals(AIndex: integer; const AValue: integer);
function GetNumericDecimalSeparator(AIndex: integer): TfpgChar;
procedure SetNumericDecimalSeparator(AIndex: integer; const AValue: TfpgChar);
function GetNumericThousandSeparator(AIndex: integer): TfpgChar;
procedure SetNumericThousandSeparator(AIndex: integer; const AValue: TfpgChar);
function GetNumericShowThousand(AIndex: integer): boolean;
procedure SetNumericShowThousand(AIndex: integer; const AValue: boolean);
function GetNumericNegativeColor(AIndex: integer): TfpgColor;
procedure SetNumericNegativeColor(AIndex: integer; const AValue: TfpgColor);
procedure IniIntegerCell;
procedure FCellEditIntegerKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
function GetMaxIntValue(AIndex: integer): integer;
procedure SetMaxIntValue(AIndex: integer; const AValue: integer);
function GetMinIntValue(AIndex: integer): integer;
procedure SetMinIntValue(AIndex: integer; const AValue: integer);
procedure IniFloatCell;
procedure FCellEditFloatKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
function GetMaxFloatValue(AIndex: integer): extended;
procedure SetMaxFloatValue(AIndex: integer; const AValue: extended);
function GetMinFloatValue(AIndex: integer): extended;
procedure SetMinFloatValue(AIndex: integer; const AValue: extended);
function GetFloatFixedDecimals(AIndex: integer): integer;
procedure SetFloatFixedDecimals(AIndex: integer; const AValue: integer);
procedure IniCurrencyCell;
procedure FCellEditCurrencyKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
function GetMaxCurrValue(AIndex: integer): currency;
procedure SetMaxCurrValue(AIndex: integer; const AValue: currency);
function GetMinCurrValue(AIndex: integer): currency;
procedure SetMinCurrValue(AIndex: integer; const AValue: currency);
procedure IniComboBoxCell;
procedure FCellComboBoxKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
function GetComboBoxDropDownCount(AIndex: integer): integer;
procedure SetComboBoxDropDownCount(AIndex: integer; AValue: integer);
procedure IniEditComboCell;
procedure FCellEditComboKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
function GetAutoComplete(AIndex: integer): boolean;
procedure SetAutoComplete(AIndex: integer; const AValue: boolean);
function GetAllowNew(AIndex: integer): TAllowNew;
procedure SetAllowNew(AIndex: integer; AValue: TAllowNew);
function GetEditComboDropDownCount(AIndex: integer): integer;
procedure SetEditComboDropDownCount(AIndex: integer; AValue: integer);
procedure IniCheckBoxCell;
procedure FCellCheckBoxKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
function GetBoxCheckedText(AIndex: integer): string;
procedure SetBoxCheckedText(AIndex: integer; const AValue: string);
function GetBoxUncheckedText(AIndex: integer): string;
procedure SetBoxUncheckedText(AIndex: integer; const AValue: string);
function GetBoxDisplayText(AIndex: integer): string;
procedure SetBoxDisplayText(AIndex: integer; const AValue: string);
procedure IniCalendarCell;
procedure FCellCalendarKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
function GetDates(AIndex: integer): TDateTime;
procedure SetDates(AIndex: integer; const AValue: TDateTime);
function GetDatesList(AIndex: integer): TList;
procedure SetDatesList(AIndex: integer; const AValue: TList);
function GetGridDateFormat(AIndex: integer): string;
procedure SetGridDateFormat(AIndex: integer; const AValue: string);
function GetCalendarDateFormat(AIndex: integer): string;
procedure SetCalendarDateFormat(AIndex: integer; const AValue: string);
function GetDateValue(AIndex: integer): TDateTime;
procedure SetDateValue(AIndex: integer; const AValue: TDateTime);
function GetMaxDate(AIndex: integer): TDateTime;
procedure SetMaxdate(AIndex: integer; const AValue: TDateTime);
function GetMinDate(AIndex: integer): TDateTime;
procedure SetMinDate(AIndex: integer; const AValue: TDateTime);
function GetWeeklyHoliday(AIndex: integer): integer;
procedure SetWeeklyHoliday(AIndex: integer; const AValue: integer);
function GetWeekStartDay(AIndex: integer): integer;
procedure SetWeekStartDay(AIndex: integer; const AValue: integer);
function GetDayColor(AIndex: integer): TfpgColor;
procedure SetDayColor(AIndex: integer; const AValue: TfpgColor);
function GetHolidayColor(AIndex: integer): TfpgColor;
procedure SetHolidayColor(AIndex: integer; const AValue: TfpgColor);
function GetSingleClickSelect(AIndex: integer): boolean;
procedure SetSingleClickSelect(AIndex: integer; const AValue: boolean);
protected
function GetColumns(AIndex: Integer): TfpgEditColumn; reintroduce;
procedure DrawCell(ARow, ACol: Integer; ARect: TfpgRect; AFlags: TfpgGridDrawState); override;
procedure HandleKeyPress(var keycode: word; var shiftstate: TShiftState; var consumed: boolean); override;
property Columns[AIndex: Integer]: TfpgEditColumn read GetColumns;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
property EditWay: TEditing read FEditWay write FEditWay;
function AddColumn(ATitle: string; AWidth: integer; AEditType: TEditType = etNone;
AAlignment: TAlignment = taLeftJustify; AbackgroundColor: TfpgColor = clDefault; ATextColor: TfpgColor = clDefault): TfpgEditColumn; overload;
property ColumnEditType[AIndex: integer]: TEditType read GetColumnEditType;
property TextColor[AIndex: integer]: TfpgColor read GetTextColor write SetTextColor;
property NumericMaxLimit[AIndex: integer]: boolean read GetNumericMaxLimit write SetNumericMaxLimit;
property NumericMinLimit[AIndex: integer]: boolean read GetNumericMinLimit write SetNumericMinLimit;
property NumericDecimals[AIndex: integer]: integer read GetNumericDecimals write SetNumericDecimals;
property NumericDecimalSeparator[AIndex: integer]: TfpgChar read GetNumericDecimalSeparator write SetNumericDecimalSeparator;
property NumericThousandSeparator[AIndex: integer]: TfpgChar read GetNumericThousandSeparator write SetNumericThousandSeparator;
property NumericShowThousand[AIndex: integer]: boolean read GetNumericShowThousand write SetNumericShowThousand;
property NumericNegativeColor[AIndex: integer]: Tfpgcolor read GetNumericNegativeColor write SetNumericNegativeColor;
property MaxIntValue[AIndex: integer]: integer read GetMaxIntValue write SetMaxIntValue;
property MinIntValue[AIndex: integer]: integer read GetMinIntValue write SetMinIntValue;
property MaxFloatValue[AIndex: integer]: extended read GetMaxFloatValue write SetMaxFloatValue;
property MinFloatValue[AIndex: integer]: extended read GetMinFloatValue write SetMinFloatValue;
property FloatFixedDecimals[AIndex: integer]: integer read GetFloatFixedDecimals write SetFloatFixedDecimals;
property MaxCurrValue[AIndex: integer]: currency read GetMaxCurrValue write SetMaxCurrValue;
property MinCurrValue[AIndex: integer]: currency read GetMinCurrValue write SetMinCurrValue;
procedure AddComboItem(AIndex: integer; const AValue: string);
property ComboBoxDropDownCount[AIndex: integer]: integer read GetComboBoxDropDownCount write SetComboBoxDropDownCount;
procedure AddEditComboItem(AIndex: integer; const AValue: string);
property AutoComplete[AIndex: integer]: boolean read GetAutoComplete write SetAutoComplete;
property AllowNew[AIndex: integer]: TAllowNew read GetAllowNew write SetAllowNew;
property EditComboDropDownCount[AIndex: integer]: integer read GetEditComboDropDownCount write SetEditComboDropDownCount;
property BoxCheckedText[AIndex: integer]: string read GetBoxCheckedText write SetBoxCheckedText;
property BoxUncheckedText[AIndex: integer]: string read GetBoxUncheckedText write SetBoxUncheckedText;
property BoxDisplayText[AIndex: integer]: string read GetBoxDisplayText write SetBoxDisplayText;
property Dates[AIndex: integer]: TDateTime read GetDates write SetDates;
property DatesList[AIndex: integer]: TList read GetDatesList write SetDatesList;
property GridDateFormat[AIndex: integer]: string read GetGridDateFormat write SetGridDateFormat;
property CalendarDateFormat[AIndex: integer]: string read GetCalendarDateFormat write SetCalendarDateFormat;
property DateValue[AIndex: integer]: TDateTime read GetDateValue write SetDatevalue;
property MaxDate[AIndex: integer]: TDateTime read GetMaxDate write SetMaxDate;
property MinDate[AIndex: integer]: TDateTime read GetMinDate write SetMinDate;
property WeeklyHoliday[AIndex: integer]: integer read GetWeeklyHoliday write SetWeeklyHoliday;
property WeekStartDay[AIndex: integer]: integer read GetWeekStartDay write SetWeekStartDay;
property DayColor[AIndex: integer]: TfpgColor read GetDayColor write SetDayColor;
property HolidayColor[AIndex: integer]: TfpgColor read GetHolidayColor write SetHolidayColor;
property SingleClickSelect[AIndex: integer]: boolean read GetSingleClickSelect write SetSingleClickSelect;
end;
TfpgEditGrid = class(TfpgCustomEditgrid)
public
property Font;
published
property Align;
property AlternateBGColor;
property BackgroundColor;
property BorderStyle;
// property ColResizing;
property ColumnCount;
property Columns;
property ColumnWidth;
property DefaultColWidth;
property DefaultRowHeight;
property Enabled;
property FocusCol;
property FocusRow;
property FontDesc;
property HeaderFontDesc;
property HeaderHeight;
property HeaderStyle;
property Hint;
property Options;
property ParentShowHint;
property PopupMenu;
property RowCount;
property RowSelect;
property ScrollBarStyle;
property ShowGrid;
property ShowHeader;
property ShowHint;
property TabOrder;
property TopRow;
property VisibleRows;
property OnCanSelectCell;
property OnClick;
property OnDoubleClick;
property OnDrawCell;
property OnFocusChange;
property OnKeyPress;
property OnMouseDown;
property OnMouseEnter;
property OnMouseExit;
property OnMouseMove;
property OnMouseUp;
property OnRowChange;
property OnShowHint;
end;
function CreateEditGrid(AOwner: TComponent; x, y, w, h: Tfpgcoord; AColumnCount: integer = 0): TfpgEditGrid;
implementation
uses
fpg_stringutils;
function CreateEditGrid(AOwner: TComponent; x, y, w, h: TfpgCoord; AColumnCount: integer = 0): TfpgEditGrid;
begin
Result := TfpgEditGrid.Create(AOwner);
Result.Left := x;
Result.Top := y;
Result.Width := w;
Result.Height := h;
Result.ColumnCount := AColumnCount;
end;
constructor TfpgColumnData.Create;
begin
inherited Create;
FMaxSet := False;
FMinSet := False;
end;
destructor TfpgColumnData.Destroy;
begin
inherited Destroy;
end;
constructor TfpgNumericColumn.Create;
begin
inherited Create;
FMaxLimit := False;
FMinLimit := False;
FDecimals := -1;
FDecimalseparator := '.';
FThousandSeparator := ' ';
FShowThousand := True;
end;
destructor TfpgNumericColumn.Destroy;
begin
inherited Destroy;
end;
constructor TfpgIntegerColumn.Create;
begin
inherited Create;
FMaxVal := 0;
FMinVal := 0;
end;
destructor TfpgIntegerColumn.Destroy;
begin
inherited Destroy;
end;
constructor TfpgFloatColumn.Create;
begin
inherited Create;
FMaxVal := 0;
FMinVal := 0;
FFixedDecimals := -1;
end;
destructor TfpgFloatColumn.Destroy;
begin
inherited Destroy;
end;
constructor TfpgCurrencyColumn.Create;
begin
inherited Create;
FMaxVal := 0;
FMinVal := 0;
end;
destructor TfpgCurrencyColumn.Destroy;
begin
inherited Destroy;
end;
constructor TfpgComboBoxColumn.Create;
begin
inherited Create;
FItems := TStringList.Create;
end;
destructor TfpgComboBoxColumn.Destroy;
begin
FItems.Free;
inherited Destroy;
end;
constructor TfpgEditComboColumn.Create;
begin
inherited Create;
FItems := TStringList.Create;
end;
destructor TfpgEditComboColumn.Destroy;
begin
FItems.Free;
inherited Destroy;
end;
constructor TfpgCheckBoxColumn.Create;
begin
inherited Create;
end;
destructor TfpgCheckBoxColumn.Destroy;
begin
inherited Destroy;
end;
constructor TfpgCalendarColumn.Create;
begin
inherited Create;
FDatesList:= TList.Create;
end;
destructor TfpgCalendarColumn.Destroy;
var
i: integer;
begin
inherited Destroy;
if FDatesList.Count> 0 then
for i := 0 to Pred(FDatesList.Count) do
TDates(FDatesList[i]).Free;
FDatesList.Free;
end;
procedure TfpgCustomEditGrid.EditGridFocusChange(Sender: TObject; ARow,ACol: integer);
begin
CloseEditCell;
end;
procedure TfpgCustomEditGrid.EditGridDoubleClick(Sender: TObject; AButton: TMouseButton; AShift: TShiftState;
const AMousePos: TPoint);
var
lCol, lRow: integer;
begin
MouseToCell(AMousePos.X, AMousePos.Y, lCol, lRow);
case Columns[lCol].EditType of
etText:
IniTextCell;
etInteger:
IniIntegerCell;
etFloat:
IniFloatCell;
etCurrency:
IniCurrencyCell;
etComboBox:
IniComboBoxCell;
etEditCombo:
IniEditComboCell;
etCheckBox:
IniCheckBoxCell;
etCalendar:
IniCalendarCell;
end;
FEditing := True;
end;
procedure TfpgCustomEditGrid.EditGridMouseDown(Sender: TObject; AButton: TMouseButton; AShift: TShiftState;
const AMousePos: TPoint);
begin
CloseEditCell;
end;
procedure TfpgCustomEditGrid.EditGridDrawCell(Sender: TObject; const ARow, ACol: Integer; const ARect: TfpgRect;
const AFlags: TfpgGridDrawState; var ADefaultDrawing: boolean);
var
Txt, Deci: string;
tSeparator,dseparator: TfpgChar;
begin
case Columns[Acol].EditType of
etInteger:
begin
if Copy(Cells[ACol, ARow],1,1) = '-' then
begin
Txt:= UTF8Copy(Cells[ACol, ARow],2,Pred(UTF8Length(Cells[ACol, ARow])));
Canvas.TextColor:= TfpgNumericColumn(TfpgEditColumn(Columns[ACol]).Data).NegativeColor;
end
else
Txt:= Cells[ACol, ARow];
if UTF8Length(Txt)> 3 then
begin
tSeparator:= TfpgNumericColumn(TfpgEditColumn(Columns[ACol]).Data).ThousandSeparator;
if TfpgNumericColumn(TfpgEditColumn(Columns[ACol]).Data).ShowThousand then
begin
if UTF8Pos(tSeparator,Txt) = 0 then
begin
Txt:= UTF8Copy(Txt, 1, UTF8Length(txt) - 3) + tSeparator + UTF8Copy(Txt, UTF8Length(Txt) - 2, 3);
while UTF8Pos(tSeparator,Txt) > 3 do
Txt:= UTF8Copy(Txt, 1, UTF8Pos(tSeparator,Txt) - 4) + tSeparator
+ UTF8Copy(Txt, UTF8Pos(tSeparator,Txt) - 3, UTF8Length(txt) - UTF8Pos(tSeparator,Txt) + 4);
end;
end
else
if UTF8Pos(tSeparator,Txt) > 0 then
while UTF8Pos(tSeparator,Txt) > 0 do
Txt:= UTF8Copy(txt, 1, Pred(UTF8Pos(tSeparator, txt)))
+UTF8Copy(txt, Succ(UTF8Pos(tSeparator, txt)), UTF8Length(txt) - UTF8Pos(tSeparator, txt));
if Copy(Cells[ACol, ARow],1,1) = '-' then
Cells[ACol, ARow] := '-' + Txt
else
Cells[ACol, ARow] := Txt;
end;
end;
etFloat, etCurrency:
begin
if Copy(Cells[ACol, ARow],1,1) = '-' then
begin
Txt:= UTF8Copy(Cells[ACol, ARow],2,Pred(UTF8Length(Cells[ACol, ARow])));
Canvas.TextColor:= TfpgNumericColumn(TfpgEditColumn(Columns[ACol]).Data).NegativeColor;
end
else
Txt:= Cells[ACol, ARow];
dSeparator:= TfpgNumericColumn(TfpgEditColumn(Columns[ACol]).Data).DecimalSeparator;
if UTF8Pos(dSeparator,Txt) > 0 then
Deci:= Copy(Cells[ACol, ARow], UTF8Pos(dSeparator,Txt), UTF8Length(Cells[ACol, ARow]) - Pred(UTF8Pos(dSeparator,Txt)));
if (UTF8Length(Txt) - UTF8Length(Deci)) > 3 then
begin
tSeparator:= TfpgNumericColumn(TfpgEditColumn(Columns[ACol]).Data).ThousandSeparator;
if TfpgNumericColumn(TfpgEditColumn(Columns[ACol]).Data).ShowThousand then
begin
if UTF8Pos(tSeparator,Txt) = 0 then
begin
Txt:= UTF8Copy(Txt, 1, UTF8Length(txt) - UTF8Length(Deci) - 3) + tSeparator + UTF8Copy(Txt, UTF8Length(Txt) - UTF8Length(Deci) - 2, 3) + Deci;
while UTF8Pos(tSeparator,Txt) > 3 do
Txt:= UTF8Copy(Txt, 1, UTF8Pos(tSeparator,Txt) - 4) + tSeparator
+ UTF8Copy(Txt, UTF8Pos(tSeparator,Txt) - 3, UTF8Length(txt) - UTF8Length(Deci) - UTF8Pos(tSeparator,Txt) + 4) + Deci;
end;
end
else
if UTF8Pos(tSeparator,Txt) > 0 then
while UTF8Pos(tSeparator,Txt) > 0 do
Txt:= UTF8Copy(txt, 1, Pred(UTF8Pos(tSeparator, txt)))
+UTF8Copy(txt, Succ(UTF8Pos(tSeparator, txt)), UTF8Length(txt) - UTF8Length(Deci) - UTF8Pos(tSeparator, txt)) + Deci;
if Copy(Cells[ACol, ARow],1,1) = '-' then
Cells[ACol, ARow] := '-' + Txt
else
Cells[ACol, ARow] := Txt;
end;
end;
end;
end;
function TfpgCustomEditGrid.GetColumnEditType(AIndex: integer): TEditType;
begin
Result := TfpgEditColumn(Columns[AIndex]).EditType;
end;
function TfpgCustomEditGrid.GetTextColor(AIndex: integer): TfpgColor;
begin
Result := TfpgEditColumn(Columns[AIndex]).TextColor;
end;
procedure TfpgCustomEditGrid.SetTextColor(AIndex: integer; const AValue: TfpgColor);
begin
TfpgEditColumn(Columns[AIndex]).TextColor := AValue;
end;
procedure TfpgCustomEditGrid.SetEditCell;
begin
case Columns[FocusCol].EditType of
etText:
IniTextCell;
etInteger:
IniIntegerCell;
etFloat:
IniFloatCell;
etCurrency:
IniCurrencyCell;
etComboBox:
IniComboBoxCell;
etEditCombo:
IniEditComboCell;
etCheckBox:
IniCheckBoxCell;
etCalendar:
IniCalendarCell;
end;
end;
procedure TfpgCustomEditGrid.CloseEditCell;
var
i: integer;
begin
for i := 0 to Pred(ColumnCount) do
case Columns[i].EditType of
etText:
if Assigned(FCellEditText) then
begin
FCellEditText.Text := '';
FCellEditText.Visible := False;
end;
etInteger:
if Assigned(FCellEditInteger) then
begin
FCellEditInteger.Text := '';
FCellEditInteger.Visible := False;
end;
etFloat:
if Assigned(FCellEditFloat) then
begin
FCellEditFloat.Text := '';
FCellEditFloat.Visible := False;
end;
etCurrency:
if Assigned(FCellEditCurrency) then
begin
FCellEditCurrency.Text := '';
FCellEditCurrency.Visible := False;
end;
etComboBox:
if Assigned(FCellComboBox) then
begin
FCellComboBox.Text := '';
FCellComboBox.Visible := False;
end;
etEditCombo:
if Assigned(FCellEditCombo) then
begin
FCellEditCombo.Text := '';
FCellEditCombo.Visible := False;
end;
etCheckBox:
if Assigned(FCellCheckBox) then
begin
FCellCheckBox.Text := '';
FCellCheckBox.Visible := False;
end;
etCalendar:
if Assigned(FCellCalendar) then
begin
// FCellCalendar.Text := '';
FCellCalendar.Visible := False;
end;
end;
end;
procedure TfpgCustomEditGrid.SetReturnWay;
begin
case FEditWay of
edNone:
FEditing:= False;
edColumn:
if FocusCol < Pred(ColumnCount) then
FocusCol := FocusCol + 1
else
FEditing:= False;
edRow:
if FocusRow < Pred(RowCount) then
FocusRow := FocusRow + 1
else
FEditing:= False;
end;
SetFocus;
if FEditing then
SetEditCell;
end;
procedure TfpgCustomEditGrid.SetTabWay(ShiftState: TShiftState);
begin
if ssShift in ShiftState then
begin
if FocusCol > 0 then
FocusCol := FocusCol - 1;
end
else
if FocusCol < Pred(ColumnCount) then
FocusCol := FocusCol + 1;
FEditing := False;
SetFocus;
end;
procedure TfpgCustomEditGrid.IniTextCell;
var
Pt: TPoint;
begin
if Assigned(FCellEditText) then
FCellEditText.Free;
FCellEditText := TfpgEdit.Create(Self.Parent);
Pt.X := Left + FFocusRect.Left;
Pt.Y := Top + FFocusRect.Top;
with FCellEditText do
begin
Name := 'FCellEditText';
SetPosition(Pt.X, Pt.Y, FFocusRect.Width, FFocusRect.Height);
BorderStyle := ebsSingle;
FontDesc := '#Grid';
Text := Cells[FocusCol, FocusRow];
OnKeyPress := @FCellEditTextKeyPress;
SetFocus;
end;
end;
procedure TfpgCustomEditGrid.FCellEditTextKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
begin
if FCellEditText.Visible then
case KeyCode of
KeyReturn, KeyPEnter:
begin
Cells[FocusCol, FocusRow] := FCellEditText.Text;
FCellEditText.Text := '';
FCellEditText.Visible := False;
SetReturnWay;
end;
KeyTab:
begin
FCellEditText.Text := '';
FCellEditText.Visible := False;
SetTabWay(ShiftState);
end;
KeyEscape:
begin
FCellEditText.Text := '';
FCellEditText.Visible := False;
FEditing := False;
SetFocus;
end;
end;
end;
function TfpgCustomEditGrid.GetNumericMaxLimit(AIndex: integer): boolean;
begin
Result := TfpgNumericColumn(TfpgEditColumn(Columns[AIndex]).Data).MaxLimit;
end;
procedure TfpgCustomEditGrid.SetNumericMaxLimit(AIndex: integer; const AValue: boolean);
begin
TfpgNumericColumn(TfpgEditColumn(Columns[AIndex]).Data).MaxLimit := AValue;
end;
function TfpgCustomEditGrid.GetNumericMinLimit(AIndex: integer): boolean;
begin
Result := TfpgNumericColumn(TfpgEditColumn(Columns[AIndex]).Data).MinLimit;
end;
procedure TfpgCustomEditGrid.SetNumericMinLimit(AIndex: integer; const AValue: boolean);
begin
TfpgNumericColumn(TfpgEditColumn(Columns[AIndex]).Data).MinLimit := AValue;
end;
function TfpgCustomEditGrid.GetNumericDecimals(AIndex: integer): integer;
begin
Result := TfpgNumericColumn(TfpgEditColumn(Columns[AIndex]).Data).Decimals;
end;
procedure TfpgCustomEditGrid.SetNumericDecimals(AIndex: integer; const AValue: integer);
begin
TfpgNumericColumn(TfpgEditColumn(Columns[AIndex]).Data).Decimals := AValue;
end;
function TfpgCustomEditGrid.GetNumericDecimalSeparator(AIndex: integer): TfpgChar;
begin
Result := TfpgNumericColumn(TfpgEditColumn(Columns[AIndex]).Data).DecimalSeparator;
end;
procedure TfpgCustomEditGrid.SetNumericDecimalSeparator(AIndex: integer; const AValue: TfpgChar);
begin
TfpgNumericColumn(TfpgEditColumn(Columns[AIndex]).Data).DecimalSeparator := AValue
end;
function TfpgCustomEditGrid.GetNumericThousandSeparator(AIndex: integer): TfpgChar;
begin
Result := TfpgNumericColumn(TfpgEditColumn(Columns[AIndex]).Data).ThousandSeparator;
end;
procedure TfpgCustomEditGrid.SetNumericThousandSeparator(AIndex: integer; const AValue: TfpgChar);
begin
TfpgNumericColumn(TfpgEditColumn(Columns[AIndex]).Data).ThousandSeparator := AValue;
end;
function TfpgCustomEditGrid.GetNumericShowThousand(AIndex: integer): boolean;
begin
Result := TfpgNumericColumn(TfpgEditColumn(Columns[AIndex]).Data).ShowThousand;
end;
procedure TfpgCustomEditGrid.SetNumericShowThousand(AIndex: integer; const AValue: boolean);
begin
TfpgNumericColumn(TfpgEditColumn(Columns[AIndex]).Data).ShowThousand := AValue;
end;
function TfpgCustomEditGrid.GetNumericNegativeColor(AIndex: integer): TfpgColor;
begin
Result := TfpgNumericColumn(TfpgEditColumn(Columns[AIndex]).Data).NegativeColor;
end;
procedure TfpgCustomEditGrid.SetNumericNegativeColor(AIndex: integer; const AValue: TfpgColor);
begin
TfpgNumericColumn(TfpgEditColumn(Columns[AIndex]).Data).NegativeColor := AValue;
end;
procedure TfpgCustomEditGrid.IniIntegerCell;
var
Pt: TPoint;
begin
if Assigned(FCellEditInteger) then
FCellEditInteger.Free;
FCellEditInteger := TfpgEditInteger.Create(Self.Parent);
Pt.X := Left + FFocusRect.Left;
Pt.Y := Top + FFocusRect.Top;
with FCellEditInteger do
begin
Name := 'FCellEditInteger';
SetPosition(Pt.X, Pt.Y, FFocusRect.Width, FFocusRect.Height);
BorderStyle := ebsSingle;
FontDesc := '#Grid';
Text := Cells[FocusCol, FocusRow];
if TfpgColumnData(TfpgEditColumn(Columns[FocusCol]).Data).MaxSet then
MaxValue := MaxIntValue[Focuscol];
if TfpgColumnData(TfpgEditColumn(Columns[FocusCol]).Data).MinSet then
MinValue := MinIntValue[FocusCol];
CustomThousandSeparator := TfpgNumericColumn(TfpgEditColumn(Columns[FocusCol]).Data).ThousandSeparator;
ShowThousand := TfpgNumericColumn(TfpgEditColumn(Columns[FocusCol]).Data).ShowThousand;
NegativeColor := TfpgNumericColumn(TfpgEditColumn(Columns[FocusCol]).Data).NegativeColor;
OnKeyPress := @FCellEditIntegerKeyPress;
SetFocus;
end;
end;
procedure TfpgCustomEditGrid.FCellEditIntegerKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
begin
if FCellEditInteger.Visible then
case KeyCode of
KeyReturn, KeyPEnter:
begin
Cells[FocusCol, FocusRow] := FCellEditInteger.Text;
FCellEditInteger.Text:= '';
FCellEditInteger.Visible := False;
SetReturnWay;
end;
KeyTab:
begin
FCellEditInteger.Text := '';
FCellEditInteger.Visible := False;
SetTabWay(ShiftState);
end;
KeyEscape:
begin
FCellEditInteger.Text := '';
FCellEditInteger.Visible := False;
FEditing := False;
SetFocus;
end;
end;
end;
function TfpgCustomEditGrid.GetMaxIntValue(AIndex: integer): integer;
begin
Result := TfpgIntegerColumn(TfpgEditColumn(Columns[AIndex]).Data).MaxVal;
end;
procedure TfpgCustomEditGrid.SetMaxIntValue(AIndex: integer; const AValue: integer);
begin
with TfpgIntegerColumn(TfpgEditColumn(Columns[AIndex]).Data) do
begin
if AValue > MinVal then
MaxVal := AValue
else
MaxVal := MinVal;
MaxSet:= True;
end;
end;
function TfpgCustomEditGrid.GetMinIntValue(AIndex: integer): integer;
begin
Result := TfpgIntegerColumn(TfpgEditColumn(Columns[AIndex]).Data).MinVal;
end;
procedure TfpgCustomEditGrid.SetMinIntValue(AIndex: integer; const AValue: integer);
begin
with TfpgIntegerColumn(TfpgEditColumn(Columns[AIndex]).Data) do
begin
if AValue < MaxVal then
MinVal := AValue
else
MinVal := Maxval;
MinSet := True;
end;
end;
procedure TfpgCustomEditGrid.IniFloatCell;
var
Pt: TPoint;
begin
if Assigned(FCellEditFloat) then
FCellEditFloat.Free;
FCellEditFloat := TfpgEditFloat.Create(Self.Parent);
Pt.X := Left + FFocusRect.Left;
Pt.Y := Top + FFocusRect.Top;
with FCellEditFloat do
begin
Name := 'FCellEditFloat';
SetPosition(Pt.X, Pt.Y, FFocusRect.Width, FFocusRect.Height);
BorderStyle := ebsSingle;
FontDesc := '#Grid';
Text := Cells[FocusCol, FocusRow];
if TfpgColumnData(TfpgEditColumn(Columns[FocusCol]).Data).MaxSet then
MaxValue := MaxFloatValue[Focuscol];
if TfpgColumnData(TfpgEditColumn(Columns[FocusCol]).Data).MinSet then
MinValue := MinFloatValue[FocusCol];
Decimals := TfpgNumericColumn(TfpgEditColumn(Columns[FocusCol]).Data).Decimals;
FixedDecimals := TfpgFloatColumn(TfpgEditColumn(Columns[FocusCol]).Data).FixedDecimals;
CustomDecimalSeparator := TfpgNumericColumn(TfpgEditColumn(Columns[FocusCol]).Data).DecimalSeparator;
CustomThousandSeparator := TfpgNumericColumn(TfpgEditColumn(Columns[FocusCol]).Data).ThousandSeparator;
ShowThousand := TfpgNumericColumn(TfpgEditColumn(Columns[FocusCol]).Data).ShowThousand;
OnKeyPress := @FCellEditFloatKeyPress;
SetFocus;
end;
end;
procedure TfpgCustomEditGrid.FCellEditFloatKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
begin
if FCellEditFloat.Visible then
case KeyCode of
KeyReturn, KeyPEnter:
begin
with FCellEditFloat do
begin
if FixedDecimals > -1 then
begin
if UTF8Pos(CustomDecimalSeparator, Text) > 0 then
begin
if (UTF8Length(Text) - UTF8Pos(CustomDecimalSeparator, Text)) > FixedDecimals then
Text := Copy(Text, 1, UTF8Pos(CustomDecimalSeparator, Text) + FixedDecimals);
end
else
begin
if UTF8Pos(CustomDecimalSeparator, Text) = 0 then
Text := Text + CustomDecimalSeparator;
while (UTF8Length(Text) - (UTF8Pos(CustomDecimalSeparator, Text)) < FixedDecimals) do
Text := Text +'0';
end;
end;
if Decimals > -1 then
if UTF8Pos(CustomDecimalSeparator, Text) > 0 then
if (UTF8Length(Text) - UTF8Pos(CustomDecimalSeparator, Text)) > Decimals then
Text := Copy(Text, 1, UTF8Pos(CustomDecimalSeparator, Text) + Decimals);
end;
Cells[FocusCol, FocusRow] := FCellEditFloat.Text;
FCellEditFloat.Text:= '';
FCellEditFloat.Visible := False;
SetReturnWay;
end;
KeyTab:
begin
FCellEditFloat.Text := '';
FCellEditFloat.Visible := False;
SetTabWay(ShiftState);
end;
KeyEscape:
begin
FCellEditFloat.Text := '';
FCellEditFloat.Visible := False;
FEditing := False;
SetFocus;
end;
end;
end;
function TfpgCustomEditGrid.GetMaxFloatValue(AIndex: integer): extended;
begin
Result := TfpgFloatColumn(TfpgEditColumn(Columns[AIndex]).Data).MaxVal;
end;
procedure TfpgCustomEditGrid.SetMaxFloatValue(AIndex: integer; const AValue: extended);
begin
with TfpgFloatColumn(TfpgEditColumn(Columns[AIndex]).Data) do
begin
if AValue > MinVal then
MaxVal := AValue
else
MaxVal := MinVal;
MaxSet:= True;
end;
end;
function TfpgCustomEditGrid.GetMinFloatValue(AIndex: integer): extended;
begin
Result := TfpgFloatColumn(TfpgEditColumn(Columns[AIndex]).Data).MinVal;
end;
procedure TfpgCustomEditGrid.SetMinFloatValue(AIndex: integer; const AValue: extended);
begin
with TfpgFloatColumn(TfpgEditColumn(Columns[AIndex]).Data) do
begin
if AValue < MaxVal then
MinVal := AValue
else
MinVal := Maxval;
MinSet := True;
end;
end;
function TfpgCustomEditGrid.GetFloatFixedDecimals(AIndex: integer): integer;
begin
Result := TfpgFloatColumn(TfpgEditColumn(Columns[AIndex]).Data).FFixedDecimals;
end;
procedure TfpgCustomEditGrid.SetFloatFixedDecimals(AIndex: integer; const AValue: integer);
begin
TfpgFloatColumn(TfpgEditColumn(Columns[AIndex]).Data).FFixedDecimals := AValue;
end;
procedure TfpgCustomEditGrid.IniCurrencyCell;
var
Pt: TPoint;
begin
if Assigned(FCellEditCurrency) then
FCellEditCurrency.Free;
FCellEditCurrency := TfpgEditCurrency.Create(Self.Parent);
Pt.X := Left + FFocusRect.Left;
Pt.Y := Top + FFocusRect.Top;
with FCellEditCurrency do
begin
Name := 'FCellEditCurrency';
SetPosition(Pt.X, Pt.Y, FFocusRect.Width, FFocusRect.Height);
BorderStyle := ebsSingle;
FontDesc := '#Grid';
Text := Cells[FocusCol, FocusRow];
if TfpgColumnData(TfpgEditColumn(Columns[FocusCol]).Data).MaxSet then
MaxValue := MaxCurrValue[Focuscol];
if TfpgColumnData(TfpgEditColumn(Columns[FocusCol]).Data).MinSet then
MinValue := MinCurrValue[FocusCol];
CustomDecimalSeparator := TfpgNumericColumn(TfpgEditColumn(Columns[FocusCol]).Data).DecimalSeparator;
CustomThousandSeparator := TfpgNumericColumn(TfpgEditColumn(Columns[FocusCol]).Data).ThousandSeparator;
ShowThousand := TfpgNumericColumn(TfpgEditColumn(Columns[FocusCol]).Data).ShowThousand;
OnKeyPress := @FCellEditCurrencyKeyPress;
SetFocus;
end;
end;
procedure TfpgCustomEditGrid.FCellEditCurrencyKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
begin
if FCellEditCurrency.Visible then
case KeyCode of
KeyReturn, KeyPEnter:
begin
Cells[FocusCol, FocusRow] := FCellEditCurrency.Text;
FCellEditCurrency.Text:= '';
FCellEditCurrency.Visible := False;
SetReturnWay;
end;
KeyTab:
begin
FCellEditCurrency.Text := '';
FCellEditCurrency.Visible := False;
SetTabWay(ShiftState);
end;
KeyEscape:
begin
FCellEditCurrency.Text := '';
FCellEditCurrency.Visible := False;
FEditing := False;
SetFocus;
end;
end;
end;
function TfpgCustomEditGrid.GetMaxCurrValue(AIndex: integer): currency;
begin
Result := TfpgCurrencyColumn(TfpgEditColumn(Columns[AIndex]).Data).MaxVal;
end;
procedure TfpgCustomEditGrid.SetMaxCurrValue(AIndex: integer; const AValue: currency);
begin
with TfpgCurrencyColumn(TfpgEditColumn(Columns[AIndex]).Data) do
begin
if AValue > MinVal then
MaxVal := AValue
else
MaxVal := MinVal;
MaxSet:= True;
end;
end;
function TfpgCustomEditGrid.GetMinCurrValue(AIndex: integer): currency;
begin
Result := TfpgCurrencyColumn(TfpgEditColumn(Columns[AIndex]).Data).MinVal;
end;
procedure TfpgCustomEditGrid.SetMinCurrValue(AIndex: integer; const AValue: currency);
begin
with TfpgCurrencyColumn(TfpgEditColumn(Columns[AIndex]).Data) do
begin
if AValue < MaxVal then
MinVal := AValue
else
MinVal := Maxval;
MinSet := True;
end;
end;
procedure TfpgCustomEditGrid.IniComboBoxCell;
var
Pt: TPoint;
i: integer;
begin
if Assigned(FCellComboBox) then
FCellComboBox.Free;
FCellComboBox := TfpgComboBox.Create(Self.Parent);
Pt.X := Left + FFocusRect.Left;
Pt.Y := Top + FFocusRect.Top;
with FCellComboBox do
begin
Name := 'FCellComboBox';
SetPosition(Pt.X, Pt.Y, FFocusRect.Width, FFocusRect.Height);
BorderStyle := ebsSingle;
FontDesc := '#Grid';
Items.Assign(TfpgComboBoxColumn(TfpgEditColumn(Columns[FocusCol]).Data).FItems);
for i := 0 to Pred(Items.Count) do
if Items[i] = Cells[FocusCol, FocusRow] then
Text := Items[i];
DropDownCount := TfpgComboBoxColumn(TfpgEditColumn(Columns[FocusCol]).Data).DropDownCount;
OnKeyPress := @FCellComboBoxKeyPress;
SetFocus;
end;
end;
procedure TfpgCustomEditGrid.FCellComboBoxKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
begin
if FCellComboBox.Visible then
case KeyCode of
KeyReturn, KeyPEnter:
begin
Cells[FocusCol, FocusRow] := FCellComboBox.Text;
FCellComboBox.Text:= '';
FCellComboBox.Visible := False;
SetReturnWay;
end;
KeyTab:
begin
FCellComboBox.Text := '';
FCellComboBox.Visible := False;
SetTabWay(ShiftState);
end;
KeyEscape:
begin
FCellComboBox.Text := '';
FCellComboBox.Visible := False;
FEditing := False;
SetFocus;
end;
end;
end;
function TfpgCustomEditGrid.GetComboBoxDropDownCount(AIndex: integer): integer;
begin
Result := TfpgComboBoxColumn(TfpgEditColumn(Columns[AIndex]).Data).DropDownCount;
end;
procedure TfpgCustomEditGrid.SetComboBoxDropDownCount(AIndex: integer; AValue: integer);
begin
TfpgComboBoxColumn(TfpgEditColumn(Columns[AIndex]).Data).DropDownCount := AValue;
end;
procedure TfpgCustomEditGrid.IniEditComboCell;
var
Pt: TPoint;
i: integer;
begin
if Assigned(FCellEditCombo) then
FCellEditCombo.Free;
FCellEditCombo := TfpgEditCombo.Create(Self.Parent);
Pt.X := Left + FFocusRect.Left;
Pt.Y := Top + FFocusRect.Top;
with FCellEditCombo do
begin
Name := 'FCellEditCombo';
SetPosition(Pt.X, Pt.Y, FFocusRect.Width, FFocusRect.Height);
BorderStyle := ebsSingle;
FontDesc := '#Grid';
Items.Assign(TfpgEditComboColumn(TfpgEditColumn(Columns[FocusCol]).Data).FItems);
for i := 0 to Pred(Items.Count) do
if Items[i] = Cells[FocusCol, FocusRow] then
Text := Items[i];
AutoCompletion := TfpgEditComboColumn(TfpgEditColumn(Columns[FocusCol]).Data).AutoComplete;
AllowNew := TfpgEditComboColumn(TfpgEditColumn(Columns[FocusCol]).Data).AllowNew;
DropDownCount := TfpgEditComboColumn(TfpgEditColumn(Columns[FocusCol]).Data).DropDownCount;
OnKeyPress := @FCellEditComboKeyPress;
SetFocus;
end;
end;
procedure TfpgCustomEditGrid.FCellEditComboKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
begin
if FCellEditCombo.Visible then
case KeyCode of
KeyReturn, KeyPEnter:
begin
Cells[FocusCol, FocusRow] := FCellEditCombo.Text;
if (AllowNew[FocusCol] = anAsk) or (AllowNew[FocusCol] = anYes) then
TfpgEditComboColumn(TfpgEditColumn(Columns[FocusCol]).Data).FItems.Add(FCellEditCombo.Text);
FCellEditCombo.Text:= '';
FCellEditCombo.Visible := False;
SetReturnWay;
end;
KeyTab:
begin
FCellEditCombo.Text := '';
FCellEditCombo.Visible := False;
SetTabWay(ShiftState);
end;
KeyEscape:
begin
FCellEditCombo.Text := '';
FCellEditCombo.Visible := False;
FEditing := False;
SetFocus;
end;
end;
end;
function TfpgCustomEditGrid.GetAutoComplete(AIndex: integer): boolean;
begin
Result := TfpgEditComboColumn(TfpgEditColumn(Columns[AIndex]).Data).AutoComplete;
end;
procedure TfpgCustomEditGrid.SetAutoComplete(AIndex: integer; const AValue: boolean);
begin
TfpgEditComboColumn(TfpgEditColumn(Columns[AIndex]).Data).AutoComplete := AValue;
end;
function TfpgCustomEditGrid.GetAllowNew(AIndex: integer): TAllowNew;
begin
Result := TfpgEditComboColumn(TfpgEditColumn(Columns[AIndex]).Data).AllowNew;
end;
procedure TfpgCustomEditGrid.SetAllowNew(AIndex: integer; AValue: TAllowNew);
begin
TfpgEditComboColumn(TfpgEditColumn(Columns[AIndex]).Data).AllowNew := AValue;
end;
function TfpgCustomEditGrid.GetEditComboDropDownCount(AIndex: integer): integer;
begin
Result := TfpgEditComboColumn(TfpgEditColumn(Columns[AIndex]).Data).DropDownCount;
end;
procedure TfpgCustomEditGrid.SetEditComboDropDownCount(AIndex: integer; AValue: integer);
begin
TfpgEditComboColumn(TfpgEditColumn(Columns[AIndex]).Data).DropDownCount := AValue;
end;
procedure TfpgCustomEditGrid.IniCheckBoxCell;
var
Pt: TPoint;
begin
if Assigned(FCellCheckBox) then
FCellCheckBox.Free;
FCellCheckBox := TfpgCheckBox.Create(Self.Parent);
Pt.X := Left + FFocusRect.Left;
Pt.Y := Top + FFocusRect.Top;
with FCellCheckBox do
begin
Name := 'FCellCheckBox';
SetPosition(Pt.X, Pt.Y, FFocusRect.Width, FFocusRect.Height);
BorderStyle := ebsSingle;
FontDesc := '#Grid';
if Cells[FocusCol, FocusRow] = TfpgCheckBoxColumn(TfpgEditColumn(Columns[FocusCol]).Data).CheckedText then
FCellCheckBox.Checked:= True
else
FCellCheckBox.Checked:= False;
Text := TfpgCheckBoxColumn(TfpgEditColumn(Columns[FocusCol]).Data).BoxText;
OnKeyPress := @FCellCheckBoxKeyPress;
SetFocus;
end;
end;
procedure TfpgCustomEditGrid.FCellCheckBoxKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
begin
if FCellCheckBox.Visible then
case KeyCode of
KeyReturn, KeyPEnter:
begin
if FCellCheckBox.Checked then
Cells[FocusCol, FocusRow] := TfpgCheckBoxColumn(TfpgEditColumn(Columns[FocusCol]).Data).CheckedText
else
Cells[FocusCol, FocusRow] := TfpgCheckBoxColumn(TfpgEditColumn(Columns[FocusCol]).Data).UncheckedText;
FCellCheckBox.Text:= '';
FCellCheckBox.Visible := False;
SetReturnWay;
end;
KeyTab:
begin
FCellCheckBox.Text := '';
FCellCheckBox.Visible := False;
SetTabWay(ShiftState);
end;
KeyEscape:
begin
FCellCheckBox.Text := '';
FCellCheckBox.Visible := False;
FEditing := False;
SetFocus;
end;
end;
end;
function TfpgCustomEditGrid.GetBoxCheckedText(AIndex: integer): string;
begin
Result := TfpgCheckBoxColumn(TfpgEditColumn(Columns[AIndex]).Data).CheckedText;
end;
procedure TfpgCustomEditGrid.SetBoxCheckedText(AIndex: integer; const AValue: string);
begin
TfpgCheckBoxColumn(TfpgEditColumn(Columns[AIndex]).Data).CheckedText := AValue;
end;
function TfpgCustomEditGrid.GetBoxUncheckedText(AIndex: integer): string;
begin
Result := TfpgCheckBoxColumn(TfpgEditColumn(Columns[AIndex]).Data).UncheckedText;
end;
procedure TfpgCustomEditGrid.SetBoxUncheckedText(AIndex: integer; const AValue: string);
begin
TfpgCheckBoxColumn(TfpgEditColumn(Columns[AIndex]).Data).UncheckedText := AValue;
end;
function TfpgCustomEditGrid.GetBoxDisplayText(AIndex: integer): string;
begin
Result := TfpgCheckBoxColumn(TfpgEditColumn(Columns[AIndex]).Data).BoxText;
end;
procedure TfpgCustomEditGrid.SetBoxDisplayText(AIndex: integer; const AValue: string);
begin
TfpgCheckBoxColumn(TfpgEditColumn(Columns[AIndex]).Data).BoxText := AValue;
end;
procedure TfpgCustomEditGrid.IniCalendarCell;
var
Pt: TPoint;
begin
if Assigned(FCellCalendar) then
FCellCalendar.Free;
FCellCalendar := TfpgCalendarCombo.Create(Self.Parent);
Pt.X := Left + FFocusRect.Left;
Pt.Y := Top + FFocusRect.Top;
with FCellCalendar do
begin
Name := 'FCellCalendar';
SetPosition(Pt.X, Pt.Y, FFocusRect.Width, FFocusRect.Height);
BorderStyle := ebsSingle;
FontDesc := '#Grid';
DateFormat := TfpgCalendarColumn(TfpgEditColumn(Columns[FocusCol]).Data).CalendarDateFormat;
DateValue:= TDates(TfpgCalendarColumn(TfpgEditColumn(Columns[FocusCol]).Data).FDatesList[FocusRow]).FDate;
WeeklyHoliday := TfpgCalendarColumn(TfpgEditColumn(Columns[FocusCol]).Data).WeeklyHoliday;
WeekStartDay := TfpgCalendarColumn(TfpgEditColumn(Columns[FocusCol]).Data).WeekStartDay;
DayColor := TfpgCalendarColumn(TfpgEditColumn(Columns[FocusCol]).Data).DayColor;
HolidayColor := TfpgCalendarColumn(TfpgEditColumn(Columns[FocusCol]).Data).HolidayColor;
SingleClickSelect := TfpgCalendarColumn(TfpgEditColumn(Columns[FocusCol]).Data).SingleClickSelect;
OnKeyPress := @FCellCalendarKeyPress;
SetFocus;
end;
end;
procedure TfpgCustomEditGrid.FCellCalendarKeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState;
var Consumed: boolean);
begin
if FCellCalendar.Visible then
case KeyCode of
KeyReturn, KeyPEnter:
begin
with TfpgCalendarColumn(TfpgEditColumn(Columns[FocusCol]).Data) do
begin
TDates(FDatesList[FocusRow]).FDate := FCellCalendar.DateValue;
Cells[FocusCol, FocusRow] := FormatDateTime(GridDateFormat, TDates(FDatesList[FocusRow]).FDate);
end;
//FCellCalendar.Text := '';
FCellCalendar.Visible := False;
SetReturnWay;
end;
KeyTab:
begin
//FCellCalendar.Text := '';
FCellCalendar.Visible := False;
SetTabWay(ShiftState);
end;
KeyEscape:
begin
//FCellCalendar.Text := '';
FCellCalendar.Visible := False;
FEditing := False;
SetFocus;
end;
end;
end;
function TfpgCustomEditGrid.GetDates(AIndex: integer): TDateTime;
begin
Result := TDates(TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).DatesList[Succ(FocusRow)]).FDate;
end;
procedure TfpgCustomEditGrid.SetDates(AIndex: integer; const AValue: TDateTime);
begin
FDates := TDates.Create;
FDates.FDate:= AValue;
TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).DatesList.Add(FDates);
end;
function TfpgCustomEditGrid.GetDatesList(AIndex: integer): TList;
begin
Result := TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).DatesList;
end;
procedure TfpgCustomEditGrid.SetDatesList(AIndex: integer; const AValue: TList);
begin
TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).DatesList := AValue;
end;
function TfpgCustomEditGrid.GetGridDateFormat(AIndex: integer): string;
begin
Result := TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).GridDateFormat;
end;
procedure TfpgCustomEditGrid.SetGridDateFormat(AIndex: integer; const AValue: string);
begin
TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).GridDateFormat:= AValue;
end;
function TfpgCustomEditGrid.GetCalendarDateFormat(AIndex: integer): string;
begin
Result := TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).CalendarDateFormat;
end;
procedure TfpgCustomEditGrid.SetCalendarDateFormat(AIndex: integer; const AValue: string);
begin
TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).CalendarDateFormat:= AValue;
end;
function TfpgCustomEditGrid.GetDateValue(AIndex: integer): TDateTime;
begin
Result := TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).DateValue;
end;
procedure TfpgCustomEditGrid.SetDateValue(AIndex: integer; const AValue: TDateTime);
begin
TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).DateValue:= AValue;
end;
function TfpgCustomEditGrid.GetMaxDate(AIndex: integer): TDateTime;
begin
Result := TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).MaxDate;
end;
procedure TfpgCustomEditGrid.SetMaxdate(AIndex: integer; const AValue: TDateTime);
begin
TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).MaxDate:= AValue;
end;
function TfpgCustomEditGrid.GetMinDate(AIndex: integer): TDateTime;
begin
Result := TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).MinDate;
end;
procedure TfpgCustomEditGrid.SetMinDate(AIndex: integer; const AValue: TDateTime);
begin
TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).MinDate:= AValue;
end;
function TfpgCustomEditGrid.GetWeeklyHoliday(AIndex: integer): integer;
begin
Result := TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).WeeklyHoliday;
end;
procedure TfpgCustomEditGrid.SetWeeklyHoliday(AIndex: integer; const AValue: integer);
begin
TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).WeeklyHoliday:= AValue;
end;
function TfpgCustomEditGrid.GetWeekStartDay(AIndex: integer): integer;
begin
Result := TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).WeekStartDay;
end;
procedure TfpgCustomEditGrid.SetWeekStartDay(AIndex: integer; const AValue: integer);
begin
TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).WeekStartDay:= AValue;
end;
function TfpgCustomEditGrid.GetDayColor(AIndex: integer): TfpgColor;
begin
Result := TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).DayColor;
end;
procedure TfpgCustomEditGrid.SetDayColor(AIndex: integer; const AValue: TfpgColor);
begin
TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).DayColor:= AValue;
end;
function TfpgCustomEditGrid.GetHolidayColor(AIndex: integer): TfpgColor;
begin
Result := TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).HolidayColor;
end;
procedure TfpgCustomEditGrid.SetHolidayColor(AIndex: integer; const AValue: TfpgColor);
begin
TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).HolidayColor:= AValue;
end;
function TfpgCustomEditGrid.GetSingleClickSelect(AIndex: integer): boolean;
begin
Result := TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).SingleClickSelect;
end;
procedure TfpgCustomEditGrid.SetSingleClickSelect(AIndex: integer; const AValue: boolean);
begin
TfpgCalendarColumn(TfpgEditColumn(Columns[AIndex]).Data).SingleClickSelect:= AValue;
end;
function TfpgCustomEditGrid.GetColumns(AIndex: Integer): TfpgEditColumn;
begin
if (AIndex < 0) or (AIndex > ColumnCount-1) then
Result := nil
else
Result := TfpgEditColumn(FColumns.Items[AIndex]);
end;
procedure TfpgCustomEditGrid.DrawCell(ARow, ACol: Integer; ARect: TfpgRect; AFlags: TfpgGridDrawState);
begin
inherited DrawCell(ARow, ACol, ARect, AFlags);
if (gdSelected in AFlags) then
FFocusRect:= ARect;
end;
procedure TfpgCustomEditGrid.HandleKeyPress(var keycode: word; var shiftstate: TShiftState; var consumed: boolean);
var
i: integer;
begin
inherited HandleKeyPress(keycode, shiftstate, consumed);
if not Enabled then
consumed := False
else
begin
consumed := True;
case keycode of
keyInsert:
for i := 0 to Pred(ColumnCount) do
if Columns[i].EditType = etCalendar then
begin
FDates:= TDates.Create;
FDates.FDate:= TfpgCalendarColumn(TfpgEditColumn(Columns[i]).Data).DateValue;
TfpgCalendarColumn(TfpgEditColumn(Columns[i]).Data).FDatesList.Add(FDates);
end;
keyDelete:
if RowCount > 0 then
begin
// specific warning and action should be performed in descendant
end;
keyReturn, keyPEnter, KeyF2:
if RowCount > 0 then
begin
case Columns[FocusCol].EditType of
etText:
IniTextCell;
etInteger:
IniIntegerCell;
etFloat:
IniFloatCell;
etCurrency:
IniCurrencyCell;
etComboBox:
IniComboBoxCell;
etEditCombo:
IniEditComboCell;
etCheckBox:
IniCheckBoxCell;
etCalendar:
IniCalendarCell;
end;
FEditing := True;
end;
keyTab:
begin
if ssShift in ShiftState then
begin
if FocusCol > 0 then
FocusCol := FocusCol - 1;
end
else
if FocusCol < Pred(ColumnCount) then
FocusCol := FocusCol + 1;
SetFocus;
end;
else
Consumed := False;
end;
end;
end;
constructor TfpgCustomEditGrid.Create(AOwner: TComponent);
begin
inherited create(AOwner);
OnDoubleClick := @EditGridDoubleClick;
OnFocusChange := @EditGridFocusChange;
OnMouseDown := @EditGridMouseDown;
OnDrawCell := @EditGridDrawCell;
FEditing := False;
FEditWay := edNone;
end;
destructor TfpgCustomEditGrid.Destroy;
begin
inherited Destroy;
end;
function TfpgCustomEditGrid.AddColumn(ATitle: string; AWidth: integer; AEditType: TEditType = etNone;
AAlignment: TAlignment = taLeftJustify; AbackgroundColor: TfpgColor = clDefault; ATextColor: TfpgColor = clDefault): TfpgEditColumn;
begin
Updating;
Result := TfpgEditColumn(inherited AddColumn(ATitle, AWidth, AAlignment, ABackgroundColor, ATextColor));
with Result do
begin
FEditType := AEditType;
case FEditType of
etInteger:
Result.FData:= TfpgIntegerColumn.Create;
etFloat:
Result.FData:= TfpgFloatColumn.Create;
etCurrency:
Result.FData:= TfpgCurrencyColumn.Create;
etComboBox:
Result.FData:= TfpgComboBoxColumn.Create;
etEditCombo:
Result.FData:= TfpgEditComboColumn.Create;
etCheckBox:
Result.FData:= TfpgCheckBoxColumn.Create;
etCalendar:
Result.FData := TfpgCalendarColumn.Create;
else
Result.FData:= nil;
end;
end;
if UpdateCount = 0 then
Updated;
end;
procedure TfpgCustomEditGrid.AddComboItem(AIndex: integer; const AValue: string);
begin
TfpgComboBoxColumn(TfpgEditColumn(Columns[AIndex]).Data).FItems.Add(AValue);
end;
procedure TfpgCustomEditGrid.AddEditComboItem(AIndex: integer; const AValue: string);
begin
TfpgEditComboColumn(TfpgEditColumn(Columns[AIndex]).Data).FItems.Add(AValue);
end;
end.
|