This file is indexed.

/usr/lib/python2.7/dist-packages/PyQt4/Qsci.pyi is in python-qscintilla2 2.9.3+dfsg-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
# The PEP 484 type hints stub file for the Qsci module.
#
# Generated by SIP 4.18.1
#
# Copyright (c) 2016 Riverbank Computing Limited <info@riverbankcomputing.com>
# 
# This file is part of QScintilla.
# 
# This file may be used under the terms of the GNU General Public License
# version 3.0 as published by the Free Software Foundation and appearing in
# the file LICENSE included in the packaging of this file.  Please review the
# following information to ensure the GNU General Public License version 3.0
# requirements will be met: http://www.gnu.org/copyleft/gpl.html.
# 
# If you do not wish to use this file under the terms of the GPL version 3.0
# then you may purchase a commercial license.  For more information contact
# info@riverbankcomputing.com.
# 
# This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.


import typing
import sip

from PyQt4 import QtGui


class QsciScintillaBase(QtGui.QAbstractScrollArea):

    SC_ORDER_PRESORTED = ... # type: int
    SC_ORDER_PERFORMSORT = ... # type: int
    SC_ORDER_CUSTOM = ... # type: int

    SC_AUTOMATICFOLD_SHOW = ... # type: int
    SC_AUTOMATICFOLD_CLICK = ... # type: int
    SC_AUTOMATICFOLD_CHANGE = ... # type: int

    SC_FOLDACTION_CONTRACT = ... # type: int
    SC_FOLDACTION_EXPAND = ... # type: int
    SC_FOLDACTION_TOGGLE = ... # type: int

    SC_FONT_SIZE_MULTIPLIER = ... # type: int

    SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE = ... # type: int
    SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE = ... # type: int

    SC_TECHNOLOGY_DEFAULT = ... # type: int
    SC_TECHNOLOGY_DIRECTWRITE = ... # type: int
    SC_TECHNOLOGY_DIRECTWRITERETAIN = ... # type: int
    SC_TECHNOLOGY_DIRECTWRITEDC = ... # type: int

    SC_WEIGHT_NORMAL = ... # type: int
    SC_WEIGHT_SEMIBOLD = ... # type: int
    SC_WEIGHT_BOLD = ... # type: int

    SCLEX_CONTAINER = ... # type: int
    SCLEX_NULL = ... # type: int
    SCLEX_PYTHON = ... # type: int
    SCLEX_CPP = ... # type: int
    SCLEX_HTML = ... # type: int
    SCLEX_XML = ... # type: int
    SCLEX_PERL = ... # type: int
    SCLEX_SQL = ... # type: int
    SCLEX_VB = ... # type: int
    SCLEX_PROPERTIES = ... # type: int
    SCLEX_ERRORLIST = ... # type: int
    SCLEX_MAKEFILE = ... # type: int
    SCLEX_BATCH = ... # type: int
    SCLEX_LATEX = ... # type: int
    SCLEX_LUA = ... # type: int
    SCLEX_DIFF = ... # type: int
    SCLEX_CONF = ... # type: int
    SCLEX_PASCAL = ... # type: int
    SCLEX_AVE = ... # type: int
    SCLEX_ADA = ... # type: int
    SCLEX_LISP = ... # type: int
    SCLEX_RUBY = ... # type: int
    SCLEX_EIFFEL = ... # type: int
    SCLEX_EIFFELKW = ... # type: int
    SCLEX_TCL = ... # type: int
    SCLEX_NNCRONTAB = ... # type: int
    SCLEX_BULLANT = ... # type: int
    SCLEX_VBSCRIPT = ... # type: int
    SCLEX_ASP = ... # type: int
    SCLEX_PHP = ... # type: int
    SCLEX_BAAN = ... # type: int
    SCLEX_MATLAB = ... # type: int
    SCLEX_SCRIPTOL = ... # type: int
    SCLEX_ASM = ... # type: int
    SCLEX_CPPNOCASE = ... # type: int
    SCLEX_FORTRAN = ... # type: int
    SCLEX_F77 = ... # type: int
    SCLEX_CSS = ... # type: int
    SCLEX_POV = ... # type: int
    SCLEX_LOUT = ... # type: int
    SCLEX_ESCRIPT = ... # type: int
    SCLEX_PS = ... # type: int
    SCLEX_NSIS = ... # type: int
    SCLEX_MMIXAL = ... # type: int
    SCLEX_CLW = ... # type: int
    SCLEX_CLWNOCASE = ... # type: int
    SCLEX_LOT = ... # type: int
    SCLEX_YAML = ... # type: int
    SCLEX_TEX = ... # type: int
    SCLEX_METAPOST = ... # type: int
    SCLEX_POWERBASIC = ... # type: int
    SCLEX_FORTH = ... # type: int
    SCLEX_ERLANG = ... # type: int
    SCLEX_OCTAVE = ... # type: int
    SCLEX_MSSQL = ... # type: int
    SCLEX_VERILOG = ... # type: int
    SCLEX_KIX = ... # type: int
    SCLEX_GUI4CLI = ... # type: int
    SCLEX_SPECMAN = ... # type: int
    SCLEX_AU3 = ... # type: int
    SCLEX_APDL = ... # type: int
    SCLEX_BASH = ... # type: int
    SCLEX_ASN1 = ... # type: int
    SCLEX_VHDL = ... # type: int
    SCLEX_CAML = ... # type: int
    SCLEX_BLITZBASIC = ... # type: int
    SCLEX_PUREBASIC = ... # type: int
    SCLEX_HASKELL = ... # type: int
    SCLEX_PHPSCRIPT = ... # type: int
    SCLEX_TADS3 = ... # type: int
    SCLEX_REBOL = ... # type: int
    SCLEX_SMALLTALK = ... # type: int
    SCLEX_FLAGSHIP = ... # type: int
    SCLEX_CSOUND = ... # type: int
    SCLEX_FREEBASIC = ... # type: int
    SCLEX_INNOSETUP = ... # type: int
    SCLEX_OPAL = ... # type: int
    SCLEX_SPICE = ... # type: int
    SCLEX_D = ... # type: int
    SCLEX_CMAKE = ... # type: int
    SCLEX_GAP = ... # type: int
    SCLEX_PLM = ... # type: int
    SCLEX_PROGRESS = ... # type: int
    SCLEX_ABAQUS = ... # type: int
    SCLEX_ASYMPTOTE = ... # type: int
    SCLEX_R = ... # type: int
    SCLEX_MAGIK = ... # type: int
    SCLEX_POWERSHELL = ... # type: int
    SCLEX_MYSQL = ... # type: int
    SCLEX_PO = ... # type: int
    SCLEX_TAL = ... # type: int
    SCLEX_COBOL = ... # type: int
    SCLEX_TACL = ... # type: int
    SCLEX_SORCUS = ... # type: int
    SCLEX_POWERPRO = ... # type: int
    SCLEX_NIMROD = ... # type: int
    SCLEX_SML = ... # type: int
    SCLEX_MARKDOWN = ... # type: int
    SCLEX_TXT2TAGS = ... # type: int
    SCLEX_A68K = ... # type: int
    SCLEX_MODULA = ... # type: int
    SCLEX_COFFEESCRIPT = ... # type: int
    SCLEX_TCMD = ... # type: int
    SCLEX_AVS = ... # type: int
    SCLEX_ECL = ... # type: int
    SCLEX_OSCRIPT = ... # type: int
    SCLEX_VISUALPROLOG = ... # type: int
    SCLEX_LITERATEHASKELL = ... # type: int
    SCLEX_STTXT = ... # type: int
    SCLEX_KVIRC = ... # type: int
    SCLEX_RUST = ... # type: int
    SCLEX_DMAP = ... # type: int
    SCLEX_AS = ... # type: int
    SCLEX_DMIS = ... # type: int
    SCLEX_REGISTRY = ... # type: int
    SCLEX_BIBTEX = ... # type: int
    SCLEX_SREC = ... # type: int
    SCLEX_IHEX = ... # type: int
    SCLEX_TEHEX = ... # type: int

    SCMOD_NORM = ... # type: int
    SCMOD_SHIFT = ... # type: int
    SCMOD_CTRL = ... # type: int
    SCMOD_ALT = ... # type: int
    SCMOD_SUPER = ... # type: int
    SCMOD_META = ... # type: int

    SCK_DOWN = ... # type: int
    SCK_UP = ... # type: int
    SCK_LEFT = ... # type: int
    SCK_RIGHT = ... # type: int
    SCK_HOME = ... # type: int
    SCK_END = ... # type: int
    SCK_PRIOR = ... # type: int
    SCK_NEXT = ... # type: int
    SCK_DELETE = ... # type: int
    SCK_INSERT = ... # type: int
    SCK_ESCAPE = ... # type: int
    SCK_BACK = ... # type: int
    SCK_TAB = ... # type: int
    SCK_RETURN = ... # type: int
    SCK_ADD = ... # type: int
    SCK_SUBTRACT = ... # type: int
    SCK_DIVIDE = ... # type: int
    SCK_WIN = ... # type: int
    SCK_RWIN = ... # type: int
    SCK_MENU = ... # type: int

    SC_MOD_INSERTTEXT = ... # type: int
    SC_MOD_DELETETEXT = ... # type: int
    SC_MOD_CHANGESTYLE = ... # type: int
    SC_MOD_CHANGEFOLD = ... # type: int
    SC_PERFORMED_USER = ... # type: int
    SC_PERFORMED_UNDO = ... # type: int
    SC_PERFORMED_REDO = ... # type: int
    SC_MULTISTEPUNDOREDO = ... # type: int
    SC_LASTSTEPINUNDOREDO = ... # type: int
    SC_MOD_CHANGEMARKER = ... # type: int
    SC_MOD_BEFOREINSERT = ... # type: int
    SC_MOD_BEFOREDELETE = ... # type: int
    SC_MULTILINEUNDOREDO = ... # type: int
    SC_STARTACTION = ... # type: int
    SC_MOD_CHANGEINDICATOR = ... # type: int
    SC_MOD_CHANGELINESTATE = ... # type: int
    SC_MOD_CHANGEMARGIN = ... # type: int
    SC_MOD_CHANGEANNOTATION = ... # type: int
    SC_MOD_CONTAINER = ... # type: int
    SC_MOD_LEXERSTATE = ... # type: int
    SC_MOD_INSERTCHECK = ... # type: int
    SC_MOD_CHANGETABSTOPS = ... # type: int
    SC_MODEVENTMASKALL = ... # type: int

    CARETSTYLE_INVISIBLE = ... # type: int
    CARETSTYLE_LINE = ... # type: int
    CARETSTYLE_BLOCK = ... # type: int

    CARET_SLOP = ... # type: int
    CARET_STRICT = ... # type: int
    CARET_JUMPS = ... # type: int
    CARET_EVEN = ... # type: int

    VISIBLE_SLOP = ... # type: int
    VISIBLE_STRICT = ... # type: int

    UNDO_MAY_COALESCE = ... # type: int

    SC_CURSORNORMAL = ... # type: int
    SC_CURSORARROW = ... # type: int
    SC_CURSORWAIT = ... # type: int
    SC_CURSORREVERSEARROW = ... # type: int

    EDGE_NONE = ... # type: int
    EDGE_LINE = ... # type: int
    EDGE_BACKGROUND = ... # type: int

    ANNOTATION_HIDDEN = ... # type: int
    ANNOTATION_STANDARD = ... # type: int
    ANNOTATION_BOXED = ... # type: int
    ANNOTATION_INDENTED = ... # type: int

    SC_PHASES_ONE = ... # type: int
    SC_PHASES_TWO = ... # type: int
    SC_PHASES_MULTIPLE = ... # type: int

    SC_CACHE_NONE = ... # type: int
    SC_CACHE_CARET = ... # type: int
    SC_CACHE_PAGE = ... # type: int
    SC_CACHE_DOCUMENT = ... # type: int

    SC_WRAPINDENT_FIXED = ... # type: int
    SC_WRAPINDENT_SAME = ... # type: int
    SC_WRAPINDENT_INDENT = ... # type: int

    SC_WRAP_NONE = ... # type: int
    SC_WRAP_WORD = ... # type: int
    SC_WRAP_CHAR = ... # type: int
    SC_WRAP_WHITESPACE = ... # type: int

    SC_TIME_FOREVER = ... # type: int

    SC_LINE_END_TYPE_DEFAULT = ... # type: int
    SC_LINE_END_TYPE_UNICODE = ... # type: int

    SC_FOLDFLAG_LINEBEFORE_EXPANDED = ... # type: int
    SC_FOLDFLAG_LINEBEFORE_CONTRACTED = ... # type: int
    SC_FOLDFLAG_LINEAFTER_EXPANDED = ... # type: int
    SC_FOLDFLAG_LINEAFTER_CONTRACTED = ... # type: int
    SC_FOLDFLAG_LEVELNUMBERS = ... # type: int
    SC_FOLDFLAG_LINESTATE = ... # type: int

    SC_FOLDLEVELBASE = ... # type: int
    SC_FOLDLEVELWHITEFLAG = ... # type: int
    SC_FOLDLEVELHEADERFLAG = ... # type: int
    SC_FOLDLEVELNUMBERMASK = ... # type: int

    SCFIND_WHOLEWORD = ... # type: int
    SCFIND_MATCHCASE = ... # type: int
    SCFIND_WORDSTART = ... # type: int
    SCFIND_REGEXP = ... # type: int
    SCFIND_POSIX = ... # type: int
    SCFIND_CXX11REGEX = ... # type: int

    SC_PRINT_NORMAL = ... # type: int
    SC_PRINT_INVERTLIGHT = ... # type: int
    SC_PRINT_BLACKONWHITE = ... # type: int
    SC_PRINT_COLOURONWHITE = ... # type: int
    SC_PRINT_COLOURONWHITEDEFAULTBG = ... # type: int

    INDIC_PLAIN = ... # type: int
    INDIC_SQUIGGLE = ... # type: int
    INDIC_TT = ... # type: int
    INDIC_DIAGONAL = ... # type: int
    INDIC_STRIKE = ... # type: int
    INDIC_HIDDEN = ... # type: int
    INDIC_BOX = ... # type: int
    INDIC_ROUNDBOX = ... # type: int
    INDIC_STRAIGHTBOX = ... # type: int
    INDIC_DASH = ... # type: int
    INDIC_DOTS = ... # type: int
    INDIC_SQUIGGLELOW = ... # type: int
    INDIC_DOTBOX = ... # type: int
    INDIC_SQUIGGLEPIXMAP = ... # type: int
    INDIC_COMPOSITIONTHICK = ... # type: int
    INDIC_COMPOSITIONTHIN = ... # type: int
    INDIC_FULLBOX = ... # type: int
    INDIC_TEXTFORE = ... # type: int
    INDIC_IME = ... # type: int
    INDIC_IME_MAX = ... # type: int
    INDIC_CONTAINER = ... # type: int
    INDIC_MAX = ... # type: int
    INDIC0_MASK = ... # type: int
    INDIC1_MASK = ... # type: int
    INDIC2_MASK = ... # type: int
    INDICS_MASK = ... # type: int
    SC_INDICVALUEBIT = ... # type: int
    SC_INDICVALUEMASK = ... # type: int
    SC_INDICFLAG_VALUEBEFORE = ... # type: int

    SC_IV_NONE = ... # type: int
    SC_IV_REAL = ... # type: int
    SC_IV_LOOKFORWARD = ... # type: int
    SC_IV_LOOKBOTH = ... # type: int

    SC_CASE_MIXED = ... # type: int
    SC_CASE_UPPER = ... # type: int
    SC_CASE_LOWER = ... # type: int

    SC_CHARSET_ANSI = ... # type: int
    SC_CHARSET_DEFAULT = ... # type: int
    SC_CHARSET_BALTIC = ... # type: int
    SC_CHARSET_CHINESEBIG5 = ... # type: int
    SC_CHARSET_EASTEUROPE = ... # type: int
    SC_CHARSET_GB2312 = ... # type: int
    SC_CHARSET_GREEK = ... # type: int
    SC_CHARSET_HANGUL = ... # type: int
    SC_CHARSET_MAC = ... # type: int
    SC_CHARSET_OEM = ... # type: int
    SC_CHARSET_RUSSIAN = ... # type: int
    SC_CHARSET_SHIFTJIS = ... # type: int
    SC_CHARSET_SYMBOL = ... # type: int
    SC_CHARSET_TURKISH = ... # type: int
    SC_CHARSET_JOHAB = ... # type: int
    SC_CHARSET_HEBREW = ... # type: int
    SC_CHARSET_ARABIC = ... # type: int
    SC_CHARSET_VIETNAMESE = ... # type: int
    SC_CHARSET_THAI = ... # type: int
    SC_CHARSET_8859_15 = ... # type: int

    STYLE_DEFAULT = ... # type: int
    STYLE_LINENUMBER = ... # type: int
    STYLE_BRACELIGHT = ... # type: int
    STYLE_BRACEBAD = ... # type: int
    STYLE_CONTROLCHAR = ... # type: int
    STYLE_INDENTGUIDE = ... # type: int
    STYLE_CALLTIP = ... # type: int
    STYLE_LASTPREDEFINED = ... # type: int
    STYLE_MAX = ... # type: int

    SC_MARGIN_SYMBOL = ... # type: int
    SC_MARGIN_NUMBER = ... # type: int
    SC_MARGIN_BACK = ... # type: int
    SC_MARGIN_FORE = ... # type: int
    SC_MARGIN_TEXT = ... # type: int
    SC_MARGIN_RTEXT = ... # type: int

    SC_MARKNUM_FOLDEREND = ... # type: int
    SC_MARKNUM_FOLDEROPENMID = ... # type: int
    SC_MARKNUM_FOLDERMIDTAIL = ... # type: int
    SC_MARKNUM_FOLDERTAIL = ... # type: int
    SC_MARKNUM_FOLDERSUB = ... # type: int
    SC_MARKNUM_FOLDER = ... # type: int
    SC_MARKNUM_FOLDEROPEN = ... # type: int
    SC_MASK_FOLDERS = ... # type: int

    SC_MARK_CIRCLE = ... # type: int
    SC_MARK_ROUNDRECT = ... # type: int
    SC_MARK_ARROW = ... # type: int
    SC_MARK_SMALLRECT = ... # type: int
    SC_MARK_SHORTARROW = ... # type: int
    SC_MARK_EMPTY = ... # type: int
    SC_MARK_ARROWDOWN = ... # type: int
    SC_MARK_MINUS = ... # type: int
    SC_MARK_PLUS = ... # type: int
    SC_MARK_VLINE = ... # type: int
    SC_MARK_LCORNER = ... # type: int
    SC_MARK_TCORNER = ... # type: int
    SC_MARK_BOXPLUS = ... # type: int
    SC_MARK_BOXPLUSCONNECTED = ... # type: int
    SC_MARK_BOXMINUS = ... # type: int
    SC_MARK_BOXMINUSCONNECTED = ... # type: int
    SC_MARK_LCORNERCURVE = ... # type: int
    SC_MARK_TCORNERCURVE = ... # type: int
    SC_MARK_CIRCLEPLUS = ... # type: int
    SC_MARK_CIRCLEPLUSCONNECTED = ... # type: int
    SC_MARK_CIRCLEMINUS = ... # type: int
    SC_MARK_CIRCLEMINUSCONNECTED = ... # type: int
    SC_MARK_BACKGROUND = ... # type: int
    SC_MARK_DOTDOTDOT = ... # type: int
    SC_MARK_ARROWS = ... # type: int
    SC_MARK_PIXMAP = ... # type: int
    SC_MARK_FULLRECT = ... # type: int
    SC_MARK_LEFTRECT = ... # type: int
    SC_MARK_AVAILABLE = ... # type: int
    SC_MARK_UNDERLINE = ... # type: int
    SC_MARK_RGBAIMAGE = ... # type: int
    SC_MARK_BOOKMARK = ... # type: int
    SC_MARK_CHARACTER = ... # type: int

    SC_CP_DBCS = ... # type: int
    SC_CP_UTF8 = ... # type: int

    SC_EOL_CRLF = ... # type: int
    SC_EOL_CR = ... # type: int
    SC_EOL_LF = ... # type: int

    SCWS_INVISIBLE = ... # type: int
    SCWS_VISIBLEALWAYS = ... # type: int
    SCWS_VISIBLEAFTERINDENT = ... # type: int

    SCVS_NONE = ... # type: int
    SCVS_RECTANGULARSELECTION = ... # type: int
    SCVS_USERACCESSIBLE = ... # type: int

    SC_WRAPVISUALFLAGLOC_DEFAULT = ... # type: int
    SC_WRAPVISUALFLAGLOC_END_BY_TEXT = ... # type: int
    SC_WRAPVISUALFLAGLOC_START_BY_TEXT = ... # type: int

    SC_WRAPVISUALFLAG_NONE = ... # type: int
    SC_WRAPVISUALFLAG_END = ... # type: int
    SC_WRAPVISUALFLAG_START = ... # type: int
    SC_WRAPVISUALFLAG_MARGIN = ... # type: int

    SC_UPDATE_CONTENT = ... # type: int
    SC_UPDATE_SELECTION = ... # type: int
    SC_UPDATE_V_SCROLL = ... # type: int
    SC_UPDATE_H_SCROLL = ... # type: int

    SC_TYPE_BOOLEAN = ... # type: int
    SC_TYPE_INTEGER = ... # type: int
    SC_TYPE_STRING = ... # type: int

    SC_STATUS_OK = ... # type: int
    SC_STATUS_FAILURE = ... # type: int
    SC_STATUS_BADALLOC = ... # type: int
    SC_STATUS_WARN_START = ... # type: int
    SC_STATUS_WARNREGEX = ... # type: int

    SC_SEL_STREAM = ... # type: int
    SC_SEL_RECTANGLE = ... # type: int
    SC_SEL_LINES = ... # type: int
    SC_SEL_THIN = ... # type: int

    SC_MULTIPASTE_ONCE = ... # type: int
    SC_MULTIPASTE_EACH = ... # type: int

    SC_MULTIAUTOC_ONCE = ... # type: int
    SC_MULTIAUTOC_EACH = ... # type: int

    SC_MARGINOPTION_NONE = ... # type: int
    SC_MARGINOPTION_SUBLINESELECT = ... # type: int

    SC_IME_WINDOWED = ... # type: int
    SC_IME_INLINE = ... # type: int

    SC_EFF_QUALITY_MASK = ... # type: int
    SC_EFF_QUALITY_DEFAULT = ... # type: int
    SC_EFF_QUALITY_NON_ANTIALIASED = ... # type: int
    SC_EFF_QUALITY_ANTIALIASED = ... # type: int
    SC_EFF_QUALITY_LCD_OPTIMIZED = ... # type: int

    SC_CARETSTICKY_OFF = ... # type: int
    SC_CARETSTICKY_ON = ... # type: int
    SC_CARETSTICKY_WHITESPACE = ... # type: int

    SC_ALPHA_TRANSPARENT = ... # type: int
    SC_ALPHA_OPAQUE = ... # type: int
    SC_ALPHA_NOALPHA = ... # type: int

    SCI_START = ... # type: int
    SCI_OPTIONAL_START = ... # type: int
    SCI_LEXER_START = ... # type: int
    SCI_ADDTEXT = ... # type: int
    SCI_ADDSTYLEDTEXT = ... # type: int
    SCI_INSERTTEXT = ... # type: int
    SCI_CLEARALL = ... # type: int
    SCI_CLEARDOCUMENTSTYLE = ... # type: int
    SCI_GETLENGTH = ... # type: int
    SCI_GETCHARAT = ... # type: int
    SCI_GETCURRENTPOS = ... # type: int
    SCI_GETANCHOR = ... # type: int
    SCI_GETSTYLEAT = ... # type: int
    SCI_REDO = ... # type: int
    SCI_SETUNDOCOLLECTION = ... # type: int
    SCI_SELECTALL = ... # type: int
    SCI_SETSAVEPOINT = ... # type: int
    SCI_GETSTYLEDTEXT = ... # type: int
    SCI_CANREDO = ... # type: int
    SCI_MARKERLINEFROMHANDLE = ... # type: int
    SCI_MARKERDELETEHANDLE = ... # type: int
    SCI_GETUNDOCOLLECTION = ... # type: int
    SCI_GETVIEWWS = ... # type: int
    SCI_SETVIEWWS = ... # type: int
    SCI_POSITIONFROMPOINT = ... # type: int
    SCI_POSITIONFROMPOINTCLOSE = ... # type: int
    SCI_GOTOLINE = ... # type: int
    SCI_GOTOPOS = ... # type: int
    SCI_SETANCHOR = ... # type: int
    SCI_GETCURLINE = ... # type: int
    SCI_GETENDSTYLED = ... # type: int
    SCI_CONVERTEOLS = ... # type: int
    SCI_GETEOLMODE = ... # type: int
    SCI_SETEOLMODE = ... # type: int
    SCI_STARTSTYLING = ... # type: int
    SCI_SETSTYLING = ... # type: int
    SCI_GETBUFFEREDDRAW = ... # type: int
    SCI_SETBUFFEREDDRAW = ... # type: int
    SCI_SETTABWIDTH = ... # type: int
    SCI_GETTABWIDTH = ... # type: int
    SCI_SETCODEPAGE = ... # type: int
    SCI_MARKERDEFINE = ... # type: int
    SCI_MARKERSETFORE = ... # type: int
    SCI_MARKERSETBACK = ... # type: int
    SCI_MARKERADD = ... # type: int
    SCI_MARKERDELETE = ... # type: int
    SCI_MARKERDELETEALL = ... # type: int
    SCI_MARKERGET = ... # type: int
    SCI_MARKERNEXT = ... # type: int
    SCI_MARKERPREVIOUS = ... # type: int
    SCI_MARKERDEFINEPIXMAP = ... # type: int
    SCI_SETMARGINTYPEN = ... # type: int
    SCI_GETMARGINTYPEN = ... # type: int
    SCI_SETMARGINWIDTHN = ... # type: int
    SCI_GETMARGINWIDTHN = ... # type: int
    SCI_SETMARGINMASKN = ... # type: int
    SCI_GETMARGINMASKN = ... # type: int
    SCI_SETMARGINSENSITIVEN = ... # type: int
    SCI_GETMARGINSENSITIVEN = ... # type: int
    SCI_SETMARGINCURSORN = ... # type: int
    SCI_GETMARGINCURSORN = ... # type: int
    SCI_STYLECLEARALL = ... # type: int
    SCI_STYLESETFORE = ... # type: int
    SCI_STYLESETBACK = ... # type: int
    SCI_STYLESETBOLD = ... # type: int
    SCI_STYLESETITALIC = ... # type: int
    SCI_STYLESETSIZE = ... # type: int
    SCI_STYLESETFONT = ... # type: int
    SCI_STYLESETEOLFILLED = ... # type: int
    SCI_STYLERESETDEFAULT = ... # type: int
    SCI_STYLESETUNDERLINE = ... # type: int
    SCI_STYLESETCASE = ... # type: int
    SCI_STYLESETCHARACTERSET = ... # type: int
    SCI_SETSELFORE = ... # type: int
    SCI_SETSELBACK = ... # type: int
    SCI_SETCARETFORE = ... # type: int
    SCI_ASSIGNCMDKEY = ... # type: int
    SCI_CLEARCMDKEY = ... # type: int
    SCI_CLEARALLCMDKEYS = ... # type: int
    SCI_SETSTYLINGEX = ... # type: int
    SCI_STYLESETVISIBLE = ... # type: int
    SCI_GETCARETPERIOD = ... # type: int
    SCI_SETCARETPERIOD = ... # type: int
    SCI_SETWORDCHARS = ... # type: int
    SCI_BEGINUNDOACTION = ... # type: int
    SCI_ENDUNDOACTION = ... # type: int
    SCI_INDICSETSTYLE = ... # type: int
    SCI_INDICGETSTYLE = ... # type: int
    SCI_INDICSETFORE = ... # type: int
    SCI_INDICGETFORE = ... # type: int
    SCI_SETWHITESPACEFORE = ... # type: int
    SCI_SETWHITESPACEBACK = ... # type: int
    SCI_SETWHITESPACESIZE = ... # type: int
    SCI_GETWHITESPACESIZE = ... # type: int
    SCI_SETSTYLEBITS = ... # type: int
    SCI_GETSTYLEBITS = ... # type: int
    SCI_SETLINESTATE = ... # type: int
    SCI_GETLINESTATE = ... # type: int
    SCI_GETMAXLINESTATE = ... # type: int
    SCI_GETCARETLINEVISIBLE = ... # type: int
    SCI_SETCARETLINEVISIBLE = ... # type: int
    SCI_GETCARETLINEBACK = ... # type: int
    SCI_SETCARETLINEBACK = ... # type: int
    SCI_STYLESETCHANGEABLE = ... # type: int
    SCI_AUTOCSHOW = ... # type: int
    SCI_AUTOCCANCEL = ... # type: int
    SCI_AUTOCACTIVE = ... # type: int
    SCI_AUTOCPOSSTART = ... # type: int
    SCI_AUTOCCOMPLETE = ... # type: int
    SCI_AUTOCSTOPS = ... # type: int
    SCI_AUTOCSETSEPARATOR = ... # type: int
    SCI_AUTOCGETSEPARATOR = ... # type: int
    SCI_AUTOCSELECT = ... # type: int
    SCI_AUTOCSETCANCELATSTART = ... # type: int
    SCI_AUTOCGETCANCELATSTART = ... # type: int
    SCI_AUTOCSETFILLUPS = ... # type: int
    SCI_AUTOCSETCHOOSESINGLE = ... # type: int
    SCI_AUTOCGETCHOOSESINGLE = ... # type: int
    SCI_AUTOCSETIGNORECASE = ... # type: int
    SCI_AUTOCGETIGNORECASE = ... # type: int
    SCI_USERLISTSHOW = ... # type: int
    SCI_AUTOCSETAUTOHIDE = ... # type: int
    SCI_AUTOCGETAUTOHIDE = ... # type: int
    SCI_AUTOCSETDROPRESTOFWORD = ... # type: int
    SCI_AUTOCGETDROPRESTOFWORD = ... # type: int
    SCI_SETINDENT = ... # type: int
    SCI_GETINDENT = ... # type: int
    SCI_SETUSETABS = ... # type: int
    SCI_GETUSETABS = ... # type: int
    SCI_SETLINEINDENTATION = ... # type: int
    SCI_GETLINEINDENTATION = ... # type: int
    SCI_GETLINEINDENTPOSITION = ... # type: int
    SCI_GETCOLUMN = ... # type: int
    SCI_SETHSCROLLBAR = ... # type: int
    SCI_GETHSCROLLBAR = ... # type: int
    SCI_SETINDENTATIONGUIDES = ... # type: int
    SCI_GETINDENTATIONGUIDES = ... # type: int
    SCI_SETHIGHLIGHTGUIDE = ... # type: int
    SCI_GETHIGHLIGHTGUIDE = ... # type: int
    SCI_GETLINEENDPOSITION = ... # type: int
    SCI_GETCODEPAGE = ... # type: int
    SCI_GETCARETFORE = ... # type: int
    SCI_GETREADONLY = ... # type: int
    SCI_SETCURRENTPOS = ... # type: int
    SCI_SETSELECTIONSTART = ... # type: int
    SCI_GETSELECTIONSTART = ... # type: int
    SCI_SETSELECTIONEND = ... # type: int
    SCI_GETSELECTIONEND = ... # type: int
    SCI_SETPRINTMAGNIFICATION = ... # type: int
    SCI_GETPRINTMAGNIFICATION = ... # type: int
    SCI_SETPRINTCOLOURMODE = ... # type: int
    SCI_GETPRINTCOLOURMODE = ... # type: int
    SCI_FINDTEXT = ... # type: int
    SCI_FORMATRANGE = ... # type: int
    SCI_GETFIRSTVISIBLELINE = ... # type: int
    SCI_GETLINE = ... # type: int
    SCI_GETLINECOUNT = ... # type: int
    SCI_SETMARGINLEFT = ... # type: int
    SCI_GETMARGINLEFT = ... # type: int
    SCI_SETMARGINRIGHT = ... # type: int
    SCI_GETMARGINRIGHT = ... # type: int
    SCI_GETMODIFY = ... # type: int
    SCI_SETSEL = ... # type: int
    SCI_GETSELTEXT = ... # type: int
    SCI_GETTEXTRANGE = ... # type: int
    SCI_HIDESELECTION = ... # type: int
    SCI_POINTXFROMPOSITION = ... # type: int
    SCI_POINTYFROMPOSITION = ... # type: int
    SCI_LINEFROMPOSITION = ... # type: int
    SCI_POSITIONFROMLINE = ... # type: int
    SCI_LINESCROLL = ... # type: int
    SCI_SCROLLCARET = ... # type: int
    SCI_REPLACESEL = ... # type: int
    SCI_SETREADONLY = ... # type: int
    SCI_NULL = ... # type: int
    SCI_CANPASTE = ... # type: int
    SCI_CANUNDO = ... # type: int
    SCI_EMPTYUNDOBUFFER = ... # type: int
    SCI_UNDO = ... # type: int
    SCI_CUT = ... # type: int
    SCI_COPY = ... # type: int
    SCI_PASTE = ... # type: int
    SCI_CLEAR = ... # type: int
    SCI_SETTEXT = ... # type: int
    SCI_GETTEXT = ... # type: int
    SCI_GETTEXTLENGTH = ... # type: int
    SCI_GETDIRECTFUNCTION = ... # type: int
    SCI_GETDIRECTPOINTER = ... # type: int
    SCI_SETOVERTYPE = ... # type: int
    SCI_GETOVERTYPE = ... # type: int
    SCI_SETCARETWIDTH = ... # type: int
    SCI_GETCARETWIDTH = ... # type: int
    SCI_SETTARGETSTART = ... # type: int
    SCI_GETTARGETSTART = ... # type: int
    SCI_SETTARGETEND = ... # type: int
    SCI_GETTARGETEND = ... # type: int
    SCI_REPLACETARGET = ... # type: int
    SCI_REPLACETARGETRE = ... # type: int
    SCI_SEARCHINTARGET = ... # type: int
    SCI_SETSEARCHFLAGS = ... # type: int
    SCI_GETSEARCHFLAGS = ... # type: int
    SCI_CALLTIPSHOW = ... # type: int
    SCI_CALLTIPCANCEL = ... # type: int
    SCI_CALLTIPACTIVE = ... # type: int
    SCI_CALLTIPPOSSTART = ... # type: int
    SCI_CALLTIPSETHLT = ... # type: int
    SCI_CALLTIPSETBACK = ... # type: int
    SCI_CALLTIPSETFORE = ... # type: int
    SCI_CALLTIPSETFOREHLT = ... # type: int
    SCI_AUTOCSETMAXWIDTH = ... # type: int
    SCI_AUTOCGETMAXWIDTH = ... # type: int
    SCI_AUTOCSETMAXHEIGHT = ... # type: int
    SCI_AUTOCGETMAXHEIGHT = ... # type: int
    SCI_CALLTIPUSESTYLE = ... # type: int
    SCI_VISIBLEFROMDOCLINE = ... # type: int
    SCI_DOCLINEFROMVISIBLE = ... # type: int
    SCI_SETFOLDLEVEL = ... # type: int
    SCI_GETFOLDLEVEL = ... # type: int
    SCI_GETLASTCHILD = ... # type: int
    SCI_GETFOLDPARENT = ... # type: int
    SCI_SHOWLINES = ... # type: int
    SCI_HIDELINES = ... # type: int
    SCI_GETLINEVISIBLE = ... # type: int
    SCI_SETFOLDEXPANDED = ... # type: int
    SCI_GETFOLDEXPANDED = ... # type: int
    SCI_TOGGLEFOLD = ... # type: int
    SCI_ENSUREVISIBLE = ... # type: int
    SCI_SETFOLDFLAGS = ... # type: int
    SCI_ENSUREVISIBLEENFORCEPOLICY = ... # type: int
    SCI_WRAPCOUNT = ... # type: int
    SCI_SETTABINDENTS = ... # type: int
    SCI_GETTABINDENTS = ... # type: int
    SCI_SETBACKSPACEUNINDENTS = ... # type: int
    SCI_GETBACKSPACEUNINDENTS = ... # type: int
    SCI_SETMOUSEDWELLTIME = ... # type: int
    SCI_GETMOUSEDWELLTIME = ... # type: int
    SCI_WORDSTARTPOSITION = ... # type: int
    SCI_WORDENDPOSITION = ... # type: int
    SCI_SETWRAPMODE = ... # type: int
    SCI_GETWRAPMODE = ... # type: int
    SCI_SETLAYOUTCACHE = ... # type: int
    SCI_GETLAYOUTCACHE = ... # type: int
    SCI_SETSCROLLWIDTH = ... # type: int
    SCI_GETSCROLLWIDTH = ... # type: int
    SCI_TEXTWIDTH = ... # type: int
    SCI_SETENDATLASTLINE = ... # type: int
    SCI_GETENDATLASTLINE = ... # type: int
    SCI_TEXTHEIGHT = ... # type: int
    SCI_SETVSCROLLBAR = ... # type: int
    SCI_GETVSCROLLBAR = ... # type: int
    SCI_APPENDTEXT = ... # type: int
    SCI_GETTWOPHASEDRAW = ... # type: int
    SCI_SETTWOPHASEDRAW = ... # type: int
    SCI_AUTOCGETTYPESEPARATOR = ... # type: int
    SCI_AUTOCSETTYPESEPARATOR = ... # type: int
    SCI_TARGETFROMSELECTION = ... # type: int
    SCI_LINESJOIN = ... # type: int
    SCI_LINESSPLIT = ... # type: int
    SCI_SETFOLDMARGINCOLOUR = ... # type: int
    SCI_SETFOLDMARGINHICOLOUR = ... # type: int
    SCI_MARKERSETBACKSELECTED = ... # type: int
    SCI_MARKERENABLEHIGHLIGHT = ... # type: int
    SCI_LINEDOWN = ... # type: int
    SCI_LINEDOWNEXTEND = ... # type: int
    SCI_LINEUP = ... # type: int
    SCI_LINEUPEXTEND = ... # type: int
    SCI_CHARLEFT = ... # type: int
    SCI_CHARLEFTEXTEND = ... # type: int
    SCI_CHARRIGHT = ... # type: int
    SCI_CHARRIGHTEXTEND = ... # type: int
    SCI_WORDLEFT = ... # type: int
    SCI_WORDLEFTEXTEND = ... # type: int
    SCI_WORDRIGHT = ... # type: int
    SCI_WORDRIGHTEXTEND = ... # type: int
    SCI_HOME = ... # type: int
    SCI_HOMEEXTEND = ... # type: int
    SCI_LINEEND = ... # type: int
    SCI_LINEENDEXTEND = ... # type: int
    SCI_DOCUMENTSTART = ... # type: int
    SCI_DOCUMENTSTARTEXTEND = ... # type: int
    SCI_DOCUMENTEND = ... # type: int
    SCI_DOCUMENTENDEXTEND = ... # type: int
    SCI_PAGEUP = ... # type: int
    SCI_PAGEUPEXTEND = ... # type: int
    SCI_PAGEDOWN = ... # type: int
    SCI_PAGEDOWNEXTEND = ... # type: int
    SCI_EDITTOGGLEOVERTYPE = ... # type: int
    SCI_CANCEL = ... # type: int
    SCI_DELETEBACK = ... # type: int
    SCI_TAB = ... # type: int
    SCI_BACKTAB = ... # type: int
    SCI_NEWLINE = ... # type: int
    SCI_FORMFEED = ... # type: int
    SCI_VCHOME = ... # type: int
    SCI_VCHOMEEXTEND = ... # type: int
    SCI_ZOOMIN = ... # type: int
    SCI_ZOOMOUT = ... # type: int
    SCI_DELWORDLEFT = ... # type: int
    SCI_DELWORDRIGHT = ... # type: int
    SCI_LINECUT = ... # type: int
    SCI_LINEDELETE = ... # type: int
    SCI_LINETRANSPOSE = ... # type: int
    SCI_LOWERCASE = ... # type: int
    SCI_UPPERCASE = ... # type: int
    SCI_LINESCROLLDOWN = ... # type: int
    SCI_LINESCROLLUP = ... # type: int
    SCI_DELETEBACKNOTLINE = ... # type: int
    SCI_HOMEDISPLAY = ... # type: int
    SCI_HOMEDISPLAYEXTEND = ... # type: int
    SCI_LINEENDDISPLAY = ... # type: int
    SCI_LINEENDDISPLAYEXTEND = ... # type: int
    SCI_MOVECARETINSIDEVIEW = ... # type: int
    SCI_LINELENGTH = ... # type: int
    SCI_BRACEHIGHLIGHT = ... # type: int
    SCI_BRACEBADLIGHT = ... # type: int
    SCI_BRACEMATCH = ... # type: int
    SCI_GETVIEWEOL = ... # type: int
    SCI_SETVIEWEOL = ... # type: int
    SCI_GETDOCPOINTER = ... # type: int
    SCI_SETDOCPOINTER = ... # type: int
    SCI_SETMODEVENTMASK = ... # type: int
    SCI_GETEDGECOLUMN = ... # type: int
    SCI_SETEDGECOLUMN = ... # type: int
    SCI_GETEDGEMODE = ... # type: int
    SCI_SETEDGEMODE = ... # type: int
    SCI_GETEDGECOLOUR = ... # type: int
    SCI_SETEDGECOLOUR = ... # type: int
    SCI_SEARCHANCHOR = ... # type: int
    SCI_SEARCHNEXT = ... # type: int
    SCI_SEARCHPREV = ... # type: int
    SCI_LINESONSCREEN = ... # type: int
    SCI_USEPOPUP = ... # type: int
    SCI_SELECTIONISRECTANGLE = ... # type: int
    SCI_SETZOOM = ... # type: int
    SCI_GETZOOM = ... # type: int
    SCI_CREATEDOCUMENT = ... # type: int
    SCI_ADDREFDOCUMENT = ... # type: int
    SCI_RELEASEDOCUMENT = ... # type: int
    SCI_GETMODEVENTMASK = ... # type: int
    SCI_SETFOCUS = ... # type: int
    SCI_GETFOCUS = ... # type: int
    SCI_SETSTATUS = ... # type: int
    SCI_GETSTATUS = ... # type: int
    SCI_SETMOUSEDOWNCAPTURES = ... # type: int
    SCI_GETMOUSEDOWNCAPTURES = ... # type: int
    SCI_SETCURSOR = ... # type: int
    SCI_GETCURSOR = ... # type: int
    SCI_SETCONTROLCHARSYMBOL = ... # type: int
    SCI_GETCONTROLCHARSYMBOL = ... # type: int
    SCI_WORDPARTLEFT = ... # type: int
    SCI_WORDPARTLEFTEXTEND = ... # type: int
    SCI_WORDPARTRIGHT = ... # type: int
    SCI_WORDPARTRIGHTEXTEND = ... # type: int
    SCI_SETVISIBLEPOLICY = ... # type: int
    SCI_DELLINELEFT = ... # type: int
    SCI_DELLINERIGHT = ... # type: int
    SCI_SETXOFFSET = ... # type: int
    SCI_GETXOFFSET = ... # type: int
    SCI_CHOOSECARETX = ... # type: int
    SCI_GRABFOCUS = ... # type: int
    SCI_SETXCARETPOLICY = ... # type: int
    SCI_SETYCARETPOLICY = ... # type: int
    SCI_LINEDUPLICATE = ... # type: int
    SCI_REGISTERIMAGE = ... # type: int
    SCI_SETPRINTWRAPMODE = ... # type: int
    SCI_GETPRINTWRAPMODE = ... # type: int
    SCI_CLEARREGISTEREDIMAGES = ... # type: int
    SCI_STYLESETHOTSPOT = ... # type: int
    SCI_SETHOTSPOTACTIVEFORE = ... # type: int
    SCI_SETHOTSPOTACTIVEBACK = ... # type: int
    SCI_SETHOTSPOTACTIVEUNDERLINE = ... # type: int
    SCI_SETHOTSPOTSINGLELINE = ... # type: int
    SCI_PARADOWN = ... # type: int
    SCI_PARADOWNEXTEND = ... # type: int
    SCI_PARAUP = ... # type: int
    SCI_PARAUPEXTEND = ... # type: int
    SCI_POSITIONBEFORE = ... # type: int
    SCI_POSITIONAFTER = ... # type: int
    SCI_COPYRANGE = ... # type: int
    SCI_COPYTEXT = ... # type: int
    SCI_SETSELECTIONMODE = ... # type: int
    SCI_GETSELECTIONMODE = ... # type: int
    SCI_GETLINESELSTARTPOSITION = ... # type: int
    SCI_GETLINESELENDPOSITION = ... # type: int
    SCI_LINEDOWNRECTEXTEND = ... # type: int
    SCI_LINEUPRECTEXTEND = ... # type: int
    SCI_CHARLEFTRECTEXTEND = ... # type: int
    SCI_CHARRIGHTRECTEXTEND = ... # type: int
    SCI_HOMERECTEXTEND = ... # type: int
    SCI_VCHOMERECTEXTEND = ... # type: int
    SCI_LINEENDRECTEXTEND = ... # type: int
    SCI_PAGEUPRECTEXTEND = ... # type: int
    SCI_PAGEDOWNRECTEXTEND = ... # type: int
    SCI_STUTTEREDPAGEUP = ... # type: int
    SCI_STUTTEREDPAGEUPEXTEND = ... # type: int
    SCI_STUTTEREDPAGEDOWN = ... # type: int
    SCI_STUTTEREDPAGEDOWNEXTEND = ... # type: int
    SCI_WORDLEFTEND = ... # type: int
    SCI_WORDLEFTENDEXTEND = ... # type: int
    SCI_WORDRIGHTEND = ... # type: int
    SCI_WORDRIGHTENDEXTEND = ... # type: int
    SCI_SETWHITESPACECHARS = ... # type: int
    SCI_SETCHARSDEFAULT = ... # type: int
    SCI_AUTOCGETCURRENT = ... # type: int
    SCI_ALLOCATE = ... # type: int
    SCI_HOMEWRAP = ... # type: int
    SCI_HOMEWRAPEXTEND = ... # type: int
    SCI_LINEENDWRAP = ... # type: int
    SCI_LINEENDWRAPEXTEND = ... # type: int
    SCI_VCHOMEWRAP = ... # type: int
    SCI_VCHOMEWRAPEXTEND = ... # type: int
    SCI_LINECOPY = ... # type: int
    SCI_FINDCOLUMN = ... # type: int
    SCI_GETCARETSTICKY = ... # type: int
    SCI_SETCARETSTICKY = ... # type: int
    SCI_TOGGLECARETSTICKY = ... # type: int
    SCI_SETWRAPVISUALFLAGS = ... # type: int
    SCI_GETWRAPVISUALFLAGS = ... # type: int
    SCI_SETWRAPVISUALFLAGSLOCATION = ... # type: int
    SCI_GETWRAPVISUALFLAGSLOCATION = ... # type: int
    SCI_SETWRAPSTARTINDENT = ... # type: int
    SCI_GETWRAPSTARTINDENT = ... # type: int
    SCI_MARKERADDSET = ... # type: int
    SCI_SETPASTECONVERTENDINGS = ... # type: int
    SCI_GETPASTECONVERTENDINGS = ... # type: int
    SCI_SELECTIONDUPLICATE = ... # type: int
    SCI_SETCARETLINEBACKALPHA = ... # type: int
    SCI_GETCARETLINEBACKALPHA = ... # type: int
    SCI_SETWRAPINDENTMODE = ... # type: int
    SCI_GETWRAPINDENTMODE = ... # type: int
    SCI_MARKERSETALPHA = ... # type: int
    SCI_GETSELALPHA = ... # type: int
    SCI_SETSELALPHA = ... # type: int
    SCI_GETSELEOLFILLED = ... # type: int
    SCI_SETSELEOLFILLED = ... # type: int
    SCI_STYLEGETFORE = ... # type: int
    SCI_STYLEGETBACK = ... # type: int
    SCI_STYLEGETBOLD = ... # type: int
    SCI_STYLEGETITALIC = ... # type: int
    SCI_STYLEGETSIZE = ... # type: int
    SCI_STYLEGETFONT = ... # type: int
    SCI_STYLEGETEOLFILLED = ... # type: int
    SCI_STYLEGETUNDERLINE = ... # type: int
    SCI_STYLEGETCASE = ... # type: int
    SCI_STYLEGETCHARACTERSET = ... # type: int
    SCI_STYLEGETVISIBLE = ... # type: int
    SCI_STYLEGETCHANGEABLE = ... # type: int
    SCI_STYLEGETHOTSPOT = ... # type: int
    SCI_GETHOTSPOTACTIVEFORE = ... # type: int
    SCI_GETHOTSPOTACTIVEBACK = ... # type: int
    SCI_GETHOTSPOTACTIVEUNDERLINE = ... # type: int
    SCI_GETHOTSPOTSINGLELINE = ... # type: int
    SCI_BRACEHIGHLIGHTINDICATOR = ... # type: int
    SCI_BRACEBADLIGHTINDICATOR = ... # type: int
    SCI_SETINDICATORCURRENT = ... # type: int
    SCI_GETINDICATORCURRENT = ... # type: int
    SCI_SETINDICATORVALUE = ... # type: int
    SCI_GETINDICATORVALUE = ... # type: int
    SCI_INDICATORFILLRANGE = ... # type: int
    SCI_INDICATORCLEARRANGE = ... # type: int
    SCI_INDICATORALLONFOR = ... # type: int
    SCI_INDICATORVALUEAT = ... # type: int
    SCI_INDICATORSTART = ... # type: int
    SCI_INDICATOREND = ... # type: int
    SCI_INDICSETUNDER = ... # type: int
    SCI_INDICGETUNDER = ... # type: int
    SCI_SETCARETSTYLE = ... # type: int
    SCI_GETCARETSTYLE = ... # type: int
    SCI_SETPOSITIONCACHE = ... # type: int
    SCI_GETPOSITIONCACHE = ... # type: int
    SCI_SETSCROLLWIDTHTRACKING = ... # type: int
    SCI_GETSCROLLWIDTHTRACKING = ... # type: int
    SCI_DELWORDRIGHTEND = ... # type: int
    SCI_COPYALLOWLINE = ... # type: int
    SCI_GETCHARACTERPOINTER = ... # type: int
    SCI_SETKEYSUNICODE = ... # type: int
    SCI_GETKEYSUNICODE = ... # type: int
    SCI_INDICSETALPHA = ... # type: int
    SCI_INDICGETALPHA = ... # type: int
    SCI_SETEXTRAASCENT = ... # type: int
    SCI_GETEXTRAASCENT = ... # type: int
    SCI_SETEXTRADESCENT = ... # type: int
    SCI_GETEXTRADESCENT = ... # type: int
    SCI_MARKERSYMBOLDEFINED = ... # type: int
    SCI_MARGINSETTEXT = ... # type: int
    SCI_MARGINGETTEXT = ... # type: int
    SCI_MARGINSETSTYLE = ... # type: int
    SCI_MARGINGETSTYLE = ... # type: int
    SCI_MARGINSETSTYLES = ... # type: int
    SCI_MARGINGETSTYLES = ... # type: int
    SCI_MARGINTEXTCLEARALL = ... # type: int
    SCI_MARGINSETSTYLEOFFSET = ... # type: int
    SCI_MARGINGETSTYLEOFFSET = ... # type: int
    SCI_SETMARGINOPTIONS = ... # type: int
    SCI_ANNOTATIONSETTEXT = ... # type: int
    SCI_ANNOTATIONGETTEXT = ... # type: int
    SCI_ANNOTATIONSETSTYLE = ... # type: int
    SCI_ANNOTATIONGETSTYLE = ... # type: int
    SCI_ANNOTATIONSETSTYLES = ... # type: int
    SCI_ANNOTATIONGETSTYLES = ... # type: int
    SCI_ANNOTATIONGETLINES = ... # type: int
    SCI_ANNOTATIONCLEARALL = ... # type: int
    SCI_ANNOTATIONSETVISIBLE = ... # type: int
    SCI_ANNOTATIONGETVISIBLE = ... # type: int
    SCI_ANNOTATIONSETSTYLEOFFSET = ... # type: int
    SCI_ANNOTATIONGETSTYLEOFFSET = ... # type: int
    SCI_SETEMPTYSELECTION = ... # type: int
    SCI_GETMARGINOPTIONS = ... # type: int
    SCI_INDICSETOUTLINEALPHA = ... # type: int
    SCI_INDICGETOUTLINEALPHA = ... # type: int
    SCI_ADDUNDOACTION = ... # type: int
    SCI_CHARPOSITIONFROMPOINT = ... # type: int
    SCI_CHARPOSITIONFROMPOINTCLOSE = ... # type: int
    SCI_SETMULTIPLESELECTION = ... # type: int
    SCI_GETMULTIPLESELECTION = ... # type: int
    SCI_SETADDITIONALSELECTIONTYPING = ... # type: int
    SCI_GETADDITIONALSELECTIONTYPING = ... # type: int
    SCI_SETADDITIONALCARETSBLINK = ... # type: int
    SCI_GETADDITIONALCARETSBLINK = ... # type: int
    SCI_SCROLLRANGE = ... # type: int
    SCI_GETSELECTIONS = ... # type: int
    SCI_CLEARSELECTIONS = ... # type: int
    SCI_SETSELECTION = ... # type: int
    SCI_ADDSELECTION = ... # type: int
    SCI_SETMAINSELECTION = ... # type: int
    SCI_GETMAINSELECTION = ... # type: int
    SCI_SETSELECTIONNCARET = ... # type: int
    SCI_GETSELECTIONNCARET = ... # type: int
    SCI_SETSELECTIONNANCHOR = ... # type: int
    SCI_GETSELECTIONNANCHOR = ... # type: int
    SCI_SETSELECTIONNCARETVIRTUALSPACE = ... # type: int
    SCI_GETSELECTIONNCARETVIRTUALSPACE = ... # type: int
    SCI_SETSELECTIONNANCHORVIRTUALSPACE = ... # type: int
    SCI_GETSELECTIONNANCHORVIRTUALSPACE = ... # type: int
    SCI_SETSELECTIONNSTART = ... # type: int
    SCI_GETSELECTIONNSTART = ... # type: int
    SCI_SETSELECTIONNEND = ... # type: int
    SCI_GETSELECTIONNEND = ... # type: int
    SCI_SETRECTANGULARSELECTIONCARET = ... # type: int
    SCI_GETRECTANGULARSELECTIONCARET = ... # type: int
    SCI_SETRECTANGULARSELECTIONANCHOR = ... # type: int
    SCI_GETRECTANGULARSELECTIONANCHOR = ... # type: int
    SCI_SETRECTANGULARSELECTIONCARETVIRTUALSPACE = ... # type: int
    SCI_GETRECTANGULARSELECTIONCARETVIRTUALSPACE = ... # type: int
    SCI_SETRECTANGULARSELECTIONANCHORVIRTUALSPACE = ... # type: int
    SCI_GETRECTANGULARSELECTIONANCHORVIRTUALSPACE = ... # type: int
    SCI_SETVIRTUALSPACEOPTIONS = ... # type: int
    SCI_GETVIRTUALSPACEOPTIONS = ... # type: int
    SCI_SETRECTANGULARSELECTIONMODIFIER = ... # type: int
    SCI_GETRECTANGULARSELECTIONMODIFIER = ... # type: int
    SCI_SETADDITIONALSELFORE = ... # type: int
    SCI_SETADDITIONALSELBACK = ... # type: int
    SCI_SETADDITIONALSELALPHA = ... # type: int
    SCI_GETADDITIONALSELALPHA = ... # type: int
    SCI_SETADDITIONALCARETFORE = ... # type: int
    SCI_GETADDITIONALCARETFORE = ... # type: int
    SCI_ROTATESELECTION = ... # type: int
    SCI_SWAPMAINANCHORCARET = ... # type: int
    SCI_SETADDITIONALCARETSVISIBLE = ... # type: int
    SCI_GETADDITIONALCARETSVISIBLE = ... # type: int
    SCI_AUTOCGETCURRENTTEXT = ... # type: int
    SCI_SETFONTQUALITY = ... # type: int
    SCI_GETFONTQUALITY = ... # type: int
    SCI_SETFIRSTVISIBLELINE = ... # type: int
    SCI_SETMULTIPASTE = ... # type: int
    SCI_GETMULTIPASTE = ... # type: int
    SCI_GETTAG = ... # type: int
    SCI_CHANGELEXERSTATE = ... # type: int
    SCI_CONTRACTEDFOLDNEXT = ... # type: int
    SCI_VERTICALCENTRECARET = ... # type: int
    SCI_MOVESELECTEDLINESUP = ... # type: int
    SCI_MOVESELECTEDLINESDOWN = ... # type: int
    SCI_SETIDENTIFIER = ... # type: int
    SCI_GETIDENTIFIER = ... # type: int
    SCI_RGBAIMAGESETWIDTH = ... # type: int
    SCI_RGBAIMAGESETHEIGHT = ... # type: int
    SCI_MARKERDEFINERGBAIMAGE = ... # type: int
    SCI_REGISTERRGBAIMAGE = ... # type: int
    SCI_SCROLLTOSTART = ... # type: int
    SCI_SCROLLTOEND = ... # type: int
    SCI_STARTRECORD = ... # type: int
    SCI_STOPRECORD = ... # type: int
    SCI_SETLEXER = ... # type: int
    SCI_GETLEXER = ... # type: int
    SCI_COLOURISE = ... # type: int
    SCI_SETPROPERTY = ... # type: int
    SCI_SETKEYWORDS = ... # type: int
    SCI_SETLEXERLANGUAGE = ... # type: int
    SCI_LOADLEXERLIBRARY = ... # type: int
    SCI_GETPROPERTY = ... # type: int
    SCI_GETPROPERTYEXPANDED = ... # type: int
    SCI_GETPROPERTYINT = ... # type: int
    SCI_GETSTYLEBITSNEEDED = ... # type: int
    SCI_GETLEXERLANGUAGE = ... # type: int
    SCI_PRIVATELEXERCALL = ... # type: int
    SCI_PROPERTYNAMES = ... # type: int
    SCI_PROPERTYTYPE = ... # type: int
    SCI_DESCRIBEPROPERTY = ... # type: int
    SCI_DESCRIBEKEYWORDSETS = ... # type: int
    SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR = ... # type: int
    SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR = ... # type: int
    SCI_AUTOCSETMULTI = ... # type: int
    SCI_AUTOCGETMULTI = ... # type: int
    SCI_CALLTIPSETPOSITION = ... # type: int
    SCI_CALLTIPSETPOSSTART = ... # type: int
    SCI_COUNTCHARACTERS = ... # type: int
    SCI_CREATELOADER = ... # type: int
    SCI_DELETERANGE = ... # type: int
    SCI_FINDINDICATORFLASH = ... # type: int
    SCI_FINDINDICATORHIDE = ... # type: int
    SCI_FINDINDICATORSHOW = ... # type: int
    SCI_GETALLLINESVISIBLE = ... # type: int
    SCI_GETGAPPOSITION = ... # type: int
    SCI_GETPUNCTUATIONCHARS = ... # type: int
    SCI_GETRANGEPOINTER = ... # type: int
    SCI_GETSELECTIONEMPTY = ... # type: int
    SCI_GETTECHNOLOGY = ... # type: int
    SCI_GETWHITESPACECHARS = ... # type: int
    SCI_GETWORDCHARS = ... # type: int
    SCI_RGBAIMAGESETSCALE = ... # type: int
    SCI_SETPUNCTUATIONCHARS = ... # type: int
    SCI_SETTECHNOLOGY = ... # type: int
    SCI_STYLESETSIZEFRACTIONAL = ... # type: int
    SCI_STYLEGETSIZEFRACTIONAL = ... # type: int
    SCI_STYLESETWEIGHT = ... # type: int
    SCI_STYLEGETWEIGHT = ... # type: int
    SCI_FOLDLINE = ... # type: int
    SCI_FOLDCHILDREN = ... # type: int
    SCI_EXPANDCHILDREN = ... # type: int
    SCI_FOLDALL = ... # type: int
    SCI_SETAUTOMATICFOLD = ... # type: int
    SCI_GETAUTOMATICFOLD = ... # type: int
    SCI_AUTOCSETORDER = ... # type: int
    SCI_AUTOCGETORDER = ... # type: int
    SCI_POSITIONRELATIVE = ... # type: int
    SCI_DROPSELECTIONN = ... # type: int
    SCI_CHANGEINSERTION = ... # type: int
    SCI_GETPHASESDRAW = ... # type: int
    SCI_SETPHASESDRAW = ... # type: int
    SCI_CLEARTABSTOPS = ... # type: int
    SCI_ADDTABSTOP = ... # type: int
    SCI_GETNEXTTABSTOP = ... # type: int
    SCI_GETIMEINTERACTION = ... # type: int
    SCI_SETIMEINTERACTION = ... # type: int
    SCI_INDICSETHOVERSTYLE = ... # type: int
    SCI_INDICGETHOVERSTYLE = ... # type: int
    SCI_INDICSETHOVERFORE = ... # type: int
    SCI_INDICGETHOVERFORE = ... # type: int
    SCI_INDICSETFLAGS = ... # type: int
    SCI_INDICGETFLAGS = ... # type: int
    SCI_SETTARGETRANGE = ... # type: int
    SCI_GETTARGETRANGE = ... # type: int
    SCI_RELEASEALLEXTENDEDSTYLES = ... # type: int
    SCI_ALLOCATEEXTENDEDSTYLES = ... # type: int
    SCI_SETMOUSESELECTIONRECTANGULARSWITCH = ... # type: int
    SCI_GETMOUSESELECTIONRECTANGULARSWITCH = ... # type: int
    SCI_GETCARETLINEVISIBLEALWAYS = ... # type: int
    SCI_SETCARETLINEVISIBLEALWAYS = ... # type: int
    SCI_SETLINEENDTYPESALLOWED = ... # type: int
    SCI_GETLINEENDTYPESALLOWED = ... # type: int
    SCI_GETLINEENDTYPESACTIVE = ... # type: int
    SCI_SETREPRESENTATION = ... # type: int
    SCI_GETREPRESENTATION = ... # type: int
    SCI_CLEARREPRESENTATION = ... # type: int
    SCI_GETLINEENDTYPESSUPPORTED = ... # type: int
    SCI_ALLOCATESUBSTYLES = ... # type: int
    SCI_GETSUBSTYLESSTART = ... # type: int
    SCI_GETSUBSTYLESLENGTH = ... # type: int
    SCI_GETSTYLEFROMSUBSTYLE = ... # type: int
    SCI_GETPRIMARYSTYLEFROMSTYLE = ... # type: int
    SCI_FREESUBSTYLES = ... # type: int
    SCI_SETIDENTIFIERS = ... # type: int
    SCI_DISTANCETOSECONDARYSTYLES = ... # type: int
    SCI_GETSUBSTYLEBASES = ... # type: int

    def __init__(self, parent: typing.Optional[QtGui.QWidget] = ...) -> None: ...

    def scrollContentsBy(self, dx: int, dy: int) -> None: ...
    def resizeEvent(self, e: QtGui.QResizeEvent) -> None: ...
    def paintEvent(self, e: QtGui.QPaintEvent) -> None: ...
    def mouseReleaseEvent(self, e: QtGui.QMouseEvent) -> None: ...
    def mousePressEvent(self, e: QtGui.QMouseEvent) -> None: ...
    def mouseMoveEvent(self, e: QtGui.QMouseEvent) -> None: ...
    def mouseDoubleClickEvent(self, e: QtGui.QMouseEvent) -> None: ...
    def inputMethodQuery(self, query: QtCore.Qt.InputMethodQuery) -> QtCore.QVariant: ...
    def inputMethodEvent(self, e: QtGui.QInputMethodEvent) -> None: ...
    def keyPressEvent(self, e: QtGui.QKeyEvent) -> None: ...
    def focusNextPrevChild(self, next: bool) -> bool: ...
    def focusOutEvent(self, e: QtGui.QFocusEvent) -> None: ...
    def focusInEvent(self, e: QtGui.QFocusEvent) -> None: ...
    def dropEvent(self, e: QtGui.QDropEvent) -> None: ...
    def dragMoveEvent(self, e: QtGui.QDragMoveEvent) -> None: ...
    def dragLeaveEvent(self, e: QtGui.QDragLeaveEvent) -> None: ...
    def dragEnterEvent(self, e: QtGui.QDragEnterEvent) -> None: ...
    def contextMenuEvent(self, e: QtGui.QContextMenuEvent) -> None: ...
    def toMimeData(self, text: QtCore.QByteArray, rectangular: bool) -> QtCore.QMimeData: ...
    def fromMimeData(self, source: QtCore.QMimeData) -> typing.Tuple[QtCore.QByteArray, bool]: ...
    def canInsertFromMimeData(self, source: QtCore.QMimeData) -> bool: ...
    def SCN_ZOOM(self) -> None: ...
    def SCN_USERLISTSELECTION(self, a0: str, a1: int) -> None: ...
    def SCN_UPDATEUI(self, updated: int) -> None: ...
    def SCN_STYLENEEDED(self, position: int) -> None: ...
    def SCN_SAVEPOINTREACHED(self) -> None: ...
    def SCN_SAVEPOINTLEFT(self) -> None: ...
    def SCN_PAINTED(self) -> None: ...
    def SCN_NEEDSHOWN(self, a0: int, a1: int) -> None: ...
    def SCN_MODIFYATTEMPTRO(self) -> None: ...
    def SCN_MODIFIED(self, a0: int, a1: int, a2: str, a3: int, a4: int, a5: int, a6: int, a7: int, a8: int, a9: int) -> None: ...
    def SCN_MARGINCLICK(self, position: int, modifiers: int, margin: int) -> None: ...
    def SCN_MACRORECORD(self, a0: int, a1: int, a2: sip.voidptr) -> None: ...
    def SCN_INDICATORRELEASE(self, position: int, modifiers: int) -> None: ...
    def SCN_INDICATORCLICK(self, position: int, modifiers: int) -> None: ...
    def SCN_HOTSPOTRELEASECLICK(self, position: int, modifiers: int) -> None: ...
    def SCN_HOTSPOTDOUBLECLICK(self, position: int, modifiers: int) -> None: ...
    def SCN_HOTSPOTCLICK(self, position: int, modifiers: int) -> None: ...
    def SCN_FOCUSOUT(self) -> None: ...
    def SCN_FOCUSIN(self) -> None: ...
    def SCN_DWELLSTART(self, a0: int, a1: int, a2: int) -> None: ...
    def SCN_DWELLEND(self, a0: int, a1: int, a2: int) -> None: ...
    def SCN_DOUBLECLICK(self, position: int, line: int, modifiers: int) -> None: ...
    def SCN_CHARADDED(self, charadded: int) -> None: ...
    def SCN_CALLTIPCLICK(self, direction: int) -> None: ...
    def SCN_AUTOCSELECTION(self, selection: str, position: int) -> None: ...
    def SCN_AUTOCCHARDELETED(self) -> None: ...
    def SCN_AUTOCCANCELLED(self) -> None: ...
    def SCEN_CHANGE(self) -> None: ...
    def QSCN_SELCHANGED(self, yes: bool) -> None: ...
    def SendScintillaPtrResult(self, msg: int) -> sip.voidptr: ...
    @typing.overload
    def SendScintilla(self, msg: int, wParam: int = ..., lParam: int = ...) -> int: ...
    @typing.overload
    def SendScintilla(self, msg: int, wParam: int, lParam: sip.voidptr) -> int: ...
    @typing.overload
    def SendScintilla(self, msg: int, wParam: int, lParam: str) -> int: ...
    @typing.overload
    def SendScintilla(self, msg: int, lParam: str) -> int: ...
    @typing.overload
    def SendScintilla(self, msg: int, wParam: str, lParam: str) -> int: ...
    @typing.overload
    def SendScintilla(self, msg: int, wParam: int) -> int: ...
    @typing.overload
    def SendScintilla(self, msg: int, cpMin: int, cpMax: int, lpstrText: str) -> int: ...
    @typing.overload
    def SendScintilla(self, msg: int, wParam: int, col: QtGui.QColor) -> int: ...
    @typing.overload
    def SendScintilla(self, msg: int, col: QtGui.QColor) -> int: ...
    @typing.overload
    def SendScintilla(self, msg: int, wParam: int, hdc: QtGui.QPainter, rc: QtCore.QRect, cpMin: int, cpMax: int) -> int: ...
    @typing.overload
    def SendScintilla(self, msg: int, wParam: int, lParam: QtGui.QPixmap) -> int: ...
    @typing.overload
    def SendScintilla(self, msg: int, wParam: int, lParam: QtGui.QImage) -> int: ...
    @staticmethod
    def pool() -> 'QsciScintillaBase': ...


