richedit: Revert patch that introduced a test that fails on all platforms.
[wine/wine64.git] / dlls / riched20 / editor.c
blob60db1bf4fe7219f7300e183f3ea9922f55268b21
1 /*
2 * RichEdit - functions dealing with editor object
4 * Copyright 2004 by Krzysztof Foltman
5 * Copyright 2005 by Cihan Altinay
6 * Copyright 2005 by Phil Krylov
7 * Copyright 2008 Eric Pouech
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 /*
25 API implementation status:
27 Messages (ANSI versions not done yet)
28 + EM_AUTOURLDETECT 2.0
29 + EM_CANPASTE
30 + EM_CANREDO 2.0
31 + EM_CANUNDO
32 + EM_CHARFROMPOS
33 - EM_DISPLAYBAND
34 + EM_EMPTYUNDOBUFFER
35 + EM_EXGETSEL
36 + EM_EXLIMITTEXT
37 + EM_EXLINEFROMCHAR
38 + EM_EXSETSEL
39 + EM_FINDTEXT (only FR_DOWN flag implemented)
40 + EM_FINDTEXTEX (only FR_DOWN flag implemented)
41 - EM_FINDWORDBREAK
42 - EM_FMTLINES
43 - EM_FORMATRANGE
44 + EM_GETAUTOURLDETECT 2.0
45 - EM_GETBIDIOPTIONS 3.0
46 - EM_GETCHARFORMAT (partly done)
47 - EM_GETEDITSTYLE
48 + EM_GETEVENTMASK
49 + EM_GETFIRSTVISIBLELINE (can be optimized if needed)
50 - EM_GETIMECOLOR 1.0asian
51 - EM_GETIMECOMPMODE 2.0
52 - EM_GETIMEOPTIONS 1.0asian
53 - EM_GETIMESTATUS
54 - EM_GETLANGOPTIONS 2.0
55 + EM_GETLIMITTEXT
56 + EM_GETLINE
57 + EM_GETLINECOUNT returns number of rows, not of paragraphs
58 + EM_GETMODIFY
59 - EM_GETOLEINTERFACE
60 + EM_GETOPTIONS
61 + EM_GETPARAFORMAT
62 + EM_GETPASSWORDCHAR 2.0
63 - EM_GETPUNCTUATION 1.0asian
64 + EM_GETRECT
65 - EM_GETREDONAME 2.0
66 + EM_GETSEL
67 + EM_GETSELTEXT (ANSI&Unicode)
68 + EM_GETSCROLLPOS 3.0 (only Y value valid)
69 ! - EM_GETTHUMB
70 + EM_GETTEXTEX 2.0
71 + EM_GETTEXTLENGTHEX (GTL_PRECISE unimplemented)
72 - EM_GETTEXTMODE 2.0
73 ? + EM_GETTEXTRANGE (ANSI&Unicode)
74 - EM_GETTYPOGRAPHYOPTIONS 3.0
75 - EM_GETUNDONAME
76 + EM_GETWORDBREAKPROC
77 - EM_GETWORDBREAKPROCEX
78 - EM_GETWORDWRAPMODE 1.0asian
79 + EM_GETZOOM 3.0
80 + EM_HIDESELECTION
81 + EM_LIMITTEXT (Also called EM_SETLIMITTEXT)
82 + EM_LINEFROMCHAR
83 + EM_LINEINDEX
84 + EM_LINELENGTH
85 + EM_LINESCROLL
86 - EM_PASTESPECIAL
87 + EM_POSFROMCHAR
88 + EM_REDO 2.0
89 + EM_REQUESTRESIZE
90 + EM_REPLACESEL (proper style?) ANSI&Unicode
91 + EM_SCROLL
92 + EM_SCROLLCARET
93 - EM_SELECTIONTYPE
94 - EM_SETBIDIOPTIONS 3.0
95 + EM_SETBKGNDCOLOR
96 + EM_SETCHARFORMAT (partly done, no ANSI)
97 - EM_SETEDITSTYLE
98 + EM_SETEVENTMASK (few notifications supported)
99 - EM_SETFONTSIZE
100 - EM_SETIMECOLOR 1.0asian
101 - EM_SETIMEOPTIONS 1.0asian
102 - EM_SETLANGOPTIONS 2.0
103 - EM_SETLIMITTEXT
104 + EM_SETMODIFY (not sure if implementation is correct)
105 - EM_SETOLECALLBACK
106 + EM_SETOPTIONS (partially implemented)
107 - EM_SETPALETTE 2.0
108 + EM_SETPARAFORMAT
109 + EM_SETPASSWORDCHAR 2.0
110 - EM_SETPUNCTUATION 1.0asian
111 + EM_SETREADONLY no beep on modification attempt
112 + EM_SETRECT
113 + EM_SETRECTNP (EM_SETRECT without repainting)
114 + EM_SETSEL
115 + EM_SETSCROLLPOS 3.0
116 - EM_SETTABSTOPS 3.0
117 - EM_SETTARGETDEVICE (partial)
118 + EM_SETTEXTEX 3.0 (proper style?)
119 - EM_SETTEXTMODE 2.0
120 - EM_SETTYPOGRAPHYOPTIONS 3.0
121 + EM_SETUNDOLIMIT 2.0
122 + EM_SETWORDBREAKPROC (used only for word movement at the moment)
123 - EM_SETWORDBREAKPROCEX
124 - EM_SETWORDWRAPMODE 1.0asian
125 + EM_SETZOOM 3.0
126 + EM_SHOWSCROLLBAR 2.0
127 - EM_STOPGROUPTYPING 2.0
128 + EM_STREAMIN
129 + EM_STREAMOUT
130 + EM_UNDO
131 + WM_CHAR
132 + WM_CLEAR
133 + WM_COPY
134 + WM_CUT
135 + WM_GETDLGCODE (the current implementation is incomplete)
136 + WM_GETTEXT (ANSI&Unicode)
137 + WM_GETTEXTLENGTH (ANSI version sucks)
138 + WM_PASTE
139 + WM_SETFONT
140 + WM_SETTEXT (resets undo stack !) (proper style?) ANSI&Unicode
141 - WM_STYLECHANGING
142 - WM_STYLECHANGED (things like read-only flag)
143 - WM_UNICHAR
145 Notifications
147 * EN_CHANGE (sent from the wrong place)
148 - EN_CORRECTTEXT
149 - EN_DROPFILES
150 - EN_ERRSPACE
151 - EN_HSCROLL
152 - EN_IMECHANGE
153 + EN_KILLFOCUS
154 - EN_LINK
155 - EN_MAXTEXT
156 - EN_MSGFILTER
157 - EN_OLEOPFAILED
158 - EN_PROTECTED
159 + EN_REQUESTRESIZE
160 - EN_SAVECLIPBOARD
161 + EN_SELCHANGE
162 + EN_SETFOCUS
163 - EN_STOPNOUNDO
164 * EN_UPDATE (sent from the wrong place)
165 - EN_VSCROLL
167 Styles
169 - ES_AUTOHSCROLL
170 - ES_AUTOVSCROLL
171 - ES_CENTER
172 + ES_DISABLENOSCROLL (scrollbar is always visible)
173 - ES_EX_NOCALLOLEINIT
174 - ES_LEFT
175 - ES_MULTILINE (currently single line controls aren't supported)
176 - ES_NOIME
177 - ES_READONLY (I'm not sure if beeping is the proper behaviour)
178 - ES_RIGHT
179 - ES_SAVESEL
180 - ES_SELFIME
181 - ES_SUNKEN
182 - ES_VERTICAL
183 - ES_WANTRETURN (don't know how to do WM_GETDLGCODE part)
184 - WS_SETFONT
185 - WS_HSCROLL
186 + WS_VSCROLL
190 * RICHED20 TODO (incomplete):
192 * - messages/styles/notifications listed above
193 * - Undo coalescing
194 * - add remaining CHARFORMAT/PARAFORMAT fields
195 * - right/center align should strip spaces from the beginning
196 * - pictures/OLE objects (not just smiling faces that lack API support ;-) )
197 * - COM interface (looks like a major pain in the TODO list)
198 * - calculate heights of pictures (half-done)
199 * - horizontal scrolling (not even started)
200 * - hysteresis during wrapping (related to scrollbars appearing/disappearing)
201 * - find/replace
202 * - how to implement EM_FORMATRANGE and EM_DISPLAYBAND ? (Mission Impossible)
203 * - italic caret with italic fonts
204 * - IME
205 * - most notifications aren't sent at all (the most important ones are)
206 * - when should EN_SELCHANGE be sent after text change ? (before/after EN_UPDATE?)
207 * - WM_SETTEXT may use wrong style (but I'm 80% sure it's OK)
208 * - EM_GETCHARFORMAT with SCF_SELECTION may not behave 100% like in original (but very close)
209 * - full justification
210 * - hyphenation
211 * - tables
212 * - ListBox & ComboBox not implemented
214 * Bugs that are probably fixed, but not so easy to verify:
215 * - EN_UPDATE/EN_CHANGE are handled very incorrectly (should be OK now)
216 * - undo for ME_JoinParagraphs doesn't store paragraph format ? (it does)
217 * - check/fix artificial EOL logic (bCursorAtEnd, hardly logical)
218 * - caret shouldn't be displayed when selection isn't empty
219 * - check refcounting in style management functions (looks perfect now, but no bugs is suspicious)
220 * - undo for setting default format (done, might be buggy)
221 * - styles might be not released properly (looks like they work like charm, but who knows?
225 #include "editor.h"
226 #include "commdlg.h"
227 #include "winreg.h"
228 #define NO_SHLWAPI_STREAM
229 #include "shlwapi.h"
230 #include "rtf.h"
231 #include "imm.h"
232 #include "res.h"
234 #define STACK_SIZE_DEFAULT 100
235 #define STACK_SIZE_MAX 1000
237 #define TEXT_LIMIT_DEFAULT 32767
239 WINE_DEFAULT_DEBUG_CHANNEL(richedit);
241 static BOOL ME_RegisterEditorClass(HINSTANCE);
243 static const WCHAR RichEdit20W[] = {'R', 'i', 'c', 'h', 'E', 'd', 'i', 't', '2', '0', 'W', 0};
244 static const WCHAR RichEdit50W[] = {'R', 'i', 'c', 'h', 'E', 'd', 'i', 't', '5', '0', 'W', 0};
245 static const WCHAR REListBox20W[] = {'R','E','L','i','s','t','B','o','x','2','0','W', 0};
246 static const WCHAR REComboBox20W[] = {'R','E','C','o','m','b','o','B','o','x','2','0','W', 0};
247 static HCURSOR hLeft;
249 int me_debug = 0;
250 HANDLE me_heap = NULL;
252 static BOOL ME_ListBoxRegistered = FALSE;
253 static BOOL ME_ComboBoxRegistered = FALSE;
255 static inline int is_version_nt(void)
257 return !(GetVersion() & 0x80000000);
260 static ME_TextBuffer *ME_MakeText(void) {
262 ME_TextBuffer *buf = ALLOC_OBJ(ME_TextBuffer);
264 ME_DisplayItem *p1 = ME_MakeDI(diTextStart);
265 ME_DisplayItem *p2 = ME_MakeDI(diTextEnd);
267 p1->prev = NULL;
268 p1->next = p2;
269 p2->prev = p1;
270 p2->next = NULL;
271 p1->member.para.next_para = p2;
272 p2->member.para.prev_para = p1;
273 p2->member.para.nCharOfs = 0;
275 buf->pFirst = p1;
276 buf->pLast = p2;
277 buf->pCharStyle = NULL;
279 return buf;
283 static LRESULT ME_StreamInText(ME_TextEditor *editor, DWORD dwFormat, ME_InStream *stream, ME_Style *style)
285 WCHAR wszText[STREAMIN_BUFFER_SIZE+1];
286 WCHAR *pText;
288 TRACE("%08x %p\n", dwFormat, stream);
290 do {
291 long nWideChars = 0;
293 if (!stream->dwSize)
295 ME_StreamInFill(stream);
296 if (stream->editstream->dwError)
297 break;
298 if (!stream->dwSize)
299 break;
302 if (!(dwFormat & SF_UNICODE))
304 /* FIXME? this is doomed to fail on true MBCS like UTF-8, luckily they're unlikely to be used as CP_ACP */
305 nWideChars = MultiByteToWideChar(CP_ACP, 0, stream->buffer, stream->dwSize, wszText, STREAMIN_BUFFER_SIZE);
306 pText = wszText;
308 else
310 nWideChars = stream->dwSize >> 1;
311 pText = (WCHAR *)stream->buffer;
314 ME_InsertTextFromCursor(editor, 0, pText, nWideChars, style);
315 if (stream->dwSize == 0)
316 break;
317 stream->dwSize = 0;
318 } while(1);
319 ME_CommitUndo(editor);
320 ME_UpdateRepaint(editor);
321 return 0;
324 static void ME_RTFCharAttrHook(RTF_Info *info)
326 CHARFORMAT2W fmt;
327 fmt.cbSize = sizeof(fmt);
328 fmt.dwMask = 0;
329 fmt.dwEffects = 0;
331 switch(info->rtfMinor)
333 case rtfPlain:
334 /* FIXME add more flags once they're implemented */
335 fmt.dwMask = CFM_BOLD | CFM_ITALIC | CFM_UNDERLINETYPE | CFM_STRIKEOUT | CFM_COLOR | CFM_BACKCOLOR | CFM_SIZE | CFM_WEIGHT;
336 fmt.dwEffects = CFE_AUTOCOLOR | CFE_AUTOBACKCOLOR;
337 fmt.yHeight = 12*20; /* 12pt */
338 fmt.wWeight = FW_NORMAL;
339 fmt.bUnderlineType = CFU_UNDERLINENONE;
340 break;
341 case rtfBold:
342 fmt.dwMask = CFM_BOLD | CFM_WEIGHT;
343 fmt.dwEffects = info->rtfParam ? CFE_BOLD : 0;
344 fmt.wWeight = info->rtfParam ? FW_BOLD : FW_NORMAL;
345 break;
346 case rtfItalic:
347 fmt.dwMask = CFM_ITALIC;
348 fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
349 break;
350 case rtfUnderline:
351 fmt.dwMask = CFM_UNDERLINETYPE;
352 fmt.bUnderlineType = info->rtfParam ? CFU_CF1UNDERLINE : CFU_UNDERLINENONE;
353 break;
354 case rtfDotUnderline:
355 fmt.dwMask = CFM_UNDERLINETYPE;
356 fmt.bUnderlineType = info->rtfParam ? CFU_UNDERLINEDOTTED : CFU_UNDERLINENONE;
357 break;
358 case rtfDbUnderline:
359 fmt.dwMask = CFM_UNDERLINETYPE;
360 fmt.bUnderlineType = info->rtfParam ? CFU_UNDERLINEDOUBLE : CFU_UNDERLINENONE;
361 break;
362 case rtfWordUnderline:
363 fmt.dwMask = CFM_UNDERLINETYPE;
364 fmt.bUnderlineType = info->rtfParam ? CFU_UNDERLINEWORD : CFU_UNDERLINENONE;
365 break;
366 case rtfNoUnderline:
367 fmt.dwMask = CFM_UNDERLINETYPE;
368 fmt.bUnderlineType = CFU_UNDERLINENONE;
369 break;
370 case rtfStrikeThru:
371 fmt.dwMask = CFM_STRIKEOUT;
372 fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
373 break;
374 case rtfSubScript:
375 case rtfSuperScript:
376 case rtfSubScrShrink:
377 case rtfSuperScrShrink:
378 case rtfNoSuperSub:
379 fmt.dwMask = CFM_SUBSCRIPT|CFM_SUPERSCRIPT;
380 if (info->rtfMinor == rtfSubScrShrink) fmt.dwEffects = CFE_SUBSCRIPT;
381 if (info->rtfMinor == rtfSuperScrShrink) fmt.dwEffects = CFE_SUPERSCRIPT;
382 if (info->rtfMinor == rtfNoSuperSub) fmt.dwEffects = 0;
383 break;
384 case rtfInvisible:
385 fmt.dwMask = CFM_HIDDEN;
386 fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
387 break;
388 case rtfBackColor:
389 fmt.dwMask = CFM_BACKCOLOR;
390 fmt.dwEffects = 0;
391 if (info->rtfParam == 0)
392 fmt.dwEffects = CFE_AUTOBACKCOLOR;
393 else if (info->rtfParam != rtfNoParam)
395 RTFColor *c = RTFGetColor(info, info->rtfParam);
396 fmt.crTextColor = (c->rtfCBlue<<16)|(c->rtfCGreen<<8)|(c->rtfCRed);
398 break;
399 case rtfForeColor:
400 fmt.dwMask = CFM_COLOR;
401 fmt.dwEffects = 0;
402 if (info->rtfParam == 0)
403 fmt.dwEffects = CFE_AUTOCOLOR;
404 else if (info->rtfParam != rtfNoParam)
406 RTFColor *c = RTFGetColor(info, info->rtfParam);
407 if (c)
408 fmt.crTextColor = (c->rtfCBlue<<16)|(c->rtfCGreen<<8)|(c->rtfCRed);
409 else
410 fmt.crTextColor = 0;
412 break;
413 case rtfFontNum:
414 if (info->rtfParam != rtfNoParam)
416 RTFFont *f = RTFGetFont(info, info->rtfParam);
417 if (f)
419 MultiByteToWideChar(CP_ACP, 0, f->rtfFName, -1, fmt.szFaceName, sizeof(fmt.szFaceName)/sizeof(WCHAR));
420 fmt.szFaceName[sizeof(fmt.szFaceName)/sizeof(WCHAR)-1] = '\0';
421 fmt.bCharSet = f->rtfFCharSet;
422 fmt.dwMask = CFM_FACE | CFM_CHARSET;
423 fmt.bPitchAndFamily = f->rtfFPitch | (f->rtfFFamily << 4);
426 break;
427 case rtfFontSize:
428 fmt.dwMask = CFM_SIZE;
429 if (info->rtfParam != rtfNoParam)
430 fmt.yHeight = info->rtfParam*10;
431 break;
433 if (fmt.dwMask) {
434 ME_Style *style2;
435 RTFFlushOutputBuffer(info);
436 /* FIXME too slow ? how come ? */
437 style2 = ME_ApplyStyle(info->style, &fmt);
438 ME_ReleaseStyle(info->style);
439 info->style = style2;
440 info->styleChanged = TRUE;
444 /* FIXME this function doesn't get any information about context of the RTF tag, which is very bad,
445 the same tags mean different things in different contexts */
446 static void ME_RTFParAttrHook(RTF_Info *info)
448 PARAFORMAT2 fmt;
449 fmt.cbSize = sizeof(fmt);
450 fmt.dwMask = 0;
452 switch(info->rtfMinor)
454 case rtfParDef: /* restores default paragraph attributes */
455 fmt.dwMask = PFM_ALIGNMENT | PFM_BORDER | PFM_LINESPACING | PFM_TABSTOPS | PFM_OFFSET |
456 PFM_RIGHTINDENT | PFM_SPACEAFTER | PFM_SPACEBEFORE | PFM_STARTINDENT;
457 /* TODO: numbering, shading */
458 fmt.wAlignment = PFA_LEFT;
459 fmt.cTabCount = 0;
460 fmt.dxOffset = fmt.dxStartIndent = fmt.dxRightIndent = 0;
461 fmt.wBorderWidth = fmt.wBorders = 0;
462 fmt.wBorderSpace = 0;
463 fmt.bLineSpacingRule = 0;
464 fmt.dySpaceBefore = fmt.dySpaceAfter = 0;
465 fmt.dyLineSpacing = 0;
466 RTFFlushOutputBuffer(info);
467 ME_GetParagraph(info->editor->pCursors[0].pRun)->member.para.bTable = FALSE;
468 break;
469 case rtfInTable:
471 ME_DisplayItem *para;
473 RTFFlushOutputBuffer(info);
474 para = ME_GetParagraph(info->editor->pCursors[0].pRun);
475 assert(para->member.para.pCells);
476 para->member.para.bTable = TRUE;
477 return;
479 case rtfFirstIndent:
480 ME_GetSelectionParaFormat(info->editor, &fmt);
481 fmt.dwMask |= PFM_STARTINDENT | PFM_OFFSET;
482 fmt.dxStartIndent += info->rtfParam;
483 fmt.dxOffset = -info->rtfParam;
484 break;
485 case rtfLeftIndent:
486 /* we assume rtfLeftIndent is always specified before rtfFirstIndent */
487 ME_GetSelectionParaFormat(info->editor, &fmt);
488 fmt.dwMask |= PFM_STARTINDENT;
489 fmt.dxStartIndent = info->rtfParam;
490 fmt.dxOffset = 0;
491 break;
492 case rtfRightIndent:
493 fmt.dwMask = PFM_RIGHTINDENT;
494 fmt.dxRightIndent = info->rtfParam;
495 break;
496 case rtfQuadLeft:
497 case rtfQuadJust:
498 fmt.dwMask = PFM_ALIGNMENT;
499 fmt.wAlignment = PFA_LEFT;
500 break;
501 case rtfQuadRight:
502 fmt.dwMask = PFM_ALIGNMENT;
503 fmt.wAlignment = PFA_RIGHT;
504 break;
505 case rtfQuadCenter:
506 fmt.dwMask = PFM_ALIGNMENT;
507 fmt.wAlignment = PFA_CENTER;
508 break;
509 case rtfTabPos:
510 ME_GetSelectionParaFormat(info->editor, &fmt);
511 if (!(fmt.dwMask & PFM_TABSTOPS))
513 fmt.dwMask |= PFM_TABSTOPS;
514 fmt.cTabCount = 0;
516 if (fmt.cTabCount < MAX_TAB_STOPS)
517 fmt.rgxTabs[fmt.cTabCount++] = info->rtfParam;
518 break;
519 case rtfKeep:
520 fmt.dwMask = PFM_KEEP;
521 fmt.wEffects = PFE_KEEP;
522 break;
523 case rtfNoWidowControl:
524 fmt.dwMask = PFM_NOWIDOWCONTROL;
525 fmt.wEffects = PFE_NOWIDOWCONTROL;
526 break;
527 case rtfKeepNext:
528 fmt.dwMask = PFM_KEEPNEXT;
529 fmt.wEffects = PFE_KEEPNEXT;
530 break;
531 case rtfSpaceAfter:
532 fmt.dwMask = PFM_SPACEAFTER;
533 fmt.dySpaceAfter = info->rtfParam;
534 break;
535 case rtfSpaceBefore:
536 fmt.dwMask = PFM_SPACEBEFORE;
537 fmt.dySpaceBefore = info->rtfParam;
538 break;
539 case rtfSpaceBetween:
540 fmt.dwMask = PFM_LINESPACING;
541 if ((int)info->rtfParam > 0)
543 fmt.dyLineSpacing = info->rtfParam;
544 fmt.bLineSpacingRule = 3;
546 else
548 fmt.dyLineSpacing = info->rtfParam;
549 fmt.bLineSpacingRule = 4;
551 case rtfSpaceMultiply:
552 fmt.dwMask = PFM_LINESPACING;
553 fmt.dyLineSpacing = info->rtfParam * 20;
554 fmt.bLineSpacingRule = 5;
555 break;
556 case rtfParBullet:
557 fmt.dwMask = PFM_NUMBERING;
558 fmt.wNumbering = PFN_BULLET;
559 break;
560 case rtfParSimple:
561 fmt.dwMask = PFM_NUMBERING;
562 fmt.wNumbering = 2; /* FIXME: MSDN says it's not used ?? */
563 break;
564 case rtfParNumDecimal:
565 fmt.dwMask = PFM_NUMBERING;
566 fmt.wNumbering = 2; /* FIXME: MSDN says it's not used ?? */
567 break;
568 case rtfParNumIndent:
569 fmt.dwMask = PFM_NUMBERINGTAB;
570 fmt.wNumberingTab = info->rtfParam;
571 break;
572 case rtfParNumStartAt:
573 fmt.dwMask = PFM_NUMBERINGSTART;
574 fmt.wNumberingStart = info->rtfParam;
575 break;
576 case rtfBorderLeft:
577 ME_GetSelectionParaFormat(info->editor, &fmt);
578 if (!(fmt.dwMask & PFM_BORDER))
580 fmt.dwMask |= PFM_BORDER;
581 fmt.wBorderSpace = 0;
582 fmt.wBorderWidth = 1;
583 fmt.wBorders = 0;
585 fmt.wBorders |= 1;
586 break;
587 case rtfBorderRight:
588 ME_GetSelectionParaFormat(info->editor, &fmt);
589 if (!(fmt.dwMask & PFM_BORDER))
591 fmt.dwMask |= PFM_BORDER;
592 fmt.wBorderSpace = 0;
593 fmt.wBorderWidth = 1;
594 fmt.wBorders = 0;
596 fmt.wBorders |= 2;
597 break;
598 case rtfBorderTop:
599 ME_GetSelectionParaFormat(info->editor, &fmt);
600 if (!(fmt.dwMask & PFM_BORDER))
602 fmt.dwMask |= PFM_BORDER;
603 fmt.wBorderSpace = 0;
604 fmt.wBorderWidth = 1;
605 fmt.wBorders = 0;
607 fmt.wBorders |= 4;
608 break;
609 case rtfBorderBottom:
610 ME_GetSelectionParaFormat(info->editor, &fmt);
611 if (!(fmt.dwMask & PFM_BORDER))
613 fmt.dwMask |= PFM_BORDER;
614 fmt.wBorderSpace = 0;
615 fmt.wBorderWidth = 1;
616 fmt.wBorders = 0;
618 fmt.wBorders |= 8;
619 break;
620 case rtfBorderSingle:
621 ME_GetSelectionParaFormat(info->editor, &fmt);
622 /* we assume that borders have been created before (RTF spec) */
623 fmt.wBorders &= ~0x700;
624 fmt.wBorders |= 1 << 8;
625 break;
626 case rtfBorderThick:
627 ME_GetSelectionParaFormat(info->editor, &fmt);
628 /* we assume that borders have been created before (RTF spec) */
629 fmt.wBorders &= ~0x700;
630 fmt.wBorders |= 2 << 8;
631 break;
632 case rtfBorderShadow:
633 ME_GetSelectionParaFormat(info->editor, &fmt);
634 /* we assume that borders have been created before (RTF spec) */
635 fmt.wBorders &= ~0x700;
636 fmt.wBorders |= 10 << 8;
637 break;
638 case rtfBorderDouble:
639 ME_GetSelectionParaFormat(info->editor, &fmt);
640 /* we assume that borders have been created before (RTF spec) */
641 fmt.wBorders &= ~0x700;
642 fmt.wBorders |= 7 << 8;
643 break;
644 case rtfBorderDot:
645 ME_GetSelectionParaFormat(info->editor, &fmt);
646 /* we assume that borders have been created before (RTF spec) */
647 fmt.wBorders &= ~0x700;
648 fmt.wBorders |= 11 << 8;
649 break;
650 case rtfBorderWidth:
651 ME_GetSelectionParaFormat(info->editor, &fmt);
652 /* we assume that borders have been created before (RTF spec) */
653 fmt.wBorderWidth |= ((info->rtfParam / 15) & 7) << 8;
654 break;
655 case rtfBorderSpace:
656 ME_GetSelectionParaFormat(info->editor, &fmt);
657 /* we assume that borders have been created before (RTF spec) */
658 fmt.wBorderSpace = info->rtfParam;
659 break;
661 if (fmt.dwMask) {
662 RTFFlushOutputBuffer(info);
663 /* FIXME too slow ? how come ?*/
664 ME_SetSelectionParaFormat(info->editor, &fmt);
668 static void ME_RTFTblAttrHook(RTF_Info *info)
670 ME_DisplayItem *para;
672 switch (info->rtfMinor)
674 case rtfRowDef:
675 RTFFlushOutputBuffer(info);
676 para = ME_GetParagraph(info->editor->pCursors[0].pRun);
678 /* Release possibly inherited cell definitions */
679 ME_DestroyTableCellList(para);
681 para->member.para.pCells = ALLOC_OBJ(ME_TableCell);
682 para->member.para.pCells->nRightBoundary = 0;
683 para->member.para.pCells->next = NULL;
684 para->member.para.pLastCell = para->member.para.pCells;
685 break;
686 case rtfCellPos:
687 RTFFlushOutputBuffer(info);
688 para = ME_GetParagraph(info->editor->pCursors[0].pRun);
690 if (para->member.para.pLastCell->nRightBoundary)
692 ME_TableCell *pCell = ALLOC_OBJ(ME_TableCell);
694 pCell->next = NULL;
695 para->member.para.pLastCell->next = pCell;
696 para->member.para.pLastCell = pCell;
698 para->member.para.pLastCell->nRightBoundary = info->rtfParam;
699 break;
703 static BOOL ME_RTFInsertOleObject(RTF_Info *info, HENHMETAFILE hemf, HBITMAP hbmp,
704 const SIZEL* sz)
706 LPOLEOBJECT lpObject = NULL;
707 LPSTORAGE lpStorage = NULL;
708 LPOLECLIENTSITE lpClientSite = NULL;
709 LPDATAOBJECT lpDataObject = NULL;
710 LPOLECACHE lpOleCache = NULL;
711 STGMEDIUM stgm;
712 FORMATETC fm;
713 CLSID clsid;
714 BOOL ret = FALSE;
715 DWORD conn;
717 if (hemf)
719 stgm.tymed = TYMED_ENHMF;
720 stgm.u.hEnhMetaFile = hemf;
721 fm.cfFormat = CF_ENHMETAFILE;
723 else if (hbmp)
725 stgm.tymed = TYMED_GDI;
726 stgm.u.hBitmap = hbmp;
727 fm.cfFormat = CF_BITMAP;
729 stgm.pUnkForRelease = NULL;
731 fm.ptd = NULL;
732 fm.dwAspect = DVASPECT_CONTENT;
733 fm.lindex = -1;
734 fm.tymed = stgm.tymed;
736 if (!info->lpRichEditOle)
738 CreateIRichEditOle(info->editor, (VOID**)&info->lpRichEditOle);
741 if (OleCreateDefaultHandler(&CLSID_NULL, NULL, &IID_IOleObject, (void**)&lpObject) == S_OK &&
742 #if 0
743 /* FIXME: enable it when rich-edit properly implements this method */
744 IRichEditOle_GetClientSite(info->lpRichEditOle, &lpClientSite) == S_OK &&
745 IOleObject_SetClientSite(lpObject, lpClientSite) == S_OK &&
746 #endif
747 IOleObject_GetUserClassID(lpObject, &clsid) == S_OK &&
748 IOleObject_QueryInterface(lpObject, &IID_IOleCache, (void**)&lpOleCache) == S_OK &&
749 IOleCache_Cache(lpOleCache, &fm, 0, &conn) == S_OK &&
750 IOleObject_QueryInterface(lpObject, &IID_IDataObject, (void**)&lpDataObject) == S_OK &&
751 IDataObject_SetData(lpDataObject, &fm, &stgm, TRUE) == S_OK)
753 REOBJECT reobject;
755 reobject.cbStruct = sizeof(reobject);
756 reobject.cp = REO_CP_SELECTION;
757 reobject.clsid = clsid;
758 reobject.poleobj = lpObject;
759 reobject.pstg = lpStorage;
760 reobject.polesite = lpClientSite;
761 /* convert from twips to .01 mm */
762 reobject.sizel.cx = MulDiv(sz->cx, 254, 144);
763 reobject.sizel.cy = MulDiv(sz->cy, 254, 144);
764 reobject.dvaspect = DVASPECT_CONTENT;
765 reobject.dwFlags = 0; /* FIXME */
766 reobject.dwUser = 0;
768 /* FIXME: could be simpler */
769 ret = IRichEditOle_InsertObject(info->lpRichEditOle, &reobject) == S_OK;
772 if (lpObject) IOleObject_Release(lpObject);
773 if (lpClientSite) IOleClientSite_Release(lpClientSite);
774 if (lpStorage) IStorage_Release(lpStorage);
775 if (lpDataObject) IDataObject_Release(lpDataObject);
776 if (lpOleCache) IOleCache_Release(lpOleCache);
778 return ret;
781 static void ME_RTFReadPictGroup(RTF_Info *info)
783 SIZEL sz;
784 BYTE* buffer = NULL;
785 unsigned bufsz, bufidx;
786 BOOL flip;
787 BYTE val;
788 METAFILEPICT mfp;
789 HENHMETAFILE hemf;
790 HBITMAP hbmp;
791 enum gfxkind {gfx_unknown = 0, gfx_enhmetafile, gfx_metafile, gfx_dib} gfx = gfx_unknown;
793 RTFGetToken (info);
794 if (info->rtfClass == rtfEOF)
795 return;
796 mfp.mm = MM_TEXT;
797 /* fetch picture type */
798 if (RTFCheckMM (info, rtfPictAttr, rtfWinMetafile))
800 mfp.mm = info->rtfParam;
801 gfx = gfx_metafile;
803 else if (RTFCheckMM (info, rtfPictAttr, rtfDevIndBitmap))
805 if (info->rtfParam != 0) FIXME("dibitmap should be 0 (%d)\n", info->rtfParam);
806 gfx = gfx_dib;
808 else if (RTFCheckMM (info, rtfPictAttr, rtfEmfBlip))
810 gfx = gfx_enhmetafile;
812 else
814 FIXME("%d %d\n", info->rtfMajor, info->rtfMinor);
815 goto skip_group;
817 sz.cx = sz.cy = 0;
818 /* fetch picture attributes */
819 for (;;)
821 RTFGetToken (info);
822 if (info->rtfClass == rtfEOF)
823 return;
824 if (info->rtfClass == rtfText)
825 break;
826 if (!RTFCheckCM (info, rtfControl, rtfPictAttr))
828 ERR("Expected picture attribute (%d %d)\n",
829 info->rtfClass, info->rtfMajor);
830 goto skip_group;
832 else if (RTFCheckMM (info, rtfPictAttr, rtfPicWid))
834 if (gfx == gfx_metafile) mfp.xExt = info->rtfParam;
836 else if (RTFCheckMM (info, rtfPictAttr, rtfPicHt))
838 if (gfx == gfx_metafile) mfp.yExt = info->rtfParam;
840 else if (RTFCheckMM (info, rtfPictAttr, rtfPicGoalWid))
841 sz.cx = info->rtfParam;
842 else if (RTFCheckMM (info, rtfPictAttr, rtfPicGoalHt))
843 sz.cy = info->rtfParam;
844 else
845 FIXME("Non supported attribute: %d %d %d\n", info->rtfClass, info->rtfMajor, info->rtfMinor);
847 /* fetch picture data */
848 bufsz = 1024;
849 bufidx = 0;
850 buffer = HeapAlloc(GetProcessHeap(), 0, bufsz);
851 val = info->rtfMajor;
852 for (flip = TRUE;; flip = !flip)
854 RTFGetToken (info);
855 if (info->rtfClass == rtfEOF)
857 HeapFree(GetProcessHeap(), 0, buffer);
858 return; /* Warn ?? */
860 if (RTFCheckCM(info, rtfGroup, rtfEndGroup))
861 break;
862 if (info->rtfClass != rtfText) goto skip_group;
863 if (flip)
865 if (bufidx >= bufsz &&
866 !(buffer = HeapReAlloc(GetProcessHeap(), 0, buffer, bufsz += 1024)))
867 goto skip_group;
868 buffer[bufidx++] = RTFCharToHex(val) * 16 + RTFCharToHex(info->rtfMajor);
870 else
871 val = info->rtfMajor;
873 if (flip) FIXME("wrong hex string\n");
875 switch (gfx)
877 case gfx_enhmetafile:
878 if ((hemf = SetEnhMetaFileBits(bufidx, buffer)))
879 ME_RTFInsertOleObject(info, hemf, NULL, &sz);
880 break;
881 case gfx_metafile:
882 if ((hemf = SetWinMetaFileBits(bufidx, buffer, NULL, &mfp)))
883 ME_RTFInsertOleObject(info, hemf, NULL, &sz);
884 break;
885 case gfx_dib:
887 BITMAPINFO* bi = (BITMAPINFO*)buffer;
888 HDC hdc = GetDC(0);
889 unsigned nc = bi->bmiHeader.biClrUsed;
891 /* not quite right, especially for bitfields type of compression */
892 if (!nc && bi->bmiHeader.biBitCount <= 8)
893 nc = 1 << bi->bmiHeader.biBitCount;
894 if ((hbmp = CreateDIBitmap(hdc, &bi->bmiHeader,
895 CBM_INIT, (char*)(bi + 1) + nc * sizeof(RGBQUAD),
896 bi, DIB_RGB_COLORS)))
897 ME_RTFInsertOleObject(info, NULL, hbmp, &sz);
898 ReleaseDC(0, hdc);
900 break;
901 default:
902 break;
904 HeapFree(GetProcessHeap(), 0, buffer);
905 RTFRouteToken (info); /* feed "}" back to router */
906 return;
907 skip_group:
908 HeapFree(GetProcessHeap(), 0, buffer);
909 RTFSkipGroup(info);
910 RTFRouteToken(info); /* feed "}" back to router */
913 /* for now, lookup the \result part and use it, whatever the object */
914 static void ME_RTFReadObjectGroup(RTF_Info *info)
916 for (;;)
918 RTFGetToken (info);
919 if (info->rtfClass == rtfEOF)
920 return;
921 if (RTFCheckCM(info, rtfGroup, rtfEndGroup))
922 break;
923 if (RTFCheckCM(info, rtfGroup, rtfBeginGroup))
925 RTFGetToken (info);
926 if (info->rtfClass == rtfEOF)
927 return;
928 if (RTFCheckCMM(info, rtfControl, rtfDestination, rtfObjResult))
930 int level = 1;
932 while (RTFGetToken (info) != rtfEOF)
934 if (info->rtfClass == rtfGroup)
936 if (info->rtfMajor == rtfBeginGroup) level++;
937 else if (info->rtfMajor == rtfEndGroup && --level < 0) break;
939 RTFRouteToken(info);
942 else RTFSkipGroup(info);
943 continue;
945 if (!RTFCheckCM (info, rtfControl, rtfObjAttr))
947 FIXME("Non supported attribute: %d %d %d\n", info->rtfClass, info->rtfMajor, info->rtfMinor);
948 return;
951 RTFRouteToken(info); /* feed "}" back to router */
954 static void ME_RTFReadHook(RTF_Info *info) {
955 switch(info->rtfClass)
957 case rtfGroup:
958 switch(info->rtfMajor)
960 case rtfBeginGroup:
961 if (info->stackTop < maxStack) {
962 info->stack[info->stackTop].fmt = info->style->fmt;
963 info->stack[info->stackTop].codePage = info->codePage;
964 info->stack[info->stackTop].unicodeLength = info->unicodeLength;
966 info->stackTop++;
967 info->styleChanged = FALSE;
968 break;
969 case rtfEndGroup:
971 ME_Style *s;
972 RTFFlushOutputBuffer(info);
973 if (info->stackTop<=1) {
974 info->rtfClass = rtfEOF;
975 return;
977 info->stackTop--;
978 assert(info->stackTop >= 0);
979 if (info->styleChanged)
981 /* FIXME too slow ? how come ? */
982 s = ME_ApplyStyle(info->style, &info->stack[info->stackTop].fmt);
983 ME_ReleaseStyle(info->style);
984 info->style = s;
985 info->codePage = info->stack[info->stackTop].codePage;
986 info->unicodeLength = info->stack[info->stackTop].unicodeLength;
988 break;
991 break;
992 case rtfControl:
993 switch(info->rtfMajor)
995 case rtfCharAttr:
996 ME_RTFCharAttrHook(info);
997 break;
998 case rtfParAttr:
999 ME_RTFParAttrHook(info);
1000 break;
1001 case rtfTblAttr:
1002 ME_RTFTblAttrHook(info);
1003 break;
1004 case rtfSpecialChar:
1005 if (info->rtfMinor == rtfCell)
1007 RTFFlushOutputBuffer(info);
1008 ME_InsertTableCellFromCursor(info->editor, 0);
1011 break;
1015 void
1016 ME_StreamInFill(ME_InStream *stream)
1018 stream->editstream->dwError = stream->editstream->pfnCallback(stream->editstream->dwCookie,
1019 (BYTE *)stream->buffer,
1020 sizeof(stream->buffer),
1021 (LONG *)&stream->dwSize);
1022 stream->dwUsed = 0;
1025 static LRESULT ME_StreamIn(ME_TextEditor *editor, DWORD format, EDITSTREAM *stream, BOOL stripLastCR)
1027 RTF_Info parser;
1028 ME_Style *style;
1029 int from, to, to2, nUndoMode;
1030 int nEventMask = editor->nEventMask;
1031 ME_InStream inStream;
1032 BOOL invalidRTF = FALSE;
1034 TRACE("stream==%p hWnd==%p format==0x%X\n", stream, editor->hWnd, format);
1035 editor->nEventMask = 0;
1037 ME_GetSelection(editor, &from, &to);
1038 if ((format & SFF_SELECTION) && (editor->mode & TM_RICHTEXT)) {
1039 style = ME_GetSelectionInsertStyle(editor);
1041 ME_InternalDeleteText(editor, from, to-from);
1043 else {
1044 style = editor->pBuffer->pDefaultStyle;
1045 ME_AddRefStyle(style);
1046 SendMessageA(editor->hWnd, EM_SETSEL, 0, 0);
1047 ME_InternalDeleteText(editor, 0, ME_GetTextLength(editor));
1048 from = to = 0;
1049 ME_ClearTempStyle(editor);
1050 /* FIXME restore default paragraph formatting ! */
1054 /* Back up undo mode to a local variable */
1055 nUndoMode = editor->nUndoMode;
1057 /* Only create an undo if SFF_SELECTION is set */
1058 if (!(format & SFF_SELECTION))
1059 editor->nUndoMode = umIgnore;
1061 inStream.editstream = stream;
1062 inStream.editstream->dwError = 0;
1063 inStream.dwSize = 0;
1064 inStream.dwUsed = 0;
1066 if (format & SF_RTF)
1068 /* Check if it's really RTF, and if it is not, use plain text */
1069 ME_StreamInFill(&inStream);
1070 if (!inStream.editstream->dwError)
1072 if ((!editor->bEmulateVersion10 && strncmp(inStream.buffer, "{\\rtf", 5) && strncmp(inStream.buffer, "{\\urtf", 6))
1073 || (editor->bEmulateVersion10 && *inStream.buffer != '{'))
1075 invalidRTF = TRUE;
1076 inStream.editstream->dwError = -16;
1081 if (!invalidRTF && !inStream.editstream->dwError)
1083 if (format & SF_RTF) {
1084 /* setup the RTF parser */
1085 memset(&parser, 0, sizeof parser);
1086 RTFSetEditStream(&parser, &inStream);
1087 parser.rtfFormat = format&(SF_TEXT|SF_RTF);
1088 parser.hwndEdit = editor->hWnd;
1089 parser.editor = editor;
1090 parser.style = style;
1091 WriterInit(&parser);
1092 RTFInit(&parser);
1093 RTFSetReadHook(&parser, ME_RTFReadHook);
1094 RTFSetDestinationCallback(&parser, rtfPict, ME_RTFReadPictGroup);
1095 RTFSetDestinationCallback(&parser, rtfObject, ME_RTFReadObjectGroup);
1096 BeginFile(&parser);
1098 /* do the parsing */
1099 RTFRead(&parser);
1100 RTFFlushOutputBuffer(&parser);
1101 RTFDestroy(&parser);
1102 if (parser.lpRichEditOle)
1103 IRichEditOle_Release(parser.lpRichEditOle);
1105 /* Remove last line break, as mandated by tests. This is not affected by
1106 CR/LF counters, since RTF streaming presents only \para tokens, which
1107 are converted according to the standard rules: \r for 2.0, \r\n for 1.0
1109 if (stripLastCR) {
1110 int newfrom, newto;
1111 ME_GetSelection(editor, &newfrom, &newto);
1112 if (newto > to + (editor->bEmulateVersion10 ? 1 : 0)) {
1113 WCHAR lastchar[3] = {'\0', '\0'};
1114 int linebreakSize = editor->bEmulateVersion10 ? 2 : 1;
1116 ME_GetTextW(editor, lastchar, newto - linebreakSize, linebreakSize, 0);
1117 if (lastchar[0] == '\r' && (lastchar[1] == '\n' || lastchar[1] == '\0')) {
1118 ME_InternalDeleteText(editor, newto - linebreakSize, linebreakSize);
1123 style = parser.style;
1125 else if (format & SF_TEXT)
1126 ME_StreamInText(editor, format, &inStream, style);
1127 else
1128 ERR("EM_STREAMIN without SF_TEXT or SF_RTF\n");
1129 ME_GetSelection(editor, &to, &to2);
1130 /* put the cursor at the top */
1131 if (!(format & SFF_SELECTION))
1132 SendMessageA(editor->hWnd, EM_SETSEL, 0, 0);
1135 /* Restore saved undo mode */
1136 editor->nUndoMode = nUndoMode;
1138 /* even if we didn't add an undo, we need to commit anything on the stack */
1139 ME_CommitUndo(editor);
1141 /* If SFF_SELECTION isn't set, delete any undos from before we started too */
1142 if (!(format & SFF_SELECTION))
1143 ME_EmptyUndoStack(editor);
1145 ME_ReleaseStyle(style);
1146 editor->nEventMask = nEventMask;
1147 ME_UpdateRepaint(editor);
1148 if (!(format & SFF_SELECTION)) {
1149 ME_ClearTempStyle(editor);
1151 ME_MoveCaret(editor);
1152 ME_SendSelChange(editor);
1153 ME_SendRequestResize(editor, FALSE);
1155 return 0;
1159 typedef struct tagME_RTFStringStreamStruct
1161 char *string;
1162 int pos;
1163 int length;
1164 } ME_RTFStringStreamStruct;
1166 static DWORD CALLBACK ME_ReadFromRTFString(DWORD_PTR dwCookie, LPBYTE lpBuff, LONG cb, LONG *pcb)
1168 ME_RTFStringStreamStruct *pStruct = (ME_RTFStringStreamStruct *)dwCookie;
1169 int count;
1171 count = min(cb, pStruct->length - pStruct->pos);
1172 memmove(lpBuff, pStruct->string + pStruct->pos, count);
1173 pStruct->pos += count;
1174 *pcb = count;
1175 return 0;
1178 static void
1179 ME_StreamInRTFString(ME_TextEditor *editor, BOOL selection, char *string)
1181 EDITSTREAM es;
1182 ME_RTFStringStreamStruct data;
1184 data.string = string;
1185 data.length = strlen(string);
1186 data.pos = 0;
1187 es.dwCookie = (DWORD)&data;
1188 es.pfnCallback = ME_ReadFromRTFString;
1189 ME_StreamIn(editor, SF_RTF | (selection ? SFF_SELECTION : 0), &es, FALSE);
1193 ME_DisplayItem *
1194 ME_FindItemAtOffset(ME_TextEditor *editor, ME_DIType nItemType, int nOffset, int *nItemOffset)
1196 ME_DisplayItem *item = ME_FindItemFwd(editor->pBuffer->pFirst, diParagraph);
1197 int runLength;
1199 while (item && item->member.para.next_para->member.para.nCharOfs <= nOffset)
1200 item = ME_FindItemFwd(item, diParagraph);
1202 if (!item)
1203 return item;
1205 nOffset -= item->member.para.nCharOfs;
1206 if (nItemType == diParagraph) {
1207 if (nItemOffset)
1208 *nItemOffset = nOffset;
1209 return item;
1212 do {
1213 item = ME_FindItemFwd(item, diRun);
1214 runLength = ME_StrLen(item->member.run.strText);
1215 if (item->member.run.nFlags & MERF_ENDPARA)
1216 runLength = item->member.run.nCR + item->member.run.nLF;
1217 } while (item && (item->member.run.nCharOfs + runLength <= nOffset));
1218 if (item) {
1219 nOffset -= item->member.run.nCharOfs;
1221 /* Special case: nOffset may not point exactly at the division between the
1222 \r and the \n in 1.0 emulation. If such a case happens, it is sent
1223 into the next run, if one exists
1225 if ( item->member.run.nFlags & MERF_ENDPARA
1226 && nOffset == item->member.run.nCR
1227 && item->member.run.nLF > 0) {
1228 ME_DisplayItem *nextItem;
1229 nextItem = ME_FindItemFwd(item, diRun);
1230 if (nextItem) {
1231 nOffset = 0;
1232 item = nextItem;
1235 if (nItemOffset)
1236 *nItemOffset = nOffset;
1238 return item;
1242 static int
1243 ME_FindText(ME_TextEditor *editor, DWORD flags, const CHARRANGE *chrg, const WCHAR *text, CHARRANGE *chrgText)
1245 const int nLen = lstrlenW(text);
1246 const int nTextLen = ME_GetTextLength(editor);
1247 int nStart, nEnd;
1248 int nMin, nMax;
1249 ME_DisplayItem *item;
1250 ME_DisplayItem *para;
1251 WCHAR wLastChar = ' ';
1253 TRACE("flags==0x%08x, chrg->cpMin==%d, chrg->cpMax==%d text==%s\n",
1254 flags, chrg->cpMin, chrg->cpMax, debugstr_w(text));
1256 if (flags & ~(FR_DOWN | FR_MATCHCASE | FR_WHOLEWORD))
1257 FIXME("Flags 0x%08x not implemented\n",
1258 flags & ~(FR_DOWN | FR_MATCHCASE | FR_WHOLEWORD));
1260 nMin = chrg->cpMin;
1261 if (chrg->cpMax == -1)
1262 nMax = nTextLen;
1263 else
1264 nMax = chrg->cpMax > nTextLen ? nTextLen : chrg->cpMax;
1266 /* In 1.0 emulation, if cpMax reaches end of text, add the FR_DOWN flag */
1267 if (editor->bEmulateVersion10 && nMax == nTextLen)
1269 flags |= FR_DOWN;
1272 /* In 1.0 emulation, cpMin must always be no greater than cpMax */
1273 if (editor->bEmulateVersion10 && nMax < nMin)
1275 if (chrgText)
1277 chrgText->cpMin = -1;
1278 chrgText->cpMax = -1;
1280 return -1;
1283 /* when searching up, if cpMin < cpMax, then instead of searching
1284 * on [cpMin,cpMax], we search on [0,cpMin], otherwise, search on
1285 * [cpMax, cpMin]. The exception is when cpMax is -1, in which
1286 * case, it is always bigger than cpMin.
1288 if (!editor->bEmulateVersion10 && !(flags & FR_DOWN))
1290 int nSwap = nMax;
1292 nMax = nMin > nTextLen ? nTextLen : nMin;
1293 if (nMin < nSwap || chrg->cpMax == -1)
1294 nMin = 0;
1295 else
1296 nMin = nSwap;
1299 if (!nLen || nMin < 0 || nMax < 0 || nMax < nMin)
1301 if (chrgText)
1302 chrgText->cpMin = chrgText->cpMax = -1;
1303 return -1;
1306 if (flags & FR_DOWN) /* Forward search */
1308 /* If possible, find the character before where the search starts */
1309 if ((flags & FR_WHOLEWORD) && nMin)
1311 nStart = nMin - 1;
1312 item = ME_FindItemAtOffset(editor, diRun, nStart, &nStart);
1313 if (!item)
1315 if (chrgText)
1316 chrgText->cpMin = chrgText->cpMax = -1;
1317 return -1;
1319 wLastChar = item->member.run.strText->szData[nStart];
1322 nStart = nMin;
1323 item = ME_FindItemAtOffset(editor, diRun, nStart, &nStart);
1324 if (!item)
1326 if (chrgText)
1327 chrgText->cpMin = chrgText->cpMax = -1;
1328 return -1;
1331 para = ME_GetParagraph(item);
1332 while (item
1333 && para->member.para.nCharOfs + item->member.run.nCharOfs + nStart + nLen <= nMax)
1335 ME_DisplayItem *pCurItem = item;
1336 int nCurStart = nStart;
1337 int nMatched = 0;
1339 while (pCurItem && ME_CharCompare(pCurItem->member.run.strText->szData[nCurStart + nMatched], text[nMatched], (flags & FR_MATCHCASE)))
1341 if ((flags & FR_WHOLEWORD) && isalnumW(wLastChar))
1342 break;
1344 nMatched++;
1345 if (nMatched == nLen)
1347 ME_DisplayItem *pNextItem = pCurItem;
1348 int nNextStart = nCurStart;
1349 WCHAR wNextChar;
1351 /* Check to see if next character is a whitespace */
1352 if (flags & FR_WHOLEWORD)
1354 if (nCurStart + nMatched == ME_StrLen(pCurItem->member.run.strText))
1356 pNextItem = ME_FindItemFwd(pCurItem, diRun);
1357 nNextStart = -nMatched;
1360 if (pNextItem)
1361 wNextChar = pNextItem->member.run.strText->szData[nNextStart + nMatched];
1362 else
1363 wNextChar = ' ';
1365 if (isalnumW(wNextChar))
1366 break;
1369 nStart += para->member.para.nCharOfs + item->member.run.nCharOfs;
1370 if (chrgText)
1372 chrgText->cpMin = nStart;
1373 chrgText->cpMax = nStart + nLen;
1375 TRACE("found at %d-%d\n", nStart, nStart + nLen);
1376 return nStart;
1378 if (nCurStart + nMatched == ME_StrLen(pCurItem->member.run.strText))
1380 pCurItem = ME_FindItemFwd(pCurItem, diRun);
1381 para = ME_GetParagraph(pCurItem);
1382 nCurStart = -nMatched;
1385 if (pCurItem)
1386 wLastChar = pCurItem->member.run.strText->szData[nCurStart + nMatched];
1387 else
1388 wLastChar = ' ';
1390 nStart++;
1391 if (nStart == ME_StrLen(item->member.run.strText))
1393 item = ME_FindItemFwd(item, diRun);
1394 para = ME_GetParagraph(item);
1395 nStart = 0;
1399 else /* Backward search */
1401 /* If possible, find the character after where the search ends */
1402 if ((flags & FR_WHOLEWORD) && nMax < nTextLen - 1)
1404 nEnd = nMax + 1;
1405 item = ME_FindItemAtOffset(editor, diRun, nEnd, &nEnd);
1406 if (!item)
1408 if (chrgText)
1409 chrgText->cpMin = chrgText->cpMax = -1;
1410 return -1;
1412 wLastChar = item->member.run.strText->szData[nEnd];
1415 nEnd = nMax;
1416 item = ME_FindItemAtOffset(editor, diRun, nEnd, &nEnd);
1417 if (!item)
1419 if (chrgText)
1420 chrgText->cpMin = chrgText->cpMax = -1;
1421 return -1;
1424 para = ME_GetParagraph(item);
1426 while (item
1427 && para->member.para.nCharOfs + item->member.run.nCharOfs + nEnd - nLen >= nMin)
1429 ME_DisplayItem *pCurItem = item;
1430 int nCurEnd = nEnd;
1431 int nMatched = 0;
1433 if (nCurEnd - nMatched == 0)
1435 pCurItem = ME_FindItemBack(pCurItem, diRun);
1436 para = ME_GetParagraph(pCurItem);
1437 nCurEnd = ME_StrLen(pCurItem->member.run.strText) + nMatched;
1440 while (pCurItem && ME_CharCompare(pCurItem->member.run.strText->szData[nCurEnd - nMatched - 1], text[nLen - nMatched - 1], (flags & FR_MATCHCASE)))
1442 if ((flags & FR_WHOLEWORD) && isalnumW(wLastChar))
1443 break;
1445 nMatched++;
1446 if (nMatched == nLen)
1448 ME_DisplayItem *pPrevItem = pCurItem;
1449 int nPrevEnd = nCurEnd;
1450 WCHAR wPrevChar;
1452 /* Check to see if previous character is a whitespace */
1453 if (flags & FR_WHOLEWORD)
1455 if (nPrevEnd - nMatched == 0)
1457 pPrevItem = ME_FindItemBack(pCurItem, diRun);
1458 if (pPrevItem)
1459 nPrevEnd = ME_StrLen(pPrevItem->member.run.strText) + nMatched;
1462 if (pPrevItem)
1463 wPrevChar = pPrevItem->member.run.strText->szData[nPrevEnd - nMatched - 1];
1464 else
1465 wPrevChar = ' ';
1467 if (isalnumW(wPrevChar))
1468 break;
1471 nStart = para->member.para.nCharOfs + pCurItem->member.run.nCharOfs + nCurEnd - nMatched;
1472 if (chrgText)
1474 chrgText->cpMin = nStart;
1475 chrgText->cpMax = nStart + nLen;
1477 TRACE("found at %d-%d\n", nStart, nStart + nLen);
1478 return nStart;
1480 if (nCurEnd - nMatched == 0)
1482 pCurItem = ME_FindItemBack(pCurItem, diRun);
1483 /* Don't care about pCurItem becoming NULL here; it's already taken
1484 * care of in the exterior loop condition */
1485 para = ME_GetParagraph(pCurItem);
1486 nCurEnd = ME_StrLen(pCurItem->member.run.strText) + nMatched;
1489 if (pCurItem)
1490 wLastChar = pCurItem->member.run.strText->szData[nCurEnd - nMatched - 1];
1491 else
1492 wLastChar = ' ';
1494 nEnd--;
1495 if (nEnd < 0)
1497 item = ME_FindItemBack(item, diRun);
1498 para = ME_GetParagraph(item);
1499 nEnd = ME_StrLen(item->member.run.strText);
1503 TRACE("not found\n");
1504 if (chrgText)
1505 chrgText->cpMin = chrgText->cpMax = -1;
1506 return -1;
1509 /* helper to send a msg filter notification */
1510 static BOOL
1511 ME_FilterEvent(ME_TextEditor *editor, UINT msg, WPARAM* wParam, LPARAM* lParam)
1513 MSGFILTER msgf;
1515 msgf.nmhdr.hwndFrom = editor->hWnd;
1516 msgf.nmhdr.idFrom = GetWindowLongW(editor->hWnd, GWLP_ID);
1517 msgf.nmhdr.code = EN_MSGFILTER;
1518 msgf.msg = msg;
1520 msgf.wParam = *wParam;
1521 msgf.lParam = *lParam;
1522 if (SendMessageW(GetParent(editor->hWnd), WM_NOTIFY, msgf.nmhdr.idFrom, (LPARAM)&msgf))
1523 return FALSE;
1524 *wParam = msgf.wParam;
1525 *lParam = msgf.lParam;
1526 msgf.wParam = *wParam;
1528 return TRUE;
1531 static BOOL
1532 ME_KeyDown(ME_TextEditor *editor, WORD nKey)
1534 BOOL ctrl_is_down = GetKeyState(VK_CONTROL) & 0x8000;
1535 BOOL shift_is_down = GetKeyState(VK_SHIFT) & 0x8000;
1537 switch (nKey)
1539 case VK_LEFT:
1540 case VK_RIGHT:
1541 case VK_UP:
1542 case VK_DOWN:
1543 case VK_HOME:
1544 case VK_END:
1545 case VK_PRIOR:
1546 case VK_NEXT:
1547 ME_ArrowKey(editor, nKey, shift_is_down, ctrl_is_down);
1548 return TRUE;
1549 case VK_BACK:
1550 case VK_DELETE:
1551 /* FIXME backspace and delete aren't the same, they act different wrt paragraph style of the merged paragraph */
1552 if (GetWindowLongW(editor->hWnd, GWL_STYLE) & ES_READONLY)
1553 return FALSE;
1554 if (ME_IsSelection(editor))
1555 ME_DeleteSelection(editor);
1556 else if (nKey == VK_DELETE || ME_ArrowKey(editor, VK_LEFT, FALSE, FALSE))
1557 ME_DeleteTextAtCursor(editor, 1, 1);
1558 else
1559 return TRUE;
1560 ME_CommitUndo(editor);
1561 ME_UpdateSelectionLinkAttribute(editor);
1562 ME_UpdateRepaint(editor);
1563 ME_SendRequestResize(editor, FALSE);
1564 return TRUE;
1566 default:
1567 if (ctrl_is_down)
1569 if (nKey == 'W')
1571 CHARFORMAT2W chf;
1572 char buf[2048];
1573 chf.cbSize = sizeof(chf);
1575 ME_GetSelectionCharFormat(editor, &chf);
1576 ME_DumpStyleToBuf(&chf, buf);
1577 MessageBoxA(NULL, buf, "Style dump", MB_OK);
1579 if (nKey == 'Q')
1581 ME_CheckCharOffsets(editor);
1585 return FALSE;
1588 static BOOL ME_SetCursor(ME_TextEditor *editor, int x)
1590 if ((GetWindowLongW(editor->hWnd, GWL_STYLE) & ES_SELECTIONBAR) &&
1591 (x < editor->selofs || editor->linesel))
1593 SetCursor(hLeft);
1594 return TRUE;
1596 return FALSE;
1599 static BOOL ME_ShowContextMenu(ME_TextEditor *editor, int x, int y)
1601 CHARRANGE selrange;
1602 HMENU menu;
1603 int seltype = 0;
1604 if(!editor->lpOleCallback)
1605 return FALSE;
1606 ME_GetSelection(editor, &selrange.cpMin, &selrange.cpMax);
1607 if(selrange.cpMin == selrange.cpMax)
1608 seltype |= SEL_EMPTY;
1609 else
1611 /* FIXME: Handle objects */
1612 seltype |= SEL_TEXT;
1613 if(selrange.cpMax-selrange.cpMin > 1)
1614 seltype |= SEL_MULTICHAR;
1616 if(SUCCEEDED(IRichEditOleCallback_GetContextMenu(editor->lpOleCallback, seltype, NULL, &selrange, &menu)))
1618 TrackPopupMenu(menu, TPM_LEFTALIGN | TPM_RIGHTBUTTON, x, y, 0, GetParent(editor->hWnd), NULL);
1619 DestroyMenu(menu);
1621 return TRUE;
1624 ME_TextEditor *ME_MakeEditor(HWND hWnd) {
1625 ME_TextEditor *ed = ALLOC_OBJ(ME_TextEditor);
1626 int i;
1627 ed->hWnd = hWnd;
1628 ed->bEmulateVersion10 = FALSE;
1629 ed->pBuffer = ME_MakeText();
1630 ed->nZoomNumerator = ed->nZoomDenominator = 0;
1631 ME_MakeFirstParagraph(ed);
1632 ed->bCaretShown = FALSE;
1633 ed->nCursors = 4;
1634 ed->pCursors = ALLOC_N_OBJ(ME_Cursor, ed->nCursors);
1635 ed->pCursors[0].pRun = ME_FindItemFwd(ed->pBuffer->pFirst, diRun);
1636 ed->pCursors[0].nOffset = 0;
1637 ed->pCursors[1].pRun = ME_FindItemFwd(ed->pBuffer->pFirst, diRun);
1638 ed->pCursors[1].nOffset = 0;
1639 ed->pCursors[2] = ed->pCursors[0];
1640 ed->pCursors[3] = ed->pCursors[1];
1641 ed->nLastTotalLength = ed->nTotalLength = 0;
1642 ed->nHeight = 0;
1643 ed->nUDArrowX = -1;
1644 ed->nSequence = 0;
1645 ed->rgbBackColor = -1;
1646 ed->hbrBackground = GetSysColorBrush(COLOR_WINDOW);
1647 ed->bCaretAtEnd = FALSE;
1648 ed->nEventMask = 0;
1649 ed->nModifyStep = 0;
1650 ed->nTextLimit = TEXT_LIMIT_DEFAULT;
1651 ed->pUndoStack = ed->pRedoStack = ed->pUndoStackBottom = NULL;
1652 ed->nUndoStackSize = 0;
1653 ed->nUndoLimit = STACK_SIZE_DEFAULT;
1654 ed->nUndoMode = umAddToUndo;
1655 ed->nParagraphs = 1;
1656 ed->nLastSelStart = ed->nLastSelEnd = 0;
1657 ed->pLastSelStartPara = ed->pLastSelEndPara = ME_FindItemFwd(ed->pBuffer->pFirst, diParagraph);
1658 ed->bRedraw = TRUE;
1659 ed->bWordWrap = (GetWindowLongW(hWnd, GWL_STYLE) & WS_HSCROLL) ? FALSE : TRUE;
1660 ed->bHideSelection = FALSE;
1661 ed->nInvalidOfs = -1;
1662 ed->pfnWordBreak = NULL;
1663 ed->lpOleCallback = NULL;
1664 ed->mode = TM_RICHTEXT | TM_MULTILEVELUNDO | TM_MULTICODEPAGE;
1665 ed->AutoURLDetect_bEnable = FALSE;
1666 ed->bHaveFocus = FALSE;
1667 GetClientRect(hWnd, &ed->rcFormat);
1668 for (i=0; i<HFONT_CACHE_SIZE; i++)
1670 ed->pFontCache[i].nRefs = 0;
1671 ed->pFontCache[i].nAge = 0;
1672 ed->pFontCache[i].hFont = NULL;
1675 ME_CheckCharOffsets(ed);
1676 if (GetWindowLongW(hWnd, GWL_STYLE) & ES_SELECTIONBAR)
1677 ed->selofs = 16;
1678 else
1679 ed->selofs = 0;
1680 ed->linesel = 0;
1682 if (GetWindowLongW(hWnd, GWL_STYLE) & ES_PASSWORD)
1683 ed->cPasswordMask = '*';
1684 else
1685 ed->cPasswordMask = 0;
1687 ed->notified_cr.cpMin = ed->notified_cr.cpMax = 0;
1689 return ed;
1692 typedef struct tagME_GlobalDestStruct
1694 HGLOBAL hData;
1695 int nLength;
1696 } ME_GlobalDestStruct;
1698 static DWORD CALLBACK ME_ReadFromHGLOBALUnicode(DWORD_PTR dwCookie, LPBYTE lpBuff, LONG cb, LONG *pcb)
1700 ME_GlobalDestStruct *pData = (ME_GlobalDestStruct *)dwCookie;
1701 int i;
1702 WORD *pSrc, *pDest;
1704 cb = cb >> 1;
1705 pDest = (WORD *)lpBuff;
1706 pSrc = (WORD *)GlobalLock(pData->hData);
1707 for (i = 0; i<cb && pSrc[pData->nLength+i]; i++) {
1708 pDest[i] = pSrc[pData->nLength+i];
1710 pData->nLength += i;
1711 *pcb = 2*i;
1712 GlobalUnlock(pData->hData);
1713 return 0;
1716 static DWORD CALLBACK ME_ReadFromHGLOBALRTF(DWORD_PTR dwCookie, LPBYTE lpBuff, LONG cb, LONG *pcb)
1718 ME_GlobalDestStruct *pData = (ME_GlobalDestStruct *)dwCookie;
1719 int i;
1720 BYTE *pSrc, *pDest;
1722 pDest = lpBuff;
1723 pSrc = (BYTE *)GlobalLock(pData->hData);
1724 for (i = 0; i<cb && pSrc[pData->nLength+i]; i++) {
1725 pDest[i] = pSrc[pData->nLength+i];
1727 pData->nLength += i;
1728 *pcb = i;
1729 GlobalUnlock(pData->hData);
1730 return 0;
1734 void ME_DestroyEditor(ME_TextEditor *editor)
1736 ME_DisplayItem *pFirst = editor->pBuffer->pFirst;
1737 ME_DisplayItem *p = pFirst, *pNext = NULL;
1738 int i;
1740 ME_ClearTempStyle(editor);
1741 ME_EmptyUndoStack(editor);
1742 while(p) {
1743 pNext = p->next;
1744 ME_DestroyDisplayItem(p);
1745 p = pNext;
1747 ME_ReleaseStyle(editor->pBuffer->pDefaultStyle);
1748 for (i=0; i<HFONT_CACHE_SIZE; i++)
1750 if (editor->pFontCache[i].hFont)
1751 DeleteObject(editor->pFontCache[i].hFont);
1753 if (editor->rgbBackColor != -1)
1754 DeleteObject(editor->hbrBackground);
1755 if(editor->lpOleCallback)
1756 IUnknown_Release(editor->lpOleCallback);
1758 FREE_OBJ(editor->pBuffer);
1759 FREE_OBJ(editor->pCursors);
1761 FREE_OBJ(editor);
1764 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
1766 TRACE("\n");
1767 switch (fdwReason)
1769 case DLL_PROCESS_ATTACH:
1770 DisableThreadLibraryCalls(hinstDLL);
1771 me_heap = HeapCreate (0, 0x10000, 0);
1772 if (!ME_RegisterEditorClass(hinstDLL)) return FALSE;
1773 hLeft = LoadCursorW(hinstDLL, MAKEINTRESOURCEW(OCR_REVERSE));
1774 LookupInit();
1775 break;
1777 case DLL_PROCESS_DETACH:
1778 UnregisterClassW(RichEdit20W, 0);
1779 UnregisterClassW(RichEdit50W, 0);
1780 UnregisterClassA("RichEdit20A", 0);
1781 UnregisterClassA("RichEdit50A", 0);
1782 if (ME_ListBoxRegistered)
1783 UnregisterClassW(REListBox20W, 0);
1784 if (ME_ComboBoxRegistered)
1785 UnregisterClassW(REComboBox20W, 0);
1786 LookupCleanup();
1787 HeapDestroy (me_heap);
1788 me_heap = NULL;
1789 break;
1791 return TRUE;
1795 #define UNSUPPORTED_MSG(e) \
1796 case e: \
1797 FIXME(#e ": stub\n"); \
1798 return DefWindowProcW(hWnd, msg, wParam, lParam);
1800 static const char * const edit_messages[] = {
1801 "EM_GETSEL",
1802 "EM_SETSEL",
1803 "EM_GETRECT",
1804 "EM_SETRECT",
1805 "EM_SETRECTNP",
1806 "EM_SCROLL",
1807 "EM_LINESCROLL",
1808 "EM_SCROLLCARET",
1809 "EM_GETMODIFY",
1810 "EM_SETMODIFY",
1811 "EM_GETLINECOUNT",
1812 "EM_LINEINDEX",
1813 "EM_SETHANDLE",
1814 "EM_GETHANDLE",
1815 "EM_GETTHUMB",
1816 "EM_UNKNOWN_BF",
1817 "EM_UNKNOWN_C0",
1818 "EM_LINELENGTH",
1819 "EM_REPLACESEL",
1820 "EM_UNKNOWN_C3",
1821 "EM_GETLINE",
1822 "EM_LIMITTEXT",
1823 "EM_CANUNDO",
1824 "EM_UNDO",
1825 "EM_FMTLINES",
1826 "EM_LINEFROMCHAR",
1827 "EM_UNKNOWN_CA",
1828 "EM_SETTABSTOPS",
1829 "EM_SETPASSWORDCHAR",
1830 "EM_EMPTYUNDOBUFFER",
1831 "EM_GETFIRSTVISIBLELINE",
1832 "EM_SETREADONLY",
1833 "EM_SETWORDBREAKPROC",
1834 "EM_GETWORDBREAKPROC",
1835 "EM_GETPASSWORDCHAR",
1836 "EM_SETMARGINS",
1837 "EM_GETMARGINS",
1838 "EM_GETLIMITTEXT",
1839 "EM_POSFROMCHAR",
1840 "EM_CHARFROMPOS"
1843 static const char * const richedit_messages[] = {
1844 "EM_CANPASTE",
1845 "EM_DISPLAYBAND",
1846 "EM_EXGETSEL",
1847 "EM_EXLIMITTEXT",
1848 "EM_EXLINEFROMCHAR",
1849 "EM_EXSETSEL",
1850 "EM_FINDTEXT",
1851 "EM_FORMATRANGE",
1852 "EM_GETCHARFORMAT",
1853 "EM_GETEVENTMASK",
1854 "EM_GETOLEINTERFACE",
1855 "EM_GETPARAFORMAT",
1856 "EM_GETSELTEXT",
1857 "EM_HIDESELECTION",
1858 "EM_PASTESPECIAL",
1859 "EM_REQUESTRESIZE",
1860 "EM_SELECTIONTYPE",
1861 "EM_SETBKGNDCOLOR",
1862 "EM_SETCHARFORMAT",
1863 "EM_SETEVENTMASK",
1864 "EM_SETOLECALLBACK",
1865 "EM_SETPARAFORMAT",
1866 "EM_SETTARGETDEVICE",
1867 "EM_STREAMIN",
1868 "EM_STREAMOUT",
1869 "EM_GETTEXTRANGE",
1870 "EM_FINDWORDBREAK",
1871 "EM_SETOPTIONS",
1872 "EM_GETOPTIONS",
1873 "EM_FINDTEXTEX",
1874 "EM_GETWORDBREAKPROCEX",
1875 "EM_SETWORDBREAKPROCEX",
1876 "EM_SETUNDOLIMIT",
1877 "EM_UNKNOWN_USER_83",
1878 "EM_REDO",
1879 "EM_CANREDO",
1880 "EM_GETUNDONAME",
1881 "EM_GETREDONAME",
1882 "EM_STOPGROUPTYPING",
1883 "EM_SETTEXTMODE",
1884 "EM_GETTEXTMODE",
1885 "EM_AUTOURLDETECT",
1886 "EM_GETAUTOURLDETECT",
1887 "EM_SETPALETTE",
1888 "EM_GETTEXTEX",
1889 "EM_GETTEXTLENGTHEX",
1890 "EM_SHOWSCROLLBAR",
1891 "EM_SETTEXTEX",
1892 "EM_UNKNOWN_USER_98",
1893 "EM_UNKNOWN_USER_99",
1894 "EM_SETPUNCTUATION",
1895 "EM_GETPUNCTUATION",
1896 "EM_SETWORDWRAPMODE",
1897 "EM_GETWORDWRAPMODE",
1898 "EM_SETIMECOLOR",
1899 "EM_GETIMECOLOR",
1900 "EM_SETIMEOPTIONS",
1901 "EM_GETIMEOPTIONS",
1902 "EM_CONVPOSITION",
1903 "EM_UNKNOWN_USER_109",
1904 "EM_UNKNOWN_USER_110",
1905 "EM_UNKNOWN_USER_111",
1906 "EM_UNKNOWN_USER_112",
1907 "EM_UNKNOWN_USER_113",
1908 "EM_UNKNOWN_USER_114",
1909 "EM_UNKNOWN_USER_115",
1910 "EM_UNKNOWN_USER_116",
1911 "EM_UNKNOWN_USER_117",
1912 "EM_UNKNOWN_USER_118",
1913 "EM_UNKNOWN_USER_119",
1914 "EM_SETLANGOPTIONS",
1915 "EM_GETLANGOPTIONS",
1916 "EM_GETIMECOMPMODE",
1917 "EM_FINDTEXTW",
1918 "EM_FINDTEXTEXW",
1919 "EM_RECONVERSION",
1920 "EM_SETIMEMODEBIAS",
1921 "EM_GETIMEMODEBIAS"
1924 static const char *
1925 get_msg_name(UINT msg)
1927 if (msg >= EM_GETSEL && msg <= EM_CHARFROMPOS)
1928 return edit_messages[msg - EM_GETSEL];
1929 if (msg >= EM_CANPASTE && msg <= EM_GETIMEMODEBIAS)
1930 return richedit_messages[msg - EM_CANPASTE];
1931 return "";
1934 static LRESULT RichEditWndProc_common(HWND hWnd, UINT msg, WPARAM wParam,
1935 LPARAM lParam, BOOL unicode)
1937 ME_TextEditor *editor = (ME_TextEditor *)GetWindowLongPtrW(hWnd, 0);
1939 TRACE("hwnd %p msg %04x (%s) %lx %lx, unicode %d\n",
1940 hWnd, msg, get_msg_name(msg), wParam, lParam, unicode);
1942 if (!editor && msg != WM_NCCREATE && msg != WM_NCDESTROY) {
1943 ERR("called with invalid hWnd %p - application bug?\n", hWnd);
1944 return 0;
1947 switch(msg) {
1949 UNSUPPORTED_MSG(EM_DISPLAYBAND)
1950 UNSUPPORTED_MSG(EM_FINDWORDBREAK)
1951 UNSUPPORTED_MSG(EM_FMTLINES)
1952 UNSUPPORTED_MSG(EM_FORMATRANGE)
1953 UNSUPPORTED_MSG(EM_GETBIDIOPTIONS)
1954 UNSUPPORTED_MSG(EM_GETEDITSTYLE)
1955 UNSUPPORTED_MSG(EM_GETIMECOMPMODE)
1956 /* UNSUPPORTED_MSG(EM_GETIMESTATUS) missing in Wine headers */
1957 UNSUPPORTED_MSG(EM_GETLANGOPTIONS)
1958 /* UNSUPPORTED_MSG(EM_GETOLEINTERFACE) separate stub */
1959 UNSUPPORTED_MSG(EM_GETREDONAME)
1960 UNSUPPORTED_MSG(EM_GETTEXTMODE)
1961 UNSUPPORTED_MSG(EM_GETTYPOGRAPHYOPTIONS)
1962 UNSUPPORTED_MSG(EM_GETUNDONAME)
1963 UNSUPPORTED_MSG(EM_GETWORDBREAKPROCEX)
1964 UNSUPPORTED_MSG(EM_PASTESPECIAL)
1965 UNSUPPORTED_MSG(EM_SELECTIONTYPE)
1966 UNSUPPORTED_MSG(EM_SETBIDIOPTIONS)
1967 UNSUPPORTED_MSG(EM_SETEDITSTYLE)
1968 UNSUPPORTED_MSG(EM_SETFONTSIZE)
1969 UNSUPPORTED_MSG(EM_SETLANGOPTIONS)
1970 UNSUPPORTED_MSG(EM_SETPALETTE)
1971 UNSUPPORTED_MSG(EM_SETTABSTOPS)
1972 UNSUPPORTED_MSG(EM_SETTYPOGRAPHYOPTIONS)
1973 UNSUPPORTED_MSG(EM_SETWORDBREAKPROCEX)
1974 UNSUPPORTED_MSG(WM_STYLECHANGING)
1975 UNSUPPORTED_MSG(WM_STYLECHANGED)
1976 /* UNSUPPORTED_MSG(WM_UNICHAR) FIXME missing in Wine headers */
1978 /* Messages specific to Richedit controls */
1980 case EM_STREAMIN:
1981 return ME_StreamIn(editor, wParam, (EDITSTREAM*)lParam, TRUE);
1982 case EM_STREAMOUT:
1983 return ME_StreamOut(editor, wParam, (EDITSTREAM *)lParam);
1984 case WM_GETDLGCODE:
1986 UINT code = DLGC_WANTCHARS|DLGC_WANTARROWS;
1987 if(lParam && (((LPMSG)lParam)->message == WM_KEYDOWN))
1989 int vk = (int)((LPMSG)lParam)->wParam;
1990 /* if style says we want return key */
1991 if((vk == VK_RETURN) && (GetWindowLongW(hWnd, GWL_STYLE) & ES_WANTRETURN))
1993 code |= DLGC_WANTMESSAGE;
1995 /* we always handle ctrl-tab */
1996 if((vk == VK_TAB) && (GetKeyState(VK_CONTROL) & 0x8000))
1998 code |= DLGC_WANTMESSAGE;
2001 return code;
2003 case WM_NCCREATE:
2005 CREATESTRUCTW *pcs = (CREATESTRUCTW *)lParam;
2006 TRACE("WM_NCCREATE: style 0x%08x\n", pcs->style);
2007 editor = ME_MakeEditor(hWnd);
2008 SetWindowLongPtrW(hWnd, 0, (LONG_PTR)editor);
2009 return TRUE;
2011 case EM_EMPTYUNDOBUFFER:
2012 ME_EmptyUndoStack(editor);
2013 return 0;
2014 case EM_GETSEL:
2016 /* Note: wParam/lParam can be NULL */
2017 UINT from, to;
2018 PUINT pfrom = wParam ? (PUINT)wParam : &from;
2019 PUINT pto = lParam ? (PUINT)lParam : &to;
2020 ME_GetSelection(editor, (int *)pfrom, (int *)pto);
2021 if ((*pfrom|*pto) & 0xFFFF0000)
2022 return -1;
2023 return MAKELONG(*pfrom,*pto);
2025 case EM_EXGETSEL:
2027 CHARRANGE *pRange = (CHARRANGE *)lParam;
2028 ME_GetSelection(editor, &pRange->cpMin, &pRange->cpMax);
2029 TRACE("EM_EXGETSEL = (%d,%d)\n", pRange->cpMin, pRange->cpMax);
2030 return 0;
2032 case EM_SETUNDOLIMIT:
2034 if ((int)wParam < 0)
2035 editor->nUndoLimit = STACK_SIZE_DEFAULT;
2036 else
2037 editor->nUndoLimit = min(wParam, STACK_SIZE_MAX);
2038 /* Setting a max stack size keeps wine from getting killed
2039 for hogging memory. Windows allocates all this memory at once, so
2040 no program would realistically set a value above our maximum. */
2041 return editor->nUndoLimit;
2043 case EM_CANUNDO:
2044 return editor->pUndoStack != NULL;
2045 case EM_CANREDO:
2046 return editor->pRedoStack != NULL;
2047 case WM_UNDO: /* FIXME: actually not the same */
2048 case EM_UNDO:
2049 ME_Undo(editor);
2050 return 0;
2051 case EM_REDO:
2052 ME_Redo(editor);
2053 return 0;
2054 case EM_GETOPTIONS:
2056 /* these flags are equivalent to the ES_* counterparts */
2057 DWORD mask = ECO_VERTICAL | ECO_AUTOHSCROLL | ECO_AUTOVSCROLL |
2058 ECO_NOHIDESEL | ECO_READONLY | ECO_WANTRETURN;
2059 DWORD settings = GetWindowLongW(hWnd, GWL_STYLE) & mask;
2061 return settings;
2063 case EM_SETOPTIONS:
2065 /* these flags are equivalent to ES_* counterparts
2066 * ECO_READONLY is already implemented in the code, only requires
2067 * setting the bit to work
2069 DWORD mask = ECO_VERTICAL | ECO_AUTOHSCROLL | ECO_AUTOVSCROLL |
2070 ECO_NOHIDESEL | ECO_READONLY | ECO_WANTRETURN | ECO_SELECTIONBAR;
2071 DWORD raw = GetWindowLongW(hWnd, GWL_STYLE);
2072 DWORD settings = mask & raw;
2074 switch(wParam)
2076 case ECOOP_SET:
2077 settings = lParam;
2078 break;
2079 case ECOOP_OR:
2080 settings |= lParam;
2081 break;
2082 case ECOOP_AND:
2083 settings &= lParam;
2084 break;
2085 case ECOOP_XOR:
2086 settings ^= lParam;
2088 SetWindowLongW(hWnd, GWL_STYLE, (raw & ~mask) | (settings & mask));
2090 if (settings & ECO_AUTOWORDSELECTION)
2091 FIXME("ECO_AUTOWORDSELECTION not implemented yet!\n");
2092 if (settings & ECO_SELECTIONBAR)
2093 editor->selofs = 16;
2094 else
2095 editor->selofs = 0;
2096 ME_WrapMarkedParagraphs(editor);
2098 if (settings & ECO_VERTICAL)
2099 FIXME("ECO_VERTICAL not implemented yet!\n");
2100 if (settings & ECO_AUTOHSCROLL)
2101 FIXME("ECO_AUTOHSCROLL not implemented yet!\n");
2102 if (settings & ECO_AUTOVSCROLL)
2103 FIXME("ECO_AUTOVSCROLL not implemented yet!\n");
2104 if (settings & ECO_NOHIDESEL)
2105 FIXME("ECO_NOHIDESEL not implemented yet!\n");
2106 if (settings & ECO_WANTRETURN)
2107 FIXME("ECO_WANTRETURN not implemented yet!\n");
2109 return settings;
2111 case EM_SETSEL:
2113 ME_InvalidateSelection(editor);
2114 ME_SetSelection(editor, wParam, lParam);
2115 ME_InvalidateSelection(editor);
2116 ME_SendSelChange(editor);
2117 return 0;
2119 case EM_SETSCROLLPOS:
2121 POINT *point = (POINT *)lParam;
2122 ME_ScrollAbs(editor, point->y);
2123 return 0;
2125 case EM_AUTOURLDETECT:
2127 if (wParam==1 || wParam ==0)
2129 editor->AutoURLDetect_bEnable = (BOOL)wParam;
2130 return 0;
2132 return E_INVALIDARG;
2134 case EM_GETAUTOURLDETECT:
2136 return editor->AutoURLDetect_bEnable;
2138 case EM_EXSETSEL:
2140 int end;
2141 CHARRANGE range = *(CHARRANGE *)lParam;
2143 TRACE("EM_EXSETSEL (%d,%d)\n", range.cpMin, range.cpMax);
2145 ME_InvalidateSelection(editor);
2146 end = ME_SetSelection(editor, range.cpMin, range.cpMax);
2147 ME_InvalidateSelection(editor);
2148 ME_SendSelChange(editor);
2150 return end;
2152 case EM_SHOWSCROLLBAR:
2154 ShowScrollBar(editor->hWnd, wParam, lParam);
2155 return 0;
2157 case EM_SETTEXTEX:
2159 LPWSTR wszText;
2160 SETTEXTEX *pStruct = (SETTEXTEX *)wParam;
2161 size_t len;
2162 int from, to;
2163 ME_Style *style;
2164 int oldModify = editor->nModifyStep;
2166 if (!pStruct) return 0;
2168 TRACE("EM_SETTEXTEX - %s, flags %d, cp %d\n",
2169 pStruct->codepage == 1200 ? debugstr_w((LPCWSTR)lParam) : debugstr_a((LPCSTR)lParam),
2170 pStruct->flags, pStruct->codepage);
2172 /* FIXME: make use of pStruct->codepage in the to unicode translation */
2173 wszText = lParam ? ME_ToUnicode(pStruct->codepage == 1200, (void *)lParam) : NULL;
2174 len = wszText ? lstrlenW(wszText) : 0;
2176 if (pStruct->flags & ST_SELECTION) {
2177 ME_GetSelection(editor, &from, &to);
2178 style = ME_GetSelectionInsertStyle(editor);
2179 ME_InternalDeleteText(editor, from, to - from);
2180 if (pStruct->codepage != 1200 && lParam && !strncmp((char *)lParam, "{\\rtf", 5))
2181 ME_StreamInRTFString(editor, 0, (char *)lParam);
2182 else ME_InsertTextFromCursor(editor, 0, wszText, len, style);
2183 ME_ReleaseStyle(style);
2185 if (editor->AutoURLDetect_bEnable) ME_UpdateSelectionLinkAttribute(editor);
2187 else {
2188 ME_InternalDeleteText(editor, 0, ME_GetTextLength(editor));
2189 if (pStruct->codepage != 1200 && lParam && !strncmp((char *)lParam, "{\\rtf", 5))
2190 ME_StreamInRTFString(editor, 0, (char *)lParam);
2191 else ME_InsertTextFromCursor(editor, 0, wszText, len, editor->pBuffer->pDefaultStyle);
2192 len = 1;
2194 if (editor->AutoURLDetect_bEnable) ME_UpdateLinkAttribute(editor, 0, -1);
2196 ME_CommitUndo(editor);
2197 if (!(pStruct->flags & ST_KEEPUNDO))
2199 editor->nModifyStep = oldModify;
2200 ME_EmptyUndoStack(editor);
2202 ME_UpdateRepaint(editor);
2203 return len;
2205 case EM_SETBKGNDCOLOR:
2207 LRESULT lColor;
2208 if (editor->rgbBackColor != -1) {
2209 DeleteObject(editor->hbrBackground);
2210 lColor = editor->rgbBackColor;
2212 else lColor = GetSysColor(COLOR_WINDOW);
2214 if (wParam)
2216 editor->rgbBackColor = -1;
2217 editor->hbrBackground = GetSysColorBrush(COLOR_WINDOW);
2219 else
2221 editor->rgbBackColor = lParam;
2222 editor->hbrBackground = CreateSolidBrush(editor->rgbBackColor);
2224 if (editor->bRedraw)
2226 InvalidateRect(hWnd, NULL, TRUE);
2227 UpdateWindow(hWnd);
2229 return lColor;
2231 case EM_GETMODIFY:
2232 return editor->nModifyStep == 0 ? 0 : -1;
2233 case EM_SETMODIFY:
2235 if (wParam)
2236 editor->nModifyStep = 1;
2237 else
2238 editor->nModifyStep = 0;
2240 return 0;
2242 case EM_SETREADONLY:
2244 long nStyle = GetWindowLongW(hWnd, GWL_STYLE);
2245 if (wParam)
2246 nStyle |= ES_READONLY;
2247 else
2248 nStyle &= ~ES_READONLY;
2249 SetWindowLongW(hWnd, GWL_STYLE, nStyle);
2250 return 0;
2252 case EM_SETEVENTMASK:
2254 DWORD nOldMask = editor->nEventMask;
2256 editor->nEventMask = lParam;
2257 return nOldMask;
2259 case EM_GETEVENTMASK:
2260 return editor->nEventMask;
2261 case EM_SETCHARFORMAT:
2263 CHARFORMAT2W buf, *p;
2264 BOOL bRepaint = TRUE;
2265 p = ME_ToCF2W(&buf, (CHARFORMAT2W *)lParam);
2266 if (p == NULL) return 0;
2267 if (!wParam)
2268 ME_SetDefaultCharFormat(editor, p);
2269 else if (wParam == (SCF_WORD | SCF_SELECTION)) {
2270 FIXME("EM_SETCHARFORMAT: word selection not supported\n");
2271 return 0;
2272 } else if (wParam == SCF_ALL) {
2273 if (editor->mode & TM_PLAINTEXT)
2274 ME_SetDefaultCharFormat(editor, p);
2275 else {
2276 ME_SetCharFormat(editor, 0, ME_GetTextLength(editor), p);
2277 editor->nModifyStep = 1;
2279 } else if (editor->mode & TM_PLAINTEXT) {
2280 return 0;
2281 } else {
2282 int from, to;
2283 ME_GetSelection(editor, &from, &to);
2284 bRepaint = (from != to);
2285 ME_SetSelectionCharFormat(editor, p);
2286 if (from != to) editor->nModifyStep = 1;
2288 ME_CommitUndo(editor);
2289 if (bRepaint)
2290 ME_RewrapRepaint(editor);
2291 return 1;
2293 case EM_GETCHARFORMAT:
2295 CHARFORMAT2W tmp, *dst = (CHARFORMAT2W *)lParam;
2296 if (dst->cbSize != sizeof(CHARFORMATA) &&
2297 dst->cbSize != sizeof(CHARFORMATW) &&
2298 dst->cbSize != sizeof(CHARFORMAT2A) &&
2299 dst->cbSize != sizeof(CHARFORMAT2W))
2300 return 0;
2301 tmp.cbSize = sizeof(tmp);
2302 if (!wParam)
2303 ME_GetDefaultCharFormat(editor, &tmp);
2304 else
2305 ME_GetSelectionCharFormat(editor, &tmp);
2306 ME_CopyToCFAny(dst, &tmp);
2307 return tmp.dwMask;
2309 case EM_SETPARAFORMAT:
2310 ME_SetSelectionParaFormat(editor, (PARAFORMAT2 *)lParam);
2311 ME_RewrapRepaint(editor);
2312 ME_CommitUndo(editor);
2313 return 0;
2314 case EM_GETPARAFORMAT:
2315 ME_GetSelectionParaFormat(editor, (PARAFORMAT2 *)lParam);
2316 return 0;
2317 case EM_GETFIRSTVISIBLELINE:
2319 ME_DisplayItem *p = editor->pBuffer->pFirst;
2320 int y = ME_GetYScrollPos(editor);
2321 int ypara = 0;
2322 int count = 0;
2323 int ystart, yend;
2324 while(p) {
2325 p = ME_FindItemFwd(p, diStartRowOrParagraphOrEnd);
2326 if (p->type == diTextEnd)
2327 break;
2328 if (p->type == diParagraph) {
2329 ypara = p->member.para.nYPos;
2330 continue;
2332 ystart = ypara + p->member.row.nYPos;
2333 yend = ystart + p->member.row.nHeight;
2334 if (y < yend) {
2335 break;
2337 count++;
2339 return count;
2341 case EM_HIDESELECTION:
2343 editor->bHideSelection = (wParam != 0);
2344 ME_InvalidateSelection(editor);
2345 return 0;
2347 case EM_LINESCROLL:
2349 ME_ScrollDown(editor, lParam * 8); /* FIXME follow the original */
2350 return TRUE; /* Should return false if a single line richedit control */
2352 case WM_CLEAR:
2354 int from, to;
2355 ME_GetSelection(editor, &from, &to);
2356 ME_InternalDeleteText(editor, from, to-from);
2357 ME_CommitUndo(editor);
2358 ME_UpdateRepaint(editor);
2359 return 0;
2361 case EM_REPLACESEL:
2363 int from, to;
2364 ME_Style *style;
2365 LPWSTR wszText = lParam ? ME_ToUnicode(unicode, (void *)lParam) : NULL;
2366 size_t len = wszText ? lstrlenW(wszText) : 0;
2367 TRACE("EM_REPLACESEL - %s\n", debugstr_w(wszText));
2369 ME_GetSelection(editor, &from, &to);
2370 style = ME_GetSelectionInsertStyle(editor);
2371 ME_InternalDeleteText(editor, from, to-from);
2372 ME_InsertTextFromCursor(editor, 0, wszText, len, style);
2373 ME_ReleaseStyle(style);
2374 /* drop temporary style if line end */
2376 * FIXME question: does abc\n mean: put abc,
2377 * clear temp style, put \n? (would require a change)
2379 if (len>0 && wszText[len-1] == '\n')
2380 ME_ClearTempStyle(editor);
2381 ME_EndToUnicode(unicode, wszText);
2382 ME_CommitUndo(editor);
2383 if (editor->AutoURLDetect_bEnable) ME_UpdateSelectionLinkAttribute(editor);
2384 if (!wParam)
2385 ME_EmptyUndoStack(editor);
2386 ME_UpdateRepaint(editor);
2387 return len;
2389 case EM_SCROLLCARET:
2391 int top, bottom; /* row's edges relative to document top */
2392 int nPos;
2393 ME_DisplayItem *para, *row;
2395 nPos = ME_GetYScrollPos(editor);
2396 row = ME_RowStart(editor->pCursors[0].pRun);
2397 para = ME_GetParagraph(row);
2398 top = para->member.para.nYPos + row->member.row.nYPos;
2399 bottom = top + row->member.row.nHeight;
2401 if (top < nPos) /* caret above window */
2402 ME_ScrollAbs(editor, top);
2403 else if (nPos + editor->sizeWindow.cy < bottom) /*below*/
2404 ME_ScrollAbs(editor, bottom - editor->sizeWindow.cy);
2405 return 0;
2407 case WM_SETFONT:
2409 LOGFONTW lf;
2410 CHARFORMAT2W fmt;
2411 HDC hDC;
2412 BOOL bRepaint = LOWORD(lParam);
2414 if (!wParam)
2415 wParam = (WPARAM)GetStockObject(SYSTEM_FONT);
2416 GetObjectW((HGDIOBJ)wParam, sizeof(LOGFONTW), &lf);
2417 hDC = GetDC(hWnd);
2418 ME_CharFormatFromLogFont(hDC, &lf, &fmt);
2419 ReleaseDC(hWnd, hDC);
2420 ME_SetCharFormat(editor, 0, ME_GetTextLength(editor), &fmt);
2421 ME_SetDefaultCharFormat(editor, &fmt);
2423 ME_CommitUndo(editor);
2424 if (bRepaint)
2425 ME_RewrapRepaint(editor);
2426 return 0;
2428 case WM_SETTEXT:
2430 ME_InternalDeleteText(editor, 0, ME_GetTextLength(editor));
2431 if (lParam)
2433 TRACE("WM_SETTEXT lParam==%lx\n",lParam);
2434 if (!unicode && !strncmp((char *)lParam, "{\\rtf", 5))
2436 /* Undocumented: WM_SETTEXT supports RTF text */
2437 ME_StreamInRTFString(editor, 0, (char *)lParam);
2439 else
2441 LPWSTR wszText = ME_ToUnicode(unicode, (void *)lParam);
2442 TRACE("WM_SETTEXT - %s\n", debugstr_w(wszText)); /* debugstr_w() */
2443 if (lstrlenW(wszText) > 0)
2445 int len = -1;
2447 /* uses default style! */
2448 if (!(GetWindowLongW(hWnd, GWL_STYLE) & ES_MULTILINE))
2450 WCHAR * p;
2452 p = wszText;
2453 while (*p != '\0' && *p != '\r' && *p != '\n') p++;
2454 len = p - wszText;
2456 ME_InsertTextFromCursor(editor, 0, wszText, len, editor->pBuffer->pDefaultStyle);
2458 ME_EndToUnicode(unicode, wszText);
2461 else
2462 TRACE("WM_SETTEXT - NULL\n");
2463 if (editor->AutoURLDetect_bEnable)
2465 ME_UpdateLinkAttribute(editor, 0, -1);
2467 ME_SetSelection(editor, 0, 0);
2468 editor->nModifyStep = 0;
2469 ME_CommitUndo(editor);
2470 ME_EmptyUndoStack(editor);
2471 ME_UpdateRepaint(editor);
2472 return 1;
2474 case EM_CANPASTE:
2476 UINT nRTFFormat = RegisterClipboardFormatA("Rich Text Format");
2477 if (IsClipboardFormatAvailable(nRTFFormat))
2478 return TRUE;
2479 if (IsClipboardFormatAvailable(CF_UNICODETEXT))
2480 return TRUE;
2481 return FALSE;
2483 case WM_PASTE:
2485 DWORD dwFormat = 0;
2486 EDITSTREAM es;
2487 ME_GlobalDestStruct gds;
2488 UINT nRTFFormat = RegisterClipboardFormatA("Rich Text Format");
2489 UINT cf = 0;
2491 if (IsClipboardFormatAvailable(nRTFFormat))
2492 cf = nRTFFormat, dwFormat = SF_RTF;
2493 else if (IsClipboardFormatAvailable(CF_UNICODETEXT))
2494 cf = CF_UNICODETEXT, dwFormat = SF_TEXT|SF_UNICODE;
2495 else
2496 return 0;
2498 if (!OpenClipboard(hWnd))
2499 return 0;
2500 gds.hData = GetClipboardData(cf);
2501 gds.nLength = 0;
2502 es.dwCookie = (DWORD)&gds;
2503 es.pfnCallback = dwFormat == SF_RTF ? ME_ReadFromHGLOBALRTF : ME_ReadFromHGLOBALUnicode;
2504 ME_StreamIn(editor, dwFormat|SFF_SELECTION, &es, FALSE);
2506 CloseClipboard();
2507 return 0;
2509 case WM_CUT:
2510 case WM_COPY:
2512 LPDATAOBJECT dataObj = NULL;
2513 CHARRANGE range;
2514 HRESULT hr = S_OK;
2516 if (editor->cPasswordMask)
2517 return 0; /* Copying or Cutting masked text isn't allowed */
2519 ME_GetSelection(editor, &range.cpMin, &range.cpMax);
2520 if(editor->lpOleCallback)
2521 hr = IRichEditOleCallback_GetClipboardData(editor->lpOleCallback, &range, RECO_COPY, &dataObj);
2522 if(FAILED(hr) || !dataObj)
2523 hr = ME_GetDataObject(editor, &range, &dataObj);
2524 if(SUCCEEDED(hr)) {
2525 hr = OleSetClipboard(dataObj);
2526 IDataObject_Release(dataObj);
2528 if (SUCCEEDED(hr) && msg == WM_CUT)
2530 ME_InternalDeleteText(editor, range.cpMin, range.cpMax-range.cpMin);
2531 ME_CommitUndo(editor);
2532 ME_UpdateRepaint(editor);
2534 return 0;
2536 case WM_GETTEXTLENGTH:
2538 GETTEXTLENGTHEX how;
2540 /* CR/LF conversion required in 2.0 mode, verbatim in 1.0 mode */
2541 how.flags = GTL_CLOSE | (editor->bEmulateVersion10 ? 0 : GTL_USECRLF) | GTL_NUMCHARS;
2542 how.codepage = unicode ? 1200 : CP_ACP;
2543 return ME_GetTextLengthEx(editor, &how);
2545 case EM_GETTEXTLENGTHEX:
2546 return ME_GetTextLengthEx(editor, (GETTEXTLENGTHEX *)wParam);
2547 case WM_GETTEXT:
2549 GETTEXTEX ex;
2550 LRESULT rc;
2551 LPSTR bufferA = NULL;
2552 LPWSTR bufferW = NULL;
2554 if (unicode)
2555 bufferW = heap_alloc((wParam + 2) * sizeof(WCHAR));
2556 else
2557 bufferA = heap_alloc(wParam + 2);
2559 ex.cb = (wParam + 2) * (unicode ? sizeof(WCHAR) : sizeof(CHAR));
2560 ex.flags = GT_USECRLF;
2561 ex.codepage = unicode ? 1200 : CP_ACP;
2562 ex.lpDefaultChar = NULL;
2563 ex.lpUsedDefChar = NULL;
2564 rc = RichEditWndProc_common(hWnd, EM_GETTEXTEX, (WPARAM)&ex, unicode ? (LPARAM)bufferW : (LPARAM)bufferA, unicode);
2566 if (unicode)
2568 memcpy((LPWSTR)lParam, bufferW, wParam * sizeof(WCHAR));
2569 if (lstrlenW(bufferW) >= wParam) rc = 0;
2571 else
2573 memcpy((LPSTR)lParam, bufferA, wParam);
2574 if (strlen(bufferA) >= wParam) rc = 0;
2576 heap_free(bufferA);
2577 heap_free(bufferW);
2578 return rc;
2580 case EM_GETTEXTEX:
2582 GETTEXTEX *ex = (GETTEXTEX*)wParam;
2583 int nStart, nCount; /* in chars */
2585 if (ex->flags & ~(GT_SELECTION | GT_USECRLF))
2586 FIXME("GETTEXTEX flags 0x%08x not supported\n", ex->flags & ~(GT_SELECTION | GT_USECRLF));
2588 if (ex->flags & GT_SELECTION)
2590 ME_GetSelection(editor, &nStart, &nCount);
2591 nCount -= nStart;
2593 else
2595 nStart = 0;
2596 nCount = 0x7fffffff;
2598 if (ex->codepage == 1200)
2600 nCount = min(nCount, ex->cb / sizeof(WCHAR) - 1);
2601 return ME_GetTextW(editor, (LPWSTR)lParam, nStart, nCount, ex->flags & GT_USECRLF);
2603 else
2605 /* potentially each char may be a CR, why calculate the exact value with O(N) when
2606 we can just take a bigger buffer? :)
2607 The above assumption still holds with CR/LF counters, since CR->CRLF expansion
2608 occurs only in richedit 2.0 mode, in which line breaks have only one CR
2610 int crlfmul = (ex->flags & GT_USECRLF) ? 2 : 1;
2611 LPWSTR buffer;
2612 DWORD buflen = ex->cb;
2613 LRESULT rc;
2614 DWORD flags = 0;
2616 nCount = min(nCount, ex->cb - 1);
2617 buffer = heap_alloc((crlfmul*nCount + 1) * sizeof(WCHAR));
2619 buflen = ME_GetTextW(editor, buffer, nStart, nCount, ex->flags & GT_USECRLF);
2620 rc = WideCharToMultiByte(ex->codepage, flags, buffer, -1, (LPSTR)lParam, ex->cb, ex->lpDefaultChar, ex->lpUsedDefChar);
2621 if (rc) rc--; /* do not count 0 terminator */
2623 heap_free(buffer);
2624 return rc;
2627 case EM_GETSELTEXT:
2629 int from, to;
2630 TEXTRANGEW tr; /* W and A differ only by rng->lpstrText */
2631 ME_GetSelection(editor, &from, &to);
2632 tr.chrg.cpMin = from;
2633 tr.chrg.cpMax = to;
2634 tr.lpstrText = (WCHAR *)lParam;
2635 return RichEditWndProc_common(hWnd, EM_GETTEXTRANGE, 0, (LPARAM)&tr, unicode);
2637 case EM_GETSCROLLPOS:
2639 POINT *point = (POINT *)lParam;
2640 point->x = 0; /* FIXME side scrolling not implemented */
2641 point->y = ME_GetYScrollPos(editor);
2642 return 1;
2644 case EM_GETTEXTRANGE:
2646 TEXTRANGEW *rng = (TEXTRANGEW *)lParam;
2647 TRACE("EM_GETTEXTRANGE min=%d max=%d unicode=%d emul1.0=%d length=%d\n",
2648 rng->chrg.cpMin, rng->chrg.cpMax, unicode,
2649 editor->bEmulateVersion10, ME_GetTextLength(editor));
2650 if (unicode)
2651 return ME_GetTextW(editor, rng->lpstrText, rng->chrg.cpMin, rng->chrg.cpMax-rng->chrg.cpMin, 0);
2652 else
2654 int nLen = rng->chrg.cpMax-rng->chrg.cpMin;
2655 WCHAR *p = ALLOC_N_OBJ(WCHAR, nLen+1);
2656 int nChars = ME_GetTextW(editor, p, rng->chrg.cpMin, nLen, 0);
2657 /* FIXME this is a potential security hole (buffer overrun)
2658 if you know more about wchar->mbyte conversion please explain
2660 WideCharToMultiByte(CP_ACP, 0, p, nChars+1, (char *)rng->lpstrText, nLen+1, NULL, NULL);
2661 FREE_OBJ(p);
2662 return nChars;
2665 case EM_GETLINE:
2667 ME_DisplayItem *run;
2668 const unsigned int nMaxChars = *(WORD *) lParam;
2669 unsigned int nCharsLeft = nMaxChars;
2670 char *dest = (char *) lParam;
2671 BOOL wroteNull = FALSE;
2673 TRACE("EM_GETLINE: row=%d, nMaxChars=%d (%s)\n", (int) wParam, nMaxChars,
2674 unicode ? "Unicode" : "Ansi");
2676 run = ME_FindRowWithNumber(editor, wParam);
2677 if (run == NULL)
2678 return 0;
2680 while (nCharsLeft && (run = ME_FindItemFwd(run, diRunOrStartRow))
2681 && !(run->member.run.nFlags & MERF_ENDPARA))
2683 unsigned int nCopy;
2684 ME_String *strText;
2685 if (run->type != diRun)
2686 break;
2687 strText = run->member.run.strText;
2688 nCopy = min(nCharsLeft, strText->nLen);
2690 if (unicode)
2691 lstrcpynW((LPWSTR) dest, strText->szData, nCopy);
2692 else
2693 nCopy = WideCharToMultiByte(CP_ACP, 0, strText->szData, nCopy, dest,
2694 nCharsLeft, NULL, NULL);
2695 dest += nCopy * (unicode ? sizeof(WCHAR) : 1);
2696 nCharsLeft -= nCopy;
2699 /* append line termination, space allowing */
2700 if (nCharsLeft > 0)
2702 if (run && (run->member.run.nFlags & MERF_ENDPARA))
2704 unsigned int i;
2705 /* Write as many \r as encoded in end-of-paragraph, space allowing */
2706 for (i = 0; i < run->member.run.nCR && nCharsLeft > 0; i++, nCharsLeft--)
2708 *((WCHAR *)dest) = '\r';
2709 dest += unicode ? sizeof(WCHAR) : 1;
2711 /* Write as many \n as encoded in end-of-paragraph, space allowing */
2712 for (i = 0; i < run->member.run.nLF && nCharsLeft > 0; i++, nCharsLeft--)
2714 *((WCHAR *)dest) = '\n';
2715 dest += unicode ? sizeof(WCHAR) : 1;
2718 if (nCharsLeft > 0)
2720 if (unicode)
2721 *((WCHAR *)dest) = '\0';
2722 else
2723 *dest = '\0';
2724 nCharsLeft--;
2725 wroteNull = TRUE;
2729 TRACE("EM_GETLINE: got %u characters\n", nMaxChars - nCharsLeft);
2730 return nMaxChars - nCharsLeft - (wroteNull ? 1 : 0);
2732 case EM_GETLINECOUNT:
2734 ME_DisplayItem *item = editor->pBuffer->pFirst->next;
2735 int nRows = 0;
2737 ME_DisplayItem *prev_para = NULL, *last_para = NULL;
2739 while (item != editor->pBuffer->pLast)
2741 assert(item->type == diParagraph);
2742 prev_para = ME_FindItemBack(item, diRun);
2743 if (prev_para) {
2744 assert(prev_para->member.run.nFlags & MERF_ENDPARA);
2746 nRows += item->member.para.nRows;
2747 item = item->member.para.next_para;
2749 last_para = ME_FindItemBack(item, diRun);
2750 assert(last_para);
2751 assert(last_para->member.run.nFlags & MERF_ENDPARA);
2752 if (editor->bEmulateVersion10 && prev_para && last_para->member.run.nCharOfs == 0
2753 && prev_para->member.run.nCR == 1 && prev_para->member.run.nLF == 0)
2755 /* In 1.0 emulation, the last solitary \r at the very end of the text
2756 (if one exists) is NOT a line break.
2757 FIXME: this is an ugly hack. This should have a more regular model. */
2758 nRows--;
2761 TRACE("EM_GETLINECOUNT: nRows==%d\n", nRows);
2762 return max(1, nRows);
2764 case EM_LINEFROMCHAR:
2766 if (wParam == -1)
2767 return ME_RowNumberFromCharOfs(editor, ME_GetCursorOfs(editor, 1));
2768 else
2769 return ME_RowNumberFromCharOfs(editor, wParam);
2771 case EM_EXLINEFROMCHAR:
2773 if (lParam == -1)
2774 return ME_RowNumberFromCharOfs(editor, ME_GetCursorOfs(editor,1));
2775 else
2776 return ME_RowNumberFromCharOfs(editor, lParam);
2778 case EM_LINEINDEX:
2780 ME_DisplayItem *item, *para;
2781 int nCharOfs;
2783 if (wParam == -1)
2784 item = ME_FindItemBack(editor->pCursors[0].pRun, diStartRow);
2785 else
2786 item = ME_FindRowWithNumber(editor, wParam);
2787 if (!item)
2788 return -1;
2789 para = ME_GetParagraph(item);
2790 item = ME_FindItemFwd(item, diRun);
2791 nCharOfs = para->member.para.nCharOfs + item->member.run.nCharOfs;
2792 TRACE("EM_LINEINDEX: nCharOfs==%d\n", nCharOfs);
2793 return nCharOfs;
2795 case EM_LINELENGTH:
2797 ME_DisplayItem *item, *item_end;
2798 int nChars = 0, nThisLineOfs = 0, nNextLineOfs = 0;
2800 if (wParam > ME_GetTextLength(editor))
2801 return 0;
2802 if (wParam == -1)
2804 FIXME("EM_LINELENGTH: returning number of unselected characters on lines with selection unsupported.\n");
2805 return 0;
2807 item = ME_FindItemAtOffset(editor, diRun, wParam, NULL);
2808 item = ME_RowStart(item);
2809 nThisLineOfs = ME_CharOfsFromRunOfs(editor, ME_FindItemFwd(item, diRun), 0);
2810 item_end = ME_FindItemFwd(item, diStartRowOrParagraphOrEnd);
2811 if (item_end->type == diStartRow)
2812 nNextLineOfs = ME_CharOfsFromRunOfs(editor, ME_FindItemFwd(item_end, diRun), 0);
2813 else
2815 ME_DisplayItem *endPara;
2817 nNextLineOfs = ME_FindItemFwd(item, diParagraphOrEnd)->member.para.nCharOfs;
2818 endPara = ME_FindItemFwd(item, diParagraphOrEnd);
2819 endPara = ME_FindItemBack(endPara, diRun);
2820 assert(endPara);
2821 assert(endPara->type == diRun);
2822 assert(endPara->member.run.nFlags & MERF_ENDPARA);
2823 nNextLineOfs -= endPara->member.run.nCR + endPara->member.run.nLF;
2825 nChars = nNextLineOfs - nThisLineOfs;
2826 TRACE("EM_LINELENGTH(%ld)==%d\n",wParam, nChars);
2827 return nChars;
2829 case EM_EXLIMITTEXT:
2831 if ((int)lParam < 0)
2832 return 0;
2833 if (lParam == 0)
2834 editor->nTextLimit = 65536;
2835 else
2836 editor->nTextLimit = (int) lParam;
2837 return 0;
2839 case EM_LIMITTEXT:
2841 if (wParam == 0)
2842 editor->nTextLimit = 65536;
2843 else
2844 editor->nTextLimit = (int) wParam;
2845 return 0;
2847 case EM_GETLIMITTEXT:
2849 return editor->nTextLimit;
2851 case EM_FINDTEXT:
2853 FINDTEXTA *ft = (FINDTEXTA *)lParam;
2854 int nChars = MultiByteToWideChar(CP_ACP, 0, ft->lpstrText, -1, NULL, 0);
2855 WCHAR *tmp;
2856 LRESULT r;
2858 if ((tmp = ALLOC_N_OBJ(WCHAR, nChars)) != NULL)
2859 MultiByteToWideChar(CP_ACP, 0, ft->lpstrText, -1, tmp, nChars);
2860 r = ME_FindText(editor, wParam, &ft->chrg, tmp, NULL);
2861 FREE_OBJ( tmp );
2862 return r;
2864 case EM_FINDTEXTEX:
2866 FINDTEXTEXA *ex = (FINDTEXTEXA *)lParam;
2867 int nChars = MultiByteToWideChar(CP_ACP, 0, ex->lpstrText, -1, NULL, 0);
2868 WCHAR *tmp;
2869 LRESULT r;
2871 if ((tmp = ALLOC_N_OBJ(WCHAR, nChars)) != NULL)
2872 MultiByteToWideChar(CP_ACP, 0, ex->lpstrText, -1, tmp, nChars);
2873 r = ME_FindText(editor, wParam, &ex->chrg, tmp, &ex->chrgText);
2874 FREE_OBJ( tmp );
2875 return r;
2877 case EM_FINDTEXTW:
2879 FINDTEXTW *ft = (FINDTEXTW *)lParam;
2880 return ME_FindText(editor, wParam, &ft->chrg, ft->lpstrText, NULL);
2882 case EM_FINDTEXTEXW:
2884 FINDTEXTEXW *ex = (FINDTEXTEXW *)lParam;
2885 return ME_FindText(editor, wParam, &ex->chrg, ex->lpstrText, &ex->chrgText);
2887 case EM_GETZOOM:
2888 if (!wParam || !lParam)
2889 return FALSE;
2890 *(int *)wParam = editor->nZoomNumerator;
2891 *(int *)lParam = editor->nZoomDenominator;
2892 return TRUE;
2893 case EM_SETZOOM:
2894 return ME_SetZoom(editor, wParam, lParam);
2895 case EM_CHARFROMPOS:
2896 return ME_CharFromPos(editor, ((POINTL *)lParam)->x, ((POINTL *)lParam)->y);
2897 case EM_POSFROMCHAR:
2899 ME_DisplayItem *pRun;
2900 int nCharOfs, nOffset, nLength;
2901 POINTL pt = {0,0};
2902 SCROLLINFO si;
2904 nCharOfs = wParam;
2905 /* detect which API version we're dealing with */
2906 if (wParam >= 0x40000)
2907 nCharOfs = lParam;
2908 nLength = ME_GetTextLength(editor);
2910 if (nCharOfs < nLength) {
2911 ME_RunOfsFromCharOfs(editor, nCharOfs, &pRun, &nOffset);
2912 assert(pRun->type == diRun);
2913 pt.y = pRun->member.run.pt.y;
2914 pt.x = pRun->member.run.pt.x + ME_PointFromChar(editor, &pRun->member.run, nOffset);
2915 pt.y += ME_GetParagraph(pRun)->member.para.nYPos;
2916 } else {
2917 pt.x = 0;
2918 pt.y = editor->pBuffer->pLast->member.para.nYPos;
2920 pt.x += editor->selofs;
2922 si.cbSize = sizeof(si);
2923 si.fMask = SIF_POS;
2924 if (GetScrollInfo(editor->hWnd, SB_VERT, &si)) pt.y -= si.nPos;
2925 si.cbSize = sizeof(si);
2926 si.fMask = SIF_POS;
2927 if (GetScrollInfo(editor->hWnd, SB_HORZ, &si)) pt.x -= si.nPos;
2929 if (wParam >= 0x40000) {
2930 *(POINTL *)wParam = pt;
2932 return (wParam >= 0x40000) ? 0 : MAKELONG( pt.x, pt.y );
2934 case WM_CREATE:
2935 if (GetWindowLongW(hWnd, GWL_STYLE) & WS_HSCROLL)
2936 { /* Squelch the default horizontal scrollbar it would make */
2937 ShowScrollBar(editor->hWnd, SB_HORZ, FALSE);
2939 ME_CommitUndo(editor);
2940 ME_WrapMarkedParagraphs(editor);
2941 ME_MoveCaret(editor);
2942 return 0;
2943 case WM_DESTROY:
2944 ME_DestroyEditor(editor);
2945 SetWindowLongPtrW(hWnd, 0, 0);
2946 return 0;
2947 case WM_LBUTTONDOWN:
2948 if ((editor->nEventMask & ENM_MOUSEEVENTS) &&
2949 !ME_FilterEvent(editor, msg, &wParam, &lParam))
2950 return 0;
2951 SetFocus(hWnd);
2952 ME_LButtonDown(editor, (short)LOWORD(lParam), (short)HIWORD(lParam));
2953 SetCapture(hWnd);
2954 ME_LinkNotify(editor,msg,wParam,lParam);
2955 if (!ME_SetCursor(editor, LOWORD(lParam))) goto do_default;
2956 break;
2957 case WM_MOUSEMOVE:
2958 if ((editor->nEventMask & ENM_MOUSEEVENTS) &&
2959 !ME_FilterEvent(editor, msg, &wParam, &lParam))
2960 return 0;
2961 if (GetCapture() == hWnd)
2962 ME_MouseMove(editor, (short)LOWORD(lParam), (short)HIWORD(lParam));
2963 ME_LinkNotify(editor,msg,wParam,lParam);
2964 if (!ME_SetCursor(editor, LOWORD(lParam))) goto do_default;
2965 break;
2966 case WM_LBUTTONUP:
2967 if (GetCapture() == hWnd)
2968 ReleaseCapture();
2969 if ((editor->nEventMask & ENM_MOUSEEVENTS) &&
2970 !ME_FilterEvent(editor, msg, &wParam, &lParam))
2971 return 0;
2972 else
2974 BOOL ret;
2975 editor->linesel = 0;
2976 ret = ME_SetCursor(editor, LOWORD(lParam));
2977 ME_LinkNotify(editor,msg,wParam,lParam);
2978 if (!ret) goto do_default;
2980 break;
2981 case WM_LBUTTONDBLCLK:
2982 if ((editor->nEventMask & ENM_MOUSEEVENTS) &&
2983 !ME_FilterEvent(editor, msg, &wParam, &lParam))
2984 return 0;
2985 ME_LinkNotify(editor,msg,wParam,lParam);
2986 ME_SelectWord(editor);
2987 break;
2988 case WM_RBUTTONUP:
2989 case WM_RBUTTONDOWN:
2990 if ((editor->nEventMask & ENM_MOUSEEVENTS) &&
2991 !ME_FilterEvent(editor, msg, &wParam, &lParam))
2992 return 0;
2993 goto do_default;
2994 case WM_CONTEXTMENU:
2995 if (!ME_ShowContextMenu(editor, (short)LOWORD(lParam), (short)HIWORD(lParam)))
2996 goto do_default;
2997 break;
2998 case WM_PAINT:
2999 if (editor->bRedraw)
3001 HDC hDC;
3002 PAINTSTRUCT ps;
3004 hDC = BeginPaint(hWnd, &ps);
3005 ME_PaintContent(editor, hDC, FALSE, &ps.rcPaint);
3006 EndPaint(hWnd, &ps);
3008 break;
3009 case WM_SETFOCUS:
3010 editor->bHaveFocus = TRUE;
3011 ME_ShowCaret(editor);
3012 ME_SendOldNotify(editor, EN_SETFOCUS);
3013 return 0;
3014 case WM_KILLFOCUS:
3015 ME_HideCaret(editor);
3016 editor->bHaveFocus = FALSE;
3017 ME_SendOldNotify(editor, EN_KILLFOCUS);
3018 return 0;
3019 case WM_ERASEBKGND:
3021 if (editor->bRedraw)
3023 HDC hDC = (HDC)wParam;
3024 RECT rc;
3025 if (GetUpdateRect(hWnd,&rc,TRUE))
3027 FillRect(hDC, &rc, editor->hbrBackground);
3030 return 1;
3032 case WM_COMMAND:
3033 TRACE("editor wnd command = %d\n", LOWORD(wParam));
3034 return 0;
3035 case WM_KEYUP:
3036 if ((editor->nEventMask & ENM_KEYEVENTS) &&
3037 !ME_FilterEvent(editor, msg, &wParam, &lParam))
3038 return 0;
3039 goto do_default;
3040 case WM_KEYDOWN:
3041 if ((editor->nEventMask & ENM_KEYEVENTS) &&
3042 !ME_FilterEvent(editor, msg, &wParam, &lParam))
3043 return 0;
3044 if (ME_KeyDown(editor, LOWORD(wParam)))
3045 return 0;
3046 goto do_default;
3047 case WM_CHAR:
3049 WCHAR wstr;
3051 if (unicode)
3052 wstr = (WCHAR)wParam;
3053 else
3055 CHAR charA = wParam;
3056 MultiByteToWideChar(CP_ACP, 0, &charA, 1, &wstr, 1);
3059 switch (wstr)
3061 case 1: /* Ctrl-A */
3062 ME_SetSelection(editor, 0, -1);
3063 return 0;
3064 case 3: /* Ctrl-C */
3065 SendMessageW(editor->hWnd, WM_COPY, 0, 0);
3066 return 0;
3069 if (GetWindowLongW(editor->hWnd, GWL_STYLE) & ES_READONLY) {
3070 MessageBeep(MB_ICONERROR);
3071 return 0; /* FIXME really 0 ? */
3074 switch (wstr)
3076 case 22: /* Ctrl-V */
3077 SendMessageW(editor->hWnd, WM_PASTE, 0, 0);
3078 return 0;
3079 case 24: /* Ctrl-X */
3080 SendMessageW(editor->hWnd, WM_CUT, 0, 0);
3081 return 0;
3082 case 25: /* Ctrl-Y */
3083 SendMessageW(editor->hWnd, EM_REDO, 0, 0);
3084 return 0;
3085 case 26: /* Ctrl-Z */
3086 SendMessageW(editor->hWnd, EM_UNDO, 0, 0);
3087 return 0;
3089 if (((unsigned)wstr)>=' '
3090 || (wstr=='\r' && (GetWindowLongW(hWnd, GWL_STYLE) & ES_MULTILINE))
3091 || wstr=='\t') {
3092 /* FIXME maybe it would make sense to call EM_REPLACESEL instead ? */
3093 /* WM_CHAR is restricted to nTextLimit */
3094 int from, to;
3095 ME_GetSelection(editor, &from, &to);
3096 if(editor->nTextLimit > ME_GetTextLength(editor) - (to-from))
3098 ME_Style *style = ME_GetInsertStyle(editor, 0);
3099 ME_SaveTempStyle(editor);
3100 if (wstr == '\r' && (GetKeyState(VK_SHIFT) & 0x8000))
3101 ME_InsertEndRowFromCursor(editor, 0);
3102 else
3103 ME_InsertTextFromCursor(editor, 0, &wstr, 1, style);
3104 ME_ReleaseStyle(style);
3105 ME_CommitUndo(editor);
3108 if (editor->AutoURLDetect_bEnable) ME_UpdateSelectionLinkAttribute(editor);
3110 ME_UpdateRepaint(editor);
3112 return 0;
3114 case EM_SCROLL: /* fall through */
3115 case WM_VSCROLL:
3117 int origNPos;
3118 int lineHeight;
3120 origNPos = ME_GetYScrollPos(editor);
3121 lineHeight = 24;
3123 if (editor && editor->pBuffer && editor->pBuffer->pDefaultStyle)
3124 lineHeight = editor->pBuffer->pDefaultStyle->tm.tmHeight;
3125 if (lineHeight <= 0) lineHeight = 24;
3127 switch(LOWORD(wParam))
3129 case SB_LINEUP:
3130 ME_ScrollUp(editor,lineHeight);
3131 break;
3132 case SB_LINEDOWN:
3133 ME_ScrollDown(editor,lineHeight);
3134 break;
3135 case SB_PAGEUP:
3136 ME_ScrollUp(editor,editor->sizeWindow.cy);
3137 break;
3138 case SB_PAGEDOWN:
3139 ME_ScrollDown(editor,editor->sizeWindow.cy);
3140 break;
3141 case SB_THUMBTRACK:
3142 case SB_THUMBPOSITION:
3143 ME_ScrollAbs(editor,HIWORD(wParam));
3144 break;
3146 if (msg == EM_SCROLL)
3147 return 0x00010000 | (((ME_GetYScrollPos(editor) - origNPos)/lineHeight) & 0xffff);
3148 break;
3150 case WM_MOUSEWHEEL:
3152 int gcWheelDelta;
3153 UINT pulScrollLines;
3155 if ((editor->nEventMask & ENM_MOUSEEVENTS) &&
3156 !ME_FilterEvent(editor, msg, &wParam, &lParam))
3157 return 0;
3159 SystemParametersInfoW(SPI_GETWHEELSCROLLLINES,0, &pulScrollLines, 0);
3160 gcWheelDelta = -GET_WHEEL_DELTA_WPARAM(wParam);
3162 if (abs(gcWheelDelta) >= WHEEL_DELTA && pulScrollLines)
3164 /* FIXME follow the original */
3165 ME_ScrollDown(editor,pulScrollLines * (gcWheelDelta / WHEEL_DELTA) * 8);
3167 break;
3169 case EM_GETRECT:
3171 *((RECT *)lParam) = editor->rcFormat;
3172 return 0;
3174 case EM_SETRECT:
3175 case EM_SETRECTNP:
3177 if (lParam)
3179 RECT *rc = (RECT *)lParam;
3181 if (wParam)
3183 editor->rcFormat.left += rc->left;
3184 editor->rcFormat.top += rc->top;
3185 editor->rcFormat.right += rc->right;
3186 editor->rcFormat.bottom += rc->bottom;
3188 else
3190 editor->rcFormat = *rc;
3193 else
3195 GetClientRect(hWnd, &editor->rcFormat);
3197 if (msg != EM_SETRECTNP)
3198 ME_RewrapRepaint(editor);
3199 return 0;
3201 case EM_REQUESTRESIZE:
3202 ME_SendRequestResize(editor, TRUE);
3203 return 0;
3204 case WM_SETREDRAW:
3205 if ((editor->bRedraw = wParam))
3206 ME_RewrapRepaint(editor);
3207 return 0;
3208 case WM_SIZE:
3210 GetClientRect(hWnd, &editor->rcFormat);
3211 ME_RewrapRepaint(editor);
3212 return DefWindowProcW(hWnd, msg, wParam, lParam);
3214 /* IME messages to make richedit controls IME aware */
3215 case WM_IME_SETCONTEXT:
3216 case WM_IME_CONTROL:
3217 case WM_IME_SELECT:
3218 case WM_IME_COMPOSITIONFULL:
3219 return 0;
3220 case WM_IME_STARTCOMPOSITION:
3222 editor->imeStartIndex=ME_GetCursorOfs(editor,0);
3223 ME_DeleteSelection(editor);
3224 ME_CommitUndo(editor);
3225 ME_UpdateRepaint(editor);
3226 return 0;
3228 case WM_IME_COMPOSITION:
3230 HIMC hIMC;
3232 ME_Style *style = ME_GetInsertStyle(editor, 0);
3233 hIMC = ImmGetContext(hWnd);
3234 ME_DeleteSelection(editor);
3235 ME_CommitUndo(editor);
3236 ME_SaveTempStyle(editor);
3237 if (lParam & GCS_RESULTSTR)
3239 LPWSTR lpCompStr = NULL;
3240 DWORD dwBufLen;
3242 dwBufLen = ImmGetCompositionStringW(hIMC, GCS_RESULTSTR, NULL, 0);
3243 lpCompStr = HeapAlloc(GetProcessHeap(),0,dwBufLen + sizeof(WCHAR));
3244 ImmGetCompositionStringW(hIMC, GCS_RESULTSTR, lpCompStr, dwBufLen);
3245 lpCompStr[dwBufLen/sizeof(WCHAR)] = 0;
3246 ME_InsertTextFromCursor(editor,0,lpCompStr,dwBufLen/sizeof(WCHAR),style);
3248 else if (lParam & GCS_COMPSTR)
3250 LPWSTR lpCompStr = NULL;
3251 DWORD dwBufLen;
3253 dwBufLen = ImmGetCompositionStringW(hIMC, GCS_COMPSTR, NULL, 0);
3254 lpCompStr = HeapAlloc(GetProcessHeap(),0,dwBufLen + sizeof(WCHAR));
3255 ImmGetCompositionStringW(hIMC, GCS_COMPSTR, lpCompStr, dwBufLen);
3256 lpCompStr[dwBufLen/sizeof(WCHAR)] = 0;
3258 ME_InsertTextFromCursor(editor,0,lpCompStr,dwBufLen/sizeof(WCHAR),style);
3259 ME_SetSelection(editor,editor->imeStartIndex,
3260 editor->imeStartIndex + dwBufLen/sizeof(WCHAR));
3262 ME_ReleaseStyle(style);
3263 ME_UpdateRepaint(editor);
3264 return 0;
3266 case WM_IME_ENDCOMPOSITION:
3268 ME_DeleteSelection(editor);
3269 editor->imeStartIndex=-1;
3270 return 0;
3272 case EM_GETOLEINTERFACE:
3274 LPVOID *ppvObj = (LPVOID*) lParam;
3275 return CreateIRichEditOle(editor, ppvObj);
3277 case EM_GETPASSWORDCHAR:
3279 return editor->cPasswordMask;
3281 case EM_SETOLECALLBACK:
3282 if(editor->lpOleCallback)
3283 IUnknown_Release(editor->lpOleCallback);
3284 editor->lpOleCallback = (LPRICHEDITOLECALLBACK)lParam;
3285 if(editor->lpOleCallback)
3286 IUnknown_AddRef(editor->lpOleCallback);
3287 return TRUE;
3288 case EM_GETWORDBREAKPROC:
3289 return (LRESULT)editor->pfnWordBreak;
3290 case EM_SETWORDBREAKPROC:
3292 EDITWORDBREAKPROCW pfnOld = editor->pfnWordBreak;
3294 editor->pfnWordBreak = (EDITWORDBREAKPROCW)lParam;
3295 return (LRESULT)pfnOld;
3297 case EM_SETTEXTMODE:
3299 LRESULT ret;
3300 int mask = 0;
3301 int changes = 0;
3302 ret = RichEditWndProc_common(hWnd, WM_GETTEXTLENGTH, 0, 0, unicode);
3303 if (!ret)
3305 /*Check for valid wParam*/
3306 if ((((wParam & TM_RICHTEXT) && ((wParam & TM_PLAINTEXT) << 1))) ||
3307 (((wParam & TM_MULTILEVELUNDO) && ((wParam & TM_SINGLELEVELUNDO) << 1))) ||
3308 (((wParam & TM_MULTICODEPAGE) && ((wParam & TM_SINGLECODEPAGE) << 1))))
3309 return 1;
3310 else
3312 if (wParam & (TM_RICHTEXT | TM_PLAINTEXT))
3314 mask |= (TM_RICHTEXT | TM_PLAINTEXT);
3315 changes |= (wParam & (TM_RICHTEXT | TM_PLAINTEXT));
3317 /*FIXME: Currently no support for undo level and code page options*/
3318 editor->mode = (editor->mode & (~mask)) | changes;
3319 return 0;
3322 return ret;
3324 case EM_SETPASSWORDCHAR:
3326 editor->cPasswordMask = wParam;
3327 ME_RewrapRepaint(editor);
3328 return 0;
3330 case EM_SETTARGETDEVICE:
3331 if (wParam == 0)
3333 BOOL new = (lParam == 0);
3334 if (editor->bWordWrap != new)
3336 editor->bWordWrap = new;
3337 ME_RewrapRepaint(editor);
3340 else FIXME("Unsupported yet non NULL device in EM_SETTARGETDEVICE\n");
3341 break;
3342 default:
3343 do_default:
3344 return DefWindowProcW(hWnd, msg, wParam, lParam);
3346 return 0L;
3349 static LRESULT WINAPI RichEditWndProcW(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
3351 BOOL unicode = TRUE;
3353 /* Under Win9x RichEdit20W returns ANSI strings, see the tests. */
3354 if (msg == WM_GETTEXT && (GetVersion() & 0x80000000))
3355 unicode = FALSE;
3357 return RichEditWndProc_common(hWnd, msg, wParam, lParam, unicode);
3360 static LRESULT WINAPI RichEditWndProcA(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
3362 return RichEditWndProc_common(hWnd, msg, wParam, lParam, FALSE);
3365 /******************************************************************
3366 * RichEditANSIWndProc (RICHED20.10)
3368 LRESULT WINAPI RichEditANSIWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
3370 return RichEditWndProcA(hWnd, msg, wParam, lParam);
3373 /******************************************************************
3374 * RichEdit10ANSIWndProc (RICHED20.9)
3376 LRESULT WINAPI RichEdit10ANSIWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
3378 LRESULT result;
3380 /* FIXME: this is NOT the same as 2.0 version */
3381 result = RichEditANSIWndProc(hWnd, msg, wParam, lParam);
3382 if (msg == WM_NCCREATE)
3384 ME_TextEditor *editor = (ME_TextEditor *)GetWindowLongPtrW(hWnd, 0);
3386 editor->bEmulateVersion10 = TRUE;
3387 editor->pBuffer->pLast->member.para.nCharOfs = 2;
3388 assert(editor->pBuffer->pLast->prev->type == diRun);
3389 assert(editor->pBuffer->pLast->prev->member.run.nFlags & MERF_ENDPARA);
3390 editor->pBuffer->pLast->prev->member.run.nLF = 1;
3392 return result;
3395 void ME_SendOldNotify(ME_TextEditor *editor, int nCode)
3397 HWND hWnd = editor->hWnd;
3398 SendMessageA(GetParent(hWnd), WM_COMMAND, (nCode<<16)|GetWindowLongW(hWnd, GWLP_ID), (LPARAM)hWnd);
3401 void ME_LinkNotify(ME_TextEditor *editor, UINT msg, WPARAM wParam, LPARAM lParam)
3403 int x,y;
3404 ME_Cursor tmpCursor;
3405 int nCharOfs; /* The start of the clicked text. Absolute character offset */
3407 ME_Run *tmpRun;
3409 ENLINK info;
3410 x = (short)LOWORD(lParam);
3411 y = (short)HIWORD(lParam);
3412 nCharOfs = ME_CharFromPos(editor, x, y);
3413 if (nCharOfs < 0) return;
3415 ME_CursorFromCharOfs(editor, nCharOfs, &tmpCursor);
3416 tmpRun = &tmpCursor.pRun->member.run;
3418 if ((tmpRun->style->fmt.dwMask & CFM_LINK)
3419 && (tmpRun->style->fmt.dwEffects & CFE_LINK))
3420 { /* The clicked run has CFE_LINK set */
3421 info.nmhdr.hwndFrom = editor->hWnd;
3422 info.nmhdr.idFrom = GetWindowLongW(editor->hWnd, GWLP_ID);
3423 info.nmhdr.code = EN_LINK;
3424 info.msg = msg;
3425 info.wParam = wParam;
3426 info.lParam = lParam;
3427 info.chrg.cpMin = ME_CharOfsFromRunOfs(editor,tmpCursor.pRun,0);
3428 info.chrg.cpMax = info.chrg.cpMin + ME_StrVLen(tmpRun->strText);
3429 SendMessageW(GetParent(editor->hWnd), WM_NOTIFY,info.nmhdr.idFrom, (LPARAM)&info);
3433 int ME_CountParagraphsBetween(ME_TextEditor *editor, int from, int to)
3435 ME_DisplayItem *item = ME_FindItemFwd(editor->pBuffer->pFirst, diParagraph);
3436 int i = 0;
3438 while(item && item->member.para.next_para->member.para.nCharOfs <= from)
3439 item = item->member.para.next_para;
3440 if (!item)
3441 return 0;
3442 while(item && item->member.para.next_para->member.para.nCharOfs <= to) {
3443 item = item->member.para.next_para;
3444 i++;
3446 return i;
3450 int ME_GetTextW(ME_TextEditor *editor, WCHAR *buffer, int nStart, int nChars, int bCRLF)
3452 ME_DisplayItem *item = ME_FindItemAtOffset(editor, diRun, nStart, &nStart);
3453 int nWritten = 0;
3454 WCHAR *pStart = buffer;
3456 if (!item) {
3457 *buffer = 0;
3458 return 0;
3461 /* bCRLF flag is only honored in 2.0 and up. 1.0 must always return text verbatim */
3462 if (editor->bEmulateVersion10) bCRLF = 0;
3464 if (nStart)
3466 int nLen = ME_StrLen(item->member.run.strText) - nStart;
3467 if (nLen > nChars)
3468 nLen = nChars;
3469 CopyMemory(buffer, item->member.run.strText->szData + nStart, sizeof(WCHAR)*nLen);
3470 nChars -= nLen;
3471 nWritten += nLen;
3472 buffer += nLen;
3473 if (!nChars) {
3474 *buffer = 0;
3475 return nWritten;
3477 nStart = 0;
3478 item = ME_FindItemFwd(item, diRun);
3481 while(nChars && item)
3483 int nLen = ME_StrLen(item->member.run.strText);
3484 if (item->member.run.nFlags & MERF_ENDPARA)
3485 nLen = item->member.run.nCR + item->member.run.nLF;
3486 if (nLen > nChars)
3487 nLen = nChars;
3489 if (item->member.run.nFlags & MERF_ENDPARA)
3491 if (!ME_FindItemFwd(item, diRun))
3492 /* No '\r' is appended to the last paragraph. */
3493 nLen = 0;
3494 else if (bCRLF && nChars == 1) {
3495 nLen = 0;
3496 nChars = 0;
3497 } else {
3498 if (bCRLF)
3500 /* richedit 2.0 case - actual line-break is \r but should report \r\n */
3501 assert(nLen == 1);
3502 *buffer++ = '\r';
3503 *buffer = '\n'; /* Later updated by nLen==1 at the end of the loop */
3504 nWritten++;
3506 else
3508 int i, j;
3510 /* richedit 2.0 verbatim has only \r. richedit 1.0 should honor encodings */
3511 i = 0;
3512 while (nChars - i > 0 && i < item->member.run.nCR)
3514 buffer[i] = '\r'; i++;
3516 j = 0;
3517 while (nChars - i - j > 0 && j < item->member.run.nLF)
3519 buffer[i+j] = '\n'; j++;
3524 else
3525 CopyMemory(buffer, item->member.run.strText->szData, sizeof(WCHAR)*nLen);
3526 nChars -= nLen;
3527 nWritten += nLen;
3528 buffer += nLen;
3530 if (!nChars)
3532 TRACE("nWritten=%d, actual=%d\n", nWritten, buffer-pStart);
3533 *buffer = 0;
3534 return nWritten;
3536 item = ME_FindItemFwd(item, diRun);
3538 *buffer = 0;
3539 TRACE("nWritten=%d, actual=%d\n", nWritten, buffer-pStart);
3540 return nWritten;
3543 static BOOL ME_RegisterEditorClass(HINSTANCE hInstance)
3545 WNDCLASSW wcW;
3546 WNDCLASSA wcA;
3548 wcW.style = CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS;
3549 wcW.lpfnWndProc = RichEditWndProcW;
3550 wcW.cbClsExtra = 0;
3551 wcW.cbWndExtra = sizeof(ME_TextEditor *);
3552 wcW.hInstance = NULL; /* hInstance would register DLL-local class */
3553 wcW.hIcon = NULL;
3554 wcW.hCursor = LoadCursorW(NULL, MAKEINTRESOURCEW(IDC_IBEAM));
3555 wcW.hbrBackground = (HBRUSH)GetStockObject(NULL_BRUSH);
3556 wcW.lpszMenuName = NULL;
3558 if (is_version_nt())
3560 wcW.lpszClassName = RichEdit20W;
3561 if (!RegisterClassW(&wcW)) return FALSE;
3562 wcW.lpszClassName = RichEdit50W;
3563 if (!RegisterClassW(&wcW)) return FALSE;
3565 else
3567 /* WNDCLASSA/W have the same layout */
3568 wcW.lpszClassName = (LPCWSTR)"RichEdit20W";
3569 if (!RegisterClassA((WNDCLASSA *)&wcW)) return FALSE;
3570 wcW.lpszClassName = (LPCWSTR)"RichEdit50W";
3571 if (!RegisterClassA((WNDCLASSA *)&wcW)) return FALSE;
3574 wcA.style = CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS;
3575 wcA.lpfnWndProc = RichEditWndProcA;
3576 wcA.cbClsExtra = 0;
3577 wcA.cbWndExtra = sizeof(ME_TextEditor *);
3578 wcA.hInstance = NULL; /* hInstance would register DLL-local class */
3579 wcA.hIcon = NULL;
3580 wcA.hCursor = LoadCursorW(NULL, MAKEINTRESOURCEW(IDC_IBEAM));
3581 wcA.hbrBackground = (HBRUSH)GetStockObject(NULL_BRUSH);
3582 wcA.lpszMenuName = NULL;
3583 wcA.lpszClassName = "RichEdit20A";
3584 if (!RegisterClassA(&wcA)) return FALSE;
3585 wcA.lpszClassName = "RichEdit50A";
3586 if (!RegisterClassA(&wcA)) return FALSE;
3588 return TRUE;
3591 LRESULT WINAPI REComboWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) {
3592 /* FIXME: Not implemented */
3593 TRACE("hWnd %p msg %04x (%s) %08lx %08lx\n",
3594 hWnd, msg, get_msg_name(msg), wParam, lParam);
3595 return DefWindowProcW(hWnd, msg, wParam, lParam);
3598 LRESULT WINAPI REListWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) {
3599 /* FIXME: Not implemented */
3600 TRACE("hWnd %p msg %04x (%s) %08lx %08lx\n",
3601 hWnd, msg, get_msg_name(msg), wParam, lParam);
3602 return DefWindowProcW(hWnd, msg, wParam, lParam);
3605 /******************************************************************
3606 * REExtendedRegisterClass (RICHED20.8)
3608 * FIXME undocumented
3609 * Need to check for errors and implement controls and callbacks
3611 LRESULT WINAPI REExtendedRegisterClass(void)
3613 WNDCLASSW wcW;
3614 UINT result;
3616 FIXME("semi stub\n");
3618 wcW.cbClsExtra = 0;
3619 wcW.cbWndExtra = 4;
3620 wcW.hInstance = NULL;
3621 wcW.hIcon = NULL;
3622 wcW.hCursor = NULL;
3623 wcW.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
3624 wcW.lpszMenuName = NULL;
3626 if (!ME_ListBoxRegistered)
3628 wcW.style = CS_PARENTDC | CS_DBLCLKS | CS_GLOBALCLASS;
3629 wcW.lpfnWndProc = REListWndProc;
3630 wcW.lpszClassName = REListBox20W;
3631 if (RegisterClassW(&wcW)) ME_ListBoxRegistered = TRUE;
3634 if (!ME_ComboBoxRegistered)
3636 wcW.style = CS_PARENTDC | CS_DBLCLKS | CS_GLOBALCLASS | CS_VREDRAW | CS_HREDRAW;
3637 wcW.lpfnWndProc = REComboWndProc;
3638 wcW.lpszClassName = REComboBox20W;
3639 if (RegisterClassW(&wcW)) ME_ComboBoxRegistered = TRUE;
3642 result = 0;
3643 if (ME_ListBoxRegistered)
3644 result += 1;
3645 if (ME_ComboBoxRegistered)
3646 result += 2;
3648 return result;
3651 int ME_AutoURLDetect(ME_TextEditor *editor, WCHAR curChar)
3653 struct prefix_s {
3654 const char *text;
3655 int length;
3656 } prefixes[12] = {
3657 {"http:", 5},
3658 {"file:", 6},
3659 {"mailto:", 8},
3660 {"ftp:", 5},
3661 {"https:", 7},
3662 {"gopher:", 8},
3663 {"nntp:", 6},
3664 {"prospero:", 10},
3665 {"telnet:", 8},
3666 {"news:", 6},
3667 {"wais:", 6},
3668 {"www.", 5}
3670 CHARRANGE ins_pt;
3671 int curf_ef, link_ef, def_ef;
3672 int cur_prefx, prefx_cnt;
3673 int sel_min, sel_max;
3674 int car_pos = 0;
3675 int text_pos=-1;
3676 int URLmin, URLmax = 0;
3677 FINDTEXTA ft;
3678 CHARFORMAT2W cur_format;
3679 CHARFORMAT2W default_format;
3680 CHARFORMAT2W link;
3681 RichEditANSIWndProc(editor->hWnd, EM_EXGETSEL, (WPARAM) 0, (LPARAM) &ins_pt);
3682 sel_min = ins_pt.cpMin;
3683 sel_max = ins_pt.cpMax;
3684 if (sel_min==sel_max)
3685 car_pos = sel_min;
3686 if (sel_min!=sel_max)
3687 car_pos = ME_GetTextLength(editor)+1;
3688 cur_format.cbSize = sizeof(cur_format);
3689 default_format.cbSize = sizeof(default_format);
3690 RichEditANSIWndProc(editor->hWnd, EM_GETCHARFORMAT, SCF_SELECTION, (LPARAM) &cur_format);
3691 RichEditANSIWndProc(editor->hWnd, EM_GETCHARFORMAT, SCF_DEFAULT, (LPARAM) &default_format);
3692 link.cbSize = sizeof(link);
3693 link.dwMask = CFM_LINK;
3694 link.dwEffects = CFE_LINK;
3695 curf_ef = cur_format.dwEffects & link.dwEffects;
3696 def_ef = default_format.dwEffects & link.dwEffects;
3697 link_ef = link.dwEffects & link.dwEffects;
3698 if (curf_ef == link_ef)
3700 if( curChar == '\n' || curChar=='\r' || curChar==' ')
3702 ME_SetSelection(editor, car_pos, car_pos);
3703 RichEditANSIWndProc(editor->hWnd, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM) &default_format);
3704 text_pos=-1;
3705 return 0;
3708 if (curf_ef == def_ef)
3710 cur_prefx = 0;
3711 prefx_cnt = (sizeof(prefixes)/sizeof(struct prefix_s))-1;
3712 while (cur_prefx<=prefx_cnt)
3714 if (text_pos == -1)
3716 ft.lpstrText = prefixes[cur_prefx].text;
3717 URLmin=max(0,(car_pos-prefixes[cur_prefx].length));
3718 URLmax=max(0, car_pos);
3719 if ((car_pos == 0) && (ME_GetTextLength(editor) != 0))
3721 URLmax = ME_GetTextLength(editor)+1;
3723 ft.chrg.cpMin = URLmin;
3724 ft.chrg.cpMax = URLmax;
3725 text_pos=RichEditANSIWndProc(editor->hWnd, EM_FINDTEXT, FR_DOWN, (LPARAM)&ft);
3726 cur_prefx++;
3728 if (text_pos != -1)
3730 ME_SetCharFormat(editor, text_pos, (URLmax-text_pos), &link);
3731 ME_RewrapRepaint(editor);
3732 break;
3736 return 0;
3740 static BOOL isurlspecial(WCHAR c)
3742 static const WCHAR special_chars[] = {'.','/','%','@','*','|','\\','+','#',0};
3743 return strchrW( special_chars, c ) != NULL;
3747 * This proc takes a selection, and scans it forward in order to select the span
3748 * of a possible URL candidate. A possible URL candidate must start with isalnum
3749 * or one of the following special characters: *|/\+%#@ and must consist entirely
3750 * of the characters allowed to start the URL, plus : (colon) which may occur
3751 * at most once, and not at either end.
3753 * sel_max == -1 indicates scan to end of text.
3755 BOOL ME_FindNextURLCandidate(ME_TextEditor *editor, int sel_min, int sel_max,
3756 int * candidate_min, int * candidate_max)
3758 ME_DisplayItem * item;
3759 ME_DisplayItem * para;
3760 int nStart;
3761 BOOL foundColon = FALSE;
3762 WCHAR lastAcceptedChar = '\0';
3764 TRACE("sel_min = %d sel_max = %d\n", sel_min, sel_max);
3766 *candidate_min = *candidate_max = -1;
3767 item = ME_FindItemAtOffset(editor, diRun, sel_min, &nStart);
3768 if (!item) return FALSE;
3769 TRACE("nStart = %d\n", nStart);
3770 para = ME_GetParagraph(item);
3771 if (sel_max == -1) sel_max = ME_GetTextLength(editor);
3772 while (item && para->member.para.nCharOfs + item->member.run.nCharOfs + nStart < sel_max)
3774 ME_DisplayItem * next_item;
3776 if (!(item->member.run.nFlags & MERF_ENDPARA)) {
3777 /* Find start of candidate */
3778 if (*candidate_min == -1) {
3779 while (nStart < ME_StrLen(item->member.run.strText) &&
3780 !(isalnumW(item->member.run.strText->szData[nStart]) ||
3781 isurlspecial(item->member.run.strText->szData[nStart]))) {
3782 nStart++;
3784 if (nStart < ME_StrLen(item->member.run.strText) &&
3785 (isalnumW(item->member.run.strText->szData[nStart]) ||
3786 isurlspecial(item->member.run.strText->szData[nStart]))) {
3787 *candidate_min = para->member.para.nCharOfs + item->member.run.nCharOfs + nStart;
3788 lastAcceptedChar = item->member.run.strText->szData[nStart];
3789 nStart++;
3793 /* Find end of candidate */
3794 if (*candidate_min >= 0) {
3795 while (nStart < ME_StrLen(item->member.run.strText) &&
3796 (isalnumW(item->member.run.strText->szData[nStart]) ||
3797 isurlspecial(item->member.run.strText->szData[nStart]) ||
3798 (!foundColon && item->member.run.strText->szData[nStart] == ':') )) {
3799 if (item->member.run.strText->szData[nStart] == ':') foundColon = TRUE;
3800 lastAcceptedChar = item->member.run.strText->szData[nStart];
3801 nStart++;
3803 if (nStart < ME_StrLen(item->member.run.strText) &&
3804 !(isalnumW(item->member.run.strText->szData[nStart]) ||
3805 isurlspecial(item->member.run.strText->szData[nStart]) )) {
3806 *candidate_max = para->member.para.nCharOfs + item->member.run.nCharOfs + nStart;
3807 nStart++;
3808 if (lastAcceptedChar == ':') (*candidate_max)--;
3809 return TRUE;
3812 } else {
3813 /* End of paragraph: skip it if before candidate span, or terminates
3814 current active span */
3815 if (*candidate_min >= 0) {
3816 *candidate_max = para->member.para.nCharOfs + item->member.run.nCharOfs;
3817 if (lastAcceptedChar == ':') (*candidate_max)--;
3818 return TRUE;
3822 /* Reaching this point means no span was found, so get next span */
3823 next_item = ME_FindItemFwd(item, diRun);
3824 if (!next_item) {
3825 if (*candidate_min >= 0) {
3826 /* There are no further runs, so take end of text as end of candidate */
3827 *candidate_max = para->member.para.nCharOfs + item->member.run.nCharOfs + nStart;
3828 if (lastAcceptedChar == ':') (*candidate_max)--;
3829 return TRUE;
3832 item = next_item;
3833 para = ME_GetParagraph(item);
3834 nStart = 0;
3837 if (item) {
3838 if (*candidate_min >= 0) {
3839 /* There are no further runs, so take end of text as end of candidate */
3840 *candidate_max = para->member.para.nCharOfs + item->member.run.nCharOfs + nStart;
3841 if (lastAcceptedChar == ':') (*candidate_max)--;
3842 return TRUE;
3845 return FALSE;
3849 * This proc evaluates the selection and returns TRUE if it can be considered an URL
3851 BOOL ME_IsCandidateAnURL(ME_TextEditor *editor, int sel_min, int sel_max)
3853 struct prefix_s {
3854 const char *text;
3855 int length;
3856 } prefixes[12] = {
3857 /* Code below depends on these being in decreasing length order! */
3858 {"prospero:", 10},
3859 {"telnet:", 8},
3860 {"gopher:", 8},
3861 {"mailto:", 8},
3862 {"https:", 7},
3863 {"file:", 6},
3864 {"news:", 6},
3865 {"wais:", 6},
3866 {"nntp:", 6},
3867 {"http:", 5},
3868 {"www.", 5},
3869 {"ftp:", 5},
3871 LPWSTR bufferW = NULL;
3872 WCHAR bufW[32];
3873 int i;
3875 if (sel_max == -1) sel_max = ME_GetTextLength(editor);
3876 assert(sel_min <= sel_max);
3877 for (i = 0; i < sizeof(prefixes) / sizeof(struct prefix_s); i++)
3879 if (sel_max - sel_min < prefixes[i].length) continue;
3880 if (bufferW == NULL) {
3881 bufferW = (LPWSTR)heap_alloc((sel_max - sel_min + 1) * sizeof(WCHAR));
3883 ME_GetTextW(editor, bufferW, sel_min, min(sel_max - sel_min, strlen(prefixes[i].text)), 0);
3884 MultiByteToWideChar(CP_ACP, 0, prefixes[i].text, -1, bufW, 32);
3885 if (!lstrcmpW(bufW, bufferW))
3887 heap_free(bufferW);
3888 return TRUE;
3891 heap_free(bufferW);
3892 return FALSE;
3896 * This proc walks through the indicated selection and evaluates whether each
3897 * section identified by ME_FindNextURLCandidate and in-between sections have
3898 * their proper CFE_LINK attributes set or unset. If the CFE_LINK attribute is
3899 * not what it is supposed to be, this proc sets or unsets it as appropriate.
3901 * Returns TRUE if at least one section was modified.
3903 BOOL ME_UpdateLinkAttribute(ME_TextEditor *editor, int sel_min, int sel_max)
3905 BOOL modified = FALSE;
3906 int cMin, cMax;
3908 if (sel_max == -1) sel_max = ME_GetTextLength(editor);
3911 int beforeURL[2];
3912 int inURL[2];
3913 CHARFORMAT2W link;
3915 if (ME_FindNextURLCandidate(editor, sel_min, sel_max, &cMin, &cMax))
3917 /* Section before candidate is not an URL */
3918 beforeURL[0] = sel_min;
3919 beforeURL[1] = cMin;
3921 if (ME_IsCandidateAnURL(editor, cMin, cMax))
3923 inURL[0] = cMin; inURL[1] = cMax;
3925 else
3927 beforeURL[1] = cMax;
3928 inURL[0] = inURL[1] = -1;
3930 sel_min = cMax;
3932 else
3934 /* No more candidates until end of selection */
3935 beforeURL[0] = sel_min;
3936 beforeURL[1] = sel_max;
3937 inURL[0] = inURL[1] = -1;
3938 sel_min = sel_max;
3941 if (beforeURL[0] < beforeURL[1])
3943 /* CFE_LINK effect should be consistently unset */
3944 link.cbSize = sizeof(link);
3945 ME_GetCharFormat(editor, beforeURL[0], beforeURL[1], &link);
3946 if (!(link.dwMask & CFM_LINK) || (link.dwEffects & CFE_LINK))
3948 /* CFE_LINK must be unset from this range */
3949 memset(&link, 0, sizeof(CHARFORMAT2W));
3950 link.cbSize = sizeof(link);
3951 link.dwMask = CFM_LINK;
3952 link.dwEffects = 0;
3953 ME_SetCharFormat(editor, beforeURL[0], beforeURL[1] - beforeURL[0], &link);
3954 modified = TRUE;
3957 if (inURL[0] < inURL[1])
3959 /* CFE_LINK effect should be consistently set */
3960 link.cbSize = sizeof(link);
3961 ME_GetCharFormat(editor, inURL[0], inURL[1], &link);
3962 if (!(link.dwMask & CFM_LINK) || !(link.dwEffects & CFE_LINK))
3964 /* CFE_LINK must be set on this range */
3965 memset(&link, 0, sizeof(CHARFORMAT2W));
3966 link.cbSize = sizeof(link);
3967 link.dwMask = CFM_LINK;
3968 link.dwEffects = CFE_LINK;
3969 ME_SetCharFormat(editor, inURL[0], inURL[1] - inURL[0], &link);
3970 modified = TRUE;
3973 } while (sel_min < sel_max);
3974 return modified;
3977 void ME_UpdateSelectionLinkAttribute(ME_TextEditor *editor)
3979 ME_DisplayItem * startPara, * endPara;
3980 ME_DisplayItem * item;
3981 int dummy;
3982 int from, to;
3984 ME_GetSelection(editor, &from, &to);
3985 if (from > to) from ^= to, to ^=from, from ^= to;
3986 startPara = NULL; endPara = NULL;
3988 /* Find paragraph previous to the one that contains start cursor */
3989 item = ME_FindItemAtOffset(editor, diRun, from, &dummy);
3990 if (item) {
3991 startPara = ME_FindItemBack(item, diParagraph);
3992 item = ME_FindItemBack(startPara, diParagraph);
3993 if (item) startPara = item;
3996 /* Find paragraph that contains end cursor */
3997 item = ME_FindItemAtOffset(editor, diRun, to, &dummy);
3998 if (item) {
3999 endPara = ME_FindItemFwd(item, diParagraph);
4002 if (startPara && endPara) {
4003 ME_UpdateLinkAttribute(editor,
4004 startPara->member.para.nCharOfs,
4005 endPara->member.para.nCharOfs);
4006 } else if (startPara) {
4007 ME_UpdateLinkAttribute(editor,
4008 startPara->member.para.nCharOfs,
4009 -1);