Replaced slow and outdated character set handling in RTF reader by
[wine] / dlls / riched20 / editor.c
1 /*
2  * RichEdit - functions dealing with editor object
3  *
4  * Copyright 2004 by Krzysztof Foltman
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 /* 
22   API implementation status:
23   
24   Messages (ANSI versions not done yet)
25   - EM_AUTOURLDETECT 2.0
26   - EM_CANPASTE
27   + EM_CANREDO 2.0
28   + EM_CANUNDO
29   - EM_CHARFROMPOS
30   - EM_DISPLAYBAND
31   + EM_EMPTYUNDOBUFFER
32   + EM_EXGETSEL
33   - EM_EXLIMITTEXT
34   - EM_EXLINEFROMCHAR
35   + EM_EXSETSEL
36   - EM_FINDTEXT
37   - EM_FINDTEXTEX
38   - EM_FINDWORDBREAK
39   - EM_FMTLINES
40   - EM_FORMATRANGE
41   - EM_GETCHARFORMAT (partly done)
42   + EM_GETEVENTMASK
43   - EM_GETFIRSTVISIBLELINE
44   - EM_GETIMECOLOR 1.0asian
45   - EM_GETIMECOMPMODE 2.0
46   - EM_GETIMEOPTIONS 1.0asian
47   - EM_GETIMESTATUS
48   - EM_GETLANGOPTIONS 2.0
49   - EM_GETLIMITTEXT
50   - EM_GETLINE        
51   - EM_GETLINECOUNT   returns number of rows, not of paragraphs
52   + EM_GETMODIFY
53   - EM_GETOLEINTERFACE
54   - EM_GETOPTIONS
55   + EM_GETPARAFORMAT
56   - EM_GETPUNCTUATION 1.0asian
57   - EM_GETRECT
58   - EM_GETREDONAME 2.0
59   + EM_GETSEL
60   + EM_GETSELTEXT (ANSI&Unicode)
61 ! - EM_GETTHUMB
62   - EM_GETTEXTMODE 2.0
63 ? + EM_GETTEXTRANGE (ANSI&Unicode)
64   - EM_GETUNDONAME
65   - EM_GETWORDBREAKPROC
66   - EM_GETWORDBREAKPROCEX
67   - EM_GETWORDWRAPMODE 1.0asian
68   - EM_HIDESELECTION
69   - EM_LIMITTEXT
70   - EM_LINEFROMCHAR
71   - EM_LINEINDEX
72   - EM_LINELENGTH
73   - EM_LINESCROLL
74   - EM_PASTESPECIAL
75   - EM_POSFROMCHARS
76   - EM_REDO 2.0
77   - EM_REQUESTRESIZE
78   + EM_REPLACESEL (proper style?) ANSI&Unicode
79   - EM_SCROLL
80   - EM_SCROLLCARET
81   - EM_SELECTIONTYPE
82   + EM_SETBKGNDCOLOR
83   - EM_SETCHARFORMAT (partly done, no ANSI)
84   + EM_SETEVENTMASK (few notifications supported)
85   - EM_SETIMECOLOR 1.0asian
86   - EM_SETIMEOPTIONS 1.0asian
87   - EM_SETLANGOPTIONS 2.0
88   - EM_SETLIMITTEXT
89   + EM_SETMODIFY (not sure if implementation is correct)
90   - EM_SETOLECALLBACK
91   - EM_SETOPTIONS
92   + EM_SETPARAFORMAT
93   - EM_SETPUNCTUATION 1.0asian
94   + EM_SETREADONLY no beep on modification attempt
95   - EM_SETRECT
96   - EM_SETRECTNP (EM_SETRECT without repainting) - not supported in RICHEDIT
97   + EM_SETSEL
98   - EM_SETTARGETDEVICE
99   - EM_SETTEXTMODE 2.0
100   - EM_SETUNDOLIMIT 2.0
101   - EM_SETWORDBREAKPROC
102   - EM_SETWORDBREAKPROCEX
103   - EM_SETWORDWRAPMODE 1.0asian
104   - EM_STOPGROUPTYPING 2.0
105   - EM_STREAMIN
106   - EM_STREAMOUT
107   - EM_UNDO
108   + WM_CHAR
109   + WM_CLEAR
110   + WM_COPY
111   + WM_CUT
112   + WM_GETDLGCODE (the current implementation is incomplete)
113   + WM_GETTEXT (ANSI&Unicode)
114   + WM_GETTEXTLENGTH (ANSI version sucks)
115   + WM_PASTE
116   - WM_SETFONT
117   + WM_SETTEXT (resets undo stack !) (proper style?) ANSI&Unicode
118   - WM_STYLECHANGING
119   - WM_STYLECHANGED (things like read-only flag)
120   - WM_UNICHAR
121   
122   Notifications
123   
124   * EN_CHANGE (sent from the wrong place)
125   - EN_CORRECTTEXT
126   - EN_DROPFILES
127   - EN_ERRSPACE
128   - EN_HSCROLL
129   - EN_IMECHANGE
130   + EN_KILLFOCUS
131   - EN_LINK
132   - EN_MAXTEXT
133   - EN_MSGFILTER
134   - EN_OLEOPFAILED
135   - EN_PROTECTED
136   - EN_REQUESTRESIZE
137   - EN_SAVECLIPBOARD
138   + EN_SELCHANGE 
139   + EN_SETFOCUS
140   - EN_STOPNOUNDO
141   * EN_UPDATE (sent from the wrong place)
142   - EN_VSCROLL
143   
144   Styles
145   
146   - ES_AUTOHSCROLL
147   - ES_AUTOVSCROLL
148   - ES_CENTER
149   - ES_DISABLENOSCROLL (scrollbar is always visible)
150   - ES_EX_NOCALLOLEINIT
151   - ES_LEFT
152   - ES_MULTILINE (currently single line controls aren't supported)
153   - ES_NOIME
154   - ES_READONLY (I'm not sure if beeping is the proper behaviour)
155   - ES_RIGHT
156   - ES_SAVESEL
157   - ES_SELFIME
158   - ES_SUNKEN
159   - ES_VERTICAL
160   - ES_WANTRETURN (don't know how to do WM_GETDLGCODE part)
161   - WS_SETFONT
162   - WS_HSCROLL
163   - WS_VSCROLL
164 */
165
166 /*
167  * RICHED20 TODO (incomplete):
168  *
169  * - font caching
170  * - add remaining CHARFORMAT/PARAFORMAT fields
171  * - right/center align should strip spaces from the beginning
172  * - more advanced navigation (Ctrl-arrows, PageUp/PageDn)
173  * - tabs
174  * - pictures (not just smiling faces that lack API support ;-) )
175  * - OLE objects
176  * - calculate heights of pictures (half-done)
177  * - EM_STREAMIN/EM_STREAMOUT
178  * - horizontal scrolling (not even started)
179  * - fix scrollbars and refresh (it sucks bigtime)
180  * - hysteresis during wrapping (related to scrollbars appearing/disappearing)
181  * - should remember maximum row width for wrap hysteresis
182  * - find/replace
183  * - how to implement EM_FORMATRANGE and EM_DISPLAYBAND ? (Mission Impossible)
184  * - italic cursor with italic fonts
185  * - IME
186  * - most notifications aren't sent at all (the most important ones are)
187  * - when should EN_SELCHANGE be sent after text change ? (before/after EN_UPDATE?)
188  * - WM_SETTEXT may use wrong style (but I'm 80% sure it's OK)
189  * - EM_GETCHARFORMAT with SCF_SELECTION may not behave 100% like in original (but very close)
190  * - bugs in end-of-text handling (the gray bar) could get me in jail ;-)
191  * - determination of row size
192  * - end-of-paragraph marks should be of reasonable size
193  *
194  * Bugs that are probably fixed, but not so easy to verify:
195  * - EN_UPDATE/EN_CHANGE are handled very incorrectly (should be OK now)
196  * - undo for ME_JoinParagraphs doesn't store paragraph format ? (it does)
197  * - check/fix artificial EOL logic (bCursorAtEnd, hardly logical)
198  * - caret shouldn't be displayed when selection isn't empty
199  * - check refcounting in style management functions (looks perfect now, but no bugs is suspicious)
200  * - undo for setting default format (done, might be buggy)
201  * - styles might be not released properly (looks like they work like charm, but who knows?
202  *
203  */
204
205 #include "editor.h"
206 #include <ole2.h>
207 #include <richole.h>
208 #include <winreg.h>
209 #define NO_SHLWAPI_STREAM 
210 #include <shlwapi.h>
211
212 #include "rtf.h"
213  
214 WINE_DEFAULT_DEBUG_CHANNEL(richedit);
215
216 int me_debug = 0;
217 HANDLE me_heap = NULL;
218
219 ME_TextBuffer *ME_MakeText() {
220   
221   ME_TextBuffer *buf = ALLOC_OBJ(ME_TextBuffer);
222
223   ME_DisplayItem *p1 = ME_MakeDI(diTextStart);
224   ME_DisplayItem *p2 = ME_MakeDI(diTextEnd);
225   
226   p1->prev = NULL;
227   p1->next = p2;
228   p2->prev = p1;
229   p2->next = NULL;
230   p1->member.para.next_para = p2;
231   p2->member.para.prev_para = p1;
232   p2->member.para.nCharOfs = 0;  
233   
234   buf->pFirst = p1;
235   buf->pLast = p2;
236   buf->pCharStyle = NULL;
237   
238   return buf;
239 }
240
241 #define STREAMIN_BUFFER_SIZE 4096 /* M$ compatibility */
242
243 static LRESULT ME_StreamInText(ME_TextEditor *editor, DWORD dwFormat, EDITSTREAM *stream, ME_Style *style)
244 {
245   BYTE buffer[STREAMIN_BUFFER_SIZE+1];
246   WCHAR wszText[STREAMIN_BUFFER_SIZE+1];
247   
248   TRACE("%08lx %p\n", dwFormat, stream);
249   stream->dwError = 0;
250   
251   do {
252     long nDataSize = 0, nWideChars = 0;
253     stream->dwError = stream->pfnCallback(stream->dwCookie, 
254       (dwFormat & SF_UNICODE ? (BYTE *)wszText : buffer), 
255       STREAMIN_BUFFER_SIZE, &nDataSize);
256     
257     if (stream->dwError)
258       break;
259     if (!nDataSize)
260       break;
261       
262     if (!(dwFormat & SF_UNICODE))
263     {
264       /* FIXME? this is doomed to fail on true MBCS like UTF-8, luckily they're unlikely to be used as CP_ACP */
265       nWideChars = MultiByteToWideChar(CP_ACP, 0, buffer, nDataSize, wszText, STREAMIN_BUFFER_SIZE);
266     }
267     else
268       nWideChars = nDataSize>>1;
269     ME_InsertTextFromCursor(editor, 0, wszText, nWideChars, style);
270     if (nDataSize<STREAMIN_BUFFER_SIZE)
271       break;
272   } while(1);
273   ME_CommitUndo(editor);
274   ME_Repaint(editor);
275   return 0;
276 }
277
278 void ME_RTFCharAttrHook(RTF_Info *info)
279 {
280   CHARFORMAT2W fmt;
281   fmt.cbSize = sizeof(fmt);
282   fmt.dwMask = 0;
283   
284   switch(info->rtfMinor)
285   {
286     case rtfPlain:
287       /* FIXME add more flags once they're implemented */
288       fmt.dwMask = CFM_BOLD | CFM_ITALIC | CFM_UNDERLINE | CFM_STRIKEOUT | CFM_COLOR | CFM_BACKCOLOR | CFM_SIZE | CFM_WEIGHT;
289       fmt.dwEffects = CFE_AUTOCOLOR | CFE_AUTOBACKCOLOR;
290       fmt.yHeight = 12*20; /* 12pt */
291       fmt.wWeight = 400;
292       break;
293     case rtfBold:
294       fmt.dwMask = CFM_BOLD;
295       fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
296       break;
297     case rtfItalic:
298       fmt.dwMask = CFM_ITALIC;
299       fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
300       break;
301     case rtfUnderline:
302       fmt.dwMask = CFM_UNDERLINE;
303       fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
304       break;
305     case rtfStrikeThru:
306       fmt.dwMask = CFM_STRIKEOUT;
307       fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
308       break;
309     case rtfBackColor:
310       fmt.dwMask = CFM_BACKCOLOR;
311       fmt.dwEffects = 0;
312       if (info->rtfParam == 0)
313         fmt.dwEffects = CFE_AUTOBACKCOLOR;
314       else if (info->rtfParam != rtfNoParam)
315       {
316         RTFColor *c = RTFGetColor(info, info->rtfParam);
317         fmt.crTextColor = (c->rtfCBlue<<16)|(c->rtfCGreen<<8)|(c->rtfCRed);
318       }
319       break;
320     case rtfForeColor:
321       fmt.dwMask = CFM_COLOR;
322       fmt.dwEffects = 0;
323       if (info->rtfParam == 0)
324         fmt.dwEffects = CFE_AUTOCOLOR;
325       else if (info->rtfParam != rtfNoParam)
326       {
327         RTFColor *c = RTFGetColor(info, info->rtfParam);
328         fmt.crTextColor = (c->rtfCBlue<<16)|(c->rtfCGreen<<8)|(c->rtfCRed);
329       }
330       break;
331     case rtfFontNum:
332       if (info->rtfParam != rtfNoParam)
333       {
334         RTFFont *f = RTFGetFont(info, info->rtfParam);
335         if (f)
336         {
337           MultiByteToWideChar(CP_ACP, 0, f->rtfFName, -1, fmt.szFaceName, sizeof(fmt.szFaceName)/sizeof(WCHAR));
338           fmt.szFaceName[sizeof(fmt.szFaceName)/sizeof(WCHAR)-1] = '\0';
339           fmt.dwMask = CFM_FACE;
340         }
341       }
342       break;
343     case rtfFontSize:
344       fmt.dwMask = CFM_SIZE;
345       if (info->rtfParam != rtfNoParam)
346         fmt.yHeight = info->rtfParam*10;
347       break;
348   }
349   if (fmt.dwMask) {
350     ME_Style *style2;
351     RTFFlushOutputBuffer(info);
352     /* FIXME too slow ? how come ? */
353     style2 = ME_ApplyStyle(info->style, &fmt);
354     ME_ReleaseStyle(info->style);
355     info->style = style2;
356   }
357 }
358
359 void ME_RTFParAttrHook(RTF_Info *info)
360 {
361   PARAFORMAT2 fmt;
362   fmt.cbSize = sizeof(fmt);
363   fmt.dwMask = 0;
364   
365   switch(info->rtfMinor)
366   {
367   case rtfParDef: /* I'm not 100% sure what does it do, but I guess it restores default paragraph attributes */
368     fmt.dwMask = PFM_ALIGNMENT;
369     fmt.wAlignment = PFA_LEFT;
370     break;
371   case rtfQuadLeft:
372   case rtfQuadJust:
373     fmt.dwMask = PFM_ALIGNMENT;
374     fmt.wAlignment = PFA_LEFT;
375     break;
376   case rtfQuadRight:
377     fmt.dwMask = PFM_ALIGNMENT;
378     fmt.wAlignment = PFA_RIGHT;
379     break;
380   case rtfQuadCenter:
381     fmt.dwMask = PFM_ALIGNMENT;
382     fmt.wAlignment = PFA_CENTER;
383     break;
384   }  
385   if (fmt.dwMask) {
386     RTFFlushOutputBuffer(info);
387     /* FIXME too slow ? how come ?*/
388     ME_SetSelectionParaFormat(info->editor, &fmt);
389   }
390 }
391
392 void ME_RTFReadHook(RTF_Info *info) {
393   switch(info->rtfClass)
394   {
395     case rtfGroup:
396       switch(info->rtfMajor)
397       {
398         case rtfBeginGroup:
399           if (info->formatStackTop < maxCharFormatStack) {
400             info->formatStack[info->formatStackTop].cbSize = sizeof(info->formatStack[0]);
401             memcpy(&info->formatStack[info->formatStackTop], &info->style->fmt, sizeof(CHARFORMAT2W));
402             info->codePageStack[info->formatStackTop] = info->codePage;
403           }
404           info->formatStackTop++;
405           break;
406         case rtfEndGroup:
407         {
408           ME_Style *s;
409           RTFFlushOutputBuffer(info);
410           info->formatStackTop--;
411           /* FIXME too slow ? how come ? */
412           s = ME_ApplyStyle(info->style, &info->formatStack[info->formatStackTop]);
413           ME_ReleaseStyle(info->style);
414           info->style = s;
415           info->codePage = info->codePageStack[info->formatStackTop];
416           break;
417         }
418       }
419       break;
420     case rtfControl:
421       switch(info->rtfMajor)
422       {
423         case rtfCharAttr:
424           ME_RTFCharAttrHook(info);
425           break;
426         case rtfParAttr:
427           ME_RTFParAttrHook(info);
428           break;
429       }
430       break;
431   }
432 }
433
434 static LRESULT ME_StreamIn(ME_TextEditor *editor, DWORD format, EDITSTREAM *stream)
435 {
436   RTF_Info parser;
437   ME_Style *style;
438   int from, to, to2, nUndoMode;
439   ME_UndoItem *pUI;
440   int nEventMask = editor->nEventMask;
441
442   TRACE("%p %p\n", stream, editor->hWnd);
443   editor->nEventMask = 0;
444   
445   ME_GetSelection(editor, &from, &to);
446   if (format & SFF_SELECTION) {
447     style = ME_GetSelectionInsertStyle(editor);
448
449     ME_InternalDeleteText(editor, from, to-from);
450   }
451   else {
452     style = editor->pBuffer->pDefaultStyle;
453     ME_AddRefStyle(style);
454     SendMessageA(editor->hWnd, EM_SETSEL, 0, 0);    
455     ME_InternalDeleteText(editor, 0, ME_GetTextLength(editor));
456     from = to = 0;
457     ME_ClearTempStyle(editor);
458     /* FIXME restore default paragraph formatting ! */
459   }
460   
461   nUndoMode = editor->nUndoMode;
462   editor->nUndoMode = umIgnore;
463   if (format & SF_RTF) {
464     /* setup the RTF parser */
465     memset(&parser, 0, sizeof parser);
466     RTFSetEditStream(&parser, stream);
467     parser.rtfFormat = format&(SF_TEXT|SF_RTF);
468     parser.hwndEdit = editor->hWnd;
469     parser.editor = editor;
470     parser.style = style;
471     WriterInit(&parser);
472     RTFInit(&parser);
473     RTFSetReadHook(&parser, ME_RTFReadHook);
474     BeginFile(&parser);
475   
476     /* do the parsing */
477     RTFRead(&parser);
478     RTFFlushOutputBuffer(&parser);
479
480     style = parser.style;
481   }
482   else if (format & SF_TEXT)
483     ME_StreamInText(editor, format, stream, style);
484   else
485     ERR("EM_STREAMIN without SF_TEXT or SF_RTF\n");
486   ME_GetSelection(editor, &to, &to2);
487   /* put the cursor at the top */
488   if (!(format & SFF_SELECTION))
489     SendMessageA(editor->hWnd, EM_SETSEL, 0, 0);
490   else
491   {
492     /* FIXME where to put cursor now ? */
493   }
494   
495   editor->nUndoMode = nUndoMode;
496   pUI = ME_AddUndoItem(editor, diUndoDeleteRun, NULL);
497   TRACE("from %d to %d\n", from, to);
498   if (pUI && from < to)
499   {
500     pUI->nStart = from;
501     pUI->nLen = to-from;
502   }
503   ME_CommitUndo(editor);
504   ME_ReleaseStyle(style); 
505   editor->nEventMask = nEventMask;
506   ME_UpdateRepaint(editor);
507   if (!(format & SFF_SELECTION)) {
508     ME_ClearTempStyle(editor);
509     ME_EnsureVisible(editor, editor->pCursors[0].pRun);
510   }
511   ME_MoveCaret(editor);
512   ME_SendSelChange(editor);
513
514   return 0;
515 }
516
517
518 ME_DisplayItem *
519 ME_FindItemAtOffset(ME_TextEditor *editor, ME_DIType nItemType, int nOffset, int *nItemOffset)
520 {
521   ME_DisplayItem *item = ME_FindItemFwd(editor->pBuffer->pFirst, diParagraph);
522   
523   while (item && item->member.para.next_para->member.para.nCharOfs <= nOffset)
524     item = ME_FindItemFwd(item, diParagraph);
525
526   if (!item)
527     return item;
528
529   nOffset -= item->member.para.nCharOfs;
530   if (nItemType == diParagraph) {
531     if (nItemOffset)
532       *nItemOffset = nOffset;
533     return item;
534   }
535   
536   do {
537     item = ME_FindItemFwd(item, diRun);
538   } while (item && (item->member.run.nCharOfs + ME_StrLen(item->member.run.strText) <= nOffset));
539   if (item) {
540     nOffset -= item->member.run.nCharOfs;
541     if (nItemOffset)
542       *nItemOffset = nOffset;
543   }
544   return item;
545 }
546
547
548 ME_TextEditor *ME_MakeEditor(HWND hWnd) {
549   ME_TextEditor *ed = ALLOC_OBJ(ME_TextEditor);
550   HDC hDC;
551   int i;
552   ed->hWnd = hWnd;
553   ed->pBuffer = ME_MakeText();
554   hDC = GetDC(hWnd);
555   ME_MakeFirstParagraph(hDC, ed->pBuffer);
556   ReleaseDC(hWnd, hDC);
557   ed->bCaretShown = FALSE;
558   ed->nCursors = 3;
559   ed->pCursors = ALLOC_N_OBJ(ME_Cursor, ed->nCursors);
560   ed->pCursors[0].pRun = ME_FindItemFwd(ed->pBuffer->pFirst, diRun);
561   ed->pCursors[0].nOffset = 0;
562   ed->pCursors[1].pRun = ME_FindItemFwd(ed->pBuffer->pFirst, diRun);
563   ed->pCursors[1].nOffset = 0;
564   ed->nLastTotalLength = ed->nTotalLength = 0;
565   ed->nScrollPos = 0;
566   ed->nUDArrowX = -1;
567   ed->nSequence = 0;
568   ed->rgbBackColor = -1;
569   ed->bCaretAtEnd = FALSE;
570   ed->nEventMask = 0;
571   ed->nModifyStep = 0;
572   ed->pUndoStack = ed->pRedoStack = NULL;
573   ed->nUndoMode = umAddToUndo;
574   ed->nParagraphs = 1;
575   ed->nLastSelStart = ed->nLastSelEnd = 0;
576   for (i=0; i<HFONT_CACHE_SIZE; i++)
577   {
578     ed->pFontCache[i].nRefs = 0;
579     ed->pFontCache[i].nAge = 0;
580     ed->pFontCache[i].hFont = NULL;
581   }
582   ME_CheckCharOffsets(ed);
583   return ed;
584 }
585
586 typedef struct tagME_GlobalDestStruct
587 {
588   HGLOBAL hData;
589   int nLength;
590 } ME_GlobalDestStruct;
591
592 static DWORD CALLBACK ME_AppendToHGLOBAL(DWORD_PTR dwCookie, LPBYTE lpBuff, LONG cb, LONG *pcb)
593 {
594   ME_GlobalDestStruct *pData = (ME_GlobalDestStruct *)dwCookie;
595   int nMaxSize;
596   BYTE *pDest;
597   
598   nMaxSize = GlobalSize(pData->hData);
599   if (pData->nLength+cb+1 >= cb)
600   {
601     /* round up to 2^17 */
602     int nNewSize = (((nMaxSize+cb+1)|0x1FFFF)+1) & 0xFFFE0000;
603     pData->hData = GlobalReAlloc(pData->hData, nNewSize, 0);
604   }
605   pDest = (BYTE *)GlobalLock(pData->hData);
606   memcpy(pDest + pData->nLength, lpBuff, cb);
607   pData->nLength += cb;
608   pDest[pData->nLength] = '\0';
609   GlobalUnlock(pData->hData);
610   *pcb = cb;
611   
612   return 0;
613 }
614
615 static DWORD CALLBACK ME_ReadFromHGLOBALUnicode(DWORD_PTR dwCookie, LPBYTE lpBuff, LONG cb, LONG *pcb)
616 {
617   ME_GlobalDestStruct *pData = (ME_GlobalDestStruct *)dwCookie;
618   int i;
619   WORD *pSrc, *pDest;
620   
621   cb = cb >> 1;
622   pDest = (WORD *)lpBuff;
623   pSrc = (WORD *)GlobalLock(pData->hData);
624   for (i = 0; i<cb && pSrc[pData->nLength+i]; i++) {
625     pDest[i] = pSrc[pData->nLength+i];
626   }    
627   pData->nLength += i;
628   *pcb = 2*i;
629   GlobalUnlock(pData->hData);
630   return 0;
631 }
632
633 static DWORD CALLBACK ME_ReadFromHGLOBALRTF(DWORD_PTR dwCookie, LPBYTE lpBuff, LONG cb, LONG *pcb)
634 {
635   ME_GlobalDestStruct *pData = (ME_GlobalDestStruct *)dwCookie;
636   int i;
637   BYTE *pSrc, *pDest;
638   
639   pDest = lpBuff;
640   pSrc = (BYTE *)GlobalLock(pData->hData);
641   for (i = 0; i<cb && pSrc[pData->nLength+i]; i++) {
642     pDest[i] = pSrc[pData->nLength+i];
643   }    
644   pData->nLength += i;
645   *pcb = i;
646   GlobalUnlock(pData->hData);
647   return 0;
648 }
649
650 void ME_DestroyEditor(ME_TextEditor *editor)
651 {
652   ME_DisplayItem *pFirst = editor->pBuffer->pFirst;
653   ME_DisplayItem *p = pFirst, *pNext = NULL;
654   int i;
655   
656   ME_ClearTempStyle(editor);
657   ME_EmptyUndoStack(editor);
658   while(p) {
659     pNext = p->next;
660     ME_DestroyDisplayItem(p);    
661     p = pNext;
662   }
663   ME_ReleaseStyle(editor->pBuffer->pDefaultStyle);
664   for (i=0; i<HFONT_CACHE_SIZE; i++)
665   {
666     if (editor->pFontCache[i].hFont)
667       DeleteObject(editor->pFontCache[i].hFont);
668   }
669     
670   FREE_OBJ(editor);
671 }
672
673 #define UNSUPPORTED_MSG(e) \
674   case e: \
675     FIXME(#e ": stub\n"); \
676     return DefWindowProcW(hWnd, msg, wParam, lParam);
677
678 /******************************************************************
679  *        RichEditANSIWndProc (RICHED20.10)
680  */
681 LRESULT WINAPI RichEditANSIWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) {
682   HDC hDC;
683   PAINTSTRUCT ps;
684   SCROLLINFO si;
685   ME_TextEditor *editor = (ME_TextEditor *)GetWindowLongW(hWnd, 0);
686   TRACE("msg %d %08x %08lx\n", msg, wParam, lParam);
687   switch(msg) {
688   
689   UNSUPPORTED_MSG(EM_AUTOURLDETECT)
690   UNSUPPORTED_MSG(EM_CANPASTE)
691   UNSUPPORTED_MSG(EM_CHARFROMPOS)
692   UNSUPPORTED_MSG(EM_DISPLAYBAND)
693   UNSUPPORTED_MSG(EM_EXLIMITTEXT)
694   UNSUPPORTED_MSG(EM_EXLINEFROMCHAR)
695   UNSUPPORTED_MSG(EM_FINDTEXT)
696   UNSUPPORTED_MSG(EM_FINDTEXTEX)
697   UNSUPPORTED_MSG(EM_FINDWORDBREAK)
698   UNSUPPORTED_MSG(EM_FMTLINES)
699   UNSUPPORTED_MSG(EM_FORMATRANGE)
700   UNSUPPORTED_MSG(EM_GETFIRSTVISIBLELINE)
701   UNSUPPORTED_MSG(EM_GETIMECOMPMODE)
702   /* UNSUPPORTED_MSG(EM_GETIMESTATUS) missing in Wine headers */
703   UNSUPPORTED_MSG(EM_GETLANGOPTIONS)
704   UNSUPPORTED_MSG(EM_GETLIMITTEXT)
705   UNSUPPORTED_MSG(EM_GETLINE)
706   UNSUPPORTED_MSG(EM_GETLINECOUNT)
707   /* UNSUPPORTED_MSG(EM_GETOLEINTERFACE) separate stub */
708   UNSUPPORTED_MSG(EM_GETOPTIONS)
709   UNSUPPORTED_MSG(EM_GETRECT)
710   UNSUPPORTED_MSG(EM_GETREDONAME)
711   UNSUPPORTED_MSG(EM_GETTEXTMODE)
712   UNSUPPORTED_MSG(EM_GETUNDONAME)
713   UNSUPPORTED_MSG(EM_GETWORDBREAKPROC)
714   UNSUPPORTED_MSG(EM_GETWORDBREAKPROCEX)
715   UNSUPPORTED_MSG(EM_HIDESELECTION)
716   UNSUPPORTED_MSG(EM_LIMITTEXT) /* also known as EM_SETLIMITTEXT */
717   UNSUPPORTED_MSG(EM_LINEFROMCHAR)
718   UNSUPPORTED_MSG(EM_LINEINDEX)
719   UNSUPPORTED_MSG(EM_LINELENGTH)
720   UNSUPPORTED_MSG(EM_LINESCROLL)
721   UNSUPPORTED_MSG(EM_PASTESPECIAL)
722 /*  UNSUPPORTED_MSG(EM_POSFROMCHARS) missing in Wine headers */
723   UNSUPPORTED_MSG(EM_REQUESTRESIZE)
724   UNSUPPORTED_MSG(EM_SCROLL)
725   UNSUPPORTED_MSG(EM_SCROLLCARET)
726   UNSUPPORTED_MSG(EM_SELECTIONTYPE)
727   UNSUPPORTED_MSG(EM_SETLANGOPTIONS)
728   UNSUPPORTED_MSG(EM_SETOLECALLBACK)
729   UNSUPPORTED_MSG(EM_SETOPTIONS)
730   UNSUPPORTED_MSG(EM_SETRECT)
731   UNSUPPORTED_MSG(EM_SETRECTNP)
732   UNSUPPORTED_MSG(EM_SETTARGETDEVICE)
733   UNSUPPORTED_MSG(EM_SETTEXTMODE)
734   UNSUPPORTED_MSG(EM_SETUNDOLIMIT)
735   UNSUPPORTED_MSG(EM_SETWORDBREAKPROC)
736   UNSUPPORTED_MSG(EM_SETWORDBREAKPROCEX)
737   UNSUPPORTED_MSG(WM_SETFONT)
738   UNSUPPORTED_MSG(WM_STYLECHANGING)
739   UNSUPPORTED_MSG(WM_STYLECHANGED)
740 /*  UNSUPPORTED_MSG(WM_UNICHAR) FIXME missing in Wine headers */
741     
742 /* Messages specific to Richedit controls */
743   
744   case EM_STREAMIN:
745    return ME_StreamIn(editor, wParam, (EDITSTREAM*)lParam);
746   case EM_STREAMOUT:
747    return ME_StreamOut(editor, wParam, (EDITSTREAM *)lParam);
748   case WM_GETDLGCODE:
749   {
750     UINT code = DLGC_WANTCHARS|DLGC_WANTARROWS;
751     if (GetWindowLongW(hWnd, GWL_STYLE)&ES_WANTRETURN)
752       code |= 0; /* FIXME what can we do here ? ask for messages and censor them ? */
753     return code;
754   }
755   case WM_NCCREATE:
756   {
757     CREATESTRUCTW *pcs = (CREATESTRUCTW *)lParam;
758     editor = ME_MakeEditor(hWnd);
759     SetWindowLongW(hWnd, 0, (long)editor);
760     pcs = 0; /* ignore */
761     return TRUE;
762   }
763   case EM_EMPTYUNDOBUFFER:
764     ME_EmptyUndoStack(editor);
765     return 0;
766   case EM_GETSEL:
767   {
768     ME_GetSelection(editor, (int *)wParam, (int *)lParam);
769     if (!((wParam|lParam) & 0xFFFF0000))
770       return (lParam<<16)|wParam;
771     return -1;
772   }
773   case EM_EXGETSEL:
774   {
775     CHARRANGE *pRange = (CHARRANGE *)lParam;
776     ME_GetSelection(editor, (int *)&pRange->cpMin, (int *)&pRange->cpMax);
777     return 0;
778   }
779   case EM_CANUNDO:
780     return editor->pUndoStack != NULL;
781   case EM_CANREDO:
782     return editor->pRedoStack != NULL;
783   case EM_UNDO:
784     ME_Undo(editor);
785     return 0;
786   case EM_REDO:
787     ME_Redo(editor);
788     return 0;
789   case EM_SETSEL:
790   {
791     ME_SetSelection(editor, wParam, lParam);
792     ME_Repaint(editor);
793     ME_SendSelChange(editor);
794     return 0;
795   }
796   case EM_EXSETSEL:
797   {
798     CHARRANGE *pRange = (CHARRANGE *)lParam;
799     ME_SetSelection(editor, pRange->cpMin, pRange->cpMax);
800     /* FIXME optimize */
801     ME_Repaint(editor);
802     ME_SendSelChange(editor);
803     return 0;
804   }
805   case EM_SETBKGNDCOLOR:
806   {
807     LRESULT lColor = ME_GetBackColor(editor);
808     if (wParam)
809       editor->rgbBackColor = -1;
810     else
811       editor->rgbBackColor = lParam; 
812     InvalidateRect(hWnd, NULL, TRUE);
813     UpdateWindow(hWnd);
814     return lColor;
815   }
816   case EM_GETMODIFY:
817     return editor->nModifyStep == 0 ? 0 : 1;
818   case EM_SETMODIFY:
819   {
820     if (wParam)
821       editor->nModifyStep = 0x80000000;
822     else
823       editor->nModifyStep = 0;
824     
825     return 0;
826   }
827   case EM_SETREADONLY:
828   {
829     long nStyle = GetWindowLongW(hWnd, GWL_STYLE);
830     if (wParam)
831       nStyle |= ES_READONLY;
832     else
833       nStyle &= ~ES_READONLY;
834     SetWindowLongW(hWnd, GWL_STYLE, nStyle);
835     ME_Repaint(editor);
836     return 0;
837   }
838   case EM_SETEVENTMASK:
839     editor->nEventMask = lParam;
840     return 0;
841   case EM_GETEVENTMASK:
842     return editor->nEventMask;
843   case EM_SETCHARFORMAT:
844   {
845     CHARFORMAT2W buf, *p;
846     BOOL bRepaint = TRUE;
847     p = ME_ToCF2W(&buf, (CHARFORMAT2W *)lParam);
848     if (!wParam)
849       ME_SetDefaultCharFormat(editor, p);
850     else if (wParam == (SCF_WORD | SCF_SELECTION))
851       FIXME("word selection not supported\n");
852     else if (wParam == SCF_ALL)
853       ME_SetCharFormat(editor, 0, ME_GetTextLength(editor), p);
854     else {
855       int from, to;
856       ME_GetSelection(editor, &from, &to);
857       bRepaint = (from != to);
858       ME_SetSelectionCharFormat(editor, p);
859     }
860     ME_CommitUndo(editor);
861     if (bRepaint)
862       ME_UpdateRepaint(editor);
863     return 0;
864   }
865   case EM_GETCHARFORMAT:
866   {
867     CHARFORMAT2W tmp;
868     tmp.cbSize = sizeof(tmp);
869     if (!wParam)
870       ME_GetDefaultCharFormat(editor, &tmp);
871     else
872       ME_GetSelectionCharFormat(editor, &tmp);
873     ME_CopyToCFAny((CHARFORMAT2W *)lParam, &tmp);
874     return 0;
875   }
876   case EM_SETPARAFORMAT:
877     ME_SetSelectionParaFormat(editor, (PARAFORMAT2 *)lParam);
878     ME_UpdateRepaint(editor);
879     ME_CommitUndo(editor);
880     return 0;
881   case EM_GETPARAFORMAT:
882     ME_GetSelectionParaFormat(editor, (PARAFORMAT2 *)lParam);
883     return 0;
884   case WM_CLEAR:
885   {
886     int from, to;
887     ME_GetSelection(editor, &from, &to);
888     ME_InternalDeleteText(editor, from, to-from);
889     ME_CommitUndo(editor);
890     ME_UpdateRepaint(editor);
891     return 0;
892   }
893   case EM_REPLACESEL:
894   {
895     int from, to;
896     ME_Style *style;
897     LPWSTR wszText = ME_ToUnicode(hWnd, (void *)lParam);
898     size_t len = lstrlenW(wszText);
899     TRACE("EM_REPLACESEL - %s\n", debugstr_w(wszText));
900     
901     ME_GetSelection(editor, &from, &to);
902     style = ME_GetSelectionInsertStyle(editor);
903     ME_InternalDeleteText(editor, from, to-from);
904     ME_InsertTextFromCursor(editor, 0, wszText, len, style);
905     ME_ReleaseStyle(style);
906     ME_EndToUnicode(hWnd, wszText);
907     /* drop temporary style if line end */
908     /* FIXME question: does abc\n mean: put abc, clear temp style, put \n? (would require a change) */  
909     if (len>0 && wszText[len-1] == '\n')
910       ME_ClearTempStyle(editor);
911       
912     ME_CommitUndo(editor);
913     if (!wParam)
914       ME_EmptyUndoStack(editor);
915     ME_UpdateRepaint(editor);
916     return 0;
917   }
918   case WM_SETTEXT:
919   {
920     LPWSTR wszText = ME_ToUnicode(hWnd, (void *)lParam);
921     TRACE("WM_SETTEXT - %s\n", (char *)(wszText)); /* debugstr_w() */
922     ME_InternalDeleteText(editor, 0, ME_GetTextLength(editor));
923     /* uses default style! */
924     ME_InsertTextFromCursor(editor, 0, wszText, -1, editor->pBuffer->pDefaultStyle);
925     ME_EndToUnicode(hWnd, wszText);
926     ME_CommitUndo(editor);
927     ME_EmptyUndoStack(editor);
928     ME_UpdateRepaint(editor);
929     return 0;
930   }
931   case WM_PASTE:
932   {    
933     DWORD dwFormat = 0;
934     EDITSTREAM es;
935     ME_GlobalDestStruct gds;
936     UINT nRTFFormat = RegisterClipboardFormatA("Rich Text Format");
937     UINT cf = 0;
938
939     if (!OpenClipboard(hWnd))
940       return 0;
941     if (IsClipboardFormatAvailable(nRTFFormat))
942       cf = nRTFFormat, dwFormat = SF_RTF;
943     else if (IsClipboardFormatAvailable(CF_UNICODETEXT))
944       cf = CF_UNICODETEXT, dwFormat = SF_TEXT|SF_UNICODE;
945     else
946       return 0;
947
948     gds.hData = GetClipboardData(cf);
949     gds.nLength = 0;
950     es.dwCookie = (DWORD)&gds;
951     es.pfnCallback = dwFormat == SF_RTF ? ME_ReadFromHGLOBALRTF : ME_ReadFromHGLOBALUnicode;
952     SendMessageW(hWnd, EM_STREAMIN, dwFormat|SFF_SELECTION, (LPARAM)&es);
953     
954     CloseClipboard();
955     return 0;
956   }
957   case WM_CUT:
958   case WM_COPY:
959   {
960     int from, to, pars;
961     WCHAR *data;
962     HANDLE hData;
963     EDITSTREAM es;
964     ME_GlobalDestStruct gds;
965     
966     if (!OpenClipboard(hWnd))
967       return 0;
968       
969     EmptyClipboard();
970     ME_GetSelection(editor, &from, &to);
971     pars = ME_CountParagraphsBetween(editor, from, to);
972     hData = GlobalAlloc(GMEM_MOVEABLE, sizeof(WCHAR)*(to-from+pars+1));
973     data = (WCHAR *)GlobalLock(hData);
974     ME_GetTextW(editor, data, from, to-from, TRUE);
975     GlobalUnlock(hData);
976
977     gds.hData = GlobalAlloc(GMEM_MOVEABLE, 0);
978     gds.nLength = 0;
979     es.dwCookie = (DWORD)&gds;
980     es.pfnCallback = ME_AppendToHGLOBAL;
981     SendMessageW(hWnd, EM_STREAMOUT, SFF_SELECTION|SF_RTF, (LPARAM)&es);
982     GlobalReAlloc(gds.hData, gds.nLength+1, 0);
983     
984     SetClipboardData(CF_UNICODETEXT, hData);    
985     SetClipboardData(RegisterClipboardFormatA("Rich Text Format"), gds.hData);
986     
987     CloseClipboard();
988     if (msg == WM_CUT)
989     {
990       ME_InternalDeleteText(editor, from, to-from);
991       ME_CommitUndo(editor);
992       ME_UpdateRepaint(editor);
993     }
994     return 0;
995   }
996   case WM_GETTEXTLENGTH:
997     return ME_GetTextLength(editor);
998   case WM_GETTEXT:
999   {
1000     TEXTRANGEW tr; /* W and A differ only by rng->lpstrText */
1001     tr.chrg.cpMin = 0;
1002     tr.chrg.cpMax = wParam-1;
1003     tr.lpstrText = (WCHAR *)lParam;
1004     return RichEditANSIWndProc(hWnd, EM_GETTEXTRANGE, 0, (LPARAM)&tr);
1005   }
1006   case EM_GETSELTEXT:
1007   {
1008     int from, to;
1009     TEXTRANGEW tr; /* W and A differ only by rng->lpstrText */
1010     ME_GetSelection(editor, &from, &to);
1011     tr.chrg.cpMin = from;
1012     tr.chrg.cpMax = to;
1013     tr.lpstrText = (WCHAR *)lParam;
1014     return RichEditANSIWndProc(hWnd, EM_GETTEXTRANGE, 0, (LPARAM)&tr);
1015   }
1016   case EM_GETTEXTRANGE:
1017   {
1018     TEXTRANGEW *rng = (TEXTRANGEW *)lParam;
1019     if (IsWindowUnicode(hWnd))
1020       return ME_GetTextW(editor, rng->lpstrText, rng->chrg.cpMin, rng->chrg.cpMax-rng->chrg.cpMin, FALSE);
1021     else
1022     {
1023       int nLen = rng->chrg.cpMax-rng->chrg.cpMin;
1024       WCHAR *p = ALLOC_N_OBJ(WCHAR, nLen+1);
1025       int nChars = ME_GetTextW(editor, p, rng->chrg.cpMin, nLen, FALSE);
1026       /* FIXME this is a potential security hole (buffer overrun) 
1027          if you know more about wchar->mbyte conversion please explain
1028       */
1029       WideCharToMultiByte(CP_ACP, 0, p, nChars+1, (char *)rng->lpstrText, nLen+1, NULL, NULL);
1030       FREE_OBJ(p);
1031       return nChars;
1032     }
1033     return ME_GetTextW(editor, rng->lpstrText, rng->chrg.cpMin, rng->chrg.cpMax-rng->chrg.cpMin, FALSE);
1034   }
1035   case WM_CREATE:
1036     ME_CommitUndo(editor);
1037     ME_WrapMarkedParagraphs(editor);
1038     ME_MoveCaret(editor);
1039     return 0;
1040   case WM_DESTROY:
1041     ME_DestroyEditor(editor);
1042     SetWindowLongW(hWnd, 0, 0);
1043     return 0;
1044   case WM_LBUTTONDOWN:
1045     SetFocus(hWnd);
1046     ME_LButtonDown(editor, (short)LOWORD(lParam), (short)HIWORD(lParam));
1047     SetCapture(hWnd);
1048     break;
1049   case WM_MOUSEMOVE:
1050     if (GetCapture() == hWnd)
1051       ME_MouseMove(editor, (short)LOWORD(lParam), (short)HIWORD(lParam));
1052     break;
1053   case WM_LBUTTONUP:
1054     if (GetCapture() == hWnd)
1055       ReleaseCapture();
1056     break;
1057   case WM_PAINT:
1058     hDC = BeginPaint(hWnd, &ps);
1059     ME_PaintContent(editor, hDC, FALSE, &ps.rcPaint);
1060     EndPaint(hWnd, &ps);
1061     break;
1062   case WM_SETFOCUS:
1063     ME_ShowCaret(editor);
1064     ME_SendOldNotify(editor, EN_SETFOCUS);
1065     return 0;
1066   case WM_KILLFOCUS:
1067     ME_HideCaret(editor);
1068     ME_SendOldNotify(editor, EN_KILLFOCUS);
1069     return 0;
1070   case WM_ERASEBKGND:
1071   {
1072     HDC hDC = (HDC)wParam;
1073     RECT rc;
1074     COLORREF rgbBG = ME_GetBackColor(editor);
1075     if (GetUpdateRect(hWnd,&rc,TRUE))
1076     {
1077       HBRUSH hbr = CreateSolidBrush(rgbBG);
1078       FillRect(hDC, &rc, hbr);
1079       DeleteObject(hbr);
1080     }
1081     return 1;
1082   }
1083   case WM_COMMAND:
1084     TRACE("editor wnd command = %d\n", LOWORD(wParam));
1085     return 0;
1086   case WM_KEYDOWN:
1087     if (ME_ArrowKey(editor, LOWORD(wParam), GetKeyState(VK_CONTROL)<0)) {
1088       ME_CommitUndo(editor);
1089       ME_EnsureVisible(editor, editor->pCursors[0].pRun);
1090       HideCaret(hWnd);
1091       ME_MoveCaret(editor);
1092       ShowCaret(hWnd);
1093       return 0;
1094     }
1095     if (GetKeyState(VK_CONTROL)<0)
1096     {
1097       if (LOWORD(wParam)=='W')
1098       {
1099         CHARFORMAT2W chf;
1100         char buf[2048];
1101         ME_GetSelectionCharFormat(editor, &chf);
1102         ME_DumpStyleToBuf(&chf, buf);
1103         MessageBoxA(NULL, buf, "Style dump", MB_OK);
1104       }
1105       if (LOWORD(wParam)=='Q')
1106       {
1107         ME_CheckCharOffsets(editor);
1108       }
1109     }
1110     goto do_default;
1111   case WM_CHAR: 
1112   {
1113     WCHAR wstr;
1114     if (GetWindowLongW(editor->hWnd, GWL_STYLE) & ES_READONLY) {
1115       MessageBeep(MB_ICONERROR);
1116       return 0; /* FIXME really 0 ? */
1117     }
1118     wstr = LOWORD(wParam);
1119     if (((unsigned)wstr)>=' ' || wstr=='\r') {
1120       /* FIXME maybe it would make sense to call EM_REPLACESEL instead ? */
1121       ME_Style *style = ME_GetInsertStyle(editor, 0);
1122       ME_SaveTempStyle(editor);
1123       ME_InsertTextFromCursor(editor, 0, &wstr, 1, style);
1124       ME_ReleaseStyle(style);
1125       ME_CommitUndo(editor);
1126       ME_UpdateRepaint(editor);
1127     }
1128     return 0;
1129   }
1130   case WM_VSCROLL: 
1131   {
1132     si.cbSize = sizeof(SCROLLINFO);
1133     si.fMask = SIF_PAGE|SIF_POS|SIF_RANGE|SIF_TRACKPOS;
1134     GetScrollInfo(hWnd, SB_VERT, &si);
1135     switch(LOWORD(wParam)) {
1136     case SB_THUMBTRACK:
1137       SetScrollPos(hWnd, SB_VERT, si.nTrackPos, FALSE);
1138       ScrollWindow(hWnd, 0, si.nPos-si.nTrackPos, NULL, NULL);
1139       /* InvalidateRect(hWnd, NULL, TRUE); */
1140       UpdateWindow(hWnd);
1141       break;
1142     }
1143     break;
1144   }
1145   case WM_SIZE:
1146   {
1147     ME_MarkAllForWrapping(editor);
1148     ME_Repaint(editor);
1149     return DefWindowProcW(hWnd, msg, wParam, lParam);
1150   }
1151   case EM_GETOLEINTERFACE:
1152   {
1153     LPVOID *ppvObj = (LPVOID*) lParam;
1154     FIXME("EM_GETOLEINTERFACE %p: stub\n", ppvObj);
1155     return CreateIRichEditOle(ppvObj);
1156   }
1157   default:
1158   do_default:
1159     return DefWindowProcW(hWnd, msg, wParam, lParam);
1160   }
1161   return 0L;
1162 }
1163
1164 /******************************************************************
1165  *        RichEdit10ANSIWndProc (RICHED20.9)
1166  */
1167 LRESULT WINAPI RichEdit10ANSIWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
1168 {
1169   /* FIXME: this is NOT the same as 2.0 version */
1170   return RichEditANSIWndProc(hWnd, msg, wParam, lParam);
1171 }
1172
1173 void ME_SendOldNotify(ME_TextEditor *editor, int nCode)
1174 {
1175   HWND hWnd = editor->hWnd;
1176   SendMessageA(GetParent(hWnd), WM_COMMAND, (nCode<<16)|GetWindowLongW(hWnd, GWLP_ID), (LPARAM)hWnd);
1177 }
1178
1179 int ME_CountParagraphsBetween(ME_TextEditor *editor, int from, int to)
1180 {
1181   ME_DisplayItem *item = ME_FindItemFwd(editor->pBuffer->pFirst, diParagraph);
1182   int i = 0;
1183   
1184   while(item && item->member.para.next_para->member.para.nCharOfs <= from)
1185     item = item->member.para.next_para;
1186   if (!item)
1187     return 0;
1188   while(item && item->member.para.next_para->member.para.nCharOfs <= to) {
1189     item = item->member.para.next_para;
1190     i++;
1191   }
1192   return i;
1193 }
1194
1195
1196 int ME_GetTextW(ME_TextEditor *editor, WCHAR *buffer, int nStart, int nChars, int bCRLF)
1197 {
1198   ME_DisplayItem *item = ME_FindItemAtOffset(editor, diRun, nStart, &nStart);
1199   int nWritten = 0;
1200   
1201   if (!item) {
1202     *buffer = L'\0';
1203     return 0;
1204   }
1205   assert(item);    
1206   
1207   if (nStart)
1208   {
1209     int nLen = ME_StrLen(item->member.run.strText) - nStart;
1210     if (nLen > nChars)
1211       nLen = nChars;
1212     CopyMemory(buffer, item->member.run.strText->szData + nStart, sizeof(WCHAR)*nLen);
1213     nChars -= nLen;
1214     nWritten += nLen;
1215     if (!nChars)
1216       return nWritten;
1217     buffer += nLen;
1218     nStart = 0;
1219     item = ME_FindItemFwd(item, diRun);
1220   }
1221   
1222   while(nChars && item)
1223   {
1224     int nLen = ME_StrLen(item->member.run.strText);
1225     if (nLen > nChars)
1226       nLen = nChars;
1227       
1228     if (item->member.run.nFlags & MERF_ENDPARA)
1229     {
1230       if (bCRLF) {
1231         *buffer++ = '\r';
1232         nWritten++;
1233       }        
1234       *buffer = '\n';
1235       assert(nLen == 1);
1236     }
1237     else      
1238       CopyMemory(buffer, item->member.run.strText->szData, sizeof(WCHAR)*nLen);
1239     nChars -= nLen;
1240     nWritten += nLen;
1241     buffer += nLen;    
1242       
1243     if (!nChars)
1244     {
1245       *buffer = L'\0';
1246       return nWritten;
1247     }
1248     item = ME_FindItemFwd(item, diRun);
1249   }
1250   *buffer = L'\0';
1251   return nWritten;  
1252 }
1253
1254 static WCHAR wszClassName[] = {'R', 'i', 'c', 'h', 'E', 'd', 'i', 't', '2', '0', 'W', 0};
1255 static WCHAR wszClassName50[] = {'R', 'i', 'c', 'h', 'E', 'd', 'i', 't', '5', '0', 'W', 0};
1256
1257 void ME_RegisterEditorClass(HINSTANCE hInstance)
1258 {
1259   BOOL bResult;
1260   WNDCLASSW wcW;
1261   WNDCLASSA wcA;
1262   
1263   wcW.style = CS_HREDRAW | CS_VREDRAW;
1264   wcW.lpfnWndProc = RichEditANSIWndProc;
1265   wcW.cbClsExtra = 0;
1266   wcW.cbWndExtra = 4;
1267   wcW.hInstance = NULL; /* hInstance would register DLL-local class */
1268   wcW.hIcon = NULL;
1269   wcW.hCursor = LoadCursorW(NULL, MAKEINTRESOURCEW(IDC_IBEAM));
1270   wcW.hbrBackground = (HBRUSH)GetStockObject(NULL_BRUSH);
1271   wcW.lpszMenuName = NULL;
1272   wcW.lpszClassName = wszClassName;
1273   bResult = RegisterClassW(&wcW);  
1274   assert(bResult);
1275   wcW.lpszClassName = wszClassName50;
1276   bResult = RegisterClassW(&wcW);  
1277   assert(bResult);
1278
1279   wcA.style = CS_HREDRAW | CS_VREDRAW;
1280   wcA.lpfnWndProc = RichEditANSIWndProc;
1281   wcA.cbClsExtra = 0;
1282   wcA.cbWndExtra = 4;
1283   wcA.hInstance = NULL; /* hInstance would register DLL-local class */
1284   wcA.hIcon = NULL;
1285   wcA.hCursor = LoadCursorW(NULL, MAKEINTRESOURCEW(IDC_IBEAM));
1286   wcA.hbrBackground = (HBRUSH)GetStockObject(NULL_BRUSH);
1287   wcA.lpszMenuName = NULL;
1288   wcA.lpszClassName = "RichEdit20A";
1289   bResult = RegisterClassA(&wcA);  
1290   assert(bResult);
1291   wcA.lpszClassName = "RichEdit50A";
1292   bResult = RegisterClassA(&wcA);  
1293   assert(bResult);
1294 }
1295
1296 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
1297 {
1298     TRACE("\n");
1299     switch (fdwReason)
1300     {
1301     case DLL_PROCESS_ATTACH:
1302       DisableThreadLibraryCalls(hinstDLL);
1303       me_heap = HeapCreate (0, 0x10000, 0);
1304       ME_RegisterEditorClass(hinstDLL);
1305       break;
1306
1307     case DLL_PROCESS_DETACH:
1308       UnregisterClassW(wszClassName, 0);
1309       UnregisterClassW(wszClassName50, 0);
1310       UnregisterClassA("RichEdit20A", 0);
1311       UnregisterClassA("RichEdit50A", 0);
1312       HeapDestroy (me_heap);
1313       me_heap = NULL;
1314       break;
1315     }
1316     return TRUE;
1317 }
1318
1319 /******************************************************************
1320  *        CreateTextServices (RICHED20.4)
1321  *
1322  * FIXME should be ITextHost instead of void*
1323  */
1324 HRESULT WINAPI CreateTextServices(IUnknown *punkOuter, void *pITextHost,
1325     IUnknown **ppUnk)
1326 {
1327   FIXME("stub\n");
1328   /* FIXME should support aggregation */
1329   if (punkOuter)
1330     return CLASS_E_NOAGGREGATION;
1331     
1332   return E_FAIL; /* E_NOTIMPL isn't allowed by MSDN */
1333 }
1334
1335 /******************************************************************
1336  *        REExtendedRegisterClass (RICHED20.8)
1337  *
1338  * FIXME undocumented
1339  */
1340 void WINAPI REExtendedRegisterClass(void)
1341 {
1342   FIXME("stub\n");
1343 }