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