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