2 * RichEdit - functions dealing with editor object
4 * Copyright 2004 by Krzysztof Foltman
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.
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.
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
22 API implementation status:
24 Messages (ANSI versions not done yet)
25 - EM_AUTOURLDETECT 2.0
41 - EM_GETAUTOURLDETECT 2.0
42 - EM_GETBIDIOPTIONS 3.0
43 - EM_GETCHARFORMAT (partly done)
46 - EM_GETFIRSTVISIBLELINE
47 - EM_GETIMECOLOR 1.0asian
48 - EM_GETIMECOMPMODE 2.0
49 - EM_GETIMEOPTIONS 1.0asian
51 - EM_GETLANGOPTIONS 2.0
54 - EM_GETLINECOUNT returns number of rows, not of paragraphs
59 - EM_GETPASSWORDCHAR 2.0
60 - EM_GETPUNCTUATION 1.0asian
64 + EM_GETSELTEXT (ANSI&Unicode)
70 ? + EM_GETTEXTRANGE (ANSI&Unicode)
71 - EM_GETTYPOGRAPHYOPTIONS 3.0
74 - EM_GETWORDBREAKPROCEX
75 - EM_GETWORDWRAPMODE 1.0asian
87 + EM_REPLACESEL (proper style?) ANSI&Unicode
91 - EM_SETBIDIOPTIONS 3.0
93 - EM_SETCHARFORMAT (partly done, no ANSI)
95 + EM_SETEVENTMASK (few notifications supported)
97 - EM_SETIMECOLOR 1.0asian
98 - EM_SETIMEOPTIONS 1.0asian
99 - EM_SETLANGOPTIONS 2.0
101 + EM_SETMODIFY (not sure if implementation is correct)
106 - EM_SETPASSWORDCHAR 2.0
107 - EM_SETPUNCTUATION 1.0asian
108 + EM_SETREADONLY no beep on modification attempt
110 - EM_SETRECTNP (EM_SETRECT without repainting) - not supported in RICHEDIT
112 - EM_SETSCROLLPOS 3.0
117 - EM_SETTYPOGRAPHYOPTIONS 3.0
118 - EM_SETUNDOLIMIT 2.0
119 - EM_SETWORDBREAKPROC
120 - EM_SETWORDBREAKPROCEX
121 - EM_SETWORDWRAPMODE 1.0asian
123 - EM_SHOWSCROLLBAR 2.0
124 - EM_STOPGROUPTYPING 2.0
125 + EM_STREAMIN (can't fall back to text when the RTF isn't really RTF)
132 + WM_GETDLGCODE (the current implementation is incomplete)
133 + WM_GETTEXT (ANSI&Unicode)
134 + WM_GETTEXTLENGTH (ANSI version sucks)
137 + WM_SETTEXT (resets undo stack !) (proper style?) ANSI&Unicode
139 - WM_STYLECHANGED (things like read-only flag)
144 * EN_CHANGE (sent from the wrong place)
161 * EN_UPDATE (sent from the wrong place)
169 - ES_DISABLENOSCROLL (scrollbar is always visible)
170 - ES_EX_NOCALLOLEINIT
172 - ES_MULTILINE (currently single line controls aren't supported)
174 - ES_READONLY (I'm not sure if beeping is the proper behaviour)
180 - ES_WANTRETURN (don't know how to do WM_GETDLGCODE part)
187 * RICHED20 TODO (incomplete):
189 * - messages/styles/notifications listed above
191 * - add remaining CHARFORMAT/PARAFORMAT fields
192 * - right/center align should strip spaces from the beginning
193 * - more advanced navigation (Ctrl-arrows)
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)
201 * - how to implement EM_FORMATRANGE and EM_DISPLAYBAND ? (Mission Impossible)
202 * - italic caret with italic fonts
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)
209 * Bugs that are probably fixed, but not so easy to verify:
210 * - EN_UPDATE/EN_CHANGE are handled very incorrectly (should be OK now)
211 * - undo for ME_JoinParagraphs doesn't store paragraph format ? (it does)
212 * - check/fix artificial EOL logic (bCursorAtEnd, hardly logical)
213 * - caret shouldn't be displayed when selection isn't empty
214 * - check refcounting in style management functions (looks perfect now, but no bugs is suspicious)
215 * - undo for setting default format (done, might be buggy)
216 * - styles might be not released properly (looks like they work like charm, but who knows?
224 #define NO_SHLWAPI_STREAM
229 WINE_DEFAULT_DEBUG_CHANNEL(richedit
);
232 HANDLE me_heap
= NULL
;
234 ME_TextBuffer
*ME_MakeText() {
236 ME_TextBuffer
*buf
= ALLOC_OBJ(ME_TextBuffer
);
238 ME_DisplayItem
*p1
= ME_MakeDI(diTextStart
);
239 ME_DisplayItem
*p2
= ME_MakeDI(diTextEnd
);
245 p1
->member
.para
.next_para
= p2
;
246 p2
->member
.para
.prev_para
= p1
;
247 p2
->member
.para
.nCharOfs
= 0;
251 buf
->pCharStyle
= NULL
;
257 static LRESULT
ME_StreamInText(ME_TextEditor
*editor
, DWORD dwFormat
, ME_InStream
*stream
, ME_Style
*style
)
259 WCHAR wszText
[STREAMIN_BUFFER_SIZE
+1];
262 TRACE("%08lx %p\n", dwFormat
, stream
);
269 ME_StreamInFill(stream
);
270 if (stream
->editstream
->dwError
)
276 if (!(dwFormat
& SF_UNICODE
))
278 /* FIXME? this is doomed to fail on true MBCS like UTF-8, luckily they're unlikely to be used as CP_ACP */
279 nWideChars
= MultiByteToWideChar(CP_ACP
, 0, stream
->buffer
, stream
->dwSize
, wszText
, STREAMIN_BUFFER_SIZE
);
284 nWideChars
= stream
->dwSize
>> 1;
285 pText
= (WCHAR
*)stream
->buffer
;
288 ME_InsertTextFromCursor(editor
, 0, pText
, nWideChars
, style
);
289 if (stream
->dwSize
< STREAMIN_BUFFER_SIZE
)
293 ME_CommitUndo(editor
);
298 void ME_RTFCharAttrHook(RTF_Info
*info
)
301 fmt
.cbSize
= sizeof(fmt
);
304 switch(info
->rtfMinor
)
307 /* FIXME add more flags once they're implemented */
308 fmt
.dwMask
= CFM_BOLD
| CFM_ITALIC
| CFM_UNDERLINE
| CFM_STRIKEOUT
| CFM_COLOR
| CFM_BACKCOLOR
| CFM_SIZE
| CFM_WEIGHT
;
309 fmt
.dwEffects
= CFE_AUTOCOLOR
| CFE_AUTOBACKCOLOR
;
310 fmt
.yHeight
= 12*20; /* 12pt */
314 fmt
.dwMask
= CFM_BOLD
;
315 fmt
.dwEffects
= info
->rtfParam
? fmt
.dwMask
: 0;
318 fmt
.dwMask
= CFM_ITALIC
;
319 fmt
.dwEffects
= info
->rtfParam
? fmt
.dwMask
: 0;
322 fmt
.dwMask
= CFM_UNDERLINE
;
323 fmt
.dwEffects
= info
->rtfParam
? fmt
.dwMask
: 0;
326 fmt
.dwMask
= CFM_STRIKEOUT
;
327 fmt
.dwEffects
= info
->rtfParam
? fmt
.dwMask
: 0;
330 fmt
.dwMask
= CFM_BACKCOLOR
;
332 if (info
->rtfParam
== 0)
333 fmt
.dwEffects
= CFE_AUTOBACKCOLOR
;
334 else if (info
->rtfParam
!= rtfNoParam
)
336 RTFColor
*c
= RTFGetColor(info
, info
->rtfParam
);
337 fmt
.crTextColor
= (c
->rtfCBlue
<<16)|(c
->rtfCGreen
<<8)|(c
->rtfCRed
);
341 fmt
.dwMask
= CFM_COLOR
;
343 if (info
->rtfParam
== 0)
344 fmt
.dwEffects
= CFE_AUTOCOLOR
;
345 else if (info
->rtfParam
!= rtfNoParam
)
347 RTFColor
*c
= RTFGetColor(info
, info
->rtfParam
);
348 fmt
.crTextColor
= (c
->rtfCBlue
<<16)|(c
->rtfCGreen
<<8)|(c
->rtfCRed
);
352 if (info
->rtfParam
!= rtfNoParam
)
354 RTFFont
*f
= RTFGetFont(info
, info
->rtfParam
);
357 MultiByteToWideChar(CP_ACP
, 0, f
->rtfFName
, -1, fmt
.szFaceName
, sizeof(fmt
.szFaceName
)/sizeof(WCHAR
));
358 fmt
.szFaceName
[sizeof(fmt
.szFaceName
)/sizeof(WCHAR
)-1] = '\0';
359 fmt
.bCharSet
= f
->rtfFCharSet
;
360 fmt
.dwMask
= CFM_FACE
| CFM_CHARSET
;
365 fmt
.dwMask
= CFM_SIZE
;
366 if (info
->rtfParam
!= rtfNoParam
)
367 fmt
.yHeight
= info
->rtfParam
*10;
372 RTFFlushOutputBuffer(info
);
373 /* FIXME too slow ? how come ? */
374 style2
= ME_ApplyStyle(info
->style
, &fmt
);
375 ME_ReleaseStyle(info
->style
);
376 info
->style
= style2
;
380 /* FIXME this function doesn't get any information about context of the RTF tag, which is very bad,
381 the same tags mean different things in different contexts */
382 void ME_RTFParAttrHook(RTF_Info
*info
)
385 fmt
.cbSize
= sizeof(fmt
);
388 switch(info
->rtfMinor
)
390 case rtfParDef
: /* I'm not 100% sure what does it do, but I guess it restores default paragraph attributes */
391 fmt
.dwMask
= PFM_ALIGNMENT
| PFM_TABSTOPS
| PFM_OFFSET
| PFM_STARTINDENT
;
392 fmt
.wAlignment
= PFA_LEFT
;
394 fmt
.dxOffset
= fmt
.dxStartIndent
= 0;
397 ME_GetSelectionParaFormat(info
->editor
, &fmt
);
398 fmt
.dwMask
= PFM_STARTINDENT
;
399 fmt
.dxStartIndent
= info
->rtfParam
+ fmt
.dxOffset
;
404 ME_GetSelectionParaFormat(info
->editor
, &fmt
);
405 first
= fmt
.dxStartIndent
;
406 left
= info
->rtfParam
;
407 fmt
.dwMask
= PFM_STARTINDENT
|PFM_OFFSET
;
408 fmt
.dxStartIndent
= first
+ left
;
409 fmt
.dxOffset
= -first
;
413 fmt
.dwMask
= PFM_RIGHTINDENT
;
414 fmt
.dxRightIndent
= info
->rtfParam
;
418 fmt
.dwMask
= PFM_ALIGNMENT
;
419 fmt
.wAlignment
= PFA_LEFT
;
422 fmt
.dwMask
= PFM_ALIGNMENT
;
423 fmt
.wAlignment
= PFA_RIGHT
;
426 fmt
.dwMask
= PFM_ALIGNMENT
;
427 fmt
.wAlignment
= PFA_CENTER
;
430 ME_GetSelectionParaFormat(info
->editor
, &fmt
);
431 if (!(fmt
.dwMask
& PFM_TABSTOPS
))
433 fmt
.dwMask
|= PFM_TABSTOPS
;
436 if (fmt
.cTabCount
< MAX_TAB_STOPS
)
437 fmt
.rgxTabs
[fmt
.cTabCount
++] = info
->rtfParam
;
441 RTFFlushOutputBuffer(info
);
442 /* FIXME too slow ? how come ?*/
443 ME_SetSelectionParaFormat(info
->editor
, &fmt
);
447 void ME_RTFReadHook(RTF_Info
*info
) {
448 switch(info
->rtfClass
)
451 switch(info
->rtfMajor
)
454 if (info
->stackTop
< maxStack
) {
455 memcpy(&info
->stack
[info
->stackTop
].fmt
, &info
->style
->fmt
, sizeof(CHARFORMAT2W
));
456 info
->stack
[info
->stackTop
].codePage
= info
->codePage
;
457 info
->stack
[info
->stackTop
].unicodeLength
= info
->unicodeLength
;
464 RTFFlushOutputBuffer(info
);
466 /* FIXME too slow ? how come ? */
467 s
= ME_ApplyStyle(info
->style
, &info
->stack
[info
->stackTop
].fmt
);
468 ME_ReleaseStyle(info
->style
);
470 info
->codePage
= info
->stack
[info
->stackTop
].codePage
;
471 info
->unicodeLength
= info
->stack
[info
->stackTop
].unicodeLength
;
477 switch(info
->rtfMajor
)
480 ME_RTFCharAttrHook(info
);
483 ME_RTFParAttrHook(info
);
491 ME_StreamInFill(ME_InStream
*stream
)
493 stream
->editstream
->dwError
= stream
->editstream
->pfnCallback(stream
->editstream
->dwCookie
,
495 sizeof(stream
->buffer
),
500 static LRESULT
ME_StreamIn(ME_TextEditor
*editor
, DWORD format
, EDITSTREAM
*stream
)
504 int from
, to
, to2
, nUndoMode
;
506 int nEventMask
= editor
->nEventMask
;
507 ME_InStream inStream
;
509 TRACE("stream==%p hWnd==%p format==0x%X\n", stream
, editor
->hWnd
, (UINT
)format
);
510 editor
->nEventMask
= 0;
512 ME_GetSelection(editor
, &from
, &to
);
513 if (format
& SFF_SELECTION
) {
514 style
= ME_GetSelectionInsertStyle(editor
);
516 ME_InternalDeleteText(editor
, from
, to
-from
);
519 style
= editor
->pBuffer
->pDefaultStyle
;
520 ME_AddRefStyle(style
);
521 SendMessageA(editor
->hWnd
, EM_SETSEL
, 0, 0);
522 ME_InternalDeleteText(editor
, 0, ME_GetTextLength(editor
));
524 ME_ClearTempStyle(editor
);
525 /* FIXME restore default paragraph formatting ! */
528 nUndoMode
= editor
->nUndoMode
;
529 editor
->nUndoMode
= umIgnore
;
531 inStream
.editstream
= stream
;
532 inStream
.editstream
->dwError
= 0;
538 /* Check if it's really RTF, and if it is not, use plain text */
539 ME_StreamInFill(&inStream
);
540 if (!inStream
.editstream
->dwError
)
542 if (strncmp(inStream
.buffer
, "{\\rtf1", 6) && strncmp(inStream
.buffer
, "{\\urtf", 6))
550 if (!inStream
.editstream
->dwError
)
552 if (format
& SF_RTF
) {
553 /* setup the RTF parser */
554 memset(&parser
, 0, sizeof parser
);
555 RTFSetEditStream(&parser
, &inStream
);
556 parser
.rtfFormat
= format
&(SF_TEXT
|SF_RTF
);
557 parser
.hwndEdit
= editor
->hWnd
;
558 parser
.editor
= editor
;
559 parser
.style
= style
;
562 RTFSetReadHook(&parser
, ME_RTFReadHook
);
567 RTFFlushOutputBuffer(&parser
);
570 style
= parser
.style
;
572 else if (format
& SF_TEXT
)
573 ME_StreamInText(editor
, format
, &inStream
, style
);
575 ERR("EM_STREAMIN without SF_TEXT or SF_RTF\n");
576 ME_GetSelection(editor
, &to
, &to2
);
577 /* put the cursor at the top */
578 if (!(format
& SFF_SELECTION
))
579 SendMessageA(editor
->hWnd
, EM_SETSEL
, 0, 0);
582 /* FIXME where to put cursor now ? */
586 editor
->nUndoMode
= nUndoMode
;
587 pUI
= ME_AddUndoItem(editor
, diUndoDeleteRun
, NULL
);
588 TRACE("from %d to %d\n", from
, to
);
589 if (pUI
&& from
< to
)
594 ME_CommitUndo(editor
);
595 ME_ReleaseStyle(style
);
596 editor
->nEventMask
= nEventMask
;
597 InvalidateRect(editor
->hWnd
, NULL
, TRUE
);
598 ME_UpdateRepaint(editor
);
599 if (!(format
& SFF_SELECTION
)) {
600 ME_ClearTempStyle(editor
);
602 ME_MoveCaret(editor
);
603 ME_SendSelChange(editor
);
610 ME_FindItemAtOffset(ME_TextEditor
*editor
, ME_DIType nItemType
, int nOffset
, int *nItemOffset
)
612 ME_DisplayItem
*item
= ME_FindItemFwd(editor
->pBuffer
->pFirst
, diParagraph
);
614 while (item
&& item
->member
.para
.next_para
->member
.para
.nCharOfs
<= nOffset
)
615 item
= ME_FindItemFwd(item
, diParagraph
);
620 nOffset
-= item
->member
.para
.nCharOfs
;
621 if (nItemType
== diParagraph
) {
623 *nItemOffset
= nOffset
;
628 item
= ME_FindItemFwd(item
, diRun
);
629 } while (item
&& (item
->member
.run
.nCharOfs
+ ME_StrLen(item
->member
.run
.strText
) <= nOffset
));
631 nOffset
-= item
->member
.run
.nCharOfs
;
633 *nItemOffset
= nOffset
;
639 ME_TextEditor
*ME_MakeEditor(HWND hWnd
) {
640 ME_TextEditor
*ed
= ALLOC_OBJ(ME_TextEditor
);
644 ed
->pBuffer
= ME_MakeText();
646 ME_MakeFirstParagraph(hDC
, ed
->pBuffer
);
647 ReleaseDC(hWnd
, hDC
);
648 ed
->bCaretShown
= FALSE
;
650 ed
->pCursors
= ALLOC_N_OBJ(ME_Cursor
, ed
->nCursors
);
651 ed
->pCursors
[0].pRun
= ME_FindItemFwd(ed
->pBuffer
->pFirst
, diRun
);
652 ed
->pCursors
[0].nOffset
= 0;
653 ed
->pCursors
[1].pRun
= ME_FindItemFwd(ed
->pBuffer
->pFirst
, diRun
);
654 ed
->pCursors
[1].nOffset
= 0;
655 ed
->nLastTotalLength
= ed
->nTotalLength
= 0;
658 ed
->rgbBackColor
= -1;
659 ed
->bCaretAtEnd
= FALSE
;
662 ed
->pUndoStack
= ed
->pRedoStack
= NULL
;
663 ed
->nUndoMode
= umAddToUndo
;
665 ed
->nLastSelStart
= ed
->nLastSelEnd
= 0;
667 for (i
=0; i
<HFONT_CACHE_SIZE
; i
++)
669 ed
->pFontCache
[i
].nRefs
= 0;
670 ed
->pFontCache
[i
].nAge
= 0;
671 ed
->pFontCache
[i
].hFont
= NULL
;
673 ME_CheckCharOffsets(ed
);
677 typedef struct tagME_GlobalDestStruct
681 } ME_GlobalDestStruct
;
683 static DWORD CALLBACK
ME_AppendToHGLOBAL(DWORD_PTR dwCookie
, LPBYTE lpBuff
, LONG cb
, LONG
*pcb
)
685 ME_GlobalDestStruct
*pData
= (ME_GlobalDestStruct
*)dwCookie
;
689 nMaxSize
= GlobalSize(pData
->hData
);
690 if (pData
->nLength
+cb
+1 >= cb
)
692 /* round up to 2^17 */
693 int nNewSize
= (((nMaxSize
+cb
+1)|0x1FFFF)+1) & 0xFFFE0000;
694 pData
->hData
= GlobalReAlloc(pData
->hData
, nNewSize
, 0);
696 pDest
= (BYTE
*)GlobalLock(pData
->hData
);
697 memcpy(pDest
+ pData
->nLength
, lpBuff
, cb
);
698 pData
->nLength
+= cb
;
699 pDest
[pData
->nLength
] = '\0';
700 GlobalUnlock(pData
->hData
);
706 static DWORD CALLBACK
ME_ReadFromHGLOBALUnicode(DWORD_PTR dwCookie
, LPBYTE lpBuff
, LONG cb
, LONG
*pcb
)
708 ME_GlobalDestStruct
*pData
= (ME_GlobalDestStruct
*)dwCookie
;
713 pDest
= (WORD
*)lpBuff
;
714 pSrc
= (WORD
*)GlobalLock(pData
->hData
);
715 for (i
= 0; i
<cb
&& pSrc
[pData
->nLength
+i
]; i
++) {
716 pDest
[i
] = pSrc
[pData
->nLength
+i
];
720 GlobalUnlock(pData
->hData
);
724 static DWORD CALLBACK
ME_ReadFromHGLOBALRTF(DWORD_PTR dwCookie
, LPBYTE lpBuff
, LONG cb
, LONG
*pcb
)
726 ME_GlobalDestStruct
*pData
= (ME_GlobalDestStruct
*)dwCookie
;
731 pSrc
= (BYTE
*)GlobalLock(pData
->hData
);
732 for (i
= 0; i
<cb
&& pSrc
[pData
->nLength
+i
]; i
++) {
733 pDest
[i
] = pSrc
[pData
->nLength
+i
];
737 GlobalUnlock(pData
->hData
);
741 void ME_DestroyEditor(ME_TextEditor
*editor
)
743 ME_DisplayItem
*pFirst
= editor
->pBuffer
->pFirst
;
744 ME_DisplayItem
*p
= pFirst
, *pNext
= NULL
;
747 ME_ClearTempStyle(editor
);
748 ME_EmptyUndoStack(editor
);
751 ME_DestroyDisplayItem(p
);
754 ME_ReleaseStyle(editor
->pBuffer
->pDefaultStyle
);
755 for (i
=0; i
<HFONT_CACHE_SIZE
; i
++)
757 if (editor
->pFontCache
[i
].hFont
)
758 DeleteObject(editor
->pFontCache
[i
].hFont
);
764 static WCHAR wszClassName
[] = {'R', 'i', 'c', 'h', 'E', 'd', 'i', 't', '2', '0', 'W', 0};
765 static WCHAR wszClassName50
[] = {'R', 'i', 'c', 'h', 'E', 'd', 'i', 't', '5', '0', 'W', 0};
767 BOOL WINAPI
DllMain(HINSTANCE hinstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
772 case DLL_PROCESS_ATTACH
:
773 DisableThreadLibraryCalls(hinstDLL
);
774 me_heap
= HeapCreate (0, 0x10000, 0);
775 ME_RegisterEditorClass(hinstDLL
);
778 case DLL_PROCESS_DETACH
:
779 UnregisterClassW(wszClassName
, 0);
780 UnregisterClassW(wszClassName50
, 0);
781 UnregisterClassA("RichEdit20A", 0);
782 UnregisterClassA("RichEdit50A", 0);
783 HeapDestroy (me_heap
);
791 #define UNSUPPORTED_MSG(e) \
793 FIXME(#e ": stub\n"); \
794 return DefWindowProcW(hWnd, msg, wParam, lParam);
796 /******************************************************************
797 * RichEditANSIWndProc (RICHED20.10)
799 LRESULT WINAPI
RichEditANSIWndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
) {
803 ME_TextEditor
*editor
= (ME_TextEditor
*)GetWindowLongW(hWnd
, 0);
804 TRACE("msg %d %08x %08lx\n", msg
, wParam
, lParam
);
807 UNSUPPORTED_MSG(EM_AUTOURLDETECT
)
808 UNSUPPORTED_MSG(EM_CHARFROMPOS
)
809 UNSUPPORTED_MSG(EM_DISPLAYBAND
)
810 UNSUPPORTED_MSG(EM_EXLIMITTEXT
)
811 UNSUPPORTED_MSG(EM_EXLINEFROMCHAR
)
812 UNSUPPORTED_MSG(EM_FINDTEXT
)
813 UNSUPPORTED_MSG(EM_FINDTEXTEX
)
814 UNSUPPORTED_MSG(EM_FINDWORDBREAK
)
815 UNSUPPORTED_MSG(EM_FMTLINES
)
816 UNSUPPORTED_MSG(EM_FORMATRANGE
)
817 UNSUPPORTED_MSG(EM_GETAUTOURLDETECT
)
818 UNSUPPORTED_MSG(EM_GETBIDIOPTIONS
)
819 UNSUPPORTED_MSG(EM_GETEDITSTYLE
)
820 UNSUPPORTED_MSG(EM_GETFIRSTVISIBLELINE
)
821 UNSUPPORTED_MSG(EM_GETIMECOMPMODE
)
822 /* UNSUPPORTED_MSG(EM_GETIMESTATUS) missing in Wine headers */
823 UNSUPPORTED_MSG(EM_GETLANGOPTIONS
)
824 UNSUPPORTED_MSG(EM_GETLIMITTEXT
)
825 UNSUPPORTED_MSG(EM_GETLINE
)
826 UNSUPPORTED_MSG(EM_GETLINECOUNT
)
827 /* UNSUPPORTED_MSG(EM_GETOLEINTERFACE) separate stub */
828 UNSUPPORTED_MSG(EM_GETOPTIONS
)
829 UNSUPPORTED_MSG(EM_GETPASSWORDCHAR
)
830 UNSUPPORTED_MSG(EM_GETRECT
)
831 UNSUPPORTED_MSG(EM_GETREDONAME
)
832 UNSUPPORTED_MSG(EM_GETSCROLLPOS
)
833 UNSUPPORTED_MSG(EM_GETTEXTEX
)
834 UNSUPPORTED_MSG(EM_GETTEXTLENGTHEX
)
835 UNSUPPORTED_MSG(EM_GETTEXTMODE
)
836 UNSUPPORTED_MSG(EM_GETTYPOGRAPHYOPTIONS
)
837 UNSUPPORTED_MSG(EM_GETUNDONAME
)
838 UNSUPPORTED_MSG(EM_GETWORDBREAKPROC
)
839 UNSUPPORTED_MSG(EM_GETWORDBREAKPROCEX
)
840 UNSUPPORTED_MSG(EM_GETZOOM
)
841 UNSUPPORTED_MSG(EM_HIDESELECTION
)
842 UNSUPPORTED_MSG(EM_LIMITTEXT
) /* also known as EM_SETLIMITTEXT */
843 UNSUPPORTED_MSG(EM_LINEFROMCHAR
)
844 UNSUPPORTED_MSG(EM_LINEINDEX
)
845 UNSUPPORTED_MSG(EM_LINELENGTH
)
846 UNSUPPORTED_MSG(EM_PASTESPECIAL
)
847 /* UNSUPPORTED_MSG(EM_POSFROMCHARS) missing in Wine headers */
848 UNSUPPORTED_MSG(EM_REQUESTRESIZE
)
849 UNSUPPORTED_MSG(EM_SCROLL
)
850 UNSUPPORTED_MSG(EM_SCROLLCARET
)
851 UNSUPPORTED_MSG(EM_SELECTIONTYPE
)
852 UNSUPPORTED_MSG(EM_SETBIDIOPTIONS
)
853 UNSUPPORTED_MSG(EM_SETEDITSTYLE
)
854 UNSUPPORTED_MSG(EM_SETFONTSIZE
)
855 UNSUPPORTED_MSG(EM_SETLANGOPTIONS
)
856 UNSUPPORTED_MSG(EM_SETOLECALLBACK
)
857 UNSUPPORTED_MSG(EM_SETOPTIONS
)
858 UNSUPPORTED_MSG(EM_SETPALETTE
)
859 UNSUPPORTED_MSG(EM_SETPASSWORDCHAR
)
860 UNSUPPORTED_MSG(EM_SETRECT
)
861 UNSUPPORTED_MSG(EM_SETRECTNP
)
862 UNSUPPORTED_MSG(EM_SETSCROLLPOS
)
863 UNSUPPORTED_MSG(EM_SETTABSTOPS
)
864 UNSUPPORTED_MSG(EM_SETTARGETDEVICE
)
865 UNSUPPORTED_MSG(EM_SETTEXTEX
)
866 UNSUPPORTED_MSG(EM_SETTEXTMODE
)
867 UNSUPPORTED_MSG(EM_SETTYPOGRAPHYOPTIONS
)
868 UNSUPPORTED_MSG(EM_SETUNDOLIMIT
)
869 UNSUPPORTED_MSG(EM_SETWORDBREAKPROC
)
870 UNSUPPORTED_MSG(EM_SETWORDBREAKPROCEX
)
871 UNSUPPORTED_MSG(EM_SHOWSCROLLBAR
)
872 UNSUPPORTED_MSG(EM_SETZOOM
)
873 UNSUPPORTED_MSG(WM_SETFONT
)
874 UNSUPPORTED_MSG(WM_STYLECHANGING
)
875 UNSUPPORTED_MSG(WM_STYLECHANGED
)
876 /* UNSUPPORTED_MSG(WM_UNICHAR) FIXME missing in Wine headers */
878 /* Messages specific to Richedit controls */
881 return ME_StreamIn(editor
, wParam
, (EDITSTREAM
*)lParam
);
883 return ME_StreamOut(editor
, wParam
, (EDITSTREAM
*)lParam
);
886 UINT code
= DLGC_WANTCHARS
|DLGC_WANTARROWS
;
887 if (GetWindowLongW(hWnd
, GWL_STYLE
)&ES_WANTRETURN
)
888 code
|= 0; /* FIXME what can we do here ? ask for messages and censor them ? */
893 CREATESTRUCTW
*pcs
= (CREATESTRUCTW
*)lParam
;
894 editor
= ME_MakeEditor(hWnd
);
895 SetWindowLongW(hWnd
, 0, (long)editor
);
896 pcs
= 0; /* ignore */
899 case EM_EMPTYUNDOBUFFER
:
900 ME_EmptyUndoStack(editor
);
904 ME_GetSelection(editor
, (int *)wParam
, (int *)lParam
);
905 if (!((wParam
|lParam
) & 0xFFFF0000))
906 return (lParam
<<16)|wParam
;
911 CHARRANGE
*pRange
= (CHARRANGE
*)lParam
;
912 ME_GetSelection(editor
, (int *)&pRange
->cpMin
, (int *)&pRange
->cpMax
);
916 return editor
->pUndoStack
!= NULL
;
918 return editor
->pRedoStack
!= NULL
;
927 ME_SetSelection(editor
, wParam
, lParam
);
929 ME_SendSelChange(editor
);
934 CHARRANGE
*pRange
= (CHARRANGE
*)lParam
;
935 ME_SetSelection(editor
, pRange
->cpMin
, pRange
->cpMax
);
938 ME_SendSelChange(editor
);
941 case EM_SETBKGNDCOLOR
:
943 LRESULT lColor
= ME_GetBackColor(editor
);
945 editor
->rgbBackColor
= -1;
947 editor
->rgbBackColor
= lParam
;
948 InvalidateRect(hWnd
, NULL
, TRUE
);
953 return editor
->nModifyStep
== 0 ? 0 : 1;
957 editor
->nModifyStep
= 0x80000000;
959 editor
->nModifyStep
= 0;
965 long nStyle
= GetWindowLongW(hWnd
, GWL_STYLE
);
967 nStyle
|= ES_READONLY
;
969 nStyle
&= ~ES_READONLY
;
970 SetWindowLongW(hWnd
, GWL_STYLE
, nStyle
);
974 case EM_SETEVENTMASK
:
975 editor
->nEventMask
= lParam
;
977 case EM_GETEVENTMASK
:
978 return editor
->nEventMask
;
979 case EM_SETCHARFORMAT
:
981 CHARFORMAT2W buf
, *p
;
982 BOOL bRepaint
= TRUE
;
983 p
= ME_ToCF2W(&buf
, (CHARFORMAT2W
*)lParam
);
985 ME_SetDefaultCharFormat(editor
, p
);
986 else if (wParam
== (SCF_WORD
| SCF_SELECTION
))
987 FIXME("word selection not supported\n");
988 else if (wParam
== SCF_ALL
)
989 ME_SetCharFormat(editor
, 0, ME_GetTextLength(editor
), p
);
992 ME_GetSelection(editor
, &from
, &to
);
993 bRepaint
= (from
!= to
);
994 ME_SetSelectionCharFormat(editor
, p
);
996 ME_CommitUndo(editor
);
998 ME_UpdateRepaint(editor
);
1001 case EM_GETCHARFORMAT
:
1004 tmp
.cbSize
= sizeof(tmp
);
1006 ME_GetDefaultCharFormat(editor
, &tmp
);
1008 ME_GetSelectionCharFormat(editor
, &tmp
);
1009 ME_CopyToCFAny((CHARFORMAT2W
*)lParam
, &tmp
);
1012 case EM_SETPARAFORMAT
:
1013 ME_SetSelectionParaFormat(editor
, (PARAFORMAT2
*)lParam
);
1014 ME_UpdateRepaint(editor
);
1015 ME_CommitUndo(editor
);
1017 case EM_GETPARAFORMAT
:
1018 ME_GetSelectionParaFormat(editor
, (PARAFORMAT2
*)lParam
);
1022 int nPos
= editor
->nScrollPosY
, nEnd
= editor
->nTotalLength
- editor
->sizeWindow
.cy
;
1023 nPos
+= 8 * lParam
; /* FIXME follow the original */
1028 if (nPos
!= editor
->nScrollPosY
) {
1029 ScrollWindow(hWnd
, 0, editor
->nScrollPosY
-nPos
, NULL
, NULL
);
1030 editor
->nScrollPosY
= nPos
;
1031 SetScrollPos(hWnd
, SB_VERT
, nPos
, TRUE
);
1034 return TRUE
; /* Should return false if a single line richedit control */
1039 ME_GetSelection(editor
, &from
, &to
);
1040 ME_InternalDeleteText(editor
, from
, to
-from
);
1041 ME_CommitUndo(editor
);
1042 ME_UpdateRepaint(editor
);
1049 LPWSTR wszText
= ME_ToUnicode(hWnd
, (void *)lParam
);
1050 size_t len
= lstrlenW(wszText
);
1051 TRACE("EM_REPLACESEL - %s\n", debugstr_w(wszText
));
1053 ME_GetSelection(editor
, &from
, &to
);
1054 style
= ME_GetSelectionInsertStyle(editor
);
1055 ME_InternalDeleteText(editor
, from
, to
-from
);
1056 ME_InsertTextFromCursor(editor
, 0, wszText
, len
, style
);
1057 ME_ReleaseStyle(style
);
1058 ME_EndToUnicode(hWnd
, wszText
);
1059 /* drop temporary style if line end */
1060 /* FIXME question: does abc\n mean: put abc, clear temp style, put \n? (would require a change) */
1061 if (len
>0 && wszText
[len
-1] == '\n')
1062 ME_ClearTempStyle(editor
);
1064 ME_CommitUndo(editor
);
1066 ME_EmptyUndoStack(editor
);
1067 ME_UpdateRepaint(editor
);
1072 LPWSTR wszText
= ME_ToUnicode(hWnd
, (void *)lParam
);
1073 TRACE("WM_SETTEXT - %s\n", (char *)(wszText
)); /* debugstr_w() */
1074 ME_InternalDeleteText(editor
, 0, ME_GetTextLength(editor
));
1075 /* uses default style! */
1076 ME_InsertTextFromCursor(editor
, 0, wszText
, -1, editor
->pBuffer
->pDefaultStyle
);
1077 ME_EndToUnicode(hWnd
, wszText
);
1078 ME_CommitUndo(editor
);
1079 ME_EmptyUndoStack(editor
);
1080 ME_UpdateRepaint(editor
);
1085 UINT nRTFFormat
= RegisterClipboardFormatA("Rich Text Format");
1086 if (IsClipboardFormatAvailable(nRTFFormat
))
1088 if (IsClipboardFormatAvailable(CF_UNICODETEXT
))
1096 ME_GlobalDestStruct gds
;
1097 UINT nRTFFormat
= RegisterClipboardFormatA("Rich Text Format");
1100 if (IsClipboardFormatAvailable(nRTFFormat
))
1101 cf
= nRTFFormat
, dwFormat
= SF_RTF
;
1102 else if (IsClipboardFormatAvailable(CF_UNICODETEXT
))
1103 cf
= CF_UNICODETEXT
, dwFormat
= SF_TEXT
|SF_UNICODE
;
1107 if (!OpenClipboard(hWnd
))
1109 gds
.hData
= GetClipboardData(cf
);
1111 es
.dwCookie
= (DWORD
)&gds
;
1112 es
.pfnCallback
= dwFormat
== SF_RTF
? ME_ReadFromHGLOBALRTF
: ME_ReadFromHGLOBALUnicode
;
1113 SendMessageW(hWnd
, EM_STREAMIN
, dwFormat
|SFF_SELECTION
, (LPARAM
)&es
);
1125 ME_GlobalDestStruct gds
;
1127 if (!OpenClipboard(hWnd
))
1131 ME_GetSelection(editor
, &from
, &to
);
1132 pars
= ME_CountParagraphsBetween(editor
, from
, to
);
1133 hData
= GlobalAlloc(GMEM_MOVEABLE
, sizeof(WCHAR
)*(to
-from
+pars
+1));
1134 data
= (WCHAR
*)GlobalLock(hData
);
1135 ME_GetTextW(editor
, data
, from
, to
-from
, TRUE
);
1136 GlobalUnlock(hData
);
1138 gds
.hData
= GlobalAlloc(GMEM_MOVEABLE
, 0);
1140 es
.dwCookie
= (DWORD
)&gds
;
1141 es
.pfnCallback
= ME_AppendToHGLOBAL
;
1142 SendMessageW(hWnd
, EM_STREAMOUT
, SFF_SELECTION
|SF_RTF
, (LPARAM
)&es
);
1143 GlobalReAlloc(gds
.hData
, gds
.nLength
+1, 0);
1145 SetClipboardData(CF_UNICODETEXT
, hData
);
1146 SetClipboardData(RegisterClipboardFormatA("Rich Text Format"), gds
.hData
);
1151 ME_InternalDeleteText(editor
, from
, to
-from
);
1152 ME_CommitUndo(editor
);
1153 ME_UpdateRepaint(editor
);
1157 case WM_GETTEXTLENGTH
:
1158 return ME_GetTextLength(editor
);
1161 TEXTRANGEW tr
; /* W and A differ only by rng->lpstrText */
1163 tr
.chrg
.cpMax
= wParam
-1;
1164 tr
.lpstrText
= (WCHAR
*)lParam
;
1165 return RichEditANSIWndProc(hWnd
, EM_GETTEXTRANGE
, 0, (LPARAM
)&tr
);
1170 TEXTRANGEW tr
; /* W and A differ only by rng->lpstrText */
1171 ME_GetSelection(editor
, &from
, &to
);
1172 tr
.chrg
.cpMin
= from
;
1174 tr
.lpstrText
= (WCHAR
*)lParam
;
1175 return RichEditANSIWndProc(hWnd
, EM_GETTEXTRANGE
, 0, (LPARAM
)&tr
);
1177 case EM_GETTEXTRANGE
:
1179 TEXTRANGEW
*rng
= (TEXTRANGEW
*)lParam
;
1180 if (IsWindowUnicode(hWnd
))
1181 return ME_GetTextW(editor
, rng
->lpstrText
, rng
->chrg
.cpMin
, rng
->chrg
.cpMax
-rng
->chrg
.cpMin
, FALSE
);
1184 int nLen
= rng
->chrg
.cpMax
-rng
->chrg
.cpMin
;
1185 WCHAR
*p
= ALLOC_N_OBJ(WCHAR
, nLen
+1);
1186 int nChars
= ME_GetTextW(editor
, p
, rng
->chrg
.cpMin
, nLen
, FALSE
);
1187 /* FIXME this is a potential security hole (buffer overrun)
1188 if you know more about wchar->mbyte conversion please explain
1190 WideCharToMultiByte(CP_ACP
, 0, p
, nChars
+1, (char *)rng
->lpstrText
, nLen
+1, NULL
, NULL
);
1194 return ME_GetTextW(editor
, rng
->lpstrText
, rng
->chrg
.cpMin
, rng
->chrg
.cpMax
-rng
->chrg
.cpMin
, FALSE
);
1197 ME_CommitUndo(editor
);
1198 ME_WrapMarkedParagraphs(editor
);
1199 ME_MoveCaret(editor
);
1202 ME_DestroyEditor(editor
);
1203 SetWindowLongW(hWnd
, 0, 0);
1205 case WM_LBUTTONDOWN
:
1207 ME_LButtonDown(editor
, (short)LOWORD(lParam
), (short)HIWORD(lParam
));
1211 if (GetCapture() == hWnd
)
1212 ME_MouseMove(editor
, (short)LOWORD(lParam
), (short)HIWORD(lParam
));
1215 if (GetCapture() == hWnd
)
1219 hDC
= BeginPaint(hWnd
, &ps
);
1220 ME_PaintContent(editor
, hDC
, FALSE
, &ps
.rcPaint
);
1221 EndPaint(hWnd
, &ps
);
1224 ME_ShowCaret(editor
);
1225 ME_SendOldNotify(editor
, EN_SETFOCUS
);
1228 ME_HideCaret(editor
);
1229 ME_SendOldNotify(editor
, EN_KILLFOCUS
);
1233 HDC hDC
= (HDC
)wParam
;
1235 COLORREF rgbBG
= ME_GetBackColor(editor
);
1236 if (GetUpdateRect(hWnd
,&rc
,TRUE
))
1238 HBRUSH hbr
= CreateSolidBrush(rgbBG
);
1239 FillRect(hDC
, &rc
, hbr
);
1245 TRACE("editor wnd command = %d\n", LOWORD(wParam
));
1248 if (ME_ArrowKey(editor
, LOWORD(wParam
), GetKeyState(VK_CONTROL
)<0)) {
1249 ME_CommitUndo(editor
);
1250 ME_EnsureVisible(editor
, editor
->pCursors
[0].pRun
);
1252 ME_MoveCaret(editor
);
1256 if (GetKeyState(VK_CONTROL
)<0)
1258 if (LOWORD(wParam
)=='W')
1262 ME_GetSelectionCharFormat(editor
, &chf
);
1263 ME_DumpStyleToBuf(&chf
, buf
);
1264 MessageBoxA(NULL
, buf
, "Style dump", MB_OK
);
1266 if (LOWORD(wParam
)=='Q')
1268 ME_CheckCharOffsets(editor
);
1275 if (GetWindowLongW(editor
->hWnd
, GWL_STYLE
) & ES_READONLY
) {
1276 MessageBeep(MB_ICONERROR
);
1277 return 0; /* FIXME really 0 ? */
1279 wstr
= LOWORD(wParam
);
1280 if (((unsigned)wstr
)>=' ' || wstr
=='\r' || wstr
=='\t') {
1281 /* FIXME maybe it would make sense to call EM_REPLACESEL instead ? */
1282 ME_Style
*style
= ME_GetInsertStyle(editor
, 0);
1283 ME_SaveTempStyle(editor
);
1284 ME_InsertTextFromCursor(editor
, 0, &wstr
, 1, style
);
1285 ME_ReleaseStyle(style
);
1286 ME_CommitUndo(editor
);
1287 ME_UpdateRepaint(editor
);
1293 int nPos
= editor
->nScrollPosY
;
1294 si
.cbSize
= sizeof(SCROLLINFO
);
1295 si
.fMask
= SIF_PAGE
|SIF_POS
|SIF_RANGE
|SIF_TRACKPOS
;
1296 GetScrollInfo(hWnd
, SB_VERT
, &si
);
1297 switch(LOWORD(wParam
)) {
1299 nPos
-= 24; /* FIXME follow the original */
1300 if (nPos
<0) nPos
= 0;
1304 int nEnd
= editor
->nTotalLength
- editor
->sizeWindow
.cy
;
1305 nPos
+= 24; /* FIXME follow the original */
1306 if (nPos
>=nEnd
) nPos
= nEnd
;
1310 nPos
-= editor
->sizeWindow
.cy
;
1311 if (nPos
<0) nPos
= 0;
1314 nPos
+= editor
->sizeWindow
.cy
;
1315 if (nPos
>=editor
->nTotalLength
) nPos
= editor
->nTotalLength
-1;
1318 case SB_THUMBPOSITION
:
1319 nPos
= si
.nTrackPos
;
1322 if (nPos
!= editor
->nScrollPosY
) {
1323 ScrollWindow(hWnd
, 0, editor
->nScrollPosY
-nPos
, NULL
, NULL
);
1324 editor
->nScrollPosY
= nPos
;
1325 SetScrollPos(hWnd
, SB_VERT
, nPos
, TRUE
);
1332 int gcWheelDelta
= 0, nPos
= editor
->nScrollPosY
, nEnd
= editor
->nTotalLength
- editor
->sizeWindow
.cy
;
1333 UINT pulScrollLines
;
1334 SystemParametersInfoW(SPI_GETWHEELSCROLLLINES
,0, &pulScrollLines
, 0);
1335 gcWheelDelta
-= GET_WHEEL_DELTA_WPARAM(wParam
);
1336 if (abs(gcWheelDelta
) >= WHEEL_DELTA
&& pulScrollLines
)
1337 nPos
+= pulScrollLines
* (gcWheelDelta
/ WHEEL_DELTA
) * 8; /* FIXME follow the original */
1342 if (nPos
!= editor
->nScrollPosY
) {
1343 ScrollWindow(hWnd
, 0, editor
->nScrollPosY
-nPos
, NULL
, NULL
);
1344 editor
->nScrollPosY
= nPos
;
1345 SetScrollPos(hWnd
, SB_VERT
, nPos
, TRUE
);
1352 ME_MarkAllForWrapping(editor
);
1353 ME_WrapMarkedParagraphs(editor
);
1354 ME_UpdateScrollBar(editor
);
1356 return DefWindowProcW(hWnd
, msg
, wParam
, lParam
);
1358 case EM_GETOLEINTERFACE
:
1360 LPVOID
*ppvObj
= (LPVOID
*) lParam
;
1361 FIXME("EM_GETOLEINTERFACE %p: stub\n", ppvObj
);
1362 return CreateIRichEditOle(ppvObj
);
1366 return DefWindowProcW(hWnd
, msg
, wParam
, lParam
);
1371 /******************************************************************
1372 * RichEdit10ANSIWndProc (RICHED20.9)
1374 LRESULT WINAPI
RichEdit10ANSIWndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
1376 /* FIXME: this is NOT the same as 2.0 version */
1377 return RichEditANSIWndProc(hWnd
, msg
, wParam
, lParam
);
1380 void ME_SendOldNotify(ME_TextEditor
*editor
, int nCode
)
1382 HWND hWnd
= editor
->hWnd
;
1383 SendMessageA(GetParent(hWnd
), WM_COMMAND
, (nCode
<<16)|GetWindowLongW(hWnd
, GWLP_ID
), (LPARAM
)hWnd
);
1386 int ME_CountParagraphsBetween(ME_TextEditor
*editor
, int from
, int to
)
1388 ME_DisplayItem
*item
= ME_FindItemFwd(editor
->pBuffer
->pFirst
, diParagraph
);
1391 while(item
&& item
->member
.para
.next_para
->member
.para
.nCharOfs
<= from
)
1392 item
= item
->member
.para
.next_para
;
1395 while(item
&& item
->member
.para
.next_para
->member
.para
.nCharOfs
<= to
) {
1396 item
= item
->member
.para
.next_para
;
1403 int ME_GetTextW(ME_TextEditor
*editor
, WCHAR
*buffer
, int nStart
, int nChars
, int bCRLF
)
1405 ME_DisplayItem
*item
= ME_FindItemAtOffset(editor
, diRun
, nStart
, &nStart
);
1416 int nLen
= ME_StrLen(item
->member
.run
.strText
) - nStart
;
1419 CopyMemory(buffer
, item
->member
.run
.strText
->szData
+ nStart
, sizeof(WCHAR
)*nLen
);
1426 item
= ME_FindItemFwd(item
, diRun
);
1429 while(nChars
&& item
)
1431 int nLen
= ME_StrLen(item
->member
.run
.strText
);
1435 if (item
->member
.run
.nFlags
& MERF_ENDPARA
)
1445 CopyMemory(buffer
, item
->member
.run
.strText
->szData
, sizeof(WCHAR
)*nLen
);
1455 item
= ME_FindItemFwd(item
, diRun
);
1461 void ME_RegisterEditorClass(HINSTANCE hInstance
)
1467 wcW
.style
= CS_HREDRAW
| CS_VREDRAW
;
1468 wcW
.lpfnWndProc
= RichEditANSIWndProc
;
1471 wcW
.hInstance
= NULL
; /* hInstance would register DLL-local class */
1473 wcW
.hCursor
= LoadCursorW(NULL
, MAKEINTRESOURCEW(IDC_IBEAM
));
1474 wcW
.hbrBackground
= (HBRUSH
)GetStockObject(NULL_BRUSH
);
1475 wcW
.lpszMenuName
= NULL
;
1476 wcW
.lpszClassName
= wszClassName
;
1477 bResult
= RegisterClassW(&wcW
);
1479 wcW
.lpszClassName
= wszClassName50
;
1480 bResult
= RegisterClassW(&wcW
);
1483 wcA
.style
= CS_HREDRAW
| CS_VREDRAW
;
1484 wcA
.lpfnWndProc
= RichEditANSIWndProc
;
1487 wcA
.hInstance
= NULL
; /* hInstance would register DLL-local class */
1489 wcA
.hCursor
= LoadCursorW(NULL
, MAKEINTRESOURCEW(IDC_IBEAM
));
1490 wcA
.hbrBackground
= (HBRUSH
)GetStockObject(NULL_BRUSH
);
1491 wcA
.lpszMenuName
= NULL
;
1492 wcA
.lpszClassName
= "RichEdit20A";
1493 bResult
= RegisterClassA(&wcA
);
1495 wcA
.lpszClassName
= "RichEdit50A";
1496 bResult
= RegisterClassA(&wcA
);
1499 /******************************************************************
1500 * CreateTextServices (RICHED20.4)
1502 * FIXME should be ITextHost instead of void*
1504 HRESULT WINAPI
CreateTextServices(IUnknown
*punkOuter
, void *pITextHost
,
1508 /* FIXME should support aggregation */
1510 return CLASS_E_NOAGGREGATION
;
1512 return E_FAIL
; /* E_NOTIMPL isn't allowed by MSDN */
1515 /******************************************************************
1516 * REExtendedRegisterClass (RICHED20.8)
1518 * FIXME undocumented
1520 void WINAPI
REExtendedRegisterClass(void)