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 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920
|
{ $Id: dbctrls.pp 62614 2020-02-07 22:02:11Z maxim $}
{
/***************************************************************************
DbCtrls.pp
----------
An interface to DB aware Controls
Initial Revision : Sun Sep 14 2003
***************************************************************************/
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
{
@abstract(common db aware controls, as in Delphi)
@author(Andrew Johnson <acjgenius@@earthlink.net>)
@created(Sun Sep 14 2003)
@lastmod($Date: 2020-02-07 23:02:11 +0100 (Fr, 07 Feb 2020) $)
}
unit DBCtrls;
{$mode objfpc}
{$H+}
interface
uses
Types, Classes, SysUtils, DB, Variants,
// LazUtils
LazTracer, LazUtilities,
// LCL
LCLStrConsts, LMessages, LCLType, LCLIntf, LResources, GraphType, Controls, Graphics,
Dialogs, StdCtrls, Buttons, MaskEdit, ExtCtrls, Calendar, ImgList;
Type
{ TFieldDataLink }
TFieldDataLink = class(TDataLink)
private
FField: TField;
FFieldName: string;
FControl: TComponent;
// Callbacks
FOnDataChange: TNotifyEvent;
FOnEditingChange: TNotifyEvent;
FOnUpdateData: TNotifyEvent;
FOnActiveChange: TNotifyEvent;
// Curent State of Affairs
FEditing: Boolean;
FEditingSourceSet: boolean;
FEditingSource: Boolean;
IsModified: Boolean;
function FieldCanModify: boolean;
function IsKeyField(aField: TField): Boolean;
function GetCanModify: Boolean;
// set current field
procedure SetFieldName(const Value: string);
procedure UpdateField;
// make sure the field/fieldname is valid before we do stuff with it
procedure ValidateField;
procedure ResetEditingSource;
protected
// Testing Events
procedure ActiveChanged; override;
procedure EditingChanged; override;
procedure LayoutChanged; override;
procedure RecordChanged(aField: TField); override;
procedure UpdateData; override;
procedure FocusControl(aField: TFieldRef); Override;
public
constructor Create;
// for control intitiating db changes etc
function Edit: Boolean;
procedure Modified;
procedure Reset;
// Attached control
property Control: TComponent read FControl write FControl;
// Basic DB interfaces
property Field: TField read FField;
property FieldName: string read FFieldName write SetFieldName;
// Current State of DB
property CanModify: Boolean read GetCanModify;
property Editing: Boolean read FEditing;
property EditingSource: boolean read FEditingSource;
// Our Callbacks
property OnDataChange: TNotifyEvent read FOnDataChange write FOnDataChange;
property OnEditingChange: TNotifyEvent read FOnEditingChange write FOnEditingChange;
property OnUpdateData: TNotifyEvent read FOnUpdateData write FOnUpdateData;
property OnActiveChange: TNotifyEvent read FOnActiveChange write FOnActiveChange;
end;
{ TDBLookup }
{
TDBLookup component is typically owned by a Lookup control like
TDBLookupListBox or TDBLookupComboBox.
The ListSource is the other dataset TDataSource from which to retrieve the lookup data
The KeyField is the lookup key in the ListSource which corresponds to the DataField value
The ListField is the name of the field in the ListSource to list into the
Items property of the lookup control.
which data
}
TDBLookup = class(TComponent)
private
FControlLink: TFieldDataLink;
FControlItems: TStrings;
FListLink: TDataLink;
FListSource: TDataSource;
FLookupSource: TDataSource;
FDataFieldNames: string;
FKeyFieldNames: string;
FListFieldName: string;
FListFieldIndex: Integer;
FDataFields: TList; // Data Fields to lookup/edit
FKeyFields: TList; // Keyfields in lookup dataset
FListField: TField; // Result field in lookup dataset
FListKeys: array of Variant;
FNullValueKey: TShortcut;
FHasLookUpField: Boolean;
FLookUpFieldIsCached: Boolean;
FLookupCache: Boolean;
FInitializing: Boolean;
{$IF FPC_FULLVERSION < 30000}
FFetchingLookupData: Boolean;
{$ENDIF}
procedure ActiveChange(Sender: TObject);
procedure DatasetChange(Sender: TObject);
procedure DoInitialize;
procedure FetchLookupData;
function GetKeyFieldName: string;
function GetListSource: TDataSource;
procedure SetKeyFieldName(const Value: string);
procedure SetListFieldName(const Value: string);
procedure SetListSource(Value: TDataSource);
procedure SetLookupCache(const Value: boolean);
function HandleNullKey(var Key: Word; Shift: TShiftState): Boolean;
protected
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure Initialize(AControlDataLink: TFieldDataLink; AControlItems: TStrings);
function KeyFieldValue: Variant;
procedure UpdateData(ValueIndex: Integer; ScrollDataset: Boolean);
function GetKeyValue(ValueIndex: Integer): Variant;
function GetKeyIndex: Integer;
function GetKeyIndex(const AKeyValue: Variant): Integer;
property ControlItems: TStrings read FControlItems write FControlItems;
property LookupCache: boolean read FLookupCache write SetLookupCache;
// properties to be published by owner control
// these are not used where data control Field is dbLookup
property KeyField: string read GetKeyFieldName write SetKeyFieldName;
property ListField: string read FListFieldName write SetListFieldName;
property ListFieldIndex: Integer read FListFieldIndex write FListFieldIndex default 0;
property ListSource: TDataSource read GetListSource write SetListSource;
property NullValueKey: TShortcut read FNullValueKey write FNullValueKey;
end;
{ TDBEdit }
TDBEdit = class(TCustomMaskEdit)
private
FDataLink: TFieldDataLink;
FCustomEditMask: Boolean;
FFocusedDisplay: boolean;
procedure DataChange(Sender: TObject);
procedure UpdateData(Sender: TObject);
function GetDataField: string;
function GetDataSource: TDataSource;
function GetField: TField;
procedure SetDataField(const Value: string);
procedure SetDataSource(Value: TDataSource);
procedure CMGetDataLink(var Message: TLMessage); message CM_GETDATALINK;
protected
function GetReadOnly: Boolean; override;
procedure SetReadOnly(Value: Boolean); override;
procedure KeyDown(var Key: Word; Shift: TShiftState); override;
procedure UTF8KeyPress(var UTF8Key: TUTF8Char); override;
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
function EditCanModify: Boolean; override;
function GetEditText: string; override;
procedure Change; override;
procedure Reset; override;
procedure WMSetFocus(var Message: TLMSetFocus); message LM_SETFOCUS;
procedure WMKillFocus(var Message: TLMKillFocus); message LM_KILLFOCUS;
procedure WndProc(var Message: TLMessage); override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function ExecuteAction(AAction: TBasicAction): Boolean; override;
function UpdateAction(AAction: TBasicAction): Boolean; override;
property Field: TField read GetField;
published
property CustomEditMask: Boolean read FCustomEditMask write FCustomEditMask default False;
property DataField: string read GetDataField write SetDataField;
property DataSource: TDataSource read GetDataSource write SetDataSource;
property ReadOnly: Boolean read GetReadOnly write SetReadOnly default False;
property Align;
property Alignment;
property Anchors;
property AutoSelect;
property AutoSize;
property BiDiMode;
property BorderSpacing;
property BorderStyle;
property CharCase;
property Color;
property Constraints;
property DoubleBuffered;
property DragCursor;
property DragKind;
property DragMode;
property Enabled;
property EditMask;
property Font;
property MaxLength;
property ParentBiDiMode;
property ParentColor;
property ParentDoubleBuffered;
property ParentFont;
property ParentShowHint;
property PasswordChar;
property PopupMenu;
property ShowHint;
property TabOrder;
property TabStop;
property Visible;
property OnChange;
property OnClick;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnEditingDone;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyDown;
property OnKeyPress;
property OnKeyUp;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnStartDrag;
property OnUTF8KeyPress;
end;
{ TDBText }
TDBText = class(TCustomLabel)
private
FDataLink: TFieldDataLink;
procedure DataChange(Sender: TObject);
function GetDataField: string;
function GetDataSource: TDataSource;
function GetField: TField;
procedure SetDataField(const Value: string);
procedure SetDataSource(Value: TDataSource);
procedure CMGetDataLink(var Message: TLMessage); message CM_GETDATALINK;
protected
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
class procedure WSRegisterClass; override;
procedure Loaded; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function ExecuteAction(AAction: TBasicAction): Boolean; override;
function UpdateAction(AAction: TBasicAction): Boolean; override;
property Field: TField read GetField;
published
property Align;
property Alignment;
property Anchors;
property AutoSize;
property BidiMode;
property BorderSpacing;
property Color;
property Constraints;
property DataField: string read GetDataField write SetDataField;
property DataSource: TDataSource read GetDataSource write SetDataSource;
property DragCursor;
property DragKind;
property DragMode;
property Enabled;
property FocusControl;
property Font;
property Layout;
property ParentBidiMode;
property ParentColor;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ShowAccelChar;
property ShowHint;
property Transparent;
property Visible;
property WordWrap;
property OnClick;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnChangeBounds;
property OnContextPopup;
property OnResize;
property OnStartDrag;
property OptimalFill;
end;
{ TCustomDBListBox }
TCustomDBListBox = class(TCustomListBox)
private
function GetDataField: string;
function GetDataSource: TDataSource;
function GetField: TField;
function GetReadOnly: Boolean;
procedure SetReadOnly(Value: Boolean);
procedure SetDataField(const Value: string);
procedure SetDataSource(Value: TDataSource);
procedure CMGetDataLink(var Message: TLMessage); message CM_GETDATALINK;
protected
FDataLink: TFieldDataLink;
procedure DataChange(Sender: TObject); virtual; abstract;
procedure KeyDown(var Key: Word; Shift: TShiftState); override;
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
procedure UpdateData(Sender: TObject); virtual; abstract;
// we need to override the Items Write method for db aware.
procedure SetItems(Values : TStrings); override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function ExecuteAction(AAction: TBasicAction): Boolean; override;
function UpdateAction(AAction: TBasicAction): Boolean; override;
property Field: TField read GetField;
property DataField: string read GetDataField write SetDataField;
property DataSource: TDataSource read GetDataSource write SetDataSource;
//same as dbedit need to match the datalink status
property ReadOnly: Boolean read GetReadOnly write SetReadOnly default False;
end;
{ TDBListBox }
TDBListBox = class(TCustomDBListBox)
protected
procedure DataChange(Sender: TObject); override;
procedure DoSelectionChange(User: Boolean); override;
procedure UpdateData(Sender: TObject); override;
public
procedure EditingDone; override;
published
property Align;
property Anchors;
property BiDiMode;
property BorderSpacing;
property BorderStyle;
property Color;
property Constraints;
property DataField;
property DataSource;
property DoubleBuffered;
property DragCursor;
property DragKind;
property DragMode;
property Enabled;
property ExtendedSelect;
property Font;
property ItemHeight;
property Items;
property MultiSelect;
property OnClick;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnDrawItem;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyPress;
property OnKeyDown;
property OnKeyUp;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnResize;
property OnStartDrag;
property OnUTF8KeyPress;
property Options;
property ParentBiDiMode;
property ParentDoubleBuffered;
property ParentShowHint;
property PopupMenu;
property ReadOnly;
property ShowHint;
property Sorted;
property Style;
property TabOrder;
property TabStop;
property TopIndex;
property Visible;
end;
{ TDBLookupListBox }
TDBLookupListBox = class(TCustomDBListBox)
private
FLookup: TDBLookup;
FScrollListDataset: Boolean;
procedure ActiveChange(Sender: TObject);
function GetKeyField: string;
function GetKeyValue: Variant;
function GetListField: string;
function GetListFieldIndex: Integer;
function GetListSource: TDataSource;
function GetLookupCache: boolean;
function GetNullValueKey: TShortCut;
procedure SetKeyField(const Value: string);
procedure SetKeyValue(const AValue: Variant);
procedure SetListField(const Value: string);
procedure SetListFieldIndex(const Value: Integer);
procedure SetListSource(const Value: TDataSource);
procedure SetLookupCache(const Value: boolean);
procedure SetNullValueKey(const AValue: TShortCut);
procedure UpdateLookup;
protected
procedure DataChange(Sender: TObject); override;
procedure DoSelectionChange(User: Boolean); override;
procedure InitializeWnd; override;
procedure DestroyWnd; override;
procedure KeyDown(var Key: Word; Shift: TShiftState); override;
procedure Loaded; override;
procedure UpdateData(Sender: TObject); override;
function IsUnbound: boolean;
public
constructor Create(AOwner: TComponent); override;
property KeyValue: Variant read GetKeyValue write SetKeyValue;
published
property Align;
property Anchors;
property BiDiMode;
property BorderSpacing;
property BorderStyle;
property Color;
property Constraints;
property DataField;
property DataSource;
property DoubleBuffered;
property DragCursor;
property DragKind;
property DragMode;
// property ExtendedSelect;
// property ItemHeight;
property Enabled;
property Font;
property KeyField: string read GetKeyField write SetKeyField;
property ListField: string read GetListField write SetListField;
property ListFieldIndex: Integer read GetListFieldIndex write SetListFieldIndex;
property ListSource: TDataSource read GetListSource write SetListSource;
property LookupCache: boolean read GetLookupCache write SetLookupCache;
property NullValueKey: TShortCut read GetNullValueKey write SetNullValueKey default 0;
// property MultiSelect;
property OnClick;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
// property OnDrawItem;
property OnEditingDone;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyPress;
property OnKeyDown;
property OnKeyUp;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnResize;
property OnStartDrag;
property OnUTF8KeyPress;
property Options;
property ParentBiDiMode;
property ParentDoubleBuffered;
property ParentShowHint;
property PopupMenu;
property ReadOnly;
property ScrollListDataset: Boolean read FScrollListDataset write FScrollListDataset default False;
property ShowHint;
property Sorted;
// property Style;
property TabOrder;
property TabStop;
property TopIndex;
property Visible;
end;
{ TDBRadioGroup }
TDBRadioGroup = class(TCustomRadioGroup)
private
FDataLink: TFieldDataLink;
FOnChange: TNotifyEvent;
FValue: string;
FValues: TStrings;
FInSetValue: boolean;
function GetDataField: string;
function GetDataSource: TDataSource;
function GetField: TField;
function GetReadOnly: Boolean;
procedure SetDataField(const AValue: string);
procedure SetDataSource(const AValue: TDataSource);
procedure SetItems(const AValue: TStrings);
procedure SetReadOnly(const AValue: Boolean);
procedure SetValue(const AValue: string);
procedure SetValues(const AValue: TStrings);
procedure CMGetDataLink(var Message: TLMessage); message CM_GETDATALINK;
protected
procedure Change; virtual;
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
procedure DataChange(Sender: TObject);
procedure UpdateData(Sender: TObject);
property DataLink: TFieldDataLink read FDataLink;
function GetButtonValue(Index: Integer): string;
procedure UpdateRadioButtonStates; override;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
procedure EditingDone; override;
function ExecuteAction(AAction: TBasicAction): Boolean; override;
function UpdateAction(AAction: TBasicAction): Boolean; override;
property Field: TField read GetField;
property ItemIndex;
property Value: string read FValue write SetValue;
published
property Align;
property Anchors;
property AutoFill;
property AutoSize;
property BiDiMode;
property BorderSpacing;
property Caption;
property ChildSizing;
property Color;
property ColumnLayout;
property Columns;
property Constraints;
property DataField: string read GetDataField write SetDataField;
property DataSource: TDataSource read GetDataSource write SetDataSource;
property DoubleBuffered;
property DragCursor;
property DragMode;
property Enabled;
property Font;
property Items write SetItems;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
property OnChangeBounds;
property OnClick;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnResize;
property OnStartDrag;
property ParentBiDiMode;
property ParentColor;
property ParentDoubleBuffered;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ReadOnly: Boolean read GetReadOnly write SetReadOnly default False;
property ShowHint;
property TabOrder;
property TabStop;
property Values: TStrings read FValues write SetValues;
property Visible;
end;
{ TDBCheckBox }
TDBCheckBox = class(TCustomCheckBox)
private
FDataLink: TFieldDataLink;
FValueChecked: string;
FValueUnchecked: string;
function GetDataField: string;
function GetDataSource: TDataSource;
function GetField: TField;
function GetReadOnly: Boolean;
procedure SetDataField(const AValue: string);
procedure SetDataSource(const AValue: TDataSource);
procedure SetReadOnly(const AValue: Boolean);
procedure SetValueChecked(const AValue: string);
procedure SetValueUnchecked(const AValue: string);
procedure CMGetDataLink(var Message: TLMessage); message CM_GETDATALINK;
protected
function GetFieldCheckState: TCheckBoxState; virtual;
procedure DataChange(Sender: TObject);
procedure DoOnChange; override;
procedure UpdateData(Sender: TObject);
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
function ExecuteAction(AAction: TBasicAction): Boolean; override;
function UpdateAction(AAction: TBasicAction): Boolean; override;
property Checked;
property Field: TField read GetField;
property State;
published
property Action;
property Align;
property Alignment;
property AllowGrayed;
property Anchors;
property AutoSize;
property BiDiMode;
property BorderSpacing;
property Caption;
property Color;
property DataField: string read GetDataField write SetDataField;
property DataSource: TDataSource read GetDataSource write SetDataSource;
property DoubleBuffered;
property DragCursor;
property DragKind;
property DragMode;
property Enabled;
property Font;
property Hint;
property OnChange;
property OnClick;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnStartDrag;
property ParentBiDiMode;
property ParentColor;
property ParentDoubleBuffered;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ReadOnly: Boolean read GetReadOnly write SetReadOnly default False;
property ShowHint;
property TabOrder;
property TabStop;
property ValueChecked: string read FValueChecked write SetValueChecked;
property ValueUnchecked: string read FValueUnchecked write SetValueUnchecked;
property Visible;
end;
{ TCustomDBComboBox }
TCustomDBComboBox = class(TCustomComboBox)
private
FDataLink: TFieldDataLink;
FDetectedEvents: Word;
function GetDataField: string;
function GetDataSource: TDataSource;
function GetField: TField;
function GetReadOnly: Boolean;
procedure SetDataField(const AValue: string);
procedure SetDataSource(const AValue: TDataSource);
procedure SetReadOnly(const AValue: Boolean);
procedure CMGetDataLink(var Message: TLMessage); message CM_GETDATALINK;
protected
function DoEdit: boolean; virtual;
procedure DoOnCloseUp; virtual;
procedure DoOnSelect; virtual;
procedure LMDeferredEdit(var Message: TLMessage); message LM_DEFERREDEDIT;
property DetectedEvents: Word read FDetectedEvents;
protected
procedure CloseUp; override;
Procedure Select; override;
procedure DataChange(Sender: TObject); virtual; abstract;
function DoMouseWheel(Shift: TShiftState; WheelDelta: Integer; MousePos: TPoint): Boolean; override;
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
procedure Change; override;
procedure KeyDown(var Key: Word; Shift: TShiftState); override;
procedure UpdateData(Sender: TObject); virtual; abstract;
procedure UpdateRecord;
procedure WndProc(var Message: TLMessage); override;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
function ExecuteAction(AAction: TBasicAction): Boolean; override;
function UpdateAction(AAction: TBasicAction): Boolean; override;
procedure EditingDone; override;
property Field: TField read GetField;
property Text;
property ItemIndex;
property DataField: string read GetDataField write SetDataField;
property DataSource: TDataSource read GetDataSource write SetDataSource;
property ReadOnly: Boolean read GetReadOnly write SetReadOnly default False;
end;
{ TDBComboBox }
TDBComboBox = class(TCustomDBComboBox)
protected
procedure DataChange(Sender: TObject); override;
procedure KeyPress(var Key: char); override;
procedure UpdateData(Sender: TObject); override;
published
property Align;
property Anchors;
property ArrowKeysTraverseList;
property AutoComplete;
property AutoCompleteText;
property AutoDropDown;
property AutoSelect;
property AutoSize;
property BiDiMode;
property BorderSpacing;
property BorderStyle;
property CharCase;
property Color;
property DataField;
property DataSource;
property DoubleBuffered;
property DragCursor;
property DragKind;
property DragMode;
property DropDownCount;
property Enabled;
property Font;
property ItemHeight;
property Items;
property ItemWidth;
property MaxLength default -1;
property OnChange;
property OnChangeBounds;
property OnClick;
property OnCloseUp;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnDrawItem;
property OnDropDown;
property OnEditingDone;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyDown;
property OnKeyPress;
property OnKeyUp;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnSelect;
property OnStartDrag;
property OnUTF8KeyPress;
property ParentBiDiMode;
property ParentColor;
property ParentDoubleBuffered;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ReadOnly;
property ShowHint;
property Sorted;
property Style;
property TabOrder;
property TabStop;
property Visible;
end;
{ TDBLookupComboBox }
TDBLookupComboBox = class(TCustomDBComboBox)
protected
function DoEdit: boolean; override;
function IsUnbound: boolean;
private
FLookup: TDBLookup;
FScrollListDataset: Boolean;
procedure ActiveChange(Sender: TObject);
function GetKeyField: string;
function GetKeyValue: variant;
function GetListField: string;
function GetListFieldIndex: Integer;
function GetListSource: TDataSource;
function GetLookupCache: boolean;
function GetNullValueKey: TShortCut;
procedure SetKeyField(const Value: string);
procedure SetKeyValue(const AValue: variant);
procedure SetListField(const Value: string);
procedure SetListFieldIndex(const Value: Integer);
procedure SetListSource(const Value: TDataSource);
procedure SetLookupCache(const Value: boolean);
procedure SetNullValueKey(const AValue: TShortCut);
procedure UpdateLookup;
procedure UpdateItemIndex;
protected
procedure InitializeWnd; override;
procedure DestroyWnd; override;
procedure KeyDown(var Key: Word; Shift: TShiftState); override;
procedure UTF8KeyPress(var UTF8Key: TUTF8Char); override;
procedure Loaded; override;
procedure UpdateData(Sender: TObject); override;
procedure DataChange(Sender: TObject); override;
procedure DoOnSelect; override;
public
constructor Create(AOwner: TComponent); override;
property KeyValue: variant read GetKeyValue write SetKeyValue;
published
property Align;
property Anchors;
property ArrowKeysTraverseList;
property AutoComplete;
//property AutoCompleteText;
property AutoDropDown;
property AutoSelect;
property AutoSize;
property BiDiMode;
property BorderSpacing;
property BorderStyle;
property CharCase;
property Color;
property Constraints;
property DataField;
property DataSource;
property DoubleBuffered;
property DragCursor;
property DragKind;
property DragMode;
property DropDownCount;
property Enabled;
property Font;
// property ItemHeight;
// property ItemWidth;
property KeyField: string read GetKeyField write SetKeyField;
property ListField: string read GetListField write SetListField;
property ListFieldIndex: Integer read GetListFieldIndex write SetListFieldIndex;
property ListSource: TDataSource read GetListSource write SetListSource;
property LookupCache: boolean read GetLookupCache write SetLookupCache;
// property MaxLength default -1;
property NullValueKey: TShortCut read GetNullValueKey write SetNullValueKey default 0;
property OnChange;
property OnChangeBounds;
property OnClick;
property OnCloseUp;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnDrawItem;
property OnDropDown;
property OnEditingDone;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyDown;
property OnKeyPress;
property OnKeyUp;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnSelect;
property OnStartDrag;
property OnUTF8KeyPress;
property ParentBiDiMode;
property ParentColor;
property ParentDoubleBuffered;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ReadOnly;
property ScrollListDataset: Boolean read FScrollListDataset write FScrollListDataset default False;
property ShowHint;
property Sorted;
property Style;
property TabOrder;
property TabStop;
property Visible;
end;
{ TDBMemo }
TDBMemo = class(TCustomMemo)
private
FDataLink: TFieldDataLink;
FAutoDisplay: Boolean;
FDBMemoFocused: Boolean;
FDBMemoLoaded: Boolean;
function GetDataField: string;
function GetDataSource: TDataSource;
function GetField: TField;
procedure SetAutoDisplay(const AValue: Boolean);
procedure SetDataField(const AValue: string);
procedure SetDataSource(const AValue: TDataSource);
procedure CMGetDataLink(var Message: TLMessage); message CM_GETDATALINK;
protected
function GetReadOnly: Boolean; override;
procedure SetReadOnly(AValue: Boolean); override;
procedure DataChange(Sender: TObject);
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
procedure UpdateData(Sender: TObject);
procedure Change; override;
procedure KeyDown(var Key: Word; Shift: TShiftState); override;
procedure KeyPress(var Key:Char); override;
procedure WndProc(var Message : TLMessage); override;
class procedure WSRegisterClass; override;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
procedure EditingDone; override;
procedure LoadMemo; virtual;
function ExecuteAction(AAction: TBasicAction): Boolean; override;
function UpdateAction(AAction: TBasicAction): Boolean; override;
property Field: TField read GetField;
published
property Align;
property Alignment;
property Anchors;
property AutoDisplay: Boolean read FAutoDisplay write SetAutoDisplay default True;
property BiDiMode;
property BorderSpacing;
property BorderStyle;
property CharCase;
property Color;
property Constraints;
property DataField: string read GetDataField write SetDataField;
property DataSource: TDataSource read GetDataSource write SetDataSource;
property DoubleBuffered;
property DragCursor;
property DragKind;
property DragMode;
property Enabled;
property Font;
property MaxLength;
property OnChange;
property OnClick;
property OnContextPopup;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnEditingDone;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyDown;
property OnKeyPress;
property OnKeyUp;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnStartDrag;
property OnUTF8KeyPress;
property ParentBiDiMode;
property ParentDoubleBuffered;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ReadOnly: Boolean read GetReadOnly write SetReadOnly default False;
property ScrollBars;
property ShowHint;
property TabOrder;
property Tabstop;
property Visible;
property WantReturns;
property WantTabs;
property WordWrap;
end;
{ TDBGroupBox }
TDBGroupBox = class(TCustomGroupBox)
private
FDataLink: TFieldDataLink;
function GetDataField: string;
function GetDataSource: TDataSource;
function GetField: TField;
procedure SetDataField(const AValue: string);
procedure SetDataSource(const AValue: TDataSource);
procedure CMGetDataLink(var Message: TLMessage); message CM_GETDATALINK;
protected
procedure DataChange(Sender: TObject);
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
function ExecuteAction(AAction: TBasicAction): Boolean; override;
function UpdateAction(AAction: TBasicAction): Boolean; override;
property Field: TField read GetField;
published
property Align;
property Anchors;
property BiDiMode;
property BorderSpacing;
property Caption;
property ClientHeight;
property ClientWidth;
property Color;
property Constraints;
property Cursor;
property DataField: string read GetDataField write SetDataField;
property DataSource: TDataSource read GetDataSource write SetDataSource;
property DoubleBuffered;
property DragCursor;
property DragKind;
property DragMode;
property Enabled;
property Font;
property OnClick;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyDown;
property OnKeyPress;
property OnKeyUp;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnResize;
property OnStartDrag;
property OnUTF8KeyPress;
property ParentBiDiMode;
property ParentColor;
property ParentDoubleBuffered;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ShowHint;
property TabOrder;
property TabStop;
property Visible;
end;
{ TDBImage }
TOnDBImageRead = procedure(Sender: TObject; S: TStream; var GraphExt : string) of object;
TOnDBImageWrite = procedure(Sender: TObject; S: TStream; GraphExt : string) of object;
TDBImage = class(TCustomImage)
private
FDataLink: TFieldDataLink;
FAutoDisplay: Boolean;
FOnDBImageRead: TOnDBImageRead;
FOnDBImageWrite: TOnDBImageWrite;
FQuickDraw: Boolean;
FPictureLoaded: boolean;
FUpdatingRecord: boolean;
FWriteHeader: Boolean;
function GetDataField: string;
function GetDataSource: TDataSource;
function GetField: TField;
function GetReadOnly: Boolean;
procedure SetAutoDisplay(const AValue: Boolean);
procedure SetDataField(const AValue: string);
procedure SetDataSource(const AValue: TDataSource);
procedure SetReadOnly(const AValue: Boolean);
procedure CMGetDataLink(var Message: TLMessage); message CM_GETDATALINK;
protected
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
procedure DataChange(Sender: TObject);
procedure UpdateData(Sender: TObject); virtual;
procedure PictureChanged(Sender: TObject); override;
class procedure WSRegisterClass; override;
procedure DoCopyToClipboard;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
function ExecuteAction(AAction: TBasicAction): Boolean; override;
function UpdateAction(AAction: TBasicAction): Boolean; override;
property Field: TField read GetField;
procedure Change; virtual;
procedure LoadPicture; virtual;
procedure CopyToClipboard;
procedure CutToClipboard;
procedure PasteFromClipboard;
property PictureLoaded : boolean read FPictureLoaded;
published
property Align;
property Anchors;
property AntialiasingMode;
property AutoDisplay: Boolean read FAutoDisplay write SetAutoDisplay default True;
property AutoSize;
property BorderSpacing;
property Center;
property Constraints;
property DataField: string read GetDataField write SetDataField;
property DataSource: TDataSource read GetDataSource write SetDataSource;
property DragCursor;
property DragKind;
property DragMode;
property KeepOriginXWhenClipped;
property KeepOriginYWhenClipped;
property OnClick;
property OnDblClick;
property OnDBImageRead: TOnDBImageRead read FOnDBImageRead write FOnDBImageRead;
property OnDBImageWrite: TOnDBImageWrite read FOnDBImageWrite write FOnDBImageWrite;
property PopupMenu;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnStartDrag;
property ParentShowHint;
property Proportional;
property QuickDraw: Boolean read FQuickDraw write FQuickDraw default True;
property ReadOnly: Boolean read GetReadOnly write SetReadOnly default False;
property ShowHint;
property Stretch;
property StretchInEnabled;
property StretchOutEnabled;
property Transparent;
property Visible;
property WriteHeader: Boolean read FWriteHeader write FWriteHeader default True;
end;
{ TDBCalendar }
TDBCalendar = class(TCalendar)
private
FDataLink: TFieldDataLink;
procedure DataChange(Sender: TObject);
procedure UpdateData(Sender: TObject);
function GetDataField: string;
function GetDataSource: TDataSource;
function GetField: TField;
function GetReadOnly: Boolean;
procedure SetReadOnly(Value: Boolean);
procedure SetDate(const AValue: String);
procedure SetDataField(const Value: string);
procedure SetDataSource(Value: TDataSource);
procedure UpdateDate(const AValue: string);
procedure CMGetDataLink(var Message: TLMessage); message CM_GETDATALINK;
protected
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
procedure EditingDone; override;
function ExecuteAction(AAction: TBasicAction): Boolean; override;
function UpdateAction(AAction: TBasicAction): Boolean; override;
property Field: TField read GetField;
published
property BorderSpacing;
property DataField: string read GetDataField write SetDataField;
property DataSource: TDataSource read GetDataSource write SetDataSource;
Property Date write SetDate stored False;
property ReadOnly: Boolean read GetReadOnly write SetReadOnly default False;
property DisplaySettings stored False;
property DoubleBuffered;
property DragCursor;
property DragMode;
property ParentDoubleBuffered;
property Visible;
property OnClick;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnMouseMove;
property OnMouseDown;
property OnDayChanged;
property OnMonthChanged;
property OnStartDrag;
property OnYearChanged;
end;
{ TDBCustomNavigator }
type
TDBNavButton = class;
TDBNavFocusableButton = class;
TDBNavDataLink = class;
TDBNavGlyph = (ngEnabled, ngDisabled);
TDBNavButtonType = (nbFirst, nbPrior, nbNext, nbLast,
nbInsert, nbDelete, nbEdit, nbPost, nbCancel, nbRefresh);
TDBNavButtonSet = set of TDBNavButtonType;
TDBNavButtonStyle = set of (nsAllowTimer, nsFocusRect);
TDBNavButtonDirection = (nbdHorizontal,nbdVertical);
TDBNavigatorOption = (navFocusableButtons);
TDBNavigatorOptions = set of TDBNavigatorOption;
// for Delphi compatibility
TNavigateBtn = TDBNavButtonType;
TDBNavClickEvent = procedure(Sender: TObject;
Button: TDBNavButtonType) of object;
const
DefaultDBNavigatorButtons = [nbFirst, nbPrior, nbNext, nbLast,
nbInsert, nbDelete, nbEdit, nbPost, nbCancel, nbRefresh];
DBNavButtonResourceName: array[TDBNavButtonType] of string = (
{ nbFirst } 'DBNavFirst',
{ nbPrior } 'DBNavPrior',
{ nbNext } 'DBNavNext',
{ nbLast } 'DBNavLast',
{ nbInsert } 'DBNavInsert',
{ nbDelete } 'DBNavDelete',
{ nbEdit } 'DBNavEdit',
{ nbPost } 'DBNavPost',
{ nbCancel } 'DBNavCancel',
{ nbRefresh } 'DBNavRefresh'
);
type
{ TDBCustomNavigator }
TDBCustomNavigator = class(TCustomPanel)
private
FBeforeAction: TDBNavClickEvent;
FDataLink: TDBNavDataLink;
FDirection: TDBNavButtonDirection;
FOnNavClick: TDBNavClickEvent;
FVisibleButtons: TDBNavButtonSet;
FDefaultHints: TStrings;
FHints: TStrings;
FUpdateButtonsLock: integer;
FOriginalHints: String;
FOptions: TDBNavigatorOptions;
FFlat: Boolean;
FConfirmDelete: Boolean;
FUpdateButtonsNeeded: boolean;
FShowButtonHints: boolean;
FImages: TCustomImageList;
FImageChangeLink: TChangeLink;
procedure DefaultHintsChanged(Sender: TObject);
function GetDataSource: TDataSource;
function GetHints: TStrings;
procedure SetDataSource(const AValue: TDataSource);
procedure SetDirection(const AValue: TDBNavButtonDirection);
procedure SetFlat(const AValue: Boolean);
procedure SetHints(const AValue: TStrings);
procedure SetImages(AValue: TCustomImageList);
procedure SetOptions(AValue: TDBNavigatorOptions);
procedure SetShowButtonHints(const AValue: boolean);
procedure SetVisibleButtons(const AValue: TDBNavButtonSet);
procedure CMGetDataLink(var Message: TLMessage); message CM_GETDATALINK;
procedure ImageListChange(Sender: TObject);
protected
Buttons: array[TDBNavButtonType] of TDBNavButton;
FocusableButtons: array[TDBNavButtonType] of TDBNavFocusableButton;
procedure DataChanged; virtual;
procedure EditingChanged; virtual;
procedure ActiveChanged; virtual;
procedure Loaded; override;
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
procedure UpdateButtons; virtual;
procedure UpdateHints; virtual;
procedure HintsChanged(Sender: TObject); virtual;
procedure ButtonClickHandler(Sender: TObject); virtual;
class function GetControlClassDefaultSize: TSize; override;
procedure BeginUpdateButtons; virtual;
procedure EndUpdateButtons; virtual;
procedure SetEnabled(Value: Boolean); override;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
procedure BtnClick(Index: TNavigateBtn); virtual;
function VisibleButtonCount: integer; virtual;
public
property BeforeAction: TDBNavClickEvent read FBeforeAction write FBeforeAction;
property ConfirmDelete: Boolean read FConfirmDelete write FConfirmDelete default True;
property DataSource: TDataSource read GetDataSource write SetDataSource;
property Direction: TDBNavButtonDirection read FDirection write SetDirection default nbdHorizontal;
property Flat: Boolean read FFlat write SetFlat default False;
property Hints: TStrings read GetHints write SetHints;
property Options: TDBNavigatorOptions read FOptions write SetOptions;
property OnClick: TDBNavClickEvent read FOnNavClick write FOnNavClick;
property VisibleButtons: TDBNavButtonSet read FVisibleButtons
write SetVisibleButtons default DefaultDBNavigatorButtons;
property ShowButtonHints: boolean read FShowButtonHints write SetShowButtonHints default true;
property Images: TCustomImageList read FImages write SetImages;
end;
{ TDBNavButton }
TDBNavButton = class(TSpeedButton)
private
FIndex: TDBNavButtonType;
FNavStyle: TDBNavButtonStyle;
protected
public
destructor Destroy; override;
property NavStyle: TDBNavButtonStyle read FNavStyle write FNavStyle;
property Index: TDBNavButtonType read FIndex write FIndex;
end;
{ TDBNavFocusableButton }
TDBNavFocusableButton = class(TBitBtn)
private
FIndex: TDBNavButtonType;
FNavStyle: TDBNavButtonStyle;
public
property NavStyle: TDBNavButtonStyle read FNavStyle write FNavStyle;
property Index: TDBNavButtonType read FIndex write FIndex;
end;
{ TNavDataLink }
TDBNavDataLink = class(TDataLink)
private
FNavigator: TDBCustomNavigator;
protected
procedure EditingChanged; override;
procedure DataSetChanged; override;
procedure ActiveChanged; override;
public
constructor Create(TheNavigator: TDBCustomNavigator);
end;
{ TDBNavigator }
TDBNavigator = class(TDBCustomNavigator)
published
property Align default alNone;
property Alignment;
property Anchors;
property AutoSize;
property BidiMode;
property BeforeAction;
property BevelInner;
property BevelOuter;
property BevelWidth;
property BorderSpacing;
property BorderStyle;
property BorderWidth;
property Caption;
property ChildSizing;
property ClientHeight;
property ClientWidth;
property Color default clBackground;
property ConfirmDelete;
property DataSource;
property Direction;
property DoubleBuffered;
property DragCursor;
property DragMode;
property Enabled;
property Flat;
property Font;
property Hints;
property OnClick;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnResize;
property OnStartDrag;
property Options;
property ParentBidiMode;
property ParentColor;
property ParentDoubleBuffered;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ShowHint;
property TabOrder;
property TabStop default False;
property Visible;
property VisibleButtons;
property Images;
end;
procedure ChangeDataSource(AControl: TControl; Link: TDataLink;
NewDataSource: TDataSource);
procedure Register;
implementation
{$R lcl_dbnav_images.res}
uses
InterfaceBase, Clipbrd;
var
FieldClasses: TFpList;
procedure RegField(const FieldClass: TFieldClass);
begin
if FieldClasses = nil then FieldClasses := TFpList.Create;
if (FieldClass <> Nil) And (FieldClasses.IndexOf(FieldClass) = -1) then
begin
FieldClasses.Add(FieldClass);
RegisterNoIcon([FieldClass]);
RegisterClass(FieldClass);
end;
end;
procedure RegFields(const AFieldClasses: array of TFieldClass);
var I: Integer;
begin
for I := Low(AFieldClasses) to High(AFieldClasses) do
RegField(AFieldClasses[I]);
end;
procedure ChangeDataSource(AControl: TControl; Link: TDataLink;
NewDataSource: TDataSource);
begin
if Link.DataSource=NewDataSource then exit;
if Link.DataSource<>nil then
Link.DataSource.RemoveFreeNotification(AControl);
Link.DataSource:=NewDataSource;
if Link.DataSource<>nil then
Link.DataSource.FreeNotification(AControl);
end;
function FieldIsEditable(Field: TField): boolean;
begin
result := (Field<>nil) and (not Field.Calculated) and
(Field.DataType<>ftAutoInc) and (Field.FieldKind<>fkLookup)
end;
function FieldCanAcceptKey(Field: TField; AKey: char): boolean;
begin
Result := FieldIsEditable(Field) and Field.IsValidChar(AKey);
end;
procedure Register;
begin
RegisterComponents('Data Controls',[TDBNavigator,TDBText,TDBEdit,TDBMemo,
TDBImage,TDBListBox,TDBLookupListBox,TDBComboBox,TDBLookupComboBox,
TDBCheckBox, TDBRadioGroup, TDBCalendar,TDBGroupBox]);
RegFields(DefaultFieldClasses);
RegField(TIntegerField);
end;
function TFieldDataLink.FieldCanModify: boolean;
var
FieldList: TList;
i: Integer;
begin
result := Assigned(FField);
if not result then
exit;
if FField.FieldKind=fkLookup then
begin
FieldList := TList.Create;
try
DataSet.GetFieldList(FieldList, FField.KeyFields);
result := (FieldList.Count>0);
i := 0;
while result and (i<FieldList.Count) do
begin
result := TField(FieldList[i]).CanModify;
inc(i);
end;
finally
FieldList.Free;
end;
end else
result := FField.CanModify;
end;
function TFieldDataLink.IsKeyField(aField: TField): Boolean;
var
KeyFieldName, KeyFields: String;
StrPos: Integer;
begin
KeyFields := FField.KeyFields;
StrPos := 1;
while StrPos <= Length(KeyFields) do
begin
KeyFieldName := ExtractFieldName(KeyFields, StrPos);
if SameText(aField.FieldName, KeyFieldName) then
begin
Result := True;
Exit;
end;
end;
Result := False;
end;
{TFieldDataLink Private Methods}
{
If the field exists and can be modified, then
we CanModify as long as this hasn't been set
ReadOnly somewhere else. Do we need any extra tests here?
}
function TFieldDataLink.GetCanModify: Boolean;
begin
if FieldCanModify then
Result := not ReadOnly
else
Result := False;
end;
{
Set the FieldName and then notify the changes though EditingChanged and Reset
Ensure FField is nil if something goes wrong or FieldName is empty
}
procedure TFieldDataLink.SetFieldName(const Value: string);
begin
if FFieldName <> Value then
begin
FFieldName := Value;
UpdateField;
if Active then
begin
EditingChanged;
Reset;
end;
end;
end;
procedure TFieldDataLink.UpdateField;
begin
if Active and (FFieldName <> '') then
FField := DataSet.FieldByName(FFieldName)
else
FField := nil;
end;
{
This function checks if FField is still associated with the dataset
If not update the field
}
procedure TFieldDataLink.ValidateField;
begin
if not (DataSet.FindField(FFieldName) = FField) then
UpdateField;
end;
procedure TFieldDataLink.ResetEditingSource;
begin
FEditingSource := false;
FEditingSourceSet := false;
end;
{TFieldDataLink Protected Methods}
{ Delphi Help ->
Changes to the Active property trigger the ActiveChanged method.
If an OnActiveChange event handler is assigned, ActiveChanged calls
this event handler. If ActiveChanged is triggered by a transition into
an active state, then before calling the event handler, ActiveChanged makes
sure that the Field for this TFieldDataLink is still valid.
<-- Delphi Help
Update the field instance. When not Active field will be set to nil
Call OnActiveChange
}
procedure TFieldDataLink.ActiveChanged;
begin
if FFieldName <> '' then
begin
UpdateField;
EditingChanged;
Reset;
end;
if Assigned(FOnActiveChange) then
FOnActiveChange(Self);
end;
{ Delphi Help ->
Changing the field binding can change the validity of the CanModify
property, since individual field components can disallow edits. If
TFieldDataLink is in an editing state when the Field property is changed,
EditingChanged checks the CanModify property. If CanModify is False, it
changes back out of the editing state.
Note: This differs significantly from the inherited EditingChanged method
of TDataLink. The functionality of the inherited method is replaced in
TFieldDataLink by the OnEditingChange event handler.
<-- Delphi Help
ok so another event... but this time we simply change modified state
if Editing and not CanModify? or do we also change to match if
if not Editing and CanModify? i.e If Editing <> CanModify?? Will assume
the latter just in case. easy to change back if I am wrong.
Also based on this we replace parent routine, so do we need to keep track
of Editing state ourself? I hope this is right. Anyone know for sure?
OK .. based on the Modified routine we need to turn off
our IsModified routine when succesfull right? so for now just turn
it off as per my example.
}
procedure TFieldDataLink.EditingChanged;
var
RealEditState : Boolean;
begin
RealEditState := (CanModify and Inherited Editing);
if (FEditing <> RealEditState) then
begin
FEditing := RealEditState;
if not FEditing then
begin
IsModified := False;
ResetEditingSource;
end;
if Assigned(FOnEditingChange) then
FOnEditingChange(Self);
end;
end;
{ Delphi Help ->
LayoutChanged is called after changes in the layout of one of the
containers of the Control for this TFieldDataLink that might change the
validity of its field binding. For example, if the Control is embedded
within a TCustomDBGrid, and one of the columns is deleted, the Field
property for the Control might become invalid.
<-- Delphi Help
Ensure FField is valid and notify
}
procedure TFieldDataLink.LayoutChanged;
begin
ValidateField;
if FField <> nil then
begin
EditingChanged;
RecordChanged(nil);
end;
end;
{ Delphi Help ->
Applications can not call this protected method. It is triggered
automatically when the contents of the current record change.
RecordChanged calls the OnDataChange event handler if there is one.
TDataLink.RecordChanged:
The Field parameter indicates which field of the current record has changed in value.
If Field is nil (Delphi) or NULL (C++), any number of fields within the current record may have changed.
<-- Delphi Help
Call Reset if AField = FField or aField = nil
}
procedure TFieldDataLink.RecordChanged(aField: TField);
begin
if (aField = nil) or (aField = FField) or
((FField <> nil) and (FField.FieldKind = fkLookup) and IsKeyField(aField)) then
Reset;
end;
{ Delphi Help ->
UpdateData overrides the default UpdateData method to call the
OnUpdateData event handler where the data-aware control can write any
pending edits to the record in the dataset.
<-- Delphi Help
where..can write pending events. So I guess when we have already
called Modified? Aka if not IsModified exit otherwise call event?
works for me.
}
procedure TFieldDataLink.UpdateData;
begin
if not IsModified then
exit;
try
if Assigned(FOnUpdateData) then
FOnUpdateData(Self);
finally
IsModified := False;
end;
end;
{ Delphi Help ->
Call FocusControl to give the Control associated with this TFieldDataLink
object the input focus. FocusControl checks whether the Control can receive
input focus, and if so, calls its SetFocus method to move focus to the
Control.
<-- Delphi Help
Check if the field matches and if Control is TWinControl than call SetFocus
Set the FieldRef to nil so no other control get focus
}
procedure TFieldDataLink.FocusControl(aField: TFieldRef);
var
WinControl: TWinControl;
begin
if Assigned(aField) and (aField^ = FField) and (FControl is TWinControl) then
begin
WinControl := TWinControl(FControl);
if WinControl.CanFocus then
begin
aField^ := nil;
WinControl.SetFocus;
end;
end;
end;
{TFieldDataLink Public Methods}
constructor TFieldDataLink.Create;
begin
inherited Create;
VisualControl := True;
//FField := nil;
//FFieldname := '';
end;
{ Delphi Help ->
Use Edit to try to ensure that the contents of the field can be modified.
A return value of True indicates that the field was already in an editing
state, or that the DataSource was successfully changed to allow editing.
A return value of False indicates that the DataSource could not be changed
to allow editing. For example, if the CanModify property is False, Edit
fails, and returns False.
<-- Delphi Help
ok so the way I see it, since the inherited function calls EditingChanged,
which we have already overriden to modify our own Editing state if its invalid,
I should just be calling the inherited routine here, but only if CanModify,
since there is no point otherwise. But since we _are_ keeping track of editing
state ourselves we return our own state, not the inherited. If anyone know
better please fix.
}
function TFieldDataLink.Edit: Boolean;
var
editingSrc: Boolean;
begin
editingSrc := (not FEditing) and (Dataset<>nil) and not(Dataset.State in dsEditModes);
if (not FEditing) and CanModify then
inherited Edit;
Result := FEditing;
if not FEditingSourceSet then
begin
// should be triggered one time only if editing succeeded
FEditingSource := FEditing and editingSrc;
FEditingSourceSet := true;
end;
end;
{ Delphi Help ->
Call Modified when the Control for this TFieldDataLink begins processing
edits.
<-- Delphi Help
ok so. well _that's_ helpfull. for the moment going to keep track
by adding an IsModified... based on the other functions thus far
we need to know whether we are in state, so I am assuming it goes
Call Modified ->
IsModified:=True;//Waiting for modifications
Call SomeFunction->
If IsModified then begin
(do something)
IsModified := False;//All modifications complete
end
else
(do something else? exit?);
}
procedure TFieldDataLink.Modified;
begin
IsModified := True;
end;
{ Delphi Help ->
The Control that owns a TFieldDataLink object calls its Reset method to
process a UI action that cancels edits to the field. Reset calls the
OnDataChange event handler without writing any pending changes to the
record in the dataset.
<-- Delphi Help
Just call to the OnDataChange Event, and turn off IsModified
}
procedure TFieldDataLink.Reset;
begin
if Assigned(FOnDataChange) then
FOnDataChange(Self);
IsModified := False;
ResetEditingSource;
end;
CONST
DBCBEVENT_CHANGE = 1; // CustomDBCombobox Detected change event
DBCBEVENT_SELECT = 2; // CustomDBCombobox Detected select event
DBCBEVENT_CLOSEUP = 4; // CustomDBCombobox Detected closeup event
DBCBEVENT_WHEEL = 8; // CustomDBCombobox Detected mousewheel event
{$Include dblookup.inc}
{$Include dbedit.inc}
{$Include dbtext.inc}
{$Include customdblistbox.inc}
{$Include dblistbox.inc}
{$Include dblookuplistbox.inc}
{$Include dbradiogroup.inc}
{$Include dbcheckbox.inc}
{$Include customdbcombobox.inc}
{$Include dbcombobox.inc}
{$Include dblookupcombobox.inc}
{$Include dbmemo.inc}
{$Include dbgroupbox.inc}
{$Include dbimage.inc}
{$Include dbcalendar.inc}
{$Include dbcustomnavigator.inc}
initialization
RegisterPropertyToSkip(TField,'Calculated','VCL compatibility property', '');
finalization
FieldClasses.Free;
end.
|