wshom: Implement IWshShell3::Run().
[wine] / include / richedit.h
1 /*
2  * Copyright (C) 2000 Jean-Claude Batista
3  * Copyright (C) 2002 Andriy Palamarchuk
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18  */
19
20 #ifndef __WINE_RICHEDIT_H
21 #define __WINE_RICHEDIT_H
22
23 #include <pshpack4.h>
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 #ifndef _RICHEDIT_VER
30 #define _RICHEDIT_VER   0x0210
31 #endif /* _RICHEDIT_VER */
32
33 #define cchTextLimitDefault 0x7fff
34
35 #if defined(__GNUC__)
36 # define MSFTEDIT_CLASS (const WCHAR []){ 'R','i','c','h','E','d','i','t','5','0','W',0 }
37 #elif defined(_MSC_VER)
38 # define MSFTEDIT_CLASS L"RichEdit50W"
39 #else
40 static const WCHAR MSFTEDIT_CLASS[] = { 'R','i','c','h','E','d','i','t','5','0','W',0 };
41 #endif
42
43 #define RICHEDIT_CLASS20A       "RichEdit20A"
44 #if defined(__GNUC__)
45 # define RICHEDIT_CLASS20W (const WCHAR []){ 'R','i','c','h','E','d','i','t','2','0','W',0 }
46 #elif defined(_MSC_VER)
47 # define RICHEDIT_CLASS20W      L"RichEdit20W"
48 #else
49 static const WCHAR RICHEDIT_CLASS20W[] = { 'R','i','c','h','E','d','i','t','2','0','W',0 };
50 #endif
51 #define RICHEDIT_CLASS10A       "RICHEDIT"
52
53 #if (_RICHEDIT_VER >= 0x0200 )
54 #define RICHEDIT_CLASS          WINELIB_NAME_AW(RICHEDIT_CLASS20)
55 #else
56 #define RICHEDIT_CLASS          RICHEDIT_CLASS10A
57 #endif
58
59 #ifndef WM_NOTIFY
60 #define WM_NOTIFY               0x004e
61 #endif
62 #ifndef WM_CONTEXTMENU
63 #define WM_CONTEXTMENU          0x007b
64 #endif
65 #ifndef WM_UNICHAR
66 #define WM_UNICHAR              0x0109
67 #endif
68 #ifndef WM_PRINTCLIENT
69 #define WM_PRINTCLIENT          0x0318
70 #endif
71
72 #ifndef EM_GETLIMITTEXT
73 #define EM_GETLIMITTEXT         (WM_USER + 37)
74 #endif
75 #ifndef EM_POSFROMCHAR
76 #define EM_POSFROMCHAR          (WM_USER + 38)
77 #define EM_CHARFROMPOS          (WM_USER + 39)
78 #endif
79 #ifndef EM_SCROLLCARET
80 #define EM_SCROLLCARET          (WM_USER + 49)
81 #endif
82 #define EM_CANPASTE             (WM_USER + 50)
83 #define EM_DISPLAYBAND          (WM_USER + 51)
84 #define EM_EXGETSEL             (WM_USER + 52)
85 #define EM_EXLIMITTEXT          (WM_USER + 53)
86 #define EM_EXLINEFROMCHAR       (WM_USER + 54)
87 #define EM_EXSETSEL             (WM_USER + 55)
88 #define EM_FINDTEXT             (WM_USER + 56)
89 #define EM_FORMATRANGE          (WM_USER + 57)
90 #define EM_GETCHARFORMAT        (WM_USER + 58)
91 #define EM_GETEVENTMASK         (WM_USER + 59)
92 #define EM_GETOLEINTERFACE      (WM_USER + 60)
93 #define EM_GETPARAFORMAT        (WM_USER + 61)
94 #define EM_GETSELTEXT           (WM_USER + 62)
95 #define EM_HIDESELECTION        (WM_USER + 63)
96 #define EM_PASTESPECIAL         (WM_USER + 64)
97 #define EM_REQUESTRESIZE        (WM_USER + 65)
98 #define EM_SELECTIONTYPE        (WM_USER + 66)
99 #define EM_SETBKGNDCOLOR        (WM_USER + 67)
100 #define EM_SETCHARFORMAT        (WM_USER + 68)
101 #define EM_SETEVENTMASK         (WM_USER + 69)
102 #define EM_SETOLECALLBACK       (WM_USER + 70)
103 #define EM_SETPARAFORMAT        (WM_USER + 71)
104 #define EM_SETTARGETDEVICE      (WM_USER + 72)
105 #define EM_STREAMIN             (WM_USER + 73)
106 #define EM_STREAMOUT            (WM_USER + 74)
107 #define EM_GETTEXTRANGE         (WM_USER + 75)
108 #define EM_FINDWORDBREAK        (WM_USER + 76)
109 #define EM_SETOPTIONS           (WM_USER + 77)
110 #define EM_GETOPTIONS           (WM_USER + 78)
111 #define EM_FINDTEXTEX           (WM_USER + 79)
112 #define EM_GETWORDBREAKPROCEX   (WM_USER + 80)
113 #define EM_SETWORDBREAKPROCEX   (WM_USER + 81)
114
115 #define EM_SETUNDOLIMIT         (WM_USER + 82)
116 #define EM_REDO                 (WM_USER + 84)
117 #define EM_CANREDO              (WM_USER + 85)
118 #define EM_GETUNDONAME          (WM_USER + 86)
119 #define EM_GETREDONAME          (WM_USER + 87)
120 #define EM_STOPGROUPTYPING      (WM_USER + 88)
121
122 #define EM_SETTEXTMODE          (WM_USER + 89)
123 #define EM_GETTEXTMODE          (WM_USER + 90)
124 #define EM_AUTOURLDETECT        (WM_USER + 91)
125 #define EM_GETAUTOURLDETECT     (WM_USER + 92)
126 #define EM_SETPALETTE           (WM_USER + 93)
127 #define EM_GETTEXTEX            (WM_USER + 94)
128 #define EM_GETTEXTLENGTHEX      (WM_USER + 95)
129 #define EM_SHOWSCROLLBAR        (WM_USER + 96)
130 #define EM_SETTEXTEX            (WM_USER + 97)
131
132 #define EM_SETPUNCTUATION       (WM_USER + 100)
133 #define EM_GETPUNCTUATION       (WM_USER + 101)
134 #define EM_SETWORDWRAPMODE      (WM_USER + 102)
135 #define EM_GETWORDWRAPMODE      (WM_USER + 103)
136 #define EM_SETIMECOLOR          (WM_USER + 104)
137 #define EM_GETIMECOLOR          (WM_USER + 105)
138 #define EM_SETIMEOPTIONS        (WM_USER + 106)
139 #define EM_GETIMEOPTIONS        (WM_USER + 107)
140 #define EM_CONVPOSITION         (WM_USER + 108)
141
142 #define EM_SETLANGOPTIONS       (WM_USER + 120)
143 #define EM_GETLANGOPTIONS       (WM_USER + 121)
144 #define EM_GETIMECOMPMODE       (WM_USER + 122)
145
146 #define EM_FINDTEXTW            (WM_USER + 123)
147 #define EM_FINDTEXTEXW          (WM_USER + 124)
148
149 #define EM_RECONVERSION         (WM_USER + 125)
150 #define EM_SETIMEMODEBIAS       (WM_USER + 126)
151 #define EM_GETIMEMODEBIAS       (WM_USER + 127)
152
153 #define EM_SETBIDIOPTIONS       (WM_USER + 200)
154 #define EM_GETBIDIOPTIONS       (WM_USER + 201)
155
156 #define EM_SETTYPOGRAPHYOPTIONS (WM_USER + 202)
157 #define EM_GETTYPOGRAPHYOPTIONS (WM_USER + 203)
158
159 #define EM_SETEDITSTYLE         (WM_USER + 204)
160 #define EM_GETEDITSTYLE         (WM_USER + 205)
161
162 #define EM_OUTLINE              (WM_USER + 220)
163
164 #define EM_GETSCROLLPOS         (WM_USER + 221)
165 #define EM_SETSCROLLPOS         (WM_USER + 222)
166
167 #define EM_SETFONTSIZE          (WM_USER + 223)
168 #define EM_GETZOOM              (WM_USER + 224)
169 #define EM_SETZOOM              (WM_USER + 225)
170 #define EM_GETVIEWKIND          (WM_USER + 226)
171 #define EM_SETVIEWKIND          (WM_USER + 227)
172
173 #define EM_GETPAGE              (WM_USER + 228)
174 #define EM_SETPAGE              (WM_USER + 229)
175 #define EM_GETHYPHENATEINFO     (WM_USER + 230)
176 #define EM_SETHYPHENATEINFO     (WM_USER + 231)
177 #define EM_GETPAGEROTATE        (WM_USER + 235)
178 #define EM_SETPAGEROTATE        (WM_USER + 236)
179 #define EM_GETCTFMODEBIAS       (WM_USER + 237)
180 #define EM_SETCTFMODEBIAS       (WM_USER + 238)
181 #define EM_GETCTFOPENSTATUS     (WM_USER + 240)
182 #define EM_SETCTFOPENSTATUS     (WM_USER + 241)
183 #define EM_GETIMECOMPTEXT       (WM_USER + 242)
184 #define EM_ISIME                (WM_USER + 243)
185 #define EM_GETIMEPROPERTY       (WM_USER + 244)
186 #define EM_GETQUERYRTFOBJ       (WM_USER + 269)
187 #define EM_SETQUERYRTFOBJ       (WM_USER + 270)
188
189 /* New notifications */
190 #define EN_MSGFILTER                    0x0700
191 #define EN_REQUESTRESIZE                0x0701
192 #define EN_SELCHANGE                    0x0702
193 #define EN_DROPFILES                    0x0703
194 #define EN_PROTECTED                    0x0704
195 #define EN_CORRECTTEXT                  0x0705
196 #define EN_STOPNOUNDO                   0x0706
197 #define EN_IMECHANGE                    0x0707
198 #define EN_SAVECLIPBOARD                0x0708
199 #define EN_OLEOPFAILED                  0x0709
200 #define EN_OBJECTPOSITIONS              0x070a
201 #define EN_LINK                         0x070b
202 #define EN_DRAGDROPDONE                 0x070c
203 #define EN_PARAGRAPHEXPANDED            0x070d
204 #define EN_PAGECHANGE                   0x070e
205 #define EN_LOWFIRTF                     0x070f
206 #define EN_ALIGNLTR                     0x0710
207 #define EN_ALIGNRTL                     0x0711
208
209
210 typedef DWORD (CALLBACK * EDITSTREAMCALLBACK)( DWORD_PTR, LPBYTE, LONG, LONG * );
211
212
213 #define yHeightCharPtsMost    1638
214 #define lDefaultTab           720
215
216 /* tab stops number limit */
217 #define MAX_TAB_STOPS         0x00000020
218
219 #define MAX_TABLE_CELLS       63
220
221 /* Rich edit control styles */
222 #define ES_NOOLEDRAGDROP      0x00000008
223 #define ES_DISABLENOSCROLL    0x00002000
224 #define ES_SUNKEN             0x00004000
225 #define ES_SAVESEL            0x00008000
226 #define ES_SELFIME            0x00040000
227 #define ES_NOIME              0x00080000
228 #define ES_VERTICAL           0x00400000
229 #define ES_SELECTIONBAR       0x01000000
230 #define ES_EX_NOCALLOLEINIT   0x01000000
231
232 /* the character formatting options */
233 #define SCF_DEFAULT           0x00000000
234 #define SCF_SELECTION         0x00000001
235 #define SCF_WORD              0x00000002
236 #define SCF_ALL               0x00000004
237 #define SCF_USEUIRULES        0x00000008
238 #define SCF_ASSOCIATEFONT     0x00000010
239 #define SCF_NOKBUPDATE        0x00000020
240 #define SCF_ASSOCIATEFONT2    0x00000040
241
242 #ifndef WM_NOTIFY
243 typedef struct _nmhdr
244 {
245     HWND       hwndFrom;
246     UINT       idFrom;
247     UINT       code;
248 } NMHDR;
249 #endif
250
251 /* CHARFORMAT structure */
252 typedef struct _charformat
253 {
254     UINT       cbSize;
255     DWORD      dwMask;
256     DWORD      dwEffects;
257     LONG       yHeight;
258     LONG       yOffset;
259     COLORREF   crTextColor;
260     BYTE       bCharSet;
261     BYTE       bPitchAndFamily;
262     char       szFaceName[LF_FACESIZE];
263 } CHARFORMATA;
264
265 typedef struct _charformatw
266 {
267     UINT       cbSize;
268     DWORD      dwMask;
269     DWORD      dwEffects;
270     LONG       yHeight;
271     LONG       yOffset;
272     COLORREF   crTextColor;
273     BYTE       bCharSet;
274     BYTE       bPitchAndFamily;
275     WCHAR      szFaceName[LF_FACESIZE];
276 } CHARFORMATW;
277
278 DECL_WINELIB_TYPE_AW(CHARFORMAT)
279
280 typedef struct _charformat2a {
281     UINT       cbSize;
282     DWORD      dwMask;
283     DWORD      dwEffects;
284     LONG       yHeight;
285     LONG       yOffset;
286     COLORREF   crTextColor;
287     BYTE       bCharSet;
288     BYTE       bPitchAndFamily;
289     char       szFaceName[LF_FACESIZE];
290     WORD       wWeight;
291     SHORT      sSpacing;
292     COLORREF   crBackColor;
293     LCID       lcid;
294     DWORD      dwReserved;
295     SHORT      sStyle;
296     WORD       wKerning;
297     BYTE       bUnderlineType;
298     BYTE       bAnimation;
299     BYTE       bRevAuthor;
300 } CHARFORMAT2A;
301
302 typedef struct _charformat2w {
303     UINT       cbSize;
304     DWORD      dwMask;
305     DWORD      dwEffects;
306     LONG       yHeight;
307     LONG       yOffset;
308     COLORREF   crTextColor;
309     BYTE       bCharSet;
310     BYTE       bPitchAndFamily;
311     WCHAR      szFaceName[LF_FACESIZE];
312     WORD       wWeight;
313     SHORT      sSpacing;
314     COLORREF   crBackColor;
315     LCID       lcid;
316     DWORD      dwReserved;
317     SHORT      sStyle;
318     WORD       wKerning;
319     BYTE       bUnderlineType;
320     BYTE       bAnimation;
321     BYTE       bRevAuthor;
322 } CHARFORMAT2W;
323
324 DECL_WINELIB_TYPE_AW(CHARFORMAT2)
325
326 #define CHARFORMATDELTA       (sizeof(CHARFORMAT2) - sizeof(CHARFORMAT))
327
328 /* CHARFORMAT masks */
329 #define CFM_BOLD              0x00000001
330 #define CFM_ITALIC            0x00000002
331 #define CFM_UNDERLINE         0x00000004
332 #define CFM_STRIKEOUT         0x00000008
333 #define CFM_PROTECTED         0x00000010
334 #define CFM_LINK              0x00000020
335 #define CFM_SMALLCAPS         0x00000040
336 #define CFM_ALLCAPS           0x00000080
337 #define CFM_HIDDEN            0x00000100
338 #define CFM_OUTLINE           0x00000200
339 #define CFM_SHADOW            0x00000400
340 #define CFM_EMBOSS            0x00000800
341 #define CFM_IMPRINT           0x00001000
342 #define CFM_DISABLED          0x00002000
343 #define CFM_REVISED           0x00004000
344 #define CFM_REVAUTHOR         0x00008000
345 #define CFM_SUBSCRIPT         0x00030000
346 #define CFM_SUPERSCRIPT       0x00030000
347 #define CFM_ANIMATION         0x00040000
348 #define CFM_STYLE             0x00080000
349 #define CFM_KERNING           0x00100000
350 #define CFM_SPACING           0x00200000
351 #define CFM_WEIGHT            0x00400000
352 #define CFM_UNDERLINETYPE     0x00800000
353 #define CFM_LCID              0x02000000
354 #define CFM_BACKCOLOR         0x04000000
355 #define CFM_CHARSET           0x08000000
356 #define CFM_OFFSET            0x10000000
357 #define CFM_FACE              0x20000000
358 #define CFM_COLOR             0x40000000
359 #define CFM_SIZE              0x80000000
360
361 #define CFM_EFFECTS           (CFM_BOLD | \
362                                CFM_ITALIC | \
363                                CFM_UNDERLINE | \
364                                CFM_COLOR | \
365                                CFM_STRIKEOUT | \
366                                CFE_PROTECTED | \
367                                CFM_LINK)
368
369 #define CFM_EFFECTS2          (CFM_EFFECTS | \
370                                CFM_DISABLED | \
371                                CFM_SMALLCAPS | \
372                                CFM_ALLCAPS | \
373                                CFM_HIDDEN | \
374                                CFM_OUTLINE | \
375                                CFM_SHADOW | \
376                                CFM_EMBOSS | \
377                                CFM_IMPRINT | \
378                                CFM_DISABLED | \
379                                CFM_REVISED | \
380                                CFM_SUBSCRIPT | \
381                                CFM_SUPERSCRIPT | \
382                                CFM_BACKCOLOR)
383
384 #define CFM_ALL               (CFM_EFFECTS | \
385                                CFM_SIZE | \
386                                CFM_FACE | \
387                                CFM_OFFSET | \
388                                CFM_CHARSET)
389
390 #define CFM_ALL2              (CFM_ALL | \
391                                CFM_EFFECTS2 | \
392                                CFM_BACKCOLOR | \
393                                CFM_LCID | \
394                                CFM_UNDERLINETYPE | \
395                                CFM_WEIGHT | \
396                                CFM_REVAUTHOR | \
397                                CFM_SPACING | \
398                                CFM_KERNING | \
399                                CFM_STYLE | \
400                                CFM_ANIMATION)
401
402 /* CHARFORMAT effects */
403 #define CFE_BOLD              0x00000001
404 #define CFE_ITALIC            0x00000002
405 #define CFE_UNDERLINE         0x00000004
406 #define CFE_STRIKEOUT         0x00000008
407 #define CFE_PROTECTED         0x00000010
408 #define CFE_LINK              0x00000020
409 #define CFE_SUBSCRIPT         0x00010000
410 #define CFE_SUPERSCRIPT       0x00020000
411 #define CFE_AUTOCOLOR         0x40000000
412
413 #define CFE_SMALLCAPS         CFM_SMALLCAPS
414 #define CFE_ALLCAPS           CFM_ALLCAPS
415 #define CFE_HIDDEN            CFM_HIDDEN
416 #define CFE_OUTLINE           CFM_OUTLINE
417 #define CFE_SHADOW            CFM_SHADOW
418 #define CFE_EMBOSS            CFM_EMBOSS
419 #define CFE_IMPRINT           CFM_IMPRINT
420 #define CFE_DISABLED          CFM_DISABLED
421 #define CFE_REVISED           CFM_REVISED
422 #define CFE_AUTOBACKCOLOR     CFM_BACKCOLOR
423
424 #define CFU_UNDERLINENONE             0x00
425 #define CFU_UNDERLINE                 0x01
426 #define CFU_UNDERLINEWORD             0x02
427 #define CFU_UNDERLINEDOUBLE           0x03
428 #define CFU_UNDERLINEDOTTED           0x04
429 #define CFU_UNDERLINEDASH             0x05
430 #define CFU_UNDERLINEDASHDOT          0x06
431 #define CFU_UNDERLINEDASHDOTDOT       0x07
432 #define CFU_UNDERLINEWAVE             0x08
433 #define CFU_UNDERLINETHICK            0x09
434 #define CFU_UNDERLINEHAIRLINE         0x0a
435 #define CFU_UNDERLINEDOUBLEWAVE       0x0b
436 #define CFU_UNDERLINEHEAVYWAVE        0x0c
437 #define CFU_UNDERLINELONGDASH         0x0d
438 #define CFU_UNDERLINETHICKDASH        0x0e
439 #define CFU_UNDERLINETHICKDASHDOT     0x0f
440 #define CFU_UNDERLINETHICKDASHDOTDOT  0x10
441 #define CFU_UNDERLINETHICKDOTTED      0x11
442 #define CFU_UNDERLINETHICKLONGDASH    0x12
443 #define CFU_INVERT                    0xFE
444 #define CFU_CF1UNDERLINE              0xFF
445
446 /* ECO operations */
447 #define ECOOP_SET             0x0001
448 #define ECOOP_OR              0x0002
449 #define ECOOP_AND             0x0003
450 #define ECOOP_XOR             0x0004
451
452 /* edit control options */
453 #define ECO_AUTOWORDSELECTION 0x00000001
454 #define ECO_AUTOVSCROLL       0x00000040
455 #define ECO_AUTOHSCROLL       0x00000080
456 #define ECO_NOHIDESEL         0x00000100
457 #define ECO_READONLY          0x00000800
458 #define ECO_WANTRETURN        0x00001000
459 #define ECO_SAVESEL           0x00008000
460 #define ECO_SELECTIONBAR      0x01000000
461 #define ECO_VERTICAL          0x00400000
462
463 /* Event notification masks */
464 #define ENM_NONE              0x00000000
465 #define ENM_CHANGE            0x00000001
466 #define ENM_UPDATE            0x00000002
467 #define ENM_SCROLL            0x00000004
468 #define ENM_SCROLLEVENTS      0x00000008
469 #define ENM_DRAGDROPDONE      0x00000010
470 #define ENM_PARAGRAPHEXPANDED 0x00000020
471 #define ENM_PAGECHANGE        0x00000040
472 #define ENM_KEYEVENTS         0x00010000
473 #define ENM_MOUSEEVENTS       0x00020000
474 #define ENM_REQUESTRESIZE     0x00040000
475 #define ENM_SELCHANGE         0x00080000
476 #define ENM_DROPFILES         0x00100000
477 #define ENM_PROTECTED         0x00200000
478 #define ENM_CORRECTTEXT       0x00400000
479 #define ENM_IMECHANGE         0x00800000
480 #define ENM_LANGCHANGE        0x01000000
481 #define ENM_OBJECTPOSITIONS   0x02000000
482 #define ENM_LINK              0x04000000
483 #define ENM_LOWFIRTF          0x08000000
484
485 typedef struct _bidioptions
486 {
487     UINT    cbSize;
488     WORD    wMask;
489     WORD    wEffects;
490 } BIDIOPTIONS;
491
492 #ifndef __RICHEDIT_CHARRANGE_DEFINED
493 #define __RICHEDIT_CHARRANGE_DEFINED
494
495 typedef struct _charrange
496 {
497     LONG    cpMin;
498     LONG    cpMax;
499 } CHARRANGE;
500
501 #endif /* __RICHEDIT_CHARRANGE_DEFINED */
502
503 typedef struct _textrange
504 {
505     CHARRANGE chrg;
506     LPSTR     lpstrText;
507 } TEXTRANGEA;
508
509 typedef struct _textrangew
510 {
511     CHARRANGE chrg;
512     LPWSTR     lpstrText;
513 } TEXTRANGEW;
514
515 DECL_WINELIB_TYPE_AW(TEXTRANGE)
516
517 typedef struct _editstream
518 {
519     DWORD_PTR           dwCookie;
520     DWORD               dwError;
521     EDITSTREAMCALLBACK  pfnCallback;
522 } EDITSTREAM;
523
524 typedef struct _compcolor {
525     COLORREF   crText;
526     COLORREF   crBackground;
527     DWORD      dwEffects;
528 } COMPCOLOR;
529
530 typedef struct _encorrecttext {
531     NMHDR      nmhdr;
532     CHARRANGE  chrg;
533     WORD       seltyp;
534 } ENCORRECTTEXT;
535
536 typedef struct _endropfiles {
537     NMHDR      nmhdr;
538     HANDLE     hDrop;
539     LONG       cp;
540     BOOL       fProtected;
541 } ENDROPFILES;
542
543 typedef struct _enlink {
544     NMHDR      nmhdr;
545     UINT       msg;
546     WPARAM     wParam;
547     LPARAM     lParam;
548     CHARRANGE  chrg;
549 } ENLINK;
550
551 typedef struct _enlowfirtf {
552     NMHDR      nmhdr;
553     char       *szControl;
554 } ENLOWFIRTF;
555
556 typedef struct {
557     NMHDR      nmhdr;
558     LONG       iob;
559     LONG       lOper;
560     HRESULT    hr;
561 } ENOLEOPFAILED;
562
563 typedef struct _enprotected {
564     NMHDR      nmhdr;
565     UINT       msg;
566     WPARAM     wParam;
567     LPARAM     lParam;
568     CHARRANGE  chrg;
569 } ENPROTECTED, *LPENPROTECTED;
570
571 typedef struct _ensaveclipboard {
572     NMHDR      nmhdr;
573     LONG       cObjectCount;
574     LONG       cch;
575 } ENSAVECLIPBOARD;
576
577 typedef struct _findtextA {
578     CHARRANGE  chrg;
579     LPCSTR     lpstrText;
580 } FINDTEXTA;
581
582 typedef struct _findtextW {
583     CHARRANGE  chrg;
584     LPCWSTR    lpstrText;
585 } FINDTEXTW;
586
587 DECL_WINELIB_TYPE_AW(FINDTEXT)
588
589 typedef struct _findtextexA {
590     CHARRANGE  chrg;
591     LPCSTR     lpstrText;
592     CHARRANGE  chrgText;
593 } FINDTEXTEXA;
594
595 typedef struct _findtextexW {
596     CHARRANGE  chrg;
597     LPCWSTR    lpstrText;
598     CHARRANGE  chrgText;
599 } FINDTEXTEXW;
600
601 DECL_WINELIB_TYPE_AW(FINDTEXTEX)
602
603 typedef struct _formatrange {
604     HDC        hdc;
605     HDC        hdcTarget;
606     RECT       rc;
607     RECT       rcPage;
608     CHARRANGE  chrg;
609 } FORMATRANGE;
610
611 typedef enum tagKHYPH
612 {
613     khyphNil           = 0,
614     khyphNormal        = 1,
615     khyphAddBefore     = 2,
616     khyphChangeBefore  = 3,
617     khyphDeleteBefore  = 4,
618     khyphChangeAfter   = 5,
619     khyphDelAndChange  = 6
620 } KHYPH;
621
622 typedef struct hyphresult
623 {
624     KHYPH      khyph;
625     LONG       ichHyph;
626     WCHAR      chHyph;
627 } HYPHRESULT;
628
629 typedef struct tagHyphenateInfo
630 {
631     SHORT      cbSize;
632     SHORT      dxHyphenateZone;
633     void       (WINAPI* pfnHyphenate)(WCHAR*, LANGID, LONG, HYPHRESULT*);
634 } HYPHENATEINFO;
635
636 typedef struct _msgfilter {
637     NMHDR      nmhdr;
638     UINT       msg;
639     WPARAM     wParam;
640     LPARAM     lParam;
641 } MSGFILTER;
642
643 typedef struct _objectpositions {
644     NMHDR      nmhdr;
645     LONG       cObjectCount;
646     LONG       *pcpPositions;
647 } OBJECTPOSITIONS;
648
649 typedef struct _paraformat {
650     UINT       cbSize;
651     DWORD      dwMask;
652     WORD       wNumbering;
653     WORD       wReserved;
654     LONG       dxStartIndent;
655     LONG       dxRightIndent;
656     LONG       dxOffset;
657     WORD       wAlignment;
658     SHORT      cTabCount;
659     LONG       rgxTabs[MAX_TAB_STOPS];
660 } PARAFORMAT;
661
662 typedef struct _paraformat2 {
663     UINT       cbSize;
664     DWORD      dwMask;
665     WORD       wNumbering;
666     WORD       wEffects;
667     LONG       dxStartIndent;
668     LONG       dxRightIndent;
669     LONG       dxOffset;
670     WORD       wAlignment;
671     SHORT      cTabCount;
672     LONG       rgxTabs[MAX_TAB_STOPS];
673     LONG       dySpaceBefore, dySpaceAfter, dyLineSpacing;
674     SHORT      sStyle;
675     BYTE       bLineSpacingRule, bOutlineLevel;
676     WORD       wShadingWeight, wShadingStyle;
677     WORD       wNumberingStart, wNumberingStyle, wNumberingTab;
678     WORD       wBorderSpace, wBorderWidth, wBorders;
679 } PARAFORMAT2;
680
681 typedef struct _selchange {
682     NMHDR      nmhdr;
683     CHARRANGE  chrg;
684     WORD       seltyp;
685 } SELCHANGE;
686
687 typedef struct _reqresize {
688     NMHDR      nmhdr;
689     RECT       rc;
690 } REQRESIZE;
691
692 typedef struct _repastespecial {
693     DWORD      dwAspect;
694     DWORD      dwParam;
695 } REPASTESPECIAL;
696
697 typedef struct _punctuation {
698     UINT       iSize;
699     LPSTR      szPunctuation;
700 } PUNCTUATION;
701
702 typedef struct _gettextex {
703     DWORD      cb;
704     DWORD      flags;
705     UINT       codepage;
706     LPCSTR     lpDefaultChar;
707     LPBOOL     lpUsedDefChar;
708 } GETTEXTEX;
709
710 typedef struct _imecomptext {
711     LONG       cb;
712     DWORD      flags;
713 } IMECOMPTEXT;
714
715 void WINAPI HyphenateProc(WCHAR*, LANGID, LONG, HYPHRESULT*);
716
717 #define SF_TEXT               0x00000001
718 #define SF_RTF                0x00000002
719 #define SF_RTFNOOBJS          0x00000003
720 #define SF_TEXTIZED           0x00000004
721 #define SF_UNICODE            0x00000010
722 #define SF_USECODEPAGE        0x00000020
723 #define SF_NCRFORNONASCII     0x00000040
724 #define SF_RTFVAL             0x00000700
725
726 /* BIDIOPTIONS.wMask flag values */
727 #define BOM_DEFPARADIR        0x00000001
728 #define BOM_PLAINTEXT         0x00000002
729 #define BOM_NEUTRALOVERRIDE   0x00000004
730 #define BOM_CONTEXTREADING    0x00000008
731 #define BOM_CONTEXTALIGNMENT  0x00000010
732 #define BOM_LEGACYBIDICLASS   0x00000040
733
734 /* BIDIOPTIONS.wEffects flag values */
735 #define BOE_RTLDIR            0x00000001
736 #define BOE_PLAINTEXT         0x00000002
737 #define BOE_NEUTRALOVERRIDE   0x00000004
738 #define BOE_CONTEXTREADING    0x00000008
739 #define BOE_CONTEXTALIGNMENT  0x00000010
740 #define BOE_LEGACYBIDICLASS   0x00000040
741
742 /* Clipboard formats */
743 #define CF_RTF          TEXT("Rich Text Format")
744 #define CF_RTFNOOBJS    TEXT("Rich Text Format Without Objects")
745 #define CF_RETEXTOBJ    TEXT("RichEdit Text and Objects")
746
747 /* Mode bias wParam values for EM_SETCTFMODEBIAS message */
748 #define CTFMODEBIAS_DEFAULT                0x00000000
749 #define CTFMODEBIAS_FILENAME               0x00000001
750 #define CTFMODEBIAS_NAME                   0x00000002
751 #define CTFMODEBIAS_READING                0x00000003
752 #define CTFMODEBIAS_DATETIME               0x00000004
753 #define CTFMODEBIAS_CONVERSATION           0x00000005
754 #define CTFMODEBIAS_NUMERIC                0x00000006
755 #define CTFMODEBIAS_HIRAGANA               0x00000007
756 #define CTFMODEBIAS_KATAKANA               0x00000008
757 #define CTFMODEBIAS_HANGUL                 0x00000009
758 #define CTFMODEBIAS_HALFWIDTHKATAKANA      0x0000000a
759 #define CTFMODEBIAS_FULLWIDTHALPHANUMERIC  0x0000000b
760 #define CTFMODEBIAS_HALFWIDTHALPHANUMERIC  0x0000000c
761
762 #define EMO_EXIT              0x00000000
763 #define EMO_ENTER             0x00000001
764 #define EMO_PROMOTE           0x00000002
765 #define EMO_EXPAND            0x00000003
766 #define EMO_MOVESELECTION     0x00000004
767 #define EMO_GETVIEWMODE       0x00000005
768
769 #define EMO_EXPANDSELECTION   0x00000000
770 #define EMO_EXPANDDOCUMENT    0x00000001
771
772 /* Page Rotate values used in wParam of EM_SETPAGEROTATE message */
773 #define EPR_0                 0x00000000
774 #define EPR_270               0x00000001
775 #define EPR_180               0x00000002
776 #define EPR_90                0x00000003
777
778 /* Find flags for wParam of EM_FINDTEXT message */
779 #define FR_MATCHDIAC          0x20000000
780 #define FR_MATCHKASHIDA       0x40000000
781 #define FR_MATCHALEFHAMZA     0x80000000
782
783 /* IME Compatibility Mode return values for EM_GETIMECOMPMODE message */
784 #define ICM_NOTOPEN           0x00000000
785 #define ICM_LEVEL3            0x00000001
786 #define ICM_LEVEL2            0x00000002
787 #define ICM_LEVEL2_5          0x00000003
788 #define ICM_LEVEL2_SUI        0x00000004
789 #define ICM_CTF               0x00000005
790
791 /* Flags value for IMECOMPTEXT structure */
792 #define ICT_RESULTREADSTR     0x00000001
793
794 /* Input Method Flags used in EM_SETLANGOPTIONS message */
795 #define IMF_AUTOKEYBOARD        0x00000001
796 #define IMF_AUTOFONT            0x00000002
797 #define IMF_IMECANCELCOMPLETE   0x00000004
798 #define IMF_IMEALWAYSSENDNOTIFY 0x00000008
799 #define IMF_AUTOFONTSIZEADJUST  0x00000010
800 #define IMF_UIFONTS             0x00000020
801 #define IMF_DUALFONT            0x00000080
802
803 /* Parameters values for the EM_SETIMEMODEBIAS message */
804 #define IMF_SMODE_PLAURALCLAUSE 0x00000001
805 #define IMF_SMODE_NONE          0x00000002
806
807 /* Parameters of the EM_SETIMEOPTIONS message */
808 #define IMF_FORCENONE         0x00000001
809 #define IMF_FORCEENABLE       0x00000002
810 #define IMF_FORCEDISABLE      0x00000004
811 #define IMF_CLOSESTATUSWINDOW 0x00000008
812 #define IMF_VERTICAL          0x00000020
813 #define IMF_FORCEACTIVE       0x00000040
814 #define IMF_FORCEINACTIVE     0x00000080
815 #define IMF_FORCEREMEMBER     0x00000100
816 #define IMF_MULTIPLEEDIT      0x00000400
817
818 /* return values of the EM_SELECTION_TYPE message */
819 #define SEL_EMPTY             0x00000000
820 #define SEL_TEXT              0x00000001
821 #define SEL_OBJECT            0x00000002
822 #define SEL_MULTICHAR         0x00000004
823 #define SEL_MULTIOBJECT       0x00000008
824
825 /* ENOLEOPFAILED.lOper value that indicates operation failure */
826 #define OLEOP_DOVERB          0x00000001
827
828 /* punctionation type values for wParam of EM_SETPUNCTUATION message */
829 #define PC_FOLLOWING          0x00000001
830 #define PC_LEADING            0x00000002
831 #define PC_OVERFLOW           0x00000003
832 #define PC_DELIMITER          0x00000004
833
834 /* mask values in the PARAFORMAT structure */
835 #define PFM_STARTINDENT       0x00000001
836 #define PFM_RIGHTINDENT       0x00000002
837 #define PFM_OFFSET            0x00000004
838 #define PFM_ALIGNMENT         0x00000008
839 #define PFM_TABSTOPS          0x00000010
840 #define PFM_NUMBERING         0x00000020
841 #define PFM_OFFSETINDENT      0x80000000
842
843 /* mask values in the PARAFORMAT2 structure */
844 #define PFM_SPACEBEFORE       0x00000040
845 #define PFM_SPACEAFTER        0x00000080
846 #define PFM_LINESPACING       0x00000100
847 #define PFM_STYLE             0x00000400
848 #define PFM_BORDER            0x00000800
849 #define PFM_SHADING           0x00001000
850 #define PFM_NUMBERINGSTYLE    0x00002000
851 #define PFM_NUMBERINGTAB      0x00004000
852 #define PFM_NUMBERINGSTART    0x00008000
853 #define PFM_RTLPARA           0x00010000
854 #define PFM_KEEP              0x00020000
855 #define PFM_KEEPNEXT          0x00040000
856 #define PFM_PAGEBREAKBEFORE   0x00080000
857 #define PFM_NOLINENUMBER      0x00100000
858 #define PFM_NOWIDOWCONTROL    0x00200000
859 #define PFM_DONOTHYPHEN       0x00400000
860 #define PFM_SIDEBYSIDE        0x00800000
861 #define PFM_COLLAPSED         0x01000000
862 #define PFM_OUTLINELEVEL      0x02000000
863 #define PFM_BOX               0x04000000
864 #define PFM_RESERVED2         0x08000000
865 #define PFM_TABLEROWDELIMITER 0x10000000
866 #define PFM_TEXTWRAPPINGBREAK 0x20000000
867 #define PFM_TABLE             0x40000000
868
869 #define PFM_ALL               (PFM_STARTINDENT | \
870                                PFM_RIGHTINDENT | \
871                                PFM_OFFSET | \
872                                PFM_ALIGNMENT | \
873                                PFM_TABSTOPS | \
874                                PFM_NUMBERING | \
875                                PFM_OFFSETINDENT | \
876                                PFM_RTLPARA)
877
878 #define PFM_EFFECTS           (PFM_RTLPARA | \
879                                PFM_KEEP | \
880                                PFM_KEEPNEXT | \
881                                PFM_PAGEBREAKBEFORE | \
882                                PFM_NOLINENUMBER | \
883                                PFM_NOWIDOWCONTROL | \
884                                PFM_DONOTHYPHEN | \
885                                PFM_SIDEBYSIDE | \
886                                PFM_TABLEROWDELIMITER | \
887                                PFM_TABLE)
888
889 #define PFM_ALL2              (PFM_ALL | \
890                                PFM_EFFECTS | \
891                                PFM_SPACEBEFORE | \
892                                PFM_SPACEAFTER | \
893                                PFM_LINESPACING | \
894                                PFM_STYLE | \
895                                PFM_BORDER | \
896                                PFM_SHADING | \
897                                PFM_NUMBERINGSTYLE | \
898                                PFM_NUMBERINGTAB | \
899                                PFM_NUMBERINGSTART)
900
901 /* numbering option */
902 #define PFN_BULLET            0x00000001
903 #define PFN_ARABIC            0x00000002
904 #define PFN_LCLETTER          0x00000003
905 #define PFN_UCLETTER          0x00000004
906 #define PFN_LCROMAN           0x00000005
907 #define PFN_UCROMAN           0x00000006
908
909 /* paragraph format numbering styles */
910 #define PFNS_PAREN            0x00000000
911 #define PFNS_PARENS           0x00000100
912 #define PFNS_PERIOD           0x00000200
913 #define PFNS_PLAIN            0x00000300
914 #define PFNS_NONUMBER         0x00000400
915 #define PFNS_NEWNUMBER        0x00008000
916
917 /* paragraph alignment */
918 #define PFA_LEFT              0x00000001
919 #define PFA_RIGHT             0x00000002
920 #define PFA_CENTER            0x00000003
921 #define PFA_JUSTIFY           0x00000004
922 #define PFA_FULL_INTERWORD    0x00000004
923 #define PFA_FULL_INTERLETTER  0x00000005
924 #define PFA_FULL_SCALED       0x00000006
925 #define PFA_FULL_GLYPHS       0x00000007
926 #define PFA_SNAP_GRID         0x00000008
927
928 /* paragraph effects */
929 #define PFE_RTLPARA           0x00000001
930 #define PFE_KEEP              0x00000002
931 #define PFE_KEEPNEXT          0x00000004
932 #define PFE_PAGEBREAKBEFORE   0x00000008
933 #define PFE_NOLINENUMBER      0x00000010
934 #define PFE_NOWIDOWCONTROL    0x00000020
935 #define PFE_DONOTHYPHEN       0x00000040
936 #define PFE_SIDEBYSIDE        0x00000080
937 #define PFE_COLLAPSED         0x00000100
938 #define PFE_BOX               0x00000400
939 #define PFE_TABLEROWDELIMITER 0x00001000
940 #define PFE_TEXTWRAPPINGBREAK 0x00002000
941 #define PFE_TABLE             0x00004000
942
943 /* Set Edit Style flags for EM_SETEDITSTYLE message */
944 #define SES_EMULATESYSEDIT      0x00000001
945 #define SES_BEEPONMAXTEXT       0x00000002
946 #define SES_EXTENDBACKCOLOR     0x00000004
947 #define SES_MAPCPS              0x00000008
948 #define SES_EMULATE10           0x00000010
949 #define SES_USECRLF             0x00000020
950 #define SES_NOXLTSYMBOLRANGE    0x00000020
951 #define SES_USEAIMM             0x00000040
952 #define SES_NOIME               0x00000080
953 #define SES_ALLOWBEEPS          0x00000100
954 #define SES_UPPERCASE           0x00000200
955 #define SES_LOWERCASE           0x00000400
956 #define SES_NOINPUTSEQUENCECHK  0x00000800
957 #define SES_BIDI                0x00001000
958 #define SES_SCROLLONKILLFOCUS   0x00002000
959 #define SES_XLTCRCRLFTOCR       0x00004000
960 #define SES_DRAFTMODE           0x00008000
961 #define SES_USECTF              0x00010000
962 #define SES_HIDEGRIDLINES       0x00020000
963 #define SES_USEATFONT           0x00040000
964 #define SES_CUSTOMLOOK          0x00080000
965 #define SES_LBSCROLLNOTIFY      0x00100000
966 #define SES_CTFALLOWEMBED       0x00200000
967 #define SES_CTFALLOWSMARTTAG    0x00400000
968 #define SES_CTFALLOWPROOFING    0x00800000
969
970 /* streaming flags */
971 #define SFF_WRITEXTRAPAR      0x00000080
972 #define SFF_PWD               0x00000800
973 #define SFF_KEEPDOCINFO       0x00001000
974 #define SFF_PERSISTVIEWSCALE  0x00002000
975 #define SFF_PLAINRTF          0x00004000
976 #define SFF_SELECTION         0x00008000
977
978 typedef enum _undonameid
979 {
980     UID_UNKNOWN     = 0,
981     UID_TYPING      = 1,
982     UID_DELETE      = 2,
983     UID_DRAGDROP    = 3,
984     UID_CUT         = 4,
985     UID_PASTE       = 5,
986     UID_AUTOCORRECT = 6
987 } UNDONAMEID;
988
989 typedef LONG (*EDITWORDBREAKPROCEX)(char*,LONG,BYTE,INT);
990
991 #define VM_OUTLINE            0x00000002
992 #define VM_NORMAL             0x00000004
993 #define VM_PAGE               0x00000009
994
995 /* options of the EM_FINDWORDBREAK message */
996 #define WB_CLASSIFY           0x00000003
997 #define WB_MOVEWORDLEFT       0x00000004
998 #define WB_MOVEWORDPREV       0x00000004
999 #define WB_MOVEWORDRIGHT      0x00000005
1000 #define WB_MOVEWORDNEXT       0x00000005
1001 #define WB_LEFTBREAK          0x00000006
1002 #define WB_PREVBREAK          0x00000006
1003 #define WB_RIGHTBREAK         0x00000007
1004 #define WB_NEXTBREAK          0x00000007
1005
1006 /* options of the EM_SETWORDWRAPMODE message */
1007 #define WBF_WORDWRAP          0x00000010
1008 #define WBF_WORDBREAK         0x00000020
1009 #define WBF_OVERFLOW          0x00000040
1010 #define WBF_LEVEL1            0x00000080
1011 #define WBF_LEVEL2            0x00000100
1012 #define WBF_CUSTOM            0x00000200
1013
1014 #define WBF_CLASS             ((BYTE) 0x0F)
1015 #define WBF_ISWHITE           ((BYTE) 0x10)
1016 #define WBF_BREAKLINE         ((BYTE) 0x20)
1017 #define WBF_BREAKAFTER        ((BYTE) 0x40)
1018
1019 /* Placeholder unicode character for an embedded object */
1020 #ifndef WCH_EMBEDDING
1021 #define WCH_EMBEDDING         (WCHAR)0xFFFC
1022 #endif
1023
1024 /* options of the EM_SETTEXTMODE message */
1025 #define TM_PLAINTEXT          0x00000001
1026 #define TM_RICHTEXT           0x00000002
1027 #define TM_SINGLELEVELUNDO    0x00000004
1028 #define TM_MULTILEVELUNDO     0x00000008
1029 #define TM_SINGLECODEPAGE     0x00000010
1030 #define TM_MULTICODEPAGE      0x00000020
1031
1032 /* GETTEXTEX structure flags */
1033 #define GT_DEFAULT            0x00000000
1034 #define GT_USECRLF            0x00000001
1035 #define GT_SELECTION          0x00000002
1036 #define GT_RAWTEXT            0x00000004
1037 #define GT_NOHIDDENTEXT       0x00000008
1038
1039 /* Options of the EM_SETTYPOGRAPHYOPTIONS message */
1040 #define TO_ADVANCEDTYPOGRAPHY   0x00000001
1041 #define TO_SIMPLELINEBREAK      0x00000002
1042 #define TO_DISABLECUSTOMTEXTOUT 0x00000004
1043 #define TO_ADVANCEDLAYOUT       0x00000008
1044
1045 typedef struct _gettextlengthex {
1046     DWORD      flags;
1047     UINT       codepage;
1048 } GETTEXTLENGTHEX;
1049
1050 /* Flags of the GETTEXTLENGTHEX structure */
1051 #define GTL_DEFAULT           0x00000000
1052 #define GTL_USECRLF           0x00000001
1053 #define GTL_PRECISE           0x00000002
1054 #define GTL_CLOSE             0x00000004
1055 #define GTL_NUMCHARS          0x00000008
1056 #define GTL_NUMBYTES          0x00000010
1057
1058 #define GCM_RIGHTMOUSEDROP    0x8000
1059
1060 /* Options of the EM_SETTEXTEX message */
1061 typedef struct _settextex {
1062     DWORD       flags;
1063     UINT        codepage;
1064 } SETTEXTEX;
1065
1066 /* Flags of the EM_SETTEXTEX message */
1067 #define ST_DEFAULT            0x00000000        
1068 #define ST_KEEPUNDO           0x00000001
1069 #define ST_SELECTION          0x00000002
1070
1071 #define ST_NEWCHARS           0x00000004
1072
1073 #ifdef __cplusplus
1074 }
1075 #endif
1076
1077 #include <poppack.h>
1078
1079 #endif /* __WINE_RICHEDIT_H */