mcicda: Exclude unused headers.
[wine] / dlls / riched20 / editor.c
1 /*
2  * RichEdit - functions dealing with editor object
3  *
4  * Copyright 2004 by Krzysztof Foltman
5  * Copyright 2005 by Cihan Altinay
6  * Copyright 2005 by Phil Krylov
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 /* 
24   API implementation status:
25   
26   Messages (ANSI versions not done yet)
27   + EM_AUTOURLDETECT 2.0
28   + EM_CANPASTE
29   + EM_CANREDO 2.0
30   + EM_CANUNDO
31   + EM_CHARFROMPOS
32   - EM_DISPLAYBAND
33   + EM_EMPTYUNDOBUFFER
34   + EM_EXGETSEL
35   + EM_EXLIMITTEXT
36   + EM_EXLINEFROMCHAR
37   + EM_EXSETSEL
38   + EM_FINDTEXT (only FR_DOWN flag implemented)
39   + EM_FINDTEXTEX (only FR_DOWN flag implemented)
40   - EM_FINDWORDBREAK
41   - EM_FMTLINES
42   - EM_FORMATRANGE
43   + EM_GETAUTOURLDETECT 2.0
44   - EM_GETBIDIOPTIONS 3.0
45   - EM_GETCHARFORMAT (partly done)
46   - EM_GETEDITSTYLE
47   + EM_GETEVENTMASK
48   + EM_GETFIRSTVISIBLELINE (can be optimized if needed)
49   - EM_GETIMECOLOR 1.0asian
50   - EM_GETIMECOMPMODE 2.0
51   - EM_GETIMEOPTIONS 1.0asian
52   - EM_GETIMESTATUS
53   - EM_GETLANGOPTIONS 2.0
54   + EM_GETLIMITTEXT
55   + EM_GETLINE
56   + EM_GETLINECOUNT   returns number of rows, not of paragraphs
57   + EM_GETMODIFY
58   - EM_GETOLEINTERFACE
59   + EM_GETOPTIONS
60   + EM_GETPARAFORMAT
61   + EM_GETPASSWORDCHAR 2.0
62   - EM_GETPUNCTUATION 1.0asian
63   + EM_GETRECT
64   - EM_GETREDONAME 2.0
65   + EM_GETSEL
66   + EM_GETSELTEXT (ANSI&Unicode)
67   + EM_GETSCROLLPOS 3.0 (only Y value valid)
68 ! - EM_GETTHUMB
69   + EM_GETTEXTEX 2.0
70   + EM_GETTEXTLENGTHEX (GTL_PRECISE unimplemented)
71   - EM_GETTEXTMODE 2.0
72 ? + EM_GETTEXTRANGE (ANSI&Unicode)
73   - EM_GETTYPOGRAPHYOPTIONS 3.0
74   - EM_GETUNDONAME
75   + EM_GETWORDBREAKPROC
76   - EM_GETWORDBREAKPROCEX
77   - EM_GETWORDWRAPMODE 1.0asian
78   + EM_GETZOOM 3.0
79   + EM_HIDESELECTION
80   + EM_LIMITTEXT (Also called EM_SETLIMITTEXT)
81   + EM_LINEFROMCHAR
82   + EM_LINEINDEX
83   + EM_LINELENGTH
84   + EM_LINESCROLL
85   - EM_PASTESPECIAL
86   + EM_POSFROMCHAR
87   + EM_REDO 2.0
88   + EM_REQUESTRESIZE
89   + EM_REPLACESEL (proper style?) ANSI&Unicode
90   + EM_SCROLL
91   + EM_SCROLLCARET
92   - EM_SELECTIONTYPE
93   - EM_SETBIDIOPTIONS 3.0
94   + EM_SETBKGNDCOLOR
95   + EM_SETCHARFORMAT (partly done, no ANSI)
96   - EM_SETEDITSTYLE
97   + EM_SETEVENTMASK (few notifications supported)
98   - EM_SETFONTSIZE
99   - EM_SETIMECOLOR 1.0asian
100   - EM_SETIMEOPTIONS 1.0asian
101   - EM_SETLANGOPTIONS 2.0
102   - EM_SETLIMITTEXT
103   + EM_SETMODIFY (not sure if implementation is correct)
104   - EM_SETOLECALLBACK
105   + EM_SETOPTIONS (partially implemented)
106   - EM_SETPALETTE 2.0
107   + EM_SETPARAFORMAT
108   + EM_SETPASSWORDCHAR 2.0
109   - EM_SETPUNCTUATION 1.0asian
110   + EM_SETREADONLY no beep on modification attempt
111   + EM_SETRECT
112   + EM_SETRECTNP (EM_SETRECT without repainting)
113   + EM_SETSEL
114   + EM_SETSCROLLPOS 3.0
115   - EM_SETTABSTOPS 3.0
116   - EM_SETTARGETDEVICE
117   + EM_SETTEXTEX 3.0 (no rich text insertion handling, proper style?)
118   - EM_SETTEXTMODE 2.0
119   - EM_SETTYPOGRAPHYOPTIONS 3.0
120   + EM_SETUNDOLIMIT 2.0
121   + EM_SETWORDBREAKPROC (used only for word movement at the moment)
122   - EM_SETWORDBREAKPROCEX
123   - EM_SETWORDWRAPMODE 1.0asian
124   + EM_SETZOOM 3.0
125   + EM_SHOWSCROLLBAR 2.0
126   - EM_STOPGROUPTYPING 2.0
127   + EM_STREAMIN
128   + EM_STREAMOUT
129   + EM_UNDO
130   + WM_CHAR
131   + WM_CLEAR
132   + WM_COPY
133   + WM_CUT
134   + WM_GETDLGCODE (the current implementation is incomplete)
135   + WM_GETTEXT (ANSI&Unicode)
136   + WM_GETTEXTLENGTH (ANSI version sucks)
137   + WM_PASTE
138   + WM_SETFONT
139   + WM_SETTEXT (resets undo stack !) (proper style?) ANSI&Unicode
140   - WM_STYLECHANGING
141   - WM_STYLECHANGED (things like read-only flag)
142   - WM_UNICHAR
143   
144   Notifications
145   
146   * EN_CHANGE (sent from the wrong place)
147   - EN_CORRECTTEXT
148   - EN_DROPFILES
149   - EN_ERRSPACE
150   - EN_HSCROLL
151   - EN_IMECHANGE
152   + EN_KILLFOCUS
153   - EN_LINK
154   - EN_MAXTEXT
155   - EN_MSGFILTER
156   - EN_OLEOPFAILED
157   - EN_PROTECTED
158   + EN_REQUESTRESIZE
159   - EN_SAVECLIPBOARD
160   + EN_SELCHANGE 
161   + EN_SETFOCUS
162   - EN_STOPNOUNDO
163   * EN_UPDATE (sent from the wrong place)
164   - EN_VSCROLL
165   
166   Styles
167   
168   - ES_AUTOHSCROLL
169   - ES_AUTOVSCROLL
170   - ES_CENTER
171   + ES_DISABLENOSCROLL (scrollbar is always visible)
172   - ES_EX_NOCALLOLEINIT
173   - ES_LEFT
174   - ES_MULTILINE (currently single line controls aren't supported)
175   - ES_NOIME
176   - ES_READONLY (I'm not sure if beeping is the proper behaviour)
177   - ES_RIGHT
178   - ES_SAVESEL
179   - ES_SELFIME
180   - ES_SUNKEN
181   - ES_VERTICAL
182   - ES_WANTRETURN (don't know how to do WM_GETDLGCODE part)
183   - WS_SETFONT
184   - WS_HSCROLL
185   + WS_VSCROLL
186 */
187
188 /*
189  * RICHED20 TODO (incomplete):
190  *
191  * - messages/styles/notifications listed above 
192  * - Undo coalescing 
193  * - add remaining CHARFORMAT/PARAFORMAT fields
194  * - right/center align should strip spaces from the beginning
195  * - pictures/OLE objects (not just smiling faces that lack API support ;-) )
196  * - COM interface (looks like a major pain in the TODO list)
197  * - calculate heights of pictures (half-done)
198  * - horizontal scrolling (not even started)
199  * - hysteresis during wrapping (related to scrollbars appearing/disappearing)
200  * - find/replace
201  * - how to implement EM_FORMATRANGE and EM_DISPLAYBAND ? (Mission Impossible)
202  * - italic caret with italic fonts
203  * - IME
204  * - most notifications aren't sent at all (the most important ones are)
205  * - when should EN_SELCHANGE be sent after text change ? (before/after EN_UPDATE?)
206  * - WM_SETTEXT may use wrong style (but I'm 80% sure it's OK)
207  * - EM_GETCHARFORMAT with SCF_SELECTION may not behave 100% like in original (but very close)
208  * - full justification
209  * - hyphenation
210  * - tables
211  * - ListBox & ComboBox not implemented
212  *
213  * Bugs that are probably fixed, but not so easy to verify:
214  * - EN_UPDATE/EN_CHANGE are handled very incorrectly (should be OK now)
215  * - undo for ME_JoinParagraphs doesn't store paragraph format ? (it does)
216  * - check/fix artificial EOL logic (bCursorAtEnd, hardly logical)
217  * - caret shouldn't be displayed when selection isn't empty
218  * - check refcounting in style management functions (looks perfect now, but no bugs is suspicious)
219  * - undo for setting default format (done, might be buggy)
220  * - styles might be not released properly (looks like they work like charm, but who knows?
221  *
222  */
223
224 #include "editor.h"
225 #include "commdlg.h"
226 #include "winreg.h"
227 #define NO_SHLWAPI_STREAM 
228 #include "shlwapi.h"
229 #include "imm.h"
230 #include "textserv.h"
231 #include "rtf.h"
232
233 #define STACK_SIZE_DEFAULT  100
234 #define STACK_SIZE_MAX     1000
235
236 #define TEXT_LIMIT_DEFAULT 32767
237  
238 WINE_DEFAULT_DEBUG_CHANNEL(richedit);
239
240 static BOOL ME_RegisterEditorClass(HINSTANCE);
241
242 static const WCHAR RichEdit20W[] = {'R', 'i', 'c', 'h', 'E', 'd', 'i', 't', '2', '0', 'W', 0};
243 static const WCHAR RichEdit50W[] = {'R', 'i', 'c', 'h', 'E', 'd', 'i', 't', '5', '0', 'W', 0};
244 static const WCHAR REListBox20W[] = {'R','E','L','i','s','t','B','o','x','2','0','W', 0};
245 static const WCHAR REComboBox20W[] = {'R','E','C','o','m','b','o','B','o','x','2','0','W', 0};
246
247 int me_debug = 0;
248 HANDLE me_heap = NULL;
249
250 static BOOL ME_ListBoxRegistered = FALSE;
251 static BOOL ME_ComboBoxRegistered = FALSE;
252
253 static inline int is_version_nt(void)
254 {
255     return !(GetVersion() & 0x80000000);
256 }
257
258 static ME_TextBuffer *ME_MakeText(void) {
259   
260   ME_TextBuffer *buf = ALLOC_OBJ(ME_TextBuffer);
261
262   ME_DisplayItem *p1 = ME_MakeDI(diTextStart);
263   ME_DisplayItem *p2 = ME_MakeDI(diTextEnd);
264   
265   p1->prev = NULL;
266   p1->next = p2;
267   p2->prev = p1;
268   p2->next = NULL;
269   p1->member.para.next_para = p2;
270   p2->member.para.prev_para = p1;
271   p2->member.para.nCharOfs = 0;  
272   
273   buf->pFirst = p1;
274   buf->pLast = p2;
275   buf->pCharStyle = NULL;
276   
277   return buf;
278 }
279
280
281 static LRESULT ME_StreamInText(ME_TextEditor *editor, DWORD dwFormat, ME_InStream *stream, ME_Style *style)
282 {
283   WCHAR wszText[STREAMIN_BUFFER_SIZE+1];
284   WCHAR *pText;
285   
286   TRACE("%08x %p\n", dwFormat, stream);
287   
288   do {
289     long nWideChars = 0;
290
291     if (!stream->dwSize)
292     {
293       ME_StreamInFill(stream);
294       if (stream->editstream->dwError)
295         break;
296       if (!stream->dwSize)
297         break;
298     }
299       
300     if (!(dwFormat & SF_UNICODE))
301     {
302       /* FIXME? this is doomed to fail on true MBCS like UTF-8, luckily they're unlikely to be used as CP_ACP */
303       nWideChars = MultiByteToWideChar(CP_ACP, 0, stream->buffer, stream->dwSize, wszText, STREAMIN_BUFFER_SIZE);
304       pText = wszText;
305     }
306     else
307     {
308       nWideChars = stream->dwSize >> 1;
309       pText = (WCHAR *)stream->buffer;
310     }
311     
312     ME_InsertTextFromCursor(editor, 0, pText, nWideChars, style);
313     if (stream->dwSize == 0)
314       break;
315     stream->dwSize = 0;
316   } while(1);
317   ME_CommitUndo(editor);
318   ME_UpdateRepaint(editor);
319   return 0;
320 }
321
322 static void ME_RTFCharAttrHook(RTF_Info *info)
323 {
324   CHARFORMAT2W fmt;
325   fmt.cbSize = sizeof(fmt);
326   fmt.dwMask = 0;
327   fmt.dwEffects = 0;
328
329   switch(info->rtfMinor)
330   {
331     case rtfPlain:
332       /* FIXME add more flags once they're implemented */
333       fmt.dwMask = CFM_BOLD | CFM_ITALIC | CFM_UNDERLINE | CFM_STRIKEOUT | CFM_COLOR | CFM_BACKCOLOR | CFM_SIZE | CFM_WEIGHT;
334       fmt.dwEffects = CFE_AUTOCOLOR | CFE_AUTOBACKCOLOR;
335       fmt.yHeight = 12*20; /* 12pt */
336       fmt.wWeight = 400;
337       break;
338     case rtfBold:
339       fmt.dwMask = CFM_BOLD;
340       fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
341       break;
342     case rtfItalic:
343       fmt.dwMask = CFM_ITALIC;
344       fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
345       break;
346     case rtfUnderline:
347       fmt.dwMask = CFM_UNDERLINE;
348       fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
349       fmt.bUnderlineType = CFU_CF1UNDERLINE;
350       break;
351     case rtfNoUnderline:
352       fmt.dwMask = CFM_UNDERLINE;
353       fmt.dwEffects = 0;
354       break;
355     case rtfStrikeThru:
356       fmt.dwMask = CFM_STRIKEOUT;
357       fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
358       break;
359     case rtfSubScript:
360     case rtfSuperScript:
361     case rtfSubScrShrink:
362     case rtfSuperScrShrink:
363     case rtfNoSuperSub:
364       fmt.dwMask = CFM_SUBSCRIPT|CFM_SUPERSCRIPT;
365       if (info->rtfMinor == rtfSubScrShrink) fmt.dwEffects = CFE_SUBSCRIPT;
366       if (info->rtfMinor == rtfSuperScrShrink) fmt.dwEffects = CFE_SUPERSCRIPT;
367       if (info->rtfMinor == rtfNoSuperSub) fmt.dwEffects = 0;
368       break;
369     case rtfInvisible:
370       fmt.dwMask = CFM_HIDDEN;
371       fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
372       break;
373     case rtfBackColor:
374       fmt.dwMask = CFM_BACKCOLOR;
375       fmt.dwEffects = 0;
376       if (info->rtfParam == 0)
377         fmt.dwEffects = CFE_AUTOBACKCOLOR;
378       else if (info->rtfParam != rtfNoParam)
379       {
380         RTFColor *c = RTFGetColor(info, info->rtfParam);
381         fmt.crTextColor = (c->rtfCBlue<<16)|(c->rtfCGreen<<8)|(c->rtfCRed);
382       }
383       break;
384     case rtfForeColor:
385       fmt.dwMask = CFM_COLOR;
386       fmt.dwEffects = 0;
387       if (info->rtfParam == 0)
388         fmt.dwEffects = CFE_AUTOCOLOR;
389       else if (info->rtfParam != rtfNoParam)
390       {
391         RTFColor *c = RTFGetColor(info, info->rtfParam);
392         if (c)
393           fmt.crTextColor = (c->rtfCBlue<<16)|(c->rtfCGreen<<8)|(c->rtfCRed);
394         else
395           fmt.crTextColor = 0;
396       }
397       break;
398     case rtfFontNum:
399       if (info->rtfParam != rtfNoParam)
400       {
401         RTFFont *f = RTFGetFont(info, info->rtfParam);
402         if (f)
403         {
404           MultiByteToWideChar(CP_ACP, 0, f->rtfFName, -1, fmt.szFaceName, sizeof(fmt.szFaceName)/sizeof(WCHAR));
405           fmt.szFaceName[sizeof(fmt.szFaceName)/sizeof(WCHAR)-1] = '\0';
406           fmt.bCharSet = f->rtfFCharSet;
407           fmt.dwMask = CFM_FACE | CFM_CHARSET;
408         }
409       }
410       break;
411     case rtfFontSize:
412       fmt.dwMask = CFM_SIZE;
413       if (info->rtfParam != rtfNoParam)
414         fmt.yHeight = info->rtfParam*10;
415       break;
416   }
417   if (fmt.dwMask) {
418     ME_Style *style2;
419     RTFFlushOutputBuffer(info);
420     /* FIXME too slow ? how come ? */
421     style2 = ME_ApplyStyle(info->style, &fmt);
422     ME_ReleaseStyle(info->style);
423     info->style = style2;
424     info->styleChanged = TRUE;
425   }
426 }
427
428 /* FIXME this function doesn't get any information about context of the RTF tag, which is very bad,
429    the same tags mean different things in different contexts */
430 static void ME_RTFParAttrHook(RTF_Info *info)
431 {
432   PARAFORMAT2 fmt;
433   fmt.cbSize = sizeof(fmt);
434   fmt.dwMask = 0;
435   
436   switch(info->rtfMinor)
437   {
438   case rtfParDef: /* restores default paragraph attributes */
439     fmt.dwMask = PFM_ALIGNMENT | PFM_TABSTOPS | PFM_OFFSET | PFM_STARTINDENT;
440     fmt.wAlignment = PFA_LEFT;
441     fmt.cTabCount = 0;
442     fmt.dxOffset = fmt.dxStartIndent = 0;
443     RTFFlushOutputBuffer(info);
444     ME_GetParagraph(info->editor->pCursors[0].pRun)->member.para.bTable = FALSE;
445     break;
446   case rtfInTable:
447   {
448     ME_DisplayItem *para;
449     
450     RTFFlushOutputBuffer(info);
451     para = ME_GetParagraph(info->editor->pCursors[0].pRun);
452     assert(para->member.para.pCells);
453     para->member.para.bTable = TRUE;
454     return;
455   }
456   case rtfFirstIndent:
457     ME_GetSelectionParaFormat(info->editor, &fmt);
458     fmt.dwMask = PFM_STARTINDENT | PFM_OFFSET;
459     fmt.dxStartIndent += info->rtfParam + fmt.dxOffset;
460     fmt.dxOffset = -info->rtfParam;
461     break;
462   case rtfLeftIndent:
463     ME_GetSelectionParaFormat(info->editor, &fmt);
464     fmt.dwMask = PFM_STARTINDENT;
465     fmt.dxStartIndent = -fmt.dxOffset + info->rtfParam;
466     break;
467   case rtfRightIndent:
468     fmt.dwMask = PFM_RIGHTINDENT;
469     fmt.dxRightIndent = info->rtfParam;
470     break;
471   case rtfQuadLeft:
472   case rtfQuadJust:
473     fmt.dwMask = PFM_ALIGNMENT;
474     fmt.wAlignment = PFA_LEFT;
475     break;
476   case rtfQuadRight:
477     fmt.dwMask = PFM_ALIGNMENT;
478     fmt.wAlignment = PFA_RIGHT;
479     break;
480   case rtfQuadCenter:
481     fmt.dwMask = PFM_ALIGNMENT;
482     fmt.wAlignment = PFA_CENTER;
483     break;
484   case rtfTabPos:
485     ME_GetSelectionParaFormat(info->editor, &fmt);
486     if (!(fmt.dwMask & PFM_TABSTOPS))
487     {
488       fmt.dwMask |= PFM_TABSTOPS;
489       fmt.cTabCount = 0;
490     }
491     if (fmt.cTabCount < MAX_TAB_STOPS)
492       fmt.rgxTabs[fmt.cTabCount++] = info->rtfParam;
493     break;
494   }  
495   if (fmt.dwMask) {
496     RTFFlushOutputBuffer(info);
497     /* FIXME too slow ? how come ?*/
498     ME_SetSelectionParaFormat(info->editor, &fmt);
499   }
500 }
501
502 static void ME_RTFTblAttrHook(RTF_Info *info)
503 {
504   ME_DisplayItem *para;
505   
506   switch (info->rtfMinor)
507   {
508     case rtfRowDef:
509       RTFFlushOutputBuffer(info);
510       para = ME_GetParagraph(info->editor->pCursors[0].pRun);
511       
512       /* Release possibly inherited cell definitions */
513       ME_DestroyTableCellList(para);
514       
515       para->member.para.pCells = ALLOC_OBJ(ME_TableCell);
516       para->member.para.pCells->nRightBoundary = 0;
517       para->member.para.pCells->next = NULL;
518       para->member.para.pLastCell = para->member.para.pCells;
519       break;
520     case rtfCellPos:
521       RTFFlushOutputBuffer(info);
522       para = ME_GetParagraph(info->editor->pCursors[0].pRun);
523       
524       if (para->member.para.pLastCell->nRightBoundary)
525       {
526         ME_TableCell *pCell = ALLOC_OBJ(ME_TableCell);
527         
528         pCell->next = NULL;
529         para->member.para.pLastCell->next = pCell;
530         para->member.para.pLastCell = pCell;
531       }
532       para->member.para.pLastCell->nRightBoundary = info->rtfParam;
533       break;
534   }
535 }
536
537 static void ME_RTFReadHook(RTF_Info *info) {
538   switch(info->rtfClass)
539   {
540     case rtfGroup:
541       switch(info->rtfMajor)
542       {
543         case rtfBeginGroup:
544           if (info->stackTop < maxStack) {
545             memcpy(&info->stack[info->stackTop].fmt, &info->style->fmt, sizeof(CHARFORMAT2W));
546             info->stack[info->stackTop].codePage = info->codePage;
547             info->stack[info->stackTop].unicodeLength = info->unicodeLength;
548           }
549           info->stackTop++;
550           info->styleChanged = FALSE;
551           break;
552         case rtfEndGroup:
553         {
554           ME_Style *s;
555           RTFFlushOutputBuffer(info);
556           if (info->stackTop<=1) {
557             info->rtfClass = rtfEOF;
558             return;
559           }
560           info->stackTop--;
561           assert(info->stackTop >= 0);
562           if (info->styleChanged)
563           {
564             /* FIXME too slow ? how come ? */
565             s = ME_ApplyStyle(info->style, &info->stack[info->stackTop].fmt);
566             ME_ReleaseStyle(info->style);
567             info->style = s;
568             info->codePage = info->stack[info->stackTop].codePage;
569             info->unicodeLength = info->stack[info->stackTop].unicodeLength;
570           }
571           break;
572         }
573       }
574       break;
575     case rtfControl:
576       switch(info->rtfMajor)
577       {
578         case rtfCharAttr:
579           ME_RTFCharAttrHook(info);
580           break;
581         case rtfParAttr:
582           ME_RTFParAttrHook(info);
583           break;
584         case rtfTblAttr:
585           ME_RTFTblAttrHook(info);
586           break;
587         case rtfSpecialChar:
588           if (info->rtfMinor == rtfCell)
589           {
590             RTFFlushOutputBuffer(info);
591             ME_InsertTableCellFromCursor(info->editor, 0);
592           }
593       }
594       break;
595   }
596 }
597
598 void
599 ME_StreamInFill(ME_InStream *stream)
600 {
601   stream->editstream->dwError = stream->editstream->pfnCallback(stream->editstream->dwCookie,
602                                                                 (BYTE *)stream->buffer,
603                                                                 sizeof(stream->buffer),
604                                                                 (LONG *)&stream->dwSize);
605   stream->dwUsed = 0;
606 }
607
608 static LRESULT ME_StreamIn(ME_TextEditor *editor, DWORD format, EDITSTREAM *stream)
609 {
610   RTF_Info parser;
611   ME_Style *style;
612   int from, to, to2, nUndoMode;
613   int nEventMask = editor->nEventMask;
614   ME_InStream inStream;
615
616   TRACE("stream==%p hWnd==%p format==0x%X\n", stream, editor->hWnd, (UINT)format);
617   editor->nEventMask = 0;
618   
619   ME_GetSelection(editor, &from, &to);
620   if ((format & SFF_SELECTION) && (editor->mode & TM_RICHTEXT)) {
621     style = ME_GetSelectionInsertStyle(editor);
622
623     ME_InternalDeleteText(editor, from, to-from);
624   }
625   else {
626     style = editor->pBuffer->pDefaultStyle;
627     ME_AddRefStyle(style);
628     SendMessageA(editor->hWnd, EM_SETSEL, 0, 0);    
629     ME_InternalDeleteText(editor, 0, ME_GetTextLength(editor));
630     from = to = 0;
631     ME_ClearTempStyle(editor);
632     /* FIXME restore default paragraph formatting ! */
633   }
634
635
636   /* Back up undo mode to a local variable */
637   nUndoMode = editor->nUndoMode;
638
639   /* Only create an undo if SFF_SELECTION is set */
640   if (!(format & SFF_SELECTION))
641     editor->nUndoMode = umIgnore;
642
643   inStream.editstream = stream;
644   inStream.editstream->dwError = 0;
645   inStream.dwSize = 0;
646   inStream.dwUsed = 0;
647
648   if (format & SF_RTF)
649   {
650     /* Check if it's really RTF, and if it is not, use plain text */
651     ME_StreamInFill(&inStream);
652     if (!inStream.editstream->dwError)
653     {
654       if (strncmp(inStream.buffer, "{\\rtf", 5) && strncmp(inStream.buffer, "{\\urtf", 6))
655       {
656         format &= ~SF_RTF;
657         format |= SF_TEXT;
658       }
659     }
660   }
661
662   if (!inStream.editstream->dwError)
663   {
664     if (format & SF_RTF) {
665       /* setup the RTF parser */
666       memset(&parser, 0, sizeof parser);
667       RTFSetEditStream(&parser, &inStream);
668       parser.rtfFormat = format&(SF_TEXT|SF_RTF);
669       parser.hwndEdit = editor->hWnd;
670       parser.editor = editor;
671       parser.style = style;
672       WriterInit(&parser);
673       RTFInit(&parser);
674       RTFSetReadHook(&parser, ME_RTFReadHook);
675       BeginFile(&parser);
676   
677       /* do the parsing */
678       RTFRead(&parser);
679       RTFFlushOutputBuffer(&parser);
680       RTFDestroy(&parser);
681
682       style = parser.style;
683     }
684     else if (format & SF_TEXT)
685       ME_StreamInText(editor, format, &inStream, style);
686     else
687       ERR("EM_STREAMIN without SF_TEXT or SF_RTF\n");
688     ME_GetSelection(editor, &to, &to2);
689     /* put the cursor at the top */
690     if (!(format & SFF_SELECTION))
691       SendMessageA(editor->hWnd, EM_SETSEL, 0, 0);
692   }
693
694   /* Restore saved undo mode */
695   editor->nUndoMode = nUndoMode;
696
697   /* even if we didn't add an undo, we need to commit anything on the stack */
698   ME_CommitUndo(editor);
699
700   /* If SFF_SELECTION isn't set, delete any undos from before we started too */
701   if (!(format & SFF_SELECTION))
702     ME_EmptyUndoStack(editor);
703
704   ME_ReleaseStyle(style);
705   editor->nEventMask = nEventMask;
706   if (editor->bRedraw)
707   {
708     ME_UpdateRepaint(editor);
709   }
710   if (!(format & SFF_SELECTION)) {
711     ME_ClearTempStyle(editor);
712   }
713   ME_MoveCaret(editor);
714   ME_SendSelChange(editor);
715   ME_SendRequestResize(editor, FALSE);
716
717   return 0;
718 }
719
720
721 typedef struct tagME_RTFStringStreamStruct
722 {
723   char *string;
724   int pos;
725   int length;
726 } ME_RTFStringStreamStruct;
727
728 static DWORD CALLBACK ME_ReadFromRTFString(DWORD_PTR dwCookie, LPBYTE lpBuff, LONG cb, LONG *pcb)
729 {
730   ME_RTFStringStreamStruct *pStruct = (ME_RTFStringStreamStruct *)dwCookie;
731   int count;
732
733   count = min(cb, pStruct->length - pStruct->pos);
734   memmove(lpBuff, pStruct->string + pStruct->pos, count);
735   pStruct->pos += count;
736   *pcb = count;
737   return 0;
738 }
739
740 static void
741 ME_StreamInRTFString(ME_TextEditor *editor, BOOL selection, char *string)
742 {
743   EDITSTREAM es;
744   ME_RTFStringStreamStruct data;
745
746   data.string = string;
747   data.length = strlen(string);
748   data.pos = 0;
749   es.dwCookie = (DWORD)&data;
750   es.pfnCallback = ME_ReadFromRTFString;
751   ME_StreamIn(editor, SF_RTF | (selection ? SFF_SELECTION : 0), &es);
752 }
753
754
755 ME_DisplayItem *
756 ME_FindItemAtOffset(ME_TextEditor *editor, ME_DIType nItemType, int nOffset, int *nItemOffset)
757 {
758   ME_DisplayItem *item = ME_FindItemFwd(editor->pBuffer->pFirst, diParagraph);
759   
760   while (item && item->member.para.next_para->member.para.nCharOfs <= nOffset)
761     item = ME_FindItemFwd(item, diParagraph);
762
763   if (!item)
764     return item;
765
766   nOffset -= item->member.para.nCharOfs;
767   if (nItemType == diParagraph) {
768     if (nItemOffset)
769       *nItemOffset = nOffset;
770     return item;
771   }
772   
773   do {
774     item = ME_FindItemFwd(item, diRun);
775   } while (item && (item->member.run.nCharOfs + ME_StrLen(item->member.run.strText) <= nOffset));
776   if (item) {
777     nOffset -= item->member.run.nCharOfs;
778     if (nItemOffset)
779       *nItemOffset = nOffset;
780   }
781   return item;
782 }
783
784
785 static int
786 ME_FindText(ME_TextEditor *editor, DWORD flags, CHARRANGE *chrg, const WCHAR *text, CHARRANGE *chrgText)
787 {
788   const int nLen = lstrlenW(text);
789   const int nTextLen = ME_GetTextLength(editor);
790   int nStart, nEnd;
791   int nMin, nMax;
792   ME_DisplayItem *item;
793   ME_DisplayItem *para;
794   WCHAR wLastChar = ' ';
795
796   TRACE("flags==0x%08x, chrg->cpMin==%d, chrg->cpMax==%d text==%s\n",
797         flags, chrg->cpMin, chrg->cpMax, debugstr_w(text));
798   
799   if (flags & ~(FR_DOWN | FR_MATCHCASE | FR_WHOLEWORD))
800     FIXME("Flags 0x%08x not implemented\n",
801         flags & ~(FR_DOWN | FR_MATCHCASE | FR_WHOLEWORD));
802
803   nMin = chrg->cpMin;
804   if (chrg->cpMax == -1)
805     nMax = nTextLen;
806   else
807     nMax = chrg->cpMax > nTextLen ? nTextLen : chrg->cpMax;
808   
809   /* when searching up, if cpMin < cpMax, then instead of searching
810    * on [cpMin,cpMax], we search on [0,cpMin], otherwise, search on
811    * [cpMax, cpMin]. The exception is when cpMax is -1, in which
812    * case, it is always bigger than cpMin.
813    */
814   if (!(flags & FR_DOWN))
815   {
816     int nSwap = nMax;
817
818     nMax = nMin > nTextLen ? nTextLen : nMin;
819     if (nMin < nSwap || chrg->cpMax == -1)
820       nMin = 0;
821     else
822       nMin = nSwap;
823   }
824
825   if (!nLen || nMin < 0 || nMax < 0 || nMax < nMin)
826   {
827     if (chrgText)
828       chrgText->cpMin = chrgText->cpMax = -1;
829     return -1;
830   }
831  
832   if (flags & FR_DOWN) /* Forward search */
833   {
834     /* If possible, find the character before where the search starts */
835     if ((flags & FR_WHOLEWORD) && nMin)
836     {
837       nStart = nMin - 1;
838       item = ME_FindItemAtOffset(editor, diRun, nStart, &nStart);
839       if (!item)
840       {
841         if (chrgText)
842           chrgText->cpMin = chrgText->cpMax = -1;
843         return -1;
844       }
845       wLastChar = item->member.run.strText->szData[nStart];
846     }
847
848     nStart = nMin;
849     item = ME_FindItemAtOffset(editor, diRun, nStart, &nStart);
850     if (!item)
851     {
852       if (chrgText)
853         chrgText->cpMin = chrgText->cpMax = -1;
854       return -1;
855     }
856
857     para = ME_GetParagraph(item);
858     while (item
859            && para->member.para.nCharOfs + item->member.run.nCharOfs + nStart + nLen <= nMax)
860     {
861       ME_DisplayItem *pCurItem = item;
862       int nCurStart = nStart;
863       int nMatched = 0;
864     
865       while (pCurItem && ME_CharCompare(pCurItem->member.run.strText->szData[nCurStart + nMatched], text[nMatched], (flags & FR_MATCHCASE)))
866       {
867         if ((flags & FR_WHOLEWORD) && isalnumW(wLastChar))
868           break;
869
870         nMatched++;
871         if (nMatched == nLen)
872         {
873           ME_DisplayItem *pNextItem = pCurItem;
874           int nNextStart = nCurStart;
875           WCHAR wNextChar;
876
877           /* Check to see if next character is a whitespace */
878           if (flags & FR_WHOLEWORD)
879           {
880             if (nCurStart + nMatched == ME_StrLen(pCurItem->member.run.strText))
881             {
882               pNextItem = ME_FindItemFwd(pCurItem, diRun);
883               nNextStart = -nMatched;
884             }
885
886             if (pNextItem)
887               wNextChar = pNextItem->member.run.strText->szData[nNextStart + nMatched];
888             else
889               wNextChar = ' ';
890
891             if (isalnumW(wNextChar))
892               break;
893           }
894
895           nStart += para->member.para.nCharOfs + pCurItem->member.run.nCharOfs;
896           if (chrgText)
897           {
898             chrgText->cpMin = nStart;
899             chrgText->cpMax = nStart + nLen;
900           }
901           TRACE("found at %d-%d\n", nStart, nStart + nLen);
902           return nStart;
903         }
904         if (nCurStart + nMatched == ME_StrLen(pCurItem->member.run.strText))
905         {
906           pCurItem = ME_FindItemFwd(pCurItem, diRun);
907           para = ME_GetParagraph(pCurItem);
908           nCurStart = -nMatched;
909         }
910       }
911       if (pCurItem)
912         wLastChar = pCurItem->member.run.strText->szData[nCurStart + nMatched];
913       else
914         wLastChar = ' ';
915
916       nStart++;
917       if (nStart == ME_StrLen(item->member.run.strText))
918       {
919         item = ME_FindItemFwd(item, diRun);
920         para = ME_GetParagraph(item);
921         nStart = 0;
922       }
923     }
924   }
925   else /* Backward search */
926   {
927     /* If possible, find the character after where the search ends */
928     if ((flags & FR_WHOLEWORD) && nMax < nTextLen - 1)
929     {
930       nEnd = nMax + 1;
931       item = ME_FindItemAtOffset(editor, diRun, nEnd, &nEnd);
932       if (!item)
933       {
934         if (chrgText)
935           chrgText->cpMin = chrgText->cpMax = -1;
936         return -1;
937       }
938       wLastChar = item->member.run.strText->szData[nEnd];
939     }
940
941     nEnd = nMax;
942     item = ME_FindItemAtOffset(editor, diRun, nEnd, &nEnd);
943     if (!item)
944     {
945       if (chrgText)
946         chrgText->cpMin = chrgText->cpMax = -1;
947       return -1;
948     }
949     
950     para = ME_GetParagraph(item);
951     
952     while (item
953            && para->member.para.nCharOfs + item->member.run.nCharOfs + nEnd - nLen >= nMin)
954     {
955       ME_DisplayItem *pCurItem = item;
956       int nCurEnd = nEnd;
957       int nMatched = 0;
958       
959       if (nCurEnd - nMatched == 0)
960       {
961         pCurItem = ME_FindItemBack(pCurItem, diRun);
962         para = ME_GetParagraph(pCurItem);
963         nCurEnd = ME_StrLen(pCurItem->member.run.strText) + nMatched;
964       }
965       
966       while (pCurItem && ME_CharCompare(pCurItem->member.run.strText->szData[nCurEnd - nMatched - 1], text[nLen - nMatched - 1], (flags & FR_MATCHCASE)))
967       {
968         if ((flags & FR_WHOLEWORD) && isalnumW(wLastChar))
969           break;
970
971         nMatched++;
972         if (nMatched == nLen)
973         {
974           ME_DisplayItem *pPrevItem = pCurItem;
975           int nPrevEnd = nCurEnd;
976           WCHAR wPrevChar;
977
978           /* Check to see if previous character is a whitespace */
979           if (flags & FR_WHOLEWORD)
980           {
981             if (nPrevEnd - nMatched == 0)
982             {
983               pPrevItem = ME_FindItemBack(pCurItem, diRun);
984               if (pPrevItem)
985                 nPrevEnd = ME_StrLen(pPrevItem->member.run.strText) + nMatched;
986             }
987
988             if (pPrevItem)
989               wPrevChar = pPrevItem->member.run.strText->szData[nPrevEnd - nMatched - 1];
990             else
991               wPrevChar = ' ';
992
993             if (isalnumW(wPrevChar))
994               break;
995           }
996
997           nStart = para->member.para.nCharOfs + pCurItem->member.run.nCharOfs + nCurEnd - nMatched;
998           if (chrgText)
999           {
1000             chrgText->cpMin = nStart;
1001             chrgText->cpMax = nStart + nLen;
1002           }
1003           TRACE("found at %d-%d\n", nStart, nStart + nLen);
1004           return nStart;
1005         }
1006         if (nCurEnd - nMatched == 0)
1007         {
1008           pCurItem = ME_FindItemBack(pCurItem, diRun);
1009           /* Don't care about pCurItem becoming NULL here; it's already taken
1010            * care of in the exterior loop condition */
1011           para = ME_GetParagraph(pCurItem);
1012           nCurEnd = ME_StrLen(pCurItem->member.run.strText) + nMatched;
1013         }
1014       }
1015       if (pCurItem)
1016         wLastChar = pCurItem->member.run.strText->szData[nCurEnd - nMatched - 1];
1017       else
1018         wLastChar = ' ';
1019
1020       nEnd--;
1021       if (nEnd < 0)
1022       {
1023         item = ME_FindItemBack(item, diRun);
1024         para = ME_GetParagraph(item);
1025         nEnd = ME_StrLen(item->member.run.strText);
1026       }
1027     }
1028   }
1029   TRACE("not found\n");
1030   if (chrgText)
1031     chrgText->cpMin = chrgText->cpMax = -1;
1032   return -1;
1033 }
1034
1035
1036 static BOOL
1037 ME_KeyDown(ME_TextEditor *editor, WORD nKey)
1038 {
1039   BOOL ctrl_is_down = GetKeyState(VK_CONTROL) & 0x8000;
1040   BOOL shift_is_down = GetKeyState(VK_SHIFT) & 0x8000;
1041   
1042   switch (nKey)
1043   {
1044     case VK_LEFT:
1045     case VK_RIGHT:
1046     case VK_UP:
1047     case VK_DOWN:
1048     case VK_HOME:
1049     case VK_END:
1050     case VK_PRIOR:
1051     case VK_NEXT:
1052       ME_ArrowKey(editor, nKey, shift_is_down, ctrl_is_down);
1053       return TRUE;
1054     case VK_BACK:
1055     case VK_DELETE:
1056       /* FIXME backspace and delete aren't the same, they act different wrt paragraph style of the merged paragraph */
1057       if (GetWindowLongW(editor->hWnd, GWL_STYLE) & ES_READONLY)
1058         return FALSE;
1059       if (ME_IsSelection(editor))
1060         ME_DeleteSelection(editor);
1061       else if (nKey == VK_DELETE || ME_ArrowKey(editor, VK_LEFT, FALSE, FALSE))
1062         ME_DeleteTextAtCursor(editor, 1, 1);
1063       else
1064         return TRUE;
1065       ME_CommitUndo(editor);
1066       ME_UpdateRepaint(editor);
1067       ME_SendRequestResize(editor, FALSE);
1068       return TRUE;
1069
1070     default:
1071       if (ctrl_is_down)
1072       {
1073         if (nKey == 'W')
1074         {
1075           CHARFORMAT2W chf;
1076           char buf[2048];
1077           chf.cbSize = sizeof(chf);
1078           
1079           ME_GetSelectionCharFormat(editor, &chf);
1080           ME_DumpStyleToBuf(&chf, buf);
1081           MessageBoxA(NULL, buf, "Style dump", MB_OK);
1082         }
1083         if (nKey == 'Q')
1084         {
1085           ME_CheckCharOffsets(editor);
1086         }
1087       }
1088   }
1089   return FALSE;
1090 }
1091
1092 static BOOL ME_ShowContextMenu(ME_TextEditor *editor, int x, int y)
1093 {
1094   CHARRANGE selrange;
1095   HMENU menu;
1096   int seltype = 0;
1097   if(!editor->lpOleCallback)
1098     return FALSE;
1099   ME_GetSelection(editor, (int *)&selrange.cpMin, (int *)&selrange.cpMax);
1100   if(selrange.cpMin == selrange.cpMax)
1101     seltype |= SEL_EMPTY;
1102   else
1103   {
1104     /* FIXME: Handle objects */
1105     seltype |= SEL_TEXT;
1106     if(selrange.cpMax-selrange.cpMin > 1)
1107       seltype |= SEL_MULTICHAR;
1108   }
1109   if(SUCCEEDED(IRichEditOleCallback_GetContextMenu(editor->lpOleCallback, seltype, NULL, &selrange, &menu)))
1110   {
1111     TrackPopupMenu(menu, TPM_LEFTALIGN | TPM_RIGHTBUTTON, x, y, 0, GetParent(editor->hWnd), NULL);
1112     DestroyMenu(menu);
1113   }
1114   return TRUE;
1115 }
1116
1117 ME_TextEditor *ME_MakeEditor(HWND hWnd) {
1118   ME_TextEditor *ed = ALLOC_OBJ(ME_TextEditor);
1119   HDC hDC;
1120   int i;
1121   ed->hWnd = hWnd;
1122   ed->bEmulateVersion10 = FALSE;
1123   ed->pBuffer = ME_MakeText();
1124   hDC = GetDC(hWnd);
1125   ME_MakeFirstParagraph(hDC, ed->pBuffer);
1126   ReleaseDC(hWnd, hDC);
1127   ed->bCaretShown = FALSE;
1128   ed->nCursors = 2;
1129   ed->pCursors = ALLOC_N_OBJ(ME_Cursor, ed->nCursors);
1130   ed->pCursors[0].pRun = ME_FindItemFwd(ed->pBuffer->pFirst, diRun);
1131   ed->pCursors[0].nOffset = 0;
1132   ed->pCursors[1].pRun = ME_FindItemFwd(ed->pBuffer->pFirst, diRun);
1133   ed->pCursors[1].nOffset = 0;
1134   ed->nLastTotalLength = ed->nTotalLength = 0;
1135   ed->nUDArrowX = -1;
1136   ed->nSequence = 0;
1137   ed->rgbBackColor = -1;
1138   ed->hbrBackground = GetSysColorBrush(COLOR_WINDOW);
1139   ed->bCaretAtEnd = FALSE;
1140   ed->nEventMask = 0;
1141   ed->nModifyStep = 0;
1142   ed->nTextLimit = TEXT_LIMIT_DEFAULT;
1143   ed->pUndoStack = ed->pRedoStack = ed->pUndoStackBottom = NULL;
1144   ed->nUndoStackSize = 0;
1145   ed->nUndoLimit = STACK_SIZE_DEFAULT;
1146   ed->nUndoMode = umAddToUndo;
1147   ed->nParagraphs = 1;
1148   ed->nLastSelStart = ed->nLastSelEnd = 0;
1149   ed->pLastSelStartPara = ed->pLastSelEndPara = ME_FindItemFwd(ed->pBuffer->pFirst, diParagraph);
1150   ed->nZoomNumerator = ed->nZoomDenominator = 0;
1151   ed->bRedraw = TRUE;
1152   ed->bHideSelection = FALSE;
1153   ed->nInvalidOfs = -1;
1154   ed->pfnWordBreak = NULL;
1155   ed->lpOleCallback = NULL;
1156   ed->mode = TM_RICHTEXT | TM_MULTILEVELUNDO | TM_MULTICODEPAGE;
1157   ed->AutoURLDetect_bEnable = FALSE;
1158   GetClientRect(hWnd, &ed->rcFormat);
1159   for (i=0; i<HFONT_CACHE_SIZE; i++)
1160   {
1161     ed->pFontCache[i].nRefs = 0;
1162     ed->pFontCache[i].nAge = 0;
1163     ed->pFontCache[i].hFont = NULL;
1164   }
1165   
1166   ME_CheckCharOffsets(ed);
1167   
1168   if (GetWindowLongW(hWnd, GWL_STYLE) & ES_PASSWORD)
1169     ed->cPasswordMask = '*';
1170   else
1171     ed->cPasswordMask = 0;
1172   
1173   return ed;
1174 }
1175
1176 typedef struct tagME_GlobalDestStruct
1177 {
1178   HGLOBAL hData;
1179   int nLength;
1180 } ME_GlobalDestStruct;
1181
1182 static DWORD CALLBACK ME_ReadFromHGLOBALUnicode(DWORD_PTR dwCookie, LPBYTE lpBuff, LONG cb, LONG *pcb)
1183 {
1184   ME_GlobalDestStruct *pData = (ME_GlobalDestStruct *)dwCookie;
1185   int i;
1186   WORD *pSrc, *pDest;
1187   
1188   cb = cb >> 1;
1189   pDest = (WORD *)lpBuff;
1190   pSrc = (WORD *)GlobalLock(pData->hData);
1191   for (i = 0; i<cb && pSrc[pData->nLength+i]; i++) {
1192     pDest[i] = pSrc[pData->nLength+i];
1193   }    
1194   pData->nLength += i;
1195   *pcb = 2*i;
1196   GlobalUnlock(pData->hData);
1197   return 0;
1198 }
1199
1200 static DWORD CALLBACK ME_ReadFromHGLOBALRTF(DWORD_PTR dwCookie, LPBYTE lpBuff, LONG cb, LONG *pcb)
1201 {
1202   ME_GlobalDestStruct *pData = (ME_GlobalDestStruct *)dwCookie;
1203   int i;
1204   BYTE *pSrc, *pDest;
1205   
1206   pDest = lpBuff;
1207   pSrc = (BYTE *)GlobalLock(pData->hData);
1208   for (i = 0; i<cb && pSrc[pData->nLength+i]; i++) {
1209     pDest[i] = pSrc[pData->nLength+i];
1210   }    
1211   pData->nLength += i;
1212   *pcb = i;
1213   GlobalUnlock(pData->hData);
1214   return 0;
1215 }
1216
1217
1218 void ME_DestroyEditor(ME_TextEditor *editor)
1219 {
1220   ME_DisplayItem *pFirst = editor->pBuffer->pFirst;
1221   ME_DisplayItem *p = pFirst, *pNext = NULL;
1222   int i;
1223
1224   ME_ClearTempStyle(editor);
1225   ME_EmptyUndoStack(editor);
1226   while(p) {
1227     pNext = p->next;
1228     ME_DestroyDisplayItem(p);
1229     p = pNext;
1230   }
1231   ME_ReleaseStyle(editor->pBuffer->pDefaultStyle);
1232   for (i=0; i<HFONT_CACHE_SIZE; i++)
1233   {
1234     if (editor->pFontCache[i].hFont)
1235       DeleteObject(editor->pFontCache[i].hFont);
1236   }
1237   DeleteObject(editor->hbrBackground);
1238   if(editor->lpOleCallback)
1239     IUnknown_Release(editor->lpOleCallback);
1240
1241   FREE_OBJ(editor->pBuffer);
1242   FREE_OBJ(editor->pCursors);
1243
1244   FREE_OBJ(editor);
1245 }
1246
1247 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
1248 {
1249     TRACE("\n");
1250     switch (fdwReason)
1251     {
1252     case DLL_PROCESS_ATTACH:
1253       DisableThreadLibraryCalls(hinstDLL);
1254       me_heap = HeapCreate (0, 0x10000, 0);
1255       if (!ME_RegisterEditorClass(hinstDLL)) return FALSE;
1256       LookupInit();
1257       break;
1258
1259     case DLL_PROCESS_DETACH:
1260       UnregisterClassW(RichEdit20W, 0);
1261       UnregisterClassW(RichEdit50W, 0);
1262       UnregisterClassA("RichEdit20A", 0);
1263       UnregisterClassA("RichEdit50A", 0);
1264       if (ME_ListBoxRegistered)
1265           UnregisterClassW(REListBox20W, 0);
1266       if (ME_ComboBoxRegistered)
1267           UnregisterClassW(REComboBox20W, 0);
1268       LookupCleanup();
1269       HeapDestroy (me_heap);
1270       me_heap = NULL;
1271       break;
1272     }
1273     return TRUE;
1274 }
1275
1276
1277 #define UNSUPPORTED_MSG(e) \
1278   case e: \
1279     FIXME(#e ": stub\n"); \
1280     return DefWindowProcW(hWnd, msg, wParam, lParam);
1281
1282 static const char * const edit_messages[] = {
1283   "EM_GETSEL",
1284   "EM_SETSEL",
1285   "EM_GETRECT",
1286   "EM_SETRECT",
1287   "EM_SETRECTNP",
1288   "EM_SCROLL",
1289   "EM_LINESCROLL",
1290   "EM_SCROLLCARET",
1291   "EM_GETMODIFY",
1292   "EM_SETMODIFY",
1293   "EM_GETLINECOUNT",
1294   "EM_LINEINDEX",
1295   "EM_SETHANDLE",
1296   "EM_GETHANDLE",
1297   "EM_GETTHUMB",
1298   "EM_UNKNOWN_BF",
1299   "EM_UNKNOWN_C0",
1300   "EM_LINELENGTH",
1301   "EM_REPLACESEL",
1302   "EM_UNKNOWN_C3",
1303   "EM_GETLINE",
1304   "EM_LIMITTEXT",
1305   "EM_CANUNDO",
1306   "EM_UNDO",
1307   "EM_FMTLINES",
1308   "EM_LINEFROMCHAR",
1309   "EM_UNKNOWN_CA",
1310   "EM_SETTABSTOPS",
1311   "EM_SETPASSWORDCHAR",
1312   "EM_EMPTYUNDOBUFFER",
1313   "EM_GETFIRSTVISIBLELINE",
1314   "EM_SETREADONLY",
1315   "EM_SETWORDBREAKPROC",
1316   "EM_GETWORDBREAKPROC",
1317   "EM_GETPASSWORDCHAR",
1318   "EM_SETMARGINS",
1319   "EM_GETMARGINS",
1320   "EM_GETLIMITTEXT",
1321   "EM_POSFROMCHAR",
1322   "EM_CHARFROMPOS"
1323 };
1324
1325 static const char * const richedit_messages[] = {
1326   "EM_CANPASTE",
1327   "EM_DISPLAYBAND",
1328   "EM_EXGETSEL",
1329   "EM_EXLIMITTEXT",
1330   "EM_EXLINEFROMCHAR",
1331   "EM_EXSETSEL",
1332   "EM_FINDTEXT",
1333   "EM_FORMATRANGE",
1334   "EM_GETCHARFORMAT",
1335   "EM_GETEVENTMASK",
1336   "EM_GETOLEINTERFACE",
1337   "EM_GETPARAFORMAT",
1338   "EM_GETSELTEXT",
1339   "EM_HIDESELECTION", 
1340   "EM_PASTESPECIAL",
1341   "EM_REQUESTRESIZE",
1342   "EM_SELECTIONTYPE",
1343   "EM_SETBKGNDCOLOR",
1344   "EM_SETCHARFORMAT",
1345   "EM_SETEVENTMASK",
1346   "EM_SETOLECALLBACK",
1347   "EM_SETPARAFORMAT",
1348   "EM_SETTARGETDEVICE",
1349   "EM_STREAMIN",
1350   "EM_STREAMOUT",
1351   "EM_GETTEXTRANGE",
1352   "EM_FINDWORDBREAK",
1353   "EM_SETOPTIONS",
1354   "EM_GETOPTIONS",
1355   "EM_FINDTEXTEX",
1356   "EM_GETWORDBREAKPROCEX",
1357   "EM_SETWORDBREAKPROCEX",
1358   "EM_SETUNDOLIMIT",
1359   "EM_UNKNOWN_USER_83",
1360   "EM_REDO",
1361   "EM_CANREDO",
1362   "EM_GETUNDONAME",
1363   "EM_GETREDONAME",
1364   "EM_STOPGROUPTYPING",
1365   "EM_SETTEXTMODE",
1366   "EM_GETTEXTMODE",
1367   "EM_AUTOURLDETECT",
1368   "EM_GETAUTOURLDETECT",
1369   "EM_SETPALETTE",
1370   "EM_GETTEXTEX",
1371   "EM_GETTEXTLENGTHEX",
1372   "EM_SHOWSCROLLBAR",
1373   "EM_SETTEXTEX",
1374   "EM_UNKNOWN_USER_98",
1375   "EM_UNKNOWN_USER_99",
1376   "EM_SETPUNCTUATION",
1377   "EM_GETPUNCTUATION",
1378   "EM_SETWORDWRAPMODE",
1379   "EM_GETWORDWRAPMODE",
1380   "EM_SETIMECOLOR",
1381   "EM_GETIMECOLOR",
1382   "EM_SETIMEOPTIONS",
1383   "EM_GETIMEOPTIONS",
1384   "EM_CONVPOSITION",
1385   "EM_UNKNOWN_USER_109",
1386   "EM_UNKNOWN_USER_110",
1387   "EM_UNKNOWN_USER_111",
1388   "EM_UNKNOWN_USER_112",
1389   "EM_UNKNOWN_USER_113",
1390   "EM_UNKNOWN_USER_114",
1391   "EM_UNKNOWN_USER_115",
1392   "EM_UNKNOWN_USER_116",
1393   "EM_UNKNOWN_USER_117",
1394   "EM_UNKNOWN_USER_118",
1395   "EM_UNKNOWN_USER_119",
1396   "EM_SETLANGOPTIONS",
1397   "EM_GETLANGOPTIONS",
1398   "EM_GETIMECOMPMODE",
1399   "EM_FINDTEXTW",
1400   "EM_FINDTEXTEXW",
1401   "EM_RECONVERSION",
1402   "EM_SETIMEMODEBIAS",
1403   "EM_GETIMEMODEBIAS"
1404 };
1405
1406 static const char *
1407 get_msg_name(UINT msg)
1408 {
1409   if (msg >= EM_GETSEL && msg <= EM_CHARFROMPOS)
1410     return edit_messages[msg - EM_GETSEL];
1411   if (msg >= EM_CANPASTE && msg <= EM_GETIMEMODEBIAS)
1412     return richedit_messages[msg - EM_CANPASTE];
1413   return "";
1414 }
1415
1416 static LRESULT RichEditWndProc_common(HWND hWnd, UINT msg, WPARAM wParam,
1417                                       LPARAM lParam, BOOL unicode)
1418 {
1419   ME_TextEditor *editor = (ME_TextEditor *)GetWindowLongPtrW(hWnd, 0);
1420   
1421   TRACE("hwnd %p msg %04x (%s) %x %lx, unicode %d\n",
1422         hWnd, msg, get_msg_name(msg), wParam, lParam, unicode);
1423   
1424   if (!editor && msg != WM_NCCREATE && msg != WM_NCDESTROY) {
1425     ERR("called with invalid hWnd %p - application bug?\n", hWnd);
1426     return 0; 
1427   }
1428
1429   switch(msg) {
1430   
1431   UNSUPPORTED_MSG(EM_DISPLAYBAND)
1432   UNSUPPORTED_MSG(EM_FINDWORDBREAK)
1433   UNSUPPORTED_MSG(EM_FMTLINES)
1434   UNSUPPORTED_MSG(EM_FORMATRANGE)
1435   UNSUPPORTED_MSG(EM_GETBIDIOPTIONS)
1436   UNSUPPORTED_MSG(EM_GETEDITSTYLE)
1437   UNSUPPORTED_MSG(EM_GETIMECOMPMODE)
1438   /* UNSUPPORTED_MSG(EM_GETIMESTATUS) missing in Wine headers */
1439   UNSUPPORTED_MSG(EM_GETLANGOPTIONS)
1440   /* UNSUPPORTED_MSG(EM_GETOLEINTERFACE) separate stub */
1441   UNSUPPORTED_MSG(EM_GETREDONAME)
1442   UNSUPPORTED_MSG(EM_GETTEXTMODE)
1443   UNSUPPORTED_MSG(EM_GETTYPOGRAPHYOPTIONS)
1444   UNSUPPORTED_MSG(EM_GETUNDONAME)
1445   UNSUPPORTED_MSG(EM_GETWORDBREAKPROCEX)
1446   UNSUPPORTED_MSG(EM_PASTESPECIAL)
1447   UNSUPPORTED_MSG(EM_SELECTIONTYPE)
1448   UNSUPPORTED_MSG(EM_SETBIDIOPTIONS)
1449   UNSUPPORTED_MSG(EM_SETEDITSTYLE)
1450   UNSUPPORTED_MSG(EM_SETFONTSIZE)
1451   UNSUPPORTED_MSG(EM_SETLANGOPTIONS)
1452   UNSUPPORTED_MSG(EM_SETPALETTE)
1453   UNSUPPORTED_MSG(EM_SETTABSTOPS)
1454   UNSUPPORTED_MSG(EM_SETTARGETDEVICE)
1455   UNSUPPORTED_MSG(EM_SETTYPOGRAPHYOPTIONS)
1456   UNSUPPORTED_MSG(EM_SETWORDBREAKPROCEX)
1457   UNSUPPORTED_MSG(WM_STYLECHANGING)
1458   UNSUPPORTED_MSG(WM_STYLECHANGED)
1459 /*  UNSUPPORTED_MSG(WM_UNICHAR) FIXME missing in Wine headers */
1460     
1461 /* Messages specific to Richedit controls */
1462   
1463   case EM_STREAMIN:
1464    return ME_StreamIn(editor, wParam, (EDITSTREAM*)lParam);
1465   case EM_STREAMOUT:
1466    return ME_StreamOut(editor, wParam, (EDITSTREAM *)lParam);
1467   case WM_GETDLGCODE:
1468   {
1469     UINT code = DLGC_WANTCHARS|DLGC_WANTARROWS;
1470     if(lParam && (((LPMSG)lParam)->message == WM_KEYDOWN))
1471     {
1472       int vk = (int)((LPMSG)lParam)->wParam;
1473       /* if style says we want return key */
1474       if((vk == VK_RETURN) && (GetWindowLongW(hWnd, GWL_STYLE) & ES_WANTRETURN))
1475       {
1476         code |= DLGC_WANTMESSAGE;
1477       }
1478       /* we always handle ctrl-tab */
1479       if((vk == VK_TAB) && (GetKeyState(VK_CONTROL) & 0x8000))
1480       {
1481         code |= DLGC_WANTMESSAGE;
1482       }
1483     }
1484     return code;
1485   }
1486   case WM_NCCREATE:
1487   {
1488     CREATESTRUCTW *pcs = (CREATESTRUCTW *)lParam;
1489     TRACE("WM_NCCREATE: style 0x%08x\n", pcs->style);
1490     editor = ME_MakeEditor(hWnd);
1491     SetWindowLongPtrW(hWnd, 0, (LONG_PTR)editor);
1492     return TRUE;
1493   }
1494   case EM_EMPTYUNDOBUFFER:
1495     ME_EmptyUndoStack(editor);
1496     return 0;
1497   case EM_GETSEL:
1498   {
1499     /* Note: wParam/lParam can be NULL */
1500     UINT from, to;
1501     PUINT pfrom = wParam ? (PUINT)wParam : &from;
1502     PUINT pto = lParam ? (PUINT)lParam : &to;
1503     ME_GetSelection(editor, (int *)pfrom, (int *)pto);
1504     if ((*pfrom|*pto) & 0xFFFF0000)
1505       return -1;
1506     return MAKELONG(*pfrom,*pto);
1507   }
1508   case EM_EXGETSEL:
1509   {
1510     CHARRANGE *pRange = (CHARRANGE *)lParam;
1511     ME_GetSelection(editor, (int *)&pRange->cpMin, (int *)&pRange->cpMax);
1512     TRACE("EM_EXGETSEL = (%d,%d)\n", pRange->cpMin, pRange->cpMax);
1513     return 0;
1514   }
1515   case EM_SETUNDOLIMIT:
1516   {
1517     if ((int)wParam < 0)
1518       editor->nUndoLimit = STACK_SIZE_DEFAULT;
1519     else
1520       editor->nUndoLimit = min(wParam, STACK_SIZE_MAX);
1521     /* Setting a max stack size keeps wine from getting killed 
1522       for hogging memory. Windows allocates all this memory at once, so
1523       no program would realistically set a value above our maxiumum. */  
1524     return editor->nUndoLimit;
1525   }
1526   case EM_CANUNDO:
1527     return editor->pUndoStack != NULL;
1528   case EM_CANREDO:
1529     return editor->pRedoStack != NULL;
1530   case WM_UNDO: /* FIXME: actually not the same */
1531   case EM_UNDO:
1532     ME_Undo(editor);
1533     return 0;
1534   case EM_REDO:
1535     ME_Redo(editor);
1536     return 0;
1537   case EM_GETOPTIONS:
1538   {
1539     /* these flags are equivalent to the ES_* counterparts */
1540     DWORD mask = ECO_VERTICAL | ECO_AUTOHSCROLL | ECO_AUTOVSCROLL |
1541                  ECO_NOHIDESEL | ECO_READONLY | ECO_WANTRETURN;
1542     DWORD settings = GetWindowLongW(hWnd, GWL_STYLE) & mask;
1543
1544     return settings;
1545   }
1546   case EM_SETOPTIONS:
1547   {
1548     /* these flags are equivalent to ES_* counterparts                      
1549      * ECO_READONLY is already implemented in the code, only requires 
1550      * setting the bit to work                                        
1551      */
1552     DWORD mask = ECO_VERTICAL | ECO_AUTOHSCROLL | ECO_AUTOVSCROLL |
1553                  ECO_NOHIDESEL | ECO_READONLY | ECO_WANTRETURN;
1554     DWORD raw = GetWindowLongW(hWnd, GWL_STYLE);
1555     DWORD settings = mask & raw;
1556
1557     switch(wParam)
1558     {
1559       case ECOOP_SET:
1560         settings = lParam;
1561         break;
1562       case ECOOP_OR:
1563         settings |= lParam;
1564         break;
1565       case ECOOP_AND:
1566         settings &= lParam;
1567         break;
1568       case ECOOP_XOR:
1569         settings ^= lParam;
1570     }
1571     SetWindowLongW(hWnd, GWL_STYLE, (raw & ~mask) | (settings & mask));
1572
1573     if (lParam & ECO_AUTOWORDSELECTION)
1574       FIXME("ECO_AUTOWORDSELECTION not implemented yet!\n");
1575     if (lParam & ECO_SELECTIONBAR)
1576       FIXME("ECO_SELECTIONBAR not implemented yet!\n");
1577     if (lParam & ECO_VERTICAL)
1578       FIXME("ECO_VERTICAL not implemented yet!\n");
1579     if (lParam & ECO_AUTOHSCROLL)
1580       FIXME("ECO_AUTOHSCROLL not implemented yet!\n");
1581     if (lParam & ECO_AUTOVSCROLL)
1582       FIXME("ECO_AUTOVSCROLL not implemented yet!\n");
1583     if (lParam & ECO_NOHIDESEL)
1584       FIXME("ECO_NOHIDESEL not implemented yet!\n");
1585     if (lParam & ECO_WANTRETURN)
1586       FIXME("ECO_WANTRETURN not implemented yet!\n");
1587
1588     return settings;
1589   }
1590   case EM_SETSEL:
1591   {
1592     ME_InvalidateSelection(editor);
1593     ME_SetSelection(editor, wParam, lParam);
1594     ME_InvalidateSelection(editor);
1595     ME_SendSelChange(editor);
1596     return 0;
1597   }
1598   case EM_SETSCROLLPOS:
1599   {
1600     POINT *point = (POINT *)lParam;
1601     ME_ScrollAbs(editor, point->y);
1602     return 0;
1603   }
1604   case EM_AUTOURLDETECT:
1605   {
1606     if (wParam==1 || wParam ==0) 
1607     {
1608         editor->AutoURLDetect_bEnable = (BOOL)wParam;
1609         return 0;
1610     }
1611     return E_INVALIDARG;
1612   }
1613   case EM_GETAUTOURLDETECT:
1614   {
1615     return editor->AutoURLDetect_bEnable;
1616   }
1617   case EM_EXSETSEL:
1618   {
1619     int end;
1620     CHARRANGE range = *(CHARRANGE *)lParam;
1621
1622     TRACE("EM_EXSETSEL (%d,%d)\n", range.cpMin, range.cpMax);
1623
1624     ME_InvalidateSelection(editor);
1625     end = ME_SetSelection(editor, range.cpMin, range.cpMax);
1626     ME_InvalidateSelection(editor);
1627     ME_SendSelChange(editor);
1628
1629     return end;
1630   }
1631   case EM_SHOWSCROLLBAR:
1632   {
1633     ShowScrollBar(editor->hWnd, wParam, lParam);
1634     return 0;
1635   }
1636   case EM_SETTEXTEX:
1637   {
1638     LPWSTR wszText;
1639     SETTEXTEX *pStruct = (SETTEXTEX *)wParam;
1640     size_t len;
1641     int from, to;
1642     ME_Style *style;
1643     int oldModify = editor->nModifyStep;
1644
1645     if (!pStruct) return 0;
1646
1647     TRACE("EM_SETTEXTEX - %s, flags %d, cp %d\n",
1648           pStruct->codepage == 1200 ? debugstr_w((LPCWSTR)lParam) : debugstr_a((LPCSTR)lParam),
1649           pStruct->flags, pStruct->codepage);
1650
1651     /* FIXME: make use of pStruct->codepage in the to unicode translation */
1652     wszText = lParam ? ME_ToUnicode(pStruct->codepage == 1200, (void *)lParam) : NULL;
1653     len = wszText ? lstrlenW(wszText) : 0;
1654
1655     /* FIXME: this should support RTF strings too, according to MSDN */
1656     if (pStruct->flags & ST_SELECTION) {
1657       ME_GetSelection(editor, &from, &to);
1658       style = ME_GetSelectionInsertStyle(editor);
1659       ME_InternalDeleteText(editor, from, to - from);
1660       ME_InsertTextFromCursor(editor, 0, wszText, len, style);
1661       ME_ReleaseStyle(style);
1662     }
1663     else {
1664       ME_InternalDeleteText(editor, 0, ME_GetTextLength(editor));
1665       ME_InsertTextFromCursor(editor, 0, wszText, len, editor->pBuffer->pDefaultStyle);
1666       len = 1;
1667     }
1668     ME_CommitUndo(editor);
1669     if (!(pStruct->flags & ST_KEEPUNDO))
1670     {
1671       editor->nModifyStep = oldModify;
1672       ME_EmptyUndoStack(editor);
1673     }
1674     ME_UpdateRepaint(editor);
1675     return len;
1676   }
1677   case EM_SETBKGNDCOLOR:
1678   {
1679     LRESULT lColor = ME_GetBackColor(editor);
1680     if (editor->rgbBackColor != -1)
1681       DeleteObject(editor->hbrBackground);
1682     if (wParam)
1683     {
1684       editor->rgbBackColor = -1;
1685       editor->hbrBackground = GetSysColorBrush(COLOR_WINDOW);
1686     }
1687     else
1688     {
1689       editor->rgbBackColor = lParam;
1690       editor->hbrBackground = CreateSolidBrush(editor->rgbBackColor);
1691     }
1692     if (editor->bRedraw)
1693     {
1694       InvalidateRect(hWnd, NULL, TRUE);
1695       UpdateWindow(hWnd);
1696     }
1697     return lColor;
1698   }
1699   case EM_GETMODIFY:
1700     return editor->nModifyStep == 0 ? 0 : 1;
1701   case EM_SETMODIFY:
1702   {
1703     if (wParam)
1704       editor->nModifyStep = 1;
1705     else
1706       editor->nModifyStep = 0;
1707     
1708     return 0;
1709   }
1710   case EM_SETREADONLY:
1711   {
1712     long nStyle = GetWindowLongW(hWnd, GWL_STYLE);
1713     if (wParam)
1714       nStyle |= ES_READONLY;
1715     else
1716       nStyle &= ~ES_READONLY;
1717     SetWindowLongW(hWnd, GWL_STYLE, nStyle);
1718     return 0;
1719   }
1720   case EM_SETEVENTMASK:
1721   {
1722     DWORD nOldMask = editor->nEventMask;
1723     
1724     editor->nEventMask = lParam;
1725     return nOldMask;
1726   }
1727   case EM_GETEVENTMASK:
1728     return editor->nEventMask;
1729   case EM_SETCHARFORMAT:
1730   {
1731     CHARFORMAT2W buf, *p;
1732     BOOL bRepaint = TRUE;
1733     p = ME_ToCF2W(&buf, (CHARFORMAT2W *)lParam);
1734     if (!wParam || (editor->mode & TM_PLAINTEXT))
1735       ME_SetDefaultCharFormat(editor, p);
1736     else if (wParam == (SCF_WORD | SCF_SELECTION))
1737       FIXME("EM_SETCHARFORMAT: word selection not supported\n");
1738     else if (wParam == SCF_ALL)
1739       ME_SetCharFormat(editor, 0, ME_GetTextLength(editor), p);
1740     else {
1741       int from, to;
1742       ME_GetSelection(editor, &from, &to);
1743       bRepaint = (from != to);
1744       ME_SetSelectionCharFormat(editor, p);
1745     }
1746     editor->nModifyStep = 1;
1747     ME_CommitUndo(editor);
1748     if (bRepaint)
1749       ME_RewrapRepaint(editor);
1750     return 0;
1751   }
1752   case EM_GETCHARFORMAT:
1753   {
1754     CHARFORMAT2W tmp, *dst = (CHARFORMAT2W *)lParam;
1755     if (dst->cbSize != sizeof(CHARFORMATA) &&
1756         dst->cbSize != sizeof(CHARFORMATW) &&
1757         dst->cbSize != sizeof(CHARFORMAT2A) &&
1758         dst->cbSize != sizeof(CHARFORMAT2W))
1759       return 0;
1760     tmp.cbSize = sizeof(tmp);
1761     if (!wParam)
1762       ME_GetDefaultCharFormat(editor, &tmp);
1763     else
1764       ME_GetSelectionCharFormat(editor, &tmp);
1765     ME_CopyToCFAny(dst, &tmp);
1766     return tmp.dwMask;
1767   }
1768   case EM_SETPARAFORMAT:
1769     ME_SetSelectionParaFormat(editor, (PARAFORMAT2 *)lParam);
1770     ME_RewrapRepaint(editor);
1771     ME_CommitUndo(editor);
1772     return 0;
1773   case EM_GETPARAFORMAT:
1774     ME_GetSelectionParaFormat(editor, (PARAFORMAT2 *)lParam);
1775     return 0;
1776   case EM_GETFIRSTVISIBLELINE:
1777   {
1778     ME_DisplayItem *p = editor->pBuffer->pFirst;
1779     int y = ME_GetYScrollPos(editor);
1780     int ypara = 0;
1781     int count = 0;
1782     int ystart, yend;
1783     while(p) {
1784       p = ME_FindItemFwd(p, diStartRowOrParagraphOrEnd);
1785       if (p->type == diTextEnd)
1786         break;
1787       if (p->type == diParagraph) {
1788         ypara = p->member.para.nYPos;
1789         continue;
1790       }
1791       ystart = ypara + p->member.row.nYPos;
1792       yend = ystart + p->member.row.nHeight;
1793       if (y < yend) {
1794         break;
1795       }
1796       count++;
1797     }
1798     return count;
1799   }
1800   case EM_HIDESELECTION:
1801   {
1802      editor->bHideSelection = (wParam != 0);
1803      ME_InvalidateSelection(editor);
1804      return 0;
1805   }
1806   case EM_LINESCROLL:
1807   {
1808     ME_ScrollDown(editor, lParam * 8); /* FIXME follow the original */
1809     return TRUE; /* Should return false if a single line richedit control */
1810   }
1811   case WM_CLEAR:
1812   {
1813     int from, to;
1814     ME_GetSelection(editor, &from, &to);
1815     ME_InternalDeleteText(editor, from, to-from);
1816     ME_CommitUndo(editor);
1817     ME_UpdateRepaint(editor);
1818     return 0;
1819   }
1820   case EM_REPLACESEL:
1821   {
1822     int from, to;
1823     ME_Style *style;
1824     LPWSTR wszText = ME_ToUnicode(unicode, (void *)lParam);
1825     size_t len = lstrlenW(wszText);
1826     TRACE("EM_REPLACESEL - %s\n", debugstr_w(wszText));
1827
1828     ME_GetSelection(editor, &from, &to);
1829     style = ME_GetSelectionInsertStyle(editor);
1830     ME_InternalDeleteText(editor, from, to-from);
1831     ME_InsertTextFromCursor(editor, 0, wszText, len, style);
1832     ME_ReleaseStyle(style);
1833     /* drop temporary style if line end */
1834     /*
1835      * FIXME question: does abc\n mean: put abc,
1836      * clear temp style, put \n? (would require a change)
1837      */
1838     if (len>0 && wszText[len-1] == '\n')
1839       ME_ClearTempStyle(editor);
1840     ME_EndToUnicode(unicode, wszText);
1841     ME_CommitUndo(editor);
1842     if (!wParam)
1843       ME_EmptyUndoStack(editor);
1844     ME_UpdateRepaint(editor);
1845     return 0;
1846   }
1847   case EM_SCROLLCARET:
1848   {
1849     int top, bottom; /* row's edges relative to document top */
1850     int nPos;
1851     ME_DisplayItem *para, *row;
1852     
1853     nPos = ME_GetYScrollPos(editor);
1854     row = ME_RowStart(editor->pCursors[0].pRun);
1855     para = ME_GetParagraph(row);
1856     top = para->member.para.nYPos + row->member.row.nYPos;
1857     bottom = top + row->member.row.nHeight;
1858     
1859     if (top < nPos) /* caret above window */
1860       ME_ScrollAbs(editor,  top);
1861     else if (nPos + editor->sizeWindow.cy < bottom) /*below*/
1862       ME_ScrollAbs(editor, bottom - editor->sizeWindow.cy);
1863     return 0;
1864   }
1865   case WM_SETFONT:
1866   {
1867     LOGFONTW lf;
1868     CHARFORMAT2W fmt;
1869     HDC hDC;
1870     BOOL bRepaint = LOWORD(lParam);
1871     
1872     if (!wParam)
1873       wParam = (WPARAM)GetStockObject(SYSTEM_FONT); 
1874     GetObjectW((HGDIOBJ)wParam, sizeof(LOGFONTW), &lf);
1875     hDC = GetDC(hWnd);
1876     ME_CharFormatFromLogFont(hDC, &lf, &fmt); 
1877     ReleaseDC(hWnd, hDC);   
1878     ME_SetCharFormat(editor, 0, ME_GetTextLength(editor), &fmt);
1879     ME_SetDefaultCharFormat(editor, &fmt);
1880
1881     ME_CommitUndo(editor);
1882     if (bRepaint)
1883       ME_RewrapRepaint(editor);
1884     return 0;
1885   }
1886   case WM_SETTEXT:
1887   {
1888     ME_InternalDeleteText(editor, 0, ME_GetTextLength(editor));
1889     if (lParam)
1890     {
1891       TRACE("WM_SETTEXT lParam==%lx\n",lParam);
1892       if (!unicode && !strncmp((char *)lParam, "{\\rtf", 5))
1893       {
1894         /* Undocumented: WM_SETTEXT supports RTF text */
1895         ME_StreamInRTFString(editor, 0, (char *)lParam);
1896       }
1897       else
1898       {
1899         LPWSTR wszText = ME_ToUnicode(unicode, (void *)lParam);
1900         TRACE("WM_SETTEXT - %s\n", debugstr_w(wszText)); /* debugstr_w() */
1901         if (lstrlenW(wszText) > 0)
1902         {
1903           /* uses default style! */
1904           ME_InsertTextFromCursor(editor, 0, wszText, -1, editor->pBuffer->pDefaultStyle);
1905         }
1906         ME_EndToUnicode(unicode, wszText);
1907       }
1908     }
1909     else
1910       TRACE("WM_SETTEXT - NULL\n");
1911     ME_CommitUndo(editor);
1912     ME_EmptyUndoStack(editor);
1913     ME_SetSelection(editor, 0, 0);
1914     ME_UpdateRepaint(editor);
1915     return 1;
1916   }
1917   case EM_CANPASTE:
1918   {
1919     UINT nRTFFormat = RegisterClipboardFormatA("Rich Text Format");
1920     if (IsClipboardFormatAvailable(nRTFFormat))
1921       return TRUE;
1922     if (IsClipboardFormatAvailable(CF_UNICODETEXT))
1923       return TRUE;
1924     return FALSE;
1925   }
1926   case WM_PASTE:
1927   {    
1928     DWORD dwFormat = 0;
1929     EDITSTREAM es;
1930     ME_GlobalDestStruct gds;
1931     UINT nRTFFormat = RegisterClipboardFormatA("Rich Text Format");
1932     UINT cf = 0;
1933
1934     if (IsClipboardFormatAvailable(nRTFFormat))
1935       cf = nRTFFormat, dwFormat = SF_RTF;
1936     else if (IsClipboardFormatAvailable(CF_UNICODETEXT))
1937       cf = CF_UNICODETEXT, dwFormat = SF_TEXT|SF_UNICODE;
1938     else
1939       return 0;
1940
1941     if (!OpenClipboard(hWnd))
1942       return 0;
1943     gds.hData = GetClipboardData(cf);
1944     gds.nLength = 0;
1945     es.dwCookie = (DWORD)&gds;
1946     es.pfnCallback = dwFormat == SF_RTF ? ME_ReadFromHGLOBALRTF : ME_ReadFromHGLOBALUnicode;
1947     ME_StreamIn(editor, dwFormat|SFF_SELECTION, &es);
1948
1949     CloseClipboard();
1950     return 0;
1951   }
1952   case WM_CUT:
1953   case WM_COPY:
1954   {
1955     LPDATAOBJECT dataObj = NULL;
1956     CHARRANGE range;
1957     HRESULT hr = S_OK;
1958     
1959     if (editor->cPasswordMask)
1960       return 0; /* Copying or Cutting masked text isn't allowed */
1961     
1962     ME_GetSelection(editor, (int*)&range.cpMin, (int*)&range.cpMax);
1963     if(editor->lpOleCallback)
1964         hr = IRichEditOleCallback_GetClipboardData(editor->lpOleCallback, &range, RECO_COPY, &dataObj);
1965     if(FAILED(hr) || !dataObj)
1966         hr = ME_GetDataObject(editor, &range, &dataObj);
1967     if(SUCCEEDED(hr)) {
1968         hr = OleSetClipboard(dataObj);
1969         IDataObject_Release(dataObj);
1970     }
1971     if (SUCCEEDED(hr) && msg == WM_CUT)
1972     {
1973       ME_InternalDeleteText(editor, range.cpMin, range.cpMax-range.cpMin);
1974       ME_CommitUndo(editor);
1975       ME_UpdateRepaint(editor);
1976     }
1977     return 0;
1978   }
1979   case WM_GETTEXTLENGTH:
1980     return ME_GetTextLength(editor);
1981   case EM_GETTEXTLENGTHEX:
1982     return ME_GetTextLengthEx(editor, (GETTEXTLENGTHEX *)wParam);
1983   case WM_GETTEXT:
1984   {
1985     TEXTRANGEW tr; /* W and A differ only by rng->lpstrText */
1986     tr.chrg.cpMin = 0;
1987     tr.chrg.cpMax = wParam ? (wParam - 1) : 0;
1988     tr.lpstrText = (WCHAR *)lParam;
1989     return RichEditWndProc_common(hWnd, EM_GETTEXTRANGE, 0, (LPARAM)&tr, unicode);
1990   }
1991   case EM_GETTEXTEX:
1992   {
1993     GETTEXTEX *ex = (GETTEXTEX*)wParam;
1994     int nStart, nCount;
1995
1996     if (ex->flags & ~(GT_SELECTION | GT_USECRLF))
1997       FIXME("GETTEXTEX flags 0x%08x not supported\n", ex->flags & ~(GT_SELECTION | GT_USECRLF));
1998
1999     if (ex->flags & GT_SELECTION)
2000     {
2001       ME_GetSelection(editor, &nStart, &nCount);
2002       nCount -= nStart;
2003       nCount = min(nCount, ex->cb - 1);
2004     }
2005     else
2006     {
2007       nStart = 0;
2008       nCount = ex->cb - 1;
2009     }
2010     if (ex->codepage == 1200)
2011     {
2012       nCount = min(nCount, ex->cb / sizeof(WCHAR) - 1);
2013       return ME_GetTextW(editor, (LPWSTR)lParam, nStart, nCount, ex->flags & GT_USECRLF);
2014     }
2015     else
2016     {
2017       /* potentially each char may be a CR, why calculate the exact value with O(N) when
2018         we can just take a bigger buffer? :) */
2019       int crlfmul = (ex->flags & GT_USECRLF) ? 2 : 1;
2020       LPWSTR buffer = richedit_alloc((crlfmul*nCount + 1) * sizeof(WCHAR));
2021       DWORD buflen = ex->cb;
2022       LRESULT rc;
2023       DWORD flags = 0;
2024
2025       buflen = ME_GetTextW(editor, buffer, nStart, nCount, ex->flags & GT_USECRLF);
2026       rc = WideCharToMultiByte(ex->codepage, flags, buffer, -1, (LPSTR)lParam, ex->cb, ex->lpDefaultChar, ex->lpUsedDefaultChar);
2027       if (rc) rc--; /* do not count 0 terminator */
2028
2029       richedit_free(buffer);
2030       return rc;
2031     }
2032   }
2033   case EM_GETSELTEXT:
2034   {
2035     int from, to;
2036     TEXTRANGEW tr; /* W and A differ only by rng->lpstrText */
2037     ME_GetSelection(editor, &from, &to);
2038     tr.chrg.cpMin = from;
2039     tr.chrg.cpMax = to;
2040     tr.lpstrText = (WCHAR *)lParam;
2041     return RichEditWndProc_common(hWnd, EM_GETTEXTRANGE, 0, (LPARAM)&tr, unicode);
2042   }
2043   case EM_GETSCROLLPOS:
2044   {
2045       POINT *point = (POINT *)lParam;
2046       point->x = 0; /* FIXME side scrolling not implemented */
2047       point->y = ME_GetYScrollPos(editor);
2048       return 1;
2049   }
2050   case EM_GETTEXTRANGE:
2051   {
2052     TEXTRANGEW *rng = (TEXTRANGEW *)lParam;
2053     TRACE("EM_GETTEXTRANGE min=%d max=%d unicode=%d emul1.0=%d length=%d\n",
2054       rng->chrg.cpMin, rng->chrg.cpMax, unicode,
2055       editor->bEmulateVersion10, ME_GetTextLength(editor));
2056     if (unicode)
2057       return ME_GetTextW(editor, rng->lpstrText, rng->chrg.cpMin, rng->chrg.cpMax-rng->chrg.cpMin, editor->bEmulateVersion10);
2058     else
2059     {
2060       int nLen = rng->chrg.cpMax-rng->chrg.cpMin;
2061       WCHAR *p = ALLOC_N_OBJ(WCHAR, nLen+1);
2062       int nChars = ME_GetTextW(editor, p, rng->chrg.cpMin, nLen, editor->bEmulateVersion10);
2063       /* FIXME this is a potential security hole (buffer overrun) 
2064          if you know more about wchar->mbyte conversion please explain
2065       */
2066       WideCharToMultiByte(CP_ACP, 0, p, nChars+1, (char *)rng->lpstrText, nLen+1, NULL, NULL);
2067       FREE_OBJ(p);
2068       return nChars;
2069     }
2070   }
2071   case EM_GETLINE:
2072   {
2073     ME_DisplayItem *run;
2074     const unsigned int nMaxChars = *(WORD *) lParam;
2075     unsigned int nEndChars, nCharsLeft = nMaxChars;
2076     char *dest = (char *) lParam;
2077     /* rich text editor 1.0 uses \r\n for line end, 2.0 uses just \r; 
2078     we need to know how if we have the extra \n or not */
2079     int nLF = editor->bEmulateVersion10;
2080
2081     TRACE("EM_GETLINE: row=%d, nMaxChars=%d (%s)\n", (int) wParam, nMaxChars,
2082           unicode ? "Unicode" : "Ansi");
2083
2084     run = ME_FindRowWithNumber(editor, wParam);
2085     if (run == NULL)
2086       return 0;
2087
2088     while (nCharsLeft && (run = ME_FindItemFwd(run, diRunOrStartRow))
2089            && !(run->member.run.nFlags & MERF_ENDPARA))
2090     {
2091       unsigned int nCopy;
2092       ME_String *strText;
2093       if (run->type != diRun)
2094         break;
2095       strText = run->member.run.strText;
2096       nCopy = min(nCharsLeft, strText->nLen);
2097
2098       if (unicode)
2099         lstrcpynW((LPWSTR) dest, strText->szData, nCopy);
2100       else
2101         nCopy = WideCharToMultiByte(CP_ACP, 0, strText->szData, nCopy, dest,
2102                                     nCharsLeft, NULL, NULL);
2103       dest += nCopy * (unicode ? sizeof(WCHAR) : 1);
2104       nCharsLeft -= nCopy;
2105     }
2106
2107     /* append \r\0 (or \r\n\0 in 1.0), space allowing */
2108     nEndChars = min(nCharsLeft, 2 + nLF);
2109     nCharsLeft -= nEndChars;
2110     if (unicode)
2111     {
2112       const WCHAR src[] = {'\r', '\0'};
2113       const WCHAR src10[] = {'\r', '\n', '\0'};
2114       lstrcpynW((LPWSTR) dest, nLF ? src10 : src, nEndChars);
2115     }
2116     else
2117       lstrcpynA(dest, nLF ? "\r\n" : "\r", nEndChars);
2118
2119     TRACE("EM_GETLINE: got %u bytes\n", nMaxChars - nCharsLeft);
2120
2121     if (nEndChars == 2 + nLF)
2122       return nMaxChars - nCharsLeft - 1; /* don't count \0 */
2123     else
2124       return nMaxChars - nCharsLeft;
2125   }
2126   case EM_GETLINECOUNT:
2127   {
2128     ME_DisplayItem *item = editor->pBuffer->pFirst->next;
2129     int nRows = 0;
2130
2131     while (item != editor->pBuffer->pLast)
2132     {
2133       assert(item->type == diParagraph);
2134       nRows += item->member.para.nRows;
2135       item = item->member.para.next_para;
2136     }
2137     TRACE("EM_GETLINECOUNT: nRows==%d\n", nRows);
2138     return max(1, nRows);
2139   }
2140   case EM_LINEFROMCHAR:
2141   {
2142     if (wParam == -1)
2143       return ME_RowNumberFromCharOfs(editor, ME_GetCursorOfs(editor, 1));
2144     else
2145       return ME_RowNumberFromCharOfs(editor, wParam);
2146   }
2147   case EM_EXLINEFROMCHAR:
2148   {
2149     if (lParam == -1)
2150       return ME_RowNumberFromCharOfs(editor, ME_GetCursorOfs(editor,1));
2151     else    
2152       return ME_RowNumberFromCharOfs(editor, lParam);
2153   }
2154   case EM_LINEINDEX:
2155   {
2156     ME_DisplayItem *item, *para;
2157     int nCharOfs;
2158     
2159     if (wParam == -1)
2160       item = ME_FindItemBack(editor->pCursors[0].pRun, diStartRow);
2161     else
2162       item = ME_FindRowWithNumber(editor, wParam);
2163     if (!item)
2164       return -1;
2165     para = ME_GetParagraph(item);
2166     item = ME_FindItemFwd(item, diRun);
2167     nCharOfs = para->member.para.nCharOfs + item->member.run.nCharOfs;
2168     TRACE("EM_LINEINDEX: nCharOfs==%d\n", nCharOfs);
2169     return nCharOfs;
2170   }
2171   case EM_LINELENGTH:
2172   {
2173     ME_DisplayItem *item, *item_end;
2174     int nChars = 0, nThisLineOfs = 0, nNextLineOfs = 0;
2175     
2176     if (wParam > ME_GetTextLength(editor))
2177       return 0;
2178     if (wParam == -1)
2179     {
2180       FIXME("EM_LINELENGTH: returning number of unselected characters on lines with selection unsupported.\n");
2181       return 0;
2182     }
2183     item = ME_FindItemAtOffset(editor, diRun, wParam, NULL);
2184     item = ME_RowStart(item);
2185     nThisLineOfs = ME_CharOfsFromRunOfs(editor, ME_FindItemFwd(item, diRun), 0);
2186     item_end = ME_FindItemFwd(item, diStartRowOrParagraphOrEnd);
2187     if (item_end->type == diStartRow)
2188       nNextLineOfs = ME_CharOfsFromRunOfs(editor, ME_FindItemFwd(item_end, diRun), 0);
2189     else
2190       nNextLineOfs = ME_FindItemFwd(item, diParagraphOrEnd)->member.para.nCharOfs
2191        - (editor->bEmulateVersion10?2:1);
2192     nChars = nNextLineOfs - nThisLineOfs;
2193     TRACE("EM_LINELENGTH(%d)==%d\n",wParam, nChars);
2194     return nChars;
2195   }
2196   case EM_EXLIMITTEXT:
2197   {
2198     if ((int)lParam < 0)
2199      return 0;
2200     if (lParam == 0)
2201       editor->nTextLimit = 65536;
2202     else
2203       editor->nTextLimit = (int) lParam;
2204     return 0;
2205   }
2206   case EM_LIMITTEXT:
2207   {
2208     if (wParam == 0)
2209       editor->nTextLimit = 65536;
2210     else
2211       editor->nTextLimit = (int) wParam;
2212     return 0;
2213   }
2214   case EM_GETLIMITTEXT:
2215   {
2216     return editor->nTextLimit;
2217   }
2218   case EM_FINDTEXT:
2219   {
2220     FINDTEXTA *ft = (FINDTEXTA *)lParam;
2221     int nChars = MultiByteToWideChar(CP_ACP, 0, ft->lpstrText, -1, NULL, 0);
2222     WCHAR *tmp;
2223     LRESULT r;
2224
2225     if ((tmp = ALLOC_N_OBJ(WCHAR, nChars)) != NULL)
2226       MultiByteToWideChar(CP_ACP, 0, ft->lpstrText, -1, tmp, nChars);
2227     r = ME_FindText(editor, wParam, &ft->chrg, tmp, NULL);
2228     FREE_OBJ( tmp );
2229     return r;
2230   }
2231   case EM_FINDTEXTEX:
2232   {
2233     FINDTEXTEXA *ex = (FINDTEXTEXA *)lParam;
2234     int nChars = MultiByteToWideChar(CP_ACP, 0, ex->lpstrText, -1, NULL, 0);
2235     WCHAR *tmp;
2236     LRESULT r;
2237
2238     if ((tmp = ALLOC_N_OBJ(WCHAR, nChars)) != NULL)
2239       MultiByteToWideChar(CP_ACP, 0, ex->lpstrText, -1, tmp, nChars);
2240     r = ME_FindText(editor, wParam, &ex->chrg, tmp, &ex->chrgText);
2241     FREE_OBJ( tmp );
2242     return r;
2243   }
2244   case EM_FINDTEXTW:
2245   {
2246     FINDTEXTW *ft = (FINDTEXTW *)lParam;
2247     return ME_FindText(editor, wParam, &ft->chrg, ft->lpstrText, NULL);
2248   }
2249   case EM_FINDTEXTEXW:
2250   {
2251     FINDTEXTEXW *ex = (FINDTEXTEXW *)lParam;
2252     return ME_FindText(editor, wParam, &ex->chrg, ex->lpstrText, &ex->chrgText);
2253   }
2254   case EM_GETZOOM:
2255     if (!wParam || !lParam)
2256       return FALSE;
2257     *(int *)wParam = editor->nZoomNumerator;
2258     *(int *)lParam = editor->nZoomDenominator;
2259     return TRUE;
2260   case EM_SETZOOM:
2261     return ME_SetZoom(editor, wParam, lParam);
2262   case EM_CHARFROMPOS:
2263     return ME_CharFromPos(editor, ((POINTL *)lParam)->x, ((POINTL *)lParam)->y);
2264   case EM_POSFROMCHAR:
2265   {
2266     ME_DisplayItem *pRun;
2267     int nCharOfs, nOffset, nLength;
2268     POINTL pt = {0,0};
2269     
2270     nCharOfs = wParam; 
2271     /* detect which API version we're dealing with */
2272     if (wParam >= 0x40000)
2273         nCharOfs = lParam;
2274     nLength = ME_GetTextLength(editor);
2275     
2276     if (nCharOfs < nLength) { 
2277         ME_RunOfsFromCharOfs(editor, nCharOfs, &pRun, &nOffset);
2278         assert(pRun->type == diRun);
2279         pt.y = pRun->member.run.pt.y;
2280         pt.x = pRun->member.run.pt.x + ME_PointFromChar(editor, &pRun->member.run, nOffset);
2281         pt.y += ME_GetParagraph(pRun)->member.para.nYPos;
2282     } else {
2283         pt.x = 0;
2284         pt.y = editor->pBuffer->pLast->member.para.nYPos;
2285     }
2286     if (wParam >= 0x40000) {
2287         *(POINTL *)wParam = pt;
2288     }
2289     return MAKELONG( pt.x, pt.y );
2290   }
2291   case WM_CREATE:
2292     if (GetWindowLongW(hWnd, GWL_STYLE) & WS_HSCROLL)
2293     { /* Squelch the default horizontal scrollbar it would make */
2294       ShowScrollBar(editor->hWnd, SB_HORZ, FALSE);
2295     }
2296     ME_CommitUndo(editor);
2297     ME_WrapMarkedParagraphs(editor);
2298     ME_MoveCaret(editor);
2299     return 0;
2300   case WM_DESTROY:
2301     ME_DestroyEditor(editor);
2302     SetWindowLongPtrW(hWnd, 0, 0);
2303     return 0;
2304   case WM_LBUTTONDOWN:
2305     SetFocus(hWnd);
2306     ME_LButtonDown(editor, (short)LOWORD(lParam), (short)HIWORD(lParam));
2307     SetCapture(hWnd);
2308     ME_LinkNotify(editor,msg,wParam,lParam);
2309     break;
2310   case WM_MOUSEMOVE:
2311     if (GetCapture() == hWnd)
2312       ME_MouseMove(editor, (short)LOWORD(lParam), (short)HIWORD(lParam));
2313     ME_LinkNotify(editor,msg,wParam,lParam);
2314     break;
2315   case WM_LBUTTONUP:
2316     if (GetCapture() == hWnd)
2317       ReleaseCapture();
2318     ME_LinkNotify(editor,msg,wParam,lParam);
2319     break;
2320   case WM_LBUTTONDBLCLK:
2321     ME_LinkNotify(editor,msg,wParam,lParam);
2322     ME_SelectWord(editor);
2323     break;
2324   case WM_CONTEXTMENU:
2325     if (!ME_ShowContextMenu(editor, (short)LOWORD(lParam), (short)HIWORD(lParam)))
2326       goto do_default;
2327     break;
2328   case WM_PAINT:
2329     if (editor->bRedraw)
2330     {
2331       HDC hDC;
2332       PAINTSTRUCT ps;
2333
2334       hDC = BeginPaint(hWnd, &ps);
2335       ME_PaintContent(editor, hDC, FALSE, &ps.rcPaint);
2336       EndPaint(hWnd, &ps);
2337     }
2338     break;
2339   case WM_SETFOCUS:
2340     ME_ShowCaret(editor);
2341     ME_SendOldNotify(editor, EN_SETFOCUS);
2342     return 0;
2343   case WM_KILLFOCUS:
2344     ME_HideCaret(editor);
2345     ME_SendOldNotify(editor, EN_KILLFOCUS);
2346     return 0;
2347   case WM_ERASEBKGND:
2348   {
2349     if (editor->bRedraw)
2350     {
2351       HDC hDC = (HDC)wParam;
2352       RECT rc;
2353       if (GetUpdateRect(hWnd,&rc,TRUE))
2354       {
2355         FillRect(hDC, &rc, editor->hbrBackground);
2356       }
2357     }
2358     return 1;
2359   }
2360   case WM_COMMAND:
2361     TRACE("editor wnd command = %d\n", LOWORD(wParam));
2362     return 0;
2363   case WM_KEYDOWN:
2364     if (ME_KeyDown(editor, LOWORD(wParam)))
2365       return 0;
2366     goto do_default;
2367   case WM_CHAR: 
2368   {
2369     WCHAR wstr;
2370
2371     if (unicode)
2372         wstr = (WCHAR)wParam;
2373     else
2374     {
2375         CHAR charA = wParam;
2376         MultiByteToWideChar(CP_ACP, 0, &charA, 1, &wstr, 1);
2377     }
2378     if (editor->AutoURLDetect_bEnable)
2379       ME_AutoURLDetect(editor, wstr);
2380         
2381     switch (wstr)
2382     {
2383     case 1: /* Ctrl-A */
2384       ME_SetSelection(editor, 0, -1);
2385       return 0;
2386     case 3: /* Ctrl-C */
2387       SendMessageW(editor->hWnd, WM_COPY, 0, 0);
2388       return 0;
2389     }
2390     
2391     if (GetWindowLongW(editor->hWnd, GWL_STYLE) & ES_READONLY) {
2392       MessageBeep(MB_ICONERROR);
2393       return 0; /* FIXME really 0 ? */
2394     }
2395
2396     switch (wstr)
2397     {
2398     case 22: /* Ctrl-V */
2399       SendMessageW(editor->hWnd, WM_PASTE, 0, 0);
2400       return 0;
2401     case 24: /* Ctrl-X */
2402       SendMessageW(editor->hWnd, WM_CUT, 0, 0);
2403       return 0;
2404     case 25: /* Ctrl-Y */
2405       SendMessageW(editor->hWnd, EM_REDO, 0, 0);
2406       return 0;
2407     case 26: /* Ctrl-Z */
2408       SendMessageW(editor->hWnd, EM_UNDO, 0, 0);
2409       return 0;
2410     }
2411     if (((unsigned)wstr)>=' ' || wstr=='\r' || wstr=='\t') {
2412       /* FIXME maybe it would make sense to call EM_REPLACESEL instead ? */
2413       ME_Style *style = ME_GetInsertStyle(editor, 0);
2414       ME_SaveTempStyle(editor);
2415       ME_InsertTextFromCursor(editor, 0, &wstr, 1, style);
2416       ME_ReleaseStyle(style);
2417       ME_CommitUndo(editor);
2418       ME_UpdateRepaint(editor);
2419     }
2420     return 0;
2421   }
2422   case EM_SCROLL: /* fall through */
2423   case WM_VSCROLL: 
2424   {
2425     int origNPos;
2426     int lineHeight;
2427     
2428     origNPos = ME_GetYScrollPos(editor);
2429     lineHeight = 24;
2430     
2431     if (editor && editor->pBuffer && editor->pBuffer->pDefaultStyle)
2432       lineHeight = editor->pBuffer->pDefaultStyle->tm.tmHeight;
2433     if (lineHeight <= 0) lineHeight = 24;
2434     
2435     switch(LOWORD(wParam)) 
2436     {
2437       case SB_LINEUP:
2438         ME_ScrollUp(editor,lineHeight);
2439         break;
2440       case SB_LINEDOWN:
2441         ME_ScrollDown(editor,lineHeight);
2442         break;
2443       case SB_PAGEUP:
2444         ME_ScrollUp(editor,editor->sizeWindow.cy);
2445         break;
2446       case SB_PAGEDOWN:
2447         ME_ScrollDown(editor,editor->sizeWindow.cy);
2448         break;
2449       case SB_THUMBTRACK:
2450       case SB_THUMBPOSITION:
2451         ME_ScrollAbs(editor,HIWORD(wParam));
2452         break;
2453     }
2454     if (msg == EM_SCROLL)
2455       return 0x00010000 | (((ME_GetYScrollPos(editor) - origNPos)/lineHeight) & 0xffff);
2456     break;
2457   }
2458   case WM_MOUSEWHEEL:
2459   {
2460     int gcWheelDelta;
2461     UINT pulScrollLines;
2462     
2463     SystemParametersInfoW(SPI_GETWHEELSCROLLLINES,0, &pulScrollLines, 0);
2464     gcWheelDelta = -GET_WHEEL_DELTA_WPARAM(wParam);
2465     
2466     if (abs(gcWheelDelta) >= WHEEL_DELTA && pulScrollLines)
2467     {
2468       /* FIXME follow the original */
2469       ME_ScrollDown(editor,pulScrollLines * (gcWheelDelta / WHEEL_DELTA) * 8); 
2470     }
2471     break;
2472   }
2473   case EM_GETRECT:
2474   {
2475     *((RECT *)lParam) = editor->rcFormat;
2476     return 0;
2477   }
2478   case EM_SETRECT:
2479   case EM_SETRECTNP:
2480   {
2481     if (lParam)
2482     {
2483       RECT *rc = (RECT *)lParam;
2484       
2485       if (wParam)
2486       {
2487         editor->rcFormat.left += rc->left;
2488         editor->rcFormat.top += rc->top;
2489         editor->rcFormat.right += rc->right;
2490         editor->rcFormat.bottom += rc->bottom;
2491       }
2492       else
2493       {
2494         editor->rcFormat = *rc;
2495       }
2496     }
2497     else
2498     {
2499       GetClientRect(hWnd, &editor->rcFormat);
2500     }
2501     if (msg != EM_SETRECTNP)
2502       ME_RewrapRepaint(editor);
2503     return 0;
2504   }
2505   case EM_REQUESTRESIZE:
2506     ME_SendRequestResize(editor, TRUE);
2507     return 0;
2508   case WM_SETREDRAW:
2509     editor->bRedraw = wParam;
2510     return 0;
2511   case WM_SIZE:
2512   {
2513     GetClientRect(hWnd, &editor->rcFormat);
2514     ME_RewrapRepaint(editor);
2515     return DefWindowProcW(hWnd, msg, wParam, lParam);
2516   }
2517   case EM_GETOLEINTERFACE:
2518   {
2519     LPVOID *ppvObj = (LPVOID*) lParam;
2520     return CreateIRichEditOle(editor, ppvObj);
2521   }
2522   case EM_GETPASSWORDCHAR:
2523   {
2524     return editor->cPasswordMask;
2525   }
2526   case EM_SETOLECALLBACK:
2527     if(editor->lpOleCallback)
2528       IUnknown_Release(editor->lpOleCallback);
2529     editor->lpOleCallback = (LPRICHEDITOLECALLBACK)lParam;
2530     if(editor->lpOleCallback)
2531       IUnknown_AddRef(editor->lpOleCallback);
2532     return TRUE;
2533   case EM_GETWORDBREAKPROC:
2534     return (LRESULT)editor->pfnWordBreak;
2535   case EM_SETWORDBREAKPROC:
2536   {
2537     EDITWORDBREAKPROCW pfnOld = editor->pfnWordBreak;
2538
2539     editor->pfnWordBreak = (EDITWORDBREAKPROCW)lParam;
2540     return (LRESULT)pfnOld;
2541   }
2542   case EM_SETTEXTMODE:
2543   {
2544     LRESULT ret;
2545     int mask = 0;
2546     int changes = 0;
2547     ret = RichEditWndProc_common(hWnd, WM_GETTEXTLENGTH, 0, 0, unicode);
2548     if (!ret)
2549     {
2550       /*Check for valid wParam*/
2551       if ((((wParam & TM_RICHTEXT) && ((wParam & TM_PLAINTEXT) << 1))) ||
2552           (((wParam & TM_MULTILEVELUNDO) && ((wParam & TM_SINGLELEVELUNDO) << 1))) ||
2553           (((wParam & TM_MULTICODEPAGE) && ((wParam & TM_SINGLECODEPAGE) << 1))))
2554         return 1;
2555       else
2556       {
2557         if (wParam & (TM_RICHTEXT | TM_PLAINTEXT))
2558         {
2559           mask |= (TM_RICHTEXT | TM_PLAINTEXT);
2560           changes |= (wParam & (TM_RICHTEXT | TM_PLAINTEXT));
2561         }
2562         /*FIXME: Currently no support for undo level and code page options*/ 
2563         editor->mode = (editor->mode & (~mask)) | changes;
2564         return 0;
2565       }
2566     }
2567     return ret;
2568   }
2569   case EM_SETPASSWORDCHAR:
2570   {
2571     editor->cPasswordMask = wParam;
2572     ME_RewrapRepaint(editor);
2573     return 0;
2574   }
2575   default:
2576   do_default:
2577     return DefWindowProcW(hWnd, msg, wParam, lParam);
2578   }
2579   return 0L;
2580 }
2581
2582 static LRESULT WINAPI RichEditWndProcW(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
2583 {
2584     BOOL unicode = TRUE;
2585
2586     /* Under Win9x RichEdit20W returns ANSI strings, see the tests. */
2587     if (msg == WM_GETTEXT && (GetVersion() & 0x80000000))
2588         unicode = FALSE;
2589
2590     return RichEditWndProc_common(hWnd, msg, wParam, lParam, unicode);
2591 }
2592
2593 static LRESULT WINAPI RichEditWndProcA(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
2594 {
2595     return RichEditWndProc_common(hWnd, msg, wParam, lParam, FALSE);
2596 }
2597
2598 /******************************************************************
2599  *        RichEditANSIWndProc (RICHED20.10)
2600  */
2601 LRESULT WINAPI RichEditANSIWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
2602 {
2603     return RichEditWndProcA(hWnd, msg, wParam, lParam);
2604 }
2605
2606 /******************************************************************
2607  *        RichEdit10ANSIWndProc (RICHED20.9)
2608  */
2609 LRESULT WINAPI RichEdit10ANSIWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
2610 {
2611   LRESULT result;
2612   
2613   /* FIXME: this is NOT the same as 2.0 version */
2614   result = RichEditANSIWndProc(hWnd, msg, wParam, lParam);
2615   if (msg == WM_NCCREATE)
2616   {
2617     ME_TextEditor *editor = (ME_TextEditor *)GetWindowLongPtrW(hWnd, 0);
2618     
2619     editor->bEmulateVersion10 = TRUE;
2620     editor->pBuffer->pLast->member.para.nCharOfs = 2;
2621   }
2622   return result;
2623 }
2624
2625 void ME_SendOldNotify(ME_TextEditor *editor, int nCode)
2626 {
2627   HWND hWnd = editor->hWnd;
2628   SendMessageA(GetParent(hWnd), WM_COMMAND, (nCode<<16)|GetWindowLongW(hWnd, GWLP_ID), (LPARAM)hWnd);
2629 }
2630
2631 void ME_LinkNotify(ME_TextEditor *editor, UINT msg, WPARAM wParam, LPARAM lParam)
2632 {
2633   int x,y;
2634   ME_Cursor tmpCursor;
2635   int nCharOfs; /* The start of the clicked text. Absolute character offset */
2636
2637   ME_Run *tmpRun;
2638
2639   ENLINK info;
2640   x = (short)LOWORD(lParam);
2641   y = (short)HIWORD(lParam);
2642   nCharOfs = ME_CharFromPos(editor, x, y);
2643   if (nCharOfs < 0) return;
2644
2645   ME_CursorFromCharOfs(editor, nCharOfs, &tmpCursor);
2646   tmpRun = &tmpCursor.pRun->member.run;
2647
2648   if ((tmpRun->style->fmt.dwMask & CFM_LINK)
2649     && (tmpRun->style->fmt.dwEffects & CFE_LINK))
2650   { /* The clicked run has CFE_LINK set */
2651     info.nmhdr.hwndFrom = editor->hWnd;
2652     info.nmhdr.idFrom = GetWindowLongW(editor->hWnd, GWLP_ID);
2653     info.nmhdr.code = EN_LINK;
2654     info.msg = msg;
2655     info.wParam = wParam;
2656     info.lParam = lParam;
2657     info.chrg.cpMin = ME_CharOfsFromRunOfs(editor,tmpCursor.pRun,0);
2658     info.chrg.cpMax = info.chrg.cpMin + ME_StrVLen(tmpRun->strText);
2659     SendMessageW(GetParent(editor->hWnd), WM_NOTIFY,info.nmhdr.idFrom, (LPARAM)&info);
2660   }  
2661 }
2662
2663 int ME_CountParagraphsBetween(ME_TextEditor *editor, int from, int to)
2664 {
2665   ME_DisplayItem *item = ME_FindItemFwd(editor->pBuffer->pFirst, diParagraph);
2666   int i = 0;
2667   
2668   while(item && item->member.para.next_para->member.para.nCharOfs <= from)
2669     item = item->member.para.next_para;
2670   if (!item)
2671     return 0;
2672   while(item && item->member.para.next_para->member.para.nCharOfs <= to) {
2673     item = item->member.para.next_para;
2674     i++;
2675   }
2676   return i;
2677 }
2678
2679
2680 int ME_GetTextW(ME_TextEditor *editor, WCHAR *buffer, int nStart, int nChars, int bCRLF)
2681 {
2682   ME_DisplayItem *item = ME_FindItemAtOffset(editor, diRun, nStart, &nStart);
2683   int nWritten = 0;
2684   WCHAR *pStart = buffer;
2685   
2686   if (!item) {
2687     *buffer = 0;
2688     return 0;
2689   }
2690   
2691   if (nStart)
2692   {
2693     int nLen = ME_StrLen(item->member.run.strText) - nStart;
2694     if (nLen > nChars)
2695       nLen = nChars;
2696     CopyMemory(buffer, item->member.run.strText->szData + nStart, sizeof(WCHAR)*nLen);
2697     nChars -= nLen;
2698     nWritten += nLen;
2699     if (!nChars)
2700       return nWritten;
2701     buffer += nLen;
2702     nStart = 0;
2703     item = ME_FindItemFwd(item, diRun);
2704   }
2705   
2706   while(nChars && item)
2707   {
2708     int nLen = ME_StrLen(item->member.run.strText);
2709     if (nLen > nChars)
2710       nLen = nChars;
2711
2712     if (item->member.run.nFlags & MERF_ENDPARA)
2713     {
2714       if (!ME_FindItemFwd(item, diRun))
2715         /* No '\r' is appended to the last paragraph. */
2716         nLen = 0;
2717       else {
2718         *buffer = '\r';
2719         if (bCRLF)
2720         {
2721           *(++buffer) = '\n';
2722           nWritten++;
2723         }
2724         assert(nLen == 1);
2725         /* our end paragraph consists of 2 characters now */
2726         if (editor->bEmulateVersion10)
2727           nChars--;
2728       }
2729     }
2730     else
2731       CopyMemory(buffer, item->member.run.strText->szData, sizeof(WCHAR)*nLen);
2732     nChars -= nLen;
2733     nWritten += nLen;
2734     buffer += nLen;    
2735       
2736     if (!nChars)
2737     {
2738       TRACE("nWritten=%d, actual=%d\n", nWritten, buffer-pStart);
2739       *buffer = 0;
2740       return nWritten;
2741     }
2742     item = ME_FindItemFwd(item, diRun);
2743   }
2744   *buffer = 0;
2745   TRACE("nWritten=%d, actual=%d\n", nWritten, buffer-pStart);
2746   return nWritten;  
2747 }
2748
2749 static BOOL ME_RegisterEditorClass(HINSTANCE hInstance)
2750 {
2751   WNDCLASSW wcW;
2752   WNDCLASSA wcA;
2753   
2754   wcW.style = CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS;
2755   wcW.lpfnWndProc = RichEditWndProcW;
2756   wcW.cbClsExtra = 0;
2757   wcW.cbWndExtra = sizeof(ME_TextEditor *);
2758   wcW.hInstance = NULL; /* hInstance would register DLL-local class */
2759   wcW.hIcon = NULL;
2760   wcW.hCursor = LoadCursorW(NULL, MAKEINTRESOURCEW(IDC_IBEAM));
2761   wcW.hbrBackground = (HBRUSH)GetStockObject(NULL_BRUSH);
2762   wcW.lpszMenuName = NULL;
2763
2764   if (is_version_nt())
2765   {
2766     wcW.lpszClassName = RichEdit20W;
2767     if (!RegisterClassW(&wcW)) return FALSE;
2768     wcW.lpszClassName = RichEdit50W;
2769     if (!RegisterClassW(&wcW)) return FALSE;
2770   }
2771   else
2772   {
2773     /* WNDCLASSA/W have the same layout */
2774     wcW.lpszClassName = (LPCWSTR)"RichEdit20W";
2775     if (!RegisterClassA((WNDCLASSA *)&wcW)) return FALSE;
2776     wcW.lpszClassName = (LPCWSTR)"RichEdit50W";
2777     if (!RegisterClassA((WNDCLASSA *)&wcW)) return FALSE;
2778   }
2779
2780   wcA.style = CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS;
2781   wcA.lpfnWndProc = RichEditWndProcA;
2782   wcA.cbClsExtra = 0;
2783   wcA.cbWndExtra = sizeof(ME_TextEditor *);
2784   wcA.hInstance = NULL; /* hInstance would register DLL-local class */
2785   wcA.hIcon = NULL;
2786   wcA.hCursor = LoadCursorW(NULL, MAKEINTRESOURCEW(IDC_IBEAM));
2787   wcA.hbrBackground = (HBRUSH)GetStockObject(NULL_BRUSH);
2788   wcA.lpszMenuName = NULL;
2789   wcA.lpszClassName = "RichEdit20A";
2790   if (!RegisterClassA(&wcA)) return FALSE;
2791   wcA.lpszClassName = "RichEdit50A";
2792   if (!RegisterClassA(&wcA)) return FALSE;
2793
2794   return TRUE;
2795 }
2796
2797 LRESULT WINAPI REComboWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) {
2798   /* FIXME: Not implemented */
2799   TRACE("hWnd %p msg %04x (%s) %08x %08lx\n",
2800         hWnd, msg, get_msg_name(msg), wParam, lParam);
2801   return DefWindowProcW(hWnd, msg, wParam, lParam);
2802 }
2803
2804 LRESULT WINAPI REListWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) {
2805   /* FIXME: Not implemented */
2806   TRACE("hWnd %p msg %04x (%s) %08x %08lx\n",
2807         hWnd, msg, get_msg_name(msg), wParam, lParam);
2808   return DefWindowProcW(hWnd, msg, wParam, lParam);
2809 }
2810
2811 /******************************************************************
2812  *        REExtendedRegisterClass (RICHED20.8)
2813  *
2814  * FIXME undocumented
2815  * Need to check for errors and implement controls and callbacks 
2816  */
2817 LRESULT WINAPI REExtendedRegisterClass(void)
2818 {
2819   WNDCLASSW wcW;
2820   UINT result;
2821
2822   FIXME("semi stub\n");
2823
2824   wcW.cbClsExtra = 0;
2825   wcW.cbWndExtra = 4;
2826   wcW.hInstance = NULL;
2827   wcW.hIcon = NULL;
2828   wcW.hCursor = NULL;
2829   wcW.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
2830   wcW.lpszMenuName = NULL;
2831
2832   if (!ME_ListBoxRegistered)
2833   {
2834       wcW.style = CS_PARENTDC | CS_DBLCLKS | CS_GLOBALCLASS;
2835       wcW.lpfnWndProc = REListWndProc;
2836       wcW.lpszClassName = REListBox20W;
2837       if (RegisterClassW(&wcW)) ME_ListBoxRegistered = TRUE;
2838   }
2839
2840   if (!ME_ComboBoxRegistered)
2841   {
2842       wcW.style = CS_PARENTDC | CS_DBLCLKS | CS_GLOBALCLASS | CS_VREDRAW | CS_HREDRAW;
2843       wcW.lpfnWndProc = REComboWndProc;
2844       wcW.lpszClassName = REComboBox20W;
2845       if (RegisterClassW(&wcW)) ME_ComboBoxRegistered = TRUE;  
2846   }
2847
2848   result = 0;
2849   if (ME_ListBoxRegistered)
2850       result += 1;
2851   if (ME_ComboBoxRegistered)
2852       result += 2;
2853
2854   return result;
2855 }
2856
2857 int ME_AutoURLDetect(ME_TextEditor *editor, WCHAR curChar) 
2858 {
2859   struct prefix_s {
2860     const char *text;
2861     int length;
2862   } prefixes[12] = {
2863     {"http:", 5},
2864     {"file:", 6},
2865     {"mailto:", 8},
2866     {"ftp:", 5},
2867     {"https:", 7},
2868     {"gopher:", 8},
2869     {"nntp:", 6},
2870     {"prospero:", 10},
2871     {"telnet:", 8},
2872     {"news:", 6},
2873     {"wais:", 6},
2874     {"www.", 5}
2875   };
2876   CHARRANGE ins_pt;
2877   int curf_ef, link_ef, def_ef;
2878   int cur_prefx, prefx_cnt;
2879   int sel_min, sel_max;
2880   int car_pos = 0;
2881   int text_pos=-1;
2882   int URLmin, URLmax = 0;
2883   CHARRANGE url;
2884   FINDTEXTA ft;
2885   CHARFORMAT2W cur_format;
2886   CHARFORMAT2W default_format;
2887   CHARFORMAT2W link;
2888   RichEditANSIWndProc(editor->hWnd, EM_EXGETSEL, (WPARAM) 0, (LPARAM) &ins_pt);
2889   sel_min = ins_pt.cpMin;
2890   sel_max = ins_pt.cpMax;
2891   if (sel_min==sel_max) 
2892     car_pos = sel_min;
2893   if (sel_min!=sel_max)
2894     car_pos = ME_GetTextLength(editor)+1;   
2895   cur_format.cbSize = sizeof(cur_format);
2896   default_format.cbSize = sizeof(default_format);
2897   RichEditANSIWndProc(editor->hWnd, EM_GETCHARFORMAT, SCF_SELECTION, (LPARAM) &cur_format);
2898   RichEditANSIWndProc(editor->hWnd, EM_GETCHARFORMAT, SCF_DEFAULT, (LPARAM) &default_format);
2899   link.cbSize = sizeof(link);
2900   link.dwMask = CFM_LINK;
2901   link.dwEffects = CFE_LINK;
2902   curf_ef = cur_format.dwEffects & link.dwEffects;
2903   def_ef = default_format.dwEffects & link.dwEffects;
2904   link_ef = link.dwEffects & link.dwEffects;
2905   if (curf_ef == link_ef) 
2906   {
2907     if( curChar == '\n' || curChar=='\r' || curChar==' ') 
2908     {
2909       ME_SetSelection(editor, car_pos, car_pos);
2910       RichEditANSIWndProc(editor->hWnd, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM) &default_format);
2911       text_pos=-1;
2912       return 0;
2913     }
2914   }
2915   if (curf_ef == def_ef)
2916   {
2917     cur_prefx = 0;
2918     prefx_cnt = (sizeof(prefixes)/sizeof(struct prefix_s))-1;
2919     while (cur_prefx<=prefx_cnt) 
2920     {
2921       if (text_pos == -1) 
2922       {
2923         ft.lpstrText = prefixes[cur_prefx].text;
2924         URLmin=max(0,(car_pos-prefixes[cur_prefx].length));
2925         URLmax=max(0, car_pos);
2926         if ((car_pos == 0) && (ME_GetTextLength(editor) != 0))
2927         {
2928         URLmax = ME_GetTextLength(editor)+1;
2929         }
2930         ft.chrg.cpMin = URLmin;
2931         ft.chrg.cpMax = URLmax;
2932         text_pos=RichEditANSIWndProc(editor->hWnd, EM_FINDTEXT, FR_DOWN, (LPARAM)&ft);   
2933         cur_prefx++;
2934       }
2935       if (text_pos != -1) 
2936       {
2937         url.cpMin=text_pos;
2938         url.cpMax=car_pos-1;
2939         ME_SetCharFormat(editor, text_pos, (URLmax-text_pos), &link);
2940         ME_RewrapRepaint(editor);
2941         break;
2942       }
2943     }
2944   }
2945   return 0;
2946 }