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
|
# This file was created automatically by SWIG.
import stc_c
from misc import *
from misc2 import *
from windows import *
from gdi import *
from fonts import *
from clip_dnd import *
from events import *
from streams import *
from utils import *
from mdi import *
from frames import *
from stattool import *
from controls import *
from controls2 import *
from windows2 import *
from cmndlgs import *
from windows3 import *
from image import *
from printfw import *
from sizers import *
from filesys import *
def EVT_STC_CHANGE(win, id, func):
win.Connect(id, -1, wxEVT_STC_CHANGE, func)
def EVT_STC_STYLENEEDED(win, id, func):
win.Connect(id, -1, wxEVT_STC_STYLENEEDED, func)
def EVT_STC_CHARADDED(win, id, func):
win.Connect(id, -1, wxEVT_STC_CHARADDED, func)
def EVT_STC_SAVEPOINTREACHED(win, id, func):
win.Connect(id, -1, wxEVT_STC_SAVEPOINTREACHED, func)
def EVT_STC_SAVEPOINTLEFT(win, id, func):
win.Connect(id, -1, wxEVT_STC_SAVEPOINTLEFT, func)
def EVT_STC_ROMODIFYATTEMPT(win, id, func):
win.Connect(id, -1, wxEVT_STC_ROMODIFYATTEMPT, func)
def EVT_STC_KEY(win, id, func):
win.Connect(id, -1, wxEVT_STC_KEY, func)
def EVT_STC_DOUBLECLICK(win, id, func):
win.Connect(id, -1, wxEVT_STC_DOUBLECLICK, func)
def EVT_STC_UPDATEUI(win, id, func):
win.Connect(id, -1, wxEVT_STC_UPDATEUI, func)
def EVT_STC_MODIFIED(win, id, func):
win.Connect(id, -1, wxEVT_STC_MODIFIED, func)
def EVT_STC_MACRORECORD(win, id, func):
win.Connect(id, -1, wxEVT_STC_MACRORECORD, func)
def EVT_STC_MARGINCLICK(win, id, func):
win.Connect(id, -1, wxEVT_STC_MARGINCLICK, func)
def EVT_STC_NEEDSHOWN(win, id, func):
win.Connect(id, -1, wxEVT_STC_NEEDSHOWN, func)
def EVT_STC_POSCHANGED(win, id, func):
win.Connect(id, -1, wxEVT_STC_POSCHANGED, func)
def EVT_STC_PAINTED(win, id, func):
win.Connect(id, -1, wxEVT_STC_PAINTED, func)
def EVT_STC_USERLISTSELECTION(win, id, func):
win.Connect(id, -1, wxEVT_STC_USERLISTSELECTION, func)
def EVT_STC_URIDROPPED(win, id, func):
win.Connect(id, -1, wxEVT_STC_URIDROPPED, func)
def EVT_STC_DWELLSTART(win, id, func):
win.Connect(id, -1, wxEVT_STC_DWELLSTART, func)
def EVT_STC_DWELLEND(win, id, func):
win.Connect(id, -1, wxEVT_STC_DWELLEND, func)
def EVT_STC_START_DRAG(win, id, func):
win.Connect(id, -1, wxEVT_STC_START_DRAG, func)
def EVT_STC_DRAG_OVER(win, id, func):
win.Connect(id, -1, wxEVT_STC_DRAG_OVER, func)
def EVT_STC_DO_DROP(win, id, func):
win.Connect(id, -1, wxEVT_STC_DO_DROP, func)
def EVT_STC_ZOOM(win, id, func):
win.Connect(id, -1, wxEVT_STC_ZOOM, func)
def EVT_STC_HOTSPOT_CLICK(win, id, func):
win.Connect(id, -1, wxEVT_STC_HOTSPOT_CLICK, func)
def EVT_STC_HOTSPOT_DCLICK(win, id, func):
win.Connect(id, -1, wxEVT_STC_HOTSPOT_DCLICK, func)
def EVT_STC_CALLTIP_CLICK(win, id, func):
win.Connect(id, -1, wxEVT_STC_CALLTIP_CLICK, func)
class wxStyledTextCtrlPtr(wxControlPtr):
def __init__(self,this):
self.this = this
self.thisown = 0
def AddText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AddText(self, *_args, **_kwargs)
return val
def AddStyledText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AddStyledText(self, *_args, **_kwargs)
return val
def InsertText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_InsertText(self, *_args, **_kwargs)
return val
def ClearAll(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_ClearAll(self, *_args, **_kwargs)
return val
def ClearDocumentStyle(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_ClearDocumentStyle(self, *_args, **_kwargs)
return val
def GetLength(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetLength(self, *_args, **_kwargs)
return val
def GetCharAt(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetCharAt(self, *_args, **_kwargs)
return val
def GetCurrentPos(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetCurrentPos(self, *_args, **_kwargs)
return val
def GetAnchor(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetAnchor(self, *_args, **_kwargs)
return val
def GetStyleAt(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetStyleAt(self, *_args, **_kwargs)
return val
def Redo(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_Redo(self, *_args, **_kwargs)
return val
def SetUndoCollection(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetUndoCollection(self, *_args, **_kwargs)
return val
def SelectAll(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SelectAll(self, *_args, **_kwargs)
return val
def SetSavePoint(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetSavePoint(self, *_args, **_kwargs)
return val
def GetStyledText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetStyledText(self, *_args, **_kwargs)
return val
def CanRedo(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CanRedo(self, *_args, **_kwargs)
return val
def MarkerLineFromHandle(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_MarkerLineFromHandle(self, *_args, **_kwargs)
return val
def MarkerDeleteHandle(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_MarkerDeleteHandle(self, *_args, **_kwargs)
return val
def GetUndoCollection(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetUndoCollection(self, *_args, **_kwargs)
return val
def GetViewWhiteSpace(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetViewWhiteSpace(self, *_args, **_kwargs)
return val
def SetViewWhiteSpace(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetViewWhiteSpace(self, *_args, **_kwargs)
return val
def PositionFromPoint(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_PositionFromPoint(self, *_args, **_kwargs)
return val
def PositionFromPointClose(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_PositionFromPointClose(self, *_args, **_kwargs)
return val
def GotoLine(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GotoLine(self, *_args, **_kwargs)
return val
def GotoPos(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GotoPos(self, *_args, **_kwargs)
return val
def SetAnchor(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetAnchor(self, *_args, **_kwargs)
return val
def GetCurLine(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetCurLine(self, *_args, **_kwargs)
return val
def GetEndStyled(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetEndStyled(self, *_args, **_kwargs)
return val
def ConvertEOLs(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_ConvertEOLs(self, *_args, **_kwargs)
return val
def GetEOLMode(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetEOLMode(self, *_args, **_kwargs)
return val
def SetEOLMode(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetEOLMode(self, *_args, **_kwargs)
return val
def StartStyling(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StartStyling(self, *_args, **_kwargs)
return val
def SetStyling(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetStyling(self, *_args, **_kwargs)
return val
def GetBufferedDraw(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetBufferedDraw(self, *_args, **_kwargs)
return val
def SetBufferedDraw(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetBufferedDraw(self, *_args, **_kwargs)
return val
def SetTabWidth(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetTabWidth(self, *_args, **_kwargs)
return val
def GetTabWidth(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetTabWidth(self, *_args, **_kwargs)
return val
def SetCodePage(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetCodePage(self, *_args, **_kwargs)
return val
def MarkerDefine(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_MarkerDefine(self, *_args, **_kwargs)
return val
def MarkerSetForeground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_MarkerSetForeground(self, *_args, **_kwargs)
return val
def MarkerSetBackground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_MarkerSetBackground(self, *_args, **_kwargs)
return val
def MarkerAdd(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_MarkerAdd(self, *_args, **_kwargs)
return val
def MarkerDelete(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_MarkerDelete(self, *_args, **_kwargs)
return val
def MarkerDeleteAll(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_MarkerDeleteAll(self, *_args, **_kwargs)
return val
def MarkerGet(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_MarkerGet(self, *_args, **_kwargs)
return val
def MarkerNext(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_MarkerNext(self, *_args, **_kwargs)
return val
def MarkerPrevious(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_MarkerPrevious(self, *_args, **_kwargs)
return val
def MarkerDefineBitmap(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_MarkerDefineBitmap(self, *_args, **_kwargs)
return val
def SetMarginType(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetMarginType(self, *_args, **_kwargs)
return val
def GetMarginType(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetMarginType(self, *_args, **_kwargs)
return val
def SetMarginWidth(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetMarginWidth(self, *_args, **_kwargs)
return val
def GetMarginWidth(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetMarginWidth(self, *_args, **_kwargs)
return val
def SetMarginMask(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetMarginMask(self, *_args, **_kwargs)
return val
def GetMarginMask(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetMarginMask(self, *_args, **_kwargs)
return val
def SetMarginSensitive(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetMarginSensitive(self, *_args, **_kwargs)
return val
def GetMarginSensitive(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetMarginSensitive(self, *_args, **_kwargs)
return val
def StyleClearAll(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleClearAll(self, *_args, **_kwargs)
return val
def StyleSetForeground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetForeground(self, *_args, **_kwargs)
return val
def StyleSetBackground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetBackground(self, *_args, **_kwargs)
return val
def StyleSetBold(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetBold(self, *_args, **_kwargs)
return val
def StyleSetItalic(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetItalic(self, *_args, **_kwargs)
return val
def StyleSetSize(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetSize(self, *_args, **_kwargs)
return val
def StyleSetFaceName(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetFaceName(self, *_args, **_kwargs)
return val
def StyleSetEOLFilled(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetEOLFilled(self, *_args, **_kwargs)
return val
def StyleResetDefault(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleResetDefault(self, *_args, **_kwargs)
return val
def StyleSetUnderline(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetUnderline(self, *_args, **_kwargs)
return val
def StyleSetCase(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetCase(self, *_args, **_kwargs)
return val
def StyleSetCharacterSet(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetCharacterSet(self, *_args, **_kwargs)
return val
def StyleSetHotSpot(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetHotSpot(self, *_args, **_kwargs)
return val
def SetSelForeground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetSelForeground(self, *_args, **_kwargs)
return val
def SetSelBackground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetSelBackground(self, *_args, **_kwargs)
return val
def SetCaretForeground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetCaretForeground(self, *_args, **_kwargs)
return val
def CmdKeyAssign(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CmdKeyAssign(self, *_args, **_kwargs)
return val
def CmdKeyClear(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CmdKeyClear(self, *_args, **_kwargs)
return val
def CmdKeyClearAll(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CmdKeyClearAll(self, *_args, **_kwargs)
return val
def SetStyleBytes(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetStyleBytes(self, *_args, **_kwargs)
return val
def StyleSetVisible(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetVisible(self, *_args, **_kwargs)
return val
def GetCaretPeriod(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetCaretPeriod(self, *_args, **_kwargs)
return val
def SetCaretPeriod(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetCaretPeriod(self, *_args, **_kwargs)
return val
def SetWordChars(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetWordChars(self, *_args, **_kwargs)
return val
def BeginUndoAction(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_BeginUndoAction(self, *_args, **_kwargs)
return val
def EndUndoAction(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_EndUndoAction(self, *_args, **_kwargs)
return val
def IndicatorSetStyle(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_IndicatorSetStyle(self, *_args, **_kwargs)
return val
def IndicatorGetStyle(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_IndicatorGetStyle(self, *_args, **_kwargs)
return val
def IndicatorSetForeground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_IndicatorSetForeground(self, *_args, **_kwargs)
return val
def IndicatorGetForeground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_IndicatorGetForeground(self, *_args, **_kwargs)
if val: val = wxColourPtr(val) ; val.thisown = 1
return val
def SetWhitespaceForeground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetWhitespaceForeground(self, *_args, **_kwargs)
return val
def SetWhitespaceBackground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetWhitespaceBackground(self, *_args, **_kwargs)
return val
def SetStyleBits(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetStyleBits(self, *_args, **_kwargs)
return val
def GetStyleBits(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetStyleBits(self, *_args, **_kwargs)
return val
def SetLineState(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetLineState(self, *_args, **_kwargs)
return val
def GetLineState(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetLineState(self, *_args, **_kwargs)
return val
def GetMaxLineState(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetMaxLineState(self, *_args, **_kwargs)
return val
def GetCaretLineVisible(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetCaretLineVisible(self, *_args, **_kwargs)
return val
def SetCaretLineVisible(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetCaretLineVisible(self, *_args, **_kwargs)
return val
def GetCaretLineBack(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetCaretLineBack(self, *_args, **_kwargs)
if val: val = wxColourPtr(val) ; val.thisown = 1
return val
def SetCaretLineBack(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetCaretLineBack(self, *_args, **_kwargs)
return val
def StyleSetChangeable(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetChangeable(self, *_args, **_kwargs)
return val
def AutoCompShow(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompShow(self, *_args, **_kwargs)
return val
def AutoCompCancel(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompCancel(self, *_args, **_kwargs)
return val
def AutoCompActive(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompActive(self, *_args, **_kwargs)
return val
def AutoCompPosStart(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompPosStart(self, *_args, **_kwargs)
return val
def AutoCompComplete(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompComplete(self, *_args, **_kwargs)
return val
def AutoCompStops(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompStops(self, *_args, **_kwargs)
return val
def AutoCompSetSeparator(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompSetSeparator(self, *_args, **_kwargs)
return val
def AutoCompGetSeparator(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompGetSeparator(self, *_args, **_kwargs)
return val
def AutoCompSelect(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompSelect(self, *_args, **_kwargs)
return val
def AutoCompSetCancelAtStart(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompSetCancelAtStart(self, *_args, **_kwargs)
return val
def AutoCompGetCancelAtStart(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompGetCancelAtStart(self, *_args, **_kwargs)
return val
def AutoCompSetFillUps(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompSetFillUps(self, *_args, **_kwargs)
return val
def AutoCompSetChooseSingle(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompSetChooseSingle(self, *_args, **_kwargs)
return val
def AutoCompGetChooseSingle(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompGetChooseSingle(self, *_args, **_kwargs)
return val
def AutoCompSetIgnoreCase(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompSetIgnoreCase(self, *_args, **_kwargs)
return val
def AutoCompGetIgnoreCase(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompGetIgnoreCase(self, *_args, **_kwargs)
return val
def UserListShow(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_UserListShow(self, *_args, **_kwargs)
return val
def AutoCompSetAutoHide(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompSetAutoHide(self, *_args, **_kwargs)
return val
def AutoCompGetAutoHide(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompGetAutoHide(self, *_args, **_kwargs)
return val
def AutoCompSetDropRestOfWord(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompSetDropRestOfWord(self, *_args, **_kwargs)
return val
def AutoCompGetDropRestOfWord(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompGetDropRestOfWord(self, *_args, **_kwargs)
return val
def RegisterImage(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_RegisterImage(self, *_args, **_kwargs)
return val
def ClearRegisteredImages(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_ClearRegisteredImages(self, *_args, **_kwargs)
return val
def AutoCompGetTypeSeparator(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompGetTypeSeparator(self, *_args, **_kwargs)
return val
def AutoCompSetTypeSeparator(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AutoCompSetTypeSeparator(self, *_args, **_kwargs)
return val
def SetIndent(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetIndent(self, *_args, **_kwargs)
return val
def GetIndent(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetIndent(self, *_args, **_kwargs)
return val
def SetUseTabs(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetUseTabs(self, *_args, **_kwargs)
return val
def GetUseTabs(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetUseTabs(self, *_args, **_kwargs)
return val
def SetLineIndentation(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetLineIndentation(self, *_args, **_kwargs)
return val
def GetLineIndentation(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetLineIndentation(self, *_args, **_kwargs)
return val
def GetLineIndentPosition(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetLineIndentPosition(self, *_args, **_kwargs)
return val
def GetColumn(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetColumn(self, *_args, **_kwargs)
return val
def SetUseHorizontalScrollBar(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetUseHorizontalScrollBar(self, *_args, **_kwargs)
return val
def GetUseHorizontalScrollBar(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetUseHorizontalScrollBar(self, *_args, **_kwargs)
return val
def SetIndentationGuides(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetIndentationGuides(self, *_args, **_kwargs)
return val
def GetIndentationGuides(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetIndentationGuides(self, *_args, **_kwargs)
return val
def SetHighlightGuide(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetHighlightGuide(self, *_args, **_kwargs)
return val
def GetHighlightGuide(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetHighlightGuide(self, *_args, **_kwargs)
return val
def GetLineEndPosition(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetLineEndPosition(self, *_args, **_kwargs)
return val
def GetCodePage(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetCodePage(self, *_args, **_kwargs)
return val
def GetCaretForeground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetCaretForeground(self, *_args, **_kwargs)
if val: val = wxColourPtr(val) ; val.thisown = 1
return val
def GetReadOnly(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetReadOnly(self, *_args, **_kwargs)
return val
def SetCurrentPos(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetCurrentPos(self, *_args, **_kwargs)
return val
def SetSelectionStart(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetSelectionStart(self, *_args, **_kwargs)
return val
def GetSelectionStart(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetSelectionStart(self, *_args, **_kwargs)
return val
def SetSelectionEnd(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetSelectionEnd(self, *_args, **_kwargs)
return val
def GetSelectionEnd(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetSelectionEnd(self, *_args, **_kwargs)
return val
def SetPrintMagnification(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetPrintMagnification(self, *_args, **_kwargs)
return val
def GetPrintMagnification(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetPrintMagnification(self, *_args, **_kwargs)
return val
def SetPrintColourMode(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetPrintColourMode(self, *_args, **_kwargs)
return val
def GetPrintColourMode(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetPrintColourMode(self, *_args, **_kwargs)
return val
def FindText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_FindText(self, *_args, **_kwargs)
return val
def FormatRange(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_FormatRange(self, *_args, **_kwargs)
return val
def GetFirstVisibleLine(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetFirstVisibleLine(self, *_args, **_kwargs)
return val
def GetLine(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetLine(self, *_args, **_kwargs)
return val
def GetLineCount(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetLineCount(self, *_args, **_kwargs)
return val
def SetMarginLeft(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetMarginLeft(self, *_args, **_kwargs)
return val
def GetMarginLeft(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetMarginLeft(self, *_args, **_kwargs)
return val
def SetMarginRight(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetMarginRight(self, *_args, **_kwargs)
return val
def GetMarginRight(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetMarginRight(self, *_args, **_kwargs)
return val
def GetModify(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetModify(self, *_args, **_kwargs)
return val
def SetSelection(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetSelection(self, *_args, **_kwargs)
return val
def GetSelectedText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetSelectedText(self, *_args, **_kwargs)
return val
def GetTextRange(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetTextRange(self, *_args, **_kwargs)
return val
def HideSelection(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_HideSelection(self, *_args, **_kwargs)
return val
def LineFromPosition(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_LineFromPosition(self, *_args, **_kwargs)
return val
def PositionFromLine(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_PositionFromLine(self, *_args, **_kwargs)
return val
def LineScroll(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_LineScroll(self, *_args, **_kwargs)
return val
def EnsureCaretVisible(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_EnsureCaretVisible(self, *_args, **_kwargs)
return val
def ReplaceSelection(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_ReplaceSelection(self, *_args, **_kwargs)
return val
def SetReadOnly(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetReadOnly(self, *_args, **_kwargs)
return val
def CanPaste(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CanPaste(self, *_args, **_kwargs)
return val
def CanUndo(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CanUndo(self, *_args, **_kwargs)
return val
def EmptyUndoBuffer(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_EmptyUndoBuffer(self, *_args, **_kwargs)
return val
def Undo(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_Undo(self, *_args, **_kwargs)
return val
def Cut(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_Cut(self, *_args, **_kwargs)
return val
def Copy(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_Copy(self, *_args, **_kwargs)
return val
def Paste(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_Paste(self, *_args, **_kwargs)
return val
def Clear(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_Clear(self, *_args, **_kwargs)
return val
def SetText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetText(self, *_args, **_kwargs)
return val
def GetText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetText(self, *_args, **_kwargs)
return val
def GetTextLength(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetTextLength(self, *_args, **_kwargs)
return val
def SetOvertype(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetOvertype(self, *_args, **_kwargs)
return val
def GetOvertype(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetOvertype(self, *_args, **_kwargs)
return val
def SetCaretWidth(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetCaretWidth(self, *_args, **_kwargs)
return val
def GetCaretWidth(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetCaretWidth(self, *_args, **_kwargs)
return val
def SetTargetStart(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetTargetStart(self, *_args, **_kwargs)
return val
def GetTargetStart(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetTargetStart(self, *_args, **_kwargs)
return val
def SetTargetEnd(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetTargetEnd(self, *_args, **_kwargs)
return val
def GetTargetEnd(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetTargetEnd(self, *_args, **_kwargs)
return val
def ReplaceTarget(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_ReplaceTarget(self, *_args, **_kwargs)
return val
def ReplaceTargetRE(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_ReplaceTargetRE(self, *_args, **_kwargs)
return val
def SearchInTarget(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SearchInTarget(self, *_args, **_kwargs)
return val
def SetSearchFlags(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetSearchFlags(self, *_args, **_kwargs)
return val
def GetSearchFlags(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetSearchFlags(self, *_args, **_kwargs)
return val
def CallTipShow(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CallTipShow(self, *_args, **_kwargs)
return val
def CallTipCancel(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CallTipCancel(self, *_args, **_kwargs)
return val
def CallTipActive(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CallTipActive(self, *_args, **_kwargs)
return val
def CallTipPosAtStart(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CallTipPosAtStart(self, *_args, **_kwargs)
return val
def CallTipSetHighlight(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CallTipSetHighlight(self, *_args, **_kwargs)
return val
def CallTipSetBackground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CallTipSetBackground(self, *_args, **_kwargs)
return val
def CallTipSetForeground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CallTipSetForeground(self, *_args, **_kwargs)
return val
def CallTipSetForegroundHighlight(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CallTipSetForegroundHighlight(self, *_args, **_kwargs)
return val
def VisibleFromDocLine(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_VisibleFromDocLine(self, *_args, **_kwargs)
return val
def DocLineFromVisible(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_DocLineFromVisible(self, *_args, **_kwargs)
return val
def SetFoldLevel(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetFoldLevel(self, *_args, **_kwargs)
return val
def GetFoldLevel(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetFoldLevel(self, *_args, **_kwargs)
return val
def GetLastChild(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetLastChild(self, *_args, **_kwargs)
return val
def GetFoldParent(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetFoldParent(self, *_args, **_kwargs)
return val
def ShowLines(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_ShowLines(self, *_args, **_kwargs)
return val
def HideLines(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_HideLines(self, *_args, **_kwargs)
return val
def GetLineVisible(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetLineVisible(self, *_args, **_kwargs)
return val
def SetFoldExpanded(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetFoldExpanded(self, *_args, **_kwargs)
return val
def GetFoldExpanded(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetFoldExpanded(self, *_args, **_kwargs)
return val
def ToggleFold(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_ToggleFold(self, *_args, **_kwargs)
return val
def EnsureVisible(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_EnsureVisible(self, *_args, **_kwargs)
return val
def SetFoldFlags(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetFoldFlags(self, *_args, **_kwargs)
return val
def EnsureVisibleEnforcePolicy(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_EnsureVisibleEnforcePolicy(self, *_args, **_kwargs)
return val
def SetTabIndents(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetTabIndents(self, *_args, **_kwargs)
return val
def GetTabIndents(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetTabIndents(self, *_args, **_kwargs)
return val
def SetBackSpaceUnIndents(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetBackSpaceUnIndents(self, *_args, **_kwargs)
return val
def GetBackSpaceUnIndents(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetBackSpaceUnIndents(self, *_args, **_kwargs)
return val
def SetMouseDwellTime(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetMouseDwellTime(self, *_args, **_kwargs)
return val
def GetMouseDwellTime(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetMouseDwellTime(self, *_args, **_kwargs)
return val
def WordStartPosition(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_WordStartPosition(self, *_args, **_kwargs)
return val
def WordEndPosition(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_WordEndPosition(self, *_args, **_kwargs)
return val
def SetWrapMode(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetWrapMode(self, *_args, **_kwargs)
return val
def GetWrapMode(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetWrapMode(self, *_args, **_kwargs)
return val
def SetLayoutCache(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetLayoutCache(self, *_args, **_kwargs)
return val
def GetLayoutCache(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetLayoutCache(self, *_args, **_kwargs)
return val
def SetScrollWidth(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetScrollWidth(self, *_args, **_kwargs)
return val
def GetScrollWidth(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetScrollWidth(self, *_args, **_kwargs)
return val
def TextWidth(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_TextWidth(self, *_args, **_kwargs)
return val
def SetEndAtLastLine(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetEndAtLastLine(self, *_args, **_kwargs)
return val
def GetEndAtLastLine(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetEndAtLastLine(self, *_args, **_kwargs)
return val
def TextHeight(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_TextHeight(self, *_args, **_kwargs)
return val
def SetUseVerticalScrollBar(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetUseVerticalScrollBar(self, *_args, **_kwargs)
return val
def GetUseVerticalScrollBar(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetUseVerticalScrollBar(self, *_args, **_kwargs)
return val
def AppendText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AppendText(self, *_args, **_kwargs)
return val
def GetTwoPhaseDraw(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetTwoPhaseDraw(self, *_args, **_kwargs)
return val
def SetTwoPhaseDraw(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetTwoPhaseDraw(self, *_args, **_kwargs)
return val
def TargetFromSelection(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_TargetFromSelection(self, *_args, **_kwargs)
return val
def LinesJoin(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_LinesJoin(self, *_args, **_kwargs)
return val
def LinesSplit(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_LinesSplit(self, *_args, **_kwargs)
return val
def SetFoldMarginColour(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetFoldMarginColour(self, *_args, **_kwargs)
return val
def SetFoldMarginHiColour(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetFoldMarginHiColour(self, *_args, **_kwargs)
return val
def LineDuplicate(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_LineDuplicate(self, *_args, **_kwargs)
return val
def HomeDisplay(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_HomeDisplay(self, *_args, **_kwargs)
return val
def HomeDisplayExtend(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_HomeDisplayExtend(self, *_args, **_kwargs)
return val
def LineEndDisplay(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_LineEndDisplay(self, *_args, **_kwargs)
return val
def LineEndDisplayExtend(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_LineEndDisplayExtend(self, *_args, **_kwargs)
return val
def LineCopy(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_LineCopy(self, *_args, **_kwargs)
return val
def MoveCaretInsideView(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_MoveCaretInsideView(self, *_args, **_kwargs)
return val
def LineLength(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_LineLength(self, *_args, **_kwargs)
return val
def BraceHighlight(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_BraceHighlight(self, *_args, **_kwargs)
return val
def BraceBadLight(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_BraceBadLight(self, *_args, **_kwargs)
return val
def BraceMatch(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_BraceMatch(self, *_args, **_kwargs)
return val
def GetViewEOL(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetViewEOL(self, *_args, **_kwargs)
return val
def SetViewEOL(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetViewEOL(self, *_args, **_kwargs)
return val
def GetDocPointer(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetDocPointer(self, *_args, **_kwargs)
return val
def SetDocPointer(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetDocPointer(self, *_args, **_kwargs)
return val
def SetModEventMask(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetModEventMask(self, *_args, **_kwargs)
return val
def GetEdgeColumn(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetEdgeColumn(self, *_args, **_kwargs)
return val
def SetEdgeColumn(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetEdgeColumn(self, *_args, **_kwargs)
return val
def GetEdgeMode(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetEdgeMode(self, *_args, **_kwargs)
return val
def SetEdgeMode(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetEdgeMode(self, *_args, **_kwargs)
return val
def GetEdgeColour(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetEdgeColour(self, *_args, **_kwargs)
if val: val = wxColourPtr(val) ; val.thisown = 1
return val
def SetEdgeColour(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetEdgeColour(self, *_args, **_kwargs)
return val
def SearchAnchor(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SearchAnchor(self, *_args, **_kwargs)
return val
def SearchNext(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SearchNext(self, *_args, **_kwargs)
return val
def SearchPrev(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SearchPrev(self, *_args, **_kwargs)
return val
def LinesOnScreen(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_LinesOnScreen(self, *_args, **_kwargs)
return val
def UsePopUp(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_UsePopUp(self, *_args, **_kwargs)
return val
def SelectionIsRectangle(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SelectionIsRectangle(self, *_args, **_kwargs)
return val
def SetZoom(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetZoom(self, *_args, **_kwargs)
return val
def GetZoom(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetZoom(self, *_args, **_kwargs)
return val
def CreateDocument(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CreateDocument(self, *_args, **_kwargs)
return val
def AddRefDocument(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_AddRefDocument(self, *_args, **_kwargs)
return val
def ReleaseDocument(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_ReleaseDocument(self, *_args, **_kwargs)
return val
def GetModEventMask(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetModEventMask(self, *_args, **_kwargs)
return val
def SetSTCFocus(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetSTCFocus(self, *_args, **_kwargs)
return val
def GetSTCFocus(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetSTCFocus(self, *_args, **_kwargs)
return val
def SetStatus(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetStatus(self, *_args, **_kwargs)
return val
def GetStatus(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetStatus(self, *_args, **_kwargs)
return val
def SetMouseDownCaptures(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetMouseDownCaptures(self, *_args, **_kwargs)
return val
def GetMouseDownCaptures(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetMouseDownCaptures(self, *_args, **_kwargs)
return val
def SetSTCCursor(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetSTCCursor(self, *_args, **_kwargs)
return val
def GetSTCCursor(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetSTCCursor(self, *_args, **_kwargs)
return val
def SetControlCharSymbol(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetControlCharSymbol(self, *_args, **_kwargs)
return val
def GetControlCharSymbol(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetControlCharSymbol(self, *_args, **_kwargs)
return val
def WordPartLeft(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_WordPartLeft(self, *_args, **_kwargs)
return val
def WordPartLeftExtend(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_WordPartLeftExtend(self, *_args, **_kwargs)
return val
def WordPartRight(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_WordPartRight(self, *_args, **_kwargs)
return val
def WordPartRightExtend(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_WordPartRightExtend(self, *_args, **_kwargs)
return val
def SetVisiblePolicy(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetVisiblePolicy(self, *_args, **_kwargs)
return val
def DelLineLeft(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_DelLineLeft(self, *_args, **_kwargs)
return val
def DelLineRight(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_DelLineRight(self, *_args, **_kwargs)
return val
def SetXOffset(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetXOffset(self, *_args, **_kwargs)
return val
def GetXOffset(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetXOffset(self, *_args, **_kwargs)
return val
def ChooseCaretX(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_ChooseCaretX(self, *_args, **_kwargs)
return val
def SetXCaretPolicy(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetXCaretPolicy(self, *_args, **_kwargs)
return val
def SetYCaretPolicy(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetYCaretPolicy(self, *_args, **_kwargs)
return val
def SetPrintWrapMode(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetPrintWrapMode(self, *_args, **_kwargs)
return val
def GetPrintWrapMode(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetPrintWrapMode(self, *_args, **_kwargs)
return val
def SetHotspotActiveForeground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetHotspotActiveForeground(self, *_args, **_kwargs)
return val
def SetHotspotActiveBackground(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetHotspotActiveBackground(self, *_args, **_kwargs)
return val
def SetHotspotActiveUnderline(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetHotspotActiveUnderline(self, *_args, **_kwargs)
return val
def PositionBefore(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_PositionBefore(self, *_args, **_kwargs)
return val
def PositionAfter(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_PositionAfter(self, *_args, **_kwargs)
return val
def CopyRange(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CopyRange(self, *_args, **_kwargs)
return val
def CopyText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CopyText(self, *_args, **_kwargs)
return val
def StartRecord(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StartRecord(self, *_args, **_kwargs)
return val
def StopRecord(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StopRecord(self, *_args, **_kwargs)
return val
def SetLexer(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetLexer(self, *_args, **_kwargs)
return val
def GetLexer(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetLexer(self, *_args, **_kwargs)
return val
def Colourise(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_Colourise(self, *_args, **_kwargs)
return val
def SetProperty(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetProperty(self, *_args, **_kwargs)
return val
def SetKeyWords(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetKeyWords(self, *_args, **_kwargs)
return val
def SetLexerLanguage(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetLexerLanguage(self, *_args, **_kwargs)
return val
def GetCurrentLine(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetCurrentLine(self, *_args, **_kwargs)
return val
def StyleSetSpec(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetSpec(self, *_args, **_kwargs)
return val
def StyleSetFont(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetFont(self, *_args, **_kwargs)
return val
def StyleSetFontAttr(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_StyleSetFontAttr(self, *_args, **_kwargs)
return val
def CmdKeyExecute(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_CmdKeyExecute(self, *_args, **_kwargs)
return val
def SetMargins(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetMargins(self, *_args, **_kwargs)
return val
def GetSelection(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetSelection(self, *_args, **_kwargs)
return val
def PointFromPosition(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_PointFromPosition(self, *_args, **_kwargs)
if val: val = wxPointPtr(val) ; val.thisown = 1
return val
def ScrollToLine(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_ScrollToLine(self, *_args, **_kwargs)
return val
def ScrollToColumn(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_ScrollToColumn(self, *_args, **_kwargs)
return val
def SendMsg(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SendMsg(self, *_args, **_kwargs)
return val
def SetVScrollBar(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetVScrollBar(self, *_args, **_kwargs)
return val
def SetHScrollBar(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetHScrollBar(self, *_args, **_kwargs)
return val
def GetLastKeydownProcessed(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_GetLastKeydownProcessed(self, *_args, **_kwargs)
return val
def SetLastKeydownProcessed(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SetLastKeydownProcessed(self, *_args, **_kwargs)
return val
def SaveFile(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_SaveFile(self, *_args, **_kwargs)
return val
def LoadFile(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_LoadFile(self, *_args, **_kwargs)
return val
def DoDragOver(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_DoDragOver(self, *_args, **_kwargs)
return val
def DoDropText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextCtrl_DoDropText(self, *_args, **_kwargs)
return val
def __repr__(self):
return "<%s.%s instance; proxy of C++ wxStyledTextCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this)
class wxStyledTextCtrl(wxStyledTextCtrlPtr):
def __init__(self,*_args,**_kwargs):
self.this = stc_c.new_wxStyledTextCtrl(*_args,**_kwargs)
self.thisown = 1
self._setOORInfo(self)
class wxStyledTextEventPtr(wxCommandEventPtr):
def __init__(self,this):
self.this = this
self.thisown = 0
def __del__(self, delfunc=stc_c.delete_wxStyledTextEvent):
if self.thisown == 1:
try:
delfunc(self)
except:
pass
def SetPosition(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetPosition(self, *_args, **_kwargs)
return val
def SetKey(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetKey(self, *_args, **_kwargs)
return val
def SetModifiers(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetModifiers(self, *_args, **_kwargs)
return val
def SetModificationType(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetModificationType(self, *_args, **_kwargs)
return val
def SetText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetText(self, *_args, **_kwargs)
return val
def SetLength(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetLength(self, *_args, **_kwargs)
return val
def SetLinesAdded(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetLinesAdded(self, *_args, **_kwargs)
return val
def SetLine(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetLine(self, *_args, **_kwargs)
return val
def SetFoldLevelNow(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetFoldLevelNow(self, *_args, **_kwargs)
return val
def SetFoldLevelPrev(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetFoldLevelPrev(self, *_args, **_kwargs)
return val
def SetMargin(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetMargin(self, *_args, **_kwargs)
return val
def SetMessage(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetMessage(self, *_args, **_kwargs)
return val
def SetWParam(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetWParam(self, *_args, **_kwargs)
return val
def SetLParam(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetLParam(self, *_args, **_kwargs)
return val
def SetListType(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetListType(self, *_args, **_kwargs)
return val
def SetX(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetX(self, *_args, **_kwargs)
return val
def SetY(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetY(self, *_args, **_kwargs)
return val
def SetDragText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetDragText(self, *_args, **_kwargs)
return val
def SetDragAllowMove(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetDragAllowMove(self, *_args, **_kwargs)
return val
def SetDragResult(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_SetDragResult(self, *_args, **_kwargs)
return val
def GetPosition(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetPosition(self, *_args, **_kwargs)
return val
def GetKey(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetKey(self, *_args, **_kwargs)
return val
def GetModifiers(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetModifiers(self, *_args, **_kwargs)
return val
def GetModificationType(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetModificationType(self, *_args, **_kwargs)
return val
def GetText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetText(self, *_args, **_kwargs)
return val
def GetLength(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetLength(self, *_args, **_kwargs)
return val
def GetLinesAdded(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetLinesAdded(self, *_args, **_kwargs)
return val
def GetLine(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetLine(self, *_args, **_kwargs)
return val
def GetFoldLevelNow(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetFoldLevelNow(self, *_args, **_kwargs)
return val
def GetFoldLevelPrev(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetFoldLevelPrev(self, *_args, **_kwargs)
return val
def GetMargin(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetMargin(self, *_args, **_kwargs)
return val
def GetMessage(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetMessage(self, *_args, **_kwargs)
return val
def GetWParam(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetWParam(self, *_args, **_kwargs)
return val
def GetLParam(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetLParam(self, *_args, **_kwargs)
return val
def GetListType(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetListType(self, *_args, **_kwargs)
return val
def GetX(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetX(self, *_args, **_kwargs)
return val
def GetY(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetY(self, *_args, **_kwargs)
return val
def GetDragText(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetDragText(self, *_args, **_kwargs)
return val
def GetDragAllowMove(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetDragAllowMove(self, *_args, **_kwargs)
return val
def GetDragResult(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetDragResult(self, *_args, **_kwargs)
return val
def GetShift(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetShift(self, *_args, **_kwargs)
return val
def GetControl(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetControl(self, *_args, **_kwargs)
return val
def GetAlt(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_GetAlt(self, *_args, **_kwargs)
return val
def Clone(self, *_args, **_kwargs):
val = stc_c.wxStyledTextEvent_Clone(self, *_args, **_kwargs)
if val: val = wxEventPtr(val)
return val
def __repr__(self):
return "<%s.%s instance; proxy of C++ wxStyledTextEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this)
class wxStyledTextEvent(wxStyledTextEventPtr):
def __init__(self,*_args,**_kwargs):
self.this = stc_c.new_wxStyledTextEvent(*_args,**_kwargs)
self.thisown = 1
#-------------- FUNCTION WRAPPERS ------------------
#-------------- VARIABLE WRAPPERS ------------------
STC_USE_DND = stc_c.STC_USE_DND
wxSTC_USE_POPUP = stc_c.wxSTC_USE_POPUP
wxSTC_INVALID_POSITION = stc_c.wxSTC_INVALID_POSITION
wxSTC_START = stc_c.wxSTC_START
wxSTC_OPTIONAL_START = stc_c.wxSTC_OPTIONAL_START
wxSTC_LEXER_START = stc_c.wxSTC_LEXER_START
wxSTC_WS_INVISIBLE = stc_c.wxSTC_WS_INVISIBLE
wxSTC_WS_VISIBLEALWAYS = stc_c.wxSTC_WS_VISIBLEALWAYS
wxSTC_WS_VISIBLEAFTERINDENT = stc_c.wxSTC_WS_VISIBLEAFTERINDENT
wxSTC_EOL_CRLF = stc_c.wxSTC_EOL_CRLF
wxSTC_EOL_CR = stc_c.wxSTC_EOL_CR
wxSTC_EOL_LF = stc_c.wxSTC_EOL_LF
wxSTC_CP_UTF8 = stc_c.wxSTC_CP_UTF8
wxSTC_CP_DBCS = stc_c.wxSTC_CP_DBCS
wxSTC_MARKER_MAX = stc_c.wxSTC_MARKER_MAX
wxSTC_MARK_CIRCLE = stc_c.wxSTC_MARK_CIRCLE
wxSTC_MARK_ROUNDRECT = stc_c.wxSTC_MARK_ROUNDRECT
wxSTC_MARK_ARROW = stc_c.wxSTC_MARK_ARROW
wxSTC_MARK_SMALLRECT = stc_c.wxSTC_MARK_SMALLRECT
wxSTC_MARK_SHORTARROW = stc_c.wxSTC_MARK_SHORTARROW
wxSTC_MARK_EMPTY = stc_c.wxSTC_MARK_EMPTY
wxSTC_MARK_ARROWDOWN = stc_c.wxSTC_MARK_ARROWDOWN
wxSTC_MARK_MINUS = stc_c.wxSTC_MARK_MINUS
wxSTC_MARK_PLUS = stc_c.wxSTC_MARK_PLUS
wxSTC_MARK_VLINE = stc_c.wxSTC_MARK_VLINE
wxSTC_MARK_LCORNER = stc_c.wxSTC_MARK_LCORNER
wxSTC_MARK_TCORNER = stc_c.wxSTC_MARK_TCORNER
wxSTC_MARK_BOXPLUS = stc_c.wxSTC_MARK_BOXPLUS
wxSTC_MARK_BOXPLUSCONNECTED = stc_c.wxSTC_MARK_BOXPLUSCONNECTED
wxSTC_MARK_BOXMINUS = stc_c.wxSTC_MARK_BOXMINUS
wxSTC_MARK_BOXMINUSCONNECTED = stc_c.wxSTC_MARK_BOXMINUSCONNECTED
wxSTC_MARK_LCORNERCURVE = stc_c.wxSTC_MARK_LCORNERCURVE
wxSTC_MARK_TCORNERCURVE = stc_c.wxSTC_MARK_TCORNERCURVE
wxSTC_MARK_CIRCLEPLUS = stc_c.wxSTC_MARK_CIRCLEPLUS
wxSTC_MARK_CIRCLEPLUSCONNECTED = stc_c.wxSTC_MARK_CIRCLEPLUSCONNECTED
wxSTC_MARK_CIRCLEMINUS = stc_c.wxSTC_MARK_CIRCLEMINUS
wxSTC_MARK_CIRCLEMINUSCONNECTED = stc_c.wxSTC_MARK_CIRCLEMINUSCONNECTED
wxSTC_MARK_BACKGROUND = stc_c.wxSTC_MARK_BACKGROUND
wxSTC_MARK_DOTDOTDOT = stc_c.wxSTC_MARK_DOTDOTDOT
wxSTC_MARK_ARROWS = stc_c.wxSTC_MARK_ARROWS
wxSTC_MARK_PIXMAP = stc_c.wxSTC_MARK_PIXMAP
wxSTC_MARK_CHARACTER = stc_c.wxSTC_MARK_CHARACTER
wxSTC_MARKNUM_FOLDEREND = stc_c.wxSTC_MARKNUM_FOLDEREND
wxSTC_MARKNUM_FOLDEROPENMID = stc_c.wxSTC_MARKNUM_FOLDEROPENMID
wxSTC_MARKNUM_FOLDERMIDTAIL = stc_c.wxSTC_MARKNUM_FOLDERMIDTAIL
wxSTC_MARKNUM_FOLDERTAIL = stc_c.wxSTC_MARKNUM_FOLDERTAIL
wxSTC_MARKNUM_FOLDERSUB = stc_c.wxSTC_MARKNUM_FOLDERSUB
wxSTC_MARKNUM_FOLDER = stc_c.wxSTC_MARKNUM_FOLDER
wxSTC_MARKNUM_FOLDEROPEN = stc_c.wxSTC_MARKNUM_FOLDEROPEN
wxSTC_MASK_FOLDERS = stc_c.wxSTC_MASK_FOLDERS
wxSTC_MARGIN_SYMBOL = stc_c.wxSTC_MARGIN_SYMBOL
wxSTC_MARGIN_NUMBER = stc_c.wxSTC_MARGIN_NUMBER
wxSTC_STYLE_DEFAULT = stc_c.wxSTC_STYLE_DEFAULT
wxSTC_STYLE_LINENUMBER = stc_c.wxSTC_STYLE_LINENUMBER
wxSTC_STYLE_BRACELIGHT = stc_c.wxSTC_STYLE_BRACELIGHT
wxSTC_STYLE_BRACEBAD = stc_c.wxSTC_STYLE_BRACEBAD
wxSTC_STYLE_CONTROLCHAR = stc_c.wxSTC_STYLE_CONTROLCHAR
wxSTC_STYLE_INDENTGUIDE = stc_c.wxSTC_STYLE_INDENTGUIDE
wxSTC_STYLE_LASTPREDEFINED = stc_c.wxSTC_STYLE_LASTPREDEFINED
wxSTC_STYLE_MAX = stc_c.wxSTC_STYLE_MAX
wxSTC_CHARSET_ANSI = stc_c.wxSTC_CHARSET_ANSI
wxSTC_CHARSET_DEFAULT = stc_c.wxSTC_CHARSET_DEFAULT
wxSTC_CHARSET_BALTIC = stc_c.wxSTC_CHARSET_BALTIC
wxSTC_CHARSET_CHINESEBIG5 = stc_c.wxSTC_CHARSET_CHINESEBIG5
wxSTC_CHARSET_EASTEUROPE = stc_c.wxSTC_CHARSET_EASTEUROPE
wxSTC_CHARSET_GB2312 = stc_c.wxSTC_CHARSET_GB2312
wxSTC_CHARSET_GREEK = stc_c.wxSTC_CHARSET_GREEK
wxSTC_CHARSET_HANGUL = stc_c.wxSTC_CHARSET_HANGUL
wxSTC_CHARSET_MAC = stc_c.wxSTC_CHARSET_MAC
wxSTC_CHARSET_OEM = stc_c.wxSTC_CHARSET_OEM
wxSTC_CHARSET_RUSSIAN = stc_c.wxSTC_CHARSET_RUSSIAN
wxSTC_CHARSET_SHIFTJIS = stc_c.wxSTC_CHARSET_SHIFTJIS
wxSTC_CHARSET_SYMBOL = stc_c.wxSTC_CHARSET_SYMBOL
wxSTC_CHARSET_TURKISH = stc_c.wxSTC_CHARSET_TURKISH
wxSTC_CHARSET_JOHAB = stc_c.wxSTC_CHARSET_JOHAB
wxSTC_CHARSET_HEBREW = stc_c.wxSTC_CHARSET_HEBREW
wxSTC_CHARSET_ARABIC = stc_c.wxSTC_CHARSET_ARABIC
wxSTC_CHARSET_VIETNAMESE = stc_c.wxSTC_CHARSET_VIETNAMESE
wxSTC_CHARSET_THAI = stc_c.wxSTC_CHARSET_THAI
wxSTC_CASE_MIXED = stc_c.wxSTC_CASE_MIXED
wxSTC_CASE_UPPER = stc_c.wxSTC_CASE_UPPER
wxSTC_CASE_LOWER = stc_c.wxSTC_CASE_LOWER
wxSTC_INDIC_MAX = stc_c.wxSTC_INDIC_MAX
wxSTC_INDIC_PLAIN = stc_c.wxSTC_INDIC_PLAIN
wxSTC_INDIC_SQUIGGLE = stc_c.wxSTC_INDIC_SQUIGGLE
wxSTC_INDIC_TT = stc_c.wxSTC_INDIC_TT
wxSTC_INDIC_DIAGONAL = stc_c.wxSTC_INDIC_DIAGONAL
wxSTC_INDIC_STRIKE = stc_c.wxSTC_INDIC_STRIKE
wxSTC_INDIC_HIDDEN = stc_c.wxSTC_INDIC_HIDDEN
wxSTC_INDIC0_MASK = stc_c.wxSTC_INDIC0_MASK
wxSTC_INDIC1_MASK = stc_c.wxSTC_INDIC1_MASK
wxSTC_INDIC2_MASK = stc_c.wxSTC_INDIC2_MASK
wxSTC_INDICS_MASK = stc_c.wxSTC_INDICS_MASK
wxSTC_PRINT_NORMAL = stc_c.wxSTC_PRINT_NORMAL
wxSTC_PRINT_INVERTLIGHT = stc_c.wxSTC_PRINT_INVERTLIGHT
wxSTC_PRINT_BLACKONWHITE = stc_c.wxSTC_PRINT_BLACKONWHITE
wxSTC_PRINT_COLOURONWHITE = stc_c.wxSTC_PRINT_COLOURONWHITE
wxSTC_PRINT_COLOURONWHITEDEFAULTBG = stc_c.wxSTC_PRINT_COLOURONWHITEDEFAULTBG
wxSTC_FIND_WHOLEWORD = stc_c.wxSTC_FIND_WHOLEWORD
wxSTC_FIND_MATCHCASE = stc_c.wxSTC_FIND_MATCHCASE
wxSTC_FIND_WORDSTART = stc_c.wxSTC_FIND_WORDSTART
wxSTC_FIND_REGEXP = stc_c.wxSTC_FIND_REGEXP
wxSTC_FIND_POSIX = stc_c.wxSTC_FIND_POSIX
wxSTC_FOLDLEVELBASE = stc_c.wxSTC_FOLDLEVELBASE
wxSTC_FOLDLEVELWHITEFLAG = stc_c.wxSTC_FOLDLEVELWHITEFLAG
wxSTC_FOLDLEVELHEADERFLAG = stc_c.wxSTC_FOLDLEVELHEADERFLAG
wxSTC_FOLDLEVELBOXHEADERFLAG = stc_c.wxSTC_FOLDLEVELBOXHEADERFLAG
wxSTC_FOLDLEVELBOXFOOTERFLAG = stc_c.wxSTC_FOLDLEVELBOXFOOTERFLAG
wxSTC_FOLDLEVELCONTRACTED = stc_c.wxSTC_FOLDLEVELCONTRACTED
wxSTC_FOLDLEVELUNINDENT = stc_c.wxSTC_FOLDLEVELUNINDENT
wxSTC_FOLDLEVELNUMBERMASK = stc_c.wxSTC_FOLDLEVELNUMBERMASK
wxSTC_FOLDFLAG_LINEBEFORE_EXPANDED = stc_c.wxSTC_FOLDFLAG_LINEBEFORE_EXPANDED
wxSTC_FOLDFLAG_LINEBEFORE_CONTRACTED = stc_c.wxSTC_FOLDFLAG_LINEBEFORE_CONTRACTED
wxSTC_FOLDFLAG_LINEAFTER_EXPANDED = stc_c.wxSTC_FOLDFLAG_LINEAFTER_EXPANDED
wxSTC_FOLDFLAG_LINEAFTER_CONTRACTED = stc_c.wxSTC_FOLDFLAG_LINEAFTER_CONTRACTED
wxSTC_FOLDFLAG_LEVELNUMBERS = stc_c.wxSTC_FOLDFLAG_LEVELNUMBERS
wxSTC_FOLDFLAG_BOX = stc_c.wxSTC_FOLDFLAG_BOX
wxSTC_TIME_FOREVER = stc_c.wxSTC_TIME_FOREVER
wxSTC_WRAP_NONE = stc_c.wxSTC_WRAP_NONE
wxSTC_WRAP_WORD = stc_c.wxSTC_WRAP_WORD
wxSTC_CACHE_NONE = stc_c.wxSTC_CACHE_NONE
wxSTC_CACHE_CARET = stc_c.wxSTC_CACHE_CARET
wxSTC_CACHE_PAGE = stc_c.wxSTC_CACHE_PAGE
wxSTC_CACHE_DOCUMENT = stc_c.wxSTC_CACHE_DOCUMENT
wxSTC_EDGE_NONE = stc_c.wxSTC_EDGE_NONE
wxSTC_EDGE_LINE = stc_c.wxSTC_EDGE_LINE
wxSTC_EDGE_BACKGROUND = stc_c.wxSTC_EDGE_BACKGROUND
wxSTC_CURSORNORMAL = stc_c.wxSTC_CURSORNORMAL
wxSTC_CURSORWAIT = stc_c.wxSTC_CURSORWAIT
wxSTC_VISIBLE_SLOP = stc_c.wxSTC_VISIBLE_SLOP
wxSTC_VISIBLE_STRICT = stc_c.wxSTC_VISIBLE_STRICT
wxSTC_CARET_SLOP = stc_c.wxSTC_CARET_SLOP
wxSTC_CARET_STRICT = stc_c.wxSTC_CARET_STRICT
wxSTC_CARET_JUMPS = stc_c.wxSTC_CARET_JUMPS
wxSTC_CARET_EVEN = stc_c.wxSTC_CARET_EVEN
wxSTC_KEYWORDSET_MAX = stc_c.wxSTC_KEYWORDSET_MAX
wxSTC_MOD_INSERTTEXT = stc_c.wxSTC_MOD_INSERTTEXT
wxSTC_MOD_DELETETEXT = stc_c.wxSTC_MOD_DELETETEXT
wxSTC_MOD_CHANGESTYLE = stc_c.wxSTC_MOD_CHANGESTYLE
wxSTC_MOD_CHANGEFOLD = stc_c.wxSTC_MOD_CHANGEFOLD
wxSTC_PERFORMED_USER = stc_c.wxSTC_PERFORMED_USER
wxSTC_PERFORMED_UNDO = stc_c.wxSTC_PERFORMED_UNDO
wxSTC_PERFORMED_REDO = stc_c.wxSTC_PERFORMED_REDO
wxSTC_LASTSTEPINUNDOREDO = stc_c.wxSTC_LASTSTEPINUNDOREDO
wxSTC_MOD_CHANGEMARKER = stc_c.wxSTC_MOD_CHANGEMARKER
wxSTC_MOD_BEFOREINSERT = stc_c.wxSTC_MOD_BEFOREINSERT
wxSTC_MOD_BEFOREDELETE = stc_c.wxSTC_MOD_BEFOREDELETE
wxSTC_MODEVENTMASKALL = stc_c.wxSTC_MODEVENTMASKALL
wxSTC_KEY_DOWN = stc_c.wxSTC_KEY_DOWN
wxSTC_KEY_UP = stc_c.wxSTC_KEY_UP
wxSTC_KEY_LEFT = stc_c.wxSTC_KEY_LEFT
wxSTC_KEY_RIGHT = stc_c.wxSTC_KEY_RIGHT
wxSTC_KEY_HOME = stc_c.wxSTC_KEY_HOME
wxSTC_KEY_END = stc_c.wxSTC_KEY_END
wxSTC_KEY_PRIOR = stc_c.wxSTC_KEY_PRIOR
wxSTC_KEY_NEXT = stc_c.wxSTC_KEY_NEXT
wxSTC_KEY_DELETE = stc_c.wxSTC_KEY_DELETE
wxSTC_KEY_INSERT = stc_c.wxSTC_KEY_INSERT
wxSTC_KEY_ESCAPE = stc_c.wxSTC_KEY_ESCAPE
wxSTC_KEY_BACK = stc_c.wxSTC_KEY_BACK
wxSTC_KEY_TAB = stc_c.wxSTC_KEY_TAB
wxSTC_KEY_RETURN = stc_c.wxSTC_KEY_RETURN
wxSTC_KEY_ADD = stc_c.wxSTC_KEY_ADD
wxSTC_KEY_SUBTRACT = stc_c.wxSTC_KEY_SUBTRACT
wxSTC_KEY_DIVIDE = stc_c.wxSTC_KEY_DIVIDE
wxSTC_SCMOD_SHIFT = stc_c.wxSTC_SCMOD_SHIFT
wxSTC_SCMOD_CTRL = stc_c.wxSTC_SCMOD_CTRL
wxSTC_SCMOD_ALT = stc_c.wxSTC_SCMOD_ALT
wxSTC_LEX_CONTAINER = stc_c.wxSTC_LEX_CONTAINER
wxSTC_LEX_NULL = stc_c.wxSTC_LEX_NULL
wxSTC_LEX_PYTHON = stc_c.wxSTC_LEX_PYTHON
wxSTC_LEX_CPP = stc_c.wxSTC_LEX_CPP
wxSTC_LEX_HTML = stc_c.wxSTC_LEX_HTML
wxSTC_LEX_XML = stc_c.wxSTC_LEX_XML
wxSTC_LEX_PERL = stc_c.wxSTC_LEX_PERL
wxSTC_LEX_SQL = stc_c.wxSTC_LEX_SQL
wxSTC_LEX_VB = stc_c.wxSTC_LEX_VB
wxSTC_LEX_PROPERTIES = stc_c.wxSTC_LEX_PROPERTIES
wxSTC_LEX_ERRORLIST = stc_c.wxSTC_LEX_ERRORLIST
wxSTC_LEX_MAKEFILE = stc_c.wxSTC_LEX_MAKEFILE
wxSTC_LEX_BATCH = stc_c.wxSTC_LEX_BATCH
wxSTC_LEX_XCODE = stc_c.wxSTC_LEX_XCODE
wxSTC_LEX_LATEX = stc_c.wxSTC_LEX_LATEX
wxSTC_LEX_LUA = stc_c.wxSTC_LEX_LUA
wxSTC_LEX_DIFF = stc_c.wxSTC_LEX_DIFF
wxSTC_LEX_CONF = stc_c.wxSTC_LEX_CONF
wxSTC_LEX_PASCAL = stc_c.wxSTC_LEX_PASCAL
wxSTC_LEX_AVE = stc_c.wxSTC_LEX_AVE
wxSTC_LEX_ADA = stc_c.wxSTC_LEX_ADA
wxSTC_LEX_LISP = stc_c.wxSTC_LEX_LISP
wxSTC_LEX_RUBY = stc_c.wxSTC_LEX_RUBY
wxSTC_LEX_EIFFEL = stc_c.wxSTC_LEX_EIFFEL
wxSTC_LEX_EIFFELKW = stc_c.wxSTC_LEX_EIFFELKW
wxSTC_LEX_TCL = stc_c.wxSTC_LEX_TCL
wxSTC_LEX_NNCRONTAB = stc_c.wxSTC_LEX_NNCRONTAB
wxSTC_LEX_BULLANT = stc_c.wxSTC_LEX_BULLANT
wxSTC_LEX_VBSCRIPT = stc_c.wxSTC_LEX_VBSCRIPT
wxSTC_LEX_ASP = stc_c.wxSTC_LEX_ASP
wxSTC_LEX_PHP = stc_c.wxSTC_LEX_PHP
wxSTC_LEX_BAAN = stc_c.wxSTC_LEX_BAAN
wxSTC_LEX_MATLAB = stc_c.wxSTC_LEX_MATLAB
wxSTC_LEX_SCRIPTOL = stc_c.wxSTC_LEX_SCRIPTOL
wxSTC_LEX_ASM = stc_c.wxSTC_LEX_ASM
wxSTC_LEX_CPPNOCASE = stc_c.wxSTC_LEX_CPPNOCASE
wxSTC_LEX_FORTRAN = stc_c.wxSTC_LEX_FORTRAN
wxSTC_LEX_F77 = stc_c.wxSTC_LEX_F77
wxSTC_LEX_CSS = stc_c.wxSTC_LEX_CSS
wxSTC_LEX_POV = stc_c.wxSTC_LEX_POV
wxSTC_LEX_LOUT = stc_c.wxSTC_LEX_LOUT
wxSTC_LEX_ESCRIPT = stc_c.wxSTC_LEX_ESCRIPT
wxSTC_LEX_PS = stc_c.wxSTC_LEX_PS
wxSTC_LEX_NSIS = stc_c.wxSTC_LEX_NSIS
wxSTC_LEX_MMIXAL = stc_c.wxSTC_LEX_MMIXAL
wxSTC_LEX_AUTOMATIC = stc_c.wxSTC_LEX_AUTOMATIC
wxSTC_P_DEFAULT = stc_c.wxSTC_P_DEFAULT
wxSTC_P_COMMENTLINE = stc_c.wxSTC_P_COMMENTLINE
wxSTC_P_NUMBER = stc_c.wxSTC_P_NUMBER
wxSTC_P_STRING = stc_c.wxSTC_P_STRING
wxSTC_P_CHARACTER = stc_c.wxSTC_P_CHARACTER
wxSTC_P_WORD = stc_c.wxSTC_P_WORD
wxSTC_P_TRIPLE = stc_c.wxSTC_P_TRIPLE
wxSTC_P_TRIPLEDOUBLE = stc_c.wxSTC_P_TRIPLEDOUBLE
wxSTC_P_CLASSNAME = stc_c.wxSTC_P_CLASSNAME
wxSTC_P_DEFNAME = stc_c.wxSTC_P_DEFNAME
wxSTC_P_OPERATOR = stc_c.wxSTC_P_OPERATOR
wxSTC_P_IDENTIFIER = stc_c.wxSTC_P_IDENTIFIER
wxSTC_P_COMMENTBLOCK = stc_c.wxSTC_P_COMMENTBLOCK
wxSTC_P_STRINGEOL = stc_c.wxSTC_P_STRINGEOL
wxSTC_C_DEFAULT = stc_c.wxSTC_C_DEFAULT
wxSTC_C_COMMENT = stc_c.wxSTC_C_COMMENT
wxSTC_C_COMMENTLINE = stc_c.wxSTC_C_COMMENTLINE
wxSTC_C_COMMENTDOC = stc_c.wxSTC_C_COMMENTDOC
wxSTC_C_NUMBER = stc_c.wxSTC_C_NUMBER
wxSTC_C_WORD = stc_c.wxSTC_C_WORD
wxSTC_C_STRING = stc_c.wxSTC_C_STRING
wxSTC_C_CHARACTER = stc_c.wxSTC_C_CHARACTER
wxSTC_C_UUID = stc_c.wxSTC_C_UUID
wxSTC_C_PREPROCESSOR = stc_c.wxSTC_C_PREPROCESSOR
wxSTC_C_OPERATOR = stc_c.wxSTC_C_OPERATOR
wxSTC_C_IDENTIFIER = stc_c.wxSTC_C_IDENTIFIER
wxSTC_C_STRINGEOL = stc_c.wxSTC_C_STRINGEOL
wxSTC_C_VERBATIM = stc_c.wxSTC_C_VERBATIM
wxSTC_C_REGEX = stc_c.wxSTC_C_REGEX
wxSTC_C_COMMENTLINEDOC = stc_c.wxSTC_C_COMMENTLINEDOC
wxSTC_C_WORD2 = stc_c.wxSTC_C_WORD2
wxSTC_C_COMMENTDOCKEYWORD = stc_c.wxSTC_C_COMMENTDOCKEYWORD
wxSTC_C_COMMENTDOCKEYWORDERROR = stc_c.wxSTC_C_COMMENTDOCKEYWORDERROR
wxSTC_C_GLOBALCLASS = stc_c.wxSTC_C_GLOBALCLASS
wxSTC_H_DEFAULT = stc_c.wxSTC_H_DEFAULT
wxSTC_H_TAG = stc_c.wxSTC_H_TAG
wxSTC_H_TAGUNKNOWN = stc_c.wxSTC_H_TAGUNKNOWN
wxSTC_H_ATTRIBUTE = stc_c.wxSTC_H_ATTRIBUTE
wxSTC_H_ATTRIBUTEUNKNOWN = stc_c.wxSTC_H_ATTRIBUTEUNKNOWN
wxSTC_H_NUMBER = stc_c.wxSTC_H_NUMBER
wxSTC_H_DOUBLESTRING = stc_c.wxSTC_H_DOUBLESTRING
wxSTC_H_SINGLESTRING = stc_c.wxSTC_H_SINGLESTRING
wxSTC_H_OTHER = stc_c.wxSTC_H_OTHER
wxSTC_H_COMMENT = stc_c.wxSTC_H_COMMENT
wxSTC_H_ENTITY = stc_c.wxSTC_H_ENTITY
wxSTC_H_TAGEND = stc_c.wxSTC_H_TAGEND
wxSTC_H_XMLSTART = stc_c.wxSTC_H_XMLSTART
wxSTC_H_XMLEND = stc_c.wxSTC_H_XMLEND
wxSTC_H_SCRIPT = stc_c.wxSTC_H_SCRIPT
wxSTC_H_ASP = stc_c.wxSTC_H_ASP
wxSTC_H_ASPAT = stc_c.wxSTC_H_ASPAT
wxSTC_H_CDATA = stc_c.wxSTC_H_CDATA
wxSTC_H_QUESTION = stc_c.wxSTC_H_QUESTION
wxSTC_H_VALUE = stc_c.wxSTC_H_VALUE
wxSTC_H_XCCOMMENT = stc_c.wxSTC_H_XCCOMMENT
wxSTC_H_SGML_DEFAULT = stc_c.wxSTC_H_SGML_DEFAULT
wxSTC_H_SGML_COMMAND = stc_c.wxSTC_H_SGML_COMMAND
wxSTC_H_SGML_1ST_PARAM = stc_c.wxSTC_H_SGML_1ST_PARAM
wxSTC_H_SGML_DOUBLESTRING = stc_c.wxSTC_H_SGML_DOUBLESTRING
wxSTC_H_SGML_SIMPLESTRING = stc_c.wxSTC_H_SGML_SIMPLESTRING
wxSTC_H_SGML_ERROR = stc_c.wxSTC_H_SGML_ERROR
wxSTC_H_SGML_SPECIAL = stc_c.wxSTC_H_SGML_SPECIAL
wxSTC_H_SGML_ENTITY = stc_c.wxSTC_H_SGML_ENTITY
wxSTC_H_SGML_COMMENT = stc_c.wxSTC_H_SGML_COMMENT
wxSTC_H_SGML_1ST_PARAM_COMMENT = stc_c.wxSTC_H_SGML_1ST_PARAM_COMMENT
wxSTC_H_SGML_BLOCK_DEFAULT = stc_c.wxSTC_H_SGML_BLOCK_DEFAULT
wxSTC_HJ_START = stc_c.wxSTC_HJ_START
wxSTC_HJ_DEFAULT = stc_c.wxSTC_HJ_DEFAULT
wxSTC_HJ_COMMENT = stc_c.wxSTC_HJ_COMMENT
wxSTC_HJ_COMMENTLINE = stc_c.wxSTC_HJ_COMMENTLINE
wxSTC_HJ_COMMENTDOC = stc_c.wxSTC_HJ_COMMENTDOC
wxSTC_HJ_NUMBER = stc_c.wxSTC_HJ_NUMBER
wxSTC_HJ_WORD = stc_c.wxSTC_HJ_WORD
wxSTC_HJ_KEYWORD = stc_c.wxSTC_HJ_KEYWORD
wxSTC_HJ_DOUBLESTRING = stc_c.wxSTC_HJ_DOUBLESTRING
wxSTC_HJ_SINGLESTRING = stc_c.wxSTC_HJ_SINGLESTRING
wxSTC_HJ_SYMBOLS = stc_c.wxSTC_HJ_SYMBOLS
wxSTC_HJ_STRINGEOL = stc_c.wxSTC_HJ_STRINGEOL
wxSTC_HJ_REGEX = stc_c.wxSTC_HJ_REGEX
wxSTC_HJA_START = stc_c.wxSTC_HJA_START
wxSTC_HJA_DEFAULT = stc_c.wxSTC_HJA_DEFAULT
wxSTC_HJA_COMMENT = stc_c.wxSTC_HJA_COMMENT
wxSTC_HJA_COMMENTLINE = stc_c.wxSTC_HJA_COMMENTLINE
wxSTC_HJA_COMMENTDOC = stc_c.wxSTC_HJA_COMMENTDOC
wxSTC_HJA_NUMBER = stc_c.wxSTC_HJA_NUMBER
wxSTC_HJA_WORD = stc_c.wxSTC_HJA_WORD
wxSTC_HJA_KEYWORD = stc_c.wxSTC_HJA_KEYWORD
wxSTC_HJA_DOUBLESTRING = stc_c.wxSTC_HJA_DOUBLESTRING
wxSTC_HJA_SINGLESTRING = stc_c.wxSTC_HJA_SINGLESTRING
wxSTC_HJA_SYMBOLS = stc_c.wxSTC_HJA_SYMBOLS
wxSTC_HJA_STRINGEOL = stc_c.wxSTC_HJA_STRINGEOL
wxSTC_HJA_REGEX = stc_c.wxSTC_HJA_REGEX
wxSTC_HB_START = stc_c.wxSTC_HB_START
wxSTC_HB_DEFAULT = stc_c.wxSTC_HB_DEFAULT
wxSTC_HB_COMMENTLINE = stc_c.wxSTC_HB_COMMENTLINE
wxSTC_HB_NUMBER = stc_c.wxSTC_HB_NUMBER
wxSTC_HB_WORD = stc_c.wxSTC_HB_WORD
wxSTC_HB_STRING = stc_c.wxSTC_HB_STRING
wxSTC_HB_IDENTIFIER = stc_c.wxSTC_HB_IDENTIFIER
wxSTC_HB_STRINGEOL = stc_c.wxSTC_HB_STRINGEOL
wxSTC_HBA_START = stc_c.wxSTC_HBA_START
wxSTC_HBA_DEFAULT = stc_c.wxSTC_HBA_DEFAULT
wxSTC_HBA_COMMENTLINE = stc_c.wxSTC_HBA_COMMENTLINE
wxSTC_HBA_NUMBER = stc_c.wxSTC_HBA_NUMBER
wxSTC_HBA_WORD = stc_c.wxSTC_HBA_WORD
wxSTC_HBA_STRING = stc_c.wxSTC_HBA_STRING
wxSTC_HBA_IDENTIFIER = stc_c.wxSTC_HBA_IDENTIFIER
wxSTC_HBA_STRINGEOL = stc_c.wxSTC_HBA_STRINGEOL
wxSTC_HP_START = stc_c.wxSTC_HP_START
wxSTC_HP_DEFAULT = stc_c.wxSTC_HP_DEFAULT
wxSTC_HP_COMMENTLINE = stc_c.wxSTC_HP_COMMENTLINE
wxSTC_HP_NUMBER = stc_c.wxSTC_HP_NUMBER
wxSTC_HP_STRING = stc_c.wxSTC_HP_STRING
wxSTC_HP_CHARACTER = stc_c.wxSTC_HP_CHARACTER
wxSTC_HP_WORD = stc_c.wxSTC_HP_WORD
wxSTC_HP_TRIPLE = stc_c.wxSTC_HP_TRIPLE
wxSTC_HP_TRIPLEDOUBLE = stc_c.wxSTC_HP_TRIPLEDOUBLE
wxSTC_HP_CLASSNAME = stc_c.wxSTC_HP_CLASSNAME
wxSTC_HP_DEFNAME = stc_c.wxSTC_HP_DEFNAME
wxSTC_HP_OPERATOR = stc_c.wxSTC_HP_OPERATOR
wxSTC_HP_IDENTIFIER = stc_c.wxSTC_HP_IDENTIFIER
wxSTC_HPA_START = stc_c.wxSTC_HPA_START
wxSTC_HPA_DEFAULT = stc_c.wxSTC_HPA_DEFAULT
wxSTC_HPA_COMMENTLINE = stc_c.wxSTC_HPA_COMMENTLINE
wxSTC_HPA_NUMBER = stc_c.wxSTC_HPA_NUMBER
wxSTC_HPA_STRING = stc_c.wxSTC_HPA_STRING
wxSTC_HPA_CHARACTER = stc_c.wxSTC_HPA_CHARACTER
wxSTC_HPA_WORD = stc_c.wxSTC_HPA_WORD
wxSTC_HPA_TRIPLE = stc_c.wxSTC_HPA_TRIPLE
wxSTC_HPA_TRIPLEDOUBLE = stc_c.wxSTC_HPA_TRIPLEDOUBLE
wxSTC_HPA_CLASSNAME = stc_c.wxSTC_HPA_CLASSNAME
wxSTC_HPA_DEFNAME = stc_c.wxSTC_HPA_DEFNAME
wxSTC_HPA_OPERATOR = stc_c.wxSTC_HPA_OPERATOR
wxSTC_HPA_IDENTIFIER = stc_c.wxSTC_HPA_IDENTIFIER
wxSTC_HPHP_DEFAULT = stc_c.wxSTC_HPHP_DEFAULT
wxSTC_HPHP_HSTRING = stc_c.wxSTC_HPHP_HSTRING
wxSTC_HPHP_SIMPLESTRING = stc_c.wxSTC_HPHP_SIMPLESTRING
wxSTC_HPHP_WORD = stc_c.wxSTC_HPHP_WORD
wxSTC_HPHP_NUMBER = stc_c.wxSTC_HPHP_NUMBER
wxSTC_HPHP_VARIABLE = stc_c.wxSTC_HPHP_VARIABLE
wxSTC_HPHP_COMMENT = stc_c.wxSTC_HPHP_COMMENT
wxSTC_HPHP_COMMENTLINE = stc_c.wxSTC_HPHP_COMMENTLINE
wxSTC_HPHP_HSTRING_VARIABLE = stc_c.wxSTC_HPHP_HSTRING_VARIABLE
wxSTC_HPHP_OPERATOR = stc_c.wxSTC_HPHP_OPERATOR
wxSTC_PL_DEFAULT = stc_c.wxSTC_PL_DEFAULT
wxSTC_PL_ERROR = stc_c.wxSTC_PL_ERROR
wxSTC_PL_COMMENTLINE = stc_c.wxSTC_PL_COMMENTLINE
wxSTC_PL_POD = stc_c.wxSTC_PL_POD
wxSTC_PL_NUMBER = stc_c.wxSTC_PL_NUMBER
wxSTC_PL_WORD = stc_c.wxSTC_PL_WORD
wxSTC_PL_STRING = stc_c.wxSTC_PL_STRING
wxSTC_PL_CHARACTER = stc_c.wxSTC_PL_CHARACTER
wxSTC_PL_PUNCTUATION = stc_c.wxSTC_PL_PUNCTUATION
wxSTC_PL_PREPROCESSOR = stc_c.wxSTC_PL_PREPROCESSOR
wxSTC_PL_OPERATOR = stc_c.wxSTC_PL_OPERATOR
wxSTC_PL_IDENTIFIER = stc_c.wxSTC_PL_IDENTIFIER
wxSTC_PL_SCALAR = stc_c.wxSTC_PL_SCALAR
wxSTC_PL_ARRAY = stc_c.wxSTC_PL_ARRAY
wxSTC_PL_HASH = stc_c.wxSTC_PL_HASH
wxSTC_PL_SYMBOLTABLE = stc_c.wxSTC_PL_SYMBOLTABLE
wxSTC_PL_REGEX = stc_c.wxSTC_PL_REGEX
wxSTC_PL_REGSUBST = stc_c.wxSTC_PL_REGSUBST
wxSTC_PL_LONGQUOTE = stc_c.wxSTC_PL_LONGQUOTE
wxSTC_PL_BACKTICKS = stc_c.wxSTC_PL_BACKTICKS
wxSTC_PL_DATASECTION = stc_c.wxSTC_PL_DATASECTION
wxSTC_PL_HERE_DELIM = stc_c.wxSTC_PL_HERE_DELIM
wxSTC_PL_HERE_Q = stc_c.wxSTC_PL_HERE_Q
wxSTC_PL_HERE_QQ = stc_c.wxSTC_PL_HERE_QQ
wxSTC_PL_HERE_QX = stc_c.wxSTC_PL_HERE_QX
wxSTC_PL_STRING_Q = stc_c.wxSTC_PL_STRING_Q
wxSTC_PL_STRING_QQ = stc_c.wxSTC_PL_STRING_QQ
wxSTC_PL_STRING_QX = stc_c.wxSTC_PL_STRING_QX
wxSTC_PL_STRING_QR = stc_c.wxSTC_PL_STRING_QR
wxSTC_PL_STRING_QW = stc_c.wxSTC_PL_STRING_QW
wxSTC_B_DEFAULT = stc_c.wxSTC_B_DEFAULT
wxSTC_B_COMMENT = stc_c.wxSTC_B_COMMENT
wxSTC_B_NUMBER = stc_c.wxSTC_B_NUMBER
wxSTC_B_KEYWORD = stc_c.wxSTC_B_KEYWORD
wxSTC_B_STRING = stc_c.wxSTC_B_STRING
wxSTC_B_PREPROCESSOR = stc_c.wxSTC_B_PREPROCESSOR
wxSTC_B_OPERATOR = stc_c.wxSTC_B_OPERATOR
wxSTC_B_IDENTIFIER = stc_c.wxSTC_B_IDENTIFIER
wxSTC_B_DATE = stc_c.wxSTC_B_DATE
wxSTC_PROPS_DEFAULT = stc_c.wxSTC_PROPS_DEFAULT
wxSTC_PROPS_COMMENT = stc_c.wxSTC_PROPS_COMMENT
wxSTC_PROPS_SECTION = stc_c.wxSTC_PROPS_SECTION
wxSTC_PROPS_ASSIGNMENT = stc_c.wxSTC_PROPS_ASSIGNMENT
wxSTC_PROPS_DEFVAL = stc_c.wxSTC_PROPS_DEFVAL
wxSTC_L_DEFAULT = stc_c.wxSTC_L_DEFAULT
wxSTC_L_COMMAND = stc_c.wxSTC_L_COMMAND
wxSTC_L_TAG = stc_c.wxSTC_L_TAG
wxSTC_L_MATH = stc_c.wxSTC_L_MATH
wxSTC_L_COMMENT = stc_c.wxSTC_L_COMMENT
wxSTC_LUA_DEFAULT = stc_c.wxSTC_LUA_DEFAULT
wxSTC_LUA_COMMENT = stc_c.wxSTC_LUA_COMMENT
wxSTC_LUA_COMMENTLINE = stc_c.wxSTC_LUA_COMMENTLINE
wxSTC_LUA_COMMENTDOC = stc_c.wxSTC_LUA_COMMENTDOC
wxSTC_LUA_NUMBER = stc_c.wxSTC_LUA_NUMBER
wxSTC_LUA_WORD = stc_c.wxSTC_LUA_WORD
wxSTC_LUA_STRING = stc_c.wxSTC_LUA_STRING
wxSTC_LUA_CHARACTER = stc_c.wxSTC_LUA_CHARACTER
wxSTC_LUA_LITERALSTRING = stc_c.wxSTC_LUA_LITERALSTRING
wxSTC_LUA_PREPROCESSOR = stc_c.wxSTC_LUA_PREPROCESSOR
wxSTC_LUA_OPERATOR = stc_c.wxSTC_LUA_OPERATOR
wxSTC_LUA_IDENTIFIER = stc_c.wxSTC_LUA_IDENTIFIER
wxSTC_LUA_STRINGEOL = stc_c.wxSTC_LUA_STRINGEOL
wxSTC_LUA_WORD2 = stc_c.wxSTC_LUA_WORD2
wxSTC_LUA_WORD3 = stc_c.wxSTC_LUA_WORD3
wxSTC_LUA_WORD4 = stc_c.wxSTC_LUA_WORD4
wxSTC_LUA_WORD5 = stc_c.wxSTC_LUA_WORD5
wxSTC_LUA_WORD6 = stc_c.wxSTC_LUA_WORD6
wxSTC_LUA_WORD7 = stc_c.wxSTC_LUA_WORD7
wxSTC_LUA_WORD8 = stc_c.wxSTC_LUA_WORD8
wxSTC_ERR_DEFAULT = stc_c.wxSTC_ERR_DEFAULT
wxSTC_ERR_PYTHON = stc_c.wxSTC_ERR_PYTHON
wxSTC_ERR_GCC = stc_c.wxSTC_ERR_GCC
wxSTC_ERR_MS = stc_c.wxSTC_ERR_MS
wxSTC_ERR_CMD = stc_c.wxSTC_ERR_CMD
wxSTC_ERR_BORLAND = stc_c.wxSTC_ERR_BORLAND
wxSTC_ERR_PERL = stc_c.wxSTC_ERR_PERL
wxSTC_ERR_NET = stc_c.wxSTC_ERR_NET
wxSTC_ERR_LUA = stc_c.wxSTC_ERR_LUA
wxSTC_ERR_CTAG = stc_c.wxSTC_ERR_CTAG
wxSTC_ERR_DIFF_CHANGED = stc_c.wxSTC_ERR_DIFF_CHANGED
wxSTC_ERR_DIFF_ADDITION = stc_c.wxSTC_ERR_DIFF_ADDITION
wxSTC_ERR_DIFF_DELETION = stc_c.wxSTC_ERR_DIFF_DELETION
wxSTC_ERR_DIFF_MESSAGE = stc_c.wxSTC_ERR_DIFF_MESSAGE
wxSTC_ERR_PHP = stc_c.wxSTC_ERR_PHP
wxSTC_ERR_ELF = stc_c.wxSTC_ERR_ELF
wxSTC_ERR_IFC = stc_c.wxSTC_ERR_IFC
wxSTC_BAT_DEFAULT = stc_c.wxSTC_BAT_DEFAULT
wxSTC_BAT_COMMENT = stc_c.wxSTC_BAT_COMMENT
wxSTC_BAT_WORD = stc_c.wxSTC_BAT_WORD
wxSTC_BAT_LABEL = stc_c.wxSTC_BAT_LABEL
wxSTC_BAT_HIDE = stc_c.wxSTC_BAT_HIDE
wxSTC_BAT_COMMAND = stc_c.wxSTC_BAT_COMMAND
wxSTC_BAT_IDENTIFIER = stc_c.wxSTC_BAT_IDENTIFIER
wxSTC_BAT_OPERATOR = stc_c.wxSTC_BAT_OPERATOR
wxSTC_MAKE_DEFAULT = stc_c.wxSTC_MAKE_DEFAULT
wxSTC_MAKE_COMMENT = stc_c.wxSTC_MAKE_COMMENT
wxSTC_MAKE_PREPROCESSOR = stc_c.wxSTC_MAKE_PREPROCESSOR
wxSTC_MAKE_IDENTIFIER = stc_c.wxSTC_MAKE_IDENTIFIER
wxSTC_MAKE_OPERATOR = stc_c.wxSTC_MAKE_OPERATOR
wxSTC_MAKE_TARGET = stc_c.wxSTC_MAKE_TARGET
wxSTC_MAKE_IDEOL = stc_c.wxSTC_MAKE_IDEOL
wxSTC_DIFF_DEFAULT = stc_c.wxSTC_DIFF_DEFAULT
wxSTC_DIFF_COMMENT = stc_c.wxSTC_DIFF_COMMENT
wxSTC_DIFF_COMMAND = stc_c.wxSTC_DIFF_COMMAND
wxSTC_DIFF_HEADER = stc_c.wxSTC_DIFF_HEADER
wxSTC_DIFF_POSITION = stc_c.wxSTC_DIFF_POSITION
wxSTC_DIFF_DELETED = stc_c.wxSTC_DIFF_DELETED
wxSTC_DIFF_ADDED = stc_c.wxSTC_DIFF_ADDED
wxSTC_CONF_DEFAULT = stc_c.wxSTC_CONF_DEFAULT
wxSTC_CONF_COMMENT = stc_c.wxSTC_CONF_COMMENT
wxSTC_CONF_NUMBER = stc_c.wxSTC_CONF_NUMBER
wxSTC_CONF_IDENTIFIER = stc_c.wxSTC_CONF_IDENTIFIER
wxSTC_CONF_EXTENSION = stc_c.wxSTC_CONF_EXTENSION
wxSTC_CONF_PARAMETER = stc_c.wxSTC_CONF_PARAMETER
wxSTC_CONF_STRING = stc_c.wxSTC_CONF_STRING
wxSTC_CONF_OPERATOR = stc_c.wxSTC_CONF_OPERATOR
wxSTC_CONF_IP = stc_c.wxSTC_CONF_IP
wxSTC_CONF_DIRECTIVE = stc_c.wxSTC_CONF_DIRECTIVE
wxSTC_AVE_DEFAULT = stc_c.wxSTC_AVE_DEFAULT
wxSTC_AVE_COMMENT = stc_c.wxSTC_AVE_COMMENT
wxSTC_AVE_NUMBER = stc_c.wxSTC_AVE_NUMBER
wxSTC_AVE_WORD = stc_c.wxSTC_AVE_WORD
wxSTC_AVE_STRING = stc_c.wxSTC_AVE_STRING
wxSTC_AVE_ENUM = stc_c.wxSTC_AVE_ENUM
wxSTC_AVE_STRINGEOL = stc_c.wxSTC_AVE_STRINGEOL
wxSTC_AVE_IDENTIFIER = stc_c.wxSTC_AVE_IDENTIFIER
wxSTC_AVE_OPERATOR = stc_c.wxSTC_AVE_OPERATOR
wxSTC_AVE_WORD1 = stc_c.wxSTC_AVE_WORD1
wxSTC_AVE_WORD2 = stc_c.wxSTC_AVE_WORD2
wxSTC_AVE_WORD3 = stc_c.wxSTC_AVE_WORD3
wxSTC_AVE_WORD4 = stc_c.wxSTC_AVE_WORD4
wxSTC_AVE_WORD5 = stc_c.wxSTC_AVE_WORD5
wxSTC_AVE_WORD6 = stc_c.wxSTC_AVE_WORD6
wxSTC_ADA_DEFAULT = stc_c.wxSTC_ADA_DEFAULT
wxSTC_ADA_WORD = stc_c.wxSTC_ADA_WORD
wxSTC_ADA_IDENTIFIER = stc_c.wxSTC_ADA_IDENTIFIER
wxSTC_ADA_NUMBER = stc_c.wxSTC_ADA_NUMBER
wxSTC_ADA_DELIMITER = stc_c.wxSTC_ADA_DELIMITER
wxSTC_ADA_CHARACTER = stc_c.wxSTC_ADA_CHARACTER
wxSTC_ADA_CHARACTEREOL = stc_c.wxSTC_ADA_CHARACTEREOL
wxSTC_ADA_STRING = stc_c.wxSTC_ADA_STRING
wxSTC_ADA_STRINGEOL = stc_c.wxSTC_ADA_STRINGEOL
wxSTC_ADA_LABEL = stc_c.wxSTC_ADA_LABEL
wxSTC_ADA_COMMENTLINE = stc_c.wxSTC_ADA_COMMENTLINE
wxSTC_ADA_ILLEGAL = stc_c.wxSTC_ADA_ILLEGAL
wxSTC_BAAN_DEFAULT = stc_c.wxSTC_BAAN_DEFAULT
wxSTC_BAAN_COMMENT = stc_c.wxSTC_BAAN_COMMENT
wxSTC_BAAN_COMMENTDOC = stc_c.wxSTC_BAAN_COMMENTDOC
wxSTC_BAAN_NUMBER = stc_c.wxSTC_BAAN_NUMBER
wxSTC_BAAN_WORD = stc_c.wxSTC_BAAN_WORD
wxSTC_BAAN_STRING = stc_c.wxSTC_BAAN_STRING
wxSTC_BAAN_PREPROCESSOR = stc_c.wxSTC_BAAN_PREPROCESSOR
wxSTC_BAAN_OPERATOR = stc_c.wxSTC_BAAN_OPERATOR
wxSTC_BAAN_IDENTIFIER = stc_c.wxSTC_BAAN_IDENTIFIER
wxSTC_BAAN_STRINGEOL = stc_c.wxSTC_BAAN_STRINGEOL
wxSTC_BAAN_WORD2 = stc_c.wxSTC_BAAN_WORD2
wxSTC_LISP_DEFAULT = stc_c.wxSTC_LISP_DEFAULT
wxSTC_LISP_COMMENT = stc_c.wxSTC_LISP_COMMENT
wxSTC_LISP_NUMBER = stc_c.wxSTC_LISP_NUMBER
wxSTC_LISP_KEYWORD = stc_c.wxSTC_LISP_KEYWORD
wxSTC_LISP_STRING = stc_c.wxSTC_LISP_STRING
wxSTC_LISP_STRINGEOL = stc_c.wxSTC_LISP_STRINGEOL
wxSTC_LISP_IDENTIFIER = stc_c.wxSTC_LISP_IDENTIFIER
wxSTC_LISP_OPERATOR = stc_c.wxSTC_LISP_OPERATOR
wxSTC_EIFFEL_DEFAULT = stc_c.wxSTC_EIFFEL_DEFAULT
wxSTC_EIFFEL_COMMENTLINE = stc_c.wxSTC_EIFFEL_COMMENTLINE
wxSTC_EIFFEL_NUMBER = stc_c.wxSTC_EIFFEL_NUMBER
wxSTC_EIFFEL_WORD = stc_c.wxSTC_EIFFEL_WORD
wxSTC_EIFFEL_STRING = stc_c.wxSTC_EIFFEL_STRING
wxSTC_EIFFEL_CHARACTER = stc_c.wxSTC_EIFFEL_CHARACTER
wxSTC_EIFFEL_OPERATOR = stc_c.wxSTC_EIFFEL_OPERATOR
wxSTC_EIFFEL_IDENTIFIER = stc_c.wxSTC_EIFFEL_IDENTIFIER
wxSTC_EIFFEL_STRINGEOL = stc_c.wxSTC_EIFFEL_STRINGEOL
wxSTC_NNCRONTAB_DEFAULT = stc_c.wxSTC_NNCRONTAB_DEFAULT
wxSTC_NNCRONTAB_COMMENT = stc_c.wxSTC_NNCRONTAB_COMMENT
wxSTC_NNCRONTAB_TASK = stc_c.wxSTC_NNCRONTAB_TASK
wxSTC_NNCRONTAB_SECTION = stc_c.wxSTC_NNCRONTAB_SECTION
wxSTC_NNCRONTAB_KEYWORD = stc_c.wxSTC_NNCRONTAB_KEYWORD
wxSTC_NNCRONTAB_MODIFIER = stc_c.wxSTC_NNCRONTAB_MODIFIER
wxSTC_NNCRONTAB_ASTERISK = stc_c.wxSTC_NNCRONTAB_ASTERISK
wxSTC_NNCRONTAB_NUMBER = stc_c.wxSTC_NNCRONTAB_NUMBER
wxSTC_NNCRONTAB_STRING = stc_c.wxSTC_NNCRONTAB_STRING
wxSTC_NNCRONTAB_ENVIRONMENT = stc_c.wxSTC_NNCRONTAB_ENVIRONMENT
wxSTC_NNCRONTAB_IDENTIFIER = stc_c.wxSTC_NNCRONTAB_IDENTIFIER
wxSTC_MATLAB_DEFAULT = stc_c.wxSTC_MATLAB_DEFAULT
wxSTC_MATLAB_COMMENT = stc_c.wxSTC_MATLAB_COMMENT
wxSTC_MATLAB_COMMAND = stc_c.wxSTC_MATLAB_COMMAND
wxSTC_MATLAB_NUMBER = stc_c.wxSTC_MATLAB_NUMBER
wxSTC_MATLAB_KEYWORD = stc_c.wxSTC_MATLAB_KEYWORD
wxSTC_MATLAB_STRING = stc_c.wxSTC_MATLAB_STRING
wxSTC_MATLAB_OPERATOR = stc_c.wxSTC_MATLAB_OPERATOR
wxSTC_MATLAB_IDENTIFIER = stc_c.wxSTC_MATLAB_IDENTIFIER
wxSTC_SCRIPTOL_DEFAULT = stc_c.wxSTC_SCRIPTOL_DEFAULT
wxSTC_SCRIPTOL_COMMENT = stc_c.wxSTC_SCRIPTOL_COMMENT
wxSTC_SCRIPTOL_COMMENTLINE = stc_c.wxSTC_SCRIPTOL_COMMENTLINE
wxSTC_SCRIPTOL_COMMENTDOC = stc_c.wxSTC_SCRIPTOL_COMMENTDOC
wxSTC_SCRIPTOL_NUMBER = stc_c.wxSTC_SCRIPTOL_NUMBER
wxSTC_SCRIPTOL_WORD = stc_c.wxSTC_SCRIPTOL_WORD
wxSTC_SCRIPTOL_STRING = stc_c.wxSTC_SCRIPTOL_STRING
wxSTC_SCRIPTOL_CHARACTER = stc_c.wxSTC_SCRIPTOL_CHARACTER
wxSTC_SCRIPTOL_UUID = stc_c.wxSTC_SCRIPTOL_UUID
wxSTC_SCRIPTOL_PREPROCESSOR = stc_c.wxSTC_SCRIPTOL_PREPROCESSOR
wxSTC_SCRIPTOL_OPERATOR = stc_c.wxSTC_SCRIPTOL_OPERATOR
wxSTC_SCRIPTOL_IDENTIFIER = stc_c.wxSTC_SCRIPTOL_IDENTIFIER
wxSTC_SCRIPTOL_STRINGEOL = stc_c.wxSTC_SCRIPTOL_STRINGEOL
wxSTC_SCRIPTOL_VERBATIM = stc_c.wxSTC_SCRIPTOL_VERBATIM
wxSTC_SCRIPTOL_REGEX = stc_c.wxSTC_SCRIPTOL_REGEX
wxSTC_SCRIPTOL_COMMENTLINEDOC = stc_c.wxSTC_SCRIPTOL_COMMENTLINEDOC
wxSTC_SCRIPTOL_WORD2 = stc_c.wxSTC_SCRIPTOL_WORD2
wxSTC_SCRIPTOL_COMMENTDOCKEYWORD = stc_c.wxSTC_SCRIPTOL_COMMENTDOCKEYWORD
wxSTC_SCRIPTOL_COMMENTDOCKEYWORDERROR = stc_c.wxSTC_SCRIPTOL_COMMENTDOCKEYWORDERROR
wxSTC_SCRIPTOL_COMMENTBASIC = stc_c.wxSTC_SCRIPTOL_COMMENTBASIC
wxSTC_ASM_DEFAULT = stc_c.wxSTC_ASM_DEFAULT
wxSTC_ASM_COMMENT = stc_c.wxSTC_ASM_COMMENT
wxSTC_ASM_NUMBER = stc_c.wxSTC_ASM_NUMBER
wxSTC_ASM_STRING = stc_c.wxSTC_ASM_STRING
wxSTC_ASM_OPERATOR = stc_c.wxSTC_ASM_OPERATOR
wxSTC_ASM_IDENTIFIER = stc_c.wxSTC_ASM_IDENTIFIER
wxSTC_ASM_CPUINSTRUCTION = stc_c.wxSTC_ASM_CPUINSTRUCTION
wxSTC_ASM_MATHINSTRUCTION = stc_c.wxSTC_ASM_MATHINSTRUCTION
wxSTC_ASM_REGISTER = stc_c.wxSTC_ASM_REGISTER
wxSTC_ASM_DIRECTIVE = stc_c.wxSTC_ASM_DIRECTIVE
wxSTC_ASM_DIRECTIVEOPERAND = stc_c.wxSTC_ASM_DIRECTIVEOPERAND
wxSTC_F_DEFAULT = stc_c.wxSTC_F_DEFAULT
wxSTC_F_COMMENT = stc_c.wxSTC_F_COMMENT
wxSTC_F_NUMBER = stc_c.wxSTC_F_NUMBER
wxSTC_F_STRING1 = stc_c.wxSTC_F_STRING1
wxSTC_F_STRING2 = stc_c.wxSTC_F_STRING2
wxSTC_F_STRINGEOL = stc_c.wxSTC_F_STRINGEOL
wxSTC_F_OPERATOR = stc_c.wxSTC_F_OPERATOR
wxSTC_F_IDENTIFIER = stc_c.wxSTC_F_IDENTIFIER
wxSTC_F_WORD = stc_c.wxSTC_F_WORD
wxSTC_F_WORD2 = stc_c.wxSTC_F_WORD2
wxSTC_F_WORD3 = stc_c.wxSTC_F_WORD3
wxSTC_F_PREPROCESSOR = stc_c.wxSTC_F_PREPROCESSOR
wxSTC_F_OPERATOR2 = stc_c.wxSTC_F_OPERATOR2
wxSTC_F_LABEL = stc_c.wxSTC_F_LABEL
wxSTC_F_CONTINUATION = stc_c.wxSTC_F_CONTINUATION
wxSTC_CSS_DEFAULT = stc_c.wxSTC_CSS_DEFAULT
wxSTC_CSS_TAG = stc_c.wxSTC_CSS_TAG
wxSTC_CSS_CLASS = stc_c.wxSTC_CSS_CLASS
wxSTC_CSS_PSEUDOCLASS = stc_c.wxSTC_CSS_PSEUDOCLASS
wxSTC_CSS_UNKNOWN_PSEUDOCLASS = stc_c.wxSTC_CSS_UNKNOWN_PSEUDOCLASS
wxSTC_CSS_OPERATOR = stc_c.wxSTC_CSS_OPERATOR
wxSTC_CSS_IDENTIFIER = stc_c.wxSTC_CSS_IDENTIFIER
wxSTC_CSS_UNKNOWN_IDENTIFIER = stc_c.wxSTC_CSS_UNKNOWN_IDENTIFIER
wxSTC_CSS_VALUE = stc_c.wxSTC_CSS_VALUE
wxSTC_CSS_COMMENT = stc_c.wxSTC_CSS_COMMENT
wxSTC_CSS_ID = stc_c.wxSTC_CSS_ID
wxSTC_CSS_IMPORTANT = stc_c.wxSTC_CSS_IMPORTANT
wxSTC_CSS_DIRECTIVE = stc_c.wxSTC_CSS_DIRECTIVE
wxSTC_CSS_DOUBLESTRING = stc_c.wxSTC_CSS_DOUBLESTRING
wxSTC_CSS_SINGLESTRING = stc_c.wxSTC_CSS_SINGLESTRING
wxSTC_POV_DEFAULT = stc_c.wxSTC_POV_DEFAULT
wxSTC_POV_COMMENT = stc_c.wxSTC_POV_COMMENT
wxSTC_POV_COMMENTLINE = stc_c.wxSTC_POV_COMMENTLINE
wxSTC_POV_NUMBER = stc_c.wxSTC_POV_NUMBER
wxSTC_POV_OPERATOR = stc_c.wxSTC_POV_OPERATOR
wxSTC_POV_IDENTIFIER = stc_c.wxSTC_POV_IDENTIFIER
wxSTC_POV_STRING = stc_c.wxSTC_POV_STRING
wxSTC_POV_STRINGEOL = stc_c.wxSTC_POV_STRINGEOL
wxSTC_POV_DIRECTIVE = stc_c.wxSTC_POV_DIRECTIVE
wxSTC_POV_BADDIRECTIVE = stc_c.wxSTC_POV_BADDIRECTIVE
wxSTC_POV_WORD2 = stc_c.wxSTC_POV_WORD2
wxSTC_POV_WORD3 = stc_c.wxSTC_POV_WORD3
wxSTC_POV_WORD4 = stc_c.wxSTC_POV_WORD4
wxSTC_POV_WORD5 = stc_c.wxSTC_POV_WORD5
wxSTC_POV_WORD6 = stc_c.wxSTC_POV_WORD6
wxSTC_POV_WORD7 = stc_c.wxSTC_POV_WORD7
wxSTC_POV_WORD8 = stc_c.wxSTC_POV_WORD8
wxSTC_LOUT_DEFAULT = stc_c.wxSTC_LOUT_DEFAULT
wxSTC_LOUT_COMMENT = stc_c.wxSTC_LOUT_COMMENT
wxSTC_LOUT_NUMBER = stc_c.wxSTC_LOUT_NUMBER
wxSTC_LOUT_WORD = stc_c.wxSTC_LOUT_WORD
wxSTC_LOUT_WORD2 = stc_c.wxSTC_LOUT_WORD2
wxSTC_LOUT_WORD3 = stc_c.wxSTC_LOUT_WORD3
wxSTC_LOUT_WORD4 = stc_c.wxSTC_LOUT_WORD4
wxSTC_LOUT_STRING = stc_c.wxSTC_LOUT_STRING
wxSTC_LOUT_OPERATOR = stc_c.wxSTC_LOUT_OPERATOR
wxSTC_LOUT_IDENTIFIER = stc_c.wxSTC_LOUT_IDENTIFIER
wxSTC_LOUT_STRINGEOL = stc_c.wxSTC_LOUT_STRINGEOL
wxSTC_ESCRIPT_DEFAULT = stc_c.wxSTC_ESCRIPT_DEFAULT
wxSTC_ESCRIPT_COMMENT = stc_c.wxSTC_ESCRIPT_COMMENT
wxSTC_ESCRIPT_COMMENTLINE = stc_c.wxSTC_ESCRIPT_COMMENTLINE
wxSTC_ESCRIPT_COMMENTDOC = stc_c.wxSTC_ESCRIPT_COMMENTDOC
wxSTC_ESCRIPT_NUMBER = stc_c.wxSTC_ESCRIPT_NUMBER
wxSTC_ESCRIPT_WORD = stc_c.wxSTC_ESCRIPT_WORD
wxSTC_ESCRIPT_STRING = stc_c.wxSTC_ESCRIPT_STRING
wxSTC_ESCRIPT_OPERATOR = stc_c.wxSTC_ESCRIPT_OPERATOR
wxSTC_ESCRIPT_IDENTIFIER = stc_c.wxSTC_ESCRIPT_IDENTIFIER
wxSTC_ESCRIPT_BRACE = stc_c.wxSTC_ESCRIPT_BRACE
wxSTC_ESCRIPT_WORD2 = stc_c.wxSTC_ESCRIPT_WORD2
wxSTC_ESCRIPT_WORD3 = stc_c.wxSTC_ESCRIPT_WORD3
wxSTC_PS_DEFAULT = stc_c.wxSTC_PS_DEFAULT
wxSTC_PS_COMMENT = stc_c.wxSTC_PS_COMMENT
wxSTC_PS_DSC_COMMENT = stc_c.wxSTC_PS_DSC_COMMENT
wxSTC_PS_DSC_VALUE = stc_c.wxSTC_PS_DSC_VALUE
wxSTC_PS_NUMBER = stc_c.wxSTC_PS_NUMBER
wxSTC_PS_NAME = stc_c.wxSTC_PS_NAME
wxSTC_PS_KEYWORD = stc_c.wxSTC_PS_KEYWORD
wxSTC_PS_LITERAL = stc_c.wxSTC_PS_LITERAL
wxSTC_PS_IMMEVAL = stc_c.wxSTC_PS_IMMEVAL
wxSTC_PS_PAREN_ARRAY = stc_c.wxSTC_PS_PAREN_ARRAY
wxSTC_PS_PAREN_DICT = stc_c.wxSTC_PS_PAREN_DICT
wxSTC_PS_PAREN_PROC = stc_c.wxSTC_PS_PAREN_PROC
wxSTC_PS_TEXT = stc_c.wxSTC_PS_TEXT
wxSTC_PS_HEXSTRING = stc_c.wxSTC_PS_HEXSTRING
wxSTC_PS_BASE85STRING = stc_c.wxSTC_PS_BASE85STRING
wxSTC_PS_BADSTRINGCHAR = stc_c.wxSTC_PS_BADSTRINGCHAR
wxSTC_NSIS_DEFAULT = stc_c.wxSTC_NSIS_DEFAULT
wxSTC_NSIS_COMMENT = stc_c.wxSTC_NSIS_COMMENT
wxSTC_NSIS_STRINGDQ = stc_c.wxSTC_NSIS_STRINGDQ
wxSTC_NSIS_STRINGLQ = stc_c.wxSTC_NSIS_STRINGLQ
wxSTC_NSIS_STRINGRQ = stc_c.wxSTC_NSIS_STRINGRQ
wxSTC_NSIS_FUNCTION = stc_c.wxSTC_NSIS_FUNCTION
wxSTC_NSIS_VARIABLE = stc_c.wxSTC_NSIS_VARIABLE
wxSTC_NSIS_LABEL = stc_c.wxSTC_NSIS_LABEL
wxSTC_NSIS_USERDEFINED = stc_c.wxSTC_NSIS_USERDEFINED
wxSTC_NSIS_SECTIONDEF = stc_c.wxSTC_NSIS_SECTIONDEF
wxSTC_NSIS_SUBSECTIONDEF = stc_c.wxSTC_NSIS_SUBSECTIONDEF
wxSTC_NSIS_IFDEFINEDEF = stc_c.wxSTC_NSIS_IFDEFINEDEF
wxSTC_NSIS_MACRODEF = stc_c.wxSTC_NSIS_MACRODEF
wxSTC_NSIS_STRINGVAR = stc_c.wxSTC_NSIS_STRINGVAR
wxSTC_MMIXAL_LEADWS = stc_c.wxSTC_MMIXAL_LEADWS
wxSTC_MMIXAL_COMMENT = stc_c.wxSTC_MMIXAL_COMMENT
wxSTC_MMIXAL_LABEL = stc_c.wxSTC_MMIXAL_LABEL
wxSTC_MMIXAL_OPCODE = stc_c.wxSTC_MMIXAL_OPCODE
wxSTC_MMIXAL_OPCODE_PRE = stc_c.wxSTC_MMIXAL_OPCODE_PRE
wxSTC_MMIXAL_OPCODE_VALID = stc_c.wxSTC_MMIXAL_OPCODE_VALID
wxSTC_MMIXAL_OPCODE_UNKNOWN = stc_c.wxSTC_MMIXAL_OPCODE_UNKNOWN
wxSTC_MMIXAL_OPCODE_POST = stc_c.wxSTC_MMIXAL_OPCODE_POST
wxSTC_MMIXAL_OPERANDS = stc_c.wxSTC_MMIXAL_OPERANDS
wxSTC_MMIXAL_NUMBER = stc_c.wxSTC_MMIXAL_NUMBER
wxSTC_MMIXAL_REF = stc_c.wxSTC_MMIXAL_REF
wxSTC_MMIXAL_CHAR = stc_c.wxSTC_MMIXAL_CHAR
wxSTC_MMIXAL_STRING = stc_c.wxSTC_MMIXAL_STRING
wxSTC_MMIXAL_REGISTER = stc_c.wxSTC_MMIXAL_REGISTER
wxSTC_MMIXAL_HEX = stc_c.wxSTC_MMIXAL_HEX
wxSTC_MMIXAL_OPERATOR = stc_c.wxSTC_MMIXAL_OPERATOR
wxSTC_MMIXAL_SYMBOL = stc_c.wxSTC_MMIXAL_SYMBOL
wxSTC_MMIXAL_INCLUDE = stc_c.wxSTC_MMIXAL_INCLUDE
wxSTC_CMD_REDO = stc_c.wxSTC_CMD_REDO
wxSTC_CMD_SELECTALL = stc_c.wxSTC_CMD_SELECTALL
wxSTC_CMD_UNDO = stc_c.wxSTC_CMD_UNDO
wxSTC_CMD_CUT = stc_c.wxSTC_CMD_CUT
wxSTC_CMD_COPY = stc_c.wxSTC_CMD_COPY
wxSTC_CMD_PASTE = stc_c.wxSTC_CMD_PASTE
wxSTC_CMD_CLEAR = stc_c.wxSTC_CMD_CLEAR
wxSTC_CMD_LINEDOWN = stc_c.wxSTC_CMD_LINEDOWN
wxSTC_CMD_LINEDOWNEXTEND = stc_c.wxSTC_CMD_LINEDOWNEXTEND
wxSTC_CMD_LINEUP = stc_c.wxSTC_CMD_LINEUP
wxSTC_CMD_LINEUPEXTEND = stc_c.wxSTC_CMD_LINEUPEXTEND
wxSTC_CMD_CHARLEFT = stc_c.wxSTC_CMD_CHARLEFT
wxSTC_CMD_CHARLEFTEXTEND = stc_c.wxSTC_CMD_CHARLEFTEXTEND
wxSTC_CMD_CHARRIGHT = stc_c.wxSTC_CMD_CHARRIGHT
wxSTC_CMD_CHARRIGHTEXTEND = stc_c.wxSTC_CMD_CHARRIGHTEXTEND
wxSTC_CMD_WORDLEFT = stc_c.wxSTC_CMD_WORDLEFT
wxSTC_CMD_WORDLEFTEXTEND = stc_c.wxSTC_CMD_WORDLEFTEXTEND
wxSTC_CMD_WORDRIGHT = stc_c.wxSTC_CMD_WORDRIGHT
wxSTC_CMD_WORDRIGHTEXTEND = stc_c.wxSTC_CMD_WORDRIGHTEXTEND
wxSTC_CMD_HOME = stc_c.wxSTC_CMD_HOME
wxSTC_CMD_HOMEEXTEND = stc_c.wxSTC_CMD_HOMEEXTEND
wxSTC_CMD_LINEEND = stc_c.wxSTC_CMD_LINEEND
wxSTC_CMD_LINEENDEXTEND = stc_c.wxSTC_CMD_LINEENDEXTEND
wxSTC_CMD_DOCUMENTSTART = stc_c.wxSTC_CMD_DOCUMENTSTART
wxSTC_CMD_DOCUMENTSTARTEXTEND = stc_c.wxSTC_CMD_DOCUMENTSTARTEXTEND
wxSTC_CMD_DOCUMENTEND = stc_c.wxSTC_CMD_DOCUMENTEND
wxSTC_CMD_DOCUMENTENDEXTEND = stc_c.wxSTC_CMD_DOCUMENTENDEXTEND
wxSTC_CMD_PAGEUP = stc_c.wxSTC_CMD_PAGEUP
wxSTC_CMD_PAGEUPEXTEND = stc_c.wxSTC_CMD_PAGEUPEXTEND
wxSTC_CMD_PAGEDOWN = stc_c.wxSTC_CMD_PAGEDOWN
wxSTC_CMD_PAGEDOWNEXTEND = stc_c.wxSTC_CMD_PAGEDOWNEXTEND
wxSTC_CMD_EDITTOGGLEOVERTYPE = stc_c.wxSTC_CMD_EDITTOGGLEOVERTYPE
wxSTC_CMD_CANCEL = stc_c.wxSTC_CMD_CANCEL
wxSTC_CMD_DELETEBACK = stc_c.wxSTC_CMD_DELETEBACK
wxSTC_CMD_TAB = stc_c.wxSTC_CMD_TAB
wxSTC_CMD_BACKTAB = stc_c.wxSTC_CMD_BACKTAB
wxSTC_CMD_NEWLINE = stc_c.wxSTC_CMD_NEWLINE
wxSTC_CMD_FORMFEED = stc_c.wxSTC_CMD_FORMFEED
wxSTC_CMD_VCHOME = stc_c.wxSTC_CMD_VCHOME
wxSTC_CMD_VCHOMEEXTEND = stc_c.wxSTC_CMD_VCHOMEEXTEND
wxSTC_CMD_ZOOMIN = stc_c.wxSTC_CMD_ZOOMIN
wxSTC_CMD_ZOOMOUT = stc_c.wxSTC_CMD_ZOOMOUT
wxSTC_CMD_DELWORDLEFT = stc_c.wxSTC_CMD_DELWORDLEFT
wxSTC_CMD_DELWORDRIGHT = stc_c.wxSTC_CMD_DELWORDRIGHT
wxSTC_CMD_LINECUT = stc_c.wxSTC_CMD_LINECUT
wxSTC_CMD_LINEDELETE = stc_c.wxSTC_CMD_LINEDELETE
wxSTC_CMD_LINETRANSPOSE = stc_c.wxSTC_CMD_LINETRANSPOSE
wxSTC_CMD_LINEDUPLICATE = stc_c.wxSTC_CMD_LINEDUPLICATE
wxSTC_CMD_LOWERCASE = stc_c.wxSTC_CMD_LOWERCASE
wxSTC_CMD_UPPERCASE = stc_c.wxSTC_CMD_UPPERCASE
wxSTC_CMD_LINESCROLLDOWN = stc_c.wxSTC_CMD_LINESCROLLDOWN
wxSTC_CMD_LINESCROLLUP = stc_c.wxSTC_CMD_LINESCROLLUP
wxSTC_CMD_DELETEBACKNOTLINE = stc_c.wxSTC_CMD_DELETEBACKNOTLINE
wxSTC_CMD_HOMEDISPLAY = stc_c.wxSTC_CMD_HOMEDISPLAY
wxSTC_CMD_HOMEDISPLAYEXTEND = stc_c.wxSTC_CMD_HOMEDISPLAYEXTEND
wxSTC_CMD_LINEENDDISPLAY = stc_c.wxSTC_CMD_LINEENDDISPLAY
wxSTC_CMD_LINEENDDISPLAYEXTEND = stc_c.wxSTC_CMD_LINEENDDISPLAYEXTEND
wxSTC_CMD_HOMEWRAP = stc_c.wxSTC_CMD_HOMEWRAP
wxSTC_CMD_HOMEWRAPEXTEND = stc_c.wxSTC_CMD_HOMEWRAPEXTEND
wxSTC_CMD_LINEENDWRAP = stc_c.wxSTC_CMD_LINEENDWRAP
wxSTC_CMD_LINEENDWRAPEXTEND = stc_c.wxSTC_CMD_LINEENDWRAPEXTEND
wxSTC_CMD_VCHOMEWRAP = stc_c.wxSTC_CMD_VCHOMEWRAP
wxSTC_CMD_VCHOMEWRAPEXTEND = stc_c.wxSTC_CMD_VCHOMEWRAPEXTEND
wxSTC_CMD_WORDPARTLEFT = stc_c.wxSTC_CMD_WORDPARTLEFT
wxSTC_CMD_WORDPARTLEFTEXTEND = stc_c.wxSTC_CMD_WORDPARTLEFTEXTEND
wxSTC_CMD_WORDPARTRIGHT = stc_c.wxSTC_CMD_WORDPARTRIGHT
wxSTC_CMD_WORDPARTRIGHTEXTEND = stc_c.wxSTC_CMD_WORDPARTRIGHTEXTEND
wxSTC_CMD_DELLINELEFT = stc_c.wxSTC_CMD_DELLINELEFT
wxSTC_CMD_DELLINERIGHT = stc_c.wxSTC_CMD_DELLINERIGHT
wxSTC_CMD_PARADOWN = stc_c.wxSTC_CMD_PARADOWN
wxSTC_CMD_PARADOWNEXTEND = stc_c.wxSTC_CMD_PARADOWNEXTEND
wxSTC_CMD_PARAUP = stc_c.wxSTC_CMD_PARAUP
wxSTC_CMD_PARAUPEXTEND = stc_c.wxSTC_CMD_PARAUPEXTEND
wxEVT_STC_CHANGE = stc_c.wxEVT_STC_CHANGE
wxEVT_STC_STYLENEEDED = stc_c.wxEVT_STC_STYLENEEDED
wxEVT_STC_CHARADDED = stc_c.wxEVT_STC_CHARADDED
wxEVT_STC_SAVEPOINTREACHED = stc_c.wxEVT_STC_SAVEPOINTREACHED
wxEVT_STC_SAVEPOINTLEFT = stc_c.wxEVT_STC_SAVEPOINTLEFT
wxEVT_STC_ROMODIFYATTEMPT = stc_c.wxEVT_STC_ROMODIFYATTEMPT
wxEVT_STC_KEY = stc_c.wxEVT_STC_KEY
wxEVT_STC_DOUBLECLICK = stc_c.wxEVT_STC_DOUBLECLICK
wxEVT_STC_UPDATEUI = stc_c.wxEVT_STC_UPDATEUI
wxEVT_STC_MODIFIED = stc_c.wxEVT_STC_MODIFIED
wxEVT_STC_MACRORECORD = stc_c.wxEVT_STC_MACRORECORD
wxEVT_STC_MARGINCLICK = stc_c.wxEVT_STC_MARGINCLICK
wxEVT_STC_NEEDSHOWN = stc_c.wxEVT_STC_NEEDSHOWN
wxEVT_STC_POSCHANGED = stc_c.wxEVT_STC_POSCHANGED
wxEVT_STC_PAINTED = stc_c.wxEVT_STC_PAINTED
wxEVT_STC_USERLISTSELECTION = stc_c.wxEVT_STC_USERLISTSELECTION
wxEVT_STC_URIDROPPED = stc_c.wxEVT_STC_URIDROPPED
wxEVT_STC_DWELLSTART = stc_c.wxEVT_STC_DWELLSTART
wxEVT_STC_DWELLEND = stc_c.wxEVT_STC_DWELLEND
wxEVT_STC_START_DRAG = stc_c.wxEVT_STC_START_DRAG
wxEVT_STC_DRAG_OVER = stc_c.wxEVT_STC_DRAG_OVER
wxEVT_STC_DO_DROP = stc_c.wxEVT_STC_DO_DROP
wxEVT_STC_ZOOM = stc_c.wxEVT_STC_ZOOM
wxEVT_STC_HOTSPOT_CLICK = stc_c.wxEVT_STC_HOTSPOT_CLICK
wxEVT_STC_HOTSPOT_DCLICK = stc_c.wxEVT_STC_HOTSPOT_DCLICK
wxEVT_STC_CALLTIP_CLICK = stc_c.wxEVT_STC_CALLTIP_CLICK
#-------------- USER INCLUDE -----------------------
# Stuff these names into the wx namespace so wxPyConstructObject can find them
wx.wxStyledTextEventPtr = wxStyledTextEventPtr
wx.wxStyledTextCtrlPtr = wxStyledTextCtrlPtr
# This constant no longer exists in Scintilla, but I'll put it here for a while to avoid disrupting user code...
wxSTC_CARET_CENTER = 0
|