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
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
Documentation for LCL (Lazarus Component Library) and LazUtils (Lazarus
Utilities) are published under the Creative Commons Attribution-ShareAlike 4.0
International public license.
https://creativecommons.org/licenses/by-sa/4.0/legalcode.txt
https://gitlab.com/freepascal.org/lazarus/lazarus/-/blob/main/docs/cc-by-sa-4-0.txt
Copyright (c) 1997-2025, by the Lazarus Development Team.
-->
<fpdoc-descriptions>
<package name="lcl">
<!--
====================================================================
ColorBox
====================================================================
-->
<module name="ColorBox">
<short>
Defines classes for selecting a color from a combo-box or a list box.
</short>
<descr>
<p>
<file>colorbox.pas</file> contains <var>TColorBox</var> and
<var>TColorListBox</var>. TColorBox is a component that displays colors in a
combo-box control. TColorListBox is a component that displays colors in a
list box control. <file>colorbox.pas</file> is part of the Lazarus Component Library (<b>LCL</b>).
</p>
<p>
The following components are added to the Lazarus IDE component palette:
</p>
<p>
<b>Additional</b> Tab
</p>
<ul>
<li>TColorBox</li>
<li>TColorListBox</li>
</ul>
</descr>
<!-- unresolved references -->
<element name="LResources"/>
<element name="SysUtils"/>
<element name="Types"/>
<element name="Classes"/>
<element name="LCLProc"/>
<element name="LCLType"/>
<element name="LCLStrConsts"/>
<element name="Graphics"/>
<element name="Controls"/>
<element name="Forms"/>
<element name="Dialogs"/>
<element name="StdCtrls"/>
<element name="LazStringUtils"/>
<element name="cDefaultColorRectWidth">
<short>
Default width for the color sample (swatch) in a color combo-box or list box.
</short>
<descr/>
<seealso>
<link id="TCustomColorBox.ColorRectWidth"/>
<link id="TColorBox.ColorRectWidth"/>
<link id="TCustomColorListBox.ColorRectWidth"/>
<link id="TColorListBox.ColorRectWidth"/>
</seealso>
</element>
<element name="cDefaultColorRectOffset">
<short>
Default spacing between the color sample (swatch) and the color name in a
combo-box or list box.
</short>
<descr/>
<seealso>
<link id="TCustomColorBox.ColorRectOffset"/>
<link id="TColorBox.ColorRectOffset"/>
<link id="TCustomColorListBox.ColorRectOffset"/>
<link id="TColorListBox.ColorRectOffset"/>
</seealso>
</element>
<element name="TColorBoxStyles">
<short>
Represents the available colors and the name display style used in color
controls.
</short>
<descr>
<p>
<var>TColorBoxStyles</var> is an enumerated type with values that represent
the available colors and the display style used in color controls like
<var>TColorBox</var> and <var>TColorListBox</var>. Values from
TColorBoxStyles are stored in the <var>TColorBoxStyle</var> set type.
</p>
</descr>
<seealso>
<link id="TColorBoxStyle"/>
<link id="TCustomColorBox"/>
<link id="TColorBox"/>
<link id="TCustomColorListBox"/>
<link id="TColorListBox"/>
</seealso>
</element>
<element name="TColorBoxStyles.cbStandardColors">
<short>16 standard colors (as defined in graphics.pp).</short>
</element>
<element name="TColorBoxStyles.cbExtendedColors">
<short>
16 standard colors and 4 extended colors (as defined in graphics.pp).
</short>
</element>
<element name="TColorBoxStyles.cbSystemColors">
<short>System colors (as defined in graphics.pp).</short>
</element>
<element name="TColorBoxStyles.cbIncludeNone">
<short>Includes clNone in the list of colors.</short>
</element>
<element name="TColorBoxStyles.cbIncludeDefault">
<short>Includes clDefault in the list of colors.</short>
</element>
<element name="TColorBoxStyles.cbCustomColor">
<short>The first color is customizable.</short>
</element>
<element name="TColorBoxStyles.cbPrettyNames">
<short>
Uses "pretty" names in the color names instead of the color value; like Red
for clRed.
</short>
</element>
<element name="TColorBoxStyles.cbCustomColors">
<short>Uses the OnGetColors event handler to get the list of colors.</short>
</element>
<element name="TColorBoxStyle">
<short>
Set type used to store values from the TColorBoxStyles enumeration.
</short>
<descr>
<p>
<var>TColorBoxStyle</var> is a <var>Set</var> type used to store zero or more
values from the <var>TColorBoxStyles</var> enumeration. TColorBoxStyle is the
type used to implement the <var>TColorBox.Style</var> and
<var>TColorListBox.Style</var> properties.
</p>
</descr>
<seealso>
<link id="TColorBoxStyles"/>
<link id="TCustomColorBox.Style"/>
<link id="TCustomColorListBox.Style"/>
<link id="TColorBox.Style"/>
<link id="TColorListBox.Style"/>
</seealso>
</element>
<element name="TGetColorsEvent">
<short>
Specifies an event handler used to get the colors in a color control.
</short>
<descr>
<p>
<var>TGetColorsEvent</var> is an object procedure type which specifies an
event handler used to get the colors names and values used in a color control.
</p>
<p>
<var>Sender</var> is the control for the event notification and the location
where the color values are used.
</p>
<p>
TGetColorsEvent is the type used for the <var>TColorBox.OnGetColors</var> and
<var>TColorListBox.OnGetColors</var> event handlers.
</p>
</descr>
<seealso>
<link id="TCustomColorBox.OnGetColors"/>
<link id="TColorBox.OnGetColors"/>
<link id="TCustomColorListBox.OnGetColors"/>
<link id="TColorListBox.OnGetColors"/>
</seealso>
</element>
<element name="TGetColorsEvent.Sender">
<short>Object for the event notification.</short>
</element>
<element name="TGetColorsEvent.Items">
<short>
TStrings instance with the color names and values used in the control.
</short>
</element>
<element name="TCustomColorBox">
<short>The base class for TColorBox.</short>
<descr>
<p>
<var>TCustomColorBox</var> is a <var>TCustomComboBox</var> descendant which
implements the base class for <var>TColorBox</var>. TCustomColorBox displays
available colors in a combo-box control. Each item in the control has a small
rectangle where the color is displayed (swatch) and the color name.
</p>
<p>
The <var>Style</var> property is used to configure the list of available
colors and their display names. Style may also trigger use of the
<var>OnGetColors</var> event handler to get the items displayed in the
combo-box control.
</p>
<p>
The <var>ColorRectWidth</var> and <var>ColorRectOffset</var> properties can
be used to control the size and spacing for the color swatch displayed for
the list items.
</p>
<p>
<var>Colors</var> allows indexed access to the <var>TColor</var> values in
the list of items. When included in the Style property, colors like
<var>clDefault</var> and/or <var>clNone</var> may be included in the list of
Colors. The <var>DefaultColorColor</var> and <var>NoneColorColor</var>
properties can be used to specify the TColor values used for those color
constants.
</p>
<p>
ColorNames allows indexed access to the names for the values in Colors.
</p>
<p>
Do not create instances of TCustomColorBox; use the TColorBox descendant
instead.
</p>
<p>
Use <var>TCustomColorListBox</var> / <var>TColorListBox</var> to display
color names and values in a list box control.
</p>
</descr>
<seealso>
<link id="TColorBox"/>
<link id="TCustomColorListBox"/>
<link id="TColorListBox"/>
</seealso>
</element>
<element name="TCustomColorBox.FColorRectWidth"/>
<element name="TCustomColorBox.FColorRectOffset"/>
<element name="TCustomColorBox.FDefaultColorColor"/>
<element name="TCustomColorBox.FNoneColorColor"/>
<element name="TCustomColorBox.FColorDialog"/>
<element name="TCustomColorBox.FOnGetColors"/>
<element name="TCustomColorBox.FStyle"/>
<element name="TCustomColorBox.FSelected"/>
<element name="TCustomColorBox.GetColor">
<short>Gets the value for the indexed Colors property.</short>
</element>
<element name="TCustomColorBox.GetColor.Result">
<short>Value for the property.</short>
</element>
<element name="TCustomColorBox.GetColor.Index">
<short>Ordinal position in the list for the color value.</short>
</element>
<element name="TCustomColorBox.GetColorName">
<short>Gets the value for the indexed ColorNames property.</short>
</element>
<element name="TCustomColorBox.GetColorName.Result">
<short>Value for the property.</short>
</element>
<element name="TCustomColorBox.GetColorName.Index">
<short>Ordinal position in the list for the color name.</short>
</element>
<element name="TCustomColorBox.GetColorRectWidth"/>
<element name="TCustomColorBox.GetColorRectWidth.Result"/>
<element name="TCustomColorBox.GetSelected"/>
<element name="TCustomColorBox.GetSelected.Result"/>
<element name="TCustomColorBox.SetColorRectWidth"/>
<element name="TCustomColorBox.SetColorRectWidth.AValue"/>
<element name="TCustomColorBox.SetColorRectOffset"/>
<element name="TCustomColorBox.SetColorRectOffset.AValue"/>
<element name="TCustomColorBox.SetDefaultColorColor"/>
<element name="TCustomColorBox.SetDefaultColorColor.AValue"/>
<element name="TCustomColorBox.SetNoneColorColor"/>
<element name="TCustomColorBox.SetNoneColorColor.AValue"/>
<element name="TCustomColorBox.SetSelected"/>
<element name="TCustomColorBox.SetSelected.Value"/>
<element name="TCustomColorBox.SetStyle" link="#lcl.stdctrls.TCustomColorBox.SetStyle"/>
<element name="TCustomColorBox.SetStyle.AValue"/>
<element name="TCustomColorBox.ColorProc"/>
<element name="TCustomColorBox.ColorProc.s"/>
<element name="TCustomColorBox.UpdateCombo"/>
<!-- protected -->
<element name="TCustomColorBox.ColorRectWidthStored">
<short>
Implements the storage specifier for the ColorRectWidth property.
</short>
<descr/>
<seealso>
<link id="TCustomColorBox.ColorRectWidth"/>
</seealso>
</element>
<element name="TCustomColorBox.ColorRectWidthStored.Result">
<short>
<b>True</b> when the property has a value other than the default value.
</short>
</element>
<element name="TCustomColorBox.DrawItem">
<short>Draws an item in the combo-box control.</short>
<descr>
<p>
DrawItem is an overridden method used to custom draw an item in the ColorBox.
</p>
<p>
A color preview is drawn using the value in Colors. For clNone and clDefault,
the value in NoneColorColor and DefaultColorColor are used to draw the color
preview. The value in State is updated to include odBackgroundPainted in the
state flags.
</p>
<p>
The item rectangle is made smaller and passed to the inherited method to draw
the text for the item.
</p>
<p>
The Brush color and Pen color for the control Canvas are reset to their
original values after drawing the item.
</p>
</descr>
<seealso>
<link id="#lcl.stdctrls.TCustomComboBox.DrawItem">TCustomComboBox.DrawItem</link>
</seealso>
</element>
<element name="TCustomColorBox.DrawItem.Index">
<short>Ordinal position for the item drawn in the method.</short>
</element>
<element name="TCustomColorBox.DrawItem.Rect">
<short>Rectangle with the bounds for the item.</short>
</element>
<element name="TCustomColorBox.DrawItem.State">
<short>Owner draw state for the item.</short>
</element>
<element name="TCustomColorBox.SetColorList">
<short>Loads the list of colors used in the control.</short>
<descr>
<p>
<var>SetColorList</var> is used to fill the <var>Items</var> in the control
with the <var>Colors</var> and <var>ColorNames</var> available in the
combo-box.
</p>
<p>
SetColorList clears any existing values in Items, and loads the predefined
colors needed for the settings in the <var>Style</var> property. When Style
included the value <var>cbCustomColors</var> , the <var>OnGetColors</var>
event handler is signalled to load custom colors in the Items, Colors, and
ColorNames properties.
</p>
<p>
The value in <var>Selected</var> is restored prior to exiting from the method.
</p>
</descr>
</element>
<element name="TCustomColorBox.Loaded" link="#lcl.controls.TWinControl.Loaded">
<short>
Performs actions needed when LCL component streaming has been completed.
</short>
<descr/>
<seealso>
<link id="#lcl.controls.TWinControl.Loaded">TWinControl.Loaded</link>
</seealso>
</element>
<element name="TCustomColorBox.InitializeWnd">
<short>
Performs actions need to initial the window Handle for the control.
</short>
<descr>
<p>
Updates the combo-box control when its handled is (re-)allocated. Ensures
that ItemIndex is updated to reflect the value in Selected.
</p>
</descr>
<seealso>
<link id="#lcl.stdctrls.TCustomComboBox.InitializeWnd">TCustomComboBox.InitializeWnd</link>
</seealso>
</element>
<element name="TCustomColorBox.DoAutoAdjustLayout">
<short>
Performs actions needed to auto-adjust the control using the specified layout
policy.
</short>
<descr>
<p>
Called when an auto adjust policy is applied for the control.
DoAutoAdjustLayout ensures that the item height for the control is scaled
using the factor in AYProportion when AMode contains the
lapAutoAdjustWithoutHorizontalScrolling or lapAutoAdjustForDPI layout
adjustment policy values.
</p>
<p>
In TCustomColorBox, it ensures that ColorRectWidth is scaled when needed.
</p>
<p>
DoAutoAdjustLayout is called from the AutoAdjustLayout method.
</p>
</descr>
<seealso>
<link id="#lcl.controls.TControl.DoAutoAdjustLayout">TControl.DoAutoAdjustLayout</link>
</seealso>
</element>
<element name="TCustomColorBox.DoAutoAdjustLayout.AMode">
<short>
Layout adjustment policy applied in the method.
</short>
</element>
<element name="TCustomColorBox.DoAutoAdjustLayout.AXProportion">
<short>
Horizontal scaling factor for the layout policy.
</short>
</element>
<element name="TCustomColorBox.DoAutoAdjustLayout.AYProportion">
<short>
Vertical scaling factor for the layout policy.
</short>
</element>
<element name="TCustomColorBox.DoGetColors">
<short>Signals the OnGetColors event handler (when assigned).</short>
<descr>
<p>
Called when the <var>Colors</var> in the control are (re-)loaded after
setting a new value in <var>Style</var>. It is called if
<var>cbCustomColors</var> has been included in Style.
</p>
</descr>
<seealso>
<link id="TCustomColorBox.Style"/>
<link id="TCustomColorBox.Colors"/>
<link id="TColorBoxStyles"/>
</seealso>
</element>
<element name="TCustomColorBox.CloseUp">
<short>
Performs actions needed when the drop-down list for the control is closed.
</short>
<descr>
<p>
<var>CloseUp</var> is an overridden method in <var>TCustomColorBox</var>. It
extends the inherited method to select a custom color using TColorDialog when
enabled in the Style for the control and selected in the drop-down list.
</p>
<p>
PickCustomColor is called to select the custom color, or cancel the
operation. The TColor value selected in PickCustomColor is assigned to both
Colors and the Selected property if the dialog was not cancelled.
</p>
<p>
CloseUp calls the inherited method prior to exit to signal the OnEditingDone
and OnCloseUp event handlers.
</p>
<p>
CloseUp is called when a CN_Command message with a CBN_CLOSEUP notification
code is handed for the control.
</p>
</descr>
<seealso>
<link id="TCustomColorBox.PickCustomColor"/>
<link id="TCustomColorBox.Selected"/>
<link id="TCustomColorBox.Colors"/>
<link id="#lcl.dialogs.TColorDialog">TColorDialog</link>
<link id="#lcl.stdctrls.TCustomComboBox.CloseUp">TCustomComboBox.CloseUp</link>
<link id="#lcl.stdctrls.TCustomComboBox.OnCloseUp">TCustomComboBox.OnCloseUp</link>
<link id="#lcl.stdctrls.TCustomComboBox.DroppedDown">TCustomComboBox.DroppedDown</link>
<link id="#lcl.stdctrls.TComboBox.OnEditingDone">TComboBox.OnEditingDone</link>
</seealso>
</element>
<element name="TCustomColorBox.PickCustomColor">
<short>Selects a custom color using a color dialog.</short>
<descr>
<p>
<var>PickCustomColor</var> is a <var>Boolean</var> function used to select a
custom color rather than one of the standard colors in the Colors property.
</p>
<p>
PickCustomColor is used when cbCustomColor is included in the Style for the
control and ItemIndex is set to 0. This position was reserved for a custom
color when the list of colors was loaded for the Style settings in the
control.
</p>
<p>
PickCustomColor uses an existing value in ColorDialog when assigned, or
creates the ColorDialog when needed. It executes the ColorDialog to get the
color selection for the control. The custom color selection is stored as the
first TColor value in the Items for the control. When a color is successfully
selected using the dialog, the return value is set to <b>True</b> and the
control is redrawn.
</p>
<p>
The color selection dialog is not displayed at design-time, and the return
value is always set to <b>False</b>.
</p>
</descr>
<seealso>
<link id="TCustomColorBox.Style"/>
<link id="TColorBoxStyle"/>
</seealso>
</element>
<element name="TCustomColorBox.PickCustomColor.Result">
<short><b>True</b> when a custom color was selected in the method.</short>
</element>
<element name="TCustomColorBox.Notification">
<short>
Performs actions needed when the specified component is added to or removed
from the control.
</short>
<descr>
<p>
Notification is an overridden method in TCustomColorBox. It calls the
inherited method on entry to handle notifications for components used in the
ancestor classes and their child components. It ensures that the reference in
ColorDialog is set to <b>Nil</b> when the component is removed from the class
instance.
</p>
</descr>
<seealso>
<link id="TCustomColorBox.ColorDialog"/>
<link id="#lcl.controls.TControl.Notification">TControl.Notification</link>
<link id="#rtl.classes.TComponent">TComponent</link>
</seealso>
</element>
<element name="TCustomColorBox.Notification.AComponent">
<short>Component for the notification.</short>
</element>
<element name="TCustomColorBox.Notification.Operation">
<short>Operation performed for the specified component.</short>
</element>
<element name="TCustomColorBox.Create">
<short>Constructor for the class instance.</short>
<descr>
<p>
<var>Create</var> is the overridden constructor for
<var>TCustomColorBox</var>. It calls the inherited <var>Create</var> method,
and sets the Style flags needed for the owner-drawn control. Create sets the
default values for properties, including:
</p>
<ul>
<li>ColorRectWidth</li>
<li>ColorRectOffset</li>
<li>Style</li>
<li>NoneColorColor</li>
<li>DefaultColorColor</li>
<li>Selected</li>
</ul>
<p>
Create calls SetColorList to load the colors needed for the control.
</p>
</descr>
<seealso>
<link id="#LCL.StdCtrls.TCustomCombobox.Create">TCustomCombobox.Create</link>
</seealso>
</element>
<element name="TCustomColorBox.ColorRectWidth">
<short>
Width for the color sample (swatch) displayed for colors in the item list.
</short>
<descr>
<p>
ColorRectWidth is an Integer property which contains the number of pixels
used to draw the color sample (or swatch) for each of the Colors in the
combo-box control. The height is determined using the item height for the
combo-box control.
</p>
<p>
If an explicit value has not been assigned to the property, the value in
cDefaultColorRectWidth is scaled to the current display density and used in
the property value.
</p>
<p>
Setting a new value for the property causes the control to be redrawn.
</p>
<p>
Use ColorRectOffset for the number of pixels used between the color sample
and its name.
</p>
</descr>
<seealso/>
</element>
<element name="TCustomColorBox.ColorRectOffset">
<short>Number of pixels between the color sample and the color name.</short>
<descr>
<p>
ColorRectOffset is an Integer property with the number of pixels used to
separate the color sample (or swatch) and the color name displayed for the
Items in the control. The default value for the property is
cDefaultColorRectOffset.
</p>
<p>
Setting a new value for the property causes the control to be redrawn.
</p>
<p>
Use ColorRectWidth for the width of the color sample displayed in the list
items.
</p>
</descr>
<seealso/>
</element>
<element name="TCustomColorBox.Style">
<short>
Settings which determine the colors available in the control and their
display style.
</short>
<descr>
<p>
Style is a TColorBoxStyle property with settings to determine the colors
available in the control and their display style. Include values from the
TColorBoxStyles enumeration to enable a particular setting. For instance:
</p>
<dl>
<dt>cbStandardColors</dt>
<dd>16 standard colors (as defined in graphics.pp); like cRed, clBlack, et.
al.</dd>
<dt>cbExtendedColors</dt>
<dd>
4 extended colors (as defined in graphics.pp); like clMoneyGreen, clSkyBlue,
et. al.
</dd>
<dt>cbSystemColors</dt>
<dd>
System colors (as defined in graphics.pp); like clScrollBar, clWindow,
clForm, .et. al.
</dd>
<dt>cbIncludeNone</dt>
<dd>Includes clNone in the list of colors.</dd>
<dt>cbIncludeDefault</dt>
<dd>Includes clDefault in the list of colors.</dd>
<dt>cbCustomColor</dt>
<dd>The first color is customizable by selection from a dialog.</dd>
<dt>cbPrettyNames</dt>
<dd>
Uses "pretty" names in the color names instead of the color value; like Red
for clRed.
</dd>
<dt>cbCustomColors</dt>
<dd>Uses the OnGetColors event handler to get the list of colors.</dd>
</dl>
<p>
The default value for the property is: [cbStandardColors, cbExtendedColors,
cbSystemColors]. This enables the corresponding TColor values defined in the
<file>graphics.pp</file> unit. By including cbCustomColor in Style, the
custom color is stored as the first value in the Colors property.
</p>
<p>
Setting a new value for the property causes the SetColorList method to be
called to reload the color names and values.
</p>
</descr>
<seealso>
<link id="TCustomColorBox.SetColorList"/>
<link id="TColorBoxStyles"/>
<link id="TColorBoxStyle"/>
</seealso>
</element>
<element name="TCustomColorBox.Colors">
<short>
Provides indexed access to the TColor value for items in the control.
</short>
<descr>
<p>
Colors is an indexed read-only TColor property which provides access to the
colors in the control by their ordinal position in the list of Items.
</p>
<p>
Use ColorNames to access the name for a color at a specific position in the
list.
</p>
<p>
Use Style to determine the colors and names available in the combo-box
control.
</p>
</descr>
<seealso>
<link id="TCustomColorBox.ColorNames"/>
<link id="TCustomColorBox.Style"/>
</seealso>
</element>
<element name="TCustomColorBox.Colors.Index">
<short>Ordinal position for the property value in the list of items.</short>
</element>
<element name="TCustomColorBox.ColorNames">
<short>
Provides indexed access to the names for the Colors used in the control
</short>
<descr>
<p>
<var>ColorNames</var> is a read-only String property which provides indexed
access to the names for the values stored in Colors property.
</p>
<p>
Use Colors to get the TColor value for one the Items in the control.
</p>
<p>
Use Style to determine the colors and names available in the combo-box
control.
</p>
</descr>
<seealso>
<link id="TCustomColorBox.Colors"/>
<link id="TCustomColorBox.Style"/>
<link id="#lcl.stdctrls.TCustomComboBox.Items">TCustomComboBox.Items</link>
</seealso>
</element>
<element name="TCustomColorBox.ColorNames.Index">
<short>
Ordinal position for the color name accessed in the Items for the control.
</short>
</element>
<element name="TCustomColorBox.Selected">
<short>
The TColor value for the selected item in the combo-box control.
</short>
<descr>
<p>
Selected is a TColor property with the color for the selected item in
combo-box control. The default value for the property is clBlack.
</p>
<p>
Selected contains the value in Colors found at the position in ItemIndex. If
ItemIndex is -1 (for no selection) or the handle for the control has not been
assigned, the existing TColor value in the member is returned as the property
value.
</p>
<p>
Setting a new value for the property causes the values in Colors to be
searched, and the ItemIndex is set to the location for the color value. If
the new value is not in Colors, ItemIndex is set to -1. The inherited Change
method is called to signal the OnChange event handler (when assigned).
</p>
</descr>
<seealso>
<link id="TCustomColorBox.Colors"/>
<link id="#lcl.graphics.TColor">TColor</link>
<link id="#lcl.stdctrls.TCustomComboBox.ItemIndex">TCustomComboBox.ItemIndex</link>
<link id="#lcl.stdctrls.TCustomComboBox.Change">TCustomComboBox.Change</link>
<link id="#lcl.stdctrls.TCustomComboBox.OnChange">TCustomComboBox.OnChange</link>
</seealso>
</element>
<element name="TCustomColorBox.DefaultColorColor">
<short>TColor used for the clDefault color constant.</short>
<descr>
<p>
<var>DefaultColorColor</var> is a <var>TColor</var> property with the value
used for the <var>clDefault</var> color constant.
</p>
<p>
clDefault does not have any meaning without a context where it is applied.
The default color is a different value for Forms, Buttons, Windows, etc. This
property allows clDefault to be resolved to an actual TColor value when
needed.
</p>
<p>
The default value for the property is <var>clBlack</var>.
</p>
<p>
Changing the value for the property causes the control to be redrawn.
</p>
<p>
DefaultColorColor is used in the <var>DrawItem</var> method to resolve the
clDefault color constant when drawing items in the control.
</p>
<p>
Use <var>NoneColorColor</var> for the TColor value used for the
<var>clNone</var> color constant.
</p>
<p>
Use <var>Style</var> to include or exclude the clDefault and clNone color
constants in the Colors for the control.
</p>
</descr>
<seealso>
<link id="TCustomColorBox.Colors"/>
<link id="TCustomColorBox.NoneColorColor"/>
<link id="TCustomColorBox.Style"/>
<link id="TCustomColorBox.DrawItem"/>
</seealso>
</element>
<element name="TCustomColorBox.NoneColorColor">
<short>TColor used for the clNone color constant.</short>
<descr>
<p>
<var>NoneColorColor</var> is a <var>TColor</var> property with the color
value used for the <var>clNone</var> color constant.
</p>
<p>
Like <var>clDefault</var>, clNone does not have any meaning without a context
where it is applied. Its actual value is different for Forms, Buttons,
Windows, etc. This property allows clNone to be resolved to an actual TColor
value when needed.
</p>
<p>
The default value for the property is <var>clBlack</var>.
</p>
<p>
Changing the value for the property causes the control to be redrawn.
</p>
<p>
NoneColorColor is used in the <var>DrawItem</var> method to resolve the
clNone color constant when drawing items in the control.
</p>
<p>
Use <var>DefaultColorColor</var> for the TColor value used for the
<var>clDefault</var> color constant.
</p>
<p>
Use <var>Style</var> to include or exclude the clDefault and clNone color
constants in the Colors for the control.
</p>
</descr>
<seealso>
<link id="TCustomColorBox.Colors"/>
<link id="TCustomColorBox.DefaultColorColor"/>
<link id="TCustomColorBox.Style"/>
<link id="TCustomColorBox.DrawItem"/>
</seealso>
</element>
<element name="TCustomColorBox.OnGetColors">
<short>
<var>OnGetColors</var> - event handler for the instruction to get colors.
</short>
<descr>
<p>
<var>OnGetColors</var> is a <var>TGetColorsEvent</var> property with the
event handler signalled to get custom colors used in the combo-box control.
</p>
<p>
An application must implement and assign an object procedure using the
signature in TGetColorsEvent to respond to the notification.
<var>Sender</var> is the <var>TCustomColorBox</var> control for the event
notification. <var>Items</var> is the <var>TStrings</var> instance with the
existing color names and values stored in the control.
</p>
<p>
The event handler can perform any actions needed to populate the list of
Items. This can include clearing the Items, adding or removing selected names
and color values, or using color names and/or values not defined as color
constants in the graphics.pp unit. It could also be used to implement a
custom color palette with specific pre-defined color combinations.
</p>
<p>
Some common operations:
</p>
<p>
Clear the list of ltems:
</p>
<code>Items.Clear;</code>
<p>
Add a specific color:
</p>
<code>Items.AddObject(rsSkyBlueColorCaption,
TObject(PtrInt(clSkyBlue)));</code>
<p>
Delete a specific color:
</p>
<code>iPos := Items.IndexOf(rsSkyBlueColorCaption);
if iPos <> -1 then
Items.Delete(iPos);</code>
<p>
OnGetColors is signalled (when assigned) when the color list is loaded for
the control, and <var>cbCustomColors</var> has been included in the
<var>Style</var> for the control. This occurs when a new value is assigned to
the Style property.
</p>
</descr>
<seealso>
<link id="TCustomColorBox.Style"/>
<link id="TCustomColorBox.Colors"/>
<link id="TCustomColorBox.ColorNames"/>
<link id="TGetColorsEvent"/>
<link id="TColorBoxStyles"/>
<link id="#lcl.stdctrls.TCustomComboBox.Items">TCustomComboBox.Items</link>
</seealso>
</element>
<element name="TCustomColorBox.ColorDialog">
<short>Dialog displayed to select a custom color for the control.</short>
<descr>
<p>
<var>ColorDialog</var> is a <var>TColorDialog</var> property with the dialog
displayed to select a custom color for the control. Its value can be assigned
directly to the control, or it can be created and freed at run-time when the
<var>PickCustomColor</var> method is called.
</p>
</descr>
<seealso>
<link id="#lcl.dialogs.TColorDialog">TColorDialog</link>
</seealso>
</element>
<element name="TColorBox">
<short>
Implements combo-box control used to select a color name or value.
</short>
<descr>
<p>
<var>TColorBox</var> is a <var>TCustomColorBox</var> descendant which
implements the a combo-box control used to display and select available color
names and values. Each item in the control has a small rectangle where the
color is displayed (swatch) and the color name.
</p>
<p>
The <var>Style</var> property is used to configure the list of available
colors and their display names. Style may also trigger use of the
<var>OnGetColors</var> event handler to get the items displayed in the
combo-box control.
</p>
<p>
The <var>ColorRectWidth</var> and <var>ColorRectOffset</var> properties can
be used to control the size and spacing for the color swatch displayed for
the list items.
</p>
<p>
<var>Colors</var> allows indexed access to the <var>TColor</var> values in
the list of items. When included in the Style property, colors like
<var>clDefault</var> and/or <var>clNone</var> may be included in the list of
Colors. The <var>DefaultColorColor</var> and <var>NoneColorColor</var>
properties can be used to specify the TColor values used for those color
constants.
</p>
<p>
ColorNames allows indexed access to the names for the values in Colors.
</p>
<p>
Use <var>TCustomColorListBox</var> / <var>TColorListBox</var> to display
color names and values in a list box control.
</p>
</descr>
<seealso>
<link id="TCustomColorBox"/>
<link id="TCustomColorListBox"/>
<link id="TColorListBox"/>
</seealso>
</element>
<element name="TColorBox.ColorRectWidth" link="#lcl.colorbox.TCustomColorBox.ColorRectWidth"/>
<element name="TColorBox.ColorRectOffset" link="#lcl.colorbox.TCustomColorBox.ColorRectOffset"/>
<element name="TColorBox.DefaultColorColor" link="#lcl.colorbox.TCustomColorBox.DefaultColorColor"/>
<element name="TColorBox.NoneColorColor" link="#lcl.colorbox.TCustomColorBox.NoneColorColor"/>
<element name="TColorBox.Selected" link="#lcl.colorbox.TCustomColorBox.Selected"/>
<element name="TColorBox.Style" link="#lcl.colorbox.TCustomColorBox.Style"/>
<element name="TColorBox.ParentBidiMode" link="#lcl.controls.TControl.ParentBidiMode"/>
<element name="TColorBox.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
<element name="TColorBox.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
<element name="TColorBox.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
<element name="TColorBox.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
<element name="TColorBox.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
<element name="TColorBox.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
<element name="TColorBox.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
<element name="TColorBox.Visible" link="#lcl.controls.TControl.Visible"/>
<element name="TColorBox.OnGetColors" link="#lcl.colorbox.TCustomColorBox.OnGetColors"/>
<element name="TColorBox.ColorDialog" link="#lcl.colorbox.TCustomColorBox.ColorDialog"/>
<element name="TColorBox.Align" link="#lcl.controls.TControl.Align"/>
<element name="TColorBox.Anchors" link="#lcl.controls.TControl.Anchors"/>
<element name="TColorBox.ArrowKeysTraverseList" link="#lcl.stdctrls.TCustomComboBox.ArrowKeysTraverseList"/>
<element name="TColorBox.AutoComplete" link="#lcl.stdctrls.TCustomComboBox.AutoComplete"/>
<element name="TColorBox.AutoCompleteText" link="#lcl.stdctrls.TCustomComboBox.AutoCompleteText"/>
<element name="TColorBox.AutoDropDown" link="#lcl.stdctrls.TCustomComboBox.AutoDropDown"/>
<element name="TColorBox.AutoSelect" link="#lcl.stdctrls.TCustomComboBox.AutoSelect"/>
<element name="TColorBox.AutoSize" link="#lcl.controls.TControl.AutoSize"/>
<element name="TColorBox.BidiMode" link="#lcl.controls.TControl.BidiMode"/>
<element name="TColorBox.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
<element name="TColorBox.Color" link="#lcl.controls.TControl.Color"/>
<element name="TColorBox.Constraints" link="#lcl.controls.TControl.Constraints"/>
<element name="TColorBox.DragCursor" link="#lcl.controls.TControl.DragCursor"/>
<element name="TColorBox.DragMode" link="#lcl.controls.TControl.DragMode"/>
<element name="TColorBox.DropDownCount" link="#lcl.stdctrls.TCustomComboBox.DropDownCount"/>
<element name="TColorBox.Enabled" link="#lcl.controls.TControl.Enabled"/>
<element name="TColorBox.Font" link="#lcl.controls.TControl.Font"/>
<element name="TColorBox.ItemHeight" link="#lcl.stdctrls.TCustomComboBox.ItemHeight"/>
<element name="TColorBox.ItemWidth" link="#lcl.stdctrls.TCustomComboBox.ItemWidth"/>
<element name="TColorBox.OnChange" link="#lcl.stdctrls.TCustomComboBox.OnChange"/>
<element name="TColorBox.OnChangeBounds" link="#lcl.controls.TControl.OnChangeBounds"/>
<element name="TColorBox.OnClick" link="#lcl.controls.TControl.OnClick"/>
<element name="TColorBox.OnCloseUp" link="#lcl.stdctrls.TCustomComboBox.OnCloseUp"/>
<element name="TColorBox.OnContextPopup" link="#lcl.controls.TControl.OnContextPopup"/>
<element name="TColorBox.OnDblClick" link="#lcl.controls.TControl.OnDblClick"/>
<element name="TColorBox.OnDragDrop" link="#lcl.controls.TControl.OnDragDrop"/>
<element name="TColorBox.OnDragOver" link="#lcl.controls.TControl.OnDragOver"/>
<element name="TColorBox.OnEndDrag" link="#lcl.controls.TControl.OnEndDrag"/>
<element name="TColorBox.OnDropDown" link="#lcl.stdctrls.TCustomComboBox.OnDropDown"/>
<element name="TColorBox.OnEditingDone" link="#lcl.controls.TControl.OnEditingDone"/>
<element name="TColorBox.OnEnter" link="#lcl.controls.TWinControl.OnEnter"/>
<element name="TColorBox.OnExit" link="#lcl.controls.TWinControl.OnExit"/>
<element name="TColorBox.OnKeyDown" link="#lcl.controls.TWinControl.OnKeyDown"/>
<element name="TColorBox.OnKeyPress" link="#lcl.controls.TWinControl.OnKeyPress"/>
<element name="TColorBox.OnKeyUp" link="#lcl.controls.TWinControl.OnKeyUp"/>
<element name="TColorBox.OnMouseDown" link="#lcl.controls.TControl.OnMouseDown"/>
<element name="TColorBox.OnMouseEnter" link="#lcl.controls.TControl.OnMouseEnter"/>
<element name="TColorBox.OnMouseLeave" link="#lcl.controls.TControl.OnMouseLeave"/>
<element name="TColorBox.OnMouseMove" link="#lcl.controls.TControl.OnMouseMove"/>
<element name="TColorBox.OnMouseUp" link="#lcl.controls.TControl.OnMouseUp"/>
<element name="TColorBox.OnMouseWheel" link="#lcl.controls.TControl.OnMouseWheel"/>
<element name="TColorBox.OnMouseWheelDown" link="#lcl.controls.TControl.OnMouseWheelDown"/>
<element name="TColorBox.OnMouseWheelUp" link="#lcl.controls.TControl.OnMouseWheelUp"/>
<element name="TColorBox.OnStartDrag" link="#lcl.controls.TControl.OnStartDrag"/>
<element name="TColorBox.OnSelect" link="#lcl.stdctrls.TCustomComboBox.OnSelect"/>
<element name="TColorBox.OnUTF8KeyPress" link="#lcl.controls.TWinControl.OnUTF8KeyPress"/>
<element name="TLBGetColorsEvent">
<short>
Specifies an event handler signalled to get the available colors for a
TColorListBox control.
</short>
<descr>
<p>
<var>TLBGetColorsEvent</var> is the type used to implement the
<var>OnGetColors</var> property in <var>TCustomColorListBox</var>.
</p>
</descr>
<seealso>
<link id="TCustomColorListBox.OnGetColors"/>
<link id="TCustomColorListBox.SetColorList"/>
<link id="TCustomColorListBox.PickCustomColor"/>
<link id="TColorBoxStyles"/>
<link id="#lcl.graphics.GetColorValues">GetColorValues</link>
</seealso>
</element>
<element name="TLBGetColorsEvent.Sender">
<short>Object for the event notification.</short>
</element>
<element name="TLBGetColorsEvent.Items">
<short>
TStrings instance where the available color captions and values captions are
stored.
</short>
</element>
<element name="TCustomColorListBox">
<short>Implements the base class for TColorListBox.</short>
<descr>
<p>
<var>TCustomColorListBox</var> is a <var>TCustomListBox</var> descendant
which implements a list box control used to display and select color names
and values. TCustomColorListBox is the base class for the
<var>TColorListBox</var> control. Each item in the control has a small
rectangle where the color is displayed (swatch) and the color name.
</p>
<p>
The <var>Style</var> property is used to configure the list of available
colors and their display names. Style may also trigger use of the
<var>OnGetColors</var> event handler to get the items displayed in the
combo-box control.
</p>
<p>
The <var>ColorRectWidth</var> and <var>ColorRectOffset</var> properties can
be used to control the size and spacing for the color swatch displayed for
the list items.
</p>
<p>
<var>Colors</var> allows indexed access to the <var>TColor</var> values in
the list of items. When included in the Style property, colors like
<var>clDefault</var> and/or <var>clNone</var> may be included in the list of
Colors. The <var>DefaultColorColor</var> and <var>NoneColorColor</var>
properties can be used to specify the TColor values used for those color
constants.
</p>
<p>
ColorNames allows indexed access to the names for the values in Colors.
</p>
<p>
Do not create instances of TCustomColorListBox; use the TColorL:istBox
descendant instead.
</p>
<p>
Use <var>TCustomColorBox</var> / <var>TColorBox</var> to display color names
and values in a combo-box control.
</p>
</descr>
<seealso>
<link id="TColorListBox"/>
<link id="TCustomColorBox"/>
<link id="TColorBox"/>
<link id="#lcl.stdctrls.TCustomListBox">TCustomListBox</link>
</seealso>
</element>
<!-- private -->
<element name="TCustomColorListBox.FColorRectWidth"/>
<element name="TCustomColorListBox.FColorRectOffset"/>
<element name="TCustomColorListBox.FDefaultColorColor"/>
<element name="TCustomColorListBox.FNoneColorColor"/>
<element name="TCustomColorListBox.FColorDialog"/>
<element name="TCustomColorListBox.FOnGetColors"/>
<element name="TCustomColorListBox.FSelected"/>
<element name="TCustomColorListBox.FStyle"/>
<element name="TCustomColorListBox.GetColorRectWidth"/>
<element name="TCustomColorListBox.GetColorRectWidth.Result"/>
<element name="TCustomColorListBox.GetColors"/>
<element name="TCustomColorListBox.GetColors.Result"/>
<element name="TCustomColorListBox.GetColors.Index"/>
<element name="TCustomColorListBox.GetColorName"/>
<element name="TCustomColorListBox.GetColorName.Result"/>
<element name="TCustomColorListBox.GetColorName.Index"/>
<element name="TCustomColorListBox.GetSelected"/>
<element name="TCustomColorListBox.GetSelected.Result"/>
<element name="TCustomColorListBox.SetColorRectOffset"/>
<element name="TCustomColorListBox.SetColorRectOffset.AValue"/>
<element name="TCustomColorListBox.SetColorRectWidth"/>
<element name="TCustomColorListBox.SetColorRectWidth.AValue"/>
<element name="TCustomColorListBox.SetColors"/>
<element name="TCustomColorListBox.SetColors.Index"/>
<element name="TCustomColorListBox.SetColors.AValue"/>
<element name="TCustomColorListBox.SetDefaultColorColor"/>
<element name="TCustomColorListBox.SetDefaultColorColor.AValue"/>
<element name="TCustomColorListBox.SetNoneColorColor"/>
<element name="TCustomColorListBox.SetNoneColorColor.AValue"/>
<element name="TCustomColorListBox.SetSelected"/>
<element name="TCustomColorListBox.SetSelected.Value"/>
<element name="TCustomColorListBox.SetStyle"/>
<element name="TCustomColorListBox.SetStyle.AValue"/>
<element name="TCustomColorListBox.ColorProc"/>
<element name="TCustomColorListBox.ColorProc.s"/>
<!-- protected -->
<element name="TCustomColorListBox.ColorRectWidthStored">
<short>
Implements the storage specifier for the ColorRectWidth property.
</short>
<descr/>
<seealso>
<link id="TCustomColorListBox.ColorRectWidth"/>
</seealso>
</element>
<element name="ColorRectWidthStored.Result">
<short>
<b>True</b> when the property has a value other than the default.
</short>
</element>
<element name="TCustomColorListBox.DrawItem">
<short>
Draws the color preview and name for an item in list box control.
</short>
<descr>
<p>
DrawItem is an overridden method used to custom draw an item in the control.
</p>
<p>
A color preview is drawn using the value in Colors. For clNone and clDefault,
the value in NoneColorColor and DefaultColorColor are used to draw the color
preview. The value in State is updated to include odBackgroundPainted in the
state flags.
</p>
<p>
The item rectangle is made smaller and passed to the inherited method to draw
the text for the item.
</p>
<p>
The Brush color and Pen color for the control Canvas are reset to their
original values after drawing the item.
</p>
</descr>
<seealso>
<link id="#lcl.stdctrls.TCustomListBox.DrawItem">TCustomListBox.DrawItem</link>
</seealso>
</element>
<element name="TCustomColorListBox.SetColorList">
<short>Loads the list of colors used in the control.</short>
<descr>
<p>
<var>SetColorList</var> is used to fill the <var>Items</var> in the control
with the <var>Colors</var> and <var>ColorNames</var> available in the list
box.
</p>
<p>
SetColorList clears any existing values in Items, and loads the predefined
colors needed for the settings in the <var>Style</var> property. When Style
included the value <var>cbCustomColors</var> , the <var>OnGetColors</var>
event handler is signalled to load custom colors in the Items, Colors, and
ColorNames properties.
</p>
<p>
The value in <var>Selected</var> is restored prior to exiting from the method.
</p>
</descr>
<seealso/>
</element>
<element name="TCustomColorListBox.Loaded">
<short>
Performs actions needed when LCL component streaming has been completed.
</short>
<descr/>
<seealso>
<link id="#lcl.controls.TWinControl.Loaded">TWinControl.Loaded</link>
</seealso>
</element>
<element name="TCustomColorListBox.InitializeWnd">
<short>
Performs actions needed when the window handle for the control is created.
</short>
<descr>
<p>
Updates the value in Selected to force ItemIndex to be updated.
</p>
</descr>
<seealso>
<link id="TCustomColorListBox.Selected"/>
<link id="#lcl.stdctrls.TCustomListBox.ItemIndex">TCustomListBox.ItemIndex</link>
<link id="#lcl.stdctrls.TCustomListBox.InitializeWnd">TCustomListBox.InitializeWnd</link>
<link id="#lcl.controls.TWinControl.InitializeWnd">TWincontrol.InitializeWnd</link>
</seealso>
</element>
<element name="TCustomColorListBox.DoAutoAdjustLayout">
<short>
Performs actions needed to auto-adjust the control using the specified layout
policy.
</short>
<descr>
<p>
<var>DoAutoAdjustLayout</var> is an overridden method used to apply the
specified auto-adjust layout policy to the control. DoAutoAdjustLayout calls
the inherited method on entry.
</p>
<p>
DoAutoAdjustLayout ensures that the value in ColorRectWidth is adjusted by
the scaling factor in <var>AXProportion</var> when <var>AMode</var> contains
<var>lapAutoAdjustWithoutHorizontalScrolling</var> or
<var>lapAutoAdjustForDPI</var>. The control is redrawn after ColorRectWidth
is updated.
</p>
<p>
DoAutoAdjustLayout is called from the AutoAdjustLayout method.
</p>
</descr>
<seealso>
<link id="#lcl.stdctrls.TCustomListBox.DoAutoAdjustLayout">
TCustomListBox.DoAutoAdjustLayout
</link>
<link id="#lcl.controls.TControl.DoAutoAdjustLayout">TControl.DoAutoAdjustLayout</link>
</seealso>
</element>
<element name="TCustomColorListBox.DoAutoAdjustLayout.AMode">
<short>Layout adjustment policy applied in the method.</short>
</element>
<element name="TCustomColorListBox.DoAutoAdjustLayout.AXProportion">
<short>Horizontal scaling factor for the policy.</short>
</element>
<element name="TCustomColorListBox.DoAutoAdjustLayout.AYProportion">
<short>Vertical scaling factor for the policy.</short>
</element>
<element name="TCustomColorListBox.DoGetColors">
<short>Signals the OnGetColors event handler (when assigned).</short>
<descr>
<p>
Called when the <var>Colors</var> in the control are (re-)loaded after
setting a new value in <var>Style</var>. It is called if
<var>cbCustomColors</var> has been included in Style.
</p>
</descr>
<seealso/>
</element>
<element name="TCustomColorListBox.DoSelectionChange">
<short>
Performs actions needed when the selection in the control is changed.
</short>
<descr>
<p>
DoSelectionChange is an overridden method used to perform actions needed when
the value in the ItemIndex property is changed.
</p>
<p>
The User parameter indicates the origin of the change. When User is
<b>True</b>, the change occurred due to user interaction with the control.
When User is <b>False</b>, the change occurred when the ItemIndex property
was updated by another method in the control.
</p>
<p>
When User is <b>True</b>, the Style property is examined to see if a custom
color can be used in the Colors for the control. When Style includes the
value cbCustomColor, and ItemIndex is set to 0, the PickCustomColor method is
called to select a custom color using a color dialog. If a custom color was
successfully selected, the TColor value in Colors for the ItemIndex is stored
in the Selected property.
</p>
<p>
The color dialog is not displayed, and Selected is not updated when User is
set to <b>False</b>.
</p>
<p>
DoSelectionChange calls the inherited method prior to exit.
</p>
</descr>
<seealso>
<link id="#lcl.stdctrls.TCustomListBox.DoSelectionChange">
TCustomListBox.DoSelectionChange
</link>
</seealso>
</element>
<element name="TCustomColorListBox.PickCustomColor">
<short>Selects a custom color using a color dialog.</short>
<descr>
<p>
PickCustomColor is a Boolean function used to select a custom color rather
than one of the standard colors in the Colors property.
</p>
<p>
PickCustomColor is used when cbCustomColor is included in the Style for the
control and ItemIndex is set to 0. This position was reserved for a custom
color when the list of colors was loaded for the Style settings in the
control.
</p>
<p>
PickCustomColor uses an existing value in ColorDialog when available, or
creates and executes a TColorDialog to get the color selection for the
control. The custom color selection is stored as the first TColor value in
the Items for the control. When a color is successfully selected using the
dialog, the return value is set to <b>True</b> and the control is redrawn.
</p>
<p>
The color selection dialog is not displayed at design-time, and the return
value is always set to <b>False</b>.
</p>
</descr>
<seealso/>
</element>
<element name="TCustomColorListBox.PickCustomColor.Result">
<short>
<b>True</b> when a custom color was selected in the color dialog.
</short>
</element>
<element name="TCustomColorListBox.Notification">
<short>
Performs actions needed when the specified component is added to or removed
from the control.
</short>
<descr>
<p>
Notification is an overridden method in TCustomColorListBox. It calls the
inherited method on entry to handle notifications in ancestor classes and
their child components. It ensures that the reference in ColorDialog is set
to <b>Nil</b> when the component is removed from the control.
</p>
</descr>
<seealso>
<link id="TCustomColorListBox.ColorDialog"/>
<link id="#lcl.controls.TControl.Notification">TControl.Notification</link>
<link id="#rtl.classes.TComponent">TComponent</link>
</seealso>
</element>
<element name="TCustomColorListBox.Notification.AComponent">
<short>Component for the notification.</short>
</element>
<element name="TCustomColorListBox.Notification.Operation">
<short>Action performed for the specified component.</short>
</element>
<element name="TCustomColorListBox.Create">
<short>Constructor for the class instance.</short>
<descr>
<p>
<var>Create</var> is the overridden constructor for
<var>TCustomColorListBox</var>. Create calls the inherited Create method, and
sets the Style flags needed for the owner-drawn control. It also sets the
default values for properties in the class instance, including:
</p>
<ul>
<li>ColorRectWidth</li>
<li>ColorRectOffset</li>
<li>Style</li>
<li>NoneColorColor</li>
<li>DefaultColorColor</li>
<li>Selected</li>
</ul>
<p>
Create calls SetColorList to load the colors needed for the control.
</p>
</descr>
<seealso>
<link id="#lcl.stdctrls.TCustomListBox.Create">TCustomListBox.Create</link>
</seealso>
</element>
<element name="TCustomColorListBox.ColorRectWidth">
<short>
Width for the color sample (swatch) displayed for colors in the item list.
</short>
<descr>
<p>
<var>ColorRectWidth</var> is an <var>Integer</var> property which contains
the number of pixels used to draw the color sample (or swatch) for each of
the Colors in the list box control. The height for the list Item is in the
ItemHeight property.
</p>
<p>
If an explicit value has not been assigned to ColorRectWidth, the value in
cDefaultColorRectWidth is scaled to the current display density and used as
the property value.
</p>
<p>
Setting a new value for the property causes the control to be redrawn.
</p>
<p>
Use ColorRectOffset for the number of pixels used between the color sample
and its color name.
</p>
</descr>
<seealso/>
</element>
<element name="TCustomColorListBox.ColorRectOffset">
<short>Number of pixels between the color sample and the color name.</short>
<descr>
<p>
<var>ColorRectOffset</var> is an <var>Integer</var> property with the number
of pixels used to separate the color sample (or swatch) and the color name
displayed for the Items in the control. The default value for the property is
cDefaultColorRectOffset.
</p>
<p>
Setting a new value for the property causes the control to be redrawn.
</p>
<p>
Use ColorRectWidth for the width of the color sample displayed in the list
items.
</p>
</descr>
<seealso/>
</element>
<element name="TCustomColorListBox.Style">
<short>
Settings which determine the colors available in the control and their
display style.
</short>
<descr>
<p>
<var>Style</var> is a <var>TColorBoxStyle</var> property with settings to
determine the colors available in the control and their display style.
Include values from the TColorBoxStyles enumeration to enable a particular
setting. For instance:
</p>
<dl>
<dt>cbStandardColors</dt>
<dd>16 standard colors (as defined in graphics.pp); like cRed, clBlack, et.
al.</dd>
<dt>cbExtendedColors</dt>
<dd>
4 extended colors (as defined in graphics.pp); like clMoneyGreen, clSkyBlue,
et. al.
</dd>
<dt>cbSystemColors</dt>
<dd>
System colors (as defined in graphics.pp); like clScrollBar, clWindow,
clForm, .et. al.
</dd>
<dt>cbIncludeNone</dt>
<dd>Includes clNone in the list of colors.</dd>
<dt>cbIncludeDefault</dt>
<dd>Includes clDefault in the list of colors.</dd>
<dt>cbCustomColor</dt>
<dd>The first color is customizable by selection from a dialog.</dd>
<dt>cbPrettyNames</dt>
<dd>
Uses "pretty" names in the color names instead of the color value; like Red
for clRed.
</dd>
<dt>cbCustomColors</dt>
<dd>Uses the OnGetColors event handler to get the list of colors.</dd>
</dl>
<p>
The default value for the property is: [cbStandardColors, cbExtendedColors,
cbSystemColors]. This enables the corresponding TColor values defined in the
<file>graphics.pp</file> unit. By including cbCustomColor in Style, the
custom color is stored as the first value in the Colors property.
</p>
<p>
Setting a new value for the property causes the SetColorList method to be
called to reload the color names and values.
</p>
</descr>
<seealso>
<link id="#lcl.stdctrls.TCustomListBox.Style">TCustomListBox.Style</link>
</seealso>
</element>
<element name="TCustomColorListBox.Colors">
<short>
Provides indexed access to the TColor value for items in the control.
</short>
<descr>
<p>
<var>Colors</var> is an indexed <var>TColor</var> property which provides
access to the colors in the control by their ordinal position in the list of
Items. Setting a new TColor value in the indexed property causes the control
to be redrawn.
</p>
<p>
Values in Colors and ColorNames are used in the DrawItem method when the
color sample and the color name for an item is drawn on the control Canvas.
</p>
<p>
Use ColorNames to access the name for the color at a specific position in the
Items for the control.
</p>
<p>
Use Style to determine the colors and names available in the list box control.
</p>
</descr>
<seealso/>
</element>
<element name="TCustomColorListBox.Colors.Index">
<short>Ordinal position in Items for the color value.</short>
</element>
<element name="TCustomColorListBox.ColorNames">
<short>
Provides indexed access to the names for the Colors used in the control.
</short>
<descr>
<p>
<var>ColorNames</var> is a String property which provides indexed access to
the names for the values stored in Colors property. Setting a new value for
the indexed property causes the control to be redrawn.
</p>
<p>
Values in Colors and ColorNames are used in the DrawItem method when the
color sample and the color name for an item is drawn on the control Canvas.
</p>
<p>
Use Colors to get the TColor value for one the Items in the control.
</p>
<p>
Use Style to determine the colors and names available in the combo-box
control.
</p>
</descr>
<seealso/>
</element>
<element name="TCustomColorListBox.ColorNames.Index">
<short>Ordinal position in Items for the color name.</short>
</element>
<element name="TCustomColorListBox.Selected">
<short>The TColor value for the selected item in the list box control.</short>
<descr>
<p>
Selected is a TColor property with the color for the selected item in list
box control. The default value for the property is clBlack.
</p>
<p>
Selected contains the value in Colors found at the position in ItemIndex. If
ItemIndex is -1 (for no selection) or the handle for the control has not been
assigned, the existing TColor value in the member is returned as the property
value.
</p>
<p>
Setting a new value for the property causes the values in Colors to be
searched, and the ItemIndex is set to the location for the color value. If
the new value is not in Colors, ItemIndex is set to -1.
</p>
</descr>
<seealso>
<link id="#lcl.stdctrls.TCustomListBox.Selected">TCustomListBox.Selected</link>
</seealso>
</element>
<element name="TCustomColorListBox.DefaultColorColor">
<short>TColor used for the clDefault color constant.</short>
<descr>
<p>
<var>DefaultColorColor</var> is a <var>TColor</var> property with the value
used for the <var>clDefault</var> color constant.
</p>
<p>
clDefault does not have any meaning without a context where it is applied.
The default color is a different value for Forms, Buttons, Windows, etc. This
property allows clDefault to be resolved to an actual TColor value when
needed.
</p>
<p>
The default value for the property is <var>clBlack</var>.
</p>
<p>
Changing the value for the property causes the control to be redrawn.
</p>
<p>
DefaultColorColor is used in the <var>DrawItem</var> method to resolve the
clDefault color constant when drawing items in the control.
</p>
<p>
Use <var>NoneColorColor</var> for the TColor value used for the
<var>clNone</var> color constant.
</p>
<p>
Use <var>Style</var> to include or exclude the clDefault and clNone color
constants in the Colors for the control.
</p>
</descr>
<seealso/>
</element>
<element name="TCustomColorListBox.NoneColorColor">
<short>TColor used for the clNone color constant.</short>
<descr>
<p>
<var>NoneColorColor</var> is a <var>TColor</var> property with the color
value used for the <var>clNone</var> color constant.
</p>
<p>
Like <var>clDefault</var>, clNone does not have any meaning without a context
where it is applied. Its actual value is different for Forms, Buttons,
Windows, etc. This property allows clNone to be resolved to an actual TColor
value when needed.
</p>
<p>
The default value for the property is <var>clBlack</var>.
</p>
<p>
Changing the value for the property causes the control to be redrawn.
</p>
<p>
NoneColorColor is used in the <var>DrawItem</var> method to resolve the
clNone color constant when drawing items in the control.
</p>
<p>
Use <var>DefaultColorColor</var> for the TColor value used for the
<var>clDefault</var> color constant.
</p>
<p>
Use <var>Style</var> to include or exclude the clDefault and clNone color
constants in the Colors for the control.
</p>
</descr>
<seealso/>
</element>
<element name="TCustomColorListBox.OnGetColors">
<short>
<var>OnGetColors</var> - event handler for the instruction to get colors.
</short>
<descr>
<p>
<var>OnGetColors</var> is a <var>TGetColorsEvent</var> property with the
event handler signalled to get custom colors used in the list box control.
</p>
<p>
An application must implement and assign an object procedure using the
signature in TGetColorsEvent to respond to the notification.
<var>Sender</var> is the <var>TCustomColorBox</var> control for the event
notification. <var>Items</var> is the <var>TStrings</var> instance with the
existing color names and values stored in the control.
</p>
<p>
The event handler can perform any actions needed to populate the list of
Items. This can include clearing the Items, adding or removing selected names
and color values, or using color names and/or values not defined as color
constants in the graphics.pp unit. It could also be used to implement a
custom color palette with specific pre-defined color combinations.
</p>
<p>
Some common operations:
</p>
<p>
Clear the list of ltems:
</p>
<code>Items.Clear;</code>
<p>
Add a specific color:
</p>
<code>Items.AddObject(rsSkyBlueColorCaption,
TObject(PtrInt(clSkyBlue)));</code>
<p>
Delete a specific color:
</p>
<code>iPos := Items.IndexOf(rsSkyBlueColorCaption);
if iPos <> -1 then
Items.Delete(iPos);</code>
<p>
OnGetColors is signalled (when assigned) when the color list is loaded for
the control, and <var>cbCustomColors</var> has been included in the
<var>Style</var> for the control. This occurs when a new value is assigned to
the Style property.
</p>
</descr>
<seealso/>
</element>
<element name="TCustomColorListBox.ColorDialog">
<short>Dialog displayed to select a custom color for the control.</short>
<descr>
<p>
<var>ColorDialog</var> is a <var>TColorDialog</var> property with the dialog
displayed to select a custom color for the control. It can be assigned
directly to the control, or it can be created at run-time when the
<var>PickCustomColor</var> method is called.
</p>
</descr>
<seealso>
<link id="#lcl.dialogs.TColorDialog">TColorDialog</link>
</seealso>
</element>
<element name="TColorListBox">
<short>
Implements a list box control used to display and select color names and
values.
</short>
<descr>
<p>
<var>TColorListBox</var> is a <var>TCustomColorListBox</var> descendant which
implements a list box control used to display and select color names and
values. Each item in the control has a small rectangle where the color is
displayed (swatch) and the color name.
</p>
<p>
The <var>Style</var> property is used to configure the list of available
colors and their display names. Style may also trigger use of the
<var>OnGetColors</var> event handler to get the items displayed in the list
box control.
</p>
<p>
The <var>ColorRectWidth</var> and <var>ColorRectOffset</var> properties can
be used to control the size and spacing for the color swatch displayed for
the list items.
</p>
<p>
<var>Colors</var> allows indexed access to the <var>TColor</var> values in
the list of items. When included in the Style property, colors like
<var>clDefault</var> and/or <var>clNone</var> may be included in the list of
Colors. The <var>DefaultColorColor</var> and <var>NoneColorColor</var>
properties can be used to specify the TColor values used for those color
constants.
</p>
<p>
ColorNames allows indexed access to the names for the values in Colors.
</p>
<p>
Use <var>TCustomColorBox</var> / <var>TColorBox</var> to display color names
and values in a combo-box control.
</p>
</descr>
<seealso>
<link id="TCustomColorListBox"/>
</seealso>
</element>
<element name="TColorListBox.ColorRectWidth" link="#lcl.colorbox.TCustomColorListBox.ColorRectWidth"/>
<element name="TColorListBox.ColorRectOffset" link="#lcl.colorbox.TCustomColorListBox.ColorRectOffset"/>
<element name="TColorListBox.DefaultColorColor" link="#lcl.colorbox.TCustomColorListBox.DefaultColorColor"/>
<element name="TColorListBox.NoneColorColor" link="#lcl.colorbox.TCustomColorListBox.NoneColorColor"/>
<element name="TColorListBox.Selected" link="#lcl.colorbox.TCustomColorListBox.Selected"/>
<element name="TColorListBox.Style" link="#lcl.colorbox.TCustomColorListBox.Style"/>
<element name="TColorListBox.OnGetColors" link="#lcl.colorbox.TCustomColorListBox.OnGetColors"/>
<element name="TColorListBox.ColorDialog" link="#lcl.colorbox.TCustomColorListBox.ColorDialog"/>
<element name="TColorListBox.Align" link="#lcl.controls.TControl.Align"/>
<element name="TColorListBox.Anchors" link="#lcl.controls.TControl.Anchors"/>
<element name="TColorListBox.BidiMode" link="#lcl.controls.TControl.BiDiMode"/>
<element name="TColorListBox.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
<element name="TColorListBox.BorderStyle" link="#lcl.controls.TWinControl.BorderStyle"/>
<element name="TColorListBox.ClickOnSelChange" link="#lcl.stdctrls.TCustomListBox.ClickOnSelChange"/>
<element name="TColorListBox.Color" link="#lcl.controls.TControl.Color"/>
<element name="TColorListBox.Constraints" link="#lcl.controls.TControl.Constraints"/>
<element name="TColorListBox.DragCursor" link="#lcl.controls.TControl.DragCursor"/>
<element name="TColorListBox.DragKind" link="#lcl.controls.TControl.DragKind"/>
<element name="TColorListBox.DragMode" link="#lcl.controls.TControl.DragMode"/>
<element name="TColorListBox.ExtendedSelect" link="#lcl.stdctrls.TCustomListBox.ExtendedSelect"/>
<element name="TColorListBox.Enabled" link="#lcl.controls.TControl.Enabled"/>
<element name="TColorListBox.Font" link="#lcl.controls.TControl.Font"/>
<element name="TColorListBox.IntegralHeight" link="#lcl.stdctrls.TCustomListBox.IntegralHeight"/>
<element name="TColorListBox.ItemHeight" link="#lcl.stdctrls.TCustomListBox.ItemHeight"/>
<element name="TColorListBox.OnChangeBounds" link="#lcl.controls.TControl.OnChangeBounds"/>
<element name="TColorListBox.OnClick" link="#lcl.controls.TControl.OnClick"/>
<element name="TColorListBox.OnContextPopup" link="#lcl.controls.TControl.OnContextPopup"/>
<element name="TColorListBox.OnDblClick" link="#lcl.controls.TControl.OnDblClick"/>
<element name="TColorListBox.OnDragDrop" link="#lcl.controls.TControl.OnDragDrop"/>
<element name="TColorListBox.OnDragOver" link="#lcl.controls.TControl.OnDragOver"/>
<element name="TColorListBox.OnEnter" link="#lcl.controls.TWinControl.OnEnter"/>
<element name="TColorListBox.OnEndDrag" link="#lcl.controls.TControl.OnEndDrag"/>
<element name="TColorListBox.OnExit" link="#lcl.controls.TWinControl.OnExit"/>
<element name="TColorListBox.OnKeyPress" link="#lcl.controls.TWinControl.OnKeyPress"/>
<element name="TColorListBox.OnKeyDown" link="#lcl.controls.TWinControl.OnKeyDown"/>
<element name="TColorListBox.OnKeyUp" link="#lcl.controls.TWinControl.OnKeyUp"/>
<element name="TColorListBox.OnMouseDown" link="#lcl.controls.TControl.OnMouseDown"/>
<element name="TColorListBox.OnMouseEnter" link="#lcl.controls.TControl.OnMouseEnter"/>
<element name="TColorListBox.OnMouseLeave" link="#lcl.controls.TControl.OnMouseLeave"/>
<element name="TColorListBox.OnMouseMove" link="#lcl.controls.TControl.OnMouseMove"/>
<element name="TColorListBox.OnMouseUp" link="#lcl.controls.TControl.OnMouseUp"/>
<element name="TColorListBox.OnMouseWheel" link="#lcl.controls.TControl.OnMouseWheel"/>
<element name="TColorListBox.OnMouseWheelDown" link="#lcl.controls.TControl.OnMouseWheelDown"/>
<element name="TColorListBox.OnMouseWheelUp" link="#lcl.controls.TControl.OnMouseWheelUp"/>
<element name="TColorListBox.OnMouseWheelHorz" link="#lcl.controls.TControl.OnMouseWheelHorz"/>
<element name="TColorListBox.OnMouseWheelLeft" link="#lcl.controls.TControl.OnMouseWheelLeft"/>
<element name="TColorListBox.OnMouseWheelRight" link="#lcl.controls.TControl.OnMouseWheelRight"/>
<element name="TColorListBox.OnResize" link="#lcl.controls.TControl.OnResize"/>
<element name="TColorListBox.OnSelectionChange" link="#lcl.stdctrls.TCustomListBox.OnSelectionChange"/>
<element name="TColorListBox.OnShowHint" link="#lcl.controls.TControl.OnShowHint"/>
<element name="TColorListBox.OnStartDrag" link="#lcl.controls.TControl.OnStartDrag"/>
<element name="TColorListBox.OnUTF8KeyPress" link="#lcl.controls.TWinControl.OnUTF8KeyPress"/>
<element name="TColorListBox.ParentBidiMode" link="#lcl.controls.TControl.ParentBiDiMode"/>
<element name="TColorListBox.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
<element name="TColorListBox.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
<element name="TColorListBox.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
<element name="TColorListBox.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
<element name="TColorListBox.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
<element name="TColorListBox.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
<element name="TColorListBox.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
<element name="TColorListBox.TopIndex" link="#lcl.stdctrls.TCustomListBox.TopIndex"/>
<element name="TColorListBox.Visible" link="#lcl.controls.TControl.Visible"/>
<element name="Register">
<short>Register components for use in the Lazarus IDE.</short>
<descr>
<p>
The following components are added to the Lazarus IDE component palette:
</p>
<p>
<b>Additional</b> Tab
</p>
<ul>
<li>TColorBox</li>
<li>TColorListBox</li>
</ul>
</descr>
<seealso/>
</element>
</module>
<!-- ColorBox -->
</package>
</fpdoc-descriptions>
|