class QsciScintilla(QsciScintillaBase):

    class WrapIndentMode(int): ...
    WrapIndentFixed = ... # type: 'QsciScintilla.WrapIndentMode'
    WrapIndentSame = ... # type: 'QsciScintilla.WrapIndentMode'
    WrapIndentIndented = ... # type: 'QsciScintilla.WrapIndentMode'

    class WrapVisualFlag(int): ...
    WrapFlagNone = ... # type: 'QsciScintilla.WrapVisualFlag'
    WrapFlagByText = ... # type: 'QsciScintilla.WrapVisualFlag'
    WrapFlagByBorder = ... # type: 'QsciScintilla.WrapVisualFlag'
    WrapFlagInMargin = ... # type: 'QsciScintilla.WrapVisualFlag'

    class WrapMode(int): ...
    WrapNone = ... # type: 'QsciScintilla.WrapMode'
    WrapWord = ... # type: 'QsciScintilla.WrapMode'
    WrapCharacter = ... # type: 'QsciScintilla.WrapMode'
    WrapWhitespace = ... # type: 'QsciScintilla.WrapMode'

    class WhitespaceVisibility(int): ...
    WsInvisible = ... # type: 'QsciScintilla.WhitespaceVisibility'
    WsVisible = ... # type: 'QsciScintilla.WhitespaceVisibility'
    WsVisibleAfterIndent = ... # type: 'QsciScintilla.WhitespaceVisibility'

    class MarkerSymbol(int): ...
    Circle = ... # type: 'QsciScintilla.MarkerSymbol'
    Rectangle = ... # type: 'QsciScintilla.MarkerSymbol'
    RightTriangle = ... # type: 'QsciScintilla.MarkerSymbol'
    SmallRectangle = ... # type: 'QsciScintilla.MarkerSymbol'
    RightArrow = ... # type: 'QsciScintilla.MarkerSymbol'
    Invisible = ... # type: 'QsciScintilla.MarkerSymbol'
    DownTriangle = ... # type: 'QsciScintilla.MarkerSymbol'
    Minus = ... # type: 'QsciScintilla.MarkerSymbol'
    Plus = ... # type: 'QsciScintilla.MarkerSymbol'
    VerticalLine = ... # type: 'QsciScintilla.MarkerSymbol'
    BottomLeftCorner = ... # type: 'QsciScintilla.MarkerSymbol'
    LeftSideSplitter = ... # type: 'QsciScintilla.MarkerSymbol'
    BoxedPlus = ... # type: 'QsciScintilla.MarkerSymbol'
    BoxedPlusConnected = ... # type: 'QsciScintilla.MarkerSymbol'
    BoxedMinus = ... # type: 'QsciScintilla.MarkerSymbol'
    BoxedMinusConnected = ... # type: 'QsciScintilla.MarkerSymbol'
    RoundedBottomLeftCorner = ... # type: 'QsciScintilla.MarkerSymbol'
    LeftSideRoundedSplitter = ... # type: 'QsciScintilla.MarkerSymbol'
    CircledPlus = ... # type: 'QsciScintilla.MarkerSymbol'
    CircledPlusConnected = ... # type: 'QsciScintilla.MarkerSymbol'
    CircledMinus = ... # type: 'QsciScintilla.MarkerSymbol'
    CircledMinusConnected = ... # type: 'QsciScintilla.MarkerSymbol'
    Background = ... # type: 'QsciScintilla.MarkerSymbol'
    ThreeDots = ... # type: 'QsciScintilla.MarkerSymbol'
    ThreeRightArrows = ... # type: 'QsciScintilla.MarkerSymbol'
    FullRectangle = ... # type: 'QsciScintilla.MarkerSymbol'
    LeftRectangle = ... # type: 'QsciScintilla.MarkerSymbol'
    Underline = ... # type: 'QsciScintilla.MarkerSymbol'
    Bookmark = ... # type: 'QsciScintilla.MarkerSymbol'

    class MarginType(int): ...
    SymbolMargin = ... # type: 'QsciScintilla.MarginType'
    SymbolMarginDefaultForegroundColor = ... # type: 'QsciScintilla.MarginType'
    SymbolMarginDefaultBackgroundColor = ... # type: 'QsciScintilla.MarginType'
    NumberMargin = ... # type: 'QsciScintilla.MarginType'
    TextMargin = ... # type: 'QsciScintilla.MarginType'
    TextMarginRightJustified = ... # type: 'QsciScintilla.MarginType'

    MoNone = ... # type: int
    MoSublineSelect = ... # type: int

    class IndicatorStyle(int): ...
    PlainIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    SquiggleIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    TTIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    DiagonalIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    StrikeIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    HiddenIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    BoxIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    RoundBoxIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    StraightBoxIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    FullBoxIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    DashesIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    DotsIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    SquiggleLowIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    DotBoxIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    SquigglePixmapIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    ThickCompositionIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    ThinCompositionIndicator = ... # type: 'QsciScintilla.IndicatorStyle'
    TextColorIndicator = ... # type: 'QsciScintilla.IndicatorStyle'

    class FoldStyle(int): ...
    NoFoldStyle = ... # type: 'QsciScintilla.FoldStyle'
    PlainFoldStyle = ... # type: 'QsciScintilla.FoldStyle'
    CircledFoldStyle = ... # type: 'QsciScintilla.FoldStyle'
    BoxedFoldStyle = ... # type: 'QsciScintilla.FoldStyle'
    CircledTreeFoldStyle = ... # type: 'QsciScintilla.FoldStyle'
    BoxedTreeFoldStyle = ... # type: 'QsciScintilla.FoldStyle'

    class EolMode(int): ...
    EolWindows = ... # type: 'QsciScintilla.EolMode'
    EolUnix = ... # type: 'QsciScintilla.EolMode'
    EolMac = ... # type: 'QsciScintilla.EolMode'

    class EdgeMode(int): ...
    EdgeNone = ... # type: 'QsciScintilla.EdgeMode'
    EdgeLine = ... # type: 'QsciScintilla.EdgeMode'
    EdgeBackground = ... # type: 'QsciScintilla.EdgeMode'

    class CallTipsStyle(int): ...
    CallTipsNone = ... # type: 'QsciScintilla.CallTipsStyle'
    CallTipsNoContext = ... # type: 'QsciScintilla.CallTipsStyle'
    CallTipsNoAutoCompletionContext = ... # type: 'QsciScintilla.CallTipsStyle'
    CallTipsContext = ... # type: 'QsciScintilla.CallTipsStyle'

    class CallTipsPosition(int): ...
    CallTipsBelowText = ... # type: 'QsciScintilla.CallTipsPosition'
    CallTipsAboveText = ... # type: 'QsciScintilla.CallTipsPosition'

    class BraceMatch(int): ...
    NoBraceMatch = ... # type: 'QsciScintilla.BraceMatch'
    StrictBraceMatch = ... # type: 'QsciScintilla.BraceMatch'
    SloppyBraceMatch = ... # type: 'QsciScintilla.BraceMatch'

    class AutoCompletionUseSingle(int): ...
    AcusNever = ... # type: 'QsciScintilla.AutoCompletionUseSingle'
    AcusExplicit = ... # type: 'QsciScintilla.AutoCompletionUseSingle'
    AcusAlways = ... # type: 'QsciScintilla.AutoCompletionUseSingle'

    class AutoCompletionSource(int): ...
    AcsNone = ... # type: 'QsciScintilla.AutoCompletionSource'
    AcsAll = ... # type: 'QsciScintilla.AutoCompletionSource'
    AcsDocument = ... # type: 'QsciScintilla.AutoCompletionSource'
    AcsAPIs = ... # type: 'QsciScintilla.AutoCompletionSource'

    class AnnotationDisplay(int): ...
    AnnotationHidden = ... # type: 'QsciScintilla.AnnotationDisplay'
    AnnotationStandard = ... # type: 'QsciScintilla.AnnotationDisplay'
    AnnotationBoxed = ... # type: 'QsciScintilla.AnnotationDisplay'
    AnnotationIndented = ... # type: 'QsciScintilla.AnnotationDisplay'

    AiMaintain = ... # type: int
    AiOpening = ... # type: int
    AiClosing = ... # type: int

    def __init__(self, parent: typing.Optional[QtGui.QWidget] = ...) -> None: ...

    def contextMenuEvent(self, event: QtGui.QContextMenuEvent) -> None: ...
    def changeEvent(self, event: QtCore.QEvent) -> None: ...
    def event(self, event: QtCore.QEvent) -> bool: ...
    def userListActivated(self, id: int, string: QtCore.QString) -> None: ...
    def textChanged(self) -> None: ...
    def selectionChanged(self) -> None: ...
    def modificationChanged(self, m: bool) -> None: ...
    def modificationAttempted(self) -> None: ...
    def marginClicked(self, margin: int, line: int, state: QtCore.Qt.KeyboardModifiers) -> None: ...
    def linesChanged(self) -> None: ...
    def indicatorReleased(self, line: int, index: int, state: QtCore.Qt.KeyboardModifiers) -> None: ...
    def indicatorClicked(self, line: int, index: int, state: QtCore.Qt.KeyboardModifiers) -> None: ...
    def copyAvailable(self, yes: bool) -> None: ...
    def cursorPositionChanged(self, line: int, index: int) -> None: ...
    def zoomTo(self, size: int) -> None: ...
    @typing.overload
    def zoomOut(self, range: int) -> None: ...
    @typing.overload
    def zoomOut(self) -> None: ...
    @typing.overload
    def zoomIn(self, range: int) -> None: ...
    @typing.overload
    def zoomIn(self) -> None: ...
    def unindent(self, line: int) -> None: ...
    def undo(self) -> None: ...
    def setWrapMode(self, mode: 'QsciScintilla.WrapMode') -> None: ...
    def setWhitespaceVisibility(self, mode: 'QsciScintilla.WhitespaceVisibility') -> None: ...
    def setUtf8(self, cp: bool) -> None: ...
    def setText(self, text: QtCore.QString) -> None: ...
    def setTabWidth(self, width: int) -> None: ...
    def setTabIndents(self, indent: bool) -> None: ...
    def setSelectionForegroundColor(self, col: QtGui.QColor) -> None: ...
    def setSelectionBackgroundColor(self, col: QtGui.QColor) -> None: ...
    def setSelection(self, lineFrom: int, indexFrom: int, lineTo: int, indexTo: int) -> None: ...
    def setReadOnly(self, ro: bool) -> None: ...
    def setPaper(self, c: QtGui.QColor) -> None: ...
    def setModified(self, m: bool) -> None: ...
    @typing.overload
    def setMarginWidth(self, margin: int, width: int) -> None: ...
    @typing.overload
    def setMarginWidth(self, margin: int, s: QtCore.QString) -> None: ...
    def setMarginSensitivity(self, margin: int, sens: bool) -> None: ...
    def setMarginMarkerMask(self, margin: int, mask: int) -> None: ...
    def setMarginLineNumbers(self, margin: int, lnrs: bool) -> None: ...
    def setMarginsForegroundColor(self, col: QtGui.QColor) -> None: ...
    def setMarginsFont(self, f: QtGui.QFont) -> None: ...
    def setMarginsBackgroundColor(self, col: QtGui.QColor) -> None: ...
    def setLexer(self, lexer: typing.Optional['QsciLexer'] = ...) -> None: ...
    def setIndentationWidth(self, width: int) -> None: ...
    def setIndentationsUseTabs(self, tabs: bool) -> None: ...
    def setIndentationGuidesForegroundColor(self, col: QtGui.QColor) -> None: ...
    def setIndentationGuidesBackgroundColor(self, col: QtGui.QColor) -> None: ...
    def setIndentationGuides(self, enable: bool) -> None: ...
    def setIndentation(self, line: int, indentation: int) -> None: ...
    def clearFolds(self) -> None: ...
    def setFolding(self, fold: 'QsciScintilla.FoldStyle', margin: int = ...) -> None: ...
    def setEolVisibility(self, visible: bool) -> None: ...
    def setEolMode(self, mode: 'QsciScintilla.EolMode') -> None: ...
    def setCursorPosition(self, line: int, index: int) -> None: ...
    def setColor(self, col: QtGui.QColor) -> None: ...
    def setCaretWidth(self, width: int) -> None: ...
    def setCaretLineVisible(self, enable: bool) -> None: ...
    def setCaretLineBackgroundColor(self, col: QtGui.QColor) -> None: ...
    def setCaretForegroundColor(self, col: QtGui.QColor) -> None: ...
    def setBackspaceUnindents(self, unindent: bool) -> None: ...
    def setBraceMatching(self, bm: 'QsciScintilla.BraceMatch') -> None: ...
    def setAutoIndent(self, autoindent: bool) -> None: ...
    def setAutoCompletionUseSingle(self, single: 'QsciScintilla.AutoCompletionUseSingle') -> None: ...
    def setAutoCompletionThreshold(self, thresh: int) -> None: ...
    def setAutoCompletionSource(self, source: 'QsciScintilla.AutoCompletionSource') -> None: ...
    def setAutoCompletionShowSingle(self, single: bool) -> None: ...
    def setAutoCompletionReplaceWord(self, replace: bool) -> None: ...
    def setAutoCompletionCaseSensitivity(self, cs: bool) -> None: ...
    def selectToMatchingBrace(self) -> None: ...
    def selectAll(self, select: bool = ...) -> None: ...
    def resetSelectionForegroundColor(self) -> None: ...
    def resetSelectionBackgroundColor(self) -> None: ...
    def replaceSelectedText(self, text: QtCore.QString) -> None: ...
    def removeSelectedText(self) -> None: ...
    def redo(self) -> None: ...
    def paste(self) -> None: ...
    def moveToMatchingBrace(self) -> None: ...
    def insertAt(self, text: QtCore.QString, line: int, index: int) -> None: ...
    def insert(self, text: QtCore.QString) -> None: ...
    def indent(self, line: int) -> None: ...
    def foldLine(self, line: int) -> None: ...
    def foldAll(self, children: bool = ...) -> None: ...
    def ensureLineVisible(self, line: int) -> None: ...
    def ensureCursorVisible(self) -> None: ...
    def cut(self) -> None: ...
    def copy(self) -> None: ...
    def clear(self) -> None: ...
    def callTip(self) -> None: ...
    def autoCompleteFromDocument(self) -> None: ...
    def autoCompleteFromAPIs(self) -> None: ...
    def autoCompleteFromAll(self) -> None: ...
    def append(self, text: QtCore.QString) -> None: ...
    def write(self, io: QtCore.QIODevice) -> bool: ...
    def wrapIndentMode(self) -> 'QsciScintilla.WrapIndentMode': ...
    def wrapMode(self) -> 'QsciScintilla.WrapMode': ...
    def wordCharacters(self) -> str: ...
    def wordAtPoint(self, point: QtCore.QPoint) -> QtCore.QString: ...
    def wordAtLineIndex(self, line: int, index: int) -> QtCore.QString: ...
    def whitespaceVisibility(self) -> 'QsciScintilla.WhitespaceVisibility': ...
    def whitespaceSize(self) -> int: ...
    def textHeight(self, linenr: int) -> int: ...
    @typing.overload
    def text(self) -> QtCore.QString: ...
    @typing.overload
    def text(self, line: int) -> QtCore.QString: ...
    def tabWidth(self) -> int: ...
    def tabIndents(self) -> bool: ...
    def standardCommands(self) -> 'QsciCommandSet': ...
    def showUserList(self, id: int, list: QtCore.QStringList) -> None: ...
    def setWrapIndentMode(self, mode: 'QsciScintilla.WrapIndentMode') -> None: ...
    def setWhitespaceSize(self, size: int) -> None: ...
    def setWhitespaceForegroundColor(self, col: QtGui.QColor) -> None: ...
    def setWhitespaceBackgroundColor(self, col: QtGui.QColor) -> None: ...
    def setOverwriteMode(self, overwrite: bool) -> None: ...
    def setExtraDescent(self, extra: int) -> None: ...
    def setExtraAscent(self, extra: int) -> None: ...
    def setSelectionToEol(self, filled: bool) -> None: ...
    def selectionToEol(self) -> bool: ...
    def selectedText(self) -> QtCore.QString: ...
    def setWrapVisualFlags(self, endFlag: 'QsciScintilla.WrapVisualFlag', startFlag: 'QsciScintilla.WrapVisualFlag' = ..., indent: int = ...) -> None: ...
    def resetUnmatchedBraceIndicator(self) -> None: ...
    def setUnmatchedBraceIndicator(self, indicatorNumber: int) -> None: ...
    def setUnmatchedBraceForegroundColor(self, col: QtGui.QColor) -> None: ...
    def setUnmatchedBraceBackgroundColor(self, col: QtGui.QColor) -> None: ...
    def resetMatchedBraceIndicator(self) -> None: ...
    def setMatchedBraceIndicator(self, indicatorNumber: int) -> None: ...
    def setMatchedBraceForegroundColor(self, col: QtGui.QColor) -> None: ...
    def setMatchedBraceBackgroundColor(self, col: QtGui.QColor) -> None: ...
    def setMarkerForegroundColor(self, col: QtGui.QColor, markerNumber: int = ...) -> None: ...
    def setMarkerBackgroundColor(self, col: QtGui.QColor, markerNumber: int = ...) -> None: ...
    def clearMarginText(self, line: int = ...) -> None: ...
    def setMarginType(self, margin: int, type: 'QsciScintilla.MarginType') -> None: ...
    @typing.overload
    def setMarginText(self, line: int, text: QtCore.QString, style: int) -> None: ...
    @typing.overload
    def setMarginText(self, line: int, text: QtCore.QString, style: 'QsciStyle') -> None: ...
    @typing.overload
    def setMarginText(self, line: int, text: 'QsciStyledText') -> None: ...
    @typing.overload
    def setMarginText(self, line: int, text: typing.Any) -> None: ...
    def setMarginOptions(self, options: int) -> None: ...
    def setIndicatorOutlineColor(self, col: QtGui.QColor, indicatorNumber: int = ...) -> None: ...
    def setIndicatorHoverStyle(self, style: 'QsciScintilla.IndicatorStyle', indicatorNumber: int = ...) -> None: ...
    def setIndicatorHoverForegroundColor(self, col: QtGui.QColor, indicatorNumber: int = ...) -> None: ...
    def setIndicatorForegroundColor(self, col: QtGui.QColor, indicatorNumber: int = ...) -> None: ...
    def setIndicatorDrawUnder(self, under: bool, indicatorNumber: int = ...) -> None: ...
    def setHotspotWrap(self, enable: bool) -> None: ...
    def setHotspotUnderline(self, enable: bool) -> None: ...
    def setHotspotForegroundColor(self, col: QtGui.QColor) -> None: ...
    def setHotspotBackgroundColor(self, col: QtGui.QColor) -> None: ...
    def setFont(self, f: QtGui.QFont) -> None: ...
    def setFirstVisibleLine(self, linenr: int) -> None: ...
    def setEdgeMode(self, mode: 'QsciScintilla.EdgeMode') -> None: ...
    def setEdgeColumn(self, colnr: int) -> None: ...
    def setEdgeColor(self, col: QtGui.QColor) -> None: ...
    def setDocument(self, document: 'QsciDocument') -> None: ...
    def setContractedFolds(self, folds: typing.Any) -> None: ...
    def setCallTipsVisible(self, nr: int) -> None: ...
    def setCallTipsStyle(self, style: 'QsciScintilla.CallTipsStyle') -> None: ...
    def setCallTipsPosition(self, position: 'QsciScintilla.CallTipsPosition') -> None: ...
    def setCallTipsHighlightColor(self, col: QtGui.QColor) -> None: ...
    def setCallTipsForegroundColor(self, col: QtGui.QColor) -> None: ...
    def setCallTipsBackgroundColor(self, col: QtGui.QColor) -> None: ...
    def setAutoCompletionWordSeparators(self, separators: QtCore.QStringList) -> None: ...
    def setAutoCompletionFillups(self, fillups: str) -> None: ...
    def setAutoCompletionFillupsEnabled(self, enabled: bool) -> None: ...
    def setAnnotationDisplay(self, display: 'QsciScintilla.AnnotationDisplay') -> None: ...
    def setFoldMarginColors(self, fore: QtGui.QColor, back: QtGui.QColor) -> None: ...
    def resetHotspotForegroundColor(self) -> None: ...
    def resetHotspotBackgroundColor(self) -> None: ...
    def resetFoldMarginColors(self) -> None: ...
    def replace(self, replaceStr: QtCore.QString) -> None: ...
    @typing.overload
    def registerImage(self, id: int, pm: QtGui.QPixmap) -> None: ...
    @typing.overload
    def registerImage(self, id: int, im: QtGui.QImage) -> None: ...
    def recolor(self, start: int = ..., end: int = ...) -> None: ...
    def read(self, io: QtCore.QIODevice) -> bool: ...
    def positionFromLineIndex(self, line: int, index: int) -> int: ...
    def paper(self) -> QtGui.QColor: ...
    def overwriteMode(self) -> bool: ...
    def markerFindPrevious(self, linenr: int, mask: int) -> int: ...
    def markerFindNext(self, linenr: int, mask: int) -> int: ...
    def markerLine(self, mhandle: int) -> int: ...
    def markerDeleteHandle(self, mhandle: int) -> None: ...
    def markerDeleteAll(self, markerNumber: int = ...) -> None: ...
    def markerDelete(self, linenr: int, markerNumber: int = ...) -> None: ...
    def markersAtLine(self, linenr: int) -> int: ...
    def markerAdd(self, linenr: int, markerNumber: int) -> int: ...
    @typing.overload
    def markerDefine(self, sym: 'QsciScintilla.MarkerSymbol', markerNumber: int = ...) -> int: ...
    @typing.overload
    def markerDefine(self, ch: str, markerNumber: int = ...) -> int: ...
    @typing.overload
    def markerDefine(self, pm: QtGui.QPixmap, markerNumber: int = ...) -> int: ...
    @typing.overload
    def markerDefine(self, im: QtGui.QImage, markerNumber: int = ...) -> int: ...
    def marginWidth(self, margin: int) -> int: ...
    def marginType(self, margin: int) -> 'QsciScintilla.MarginType': ...
    def marginSensitivity(self, margin: int) -> bool: ...
    def marginOptions(self) -> int: ...
    def marginMarkerMask(self, margin: int) -> int: ...
    def marginLineNumbers(self, margin: int) -> bool: ...
    def lexer(self) -> 'QsciLexer': ...
    def length(self) -> int: ...
    def lines(self) -> int: ...
    def lineLength(self, line: int) -> int: ...
    def lineIndexFromPosition(self, position: int) -> typing.Tuple[int, int]: ...
    def lineAt(self, pos: QtCore.QPoint) -> int: ...
    def isWordCharacter(self, ch: str) -> bool: ...
    def isUtf8(self) -> bool: ...
    def isUndoAvailable(self) -> bool: ...
    def isRedoAvailable(self) -> bool: ...
    def isReadOnly(self) -> bool: ...
    def isModified(self) -> bool: ...
    def isListActive(self) -> bool: ...
    def isCallTipActive(self) -> bool: ...
    def indicatorDrawUnder(self, indicatorNumber: int) -> bool: ...
    def indicatorDefine(self, style: 'QsciScintilla.IndicatorStyle', indicatorNumber: int = ...) -> int: ...
    def fillIndicatorRange(self, lineFrom: int, indexFrom: int, lineTo: int, indexTo: int, indicatorNumber: int) -> None: ...
    def clearIndicatorRange(self, lineFrom: int, indexFrom: int, lineTo: int, indexTo: int, indicatorNumber: int) -> None: ...
    def indentationWidth(self) -> int: ...
    def indentationsUseTabs(self) -> bool: ...
    def indentationGuides(self) -> bool: ...
    def indentation(self, line: int) -> int: ...
    def hasSelectedText(self) -> bool: ...
    def getSelection(self) -> typing.Tuple[int, int, int, int]: ...
    def getCursorPosition(self) -> typing.Tuple[int, int]: ...
    def folding(self) -> 'QsciScintilla.FoldStyle': ...
    def firstVisibleLine(self) -> int: ...
    def findNext(self) -> bool: ...
    def findFirstInSelection(self, expr: QtCore.QString, re: bool, cs: bool, wo: bool, forward: bool = ..., show: bool = ..., posix: bool = ...) -> bool: ...
    def findFirst(self, expr: QtCore.QString, re: bool, cs: bool, wo: bool, wrap: bool, forward: bool = ..., line: int = ..., index: int = ..., show: bool = ..., posix: bool = ...) -> bool: ...
    def extraDescent(self) -> int: ...
    def extraAscent(self) -> int: ...
    def eolVisibility(self) -> bool: ...
    def eolMode(self) -> 'QsciScintilla.EolMode': ...
    def edgeMode(self) -> 'QsciScintilla.EdgeMode': ...
    def edgeColumn(self) -> int: ...
    def edgeColor(self) -> QtGui.QColor: ...
    def endUndoAction(self) -> None: ...
    def document(self) -> 'QsciDocument': ...
    def createStandardContextMenu(self) -> QtGui.QMenu: ...
    def convertEols(self, mode: 'QsciScintilla.EolMode') -> None: ...
    def contractedFolds(self) -> typing.Any: ...
    def color(self) -> QtGui.QColor: ...
    def clearRegisteredImages(self) -> None: ...
    def caseSensitive(self) -> bool: ...
    def cancelList(self) -> None: ...
    def callTipsVisible(self) -> int: ...
    def callTipsStyle(self) -> 'QsciScintilla.CallTipsStyle': ...
    def callTipsPosition(self) -> 'QsciScintilla.CallTipsPosition': ...
    def braceMatching(self) -> 'QsciScintilla.BraceMatch': ...
    def beginUndoAction(self) -> None: ...
    def backspaceUnindents(self) -> bool: ...
    def autoIndent(self) -> bool: ...
    def autoCompletionUseSingle(self) -> 'QsciScintilla.AutoCompletionUseSingle': ...
    def autoCompletionThreshold(self) -> int: ...
    def autoCompletionSource(self) -> 'QsciScintilla.AutoCompletionSource': ...
    def autoCompletionShowSingle(self) -> bool: ...
    def autoCompletionReplaceWord(self) -> bool: ...
    def autoCompletionFillupsEnabled(self) -> bool: ...
    def autoCompletionCaseSensitivity(self) -> bool: ...
    def clearAnnotations(self, line: int = ...) -> None: ...
    def annotationDisplay(self) -> 'QsciScintilla.AnnotationDisplay': ...
    def annotation(self, line: int) -> QtCore.QString: ...
    @typing.overload
    def annotate(self, line: int, text: QtCore.QString, style: int) -> None: ...
    @typing.overload
    def annotate(self, line: int, text: QtCore.QString, style: 'QsciStyle') -> None: ...
    @typing.overload
    def annotate(self, line: int, text: 'QsciStyledText') -> None: ...
    @typing.overload
    def annotate(self, line: int, text: typing.Any) -> None: ...
    def apiContext(self, pos: int) -> typing.Tuple[QtCore.QStringList, int, int]: ...


