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 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246
|
[comment {-*- tcl -*- doctools manpage}]
[manpage_begin snit n 1.0]
[copyright {2003-2005, by William H. Duquette}]
[moddesc {Snit's Not Incr Tcl, OO system}]
[titledesc {Snit's Not Incr Tcl}]
[require Tcl 8.4]
[require snit [opt 1.0]]
[description]
[para]
Snit is a pure Tcl object and megawidget system. It's
unique among Tcl object systems in that it's based not on inheritance
but on delegation. Object systems based on inheritance only allow you
to inherit from classes defined using the same system, which is
limiting. In Tcl, an object is
anything that acts like an object; it shouldn't matter how the object
was implemented. Snit is intended to help you build applications out of
the materials at hand; thus, Snit is designed to be able to
incorporate and build on any object, whether it's a hand-coded object,
a [package Tk] widget, an [package {Incr Tcl}] object,
a [package BWidget] or almost anything else.
[para]
This man page is intended to be a reference only; see the accompanying
[cmd snitfaq] for a gentler, more tutorial introduction to Snit
concepts.
[section REFERENCE]
[subsection {Type and Widget Definitions}]
Snit provides the following commands for defining new types:
[list_begin definitions]
[call [cmd snit::type] [arg name] [arg definition]]
Defines a new abstract data type called [arg name]. If [arg name] is
not a fully qualified command name, it is assumed to be a name in the
namespace in which the [cmd snit::type] command was called (usually the
global namespace). It returns the fully qualified name of the new type.
[nl]
The type name is then a command that is used to create objects of the
new type, along with other activities.
[nl]
The [cmd snit::type] [arg definition] block is a script that may
contain the following definitions:
[list_begin definitions]
[call [cmd typevariable] [arg name] [opt [const -array]] [opt [arg value]]]
Defines a type variable with the specified [arg name], and optionally
the specified [arg value]. Type variables are shared by all instances
of the type. If the [const -array] option is included, then
[arg value] should be a list of keyword/value pairs; it will be
assigned to the variable in the manner of [cmd "array set"].
[call [cmd typemethod] [arg name] [arg arglist] [arg body]]
Defines a type method, a subcommand of the new type command,
with the specified name, argument list, and
body. The [arg arglist] is a normal Tcl argument list and may contain
default arguments and the [var args] argument; however, it may not
contain the argument names [var type], [var self], [var selfns], or
[var win].
[nl]
The variable [var type] is automatically defined in the [arg body] to
the type's fully-qualified name. In addition,
type variables are automatically visible in the [arg body]
of every type method.
[nl]
If the [arg name] consists of two or more tokens, Snit handles it specially:
[example { typemethod {a b} {} { ... }
}]
The following two calls to this type method are equivalent:
[example { $type {a b}
$type a b
}]
In other words, [const a] becomes a subcommand of [var \$type], and
[const b] becomes a subcommand of [const a]. This makes it possible
to define a hierarchical command structure; see [cmd method], below,
for more examples.
[call [cmd typeconstructor] [arg body]]
The type constructor's [arg body] is executed once when the
type is first defined; it is typically used to
initialize array-valued type variables and to add
entries to [sectref {The Tk Option Database}].
[nl]
The variable [var type] is automatically defined in the [arg body],
and contains the type's fully-qualified name. In addition,
type variables are automatically visible in the [arg body] of the type
constructor.
[nl]
A type may define at most one type constructor.
[call [cmd variable] [arg name] [opt [const -array]] [opt [arg value]]]
Defines an instance variable, a private variable associated with each
instance of this type, and optionally its initial value.
If the [const -array] option is included, then
[arg value] should be a list of keyword/value pairs; it will be
assigned to the variable in the manner of [cmd "array set"].
[call [cmd method] [arg name] [arg arglist] [arg body]]
Defines an instance method, a subcommand of each instance of this
type, with the specified name, argument list and body.
The [arg arglist] is a normal Tcl argument list and may contain
default arguments and the [var args] argument.
[nl]
The method is implicitly passed the following arguments as well:
[var type], which contains the fully-qualified type name; [var self],
which contains the current instance command name; [var selfns], which
contains the name of the instance's private namespace; and [var win],
which contains the original instance name.
Consequently, the [arg arglist] may not contain the argument names
[const type], [const self], [const selfns], or [const win].
[nl]
An instance method defined in this way is said to be
[term {locally defined}].
[nl]
Type and instance variables are
automatically visible in all instance methods. If the type has
locally defined options, the [var options] array is also visible.
[nl]
If the [arg name] consists of two or more tokens, Snit handles it specially:
[example { method {a b} {} { ... }
}]
The following two calls to this type method are equivalent:
[example { $self {a b}
$self a b
}]
In other words, [const a] becomes a subcommand of [var \$self], and
[const b] becomes a subcommand of [const a]. This makes it possible
to define a hierarchical command structure. For example,
[example {% snit::type dog {
method {tail wag} {} {return "Wag, wag"}
method {tail droop} {} {return "Droop, droop"}
}
::dog
% dog spot
::spot
% spot tail wag
Wag, wag
% spot tail droop
Droop, droop
%
}]
What we've done is implicitly defined a "tail" method with subcommands
"wag" and "droop". Consequently, it's an error to define "tail"
explicitly.
[call [cmd option] [arg namespec] [opt [arg defaultValue]]]
[call [cmd option] [arg namespec] [opt [arg options...]]]
Defines an option for instances of this type, and optionally gives it
an initial value. The initial value defaults to the empty string if
no [arg defaultValue] is specified.
[nl]
An option defined in this way is said to be [term {locally defined}].
[nl]
The [arg namespec] is a list defining the option's
name, resource name, and class name, e.g.:
[example { option {-font font Font} {Courier 12}
}]
The option name must begin with a hyphen, and must not contain any
upper case letters. The resource name and class name are optional; if
not specified, the resource name defaults to the option name, minus
the hyphen, and the class name defaults to the resource name with the
first letter capitalized. Thus, the following statement is equivalent
to the previous example:
[example { option -font {Courier 12}
}]
See [sectref {The Tk Option Database}] for more information about
resource and class names.
[nl]
Options are normally set and retrieved using the standard
instance methods [method configure] and [method cget]; within instance code
(method bodies, etc.), option values are available through the
[var options] array:
[example { set myfont $options(-font)
}]
If the type defines any option handlers (e.g., [const -configuremethod]),
then it should probably use [method configure] and [method cget] to
access its options to avoid subtle errors.
[nl]
The [cmd option] statement may include the following options:
[list_begin definitions]
[lst_item "[const -default] [arg defvalue]"]
Defines the option's default value; the option's default value
will be "" otherwise.
[lst_item "[const -readonly] [arg flag]"]
The [arg flag] can be any Boolean value recognized by Tcl.
If [arg flag] is true, then the option is readonly--it can only
be set using [method configure] or [method configurelist]
at creation time, i.e., in the type's constructor.
[lst_item "[const -cgetmethod] [arg methodName]"]
Every locally-defined option may define a [const -cgetmethod];
it is called when the option's value is retrieved using the
[method cget] method. Whatever the method's [arg body] returns will
be the return value of the call to [method cget].
[nl]
The named method must take one argument, the option name.
For example, this code is equivalent to (though slower than)
Snit's default handling of [cmd cget]:
[example { option -font -cgetmethod GetOption
method GetOption {option} {
return $options($option)
}
}]
Note that it's possible for any number of options to share a
[const -cgetmethod].
[lst_item "[const -configuremethod] [arg methodName]"]
Every locally-defined option may define a [const -configuremethod];
it is called when the option's value is set using the
[method configure] or [method configurelist] methods. It is the
named method's responsibility to save the option's value; in other
words, the value will not be saved to the [var options()] array unless
the method saves it there.
[nl]
The named method must take two arguments, the option name and
its new value. For example, this code is equivalent to
(though slower than) Snit's default handling of [cmd configure]:
[example { option -font -configuremethod SetOption
method SetOption {option value} {
set options($option) $value
}
}]
Note that it's possible for any number of options to share a
single [const -configuremethod].
[lst_item "[const -validatemethod] [arg methodName]"]
Every locally-defined option may define a [const -validatemethod];
it is called when the option's value is set using the
[method configure] or [method configurelist] methods, just before
the [const -configuremethod] (if any). It is the
named method's responsibility to validate the option's new value,
and to throw an error if the value is invalid.
[nl]
The named method must take two arguments, the option name and
its new value. For example, this code verifies that
[const -flag]'s value is a valid Boolean value:
[example { option -font -validatemethod CheckBoolean
method CheckBoolean {option value} {
if {![string is boolean -strict $value]} {
error "option $option must have a boolean value."
}
}
}]
Note that it's possible for any number of options to share a
single [const -validatemethod].
[list_end]
[call [cmd constructor] [arg arglist] [arg body]]
The constructor definition specifies a [arg body] of code to be
executed when a new instance is created. The [arg arglist] is a
normal Tcl argument list and may contain default arguments and
the [var args] argument.
[nl]
As with methods, the arguments [var type], [var self], [var selfns],
and [var win] are defined implicitly, and all type and instance
variables are automatically visible in its [arg body].
[nl]
If the [arg definition] doesn't explicitly define the constructor,
Snit defines one implicitly. If the type declares at least one option
(whether locally or by delegation), the default constructor will
be defined as follows:
[example { constructor {args} {
$self configurelist $args
}
}]
For standard Tk widget behavior, the argument list should be
the single name [const args], as shown.
[nl]
If the [arg definition] defines neither a constructor nor
any options, the default constructor is defined as follows:
[example { constructor {} {}
}]
[call [cmd destructor] [arg body]]
The destructor is used to code any actions that must take place when
an instance of the type is destroyed: typically, the destruction of
anything created in the constructor.
[nl]
The destructor takes no explicit arguments; as with methods, the
arguments [var type], [var self], [var selfns], and [var win], are
defined implicitly, and all type and instance
variables are automatically visible in its [arg body].
[call [cmd proc] [arg name] [arg args] [arg body]]
Defines a new Tcl procedure in the type's namespace.
[nl]
The defined proc differs from a normal Tcl proc in that all type
variables are automatically visible. The proc can access
instance variables as well, provided that it is passed
[var selfns] (with precisely that name) as one of its arguments.
[nl]
Although they are not implicitly defined for procs, the argument names
[const type], [const self], and [const win] should be avoided.
[call [cmd delegate] [const method] [arg name] [const to] [arg comp] [opt "[const as] [arg target]"]]
Delegates method [arg name] to component [arg comp]. That is, when
method [arg name] is called on an instance of this type, the method
and its arguments will be passed to the named component's command
instead. That is, the following statement
[example { delegate method wag to tail
}]
is roughly equivalent to this explicitly defined method:
[example { method wag {args} {
uplevel $tail wag $args
}
}]
As with methods, the [arg name] may have multiple tokens; in this
case, the last token of the name is assumed to be the name of the
component's method.
[nl]
The optional [const as] clause allows you to specify the delegated
method name and possibly add some arguments:
[example { delegate method wagtail to tail as "wag briskly"
}]
[nl]
A method cannot be both locally defined and delegated.
[nl]
[const Note:] All forms of [cmd "delegate method"] can delegate to
both instance components and type components.
[call [cmd delegate] [const method] [arg name] [opt "[const to] [arg comp]"] [const using] [arg pattern]]
In this form of the [cmd delegate] statement, the [const using] clause
is used to specify the precise form of the command to which method
[arg name] name is delegated. In this form, the [const "to"] clause is
optional, since the chosen command might not involve any particular
component.
[nl]
The value of the [const using] clause is a list that may contain
any or all of the following substitution codes; these codes are
substituted with the described value to build the delegated command
prefix. Note that the following two statements are equivalent:
[example { delegate method wag to tail
delegate method wag to tail using "%c %m"
}]
Each element of the list becomes a single element of the delegated
command--it is never reparsed as a string.
[nl]
Substitutions:
[list_begin definitions]
[lst_item [const %%]]
This is replaced with a single "%". Thus, to pass the string "%c"
to the command as an argument, you'd write "%%c".
[lst_item [const %c]]
This is replaced with the named component's command.
[lst_item [const %m]]
This is replaced with the final token of the method [arg name]; if
the method [arg name] has one token, this is identical to [const %M].
[lst_item [const %M]]
This is replaced by the method [arg name]; if the [arg name] consists
of multiple tokens, they are joined by space characters.
[lst_item [const %j]]
This is replaced by the method [arg name]; if the [arg name] consists
of multiple tokens, they are joined by underscores ("_").
[lst_item [const %t]]
This is replaced with the fully qualified type name.
[lst_item [const %n]]
This is replaced with the name of the instance's private namespace.
[lst_item [const %s]]
This is replaced with the name of the instance command.
[lst_item [const %w]]
This is replaced with the original name of the instance command; for
Snit widgets and widget adaptors, it will be the Tk window name.
It remains constant, even if the instance command is renamed.
[list_end]
[call [cmd delegate] [const method] [const *] [opt "[const to] [arg comp]"] [opt "[const using] [arg pattern]"] [opt "[const except] [arg exceptions]"]]
The form [cmd "delegate method *"] delegates all unknown method names to the
specified [arg comp]onent. The [const except] clause can be used to
specify a list of [arg exceptions], i.e., method names that will not
be so delegated. The [const using] clause is defined as given above.
In this form, the statement must contain the [const to] clause, the
[const using] clause, or both.
[nl]
In fact, the "*" can be a list of two or more tokens whose last
element is "*", as in the following example:
[example { delegate method {tail *} to tail
}]
This implicitly defines the method [cmd tail] whose subcommands will
be delegated to the [var tail] component.
[call [cmd delegate] [const option] [arg namespec] [const to] [arg comp]]
[call [cmd delegate] [const option] [arg namespec] [const to] [arg comp] [const as] [arg target]]
[call [cmd delegate] [const option] [const *] [const to] [arg comp]]
[call [cmd delegate] [const option] [const *] [const to] [arg comp] [const except] [arg exceptions]]
Defines a delegated option; the [arg namespec] is defined as for the
[cmd option] statement.
When the [method configure], [method configurelist], or [method cget]
instance method is used to set or retrieve the option's value, the
equivalent [method configure] or [method cget] command will be applied
to the component as though these [cmd onconfigure] and [cmd oncget]
handlers were defined, where [arg name] is the option name from the
[arg namespec]:
[example { onconfigure name {value} {
$comp configure name $value
}
oncget name {
return [$comp cget name]
}
}]
If the [const as] clause is specified, then the [arg target] option
name is used in place of [arg name].
[nl]
The form [cmd "delegate option *"] delegates all unknown method names to the
specified [arg comp]onent. The [const except] clause can be used to
specify a list of [arg exceptions], i.e., option names that will not
be so delegated.
[nl]
Warning: options can only be delegated to a component if it supports
the [method configure] and [method cget] instance methods.
[nl]
Note that an option cannot be both locally defined and delegated.
[call [cmd component] [arg comp] \
[opt "[const -public] [arg method]"] \
[opt "[const -inherit] [arg flag]"]]
Explicitly declares a component called [arg comp], and automatically
defines the component's instance variable.
[nl]
If the [const -public] option is specified, then the option is made
public by defining a [arg method] whose subcommands are delegated
to the component e.g., specifying [const "-public mycomp"] is
equivalent to the following:
[example { component mycomp
delegate method {mymethod *} to mycomp
}]
If the [const -inherit] option is specified, then [arg flag] must be a
Boolean value; if [arg flag] is true then all unknown methods and
options will be delegated to this component. The name [const -inherit]
implies that instances of this new type inherit, in a sense, the
methods and options of the component. That is, [const "-inherit yes"] is
equivalent to:
[example { component mycomp
delegate option * to mycomp
delegate method * to mycomp
}]
[call [cmd delegate] [const typemethod] [arg name] [const to] [arg comp] [opt "[const as] [arg target]"]]
Delegates type method [arg name] to type component [arg comp]. That is, when
type method [arg name] is called on this type, the type method
and its arguments will be passed to the named type component's command
instead. That is, the following statement
[example { delegate typemethod lostdogs to pound
}]
is roughly equivalent to this explicitly defined method:
[example { typemethod lostdogs {args} {
uplevel $pound lostdogs $args
}
}]
As with type methods, the [arg name] may have multiple tokens; in this
case, the last token of the name is assumed to be the name of the
component's method.
[nl]
The optional [const as] clause allows you to specify the delegated
method name and possibly add some arguments:
[example { delegate typemethod lostdogs to pound as "get lostdogs"
}]
[nl]
A type method cannot be both locally defined and delegated.
[call [cmd delegate] [const typemethod] [arg name] [opt "[const to] [arg comp]"] [const using] [arg pattern]]
In this form of the [cmd delegate] statement, the [const using] clause
is used to specify the precise form of the command to which type method
[arg name] name is delegated. In this form, the [const "to"] clause is
optional, since the chosen command might not involve any particular
type component.
[nl]
The value of the [const using] clause is a list that may contain
any or all of the following substitution codes; these codes are
substituted with the described value to build the delegated command
prefix. Note that the following two statements are equivalent:
[example { delegate typemethod lostdogs to pound
delegate typemethod lostdogs to pound using "%c %m"
}]
Each element of the list becomes a single element of the delegated
command--it is never reparsed as a string.
[nl]
Substitutions:
[list_begin definitions]
[lst_item [const %%]]
This is replaced with a single "%". Thus, to pass the string "%c"
to the command as an argument, you'd write "%%c".
[lst_item [const %c]]
This is replaced with the named type component's command.
[lst_item [const %m]]
This is replaced with the final token of the type method [arg name]; if
the type method [arg name] has one token, this is identical to [const %M].
[lst_item [const %M]]
This is replaced by the type method [arg name]; if the [arg name] consists
of multiple tokens, they are joined by space characters.
[lst_item [const %j]]
This is replaced by the type method [arg name]; if the [arg name] consists
of multiple tokens, they are joined by underscores ("_").
[lst_item [const %t]]
This is replaced with the fully qualified type name.
[list_end]
[call [cmd delegate] [const typemethod] [const *] [opt "[const to] [arg comp]"] \
[opt "[const using] [arg pattern]"] [opt "[const except] [arg exceptions]"]]
The form [cmd "delegate typemethod *"] delegates all unknown type
method names to the
specified type component. The [const except] clause can be used to
specify a list of [arg exceptions], i.e., type method names that will not
be so delegated. The [const using] clause is defined as given above.
In this form, the statement must contain the [const to] clause, the
[const using] clause, or both.
[nl]
[const Note:] By default, Snit interprets [cmd "\$type foo"], where
[const "foo"] is
not a defined type method, as equivalent to [cmd "\$type create foo"], where
[const "foo"] is the name of a new instance of the type. If you
use [const "delegate typemethod *"], then the [method "create"] type
method must always be used explicitly.
[nl]
The "*" can be a list of two or more tokens whose last
element is "*", as in the following example:
[example { delegate typemethod {tail *} to tail
}]
This implicitly defines the type method [cmd tail] whose subcommands will
be delegated to the [var tail] type component.
[call [cmd typecomponent] [arg comp] \
[opt "[const -public] [arg typemethod]"] \
[opt "[const -inherit] [arg flag]"]]
Explicitly declares a type component called [arg comp], and automatically
defines the component's type variable. A type component is an arbitrary
command to which type methods and instance methods can be delegated;
the command's name is stored in a type variable.
[nl]
If the [const -public] option is specified, then the type component is made
public by defining a [arg typemethod] whose subcommands are delegated to
the type component, e.g., specifying [const "-public mytypemethod"]
is equivalent to the following:
[example { typecomponent mycomp
delegate typemethod {mytypemethod *} to mycomp
}]
If the [const -inherit] option is specified, then [arg flag] must be a
Boolean value; if [arg flag] is true then all unknown type methods
will be delegated to this type component. (See the note on "delegate
typemethod *", above.) The name [const -inherit]
implies that this type inherits, in a sense, the behavior of
the type component. That is, [const "-inherit yes"] is equivalent to:
[example { typecomponent mycomp
delegate typemethod * to mycomp
}]
[call [cmd pragma] [opt [arg options...]]]
The [cmd pragma] statement provides control over how Snit generates a
type. It takes the following options; in each case, [arg flag] must
be a Boolean value recognized by Tcl, e.g., [const 0], [const 1],
[const "yes"], [const "no"], and so
on.
[nl]
By setting the [const -hastypeinfo], [const -hastypedestroy], and
[const -hasinstances] pragmas to false and defining appropriate
type methods, you can create an ensemble command without any extraneous
behavior.
[list_begin definitions]
[lst_item "[const -canreplace] [arg flag]"]
If false (the default) Snit will not create an instance of a
[cmd snit::type] that has the same name as an existing command; this
prevents subtle errors. Setting this pragma to true restores the
behavior of Snit V0.93 and earlier versions.
[lst_item "[const -hastypeinfo] [arg flag]"]
If true (the default), the generated type will have a type method
called [cmd info] that is used for type introspection; the [cmd info]
type method is documented below. If false, it will not.
[lst_item "[const -hastypedestroy] [arg flag]"]
If true (the default), the generated type will have a type method
called [cmd destroy] that is used to destroy the type and all of its
instances. The [cmd destroy] type method is documented below. If
false, it will not.
[lst_item "[const -hastypemethods] [arg flag]"]
If true (the default), the generated type's type command will have
subcommands (type methods) as usual. If false, the type command
will serve only to create instances of the type; the first argument
is the instance name.
[nl]
This pragma and [const -hasinstances] cannot both be set false.
[lst_item "[const -hasinstances] [arg flag]"]
If true (the default), the generated type will have a type method
called [cmd create] that is used to create instances of the type,
along with a variety of instance-related features. If false, it will
not.
[nl]
This pragma and [const -hastypemethods] cannot both be set false.
[lst_item "[const -hasinfo] [arg flag]"]
If true (the default), instances of the generated type will have
an instance method called [method info] that is used for
instance introspection; the [method info]
method is documented below. If false, it will not.
[lst_item "[const -simpledispatch] [arg flag]"]
This pragma is intended to make simple, heavily-used abstract
data types (e.g., stacks and queues) more efficient.
[nl]
If false (the default), instance methods are dispatched normally. If
true, a faster dispatching scheme is used instead.
The speed comes at a price; with [const "-simpledispatch yes"] you
get the following limitations:
[list_begin bullet]
[bullet] Methods cannot be delegated.
[bullet] [cmd uplevel] and [cmd upvar] do not work as expected: the
caller's scope is two levels up rather than one.
[bullet] The option-handling methods
([cmd cget], [cmd configure], and [cmd configurelist]) are very
slightly slower.
[list_end]
[list_end]
[call [cmd expose] [arg comp]]
[call [cmd expose] [arg comp] [const as] [arg method]]
[comment {
The word "Deprecated" really needs to be boldface, and
there's no good way to do it, so I'm using "const".
}]
[const Deprecated.] To expose component [arg comp] publicly, use
[cmd component]'s [const -public] option.
[call [cmd onconfigure] [arg name] [arg arglist] [arg body]]
[const Deprecated.] Define [cmd option]'s [const -configuremethod]
option instead.
[nl]
As of version 0.95, the following definitions,
[example { option -myoption
onconfigure -myoption {value} {
# Code to save the option's value
}
}]
are implemented as follows:
[example { option -myoption -configuremethod _configure-myoption
method _configure-myoption {_option value} {
# Code to save the option's value
}
}]
[call [cmd oncget] [arg name] [arg body]]
[const Deprecated.] Define [cmd option]'s [const -cgetmethod]
option instead.
[nl]
As of version 0.95, the following definitions,
[example { option -myoption
oncget -myoption {
# Code to return the option's value
}
}]
are implemented as follows:
[example { option -myoption -cgetmethod _cget-myoption
method _cget-myoption {_option} {
# Code to return the option's value
}
}]
[list_end]
[call [cmd snit::widget] [arg name] [arg definition]]
This command defines a Snit megawidget type with the specified
[arg name]. The [arg definition] is defined as for [cmd snit::type].
A [cmd snit::widget] differs from a [cmd snit::type]
in these ways:
[list_begin bullet]
[bullet]
Every instance of a [cmd snit::widget] has an automatically-created
component called [var hull], which is normally a Tk frame widget.
Other widgets created as part of the megawidget will be created within
this widget.
[nl]
The hull component is initially created with the requested widget
name; then Snit does some magic, renaming the hull component and
installing its own instance command in its place.
The hull component's new name is saved in an instance variable called
[var hull].
[bullet]
The name of an instance must be valid Tk window name, and the parent
window must exist.
[list_end]
A [cmd snit::widget] definition can include any of statements allowed
in a [cmd snit::type] definition, and may also include the following:
[list_begin definitions]
[call [cmd widgetclass] [arg name]]
Sets the [cmd snit::widget]'s widget class to [arg name], overriding
the default. See [sectref {The Tk Option Database}] for more
information.
[call [cmd hulltype] [arg type]]
Determines the kind of widget used as the [cmd snit::widget]'s hull.
The [arg type] may be [const frame] (the default) or [const toplevel].
[list_end]
[call [cmd snit::widgetadaptor] [arg name] [arg definition]]
This command defines a Snit megawidget type with the specified name.
It differs from [cmd snit::widget] in that the instance's [var hull]
component is not created automatically, but is created in the
constructor and installed using the [cmd installhull] command. Once
the hull is installed, its instance command is renamed and replaced as
with normal [cmd snit::widget]s. The original command is again
accessible in the instance variable [var hull].
[nl]
Note that in general it is not possible to change the
[emph {widget class}] of a [cmd snit::widgetadaptor]'s hull widget.
[nl]
See [sectref {The Tk Option Database}] for information on how
[cmd snit::widgetadaptor]s interact with the option database.
[call [cmd snit::typemethod] [arg type] [arg name] [arg arglist] [arg body]]
Defines a new type method (or redefines an existing type method)
for a previously existing [arg type].
[call [cmd snit::method] [arg type] [arg name] [arg arglist] [arg body]]
Defines a new instance method (or redefines an existing instance
method) for a previously existing [arg type]. Note that delegated
instance methods can't be redefined.
[call [cmd snit::macro] [arg name] [arg arglist] [arg body]]
Defines a Snit macro with the specified [arg name], [arg arglist], and
[arg body]. Macros are used to define new type and widget
definition statements in terms of the statements defined in this man
page.
[nl]
A macro is simply a Tcl proc that is defined in the slave interpreter
used to compile type and widget definitions. Thus, macros have
access to all of the type and widget definition statements. See
[sectref "Macros and Meta-programming"] for more details.
[nl]
The macro [arg name] cannot be the same as any standard Tcl command,
or any Snit type or widget definition statement, e.g., you can't
redefine the [cmd method] or [cmd delegate] statements, or the
standard [cmd set], [cmd list], or [cmd string] commands.
[call [cmd snit::compile] [arg which] [arg type] [arg body]]
Snit defines a type, widget, or widgetadaptor by "compiling" the
definition into a Tcl script; this script is then evaluated in the
Tcl interpreter, which actually defines the new type.
[nl]
This command exposes the "compiler". Given a definition [arg body]
for the named [arg type], where [arg which] is [const type],
[const widget], or [const widgetadaptor], [cmd snit::compile] returns a list
of two elements. The first element is the fully qualified type name;
the second element is the definition script.
[nl]
[cmd snit::compile] is useful when additional processing
must be done on the Snit-generated code--if it must be instrumented,
for example, or run through the TclDevKit compiler. In addition, the
returned script could be saved in a ".tcl" file and used to define the
type as part of an application or library, thus saving the compilation
overhead at application start-up. Note that the
same version of Snit must be used at run-time as at compile-time.
[list_end]
[subsection {The Type Command}]
A type or widget definition creates a type command, which is used to
create instances of the type. The type command has this form:
[para]
[list_begin definitions]
[call [cmd {$type}] [arg typemethod] [arg args]...]
The [arg typemethod] can be any of the
[sectref "Standard Type Methods"] (e.g., [method create]),
or any type method defined in the type
definition.
The subsequent [arg args] depend on the specific [arg typemethod]
chosen.
[nl]
The type command is most often used to create new instances of the
type; hence, the [method create] method is assumed if the first
argument to the type command doesn't name a valid type method, unless
the type definition includes [cmd "delegate typemethod *"] or the
[const -hasinstances] pragma is set to false.
[nl]
Furthermore, Snit type commands can be called with no arguments at
all; in this case, the type command creates an instance with an
automatically generated name. In other words, provided that the type
has instances, the following commands are equivalent:
[example {snit::type dog { ... }
set mydog [dog create %AUTO%]
set mydog [dog %AUTO%]
set mydog [dog]
}]
This doesn't work for Snit widgets, for obvious reasons.
[list_end]
[subsection {Standard Type Methods}]
In addition to any type methods in the type's definition, all type and
widget commands will usually have at least the following subcommands:
[para]
[list_begin definitions]
[call [cmd {$type}] [method create] [arg name] [opt "[arg option] [arg value] ..."]]
Creates a new instance of the type, giving it the specified [arg name]
and calling the type's constructor.
[nl]
For [cmd snit::type]s, if [arg name] is not a fully-qualified command
name, it is assumed to be a name in the namespace in which the call to
[cmd snit::type] appears. The method returns the fully-qualified
instance name.
[nl]
For [cmd snit::widget]s and [cmd snit::widgetadaptor]s, [arg name]
must be a valid widget name; the method returns the widget name.
[nl]
So long as [arg name] does not conflict with any defined type method
name the [method create] keyword may be omitted, unless
the type definition includes [cmd "delegate typemethod *"] or the
[const -hasinstances] pragma is set to false.
[nl]
If the [arg name] includes the string [const %AUTO%], it will be
replaced with the string [const {$type$counter}] where [const {$type}] is
the type name and [const {$counter}] is a counter that increments each
time [const %AUTO%] is used for this type.
[nl]
By default, any arguments following the [arg name] will be a list of
[arg option] names and their [arg value]s; however, a type's
constructor can specify a different argument list.
[nl]
As of Snit V0.95, [method create] will throw an error if the [arg name]
is the same as any existing command--note that this was always true
for [cmd snit::widget]s and [cmd snit::widgetadaptor]s. You can
restore the previous behavior using the [const -canreplace] pragma.
[call [cmd {$type}] [method {info typevars}] [opt [arg pattern]]]
Returns a list of the type's type variables (excluding Snit internal
variables); all variable names are fully-qualified.
[nl]
If [arg pattern] is given, it's used as a [cmd {string match}]
pattern; only names that match the pattern are returned.
[call [cmd {$type}] [method {info typemethods}] [opt [arg pattern]]]
Returns a list of the names of the type's type methods. If the type
definition includes [cmd "delegate typemethod *"], the list will
include only the names of those implicitly delegated type methods
that have been called at least once and are still in the type method cache.
[nl]
If [arg pattern] is given, it's used as a [cmd {string match}]
pattern; only names that match the pattern are returned.
[call [cmd {$type}] [method {info instances}] [opt [arg pattern]]]
Returns a list of the type's instances. For [cmd snit::type]s, it
will be a list of fully-qualified instance names;
for [cmd snit::widget]s, it will be a list of Tk widget names.
[nl]
If [arg pattern] is given, it's used as a [cmd {string match}]
pattern; only names that match the pattern are returned.
[call [cmd {$type}] [method destroy]]
Destroys the type's instances, the type's namespace, and the type
command itself.
[list_end]
[subsection {The Instance Command}]
A Snit type or widget's [method create] type method creates objects of
the type; each object has a unique name that is also a Tcl command.
This command is used to access the object's methods and data, and has
this form:
[para]
[list_begin definitions]
[call [cmd {$object}] [arg method] [arg args...]]
The [arg method] can be any of the
[sectref "Standard Instance Methods"], or any instance method
defined in the type definition.
The subsequent [arg args] depend on the specific [arg method] chosen.
[list_end]
[subsection {Standard Instance Methods}]
In addition to any delegated or locally-defined instance methods in
the type's definition, all Snit objects will have at least the
following subcommands:
[para]
[list_begin definitions]
[call [cmd {$object}] [method configure] [opt [arg option]] [opt [arg value]] ...]
Assigns new values to one or more options. If called with one
argument, an [arg option] name, returns a list describing the option,
as Tk widgets do; if called with no arguments, returns a list of lists
describing all options, as Tk widgets do.
[nl]
Warning: This information will be available for delegated options only
if the component to which they are delegated has a [method configure]
method that returns this same kind of information.
[nl]
Note: Snit defines this method only if the type has at least one
option.
[call [cmd {$object}] [method configurelist] [arg optionlist]]
Like [method configure], but takes one argument, a list of options and
their values. It's mostly useful in the type constructor, but can be
used anywhere.
[nl]
Note: Snit defines this method only if the type has at least one
option.
[call [cmd {$object}] [method cget] [arg option]]
Returns the option's value.
[nl]
Note: Snit defines this method only if the type has at least one
option.
[call [cmd {$object}] [method destroy]]
Destroys the object, calling the [cmd destructor] and freeing all
related memory.
[nl]
[emph Note:]
The [method destroy] method isn't defined for [cmd snit::widget] or
[cmd snit::widgetadaptor] objects; instances of these are destroyed by
calling [package Tk]'s [cmd destroy] command, just as normal
widgets are.
[call [cmd {$object}] [method {info type}]]
Returns the instance's type.
[call [cmd {$object}] [method {info vars}] [opt [arg pattern]]]
Returns a list of the object's instance variables (excluding Snit
internal variables). The names are fully qualified.
[nl]
If [arg pattern] is given, it's used as a [cmd {string match}]
pattern; only names that match the pattern are returned.
[call [cmd {$object}] [method {info typevars}] [opt [arg pattern]]]
Returns a list of the object's type's type variables (excluding Snit
internal variables). The names are fully qualified.
[nl]
If [arg pattern] is given, it's used as a [cmd {string match}]
pattern; only names that match the pattern are returned.
[call [cmd {$object}] [method {info typemethods}] [opt [arg pattern]]]
Returns a list of the names of the instance's type's type methods. If the type
definition includes [cmd "delegate typemethod *"], the list will
include only the names of those implicitly delegated type methods
that have been called at least once and are still in the type method cache.
[nl]
If [arg pattern] is given, it's used as a [cmd {string match}]
pattern; only names that match the pattern are returned.
[call [cmd {$object}] [method {info options}] [opt [arg pattern]]]
Returns a list of the object's option names. This always includes
local options and explicitly delegated options. If unknown options
are delegated as well, and if the component to which they are
delegated responds to [cmd {$object configure}] like Tk widgets do,
then the result will include all possible unknown options that can
be delegated to the component.
[nl]
If [arg pattern] is given, it's used as a [cmd {string match}]
pattern; only names that match the pattern are returned.
[nl]
Note that the return value might be different for different instances
of the same type, if component object types can vary from one instance
to another.
[call [cmd {$object}] [method {info methods}] [opt [arg pattern]]]
Returns a list of the names of the instance's methods. If the type
definition includes [cmd "delegate method *"], the list will
include only the names of those implicitly delegated methods that have
been called at least once and are still in the method cache.
[nl]
If [arg pattern] is given, it's used as a [cmd {string match}]
pattern; only names that match the pattern are returned.
[list_end]
[subsection {Commands for use in Object Code}]
Snit defines the following commands for use in your object code:
that is, for use in type methods, instance methods, constructors,
destructors, onconfigure handlers, oncget handlers, and procs.
They do not reside in the ::snit:: namespace; instead, they are
created with the type, and can be used without qualification.
[list_begin definitions]
[call [cmd mymethod] [arg name] [opt [arg args...]]]
The [cmd mymethod] command is used for formatting callback commands to
be passed to other objects. It returns a command that when called
will invoke method [arg name] with the specified arguments, plus of
course any arguments added by the caller. In other words, both of the
following commands will cause the object's
[method dosomething] method to be called when the [cmd {$button}] is pressed:
[example { $button configure -command [list $self dosomething myargument]
$button configure -command [mymethod dosomething myargument]
}]
The chief distinction between the two is that the latter form will not
break if the object's command is renamed.
[call [cmd mytypemethod] [arg name] [opt [arg args...]]]
The [cmd mytypemethod] command is used for formatting callback commands to
be passed to other objects. It returns a command that when called
will invoke type method [arg name] with the specified arguments, plus of
course any arguments added by the caller. In other words, both of the
following commands will cause the object's [method dosomething] type method
to be called when [cmd {$button}] is pressed:
[example { $button configure -command [list $type dosomething myargument]
$button configure -command [mytypemethod dosomething myargument]
}]
Type commands cannot be renamed, so in practice there's little
difference between the two forms. [cmd mytypemethod] is provided for
parallelism with [cmd mymethod].
[call [cmd myproc] [arg name] [opt [arg args...]]]
The [cmd myproc] command is used for formatting callback commands to
be passed to other objects. It returns a command that when called
will invoke the type proc [arg name] with the specified arguments, plus of
course any arguments added by the caller. In other words, both of the
following commands will cause the object's [method dosomething] proc
to be called when [cmd {$button}] is pressed:
[example { $button configure -command [list ${type}::dosomething myargument]
$button configure -command [myproc dosomething myargument]
}]
[call [cmd myvar] [arg name]]
Given an instance variable name, returns the fully qualified name.
Use this if you're passing the variable to some other object, e.g., as
a [option -textvariable] to a Tk label widget.
[call [cmd mytypevar] [arg name]]
Given an type variable name, returns the fully qualified name. Use
this if you're passing the variable to some other object, e.g., as a
[option -textvariable] to a Tk label widget.
[call [cmd from] [arg argvName] [arg option] [opt [arg defvalue]]]
The [cmd from] command plucks an option value from a list of options
and their values, such as is passed into a type's [cmd constructor].
[arg argvName] must be the name of a variable containing such a list;
[arg option] is the name of the specific option.
[nl]
[cmd from] looks for [arg option] in the option list. If it is found,
it and its value are removed from the list, and the value is returned.
If [arg option] doesn't appear in the list, then the [arg defvalue] is
returned.
If the option is locally-defined option, and [arg defvalue] is
not specified, then the option's default value as specified in the
type definition will be returned instead.
[call [cmd install] [arg compName] [const using] [arg objType] [arg objName] [arg args...]]
Creates a new object of type [arg objType] called [arg objName]
and installs it as component [arg compName],
as described in [sectref {Components and Delegation}]. Any additional
[arg args...] are passed along with the name to the [arg objType]
command.
If this is a [cmd snit::type], then the following two commands are
equivalent:
[example { install myComp using myObjType $self.myComp args...
set myComp [myObjType $self.myComp args...]
}]
Note that whichever method is used, [arg compName] must still be
declared in the type definition using [cmd component], or must be
referenced in at least one [cmd delegate] statement.
[nl]
If this is a [cmd snit::widget] or [cmd snit::widgetadaptor], and if
options have been delegated to component [arg compName], then those
options will receive default values from the Tk option database. Note
that it doesn't matter whether the component to be installed is a
widget or not. See [sectref {The Tk Option Database}] for more
information.
[nl]
[cmd install] cannot be used to install type components; just assign
the type component's command name to the type component's variable
instead.
[call [cmd installhull] [const using] [arg widgetType] [arg args...]]
[call [cmd installhull] [arg name]]
The constructor of a [cmd snit::widgetadaptor] must create a widget to
be the object's hull component; the widget is installed as the hull
component using this command. Note that the installed widget's name
must be [const {$win}].
This command has two forms.
[nl]
The first form specifies the [arg widgetType] and the [arg args...]
(that is, the hardcoded option list) to use in creating the hull.
Given this form, [cmd installhull] creates the hull widget, and
initializes any options delegated to the hull from the Tk option
database.
[nl]
In the second form, the hull widget has already been created; note
that its name must be "$win". In this case, the Tk option database is
[emph not] queried for any options delegated to the hull.
The longer form is preferred; however, the shorter form allows the
programmer to adapt a widget created elsewhere, which is sometimes
useful. For example, it can be used to adapt a "page" widget created
by a [package BWidgets] tabbed notebook or pages manager widget.
[nl]
See [sectref {The Tk Option Database}] for more information
about [cmd snit::widgetadaptor]s and the option database.
[call [cmd variable] [arg name]]
Normally, instance variables are defined in the type definition along
with the options, methods, and so forth; such instance variables are
automatically visible in all instance code (e.g., method bodies). However,
instance code can use the [cmd variable] command to declare instance variables
that don't appear in the type definition, and also to bring variables
from other namespaces into scope in the usual way.
[nl]
It's generally clearest to define all instance variables in the type
definition, and omit declaring them in methods and so forth.
[nl]
Note that this is an instance-specific version of the standard Tcl
[cmd ::variable] command.
[call [cmd typevariable] [arg name]]
Normally, type variables are defined in the type definition, along
with the instance variables; such type variables are automatically
visible in all of the type's code. However, type methods, instance
methods and so forth can use [cmd typevariable] to declare type
variables that don't appear in the type definition.
[nl]
It's generally clearest to declare all type variables in the type
definition, and omit declaring them in methods, type methods, etc.
[call [cmd varname] [arg name]]
[const Deprecated.] Use [cmd myvar] instead.
[nl]
Given an instance variable name, returns the fully qualified name.
Use this if you're passing the variable to some other object, e.g., as
a [option -textvariable] to a Tk label widget.
[call [cmd typevarname] [arg name]]
[const Deprecated.] Use [cmd mytypevar] instead.
[nl]
Given a type variable name, returns the fully qualified name. Use
this if you're passing the type variable to some other object, e.g., as a
[option -textvariable] to a Tk label widget.
[call [cmd codename] [arg name]]
[const Deprecated.] Use [cmd myproc] instead.
Given the name of a proc (but not a type or instance method), returns
the fully-qualified command name, suitable for passing as a callback.
[list_end]
[para]
[subsection {Components and Delegation}]
When an object includes other objects, as when a toolbar contains
buttons or a GUI object contains an object that references a database,
the included object is called a component. The standard way to handle
component objects owned by a Snit object is to declare them using
[cmd component], which creates a component instance variable.
In the following example, a [cmd dog] object has a
[cmd tail] object:
[para]
[example { snit::type dog {
component mytail
constructor {args} {
set mytail [tail %AUTO% -partof $self]
$self configurelist $args
}
method wag {} {
$mytail wag
}
}
snit::type tail {
option -length 5
option -partof
method wag {} { return "Wag, wag, wag."}
}
}]
[para]
Because the [cmd tail] object's name is stored in an instance
variable, it's easily accessible in any method.
[para]
The [cmd install] command provides an alternate way
to create and install the component:
[para]
[example { snit::type dog {
component mytail
constructor {args} {
install mytail using tail %AUTO% -partof $self
$self configurelist $args
}
method wag {} {
$mytail wag
}
}
}]
[para]
For [cmd snit::type]s, the two methods are equivalent; for
[cmd snit::widget]s and [cmd snit::widgetadaptor]s, the [cmd install]
command properly initializes the widget's options by querying
[sectref {The Tk Option Database}].
[para]
In the above examples, the [cmd dog] object's [method wag] method
simply calls the [cmd tail] component's [method wag] method. In OO
jargon, this is called delegation. Snit provides an easier way to do
this:
[para]
[example { snit::type dog {
delegate method wag to mytail
constructor {args} {
install mytail using tail %AUTO% -partof $self
$self configurelist $args
}
}
}]
[para]
The [cmd delegate] statement in the type definition implicitly defines
the instance variable [var mytail] to hold the component's name
(though it's good form to use [cmd component] to declare it explicitly); it
also defines the [cmd dog] object's [method wag] method, delegating it
to the [var mytail] component.
[para]
If desired, all otherwise unknown methods can be delegated to a
specific component:
[para]
[example {
snit::type dog {
delegate method * to mytail
constructor {args} {
set mytail [tail %AUTO% -partof $self]
$self configurelist $args
}
method bark { return "Bark, bark, bark!" }
}
}]
[para]
In this case, a [cmd dog] object will handle its own [method bark]
method; but [method wag] will be passed along to [cmd mytail]. Any
other method, being recognized by neither [cmd dog] nor [cmd tail],
will simply raise an error.
[para]
Option delegation is similar to method delegation, except for the
interactions with the Tk option database; this is described in
[sectref "The Tk Option Database"].
[subsection {Type Components and Delegation}]
The relationship between type components and instance components is
identical to that between type variables and instance variables, and
that between type methods and instance methods. Just as an instance
component is an instance variable that holds the name of a command, so
a type component is a type variable that holds the name of a command.
In essence, a type component is a component that's shared by every
instance of the type.
[para]
Just as [cmd "delegate method"] can be used to delegate methods to
instance components, as described in
[sectref "Components and Delegation"], so [cmd "delegate typemethod"]
can be used to delegate type methods to type components.
[para]
Note also that as of Snit 0.95 [cmd "delegate method"] can delegate
methods to both instance components and type components.
[subsection {The Tk Option Database}]
This section describes how Snit interacts with the Tk option database,
and assumes the reader has a working knowledge of the option database
and its uses. The book [emph {Practical Programming in Tcl and Tk}]
by Welch et al has a good introduction to the option database, as does
[emph {Effective Tcl/Tk Programming}].
[para]
Snit is implemented so that most of the time it will simply do the
right thing with respect to the option database, provided that the
widget developer does the right thing by Snit. The body of this
section goes into great deal about what Snit requires. The following
is a brief statement of the requirements, for reference.
[para]
[list_begin bullet]
[bullet]
If the [cmd snit::widget]'s default widget class is not what is desired, set it
explicitly using [cmd widgetclass] in the widget definition.
[bullet]
When defining or delegating options, specify the resource and class
names explicitly when if the defaults aren't what you want.
[bullet]
Use [cmd {installhull using}] to install the hull for
[cmd snit::widgetadaptor]s.
[bullet]
Use [cmd install] to install all other components.
[list_end]
[para]
The interaction of Tk widgets with the option database is a complex
thing; the interaction of Snit with the option database is even more
so, and repays attention to detail.
[para]
[const {Setting the widget class:}] Every Tk widget has a widget class.
For Tk widgets, the widget class name is the just the widget type name
with an initial capital letter, e.g., the widget class for
[cmd button] widgets is "Button".
[para]
Similarly, the widget class of a [cmd snit::widget] defaults to the
unqualified type name with the first letter capitalized. For example,
the widget class of
[para]
[example { snit::widget ::mylibrary::scrolledText { ... }}]
[para]
is "ScrolledText". The widget class can also be set explicitly using
the [cmd widgetclass] statement within the [cmd snit::widget]
definition.
[para]
Note that only [cmd frame] and [cmd toplevel] widgets allow the user
to change the widget class name, which is why they are the only allowable
hull types for [cmd snit::widget]s.
[para]
The widget class of a [cmd snit::widgetadaptor] is just the widget
class of its hull widget; this cannot be changed unless the hull
widget is a [cmd frame] or [cmd toplevel], in which case it will
usually make more sense to use [cmd snit::widget] rather than
[cmd snit::widgetadaptor].
[para]
[const {Setting option resource names and classes:}] In Tk, every
option has three names: the option name, the resource name, and the
class name. The option name begins with a hyphen and is all lowercase;
it's used when creating widgets, and with the [cmd configure] and
[cmd cget] commands.
[para]
The resource and class names are used to initialize option default
values by querying the Tk option database. The resource name is
usually just the option name minus the hyphen, but may contain
uppercase letters at word boundaries; the class name is usually just
the resource name with an initial capital, but not always. For
example, here are the option, resource, and class names for several
[cmd text] widget options:
[para]
[example { -background background Background
-borderwidth borderWidth BorderWidth
-insertborderwidth insertBorderWidth BorderWidth
-padx padX Pad
}]
[para]
As is easily seen, sometimes the resource and class names can be
inferred from the option name, but not always.
[para]
Snit options also have a resource name and a class name. By default,
these names follow the rule given above: the resource name is the
option name without the hyphen, and the class name is the resource
name with an initial capital. This is true for both locally-defined
options and explicitly delegated options:
[para]
[example { snit::widget mywidget {
option -background
delegate option -borderwidth to hull
delegate option * to text
# ...
}
}]
[para]
In this case, the widget class name is "Mywidget". The widget has the
following options: [option -background], which is locally defined, and
[option -borderwidth], which is explicitly delegated; all other widgets are
delegated to a component called "text", which is probably a Tk
[cmd text] widget. If so, [cmd mywidget] has all the same options as
a [cmd text] widget. The option, resource, and class names are as
follows:
[para]
[example { -background background Background
-borderwidth borderwidth Borderwidth
-padx padX Pad
}]
[para]
Note that the locally defined option, [option -background], happens to have
the same three names as the standard Tk [option -background] option; and
[option -pad], which is delegated implicitly to the [var text]
component, has the
same three names for [cmd mywidget] as it does for the [cmd text]
widget. [option -borderwidth], on the other hand, has different resource and
class names than usual, because the internal word "width" isn't
capitalized. For consistency, it should be; this is done as follows:
[para]
[example { snit::widget mywidget {
option -background
delegate option {-borderwidth borderWidth} to hull
delegate option * to text
# ...
}
}]
[para]
The class name will default to "BorderWidth", as expected.
[para]
Suppose, however, that [cmd mywidget] also delegated
[option -padx] and
[option -pady] to the hull. In this case, both the resource name and the
class name must be specified explicitly:
[para]
[example { snit::widget mywidget {
option -background
delegate option {-borderwidth borderWidth} to hull
delegate option {-padx padX Pad} to hull
delegate option {-pady padY Pad} to hull
delegate option * to text
# ...
}
}]
[para]
[const {Querying the option database:}] If you set your widgetclass and
option names as described above, Snit will query the option database
when each instance is created, and will generally do the right thing
when it comes to querying the option database. The remainder of this
section goes into the gory details.
[para]
[const {Initializing locally defined options:}]
When an instance of a snit::widget is created, its locally defined
options are initialized as follows: each option's resource and class
names are used to query the Tk option database. If the result is
non-empty, it is used as the option's default; otherwise, the default
hardcoded in the type definition is used. In either case, the default
can be overridden by the caller. For example,
[para]
[example { option add *Mywidget.texture pebbled
snit::widget mywidget {
option -texture smooth
# ...
}
mywidget .mywidget -texture greasy
}]
[para]
Here, [option -texture] would normally default to "smooth", but because of
the entry added to the option database it defaults to "pebbled".
However, the caller has explicitly overridden the default, and so the
new widget will be "greasy".
[para]
[const {Initializing options delegated to the hull:}]
A [cmd snit::widget]'s hull is a widget, and given that its class has
been set it is expected to query the option database for itself. The
only exception concerns options that are delegated to it with a
different name. Consider the following code:
[para]
[example { option add *Mywidget.borderWidth 5
option add *Mywidget.relief sunken
option add *Mywidget.hullbackground red
option add *Mywidget.background green
snit::widget mywidget {
delegate option -borderwidth to hull
delegate option -hullbackground to hull as -background
delegate option * to hull
# ...
}
mywidget .mywidget
set A [.mywidget cget -relief]
set B [.mywidget cget -hullbackground]
set C [.mywidget cget -background]
set D [.mywidget cget -borderwidth]
}]
[para]
The question is, what are the values of variables A, B, C and D?
[para]
The value of A is "sunken". The hull is a Tk frame that has been
given the widget class "Mywidget"; it will automatically query the
option database and pick up this value. Since the [option -relief]
option is implicitly delegated to the hull, Snit takes no action.
[para]
The value of B is "red". The hull will automatically pick up the
value "green" for its [option -background] option, just as it picked up the
[option -relief] value. However, Snit knows that
[option -hullbackground] is mapped to
the hull's [option -background] option; hence, it queries the option database
for [option -hullbackground] and gets "red" and updates the hull
accordingly.
[para]
The value of C is also "red", because [option -background] is implicitly
delegated to the hull; thus, retrieving it is the same as retrieving
[option -hullbackground]. Note that this case is unusual; in practice,
[option -background] would probably be explicitly delegated to some other
component.
[para]
The value of D is "5", but not for the reason you think. Note that as
it is defined above, the resource name for [option -borderwidth]
defaults to "borderwidth", whereas the option database entry is
"borderWidth". As with [option -relief], the hull picks up its
own [option -borderwidth] option before Snit does anything. Because the
option is delegated under its own name, Snit assumes that the correct
thing has happened, and doesn't worry about it any further.
[para]
For [cmd snit::widgetadaptor]s, the case is somewhat altered. Widget
adaptors retain the widget class of their hull, and the hull is not
created automatically by Snit. Instead, the [cmd snit::widgetadaptor]
must call [cmd installhull] in its constructor. The normal way to do
this is as follows:
[para]
[example { snit::widgetadaptor mywidget {
# ...
constructor {args} {
# ...
installhull using text -foreground white
#
}
#...
}
}]
[para]
In this case, the [cmd installhull] command will create the hull using
a command like this:
[para]
[example { set hull [text $win -foreground white]
}]
[para]
The hull is a [cmd text] widget, so its widget class is "Text". Just
as with [cmd snit::widget] hulls, Snit assumes that it will pick up
all of its normal option values automatically; options delegated from
a different name are initialized from the option database in the same
way.
[para]
[const {Initializing options delegated to other components:}]
Non-hull components are matched against the option database in two
ways. First, a component widget remains a widget still, and therefore
is initialized from the option database in the usual way.
Second, the option database is queried for all options delegated to
the component, and the component is initialized accordingly--provided
that the [cmd install] command is used to create it.
[para]
Before option database support was added to Snit, the usual way to
create a component was to simply create it in the constructor and
assign its command name to the component variable:
[para]
[example { snit::widget mywidget {
delegate option -background to myComp
constructor {args} {
set myComp [text $win.text -foreground black]
}
}
}]
[para]
The drawback of this method is that Snit has no opportunity to
initialize the component properly. Hence, the following approach is
now used:
[para]
[example { snit::widget mywidget {
delegate option -background to myComp
constructor {args} {
install myComp using text $win.text -foreground black
}
}
}]
[para]
The [cmd install] command does the following:
[para]
[list_begin bullet]
[bullet]
Builds a list of the options explicitly included in the [cmd install]
command -- in this case, [option -foreground].
[bullet]
Queries the option database for all options delegated explicitly to
the named component.
[bullet]
Creates the component using the specified command, after inserting
into it a list of options and values read from the option database.
Thus, the explicitly included options ([option -foreground]) will override
anything read from the option database.
[bullet]
If the widget definition implicitly delegated options to the component
using [cmd "delegate option *"], then Snit calls the newly created
component's [cmd configure] method to receive a list of all of the
component's options. From this Snit builds a list of options
implicitly delegated to the component that were not explicitly
included in the [cmd install] command. For all such options, Snit
queries the option database and configures the component accordingly.
[list_end]
[para]
[const {Non-widget components:}] The option database is never queried
for [cmd snit::type]s, since it can only be queried given a Tk widget
name.
However, [cmd snit::widget]s can have non-widget components. And if
options are delegated to those components, and if the [cmd install]
command is used to install those components, then they will be
initialized from the option database just as widget components are.
[para]
[subsection {Macros and Meta-programming}]
The [cmd snit::macro] command enables a certain amount of
meta-programming with Snit classes. For example, suppose you like to
define properties: instance variables that have set/get methods. Your
code might look like this:
[example { snit::type dog {
variable mood happy
method getmood {} {
return $mood
}
method setmood {newmood} {
set mood $newmood
}
}
}]
That's nine lines of text per property. Or, you could define the
following [cmd snit::macro]:
[example { snit::macro property {name initValue} {
variable $name $initValue
method get$name {} "return $name"
method set$name {value} "set $name \$value"
}
}]
Note that a [cmd snit::macro] is just a normal Tcl proc defined in
the slave interpreter used to compile type and widget definitions; as
a result, it has access to all the commands used to define types and
widgets.
[para]
Given this new macro, you can define a property in one line of code:
[example { snit::type dog {
property mood happy
}
}]
Within a macro, the commands [cmd variable] and [cmd proc] refer to
the Snit type-definition commands, not the standard Tcl commands. To
get the standard Tcl commands, use [cmd _variable] and [cmd _proc].
[para]
Because a single slave interpreter is used for compiling all Snit
types and widgets in the application, there's the possibility of macro
name collisions. If you're writing a reuseable package using Snit,
and you use some [cmd snit::macro]s, define them in your package
namespace:
[example { snit::macro mypkg::property {name initValue} { ... }
snit::type dog {
mypkg::property mood happy
}
}]
This leaves the global namespace open for application authors.
[para]
[section CAVEATS]
Please understand that while Snit is well-tested and fairly stable,
it is still evolving (we have not yet reached Snit 1.0).
If you have problems, find bugs, or new ideas you are hereby cordially
invited to submit a report of your problem, bug, or idea at the
SourceForge trackers for tcllib, which can be found at
[uri http://sourceforge.net/projects/tcllib/].
The relevant category is [emph snit].
[para]
Additionally, you might wish to join the Snit mailing list;
see [uri http://www.wjduquette.com/snit] for details.
[para]
One particular area to watch is using [cmd snit::widgetadaptor] to
adapt megawidgets created by other megawidget packages; correct
widget destruction depends on the order of the <Destroy> bindings.
The wisest course is simply not to do this.
[section {KNOWN BUGS}]
[list_begin bullet]
[bullet]
Error stack traces returned by Snit are extremely ugly and typically
contain far too much information about Snit internals.
[bullet]
Also see the SourceForge Trackers at
[uri http://sourceforge.net/projects/tcllib/], category [emph snit].
[list_end]
[section HISTORY]
During the course of developing Notebook
(See [uri http://www.wjduquette.com/notebook]), my Tcl-based personal
notebook application, I found I was writing it as a collection of
objects. I wasn't using any particular object-oriented framework; I
was just writing objects in pure Tcl following the guidelines in my
Guide to Object Commands
(see [uri http://www.wjduquette.com/tcl/objects.html]), along with a
few other tricks I'd picked up since. And though it was working well,
it quickly became tiresome because of the amount of boilerplate
code associated with each new object type.
[para]
So that was one thing--tedium is a powerful motivator. But the other
thing I noticed is that I wasn't using inheritance at all, and I
wasn't missing it. Instead, I was using delegation: objects that
created other objects and delegated methods to them.
[para]
And I said to myself, "This is getting tedious...there has got to be a
better way." And one afternoon, on a whim, I started working on Snit,
an object system that works the way Tcl works. Snit doesn't support
inheritance, but it's great at delegation, and it makes creating
megawidgets easy.
[para]
If you have any comments or suggestions (or bug reports!) don't
hesitate to send me e-mail at [uri will@wjduquette.com]. In addition,
there's a Snit mailing list; you can find out more about it at the
Snit home page (see [uri http://www.wjduquette.com/snit]).
[para]
[section CREDITS]
Snit has been designed and implemented from the very beginning by
William H. Duquette. However, much credit belongs to the following
people for using Snit and providing me with valuable feedback: Rolf
Ade, Colin McCormack, Jose Nazario, Jeff Godfrey, Maurice Diamanti,
Egon Pasztor, David S. Cargo, Tom Krehbiel, Michael Cleverly,
Andreas Kupries, Marty Backe, Andy Goth, Jeff Hobbs, and Brian
Griffin. If I've forgotten anyone, my apologies; let me know and
I'll add your name to the list.
[keywords class {object oriented} object C++]
[keywords Snit type {Incr Tcl} BWidget]
[keywords widget adaptors {widget adaptors} {mega widget}]
[manpage_end]
|