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
|
;;; strokes.el -- Control XEmacs through mouse strokes --
;; Thursday September 4 12:40:41 EDT 1997
;; Copyright (C) 1997 Free Software Foundation, Inc.
;; Author: David Bakhash <cadet@mit.edu>
;; Maintainer: David Bakhash <cadet@mit.edu>
;; Version: 2.4-beta
;; Created: 12 April 1997
;; Keywords: lisp, mouse, extensions
;; This file is part of XEmacs.
;; XEmacs is free software; you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2 of the License, or
;; (at your option) any later version.
;; XEmacs program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with XEmacs; see the file COPYING. If not, write to the Free
;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
;; 02111-1307, USA.
;;; Synched up with: Not in FSF.
;;; Commentary:
;; This package is written for for XEmacs v20.*. This is the strokes
;; package. It is intended to allow the user to control XEmacs by
;; means of mouse strokes. Once strokes is loaded, you can always get
;; help be invoking `strokes-help':
;; > M-x strokes-help
;; and you can learn how to use the package. A mouse stroke, for now,
;; can be defined as holding the middle button, for instance, and then
;; moving the mouse in whatever pattern you wish, which you have set
;; XEmacs to understand as mapping to a given command. For example,
;; you may wish the have a mouse stroke that looks like a capital `C'
;; which means `copy-region-as-kill'. Treat strokes just like you do
;; key bindings. For example, XEmacs sets key bindings globally with
;; the `global-set-key' command. Likewise, you can do
;; > M-x global-set-stroke
;; to interactively program in a stroke. It would be wise to set the
;; first one to this very command, so that from then on, you invoke
;; `global-set-stroke' with a stroke. likewise, there may eventually
;; be a `local-set-stroke' command, also analogous to `local-set-key'.
;; You can always unset the last stroke definition with the command
;; > M-x strokes-unset-last-stroke
;; and the last stroke that was added to `strokes-global-map' will be
;; removed.
;; Other analogies between strokes and key bindings are as follows:
;; 1) To describe a stroke binding, you can type
;; > M-x describe-stroke
;; analogous to `describe-key'. It's also wise to have a
;; stroke, like an `h', for help, or a `?', mapped to
;; `describe-stroke'.
;; 2) stroke bindings are set internally through the Lisp function
;; `define-stroke', similar to the `define-key' function. some
;; examples for a 3x3 stroke grid would be
;; (define-stroke c-mode-stroke-map
;; '((0 . 0) (1 . 1) (2 . 2))
;; 'kill-region)
;; (define-stroke strokes-global-map
;; '((0 . 0) (0 . 1) (0 . 2) (1 . 2) (2 . 2))
;; 'list-buffers)
;; however, if you would probably just have the user enter in
;; the stroke interactively and then set the stroke to whatever
;; he/she entered. The Lisp function to interactively read a
;; stroke is `strokes-read-stroke'. This is especially helpful
;; when you're on a fast computer that can handle a 9x9 stroke
;; grid.
;; NOTE: only global stroke bindings are currently implemented,
;; however mode- and buffer-local stroke bindings may eventually
;; be implemented in a future version.
;; The important variables to be aware of for this package are listed
;; below. They can all be altered through the customizing package via
;; > M-x customize
;; and customizing the group named `strokes'. You can also read
;; documentation on the variables there.
;; `strokes-minimum-match-score' (determines the threshold of error
;; that makes a stroke acceptable or unacceptable. If your strokes
;; aren't matching, then you should raise this variable.
;; `strokes-grid-resolution' (determines the grid dimensions that you
;; use when defining/reading strokes. The finer the grid your
;; computer can handle, the more you can do, but even a 3x3 grid is
;; pretty cool.) The default value (7) should be fine for most decent
;; computers. NOTE: This variable should not be set to a number less
;; than 3.
;; `strokes-display-strokes-buffer' will allow you to hide the strokes
;; buffer when doing simple strokes. This is a speedup for slow
;; computers as well as people who don't want to see their strokes.
;; If you find that your mouse is accelerating too fast, you can
;; execute the UNIX X command to slow it down. A good possibility is
;; % xset m 5/4 8
;; which seems, heuristically, to work okay, without much disruption.
;; Whenever you load in the strokes package, you will be able to save
;; what you've done upon exiting XEmacs. You can also do
;; > M-x save-strokes
;; and it will save your strokes in ~/.strokes, or you may wish to
;; change this by setting the variable `strokes-file'.
;; Note that internally, all of the routines that are part of this
;; package are able to deal with complex strokes, as they are a
;; superset of simple strokes. However, the default of this package
;; will map mouse button2 to the command `strokes-do-stroke', and NOT
;; `strokes-do-complex-stroke'. If you wish to use complex strokes,
;; you will have to override this key mapping. Complex strokes are
;; terminated with mouse button3. The strokes package will not
;; interfere with `mouse-yank', but you may want to examine how this
;; is done (see the variable `strokes-click-command')
;; To get strokes to work as part of your your setup, then you'll have
;; put the strokes package in your load-path (preferably
;; byte-compiled) and then add the following to your .emacs file (or
;; wherever you put XEmacs-specific startup preferences):
;; (and (console-on-window-system-p)
;; (require 'strokes))
;; Once loaded, you can start stroking. You can also toggle between
;; strokes mode by simple typing
;; > M-x strokes-mode
;; I am now in the process of porting this package to Emacs. I also
;; hope that, with the help of others, this package will be useful in
;; entering in pictographic-like language text using the mouse
;; (i.e. Korean). Japanese and Chinese are a bit trickier, but I'm
;; sure that with help it can be done. The next version will allow
;; the user to enter strokes which "remove the pencil from the paper"
;; so to speak, so one character can have multiple strokes.
;; You can read more about strokes at:
;; http://www.mit.edu/people/cadet/strokes-help.html
;; If you're interested in using strokes for writing English into
;; XEmacs using strokes, then you'll want to read about it on the web
;; page above or just download from
;; http://www.mit.edu/people/cadet/strokes-abc.el, which is nothing
;; but a file with some helper commands for inserting alphanumerics
;; and punctuation.
;; Great thanks to Rob Ristroph for his generosity in letting me use
;; his PC to develop this, Jason Johnson for his help in algorithms,
;; Euna Kim for her help in Korean, and massive thanks to the helpful
;; guys on the help instance on athena (zeno, jered, amu, gsstark,
;; ghudson, etc) Special thanks to Steve Baur, Kyle Jones, and Hrvoje
;; Niksic for all their help. And special thanks to Dave Gillespie
;; for all the elisp help--he is responsible for helping me use the cl
;; macros at (near) max speed.
;; Tasks: (what I'm getting ready for future version)...
;; 2) use 'strokes-read-complex-stroke for korean, etc.
;; 4) buffer-local 'strokes-local-map, and mode-stroke-maps would be nice
;; 6) add some hooks, like `strokes-read-stroke-hook'
;; 7) See what people think of the factory settings. Should I change
;; them? They're all pretty arbitrary in a way. I guess they
;; should be minimal, but computers are getting lots faster, and
;; if I choose the defaults too conservatively, then strokes will
;; surely disappoint some people on decent machines (until they
;; figure out M-x customize). I need feedback.
;; Other: I always have the most beta version of strokes, so if you
;; want it just let me know.
;;; Change Log:
;; 1.3: provided user variable `strokes-use-strokes-buffer' to let
;; users hide the strokes and strokes buffer when entering simple
;; strokes.
;; 1.3: cleaned up most leaks.
;; 1.3: with Jari Aalto's help, cleaned up overall program.
;; 1.3: added `strokes-help' for help on strokes
;; 1.3: fixed 'strokes-load-hook bug
;; 1.3: email address change: now <cadet@mit.edu>
;; 1.3: added `strokes-report-bug' based on efs/dired's
;; `dired-report-bug'
;; 1.3: added more dialog-box queries for mouse-event stuff.
;; 1.4: allowed strokes to invoke kbd macros as well (thanks gsstark!)
;; 2.0: fixed up ordering of certain functions.
;; 2.0: fixed bug applying to strokes in dedicated and minibuffer
;; windows.
;; 2.0: punted the C-h way of invoking strokes help routines.
;; 2.0: fixed `strokes-define-stroke' so it would error check against
;; defining strokes that were too short (really clicks) 2.0:
;; added `strokes-toggle-strokes-buffer' interactive function
;; 2.0: added `customize' support, thanks to patch from Hrvoje
;; (thanks)
;; 2.1: strokes no longer forces `mouse-yank-at-point' to t on
;; mouse-yank (i.e. `mouse-yank-at-point' is up to you again)
;; 2.1: toggling strokes-mode off and then back on no longer deletes
;; the strokes that you programmed in but didn't save before
;; toggling off strokes-mode.
;; 2.1: advised may functions for modes like VM and w3 so that they
;; too can use strokes, while still maintaining old button2
;; functionality.
;; 2.1: with Steve's help, got the autoload for `strokes-mode' and
;; fixed up the package so loading it does not enable strokes
;; until user calls `strokes-mode'.
;; 2.2: made sure that abbrev-mode was off in the ` *strokes*' buffer
;; 2.2: added more dired advice for mouse permissions commands
;; 2.2: added some checks to see if saving strokes is really necessary
;; so the user doesn't get prompted aimlessly.
;; 2.2: change the `strokes-lift' symbol to a keyword of value
;; `:strokes-lift' for legibility. IF YOUR OLD STROKES DON'T
;; WORK, THIS IS PROBABLY WHY.
;; 2.2: I might have to change this back to `'strokes-lift' because
;; the keyword fails in emacs, though I don't know why.
;; 2.2: `strokes-describe-stroke' is nicer during recursive edits
;; 2.2: provided `strokes-fill-stroke' to fill in empty spaces of strokes
;; as an important step towards platform (speed) independence.
;; Because of this, I moved the global setting of
;; `strokes-last-stroke' from
;; `strokes-eliminate-consecutive-redundancies' to
;; `strokes-fill-stroke' since the latter comes later in
;; processing a user stroke.
;; 2.2: Finally changed the defaults, so now `strokes-grid-resolution' is 9
;; and `strokes-minimum-match-score' is 1000 by default. This
;; will surely mess some people up, but if so, just set it back
;; w/ M-x customize.
;; 2.2: Fixed up the mechanism for updating the
;; `strokes-window-configuration'. Now it only uses one function
;; (`strokes-update-window-configuration') which does it all, and
;; much more efficiently (thanks RMS!).
;; 2.2 Fixed up the appearance of the *strokes* buffer so that there
;; are no ugly line truncations, and I got rid of the bug which
;; would draw the stroke on the wrong line. I still wish that
;; `event-closest-point' was smarter. In fact,
;; `event-closest-point' does *not* do what its name suggests.
;; 2.3 Added more to `strokes-update-window-configuration' so it goes
;; to hell less often
;; 2.3 `strokes-mode' no longer will undefined keys unless it's sure
;; that the user had had them mapped to a strokes command.
;; 2.3 Added more magic autoload statements so strokes work more
;; smoothly. similarly, I made strokes-mode turn itself on when
;; the user defines a stroke (thanks Hrvoje).
;; 2.3 Added "Strokes" to the modeline when strokes is on, and allow
;; toggling strokes with mouse button2.
;; 2.3 Added `list-strokes', which is a really nice function which
;; graphically lists all the strokes that the user has defined
;; and their corresponding commands. `list-strokes' will
;; appropriately colorize the pixmaps to display some time info.
;; 2.4 Added all new functionality to strokes by allowing the user to
;; enter strokes in graphically into XEmacs, allowing true graphic
;; editing, Chinese/Japanese, etc. User simply uses C-button2 to
;; draw strokes (function: `strokes-compose-complex-stroke'). Then
;; after the glyph gets inserted into the current buffer at (point),
;; the use can treat that glyph as any other character, and
;; copy/paste/delete/undo, etc. Also, when the user would like to
;; save/send the glyphs (to other XEmacs users, of course), he/she
;; can use the helper functions:
;;
;; i. M-x strokes-encode-buffer -- Ascii-encodes and compresses
;; strokes to base-64.
;; ii. M-x strokes-decode-buffer -- Decodes ascii-encoded strokes
;; back into glyphs.
;; 2.4 With help from Kyle fixed the itimer (timeout event) bug, where I
;; forgot to check for timeouts.
;; 2.4 Around this time, made a successful port of strokes.el for emacs.
;; 2.4 Made added `strokes-xpm-header' as a variable.
;; 2.4 Changed the default value of `strokes-character' from `o' to
;; `@' since it looks nicer when drawn.
;; 2.4 Changed `strokes-click-p' so that it considers only a stroke
;; of length <= 1 a click, as opposed to a length 2 being a
;; click.
;; 2.4 Totally made the the function `strokes-read-stroke' (and a bit
;; on `strokes-read-complex-stroke') more efficient and robust,
;; making the former use the optional event passed to it, and
;; thus not losing the first mouse event position when reading a
;; stroke on the fly.
;; 2.4 Finally fixed the mouse-yank / mouse-yank-at-point bug (after
;; months of struggling with it). I simply inserted a (sit-for 0)
;; before the (command-execute strokes-click-command) and that
;; patched it up. I'd thought that it was a kludge, but I later
;; found out that it wasn't, as redisplay has several states, and
;; command-execute often must decide which of two states must be
;; considered when executing a command. The (sit-for 0) merely
;; allowed redisplay to be sure to wait for the ` *strokes*'
;; buffer to vanish before executing the command (thanks for the
;; explanation of why my frobbing worked Kyle). Fixing this bug
;; also (magically) fixed the bug which prevented strokes from
;; executing a stroke in a mode which had it's own binding for
;; button-2, such as w3 when the variable
;; `strokes-use-strokes-buffer' is non-nil. It used to be that
;; if you chose to view your strokes, then you couldn't use
;; strokes properly in modes like VM or w3. Now you can!
;; 2.4 Replaced `kill-emacs-hook' with `kill-emacs-query-functions'
;; for prompting the user to save his/her strokes, since
;; `kill-emacs-hook' was not the right hook to use.
;; 2.4 Having `strokes-update-window-configuration' bound to
;; `select-frame-hook' was a heavy function for such a commonly
;; run hook -- especially since event-Xt.c (?) will add the
;; eval-event to the event queue. So the effect was that if XEmacs
;; was doing an interpreter-intensive task while the user (re)selected
;; the frame n times, then the intensive window config updating
;; took place n times. So to deal, I put in some extra checks to
;; see if the frame parameters really changed, making an update
;; worthwhile. See `strokes-update-window-configuration-plist'.
;; 2.4 For XEmacs 20.*, all hashtables were changed to char-tables,
;; since this is more modern, more efficient, and faster. God only
;; knows how inefficient the hash function was before the advent of
;; char-tables. I also did this out of necessity since MIT's
;; version of XEmacs-20.2 was hashtable-buggy.
;;; Code:
;;; Requirements and provisions...
(autoload 'reporter-submit-bug-report "reporter")
(autoload 'mail-position-on-field "sendmail")
(eval-when-compile
(mapc 'require '(xpm-mode pp annotations reporter advice view-less)))
;;; Constants...
(defconst strokes-version "2.4-beta")
(defconst strokes-bug-address "cadet@mit.edu")
(defconst strokes-lift :strokes-lift
"Symbol representing a stroke lift event for complex strokes.
Complex strokes are those which contain two or more simple strokes.
This will be useful for when XEmacs understands Chinese.")
(defconst strokes-xpm-header "/* XPM */
static char * stroke_xpm[] = {
/* width height ncolors cpp [x_hot y_hot] */
\"33 33 9 1 26 23\",
/* colors */
\" c none s none\",
\"* c #000000 s foreground\",
\"R c #FFFF00000000\",
\"O c #FFFF80000000\",
\"Y c #FFFFFFFF0000\",
\"G c #0000FFFF0000\",
\"B c #00000000FFFF\",
\"P c #FFFF0000FFFF\",
\". c #45458B8B0000\",
/* pixels */\n"
"The header to all xpm buffers created by strokes")
;;; user variables...
(defgroup strokes nil
"Control Emacs through mouse strokes."
:group 'mouse
:group 'lisp
:group 'extensions)
;; This is an internal variable, but we defcustom it so Customize can
;; use it.
;;;###autoload
(defcustom strokes-mode nil
"Non-nil when `strokes' is globally enabled."
:type 'boolean
:set (lambda (symbol value)
(strokes-mode (or value 0)))
:initialize 'custom-initialize-default
:require 'strokes
:group 'strokes)
(defcustom strokes-modeline-string " Strokes"
"*Modeline identification when strokes are on \(default is \" Strokes\"\)."
:type 'string
:group 'strokes)
(defcustom strokes-character ?@
"*Character used when drawing strokes in the strokes buffer.
\(The default is lower-case `@', which works okay\)."
:type 'character
:group 'strokes)
(defcustom strokes-minimum-match-score 1000
"*Minimum score for a stroke to be considered a possible match.
Requiring a perfect match would set this variable to 0.
The default value is 1000, but it's mostly dependent on how precisely
you manage to replicate your user-defined strokes. It also depends on
the value of `strokes-grid-resolution', since a higher grid resolution
will correspond to more sample points, and thus more distance
measurements. Usually, this is not a problem since you first set
`strokes-grid-resolution' based on what your computer seems to be able
to handle (though the defaults are usually more than sufficent), and
then you can set `strokes-minimum-match-score' to something that works
for you. The only purpose of this variable is to insure that if you
do a bogus stroke that really doesn't match any of the predefined
ones, then strokes should NOT pick the one that came closest."
:type 'integer
:group 'strokes)
(defcustom strokes-grid-resolution 9
"*Integer defining dimensions of the stroke grid.
The grid is a square grid, where STROKES-GRID-RESOLUTION defaults to
`9', making a 9x9 grid whose coordinates go from (0 . 0) on the top
left to ((STROKES-GRID-RESOLUTION - 1) . (STROKES-GRID-RESOLUTION - 1))
on the bottom right. The greater the resolution, the more intricate
your strokes can be.
NOTE: This variable should be odd and MUST NOT be less than 3 and need
not be greater than 33, which is the resolution of the pixmaps.
WARNING: Changing the value of this variable will gravely affect the
strokes you have already programmed in. You should try to
figure out what it should be based on your needs and on how
quick the particular platform(s) you're operating on, and
only then start programming in your custom strokes."
:type 'integer
:group 'strokes)
(defcustom strokes-file "~/.strokes"
"*File containing saved strokes for stroke-mode (default is ~/.strokes)."
:type 'file
:group 'strokes)
(defcustom strokes-buffer-name " *strokes*"
"The buffer that the strokes take place in (default is ` *strokes*')."
:type 'string
:group 'strokes)
(defcustom strokes-use-strokes-buffer t
"*If non-nil, the strokes buffer is used and strokes are displayed.
If nil, strokes will be read the same, however the user will not be
able to see the strokes. This be helpful for people who don't like
the delay in switching to the strokes buffer."
:type 'boolean
:group 'strokes)
(defcustom strokes-click-command 'mouse-yank
"*Command to execute when stroke is actually a `click' event.
This is set to `mouse-yank' by default."
:type 'function
:group 'strokes)
;;; internal variables...
(defvar strokes-window-configuration nil
"The special window configuration used when entering strokes.
This is set properly in the function `strokes-update-window-configuration'.")
(defvar strokes-window-configuration-plist
(list 'frame nil 'frame-height nil 'frame-width nil)
"Plist describing the state of the current strokes-window-configuration.
The plist consists of the following keys:
'frame Frame to draw strokes in.
'frame-height Height of the frame.
'frame-width Width of the frame.")
(defvar strokes-last-stroke nil
"Last stroke entered by the user.
Its value gets set every time the function
`strokes-fill-stroke' gets called,
since that is the best time to set the variable")
(defvar strokes-global-map '()
"Association list of strokes and their definitions.
Each entry is (STROKE . COMMAND) where STROKE is itself a list of
coordinates (X . Y) where X and Y are lists of positions on the
normalized stroke grid, with the top left at (0 . 0). COMMAND is the
corresponding interactive function")
(defvar strokes-load-hook nil
"Function or functions to be called when `strokes' is loaded.")
;;; ### NOT IMPLEMENTED YET ###
;;(defvar edit-strokes-menu
;; '("Edit-Strokes"
;; ["Add stroke..." strokes-global-set-stroke t]
;; ["Delete stroke..." strokes-edit-delete-stroke t]
;; ["Change stroke" strokes-smaller t]
;; ["Change definition" strokes-larger t]
;; ["[Re]List Strokes chronologically" strokes-list-strokes t]
;; ["[Re]List Strokes alphabetically" strokes-list-strokes t]
;; ["Quit" strokes-edit-quit t]
;; ))
;;; Macros...
(defmacro strokes-while-inhibiting-garbage-collector (&rest forms)
"Execute FORMS without interference from the garbage collector."
`(let ((gc-cons-threshold 134217727))
,@forms))
(defsubst strokes-click-p (stroke)
"Non-nil if STROKE is really click."
(< (length stroke) 2))
;;; old, but worked pretty good (just in case)...
;;(defmacro strokes-define-stroke (stroke-map stroke def)
;; "Add STROKE to STROKE-MAP alist with given command DEF"
;; (list 'if (list '< (list 'length stroke) 3)
;; (list 'error
;; "That's a click, not a stroke. See `strokes-click-command'")
;; (list 'setq stroke-map (list 'cons (list 'cons stroke def)
;; (list 'remassoc stroke stroke-map)))))
(defmacro strokes-define-stroke (stroke-map stroke def)
"Add STROKE to STROKE-MAP alist with given command DEF."
`(if (strokes-click-p ,stroke)
(error "That's a click, not a stroke; see `strokes-click-command'")
(setq ,stroke-map (cons (cons ,stroke ,def)
(remassoc ,stroke ,stroke-map)))))
(defalias 'define-stroke 'strokes-define-stroke)
(defsubst strokes-square (x)
"Returns the square of the number X"
(* x x))
(defsubst strokes-distance-squared (p1 p2)
"Gets the distance (squared) between to points P1 and P2.
P1 and P2 are cons cells in the form (X . Y)."
(let ((x1 (car p1))
(y1 (cdr p1))
(x2 (car p2))
(y2 (cdr p2)))
(+ (strokes-square (- x2 x1))
(strokes-square (- y2 y1)))))
;;; Advice for various functions...
;; I'd originally wanted to write a macro that would just take in the
;; generic functions which use mouse button2 in various modes. Most
;; of them are identical in form: they take an event as the single
;; argument and then do their thing. I tried writing a macro that
;; looked something like this, but failed. Advice just ain't that
;; easy. The one that bugged me the most was `Manual-follow-xref',
;; because that had &rest arguments, and I didn't know how to work
;; around it in defadvice. However, I was able to fix up most of the
;; important modes (i.e. the ones I use all the time). One `bug' in
;; the program that I just can't seem to figure out is why I can only
;; advise other button2 functions successfully when the variable
;; `strokes-use-strokes-buffer' is nil. I did all the
;; save-excursion/save-window-excursion stuff SPECIFICALLY so that
;; using the strokes buffer or not would absolutely not affect any
;; other part of the program. If someone can figure out how to make
;; the following advices work w/ regardless of that variable
;; `strokes-use-strokes-buffer', then that would be a great victory.
;; If someone out there would be kind enough to make the commented
;; code below work, I'd be grateful. By the way, I put the `protect'
;; keywords there to insure that if a stroke went bad, then
;; `strokes-click-command' would be set back. If this isn't
;; necessary, then feel free to let me know.
;; For what follows, I really wanted something that would work like this:
;;(strokes-fix-button2 'vm-mouse-button-2)
;; Or even better, I could have simply done something like:
;;(mapcar 'strokes-fix-button2
;; '(vm-mouse-button-2
;; rmail-summary-mouse-goto-msg
;; <rest of them>))
;;; With help from Hans (author of advice.el)...
(defmacro strokes-fix-button2-command (command)
"Fix COMMAND so that it can also work with strokes.
COMMAND must take one event argument.
Example of how one might fix up a command that's bound to button2
and which is an interactive funcion of one event argument:
\(strokes-fix-button2-command 'vm-mouse-button-2)"
(let ((command (eval command)))
`(progn
(defadvice ,command (around strokes-fix-button2 compile preactivate)
,(format "Fix %s to work with strokes." command)
(let ((strokes-click-command
',(intern (format "ad-Orig-%s" command))))
(strokes-do-stroke (ad-get-arg 0)))))))
(defvar strokes-insinuated nil)
(defun strokes-insinuate ()
"Insinuate Emacs with strokes advices."
(unless strokes-insinuated
(strokes-fix-button2-command 'vm-mouse-button-2)
(strokes-fix-button2-command 'rmail-summary-mouse-goto-msg)
(strokes-fix-button2-command 'Buffer-menu-mouse-select)
(strokes-fix-button2-command 'w3-widget-button-click)
(strokes-fix-button2-command 'widget-image-button-press)
(strokes-fix-button2-command 'Info-follow-clicked-node)
(strokes-fix-button2-command 'compile-mouse-goto-error)
(strokes-fix-button2-command 'gdbsrc-select-or-yank)
(strokes-fix-button2-command 'hypropos-mouse-get-doc)
(strokes-fix-button2-command 'gnus-mouse-pick-group)
(strokes-fix-button2-command 'gnus-mouse-pick-article)
(strokes-fix-button2-command 'gnus-article-push-button)
(strokes-fix-button2-command 'dired-mouse-find-file)
(strokes-fix-button2-command 'url-dired-find-file-mouse)
(strokes-fix-button2-command 'dired-u-r-mouse-toggle)
(strokes-fix-button2-command 'dired-u-w-mouse-toggle)
(strokes-fix-button2-command 'dired-u-x-mouse-toggle)
(strokes-fix-button2-command 'dired-g-r-mouse-toggle)
(strokes-fix-button2-command 'dired-g-w-mouse-toggle)
(strokes-fix-button2-command 'dired-g-x-mouse-toggle)
(strokes-fix-button2-command 'dired-o-r-mouse-toggle)
(strokes-fix-button2-command 'dired-o-w-mouse-toggle)
(strokes-fix-button2-command 'isearch-yank-x-selection)
(strokes-fix-button2-command 'occur-mode-mouse-goto)
(strokes-fix-button2-command 'cvs-mouse-find-file))
(setq strokes-insinuated t))
;;; I can fix the customize widget button click, but then
;;; people will get confused when they try to customize
;;; strokes with the mouse and customize tells them that
;;; `strokes-click-command' is mapped to `ad-Orig-widget-button-click'
;;(strokes-fix-button2-command 'widget-button-click)
;;; without the advice, each advised function would look like...
;;(defadvice vm-mouse-button-2 (around vm-strokes activate protect)
;; "Allow strokes to work in VM."
;; (if strokes-use-strokes-buffer
;; ;; then strokes is no good and we'll have to use the original
;; ad-do-it
;; ;; otherwise, we can make strokes work too...
;; (let ((strokes-click-command 'ad-Orig-vm-mouse-button-2))
;; (strokes-do-stroke (ad-get-arg 0)))))
;;; Functions...
(defun strokes-lift-p (object)
"Return non-nil if object is a stroke-lift."
(eq object strokes-lift))
(defun strokes-unset-last-stroke ()
"Undo the last stroke definition."
(interactive)
(let ((command (cdar strokes-global-map)))
(if (y-or-n-p-maybe-dialog-box
(format "really delete last stroke definition, defined to `%s'? "
command))
(progn
(setq strokes-global-map (cdr strokes-global-map))
(message "That stroke has been deleted"))
(message "Nothing done"))))
;;;###autoload
(defun strokes-global-set-stroke (stroke command)
"Interactively give STROKE the global binding as COMMAND.
Operated just like `global-set-key', except for strokes.
COMMAND is a symbol naming an interactively-callable function. STROKE
is a list of sampled positions on the stroke grid as described in the
documentation for the `strokes-define-stroke' function."
(interactive
(list
(and (or strokes-mode (strokes-mode t))
(strokes-read-complex-stroke
"Define a new stroke. Draw with button1 (or 2). End with button3..."))
(read-command-or-command-sexp "command to map stroke to: ")))
(strokes-define-stroke strokes-global-map stroke command))
;;;###autoload
(defalias 'global-set-stroke 'strokes-global-set-stroke)
;;(defun global-unset-stroke (stroke); FINISH THIS DEFUN!
;; "delete all strokes matching STROKE from `strokes-global-map',
;; letting the user input
;; the stroke with the mouse"
;; (interactive
;; (list
;; (strokes-read-stroke "Enter the stroke you want to delete...")))
;; (strokes-define-stroke 'strokes-global-map stroke command))
(defun strokes-get-grid-position (stroke-extent position &optional grid-resolution)
"Map POSITION to a new grid position based on its STROKE-EXTENT and GRID-RESOLUTION.
STROKE-EXTENT as a list \(\(XMIN . YMIN\) \(XMAX . YMAX\)\).
If POSITION is a `strokes-lift', then it is itself returned.
Optional GRID-RESOLUTION may be used in place of STROKES-GRID-RESOLUTION.
The grid is a square whose dimesion is [0,GRID-RESOLUTION)."
(cond ((consp position) ; actual pixel location
(let ((grid-resolution (or grid-resolution strokes-grid-resolution))
(x (car position))
(y (cdr position))
(xmin (caar stroke-extent))
(ymin (cdar stroke-extent))
;; the `1+' is there to insure that the
;; formula evaluates correctly at the boundaries
(xmax (1+ (caadr stroke-extent)))
(ymax (1+ (cdadr stroke-extent))))
(cons (floor (* grid-resolution
(/ (float (- x xmin))
(- xmax xmin))))
(floor (* grid-resolution
(/ (float (- y ymin))
(- ymax ymin)))))))
((strokes-lift-p position) ; stroke lift
strokes-lift)))
(defun strokes-get-stroke-extent (pixel-positions)
"From a list of absolute PIXEL-POSITIONS, returns absolute spatial extent.
The return value is a list ((XMIN . YMIN) (XMAX . YMAX))."
(if pixel-positions
(let ((xmin (caar pixel-positions))
(xmax (caar pixel-positions))
(ymin (cdar pixel-positions))
(ymax (cdar pixel-positions))
(rest (cdr pixel-positions)))
(while rest
(if (consp (car rest))
(let ((x (caar rest))
(y (cdar rest)))
(if (< x xmin)
(setq xmin x))
(if (> x xmax)
(setq xmax x))
(if (< y ymin)
(setq ymin y))
(if (> y ymax)
(setq ymax y))))
(setq rest (cdr rest)))
(let ((delta-x (- xmax xmin))
(delta-y (- ymax ymin)))
(if (> delta-x delta-y)
(setq ymin (- ymin
(/ (- delta-x delta-y)
2))
ymax (+ ymax
(/ (- delta-x delta-y)
2)))
(setq xmin (- xmin
(/ (- delta-y delta-x)
2))
xmax (+ xmax
(/ (- delta-y delta-x)
2))))
(list (cons xmin ymin)
(cons xmax ymax))))
nil))
(defun strokes-eliminate-consecutive-redundancies (entries)
"Returns a list with no consecutive redundant entries."
;; defun a grande vitesse grace a Dave G.
(loop for element on entries
if (not (equal (car element) (cadr element)))
collect (car element)))
;; (loop for element on entries
;; nconc (if (not (equal (car el) (cadr el)))
;; (list (car el)))))
;; yet another (orig) way of doing it...
;; (if entries
;; (let* ((current (car entries))
;; (rest (cdr entries))
;; (non-redundant-list (list current))
;; (next nil))
;; (while rest
;; (setq next (car rest))
;; (if (equal current next)
;; (setq rest (cdr rest))
;; (setq non-redundant-list (cons next non-redundant-list)
;; current next
;; rest (cdr rest))))
;; (nreverse non-redundant-list))
;; nil))
(defun strokes-renormalize-to-grid (positions &optional grid-resolution)
"Map POSITIONS to a new grid whose dimensions are based on GRID-RESOLUTION.
POSITIONS is a list of positions and stroke-lifts.
Optional GRID-RESOLUTION may be used in place of STROKES-GRID-RESOLUTION.
The grid is a square whose dimesion is [0,GRID-RESOLUTION)."
(or grid-resolution (setq grid-resolution strokes-grid-resolution))
(let ((stroke-extent (strokes-get-stroke-extent positions)))
(mapcar (function
(lambda (pos)
(strokes-get-grid-position stroke-extent pos grid-resolution)))
positions)))
(defun strokes-fill-stroke (unfilled-stroke &optional force)
"Fill in missing grid locations in the list of UNFILLED-STROKE.
If FORCE is non-nil, then fill the stroke even if it's `stroke-click'.
NOTE: This is where the global variable `strokes-last-stroke' is set."
(setq strokes-last-stroke ; this is global
(if (and (strokes-click-p unfilled-stroke)
(not force))
unfilled-stroke
(loop for grid-locs on unfilled-stroke
nconc (let* ((current (car grid-locs))
(current-is-a-point-p (consp current))
(next (cadr grid-locs))
(next-is-a-point-p (consp next))
(both-are-points-p (and current-is-a-point-p
next-is-a-point-p))
(x1 (and current-is-a-point-p
(car current)))
(y1 (and current-is-a-point-p
(cdr current)))
(x2 (and next-is-a-point-p
(car next)))
(y2 (and next-is-a-point-p
(cdr next)))
(delta-x (and both-are-points-p
(- x2 x1)))
(delta-y (and both-are-points-p
(- y2 y1)))
(slope (and both-are-points-p
(if (zerop delta-x)
nil ; undefined vertical slope
(/ (float delta-y)
delta-x)))))
(cond ((not both-are-points-p)
(list current))
((null slope) ; undefinded vertical slope
(if (>= delta-y 0)
(loop for y from y1 below y2
collect (cons x1 y))
(loop for y from y1 above y2
collect (cons x1 y))))
((zerop slope) ; (= y1 y2)
(if (>= delta-x 0)
(loop for x from x1 below x2
collect (cons x y1))
(loop for x from x1 above x2
collect (cons x y1))))
((>= (abs delta-x) (abs delta-y))
(if (> delta-x 0)
(loop for x from x1 below x2
collect (cons x
(+ y1
(round (* slope
(- x x1))))))
(loop for x from x1 above x2
collect (cons x
(+ y1
(round (* slope
(- x x1))))))))
(t ; (< (abs delta-x) (abs delta-y))
(if (> delta-y 0)
(loop for y from y1 below y2
collect (cons (+ x1
(round (/ (- y y1)
slope)))
y))
(loop for y from y1 above y2
collect (cons (+ x1
(round (/ (- y y1)
slope)))
y))))))))))
(defun strokes-rate-stroke (stroke1 stroke2)
"Rates STROKE1 with STROKE2 and returns a score based on a distance metric.
Note: the rating is an error rating, and therefore, a return of 0
represents a perfect match. Also note that the order of stroke
arguments is order-independent for the algorithm used here."
(if (and stroke1 stroke2)
(let ((rest1 (cdr stroke1))
(rest2 (cdr stroke2))
(err (strokes-distance-squared (car stroke1)
(car stroke2))))
(while (and rest1 rest2)
(while (and (consp (car rest1))
(consp (car rest2)))
(setq err (+ err
(strokes-distance-squared (car rest1)
(car rest2)))
stroke1 rest1
stroke2 rest2
rest1 (cdr stroke1)
rest2 (cdr stroke2)))
(cond ((and (strokes-lift-p (car rest1))
(strokes-lift-p (car rest2)))
(setq rest1 (cdr rest1)
rest2 (cdr rest2)))
((strokes-lift-p (car rest2))
(while (consp (car rest1))
(setq err (+ err
(strokes-distance-squared (car rest1)
(car stroke2)))
rest1 (cdr rest1))))
((strokes-lift-p (car rest1))
(while (consp (car rest2))
(setq err (+ err
(strokes-distance-squared (car stroke1)
(car rest2)))
rest2 (cdr rest2))))))
(if (null rest2)
(while (consp (car rest1))
(setq err (+ err
(strokes-distance-squared (car rest1)
(car stroke2)))
rest1 (cdr rest1))))
(if (null rest1)
(while (consp (car rest2))
(setq err (+ err
(strokes-distance-squared (car stroke1)
(car rest2)))
rest2 (cdr rest2))))
(if (or (strokes-lift-p (car rest1))
(strokes-lift-p (car rest2)))
(setq err nil)
err))
nil))
(defun strokes-match-stroke (stroke stroke-map)
"Finds the best matching command of STROKE in STROKE-MAP.
Returns the corresponding match as (COMMAND . SCORE)."
(if (and stroke stroke-map)
(let ((score (strokes-rate-stroke stroke (caar stroke-map)))
(command (cdar stroke-map))
(map (cdr stroke-map)))
(while map
(let ((newscore (strokes-rate-stroke stroke (caar map))))
(if (or (and newscore score (< newscore score))
(and newscore (null score)))
(setq score newscore
command (cdar map)))
(setq map (cdr map))))
(if score
(cons command score)
nil))
nil))
;;;###autoload
(defun strokes-read-stroke (&optional prompt event)
"Read a simple stroke (interactively) and return the stroke.
Optional PROMPT in minibuffer displays before and during stroke reading.
This function will display the stroke interactively as it is being
entered in the strokes buffer if the variable
`strokes-use-strokes-buffer' is non-nil.
Optional EVENT is acceptable as the starting event of the stroke"
(save-excursion
(let ((pix-locs nil)
(grid-locs nil)
(safe-to-draw-p nil))
(strokes-while-inhibiting-garbage-collector
(if strokes-use-strokes-buffer
;; switch to the strokes buffer and
;; display the stroke as it's being read
(save-window-excursion
(set-window-configuration strokes-window-configuration)
(when prompt
(setq event (next-command-event event prompt))
(or (button-press-event-p event)
(error "You must draw with the mouse")))
(or event (setq event (next-event nil prompt)
safe-to-draw-p t))
(unwind-protect
(progn
(while (not (button-release-event-p event))
(if (mouse-event-p event)
(let ((point (event-closest-point event)))
(if (and point safe-to-draw-p)
;; we can draw that point
(progn
(goto-char point)
(subst-char-in-region point (1+ point) ?\ strokes-character))
;; otherwise, we can start drawing the next time...
(setq safe-to-draw-p t))
(push (cons (event-x-pixel event)
(event-y-pixel event))
pix-locs))
;; otherwise, if it's not a mouse-event...
(dispatch-event event))
(setq event (next-event event))))
;; protected
;; clean up strokes buffer and then bury it.
(when (equal (buffer-name) strokes-buffer-name)
(subst-char-in-region (point-min) (point-max) strokes-character ?\ )
(goto-char (point-min))
(bury-buffer))))
;; Otherwise, don't use strokes buffer and read stroke silently
(when prompt
(setq event (next-command-event event prompt))
(or (button-press-event-p event)
(error "You must draw with the mouse")))
(or event (setq event (next-event nil prompt)))
(while (not (button-release-event-p event))
(if (mouse-event-p event)
(push (cons (event-x-pixel event)
(event-y-pixel event))
pix-locs)
(dispatch-event event))
(setq event (next-event event)))))
(setq grid-locs (strokes-renormalize-to-grid (nreverse pix-locs)))
(strokes-fill-stroke (strokes-eliminate-consecutive-redundancies grid-locs)))))
(defun strokes-read-complex-stroke (&optional prompt event)
"Read a complex stroke (interactively) and return the stroke.
Optional PROMPT in minibuffer displays before and during stroke reading.
Note that a complex stroke allows the user to pen-up and pen-down. This
is implemented by allowing the user to paint with button1 or button2 and
then complete the stroke with button3.
Optional EVENT is acceptable as the starting event of the stroke"
(save-excursion
(save-window-excursion
(strokes-while-inhibiting-garbage-collector
(set-window-configuration strokes-window-configuration)
(let ((pix-locs nil)
(grid-locs nil)
(safe-to-draw-p nil))
(when prompt
(setq event (next-command-event event prompt))
(or (button-press-event-p event)
(error "You must draw with the mouse")))
(or event (setq event (next-event nil prompt)
safe-to-draw-p t))
(unwind-protect
(progn
(while (not (and (button-press-event-p event)
(eq (event-button event) 3)))
(while (not (button-release-event-p event))
(if (mouse-event-p event)
(let ((point (event-closest-point event)))
(if (and point safe-to-draw-p)
;; we can draw that point
(progn
(goto-char point)
(subst-char-in-region point (1+ point) ?\ strokes-character))
;; otherwise, we can start drawing the next time...
(setq safe-to-draw-p t))
(push (cons (event-x-pixel event)
(event-y-pixel event))
pix-locs))
(dispatch-event event))
(setq event (next-event event prompt)))
(push strokes-lift pix-locs)
(while (not (button-press-event-p event))
(dispatch-event event)
(setq event (next-event event prompt))))
(setq pix-locs (nreverse (cdr pix-locs)))
;; minor bug fix here for when user enters ` *strokes*'
;; buffer with a click instead of a drag...
(when (strokes-lift-p (car pix-locs))
(setq pix-locs (cdr pix-locs)))
(setq grid-locs (strokes-renormalize-to-grid pix-locs))
(strokes-fill-stroke
(strokes-eliminate-consecutive-redundancies grid-locs)))
;; protected
(when (equal (buffer-name) strokes-buffer-name)
(subst-char-in-region (point-min) (point-max) strokes-character ?\ )
(goto-char (point-min))
(bury-buffer))))))))
(defun strokes-execute-stroke (stroke)
"Given STROKE, execute the command which corresponds to it.
The command will be executed provided one exists for that stroke,
based on the variable `strokes-minimum-match-score'.
If no stroke matches, nothing is done and return value is nil."
(let* ((match (strokes-match-stroke stroke strokes-global-map))
(command (car match))
(score (cdr match)))
(cond ((strokes-click-p stroke)
;; This is the case of a `click' type event.
;; The `sit-for' is a minor frob that has to do with timing
;; problems. Without the `sit-for', mouse-yank will not
;; yank at the proper location if the user opted for
;; mouse-yank-at-point to be nil (i.e. mouse-yank takes
;; place at pointer position). The sit-for tells redisplay
;; to be sure to wait for the `*strokes*' buffer to vanish
;; from consideration when deciding on a point to be used
;; for mouse-yank.
(sit-for 0)
(command-execute strokes-click-command))
((and match (<= score strokes-minimum-match-score))
(message "%s" command)
(command-execute command))
((null strokes-global-map)
(if (file-exists-p strokes-file)
(and (y-or-n-p-maybe-dialog-box
(format "No strokes loaded. Load `%s'? "
strokes-file))
(strokes-load-user-strokes))
(error "No strokes defined; use `global-set-stroke'")))
(t
(error
"No stroke matches; see variable `strokes-minimum-match-score'")
nil))))
;;;###autoload
(defun strokes-do-stroke (event)
"Read a simple stroke from the user and then exectute its command.
This must be bound to a mouse event."
(interactive "e")
(or strokes-mode (strokes-mode t))
(strokes-execute-stroke (strokes-read-stroke nil event)))
;;;###autoload
(defun strokes-do-complex-stroke (event)
"Read a complex stroke from the user and then exectute its command.
This must be bound to a mouse event."
(interactive "e")
(or strokes-mode (strokes-mode t))
(strokes-execute-stroke (strokes-read-complex-stroke nil event)))
;;;###autoload
(defun strokes-describe-stroke (stroke)
"Displays the command which STROKE maps to, reading STROKE interactively."
(interactive
(list
(strokes-read-complex-stroke
"Enter stroke to describe; end with button3...")))
(let* ((match (strokes-match-stroke stroke strokes-global-map))
(command (or (and (strokes-click-p stroke)
strokes-click-command)
(car match)))
(score (cdr match)))
(if (or (and match
(<= score strokes-minimum-match-score))
(and (strokes-click-p stroke)
strokes-click-command))
(message "That stroke maps to `%s'" command)
(message "That stroke is undefined"))
(sleep-for 1))) ; helpful for recursive edits
;;;###autoload
(defalias 'describe-stroke 'strokes-describe-stroke)
;;;###autoload
(defun strokes-help ()
"Get instructional help on using the the `strokes' package."
(interactive)
(with-displaying-help-buffer
(function
(lambda ()
(save-excursion
(let ((helpdoc
"This is help for the strokes package.
If you find something wrong with strokes, or feel that it can be
improved in some way, then please feel free to email me:
David Bakhash <cadet@mit.edu>
or just do
M-x strokes-report-bug
------------------------------------------------------------
** Strokes...
The strokes package allows you to define strokes (that you make with
the mouse or other pointer device) that XEmacs can interpret as
corresponding to commands, and then executes the commands. It does
character recognition, so you don't have to worry about getting it
right every time.
Strokes also allows you to compose documents graphically. You can
fully edit documents in Chinese, Japanese, etc. based on XEmacs
strokes. Once you've done so, you can ascii compress-and-encode them
and then safely save them for later use, send letters to friends
(using XEmacs, of course). Strokes will later decode these documents,
extracting the strokes for editing use once again, so the editing
cycle can continue.
Strokes are easy to program and fun to use. To start strokes going,
you'll want to put the following line in your .emacs file:
(if window-system
(require 'strokes))
This will load strokes when and only when you start XEmacs on a window
system (i.e. that has a pointer (mouse) device, etc.).
To toggle strokes-mode, you just do
> M-x strokes-mode
** Strokes for controlling the behavior of XEmacs...
When you're ready to start defining strokes, just use the command
> M-x global-set-stroke
You will see a ` *strokes*' buffer which is waiting for you to enter in
your stroke. When you enter in the stroke, you draw with button1 or
button2, and then end with button3. Next, you enter in the command
which will be executed when that stroke is invoked. Simple as that.
For now, try to define a stroke to copy a region. This is a popular
edit command, so type
> M-x global-set-stroke
Then, in the ` *strokes*' buffer, draw the letter `C' (for `copy')
and then, when it asks you to enter the command to map that to, type
> copy-region-as-kill
That's about as hard as it gets.
Remember: paint with button1 or button2 and then end with button3.
If ever you want to know what a certain strokes maps to, then do
> M-x describe-stroke
and you can enter in any arbitrary stroke. Remember: The strokes
package lets you program in simple and complex (multi-lift) strokes.
The only difference is how you *invoke* the two. You will most likely
use simple strokes, as complex strokes were developed for
Chinese/Japanese/Korean. So the middle mouse button (button2) will
invoke the command `strokes-do-stroke' in buffers where button2 doesn't
already have a meaning other than its original, which is `mouse-yank'.
But don't worry: `mouse-yank' will still work with strokes (see the
variable `strokes-click-command').
If ever you define a stroke which you don't like, then you can unset
it with the command
> M-x strokes-unset-last-stroke
You can always get an idea of what your current strokes look like with
the command
> M-x list-strokes
Your strokes will be displayed in alphabetical order (based on command
names) and the beginning of each simple stroke will be marked by a
color dot. Since you may have several simple strokes in a complex
stroke, the dot colors are arranged in the rainbow color sequence,
`ROYGBIV'. If you want a listing of your strokes from most recent
down, then use a prefix argument:
> C-u M-x list-strokes
Your strokes are stored as you enter them. They get saved in a file
called ~/.strokes, along with other strokes configuration variables.
You can change this location by setting the variable `strokes-file'.
You will be prompted to save them when you exit XEmacs, or you can save
them with
> M-x save-strokes
Your strokes get loaded automatically when you enable `strokes-mode'.
You can also load in your user-defined strokes with
> M-x load-user-strokes
** Strokes for pictographic editing...
If you'd like to create graphical files with strokes, you'll have to
be running XEmacs on a window system, with XPM support. You use the
binding C-button2 to start drawing your strokes. These are just
complex strokes, and thus you continue drawing with buttons 1 or 2 and
end with button-3. Then the stroke glyph gets inserted into the
buffer. You treat it like any other character, which you can copy,
paste, delete, move, etc. The command which is bound to C-button2 is
called `strokes-compose-complex-stroke'. When all is done, you may
want to send the file, or save it. This is done with
> M-x strokes-encode-buffer
Likewise, to decode the strokes from a strokes-encoded buffer you do
> M-x strokes-decode-buffer
** A few more important things...
o The command `strokes-do-complex-stroke' is invoked with M-button2, so that you
can execute complex strokes (i.e. with more than one lift) if preferred.
o Strokes are a bit computer-dependent in that they depend somewhat on
the speed of the computer you're working on. This means that you
may have to tweak some variables. You can read about them in the
commentary of `strokes.el'. Better to just use apropos and read their
docstrings. All variables/functions start with `strokes'. The one
variable which many people wanted to see was
`strokes-use-strokes-buffer' which allows the user to use strokes
silently--without displaying the strokes. All variables can be set
by customizing the group named `strokes' via the customization package:
> M-x customize"))
(princ helpdoc standard-output)))))))
(defun strokes-report-bug ()
"Submit a bug report for strokes."
(interactive)
(let ((reporter-prompt-for-summary-p t))
(or (boundp 'reporter-version)
(setq reporter-version
"Your version of reporter is obsolete. Please upgrade."))
(reporter-submit-bug-report
strokes-bug-address "Strokes"
(cons
'strokes-version
(nconc
(mapcar
'intern
(sort
(let (completion-ignore-case)
(all-completions "strokes-" obarray 'user-variable-p))
'string-lessp))
(list 'reporter-version)))
(function
(lambda ()
(save-excursion
(mail-position-on-field "subject")
(beginning-of-line)
(skip-chars-forward "^:\n")
(if (looking-at ": Strokes;")
(progn
(goto-char (match-end 0))
(delete-char -1)
(insert " " strokes-version " bug:")))))))))
(defsubst strokes-fill-current-buffer-with-whitespace ()
"Erase the contents of the current buffer and fill it with whitespace."
(erase-buffer)
(loop repeat (frame-height) do
(insert-char ?\ (1- (frame-width)))
(newline))
(goto-char (point-min)))
(defun strokes-window-configuration-changed-p ()
"Non-nil if the `strokes-window-configuration' frame properties changed.
This is based on the last time the `strokes-window-configuration was updated."
(not (and (eq (selected-frame)
(plist-get strokes-window-configuration-plist
'frame))
(eq (frame-height)
(plist-get strokes-window-configuration-plist
'frame-height))
(eq (frame-width)
(plist-get strokes-window-configuration-plist
'frame-width)))))
(defun strokes-update-window-configuration-plist ()
"Update the `strokes-window-configuration-plist' based on the current state."
(plist-put strokes-window-configuration-plist
'frame
(selected-frame))
(plist-put strokes-window-configuration-plist
'frame-height
(frame-height))
(plist-put strokes-window-configuration-plist
'frame-width
(frame-width)))
(defun strokes-update-window-configuration ()
"Update the `strokes-window-configuration'."
(interactive)
(let ((current-window (selected-window)))
(cond ((or (window-minibuffer-p current-window)
(window-dedicated-p current-window))
;; don't try to update strokes window configuration
;; if window is dedicated or a minibuffer
nil)
((or (interactive-p)
(not (buffer-live-p (get-buffer strokes-buffer-name)))
(null strokes-window-configuration))
;; create `strokes-window-configuration' from scratch...
(save-excursion
(save-window-excursion
(get-buffer-create strokes-buffer-name)
(set-window-buffer current-window strokes-buffer-name)
(delete-other-windows)
(fundamental-mode)
(auto-save-mode 0)
(if (featurep 'font-lock)
(font-lock-mode 0))
(abbrev-mode 0)
(buffer-disable-undo (current-buffer))
(setq truncate-lines nil)
(strokes-fill-current-buffer-with-whitespace)
(setq strokes-window-configuration (current-window-configuration))
(strokes-update-window-configuration-plist)
(bury-buffer))))
((strokes-window-configuration-changed-p) ; simple update
;; update the strokes-window-configuration for this
;; specific frame...
(save-excursion
(save-window-excursion
(set-window-buffer current-window strokes-buffer-name)
(delete-other-windows)
(strokes-fill-current-buffer-with-whitespace)
(setq strokes-window-configuration (current-window-configuration))
(strokes-update-window-configuration-plist)
(bury-buffer)))))))
;;;###autoload
(defun strokes-load-user-strokes ()
"Load user-defined strokes from file named by `strokes-file'."
(interactive)
(cond ((and (file-exists-p strokes-file)
(file-readable-p strokes-file))
(load-file strokes-file))
((interactive-p)
(error "Trouble loading user-defined strokes; nothing done"))
(t
(message "No user-defined strokes, sorry"))))
;;;###autoload
(defalias 'load-user-strokes 'strokes-load-user-strokes)
(defun strokes-prompt-user-save-strokes ()
"Save user-defined strokes to file named by `strokes-file'."
(interactive)
(save-excursion
(let ((current strokes-global-map))
(unwind-protect
(progn
(setq strokes-global-map nil)
(strokes-load-user-strokes)
(if (and (not (equal current strokes-global-map))
(or (interactive-p)
(yes-or-no-p-maybe-dialog-box "save your strokes? ")))
(progn
(require 'pp) ; pretty-print variables
(message "Saving strokes in %s..." strokes-file)
(get-buffer-create "*saved-strokes*")
(set-buffer "*saved-strokes*")
(erase-buffer)
(emacs-lisp-mode)
(goto-char (point-min))
(insert-string
";; -*- Syntax: Emacs-Lisp; Mode: emacs-lisp -*-\n")
(insert-string (format ";;; saved strokes for %s, as of %s\n\n"
(user-full-name)
(format-time-string "%B %e, %Y" nil)))
(message "Saving strokes in %s..." strokes-file)
(insert-string (format "(setq strokes-global-map '%s)"
(pp current)))
(message "Saving strokes in %s..." strokes-file)
(indent-region (point-min) (point-max) nil)
(write-region (point-min)
(point-max)
strokes-file))
(message "(no changes need to be saved)")))
;; protected
(if (get-buffer "*saved-strokes*")
(kill-buffer (get-buffer "*saved-strokes*")))
(setq strokes-global-map current)))))
(defalias 'save-strokes 'strokes-prompt-user-save-strokes)
(defun strokes-toggle-strokes-buffer (&optional arg)
"Toggle the use of the strokes buffer.
In other words, toggle the variabe `strokes-use-strokes-buffer'.
With ARG, use strokes buffer if and only if ARG is positive or true.
Returns value of `strokes-use-strokes-buffer'."
(interactive "P")
(setq strokes-use-strokes-buffer
(if arg (> (prefix-numeric-value arg) 0)
(not strokes-use-strokes-buffer))))
(defun strokes-xpm-for-stroke (&optional stroke bufname b/w-only)
"Create an xpm pixmap for the given STROKE in buffer `*strokes-xpm*'.
If STROKE is not supplied, then `strokes-last-stroke' will be used.
Optional BUFNAME to name something else.
The pixmap will contain time information via rainbow dot colors
where each individual strokes begins.
Optional B/W-ONLY non-nil will create a mono pixmap, not intended
for trying to figure out the order of strokes, but rather for reading
the stroke as a character in some language."
(interactive)
(save-excursion
(let ((buf (get-buffer-create (or bufname "*strokes-xpm*")))
(stroke (strokes-eliminate-consecutive-redundancies
(strokes-fill-stroke
(strokes-renormalize-to-grid (or stroke
strokes-last-stroke)
31))))
(lift-flag t)
(rainbow-chars (list ?R ?O ?Y ?G ?B ?P))) ; ROYGBIV w/o indigo
(set-buffer buf)
(erase-buffer)
(insert strokes-xpm-header)
(loop repeat 33 do
(insert-char ?\")
(insert-char ?\ 33)
(insert "\",")
(newline)
finally
(forward-line -1)
(end-of-line)
(insert "}\n"))
(loop for point in stroke
for x = (car-safe point)
for y = (cdr-safe point) do
(cond ((consp point)
;; draw a point, and possibly a starting-point
(if (and lift-flag (not b/w-only))
;; mark starting point with the appropriate color
(let ((char (or (car rainbow-chars) ?\.)))
(loop for i from 0 to 2 do
(loop for j from 0 to 2 do
(goto-line (+ 16 i y))
(forward-char (+ 1 j x))
(delete-char 1)
(insert-char char)))
(setq rainbow-chars (cdr rainbow-chars)
lift-flag nil))
;; Otherwise, just plot the point...
(goto-line (+ 17 y))
(forward-char (+ 2 x))
(subst-char-in-region (point) (1+ (point)) ?\ ?\*)))
((strokes-lift-p point)
;; a lift--tell the loop to X out the next point...
(setq lift-flag t))))
(when (interactive-p)
(require 'xpm-mode)
(pop-to-buffer "*strokes-xpm*")
;; (xpm-mode 1)
(xpm-show-image)
(goto-char (point-min))))))
;;; Strokes Edit stuff... ### NOT IMLEMENTED YET ###
;;(defun strokes-edit-quit ()
;; (interactive)
;; (or (one-window-p t 0)
;; (delete-window))
;; (kill-buffer "*Strokes List*"))
;;(define-derived-mode edit-strokes-mode list-mode
;; "Edit-Strokes"
;; "Major mode for `edit-strokes' and `list-strokes' buffers.
;;Editing commands:
;;\\{edit-strokes-mode-map}"
;; (setq truncate-lines nil
;; auto-show-mode nil ; don't want problems here either
;; mode-popup-menu edit-strokes-menu) ; what about extent-specific stuff?
;; (and (featurep 'menubar)
;; current-menubar
;; (set (make-local-variable 'current-menubar)
;; (copy-sequence current-menubar))
;; (add-submenu nil edit-strokes-menu)))
;;(let ((map edit-strokes-mode-map))
;; (define-key map "<" 'beginning-of-buffer)
;; (define-key map ">" 'end-of-buffer)
;; ;; (define-key map "c" 'strokes-copy-other-face)
;; ;; (define-key map "C" 'strokes-copy-this-face)
;; ;; (define-key map "s" 'strokes-smaller)
;; ;; (define-key map "l" 'strokes-larger)
;; ;; (define-key map "b" 'strokes-bold)
;; ;; (define-key map "i" 'strokes-italic)
;; (define-key map "e" 'strokes-list-edit)
;; ;; (define-key map "f" 'strokes-font)
;; ;; (define-key map "u" 'strokes-underline)
;; ;; (define-key map "t" 'strokes-truefont)
;; ;; (define-key map "F" 'strokes-foreground)
;; ;; (define-key map "B" 'strokes-background)
;; ;; (define-key map "D" 'strokes-doc-string)
;; (define-key map "a" 'strokes-global-set-stroke)
;; (define-key map "d" 'strokes-list-delete-stroke)
;; ;; (define-key map "n" 'strokes-list-next)
;; ;; (define-key map "p" 'strokes-list-prev)
;; ;; (define-key map " " 'strokes-list-next)
;; ;; (define-key map "\C-?" 'strokes-list-prev)
;; (define-key map "g" 'strokes-list-strokes) ; refresh display
;; (define-key map "q" 'strokes-edit-quit)
;; (define-key map [(control c) (control c)] 'bury-buffer))
;;;;;###autoload
;;(defun strokes-edit-strokes (&optional chronological strokes-map)
;; ;; ### DEAL WITH THE 2nd ARGUMENT ISSUE! ###
;; "Edit strokes in a pop-up buffer containing strokes and their definitions.
;;If STROKES-MAP is not given, `strokes-global-map' will be used instead.
;;Editing commands:
;;\\{edit-faces-mode-map}"
;; (interactive "P")
;; (pop-to-buffer (get-buffer-create "*Strokes List*"))
;; (reset-buffer (current-buffer)) ; handy function from minibuf.el
;; (setq strokes-map (or strokes-map
;; strokes-global-map
;; (progn
;; (strokes-load-user-strokes)
;; strokes-global-map)))
;; (or chronological
;; (setq strokes-map (sort (copy-sequence strokes-map)
;; 'strokes-alphabetic-lessp)))
;; ;; (push-window-configuration)
;; (insert
;; "Command Stroke\n"
;; "------- ------")
;; (loop for def in strokes-map
;; for i from 0 to (1- (length strokes-map)) do
;; (let ((stroke (car def))
;; (command-name (symbol-name (cdr def))))
;; (strokes-xpm-for-stroke stroke " *strokes-xpm*")
;; (newline 2)
;; (insert-char ?\ 45)
;; (beginning-of-line)
;; (insert command-name)
;; (beginning-of-line)
;; (forward-char 45)
;; (set (intern (format "strokes-list-annotation-%d" i))
;; (make-annotation (make-glyph
;; (list
;; (vector 'xpm
;; :data (buffer-substring
;; (point-min " *strokes-xpm*")
;; (point-max " *strokes-xpm*")
;; " *strokes-xpm*"))
;; [string :data "[Stroke]"]))
;; (point) 'text))
;; (set-annotation-data (symbol-value (intern (format "strokes-list-annotation-%d" i)))
;; def))
;; finally do (kill-region (1+ (point)) (point-max)))
;; (edit-strokes-mode)
;; (goto-char (point-min)))
;;;;;###autoload
;;(defalias 'edit-strokes 'strokes-edit-strokes)
;;;###autoload
(defun strokes-list-strokes (&optional chronological strokes-map)
"Pop up a buffer containing an alphabetical listing of strokes in STROKES-MAP.
With CHRONOLOGICAL prefix arg \(\\[universal-argument]\) list strokes
chronologically by command name.
If STROKES-MAP is not given, `strokes-global-map' will be used instead."
(interactive "P")
(setq strokes-map (or strokes-map
strokes-global-map
(progn
(strokes-load-user-strokes)
strokes-global-map)))
(if (not chronological)
;; then alphabetize the strokes based on command names...
(setq strokes-map (sort (copy-sequence strokes-map)
'strokes-alphabetic-lessp)))
(push-window-configuration)
(set-buffer (get-buffer-create "*Strokes List*"))
(setq buffer-read-only nil)
(erase-buffer)
(insert
"Command Stroke\n"
"------- ------")
(loop for def in strokes-map do
(let ((stroke (car def))
(command-name (symbol-name (cdr def))))
(strokes-xpm-for-stroke stroke " *strokes-xpm*")
(newline 2)
(insert-char ?\ 45)
(beginning-of-line)
(insert command-name)
(beginning-of-line)
(forward-char 45)
(make-annotation (make-glyph
(list
(vector 'xpm
:data (buffer-substring
(point-min " *strokes-xpm*")
(point-max " *strokes-xpm*")
" *strokes-xpm*"))
[string :data "[Image]"]))
(point) 'text))
finally do (kill-region (1+ (point)) (point-max)))
(view-buffer "*Strokes List*" t)
(goto-char (point-min))
(define-key view-minor-mode-map [(q)] (lambda ()
(interactive)
(view-quit)
(pop-window-configuration)
;; (bury-buffer "*Strokes List*")
(define-key view-minor-mode-map [(q)] 'view-quit))))
(defun strokes-alphabetic-lessp (stroke1 stroke2)
"T iff command name for STROKE1 is less than STROKE2's in lexicographic order."
(let ((command-name-1 (symbol-name (cdr stroke1)))
(command-name-2 (symbol-name (cdr stroke2))))
(string-lessp command-name-1 command-name-2)))
;;;###autoload
(defalias 'list-strokes 'strokes-list-strokes)
;;;###autoload
(defun strokes-mode (&optional arg)
"Toggle strokes being enabled.
With ARG, turn strokes on if and only if ARG is positive or true.
Note that `strokes-mode' is a global mode. Think of it as a minor
mode in all buffers when activated.
By default, strokes are invoked with mouse button-2. You can define
new strokes with
> M-x global-set-stroke
To use strokes for pictographic editing, such as Chinese/Japanese, use
Sh-button-2, which draws strokes and inserts them. Encode/decode your
strokes with
> M-x strokes-encode-buffer
> M-x strokes-decode-buffer"
(interactive "P")
(let ((on-p (if arg
(> (prefix-numeric-value arg) 0)
(not strokes-mode))))
(cond ((not (device-on-window-system-p))
(warn "Can't use strokes without windows"))
(on-p ; turn on strokes
(strokes-insinuate)
(and (file-exists-p strokes-file)
(null strokes-global-map)
(strokes-load-user-strokes))
(add-hook 'kill-emacs-query-functions
'strokes-prompt-user-save-strokes)
(add-hook 'select-frame-hook
'strokes-update-window-configuration)
(strokes-update-window-configuration)
(define-key global-map [(button2)] 'strokes-do-stroke)
(define-key global-map [(meta button2)] 'strokes-do-complex-stroke)
;; (define-key global-map [(control button2)] 'strokes-do-complex-stroke)
(define-key global-map [(control button2)]
'strokes-compose-complex-stroke)
(ad-activate-regexp "^strokes-") ; advise button2 commands
(setq strokes-mode t))
(t ; turn off strokes
(if (get-buffer strokes-buffer-name)
(kill-buffer (get-buffer strokes-buffer-name)))
(remove-hook 'select-frame-hook
'strokes-update-window-configuration)
(if (string-match "^strokes-" (symbol-name (key-binding [(button2)])))
(define-key global-map [(button2)] strokes-click-command))
(if (string-match "^strokes-" (symbol-name (key-binding [(meta button2)])))
(global-unset-key [(meta button2)]))
(if (string-match "^strokes-" (symbol-name (key-binding [(control button2)])))
(global-unset-key [(control button2)]))
;; (if (string-match "^strokes-" (symbol-name (key-binding [(shift button2)])))
;; (global-unset-key [(shift button2)]))
(ad-deactivate-regexp "^strokes-") ; unadvise strokes-button2 commands
(setq strokes-mode nil))))
(redraw-modeline))
(add-minor-mode 'strokes-mode strokes-modeline-string nil nil 'strokes-mode)
;;;; strokes-xpm stuff (later may be separate)...
;; This is the stuff that will eventuall be used for composing letters in
;; any language, compression, decompression, graphics, editing, etc.
(require 'atomic-extents) ; might as well say
; (require 'not-so-atomic-extents)
; but what can you do?
;;(unless (find-face 'strokes-char-face)
(defface strokes-char-face '((t (:background "lightgray")))
"Face for strokes characters."
:group 'strokes)
(defconst strokes-char-table (make-char-table 'generic) ;
"The table which stores values for the character keys.")
(put-char-table ?0 0 strokes-char-table)
(put-char-table ?1 1 strokes-char-table)
(put-char-table ?2 2 strokes-char-table)
(put-char-table ?3 3 strokes-char-table)
(put-char-table ?4 4 strokes-char-table)
(put-char-table ?5 5 strokes-char-table)
(put-char-table ?6 6 strokes-char-table)
(put-char-table ?7 7 strokes-char-table)
(put-char-table ?8 8 strokes-char-table)
(put-char-table ?9 9 strokes-char-table)
(put-char-table ?a 10 strokes-char-table)
(put-char-table ?b 11 strokes-char-table)
(put-char-table ?c 12 strokes-char-table)
(put-char-table ?d 13 strokes-char-table)
(put-char-table ?e 14 strokes-char-table)
(put-char-table ?f 15 strokes-char-table)
(put-char-table ?g 16 strokes-char-table)
(put-char-table ?h 17 strokes-char-table)
(put-char-table ?i 18 strokes-char-table)
(put-char-table ?j 19 strokes-char-table)
(put-char-table ?k 20 strokes-char-table)
(put-char-table ?l 21 strokes-char-table)
(put-char-table ?m 22 strokes-char-table)
(put-char-table ?n 23 strokes-char-table)
(put-char-table ?o 24 strokes-char-table)
(put-char-table ?p 25 strokes-char-table)
(put-char-table ?q 26 strokes-char-table)
(put-char-table ?r 27 strokes-char-table)
(put-char-table ?s 28 strokes-char-table)
(put-char-table ?t 29 strokes-char-table)
(put-char-table ?u 30 strokes-char-table)
(put-char-table ?v 31 strokes-char-table)
(put-char-table ?w 32 strokes-char-table)
(put-char-table ?x 33 strokes-char-table)
(put-char-table ?y 34 strokes-char-table)
(put-char-table ?z 35 strokes-char-table)
(put-char-table ?A 36 strokes-char-table)
(put-char-table ?B 37 strokes-char-table)
(put-char-table ?C 38 strokes-char-table)
(put-char-table ?D 39 strokes-char-table)
(put-char-table ?E 40 strokes-char-table)
(put-char-table ?F 41 strokes-char-table)
(put-char-table ?G 42 strokes-char-table)
(put-char-table ?H 43 strokes-char-table)
(put-char-table ?I 44 strokes-char-table)
(put-char-table ?J 45 strokes-char-table)
(put-char-table ?K 46 strokes-char-table)
(put-char-table ?L 47 strokes-char-table)
(put-char-table ?M 48 strokes-char-table)
(put-char-table ?N 49 strokes-char-table)
(put-char-table ?O 50 strokes-char-table)
(put-char-table ?P 51 strokes-char-table)
(put-char-table ?Q 52 strokes-char-table)
(put-char-table ?R 53 strokes-char-table)
(put-char-table ?S 54 strokes-char-table)
(put-char-table ?T 55 strokes-char-table)
(put-char-table ?U 56 strokes-char-table)
(put-char-table ?V 57 strokes-char-table)
(put-char-table ?W 58 strokes-char-table)
(put-char-table ?X 59 strokes-char-table)
(put-char-table ?Y 60 strokes-char-table)
(put-char-table ?Z 61 strokes-char-table)
(defconst strokes-base64-chars
;; I can easily have made this a vector of single-character strings,
;; like (vector "0" "1" "2" ...), and then the program would run
;; faster since it wouldn't then have to call `char-to-string' when it
;; did the `concat'. I left them as chars here because I want
;; *them* to change `concat' so that it accepts chars and deals with
;; them properly. i.e. the form: (concat "abc" ?T "xyz") should
;; return "abcTxyz" NOT "abc84xyz" (XEmacs 19.*) and NOT an error
;; (XEmacs 20.*).
;; (vector "0" "1" "2" "3" "4" "5" "6" "7" "8" "9"
;; "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m" "n" "o"
;; "p" "q" "r" "s" "t" "u" "v" "w" "x" "y" "z" "A" "B" "C" "D"
;; "E" "F" "G" "H" "I" "J" "K" "L" "M" "N" "O" "P" "Q" "R" "S"
;; "T" "U" "V" "W" "X" "Y" "Z")
(vector ?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9
?a ?b ?c ?d ?e ?f ?g ?h ?i ?j ?k ?l ?m ?n ?o ?p ?q ?r ?s ?t ?u ?v ?w ?x ?y ?z
?A ?B ?C ?D ?E ?F ?G ?H ?I ?J ?K ?L ?M ?N ?O ?P ?Q ?R ?S ?T ?U ?V ?W ?X ?Y ?Z)
"Character vector for fast lookup of base-64 encoding of numbers in [0,61].")
(defsubst strokes-xpm-char-on-p (char)
"Non-nil if CHAR represents an `on' bit in the xpm."
(char= char ?*))
(defsubst strokes-xpm-char-bit-p (char)
"Non-nil if CHAR represents an `on' or `off' bit in the xpm."
(or (char= char ?\ )
(char= char ?*)))
;;(defsubst strokes-xor (a b) ### Should I make this an inline function? ###
;; "T iff one and only one of A and B is non-nil; otherwise, returns nil.
;;NOTE: Don't use this as a numeric xor since it treats all non-nil
;; values as t including `0' (zero)."
;; (eq (null a) (not (null b))))
(defsubst strokes-xpm-encode-length-as-string (length)
"Given some LENGTH in [0,62) do a fast lookup of it's encoding."
(char-to-string (aref strokes-base64-chars length)))
(defsubst strokes-xpm-decode-char (character)
"Given a CHARACTER, do a fast lookup to find its corresponding integer value."
(get-char-table character strokes-char-table))
(defun strokes-xpm-to-compressed-string (&optional xpm-buffer)
"Convert the xpm in XPM-BUFFER into a compressed string representing the stroke.
XPM-BUFFER is an optional argument, and defaults to `*strokes-xpm*'."
(save-excursion
(set-buffer (setq xpm-buffer (or xpm-buffer "*strokes-xpm*")))
(goto-char (point-min))
(search-forward "/* pixels */") ; skip past header junk
(forward-char 2)
;; a note for below:
;; the `current-char' is the char being counted -- NOT the char at (point)
;; which happens to be called `char-at-point'
(let ((compressed-string "+/") ; initialize the output
(count 0) ; keep a current count of
; `current-char'
(last-char-was-on-p t) ; last entered stream
; represented `on' bits
(current-char-is-on-p nil) ; current stream represents `on' bits
(char-at-point (char-after))) ; read the first char
(while (not (char= char-at-point ?})) ; a `}' denotes the
; end of the pixmap
(cond ((zerop count) ; must restart counting
;; check to see if the `char-at-point' is an actual pixmap bit
(when (strokes-xpm-char-bit-p char-at-point)
(setq count 1
current-char-is-on-p (strokes-xpm-char-on-p char-at-point)))
(forward-char 1))
((= count 61) ; maximum single char's
; encoding length
(setq compressed-string (concat compressed-string
;; add a zero-length
;; encoding when
;; necessary
(when (eq last-char-was-on-p
current-char-is-on-p)
;; "0"
(strokes-xpm-encode-length-as-string 0))
(strokes-xpm-encode-length-as-string 61))
last-char-was-on-p current-char-is-on-p
count 0)) ; note that we just set
; count=0 and *don't* advance
; (point)
((strokes-xpm-char-bit-p char-at-point) ; an actual xpm bit
(if (eq current-char-is-on-p
(strokes-xpm-char-on-p char-at-point))
;; yet another of the same bit-type, so we continue
;; counting...
(progn
(incf count)
(forward-char 1))
;; otherwise, it's the opposite bit-type, so we do a
;; write and then restart count ### NOTE (for myself
;; to be aware of) ### I really should advance
;; (point) in this case instead of letting another
;; iteration go through and letting the case: count=0
;; take care of this stuff for me. That's why
;; there's no (forward-char 1) below.
(setq compressed-string (concat compressed-string
;; add a zero-length
;; encoding when
;; necessary
(when (eq last-char-was-on-p
current-char-is-on-p)
;; "0"
(strokes-xpm-encode-length-as-string 0))
(strokes-xpm-encode-length-as-string count))
count 0
last-char-was-on-p current-char-is-on-p)))
(t ; ELSE it's some other useless
; char, like `"' or `,'
(forward-char 1)))
(setq char-at-point (char-after)))
(concat compressed-string
(when (> count 0)
(concat (when (eq last-char-was-on-p
current-char-is-on-p)
;; "0"
(strokes-xpm-encode-length-as-string 0))
(strokes-xpm-encode-length-as-string count)))
"/"))))
;;;###autoload
(defun strokes-decode-buffer (&optional buffer force)
"Decode stroke strings in BUFFER and display their corresponding glyphs.
Optional BUFFER defaults to the current buffer.
Optional FORCE non-nil will ignore the buffer's read-only status."
(interactive)
;; (interactive "*bStrokify buffer: ")
(save-excursion
(set-buffer (setq buffer (get-buffer (or buffer (current-buffer)))))
(when (or (not buffer-read-only)
force
inhibit-read-only
(y-or-n-p-maybe-dialog-box
(format "Buffer %s is read-only. Strokify anyway? " buffer)))
(let ((inhibit-read-only t))
(message "Strokifying %s..." buffer)
(goto-char (point-min))
(let (ext string)
;; The comment below is what i'd have to do if I wanted to
;; deal with random newlines in the midst of the compressed
;; strings. If I do this, I'll also have to change
;; `strokes-xpm-to-compress-string' to deal with the newline,
;; and possibly other whitespace stuff. YUCK!
;; (while (re-search-forward "\\+/\\(\\w\\|\\)+/" nil t nil (get-buffer buffer))
(while (re-search-forward "\\+/\\w+/" nil t nil buffer)
(setq string (buffer-substring (+ 2 (match-beginning 0))
(1- (match-end 0))))
(strokes-xpm-for-compressed-string string " *strokes-xpm*")
(replace-match " ")
(setq ext (make-extent (1- (point)) (point)))
(set-extent-property ext 'type 'stroke-glyph)
(set-extent-property ext 'start-open t)
(set-extent-property ext 'end-open t)
(set-extent-property ext 'detachable t)
(set-extent-property ext 'duplicable t)
(set-extent-property ext 'data string)
(set-extent-face ext 'default)
(set-extent-end-glyph ext (make-glyph
(list
(vector 'xpm
:data (buffer-substring
(point-min " *strokes-xpm*")
(point-max " *strokes-xpm*")
" *strokes-xpm*"))
[string :data "[Stroke]"])))))
(message "Strokifying %s...done" buffer)))))
(defun strokes-encode-buffer (&optional buffer force)
"Convert the glyphs in BUFFER to thier base-64 ASCII representations.
Optional BUFFER defaults to the current buffer.
Optional FORCE non-nil will ignore the buffer's read-only status."
;; ### NOTE !!! ### (for me)
;; For later on, you can/should make the inserted strings atomic
;; extents, so that the users have a clue that they shouldn't be
;; editing inside them. Plus, if you make them extents, you can
;; very easily just hide the glyphs, so if you unstrokify, and the
;; restrokify, then those that already are glyphed don't need to be
;; re-calculated, etc. It's just nicer that way. The only things
;; to worry about is cleanup (i.e. do the glyphs get gc'd when the
;; buffer is killed?
;; (interactive "*bUnstrokify buffer: ")
(interactive)
(save-excursion
(set-buffer (setq buffer (or buffer (current-buffer))))
(when (or (not buffer-read-only)
force
inhibit-read-only
(y-or-n-p-maybe-dialog-box
(format "Buffer %s is read-only. Encode anyway? " buffer)))
(message "Encoding strokes in %s..." buffer)
;; (map-extents
;; (lambda (ext buf)
;; (when (eq (extent-property ext 'type) 'stroke-glyph)
;; (goto-char (extent-start-position ext))
;; (delete-char 1) ; ### What the hell do I do here? ###
;; (insert "+/" (extent-property ext 'data) "/")
;; (delete-extent ext))))))
(let ((inhibit-read-only t)
(start nil))
(loop repeat 2 do ; ### KLUDGE!!! This it pure crap! ###
(map-extents
(lambda (ext buf)
(when (eq (extent-property ext 'type) 'stroke-glyph)
(setq start (goto-char (extent-start-position ext)))
;; (insert "+/" (extent-property ext 'data) "/")
(insert-string "+/")
(insert-string (extent-property ext 'data))
(insert-string "/")
(delete-char 1)
(set-extent-endpoints ext start (point))
(set-extent-property ext 'type 'stroke-string)
(set-extent-property ext 'atomic t)
;; (set-extent-property ext 'read-only t)
(set-extent-face ext 'strokes-char-face)
(set-extent-property ext 'stroke-glyph (extent-end-glyph ext))
(set-extent-end-glyph ext nil))))))
(message "Encoding strokes in %s...done" buffer))))
(defun strokes-xpm-for-compressed-string (compressed-string &optional bufname)
"Convert the stroke represented by COMPRESSED-STRING into an xpm.
Store xpm in buffer BUFNAME if supplied \(default is `*strokes-xpm*'\)"
(save-excursion
(or bufname (setq bufname "*strokes-xpm*"))
(erase-buffer (set-buffer (get-buffer-create bufname)))
(insert compressed-string)
(goto-char (point-min))
(let ((current-char-is-on-p nil))
(while (not (eobp))
(insert-char
(if current-char-is-on-p
?*
?\ )
(strokes-xpm-decode-char (char-after)))
(delete-char 1)
(setq current-char-is-on-p (not current-char-is-on-p)))
(goto-char (point-min))
(loop repeat 33 do
(insert-char ?\")
(forward-char 33)
(insert "\",\n"))
(goto-char (point-min))
(insert strokes-xpm-header))))
;;;###autoload
(defun strokes-compose-complex-stroke ()
;; ### NOTE !!! ###
;; Even though we have lexical scoping, it's somewhat ugly how I
;; pass around variables in the global name space. I can/should
;; change this.
"Read a complex stroke and insert its glyph into the current buffer."
(interactive "*")
(let ((strokes-grid-resolution 33))
(strokes-read-complex-stroke)
(strokes-xpm-for-stroke nil " *strokes-xpm*" t)
(insert (strokes-xpm-to-compressed-string " *strokes-xpm*"))
(strokes-decode-buffer)))
(provide 'strokes)
(run-hooks 'strokes-load-hook)
;;; strokes.el ends here
|