class QsciAbstractAPIs(QtCore.QObject):

    def __init__(self, lexer: typing.Optional['QsciLexer'] = ...) -> None: ...

    def callTips(self, context: QtCore.QStringList, commas: int, style: QsciScintilla.CallTipsStyle, shifts: typing.Any) -> QtCore.QStringList: ...
    def autoCompletionSelected(self, selection: QtCore.QString) -> None: ...
    def updateAutoCompletionList(self, context: QtCore.QStringList, list: QtCore.QStringList) -> QtCore.QStringList: ...
    def lexer(self) -> 'QsciLexer': ...


class QsciAPIs(QsciAbstractAPIs):

    def __init__(self, lexer: typing.Optional['QsciLexer'] = ...) -> None: ...

    def apiPreparationFinished(self) -> None: ...
    def apiPreparationStarted(self) -> None: ...
    def apiPreparationCancelled(self) -> None: ...
    def callTips(self, context: QtCore.QStringList, commas: int, style: QsciScintilla.CallTipsStyle, shifts: typing.Any) -> QtCore.QStringList: ...
    def autoCompletionSelected(self, selection: QtCore.QString) -> None: ...
    def updateAutoCompletionList(self, context: QtCore.QStringList, list: QtCore.QStringList) -> QtCore.QStringList: ...
    def installedAPIFiles(self) -> QtCore.QStringList: ...
    def event(self, e: QtCore.QEvent) -> bool: ...
    def savePrepared(self, filename: QtCore.QString = ...) -> bool: ...
    def loadPrepared(self, filename: QtCore.QString = ...) -> bool: ...
    def isPrepared(self, filename: QtCore.QString = ...) -> bool: ...
    def defaultPreparedName(self) -> QtCore.QString: ...
    def cancelPreparation(self) -> None: ...
    def prepare(self) -> None: ...
    def remove(self, entry: QtCore.QString) -> None: ...
    def load(self, fname: QtCore.QString) -> bool: ...
    def clear(self) -> None: ...
    def add(self, entry: QtCore.QString) -> None: ...


