Scintilla.h 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209
  1. /* Scintilla source code edit control */
  2. /** @file Scintilla.h
  3. ** Interface to the edit control.
  4. **/
  5. /* Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org>
  6. * The License.txt file describes the conditions under which this software may be distributed. */
  7. /* Most of this file is automatically generated from the Scintilla.iface interface definition
  8. * file which contains any comments about the definitions. HFacer.py does the generation. */
  9. #ifndef SCINTILLA_H
  10. #define SCINTILLA_H
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #if defined(_WIN32)
  15. /* Return false on failure: */
  16. int Scintilla_RegisterClasses(void *hInstance);
  17. int Scintilla_ReleaseResources(void);
  18. #endif
  19. int Scintilla_LinkLexers(void);
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23. // Include header that defines basic numeric types.
  24. #if defined(_MSC_VER)
  25. // Older releases of MSVC did not have stdint.h.
  26. #include <stddef.h>
  27. #else
  28. #include <stdint.h>
  29. #endif
  30. // Define uptr_t, an unsigned integer type large enough to hold a pointer.
  31. typedef uintptr_t uptr_t;
  32. // Define sptr_t, a signed integer large enough to hold a pointer.
  33. typedef intptr_t sptr_t;
  34. #include "Sci_Position.h"
  35. typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, sptr_t lParam);
  36. /* ++Autogenerated -- start of section automatically generated from Scintilla.iface */
  37. #define INVALID_POSITION -1
  38. #define SCI_START 2000
  39. #define SCI_OPTIONAL_START 3000
  40. #define SCI_LEXER_START 4000
  41. #define SCI_ADDTEXT 2001
  42. #define SCI_ADDSTYLEDTEXT 2002
  43. #define SCI_INSERTTEXT 2003
  44. #define SCI_CHANGEINSERTION 2672
  45. #define SCI_CLEARALL 2004
  46. #define SCI_DELETERANGE 2645
  47. #define SCI_CLEARDOCUMENTSTYLE 2005
  48. #define SCI_GETLENGTH 2006
  49. #define SCI_GETCHARAT 2007
  50. #define SCI_GETCURRENTPOS 2008
  51. #define SCI_GETANCHOR 2009
  52. #define SCI_GETSTYLEAT 2010
  53. #define SCI_REDO 2011
  54. #define SCI_SETUNDOCOLLECTION 2012
  55. #define SCI_SELECTALL 2013
  56. #define SCI_SETSAVEPOINT 2014
  57. #define SCI_GETSTYLEDTEXT 2015
  58. #define SCI_CANREDO 2016
  59. #define SCI_MARKERLINEFROMHANDLE 2017
  60. #define SCI_MARKERDELETEHANDLE 2018
  61. #define SCI_GETUNDOCOLLECTION 2019
  62. #define SCWS_INVISIBLE 0
  63. #define SCWS_VISIBLEALWAYS 1
  64. #define SCWS_VISIBLEAFTERINDENT 2
  65. #define SCWS_VISIBLEONLYININDENT 3
  66. #define SCI_GETVIEWWS 2020
  67. #define SCI_SETVIEWWS 2021
  68. #define SCTD_LONGARROW 0
  69. #define SCTD_STRIKEOUT 1
  70. #define SCI_GETTABDRAWMODE 2698
  71. #define SCI_SETTABDRAWMODE 2699
  72. #define SCI_POSITIONFROMPOINT 2022
  73. #define SCI_POSITIONFROMPOINTCLOSE 2023
  74. #define SCI_GOTOLINE 2024
  75. #define SCI_GOTOPOS 2025
  76. #define SCI_SETANCHOR 2026
  77. #define SCI_GETCURLINE 2027
  78. #define SCI_GETENDSTYLED 2028
  79. #define SC_EOL_CRLF 0
  80. #define SC_EOL_CR 1
  81. #define SC_EOL_LF 2
  82. #define SCI_CONVERTEOLS 2029
  83. #define SCI_GETEOLMODE 2030
  84. #define SCI_SETEOLMODE 2031
  85. #define SCI_STARTSTYLING 2032
  86. #define SCI_SETSTYLING 2033
  87. #define SCI_GETBUFFEREDDRAW 2034
  88. #define SCI_SETBUFFEREDDRAW 2035
  89. #define SCI_SETTABWIDTH 2036
  90. #define SCI_GETTABWIDTH 2121
  91. #define SCI_CLEARTABSTOPS 2675
  92. #define SCI_ADDTABSTOP 2676
  93. #define SCI_GETNEXTTABSTOP 2677
  94. #define SC_CP_UTF8 65001
  95. #define SCI_SETCODEPAGE 2037
  96. #define SC_IME_WINDOWED 0
  97. #define SC_IME_INLINE 1
  98. #define SCI_GETIMEINTERACTION 2678
  99. #define SCI_SETIMEINTERACTION 2679
  100. #define MARKER_MAX 31
  101. #define SC_MARK_CIRCLE 0
  102. #define SC_MARK_ROUNDRECT 1
  103. #define SC_MARK_ARROW 2
  104. #define SC_MARK_SMALLRECT 3
  105. #define SC_MARK_SHORTARROW 4
  106. #define SC_MARK_EMPTY 5
  107. #define SC_MARK_ARROWDOWN 6
  108. #define SC_MARK_MINUS 7
  109. #define SC_MARK_PLUS 8
  110. #define SC_MARK_VLINE 9
  111. #define SC_MARK_LCORNER 10
  112. #define SC_MARK_TCORNER 11
  113. #define SC_MARK_BOXPLUS 12
  114. #define SC_MARK_BOXPLUSCONNECTED 13
  115. #define SC_MARK_BOXMINUS 14
  116. #define SC_MARK_BOXMINUSCONNECTED 15
  117. #define SC_MARK_LCORNERCURVE 16
  118. #define SC_MARK_TCORNERCURVE 17
  119. #define SC_MARK_CIRCLEPLUS 18
  120. #define SC_MARK_CIRCLEPLUSCONNECTED 19
  121. #define SC_MARK_CIRCLEMINUS 20
  122. #define SC_MARK_CIRCLEMINUSCONNECTED 21
  123. #define SC_MARK_BACKGROUND 22
  124. #define SC_MARK_DOTDOTDOT 23
  125. #define SC_MARK_ARROWS 24
  126. #define SC_MARK_PIXMAP 25
  127. #define SC_MARK_FULLRECT 26
  128. #define SC_MARK_LEFTRECT 27
  129. #define SC_MARK_AVAILABLE 28
  130. #define SC_MARK_UNDERLINE 29
  131. #define SC_MARK_RGBAIMAGE 30
  132. #define SC_MARK_BOOKMARK 31
  133. #define SC_MARK_CHARACTER 10000
  134. #define SC_MARKNUM_FOLDEREND 25
  135. #define SC_MARKNUM_FOLDEROPENMID 26
  136. #define SC_MARKNUM_FOLDERMIDTAIL 27
  137. #define SC_MARKNUM_FOLDERTAIL 28
  138. #define SC_MARKNUM_FOLDERSUB 29
  139. #define SC_MARKNUM_FOLDER 30
  140. #define SC_MARKNUM_FOLDEROPEN 31
  141. #define SC_MASK_FOLDERS 0xFE000000
  142. #define SCI_MARKERDEFINE 2040
  143. #define SCI_MARKERSETFORE 2041
  144. #define SCI_MARKERSETBACK 2042
  145. #define SCI_MARKERSETBACKSELECTED 2292
  146. #define SCI_MARKERENABLEHIGHLIGHT 2293
  147. #define SCI_MARKERADD 2043
  148. #define SCI_MARKERDELETE 2044
  149. #define SCI_MARKERDELETEALL 2045
  150. #define SCI_MARKERGET 2046
  151. #define SCI_MARKERNEXT 2047
  152. #define SCI_MARKERPREVIOUS 2048
  153. #define SCI_MARKERDEFINEPIXMAP 2049
  154. #define SCI_MARKERADDSET 2466
  155. #define SCI_MARKERSETALPHA 2476
  156. #define SC_MAX_MARGIN 4
  157. #define SC_MARGIN_SYMBOL 0
  158. #define SC_MARGIN_NUMBER 1
  159. #define SC_MARGIN_BACK 2
  160. #define SC_MARGIN_FORE 3
  161. #define SC_MARGIN_TEXT 4
  162. #define SC_MARGIN_RTEXT 5
  163. #define SC_MARGIN_COLOUR 6
  164. #define SCI_SETMARGINTYPEN 2240
  165. #define SCI_GETMARGINTYPEN 2241
  166. #define SCI_SETMARGINWIDTHN 2242
  167. #define SCI_GETMARGINWIDTHN 2243
  168. #define SCI_SETMARGINMASKN 2244
  169. #define SCI_GETMARGINMASKN 2245
  170. #define SCI_SETMARGINSENSITIVEN 2246
  171. #define SCI_GETMARGINSENSITIVEN 2247
  172. #define SCI_SETMARGINCURSORN 2248
  173. #define SCI_GETMARGINCURSORN 2249
  174. #define SCI_SETMARGINBACKN 2250
  175. #define SCI_GETMARGINBACKN 2251
  176. #define SCI_SETMARGINS 2252
  177. #define SCI_GETMARGINS 2253
  178. #define STYLE_DEFAULT 32
  179. #define STYLE_LINENUMBER 33
  180. #define STYLE_BRACELIGHT 34
  181. #define STYLE_BRACEBAD 35
  182. #define STYLE_CONTROLCHAR 36
  183. #define STYLE_INDENTGUIDE 37
  184. #define STYLE_CALLTIP 38
  185. #define STYLE_FOLDDISPLAYTEXT 39
  186. #define STYLE_LASTPREDEFINED 39
  187. #define STYLE_MAX 255
  188. #define SC_CHARSET_ANSI 0
  189. #define SC_CHARSET_DEFAULT 1
  190. #define SC_CHARSET_BALTIC 186
  191. #define SC_CHARSET_CHINESEBIG5 136
  192. #define SC_CHARSET_EASTEUROPE 238
  193. #define SC_CHARSET_GB2312 134
  194. #define SC_CHARSET_GREEK 161
  195. #define SC_CHARSET_HANGUL 129
  196. #define SC_CHARSET_MAC 77
  197. #define SC_CHARSET_OEM 255
  198. #define SC_CHARSET_RUSSIAN 204
  199. #define SC_CHARSET_OEM866 866
  200. #define SC_CHARSET_CYRILLIC 1251
  201. #define SC_CHARSET_SHIFTJIS 128
  202. #define SC_CHARSET_SYMBOL 2
  203. #define SC_CHARSET_TURKISH 162
  204. #define SC_CHARSET_JOHAB 130
  205. #define SC_CHARSET_HEBREW 177
  206. #define SC_CHARSET_ARABIC 178
  207. #define SC_CHARSET_VIETNAMESE 163
  208. #define SC_CHARSET_THAI 222
  209. #define SC_CHARSET_8859_15 1000
  210. #define SCI_STYLECLEARALL 2050
  211. #define SCI_STYLESETFORE 2051
  212. #define SCI_STYLESETBACK 2052
  213. #define SCI_STYLESETBOLD 2053
  214. #define SCI_STYLESETITALIC 2054
  215. #define SCI_STYLESETSIZE 2055
  216. #define SCI_STYLESETFONT 2056
  217. #define SCI_STYLESETEOLFILLED 2057
  218. #define SCI_STYLERESETDEFAULT 2058
  219. #define SCI_STYLESETUNDERLINE 2059
  220. #define SC_CASE_MIXED 0
  221. #define SC_CASE_UPPER 1
  222. #define SC_CASE_LOWER 2
  223. #define SC_CASE_CAMEL 3
  224. #define SCI_STYLEGETFORE 2481
  225. #define SCI_STYLEGETBACK 2482
  226. #define SCI_STYLEGETBOLD 2483
  227. #define SCI_STYLEGETITALIC 2484
  228. #define SCI_STYLEGETSIZE 2485
  229. #define SCI_STYLEGETFONT 2486
  230. #define SCI_STYLEGETEOLFILLED 2487
  231. #define SCI_STYLEGETUNDERLINE 2488
  232. #define SCI_STYLEGETCASE 2489
  233. #define SCI_STYLEGETCHARACTERSET 2490
  234. #define SCI_STYLEGETVISIBLE 2491
  235. #define SCI_STYLEGETCHANGEABLE 2492
  236. #define SCI_STYLEGETHOTSPOT 2493
  237. #define SCI_STYLESETCASE 2060
  238. #define SC_FONT_SIZE_MULTIPLIER 100
  239. #define SCI_STYLESETSIZEFRACTIONAL 2061
  240. #define SCI_STYLEGETSIZEFRACTIONAL 2062
  241. #define SC_WEIGHT_NORMAL 400
  242. #define SC_WEIGHT_SEMIBOLD 600
  243. #define SC_WEIGHT_BOLD 700
  244. #define SCI_STYLESETWEIGHT 2063
  245. #define SCI_STYLEGETWEIGHT 2064
  246. #define SCI_STYLESETCHARACTERSET 2066
  247. #define SCI_STYLESETHOTSPOT 2409
  248. #define SCI_SETSELFORE 2067
  249. #define SCI_SETSELBACK 2068
  250. #define SCI_GETSELALPHA 2477
  251. #define SCI_SETSELALPHA 2478
  252. #define SCI_GETSELEOLFILLED 2479
  253. #define SCI_SETSELEOLFILLED 2480
  254. #define SCI_SETCARETFORE 2069
  255. #define SCI_ASSIGNCMDKEY 2070
  256. #define SCI_CLEARCMDKEY 2071
  257. #define SCI_CLEARALLCMDKEYS 2072
  258. #define SCI_SETSTYLINGEX 2073
  259. #define SCI_STYLESETVISIBLE 2074
  260. #define SCI_GETCARETPERIOD 2075
  261. #define SCI_SETCARETPERIOD 2076
  262. #define SCI_SETWORDCHARS 2077
  263. #define SCI_GETWORDCHARS 2646
  264. #define SCI_BEGINUNDOACTION 2078
  265. #define SCI_ENDUNDOACTION 2079
  266. #define INDIC_PLAIN 0
  267. #define INDIC_SQUIGGLE 1
  268. #define INDIC_TT 2
  269. #define INDIC_DIAGONAL 3
  270. #define INDIC_STRIKE 4
  271. #define INDIC_HIDDEN 5
  272. #define INDIC_BOX 6
  273. #define INDIC_ROUNDBOX 7
  274. #define INDIC_STRAIGHTBOX 8
  275. #define INDIC_DASH 9
  276. #define INDIC_DOTS 10
  277. #define INDIC_SQUIGGLELOW 11
  278. #define INDIC_DOTBOX 12
  279. #define INDIC_SQUIGGLEPIXMAP 13
  280. #define INDIC_COMPOSITIONTHICK 14
  281. #define INDIC_COMPOSITIONTHIN 15
  282. #define INDIC_FULLBOX 16
  283. #define INDIC_TEXTFORE 17
  284. #define INDIC_POINT 18
  285. #define INDIC_POINTCHARACTER 19
  286. #define INDIC_IME 32
  287. #define INDIC_IME_MAX 35
  288. #define INDIC_MAX 35
  289. #define INDIC_CONTAINER 8
  290. #define INDIC0_MASK 0x20
  291. #define INDIC1_MASK 0x40
  292. #define INDIC2_MASK 0x80
  293. #define INDICS_MASK 0xE0
  294. #define SCI_INDICSETSTYLE 2080
  295. #define SCI_INDICGETSTYLE 2081
  296. #define SCI_INDICSETFORE 2082
  297. #define SCI_INDICGETFORE 2083
  298. #define SCI_INDICSETUNDER 2510
  299. #define SCI_INDICGETUNDER 2511
  300. #define SCI_INDICSETHOVERSTYLE 2680
  301. #define SCI_INDICGETHOVERSTYLE 2681
  302. #define SCI_INDICSETHOVERFORE 2682
  303. #define SCI_INDICGETHOVERFORE 2683
  304. #define SC_INDICVALUEBIT 0x1000000
  305. #define SC_INDICVALUEMASK 0xFFFFFF
  306. #define SC_INDICFLAG_VALUEFORE 1
  307. #define SCI_INDICSETFLAGS 2684
  308. #define SCI_INDICGETFLAGS 2685
  309. #define SCI_SETWHITESPACEFORE 2084
  310. #define SCI_SETWHITESPACEBACK 2085
  311. #define SCI_SETWHITESPACESIZE 2086
  312. #define SCI_GETWHITESPACESIZE 2087
  313. #define SCI_SETSTYLEBITS 2090
  314. #define SCI_GETSTYLEBITS 2091
  315. #define SCI_SETLINESTATE 2092
  316. #define SCI_GETLINESTATE 2093
  317. #define SCI_GETMAXLINESTATE 2094
  318. #define SCI_GETCARETLINEVISIBLE 2095
  319. #define SCI_SETCARETLINEVISIBLE 2096
  320. #define SCI_GETCARETLINEBACK 2097
  321. #define SCI_SETCARETLINEBACK 2098
  322. #define SCI_STYLESETCHANGEABLE 2099
  323. #define SCI_AUTOCSHOW 2100
  324. #define SCI_AUTOCCANCEL 2101
  325. #define SCI_AUTOCACTIVE 2102
  326. #define SCI_AUTOCPOSSTART 2103
  327. #define SCI_AUTOCCOMPLETE 2104
  328. #define SCI_AUTOCSTOPS 2105
  329. #define SCI_AUTOCSETSEPARATOR 2106
  330. #define SCI_AUTOCGETSEPARATOR 2107
  331. #define SCI_AUTOCSELECT 2108
  332. #define SCI_AUTOCSETCANCELATSTART 2110
  333. #define SCI_AUTOCGETCANCELATSTART 2111
  334. #define SCI_AUTOCSETFILLUPS 2112
  335. #define SCI_AUTOCSETCHOOSESINGLE 2113
  336. #define SCI_AUTOCGETCHOOSESINGLE 2114
  337. #define SCI_AUTOCSETIGNORECASE 2115
  338. #define SCI_AUTOCGETIGNORECASE 2116
  339. #define SCI_USERLISTSHOW 2117
  340. #define SCI_AUTOCSETAUTOHIDE 2118
  341. #define SCI_AUTOCGETAUTOHIDE 2119
  342. #define SCI_AUTOCSETDROPRESTOFWORD 2270
  343. #define SCI_AUTOCGETDROPRESTOFWORD 2271
  344. #define SCI_REGISTERIMAGE 2405
  345. #define SCI_CLEARREGISTEREDIMAGES 2408
  346. #define SCI_AUTOCGETTYPESEPARATOR 2285
  347. #define SCI_AUTOCSETTYPESEPARATOR 2286
  348. #define SCI_AUTOCSETMAXWIDTH 2208
  349. #define SCI_AUTOCGETMAXWIDTH 2209
  350. #define SCI_AUTOCSETMAXHEIGHT 2210
  351. #define SCI_AUTOCGETMAXHEIGHT 2211
  352. #define SCI_SETINDENT 2122
  353. #define SCI_GETINDENT 2123
  354. #define SCI_SETUSETABS 2124
  355. #define SCI_GETUSETABS 2125
  356. #define SCI_SETLINEINDENTATION 2126
  357. #define SCI_GETLINEINDENTATION 2127
  358. #define SCI_GETLINEINDENTPOSITION 2128
  359. #define SCI_GETCOLUMN 2129
  360. #define SCI_COUNTCHARACTERS 2633
  361. #define SCI_SETHSCROLLBAR 2130
  362. #define SCI_GETHSCROLLBAR 2131
  363. #define SC_IV_NONE 0
  364. #define SC_IV_REAL 1
  365. #define SC_IV_LOOKFORWARD 2
  366. #define SC_IV_LOOKBOTH 3
  367. #define SCI_SETINDENTATIONGUIDES 2132
  368. #define SCI_GETINDENTATIONGUIDES 2133
  369. #define SCI_SETHIGHLIGHTGUIDE 2134
  370. #define SCI_GETHIGHLIGHTGUIDE 2135
  371. #define SCI_GETLINEENDPOSITION 2136
  372. #define SCI_GETCODEPAGE 2137
  373. #define SCI_GETCARETFORE 2138
  374. #define SCI_GETREADONLY 2140
  375. #define SCI_SETCURRENTPOS 2141
  376. #define SCI_SETSELECTIONSTART 2142
  377. #define SCI_GETSELECTIONSTART 2143
  378. #define SCI_SETSELECTIONEND 2144
  379. #define SCI_GETSELECTIONEND 2145
  380. #define SCI_SETEMPTYSELECTION 2556
  381. #define SCI_SETPRINTMAGNIFICATION 2146
  382. #define SCI_GETPRINTMAGNIFICATION 2147
  383. #define SC_PRINT_NORMAL 0
  384. #define SC_PRINT_INVERTLIGHT 1
  385. #define SC_PRINT_BLACKONWHITE 2
  386. #define SC_PRINT_COLOURONWHITE 3
  387. #define SC_PRINT_COLOURONWHITEDEFAULTBG 4
  388. #define SCI_SETPRINTCOLOURMODE 2148
  389. #define SCI_GETPRINTCOLOURMODE 2149
  390. #define SCFIND_WHOLEWORD 0x2
  391. #define SCFIND_MATCHCASE 0x4
  392. #define SCFIND_WORDSTART 0x00100000
  393. #define SCFIND_REGEXP 0x00200000
  394. #define SCFIND_POSIX 0x00400000
  395. #define SCFIND_CXX11REGEX 0x00800000
  396. #define SCI_FINDTEXT 2150
  397. #define SCI_FORMATRANGE 2151
  398. #define SCI_GETFIRSTVISIBLELINE 2152
  399. #define SCI_GETLINE 2153
  400. #define SCI_GETLINECOUNT 2154
  401. #define SCI_SETMARGINLEFT 2155
  402. #define SCI_GETMARGINLEFT 2156
  403. #define SCI_SETMARGINRIGHT 2157
  404. #define SCI_GETMARGINRIGHT 2158
  405. #define SCI_GETMODIFY 2159
  406. #define SCI_SETSEL 2160
  407. #define SCI_GETSELTEXT 2161
  408. #define SCI_GETTEXTRANGE 2162
  409. #define SCI_HIDESELECTION 2163
  410. #define SCI_POINTXFROMPOSITION 2164
  411. #define SCI_POINTYFROMPOSITION 2165
  412. #define SCI_LINEFROMPOSITION 2166
  413. #define SCI_POSITIONFROMLINE 2167
  414. #define SCI_LINESCROLL 2168
  415. #define SCI_SCROLLCARET 2169
  416. #define SCI_SCROLLRANGE 2569
  417. #define SCI_REPLACESEL 2170
  418. #define SCI_SETREADONLY 2171
  419. #define SCI_NULL 2172
  420. #define SCI_CANPASTE 2173
  421. #define SCI_CANUNDO 2174
  422. #define SCI_EMPTYUNDOBUFFER 2175
  423. #define SCI_UNDO 2176
  424. #define SCI_CUT 2177
  425. #define SCI_COPY 2178
  426. #define SCI_PASTE 2179
  427. #define SCI_CLEAR 2180
  428. #define SCI_SETTEXT 2181
  429. #define SCI_GETTEXT 2182
  430. #define SCI_GETTEXTLENGTH 2183
  431. #define SCI_GETDIRECTFUNCTION 2184
  432. #define SCI_GETDIRECTPOINTER 2185
  433. #define SCI_SETOVERTYPE 2186
  434. #define SCI_GETOVERTYPE 2187
  435. #define SCI_SETCARETWIDTH 2188
  436. #define SCI_GETCARETWIDTH 2189
  437. #define SCI_SETTARGETSTART 2190
  438. #define SCI_GETTARGETSTART 2191
  439. #define SCI_SETTARGETEND 2192
  440. #define SCI_GETTARGETEND 2193
  441. #define SCI_SETTARGETRANGE 2686
  442. #define SCI_GETTARGETTEXT 2687
  443. #define SCI_TARGETFROMSELECTION 2287
  444. #define SCI_TARGETWHOLEDOCUMENT 2690
  445. #define SCI_REPLACETARGET 2194
  446. #define SCI_REPLACETARGETRE 2195
  447. #define SCI_SEARCHINTARGET 2197
  448. #define SCI_SETSEARCHFLAGS 2198
  449. #define SCI_GETSEARCHFLAGS 2199
  450. #define SCI_CALLTIPSHOW 2200
  451. #define SCI_CALLTIPCANCEL 2201
  452. #define SCI_CALLTIPACTIVE 2202
  453. #define SCI_CALLTIPPOSSTART 2203
  454. #define SCI_CALLTIPSETPOSSTART 2214
  455. #define SCI_CALLTIPSETHLT 2204
  456. #define SCI_CALLTIPSETBACK 2205
  457. #define SCI_CALLTIPSETFORE 2206
  458. #define SCI_CALLTIPSETFOREHLT 2207
  459. #define SCI_CALLTIPUSESTYLE 2212
  460. #define SCI_CALLTIPSETPOSITION 2213
  461. #define SCI_VISIBLEFROMDOCLINE 2220
  462. #define SCI_DOCLINEFROMVISIBLE 2221
  463. #define SCI_WRAPCOUNT 2235
  464. #define SC_FOLDLEVELBASE 0x400
  465. #define SC_FOLDLEVELWHITEFLAG 0x1000
  466. #define SC_FOLDLEVELHEADERFLAG 0x2000
  467. #define SC_FOLDLEVELNUMBERMASK 0x0FFF
  468. #define SCI_SETFOLDLEVEL 2222
  469. #define SCI_GETFOLDLEVEL 2223
  470. #define SCI_GETLASTCHILD 2224
  471. #define SCI_GETFOLDPARENT 2225
  472. #define SCI_SHOWLINES 2226
  473. #define SCI_HIDELINES 2227
  474. #define SCI_GETLINEVISIBLE 2228
  475. #define SCI_GETALLLINESVISIBLE 2236
  476. #define SCI_SETFOLDEXPANDED 2229
  477. #define SCI_GETFOLDEXPANDED 2230
  478. #define SCI_TOGGLEFOLD 2231
  479. #define SCI_TOGGLEFOLDSHOWTEXT 2700
  480. #define SC_FOLDDISPLAYTEXT_HIDDEN 0
  481. #define SC_FOLDDISPLAYTEXT_STANDARD 1
  482. #define SC_FOLDDISPLAYTEXT_BOXED 2
  483. #define SCI_FOLDDISPLAYTEXTSETSTYLE 2701
  484. #define SC_FOLDACTION_CONTRACT 0
  485. #define SC_FOLDACTION_EXPAND 1
  486. #define SC_FOLDACTION_TOGGLE 2
  487. #define SCI_FOLDLINE 2237
  488. #define SCI_FOLDCHILDREN 2238
  489. #define SCI_EXPANDCHILDREN 2239
  490. #define SCI_FOLDALL 2662
  491. #define SCI_ENSUREVISIBLE 2232
  492. #define SC_AUTOMATICFOLD_SHOW 0x0001
  493. #define SC_AUTOMATICFOLD_CLICK 0x0002
  494. #define SC_AUTOMATICFOLD_CHANGE 0x0004
  495. #define SCI_SETAUTOMATICFOLD 2663
  496. #define SCI_GETAUTOMATICFOLD 2664
  497. #define SC_FOLDFLAG_LINEBEFORE_EXPANDED 0x0002
  498. #define SC_FOLDFLAG_LINEBEFORE_CONTRACTED 0x0004
  499. #define SC_FOLDFLAG_LINEAFTER_EXPANDED 0x0008
  500. #define SC_FOLDFLAG_LINEAFTER_CONTRACTED 0x0010
  501. #define SC_FOLDFLAG_LEVELNUMBERS 0x0040
  502. #define SC_FOLDFLAG_LINESTATE 0x0080
  503. #define SCI_SETFOLDFLAGS 2233
  504. #define SCI_ENSUREVISIBLEENFORCEPOLICY 2234
  505. #define SCI_SETTABINDENTS 2260
  506. #define SCI_GETTABINDENTS 2261
  507. #define SCI_SETBACKSPACEUNINDENTS 2262
  508. #define SCI_GETBACKSPACEUNINDENTS 2263
  509. #define SC_TIME_FOREVER 10000000
  510. #define SCI_SETMOUSEDWELLTIME 2264
  511. #define SCI_GETMOUSEDWELLTIME 2265
  512. #define SCI_WORDSTARTPOSITION 2266
  513. #define SCI_WORDENDPOSITION 2267
  514. #define SCI_ISRANGEWORD 2691
  515. #define SC_IDLESTYLING_NONE 0
  516. #define SC_IDLESTYLING_TOVISIBLE 1
  517. #define SC_IDLESTYLING_AFTERVISIBLE 2
  518. #define SC_IDLESTYLING_ALL 3
  519. #define SCI_SETIDLESTYLING 2692
  520. #define SCI_GETIDLESTYLING 2693
  521. #define SC_WRAP_NONE 0
  522. #define SC_WRAP_WORD 1
  523. #define SC_WRAP_CHAR 2
  524. #define SC_WRAP_WHITESPACE 3
  525. #define SCI_SETWRAPMODE 2268
  526. #define SCI_GETWRAPMODE 2269
  527. #define SC_WRAPVISUALFLAG_NONE 0x0000
  528. #define SC_WRAPVISUALFLAG_END 0x0001
  529. #define SC_WRAPVISUALFLAG_START 0x0002
  530. #define SC_WRAPVISUALFLAG_MARGIN 0x0004
  531. #define SCI_SETWRAPVISUALFLAGS 2460
  532. #define SCI_GETWRAPVISUALFLAGS 2461
  533. #define SC_WRAPVISUALFLAGLOC_DEFAULT 0x0000
  534. #define SC_WRAPVISUALFLAGLOC_END_BY_TEXT 0x0001
  535. #define SC_WRAPVISUALFLAGLOC_START_BY_TEXT 0x0002
  536. #define SCI_SETWRAPVISUALFLAGSLOCATION 2462
  537. #define SCI_GETWRAPVISUALFLAGSLOCATION 2463
  538. #define SCI_SETWRAPSTARTINDENT 2464
  539. #define SCI_GETWRAPSTARTINDENT 2465
  540. #define SC_WRAPINDENT_FIXED 0
  541. #define SC_WRAPINDENT_SAME 1
  542. #define SC_WRAPINDENT_INDENT 2
  543. #define SCI_SETWRAPINDENTMODE 2472
  544. #define SCI_GETWRAPINDENTMODE 2473
  545. #define SC_CACHE_NONE 0
  546. #define SC_CACHE_CARET 1
  547. #define SC_CACHE_PAGE 2
  548. #define SC_CACHE_DOCUMENT 3
  549. #define SCI_SETLAYOUTCACHE 2272
  550. #define SCI_GETLAYOUTCACHE 2273
  551. #define SCI_SETSCROLLWIDTH 2274
  552. #define SCI_GETSCROLLWIDTH 2275
  553. #define SCI_SETSCROLLWIDTHTRACKING 2516
  554. #define SCI_GETSCROLLWIDTHTRACKING 2517
  555. #define SCI_TEXTWIDTH 2276
  556. #define SCI_SETENDATLASTLINE 2277
  557. #define SCI_GETENDATLASTLINE 2278
  558. #define SCI_TEXTHEIGHT 2279
  559. #define SCI_SETVSCROLLBAR 2280
  560. #define SCI_GETVSCROLLBAR 2281
  561. #define SCI_APPENDTEXT 2282
  562. #define SCI_GETTWOPHASEDRAW 2283
  563. #define SCI_SETTWOPHASEDRAW 2284
  564. #define SC_PHASES_ONE 0
  565. #define SC_PHASES_TWO 1
  566. #define SC_PHASES_MULTIPLE 2
  567. #define SCI_GETPHASESDRAW 2673
  568. #define SCI_SETPHASESDRAW 2674
  569. #define SC_EFF_QUALITY_MASK 0xF
  570. #define SC_EFF_QUALITY_DEFAULT 0
  571. #define SC_EFF_QUALITY_NON_ANTIALIASED 1
  572. #define SC_EFF_QUALITY_ANTIALIASED 2
  573. #define SC_EFF_QUALITY_LCD_OPTIMIZED 3
  574. #define SCI_SETFONTQUALITY 2611
  575. #define SCI_GETFONTQUALITY 2612
  576. #define SCI_SETFIRSTVISIBLELINE 2613
  577. #define SC_MULTIPASTE_ONCE 0
  578. #define SC_MULTIPASTE_EACH 1
  579. #define SCI_SETMULTIPASTE 2614
  580. #define SCI_GETMULTIPASTE 2615
  581. #define SCI_GETTAG 2616
  582. #define SCI_LINESJOIN 2288
  583. #define SCI_LINESSPLIT 2289
  584. #define SCI_SETFOLDMARGINCOLOUR 2290
  585. #define SCI_SETFOLDMARGINHICOLOUR 2291
  586. #define SCI_LINEDOWN 2300
  587. #define SCI_LINEDOWNEXTEND 2301
  588. #define SCI_LINEUP 2302
  589. #define SCI_LINEUPEXTEND 2303
  590. #define SCI_CHARLEFT 2304
  591. #define SCI_CHARLEFTEXTEND 2305
  592. #define SCI_CHARRIGHT 2306
  593. #define SCI_CHARRIGHTEXTEND 2307
  594. #define SCI_WORDLEFT 2308
  595. #define SCI_WORDLEFTEXTEND 2309
  596. #define SCI_WORDRIGHT 2310
  597. #define SCI_WORDRIGHTEXTEND 2311
  598. #define SCI_HOME 2312
  599. #define SCI_HOMEEXTEND 2313
  600. #define SCI_LINEEND 2314
  601. #define SCI_LINEENDEXTEND 2315
  602. #define SCI_DOCUMENTSTART 2316
  603. #define SCI_DOCUMENTSTARTEXTEND 2317
  604. #define SCI_DOCUMENTEND 2318
  605. #define SCI_DOCUMENTENDEXTEND 2319
  606. #define SCI_PAGEUP 2320
  607. #define SCI_PAGEUPEXTEND 2321
  608. #define SCI_PAGEDOWN 2322
  609. #define SCI_PAGEDOWNEXTEND 2323
  610. #define SCI_EDITTOGGLEOVERTYPE 2324
  611. #define SCI_CANCEL 2325
  612. #define SCI_DELETEBACK 2326
  613. #define SCI_TAB 2327
  614. #define SCI_BACKTAB 2328
  615. #define SCI_NEWLINE 2329
  616. #define SCI_FORMFEED 2330
  617. #define SCI_VCHOME 2331
  618. #define SCI_VCHOMEEXTEND 2332
  619. #define SCI_ZOOMIN 2333
  620. #define SCI_ZOOMOUT 2334
  621. #define SCI_DELWORDLEFT 2335
  622. #define SCI_DELWORDRIGHT 2336
  623. #define SCI_DELWORDRIGHTEND 2518
  624. #define SCI_LINECUT 2337
  625. #define SCI_LINEDELETE 2338
  626. #define SCI_LINETRANSPOSE 2339
  627. #define SCI_LINEDUPLICATE 2404
  628. #define SCI_LOWERCASE 2340
  629. #define SCI_UPPERCASE 2341
  630. #define SCI_LINESCROLLDOWN 2342
  631. #define SCI_LINESCROLLUP 2343
  632. #define SCI_DELETEBACKNOTLINE 2344
  633. #define SCI_HOMEDISPLAY 2345
  634. #define SCI_HOMEDISPLAYEXTEND 2346
  635. #define SCI_LINEENDDISPLAY 2347
  636. #define SCI_LINEENDDISPLAYEXTEND 2348
  637. #define SCI_HOMEWRAP 2349
  638. #define SCI_HOMEWRAPEXTEND 2450
  639. #define SCI_LINEENDWRAP 2451
  640. #define SCI_LINEENDWRAPEXTEND 2452
  641. #define SCI_VCHOMEWRAP 2453
  642. #define SCI_VCHOMEWRAPEXTEND 2454
  643. #define SCI_LINECOPY 2455
  644. #define SCI_MOVECARETINSIDEVIEW 2401
  645. #define SCI_LINELENGTH 2350
  646. #define SCI_BRACEHIGHLIGHT 2351
  647. #define SCI_BRACEHIGHLIGHTINDICATOR 2498
  648. #define SCI_BRACEBADLIGHT 2352
  649. #define SCI_BRACEBADLIGHTINDICATOR 2499
  650. #define SCI_BRACEMATCH 2353
  651. #define SCI_GETVIEWEOL 2355
  652. #define SCI_SETVIEWEOL 2356
  653. #define SCI_GETDOCPOINTER 2357
  654. #define SCI_SETDOCPOINTER 2358
  655. #define SCI_SETMODEVENTMASK 2359
  656. #define EDGE_NONE 0
  657. #define EDGE_LINE 1
  658. #define EDGE_BACKGROUND 2
  659. #define EDGE_MULTILINE 3
  660. #define SCI_GETEDGECOLUMN 2360
  661. #define SCI_SETEDGECOLUMN 2361
  662. #define SCI_GETEDGEMODE 2362
  663. #define SCI_SETEDGEMODE 2363
  664. #define SCI_GETEDGECOLOUR 2364
  665. #define SCI_SETEDGECOLOUR 2365
  666. #define SCI_MULTIEDGEADDLINE 2694
  667. #define SCI_MULTIEDGECLEARALL 2695
  668. #define SCI_SEARCHANCHOR 2366
  669. #define SCI_SEARCHNEXT 2367
  670. #define SCI_SEARCHPREV 2368
  671. #define SCI_LINESONSCREEN 2370
  672. #define SC_POPUP_NEVER 0
  673. #define SC_POPUP_ALL 1
  674. #define SC_POPUP_TEXT 2
  675. #define SCI_USEPOPUP 2371
  676. #define SCI_SELECTIONISRECTANGLE 2372
  677. #define SCI_SETZOOM 2373
  678. #define SCI_GETZOOM 2374
  679. #define SCI_CREATEDOCUMENT 2375
  680. #define SCI_ADDREFDOCUMENT 2376
  681. #define SCI_RELEASEDOCUMENT 2377
  682. #define SCI_GETMODEVENTMASK 2378
  683. #define SCI_SETFOCUS 2380
  684. #define SCI_GETFOCUS 2381
  685. #define SC_STATUS_OK 0
  686. #define SC_STATUS_FAILURE 1
  687. #define SC_STATUS_BADALLOC 2
  688. #define SC_STATUS_WARN_START 1000
  689. #define SC_STATUS_WARN_REGEX 1001
  690. #define SCI_SETSTATUS 2382
  691. #define SCI_GETSTATUS 2383
  692. #define SCI_SETMOUSEDOWNCAPTURES 2384
  693. #define SCI_GETMOUSEDOWNCAPTURES 2385
  694. #define SCI_SETMOUSEWHEELCAPTURES 2696
  695. #define SCI_GETMOUSEWHEELCAPTURES 2697
  696. #define SC_CURSORNORMAL -1
  697. #define SC_CURSORARROW 2
  698. #define SC_CURSORWAIT 4
  699. #define SC_CURSORREVERSEARROW 7
  700. #define SCI_SETCURSOR 2386
  701. #define SCI_GETCURSOR 2387
  702. #define SCI_SETCONTROLCHARSYMBOL 2388
  703. #define SCI_GETCONTROLCHARSYMBOL 2389
  704. #define SCI_WORDPARTLEFT 2390
  705. #define SCI_WORDPARTLEFTEXTEND 2391
  706. #define SCI_WORDPARTRIGHT 2392
  707. #define SCI_WORDPARTRIGHTEXTEND 2393
  708. #define VISIBLE_SLOP 0x01
  709. #define VISIBLE_STRICT 0x04
  710. #define SCI_SETVISIBLEPOLICY 2394
  711. #define SCI_DELLINELEFT 2395
  712. #define SCI_DELLINERIGHT 2396
  713. #define SCI_SETXOFFSET 2397
  714. #define SCI_GETXOFFSET 2398
  715. #define SCI_CHOOSECARETX 2399
  716. #define SCI_GRABFOCUS 2400
  717. #define CARET_SLOP 0x01
  718. #define CARET_STRICT 0x04
  719. #define CARET_JUMPS 0x10
  720. #define CARET_EVEN 0x08
  721. #define SCI_SETXCARETPOLICY 2402
  722. #define SCI_SETYCARETPOLICY 2403
  723. #define SCI_SETPRINTWRAPMODE 2406
  724. #define SCI_GETPRINTWRAPMODE 2407
  725. #define SCI_SETHOTSPOTACTIVEFORE 2410
  726. #define SCI_GETHOTSPOTACTIVEFORE 2494
  727. #define SCI_SETHOTSPOTACTIVEBACK 2411
  728. #define SCI_GETHOTSPOTACTIVEBACK 2495
  729. #define SCI_SETHOTSPOTACTIVEUNDERLINE 2412
  730. #define SCI_GETHOTSPOTACTIVEUNDERLINE 2496
  731. #define SCI_SETHOTSPOTSINGLELINE 2421
  732. #define SCI_GETHOTSPOTSINGLELINE 2497
  733. #define SCI_PARADOWN 2413
  734. #define SCI_PARADOWNEXTEND 2414
  735. #define SCI_PARAUP 2415
  736. #define SCI_PARAUPEXTEND 2416
  737. #define SCI_POSITIONBEFORE 2417
  738. #define SCI_POSITIONAFTER 2418
  739. #define SCI_POSITIONRELATIVE 2670
  740. #define SCI_COPYRANGE 2419
  741. #define SCI_COPYTEXT 2420
  742. #define SC_SEL_STREAM 0
  743. #define SC_SEL_RECTANGLE 1
  744. #define SC_SEL_LINES 2
  745. #define SC_SEL_THIN 3
  746. #define SCI_SETSELECTIONMODE 2422
  747. #define SCI_GETSELECTIONMODE 2423
  748. #define SCI_GETLINESELSTARTPOSITION 2424
  749. #define SCI_GETLINESELENDPOSITION 2425
  750. #define SCI_LINEDOWNRECTEXTEND 2426
  751. #define SCI_LINEUPRECTEXTEND 2427
  752. #define SCI_CHARLEFTRECTEXTEND 2428
  753. #define SCI_CHARRIGHTRECTEXTEND 2429
  754. #define SCI_HOMERECTEXTEND 2430
  755. #define SCI_VCHOMERECTEXTEND 2431
  756. #define SCI_LINEENDRECTEXTEND 2432
  757. #define SCI_PAGEUPRECTEXTEND 2433
  758. #define SCI_PAGEDOWNRECTEXTEND 2434
  759. #define SCI_STUTTEREDPAGEUP 2435
  760. #define SCI_STUTTEREDPAGEUPEXTEND 2436
  761. #define SCI_STUTTEREDPAGEDOWN 2437
  762. #define SCI_STUTTEREDPAGEDOWNEXTEND 2438
  763. #define SCI_WORDLEFTEND 2439
  764. #define SCI_WORDLEFTENDEXTEND 2440
  765. #define SCI_WORDRIGHTEND 2441
  766. #define SCI_WORDRIGHTENDEXTEND 2442
  767. #define SCI_SETWHITESPACECHARS 2443
  768. #define SCI_GETWHITESPACECHARS 2647
  769. #define SCI_SETPUNCTUATIONCHARS 2648
  770. #define SCI_GETPUNCTUATIONCHARS 2649
  771. #define SCI_SETCHARSDEFAULT 2444
  772. #define SCI_AUTOCGETCURRENT 2445
  773. #define SCI_AUTOCGETCURRENTTEXT 2610
  774. #define SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE 0
  775. #define SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE 1
  776. #define SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR 2634
  777. #define SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR 2635
  778. #define SC_MULTIAUTOC_ONCE 0
  779. #define SC_MULTIAUTOC_EACH 1
  780. #define SCI_AUTOCSETMULTI 2636
  781. #define SCI_AUTOCGETMULTI 2637
  782. #define SC_ORDER_PRESORTED 0
  783. #define SC_ORDER_PERFORMSORT 1
  784. #define SC_ORDER_CUSTOM 2
  785. #define SCI_AUTOCSETORDER 2660
  786. #define SCI_AUTOCGETORDER 2661
  787. #define SCI_ALLOCATE 2446
  788. #define SCI_TARGETASUTF8 2447
  789. #define SCI_SETLENGTHFORENCODE 2448
  790. #define SCI_ENCODEDFROMUTF8 2449
  791. #define SCI_FINDCOLUMN 2456
  792. #define SCI_GETCARETSTICKY 2457
  793. #define SCI_SETCARETSTICKY 2458
  794. #define SC_CARETSTICKY_OFF 0
  795. #define SC_CARETSTICKY_ON 1
  796. #define SC_CARETSTICKY_WHITESPACE 2
  797. #define SCI_TOGGLECARETSTICKY 2459
  798. #define SCI_SETPASTECONVERTENDINGS 2467
  799. #define SCI_GETPASTECONVERTENDINGS 2468
  800. #define SCI_SELECTIONDUPLICATE 2469
  801. #define SC_ALPHA_TRANSPARENT 0
  802. #define SC_ALPHA_OPAQUE 255
  803. #define SC_ALPHA_NOALPHA 256
  804. #define SCI_SETCARETLINEBACKALPHA 2470
  805. #define SCI_GETCARETLINEBACKALPHA 2471
  806. #define CARETSTYLE_INVISIBLE 0
  807. #define CARETSTYLE_LINE 1
  808. #define CARETSTYLE_BLOCK 2
  809. #define SCI_SETCARETSTYLE 2512
  810. #define SCI_GETCARETSTYLE 2513
  811. #define SCI_SETINDICATORCURRENT 2500
  812. #define SCI_GETINDICATORCURRENT 2501
  813. #define SCI_SETINDICATORVALUE 2502
  814. #define SCI_GETINDICATORVALUE 2503
  815. #define SCI_INDICATORFILLRANGE 2504
  816. #define SCI_INDICATORCLEARRANGE 2505
  817. #define SCI_INDICATORALLONFOR 2506
  818. #define SCI_INDICATORVALUEAT 2507
  819. #define SCI_INDICATORSTART 2508
  820. #define SCI_INDICATOREND 2509
  821. #define SCI_SETPOSITIONCACHE 2514
  822. #define SCI_GETPOSITIONCACHE 2515
  823. #define SCI_COPYALLOWLINE 2519
  824. #define SCI_GETCHARACTERPOINTER 2520
  825. #define SCI_GETRANGEPOINTER 2643
  826. #define SCI_GETGAPPOSITION 2644
  827. #define SCI_INDICSETALPHA 2523
  828. #define SCI_INDICGETALPHA 2524
  829. #define SCI_INDICSETOUTLINEALPHA 2558
  830. #define SCI_INDICGETOUTLINEALPHA 2559
  831. #define SCI_SETEXTRAASCENT 2525
  832. #define SCI_GETEXTRAASCENT 2526
  833. #define SCI_SETEXTRADESCENT 2527
  834. #define SCI_GETEXTRADESCENT 2528
  835. #define SCI_MARKERSYMBOLDEFINED 2529
  836. #define SCI_MARGINSETTEXT 2530
  837. #define SCI_MARGINGETTEXT 2531
  838. #define SCI_MARGINSETSTYLE 2532
  839. #define SCI_MARGINGETSTYLE 2533
  840. #define SCI_MARGINSETSTYLES 2534
  841. #define SCI_MARGINGETSTYLES 2535
  842. #define SCI_MARGINTEXTCLEARALL 2536
  843. #define SCI_MARGINSETSTYLEOFFSET 2537
  844. #define SCI_MARGINGETSTYLEOFFSET 2538
  845. #define SC_MARGINOPTION_NONE 0
  846. #define SC_MARGINOPTION_SUBLINESELECT 1
  847. #define SCI_SETMARGINOPTIONS 2539
  848. #define SCI_GETMARGINOPTIONS 2557
  849. #define SCI_ANNOTATIONSETTEXT 2540
  850. #define SCI_ANNOTATIONGETTEXT 2541
  851. #define SCI_ANNOTATIONSETSTYLE 2542
  852. #define SCI_ANNOTATIONGETSTYLE 2543
  853. #define SCI_ANNOTATIONSETSTYLES 2544
  854. #define SCI_ANNOTATIONGETSTYLES 2545
  855. #define SCI_ANNOTATIONGETLINES 2546
  856. #define SCI_ANNOTATIONCLEARALL 2547
  857. #define ANNOTATION_HIDDEN 0
  858. #define ANNOTATION_STANDARD 1
  859. #define ANNOTATION_BOXED 2
  860. #define ANNOTATION_INDENTED 3
  861. #define SCI_ANNOTATIONSETVISIBLE 2548
  862. #define SCI_ANNOTATIONGETVISIBLE 2549
  863. #define SCI_ANNOTATIONSETSTYLEOFFSET 2550
  864. #define SCI_ANNOTATIONGETSTYLEOFFSET 2551
  865. #define SCI_RELEASEALLEXTENDEDSTYLES 2552
  866. #define SCI_ALLOCATEEXTENDEDSTYLES 2553
  867. #define UNDO_MAY_COALESCE 1
  868. #define SCI_ADDUNDOACTION 2560
  869. #define SCI_CHARPOSITIONFROMPOINT 2561
  870. #define SCI_CHARPOSITIONFROMPOINTCLOSE 2562
  871. #define SCI_SETMOUSESELECTIONRECTANGULARSWITCH 2668
  872. #define SCI_GETMOUSESELECTIONRECTANGULARSWITCH 2669
  873. #define SCI_SETMULTIPLESELECTION 2563
  874. #define SCI_GETMULTIPLESELECTION 2564
  875. #define SCI_SETADDITIONALSELECTIONTYPING 2565
  876. #define SCI_GETADDITIONALSELECTIONTYPING 2566
  877. #define SCI_SETADDITIONALCARETSBLINK 2567
  878. #define SCI_GETADDITIONALCARETSBLINK 2568
  879. #define SCI_SETADDITIONALCARETSVISIBLE 2608
  880. #define SCI_GETADDITIONALCARETSVISIBLE 2609
  881. #define SCI_GETSELECTIONS 2570
  882. #define SCI_GETSELECTIONEMPTY 2650
  883. #define SCI_CLEARSELECTIONS 2571
  884. #define SCI_SETSELECTION 2572
  885. #define SCI_ADDSELECTION 2573
  886. #define SCI_DROPSELECTIONN 2671
  887. #define SCI_SETMAINSELECTION 2574
  888. #define SCI_GETMAINSELECTION 2575
  889. #define SCI_SETSELECTIONNCARET 2576
  890. #define SCI_GETSELECTIONNCARET 2577
  891. #define SCI_SETSELECTIONNANCHOR 2578
  892. #define SCI_GETSELECTIONNANCHOR 2579
  893. #define SCI_SETSELECTIONNCARETVIRTUALSPACE 2580
  894. #define SCI_GETSELECTIONNCARETVIRTUALSPACE 2581
  895. #define SCI_SETSELECTIONNANCHORVIRTUALSPACE 2582
  896. #define SCI_GETSELECTIONNANCHORVIRTUALSPACE 2583
  897. #define SCI_SETSELECTIONNSTART 2584
  898. #define SCI_GETSELECTIONNSTART 2585
  899. #define SCI_SETSELECTIONNEND 2586
  900. #define SCI_GETSELECTIONNEND 2587
  901. #define SCI_SETRECTANGULARSELECTIONCARET 2588
  902. #define SCI_GETRECTANGULARSELECTIONCARET 2589
  903. #define SCI_SETRECTANGULARSELECTIONANCHOR 2590
  904. #define SCI_GETRECTANGULARSELECTIONANCHOR 2591
  905. #define SCI_SETRECTANGULARSELECTIONCARETVIRTUALSPACE 2592
  906. #define SCI_GETRECTANGULARSELECTIONCARETVIRTUALSPACE 2593
  907. #define SCI_SETRECTANGULARSELECTIONANCHORVIRTUALSPACE 2594
  908. #define SCI_GETRECTANGULARSELECTIONANCHORVIRTUALSPACE 2595
  909. #define SCVS_NONE 0
  910. #define SCVS_RECTANGULARSELECTION 1
  911. #define SCVS_USERACCESSIBLE 2
  912. #define SCVS_NOWRAPLINESTART 4
  913. #define SCI_SETVIRTUALSPACEOPTIONS 2596
  914. #define SCI_GETVIRTUALSPACEOPTIONS 2597
  915. #define SCI_SETRECTANGULARSELECTIONMODIFIER 2598
  916. #define SCI_GETRECTANGULARSELECTIONMODIFIER 2599
  917. #define SCI_SETADDITIONALSELFORE 2600
  918. #define SCI_SETADDITIONALSELBACK 2601
  919. #define SCI_SETADDITIONALSELALPHA 2602
  920. #define SCI_GETADDITIONALSELALPHA 2603
  921. #define SCI_SETADDITIONALCARETFORE 2604
  922. #define SCI_GETADDITIONALCARETFORE 2605
  923. #define SCI_ROTATESELECTION 2606
  924. #define SCI_SWAPMAINANCHORCARET 2607
  925. #define SCI_MULTIPLESELECTADDNEXT 2688
  926. #define SCI_MULTIPLESELECTADDEACH 2689
  927. #define SCI_CHANGELEXERSTATE 2617
  928. #define SCI_CONTRACTEDFOLDNEXT 2618
  929. #define SCI_VERTICALCENTRECARET 2619
  930. #define SCI_MOVESELECTEDLINESUP 2620
  931. #define SCI_MOVESELECTEDLINESDOWN 2621
  932. #define SCI_SETIDENTIFIER 2622
  933. #define SCI_GETIDENTIFIER 2623
  934. #define SCI_RGBAIMAGESETWIDTH 2624
  935. #define SCI_RGBAIMAGESETHEIGHT 2625
  936. #define SCI_RGBAIMAGESETSCALE 2651
  937. #define SCI_MARKERDEFINERGBAIMAGE 2626
  938. #define SCI_REGISTERRGBAIMAGE 2627
  939. #define SCI_SCROLLTOSTART 2628
  940. #define SCI_SCROLLTOEND 2629
  941. #define SC_TECHNOLOGY_DEFAULT 0
  942. #define SC_TECHNOLOGY_DIRECTWRITE 1
  943. #define SC_TECHNOLOGY_DIRECTWRITERETAIN 2
  944. #define SC_TECHNOLOGY_DIRECTWRITEDC 3
  945. #define SCI_SETTECHNOLOGY 2630
  946. #define SCI_GETTECHNOLOGY 2631
  947. #define SCI_CREATELOADER 2632
  948. #define SCI_FINDINDICATORSHOW 2640
  949. #define SCI_FINDINDICATORFLASH 2641
  950. #define SCI_FINDINDICATORHIDE 2642
  951. #define SCI_VCHOMEDISPLAY 2652
  952. #define SCI_VCHOMEDISPLAYEXTEND 2653
  953. #define SCI_GETCARETLINEVISIBLEALWAYS 2654
  954. #define SCI_SETCARETLINEVISIBLEALWAYS 2655
  955. #define SC_LINE_END_TYPE_DEFAULT 0
  956. #define SC_LINE_END_TYPE_UNICODE 1
  957. #define SCI_SETLINEENDTYPESALLOWED 2656
  958. #define SCI_GETLINEENDTYPESALLOWED 2657
  959. #define SCI_GETLINEENDTYPESACTIVE 2658
  960. #define SCI_SETREPRESENTATION 2665
  961. #define SCI_GETREPRESENTATION 2666
  962. #define SCI_CLEARREPRESENTATION 2667
  963. #define SCI_STARTRECORD 3001
  964. #define SCI_STOPRECORD 3002
  965. #define SCI_SETLEXER 4001
  966. #define SCI_GETLEXER 4002
  967. #define SCI_COLOURISE 4003
  968. #define SCI_SETPROPERTY 4004
  969. #define KEYWORDSET_MAX 8
  970. #define SCI_SETKEYWORDS 4005
  971. #define SCI_SETLEXERLANGUAGE 4006
  972. #define SCI_LOADLEXERLIBRARY 4007
  973. #define SCI_GETPROPERTY 4008
  974. #define SCI_GETPROPERTYEXPANDED 4009
  975. #define SCI_GETPROPERTYINT 4010
  976. #define SCI_GETSTYLEBITSNEEDED 4011
  977. #define SCI_GETLEXERLANGUAGE 4012
  978. #define SCI_PRIVATELEXERCALL 4013
  979. #define SCI_PROPERTYNAMES 4014
  980. #define SC_TYPE_BOOLEAN 0
  981. #define SC_TYPE_INTEGER 1
  982. #define SC_TYPE_STRING 2
  983. #define SCI_PROPERTYTYPE 4015
  984. #define SCI_DESCRIBEPROPERTY 4016
  985. #define SCI_DESCRIBEKEYWORDSETS 4017
  986. #define SCI_GETLINEENDTYPESSUPPORTED 4018
  987. #define SCI_ALLOCATESUBSTYLES 4020
  988. #define SCI_GETSUBSTYLESSTART 4021
  989. #define SCI_GETSUBSTYLESLENGTH 4022
  990. #define SCI_GETSTYLEFROMSUBSTYLE 4027
  991. #define SCI_GETPRIMARYSTYLEFROMSTYLE 4028
  992. #define SCI_FREESUBSTYLES 4023
  993. #define SCI_SETIDENTIFIERS 4024
  994. #define SCI_DISTANCETOSECONDARYSTYLES 4025
  995. #define SCI_GETSUBSTYLEBASES 4026
  996. #define SC_MOD_INSERTTEXT 0x1
  997. #define SC_MOD_DELETETEXT 0x2
  998. #define SC_MOD_CHANGESTYLE 0x4
  999. #define SC_MOD_CHANGEFOLD 0x8
  1000. #define SC_PERFORMED_USER 0x10
  1001. #define SC_PERFORMED_UNDO 0x20
  1002. #define SC_PERFORMED_REDO 0x40
  1003. #define SC_MULTISTEPUNDOREDO 0x80
  1004. #define SC_LASTSTEPINUNDOREDO 0x100
  1005. #define SC_MOD_CHANGEMARKER 0x200
  1006. #define SC_MOD_BEFOREINSERT 0x400
  1007. #define SC_MOD_BEFOREDELETE 0x800
  1008. #define SC_MULTILINEUNDOREDO 0x1000
  1009. #define SC_STARTACTION 0x2000
  1010. #define SC_MOD_CHANGEINDICATOR 0x4000
  1011. #define SC_MOD_CHANGELINESTATE 0x8000
  1012. #define SC_MOD_CHANGEMARGIN 0x10000
  1013. #define SC_MOD_CHANGEANNOTATION 0x20000
  1014. #define SC_MOD_CONTAINER 0x40000
  1015. #define SC_MOD_LEXERSTATE 0x80000
  1016. #define SC_MOD_INSERTCHECK 0x100000
  1017. #define SC_MOD_CHANGETABSTOPS 0x200000
  1018. #define SC_MODEVENTMASKALL 0x3FFFFF
  1019. #define SC_UPDATE_CONTENT 0x1
  1020. #define SC_UPDATE_SELECTION 0x2
  1021. #define SC_UPDATE_V_SCROLL 0x4
  1022. #define SC_UPDATE_H_SCROLL 0x8
  1023. #define SCEN_CHANGE 768
  1024. #define SCEN_SETFOCUS 512
  1025. #define SCEN_KILLFOCUS 256
  1026. #define SCK_DOWN 300
  1027. #define SCK_UP 301
  1028. #define SCK_LEFT 302
  1029. #define SCK_RIGHT 303
  1030. #define SCK_HOME 304
  1031. #define SCK_END 305
  1032. #define SCK_PRIOR 306
  1033. #define SCK_NEXT 307
  1034. #define SCK_DELETE 308
  1035. #define SCK_INSERT 309
  1036. #define SCK_ESCAPE 7
  1037. #define SCK_BACK 8
  1038. #define SCK_TAB 9
  1039. #define SCK_RETURN 13
  1040. #define SCK_ADD 310
  1041. #define SCK_SUBTRACT 311
  1042. #define SCK_DIVIDE 312
  1043. #define SCK_WIN 313
  1044. #define SCK_RWIN 314
  1045. #define SCK_MENU 315
  1046. #define SCMOD_NORM 0
  1047. #define SCMOD_SHIFT 1
  1048. #define SCMOD_CTRL 2
  1049. #define SCMOD_ALT 4
  1050. #define SCMOD_SUPER 8
  1051. #define SCMOD_META 16
  1052. #define SC_AC_FILLUP 1
  1053. #define SC_AC_DOUBLECLICK 2
  1054. #define SC_AC_TAB 3
  1055. #define SC_AC_NEWLINE 4
  1056. #define SC_AC_COMMAND 5
  1057. #define SCN_STYLENEEDED 2000
  1058. #define SCN_CHARADDED 2001
  1059. #define SCN_SAVEPOINTREACHED 2002
  1060. #define SCN_SAVEPOINTLEFT 2003
  1061. #define SCN_MODIFYATTEMPTRO 2004
  1062. #define SCN_KEY 2005
  1063. #define SCN_DOUBLECLICK 2006
  1064. #define SCN_UPDATEUI 2007
  1065. #define SCN_MODIFIED 2008
  1066. #define SCN_MACRORECORD 2009
  1067. #define SCN_MARGINCLICK 2010
  1068. #define SCN_NEEDSHOWN 2011
  1069. #define SCN_PAINTED 2013
  1070. #define SCN_USERLISTSELECTION 2014
  1071. #define SCN_URIDROPPED 2015
  1072. #define SCN_DWELLSTART 2016
  1073. #define SCN_DWELLEND 2017
  1074. #define SCN_ZOOM 2018
  1075. #define SCN_HOTSPOTCLICK 2019
  1076. #define SCN_HOTSPOTDOUBLECLICK 2020
  1077. #define SCN_CALLTIPCLICK 2021
  1078. #define SCN_AUTOCSELECTION 2022
  1079. #define SCN_INDICATORCLICK 2023
  1080. #define SCN_INDICATORRELEASE 2024
  1081. #define SCN_AUTOCCANCELLED 2025
  1082. #define SCN_AUTOCCHARDELETED 2026
  1083. #define SCN_HOTSPOTRELEASECLICK 2027
  1084. #define SCN_FOCUSIN 2028
  1085. #define SCN_FOCUSOUT 2029
  1086. #define SCN_AUTOCCOMPLETED 2030
  1087. #define SCN_MARGINRIGHTCLICK 2031
  1088. /* --Autogenerated -- end of section automatically generated from Scintilla.iface */
  1089. /* These structures are defined to be exactly the same shape as the Win32
  1090. * CHARRANGE, TEXTRANGE, FINDTEXTEX, FORMATRANGE, and NMHDR structs.
  1091. * So older code that treats Scintilla as a RichEdit will work. */
  1092. struct Sci_CharacterRange {
  1093. Sci_PositionCR cpMin;
  1094. Sci_PositionCR cpMax;
  1095. };
  1096. struct Sci_TextRange {
  1097. struct Sci_CharacterRange chrg;
  1098. char *lpstrText;
  1099. };
  1100. struct Sci_TextToFind {
  1101. struct Sci_CharacterRange chrg;
  1102. const char *lpstrText;
  1103. struct Sci_CharacterRange chrgText;
  1104. };
  1105. typedef void *Sci_SurfaceID;
  1106. struct Sci_Rectangle {
  1107. int left;
  1108. int top;
  1109. int right;
  1110. int bottom;
  1111. };
  1112. /* This structure is used in printing and requires some of the graphics types
  1113. * from Platform.h. Not needed by most client code. */
  1114. struct Sci_RangeToFormat {
  1115. Sci_SurfaceID hdc;
  1116. Sci_SurfaceID hdcTarget;
  1117. struct Sci_Rectangle rc;
  1118. struct Sci_Rectangle rcPage;
  1119. struct Sci_CharacterRange chrg;
  1120. };
  1121. #ifndef __cplusplus
  1122. /* For the GTK+ platform, g-ir-scanner needs to have these typedefs. This
  1123. * is not required in C++ code and actually seems to break ScintillaEditPy */
  1124. typedef struct Sci_NotifyHeader Sci_NotifyHeader;
  1125. typedef struct SCNotification SCNotification;
  1126. #endif
  1127. struct Sci_NotifyHeader {
  1128. /* Compatible with Windows NMHDR.
  1129. * hwndFrom is really an environment specific window handle or pointer
  1130. * but most clients of Scintilla.h do not have this type visible. */
  1131. void *hwndFrom;
  1132. uptr_t idFrom;
  1133. unsigned int code;
  1134. };
  1135. struct SCNotification {
  1136. Sci_NotifyHeader nmhdr;
  1137. Sci_Position position;
  1138. /* SCN_STYLENEEDED, SCN_DOUBLECLICK, SCN_MODIFIED, SCN_MARGINCLICK, */
  1139. /* SCN_NEEDSHOWN, SCN_DWELLSTART, SCN_DWELLEND, SCN_CALLTIPCLICK, */
  1140. /* SCN_HOTSPOTCLICK, SCN_HOTSPOTDOUBLECLICK, SCN_HOTSPOTRELEASECLICK, */
  1141. /* SCN_INDICATORCLICK, SCN_INDICATORRELEASE, */
  1142. /* SCN_USERLISTSELECTION, SCN_AUTOCSELECTION */
  1143. int ch;
  1144. /* SCN_CHARADDED, SCN_KEY, SCN_AUTOCCOMPLETED, SCN_AUTOCSELECTION, */
  1145. /* SCN_USERLISTSELECTION */
  1146. int modifiers;
  1147. /* SCN_KEY, SCN_DOUBLECLICK, SCN_HOTSPOTCLICK, SCN_HOTSPOTDOUBLECLICK, */
  1148. /* SCN_HOTSPOTRELEASECLICK, SCN_INDICATORCLICK, SCN_INDICATORRELEASE, */
  1149. int modificationType; /* SCN_MODIFIED */
  1150. const char *text;
  1151. /* SCN_MODIFIED, SCN_USERLISTSELECTION, SCN_AUTOCSELECTION, SCN_URIDROPPED */
  1152. Sci_Position length; /* SCN_MODIFIED */
  1153. Sci_Position linesAdded; /* SCN_MODIFIED */
  1154. int message; /* SCN_MACRORECORD */
  1155. uptr_t wParam; /* SCN_MACRORECORD */
  1156. sptr_t lParam; /* SCN_MACRORECORD */
  1157. Sci_Position line; /* SCN_MODIFIED */
  1158. int foldLevelNow; /* SCN_MODIFIED */
  1159. int foldLevelPrev; /* SCN_MODIFIED */
  1160. int margin; /* SCN_MARGINCLICK */
  1161. int listType; /* SCN_USERLISTSELECTION */
  1162. int x; /* SCN_DWELLSTART, SCN_DWELLEND */
  1163. int y; /* SCN_DWELLSTART, SCN_DWELLEND */
  1164. int token; /* SCN_MODIFIED with SC_MOD_CONTAINER */
  1165. Sci_Position annotationLinesAdded; /* SCN_MODIFIED with SC_MOD_CHANGEANNOTATION */
  1166. int updated; /* SCN_UPDATEUI */
  1167. int listCompletionMethod;
  1168. /* SCN_AUTOCSELECTION, SCN_AUTOCCOMPLETED, SCN_USERLISTSELECTION, */
  1169. };
  1170. #ifdef INCLUDE_DEPRECATED_FEATURES
  1171. #define SCI_SETKEYSUNICODE 2521
  1172. #define SCI_GETKEYSUNICODE 2522
  1173. #define CharacterRange Sci_CharacterRange
  1174. #define TextRange Sci_TextRange
  1175. #define TextToFind Sci_TextToFind
  1176. #define RangeToFormat Sci_RangeToFormat
  1177. #define NotifyHeader Sci_NotifyHeader
  1178. #endif
  1179. #endif