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 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476
//! Bindings for the xterm.js public API. //! //! Unfortunately we can't (yet) generate the below from the TypeScript type //! definitions for xterm.js, so we do it by hand. //! //! This isn't a pure mechanical translation of the xterm.js bindings; docs have //! been adjusted in places (mainly just to link to the right things on the Rust //! side) but most importantly interfaces have been converted to either concrete //! Rust types (that are accessible from JavaScript), imported types (duck types //! that won't correspond exactly to any concrete type on the JavaScript side //! and thus can't be _constructed_ from Rust), or imported types + a concrete //! type that satisfies the interface with a Rust trait with methods that can //! construct the concrete type for anything satisfying the trait. //! //! Generic interfaces are also problematic; these have been "manually //! monomorphized" (i.e. `IEvent<Object, Void>` → `FnMut(KeyEventData)` on the //! Rust side). //! //! In general, the rule used for interfaces has been: //! - If instances are constructed by users of the xterm.js API and _written_ //! (i.e. _given_ to the xterm.js API and never _received_ through a field //! access or a method call), we have a corresponding _concrete type_ that //! satisfies the interface. This cannot be used to manipulate/interact with //! externally constructed instances of the interface. //! - If instances are given by the xterm.js API and never constructed by //! users of the API (i.e. `IBuffer` or `IBufferLine`), an extern-ed //! JavaScript type is made (or rather, we get `wasm-bindgen` to make the //! necessary glue so we can access the fields/methods of the interface on //! whatever object we get passed that has said fields/methods). //! - If we need to both consume and produce implementations of an interface //! we'd do both of the above (as of this writing we haven't had to do this //! for any type). //! - If we need to be able to have more than one true concrete type //! satisfying the interface on the Rust side, we also create a Rust trait //! that matches the shape of the interface along with a blanket impl for //! the trait that makes it so that all `wasm-bindgen` 'implementations' of //! the interface also get an impl of the trait. See the [section on //! mirroring interfaces](#mirroring-interfaces) for more details. //! //! See: [this](https://github.com/rustwasm/wasm-bindgen/issues/18) and //! [this](https://github.com/rustwasm/wasm-bindgen/issues/1341). //! //! ### Mirroring Interfaces //! //! As mentioned, when it's desirable to construct types that satisfy an //! interface within Rust, we create a Rust trait that's mirror of the interface //! in question. [`XtermAddon`] (behind the `ext` feature) is probably the best //! example of this; we want to be able to make it so that addons can be written //! in Rust. //! //! So, to make this possible we do these things: //! - Make a Rust trait that matches the interface. //! - Add a blanket impl so that the Rust trait is implemented for all the //! types `wasm-bindgen` produces that impl the type. //! + `wasm-bindgen` represents things like extending a class and //! implementing interfaces with [`Deref`] and [`AsRef`] impls that //! literally 'convert' the type into an instance of the type they're //! subclassing/implementing. //! + This works because internally these instances are represented by a //! [`JsValue`] that (I think) is just an object that holds all the //! methods the object has (including the methods that are part of the //! interface). When one of these methods is actually called on the Rust //! side of things, the [`JsValue`] (or a special `wasm-bindgen` //! reference to it, at least) is passed across the FFI boundary to a //! special JS function that `wasm-bindgen` made which knows to look up //! the function that we want in the JS value and call it with the //! arguments we passed. //! //! Okay! So at this point, we've got a Rust trait that mirrors a JS interface //! and all things that implement the interface impl the Rust trait //! automagically. Presumably, when we want to write an impl of the interface on //! the Rust side of things, we just impl the trait. //! //! And this works, but there's one catch: if we're just using the impls of the //! interface that we made in Rust, this will work just fine. Implementations //! that are actually written in JavaScript will internally go call their JS //! methods and the thing in Rust that's using the trait implementation won't be //! any the wiser. //! //! But, if we want to pass along implementations written in Rust to a //! _JavaScript user of the interface_, this isn't enough. //! //! Addons are a good example, again. It isn't enough to just be able to write //! something in Rust that has the shape of an addon; the point here is that //! we're able to pass it to xterm.js and actually use it! So, to do this, there //! are some more things we have to understand and do. //! //! First some background: //! - So, `wasm-bindgen` represents interfaces as concrete types that contain //! a [`JsValue`] that (presumably) contains all the methods needed to //! satisfy the interface. //! - The [`AsRef`] and [`Deref`] impls pretty much just take the inner //! [`JsValue`] and put it into a different type that'll use the [`JsValue`] //! to look up and call different functions; this works because the JS value //! is just an object with a table of methods — all the methods the object //! has, not just the ones belonging to the interface we were treating the //! object as an instance of. The interface types (and regular class types //! for that matter) and kind of just a window into the object's methods, //! showing us a limited subset of what the object actually has. //! - The mechanism by which this casting happens is [`JsCast::unchecked_ref`] //! (and the other methods on [`JsCast`]). As the docs on that method say, //! no checking actually happens! We're pretty much just changing the label //! that lets us know what methods the corresponding JS value actually has //! (as in, we're going from, for example, `Terminal` to `Disposable` but //! nothing has actually changed; the literal bits that represent the //! variable are the same, but the type has changed which will let us call //! different methods that will look up and call different methods on the JS //! side). There are checked variants in [`JsCast`]; I think the way this //! works is by having JS functions per type/interface that check that an //! object actually has all the things it needs to have for an interface. //! [`JsCast::instanceof`] calls the JS function that does this and the //! checked casts (i.e. [`JsCast::dyn_ref`]) calls it. //! - So, anyways, anytime a JS function takes something that "satisfies an //! interface" it gets represented, via `wasm-bindgen`, as taking an //! instance of the type that corresponds to the interface. As in, something //! that takes an Addon won't take `impl Addon` or even `dyn Addon`, it'll //! just take `Addon` (sidenote: if you think about what the [`JsValue`] //! inside the interface types actually contain, it's basically the same as //! the vtables in trait objects — except that the table has all the methods //! in the actual type and that this is how all method calls work in JS). //! - All this is to say that what we need to do is make a [`JsValue`] that //! has entries for the methods that are part of the interface where each //! entry actually points to the Rust functions that are part of the //! implementation of the trait we're trying to pass along to JS. Once we //! have such an object, we can cast it as the concrete type that //! `wasm-bindgen` has given us for the interface and then be on our way. //! //! A couple of other considerations, though: //! - First, we'd like to this in a generic way (i.e. make it so that any //! Rust trait impl for a particular trait can be turned into it's concrete //! interface type counterpart) and we _can_, but we need to be able to //! distinguish between actual JS implementations and Rust implementations //! (both of which implement the Rust trait) because we don't want to //! 'double wrap' the JS implementation (i.e. if we were to do the above //! for a JS impl for a particular method call on the interface we'd be //! calling a JS function that calls a Rust function that then calls the //! actual JS function, when we could have just called the JS function). //! + Luckily, this is not hard to remedy; we can have the function that //! turns the trait impl into the concrete type be a part of the trait //! _and_ we can provide a default impl that does the wrapped. Then, we //! can have the blanket impl (which is bounded by [`AsRef`] anyways) //! just call `as_ref`. //! - Being able to turn Rust function into things that can be called from JS //! comes with some restrictions: //! + All types in each function have to be Wasm ABI compatible which means //! no lifetimes or generics or trait objects, etc. This actually isn't //! a problem for us since we're mirroring a JS interface which means the //! functions are Wasm ABI compliant anyways. //! + The functions and everything they point to have to be `'static`. This //! is because we can't enforce lifetimes across the FFI boundary. //! Realistically this probably means using `Box::leak` whenever a Rust //! trait impl needs to be passed along to JS. //! * Rather than do this leaking internally, we'll let the user do it. //! We enforce the `'static` bit by having the `into_js` method on the //! trait require a `'static` lifetime. So, in order to actually //! convert their impl for use with JS users will have to leak it. //! * Update: for symmetry with the _actually backed by a JS impl_ case, //! we do preform the leaking (we don't want to require a `'static` //! reference for JS impls which would require users to leak them //! unnecessarily). //! + Traits that take a mutable reference to self **and** have more than //! one method aren't possible (safely) because the closures we pass //! along hold a reference to the actual instance and we can't have //! mutability with aliasing. So, we'll just make all trait methods only //! take an immutable reference to self (as `wasm-bindgen` does). Rust //! trait implementors will need to use interior mutability. //! //! The final piece required is an extension method that takes the Rust trait //! impl instead of the concrete type and then converts it to concrete type //! using the trait impl and passes the concrete type instance along to the //! `wasm-bindgen` method that expects it. //! //! [`JsValue`]: wasm_bindgen::JsValue //! [`JsCast`]: wasm_bindgen::JsCast //! [`JsCast::unchecked_ref`]: wasm_bindgen::JsCast::unchecked_ref //! [`JsCast::dyn_ref`]: wasm_bindgen::JsCast::dyn_ref //! [`JsCast::instanceof`]: wasm_bindgen::JsCast::instanceof //! //! [`XtermAddon`]: super::ext::addon::XtermAddon //! //! [`Deref`]: core::ops::Deref //! [`AsRef`]: core::convert::AsRef use super::ReadOnlyArray; use wasm_bindgen::prelude::*; /// An alias for [`String`]. pub type Str = String; /// The type of the bell notification the terminal will use. #[wasm_bindgen] #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] pub enum BellStyle { /// No bell notification. None = "none", /// [Removed](https://github.com/xtermjs/xterm.js/issues/1155). #[deprecated( since = "3.0.0", note = "See: https://github.com/xtermjs/xterm.js/issues/1155" )] /// A visual bell notification. Visual = "visual", /// An auditory bell notification. Sound = "sound", /// [Removed](https://github.com/xtermjs/xterm.js/issues/1155). #[deprecated( since = "3.0.0", note = "See: https://github.com/xtermjs/xterm.js/issues/1155" )] Both = "both", } /// The style of the cursor. #[wasm_bindgen] #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] pub enum CursorStyle { /// Block cursor style: `█`. Block = "block", /// Underline cursor style: `_`. Underline = "underline", /// Bar cursor style: `|`. Bar = "bar", } /// The modifier key hold to multiply scroll speed. #[wasm_bindgen] #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] pub enum FastScrollModifier { /// The 'alt' key. Alt = "alt", /// The 'ctrl' key. Ctrl = "ctrl", /// The 'shift' key. Shift = "shift", } /// A string representing text font weight. #[wasm_bindgen] #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] pub enum FontWeight { /// Normal font weight. Normal = "normal", /// Bold font weight. Bold = "bold", /// 100 font weight. _100 = "100", /// 200 font weight. _200 = "200", /// 300 font weight. _300 = "300", /// 400 font weight. _400 = "400", /// 500 font weight. _500 = "500", /// 600 font weight. _600 = "600", /// 700 font weight. _700 = "700", /// 800 font weight. _800 = "800", /// 900 font weight. _900 = "900", } /// A string representing log level. #[wasm_bindgen] #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] pub enum LogLevel { /// Show debug (and above) log level information (all logs). Debug = "debug", /// Show information (and above) log level information. Info = "info", /// Show warning (and above) log level information. Warn = "warn", /// Show errors. Error = "error", /// Show no logs. Off = "off", } /// A string representing a renderer type. #[wasm_bindgen] #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] pub enum RendererType { /// The DOM renderer. This is faster but doesn't support some features /// (letter spacing, blinking cursor). As such, this is the _fallback_. Dom = "dom", /// The Canvas renderer. Canvas = "canvas", } /// A string representing the type of a buffer. #[wasm_bindgen] #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] pub enum BufferType { /// A normal buffer. Normal = "normal", /// An alternate buffer. Alternate = "alternate", } /// Width of a Wide Character. #[wasm_bindgen] #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] pub enum WideCharacterWidth { /// Width of 0. _0 = 0, /// Width of 1. _1 = 1, /// Width of 2. _2 = 2, } macro_rules! wasm_struct { ( $(#[constructor::skip = $const_skip_reason:literal])? #[wasm_bindgen $(( $($wb_opts:tt)* ))? ] $(#[$metas:meta])* pub struct $nom:ident { $( $(#[doc = $docs_field:literal])* $(#[wasm_bindgen($($wasm_opt:ident$( = $wasm_val:tt)?),+)])? // $(#[$metas_field:meta])* $(#[deprecated($($depr:tt)+)])? $(pub $field:ident: $field_ty:ty)? $(| clone( set = $set:ident, js_name = $js_name:ident $(, pub = $public:ident)? ) $priv_field:ident: $priv_field_ty:ty )? , )+ } ) => { #[wasm_bindgen $(( $($wb_opts)* ))? ] $(#[$metas])* pub struct $nom { $( $(#[doc = $docs_field])* $(#[wasm_bindgen($($wasm_opt$( = $wasm_val)?),+)])? // $(#[$metas_field])* $(#[deprecated($($depr)+)])? $(pub $field: $field_ty)? $( $( #[doc = $public] #[wasm_bindgen(skip)] pub )? pub(in super) $priv_field: $priv_field_ty )? , )+ } $( #[cfg(__never__)] #[doc = $const_skip_reason] )? impl $nom { #[doc = "Constructor."] #[allow(deprecated, clippy::too_many_arguments)] #[must_use] pub const fn new( $( $($field: $field_ty,)? $($priv_field: $priv_field_ty,)? )+ ) -> Self { Self { $( $($field,)? $($priv_field,)? )+ } } } #[wasm_bindgen] impl $nom { $( $(#[doc = $docs_field])* // Some garbage to swallow the doc comment in case we're not // dealing with a private field: $( #[allow(unused_doc_comments)] #[cfg(__never__)] fn $field() -> () { } )? $( #[doc = "\n\nGetter."] #[wasm_bindgen(getter = $js_name)] #[must_use] pub fn $priv_field(&self) -> $priv_field_ty { self.$priv_field.clone() } )? $(#[doc = $docs_field])* // Again: garbage to swallow the doc comment. $( #[allow(unused_doc_comments)] #[cfg(__never__)] fn $field() -> () { } )? $( #[doc = "\n\nSetter."] #[wasm_bindgen(setter = $js_name)] pub fn $set(&mut self, $priv_field: $priv_field_ty) { self.$priv_field = $priv_field; } )? )* } }; } wasm_struct! { #[wasm_bindgen(inspectable)] #[derive(Debug, Clone)] /// Data type to register a `CSI`, `DCS`, or `ESC` callback in the parser in the /// form: /// - ESC I..I F /// - CSI Prefix P..P I..I F /// - DCS Prefix P..P I..I F data_bytes ST /// /// with these rules/restrictions: /// - prefix can only be used with `CSI` and `DCS` /// - only one leading prefix byte is recognized by the parser before any /// other parameter bytes (P..P) /// - intermediate bytes are recognized up to 2 /// /// For custom sequences make sure to read ECMA-48 and the resources at /// vt100.net to not clash with existing sequences or reserved address space. /// General recommendations: /// - use private address space (see ECMA-48) /// - use max one intermediate byte (technically not limited by the spec, /// in practice there are no sequences with more than one intermediate byte, /// thus parsers might get confused with more intermediates) /// - test against other common emulators to check whether they escape/ignore /// the sequence correctly /// /// Notes: /// - OSC command registration is handled differently (see `addOscHandler`). /// - APC, PM or SOS is currently not supported. /// /// (This is really an interface, but we just go and define our own type that /// satisfies the interface.) pub struct FunctionIdentifier { /// Optional prefix byte; must be in range `\x3c` .. `\x3f`. /// Usable in `CSI` and `DCS`. |clone(set = set_prefix, js_name = prefix) prefix: Option<Str>, /// Optional intermediate bytes; must be in range `\x20` .. `\x2f`. /// Usable in `CSI`, `DCS`, and `ESC`. |clone(set = set_intermediates, js_name = intermediates) intermediates: Option<Str>, /// Final byte; must be in range `\x40` .. `\x7e` for `CSI` and `DCS`, /// `\x30` .. `\x7E` for `ESC`. |clone(set = set_final_byte, js_name = final) final_byte: Str, }} wasm_struct! { #[constructor::skip = "all fields are pub, `dyn Trait` w/const fns → trouble"] #[wasm_bindgen(inspectable)] #[derive(Debug, Clone)] /// An object containing options for a link matcher. /// /// Note: we had to make some significant compromises to mirroring this /// interface on the Rust side. Because the interface contains optional /// functions we choose to model this as a struct rather than as an extern-ed /// type: we can have fields that have a [`Closure`] or a function trait object /// in an `Option` but we have no way to have an optional function in a Rust /// trait. /// /// Unfortunately `Option<Closure<_>>` and `Option<dyn Fn{,Mut}(...)>` don't /// implement `OptionIntoWasmAbi`, so we had to make the fields required. /// Additionally, the validation callback actually takes another callback which /// we couldn't model as the appropriate Rust type (`dyn FnMut(bool)`) because /// `dyn FnMut` and the `Closure` type don't implement `FromWasmAbi` (i.e. you /// can't produce something of those types on the JS side). So, we had to fall /// back to using [`js_sys::Function`]. /// /// Fortunately since this interface is only ever produced by the user of the /// API, the first point (not having optional functions) isn't too big a deal. /// The second point makes actually making a [`LinkMatcherOptions`] instance in /// Rust kind of a pain, but it's still workable. /// /// Since we can't actually do the `Option<Closure<_>>` thing, it might actually /// have been better to model this as an extern-ed type + a Rust trait, but /// let's leave that for another time. If there's interest in actually using /// this part of the API in Rust we can make the change (but I doubt there will /// be). pub struct LinkMatcherOptions { /// The index of the link from the `regex.match(text)` call. /// /// This defaults to 0 (for regular expressions without capture groups). #[wasm_bindgen(js_name = matchIndex)] pub match_index: Option<u32>, /// A function that validates whether to create an individual link. /// /// The callback that this function is given is passed a `bool` indicating /// whether the link given (`uri`) is valid. /// /// Since the signature, post-translation, is rather cryptic, here's the /// original TypeScript binding: /// ```ts /// validationCallback?: ( /// uri: string, /// callback: (isValid: boolean) => void, /// ) => void; /// ``` #[wasm_bindgen(readonly, js_name = validationCallback)] pub validation_callback: /*Option<*/ &'static Closure< dyn FnMut( Str, // &'static dyn FnMut(bool), js_sys::Function, ) > /*>*/, /// A function that is called when the mouse hovers over a link for a period /// of time (defined by [`TerminalOptions::link_tooltip_hover_duration`]). /// /// Since the signature, post-translation, is rather cryptic, here's the /// original TypeScript binding: /// ```ts /// tooltipCallback?: ( /// event: MouseEvent, /// uri: string, /// location: IViewportRange, /// ) => boolean | void; /// ``` #[wasm_bindgen(readonly, js_name = tooltipCallback)] pub tooltip_callback: /*Option<*/ &'static Closure< dyn FnMut(web_sys::MouseEvent, Str, ViewportRange) -> Option<bool> > /*>*/, /// A function that is called when the mouse leaves a link. /// /// Note that this can happen even when [`tooltip_callback`] hasn't fired /// for the link yet. /// /// Just to be thorough, here's the original TypeScript binding: /// ```ts /// leaveCallback?: () => void; /// ``` /// /// [`tooltip_callback`]: LinkMatcherOptions::tooltip_callback #[wasm_bindgen(readonly, js_name = leaveCallback)] pub leave_callback: /*Option<*/ &'static Closure<dyn FnMut()> /*>*/, /// The priority of the link matcher. /// /// This defined the order in which the link matcher is evaluated relative /// to others, from highest to lowest. The default value is 0. #[wasm_bindgen(js_name = priority)] pub priority: Option<i16>, /// A function that is called when the mousedown and click events occur. /// /// This function is responsible for determining whether a link will be /// activated upon click. This enables only activating a link when a certain /// modifier is held down. If this function determines that an event does /// not activate the link (i.e. by returning `false`) then the event will /// continue propagation (e.g. double click to select word). /// /// Since the signature, post-translation, is rather cryptic, here's the /// original TypeScript binding: /// ```ts /// willLinkActivate?: (event: MouseEvent, uri: string) => boolean; /// ``` #[wasm_bindgen(readonly, js_name = willLinkActivate)] pub will_link_activate: /*Option<*/ &'static Closure<dyn FnMut(web_sys::MouseEvent, Str) -> bool> /*>*/, }} wasm_struct! { #[wasm_bindgen(inspectable)] #[derive(Debug, Clone, PartialEq, Eq, Default)] /// Contains colors to theme the terminal with. /// /// (This is really an interface, but we just go and define our own type that /// satisfies the interface.) pub struct Theme { /// The default background color. |clone(set = set_background, js_name = background) background: Option<Str>, /// ANSI black (eg. `\x1b[30m`). |clone(set = set_black, js_name = black) black: Option<Str>, /// ANSI blue (eg. `\x1b[34m`). |clone(set = set_blue, js_name = blue) blue: Option<Str>, /// ANSI bright black (eg. `\x1b[1;30m`). |clone(set = set_bright_black, js_name = brightBlack) bright_black: Option<Str>, /// ANSI bright blue (eg. `\x1b[1;34m`). |clone(set = set_bright_blue, js_name = brightBlue) bright_blue: Option<Str>, /// ANSI bright cyan (eg. `\x1b[1;36m`). |clone(set = set_bright_cyan, js_name = brightCyan) bright_cyan: Option<Str>, /// ANSI bright green (eg. `\x1b[1;32m`). |clone(set = set_bright_green, js_name = brightGreen) bright_green: Option<Str>, /// ANSI bright magenta (eg. `\x1b[1;35m`). |clone(set = set_bright_magenta, js_name = brightMagenta) bright_magenta: Option<Str>, /// ANSI bright red (eg. `\x1b[1;31m`). |clone(set = set_bright_red, js_name = brightRed) bright_red: Option<Str>, /// ANSI bright white (eg. `\x1b[1;37m`). |clone(set = set_bright_white, js_name = brightWhite) bright_white: Option<Str>, /// ANSI bright yellow (eg. `\x1b[1;33m`). |clone(set = set_bright_yellow, js_name = brightYellow) bright_yellow: Option<Str>, /// The cursor color. |clone(set = set_cursor, js_name = cursor) cursor: Option<Str>, /// The accent color of the cursor (fg color for a block cursor). |clone(set = set_cursor_accent, js_name = cursorAccent) cursor_accent: Option<Str>, /// ANSI cyan (eg. `\x1b[36m`). |clone(set = set_cyan, js_name = cyan) cyan: Option<Str>, /// The default foreground color. |clone(set = set_foreground, js_name = foreground) foreground: Option<Str>, /// ANSI green (eg. `\x1b[32m`). |clone(set = set_green, js_name = green) green: Option<Str>, /// ANSI magenta (eg. `\x1b[35m`). |clone(set = set_magenta, js_name = magenta) magenta: Option<Str>, /// ANSI red (eg. `\x1b[31m`). |clone(set = set_red, js_name = red) red: Option<Str>, /// The selection background color (can be transparent). |clone(set = set_selection, js_name = selection) selection: Option<Str>, /// ANSI white (eg. `\x1b[37m`). |clone(set = set_white, js_name = white) white: Option<Str>, /// ANSI yellow (eg. `\x1b[33m`). |clone(set = set_yellow, js_name = yellow) yellow: Option<Str>, }} wasm_struct! { #[wasm_bindgen(inspectable)] #[derive(Debug, Clone, PartialEq, Eq)] /// An object representing a range within the viewport of the terminal. /// /// (This is really an interface but because it's only ever produced by the user /// we just go and define our own type that satisfies the interface). pub struct ViewportRange { /// The start of the range. #[wasm_bindgen(js_name = start)] pub start: ViewportRangePosition, /// The end of the range. #[wasm_bindgen(js_name = end)] pub end: ViewportRangePosition, }} wasm_struct! { #[wasm_bindgen(inspectable)] #[derive(Debug, Clone, Copy, PartialEq, Eq)] /// An object representing a cell position within the viewport of the terminal. /// /// (This is really an interface but because it's only ever produced by the user /// we just go and define our own type that satisfies the interface). pub struct ViewportRangePosition { /// The x position of the cell. /// /// This is a 0-based index that refers to the space in between columns, not /// the column itself. Index 0 refers to the left side of the viewport, /// index [`Terminal::cols`] refers to the right side of the viewport. This /// can be thought of as how a cursor is positioned in a text editor. #[wasm_bindgen(js_name = x)] pub x: u16, /// The y position of the cell. /// /// This is a 0-based index that refers to a specific row. #[wasm_bindgen(js_name = y)] pub y: u16, }} wasm_struct! { #[wasm_bindgen(inspectable)] #[derive(Debug, Clone, PartialEq, Eq, Default)] /// Enable various window manipulation and report features (`CSI Ps ; Ps ; Ps /// t`). /// /// Most settings have no default implementation, as they heavily rely on the /// embedding environment. /// /// To implement a feature, create a custom CSI hook like this: /// /// ```ts /// term.parser.addCsiHandler({final: 't'}, params => { /// const ps = params[0]; /// switch (ps) { /// case XY: /// ... // your implementation for option XY /// return true; // signal Ps=XY was handled /// } /// return false; // any Ps that was not handled /// }); /// ``` /// /// Note on security: Most features are meant to deal with some information of /// the host machine where the terminal runs on. This is seen as a security risk /// possibly leaking sensitive data of the host to the program in the terminal. /// Therefore all options (even those without a default implementation) are /// guarded by the boolean flag and disabled by default. /// /// (This is really an interface, but we just go and define our own type that /// satisfies the interface.) pub struct WindowOptions { /// Ps=10 ; 0 Undo full-screen mode. Ps=10 ; 1 Change to full-screen. Ps=10 /// ; 2 Toggle full-screen. /// /// No default implementation. #[wasm_bindgen(js_name = fullscreenWin)] pub fullscreen_win: Option<bool>, /// Ps=16 Report xterm character cell size in pixels. Result is “CSI 6 ; /// height ; width t”. /// /// Has a default implementation. #[wasm_bindgen(js_name = getCellSizePixels)] pub get_cell_size_pixels: Option<bool>, /// Ps=20 Report xterm window’s icon label. Result is “OSC L label ST”. /// /// No default implementation. #[wasm_bindgen(js_name = getIconTitle)] pub get_icon_title: Option<bool>, /// Ps=19 Report the size of the screen in characters. Result is “CSI 9 ; /// height ; width t”. /// /// No default implementation. #[wasm_bindgen(js_name = getScreenSizeChars)] pub get_screen_size_chars: Option<bool>, /// Ps=15 Report size of the screen in pixels. Result is “CSI 5 ; height ; /// width t”. /// /// No default implementation. #[wasm_bindgen(js_name = getScreenSizePixels)] pub get_screen_size_pixels: Option<bool>, /// Ps=13 Report xterm window position. Result is “CSI 3 ; x ; y t”. Ps=13 ; /// 2 Report xterm text-area position. Result is “CSI 3 ; x ; y t”. /// /// No default implementation. #[wasm_bindgen(js_name = getWinPosition)] pub get_win_position: Option<bool>, /// Ps=18 Report the size of the text area in characters. Result is “CSI 8 ; /// height ; width t”. /// /// Has a default implementation. #[wasm_bindgen(js_name = getWinSizeChars)] pub get_win_size_chars: Option<bool>, /// Ps=14 Report xterm text area size in pixels. Result is “CSI 4 ; height ; /// width t”. Ps=14 ; 2 Report xterm window size in pixels. Result is “CSI 4 /// ; height ; width t”. /// /// Has a default implementation. #[wasm_bindgen(js_name = getWinSizePixels)] pub get_win_size_pixels: Option<bool>, /// Ps=11 Report xterm window state. If the xterm window is non-iconified, /// it returns “CSI 1 t”. If the xterm window is iconified, it returns “CSI /// 2 t”. /// /// No default implementation. #[wasm_bindgen(js_name = getWinState)] pub get_win_state: Option<bool>, /// Ps=21 Report xterm window’s title. Result is “OSC l label ST”. /// /// No default implementation. #[wasm_bindgen(js_name = getWinTitle)] pub get_win_title: Option<bool>, /// Ps=6 Lower the xterm window to the bottom of the stacking order. /// /// No default implementation. #[wasm_bindgen(js_name = lowerWin)] pub lower_win: Option<bool>, /// Ps=9 ; 0 Restore maximized window. Ps=9 ; 1 Maximize window (i.e., /// resize to screen size). Ps=9 ; 2 Maximize window vertically. Ps=9 ; 3 /// Maximize window horizontally. /// /// No default implementation. #[wasm_bindgen(js_name = maximizeWin)] pub maximize_win: Option<bool>, /// Ps=2 Iconify window. /// /// No default implementation. #[wasm_bindgen(js_name = minimizeWin)] pub minimize_win: Option<bool>, /// Ps=23 ; 0 Restore xterm icon and window title from stack. Ps=23 ; 1 /// Restore xterm icon title from stack. Ps=23 ; 2 Restore xterm window /// title from stack. /// /// All variants have a default implementation. #[wasm_bindgen(js_name = popTitle)] pub pop_title: Option<bool>, /// Ps=22 ; 0 Save xterm icon and window title on stack. Ps=22 ; 1 Save /// xterm icon title on stack. Ps=22 ; 2 Save xterm window title on stack. /// /// All variants have a default implementation. #[wasm_bindgen(js_name = pushTitle)] pub push_title: Option<bool>, /// Ps=5 Raise the window to the front of the stacking order. /// /// No default implementation. #[wasm_bindgen(js_name = raiseWin)] pub raise_win: Option<bool>, /// Ps=7 Refresh the window. #[wasm_bindgen(js_name = refreshWin)] pub refresh_win: Option<bool>, /// Ps=1 De-iconify window. /// /// No default implementation. #[wasm_bindgen(js_name = restoreWin)] pub restore_win: Option<bool>, /// Ps>=24 Resize to Ps lines (DECSLPP). DECSLPP is not implemented. This /// settings is also used to enable / disable DECCOLM (earlier variant of /// DECSLPP). #[wasm_bindgen(js_name = setWinLines)] pub set_win_lines: Option<bool>, /// Ps=3 ; x ; y Move window to [x, y]. /// /// No default implementation. #[wasm_bindgen(js_name = setWinPosition)] pub set_win_position: Option<bool>, /// Ps = 8 ; height ; width Resize the text area to given height and width /// in characters. Omitted parameters should reuse the current height or /// width. Zero parameters use the display’s height or width. /// /// No default implementation. #[wasm_bindgen(js_name = setWinSizeChars)] pub set_win_size_chars: Option<bool>, /// Ps = 4 ; height ; width Resize the window to given height and width in /// pixels. Omitted parameters should reuse the current height or width. /// Zero parameters should use the display’s height or width. /// /// No default implementation. #[wasm_bindgen(js_name = setWinSizePixels)] pub set_win_size_pixels: Option<bool>, }} wasm_struct! { #[wasm_bindgen(inspectable)] #[derive(Debug, Clone, PartialEq, Default)] /// An object containing start up options for the terminal. /// /// (This is really an interface, but we just go and define our own type that /// satisfies the interface.) pub struct TerminalOptions { /// Whether to allow the use of proposed API. When false, any usage of APIs /// marked as experimental/proposed will throw an error. This defaults to /// true currently, but will change to false in v5.0. #[wasm_bindgen(js_name = allowProposedApi)] pub allow_proposed_api: Option<bool>, /// Whether background should support non-opaque color. It must be set /// before executing the [`Terminal::open`] method and can’t be changed /// later without executing it again. Note that enabling this can negatively /// impact performance. /// /// [`Terminal::open()`]: Terminal::open #[wasm_bindgen(js_name = allowTransparency)] pub allow_transparency: Option<bool>, /// A data uri of the sound to use for the bell when /// [`TerminalOptions.bell_style`] = 'sound'. |clone(set = set_bell_sound, js_name = bellSound) bell_sound: Option<Str>, /// The type of the bell notification the terminal will use. #[wasm_bindgen(js_name = bellStyle)] pub bell_style: Option<BellStyle>, /// The number of columns in the terminal. #[wasm_bindgen(js_name = cols)] pub cols: Option<u16>, /// When enabled the cursor will be set to the beginning of the next line /// with every new line. This is equivalent to sending ‘\r\n’ for each ‘\n’. /// Normally the termios settings of the underlying PTY deals with the /// translation of ‘\n’ to ‘\r\n’ and this setting should not be used. If /// you deal with data from a non-PTY related source, this settings might be /// useful. #[wasm_bindgen(js_name = convertEol)] pub convert_eol: Option<bool>, /// Whether the cursor blinks. #[wasm_bindgen(js_name = cursorBlink)] pub cursor_blink: Option<bool>, /// The style of the cursor. #[wasm_bindgen(js_name = cursorStyle)] pub cursor_style: Option<CursorStyle>, /// The width of the cursor in CSS pixels when [`cursor_style`] is set to /// [‘bar’]. /// /// [`cursor_style`]: TerminalOptions.cursor_style /// [‘bar’]: CursorStyle::Bar #[wasm_bindgen(js_name = cursorWidth)] pub cursor_width: Option<f32>, /// Whether input should be disabled. #[wasm_bindgen(js_name = disableStdin)] pub disable_stdin: Option<bool>, /// Whether to draw bold text in bright colors. The default is true. #[wasm_bindgen(js_name = drawBoldTextInBrightColors)] pub draw_bold_text_in_bright_colors: Option<bool>, /// The modifier key hold to multiply scroll speed. #[wasm_bindgen(js_name = fastScrollModifier)] pub fast_scroll_modifier: Option<FastScrollModifier>, /// The scroll speed multiplier used for fast scrolling. #[wasm_bindgen(js_name = fastScrollSensitivity)] pub fast_scroll_sensitivity: Option<f32>, /// The font family used to render text. |clone(set = set_font_family, js_name = fontFamily) font_family: Option<Str>, /// The font size used to render text. #[wasm_bindgen(js_name = fontSize)] pub font_size: Option<f32>, /// The font weight used to render non-bold text. #[wasm_bindgen(js_name = fontWeight)] pub font_weight: Option<f32>, /// The font weight used to render bold text. #[wasm_bindgen(js_name = fontWeightBold)] pub font_weight_bold: Option<FontWeight>, /// The spacing in whole pixels between characters. #[wasm_bindgen(js_name = letterSpacing)] pub letter_spacing: Option<u16>, /// The line height used to render text. #[wasm_bindgen(js_name = lineHeight)] pub line_height: Option<u16>, /// The duration in milliseconds before link tooltip events fire when /// hovering on a link. #[wasm_bindgen(js_name = linkTooltipHoverDuration)] #[deprecated( since = "4.6.0", note = "This will be removed when the link matcher API is removed. \ See: https://github.com/xtermjs/xterm.js/issues/2703" )] pub link_tooltip_hover_duration: Option<u16>, /// What log level to use, this will log for all levels below and including /// what is set: /// 1) debug /// 2) info __(default)__ /// 3) warn /// 4) error /// 5) off #[wasm_bindgen(js_name = logLevel)] pub log_level: Option<LogLevel>, /// Whether holding a modifier key will force normal selection behavior, /// regardless of whether the terminal is in mouse events mode. This will /// also prevent mouse events from being emitted by the terminal. For /// example, this allows you to use xterm.js’ regular selection inside tmux /// with mouse mode enabled. #[wasm_bindgen(js_name = macOptionClickForcesSelection)] pub mac_option_click_forces_selection: Option<bool>, /// Whether to treat option as the meta key. #[wasm_bindgen(js_name = macOptionIsMeta)] pub mac_option_is_meta: Option<bool>, /// The minimum contrast ratio for text in the terminal, setting this will /// change the foreground color dynamically depending on whether the /// contrast ratio is met. Example values: /// - 1: The default, do nothing. /// - 4.5: Minimum for WCAG AA compliance. /// - 7: Minimum for WCAG AAA compliance. /// - 21: White on black or black on white. #[wasm_bindgen(js_name = minimumContrastRatio)] pub minimum_contrast_ratio: Option<f32>, /// The type of renderer to use, this allows using the fallback DOM renderer /// when canvas is too slow for the environment. The following features do /// not work when the DOM renderer is used: /// - Letter spacing /// - Cursor blink #[wasm_bindgen(js_name = rendererType)] pub renderer_type: Option<RendererType>, /// Whether to select the word under the cursor on right click, this is /// standard behavior in a lot of macOS applications. #[wasm_bindgen(js_name = rightClickSelectsWord)] pub right_click_selects_word: Option<bool>, /// The number of rows in the terminal. #[wasm_bindgen(js_name = rows)] pub rows: Option<u16>, /// Whether screen reader support is enabled. When on this will expose /// supporting elements in the DOM to support NVDA on Windows and VoiceOver /// on macOS. #[wasm_bindgen(js_name = screenReaderMode)] pub screen_reader_mode: Option<bool>, /// The scrolling speed multiplier used for adjusting normal scrolling /// speed. #[wasm_bindgen(js_name = scrollSensitivity)] pub scroll_sensitivity: Option<f32>, /// The amount of scrollback in the terminal. Scrollback is the amount of /// rows that are retained when lines are scrolled beyond the initial /// viewport. #[wasm_bindgen(js_name = scrollback)] pub scrollback: Option<u32>, /// The size of tab stops in the terminal. #[wasm_bindgen(js_name = tabStopWidth)] pub tab_stop_width: Option<u16>, /// The color theme of the terminal. |clone(set = set_theme, js_name = theme) theme: Option<Theme>, /// Enable various window manipulation and report features. All features are /// disabled by default for security reasons. |clone(set = set_window_options, js_name = windowOptions) window_options: Option<WindowOptions>, /// Whether “Windows mode” is enabled. Because Windows backends winpty and /// conpty operate by doing line wrapping on their side, xterm.js does not /// have access to wrapped lines. When Windows mode is enabled the following /// changes will be in effect: /// /// - Reflow is disabled. /// - Lines are assumed to be wrapped if the last character of the line is /// not whitespace. #[wasm_bindgen(js_name = windowsMode)] pub windows_mode: Option<bool>, /// A string containing all characters that are considered word separated by /// the double click to select work logic. |clone(set = set_word_separator, js_name = wordSeparator) word_separator: Option<Str>, }} /// A Color for use with xterm.js. /// /// Can represent: /// - the Default color (0), /// - a Palette number (0 to 255, inclusive). /// - or, an RGB 'true color' (24 bits, 0xRRGGBB). pub type Color = u32; #[wasm_bindgen(module = "xterm")] extern "C" { /// Represents a single cell in the terminal’s buffer. /// /// (This is a [duck-typed interface]). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html pub type BufferCell; /// Gets a cell’s background color number, this differs depending on what /// the color mode of the cell is: /// - Default: This should be 0, representing the default background color /// (CSI 49 m). /// - Palette: This is a number from 0 to 255 of ANSI colors (CSI 4(0-7) /// m, CSI 10(0-7) m, CSI 48 ; 5 ; 0-255 m). /// - RGB: A hex value representing a ‘true color’: 0xRRGGBB (CSI 4 8 ; 2 /// ; Pi ; Pr ; Pg ; Pb) #[wasm_bindgen(structural, method, js_name = getBgColor)] pub fn get_bg_color(this: &BufferCell) -> Color; /// Gets the number representation of the background color mode, this can be /// used to perform quick comparisons of 2 cells to see if they’re the same. /// Use [`is_bg_rgb`], [`is_bg_palette`], and [`is_bg_default`] to check /// what color mode a cell is. /// /// [`is_bg_rgb`]: BufferCell::is_bg_rgb /// [`is_bg_palette`]: BufferCell::is_bg_palette /// [`is_bg_default`]: BufferCell::is_bg_default #[wasm_bindgen(structural, method, js_name = getBgColorMode)] pub fn get_bg_color_mode(this: &BufferCell) -> u8; /// The character(s) within the cell. Examples of what this can contain: /// - A normal width character /// - A wide character (eg. CJK) /// - An emoji #[wasm_bindgen(structural, method, js_name = getChars)] pub fn get_chars(this: &BufferCell) -> Str; /// Gets the UTF32 codepoint of single characters, if content is a combined /// string it returns the codepoint of the last character in the string. #[wasm_bindgen(structural, method, js_name = getCode)] pub fn get_code(this: &BufferCell) -> u32; /// Gets a cell’s foreground color number, this differs depending on what /// the color mode of the cell is: /// - Default: This should be 0, representing the default foreground color /// (CSI 39 m). /// - Palette: This is a number from 0 to 255 of ANSI colors (CSI 3(0-7) /// m, CSI 9(0-7) m, CSI 38 ; 5 ; 0-255 m). /// - RGB: A hex value representing a ‘true color’: 0xRRGGBB. (CSI 3 8 ; 2 /// ; Pi ; Pr ; Pg ; Pb) #[wasm_bindgen(structural, method, js_name = getFgColor)] pub fn get_fg_color(this: &BufferCell) -> Color; /// Gets the number representation of the foreground color mode, this can be /// used to perform quick comparisons of 2 cells to see if they’re the same. /// Use [`is_fg_rgb`], [`is_fg_palette`], and [`is_fg_default`] to check /// what color mode a cell is. /// /// [`is_fg_rgb`]: BufferCell::is_fg_rgb /// [`is_fg_palette`]: BufferCell::is_fg_palette /// [`is_fg_default`]: BufferCell::is_fg_default #[wasm_bindgen(structural, method, js_name = getFgColorMode)] pub fn get_fg_color_mode(this: &BufferCell) -> u8; /// The width of the character. Some examples: /// - `1` for most cells. /// - `2` for wide character like CJK glyphs. /// - `0` for cells immediately following cells with a width of `2`. #[wasm_bindgen(structural, method, js_name = getWidth)] pub fn get_width(this: &BufferCell) -> u8; /// Whether the cell has the default attribute (no color or style). #[wasm_bindgen(structural, method, js_name = isAttributeDefault)] pub fn is_attribute_default(this: &BufferCell) -> bool; /// Whether the cell is using the default background color mode. #[wasm_bindgen(structural, method, js_name = isBgDefault)] pub fn is_bg_default(this: &BufferCell) -> bool; /// Whether the cell is using the palette background color mode. #[wasm_bindgen(structural, method, js_name = isBgPalette)] pub fn is_bg_palette(this: &BufferCell) -> bool; /// Whether the cell is using the RGB background color mode. #[wasm_bindgen(structural, method, js_name = isBgRGB)] pub fn is_bg_rgb(this: &BufferCell) -> bool; /// Whether the cell has the inverse attribute (CSI 5 m). // Note: returns a number in the original API. #[wasm_bindgen(structural, method, js_name = isBlink)] pub fn is_blink(this: &BufferCell) -> bool; /// Whether the cell has the bold attribute (CSI 1 m). // Note: returns a number in the original API. #[wasm_bindgen(structural, method, js_name = isBold)] pub fn is_bold(this: &BufferCell) -> bool; /// Whether the cell has the inverse attribute (CSI 2 m). // Note: returns a number in the original API. #[wasm_bindgen(structural, method, js_name = isDim)] pub fn is_dim(this: &BufferCell) -> bool; /// Whether the cell is using the default foreground color mode. #[wasm_bindgen(structural, method, js_name = isFgDefault)] pub fn is_fg_default(this: &BufferCell) -> bool; /// Whether the cell is using the palette foreground color mode. #[wasm_bindgen(structural, method, js_name = isFgPalette)] pub fn is_fg_palette(this: &BufferCell) -> bool; /// Whether the cell is using the RGB foreground color mode. #[wasm_bindgen(structural, method, js_name = isFgRGB)] pub fn is_fg_rgb(this: &BufferCell) -> bool; /// Whether the cell has the inverse attribute (CSI 7 m). // Note: returns a number in the original API. #[wasm_bindgen(structural, method, js_name = isInverse)] pub fn is_inverse(this: &BufferCell) -> bool; /// Whether the cell has the inverse attribute (CSI 8 m). // Note: returns a number in the original API. #[wasm_bindgen(structural, method, js_name = isInvisible)] pub fn is_invisible(this: &BufferCell) -> bool; /// Whether the cell has the inverse attribute (CSI 3 m). // Note: returns a number in the original API. #[wasm_bindgen(structural, method, js_name = isItalic)] pub fn is_italic(this: &BufferCell) -> bool; /// Whether the cell has the underline attribute (CSI 4 m). // Note: returns a number in the original API. #[wasm_bindgen(structural, method, js_name = isUnderline)] pub fn is_underline(this: &BufferCell) -> bool; } #[wasm_bindgen(module = "xterm")] extern "C" { /// Represents a line in the terminal’s buffer. /// /// (This is a [duck-typed interface]). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html pub type BufferLine; /// Whether the line is wrapped from the previous line. #[wasm_bindgen(structural, method, getter = isWrapped)] pub fn is_wrapped(this: &BufferLine) -> bool; /// The length of the line. /// /// All calls to [`BufferLine::get_cell`] beyond the length will result in /// `None`. /// /// [`BufferLine::get_cell`]: BufferLine::get_cell #[wasm_bindgen(structural, method, getter = length)] pub fn length(this: &BufferLine) -> u16; /// Gets a cell from the line, or `None` if the line index does not /// exist. /// /// Note that the result of this function should be used immediately after /// calling as when the terminal updates it could lead to unexpected /// behavior. /// /// Takes: /// - `x`: The character index to get. /// - `cell`: Optional cell object to load data into for performance /// reasons. This is mainly useful when every cell in the buffer /// is being looped over to avoid creating new objects for every /// cell. #[wasm_bindgen(structural, method, js_name = getCell)] pub fn get_cell( this: &BufferLine, cell: Option<BufferCell>, ) -> Option<BufferCell>; /// Gets the line as a string. Note that this is gets only the string for /// the line, not taking [`BufferLine::is_wrapped`] into account. /// /// Takes: /// - `trim_right`: Whether to trim any whitespace at the right of the /// line. /// - `start_column`: The column to start from (inclusive). /// - `end_column`: The column to end at (exclusive). /// /// [`BufferLine::is_wrapped`]: BufferLine::is_wrapped #[wasm_bindgen(structural, method, js_name = translateToString)] pub fn translate_to_string( this: &BufferLine, trim_right: Option<bool>, start_column: Option<u16>, end_column: Option<u16>, ) -> Str; } #[wasm_bindgen(module = "xterm")] extern "C" { /// Represents a terminal buffer. /// /// (This is a [duck-typed interface]). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html #[derive(Debug, Clone)] pub type Buffer; /// Gets the line within the buffer where the top of the bottom page is /// (when fully scrolled down). #[wasm_bindgen(structural, method, getter = baseY)] pub fn base_y(this: &Buffer) -> u16; /// Gets the x position of the cursor. This ranges between 0 (left side) and /// [`Terminal::cols()`] (after last cell of the row). /// /// [`Terminal::cols()`]: Terminal::cols #[wasm_bindgen(structural, method, getter = cursorX)] pub fn cursor_x(this: &Buffer) -> u16; /// Gets the y position of the cursor. This ranges between 0 (when the /// cursor is at `Buffer::base_y()`) and [`Terminal::rows()`] - 1 (when the /// cursor is on the last row). /// /// [`Buffer::base_y()`]: Buffer::base_y /// [`Terminal::rows()`]: Terminal::rows #[wasm_bindgen(structural, method, getter = cursorY)] pub fn cursor_y(this: &Buffer) -> u16; /// Gets the amount of lines in the buffer. #[wasm_bindgen(structural, method, getter = length)] pub fn length(this: &Buffer) -> u32; /// Get the line within the buffer where the top of the viewport is. #[wasm_bindgen(structural, method, getter = viewportY)] pub fn viewport_y(this: &Buffer) -> u16; /// Gets a line from the buffer, or undefined if the line index does not /// exist. /// /// Note that the result of this function should be used immediately after /// calling as when the terminal updates it could lead to unexpected /// behavior. /// /// Takes `y`: the line index to get. #[wasm_bindgen(structural, method, js_name = getLine)] pub fn get_line(this: &Buffer, y: u32) -> Option<BufferLine>; /// Creates an empty cell object suitable as a cell reference in /// [`BufferLine::get_cell`]. Use this to avoid costly recreation of cell /// objects when dealing with tons of cells. /// /// [`BufferLine::get_cell`]: BufferLine::get_cell #[wasm_bindgen(structural, method, js_name = getNullCell)] pub fn get_null_cell(this: &Buffer) -> BufferCell; /// Gets the [type](BufferType) of the buffer. #[wasm_bindgen(structural, method, getter = r#type)] pub fn r#type(this: &Buffer) -> BufferType; } #[wasm_bindgen(module = "xterm")] extern "C" { /// Represents the terminal's set of buffers. /// /// (This is a [duck-typed interface]). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html #[derive(Debug, Clone)] pub type BufferNamespace; /// Gets the active buffer. This will either be the [normal] or [alternate] /// buffer. /// /// [normal]: BufferNamespace::normal /// [alternate]: BufferNamespace::alternate #[wasm_bindgen(structural, method, getter = active)] pub fn active(this: &BufferNamespace) -> Buffer; /// Gets the alternate buffer. This becomes the active buffer when an /// application enters this mode via DECSET (`CSI ? 4 7 h`). #[wasm_bindgen(structural, method, getter = alternate)] pub fn alternate(this: &BufferNamespace) -> Buffer; /// Gets the normal buffer. #[wasm_bindgen(structural, method, getter = normal)] pub fn normal(this: &BufferNamespace) -> Buffer; /// Adds an event listener for when the active buffer changes. /// /// Returns a [`Disposable`] to stop listening. /// /// See [`attach_buffer_change_event_listener`] (if the `ext` feature is /// enabled) for a friendlier version of this function. /// /// [`attach_buffer_change_event_listener`]: BufferNamespace::attach_buffer_change_event_listener #[wasm_bindgen(method, js_name = onBufferChange)] pub fn on_buffer_change( this: &BufferNamespace, listener: &Closure<dyn FnMut(Buffer)>, ) -> Disposable; } #[wasm_bindgen(module = "xterm")] extern "C" { /// An object that can be disposed via a dispose function. /// /// (This is a [duck-typed interface]; its Rust dual is available [here] /// when the `ext` feature is enabled). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html /// [here]: crate::ext::disposable::XtermDisposable #[derive(Debug, Clone)] pub type Disposable; /// Disposes of the instance. /// /// This can involve unregistering an event listener or cleaning up /// resources or anything else that should happen when an instance is /// disposed of. #[wasm_bindgen(structural, method, js_name = dispose)] pub fn dispose(this: &Disposable); } #[wasm_bindgen(module = "xterm")] extern "C" { /// The set of localizable strings. /// /// (This is a [duck-typed interface]). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html #[derive(Debug, Clone)] pub type LocalizableStrings; // The following two 'fields' aren't marked `readonly` in the TypeScript // bindings but since items following this interface are only ever produced // by the API and never _accepted_ (i.e. never the argument of a function), // we only make getter bindings here. /// The aria label for the underlying input textarea for the terminal. #[wasm_bindgen(structural, method, getter = promptLabel)] pub fn prompt_label(this: &LocalizableStrings) -> Str; /// Announcement for when line reading is suppressed due to too many lines /// being printed to the terminal when `screen_reader_mode` is enabled. #[wasm_bindgen(structural, method, getter = tooMuchOutput)] pub fn too_much_outut(this: &LocalizableStrings) -> Str; } #[wasm_bindgen(module = "xterm")] extern "C" { /// Represents a specific line in the terminal that is tracked when /// scrollback is trimmed and lines are added or removed. This is a single /// line that may be part of a larger wrapped line. /// /// (This is a [duck-typed interface]). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html #[wasm_bindgen(extends = Disposable)] #[derive(Debug, Clone)] pub type Marker; /// A unique identifier for this marker. #[wasm_bindgen(structural, method, getter = id)] pub fn id(this: &Marker) -> u32; /// Whether this marker is disposed. #[wasm_bindgen(structural, method, getter = isDisposed)] pub fn is_disposed(this: &Marker) -> bool; /// The actual line index in the buffer at this point in time. This is set /// to `-1` if the marker has been disposed. /// /// See [`get_line`] (if the `ext` feature is enabled) for a friendlier /// version of this function (returns an `Option` of an unsigned number). /// /// [`get_line`]: Marker::get_line #[wasm_bindgen(structural, method, getter = line)] pub fn line(this: &Marker) -> i32; } #[wasm_bindgen(module = "xterm")] extern "C" { /// Allows hooking into the parser for custom handling of escape sequences. /// /// (This is a [duck-typed interface]). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html #[derive(Debug, Clone)] pub type Parser; /// Adds a handler for `CSI` escape sequences. /// /// Takes: /// - `id`: Specifies the function identifier under which the /// callback gets registered; e.g. `{ final: 'm' }` for /// `SGR`. /// - `callback`: The function to handle the sequence. The callback is /// called with the numerical params. If the sequence has /// subparams the array will contain subarrays with their /// numerical values. Return `true` if the sequence was /// handled; `false` if we should try a previous handler /// (set by [`register_csi_handler`]). The most recently /// added handler is tried first. /// /// Returns an [`Disposable`] you can call to remove this handler. /// /// [`register_csi_handler`]: Parser::register_csi_handler #[wasm_bindgen(structural, method, js_name = registerCsiHandler)] fn register_csi_handler( this: &Parser, id: FunctionIdentifier, // This can actually be given either a `ReadOnlyArray<u32>` or a // `ReadOnlyArray<ReadOnlyArray<u32>>`. Since we have no good way to // represent this we just call it a `ReadOnlyArray<JsValue>`. callback: &Closure<dyn FnMut(ReadOnlyArray<JsValue>) -> bool>, ) -> Disposable; /// Adds a handler for `DCS` escape sequences. /// /// Takes: /// - `id`: Specifies the function identifier under which the /// callback gets registered; e.g. `{ intermediates: '$', /// final: 'q' }` for `DECRQSS`. /// - `callback`: The function to handle the sequence. Note that the /// function will only be called once if the sequence /// finished successfully. There is currently no way to /// intercept smaller data chunks; data chunks will be /// stored up until the sequence is finished. Since `DCS` /// sequences are not limited by the amount of data this /// might impose a problem for big payloads. Currently /// xterm.js limits the `DCS` payload to 10 MB which should /// give enough room for most use cases. The function gets /// the payload and numerical parameters as arguments. /// Return `true` if the sequence was handled; `false` if we /// should try a previous handler (set by /// [`register_dcs_handler`]). The most recently added /// [handler is tried first. /// /// Returns an [`Disposable`] you can call to remove this handler. /// /// [`register_dcs_handler`]: Parser::register_dcs_handler #[wasm_bindgen(structural, method, js_name = registerDcsHandler)] fn register_dcs_handler( this: &Parser, id: FunctionIdentifier, // Like `register_csi_handler`'s callback, this can either be given a // `ReadOnlyArray<u32>` or a `ReadOnlyArray<ReadOnlyArray<u32>>` for the // `param` argument. Since we have no good way to represent this we just // call it a `ReadOnlyArray<Array`. callback: &Closure<dyn FnMut(Str, ReadOnlyArray<JsValue>) -> bool>, ) -> Disposable; /// Adds a handler for `ESC` escape sequences. /// /// Takes: /// - `id`: Specifies the function identifier under which the /// callback gets registered; e.g. `{ intermediates: '%', /// final: 'G' }` for default charset selection. /// - `handler`: The function to handle the sequence. Return `true` if /// the sequence was handled; `false` if we should try a /// previous handler (set by [`register_esc_handler`]). The /// most recently added handler is tried first. /// /// Returns an [`Disposable`] you can call to remove this handler. /// /// [`register_esc_handler`]: Parser::register_esc_handler #[wasm_bindgen(structural, method, js_name = registerEscHandler)] fn register_esc_handler( this: &Parser, id: FunctionIdentifier, handler: &Closure<dyn FnMut() -> bool>, ) -> Disposable; /// Adds a handler for `OSC` escape sequences. /// /// Takes: /// - `ident`: The number (first parameter) of the sequence. /// - `callback`: The function to handle the sequence. Note that the /// function will only be called once if the sequence /// finished successfully. There is currently no way to /// intercept smaller data chunks; data chunks will be /// stored up until the sequence is finished. Since `OSC` /// sequences are not limited by the amount of data this /// might impose a problem for big payloads. Currently /// xterm.js limits `OSC` payloads to 10 MB which should /// give enough room for most use cases. The callback is /// called with `OSC` data string. Return `true` if the /// sequence was handled; `false` if we should try a /// previous handler (set by [`register_osc_handler`]). The /// most recently added handler is tried first. /// /// Returns an [`Disposable`] you can call to remove this handler. /// /// [`register_osc_handler`]: Parser::register_osc_handler #[wasm_bindgen(structural, method, js_name = registerOscHandler)] fn register_osc_handler( this: &Parser, ident: u32, callback: &Closure<dyn FnMut(Str) -> bool>, ) -> Disposable; } #[wasm_bindgen(module = "xterm")] extern "C" { /// An object representing a selection within the terminal. /// /// (This is a [duck-typed interface]). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html #[derive(Debug, Clone)] pub type SelectionPosition; // The following 'fields' aren't marked `readonly` in the TypeScript // bindings but since items following this interface are only ever produced // by the API and never _accepted_ (i.e. never the argument of a function), // we only make getter bindings here. /// The start column of the selection. #[wasm_bindgen(structural, method, getter = startColumn)] pub fn start_column(this: &SelectionPosition) -> u16; /// The start row of the selection. #[wasm_bindgen(structural, method, getter = startRow)] pub fn start_row(this: &SelectionPosition) -> u32; /// The end column of the selection. #[wasm_bindgen(structural, method, getter = endColumn)] pub fn end_column(this: &SelectionPosition) -> u16; /// The end row of the selection. #[wasm_bindgen(structural, method, getter = endRow)] pub fn end_row(this: &SelectionPosition) -> u32; } #[wasm_bindgen(module = "xterm")] extern "C" { /// An addon that can provide additional functionality to the terminal. /// /// (This is a [duck-typed interface]; its Rust dual is available [here] /// when the `ext` feature is enabled). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html /// [here]: crate::ext::addon::XtermAddon #[wasm_bindgen(extends = Disposable)] #[derive(Debug, Clone)] pub type TerminalAddon; /// This is called when the addon is activated. #[wasm_bindgen(structural, method, js_name = activate)] pub fn activate(this: &TerminalAddon, terminal: Terminal); } #[wasm_bindgen(module = "xterm")] extern "C" { /// **[EXPERIMENTAL]** Unicode handling interface. /// /// (This is a [duck-typed interface]). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html #[derive(Debug, Clone)] pub type UnicodeHandling; /// Registers a [custom Unicode version provider]. /// /// [custom Unicode version provider]: UnicodeVersionProvider #[wasm_bindgen(structural, method, js_name = register)] pub fn register(this: &UnicodeHandling, provider: UnicodeVersionProvider); /// Registered Unicode versions. /// /// Unfortunately, this cannot be an array of [`String`]s since [`String`] /// does not impl `JsCast` (it doesn't because going from a [`JsString`] to /// a [`String`] isn't just a cast). So, if you really need [`String`]s /// you'll have to call `.into()` on the [`JsString`]s that come out of the /// array. /// /// [`String`]: std::string::String /// [`JsString`]: js_sys::JsString /// [`JsCast`]: wasm_bindgen::JsCast #[wasm_bindgen(structural, method, getter = versions)] pub fn versions(this: &UnicodeHandling) -> ReadOnlyArray<js_sys::JsString>; // Separate getter/setter methods since this is an extern-ed type rather // than a concrete Rust type with JS bindings (we made this choice since // instances of this type are never _constructed_ on the Rust side): /// Getter for the active Unicode version. #[wasm_bindgen(structural, method, getter = activeVersion)] pub fn active_version(this: &UnicodeHandling) -> Str; /// Setter for the active Unicode version. #[wasm_bindgen(structural, method, setter = activeVersion)] pub fn set_active_version(this: &UnicodeHandling, version: Str); } #[wasm_bindgen(module = "xterm")] extern "C" { /// **[EXPERIMENTAL]** Unicode version provider. /// /// Used to register custom Unicode versions with /// [`UnicodeHandling::register`] (obtained from [`Terminal::unicode`]). /// /// (This is a [duck-typed interface]; its Rust dual is available [here] /// when the `ext` feature is enabled). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html /// [here]: crate::ext::XtermUnicodeVersionProvider #[derive(Debug, Clone)] pub type UnicodeVersionProvider; /// Gets a string indicating the Unicode version provided. #[wasm_bindgen(structural, method, getter = version)] pub fn version(this: &UnicodeVersionProvider) -> Str; /// Unicode version dependent `wcwidth` implementation. #[wasm_bindgen(structural, method)] pub fn wcwidth( this: &UnicodeVersionProvider, codepoint: u32, ) -> WideCharacterWidth; } #[wasm_bindgen(module = "xterm")] extern "C" { /// Corresponds to `{ key: string, domEvent: KeyboardEvent }`. /// /// Produced by [`Terminal::on_data`]. /// /// (This is a [duck-typed interface]). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html #[derive(Debug, Clone)] pub type KeyEventData; /// Gets the `String` representing the key event that was sent to /// [`Terminal::on_data`]. #[wasm_bindgen(structural, method, getter = key)] pub fn key(this: &KeyEventData) -> Str; /// Gets the actual DOM Event ([`KeyboardEvent`]) that triggered the event. /// /// [`KeyboardEvent`]: web_sys::KeyboardEvent #[wasm_bindgen(structural, method, getter = domEvent)] pub fn dom_event(this: &KeyEventData) -> web_sys::KeyboardEvent; } #[wasm_bindgen(module = "xterm")] extern "C" { /// Corresponds to `{ start: number, end: number }`. /// /// Produced by [`Terminal::on_render`]. /// /// (This is a [duck-typed interface]). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html #[derive(Debug, Clone)] pub type RenderEventData; /// Gets the index of the row at the start of the rendered area. /// /// This will be ∈ `[` `0`, [`Terminal::rows`] `)`. #[wasm_bindgen(structural, method, getter = start)] pub fn start(this: &RenderEventData) -> u16; /// Gets the index of the row at the end of the rendered area. /// /// This will be ∈ `[` `0`, [`Terminal::rows`] `)`. #[wasm_bindgen(structural, method, getter = end)] pub fn end(this: &RenderEventData) -> u16; } #[wasm_bindgen(module = "xterm")] extern "C" { /// Corresponds to `{ cols: number, rows: number }`. /// /// Produced by [`Terminal::on_resize`]. /// /// (This is a [duck-typed interface]). /// /// [duck-typed interface]: https://rustwasm.github.io/docs/wasm-bindgen/reference/working-with-duck-typed-interfaces.html #[derive(Debug, Clone)] pub type ResizeEventData; /// Gets the new number of columns. #[wasm_bindgen(structural, method, getter = cols)] pub fn cols(this: &ResizeEventData) -> u16; /// Gets the new number of rows. #[wasm_bindgen(structural, method, getter = rows)] pub fn rows(this: &ResizeEventData) -> u16; } #[wasm_bindgen(module = "xterm")] extern "C" { /// The class that represents an xterm.js terminal. #[wasm_bindgen(extends = Disposable)] #[derive(Debug, Clone)] pub type Terminal; /// Creates a new Terminal object. /// /// Takes `options`: an object containing a set of options. #[wasm_bindgen(constructor)] pub fn new(options: Option<TerminalOptions>) -> Terminal; /////////////////////////////// Properties /////////////////////////////// /// **[EXPERIMENTAL]** The terminal’s current buffer, this might be either /// the normal buffer or the alt buffer depending on what’s running in the /// terminal. #[wasm_bindgen(method, getter = buffer)] pub fn buffer(this: &Terminal) -> BufferNamespace; /// The number of columns in the terminal’s viewport. Use /// [`TerminalOptions::cols`] to set this in the [constructor] and /// [`Terminal::resize`] for when the terminal exists. /// /// [constructor]: Terminal::new #[wasm_bindgen(method, getter = cols)] pub fn cols(this: &Terminal) -> u16; /// The element containing the terminal. #[wasm_bindgen(method, getter = element)] pub fn element(this: &Terminal) -> Option<web_sys::Element>; /// **[EXPERIMENTAL]** Get all markers registered against the buffer. /// /// If the alt buffer is active this will always return `[]` (an empty /// array). #[wasm_bindgen(method, getter = markers)] pub fn markers(this: &Terminal) -> ReadOnlyArray<Marker>; /// Adds an event listener for when a binary event fires. /// /// This is used to enable non UTF-8 conformant binary messages to be sent /// to the backend. Currently this is only used for a certain type of mouse /// reports that happen to be not UTF-8 compatible. The event value is a /// `String`, pass it to the underlying pty as binary data, e.g. /// `pty.write(Buffer.from(data, 'binary'))`. /// /// Returns a [`Disposable`] to stop listening. /// /// See [`attach_binary_event_listener`] (if the `ext` feature is enabled) /// for a friendlier version of this function. /// /// [`attach_binary_event_listener`]: Terminal::attach_binary_event_listener #[wasm_bindgen(method, js_name = onBinary)] pub fn on_binary( this: &Terminal, listener: &Closure<dyn FnMut(Str)>, ) -> Disposable; /// Adds an event listener for the cursor moves. /// /// Returns a [`Disposable`] to stop listening. /// /// See [`attach_cursor_move_event_listener`] (if the `ext` feature is /// enabled) for a friendlier version of this function. /// /// [`attach_cursor_move_event_listener`]: Terminal::attach_cursor_move_event_listener #[wasm_bindgen(method, js_name = onCursorMove)] pub fn on_cursor_move( this: &Terminal, listener: &Closure<dyn FnMut()>, ) -> Disposable; /// Adds an event listener for when a data event fires. /// /// This happens, for example, when the user types or pastes into the /// terminal. The event value is whatever `String` results; in a typical /// setup, this should be passed on to the backing pty. /// /// Returns a [`Disposable`] to stop listening. /// /// See [`attach_data_event_listener`] (if the `ext` feature is enabled) for /// a friendlier version of this function. /// /// [`attach_data_event_listener`]: Terminal::attach_data_event_listener #[wasm_bindgen(method, js_name = onData)] pub fn on_data( this: &Terminal, listener: &Closure<dyn FnMut(Str)>, ) -> Disposable; /// Adds an event listener for when a key is pressed. /// /// The event value ([`KeyEventData`]) contains the string that will be sent /// in the data event as well as the DOM event that triggered it. /// /// Returns a [`Disposable`] to stop listening. /// /// See [`attach_key_event_listener`] (if the `ext` feature is enabled) for /// a friendlier version of this function. /// /// [`KeyEventData`]: KeyEventData /// [`attach_key_event_listener`]: Terminal::attach_key_event_listener #[wasm_bindgen(method, js_name = onKey)] pub fn on_key( this: &Terminal, listener: &Closure<dyn FnMut(KeyEventData)>, ) -> Disposable; /// Adds an event listener for when a line feed is added. /// /// Returns a [`Disposable`] to stop listening. /// /// See [`attach_line_feed_event_listener`] (if the `ext` feature is /// enabled) for a friendlier version of this function. /// /// [`attach_line_feed_event_listener`]: Terminal::attach_line_feed_event_listener #[wasm_bindgen(method, js_name = onLineFeed)] pub fn on_line_feed( this: &Terminal, listener: &Closure<dyn FnMut()>, ) -> Disposable; /// Adds an event listener for when rows are rendered. /// /// The event value ([`RenderEventData`]) contains the start row and end row /// of the rendered area (ranges from `0` to `[Terminal::rows] - 1`). /// /// Returns a [`Disposable`] to stop listening. /// /// See [`attach_render_event_listener`] (if the `ext` feature is enabled) /// for a friendlier version of this function. /// /// [`attach_render_event_listener`]: Terminal::attach_render_event_listener #[wasm_bindgen(method, js_name = onRender)] pub fn on_render( this: &Terminal, listener: &Closure<dyn FnMut(RenderEventData)>, ) -> Disposable; /// Adds an event listener for when the terminal is resized. /// /// The event value ([`ResizeEventData`]) contains the new size. /// /// Returns a [`Disposable`] to stop listening. /// /// See [`attach_resize_event_listener`] (if the `ext` feature is enabled) /// for a friendlier version of this function. /// /// [`attach_resize_event_listener`]: Terminal::attach_resize_event_listener #[wasm_bindgen(method, js_name = onResize)] pub fn on_resize( this: &Terminal, listener: &Closure<dyn FnMut(ResizeEventData)>, ) -> Disposable; /// Adds an event listener for when a event listener for when a scroll /// occurs. /// /// The event value is the new position of the viewport. /// /// Returns a [`Disposable`] to stop listening. /// /// See [`attach_scroll_event_listener`] (if the `ext` feature is enabled) /// for a friendlier version of this function. /// /// [`attach_scroll_event_listener`]: Terminal::attach_scroll_event_listener #[wasm_bindgen(method, js_name = onScroll)] pub fn on_scroll( this: &Terminal, listener: &Closure<dyn FnMut(u32)>, ) -> Disposable; /// Adds an event listener for when a selection change occurs. /// /// Returns a [`Disposable`] to stop listening. /// /// See [`attach_selection_change_event_listener`] (if the `ext` feature is /// enabled) for a friendlier version of this function. /// /// [`attach_selection_change_event_listener`]: Terminal::attach_selection_change_event_listener #[wasm_bindgen(method, js_name = onSelectionChange)] pub fn on_selection_change( this: &Terminal, listener: &Closure<dyn FnMut()>, ) -> Disposable; /// Adds an event listener for when an OSC 0 or OSC 2 title change occurs. /// /// The event value is the new title. /// /// Returns a [`Disposable`] to stop listening. /// /// See [`attach_title_change_event_listener`] (if the `ext` feature is /// enabled) for a friendlier version of this function. /// /// [`attach_title_change_event_listener`]: Terminal::attach_title_change_event_listener #[wasm_bindgen(method, js_name = onTitleChange)] pub fn on_title_change( this: &Terminal, listener: &Closure<dyn FnMut(Str)>, ) -> Disposable; /* [TODO] parser • parser: IParser Defined in xterm.d.ts:589 (EXPERIMENTAL) Get the parser interface to register custom escape sequence handlers. */ /// **[EXPERIMENTAL]** Get the parser interface to register custom escape /// sequence handlers. #[wasm_bindgen(method, getter = parser)] pub fn parser(this: &Terminal) -> Parser; /// The number of rows in the terminal’s viewport. Use /// [`TerminalOptions.rows`] to set this in the [constructor] and /// [`Terminal::resize`] for when the terminal exists. /// /// [`TerminalOptions.rows`]: TerminalOptions.rows /// [constructor]: Terminal::new /// [`Terminal::resize`]: Terminal::resize #[wasm_bindgen(method, getter = rows)] pub fn rows(this: &Terminal) -> u16; /// The [textarea] that accepts input for the terminal. /// /// [textarea]: web_sys::HtmlTextAreaElement #[wasm_bindgen(method, getter = textarea)] pub fn textarea(this: &Terminal) -> Option<web_sys::HtmlTextAreaElement>; /// **[EXPERIMENTAL]** Get the Unicode handling interface. /// /// This can be used to register Unicode versions and switch the active /// Unicode version. #[wasm_bindgen(method, getter = unicode)] pub fn unicode(this: &Terminal) -> UnicodeHandling; /// Natural language strings that can be localized. #[wasm_bindgen(method, getter = strings)] pub fn strings(this: &Terminal) -> LocalizableStrings; /////////////////////////////// Methods /////////////////////////////// /* [TODO] addMarker ▸ addMarker(cursorYOffset: number): IMarker | undefined deprecated use registerMarker instead. Parameters: Name Type cursorYOffset number Returns: IMarker | undefined */ /* [TODO] attachCustomKeyEventHandler ▸ attachCustomKeyEventHandler(customKeyEventHandler: function): void Attaches a custom key event handler which is run before keys are processed, giving consumers of xterm.js ultimate control as to what keys should be processed by the terminal and what keys should not. Parameters: ▪ customKeyEventHandler: function The custom KeyboardEvent handler to attach. This is a function that takes a KeyboardEvent, allowing consumers to stop propagation and/or prevent the default action. The function returns whether the event should be processed by xterm.js. ▸ (event: KeyboardEvent): boolean Parameters: Name Type event KeyboardEvent Returns: void */ /// Unfocus the terminal. #[wasm_bindgen(method, js_name = blur)] pub fn blur(this: &Terminal); /// Clear the entire buffer, making the prompt line the new first line. #[wasm_bindgen(method, js_name = clear)] pub fn clear(this: &Terminal); /// Clears the current terminal selection. #[wasm_bindgen(method, js_name = clearSelection)] pub fn clear_selection(this: &Terminal); /* [TODO] deregisterCharacterJoiner ▸ deregisterCharacterJoiner(joinerId: number): void (EXPERIMENTAL) Deregisters the character joiner if one was registered. NOTE: character joiners are only used by the canvas renderer. Parameters: Name Type Description joinerId number The character joiner’s ID (returned after register) Returns: void */ /* [TODO] deregisterLinkMatcher ▸ deregisterLinkMatcher(matcherId: number): void (EXPERIMENTAL) Deregisters a link matcher if it has been registered. @deprecated The link matcher API is now deprecated in favor of the link provider API, see `registerLinkProvider`. Parameters: Name Type Description matcherId number The link matcher’s ID (returned after register) Returns: void */ /// Focus the terminal. #[wasm_bindgen(method, js_name = focus)] pub fn focus(this: &Terminal); /* [TODO] getOption ▸ getOption(key: “bellSound” “bellStyle” “cursorStyle” “fontFamily” “fontWeight” “fontWeightBold” “logLevel” “rendererType” “termName” “wordSeparator”): string Retrieves an option’s value from the terminal. Parameters: Name Type Description key “bellSound” | “bellStyle” | “cursorStyle” | “fontFamily” | “fontWeight” | “fontWeightBold” | “logLevel” | “rendererType” | “termName” | “wordSeparator” The option key. Returns: string ▸ getOption(key: “allowTransparency” “cancelEvents” “convertEol” “cursorBlink” “disableStdin” “macOptionIsMeta” “rightClickSelectsWord” “popOnBell” “visualBell” “windowsMode”): boolean Retrieves an option’s value from the terminal. Parameters: Name Type Description key “allowTransparency” | “cancelEvents” | “convertEol” | “cursorBlink” | “disableStdin” | “macOptionIsMeta” | “rightClickSelectsWord” | “popOnBell” | “visualBell” | “windowsMode” The option key. Returns: boolean ▸ getOption(key: “cols” “fontSize” “letterSpacing” “lineHeight” “rows” “tabStopWidth” “scrollback”): number Retrieves an option’s value from the terminal. Parameters: Name Type Description key “cols” | “fontSize” | “letterSpacing” | “lineHeight” | “rows” | “tabStopWidth” | “scrollback” The option key. Returns: number ▸ getOption(key: string): any Retrieves an option’s value from the terminal. Parameters: Name Type Description key string The option key. Returns: any */ /// Gets the terminal’s current selection; this is useful for implementing /// copy behavior outside of xterm.js. #[wasm_bindgen(method, js_name = getSelection)] pub fn get_selection(this: &Terminal) -> Str; /// Gets the selection position or `None` if there is no selection. #[wasm_bindgen(method, js_name = getSelectionPosition)] pub fn get_selection_position(this: &Terminal) -> Option<SelectionPosition>; /// Gets whether the terminal has an active selection. #[wasm_bindgen(method, js_name = hasSelection)] pub fn has_selection(this: &Terminal) -> bool; /// Loads an addon into this instance of the xterm.js [`Terminal`]. /// /// Takes: /// - addon: The addon to load. /// /// See [`load_xterm_addon`] (if the `ext` feature is enabled) for a /// friendlier version of this function. /// /// [`load_xterm_addon`]: Terminal::load_xterm_addon #[wasm_bindgen(method, js_name = loadAddon)] pub fn load_addon(this: &Terminal, addon: TerminalAddon); /// Opens the terminal within an element. /// /// Takes: /// - parent: The element to create the terminal within. This element must /// be visible (have dimensions) when open is called as several /// DOM-based measurements need to be performed when this /// function is called. // Note: we intentionally deviate from the bindings here by using `Element` // instead of `HtmlElement`; for whatever reason it's pretty tricky to get // an `HtmlElement` for something that isn't the document's body with // `web-sys`. #[wasm_bindgen(method, js_name = open)] pub fn open(this: &Terminal, parent: web_sys::Element); /// Writes text to the terminal, performing the necessary transformations /// for pasted text. /// /// Takes: /// - `data`: The text to write to the terminal. #[wasm_bindgen(method, js_name = paste)] pub fn paste(this: &Terminal, data: Str); /// Tells the renderer to refresh terminal content between two rows /// (inclusive) at the next opportunity. /// /// Takes: /// - `start`: The row to start from (between `0` and `[Terminal::rows] - /// 1`). /// - `end`: The row to end at (between `start` and `[Terminal::rows] - /// 1`). #[wasm_bindgen(method, js_name = refresh)] pub fn refresh(this: &Terminal, start: u16, end: u16); /* [TODO] registerCharacterJoiner ▸ registerCharacterJoiner(handler: function): number (EXPERIMENTAL) Registers a character joiner, allowing custom sequences of characters to be rendered as a single unit. This is useful in particular for rendering ligatures and graphemes, among other things. Each registered character joiner is called with a string of text representing a portion of a line in the terminal that can be rendered as a single unit. The joiner must return a sorted array, where each entry is itself an array of length two, containing the start (inclusive) and end (exclusive) index of a substring of the input that should be rendered as a single unit. When multiple joiners are provided, the results of each are collected. If there are any overlapping substrings between them, they are combined into one larger unit that is drawn together. All character joiners that are registered get called every time a line is rendered in the terminal, so it is essential for the handler function to run as quickly as possible to avoid slowdowns when rendering. Similarly, joiners should strive to return the smallest possible substrings to render together, since they aren’t drawn as optimally as individual characters. NOTE: character joiners are only used by the canvas renderer. Parameters: ▪ handler: function The function that determines character joins. It is called with a string of text that is eligible for joining and returns an array where each entry is an array containing the start (inclusive) and end (exclusive) indexes of ranges that should be rendered as a single unit. ▸ (text: string): [number, number][] Parameters: Name Type text string Returns: number The ID of the new joiner, this can be used to deregister */ /* [TODO] registerLinkMatcher ▸ registerLinkMatcher(regex: RegExp, handler: function, options?: ILinkMatcherOptions): number (EXPERIMENTAL) Registers a link matcher, allowing custom link patterns to be matched and handled. @deprecated The link matcher API is now deprecated in favor of the link provider API, see `registerLinkProvider`. Parameters: ▪ regex: RegExp The regular expression to search for, specifically this searches the textContent of the rows. You will want to use \s to match a space ‘ ‘ character for example. ▪ handler: function The callback when the link is called. ▸ (event: MouseEvent, uri: string): void Parameters: Name Type event MouseEvent uri string ▪Optional options: ILinkMatcherOptions Options for the link matcher. Returns: number The ID of the new matcher, this can be used to deregister. */ /* [TODO] registerMarker ▸ registerMarker(cursorYOffset: number): IMarker | undefined (EXPERIMENTAL) Adds a marker to the normal buffer and returns it. If the alt buffer is active, undefined is returned. Parameters: Name Type Description cursorYOffset number The y position offset of the marker from the cursor. Returns: IMarker | undefined */ /// Perform a full reset (RIS, aka ‘\x1bc’). #[wasm_bindgen(method, js_name = reset)] pub fn reset(this: &Terminal); /// Resizes the terminal. /// /// It’s best practice to debounce calls to resize, this will help ensure /// that the pty can respond to the resize event before another one occurs. #[wasm_bindgen(method, js_name = resize)] pub fn resize(this: &Terminal, columns: u16, rows: u16); /// Scroll the display of the terminal. /// /// Takes: /// - `amount`: The number of lines to scroll down (negative scrolls up). #[wasm_bindgen(method, js_name = scrollLines)] pub fn scroll_lines(this: &Terminal, amount: i32); /// Scroll the display of the terminal by a number of pages. /// /// Takes: /// - `page_count`: The number of pages to scroll (negative scrolls up). #[wasm_bindgen(method, js_name = scrollPages)] pub fn scroll_pages(this: &Terminal, page_count: i32); /// Scrolls the display of the terminal to the bottom. #[wasm_bindgen(method, js_name = scrollToBottom)] pub fn scroll_to_bottom(this: &Terminal); /// Scrolls to a line within the buffer. /// /// Takes: /// - `line`: The 0-based line index to scroll to. #[wasm_bindgen(method, js_name = scrollToLine)] pub fn scroll_to_line(this: &Terminal, line: u32); /// Scrolls the display of the terminal to the top. #[wasm_bindgen(method, js_name = scrollToTop)] pub fn scroll_to_top(this: &Terminal); /// Selects text within the terminal. /// /// Takes: /// - `column`: The column the selection starts at. /// - `row`: The row the selection starts at. /// - `length`: The length of the selection. // Note: assuming row is absolute and not in the viewport; if it is in the // viewport its type in the signature should change to `u16`. #[wasm_bindgen(method, js_name = select)] pub fn select(this: &Terminal, column: u16, row: u32, length: u32); /// Selects all text within the terminal. #[wasm_bindgen(method, js_name = selectAll)] pub fn select_all(this: &Terminal); /// Selects text in the buffer between 2 lines. /// /// Takes: /// - `start`: The 0-based line index to select from (inclusive). /// - `end`: The 0-based line index to select to (inclusive). #[wasm_bindgen(method, js_name = selectLines)] pub fn select_lines(this: &Terminal, start: u32, end: u32); /* [TODO] setOption ▸ setOption(key: “fontFamily” “termName” “bellSound” “wordSeparator”, value: string): void Sets an option on the terminal. Parameters: Name Type Description key “fontFamily” | “termName” | “bellSound” | “wordSeparator” The option key. value string The option value. Returns: void ▸ setOption(key: “fontWeight” “fontWeightBold”, value: null “normal” “bold” “100” “200” “300” “400” “500” “600” “700” “800” “900”): void Sets an option on the terminal. Parameters: Name Type Description key “fontWeight” | “fontWeightBold” The option key. value null | “normal” | “bold” | “100” | “200” | “300” | “400” | “500” | “600” | “700” | “800” | “900” The option value. Returns: void ▸ setOption(key: “logLevel”, value: LogLevel): void Sets an option on the terminal. Parameters: Name Type Description key “logLevel” The option key. value LogLevel The option value. Returns: void ▸ setOption(key: “bellStyle”, value: null “none” “visual” “sound” “both”): void Sets an option on the terminal. Parameters: Name Type Description key “bellStyle” The option key. value null | “none” | “visual” | “sound” | “both” The option value. Returns: void ▸ setOption(key: “cursorStyle”, value: null “block” “underline” “bar”): void Sets an option on the terminal. Parameters: Name Type Description key “cursorStyle” The option key. value null | “block” | “underline” | “bar” The option value. Returns: void ▸ setOption(key: “allowTransparency” “cancelEvents” “convertEol” “cursorBlink” “disableStdin” “macOptionIsMeta” “popOnBell” “rightClickSelectsWord” “visualBell” “windowsMode”, value: boolean): void Sets an option on the terminal. Parameters: Name Type Description key “allowTransparency” | “cancelEvents” | “convertEol” | “cursorBlink” | “disableStdin” | “macOptionIsMeta” | “popOnBell” | “rightClickSelectsWord” | “visualBell” | “windowsMode” The option key. value boolean The option value. Returns: void ▸ setOption(key: “fontSize” “letterSpacing” “lineHeight” “tabStopWidth” “scrollback”, value: number): void Sets an option on the terminal. Parameters: Name Type Description key “fontSize” | “letterSpacing” | “lineHeight” | “tabStopWidth” | “scrollback” The option key. value number The option value. Returns: void ▸ setOption(key: “theme”, value: ITheme): void Sets an option on the terminal. Parameters: Name Type Description key “theme” The option key. value ITheme The option value. Returns: void ▸ setOption(key: “cols” “rows”, value: number): void Sets an option on the terminal. Parameters: Name Type Description key “cols” | “rows” The option key. value number The option value. Returns: void ▸ setOption(key: string, value: any): void Sets an option on the terminal. Parameters: Name Type Description key string The option key. value any The option value. Returns: void */ // `Option<&Closure<dyn FnMut()>>` can't be passed to JS functions, so we // have a version of write with the callback and one without it. /// Writes data to the terminal. /// /// Takes: /// - `data`: The data to write to the terminal. The actual API allows for /// this to be either raw bytes given as `Uint8Array` from the /// pty or a string (raw bytes will always be treated as UTF-8 /// encoded, string data as UTF-16). For simplicity, we just /// take a `String`; this shouldn't cause problems (going from /// UTF-8 encoded Rust `String`s to UTF-16 JS strings) and just /// makes things simpler. #[wasm_bindgen(method, js_name = write)] pub fn write(this: &Terminal, data: Str); /// Writes data to the terminal and takes a callback. /// /// This identical to [`write`] except it also takes a callback. /// /// Takes: /// - `data`: The data to write to the terminal. The actual API allows /// for this to be either raw bytes given as `Uint8Array` /// from the pty or a string (raw bytes will always be /// treated as UTF-8 encoded, string data as UTF-16). For /// simplicity, we just take a `String`; this shouldn't cause /// problems (going from UTF-8 encoded Rust `String`s to /// UTF-16 JS strings) and just makes things simpler. /// - `callback`: Callback that fires when the data was processed by the /// parser. /// /// [`write`]: Terminal::write #[wasm_bindgen(method, js_name = write)] pub fn write_with_callback( this: &Terminal, data: Str, callback: &Closure<dyn FnMut()>, ); // TODO: registerLinkProvider // [TODO] // writeUtf8 // ▸ writeUtf8(data: Uint8Array, callback?: function): void // Defined in xterm.d.ts:896 // Write UTF8 data to the terminal. // deprecated use write instead // Parameters: // ▪ data: Uint8Array // The data to write to the terminal. // ▪Optional callback: function // Optional callback when data was processed. // ▸ (): void // Returns: void // [TODO] // writeln // ▸ writeln(data: string Uint8Array, callback?: function): void // Writes data to the terminal, followed by a break line character (\n). // Parameters: // ▪ data: *string Uint8Array* // The data to write to the terminal. This can either be raw bytes given as Uint8Array from the pty or a string. Raw bytes will always be treated as UTF-8 encoded, string data as UTF-16. // ▪Optional callback: function // Optional callback that fires when the data was processed by the parser. // ▸ (): void // Returns: void }