class QsciCommand(sip.wrapper):

    class Command(int): ...
    LineDown = ... # type: 'QsciCommand.Command'
    LineDownExtend = ... # type: 'QsciCommand.Command'
    LineDownRectExtend = ... # type: 'QsciCommand.Command'
    LineScrollDown = ... # type: 'QsciCommand.Command'
    LineUp = ... # type: 'QsciCommand.Command'
    LineUpExtend = ... # type: 'QsciCommand.Command'
    LineUpRectExtend = ... # type: 'QsciCommand.Command'
    LineScrollUp = ... # type: 'QsciCommand.Command'
    ScrollToStart = ... # type: 'QsciCommand.Command'
    ScrollToEnd = ... # type: 'QsciCommand.Command'
    VerticalCentreCaret = ... # type: 'QsciCommand.Command'
    ParaDown = ... # type: 'QsciCommand.Command'
    ParaDownExtend = ... # type: 'QsciCommand.Command'
    ParaUp = ... # type: 'QsciCommand.Command'
    ParaUpExtend = ... # type: 'QsciCommand.Command'
    CharLeft = ... # type: 'QsciCommand.Command'
    CharLeftExtend = ... # type: 'QsciCommand.Command'
    CharLeftRectExtend = ... # type: 'QsciCommand.Command'
    CharRight = ... # type: 'QsciCommand.Command'
    CharRightExtend = ... # type: 'QsciCommand.Command'
    CharRightRectExtend = ... # type: 'QsciCommand.Command'
    WordLeft = ... # type: 'QsciCommand.Command'
    WordLeftExtend = ... # type: 'QsciCommand.Command'
    WordRight = ... # type: 'QsciCommand.Command'
    WordRightExtend = ... # type: 'QsciCommand.Command'
    WordLeftEnd = ... # type: 'QsciCommand.Command'
    WordLeftEndExtend = ... # type: 'QsciCommand.Command'
    WordRightEnd = ... # type: 'QsciCommand.Command'
    WordRightEndExtend = ... # type: 'QsciCommand.Command'
    WordPartLeft = ... # type: 'QsciCommand.Command'
    WordPartLeftExtend = ... # type: 'QsciCommand.Command'
    WordPartRight = ... # type: 'QsciCommand.Command'
    WordPartRightExtend = ... # type: 'QsciCommand.Command'
    Home = ... # type: 'QsciCommand.Command'
    HomeExtend = ... # type: 'QsciCommand.Command'
    HomeRectExtend = ... # type: 'QsciCommand.Command'
    HomeDisplay = ... # type: 'QsciCommand.Command'
    HomeDisplayExtend = ... # type: 'QsciCommand.Command'
    HomeWrap = ... # type: 'QsciCommand.Command'
    HomeWrapExtend = ... # type: 'QsciCommand.Command'
    VCHome = ... # type: 'QsciCommand.Command'
    VCHomeExtend = ... # type: 'QsciCommand.Command'
    VCHomeRectExtend = ... # type: 'QsciCommand.Command'
    VCHomeWrap = ... # type: 'QsciCommand.Command'
    VCHomeWrapExtend = ... # type: 'QsciCommand.Command'
    LineEnd = ... # type: 'QsciCommand.Command'
    LineEndExtend = ... # type: 'QsciCommand.Command'
    LineEndRectExtend = ... # type: 'QsciCommand.Command'
    LineEndDisplay = ... # type: 'QsciCommand.Command'
    LineEndDisplayExtend = ... # type: 'QsciCommand.Command'
    LineEndWrap = ... # type: 'QsciCommand.Command'
    LineEndWrapExtend = ... # type: 'QsciCommand.Command'
    DocumentStart = ... # type: 'QsciCommand.Command'
    DocumentStartExtend = ... # type: 'QsciCommand.Command'
    DocumentEnd = ... # type: 'QsciCommand.Command'
    DocumentEndExtend = ... # type: 'QsciCommand.Command'
    PageUp = ... # type: 'QsciCommand.Command'
    PageUpExtend = ... # type: 'QsciCommand.Command'
    PageUpRectExtend = ... # type: 'QsciCommand.Command'
    PageDown = ... # type: 'QsciCommand.Command'
    PageDownExtend = ... # type: 'QsciCommand.Command'
    PageDownRectExtend = ... # type: 'QsciCommand.Command'
    StutteredPageUp = ... # type: 'QsciCommand.Command'
    StutteredPageUpExtend = ... # type: 'QsciCommand.Command'
    StutteredPageDown = ... # type: 'QsciCommand.Command'
    StutteredPageDownExtend = ... # type: 'QsciCommand.Command'
    Delete = ... # type: 'QsciCommand.Command'
    DeleteBack = ... # type: 'QsciCommand.Command'
    DeleteBackNotLine = ... # type: 'QsciCommand.Command'
    DeleteWordLeft = ... # type: 'QsciCommand.Command'
    DeleteWordRight = ... # type: 'QsciCommand.Command'
    DeleteWordRightEnd = ... # type: 'QsciCommand.Command'
    DeleteLineLeft = ... # type: 'QsciCommand.Command'
    DeleteLineRight = ... # type: 'QsciCommand.Command'
    LineDelete = ... # type: 'QsciCommand.Command'
    LineCut = ... # type: 'QsciCommand.Command'
    LineCopy = ... # type: 'QsciCommand.Command'
    LineTranspose = ... # type: 'QsciCommand.Command'
    LineDuplicate = ... # type: 'QsciCommand.Command'
    SelectAll = ... # type: 'QsciCommand.Command'
    MoveSelectedLinesUp = ... # type: 'QsciCommand.Command'
    MoveSelectedLinesDown = ... # type: 'QsciCommand.Command'
    SelectionDuplicate = ... # type: 'QsciCommand.Command'
    SelectionLowerCase = ... # type: 'QsciCommand.Command'
    SelectionUpperCase = ... # type: 'QsciCommand.Command'
    SelectionCut = ... # type: 'QsciCommand.Command'
    SelectionCopy = ... # type: 'QsciCommand.Command'
    Paste = ... # type: 'QsciCommand.Command'
    EditToggleOvertype = ... # type: 'QsciCommand.Command'
    Newline = ... # type: 'QsciCommand.Command'
    Formfeed = ... # type: 'QsciCommand.Command'
    Tab = ... # type: 'QsciCommand.Command'
    Backtab = ... # type: 'QsciCommand.Command'
    Cancel = ... # type: 'QsciCommand.Command'
    Undo = ... # type: 'QsciCommand.Command'
    Redo = ... # type: 'QsciCommand.Command'
    ZoomIn = ... # type: 'QsciCommand.Command'
    ZoomOut = ... # type: 'QsciCommand.Command'

    def description(self) -> QtCore.QString: ...
    @staticmethod
    def validKey(key: int) -> bool: ...
    def alternateKey(self) -> int: ...
    def key(self) -> int: ...
    def setAlternateKey(self, altkey: int) -> None: ...
    def setKey(self, key: int) -> None: ...
    def execute(self) -> None: ...
    def command(self) -> 'QsciCommand.Command': ...


