]> git.saurik.com Git - wxWidgets.git/blame - src/stc/scintilla/include/Scintilla.h
Applied patch [ 677730 ] Menus with radio items (wxUniv)
[wxWidgets.git] / src / stc / scintilla / include / Scintilla.h
CommitLineData
9ce192d4 1// Scintilla source code edit control
65ec6247
RD
2/** @file Scintilla.h
3 ** Interface to the edit control.
4 **/
1a2fb4cd 5// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
9ce192d4
RD
6// The License.txt file describes the conditions under which this software may be distributed.
7
d134f170
RD
8// Most of this file is automatically generated from the Scintilla.iface interface definition
9// file which contains any comments about the definitions. HFacer.py does the generation.
10
9ce192d4
RD
11#ifndef SCINTILLA_H
12#define SCINTILLA_H
13
d134f170 14#if PLAT_WIN
1a2fb4cd
RD
15// Return false on failure:
16bool Scintilla_RegisterClasses(void *hInstance);
17bool Scintilla_ReleaseResources();
9ce192d4 18#endif
1a2fb4cd 19int Scintilla_LinkLexers();
9ce192d4 20
65ec6247
RD
21// Here should be placed typedefs for uptr_t, an unsigned integer type large enough to
22// hold a pointer and sptr_t, a signed integer large enough to hold a pointer.
23// May need to be changed for 64 bit platforms.
a834585d
RD
24#if _MSC_VER >= 1300
25#include <BaseTsd.h>
26#endif
27#ifdef MAXULONG_PTR
28typedef ULONG_PTR uptr_t;
29typedef LONG_PTR sptr_t;
30#else
65ec6247
RD
31typedef unsigned long uptr_t;
32typedef long sptr_t;
a834585d 33#endif
65ec6247
RD
34
35typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, sptr_t lParam);
9ce192d4 36
d134f170
RD
37//++Autogenerated -- start of section automatically generated from Scintilla.iface
38#define INVALID_POSITION -1
9ce192d4
RD
39#define SCI_START 2000
40#define SCI_OPTIONAL_START 3000
41#define SCI_LEXER_START 4000
d134f170
RD
42#define SCI_ADDTEXT 2001
43#define SCI_ADDSTYLEDTEXT 2002
44#define SCI_INSERTTEXT 2003
45#define SCI_CLEARALL 2004
46#define SCI_CLEARDOCUMENTSTYLE 2005
47#define SCI_GETLENGTH 2006
48#define SCI_GETCHARAT 2007
49#define SCI_GETCURRENTPOS 2008
50#define SCI_GETANCHOR 2009
51#define SCI_GETSTYLEAT 2010
52#define SCI_REDO 2011
53#define SCI_SETUNDOCOLLECTION 2012
54#define SCI_SELECTALL 2013
55#define SCI_SETSAVEPOINT 2014
56#define SCI_GETSTYLEDTEXT 2015
57#define SCI_CANREDO 2016
58#define SCI_MARKERLINEFROMHANDLE 2017
59#define SCI_MARKERDELETEHANDLE 2018
60#define SCI_GETUNDOCOLLECTION 2019
61#define SCWS_INVISIBLE 0
62#define SCWS_VISIBLEALWAYS 1
63#define SCWS_VISIBLEAFTERINDENT 2
64#define SCI_GETVIEWWS 2020
65#define SCI_SETVIEWWS 2021
66#define SCI_POSITIONFROMPOINT 2022
65ec6247 67#define SCI_POSITIONFROMPOINTCLOSE 2023
d134f170
RD
68#define SCI_GOTOLINE 2024
69#define SCI_GOTOPOS 2025
70#define SCI_SETANCHOR 2026
71#define SCI_GETCURLINE 2027
72#define SCI_GETENDSTYLED 2028
9ce192d4
RD
73#define SC_EOL_CRLF 0
74#define SC_EOL_CR 1
75#define SC_EOL_LF 2
65ec6247 76#define SCI_CONVERTEOLS 2029
d134f170
RD
77#define SCI_GETEOLMODE 2030
78#define SCI_SETEOLMODE 2031
79#define SCI_STARTSTYLING 2032
80#define SCI_SETSTYLING 2033
81#define SCI_GETBUFFEREDDRAW 2034
82#define SCI_SETBUFFEREDDRAW 2035
83#define SCI_SETTABWIDTH 2036
84#define SCI_GETTABWIDTH 2121
f6bcfd97 85#define SC_CP_UTF8 65001
d134f170
RD
86#define SCI_SETCODEPAGE 2037
87#define SCI_SETUSEPALETTE 2039
9ce192d4 88#define MARKER_MAX 31
9ce192d4
RD
89#define SC_MARK_CIRCLE 0
90#define SC_MARK_ROUNDRECT 1
91#define SC_MARK_ARROW 2
92#define SC_MARK_SMALLRECT 3
93#define SC_MARK_SHORTARROW 4
94#define SC_MARK_EMPTY 5
95#define SC_MARK_ARROWDOWN 6
96#define SC_MARK_MINUS 7
97#define SC_MARK_PLUS 8
65ec6247
RD
98#define SC_MARK_VLINE 9
99#define SC_MARK_LCORNER 10
100#define SC_MARK_TCORNER 11
101#define SC_MARK_BOXPLUS 12
102#define SC_MARK_BOXPLUSCONNECTED 13
103#define SC_MARK_BOXMINUS 14
104#define SC_MARK_BOXMINUSCONNECTED 15
105#define SC_MARK_LCORNERCURVE 16
106#define SC_MARK_TCORNERCURVE 17
107#define SC_MARK_CIRCLEPLUS 18
108#define SC_MARK_CIRCLEPLUSCONNECTED 19
109#define SC_MARK_CIRCLEMINUS 20
110#define SC_MARK_CIRCLEMINUSCONNECTED 21
1a2fb4cd 111#define SC_MARK_BACKGROUND 22
f114b858
RD
112#define SC_MARK_DOTDOTDOT 23
113#define SC_MARK_ARROWS 24
b8b0e402 114#define SC_MARK_CHARACTER 10000
65ec6247
RD
115#define SC_MARKNUM_FOLDEREND 25
116#define SC_MARKNUM_FOLDEROPENMID 26
117#define SC_MARKNUM_FOLDERMIDTAIL 27
118#define SC_MARKNUM_FOLDERTAIL 28
119#define SC_MARKNUM_FOLDERSUB 29
9ce192d4
RD
120#define SC_MARKNUM_FOLDER 30
121#define SC_MARKNUM_FOLDEROPEN 31
1a2fb4cd 122#define SC_MASK_FOLDERS 0xFE000000
d134f170
RD
123#define SCI_MARKERDEFINE 2040
124#define SCI_MARKERSETFORE 2041
125#define SCI_MARKERSETBACK 2042
126#define SCI_MARKERADD 2043
127#define SCI_MARKERDELETE 2044
128#define SCI_MARKERDELETEALL 2045
129#define SCI_MARKERGET 2046
130#define SCI_MARKERNEXT 2047
131#define SCI_MARKERPREVIOUS 2048
9ce192d4
RD
132#define SC_MARGIN_SYMBOL 0
133#define SC_MARGIN_NUMBER 1
d134f170
RD
134#define SCI_SETMARGINTYPEN 2240
135#define SCI_GETMARGINTYPEN 2241
136#define SCI_SETMARGINWIDTHN 2242
137#define SCI_GETMARGINWIDTHN 2243
138#define SCI_SETMARGINMASKN 2244
139#define SCI_GETMARGINMASKN 2245
140#define SCI_SETMARGINSENSITIVEN 2246
141#define SCI_GETMARGINSENSITIVEN 2247
9ce192d4
RD
142#define STYLE_DEFAULT 32
143#define STYLE_LINENUMBER 33
144#define STYLE_BRACELIGHT 34
145#define STYLE_BRACEBAD 35
146#define STYLE_CONTROLCHAR 36
d134f170 147#define STYLE_INDENTGUIDE 37
b8b0e402 148#define STYLE_LASTPREDEFINED 39
f6bcfd97 149#define STYLE_MAX 127
f6bcfd97
BP
150#define SC_CHARSET_ANSI 0
151#define SC_CHARSET_DEFAULT 1
d134f170
RD
152#define SC_CHARSET_BALTIC 186
153#define SC_CHARSET_CHINESEBIG5 136
154#define SC_CHARSET_EASTEUROPE 238
155#define SC_CHARSET_GB2312 134
156#define SC_CHARSET_GREEK 161
157#define SC_CHARSET_HANGUL 129
158#define SC_CHARSET_MAC 77
159#define SC_CHARSET_OEM 255
f6bcfd97 160#define SC_CHARSET_RUSSIAN 204
d134f170
RD
161#define SC_CHARSET_SHIFTJIS 128
162#define SC_CHARSET_SYMBOL 2
163#define SC_CHARSET_TURKISH 162
164#define SC_CHARSET_JOHAB 130
165#define SC_CHARSET_HEBREW 177
166#define SC_CHARSET_ARABIC 178
167#define SC_CHARSET_VIETNAMESE 163
168#define SC_CHARSET_THAI 222
169#define SCI_STYLECLEARALL 2050
170#define SCI_STYLESETFORE 2051
171#define SCI_STYLESETBACK 2052
172#define SCI_STYLESETBOLD 2053
173#define SCI_STYLESETITALIC 2054
174#define SCI_STYLESETSIZE 2055
175#define SCI_STYLESETFONT 2056
176#define SCI_STYLESETEOLFILLED 2057
177#define SCI_STYLERESETDEFAULT 2058
178#define SCI_STYLESETUNDERLINE 2059
65ec6247
RD
179#define SC_CASE_MIXED 0
180#define SC_CASE_UPPER 1
181#define SC_CASE_LOWER 2
182#define SCI_STYLESETCASE 2060
d134f170
RD
183#define SCI_STYLESETCHARACTERSET 2066
184#define SCI_SETSELFORE 2067
185#define SCI_SETSELBACK 2068
186#define SCI_SETCARETFORE 2069
187#define SCI_ASSIGNCMDKEY 2070
188#define SCI_CLEARCMDKEY 2071
189#define SCI_CLEARALLCMDKEYS 2072
190#define SCI_SETSTYLINGEX 2073
191#define SCI_STYLESETVISIBLE 2074
192#define SCI_GETCARETPERIOD 2075
193#define SCI_SETCARETPERIOD 2076
194#define SCI_SETWORDCHARS 2077
195#define SCI_BEGINUNDOACTION 2078
196#define SCI_ENDUNDOACTION 2079
9ce192d4 197#define INDIC_MAX 7
9ce192d4
RD
198#define INDIC_PLAIN 0
199#define INDIC_SQUIGGLE 1
200#define INDIC_TT 2
f6bcfd97
BP
201#define INDIC_DIAGONAL 3
202#define INDIC_STRIKE 4
1a2fb4cd
RD
203#define INDIC0_MASK 0x20
204#define INDIC1_MASK 0x40
205#define INDIC2_MASK 0x80
206#define INDICS_MASK 0xE0
d134f170
RD
207#define SCI_INDICSETSTYLE 2080
208#define SCI_INDICGETSTYLE 2081
209#define SCI_INDICSETFORE 2082
210#define SCI_INDICGETFORE 2083
f114b858
RD
211#define SCI_SETWHITESPACEFORE 2084
212#define SCI_SETWHITESPACEBACK 2085
d134f170
RD
213#define SCI_SETSTYLEBITS 2090
214#define SCI_GETSTYLEBITS 2091
215#define SCI_SETLINESTATE 2092
216#define SCI_GETLINESTATE 2093
217#define SCI_GETMAXLINESTATE 2094
65ec6247
RD
218#define SCI_GETCARETLINEVISIBLE 2095
219#define SCI_SETCARETLINEVISIBLE 2096
220#define SCI_GETCARETLINEBACK 2097
221#define SCI_SETCARETLINEBACK 2098
1a2fb4cd 222#define SCI_STYLESETCHANGEABLE 2099
d134f170
RD
223#define SCI_AUTOCSHOW 2100
224#define SCI_AUTOCCANCEL 2101
225#define SCI_AUTOCACTIVE 2102
226#define SCI_AUTOCPOSSTART 2103
227#define SCI_AUTOCCOMPLETE 2104
228#define SCI_AUTOCSTOPS 2105
229#define SCI_AUTOCSETSEPARATOR 2106
230#define SCI_AUTOCGETSEPARATOR 2107
231#define SCI_AUTOCSELECT 2108
232#define SCI_AUTOCSETCANCELATSTART 2110
233#define SCI_AUTOCGETCANCELATSTART 2111
234#define SCI_AUTOCSETFILLUPS 2112
235#define SCI_AUTOCSETCHOOSESINGLE 2113
236#define SCI_AUTOCGETCHOOSESINGLE 2114
237#define SCI_AUTOCSETIGNORECASE 2115
238#define SCI_AUTOCGETIGNORECASE 2116
65ec6247
RD
239#define SCI_USERLISTSHOW 2117
240#define SCI_AUTOCSETAUTOHIDE 2118
241#define SCI_AUTOCGETAUTOHIDE 2119
1a2fb4cd
RD
242#define SCI_AUTOCSETDROPRESTOFWORD 2270
243#define SCI_AUTOCGETDROPRESTOFWORD 2271
d134f170
RD
244#define SCI_SETINDENT 2122
245#define SCI_GETINDENT 2123
246#define SCI_SETUSETABS 2124
247#define SCI_GETUSETABS 2125
248#define SCI_SETLINEINDENTATION 2126
249#define SCI_GETLINEINDENTATION 2127
250#define SCI_GETLINEINDENTPOSITION 2128
251#define SCI_GETCOLUMN 2129
252#define SCI_SETHSCROLLBAR 2130
253#define SCI_GETHSCROLLBAR 2131
254#define SCI_SETINDENTATIONGUIDES 2132
255#define SCI_GETINDENTATIONGUIDES 2133
256#define SCI_SETHIGHLIGHTGUIDE 2134
257#define SCI_GETHIGHLIGHTGUIDE 2135
258#define SCI_GETLINEENDPOSITION 2136
259#define SCI_GETCODEPAGE 2137
260#define SCI_GETCARETFORE 2138
261#define SCI_GETUSEPALETTE 2139
262#define SCI_GETREADONLY 2140
263#define SCI_SETCURRENTPOS 2141
264#define SCI_SETSELECTIONSTART 2142
265#define SCI_GETSELECTIONSTART 2143
266#define SCI_SETSELECTIONEND 2144
267#define SCI_GETSELECTIONEND 2145
268#define SCI_SETPRINTMAGNIFICATION 2146
269#define SCI_GETPRINTMAGNIFICATION 2147
270#define SC_PRINT_NORMAL 0
271#define SC_PRINT_INVERTLIGHT 1
272#define SC_PRINT_BLACKONWHITE 2
65ec6247
RD
273#define SC_PRINT_COLOURONWHITE 3
274#define SC_PRINT_COLOURONWHITEDEFAULTBG 4
d134f170
RD
275#define SCI_SETPRINTCOLOURMODE 2148
276#define SCI_GETPRINTCOLOURMODE 2149
d134f170
RD
277#define SCFIND_WHOLEWORD 2
278#define SCFIND_MATCHCASE 4
279#define SCFIND_WORDSTART 0x00100000
280#define SCFIND_REGEXP 0x00200000
281#define SCI_FINDTEXT 2150
282#define SCI_FORMATRANGE 2151
283#define SCI_GETFIRSTVISIBLELINE 2152
284#define SCI_GETLINE 2153
285#define SCI_GETLINECOUNT 2154
286#define SCI_SETMARGINLEFT 2155
287#define SCI_GETMARGINLEFT 2156
288#define SCI_SETMARGINRIGHT 2157
289#define SCI_GETMARGINRIGHT 2158
290#define SCI_GETMODIFY 2159
291#define SCI_SETSEL 2160
292#define SCI_GETSELTEXT 2161
293#define SCI_GETTEXTRANGE 2162
294#define SCI_HIDESELECTION 2163
295#define SCI_POINTXFROMPOSITION 2164
296#define SCI_POINTYFROMPOSITION 2165
297#define SCI_LINEFROMPOSITION 2166
298#define SCI_POSITIONFROMLINE 2167
299#define SCI_LINESCROLL 2168
300#define SCI_SCROLLCARET 2169
301#define SCI_REPLACESEL 2170
302#define SCI_SETREADONLY 2171
303#define SCI_NULL 2172
304#define SCI_CANPASTE 2173
305#define SCI_CANUNDO 2174
306#define SCI_EMPTYUNDOBUFFER 2175
307#define SCI_UNDO 2176
308#define SCI_CUT 2177
309#define SCI_COPY 2178
310#define SCI_PASTE 2179
311#define SCI_CLEAR 2180
312#define SCI_SETTEXT 2181
313#define SCI_GETTEXT 2182
314#define SCI_GETTEXTLENGTH 2183
315#define SCI_GETDIRECTFUNCTION 2184
316#define SCI_GETDIRECTPOINTER 2185
317#define SCI_SETOVERTYPE 2186
318#define SCI_GETOVERTYPE 2187
65ec6247
RD
319#define SCI_SETCARETWIDTH 2188
320#define SCI_GETCARETWIDTH 2189
321#define SCI_SETTARGETSTART 2190
322#define SCI_GETTARGETSTART 2191
323#define SCI_SETTARGETEND 2192
324#define SCI_GETTARGETEND 2193
325#define SCI_REPLACETARGET 2194
326#define SCI_REPLACETARGETRE 2195
327#define SCI_SEARCHINTARGET 2197
328#define SCI_SETSEARCHFLAGS 2198
329#define SCI_GETSEARCHFLAGS 2199
d134f170
RD
330#define SCI_CALLTIPSHOW 2200
331#define SCI_CALLTIPCANCEL 2201
332#define SCI_CALLTIPACTIVE 2202
333#define SCI_CALLTIPPOSSTART 2203
334#define SCI_CALLTIPSETHLT 2204
335#define SCI_CALLTIPSETBACK 2205
336#define SCI_VISIBLEFROMDOCLINE 2220
337#define SCI_DOCLINEFROMVISIBLE 2221
9ce192d4
RD
338#define SC_FOLDLEVELBASE 0x400
339#define SC_FOLDLEVELWHITEFLAG 0x1000
340#define SC_FOLDLEVELHEADERFLAG 0x2000
341#define SC_FOLDLEVELNUMBERMASK 0x0FFF
d134f170
RD
342#define SCI_SETFOLDLEVEL 2222
343#define SCI_GETFOLDLEVEL 2223
344#define SCI_GETLASTCHILD 2224
345#define SCI_GETFOLDPARENT 2225
346#define SCI_SHOWLINES 2226
347#define SCI_HIDELINES 2227
348#define SCI_GETLINEVISIBLE 2228
349#define SCI_SETFOLDEXPANDED 2229
350#define SCI_GETFOLDEXPANDED 2230
351#define SCI_TOGGLEFOLD 2231
352#define SCI_ENSUREVISIBLE 2232
353#define SCI_SETFOLDFLAGS 2233
65ec6247
RD
354#define SCI_ENSUREVISIBLEENFORCEPOLICY 2234
355#define SCI_SETTABINDENTS 2260
356#define SCI_GETTABINDENTS 2261
357#define SCI_SETBACKSPACEUNINDENTS 2262
358#define SCI_GETBACKSPACEUNINDENTS 2263
359#define SC_TIME_FOREVER 10000000
360#define SCI_SETMOUSEDWELLTIME 2264
361#define SCI_GETMOUSEDWELLTIME 2265
1a2fb4cd
RD
362#define SCI_WORDSTARTPOSITION 2266
363#define SCI_WORDENDPOSITION 2267
364#define SC_WRAP_NONE 0
365#define SC_WRAP_WORD 1
366#define SCI_SETWRAPMODE 2268
367#define SCI_GETWRAPMODE 2269
368#define SC_CACHE_NONE 0
369#define SC_CACHE_CARET 1
370#define SC_CACHE_PAGE 2
371#define SC_CACHE_DOCUMENT 3
372#define SCI_SETLAYOUTCACHE 2272
373#define SCI_GETLAYOUTCACHE 2273
a834585d
RD
374#define SCI_SETSCROLLWIDTH 2274
375#define SCI_GETSCROLLWIDTH 2275
376#define SCI_TEXTWIDTH 2276
377#define SCI_SETENDATLASTLINE 2277
378#define SCI_GETENDATLASTLINE 2278
379#define SCI_TEXTHEIGHT 2279
d134f170
RD
380#define SCI_LINEDOWN 2300
381#define SCI_LINEDOWNEXTEND 2301
382#define SCI_LINEUP 2302
383#define SCI_LINEUPEXTEND 2303
384#define SCI_CHARLEFT 2304
385#define SCI_CHARLEFTEXTEND 2305
386#define SCI_CHARRIGHT 2306
387#define SCI_CHARRIGHTEXTEND 2307
388#define SCI_WORDLEFT 2308
389#define SCI_WORDLEFTEXTEND 2309
390#define SCI_WORDRIGHT 2310
391#define SCI_WORDRIGHTEXTEND 2311
392#define SCI_HOME 2312
393#define SCI_HOMEEXTEND 2313
394#define SCI_LINEEND 2314
395#define SCI_LINEENDEXTEND 2315
396#define SCI_DOCUMENTSTART 2316
397#define SCI_DOCUMENTSTARTEXTEND 2317
398#define SCI_DOCUMENTEND 2318
399#define SCI_DOCUMENTENDEXTEND 2319
400#define SCI_PAGEUP 2320
401#define SCI_PAGEUPEXTEND 2321
402#define SCI_PAGEDOWN 2322
403#define SCI_PAGEDOWNEXTEND 2323
404#define SCI_EDITTOGGLEOVERTYPE 2324
405#define SCI_CANCEL 2325
406#define SCI_DELETEBACK 2326
407#define SCI_TAB 2327
408#define SCI_BACKTAB 2328
409#define SCI_NEWLINE 2329
410#define SCI_FORMFEED 2330
411#define SCI_VCHOME 2331
412#define SCI_VCHOMEEXTEND 2332
413#define SCI_ZOOMIN 2333
414#define SCI_ZOOMOUT 2334
415#define SCI_DELWORDLEFT 2335
416#define SCI_DELWORDRIGHT 2336
417#define SCI_LINECUT 2337
418#define SCI_LINEDELETE 2338
419#define SCI_LINETRANSPOSE 2339
420#define SCI_LOWERCASE 2340
421#define SCI_UPPERCASE 2341
422#define SCI_LINESCROLLDOWN 2342
423#define SCI_LINESCROLLUP 2343
1a2fb4cd 424#define SCI_DELETEBACKNOTLINE 2344
f114b858
RD
425#define SCI_HOMEDISPLAY 2345
426#define SCI_HOMEDISPLAYEXTEND 2346
427#define SCI_LINEENDDISPLAY 2347
428#define SCI_LINEENDDISPLAYEXTEND 2348
65ec6247 429#define SCI_MOVECARETINSIDEVIEW 2401
d134f170
RD
430#define SCI_LINELENGTH 2350
431#define SCI_BRACEHIGHLIGHT 2351
432#define SCI_BRACEBADLIGHT 2352
433#define SCI_BRACEMATCH 2353
434#define SCI_GETVIEWEOL 2355
435#define SCI_SETVIEWEOL 2356
436#define SCI_GETDOCPOINTER 2357
437#define SCI_SETDOCPOINTER 2358
438#define SCI_SETMODEVENTMASK 2359
9ce192d4
RD
439#define EDGE_NONE 0
440#define EDGE_LINE 1
441#define EDGE_BACKGROUND 2
d134f170
RD
442#define SCI_GETEDGECOLUMN 2360
443#define SCI_SETEDGECOLUMN 2361
444#define SCI_GETEDGEMODE 2362
445#define SCI_SETEDGEMODE 2363
446#define SCI_GETEDGECOLOUR 2364
447#define SCI_SETEDGECOLOUR 2365
448#define SCI_SEARCHANCHOR 2366
449#define SCI_SEARCHNEXT 2367
450#define SCI_SEARCHPREV 2368
d134f170
RD
451#define SCI_LINESONSCREEN 2370
452#define SCI_USEPOPUP 2371
453#define SCI_SELECTIONISRECTANGLE 2372
454#define SCI_SETZOOM 2373
455#define SCI_GETZOOM 2374
456#define SCI_CREATEDOCUMENT 2375
457#define SCI_ADDREFDOCUMENT 2376
458#define SCI_RELEASEDOCUMENT 2377
459#define SCI_GETMODEVENTMASK 2378
65ec6247
RD
460#define SCI_SETFOCUS 2380
461#define SCI_GETFOCUS 2381
462#define SCI_SETSTATUS 2382
463#define SCI_GETSTATUS 2383
464#define SCI_SETMOUSEDOWNCAPTURES 2384
465#define SCI_GETMOUSEDOWNCAPTURES 2385
466#define SC_CURSORNORMAL -1
467#define SC_CURSORWAIT 3
468#define SCI_SETCURSOR 2386
469#define SCI_GETCURSOR 2387
1a2fb4cd
RD
470#define SCI_SETCONTROLCHARSYMBOL 2388
471#define SCI_GETCONTROLCHARSYMBOL 2389
65ec6247
RD
472#define SCI_WORDPARTLEFT 2390
473#define SCI_WORDPARTLEFTEXTEND 2391
474#define SCI_WORDPARTRIGHT 2392
475#define SCI_WORDPARTRIGHTEXTEND 2393
476#define VISIBLE_SLOP 0x01
477#define VISIBLE_STRICT 0x04
478#define SCI_SETVISIBLEPOLICY 2394
479#define SCI_DELLINELEFT 2395
480#define SCI_DELLINERIGHT 2396
1a2fb4cd
RD
481#define SCI_SETXOFFSET 2397
482#define SCI_GETXOFFSET 2398
d134f170 483#define SCI_GRABFOCUS 2400
a834585d
RD
484#define CARET_SLOP 0x01
485#define CARET_STRICT 0x04
486#define CARET_JUMPS 0x10
487#define CARET_EVEN 0x08
488#define SCI_SETXCARETPOLICY 2402
489#define SCI_SETYCARETPOLICY 2403
d134f170
RD
490#define SCI_STARTRECORD 3001
491#define SCI_STOPRECORD 3002
492#define SCI_SETLEXER 4001
493#define SCI_GETLEXER 4002
494#define SCI_COLOURISE 4003
495#define SCI_SETPROPERTY 4004
496#define SCI_SETKEYWORDS 4005
65ec6247 497#define SCI_SETLEXERLANGUAGE 4006
9ce192d4
RD
498#define SC_MOD_INSERTTEXT 0x1
499#define SC_MOD_DELETETEXT 0x2
500#define SC_MOD_CHANGESTYLE 0x4
501#define SC_MOD_CHANGEFOLD 0x8
502#define SC_PERFORMED_USER 0x10
503#define SC_PERFORMED_UNDO 0x20
504#define SC_PERFORMED_REDO 0x40
505#define SC_LASTSTEPINUNDOREDO 0x100
f6bcfd97
BP
506#define SC_MOD_CHANGEMARKER 0x200
507#define SC_MOD_BEFOREINSERT 0x400
508#define SC_MOD_BEFOREDELETE 0x800
f6bcfd97 509#define SC_MODEVENTMASKALL 0xF77
d134f170
RD
510#define SCEN_CHANGE 768
511#define SCEN_SETFOCUS 512
512#define SCEN_KILLFOCUS 256
513#define SCK_DOWN 300
514#define SCK_UP 301
515#define SCK_LEFT 302
516#define SCK_RIGHT 303
517#define SCK_HOME 304
518#define SCK_END 305
519#define SCK_PRIOR 306
520#define SCK_NEXT 307
521#define SCK_DELETE 308
522#define SCK_INSERT 309
523#define SCK_ESCAPE 7
524#define SCK_BACK 8
525#define SCK_TAB 9
526#define SCK_RETURN 13
527#define SCK_ADD 310
528#define SCK_SUBTRACT 311
529#define SCK_DIVIDE 312
530#define SCMOD_SHIFT 1
531#define SCMOD_CTRL 2
532#define SCMOD_ALT 4
533#define SCN_STYLENEEDED 2000
534#define SCN_CHARADDED 2001
535#define SCN_SAVEPOINTREACHED 2002
536#define SCN_SAVEPOINTLEFT 2003
537#define SCN_MODIFYATTEMPTRO 2004
538#define SCN_KEY 2005
539#define SCN_DOUBLECLICK 2006
540#define SCN_UPDATEUI 2007
d134f170
RD
541#define SCN_MODIFIED 2008
542#define SCN_MACRORECORD 2009
543#define SCN_MARGINCLICK 2010
544#define SCN_NEEDSHOWN 2011
65ec6247
RD
545#define SCN_PAINTED 2013
546#define SCN_USERLISTSELECTION 2014
547#define SCN_URIDROPPED 2015
548#define SCN_DWELLSTART 2016
549#define SCN_DWELLEND 2017
a834585d 550#define SCN_ZOOM 2018
d134f170
RD
551//--Autogenerated -- end of section automatically generated from Scintilla.iface
552
d134f170
RD
553// These structures are defined to be exactly the same shape as the Win32
554// CHARRANGE, TEXTRANGE, FINDTEXTEX, FORMATRANGE, and NMHDR structs.
555// So older code that treats Scintilla as a RichEdit will work.
556
557struct CharacterRange {
558 long cpMin;
559 long cpMax;
560};
561
562struct TextRange {
65ec6247 563 struct CharacterRange chrg;
d134f170
RD
564 char *lpstrText;
565};
566
567struct TextToFind {
65ec6247 568 struct CharacterRange chrg;
d134f170 569 char *lpstrText;
65ec6247 570 struct CharacterRange chrgText;
d134f170
RD
571};
572
573#ifdef PLATFORM_H
574
1a2fb4cd 575// This structure is used in printing and requires some of the graphics types
d134f170
RD
576// from Platform.h. Not needed by most client code.
577
578struct RangeToFormat {
579 SurfaceID hdc;
580 SurfaceID hdcTarget;
581 PRectangle rc;
582 PRectangle rcPage;
583 CharacterRange chrg;
584};
585
586#endif
587
588struct NotifyHeader {
65ec6247
RD
589 // hwndFrom is really an environment specifc window handle or pointer
590 // but most clients of Scintilla.h do not have this type visible.
d134f170 591 //WindowID hwndFrom;
1a2fb4cd 592 void *hwndFrom;
d134f170
RD
593 unsigned int idFrom;
594 unsigned int code;
595};
9ce192d4
RD
596
597struct SCNotification {
65ec6247
RD
598 struct NotifyHeader nmhdr;
599 int position; // SCN_STYLENEEDED, SCN_MODIFIED, SCN_DWELLSTART, SCN_DWELLEND
600 int ch; // SCN_CHARADDED, SCN_KEY
601 int modifiers; // SCN_KEY
602 int modificationType; // SCN_MODIFIED
603 const char *text; // SCN_MODIFIED
604 int length; // SCN_MODIFIED
605 int linesAdded; // SCN_MODIFIED
9ce192d4 606 int message; // SCN_MACRORECORD
65ec6247 607 uptr_t wParam; // SCN_MACRORECORD
b8b0e402 608 sptr_t lParam; // SCN_MACRORECORD
65ec6247 609 int line; // SCN_MODIFIED
9ce192d4
RD
610 int foldLevelNow; // SCN_MODIFIED
611 int foldLevelPrev; // SCN_MODIFIED
65ec6247
RD
612 int margin; // SCN_MARGINCLICK
613 int listType; // SCN_USERLISTSELECTION
614 int x; // SCN_DWELLSTART, SCN_DWELLEND
615 int y; // SCN_DWELLSTART, SCN_DWELLEND
9ce192d4
RD
616};
617
9ce192d4
RD
618// Deprecation section listing all API features that are deprecated and will
619// will be removed completely in a future version.
620// To enable these features define INCLUDE_DEPRECATED_FEATURES
621
622#ifdef INCLUDE_DEPRECATED_FEATURES
623
a834585d
RD
624#define SCI_SETCARETPOLICY 2369
625#define CARET_CENTER 0x02
626#define CARET_XEVEN 0x08
627#define CARET_XJUMPS 0x10
628
1a2fb4cd
RD
629#define SCN_POSCHANGED 2012
630#define SCN_CHECKBRACE 2007
631
9ce192d4
RD
632#endif
633
634#endif