class QsciCommandSet(sip.wrapper):

    def find(self, command: QsciCommand.Command) -> QsciCommand: ...
    def boundTo(self, key: int) -> QsciCommand: ...
    def clearAlternateKeys(self) -> None: ...
    def clearKeys(self) -> None: ...
    def commands(self) -> typing.Any: ...
    def writeSettings(self, qs: QtCore.QSettings, prefix: typing.Optional[str] = ...) -> bool: ...
    def readSettings(self, qs: QtCore.QSettings, prefix: typing.Optional[str] = ...) -> bool: ...


class QsciDocument(sip.wrapper):

    @typing.overload
    def __init__(self) -> None: ...
    @typing.overload
    def __init__(self, a0: 'QsciDocument') -> None: ...


class QsciLexer(QtCore.QObject):

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def propertyChanged(self, prop: str, val: str) -> None: ...
    def paperChanged(self, c: QtGui.QColor, style: int) -> None: ...
    def fontChanged(self, f: QtGui.QFont, style: int) -> None: ...
    def eolFillChanged(self, eolfilled: bool, style: int) -> None: ...
    def colorChanged(self, c: QtGui.QColor, style: int) -> None: ...
    def setPaper(self, c: QtGui.QColor, style: int = ...) -> None: ...
    def setFont(self, f: QtGui.QFont, style: int = ...) -> None: ...
    def setEolFill(self, eolfill: bool, style: int = ...) -> None: ...
    def setColor(self, c: QtGui.QColor, style: int = ...) -> None: ...
    def setAutoIndentStyle(self, autoindentstyle: int) -> None: ...
    def writeSettings(self, qs: QtCore.QSettings, prefix: typing.Optional[str] = ...) -> bool: ...
    def readSettings(self, qs: QtCore.QSettings, prefix: typing.Optional[str] = ...) -> bool: ...
    def wordCharacters(self) -> str: ...
    def styleBitsNeeded(self) -> int: ...
    def setDefaultPaper(self, c: QtGui.QColor) -> None: ...
    def setDefaultFont(self, f: QtGui.QFont) -> None: ...
    def setDefaultColor(self, c: QtGui.QColor) -> None: ...
    def setAPIs(self, apis: QsciAbstractAPIs) -> None: ...
    def refreshProperties(self) -> None: ...
    def editor(self) -> QsciScintilla: ...
    @typing.overload
    def defaultPaper(self) -> QtGui.QColor: ...
    @typing.overload
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    @typing.overload
    def defaultFont(self) -> QtGui.QFont: ...
    @typing.overload
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    @typing.overload
    def defaultColor(self) -> QtGui.QColor: ...
    @typing.overload
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def paper(self, style: int) -> QtGui.QColor: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def font(self, style: int) -> QtGui.QFont: ...
    def eolFill(self, style: int) -> bool: ...
    def color(self, style: int) -> QtGui.QColor: ...
    def autoIndentStyle(self) -> int: ...
    def apis(self) -> QsciAbstractAPIs: ...
    def lexerId(self) -> int: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerAVS(QsciLexer):

    Default = ... # type: int
    BlockComment = ... # type: int
    NestedBlockComment = ... # type: int
    LineComment = ... # type: int
    Number = ... # type: int
    Operator = ... # type: int
    Identifier = ... # type: int
    String = ... # type: int
    TripleString = ... # type: int
    Keyword = ... # type: int
    Filter = ... # type: int
    Plugin = ... # type: int
    Function = ... # type: int
    ClipProperty = ... # type: int
    KeywordSet6 = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def foldCompact(self) -> bool: ...
    def foldComments(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerBash(QsciLexer):

    Default = ... # type: int
    Error = ... # type: int
    Comment = ... # type: int
    Number = ... # type: int
    Keyword = ... # type: int
    DoubleQuotedString = ... # type: int
    SingleQuotedString = ... # type: int
    Operator = ... # type: int
    Identifier = ... # type: int
    Scalar = ... # type: int
    ParameterExpansion = ... # type: int
    Backticks = ... # type: int
    HereDocumentDelimiter = ... # type: int
    SingleQuotedHereDocument = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def foldCompact(self) -> bool: ...
    def foldComments(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerBatch(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    Keyword = ... # type: int
    Label = ... # type: int
    HideCommandChar = ... # type: int
    ExternalCommand = ... # type: int
    Variable = ... # type: int
    Operator = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerCMake(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    String = ... # type: int
    StringLeftQuote = ... # type: int
    StringRightQuote = ... # type: int
    Function = ... # type: int
    Variable = ... # type: int
    Label = ... # type: int
    KeywordSet3 = ... # type: int
    BlockWhile = ... # type: int
    BlockForeach = ... # type: int
    BlockIf = ... # type: int
    BlockMacro = ... # type: int
    StringVariable = ... # type: int
    Number = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldAtElse(self, fold: bool) -> None: ...
    def foldAtElse(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerCoffeeScript(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    CommentLine = ... # type: int
    CommentDoc = ... # type: int
    Number = ... # type: int
    Keyword = ... # type: int
    DoubleQuotedString = ... # type: int
    SingleQuotedString = ... # type: int
    UUID = ... # type: int
    PreProcessor = ... # type: int
    Operator = ... # type: int
    Identifier = ... # type: int
    UnclosedString = ... # type: int
    VerbatimString = ... # type: int
    Regex = ... # type: int
    CommentLineDoc = ... # type: int
    KeywordSet2 = ... # type: int
    CommentDocKeyword = ... # type: int
    CommentDocKeywordError = ... # type: int
    GlobalClass = ... # type: int
    CommentBlock = ... # type: int
    BlockRegex = ... # type: int
    BlockRegexComment = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setStylePreprocessor(self, style: bool) -> None: ...
    def stylePreprocessor(self) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def foldCompact(self) -> bool: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def foldComments(self) -> bool: ...
    def setDollarsAllowed(self, allowed: bool) -> None: ...
    def dollarsAllowed(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerCPP(QsciLexer):

    Default = ... # type: int
    InactiveDefault = ... # type: int
    Comment = ... # type: int
    InactiveComment = ... # type: int
    CommentLine = ... # type: int
    InactiveCommentLine = ... # type: int
    CommentDoc = ... # type: int
    InactiveCommentDoc = ... # type: int
    Number = ... # type: int
    InactiveNumber = ... # type: int
    Keyword = ... # type: int
    InactiveKeyword = ... # type: int
    DoubleQuotedString = ... # type: int
    InactiveDoubleQuotedString = ... # type: int
    SingleQuotedString = ... # type: int
    InactiveSingleQuotedString = ... # type: int
    UUID = ... # type: int
    InactiveUUID = ... # type: int
    PreProcessor = ... # type: int
    InactivePreProcessor = ... # type: int
    Operator = ... # type: int
    InactiveOperator = ... # type: int
    Identifier = ... # type: int
    InactiveIdentifier = ... # type: int
    UnclosedString = ... # type: int
    InactiveUnclosedString = ... # type: int
    VerbatimString = ... # type: int
    InactiveVerbatimString = ... # type: int
    Regex = ... # type: int
    InactiveRegex = ... # type: int
    CommentLineDoc = ... # type: int
    InactiveCommentLineDoc = ... # type: int
    KeywordSet2 = ... # type: int
    InactiveKeywordSet2 = ... # type: int
    CommentDocKeyword = ... # type: int
    InactiveCommentDocKeyword = ... # type: int
    CommentDocKeywordError = ... # type: int
    InactiveCommentDocKeywordError = ... # type: int
    GlobalClass = ... # type: int
    InactiveGlobalClass = ... # type: int
    RawString = ... # type: int
    InactiveRawString = ... # type: int
    TripleQuotedVerbatimString = ... # type: int
    InactiveTripleQuotedVerbatimString = ... # type: int
    HashQuotedString = ... # type: int
    InactiveHashQuotedString = ... # type: int
    PreProcessorComment = ... # type: int
    InactivePreProcessorComment = ... # type: int
    PreProcessorCommentLineDoc = ... # type: int
    InactivePreProcessorCommentLineDoc = ... # type: int
    UserLiteral = ... # type: int
    InactiveUserLiteral = ... # type: int
    TaskMarker = ... # type: int
    InactiveTaskMarker = ... # type: int
    EscapeSequence = ... # type: int
    InactiveEscapeSequence = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ..., caseInsensitiveKeywords: bool = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setStylePreprocessor(self, style: bool) -> None: ...
    def setFoldPreprocessor(self, fold: bool) -> None: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def setFoldAtElse(self, fold: bool) -> None: ...
    def verbatimStringEscapeSequencesAllowed(self) -> bool: ...
    def setVerbatimStringEscapeSequencesAllowed(self, allowed: bool) -> None: ...
    def highlightEscapeSequences(self) -> bool: ...
    def setHighlightEscapeSequences(self, enabled: bool) -> None: ...
    def highlightBackQuotedStrings(self) -> bool: ...
    def setHighlightBackQuotedStrings(self, enabled: bool) -> None: ...
    def highlightHashQuotedStrings(self) -> bool: ...
    def setHighlightHashQuotedStrings(self, enable: bool) -> None: ...
    def highlightTripleQuotedStrings(self) -> bool: ...
    def setHighlightTripleQuotedStrings(self, enable: bool) -> None: ...
    def dollarsAllowed(self) -> bool: ...
    def setDollarsAllowed(self, allowed: bool) -> None: ...
    def stylePreprocessor(self) -> bool: ...
    def foldPreprocessor(self) -> bool: ...
    def foldCompact(self) -> bool: ...
    def foldComments(self) -> bool: ...
    def foldAtElse(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerCSharp(QsciLexerCPP):

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def language(self) -> str: ...


class QsciLexerCSS(QsciLexer):

    Default = ... # type: int
    Tag = ... # type: int
    ClassSelector = ... # type: int
    PseudoClass = ... # type: int
    UnknownPseudoClass = ... # type: int
    Operator = ... # type: int
    CSS1Property = ... # type: int
    UnknownProperty = ... # type: int
    Value = ... # type: int
    Comment = ... # type: int
    IDSelector = ... # type: int
    Important = ... # type: int
    AtRule = ... # type: int
    DoubleQuotedString = ... # type: int
    SingleQuotedString = ... # type: int
    CSS2Property = ... # type: int
    Attribute = ... # type: int
    CSS3Property = ... # type: int
    PseudoElement = ... # type: int
    ExtendedCSSProperty = ... # type: int
    ExtendedPseudoClass = ... # type: int
    ExtendedPseudoElement = ... # type: int
    MediaRule = ... # type: int
    Variable = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def SCSSLanguage(self) -> bool: ...
    def setSCSSLanguage(self, enable: bool) -> None: ...
    def LessLanguage(self) -> bool: ...
    def setLessLanguage(self, enable: bool) -> None: ...
    def HSSLanguage(self) -> bool: ...
    def setHSSLanguage(self, enable: bool) -> None: ...
    def foldCompact(self) -> bool: ...
    def foldComments(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerCustom(QsciLexer):

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def styleText(self, start: int, end: int) -> None: ...
    def startStyling(self, pos: int, styleBits: int = ...) -> None: ...
    @typing.overload
    def setStyling(self, length: int, style: int) -> None: ...
    @typing.overload
    def setStyling(self, length: int, style: 'QsciStyle') -> None: ...
    def styleBitsNeeded(self) -> int: ...
    def setEditor(self, editor: QsciScintilla) -> None: ...


class QsciLexerD(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    CommentLine = ... # type: int
    CommentDoc = ... # type: int
    CommentNested = ... # type: int
    Number = ... # type: int
    Keyword = ... # type: int
    KeywordSecondary = ... # type: int
    KeywordDoc = ... # type: int
    Typedefs = ... # type: int
    String = ... # type: int
    UnclosedString = ... # type: int
    Character = ... # type: int
    Operator = ... # type: int
    Identifier = ... # type: int
    CommentLineDoc = ... # type: int
    CommentDocKeyword = ... # type: int
    CommentDocKeywordError = ... # type: int
    BackquoteString = ... # type: int
    RawString = ... # type: int
    KeywordSet5 = ... # type: int
    KeywordSet6 = ... # type: int
    KeywordSet7 = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def setFoldAtElse(self, fold: bool) -> None: ...
    def foldCompact(self) -> bool: ...
    def foldComments(self) -> bool: ...
    def foldAtElse(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerDiff(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    Command = ... # type: int
    Header = ... # type: int
    Position = ... # type: int
    LineRemoved = ... # type: int
    LineAdded = ... # type: int
    LineChanged = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerFortran77(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    Number = ... # type: int
    SingleQuotedString = ... # type: int
    DoubleQuotedString = ... # type: int
    UnclosedString = ... # type: int
    Operator = ... # type: int
    Identifier = ... # type: int
    Keyword = ... # type: int
    IntrinsicFunction = ... # type: int
    ExtendedFunction = ... # type: int
    PreProcessor = ... # type: int
    DottedOperator = ... # type: int
    Label = ... # type: int
    Continuation = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def foldCompact(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerFortran(QsciLexerFortran77):

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def keywords(self, set: int) -> str: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerHTML(QsciLexer):

    Default = ... # type: int
    Tag = ... # type: int
    UnknownTag = ... # type: int
    Attribute = ... # type: int
    UnknownAttribute = ... # type: int
    HTMLNumber = ... # type: int
    HTMLDoubleQuotedString = ... # type: int
    HTMLSingleQuotedString = ... # type: int
    OtherInTag = ... # type: int
    HTMLComment = ... # type: int
    Entity = ... # type: int
    XMLTagEnd = ... # type: int
    XMLStart = ... # type: int
    XMLEnd = ... # type: int
    Script = ... # type: int
    ASPAtStart = ... # type: int
    ASPStart = ... # type: int
    CDATA = ... # type: int
    PHPStart = ... # type: int
    HTMLValue = ... # type: int
    ASPXCComment = ... # type: int
    SGMLDefault = ... # type: int
    SGMLCommand = ... # type: int
    SGMLParameter = ... # type: int
    SGMLDoubleQuotedString = ... # type: int
    SGMLSingleQuotedString = ... # type: int
    SGMLError = ... # type: int
    SGMLSpecial = ... # type: int
    SGMLEntity = ... # type: int
    SGMLComment = ... # type: int
    SGMLParameterComment = ... # type: int
    SGMLBlockDefault = ... # type: int
    JavaScriptStart = ... # type: int
    JavaScriptDefault = ... # type: int
    JavaScriptComment = ... # type: int
    JavaScriptCommentLine = ... # type: int
    JavaScriptCommentDoc = ... # type: int
    JavaScriptNumber = ... # type: int
    JavaScriptWord = ... # type: int
    JavaScriptKeyword = ... # type: int
    JavaScriptDoubleQuotedString = ... # type: int
    JavaScriptSingleQuotedString = ... # type: int
    JavaScriptSymbol = ... # type: int
    JavaScriptUnclosedString = ... # type: int
    JavaScriptRegex = ... # type: int
    ASPJavaScriptStart = ... # type: int
    ASPJavaScriptDefault = ... # type: int
    ASPJavaScriptComment = ... # type: int
    ASPJavaScriptCommentLine = ... # type: int
    ASPJavaScriptCommentDoc = ... # type: int
    ASPJavaScriptNumber = ... # type: int
    ASPJavaScriptWord = ... # type: int
    ASPJavaScriptKeyword = ... # type: int
    ASPJavaScriptDoubleQuotedString = ... # type: int
    ASPJavaScriptSingleQuotedString = ... # type: int
    ASPJavaScriptSymbol = ... # type: int
    ASPJavaScriptUnclosedString = ... # type: int
    ASPJavaScriptRegex = ... # type: int
    VBScriptStart = ... # type: int
    VBScriptDefault = ... # type: int
    VBScriptComment = ... # type: int
    VBScriptNumber = ... # type: int
    VBScriptKeyword = ... # type: int
    VBScriptString = ... # type: int
    VBScriptIdentifier = ... # type: int
    VBScriptUnclosedString = ... # type: int
    ASPVBScriptStart = ... # type: int
    ASPVBScriptDefault = ... # type: int
    ASPVBScriptComment = ... # type: int
    ASPVBScriptNumber = ... # type: int
    ASPVBScriptKeyword = ... # type: int
    ASPVBScriptString = ... # type: int
    ASPVBScriptIdentifier = ... # type: int
    ASPVBScriptUnclosedString = ... # type: int
    PythonStart = ... # type: int
    PythonDefault = ... # type: int
    PythonComment = ... # type: int
    PythonNumber = ... # type: int
    PythonDoubleQuotedString = ... # type: int
    PythonSingleQuotedString = ... # type: int
    PythonKeyword = ... # type: int
    PythonTripleSingleQuotedString = ... # type: int
    PythonTripleDoubleQuotedString = ... # type: int
    PythonClassName = ... # type: int
    PythonFunctionMethodName = ... # type: int
    PythonOperator = ... # type: int
    PythonIdentifier = ... # type: int
    ASPPythonStart = ... # type: int
    ASPPythonDefault = ... # type: int
    ASPPythonComment = ... # type: int
    ASPPythonNumber = ... # type: int
    ASPPythonDoubleQuotedString = ... # type: int
    ASPPythonSingleQuotedString = ... # type: int
    ASPPythonKeyword = ... # type: int
    ASPPythonTripleSingleQuotedString = ... # type: int
    ASPPythonTripleDoubleQuotedString = ... # type: int
    ASPPythonClassName = ... # type: int
    ASPPythonFunctionMethodName = ... # type: int
    ASPPythonOperator = ... # type: int
    ASPPythonIdentifier = ... # type: int
    PHPDefault = ... # type: int
    PHPDoubleQuotedString = ... # type: int
    PHPSingleQuotedString = ... # type: int
    PHPKeyword = ... # type: int
    PHPNumber = ... # type: int
    PHPVariable = ... # type: int
    PHPComment = ... # type: int
    PHPCommentLine = ... # type: int
    PHPDoubleQuotedVariable = ... # type: int
    PHPOperator = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setCaseSensitiveTags(self, sens: bool) -> None: ...
    def setFoldPreprocessor(self, fold: bool) -> None: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def makoTemplates(self) -> bool: ...
    def setMakoTemplates(self, enable: bool) -> None: ...
    def foldScriptHeredocs(self) -> bool: ...
    def setFoldScriptHeredocs(self, fold: bool) -> None: ...
    def foldScriptComments(self) -> bool: ...
    def setFoldScriptComments(self, fold: bool) -> None: ...
    def foldPreprocessor(self) -> bool: ...
    def foldCompact(self) -> bool: ...
    def djangoTemplates(self) -> bool: ...
    def setDjangoTemplates(self, enable: bool) -> None: ...
    def caseSensitiveTags(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerIDL(QsciLexerCPP):

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def language(self) -> str: ...


class QsciLexerJava(QsciLexerCPP):

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def keywords(self, set: int) -> str: ...
    def language(self) -> str: ...


class QsciLexerJavaScript(QsciLexerCPP):

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def language(self) -> str: ...


class QsciLexerLua(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    LineComment = ... # type: int
    Number = ... # type: int
    Keyword = ... # type: int
    String = ... # type: int
    Character = ... # type: int
    LiteralString = ... # type: int
    Preprocessor = ... # type: int
    Operator = ... # type: int
    Identifier = ... # type: int
    UnclosedString = ... # type: int
    BasicFunctions = ... # type: int
    StringTableMathsFunctions = ... # type: int
    CoroutinesIOSystemFacilities = ... # type: int
    KeywordSet5 = ... # type: int
    KeywordSet6 = ... # type: int
    KeywordSet7 = ... # type: int
    KeywordSet8 = ... # type: int
    Label = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def foldCompact(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerMakefile(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    Preprocessor = ... # type: int
    Variable = ... # type: int
    Operator = ... # type: int
    Target = ... # type: int
    Error = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerMatlab(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    Command = ... # type: int
    Number = ... # type: int
    Keyword = ... # type: int
    SingleQuotedString = ... # type: int
    Operator = ... # type: int
    Identifier = ... # type: int
    DoubleQuotedString = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerOctave(QsciLexerMatlab):

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def keywords(self, set: int) -> str: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerPascal(QsciLexer):

    Default = ... # type: int
    Identifier = ... # type: int
    Comment = ... # type: int
    CommentParenthesis = ... # type: int
    CommentLine = ... # type: int
    PreProcessor = ... # type: int
    PreProcessorParenthesis = ... # type: int
    Number = ... # type: int
    HexNumber = ... # type: int
    Keyword = ... # type: int
    SingleQuotedString = ... # type: int
    UnclosedString = ... # type: int
    Character = ... # type: int
    Operator = ... # type: int
    Asm = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldPreprocessor(self, fold: bool) -> None: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def smartHighlighting(self) -> bool: ...
    def setSmartHighlighting(self, enabled: bool) -> None: ...
    def foldPreprocessor(self) -> bool: ...
    def foldCompact(self) -> bool: ...
    def foldComments(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerPerl(QsciLexer):

    Default = ... # type: int
    Error = ... # type: int
    Comment = ... # type: int
    POD = ... # type: int
    Number = ... # type: int
    Keyword = ... # type: int
    DoubleQuotedString = ... # type: int
    SingleQuotedString = ... # type: int
    Operator = ... # type: int
    Identifier = ... # type: int
    Scalar = ... # type: int
    Array = ... # type: int
    Hash = ... # type: int
    SymbolTable = ... # type: int
    Regex = ... # type: int
    Substitution = ... # type: int
    Backticks = ... # type: int
    DataSection = ... # type: int
    HereDocumentDelimiter = ... # type: int
    SingleQuotedHereDocument = ... # type: int
    DoubleQuotedHereDocument = ... # type: int
    BacktickHereDocument = ... # type: int
    QuotedStringQ = ... # type: int
    QuotedStringQQ = ... # type: int
    QuotedStringQX = ... # type: int
    QuotedStringQR = ... # type: int
    QuotedStringQW = ... # type: int
    PODVerbatim = ... # type: int
    SubroutinePrototype = ... # type: int
    FormatIdentifier = ... # type: int
    FormatBody = ... # type: int
    DoubleQuotedStringVar = ... # type: int
    Translation = ... # type: int
    RegexVar = ... # type: int
    SubstitutionVar = ... # type: int
    BackticksVar = ... # type: int
    DoubleQuotedHereDocumentVar = ... # type: int
    BacktickHereDocumentVar = ... # type: int
    QuotedStringQQVar = ... # type: int
    QuotedStringQXVar = ... # type: int
    QuotedStringQRVar = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def foldPODBlocks(self) -> bool: ...
    def setFoldPODBlocks(self, fold: bool) -> None: ...
    def foldPackages(self) -> bool: ...
    def setFoldPackages(self, fold: bool) -> None: ...
    def foldAtElse(self) -> bool: ...
    def setFoldAtElse(self, fold: bool) -> None: ...
    def foldCompact(self) -> bool: ...
    def foldComments(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerPostScript(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    DSCComment = ... # type: int
    DSCCommentValue = ... # type: int
    Number = ... # type: int
    Name = ... # type: int
    Keyword = ... # type: int
    Literal = ... # type: int
    ImmediateEvalLiteral = ... # type: int
    ArrayParenthesis = ... # type: int
    DictionaryParenthesis = ... # type: int
    ProcedureParenthesis = ... # type: int
    Text = ... # type: int
    HexString = ... # type: int
    Base85String = ... # type: int
    BadStringCharacter = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldAtElse(self, fold: bool) -> None: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def setLevel(self, level: int) -> None: ...
    def setTokenize(self, tokenize: bool) -> None: ...
    def foldAtElse(self) -> bool: ...
    def foldCompact(self) -> bool: ...
    def level(self) -> int: ...
    def tokenize(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerPO(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    MessageId = ... # type: int
    MessageIdText = ... # type: int
    MessageString = ... # type: int
    MessageStringText = ... # type: int
    MessageContext = ... # type: int
    MessageContextText = ... # type: int
    Fuzzy = ... # type: int
    ProgrammerComment = ... # type: int
    Reference = ... # type: int
    Flags = ... # type: int
    MessageIdTextEOL = ... # type: int
    MessageStringTextEOL = ... # type: int
    MessageContextTextEOL = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def foldCompact(self) -> bool: ...
    def foldComments(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def description(self, style: int) -> QtCore.QString: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerPOV(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    CommentLine = ... # type: int
    Number = ... # type: int
    Operator = ... # type: int
    Identifier = ... # type: int
    String = ... # type: int
    UnclosedString = ... # type: int
    Directive = ... # type: int
    BadDirective = ... # type: int
    ObjectsCSGAppearance = ... # type: int
    TypesModifiersItems = ... # type: int
    PredefinedIdentifiers = ... # type: int
    PredefinedFunctions = ... # type: int
    KeywordSet6 = ... # type: int
    KeywordSet7 = ... # type: int
    KeywordSet8 = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldDirectives(self, fold: bool) -> None: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def foldDirectives(self) -> bool: ...
    def foldCompact(self) -> bool: ...
    def foldComments(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerProperties(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    Section = ... # type: int
    Assignment = ... # type: int
    DefaultValue = ... # type: int
    Key = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def initialSpaces(self) -> bool: ...
    def setInitialSpaces(self, enable: bool) -> None: ...
    def foldCompact(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerPython(QsciLexer):

    class IndentationWarning(int): ...
    NoWarning = ... # type: 'QsciLexerPython.IndentationWarning'
    Inconsistent = ... # type: 'QsciLexerPython.IndentationWarning'
    TabsAfterSpaces = ... # type: 'QsciLexerPython.IndentationWarning'
    Spaces = ... # type: 'QsciLexerPython.IndentationWarning'
    Tabs = ... # type: 'QsciLexerPython.IndentationWarning'

    Default = ... # type: int
    Comment = ... # type: int
    Number = ... # type: int
    DoubleQuotedString = ... # type: int
    SingleQuotedString = ... # type: int
    Keyword = ... # type: int
    TripleSingleQuotedString = ... # type: int
    TripleDoubleQuotedString = ... # type: int
    ClassName = ... # type: int
    FunctionMethodName = ... # type: int
    Operator = ... # type: int
    Identifier = ... # type: int
    CommentBlock = ... # type: int
    UnclosedString = ... # type: int
    HighlightedIdentifier = ... # type: int
    Decorator = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setIndentationWarning(self, warn: 'QsciLexerPython.IndentationWarning') -> None: ...
    def setFoldQuotes(self, fold: bool) -> None: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def v3BytesAllowed(self) -> bool: ...
    def setV3BytesAllowed(self, allowed: bool) -> None: ...
    def v3BinaryOctalAllowed(self) -> bool: ...
    def setV3BinaryOctalAllowed(self, allowed: bool) -> None: ...
    def v2UnicodeAllowed(self) -> bool: ...
    def setV2UnicodeAllowed(self, allowed: bool) -> None: ...
    def stringsOverNewlineAllowed(self) -> bool: ...
    def setStringsOverNewlineAllowed(self, allowed: bool) -> None: ...
    def highlightSubidentifiers(self) -> bool: ...
    def setHighlightSubidentifiers(self, enabled: bool) -> None: ...
    def indentationWarning(self) -> 'QsciLexerPython.IndentationWarning': ...
    def foldQuotes(self) -> bool: ...
    def foldCompact(self) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def foldComments(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerRuby(QsciLexer):

    Default = ... # type: int
    Error = ... # type: int
    Comment = ... # type: int
    POD = ... # type: int
    Number = ... # type: int
    Keyword = ... # type: int
    DoubleQuotedString = ... # type: int
    SingleQuotedString = ... # type: int
    ClassName = ... # type: int
    FunctionMethodName = ... # type: int
    Operator = ... # type: int
    Identifier = ... # type: int
    Regex = ... # type: int
    Global = ... # type: int
    Symbol = ... # type: int
    ModuleName = ... # type: int
    InstanceVariable = ... # type: int
    ClassVariable = ... # type: int
    Backticks = ... # type: int
    DataSection = ... # type: int
    HereDocumentDelimiter = ... # type: int
    HereDocument = ... # type: int
    PercentStringq = ... # type: int
    PercentStringQ = ... # type: int
    PercentStringx = ... # type: int
    PercentStringr = ... # type: int
    PercentStringw = ... # type: int
    DemotedKeyword = ... # type: int
    Stdin = ... # type: int
    Stdout = ... # type: int
    Stderr = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def foldCompact(self) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def foldComments(self) -> bool: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def refreshProperties(self) -> None: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, a0: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerSpice(QsciLexer):

    Default = ... # type: int
    Identifier = ... # type: int
    Command = ... # type: int
    Function = ... # type: int
    Parameter = ... # type: int
    Number = ... # type: int
    Delimiter = ... # type: int
    Value = ... # type: int
    Comment = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def description(self, style: int) -> QtCore.QString: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def keywords(self, set: int) -> str: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerSQL(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    CommentLine = ... # type: int
    CommentDoc = ... # type: int
    Number = ... # type: int
    Keyword = ... # type: int
    DoubleQuotedString = ... # type: int
    SingleQuotedString = ... # type: int
    PlusKeyword = ... # type: int
    PlusPrompt = ... # type: int
    Operator = ... # type: int
    Identifier = ... # type: int
    PlusComment = ... # type: int
    CommentLineHash = ... # type: int
    CommentDocKeyword = ... # type: int
    CommentDocKeywordError = ... # type: int
    KeywordSet5 = ... # type: int
    KeywordSet6 = ... # type: int
    KeywordSet7 = ... # type: int
    KeywordSet8 = ... # type: int
    QuotedIdentifier = ... # type: int
    QuotedOperator = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def setBackslashEscapes(self, enable: bool) -> None: ...
    def quotedIdentifiers(self) -> bool: ...
    def setQuotedIdentifiers(self, enable: bool) -> None: ...
    def hashComments(self) -> bool: ...
    def setHashComments(self, enable: bool) -> None: ...
    def foldOnlyBegin(self) -> bool: ...
    def setFoldOnlyBegin(self, fold: bool) -> None: ...
    def foldCompact(self) -> bool: ...
    def foldComments(self) -> bool: ...
    def foldAtElse(self) -> bool: ...
    def setFoldAtElse(self, fold: bool) -> None: ...
    def dottedWords(self) -> bool: ...
    def setDottedWords(self, enable: bool) -> None: ...
    def backslashEscapes(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerTCL(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    CommentLine = ... # type: int
    Number = ... # type: int
    QuotedKeyword = ... # type: int
    QuotedString = ... # type: int
    Operator = ... # type: int
    Identifier = ... # type: int
    Substitution = ... # type: int
    SubstitutionBrace = ... # type: int
    Modifier = ... # type: int
    ExpandKeyword = ... # type: int
    TCLKeyword = ... # type: int
    TkKeyword = ... # type: int
    ITCLKeyword = ... # type: int
    TkCommand = ... # type: int
    KeywordSet6 = ... # type: int
    KeywordSet7 = ... # type: int
    KeywordSet8 = ... # type: int
    KeywordSet9 = ... # type: int
    CommentBox = ... # type: int
    CommentBlock = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def foldComments(self) -> bool: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def refreshProperties(self) -> None: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerTeX(QsciLexer):

    Default = ... # type: int
    Special = ... # type: int
    Group = ... # type: int
    Symbol = ... # type: int
    Command = ... # type: int
    Text = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def processIf(self) -> bool: ...
    def setProcessIf(self, enable: bool) -> None: ...
    def processComments(self) -> bool: ...
    def setProcessComments(self, enable: bool) -> None: ...
    def foldCompact(self) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def foldComments(self) -> bool: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def refreshProperties(self) -> None: ...
    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerVerilog(QsciLexer):

    Default = ... # type: int
    InactiveDefault = ... # type: int
    Comment = ... # type: int
    InactiveComment = ... # type: int
    CommentLine = ... # type: int
    InactiveCommentLine = ... # type: int
    CommentBang = ... # type: int
    InactiveCommentBang = ... # type: int
    Number = ... # type: int
    InactiveNumber = ... # type: int
    Keyword = ... # type: int
    InactiveKeyword = ... # type: int
    String = ... # type: int
    InactiveString = ... # type: int
    KeywordSet2 = ... # type: int
    InactiveKeywordSet2 = ... # type: int
    SystemTask = ... # type: int
    InactiveSystemTask = ... # type: int
    Preprocessor = ... # type: int
    InactivePreprocessor = ... # type: int
    Operator = ... # type: int
    InactiveOperator = ... # type: int
    Identifier = ... # type: int
    InactiveIdentifier = ... # type: int
    UnclosedString = ... # type: int
    InactiveUnclosedString = ... # type: int
    UserKeywordSet = ... # type: int
    InactiveUserKeywordSet = ... # type: int
    CommentKeyword = ... # type: int
    InactiveCommentKeyword = ... # type: int
    DeclareInputPort = ... # type: int
    InactiveDeclareInputPort = ... # type: int
    DeclareOutputPort = ... # type: int
    InactiveDeclareOutputPort = ... # type: int
    DeclareInputOutputPort = ... # type: int
    InactiveDeclareInputOutputPort = ... # type: int
    PortConnection = ... # type: int
    InactivePortConnection = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def foldAtModule(self) -> bool: ...
    def setFoldAtModule(self, fold: bool) -> None: ...
    def foldPreprocessor(self) -> bool: ...
    def setFoldPreprocessor(self, fold: bool) -> None: ...
    def foldCompact(self) -> bool: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def foldComments(self) -> bool: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def foldAtElse(self) -> bool: ...
    def setFoldAtElse(self, fold: bool) -> None: ...
    def refreshProperties(self) -> None: ...
    def wordCharacters(self) -> str: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerVHDL(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    CommentLine = ... # type: int
    Number = ... # type: int
    String = ... # type: int
    Operator = ... # type: int
    Identifier = ... # type: int
    UnclosedString = ... # type: int
    Keyword = ... # type: int
    StandardOperator = ... # type: int
    Attribute = ... # type: int
    StandardFunction = ... # type: int
    StandardPackage = ... # type: int
    StandardType = ... # type: int
    KeywordSet7 = ... # type: int
    CommentBlock = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldAtParenthesis(self, fold: bool) -> None: ...
    def setFoldAtBegin(self, fold: bool) -> None: ...
    def setFoldAtElse(self, fold: bool) -> None: ...
    def setFoldCompact(self, fold: bool) -> None: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def foldAtParenthesis(self) -> bool: ...
    def foldAtBegin(self) -> bool: ...
    def foldAtElse(self) -> bool: ...
    def foldCompact(self) -> bool: ...
    def foldComments(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerXML(QsciLexerHTML):

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def scriptsStyled(self) -> bool: ...
    def setScriptsStyled(self, styled: bool) -> None: ...
    def refreshProperties(self) -> None: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciLexerYAML(QsciLexer):

    Default = ... # type: int
    Comment = ... # type: int
    Identifier = ... # type: int
    Keyword = ... # type: int
    Number = ... # type: int
    Reference = ... # type: int
    DocumentDelimiter = ... # type: int
    TextBlockMarker = ... # type: int
    SyntaxErrorMarker = ... # type: int
    Operator = ... # type: int

    def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...

    def writeProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def readProperties(self, qs: QtCore.QSettings, prefix: QtCore.QString) -> bool: ...
    def setFoldComments(self, fold: bool) -> None: ...
    def foldComments(self) -> bool: ...
    def refreshProperties(self) -> None: ...
    def description(self, style: int) -> QtCore.QString: ...
    def keywords(self, set: int) -> str: ...
    def defaultPaper(self, style: int) -> QtGui.QColor: ...
    def defaultFont(self, style: int) -> QtGui.QFont: ...
    def defaultEolFill(self, style: int) -> bool: ...
    def defaultColor(self, style: int) -> QtGui.QColor: ...
    def lexer(self) -> str: ...
    def language(self) -> str: ...


class QsciMacro(QtCore.QObject):

    @typing.overload
    def __init__(self, parent: QsciScintilla) -> None: ...
    @typing.overload
    def __init__(self, asc: QtCore.QString, parent: QsciScintilla) -> None: ...

    def endRecording(self) -> None: ...
    def startRecording(self) -> None: ...
    def play(self) -> None: ...
    def save(self) -> QtCore.QString: ...
    def load(self, asc: QtCore.QString) -> bool: ...
    def clear(self) -> None: ...


class QsciPrinter(QtGui.QPrinter):

    def __init__(self, mode: QtGui.QPrinter.PrinterMode = ...) -> None: ...

    def setWrapMode(self, a0: QsciScintilla.WrapMode) -> None: ...
    def wrapMode(self) -> QsciScintilla.WrapMode: ...
    def printRange(self, qsb: QsciScintillaBase, from_: int = ..., to: int = ...) -> int: ...
    def setMagnification(self, magnification: int) -> None: ...
    def magnification(self) -> int: ...
    def formatPage(self, painter: QtGui.QPainter, drawing: bool, area: QtCore.QRect, pagenr: int) -> None: ...


class QsciStyle(sip.wrapper):

    class TextCase(int): ...
    OriginalCase = ... # type: 'QsciStyle.TextCase'
    UpperCase = ... # type: 'QsciStyle.TextCase'
    LowerCase = ... # type: 'QsciStyle.TextCase'

    @typing.overload
    def __init__(self, style: int = ...) -> None: ...
    @typing.overload
    def __init__(self, style: int, description: QtCore.QString, color: QtGui.QColor, paper: QtGui.QColor, font: QtGui.QFont, eolFill: bool = ...) -> None: ...
    @typing.overload
    def __init__(self, a0: 'QsciStyle') -> None: ...

    def refresh(self) -> None: ...
    def hotspot(self) -> bool: ...
    def setHotspot(self, hotspot: bool) -> None: ...
    def changeable(self) -> bool: ...
    def setChangeable(self, changeable: bool) -> None: ...
    def visible(self) -> bool: ...
    def setVisible(self, visible: bool) -> None: ...
    def textCase(self) -> 'QsciStyle.TextCase': ...
    def setTextCase(self, text_case: 'QsciStyle.TextCase') -> None: ...
    def eolFill(self) -> bool: ...
    def setEolFill(self, fill: bool) -> None: ...
    def font(self) -> QtGui.QFont: ...
    def setFont(self, font: QtGui.QFont) -> None: ...
    def paper(self) -> QtGui.QColor: ...
    def setPaper(self, paper: QtGui.QColor) -> None: ...
    def color(self) -> QtGui.QColor: ...
    def setColor(self, color: QtGui.QColor) -> None: ...
    def description(self) -> QtCore.QString: ...
    def setDescription(self, description: QtCore.QString) -> None: ...
    def style(self) -> int: ...


class QsciStyledText(sip.wrapper):

    @typing.overload
    def __init__(self, text: QtCore.QString, style: int) -> None: ...
    @typing.overload
    def __init__(self, text: QtCore.QString, style: QsciStyle) -> None: ...
    @typing.overload
    def __init__(self, a0: 'QsciStyledText') -> None: ...

    def style(self) -> int: ...
    def text(self) -> QtCore.QString: ...


QSCINTILLA_VERSION = ... # type: int
QSCINTILLA_VERSION_STR = ... # type: str