2 * RichEdit - functions dealing with editor object
4 * Copyright 2004 by Krzysztof Foltman
5 * Copyright 2005 by Cihan Altinay
6 * Copyright 2005 by Phil Krylov
7 * Copyright 2008 Eric Pouech
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 API implementation status:
27 Messages (ANSI versions not done yet)
28 + EM_AUTOURLDETECT 2.0
39 + EM_FINDTEXT (only FR_DOWN flag implemented)
40 + EM_FINDTEXTEX (only FR_DOWN flag implemented)
44 + EM_GETAUTOURLDETECT 2.0
45 - EM_GETBIDIOPTIONS 3.0
46 - EM_GETCHARFORMAT (partly done)
49 + EM_GETFIRSTVISIBLELINE (can be optimized if needed)
50 - EM_GETIMECOLOR 1.0asian
51 - EM_GETIMECOMPMODE 2.0
52 - EM_GETIMEOPTIONS 1.0asian
54 - EM_GETLANGOPTIONS 2.0
57 + EM_GETLINECOUNT returns number of rows, not of paragraphs
62 + EM_GETPASSWORDCHAR 2.0
63 - EM_GETPUNCTUATION 1.0asian
67 + EM_GETSELTEXT (ANSI&Unicode)
71 + EM_GETTEXTLENGTHEX (GTL_PRECISE unimplemented)
73 ? + EM_GETTEXTRANGE (ANSI&Unicode)
74 - EM_GETTYPOGRAPHYOPTIONS 3.0
77 - EM_GETWORDBREAKPROCEX
78 - EM_GETWORDWRAPMODE 1.0asian
81 + EM_LIMITTEXT (Also called EM_SETLIMITTEXT)
90 + EM_REPLACESEL (proper style?) ANSI&Unicode
94 - EM_SETBIDIOPTIONS 3.0
96 + EM_SETCHARFORMAT (partly done, no ANSI)
98 + EM_SETEVENTMASK (few notifications supported)
100 - EM_SETIMECOLOR 1.0asian
101 - EM_SETIMEOPTIONS 1.0asian
103 - EM_SETLANGOPTIONS 2.0
106 + EM_SETMODIFY (not sure if implementation is correct)
108 + EM_SETOPTIONS (partially implemented)
111 + EM_SETPASSWORDCHAR 2.0
112 - EM_SETPUNCTUATION 1.0asian
113 + EM_SETREADONLY no beep on modification attempt
115 + EM_SETRECTNP (EM_SETRECT without repainting)
117 + EM_SETSCROLLPOS 3.0
119 - EM_SETTARGETDEVICE (partial)
120 + EM_SETTEXTEX 3.0 (proper style?)
122 - EM_SETTYPOGRAPHYOPTIONS 3.0
123 + EM_SETUNDOLIMIT 2.0
124 + EM_SETWORDBREAKPROC (used only for word movement at the moment)
125 - EM_SETWORDBREAKPROCEX
126 - EM_SETWORDWRAPMODE 1.0asian
128 + EM_SHOWSCROLLBAR 2.0
129 + EM_STOPGROUPTYPING 2.0
137 + WM_GETDLGCODE (the current implementation is incomplete)
138 + WM_GETTEXT (ANSI&Unicode)
139 + WM_GETTEXTLENGTH (ANSI version sucks)
143 + WM_SETTEXT (resets undo stack !) (proper style?) ANSI&Unicode
144 + WM_STYLECHANGING (seems to do nothing)
145 + WM_STYLECHANGED (seems to do nothing)
151 * EN_CHANGE (sent from the wrong place)
168 * EN_UPDATE (sent from the wrong place)
176 + ES_DISABLENOSCROLL (scrollbar is always visible)
177 - ES_EX_NOCALLOLEINIT
179 - ES_MULTILINE (currently single line controls aren't supported)
181 - ES_READONLY (I'm not sure if beeping is the proper behaviour)
187 - ES_WANTRETURN (don't know how to do WM_GETDLGCODE part)
194 * RICHED20 TODO (incomplete):
196 * - messages/styles/notifications listed above
197 * - add remaining CHARFORMAT/PARAFORMAT fields
198 * - right/center align should strip spaces from the beginning
199 * - pictures/OLE objects (not just smiling faces that lack API support ;-) )
200 * - COM interface (looks like a major pain in the TODO list)
201 * - calculate heights of pictures (half-done)
202 * - hysteresis during wrapping (related to scrollbars appearing/disappearing)
204 * - how to implement EM_FORMATRANGE and EM_DISPLAYBAND ? (Mission Impossible)
205 * - italic caret with italic fonts
207 * - most notifications aren't sent at all (the most important ones are)
208 * - when should EN_SELCHANGE be sent after text change ? (before/after EN_UPDATE?)
209 * - WM_SETTEXT may use wrong style (but I'm 80% sure it's OK)
210 * - EM_GETCHARFORMAT with SCF_SELECTION may not behave 100% like in original (but very close)
211 * - full justification
214 * - ListBox & ComboBox not implemented
216 * Bugs that are probably fixed, but not so easy to verify:
217 * - EN_UPDATE/EN_CHANGE are handled very incorrectly (should be OK now)
218 * - undo for ME_JoinParagraphs doesn't store paragraph format ? (it does)
219 * - check/fix artificial EOL logic (bCursorAtEnd, hardly logical)
220 * - caret shouldn't be displayed when selection isn't empty
221 * - check refcounting in style management functions (looks perfect now, but no bugs is suspicious)
222 * - undo for setting default format (done, might be buggy)
223 * - styles might be not released properly (looks like they work like charm, but who knows?
230 #define NO_SHLWAPI_STREAM
236 #define STACK_SIZE_DEFAULT 100
237 #define STACK_SIZE_MAX 1000
239 #define TEXT_LIMIT_DEFAULT 32767
241 WINE_DEFAULT_DEBUG_CHANNEL(richedit);
243 static BOOL ME_RegisterEditorClass(HINSTANCE);
244 static BOOL ME_UpdateLinkAttribute(ME_TextEditor *editor, ME_Cursor *start, int nChars);
246 static const WCHAR REListBox20W[] = {'R','E','L','i','s','t','B','o','x','2','0','W', 0};
247 static const WCHAR REComboBox20W[] = {'R','E','C','o','m','b','o','B','o','x','2','0','W', 0};
248 static HCURSOR hLeft;
251 HANDLE me_heap = NULL;
253 static BOOL ME_ListBoxRegistered = FALSE;
254 static BOOL ME_ComboBoxRegistered = FALSE;
256 static inline int is_version_nt(void)
258 return !(GetVersion() & 0x80000000);
261 static ME_TextBuffer *ME_MakeText(void) {
263 ME_TextBuffer *buf = ALLOC_OBJ(ME_TextBuffer);
265 ME_DisplayItem *p1 = ME_MakeDI(diTextStart);
266 ME_DisplayItem *p2 = ME_MakeDI(diTextEnd);
272 p1->member.para.next_para = p2;
273 p2->member.para.prev_para = p1;
274 p2->member.para.nCharOfs = 0;
278 buf->pCharStyle = NULL;
284 static LRESULT ME_StreamInText(ME_TextEditor *editor, DWORD dwFormat, ME_InStream *stream, ME_Style *style)
286 WCHAR wszText[STREAMIN_BUFFER_SIZE+1];
289 TRACE("%08x %p\n", dwFormat, stream);
296 ME_StreamInFill(stream);
297 if (stream->editstream->dwError)
303 if (!(dwFormat & SF_UNICODE))
305 /* FIXME? this is doomed to fail on true MBCS like UTF-8, luckily they're unlikely to be used as CP_ACP */
306 nWideChars = MultiByteToWideChar(CP_ACP, 0, stream->buffer, stream->dwSize, wszText, STREAMIN_BUFFER_SIZE);
311 nWideChars = stream->dwSize >> 1;
312 pText = (WCHAR *)stream->buffer;
315 ME_InsertTextFromCursor(editor, 0, pText, nWideChars, style);
316 if (stream->dwSize == 0)
323 static void ME_ApplyBorderProperties(RTF_Info *info,
324 ME_BorderRect *borderRect,
325 RTFBorder *borderDef)
328 ME_Border *pBorders[] = {&borderRect->top,
332 for (i = 0; i < 4; i++)
334 RTFColor *colorDef = info->colorList;
335 pBorders[i]->width = borderDef[i].width;
336 colorNum = borderDef[i].color;
337 while (colorDef && colorDef->rtfCNum != colorNum)
338 colorDef = colorDef->rtfNextColor;
340 pBorders[i]->colorRef = RGB(
341 colorDef->rtfCRed >= 0 ? colorDef->rtfCRed : 0,
342 colorDef->rtfCGreen >= 0 ? colorDef->rtfCGreen : 0,
343 colorDef->rtfCBlue >= 0 ? colorDef->rtfCBlue : 0);
345 pBorders[i]->colorRef = RGB(0, 0, 0);
349 void ME_RTFCharAttrHook(RTF_Info *info)
352 fmt.cbSize = sizeof(fmt);
356 switch(info->rtfMinor)
359 /* FIXME add more flags once they're implemented */
360 fmt.dwMask = CFM_BOLD | CFM_ITALIC | CFM_UNDERLINETYPE | CFM_STRIKEOUT | CFM_COLOR | CFM_BACKCOLOR | CFM_SIZE | CFM_WEIGHT;
361 fmt.dwEffects = CFE_AUTOCOLOR | CFE_AUTOBACKCOLOR;
362 fmt.yHeight = 12*20; /* 12pt */
363 fmt.wWeight = FW_NORMAL;
364 fmt.bUnderlineType = CFU_UNDERLINENONE;
367 fmt.dwMask = CFM_BOLD | CFM_WEIGHT;
368 fmt.dwEffects = info->rtfParam ? CFE_BOLD : 0;
369 fmt.wWeight = info->rtfParam ? FW_BOLD : FW_NORMAL;
372 fmt.dwMask = CFM_ITALIC;
373 fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
376 fmt.dwMask = CFM_UNDERLINETYPE;
377 fmt.bUnderlineType = info->rtfParam ? CFU_CF1UNDERLINE : CFU_UNDERLINENONE;
379 case rtfDotUnderline:
380 fmt.dwMask = CFM_UNDERLINETYPE;
381 fmt.bUnderlineType = info->rtfParam ? CFU_UNDERLINEDOTTED : CFU_UNDERLINENONE;
384 fmt.dwMask = CFM_UNDERLINETYPE;
385 fmt.bUnderlineType = info->rtfParam ? CFU_UNDERLINEDOUBLE : CFU_UNDERLINENONE;
387 case rtfWordUnderline:
388 fmt.dwMask = CFM_UNDERLINETYPE;
389 fmt.bUnderlineType = info->rtfParam ? CFU_UNDERLINEWORD : CFU_UNDERLINENONE;
392 fmt.dwMask = CFM_UNDERLINETYPE;
393 fmt.bUnderlineType = CFU_UNDERLINENONE;
396 fmt.dwMask = CFM_STRIKEOUT;
397 fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
401 case rtfSubScrShrink:
402 case rtfSuperScrShrink:
404 fmt.dwMask = CFM_SUBSCRIPT|CFM_SUPERSCRIPT;
405 if (info->rtfMinor == rtfSubScrShrink) fmt.dwEffects = CFE_SUBSCRIPT;
406 if (info->rtfMinor == rtfSuperScrShrink) fmt.dwEffects = CFE_SUPERSCRIPT;
407 if (info->rtfMinor == rtfNoSuperSub) fmt.dwEffects = 0;
410 fmt.dwMask = CFM_HIDDEN;
411 fmt.dwEffects = info->rtfParam ? fmt.dwMask : 0;
414 fmt.dwMask = CFM_BACKCOLOR;
416 if (info->rtfParam == 0)
417 fmt.dwEffects = CFE_AUTOBACKCOLOR;
418 else if (info->rtfParam != rtfNoParam)
420 RTFColor *c = RTFGetColor(info, info->rtfParam);
421 if (c && c->rtfCBlue >= 0)
422 fmt.crTextColor = (c->rtfCBlue<<16)|(c->rtfCGreen<<8)|(c->rtfCRed);
424 fmt.dwEffects = CFE_AUTOBACKCOLOR;
428 fmt.dwMask = CFM_COLOR;
430 if (info->rtfParam == 0)
431 fmt.dwEffects = CFE_AUTOCOLOR;
432 else if (info->rtfParam != rtfNoParam)
434 RTFColor *c = RTFGetColor(info, info->rtfParam);
435 if (c && c->rtfCBlue >= 0)
436 fmt.crTextColor = (c->rtfCBlue<<16)|(c->rtfCGreen<<8)|(c->rtfCRed);
438 fmt.dwEffects = CFE_AUTOCOLOR;
443 if (info->rtfParam != rtfNoParam)
445 RTFFont *f = RTFGetFont(info, info->rtfParam);
448 MultiByteToWideChar(CP_ACP, 0, f->rtfFName, -1, fmt.szFaceName, sizeof(fmt.szFaceName)/sizeof(WCHAR));
449 fmt.szFaceName[sizeof(fmt.szFaceName)/sizeof(WCHAR)-1] = '\0';
450 fmt.bCharSet = f->rtfFCharSet;
451 fmt.dwMask = CFM_FACE | CFM_CHARSET;
452 fmt.bPitchAndFamily = f->rtfFPitch | (f->rtfFFamily << 4);
457 fmt.dwMask = CFM_SIZE;
458 if (info->rtfParam != rtfNoParam)
459 fmt.yHeight = info->rtfParam*10;
464 RTFFlushOutputBuffer(info);
465 /* FIXME too slow ? how come ? */
466 style2 = ME_ApplyStyle(info->style, &fmt);
467 ME_ReleaseStyle(info->style);
468 info->style = style2;
469 info->styleChanged = TRUE;
473 /* FIXME this function doesn't get any information about context of the RTF tag, which is very bad,
474 the same tags mean different things in different contexts */
475 void ME_RTFParAttrHook(RTF_Info *info)
478 fmt.cbSize = sizeof(fmt);
481 switch(info->rtfMinor)
483 case rtfParDef: /* restores default paragraph attributes */
484 if (!info->editor->bEmulateVersion10) /* v4.1 */
485 info->borderType = RTFBorderParaLeft;
486 else /* v1.0 - 3.0 */
487 info->borderType = RTFBorderParaTop;
488 fmt.dwMask = PFM_ALIGNMENT | PFM_BORDER | PFM_LINESPACING | PFM_TABSTOPS |
489 PFM_OFFSET | PFM_RIGHTINDENT | PFM_SPACEAFTER | PFM_SPACEBEFORE |
491 /* TODO: numbering, shading */
492 fmt.wAlignment = PFA_LEFT;
494 fmt.dxOffset = fmt.dxStartIndent = fmt.dxRightIndent = 0;
495 fmt.wBorderWidth = fmt.wBorders = 0;
496 fmt.wBorderSpace = 0;
497 fmt.bLineSpacingRule = 0;
498 fmt.dySpaceBefore = fmt.dySpaceAfter = 0;
499 fmt.dyLineSpacing = 0;
500 if (!info->editor->bEmulateVersion10) /* v4.1 */
502 if (info->tableDef && info->tableDef->tableRowStart &&
503 info->tableDef->tableRowStart->member.para.nFlags & MEPF_ROWEND)
506 ME_DisplayItem *para;
507 /* We are just after a table row. */
508 RTFFlushOutputBuffer(info);
509 cursor = info->editor->pCursors[0];
511 if (para == info->tableDef->tableRowStart->member.para.next_para
512 && !cursor.nOffset && !cursor.pRun->member.run.nCharOfs)
514 /* Since the table row end, no text has been inserted, and the \intbl
515 * control word has not be used. We can confirm that we are not in a
518 info->tableDef->tableRowStart = NULL;
519 info->canInheritInTbl = FALSE;
522 } else { /* v1.0 - v3.0 */
523 fmt.dwMask |= PFM_TABLE;
524 fmt.wEffects &= ~PFE_TABLE;
528 if (!info->editor->bEmulateVersion10) /* v4.1 */
530 while (info->rtfParam > info->nestingLevel) {
531 RTFTable *tableDef = ALLOC_OBJ(RTFTable);
532 ZeroMemory(tableDef, sizeof(RTFTable));
533 tableDef->parent = info->tableDef;
534 info->tableDef = tableDef;
536 RTFFlushOutputBuffer(info);
537 if (tableDef->tableRowStart &&
538 tableDef->tableRowStart->member.para.nFlags & MEPF_ROWEND)
540 ME_DisplayItem *para = tableDef->tableRowStart;
541 para = para->member.para.next_para;
542 para = ME_InsertTableRowStartAtParagraph(info->editor, para);
543 tableDef->tableRowStart = para;
547 cursor = info->editor->pCursors[0];
548 if (cursor.nOffset || cursor.pRun->member.run.nCharOfs)
549 ME_InsertTextFromCursor(info->editor, 0, &endl, 1, info->style);
550 tableDef->tableRowStart = ME_InsertTableRowStartFromCursor(info->editor);
553 info->nestingLevel++;
555 info->canInheritInTbl = FALSE;
560 if (!info->editor->bEmulateVersion10) /* v4.1 */
562 if (info->nestingLevel < 1)
567 info->tableDef = ALLOC_OBJ(RTFTable);
568 ZeroMemory(info->tableDef, sizeof(RTFTable));
570 tableDef = info->tableDef;
571 RTFFlushOutputBuffer(info);
572 if (tableDef->tableRowStart &&
573 tableDef->tableRowStart->member.para.nFlags & MEPF_ROWEND)
575 ME_DisplayItem *para = tableDef->tableRowStart;
576 para = para->member.para.next_para;
577 para = ME_InsertTableRowStartAtParagraph(info->editor, para);
578 tableDef->tableRowStart = para;
582 cursor = info->editor->pCursors[0];
583 if (cursor.nOffset || cursor.pRun->member.run.nCharOfs)
584 ME_InsertTextFromCursor(info->editor, 0, &endl, 1, info->style);
585 tableDef->tableRowStart = ME_InsertTableRowStartFromCursor(info->editor);
587 info->nestingLevel = 1;
588 info->canInheritInTbl = TRUE;
591 } else { /* v1.0 - v3.0 */
592 fmt.dwMask |= PFM_TABLE;
593 fmt.wEffects |= PFE_TABLE;
598 ME_GetSelectionParaFormat(info->editor, &fmt);
599 fmt.dwMask = PFM_STARTINDENT | PFM_OFFSET;
600 fmt.dxStartIndent += fmt.dxOffset + info->rtfParam;
601 fmt.dxOffset = -info->rtfParam;
604 ME_GetSelectionParaFormat(info->editor, &fmt);
605 fmt.dwMask = PFM_STARTINDENT;
606 fmt.dxStartIndent = info->rtfParam - fmt.dxOffset;
609 fmt.dwMask = PFM_RIGHTINDENT;
610 fmt.dxRightIndent = info->rtfParam;
614 fmt.dwMask = PFM_ALIGNMENT;
615 fmt.wAlignment = PFA_LEFT;
618 fmt.dwMask = PFM_ALIGNMENT;
619 fmt.wAlignment = PFA_RIGHT;
622 fmt.dwMask = PFM_ALIGNMENT;
623 fmt.wAlignment = PFA_CENTER;
626 ME_GetSelectionParaFormat(info->editor, &fmt);
627 if (!(fmt.dwMask & PFM_TABSTOPS))
631 if (fmt.cTabCount < MAX_TAB_STOPS && info->rtfParam < 0x1000000)
632 fmt.rgxTabs[fmt.cTabCount++] = info->rtfParam;
633 fmt.dwMask = PFM_TABSTOPS;
636 fmt.dwMask = PFM_KEEP;
637 fmt.wEffects = PFE_KEEP;
639 case rtfNoWidowControl:
640 fmt.dwMask = PFM_NOWIDOWCONTROL;
641 fmt.wEffects = PFE_NOWIDOWCONTROL;
644 fmt.dwMask = PFM_KEEPNEXT;
645 fmt.wEffects = PFE_KEEPNEXT;
648 fmt.dwMask = PFM_SPACEAFTER;
649 fmt.dySpaceAfter = info->rtfParam;
652 fmt.dwMask = PFM_SPACEBEFORE;
653 fmt.dySpaceBefore = info->rtfParam;
655 case rtfSpaceBetween:
656 fmt.dwMask = PFM_LINESPACING;
657 if ((int)info->rtfParam > 0)
659 fmt.dyLineSpacing = info->rtfParam;
660 fmt.bLineSpacingRule = 3;
664 fmt.dyLineSpacing = info->rtfParam;
665 fmt.bLineSpacingRule = 4;
668 case rtfSpaceMultiply:
669 fmt.dwMask = PFM_LINESPACING;
670 fmt.dyLineSpacing = info->rtfParam * 20;
671 fmt.bLineSpacingRule = 5;
674 fmt.dwMask = PFM_NUMBERING;
675 fmt.wNumbering = PFN_BULLET;
678 fmt.dwMask = PFM_NUMBERING;
679 fmt.wNumbering = 2; /* FIXME: MSDN says it's not used ?? */
681 case rtfParNumDecimal:
682 fmt.dwMask = PFM_NUMBERING;
683 fmt.wNumbering = 2; /* FIXME: MSDN says it's not used ?? */
685 case rtfParNumIndent:
686 fmt.dwMask = PFM_NUMBERINGTAB;
687 fmt.wNumberingTab = info->rtfParam;
689 case rtfParNumStartAt:
690 fmt.dwMask = PFM_NUMBERINGSTART;
691 fmt.wNumberingStart = info->rtfParam;
694 info->borderType = RTFBorderParaLeft;
695 ME_GetSelectionParaFormat(info->editor, &fmt);
696 if (!(fmt.dwMask & PFM_BORDER))
698 fmt.wBorderSpace = 0;
699 fmt.wBorderWidth = 1;
703 fmt.dwMask = PFM_BORDER;
706 info->borderType = RTFBorderParaRight;
707 ME_GetSelectionParaFormat(info->editor, &fmt);
708 if (!(fmt.dwMask & PFM_BORDER))
710 fmt.wBorderSpace = 0;
711 fmt.wBorderWidth = 1;
715 fmt.dwMask = PFM_BORDER;
718 info->borderType = RTFBorderParaTop;
719 ME_GetSelectionParaFormat(info->editor, &fmt);
720 if (!(fmt.dwMask & PFM_BORDER))
722 fmt.wBorderSpace = 0;
723 fmt.wBorderWidth = 1;
727 fmt.dwMask = PFM_BORDER;
729 case rtfBorderBottom:
730 info->borderType = RTFBorderParaBottom;
731 ME_GetSelectionParaFormat(info->editor, &fmt);
732 if (!(fmt.dwMask & PFM_BORDER))
734 fmt.wBorderSpace = 0;
735 fmt.wBorderWidth = 1;
739 fmt.dwMask = PFM_BORDER;
741 case rtfBorderSingle:
742 ME_GetSelectionParaFormat(info->editor, &fmt);
743 /* we assume that borders have been created before (RTF spec) */
744 fmt.wBorders &= ~0x700;
745 fmt.wBorders |= 1 << 8;
746 fmt.dwMask = PFM_BORDER;
749 ME_GetSelectionParaFormat(info->editor, &fmt);
750 /* we assume that borders have been created before (RTF spec) */
751 fmt.wBorders &= ~0x700;
752 fmt.wBorders |= 2 << 8;
753 fmt.dwMask = PFM_BORDER;
755 case rtfBorderShadow:
756 ME_GetSelectionParaFormat(info->editor, &fmt);
757 /* we assume that borders have been created before (RTF spec) */
758 fmt.wBorders &= ~0x700;
759 fmt.wBorders |= 10 << 8;
760 fmt.dwMask = PFM_BORDER;
762 case rtfBorderDouble:
763 ME_GetSelectionParaFormat(info->editor, &fmt);
764 /* we assume that borders have been created before (RTF spec) */
765 fmt.wBorders &= ~0x700;
766 fmt.wBorders |= 7 << 8;
767 fmt.dwMask = PFM_BORDER;
770 ME_GetSelectionParaFormat(info->editor, &fmt);
771 /* we assume that borders have been created before (RTF spec) */
772 fmt.wBorders &= ~0x700;
773 fmt.wBorders |= 11 << 8;
774 fmt.dwMask = PFM_BORDER;
778 int borderSide = info->borderType & RTFBorderSideMask;
779 RTFTable *tableDef = info->tableDef;
780 ME_GetSelectionParaFormat(info->editor, &fmt);
781 /* we assume that borders have been created before (RTF spec) */
782 fmt.wBorderWidth |= ((info->rtfParam / 15) & 7) << 8;
783 if ((info->borderType & RTFBorderTypeMask) == RTFBorderTypeCell)
786 if (!tableDef || tableDef->numCellsDefined >= MAX_TABLE_CELLS)
788 border = &tableDef->cells[tableDef->numCellsDefined].border[borderSide];
789 border->width = info->rtfParam;
792 fmt.dwMask = PFM_BORDER;
796 ME_GetSelectionParaFormat(info->editor, &fmt);
797 /* we assume that borders have been created before (RTF spec) */
798 fmt.wBorderSpace = info->rtfParam;
799 fmt.dwMask = PFM_BORDER;
803 RTFTable *tableDef = info->tableDef;
804 int borderSide = info->borderType & RTFBorderSideMask;
805 int borderType = info->borderType & RTFBorderTypeMask;
808 case RTFBorderTypePara:
809 if (!info->editor->bEmulateVersion10) /* v4.1 */
811 /* v1.0 - 3.0 treat paragraph and row borders the same. */
812 case RTFBorderTypeRow:
814 tableDef->border[borderSide].color = info->rtfParam;
817 case RTFBorderTypeCell:
818 if (tableDef && tableDef->numCellsDefined < MAX_TABLE_CELLS) {
819 tableDef->cells[tableDef->numCellsDefined].border[borderSide].color = info->rtfParam;
827 RTFFlushOutputBuffer(info);
828 /* FIXME too slow ? how come ?*/
829 ME_SetSelectionParaFormat(info->editor, &fmt);
833 void ME_RTFTblAttrHook(RTF_Info *info)
835 switch (info->rtfMinor)
839 if (!info->editor->bEmulateVersion10) /* v4.1 */
840 info->borderType = 0; /* Not sure */
841 else /* v1.0 - 3.0 */
842 info->borderType = RTFBorderRowTop;
843 if (!info->tableDef) {
844 info->tableDef = ME_MakeTableDef(info->editor);
846 ME_InitTableDef(info->editor, info->tableDef);
855 info->tableDef = ME_MakeTableDef(info->editor);
857 cellNum = info->tableDef->numCellsDefined;
858 if (cellNum >= MAX_TABLE_CELLS)
860 info->tableDef->cells[cellNum].rightBoundary = info->rtfParam;
861 if (cellNum < MAX_TAB_STOPS) {
862 /* Tab stops were used to store cell positions before v4.1 but v4.1
863 * still seems to set the tabstops without using them. */
864 ME_DisplayItem *para = info->editor->pCursors[0].pPara;
865 PARAFORMAT2 *pFmt = para->member.para.pFmt;
866 pFmt->rgxTabs[cellNum] &= ~0x00FFFFFF;
867 pFmt->rgxTabs[cellNum] = 0x00FFFFFF & info->rtfParam;
869 info->tableDef->numCellsDefined++;
873 info->borderType = RTFBorderRowTop;
876 info->borderType = RTFBorderRowLeft;
878 case rtfRowBordBottom:
879 info->borderType = RTFBorderRowBottom;
881 case rtfRowBordRight:
882 info->borderType = RTFBorderRowRight;
885 info->borderType = RTFBorderCellTop;
887 case rtfCellBordLeft:
888 info->borderType = RTFBorderCellLeft;
890 case rtfCellBordBottom:
891 info->borderType = RTFBorderCellBottom;
893 case rtfCellBordRight:
894 info->borderType = RTFBorderCellRight;
898 info->tableDef->gapH = info->rtfParam;
902 info->tableDef->leftEdge = info->rtfParam;
907 void ME_RTFSpecialCharHook(RTF_Info *info)
909 RTFTable *tableDef = info->tableDef;
910 switch (info->rtfMinor)
913 if (info->editor->bEmulateVersion10) /* v1.0 - v3.0 */
915 /* else fall through since v4.1 treats rtfNestCell and rtfCell the same */
919 RTFFlushOutputBuffer(info);
920 if (!info->editor->bEmulateVersion10) { /* v4.1 */
921 if (tableDef->tableRowStart)
923 if (!info->nestingLevel &&
924 tableDef->tableRowStart->member.para.nFlags & MEPF_ROWEND)
926 ME_DisplayItem *para = tableDef->tableRowStart;
927 para = para->member.para.next_para;
928 para = ME_InsertTableRowStartAtParagraph(info->editor, para);
929 tableDef->tableRowStart = para;
930 info->nestingLevel = 1;
932 ME_InsertTableCellFromCursor(info->editor);
934 } else { /* v1.0 - v3.0 */
935 ME_DisplayItem *para = info->editor->pCursors[0].pPara;
936 PARAFORMAT2 *pFmt = para->member.para.pFmt;
937 if (pFmt->dwMask & PFM_TABLE && pFmt->wEffects & PFE_TABLE &&
938 tableDef->numCellsInserted < tableDef->numCellsDefined)
941 ME_InsertTextFromCursor(info->editor, 0, &tab, 1, info->style);
942 tableDef->numCellsInserted++;
947 if (info->editor->bEmulateVersion10) /* v1.0 - v3.0 */
949 /* else fall through since v4.1 treats rtfNestRow and rtfRow the same */
952 ME_DisplayItem *para, *cell, *run;
957 RTFFlushOutputBuffer(info);
958 if (!info->editor->bEmulateVersion10) { /* v4.1 */
959 if (!tableDef->tableRowStart)
961 if (!info->nestingLevel &&
962 tableDef->tableRowStart->member.para.nFlags & MEPF_ROWEND)
964 para = tableDef->tableRowStart;
965 para = para->member.para.next_para;
966 para = ME_InsertTableRowStartAtParagraph(info->editor, para);
967 tableDef->tableRowStart = para;
968 info->nestingLevel++;
970 para = tableDef->tableRowStart;
971 cell = ME_FindItemFwd(para, diCell);
972 assert(cell && !cell->member.cell.prev_cell);
973 if (tableDef->numCellsDefined < 1)
975 /* 2000 twips appears to be the cell size that native richedit uses
976 * when no cell sizes are specified. */
977 const int defaultCellSize = 2000;
978 int nRightBoundary = defaultCellSize;
979 cell->member.cell.nRightBoundary = nRightBoundary;
980 while (cell->member.cell.next_cell) {
981 cell = cell->member.cell.next_cell;
982 nRightBoundary += defaultCellSize;
983 cell->member.cell.nRightBoundary = nRightBoundary;
985 para = ME_InsertTableCellFromCursor(info->editor);
986 cell = para->member.para.pCell;
987 cell->member.cell.nRightBoundary = nRightBoundary;
989 for (i = 0; i < tableDef->numCellsDefined; i++)
991 RTFCell *cellDef = &tableDef->cells[i];
992 cell->member.cell.nRightBoundary = cellDef->rightBoundary;
993 ME_ApplyBorderProperties(info, &cell->member.cell.border,
995 cell = cell->member.cell.next_cell;
998 para = ME_InsertTableCellFromCursor(info->editor);
999 cell = para->member.para.pCell;
1002 /* Cell for table row delimiter is empty */
1003 cell->member.cell.nRightBoundary = tableDef->cells[i-1].rightBoundary;
1006 run = ME_FindItemFwd(cell, diRun);
1007 if (info->editor->pCursors[0].pRun != run ||
1008 info->editor->pCursors[0].nOffset)
1011 /* Delete inserted cells that aren't defined. */
1012 info->editor->pCursors[1].pRun = run;
1013 info->editor->pCursors[1].pPara = ME_GetParagraph(run);
1014 info->editor->pCursors[1].nOffset = 0;
1015 nOfs = ME_GetCursorOfs(&info->editor->pCursors[1]);
1016 nChars = ME_GetCursorOfs(&info->editor->pCursors[0]) - nOfs;
1017 ME_InternalDeleteText(info->editor, &info->editor->pCursors[1],
1021 para = ME_InsertTableRowEndFromCursor(info->editor);
1022 para->member.para.pFmt->dxOffset = abs(info->tableDef->gapH);
1023 para->member.para.pFmt->dxStartIndent = info->tableDef->leftEdge;
1024 ME_ApplyBorderProperties(info, ¶->member.para.border,
1026 info->nestingLevel--;
1027 if (!info->nestingLevel)
1029 if (info->canInheritInTbl) {
1030 tableDef->tableRowStart = para;
1032 while (info->tableDef) {
1033 tableDef = info->tableDef;
1034 info->tableDef = tableDef->parent;
1035 heap_free(tableDef);
1039 info->tableDef = tableDef->parent;
1040 heap_free(tableDef);
1042 } else { /* v1.0 - v3.0 */
1044 ME_DisplayItem *para = info->editor->pCursors[0].pPara;
1045 PARAFORMAT2 *pFmt = para->member.para.pFmt;
1046 pFmt->dxOffset = info->tableDef->gapH;
1047 pFmt->dxStartIndent = info->tableDef->leftEdge;
1049 ME_ApplyBorderProperties(info, ¶->member.para.border,
1051 while (tableDef->numCellsInserted < tableDef->numCellsDefined)
1054 ME_InsertTextFromCursor(info->editor, 0, &tab, 1, info->style);
1055 tableDef->numCellsInserted++;
1057 pFmt->cTabCount = min(tableDef->numCellsDefined, MAX_TAB_STOPS);
1058 if (!tableDef->numCellsDefined)
1059 pFmt->wEffects &= ~PFE_TABLE;
1060 ME_InsertTextFromCursor(info->editor, 0, &endl, 1, info->style);
1061 tableDef->numCellsInserted = 0;
1067 if (info->editor->bEmulateVersion10) { /* v1.0 - 3.0 */
1068 ME_DisplayItem *para;
1070 RTFFlushOutputBuffer(info);
1071 para = info->editor->pCursors[0].pPara;
1072 pFmt = para->member.para.pFmt;
1073 if (pFmt->dwMask & PFM_TABLE && pFmt->wEffects & PFE_TABLE)
1075 /* rtfPar is treated like a space within a table. */
1076 info->rtfClass = rtfText;
1077 info->rtfMajor = ' ';
1079 else if (info->rtfMinor == rtfPar && tableDef)
1080 tableDef->numCellsInserted = 0;
1086 static BOOL ME_RTFInsertOleObject(RTF_Info *info, HENHMETAFILE hemf, HBITMAP hbmp,
1089 LPOLEOBJECT lpObject = NULL;
1090 LPSTORAGE lpStorage = NULL;
1091 LPOLECLIENTSITE lpClientSite = NULL;
1092 LPDATAOBJECT lpDataObject = NULL;
1093 LPOLECACHE lpOleCache = NULL;
1102 stgm.tymed = TYMED_ENHMF;
1103 stgm.u.hEnhMetaFile = hemf;
1104 fm.cfFormat = CF_ENHMETAFILE;
1108 stgm.tymed = TYMED_GDI;
1109 stgm.u.hBitmap = hbmp;
1110 fm.cfFormat = CF_BITMAP;
1112 stgm.pUnkForRelease = NULL;
1115 fm.dwAspect = DVASPECT_CONTENT;
1117 fm.tymed = stgm.tymed;
1119 if (!info->lpRichEditOle)
1121 CreateIRichEditOle(info->editor, (VOID**)&info->lpRichEditOle);
1124 if (OleCreateDefaultHandler(&CLSID_NULL, NULL, &IID_IOleObject, (void**)&lpObject) == S_OK &&
1126 /* FIXME: enable it when rich-edit properly implements this method */
1127 IRichEditOle_GetClientSite(info->lpRichEditOle, &lpClientSite) == S_OK &&
1128 IOleObject_SetClientSite(lpObject, lpClientSite) == S_OK &&
1130 IOleObject_GetUserClassID(lpObject, &clsid) == S_OK &&
1131 IOleObject_QueryInterface(lpObject, &IID_IOleCache, (void**)&lpOleCache) == S_OK &&
1132 IOleCache_Cache(lpOleCache, &fm, 0, &conn) == S_OK &&
1133 IOleObject_QueryInterface(lpObject, &IID_IDataObject, (void**)&lpDataObject) == S_OK &&
1134 IDataObject_SetData(lpDataObject, &fm, &stgm, TRUE) == S_OK)
1138 reobject.cbStruct = sizeof(reobject);
1139 reobject.cp = REO_CP_SELECTION;
1140 reobject.clsid = clsid;
1141 reobject.poleobj = lpObject;
1142 reobject.pstg = lpStorage;
1143 reobject.polesite = lpClientSite;
1144 /* convert from twips to .01 mm */
1145 reobject.sizel.cx = MulDiv(sz->cx, 254, 144);
1146 reobject.sizel.cy = MulDiv(sz->cy, 254, 144);
1147 reobject.dvaspect = DVASPECT_CONTENT;
1148 reobject.dwFlags = 0; /* FIXME */
1149 reobject.dwUser = 0;
1151 ME_InsertOLEFromCursor(info->editor, &reobject, 0);
1155 if (lpObject) IOleObject_Release(lpObject);
1156 if (lpClientSite) IOleClientSite_Release(lpClientSite);
1157 if (lpStorage) IStorage_Release(lpStorage);
1158 if (lpDataObject) IDataObject_Release(lpDataObject);
1159 if (lpOleCache) IOleCache_Release(lpOleCache);
1164 static void ME_RTFReadPictGroup(RTF_Info *info)
1167 BYTE* buffer = NULL;
1168 unsigned bufsz, bufidx;
1174 enum gfxkind {gfx_unknown = 0, gfx_enhmetafile, gfx_metafile, gfx_dib} gfx = gfx_unknown;
1177 if (info->rtfClass == rtfEOF)
1180 /* fetch picture type */
1181 if (RTFCheckMM (info, rtfPictAttr, rtfWinMetafile))
1183 mfp.mm = info->rtfParam;
1186 else if (RTFCheckMM (info, rtfPictAttr, rtfDevIndBitmap))
1188 if (info->rtfParam != 0) FIXME("dibitmap should be 0 (%d)\n", info->rtfParam);
1191 else if (RTFCheckMM (info, rtfPictAttr, rtfEmfBlip))
1193 gfx = gfx_enhmetafile;
1197 FIXME("%d %d\n", info->rtfMajor, info->rtfMinor);
1201 /* fetch picture attributes */
1205 if (info->rtfClass == rtfEOF)
1207 if (info->rtfClass == rtfText)
1209 if (!RTFCheckCM (info, rtfControl, rtfPictAttr))
1211 ERR("Expected picture attribute (%d %d)\n",
1212 info->rtfClass, info->rtfMajor);
1215 else if (RTFCheckMM (info, rtfPictAttr, rtfPicWid))
1217 if (gfx == gfx_metafile) mfp.xExt = info->rtfParam;
1219 else if (RTFCheckMM (info, rtfPictAttr, rtfPicHt))
1221 if (gfx == gfx_metafile) mfp.yExt = info->rtfParam;
1223 else if (RTFCheckMM (info, rtfPictAttr, rtfPicGoalWid))
1224 sz.cx = info->rtfParam;
1225 else if (RTFCheckMM (info, rtfPictAttr, rtfPicGoalHt))
1226 sz.cy = info->rtfParam;
1228 FIXME("Non supported attribute: %d %d %d\n", info->rtfClass, info->rtfMajor, info->rtfMinor);
1230 /* fetch picture data */
1233 buffer = HeapAlloc(GetProcessHeap(), 0, bufsz);
1234 val = info->rtfMajor;
1235 for (flip = TRUE;; flip = !flip)
1238 if (info->rtfClass == rtfEOF)
1240 HeapFree(GetProcessHeap(), 0, buffer);
1241 return; /* Warn ?? */
1243 if (RTFCheckCM(info, rtfGroup, rtfEndGroup))
1245 if (info->rtfClass != rtfText) goto skip_group;
1248 if (bufidx >= bufsz &&
1249 !(buffer = HeapReAlloc(GetProcessHeap(), 0, buffer, bufsz += 1024)))
1251 buffer[bufidx++] = RTFCharToHex(val) * 16 + RTFCharToHex(info->rtfMajor);
1254 val = info->rtfMajor;
1256 if (flip) FIXME("wrong hex string\n");
1260 case gfx_enhmetafile:
1261 if ((hemf = SetEnhMetaFileBits(bufidx, buffer)))
1262 ME_RTFInsertOleObject(info, hemf, NULL, &sz);
1265 if ((hemf = SetWinMetaFileBits(bufidx, buffer, NULL, &mfp)))
1266 ME_RTFInsertOleObject(info, hemf, NULL, &sz);
1270 BITMAPINFO* bi = (BITMAPINFO*)buffer;
1272 unsigned nc = bi->bmiHeader.biClrUsed;
1274 /* not quite right, especially for bitfields type of compression */
1275 if (!nc && bi->bmiHeader.biBitCount <= 8)
1276 nc = 1 << bi->bmiHeader.biBitCount;
1277 if ((hbmp = CreateDIBitmap(hdc, &bi->bmiHeader,
1278 CBM_INIT, (char*)(bi + 1) + nc * sizeof(RGBQUAD),
1279 bi, DIB_RGB_COLORS)))
1280 ME_RTFInsertOleObject(info, NULL, hbmp, &sz);
1287 HeapFree(GetProcessHeap(), 0, buffer);
1288 RTFRouteToken (info); /* feed "}" back to router */
1291 HeapFree(GetProcessHeap(), 0, buffer);
1293 RTFRouteToken(info); /* feed "}" back to router */
1296 /* for now, lookup the \result part and use it, whatever the object */
1297 static void ME_RTFReadObjectGroup(RTF_Info *info)
1302 if (info->rtfClass == rtfEOF)
1304 if (RTFCheckCM(info, rtfGroup, rtfEndGroup))
1306 if (RTFCheckCM(info, rtfGroup, rtfBeginGroup))
1309 if (info->rtfClass == rtfEOF)
1311 if (RTFCheckCMM(info, rtfControl, rtfDestination, rtfObjResult))
1315 while (RTFGetToken (info) != rtfEOF)
1317 if (info->rtfClass == rtfGroup)
1319 if (info->rtfMajor == rtfBeginGroup) level++;
1320 else if (info->rtfMajor == rtfEndGroup && --level < 0) break;
1322 RTFRouteToken(info);
1325 else RTFSkipGroup(info);
1328 if (!RTFCheckCM (info, rtfControl, rtfObjAttr))
1330 FIXME("Non supported attribute: %d %d %d\n", info->rtfClass, info->rtfMajor, info->rtfMinor);
1334 RTFRouteToken(info); /* feed "}" back to router */
1337 static void ME_RTFReadHook(RTF_Info *info)
1339 switch(info->rtfClass)
1342 switch(info->rtfMajor)
1345 if (info->stackTop < maxStack) {
1346 info->stack[info->stackTop].style = info->style;
1347 ME_AddRefStyle(info->style);
1348 info->stack[info->stackTop].codePage = info->codePage;
1349 info->stack[info->stackTop].unicodeLength = info->unicodeLength;
1352 info->styleChanged = FALSE;
1356 RTFFlushOutputBuffer(info);
1358 if (info->stackTop <= 0)
1359 info->rtfClass = rtfEOF;
1360 if (info->stackTop < 0)
1363 ME_ReleaseStyle(info->style);
1364 info->style = info->stack[info->stackTop].style;
1365 info->codePage = info->stack[info->stackTop].codePage;
1366 info->unicodeLength = info->stack[info->stackTop].unicodeLength;
1375 ME_StreamInFill(ME_InStream *stream)
1377 stream->editstream->dwError = stream->editstream->pfnCallback(stream->editstream->dwCookie,
1378 (BYTE *)stream->buffer,
1379 sizeof(stream->buffer),
1380 (LONG *)&stream->dwSize);
1384 static LRESULT ME_StreamIn(ME_TextEditor *editor, DWORD format, EDITSTREAM *stream, BOOL stripLastCR)
1388 int from, to, nUndoMode;
1389 int nEventMask = editor->nEventMask;
1390 ME_InStream inStream;
1391 BOOL invalidRTF = FALSE;
1392 ME_Cursor *selStart, *selEnd;
1394 TRACE("stream==%p editor==%p format==0x%X\n", stream, editor, format);
1395 editor->nEventMask = 0;
1397 ME_GetSelectionOfs(editor, &from, &to);
1398 if (format & SFF_SELECTION && editor->mode & TM_RICHTEXT)
1400 ME_GetSelection(editor, &selStart, &selEnd);
1401 style = ME_GetSelectionInsertStyle(editor);
1403 ME_InternalDeleteText(editor, selStart, to - from, FALSE);
1405 /* Don't insert text at the end of the table row */
1406 if (!editor->bEmulateVersion10) { /* v4.1 */
1407 ME_DisplayItem *para = editor->pCursors->pPara;
1408 if (para->member.para.nFlags & MEPF_ROWEND)
1410 para = para->member.para.next_para;
1411 editor->pCursors[0].pPara = para;
1412 editor->pCursors[0].pRun = ME_FindItemFwd(para, diRun);
1413 editor->pCursors[0].nOffset = 0;
1415 if (para->member.para.nFlags & MEPF_ROWSTART)
1417 para = para->member.para.next_para;
1418 editor->pCursors[0].pPara = para;
1419 editor->pCursors[0].pRun = ME_FindItemFwd(para, diRun);
1420 editor->pCursors[0].nOffset = 0;
1422 editor->pCursors[1] = editor->pCursors[0];
1423 } else { /* v1.0 - 3.0 */
1424 if (editor->pCursors[0].pRun->member.run.nFlags & MERF_ENDPARA &&
1425 ME_IsInTable(editor->pCursors[0].pRun))
1429 style = editor->pBuffer->pDefaultStyle;
1430 ME_AddRefStyle(style);
1431 ME_SetSelection(editor, 0, 0);
1432 ME_InternalDeleteText(editor, &editor->pCursors[1],
1433 ME_GetTextLength(editor), FALSE);
1435 ME_ClearTempStyle(editor);
1436 ME_SetDefaultParaFormat(editor->pCursors[0].pPara->member.para.pFmt);
1440 /* Back up undo mode to a local variable */
1441 nUndoMode = editor->nUndoMode;
1443 /* Only create an undo if SFF_SELECTION is set */
1444 if (!(format & SFF_SELECTION))
1445 editor->nUndoMode = umIgnore;
1447 inStream.editstream = stream;
1448 inStream.editstream->dwError = 0;
1449 inStream.dwSize = 0;
1450 inStream.dwUsed = 0;
1452 if (format & SF_RTF)
1454 /* Check if it's really RTF, and if it is not, use plain text */
1455 ME_StreamInFill(&inStream);
1456 if (!inStream.editstream->dwError)
1458 if ((!editor->bEmulateVersion10 && strncmp(inStream.buffer, "{\\rtf", 5) && strncmp(inStream.buffer, "{\\urtf", 6))
1459 || (editor->bEmulateVersion10 && *inStream.buffer != '{'))
1462 inStream.editstream->dwError = -16;
1467 if (!invalidRTF && !inStream.editstream->dwError)
1469 if (format & SF_RTF) {
1470 /* setup the RTF parser */
1471 memset(&parser, 0, sizeof parser);
1472 RTFSetEditStream(&parser, &inStream);
1473 parser.rtfFormat = format&(SF_TEXT|SF_RTF);
1474 parser.editor = editor;
1475 parser.style = style;
1476 WriterInit(&parser);
1478 RTFSetReadHook(&parser, ME_RTFReadHook);
1479 RTFSetDestinationCallback(&parser, rtfPict, ME_RTFReadPictGroup);
1480 RTFSetDestinationCallback(&parser, rtfObject, ME_RTFReadObjectGroup);
1481 if (!parser.editor->bEmulateVersion10) /* v4.1 */
1483 RTFSetDestinationCallback(&parser, rtfNoNestTables, RTFSkipGroup);
1484 RTFSetDestinationCallback(&parser, rtfNestTableProps, RTFReadGroup);
1488 /* do the parsing */
1490 RTFFlushOutputBuffer(&parser);
1491 if (!editor->bEmulateVersion10) { /* v4.1 */
1492 if (parser.tableDef && parser.tableDef->tableRowStart &&
1493 (parser.nestingLevel > 0 || parser.canInheritInTbl))
1495 /* Delete any incomplete table row at the end of the rich text. */
1497 ME_DisplayItem *para;
1499 parser.rtfMinor = rtfRow;
1500 /* Complete the table row before deleting it.
1501 * By doing it this way we will have the current paragraph format set
1502 * properly to reflect that is not in the complete table, and undo items
1503 * will be added for this change to the current paragraph format. */
1504 if (parser.nestingLevel > 0)
1506 while (parser.nestingLevel > 1)
1507 ME_RTFSpecialCharHook(&parser); /* Decrements nestingLevel */
1508 para = parser.tableDef->tableRowStart;
1509 ME_RTFSpecialCharHook(&parser);
1511 para = parser.tableDef->tableRowStart;
1512 ME_RTFSpecialCharHook(&parser);
1513 assert(para->member.para.nFlags & MEPF_ROWEND);
1514 para = para->member.para.next_para;
1517 editor->pCursors[1].pPara = para;
1518 editor->pCursors[1].pRun = ME_FindItemFwd(para, diRun);
1519 editor->pCursors[1].nOffset = 0;
1520 nOfs = ME_GetCursorOfs(&editor->pCursors[1]);
1521 nChars = ME_GetCursorOfs(&editor->pCursors[0]) - nOfs;
1522 ME_InternalDeleteText(editor, &editor->pCursors[1], nChars, TRUE);
1523 if (parser.tableDef)
1524 parser.tableDef->tableRowStart = NULL;
1527 ME_CheckTablesForCorruption(editor);
1528 RTFDestroy(&parser);
1529 if (parser.lpRichEditOle)
1530 IRichEditOle_Release(parser.lpRichEditOle);
1532 if (parser.stackTop > 0)
1534 while (--parser.stackTop >= 0)
1536 ME_ReleaseStyle(parser.style);
1537 parser.style = parser.stack[parser.stackTop].style;
1539 if (!inStream.editstream->dwError)
1540 inStream.editstream->dwError = HRESULT_FROM_WIN32(ERROR_HANDLE_EOF);
1543 /* Remove last line break, as mandated by tests. This is not affected by
1544 CR/LF counters, since RTF streaming presents only \para tokens, which
1545 are converted according to the standard rules: \r for 2.0, \r\n for 1.0
1549 ME_GetSelection(editor, &selStart, &selEnd);
1550 newto = ME_GetCursorOfs(selEnd);
1551 if (newto > to + (editor->bEmulateVersion10 ? 1 : 0)) {
1552 WCHAR lastchar[3] = {'\0', '\0'};
1553 int linebreakSize = editor->bEmulateVersion10 ? 2 : 1;
1554 ME_Cursor linebreakCursor = *selEnd;
1556 ME_MoveCursorChars(editor, &linebreakCursor, -linebreakSize);
1557 ME_GetTextW(editor, lastchar, 2, &linebreakCursor, linebreakSize, 0);
1558 if (lastchar[0] == '\r' && (lastchar[1] == '\n' || lastchar[1] == '\0')) {
1559 ME_InternalDeleteText(editor, &linebreakCursor, linebreakSize, FALSE);
1564 style = parser.style;
1566 else if (format & SF_TEXT)
1567 ME_StreamInText(editor, format, &inStream, style);
1569 ERR("EM_STREAMIN without SF_TEXT or SF_RTF\n");
1570 /* put the cursor at the top */
1571 if (!(format & SFF_SELECTION))
1572 ME_SetSelection(editor, 0, 0);
1575 /* Restore saved undo mode */
1576 editor->nUndoMode = nUndoMode;
1578 /* even if we didn't add an undo, we need to commit anything on the stack */
1579 ME_CommitUndo(editor);
1581 /* If SFF_SELECTION isn't set, delete any undos from before we started too */
1582 if (!(format & SFF_SELECTION))
1583 ME_EmptyUndoStack(editor);
1585 ME_ReleaseStyle(style);
1586 editor->nEventMask = nEventMask;
1587 ME_UpdateRepaint(editor, FALSE);
1588 if (!(format & SFF_SELECTION)) {
1589 ME_ClearTempStyle(editor);
1591 ITextHost_TxShowCaret(editor->texthost, FALSE);
1592 ME_MoveCaret(editor);
1593 ITextHost_TxShowCaret(editor->texthost, TRUE);
1594 ME_SendSelChange(editor);
1595 ME_SendRequestResize(editor, FALSE);
1601 typedef struct tagME_RTFStringStreamStruct
1606 } ME_RTFStringStreamStruct;
1608 static DWORD CALLBACK ME_ReadFromRTFString(DWORD_PTR dwCookie, LPBYTE lpBuff, LONG cb, LONG *pcb)
1610 ME_RTFStringStreamStruct *pStruct = (ME_RTFStringStreamStruct *)dwCookie;
1613 count = min(cb, pStruct->length - pStruct->pos);
1614 memmove(lpBuff, pStruct->string + pStruct->pos, count);
1615 pStruct->pos += count;
1621 ME_StreamInRTFString(ME_TextEditor *editor, BOOL selection, char *string)
1624 ME_RTFStringStreamStruct data;
1626 data.string = string;
1627 data.length = strlen(string);
1629 es.dwCookie = (DWORD_PTR)&data;
1630 es.pfnCallback = ME_ReadFromRTFString;
1631 ME_StreamIn(editor, SF_RTF | (selection ? SFF_SELECTION : 0), &es, FALSE);
1636 ME_FindText(ME_TextEditor *editor, DWORD flags, const CHARRANGE *chrg, const WCHAR *text, CHARRANGE *chrgText)
1638 const int nLen = lstrlenW(text);
1639 const int nTextLen = ME_GetTextLength(editor);
1642 WCHAR wLastChar = ' ';
1644 TRACE("flags==0x%08x, chrg->cpMin==%d, chrg->cpMax==%d text==%s\n",
1645 flags, chrg->cpMin, chrg->cpMax, debugstr_w(text));
1647 if (flags & ~(FR_DOWN | FR_MATCHCASE | FR_WHOLEWORD))
1648 FIXME("Flags 0x%08x not implemented\n",
1649 flags & ~(FR_DOWN | FR_MATCHCASE | FR_WHOLEWORD));
1652 if (chrg->cpMax == -1)
1655 nMax = chrg->cpMax > nTextLen ? nTextLen : chrg->cpMax;
1657 /* In 1.0 emulation, if cpMax reaches end of text, add the FR_DOWN flag */
1658 if (editor->bEmulateVersion10 && nMax == nTextLen)
1663 /* In 1.0 emulation, cpMin must always be no greater than cpMax */
1664 if (editor->bEmulateVersion10 && nMax < nMin)
1668 chrgText->cpMin = -1;
1669 chrgText->cpMax = -1;
1674 /* when searching up, if cpMin < cpMax, then instead of searching
1675 * on [cpMin,cpMax], we search on [0,cpMin], otherwise, search on
1676 * [cpMax, cpMin]. The exception is when cpMax is -1, in which
1677 * case, it is always bigger than cpMin.
1679 if (!editor->bEmulateVersion10 && !(flags & FR_DOWN))
1683 nMax = nMin > nTextLen ? nTextLen : nMin;
1684 if (nMin < nSwap || chrg->cpMax == -1)
1690 if (!nLen || nMin < 0 || nMax < 0 || nMax < nMin)
1693 chrgText->cpMin = chrgText->cpMax = -1;
1697 if (flags & FR_DOWN) /* Forward search */
1699 /* If possible, find the character before where the search starts */
1700 if ((flags & FR_WHOLEWORD) && nMin)
1702 ME_CursorFromCharOfs(editor, nMin - 1, &cursor);
1703 wLastChar = cursor.pRun->member.run.strText->szData[cursor.nOffset];
1704 ME_MoveCursorChars(editor, &cursor, 1);
1706 ME_CursorFromCharOfs(editor, nMin, &cursor);
1709 while (cursor.pRun && ME_GetCursorOfs(&cursor) + nLen <= nMax)
1711 ME_DisplayItem *pCurItem = cursor.pRun;
1712 int nCurStart = cursor.nOffset;
1715 while (pCurItem && ME_CharCompare(pCurItem->member.run.strText->szData[nCurStart + nMatched], text[nMatched], (flags & FR_MATCHCASE)))
1717 if ((flags & FR_WHOLEWORD) && isalnumW(wLastChar))
1721 if (nMatched == nLen)
1723 ME_DisplayItem *pNextItem = pCurItem;
1724 int nNextStart = nCurStart;
1727 /* Check to see if next character is a whitespace */
1728 if (flags & FR_WHOLEWORD)
1730 if (nCurStart + nMatched == pCurItem->member.run.strText->nLen)
1732 pNextItem = ME_FindItemFwd(pCurItem, diRun);
1733 nNextStart = -nMatched;
1737 wNextChar = pNextItem->member.run.strText->szData[nNextStart + nMatched];
1741 if (isalnumW(wNextChar))
1745 cursor.nOffset += cursor.pPara->member.para.nCharOfs + cursor.pRun->member.run.nCharOfs;
1748 chrgText->cpMin = cursor.nOffset;
1749 chrgText->cpMax = cursor.nOffset + nLen;
1751 TRACE("found at %d-%d\n", cursor.nOffset, cursor.nOffset + nLen);
1752 return cursor.nOffset;
1754 if (nCurStart + nMatched == pCurItem->member.run.strText->nLen)
1756 pCurItem = ME_FindItemFwd(pCurItem, diRun);
1757 nCurStart = -nMatched;
1761 wLastChar = pCurItem->member.run.strText->szData[nCurStart + nMatched];
1766 if (cursor.nOffset == cursor.pRun->member.run.strText->nLen)
1768 ME_NextRun(&cursor.pPara, &cursor.pRun);
1773 else /* Backward search */
1775 /* If possible, find the character after where the search ends */
1776 if ((flags & FR_WHOLEWORD) && nMax < nTextLen - 1)
1778 ME_CursorFromCharOfs(editor, nMax + 1, &cursor);
1779 wLastChar = cursor.pRun->member.run.strText->szData[cursor.nOffset];
1780 ME_MoveCursorChars(editor, &cursor, -1);
1782 ME_CursorFromCharOfs(editor, nMax, &cursor);
1785 while (cursor.pRun && ME_GetCursorOfs(&cursor) - nLen >= nMin)
1787 ME_DisplayItem *pCurItem = cursor.pRun;
1788 ME_DisplayItem *pCurPara = cursor.pPara;
1789 int nCurEnd = cursor.nOffset;
1794 ME_PrevRun(&pCurPara, &pCurItem);
1795 nCurEnd = pCurItem->member.run.strText->nLen + nMatched;
1798 while (pCurItem && ME_CharCompare(pCurItem->member.run.strText->szData[nCurEnd - nMatched - 1], text[nLen - nMatched - 1], (flags & FR_MATCHCASE)))
1800 if ((flags & FR_WHOLEWORD) && isalnumW(wLastChar))
1804 if (nMatched == nLen)
1806 ME_DisplayItem *pPrevItem = pCurItem;
1807 int nPrevEnd = nCurEnd;
1811 /* Check to see if previous character is a whitespace */
1812 if (flags & FR_WHOLEWORD)
1814 if (nPrevEnd - nMatched == 0)
1816 pPrevItem = ME_FindItemBack(pCurItem, diRun);
1818 nPrevEnd = pPrevItem->member.run.strText->nLen + nMatched;
1822 wPrevChar = pPrevItem->member.run.strText->szData[nPrevEnd - nMatched - 1];
1826 if (isalnumW(wPrevChar))
1830 nStart = pCurPara->member.para.nCharOfs
1831 + pCurItem->member.run.nCharOfs + nCurEnd - nMatched;
1834 chrgText->cpMin = nStart;
1835 chrgText->cpMax = nStart + nLen;
1837 TRACE("found at %d-%d\n", nStart, nStart + nLen);
1840 if (nCurEnd - nMatched == 0)
1842 ME_PrevRun(&pCurPara, &pCurItem);
1843 /* Don't care about pCurItem becoming NULL here; it's already taken
1844 * care of in the exterior loop condition */
1845 nCurEnd = pCurItem->member.run.strText->nLen + nMatched;
1849 wLastChar = pCurItem->member.run.strText->szData[nCurEnd - nMatched - 1];
1854 if (cursor.nOffset < 0)
1856 ME_PrevRun(&cursor.pPara, &cursor.pRun);
1857 cursor.nOffset = cursor.pRun->member.run.strText->nLen;
1861 TRACE("not found\n");
1863 chrgText->cpMin = chrgText->cpMax = -1;
1867 static int ME_GetTextEx(ME_TextEditor *editor, GETTEXTEX *ex, LPARAM pText)
1872 if (!ex->cb || !pText) return 0;
1874 if (ex->flags & ~(GT_SELECTION | GT_USECRLF))
1875 FIXME("GETTEXTEX flags 0x%08x not supported\n", ex->flags & ~(GT_SELECTION | GT_USECRLF));
1877 if (ex->flags & GT_SELECTION)
1880 int nStartCur = ME_GetSelectionOfs(editor, &from, &to);
1881 start = editor->pCursors[nStartCur];
1886 ME_SetCursorToStart(editor, &start);
1889 if (ex->codepage == 1200)
1891 return ME_GetTextW(editor, (LPWSTR)pText, ex->cb / sizeof(WCHAR) - 1,
1892 &start, nChars, ex->flags & GT_USECRLF);
1896 /* potentially each char may be a CR, why calculate the exact value with O(N) when
1897 we can just take a bigger buffer? :)
1898 The above assumption still holds with CR/LF counters, since CR->CRLF expansion
1899 occurs only in richedit 2.0 mode, in which line breaks have only one CR
1901 int crlfmul = (ex->flags & GT_USECRLF) ? 2 : 1;
1906 buflen = min(crlfmul * nChars, ex->cb - 1);
1907 buffer = heap_alloc((buflen + 1) * sizeof(WCHAR));
1909 nChars = ME_GetTextW(editor, buffer, buflen, &start, nChars, ex->flags & GT_USECRLF);
1910 rc = WideCharToMultiByte(ex->codepage, 0, buffer, nChars + 1,
1911 (LPSTR)pText, ex->cb, ex->lpDefaultChar, ex->lpUsedDefChar);
1912 if (rc) rc--; /* do not count 0 terminator */
1919 static int ME_GetTextRange(ME_TextEditor *editor, WCHAR *strText,
1920 const ME_Cursor *start, int nLen, BOOL unicode)
1922 if (!strText) return 0;
1924 return ME_GetTextW(editor, strText, INT_MAX, start, nLen, 0);
1927 WCHAR *p = ALLOC_N_OBJ(WCHAR, nLen+1);
1929 nChars = ME_GetTextW(editor, p, nLen, start, nLen, 0);
1930 WideCharToMultiByte(CP_ACP, 0, p, nChars+1, (char *)strText,
1931 nLen+1, NULL, NULL);
1937 typedef struct tagME_GlobalDestStruct
1941 } ME_GlobalDestStruct;
1943 static DWORD CALLBACK ME_ReadFromHGLOBALUnicode(DWORD_PTR dwCookie, LPBYTE lpBuff, LONG cb, LONG *pcb)
1945 ME_GlobalDestStruct *pData = (ME_GlobalDestStruct *)dwCookie;
1950 pDest = (WORD *)lpBuff;
1951 pSrc = GlobalLock(pData->hData);
1952 for (i = 0; i<cb && pSrc[pData->nLength+i]; i++) {
1953 pDest[i] = pSrc[pData->nLength+i];
1955 pData->nLength += i;
1957 GlobalUnlock(pData->hData);
1961 static DWORD CALLBACK ME_ReadFromHGLOBALRTF(DWORD_PTR dwCookie, LPBYTE lpBuff, LONG cb, LONG *pcb)
1963 ME_GlobalDestStruct *pData = (ME_GlobalDestStruct *)dwCookie;
1968 pSrc = GlobalLock(pData->hData);
1969 for (i = 0; i<cb && pSrc[pData->nLength+i]; i++) {
1970 pDest[i] = pSrc[pData->nLength+i];
1972 pData->nLength += i;
1974 GlobalUnlock(pData->hData);
1978 static BOOL ME_Paste(ME_TextEditor *editor)
1982 ME_GlobalDestStruct gds;
1983 UINT nRTFFormat = RegisterClipboardFormatA("Rich Text Format");
1986 if (IsClipboardFormatAvailable(nRTFFormat))
1987 cf = nRTFFormat, dwFormat = SF_RTF;
1988 else if (IsClipboardFormatAvailable(CF_UNICODETEXT))
1989 cf = CF_UNICODETEXT, dwFormat = SF_TEXT|SF_UNICODE;
1993 if (!OpenClipboard(editor->hWnd))
1995 gds.hData = GetClipboardData(cf);
1997 es.dwCookie = (DWORD_PTR)&gds;
1998 es.pfnCallback = dwFormat == SF_RTF ? ME_ReadFromHGLOBALRTF : ME_ReadFromHGLOBALUnicode;
1999 ME_StreamIn(editor, dwFormat|SFF_SELECTION, &es, FALSE);
2005 static BOOL ME_Copy(ME_TextEditor *editor, const ME_Cursor *start, int nChars)
2007 LPDATAOBJECT dataObj = NULL;
2010 if (editor->cPasswordMask)
2011 return FALSE; /* Copying or Cutting masked text isn't allowed */
2013 if(editor->lpOleCallback)
2016 range.cpMin = ME_GetCursorOfs(start);
2017 range.cpMax = range.cpMin + nChars;
2018 hr = IRichEditOleCallback_GetClipboardData(editor->lpOleCallback, &range, RECO_COPY, &dataObj);
2020 if(FAILED(hr) || !dataObj)
2021 hr = ME_GetDataObject(editor, start, nChars, &dataObj);
2023 hr = OleSetClipboard(dataObj);
2024 IDataObject_Release(dataObj);
2026 return SUCCEEDED(hr) != 0;
2029 /* helper to send a msg filter notification */
2031 ME_FilterEvent(ME_TextEditor *editor, UINT msg, WPARAM* wParam, LPARAM* lParam)
2035 if (!editor->hWnd || !editor->hwndParent) return FALSE;
2036 msgf.nmhdr.hwndFrom = editor->hWnd;
2037 msgf.nmhdr.idFrom = GetWindowLongW(editor->hWnd, GWLP_ID);
2038 msgf.nmhdr.code = EN_MSGFILTER;
2040 msgf.wParam = *wParam;
2041 msgf.lParam = *lParam;
2042 if (SendMessageW(editor->hwndParent, WM_NOTIFY, msgf.nmhdr.idFrom, (LPARAM)&msgf))
2044 *wParam = msgf.wParam;
2045 *lParam = msgf.lParam;
2046 msgf.wParam = *wParam;
2051 static void ME_UpdateSelectionLinkAttribute(ME_TextEditor *editor)
2053 ME_DisplayItem *startPara, *endPara;
2054 ME_DisplayItem *prev_para;
2055 ME_Cursor *from, *to;
2059 if (!editor->AutoURLDetect_bEnable) return;
2061 ME_GetSelection(editor, &from, &to);
2063 /* Find paragraph previous to the one that contains start cursor */
2064 startPara = from->pPara;
2065 prev_para = startPara->member.para.prev_para;
2066 if (prev_para->type == diParagraph) startPara = prev_para;
2068 /* Find paragraph that contains end cursor */
2069 endPara = to->pPara->member.para.next_para;
2071 start.pPara = startPara;
2072 start.pRun = ME_FindItemFwd(startPara, diRun);
2074 nChars = endPara->member.para.nCharOfs - startPara->member.para.nCharOfs;
2076 ME_UpdateLinkAttribute(editor, &start, nChars);
2080 ME_KeyDown(ME_TextEditor *editor, WORD nKey)
2082 BOOL ctrl_is_down = GetKeyState(VK_CONTROL) & 0x8000;
2083 BOOL shift_is_down = GetKeyState(VK_SHIFT) & 0x8000;
2085 if (editor->bMouseCaptured)
2087 if (nKey != VK_SHIFT && nKey != VK_CONTROL && nKey != VK_MENU)
2088 editor->nSelectionType = stPosition;
2096 editor->nUDArrowX = -1;
2102 ME_CommitUndo(editor); /* End coalesced undos for typed characters */
2103 ME_ArrowKey(editor, nKey, shift_is_down, ctrl_is_down);
2107 editor->nUDArrowX = -1;
2108 /* FIXME backspace and delete aren't the same, they act different wrt paragraph style of the merged paragraph */
2109 if (editor->styleFlags & ES_READONLY)
2111 if (ME_IsSelection(editor))
2113 ME_DeleteSelection(editor);
2114 ME_CommitUndo(editor);
2116 else if (nKey == VK_DELETE)
2118 /* Delete stops group typing.
2119 * (See MSDN remarks on EM_STOPGROUPTYPING message) */
2120 ME_DeleteTextAtCursor(editor, 1, 1);
2121 ME_CommitUndo(editor);
2123 else if (ME_ArrowKey(editor, VK_LEFT, FALSE, FALSE))
2125 BOOL bDeletionSucceeded;
2126 /* Backspace can be grouped for a single undo */
2127 ME_ContinueCoalescingTransaction(editor);
2128 bDeletionSucceeded = ME_DeleteTextAtCursor(editor, 1, 1);
2129 if (!bDeletionSucceeded && !editor->bEmulateVersion10) { /* v4.1 */
2130 /* Deletion was prevented so the cursor is moved back to where it was.
2131 * (e.g. this happens when trying to delete cell boundaries)
2133 ME_ArrowKey(editor, VK_RIGHT, FALSE, FALSE);
2135 ME_CommitCoalescingUndo(editor);
2139 ME_MoveCursorFromTableRowStartParagraph(editor);
2140 ME_UpdateSelectionLinkAttribute(editor);
2141 ME_UpdateRepaint(editor, FALSE);
2142 ME_SendRequestResize(editor, FALSE);
2145 if (editor->bDialogMode)
2150 if (!(editor->styleFlags & ES_WANTRETURN))
2152 if (editor->hwndParent)
2155 dw = SendMessageW(editor->hwndParent, DM_GETDEFID, 0, 0);
2156 if (HIWORD(dw) == DC_HASDEFID)
2158 HWND hwDefCtrl = GetDlgItem(editor->hwndParent, LOWORD(dw));
2161 SendMessageW(editor->hwndParent, WM_NEXTDLGCTL, (WPARAM)hwDefCtrl, TRUE);
2162 PostMessageW(hwDefCtrl, WM_KEYDOWN, VK_RETURN, 0);
2170 if (editor->styleFlags & ES_MULTILINE)
2172 ME_Cursor cursor = editor->pCursors[0];
2173 ME_DisplayItem *para = cursor.pPara;
2175 const WCHAR endl = '\r';
2178 if (editor->styleFlags & ES_READONLY) {
2179 MessageBeep(MB_ICONERROR);
2183 ME_GetSelectionOfs(editor, &from, &to);
2184 if (editor->nTextLimit > ME_GetTextLength(editor) - (to-from))
2186 if (!editor->bEmulateVersion10) { /* v4.1 */
2187 if (para->member.para.nFlags & MEPF_ROWEND) {
2188 /* Add a new table row after this row. */
2189 para = ME_AppendTableRow(editor, para);
2190 para = para->member.para.next_para;
2191 editor->pCursors[0].pPara = para;
2192 editor->pCursors[0].pRun = ME_FindItemFwd(para, diRun);
2193 editor->pCursors[0].nOffset = 0;
2194 editor->pCursors[1] = editor->pCursors[0];
2195 ME_CommitUndo(editor);
2196 ME_CheckTablesForCorruption(editor);
2197 ME_UpdateRepaint(editor, FALSE);
2200 else if (para == editor->pCursors[1].pPara &&
2201 cursor.nOffset + cursor.pRun->member.run.nCharOfs == 0 &&
2202 para->member.para.prev_para->member.para.nFlags & MEPF_ROWSTART &&
2203 !para->member.para.prev_para->member.para.nCharOfs)
2205 /* Insert a newline before the table. */
2206 para = para->member.para.prev_para;
2207 para->member.para.nFlags &= ~MEPF_ROWSTART;
2208 editor->pCursors[0].pPara = para;
2209 editor->pCursors[0].pRun = ME_FindItemFwd(para, diRun);
2210 editor->pCursors[1] = editor->pCursors[0];
2211 ME_InsertTextFromCursor(editor, 0, &endl, 1,
2212 editor->pCursors[0].pRun->member.run.style);
2213 para = editor->pBuffer->pFirst->member.para.next_para;
2214 ME_SetDefaultParaFormat(para->member.para.pFmt);
2215 para->member.para.nFlags = MEPF_REWRAP;
2216 editor->pCursors[0].pPara = para;
2217 editor->pCursors[0].pRun = ME_FindItemFwd(para, diRun);
2218 editor->pCursors[1] = editor->pCursors[0];
2219 para->member.para.next_para->member.para.nFlags |= MEPF_ROWSTART;
2220 ME_CommitCoalescingUndo(editor);
2221 ME_CheckTablesForCorruption(editor);
2222 ME_UpdateRepaint(editor, FALSE);
2225 } else { /* v1.0 - 3.0 */
2226 ME_DisplayItem *para = cursor.pPara;
2227 if (ME_IsInTable(para))
2229 if (cursor.pRun->member.run.nFlags & MERF_ENDPARA)
2232 ME_ContinueCoalescingTransaction(editor);
2233 para = ME_AppendTableRow(editor, para);
2234 editor->pCursors[0].pPara = para;
2235 editor->pCursors[0].pRun = ME_FindItemFwd(para, diRun);
2236 editor->pCursors[0].nOffset = 0;
2237 editor->pCursors[1] = editor->pCursors[0];
2238 ME_CommitCoalescingUndo(editor);
2239 ME_UpdateRepaint(editor, FALSE);
2243 ME_ContinueCoalescingTransaction(editor);
2244 if (cursor.pRun->member.run.nCharOfs + cursor.nOffset == 0 &&
2245 !ME_IsInTable(para->member.para.prev_para))
2247 /* Insert newline before table */
2248 cursor.pRun = ME_FindItemBack(para, diRun);
2250 editor->pCursors[0].pRun = cursor.pRun;
2251 editor->pCursors[0].pPara = para->member.para.prev_para;
2253 editor->pCursors[0].nOffset = 0;
2254 editor->pCursors[1] = editor->pCursors[0];
2255 ME_InsertTextFromCursor(editor, 0, &endl, 1,
2256 editor->pCursors[0].pRun->member.run.style);
2258 editor->pCursors[1] = editor->pCursors[0];
2259 para = ME_AppendTableRow(editor, para);
2260 editor->pCursors[0].pPara = para;
2261 editor->pCursors[0].pRun = ME_FindItemFwd(para, diRun);
2262 editor->pCursors[0].nOffset = 0;
2263 editor->pCursors[1] = editor->pCursors[0];
2265 ME_CommitCoalescingUndo(editor);
2266 ME_UpdateRepaint(editor, FALSE);
2272 style = ME_GetInsertStyle(editor, 0);
2273 ME_SaveTempStyle(editor);
2274 ME_ContinueCoalescingTransaction(editor);
2276 ME_InsertEndRowFromCursor(editor, 0);
2278 ME_InsertTextFromCursor(editor, 0, &endl, 1, style);
2279 ME_ReleaseStyle(style);
2280 ME_CommitCoalescingUndo(editor);
2283 ME_UpdateSelectionLinkAttribute(editor);
2284 ME_UpdateRepaint(editor, FALSE);
2290 if (editor->bDialogMode && editor->hwndParent)
2291 PostMessageW(editor->hwndParent, WM_CLOSE, 0, 0);
2294 if (editor->bDialogMode && editor->hwndParent)
2295 SendMessageW(editor->hwndParent, WM_NEXTDLGCTL, shift_is_down, 0);
2300 ME_SetSelection(editor, 0, -1);
2306 return ME_Paste(editor);
2314 int nStartCur = ME_GetSelectionOfs(editor, &nOfs, &nChars);
2315 ME_Cursor *selStart = &editor->pCursors[nStartCur];
2318 result = ME_Copy(editor, selStart, nChars);
2319 if (result && nKey == 'X')
2321 ME_InternalDeleteText(editor, selStart, nChars, FALSE);
2322 ME_CommitUndo(editor);
2323 ME_UpdateRepaint(editor, TRUE);
2344 if (nKey != VK_SHIFT && nKey != VK_CONTROL && nKey && nKey != VK_MENU)
2345 editor->nUDArrowX = -1;
2352 chf.cbSize = sizeof(chf);
2354 ME_GetSelectionCharFormat(editor, &chf);
2355 ME_DumpStyleToBuf(&chf, buf);
2356 MessageBoxA(NULL, buf, "Style dump", MB_OK);
2360 ME_CheckCharOffsets(editor);
2367 static LRESULT ME_Char(ME_TextEditor *editor, WPARAM charCode,
2368 LPARAM flags, BOOL unicode)
2372 if (editor->bMouseCaptured)
2376 wstr = (WCHAR)charCode;
2379 CHAR charA = charCode;
2380 MultiByteToWideChar(CP_ACP, 0, &charA, 1, &wstr, 1);
2383 if (editor->styleFlags & ES_READONLY) {
2384 MessageBeep(MB_ICONERROR);
2385 return 0; /* FIXME really 0 ? */
2388 if ((unsigned)wstr >= ' ' || wstr == '\t')
2390 ME_Cursor cursor = editor->pCursors[0];
2391 ME_DisplayItem *para = cursor.pPara;
2393 BOOL ctrl_is_down = GetKeyState(VK_CONTROL) & 0x8000;
2394 ME_GetSelectionOfs(editor, &from, &to);
2396 /* v4.1 allows tabs to be inserted with ctrl key down */
2397 !(ctrl_is_down && !editor->bEmulateVersion10))
2399 ME_DisplayItem *para;
2400 BOOL bSelectedRow = FALSE;
2402 para = cursor.pPara;
2403 if (ME_IsSelection(editor) &&
2404 cursor.pRun->member.run.nCharOfs + cursor.nOffset == 0 &&
2405 to == ME_GetCursorOfs(&editor->pCursors[0]) &&
2406 para->member.para.prev_para->type == diParagraph)
2408 para = para->member.para.prev_para;
2409 bSelectedRow = TRUE;
2411 if (ME_IsInTable(para))
2413 ME_TabPressedInTable(editor, bSelectedRow);
2414 ME_CommitUndo(editor);
2417 } else if (!editor->bEmulateVersion10) { /* v4.1 */
2418 if (para->member.para.nFlags & MEPF_ROWEND) {
2420 para = para->member.para.next_para;
2421 if (para->member.para.nFlags & MEPF_ROWSTART)
2422 para = para->member.para.next_para;
2423 editor->pCursors[0].pPara = para;
2424 editor->pCursors[0].pRun = ME_FindItemFwd(para, diRun);
2425 editor->pCursors[0].nOffset = 0;
2426 editor->pCursors[1] = editor->pCursors[0];
2429 } else { /* v1.0 - 3.0 */
2430 if (ME_IsInTable(cursor.pRun) &&
2431 cursor.pRun->member.run.nFlags & MERF_ENDPARA &&
2434 /* Text should not be inserted at the end of the table. */
2439 /* FIXME maybe it would make sense to call EM_REPLACESEL instead ? */
2440 /* WM_CHAR is restricted to nTextLimit */
2441 if(editor->nTextLimit > ME_GetTextLength(editor) - (to-from))
2443 ME_Style *style = ME_GetInsertStyle(editor, 0);
2444 ME_SaveTempStyle(editor);
2445 ME_ContinueCoalescingTransaction(editor);
2446 ME_InsertTextFromCursor(editor, 0, &wstr, 1, style);
2447 ME_ReleaseStyle(style);
2448 ME_CommitCoalescingUndo(editor);
2449 ITextHost_TxSetCursor(editor->texthost, NULL, FALSE);
2452 ME_UpdateSelectionLinkAttribute(editor);
2453 ME_UpdateRepaint(editor, FALSE);
2458 /* Process the message and calculate the new click count.
2460 * returns: The click count if it is mouse down event, else returns 0. */
2461 static int ME_CalculateClickCount(ME_TextEditor *editor, UINT msg, WPARAM wParam,
2464 static int clickNum = 0;
2465 if (msg < WM_MOUSEFIRST || msg > WM_MOUSELAST)
2468 if ((msg == WM_LBUTTONDBLCLK) ||
2469 (msg == WM_RBUTTONDBLCLK) ||
2470 (msg == WM_MBUTTONDBLCLK) ||
2471 (msg == WM_XBUTTONDBLCLK))
2473 msg -= (WM_LBUTTONDBLCLK - WM_LBUTTONDOWN);
2476 if ((msg == WM_LBUTTONDOWN) ||
2477 (msg == WM_RBUTTONDOWN) ||
2478 (msg == WM_MBUTTONDOWN) ||
2479 (msg == WM_XBUTTONDOWN))
2481 static MSG prevClickMsg;
2483 /* Compare the editor instead of the hwnd so that the this
2484 * can still be done for windowless richedit controls. */
2485 clickMsg.hwnd = (HWND)editor;
2486 clickMsg.message = msg;
2487 clickMsg.wParam = wParam;
2488 clickMsg.lParam = lParam;
2489 clickMsg.time = GetMessageTime();
2490 clickMsg.pt.x = (short)LOWORD(lParam);
2491 clickMsg.pt.y = (short)HIWORD(lParam);
2492 if ((clickNum != 0) &&
2493 (clickMsg.message == prevClickMsg.message) &&
2494 (clickMsg.hwnd == prevClickMsg.hwnd) &&
2495 (clickMsg.wParam == prevClickMsg.wParam) &&
2496 (clickMsg.time - prevClickMsg.time < GetDoubleClickTime()) &&
2497 (abs(clickMsg.pt.x - prevClickMsg.pt.x) < GetSystemMetrics(SM_CXDOUBLECLK)/2) &&
2498 (abs(clickMsg.pt.y - prevClickMsg.pt.y) < GetSystemMetrics(SM_CYDOUBLECLK)/2))
2504 prevClickMsg = clickMsg;
2511 static BOOL ME_SetCursor(ME_TextEditor *editor)
2517 DWORD messagePos = GetMessagePos();
2518 pt.x = (short)LOWORD(messagePos);
2519 pt.y = (short)HIWORD(messagePos);
2523 sbi.cbSize = sizeof(sbi);
2524 GetScrollBarInfo(editor->hWnd, OBJID_HSCROLL, &sbi);
2525 if (!(sbi.rgstate[0] & (STATE_SYSTEM_INVISIBLE|STATE_SYSTEM_OFFSCREEN)) &&
2526 PtInRect(&sbi.rcScrollBar, pt))
2528 ITextHost_TxSetCursor(editor->texthost,
2529 LoadCursorW(NULL, (WCHAR*)IDC_ARROW), FALSE);
2532 sbi.cbSize = sizeof(sbi);
2533 GetScrollBarInfo(editor->hWnd, OBJID_VSCROLL, &sbi);
2534 if (!(sbi.rgstate[0] & (STATE_SYSTEM_INVISIBLE|STATE_SYSTEM_OFFSCREEN)) &&
2535 PtInRect(&sbi.rcScrollBar, pt))
2537 ITextHost_TxSetCursor(editor->texthost,
2538 LoadCursorW(NULL, (WCHAR*)IDC_ARROW), FALSE);
2542 ITextHost_TxScreenToClient(editor->texthost, &pt);
2544 if (editor->nSelectionType == stLine && editor->bMouseCaptured) {
2545 ITextHost_TxSetCursor(editor->texthost, hLeft, FALSE);
2548 if (!editor->bEmulateVersion10 /* v4.1 */ &&
2549 pt.y < editor->rcFormat.top &&
2550 pt.x < editor->rcFormat.left)
2552 ITextHost_TxSetCursor(editor->texthost, hLeft, FALSE);
2555 if (pt.y < editor->rcFormat.top || pt.y > editor->rcFormat.bottom)
2557 if (editor->bEmulateVersion10) /* v1.0 - 3.0 */
2558 ITextHost_TxSetCursor(editor->texthost,
2559 LoadCursorW(NULL, (WCHAR*)IDC_ARROW), FALSE);
2561 ITextHost_TxSetCursor(editor->texthost,
2562 LoadCursorW(NULL, (WCHAR*)IDC_IBEAM), TRUE);
2565 if (pt.x < editor->rcFormat.left)
2567 ITextHost_TxSetCursor(editor->texthost, hLeft, FALSE);
2570 ME_CharFromPos(editor, pt.x, pt.y, &cursor, &isExact);
2575 run = &cursor.pRun->member.run;
2576 if (run->style->fmt.dwMask & CFM_LINK &&
2577 run->style->fmt.dwEffects & CFE_LINK)
2579 ITextHost_TxSetCursor(editor->texthost,
2580 LoadCursorW(NULL, (WCHAR*)IDC_HAND),
2585 if (ME_IsSelection(editor))
2587 int selStart, selEnd;
2588 int offset = ME_GetCursorOfs(&cursor);
2590 ME_GetSelectionOfs(editor, &selStart, &selEnd);
2591 if (selStart <= offset && selEnd >= offset) {
2592 ITextHost_TxSetCursor(editor->texthost,
2593 LoadCursorW(NULL, (WCHAR*)IDC_ARROW),
2599 ITextHost_TxSetCursor(editor->texthost,
2600 LoadCursorW(NULL, (WCHAR*)IDC_IBEAM), TRUE);
2604 static void ME_SetDefaultFormatRect(ME_TextEditor *editor)
2606 ITextHost_TxGetClientRect(editor->texthost, &editor->rcFormat);
2607 editor->rcFormat.top += editor->exStyleFlags & WS_EX_CLIENTEDGE ? 1 : 0;
2608 editor->rcFormat.left += 1 + editor->selofs;
2609 editor->rcFormat.right -= 1;
2612 static BOOL ME_ShowContextMenu(ME_TextEditor *editor, int x, int y)
2617 if(!editor->lpOleCallback || !editor->hWnd)
2619 ME_GetSelectionOfs(editor, &selrange.cpMin, &selrange.cpMax);
2620 if(selrange.cpMin == selrange.cpMax)
2621 seltype |= SEL_EMPTY;
2624 /* FIXME: Handle objects */
2625 seltype |= SEL_TEXT;
2626 if(selrange.cpMax-selrange.cpMin > 1)
2627 seltype |= SEL_MULTICHAR;
2629 if(SUCCEEDED(IRichEditOleCallback_GetContextMenu(editor->lpOleCallback, seltype, NULL, &selrange, &menu)))
2631 TrackPopupMenu(menu, TPM_LEFTALIGN | TPM_RIGHTBUTTON, x, y, 0, editor->hwndParent, NULL);
2637 ME_TextEditor *ME_MakeEditor(ITextHost *texthost, BOOL bEmulateVersion10)
2639 ME_TextEditor *ed = ALLOC_OBJ(ME_TextEditor);
2645 ed->hwndParent = NULL;
2646 ed->sizeWindow.cx = ed->sizeWindow.cy = 0;
2647 ed->texthost = texthost;
2648 ed->bEmulateVersion10 = bEmulateVersion10;
2650 ITextHost_TxGetPropertyBits(texthost,
2651 (TXTBIT_RICHTEXT|TXTBIT_MULTILINE|
2652 TXTBIT_READONLY|TXTBIT_USEPASSWORD|
2653 TXTBIT_HIDESELECTION|TXTBIT_SAVESELECTION|
2654 TXTBIT_AUTOWORDSEL|TXTBIT_VERTICAL|
2655 TXTBIT_WORDWRAP|TXTBIT_DISABLEDRAG),
2657 ITextHost_TxGetScrollBars(texthost, &ed->styleFlags);
2658 ed->styleFlags &= (WS_VSCROLL|WS_HSCROLL|ES_AUTOVSCROLL|
2659 ES_AUTOHSCROLL|ES_DISABLENOSCROLL);
2660 ed->pBuffer = ME_MakeText();
2661 ed->nZoomNumerator = ed->nZoomDenominator = 0;
2662 ed->nAvailWidth = 0; /* wrap to client area */
2663 ME_MakeFirstParagraph(ed);
2664 /* The four cursors are for:
2665 * 0 - The position where the caret is shown
2666 * 1 - The anchored end of the selection (for normal selection)
2667 * 2 & 3 - The anchored start and end respectively for word, line,
2668 * or paragraph selection.
2671 ed->pCursors = ALLOC_N_OBJ(ME_Cursor, ed->nCursors);
2672 ME_SetCursorToStart(ed, &ed->pCursors[0]);
2673 ed->pCursors[1] = ed->pCursors[0];
2674 ed->pCursors[2] = ed->pCursors[0];
2675 ed->pCursors[3] = ed->pCursors[1];
2676 ed->nLastTotalLength = ed->nTotalLength = 0;
2677 ed->nLastTotalWidth = ed->nTotalWidth = 0;
2680 ed->rgbBackColor = -1;
2681 ed->hbrBackground = GetSysColorBrush(COLOR_WINDOW);
2682 ed->bCaretAtEnd = FALSE;
2684 ed->nModifyStep = 0;
2685 ed->nTextLimit = TEXT_LIMIT_DEFAULT;
2686 ed->pUndoStack = ed->pRedoStack = ed->pUndoStackBottom = NULL;
2687 ed->nUndoStackSize = 0;
2688 ed->nUndoLimit = STACK_SIZE_DEFAULT;
2689 ed->nUndoMode = umAddToUndo;
2690 ed->nParagraphs = 1;
2691 ed->nLastSelStart = ed->nLastSelEnd = 0;
2692 ed->pLastSelStartPara = ed->pLastSelEndPara = ed->pCursors[0].pPara;
2693 ed->bHideSelection = FALSE;
2694 ed->pfnWordBreak = NULL;
2695 ed->lpOleCallback = NULL;
2696 ed->mode = TM_MULTILEVELUNDO | TM_MULTICODEPAGE;
2697 ed->mode |= (props & TXTBIT_RICHTEXT) ? TM_RICHTEXT : TM_PLAINTEXT;
2698 ed->AutoURLDetect_bEnable = FALSE;
2699 ed->bHaveFocus = FALSE;
2700 ed->bDialogMode = FALSE;
2701 ed->bMouseCaptured = FALSE;
2702 for (i=0; i<HFONT_CACHE_SIZE; i++)
2704 ed->pFontCache[i].nRefs = 0;
2705 ed->pFontCache[i].nAge = 0;
2706 ed->pFontCache[i].hFont = NULL;
2709 ME_CheckCharOffsets(ed);
2710 ed->bDefaultFormatRect = TRUE;
2711 ITextHost_TxGetSelectionBarWidth(ed->texthost, &selbarwidth);
2713 /* FIXME: Convert selbarwidth from HIMETRIC to pixels */
2714 ed->selofs = SELECTIONBAR_WIDTH;
2715 ed->styleFlags |= ES_SELECTIONBAR;
2719 ed->nSelectionType = stPosition;
2721 ed->cPasswordMask = 0;
2722 if (props & TXTBIT_USEPASSWORD)
2723 ITextHost_TxGetPasswordChar(texthost, &ed->cPasswordMask);
2725 if (props & TXTBIT_AUTOWORDSEL)
2726 ed->styleFlags |= ECO_AUTOWORDSELECTION;
2727 if (props & TXTBIT_MULTILINE) {
2728 ed->styleFlags |= ES_MULTILINE;
2729 ed->bWordWrap = (props & TXTBIT_WORDWRAP) != 0;
2731 ed->bWordWrap = FALSE;
2733 if (props & TXTBIT_READONLY)
2734 ed->styleFlags |= ES_READONLY;
2735 if (!(props & TXTBIT_HIDESELECTION))
2736 ed->styleFlags |= ES_NOHIDESEL;
2737 if (props & TXTBIT_SAVESELECTION)
2738 ed->styleFlags |= ES_SAVESEL;
2739 if (props & TXTBIT_VERTICAL)
2740 ed->styleFlags |= ES_VERTICAL;
2741 if (props & TXTBIT_DISABLEDRAG)
2742 ed->styleFlags |= ES_NOOLEDRAGDROP;
2744 ed->notified_cr.cpMin = ed->notified_cr.cpMax = 0;
2746 /* Default scrollbar information */
2747 ed->vert_si.cbSize = sizeof(SCROLLINFO);
2748 ed->vert_si.nMin = 0;
2749 ed->vert_si.nMax = 0;
2750 ed->vert_si.nPage = 0;
2751 ed->vert_si.nPos = 0;
2753 ed->horz_si.cbSize = sizeof(SCROLLINFO);
2754 ed->horz_si.nMin = 0;
2755 ed->horz_si.nMax = 0;
2756 ed->horz_si.nPage = 0;
2757 ed->horz_si.nPos = 0;
2759 OleInitialize(NULL);
2764 static void ME_DestroyEditor(ME_TextEditor *editor)
2766 ME_DisplayItem *pFirst = editor->pBuffer->pFirst;
2767 ME_DisplayItem *p = pFirst, *pNext = NULL;
2770 ME_ClearTempStyle(editor);
2771 ME_EmptyUndoStack(editor);
2774 ME_DestroyDisplayItem(p);
2777 ME_ReleaseStyle(editor->pBuffer->pDefaultStyle);
2778 for (i=0; i<HFONT_CACHE_SIZE; i++)
2780 if (editor->pFontCache[i].hFont)
2781 DeleteObject(editor->pFontCache[i].hFont);
2783 if (editor->rgbBackColor != -1)
2784 DeleteObject(editor->hbrBackground);
2785 if(editor->lpOleCallback)
2786 IUnknown_Release(editor->lpOleCallback);
2787 IUnknown_Release(editor->texthost);
2790 FREE_OBJ(editor->pBuffer);
2791 FREE_OBJ(editor->pCursors);
2796 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
2801 case DLL_PROCESS_ATTACH:
2802 DisableThreadLibraryCalls(hinstDLL);
2803 me_heap = HeapCreate (0, 0x10000, 0);
2804 if (!ME_RegisterEditorClass(hinstDLL)) return FALSE;
2805 hLeft = LoadCursorW(hinstDLL, MAKEINTRESOURCEW(OCR_REVERSE));
2809 case DLL_PROCESS_DETACH:
2810 UnregisterClassW(RICHEDIT_CLASS20W, 0);
2811 UnregisterClassW(MSFTEDIT_CLASS, 0);
2812 UnregisterClassA(RICHEDIT_CLASS20A, 0);
2813 UnregisterClassA("RichEdit50A", 0);
2814 if (ME_ListBoxRegistered)
2815 UnregisterClassW(REListBox20W, 0);
2816 if (ME_ComboBoxRegistered)
2817 UnregisterClassW(REComboBox20W, 0);
2819 HeapDestroy (me_heap);
2827 static const char * const edit_messages[] = {
2856 "EM_SETPASSWORDCHAR",
2857 "EM_EMPTYUNDOBUFFER",
2858 "EM_GETFIRSTVISIBLELINE",
2860 "EM_SETWORDBREAKPROC",
2861 "EM_GETWORDBREAKPROC",
2862 "EM_GETPASSWORDCHAR",
2872 static const char * const richedit_messages[] = {
2877 "EM_EXLINEFROMCHAR",
2883 "EM_GETOLEINTERFACE",
2893 "EM_SETOLECALLBACK",
2895 "EM_SETTARGETDEVICE",
2903 "EM_GETWORDBREAKPROCEX",
2904 "EM_SETWORDBREAKPROCEX",
2906 "EM_UNKNOWN_USER_83",
2911 "EM_STOPGROUPTYPING",
2915 "EM_GETAUTOURLDETECT",
2918 "EM_GETTEXTLENGTHEX",
2921 "EM_UNKNOWN_USER_98",
2922 "EM_UNKNOWN_USER_99",
2923 "EM_SETPUNCTUATION",
2924 "EM_GETPUNCTUATION",
2925 "EM_SETWORDWRAPMODE",
2926 "EM_GETWORDWRAPMODE",
2932 "EM_UNKNOWN_USER_109",
2933 "EM_UNKNOWN_USER_110",
2934 "EM_UNKNOWN_USER_111",
2935 "EM_UNKNOWN_USER_112",
2936 "EM_UNKNOWN_USER_113",
2937 "EM_UNKNOWN_USER_114",
2938 "EM_UNKNOWN_USER_115",
2939 "EM_UNKNOWN_USER_116",
2940 "EM_UNKNOWN_USER_117",
2941 "EM_UNKNOWN_USER_118",
2942 "EM_UNKNOWN_USER_119",
2943 "EM_SETLANGOPTIONS",
2944 "EM_GETLANGOPTIONS",
2945 "EM_GETIMECOMPMODE",
2949 "EM_SETIMEMODEBIAS",
2954 get_msg_name(UINT msg)
2956 if (msg >= EM_GETSEL && msg <= EM_CHARFROMPOS)
2957 return edit_messages[msg - EM_GETSEL];
2958 if (msg >= EM_CANPASTE && msg <= EM_GETIMEMODEBIAS)
2959 return richedit_messages[msg - EM_CANPASTE];
2963 static void ME_LinkNotify(ME_TextEditor *editor, UINT msg, WPARAM wParam, LPARAM lParam)
2967 ME_Cursor cursor; /* The start of the clicked text. */
2970 x = (short)LOWORD(lParam);
2971 y = (short)HIWORD(lParam);
2972 ME_CharFromPos(editor, x, y, &cursor, &isExact);
2973 if (!isExact) return;
2975 if (cursor.pRun->member.run.style->fmt.dwMask & CFM_LINK &&
2976 cursor.pRun->member.run.style->fmt.dwEffects & CFE_LINK)
2977 { /* The clicked run has CFE_LINK set */
2978 info.nmhdr.hwndFrom = NULL;
2979 info.nmhdr.idFrom = 0;
2980 info.nmhdr.code = EN_LINK;
2982 info.wParam = wParam;
2983 info.lParam = lParam;
2985 info.chrg.cpMin = ME_GetCursorOfs(&cursor);
2986 info.chrg.cpMax = info.chrg.cpMin + cursor.pRun->member.run.strText->nLen;
2987 ITextHost_TxNotify(editor->texthost, info.nmhdr.code, &info);
2991 #define UNSUPPORTED_MSG(e) \
2993 FIXME(#e ": stub\n"); \
2994 *phresult = S_FALSE; \
2997 /* Handle messages for windowless and windoweded richedit controls.
2999 * The LRESULT that is returned is a return value for window procs,
3000 * and the phresult parameter is the COM return code needed by the
3001 * text services interface. */
3002 LRESULT ME_HandleMessage(ME_TextEditor *editor, UINT msg, WPARAM wParam,
3003 LPARAM lParam, BOOL unicode, HRESULT* phresult)
3009 UNSUPPORTED_MSG(EM_DISPLAYBAND)
3010 UNSUPPORTED_MSG(EM_FINDWORDBREAK)
3011 UNSUPPORTED_MSG(EM_FMTLINES)
3012 UNSUPPORTED_MSG(EM_FORMATRANGE)
3013 UNSUPPORTED_MSG(EM_GETBIDIOPTIONS)
3014 UNSUPPORTED_MSG(EM_GETEDITSTYLE)
3015 UNSUPPORTED_MSG(EM_GETIMECOMPMODE)
3016 UNSUPPORTED_MSG(EM_GETIMESTATUS)
3017 UNSUPPORTED_MSG(EM_SETIMESTATUS)
3018 UNSUPPORTED_MSG(EM_GETLANGOPTIONS)
3019 UNSUPPORTED_MSG(EM_GETREDONAME)
3020 UNSUPPORTED_MSG(EM_GETTYPOGRAPHYOPTIONS)
3021 UNSUPPORTED_MSG(EM_GETUNDONAME)
3022 UNSUPPORTED_MSG(EM_GETWORDBREAKPROCEX)
3023 UNSUPPORTED_MSG(EM_PASTESPECIAL)
3024 UNSUPPORTED_MSG(EM_SELECTIONTYPE)
3025 UNSUPPORTED_MSG(EM_SETBIDIOPTIONS)
3026 UNSUPPORTED_MSG(EM_SETEDITSTYLE)
3027 UNSUPPORTED_MSG(EM_SETFONTSIZE)
3028 UNSUPPORTED_MSG(EM_SETLANGOPTIONS)
3029 UNSUPPORTED_MSG(EM_SETMARGINS)
3030 UNSUPPORTED_MSG(EM_SETPALETTE)
3031 UNSUPPORTED_MSG(EM_SETTABSTOPS)
3032 UNSUPPORTED_MSG(EM_SETTYPOGRAPHYOPTIONS)
3033 UNSUPPORTED_MSG(EM_SETWORDBREAKPROCEX)
3035 /* Messages specific to Richedit controls */
3038 return ME_StreamIn(editor, wParam, (EDITSTREAM*)lParam, TRUE);
3040 return ME_StreamOut(editor, wParam, (EDITSTREAM *)lParam);
3043 UINT code = DLGC_WANTCHARS|DLGC_WANTTAB|DLGC_WANTARROWS|DLGC_HASSETSEL;
3045 editor->bDialogMode = TRUE;
3046 if (editor->styleFlags & ES_MULTILINE)
3047 code |= DLGC_WANTMESSAGE;
3050 case EM_EMPTYUNDOBUFFER:
3051 ME_EmptyUndoStack(editor);
3055 /* Note: wParam/lParam can be NULL */
3057 PUINT pfrom = wParam ? (PUINT)wParam : &from;
3058 PUINT pto = lParam ? (PUINT)lParam : &to;
3059 ME_GetSelectionOfs(editor, (int *)pfrom, (int *)pto);
3060 if ((*pfrom|*pto) & 0xFFFF0000)
3062 return MAKELONG(*pfrom,*pto);
3066 CHARRANGE *pRange = (CHARRANGE *)lParam;
3067 ME_GetSelectionOfs(editor, &pRange->cpMin, &pRange->cpMax);
3068 TRACE("EM_EXGETSEL = (%d,%d)\n", pRange->cpMin, pRange->cpMax);
3071 case EM_SETUNDOLIMIT:
3073 if ((int)wParam < 0)
3074 editor->nUndoLimit = STACK_SIZE_DEFAULT;
3076 editor->nUndoLimit = min(wParam, STACK_SIZE_MAX);
3077 /* Setting a max stack size keeps wine from getting killed
3078 for hogging memory. Windows allocates all this memory at once, so
3079 no program would realistically set a value above our maximum. */
3080 return editor->nUndoLimit;
3083 return editor->pUndoStack != NULL;
3085 return editor->pRedoStack != NULL;
3086 case WM_UNDO: /* FIXME: actually not the same */
3088 return ME_Undo(editor);
3090 return ME_Redo(editor);
3093 /* these flags are equivalent to the ES_* counterparts */
3094 DWORD mask = ECO_VERTICAL | ECO_AUTOHSCROLL | ECO_AUTOVSCROLL |
3095 ECO_NOHIDESEL | ECO_READONLY | ECO_WANTRETURN | ECO_SELECTIONBAR;
3096 DWORD settings = editor->styleFlags & mask;
3102 /* these flags are equivalent to ES_* counterparts, except for
3103 * ECO_AUTOWORDSELECTION that doesn't have an ES_* counterpart,
3104 * but is still stored in editor->styleFlags. */
3105 const DWORD mask = ECO_VERTICAL | ECO_AUTOHSCROLL | ECO_AUTOVSCROLL |
3106 ECO_NOHIDESEL | ECO_READONLY | ECO_WANTRETURN |
3107 ECO_SELECTIONBAR | ECO_AUTOWORDSELECTION;
3108 DWORD settings = mask & editor->styleFlags;
3109 DWORD oldSettings = settings;
3110 DWORD changedSettings;
3126 changedSettings = oldSettings ^ settings;
3128 if (changedSettings) {
3129 editor->styleFlags = (editor->styleFlags & ~mask) | (settings & mask);
3131 if (changedSettings & ECO_SELECTIONBAR)
3133 ITextHost_TxInvalidateRect(editor->texthost, &editor->rcFormat, TRUE);
3134 if (settings & ECO_SELECTIONBAR) {
3135 assert(!editor->selofs);
3136 editor->selofs = SELECTIONBAR_WIDTH;
3137 editor->rcFormat.left += editor->selofs;
3139 editor->rcFormat.left -= editor->selofs;
3142 ME_RewrapRepaint(editor);
3145 if (changedSettings & settings & ECO_VERTICAL)
3146 FIXME("ECO_VERTICAL not implemented yet!\n");
3147 if (changedSettings & settings & ECO_AUTOHSCROLL)
3148 FIXME("ECO_AUTOHSCROLL not implemented yet!\n");
3149 if (changedSettings & settings & ECO_AUTOVSCROLL)
3150 FIXME("ECO_AUTOVSCROLL not implemented yet!\n");
3151 if (changedSettings & settings & ECO_NOHIDESEL)
3152 FIXME("ECO_NOHIDESEL not implemented yet!\n");
3153 if (changedSettings & settings & ECO_WANTRETURN)
3154 FIXME("ECO_WANTRETURN not implemented yet!\n");
3155 if (changedSettings & settings & ECO_AUTOWORDSELECTION)
3156 FIXME("ECO_AUTOWORDSELECTION not implemented yet!\n");
3163 ME_InvalidateSelection(editor);
3164 ME_SetSelection(editor, wParam, lParam);
3165 ME_InvalidateSelection(editor);
3166 ITextHost_TxShowCaret(editor->texthost, FALSE);
3167 ME_ShowCaret(editor);
3168 ME_SendSelChange(editor);
3171 case EM_SETSCROLLPOS:
3173 POINT *point = (POINT *)lParam;
3174 ME_ScrollAbs(editor, point->x, point->y);
3177 case EM_AUTOURLDETECT:
3179 if (wParam==1 || wParam ==0)
3181 editor->AutoURLDetect_bEnable = (BOOL)wParam;
3184 return E_INVALIDARG;
3186 case EM_GETAUTOURLDETECT:
3188 return editor->AutoURLDetect_bEnable;
3193 CHARRANGE range = *(CHARRANGE *)lParam;
3195 TRACE("EM_EXSETSEL (%d,%d)\n", range.cpMin, range.cpMax);
3197 ME_InvalidateSelection(editor);
3198 end = ME_SetSelection(editor, range.cpMin, range.cpMax);
3199 ME_InvalidateSelection(editor);
3200 ITextHost_TxShowCaret(editor->texthost, FALSE);
3201 ME_ShowCaret(editor);
3202 ME_SendSelChange(editor);
3206 case EM_SHOWSCROLLBAR:
3219 flags = WS_HSCROLL|WS_VSCROLL;
3226 editor->styleFlags |= flags;
3227 if (flags & WS_HSCROLL)
3228 ITextHost_TxShowScrollBar(editor->texthost, SB_HORZ,
3229 editor->nTotalWidth > editor->sizeWindow.cx);
3230 if (flags & WS_VSCROLL)
3231 ITextHost_TxShowScrollBar(editor->texthost, SB_VERT,
3232 editor->nTotalLength > editor->sizeWindow.cy);
3234 editor->styleFlags &= ~flags;
3235 ITextHost_TxShowScrollBar(editor->texthost, wParam, FALSE);
3242 SETTEXTEX *pStruct = (SETTEXTEX *)wParam;
3246 BOOL bRtf, bUnicode, bSelection;
3247 int oldModify = editor->nModifyStep;
3249 if (!pStruct) return 0;
3251 /* If we detect ascii rtf at the start of the string,
3252 * we know it isn't unicode. */
3253 bRtf = (lParam && (!strncmp((char *)lParam, "{\\rtf", 5) ||
3254 !strncmp((char *)lParam, "{\\urtf", 6)));
3255 bUnicode = !bRtf && pStruct->codepage == 1200;
3257 TRACE("EM_SETTEXTEX - %s, flags %d, cp %d\n",
3258 bUnicode ? debugstr_w((LPCWSTR)lParam) : debugstr_a((LPCSTR)lParam),
3259 pStruct->flags, pStruct->codepage);
3261 bSelection = (pStruct->flags & ST_SELECTION) != 0;
3263 int nStartCursor = ME_GetSelectionOfs(editor, &from, &to);
3264 style = ME_GetSelectionInsertStyle(editor);
3265 ME_InternalDeleteText(editor, &editor->pCursors[nStartCursor], to - from, FALSE);
3268 ME_SetCursorToStart(editor, &start);
3269 ME_InternalDeleteText(editor, &start, ME_GetTextLength(editor), FALSE);
3270 style = editor->pBuffer->pDefaultStyle;
3274 ME_StreamInRTFString(editor, bSelection, (char *)lParam);
3276 /* FIXME: The length returned doesn't include the rtf control
3277 * characters, only the actual text. */
3278 len = lParam ? strlen((char *)lParam) : 0;
3281 /* FIXME: make use of pStruct->codepage in the to unicode translation */
3282 wszText = lParam ? ME_ToUnicode(bUnicode, (void *)lParam) : NULL;
3283 len = wszText ? lstrlenW(wszText) : 0;
3284 ME_InsertTextFromCursor(editor, 0, wszText, len, style);
3285 ME_EndToUnicode(bUnicode, wszText);
3289 ME_ReleaseStyle(style);
3290 ME_UpdateSelectionLinkAttribute(editor);
3294 ME_SetCursorToStart(editor, &cursor);
3295 ME_UpdateLinkAttribute(editor, &cursor, INT_MAX);
3297 ME_CommitUndo(editor);
3298 if (!(pStruct->flags & ST_KEEPUNDO))
3300 editor->nModifyStep = oldModify;
3301 ME_EmptyUndoStack(editor);
3303 ME_UpdateRepaint(editor, FALSE);
3306 case EM_SETBKGNDCOLOR:
3309 if (editor->rgbBackColor != -1) {
3310 DeleteObject(editor->hbrBackground);
3311 lColor = editor->rgbBackColor;
3313 else lColor = ITextHost_TxGetSysColor(editor->texthost, COLOR_WINDOW);
3317 editor->rgbBackColor = -1;
3318 editor->hbrBackground = GetSysColorBrush(COLOR_WINDOW);
3322 editor->rgbBackColor = lParam;
3323 editor->hbrBackground = CreateSolidBrush(editor->rgbBackColor);
3325 ITextHost_TxInvalidateRect(editor->texthost, NULL, TRUE);
3326 ITextHost_TxViewChange(editor->texthost, TRUE);
3330 return editor->nModifyStep == 0 ? 0 : -1;
3334 editor->nModifyStep = 1;
3336 editor->nModifyStep = 0;
3340 case EM_SETREADONLY:
3343 editor->styleFlags |= ES_READONLY;
3345 editor->styleFlags &= ~ES_READONLY;
3348 case EM_SETEVENTMASK:
3350 DWORD nOldMask = editor->nEventMask;
3352 editor->nEventMask = lParam;
3355 case EM_GETEVENTMASK:
3356 return editor->nEventMask;
3357 case EM_SETCHARFORMAT:
3359 CHARFORMAT2W buf, *p;
3360 BOOL bRepaint = TRUE;
3361 p = ME_ToCF2W(&buf, (CHARFORMAT2W *)lParam);
3362 if (p == NULL) return 0;
3363 if (wParam & SCF_ALL) {
3364 if (editor->mode & TM_PLAINTEXT) {
3365 ME_SetDefaultCharFormat(editor, p);
3368 ME_SetCursorToStart(editor, &start);
3369 ME_SetCharFormat(editor, &start, NULL, p);
3370 editor->nModifyStep = 1;
3372 } else if (wParam & SCF_SELECTION) {
3373 if (editor->mode & TM_PLAINTEXT)
3375 if (wParam & SCF_WORD) {
3376 FIXME("EM_SETCHARFORMAT: word selection not supported\n");
3379 bRepaint = ME_IsSelection(editor);
3380 ME_SetSelectionCharFormat(editor, p);
3381 if (bRepaint) editor->nModifyStep = 1;
3382 } else { /* SCF_DEFAULT */
3383 ME_SetDefaultCharFormat(editor, p);
3385 ME_CommitUndo(editor);
3388 ME_WrapMarkedParagraphs(editor);
3389 ME_UpdateScrollBar(editor);
3394 case EM_GETCHARFORMAT:
3396 CHARFORMAT2W tmp, *dst = (CHARFORMAT2W *)lParam;
3397 if (dst->cbSize != sizeof(CHARFORMATA) &&
3398 dst->cbSize != sizeof(CHARFORMATW) &&
3399 dst->cbSize != sizeof(CHARFORMAT2A) &&
3400 dst->cbSize != sizeof(CHARFORMAT2W))
3402 tmp.cbSize = sizeof(tmp);
3404 ME_GetDefaultCharFormat(editor, &tmp);
3406 ME_GetSelectionCharFormat(editor, &tmp);
3407 ME_CopyToCFAny(dst, &tmp);
3410 case EM_SETPARAFORMAT:
3412 BOOL result = ME_SetSelectionParaFormat(editor, (PARAFORMAT2 *)lParam);
3413 ME_WrapMarkedParagraphs(editor);
3414 ME_UpdateScrollBar(editor);
3416 ME_CommitUndo(editor);
3419 case EM_GETPARAFORMAT:
3420 ME_GetSelectionParaFormat(editor, (PARAFORMAT2 *)lParam);
3421 return ((PARAFORMAT2 *)lParam)->dwMask;
3422 case EM_GETFIRSTVISIBLELINE:
3424 ME_DisplayItem *p = editor->pBuffer->pFirst;
3425 int y = editor->vert_si.nPos;
3430 p = ME_FindItemFwd(p, diStartRowOrParagraphOrEnd);
3431 if (p->type == diTextEnd)
3433 if (p->type == diParagraph) {
3434 ypara = p->member.para.pt.y;
3437 ystart = ypara + p->member.row.pt.y;
3438 yend = ystart + p->member.row.nHeight;
3446 case EM_HIDESELECTION:
3448 editor->bHideSelection = (wParam != 0);
3449 ME_InvalidateSelection(editor);
3454 if (!(editor->styleFlags & ES_MULTILINE))
3456 ME_ScrollDown(editor, lParam * 8); /* FIXME follow the original */
3462 int nStartCursor = ME_GetSelectionOfs(editor, &from, &to);
3463 ME_InternalDeleteText(editor, &editor->pCursors[nStartCursor], to-from, FALSE);
3464 ME_CommitUndo(editor);
3465 ME_UpdateRepaint(editor, TRUE);
3470 int from, to, nStartCursor;
3472 LPWSTR wszText = lParam ? ME_ToUnicode(unicode, (void *)lParam) : NULL;
3473 size_t len = wszText ? lstrlenW(wszText) : 0;
3474 TRACE("EM_REPLACESEL - %s\n", debugstr_w(wszText));
3476 nStartCursor = ME_GetSelectionOfs(editor, &from, &to);
3477 style = ME_GetSelectionInsertStyle(editor);
3478 ME_InternalDeleteText(editor, &editor->pCursors[nStartCursor], to-from, FALSE);
3479 ME_InsertTextFromCursor(editor, 0, wszText, len, style);
3480 ME_ReleaseStyle(style);
3481 /* drop temporary style if line end */
3483 * FIXME question: does abc\n mean: put abc,
3484 * clear temp style, put \n? (would require a change)
3486 if (len>0 && wszText[len-1] == '\n')
3487 ME_ClearTempStyle(editor);
3488 ME_EndToUnicode(unicode, wszText);
3489 ME_CommitUndo(editor);
3490 ME_UpdateSelectionLinkAttribute(editor);
3492 ME_EmptyUndoStack(editor);
3493 ME_UpdateRepaint(editor, FALSE);
3496 case EM_SCROLLCARET:
3497 ME_EnsureVisible(editor, &editor->pCursors[0]);
3504 BOOL bRepaint = LOWORD(lParam);
3507 wParam = (WPARAM)GetStockObject(SYSTEM_FONT);
3508 GetObjectW((HGDIOBJ)wParam, sizeof(LOGFONTW), &lf);
3509 hDC = ITextHost_TxGetDC(editor->texthost);
3510 ME_CharFormatFromLogFont(hDC, &lf, &fmt);
3511 ITextHost_TxReleaseDC(editor->texthost, hDC);
3512 if (editor->mode & TM_RICHTEXT) {
3514 ME_SetCursorToStart(editor, &start);
3515 ME_SetCharFormat(editor, &start, NULL, &fmt);
3517 ME_SetDefaultCharFormat(editor, &fmt);
3519 ME_CommitUndo(editor);
3520 ME_MarkAllForWrapping(editor);
3521 ME_WrapMarkedParagraphs(editor);
3522 ME_UpdateScrollBar(editor);
3530 ME_SetCursorToStart(editor, &cursor);
3531 ME_InternalDeleteText(editor, &cursor, ME_GetTextLength(editor), FALSE);
3534 TRACE("WM_SETTEXT lParam==%lx\n",lParam);
3535 if (!strncmp((char *)lParam, "{\\rtf", 5) ||
3536 !strncmp((char *)lParam, "{\\urtf", 6))
3538 /* Undocumented: WM_SETTEXT supports RTF text */
3539 ME_StreamInRTFString(editor, 0, (char *)lParam);
3543 LPWSTR wszText = ME_ToUnicode(unicode, (void *)lParam);
3544 TRACE("WM_SETTEXT - %s\n", debugstr_w(wszText)); /* debugstr_w() */
3545 if (lstrlenW(wszText) > 0)
3549 /* uses default style! */
3550 if (!(editor->styleFlags & ES_MULTILINE))
3555 while (*p != '\0' && *p != '\r' && *p != '\n') p++;
3558 ME_InsertTextFromCursor(editor, 0, wszText, len, editor->pBuffer->pDefaultStyle);
3560 ME_EndToUnicode(unicode, wszText);
3564 TRACE("WM_SETTEXT - NULL\n");
3565 ME_SetCursorToStart(editor, &cursor);
3566 ME_UpdateLinkAttribute(editor, &cursor, INT_MAX);
3567 ME_SetSelection(editor, 0, 0);
3568 editor->nModifyStep = 0;
3569 ME_CommitUndo(editor);
3570 ME_EmptyUndoStack(editor);
3571 ME_UpdateRepaint(editor, FALSE);
3576 UINT nRTFFormat = RegisterClipboardFormatA("Rich Text Format");
3577 if (IsClipboardFormatAvailable(nRTFFormat))
3579 if (IsClipboardFormatAvailable(CF_UNICODETEXT))
3589 int nFrom, nTo, nStartCur = ME_GetSelectionOfs(editor, &nFrom, &nTo);
3590 int nChars = nTo - nFrom;
3591 ME_Cursor *selStart = &editor->pCursors[nStartCur];
3593 if (ME_Copy(editor, selStart, nChars) && msg == WM_CUT)
3595 ME_InternalDeleteText(editor, selStart, nChars, FALSE);
3596 ME_CommitUndo(editor);
3597 ME_UpdateRepaint(editor, TRUE);
3601 case WM_GETTEXTLENGTH:
3603 GETTEXTLENGTHEX how;
3605 /* CR/LF conversion required in 2.0 mode, verbatim in 1.0 mode */
3606 how.flags = GTL_CLOSE | (editor->bEmulateVersion10 ? 0 : GTL_USECRLF) | GTL_NUMCHARS;
3607 how.codepage = unicode ? 1200 : CP_ACP;
3608 return ME_GetTextLengthEx(editor, &how);
3610 case EM_GETTEXTLENGTHEX:
3611 return ME_GetTextLengthEx(editor, (GETTEXTLENGTHEX *)wParam);
3615 ex.cb = wParam * (unicode ? sizeof(WCHAR) : sizeof(CHAR));
3616 ex.flags = GT_USECRLF;
3617 ex.codepage = unicode ? 1200 : CP_ACP;
3618 ex.lpDefaultChar = NULL;
3619 ex.lpUsedDefChar = NULL;
3620 return ME_GetTextEx(editor, &ex, lParam);
3623 return ME_GetTextEx(editor, (GETTEXTEX*)wParam, lParam);
3626 int nFrom, nTo, nStartCur = ME_GetSelectionOfs(editor, &nFrom, &nTo);
3627 ME_Cursor *from = &editor->pCursors[nStartCur];
3628 return ME_GetTextRange(editor, (WCHAR *)lParam, from,
3629 nTo - nFrom, unicode);
3631 case EM_GETSCROLLPOS:
3633 POINT *point = (POINT *)lParam;
3634 point->x = editor->horz_si.nPos;
3635 point->y = editor->vert_si.nPos;
3636 /* 16-bit scaled value is returned as stored in scrollinfo */
3637 if (editor->horz_si.nMax > 0xffff)
3638 point->x = MulDiv(point->x, 0xffff, editor->horz_si.nMax);
3639 if (editor->vert_si.nMax > 0xffff)
3640 point->y = MulDiv(point->y, 0xffff, editor->vert_si.nMax);
3643 case EM_GETTEXTRANGE:
3645 TEXTRANGEW *rng = (TEXTRANGEW *)lParam;
3647 int nStart = rng->chrg.cpMin;
3648 int nEnd = rng->chrg.cpMax;
3649 int textlength = ME_GetTextLength(editor);
3651 TRACE("EM_GETTEXTRANGE min=%d max=%d unicode=%d textlength=%d\n",
3652 rng->chrg.cpMin, rng->chrg.cpMax, unicode, textlength);
3653 if (nStart < 0) return 0;
3654 if ((nStart == 0 && nEnd == -1) || nEnd > textlength)
3656 if (nStart >= nEnd) return 0;
3658 ME_CursorFromCharOfs(editor, nStart, &start);
3659 return ME_GetTextRange(editor, rng->lpstrText, &start, nEnd - nStart, unicode);
3663 ME_DisplayItem *run;
3664 const unsigned int nMaxChars = *(WORD *) lParam;
3665 unsigned int nCharsLeft = nMaxChars;
3666 char *dest = (char *) lParam;
3667 BOOL wroteNull = FALSE;
3669 TRACE("EM_GETLINE: row=%d, nMaxChars=%d (%s)\n", (int) wParam, nMaxChars,
3670 unicode ? "Unicode" : "Ansi");
3672 run = ME_FindRowWithNumber(editor, wParam);
3676 while (nCharsLeft && (run = ME_FindItemFwd(run, diRunOrStartRow))
3677 && run->type == diRun)
3682 strText = run->member.run.strText;
3683 nCopy = min(nCharsLeft, strText->nLen);
3686 memcpy(dest, strText->szData, nCopy * sizeof(WCHAR));
3688 nCopy = WideCharToMultiByte(CP_ACP, 0, strText->szData, nCopy, dest,
3689 nCharsLeft, NULL, NULL);
3690 dest += nCopy * (unicode ? sizeof(WCHAR) : 1);
3691 nCharsLeft -= nCopy;
3694 /* append line termination, space allowing */
3698 *((WCHAR *)dest) = '\0';
3705 TRACE("EM_GETLINE: got %u characters\n", nMaxChars - nCharsLeft);
3706 return nMaxChars - nCharsLeft - (wroteNull ? 1 : 0);
3708 case EM_GETLINECOUNT:
3710 ME_DisplayItem *item = editor->pBuffer->pFirst->next;
3713 ME_DisplayItem *prev_para = NULL, *last_para = NULL;
3715 while (item != editor->pBuffer->pLast)
3717 assert(item->type == diParagraph);
3718 prev_para = ME_FindItemBack(item, diRun);
3720 assert(prev_para->member.run.nFlags & MERF_ENDPARA);
3722 nRows += item->member.para.nRows;
3723 item = item->member.para.next_para;
3725 last_para = ME_FindItemBack(item, diRun);
3727 assert(last_para->member.run.nFlags & MERF_ENDPARA);
3728 if (editor->bEmulateVersion10 && prev_para &&
3729 last_para->member.run.nCharOfs == 0 &&
3730 prev_para->member.run.strText->nLen == 1 &&
3731 prev_para->member.run.strText->szData[0] == '\r')
3733 /* In 1.0 emulation, the last solitary \r at the very end of the text
3734 (if one exists) is NOT a line break.
3735 FIXME: this is an ugly hack. This should have a more regular model. */
3739 TRACE("EM_GETLINECOUNT: nRows==%d\n", nRows);
3740 return max(1, nRows);
3742 case EM_LINEFROMCHAR:
3745 return ME_RowNumberFromCharOfs(editor, ME_GetCursorOfs(&editor->pCursors[1]));
3747 return ME_RowNumberFromCharOfs(editor, wParam);
3749 case EM_EXLINEFROMCHAR:
3752 return ME_RowNumberFromCharOfs(editor, ME_GetCursorOfs(&editor->pCursors[1]));
3754 return ME_RowNumberFromCharOfs(editor, lParam);
3758 ME_DisplayItem *item, *para;
3762 item = ME_FindItemBack(editor->pCursors[0].pRun, diStartRow);
3764 item = ME_FindRowWithNumber(editor, wParam);
3767 para = ME_GetParagraph(item);
3768 item = ME_FindItemFwd(item, diRun);
3769 nCharOfs = para->member.para.nCharOfs + item->member.run.nCharOfs;
3770 TRACE("EM_LINEINDEX: nCharOfs==%d\n", nCharOfs);
3775 ME_DisplayItem *item, *item_end;
3776 int nChars = 0, nThisLineOfs = 0, nNextLineOfs = 0;
3777 ME_DisplayItem *para, *run;
3779 if (wParam > ME_GetTextLength(editor))
3783 FIXME("EM_LINELENGTH: returning number of unselected characters on lines with selection unsupported.\n");
3786 ME_RunOfsFromCharOfs(editor, wParam, ¶, &run, NULL);
3787 item = ME_RowStart(run);
3788 nThisLineOfs = ME_CharOfsFromRunOfs(editor, para, ME_FindItemFwd(item, diRun), 0);
3789 item_end = ME_FindItemFwd(item, diStartRowOrParagraphOrEnd);
3790 if (item_end->type == diStartRow) {
3791 nNextLineOfs = ME_CharOfsFromRunOfs(editor, para, ME_FindItemFwd(item_end, diRun), 0);
3793 ME_DisplayItem *endRun = ME_FindItemBack(item_end, diRun);
3794 assert(endRun && endRun->member.run.nFlags & MERF_ENDPARA);
3795 nNextLineOfs = item_end->member.para.nCharOfs - endRun->member.run.strText->nLen;
3797 nChars = nNextLineOfs - nThisLineOfs;
3798 TRACE("EM_LINELENGTH(%ld)==%d\n",wParam, nChars);
3801 case EM_EXLIMITTEXT:
3803 if ((int)lParam < 0)
3806 editor->nTextLimit = 65536;
3808 editor->nTextLimit = (int) lParam;
3814 editor->nTextLimit = 65536;
3816 editor->nTextLimit = (int) wParam;
3819 case EM_GETLIMITTEXT:
3821 return editor->nTextLimit;
3825 FINDTEXTA *ft = (FINDTEXTA *)lParam;
3826 int nChars = MultiByteToWideChar(CP_ACP, 0, ft->lpstrText, -1, NULL, 0);
3830 if ((tmp = ALLOC_N_OBJ(WCHAR, nChars)) != NULL)
3831 MultiByteToWideChar(CP_ACP, 0, ft->lpstrText, -1, tmp, nChars);
3832 r = ME_FindText(editor, wParam, &ft->chrg, tmp, NULL);
3838 FINDTEXTEXA *ex = (FINDTEXTEXA *)lParam;
3839 int nChars = MultiByteToWideChar(CP_ACP, 0, ex->lpstrText, -1, NULL, 0);
3843 if ((tmp = ALLOC_N_OBJ(WCHAR, nChars)) != NULL)
3844 MultiByteToWideChar(CP_ACP, 0, ex->lpstrText, -1, tmp, nChars);
3845 r = ME_FindText(editor, wParam, &ex->chrg, tmp, &ex->chrgText);
3851 FINDTEXTW *ft = (FINDTEXTW *)lParam;
3852 return ME_FindText(editor, wParam, &ft->chrg, ft->lpstrText, NULL);
3854 case EM_FINDTEXTEXW:
3856 FINDTEXTEXW *ex = (FINDTEXTEXW *)lParam;
3857 return ME_FindText(editor, wParam, &ex->chrg, ex->lpstrText, &ex->chrgText);
3860 if (!wParam || !lParam)
3862 *(int *)wParam = editor->nZoomNumerator;
3863 *(int *)lParam = editor->nZoomDenominator;
3866 return ME_SetZoom(editor, wParam, lParam);
3867 case EM_CHARFROMPOS:
3870 if (ME_CharFromPos(editor, ((POINTL *)lParam)->x, ((POINTL *)lParam)->y,
3872 return ME_GetCursorOfs(&cursor);
3876 case EM_POSFROMCHAR:
3878 ME_DisplayItem *pPara, *pRun;
3879 int nCharOfs, nOffset, nLength;
3883 /* detect which API version we're dealing with */
3884 if (wParam >= 0x40000)
3886 nLength = ME_GetTextLength(editor);
3887 nCharOfs = min(nCharOfs, nLength);
3888 nCharOfs = max(nCharOfs, 0);
3890 ME_RunOfsFromCharOfs(editor, nCharOfs, &pPara, &pRun, &nOffset);
3891 assert(pRun->type == diRun);
3892 pt.y = pRun->member.run.pt.y;
3893 pt.x = pRun->member.run.pt.x + ME_PointFromChar(editor, &pRun->member.run, nOffset);
3894 pt.y += pPara->member.para.pt.y + editor->rcFormat.top;
3895 pt.x += editor->rcFormat.left;
3897 pt.x -= editor->horz_si.nPos;
3898 pt.y -= editor->vert_si.nPos;
3900 if (wParam >= 0x40000) {
3901 *(POINTL *)wParam = pt;
3903 return (wParam >= 0x40000) ? 0 : MAKELONG( pt.x, pt.y );
3909 ME_SetDefaultFormatRect(editor);
3911 max = (editor->styleFlags & ES_DISABLENOSCROLL) ? 1 : 0;
3912 if (~editor->styleFlags & ES_DISABLENOSCROLL || editor->styleFlags & WS_VSCROLL)
3913 ITextHost_TxSetScrollRange(editor->texthost, SB_VERT, 0, max, TRUE);
3915 if (~editor->styleFlags & ES_DISABLENOSCROLL || editor->styleFlags & WS_HSCROLL)
3916 ITextHost_TxSetScrollRange(editor->texthost, SB_HORZ, 0, max, TRUE);
3918 if (editor->styleFlags & ES_DISABLENOSCROLL)
3920 if (editor->styleFlags & WS_VSCROLL)
3922 ITextHost_TxEnableScrollBar(editor->texthost, SB_VERT, ESB_DISABLE_BOTH);
3923 ITextHost_TxShowScrollBar(editor->texthost, SB_VERT, TRUE);
3925 if (editor->styleFlags & WS_HSCROLL)
3927 ITextHost_TxEnableScrollBar(editor->texthost, SB_HORZ, ESB_DISABLE_BOTH);
3928 ITextHost_TxShowScrollBar(editor->texthost, SB_HORZ, TRUE);
3932 ME_CommitUndo(editor);
3933 ME_WrapMarkedParagraphs(editor);
3934 ME_MoveCaret(editor);
3938 ME_DestroyEditor(editor);
3942 return ME_SetCursor(editor);
3944 case WM_LBUTTONDBLCLK:
3945 case WM_LBUTTONDOWN:
3947 ME_CommitUndo(editor); /* End coalesced undos for typed characters */
3948 if ((editor->nEventMask & ENM_MOUSEEVENTS) &&
3949 !ME_FilterEvent(editor, msg, &wParam, &lParam))
3951 ITextHost_TxSetFocus(editor->texthost);
3952 ME_LButtonDown(editor, (short)LOWORD(lParam), (short)HIWORD(lParam),
3953 ME_CalculateClickCount(editor, msg, wParam, lParam));
3954 ITextHost_TxSetCapture(editor->texthost, TRUE);
3955 editor->bMouseCaptured = TRUE;
3956 ME_LinkNotify(editor,msg,wParam,lParam);
3957 if (!ME_SetCursor(editor)) goto do_default;
3961 if ((editor->nEventMask & ENM_MOUSEEVENTS) &&
3962 !ME_FilterEvent(editor, msg, &wParam, &lParam))
3964 if (editor->bMouseCaptured)
3965 ME_MouseMove(editor, (short)LOWORD(lParam), (short)HIWORD(lParam));
3966 ME_LinkNotify(editor,msg,wParam,lParam);
3967 /* Set cursor if mouse is captured, since WM_SETCURSOR won't be received. */
3968 if (editor->bMouseCaptured)
3969 ME_SetCursor(editor);
3972 if (editor->bMouseCaptured) {
3973 ITextHost_TxSetCapture(editor->texthost, FALSE);
3974 editor->bMouseCaptured = FALSE;
3976 if (editor->nSelectionType == stDocument)
3977 editor->nSelectionType = stPosition;
3978 if ((editor->nEventMask & ENM_MOUSEEVENTS) &&
3979 !ME_FilterEvent(editor, msg, &wParam, &lParam))
3983 ME_SetCursor(editor);
3984 ME_LinkNotify(editor,msg,wParam,lParam);
3988 case WM_RBUTTONDOWN:
3989 ME_CommitUndo(editor); /* End coalesced undos for typed characters */
3990 if ((editor->nEventMask & ENM_MOUSEEVENTS) &&
3991 !ME_FilterEvent(editor, msg, &wParam, &lParam))
3994 case WM_CONTEXTMENU:
3995 if (!ME_ShowContextMenu(editor, (short)LOWORD(lParam), (short)HIWORD(lParam)))
3999 editor->bHaveFocus = TRUE;
4000 ME_ShowCaret(editor);
4001 ME_SendOldNotify(editor, EN_SETFOCUS);
4004 ME_CommitUndo(editor); /* End coalesced undos for typed characters */
4005 editor->bHaveFocus = FALSE;
4006 ME_HideCaret(editor);
4007 ME_SendOldNotify(editor, EN_KILLFOCUS);
4010 TRACE("editor wnd command = %d\n", LOWORD(wParam));
4013 if ((editor->nEventMask & ENM_KEYEVENTS) &&
4014 !ME_FilterEvent(editor, msg, &wParam, &lParam))
4018 if ((editor->nEventMask & ENM_KEYEVENTS) &&
4019 !ME_FilterEvent(editor, msg, &wParam, &lParam))
4021 if (ME_KeyDown(editor, LOWORD(wParam)))
4025 return ME_Char(editor, wParam, lParam, unicode);
4029 if(wParam == UNICODE_NOCHAR) return TRUE;
4030 if(wParam <= 0x000fffff)
4032 if(wParam > 0xffff) /* convert to surrogates */
4035 ME_Char(editor, (wParam >> 10) + 0xd800, 0, TRUE);
4036 ME_Char(editor, (wParam & 0x03ff) + 0xdc00, 0, TRUE);
4038 ME_Char(editor, wParam, 0, TRUE);
4044 case EM_STOPGROUPTYPING:
4045 ME_CommitUndo(editor); /* End coalesced undos for typed characters */
4049 const int scrollUnit = 7;
4051 switch(LOWORD(wParam))
4054 ME_ScrollAbs(editor, 0, 0);
4057 ME_ScrollAbs(editor,
4058 editor->horz_si.nMax - (int)editor->horz_si.nPage,
4059 editor->vert_si.nMax - (int)editor->vert_si.nPage);
4062 ME_ScrollLeft(editor, scrollUnit);
4065 ME_ScrollRight(editor, scrollUnit);
4068 ME_ScrollLeft(editor, editor->sizeWindow.cx);
4071 ME_ScrollRight(editor, editor->sizeWindow.cx);
4074 case SB_THUMBPOSITION:
4076 int pos = HIWORD(wParam);
4077 if (editor->horz_si.nMax > 0xffff)
4078 pos = MulDiv(pos, editor->horz_si.nMax, 0xffff);
4079 ME_HScrollAbs(editor, pos);
4085 case EM_SCROLL: /* fall through */
4091 origNPos = editor->vert_si.nPos;
4094 if (editor->pBuffer && editor->pBuffer->pDefaultStyle)
4095 lineHeight = editor->pBuffer->pDefaultStyle->tm.tmHeight;
4096 if (lineHeight <= 0) lineHeight = 24;
4098 switch(LOWORD(wParam))
4101 ME_ScrollAbs(editor, 0, 0);
4104 ME_ScrollAbs(editor,
4105 editor->horz_si.nMax - (int)editor->horz_si.nPage,
4106 editor->vert_si.nMax - (int)editor->vert_si.nPage);
4109 ME_ScrollUp(editor,lineHeight);
4112 ME_ScrollDown(editor,lineHeight);
4115 ME_ScrollUp(editor,editor->sizeWindow.cy);
4118 ME_ScrollDown(editor,editor->sizeWindow.cy);
4121 case SB_THUMBPOSITION:
4123 int pos = HIWORD(wParam);
4124 if (editor->vert_si.nMax > 0xffff)
4125 pos = MulDiv(pos, editor->vert_si.nMax, 0xffff);
4126 ME_VScrollAbs(editor, pos);
4130 if (msg == EM_SCROLL)
4131 return 0x00010000 | (((editor->vert_si.nPos - origNPos)/lineHeight) & 0xffff);
4137 UINT pulScrollLines;
4140 if ((editor->nEventMask & ENM_MOUSEEVENTS) &&
4141 !ME_FilterEvent(editor, msg, &wParam, &lParam))
4144 ctrl_is_down = GetKeyState(VK_CONTROL) & 0x8000;
4146 gcWheelDelta = GET_WHEEL_DELTA_WPARAM(wParam);
4148 if (abs(gcWheelDelta) >= WHEEL_DELTA)
4152 if (!editor->nZoomNumerator || !editor->nZoomDenominator)
4156 numerator = editor->nZoomNumerator * 100 / editor->nZoomDenominator;
4158 numerator = numerator + (gcWheelDelta / WHEEL_DELTA) * 10;
4159 if (numerator >= 10 && numerator <= 500)
4160 ME_SetZoom(editor, numerator, 100);
4162 SystemParametersInfoW(SPI_GETWHEELSCROLLLINES,0, &pulScrollLines, 0);
4163 /* FIXME follow the original */
4165 ME_ScrollDown(editor,pulScrollLines * (-gcWheelDelta / WHEEL_DELTA) * 8);
4172 *((RECT *)lParam) = editor->rcFormat;
4173 if (editor->bDefaultFormatRect)
4174 ((RECT *)lParam)->left -= editor->selofs;
4184 RECT *rc = (RECT *)lParam;
4186 border = editor->exStyleFlags & WS_EX_CLIENTEDGE ? 1 : 0;
4187 ITextHost_TxGetClientRect(editor->texthost, &clientRect);
4190 editor->rcFormat.top = max(0, rc->top - border);
4191 editor->rcFormat.left = max(0, rc->left - border);
4192 editor->rcFormat.bottom = min(clientRect.bottom, rc->bottom);
4193 editor->rcFormat.right = min(clientRect.right, rc->right + border);
4194 } else if (wParam == 1) {
4195 /* MSDN incorrectly says a wParam value of 1 causes the
4196 * lParam rect to be used as a relative offset,
4197 * however, the tests show it just prevents min/max bound
4199 editor->rcFormat.top = rc->top - border;
4200 editor->rcFormat.left = rc->left - border;
4201 editor->rcFormat.bottom = rc->bottom;
4202 editor->rcFormat.right = rc->right + border;
4206 editor->bDefaultFormatRect = FALSE;
4210 ME_SetDefaultFormatRect(editor);
4211 editor->bDefaultFormatRect = TRUE;
4213 ME_MarkAllForWrapping(editor);
4214 ME_WrapMarkedParagraphs(editor);
4215 ME_UpdateScrollBar(editor);
4216 if (msg != EM_SETRECTNP)
4220 case EM_REQUESTRESIZE:
4221 ME_SendRequestResize(editor, TRUE);
4229 ITextHost_TxGetClientRect(editor->texthost, &clientRect);
4230 if (editor->bDefaultFormatRect) {
4231 ME_SetDefaultFormatRect(editor);
4233 editor->rcFormat.right += clientRect.right - editor->prevClientRect.right;
4234 editor->rcFormat.bottom += clientRect.bottom - editor->prevClientRect.bottom;
4236 editor->prevClientRect = clientRect;
4237 ME_RewrapRepaint(editor);
4240 /* IME messages to make richedit controls IME aware */
4241 case WM_IME_SETCONTEXT:
4242 case WM_IME_CONTROL:
4244 case WM_IME_COMPOSITIONFULL:
4246 case WM_IME_STARTCOMPOSITION:
4248 editor->imeStartIndex=ME_GetCursorOfs(&editor->pCursors[0]);
4249 ME_DeleteSelection(editor);
4250 ME_CommitUndo(editor);
4251 ME_UpdateRepaint(editor, FALSE);
4254 case WM_IME_COMPOSITION:
4258 ME_Style *style = ME_GetInsertStyle(editor, 0);
4259 hIMC = ITextHost_TxImmGetContext(editor->texthost);
4260 ME_DeleteSelection(editor);
4261 ME_SaveTempStyle(editor);
4262 if (lParam & (GCS_RESULTSTR|GCS_COMPSTR))
4264 LPWSTR lpCompStr = NULL;
4266 DWORD dwIndex = lParam & GCS_RESULTSTR;
4268 dwIndex = GCS_COMPSTR;
4270 dwBufLen = ImmGetCompositionStringW(hIMC, dwIndex, NULL, 0);
4271 lpCompStr = HeapAlloc(GetProcessHeap(),0,dwBufLen + sizeof(WCHAR));
4272 ImmGetCompositionStringW(hIMC, dwIndex, lpCompStr, dwBufLen);
4273 lpCompStr[dwBufLen/sizeof(WCHAR)] = 0;
4274 ME_InsertTextFromCursor(editor,0,lpCompStr,dwBufLen/sizeof(WCHAR),style);
4275 HeapFree(GetProcessHeap(), 0, lpCompStr);
4277 if (dwIndex == GCS_COMPSTR)
4278 ME_SetSelection(editor,editor->imeStartIndex,
4279 editor->imeStartIndex + dwBufLen/sizeof(WCHAR));
4281 ME_ReleaseStyle(style);
4282 ME_CommitUndo(editor);
4283 ME_UpdateRepaint(editor, FALSE);
4286 case WM_IME_ENDCOMPOSITION:
4288 ME_DeleteSelection(editor);
4289 editor->imeStartIndex=-1;
4292 case EM_GETOLEINTERFACE:
4294 LPVOID *ppvObj = (LPVOID*) lParam;
4295 return CreateIRichEditOle(editor, ppvObj);
4297 case EM_GETPASSWORDCHAR:
4299 return editor->cPasswordMask;
4301 case EM_SETOLECALLBACK:
4302 if(editor->lpOleCallback)
4303 IUnknown_Release(editor->lpOleCallback);
4304 editor->lpOleCallback = (LPRICHEDITOLECALLBACK)lParam;
4305 if(editor->lpOleCallback)
4306 IUnknown_AddRef(editor->lpOleCallback);
4308 case EM_GETWORDBREAKPROC:
4309 return (LRESULT)editor->pfnWordBreak;
4310 case EM_SETWORDBREAKPROC:
4312 EDITWORDBREAKPROCW pfnOld = editor->pfnWordBreak;
4314 editor->pfnWordBreak = (EDITWORDBREAKPROCW)lParam;
4315 return (LRESULT)pfnOld;
4317 case EM_GETTEXTMODE:
4318 return editor->mode;
4319 case EM_SETTEXTMODE:
4324 if (ME_GetTextLength(editor) || editor->pUndoStack || editor->pRedoStack)
4325 return E_UNEXPECTED;
4327 /* Check for mutually exclusive flags in adjacent bits of wParam */
4328 if ((wParam & (TM_RICHTEXT | TM_MULTILEVELUNDO | TM_MULTICODEPAGE)) &
4329 (wParam & (TM_PLAINTEXT | TM_SINGLELEVELUNDO | TM_SINGLECODEPAGE)) << 1)
4330 return E_INVALIDARG;
4332 if (wParam & (TM_RICHTEXT | TM_PLAINTEXT))
4334 mask |= TM_RICHTEXT | TM_PLAINTEXT;
4335 changes |= wParam & (TM_RICHTEXT | TM_PLAINTEXT);
4336 if (wParam & TM_PLAINTEXT) {
4337 /* Clear selection since it should be possible to select the
4338 * end of text run for rich text */
4339 ME_InvalidateSelection(editor);
4340 ME_SetCursorToStart(editor, &editor->pCursors[0]);
4341 editor->pCursors[1] = editor->pCursors[0];
4342 /* plain text can only have the default style. */
4343 ME_ClearTempStyle(editor);
4344 ME_AddRefStyle(editor->pBuffer->pDefaultStyle);
4345 ME_ReleaseStyle(editor->pCursors[0].pRun->member.run.style);
4346 editor->pCursors[0].pRun->member.run.style = editor->pBuffer->pDefaultStyle;
4349 /* FIXME: Currently no support for undo level and code page options */
4350 editor->mode = (editor->mode & ~mask) | changes;
4353 case EM_SETPASSWORDCHAR:
4355 editor->cPasswordMask = wParam;
4356 ME_RewrapRepaint(editor);
4359 case EM_SETTARGETDEVICE:
4362 BOOL new = (lParam == 0 && (editor->styleFlags & ES_MULTILINE));
4363 if (editor->nAvailWidth || editor->bWordWrap != new)
4365 editor->bWordWrap = new;
4366 editor->nAvailWidth = 0; /* wrap to client area */
4367 ME_RewrapRepaint(editor);
4370 int width = max(0, lParam);
4371 if ((editor->styleFlags & ES_MULTILINE) &&
4372 (!editor->bWordWrap || editor->nAvailWidth != width))
4374 editor->nAvailWidth = width;
4375 editor->bWordWrap = TRUE;
4376 ME_RewrapRepaint(editor);
4378 FIXME("EM_SETTARGETDEVICE doesn't use non-NULL target devices\n");
4383 *phresult = S_FALSE;
4389 static LRESULT RichEditWndProc_common(HWND hWnd, UINT msg, WPARAM wParam,
4390 LPARAM lParam, BOOL unicode)
4392 ME_TextEditor *editor;
4394 LRESULT lresult = 0;
4396 TRACE("enter hwnd %p msg %04x (%s) %lx %lx, unicode %d\n",
4397 hWnd, msg, get_msg_name(msg), wParam, lParam, unicode);
4399 editor = (ME_TextEditor *)GetWindowLongPtrW(hWnd, 0);
4402 if (msg == WM_NCCREATE)
4404 CREATESTRUCTW *pcs = (CREATESTRUCTW *)lParam;
4405 ITextHost *texthost;
4407 TRACE("WM_NCCREATE: hWnd %p style 0x%08x\n", hWnd, pcs->style);
4408 texthost = ME_CreateTextHost(hWnd, pcs, FALSE);
4409 return texthost != NULL;
4413 return DefWindowProcW(hWnd, msg, wParam, lParam);
4425 hDC = BeginPaint(editor->hWnd, &ps);
4426 if (!editor->bEmulateVersion10 || (editor->nEventMask & ENM_UPDATE))
4427 ME_SendOldNotify(editor, EN_UPDATE);
4428 /* Erase area outside of the formatting rectangle */
4429 if (ps.rcPaint.top < editor->rcFormat.top)
4432 rc.bottom = editor->rcFormat.top;
4433 FillRect(hDC, &rc, editor->hbrBackground);
4434 ps.rcPaint.top = editor->rcFormat.top;
4436 if (ps.rcPaint.bottom > editor->rcFormat.bottom) {
4438 rc.top = editor->rcFormat.bottom;
4439 FillRect(hDC, &rc, editor->hbrBackground);
4440 ps.rcPaint.bottom = editor->rcFormat.bottom;
4442 if (ps.rcPaint.left < editor->rcFormat.left) {
4444 rc.right = editor->rcFormat.left;
4445 FillRect(hDC, &rc, editor->hbrBackground);
4446 ps.rcPaint.left = editor->rcFormat.left;
4448 if (ps.rcPaint.right > editor->rcFormat.right) {
4450 rc.left = editor->rcFormat.right;
4451 FillRect(hDC, &rc, editor->hbrBackground);
4452 ps.rcPaint.right = editor->rcFormat.right;
4455 ME_PaintContent(editor, hDC, FALSE, &ps.rcPaint);
4456 EndPaint(editor->hWnd, &ps);
4461 HDC hDC = (HDC)wParam;
4464 if (GetUpdateRect(editor->hWnd, &rc, TRUE))
4465 FillRect(hDC, &rc, editor->hbrBackground);
4471 const DWORD mask = ECO_VERTICAL | ECO_AUTOHSCROLL | ECO_AUTOVSCROLL |
4472 ECO_NOHIDESEL | ECO_READONLY | ECO_WANTRETURN |
4474 lresult = ME_HandleMessage(editor, msg, wParam, lParam, unicode, &hresult);
4475 dwStyle = GetWindowLongW(hWnd, GWL_STYLE);
4476 dwStyle = (dwStyle & ~mask) | (lresult & mask);
4477 SetWindowLongW(hWnd, GWL_STYLE, dwStyle);
4480 case EM_SETREADONLY:
4483 lresult = ME_HandleMessage(editor, msg, wParam, lParam, unicode, &hresult);
4484 dwStyle = GetWindowLongW(hWnd, GWL_STYLE);
4485 dwStyle &= ~ES_READONLY;
4487 dwStyle |= ES_READONLY;
4488 SetWindowLongW(hWnd, GWL_STYLE, dwStyle);
4492 lresult = ME_HandleMessage(editor, msg, wParam, lParam, unicode, &hresult);
4495 if (hresult == S_FALSE)
4496 lresult = DefWindowProcW(hWnd, msg, wParam, lParam);
4498 TRACE("exit hwnd %p msg %04x (%s) %lx %lx, unicode %d -> %lu\n",
4499 hWnd, msg, get_msg_name(msg), wParam, lParam, unicode, lresult);
4504 static LRESULT WINAPI RichEditWndProcW(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
4506 BOOL unicode = TRUE;
4508 /* Under Win9x RichEdit20W returns ANSI strings, see the tests. */
4509 if (msg == WM_GETTEXT && (GetVersion() & 0x80000000))
4512 return RichEditWndProc_common(hWnd, msg, wParam, lParam, unicode);
4515 static LRESULT WINAPI RichEditWndProcA(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
4517 return RichEditWndProc_common(hWnd, msg, wParam, lParam, FALSE);
4520 /******************************************************************
4521 * RichEditANSIWndProc (RICHED20.10)
4523 LRESULT WINAPI RichEditANSIWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
4525 return RichEditWndProcA(hWnd, msg, wParam, lParam);
4528 /******************************************************************
4529 * RichEdit10ANSIWndProc (RICHED20.9)
4531 LRESULT WINAPI RichEdit10ANSIWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
4533 if (msg == WM_NCCREATE && !GetWindowLongPtrW(hWnd, 0))
4535 ITextHost *texthost;
4536 CREATESTRUCTW *pcs = (CREATESTRUCTW *)lParam;
4538 TRACE("WM_NCCREATE: hWnd %p style 0x%08x\n", hWnd, pcs->style);
4539 texthost = ME_CreateTextHost(hWnd, pcs, TRUE);
4540 return texthost != NULL;
4542 return RichEditANSIWndProc(hWnd, msg, wParam, lParam);
4545 void ME_SendOldNotify(ME_TextEditor *editor, int nCode)
4547 ITextHost_TxNotify(editor->texthost, nCode, NULL);
4550 /* Fill buffer with srcChars unicode characters from the start cursor.
4552 * buffer: destination buffer
4553 * buflen: length of buffer in characters excluding the NULL terminator.
4554 * start: start of editor text to copy into buffer.
4555 * srcChars: Number of characters to use from the editor text.
4556 * bCRLF: if true, replaces all end of lines with \r\n pairs.
4558 * returns the number of characters written excluding the NULL terminator.
4560 * The written text is always NULL terminated.
4562 int ME_GetTextW(ME_TextEditor *editor, WCHAR *buffer, int buflen,
4563 const ME_Cursor *start, int srcChars, BOOL bCRLF)
4565 ME_DisplayItem *pRun, *pNextRun;
4566 const WCHAR *pStart = buffer;
4567 const WCHAR cr_lf[] = {'\r', '\n', 0};
4571 /* bCRLF flag is only honored in 2.0 and up. 1.0 must always return text verbatim */
4572 if (editor->bEmulateVersion10) bCRLF = 0;
4576 pNextRun = ME_FindItemFwd(pRun, diRun);
4578 nLen = pRun->member.run.strText->nLen - start->nOffset;
4579 str = pRun->member.run.strText->szData + start->nOffset;
4581 /* No '\r' is appended to the last paragraph. */
4582 while (srcChars && buflen && pNextRun)
4584 int nFlags = pRun->member.run.nFlags;
4586 if (bCRLF && nFlags & MERF_ENDPARA && ~nFlags & MERF_ENDCELL)
4588 if (buflen == 1) break;
4589 /* FIXME: native fails to reduce srcChars here for WM_GETTEXT or
4590 * EM_GETTEXTEX, however, this is done for copying text which
4591 * also uses this function. */
4592 srcChars -= min(nLen, srcChars);
4596 nLen = min(nLen, srcChars);
4600 nLen = min(nLen, buflen);
4603 CopyMemory(buffer, str, sizeof(WCHAR) * nLen);
4608 pNextRun = ME_FindItemFwd(pRun, diRun);
4610 nLen = pRun->member.run.strText->nLen;
4611 str = pRun->member.run.strText->szData;
4614 return buffer - pStart;
4617 static BOOL ME_RegisterEditorClass(HINSTANCE hInstance)
4622 wcW.style = CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS;
4623 wcW.lpfnWndProc = RichEditWndProcW;
4625 wcW.cbWndExtra = sizeof(ME_TextEditor *);
4626 wcW.hInstance = NULL; /* hInstance would register DLL-local class */
4628 wcW.hCursor = LoadCursorW(NULL, MAKEINTRESOURCEW(IDC_IBEAM));
4629 wcW.hbrBackground = GetStockObject(NULL_BRUSH);
4630 wcW.lpszMenuName = NULL;
4632 if (is_version_nt())
4634 wcW.lpszClassName = RICHEDIT_CLASS20W;
4635 if (!RegisterClassW(&wcW)) return FALSE;
4636 wcW.lpszClassName = MSFTEDIT_CLASS;
4637 if (!RegisterClassW(&wcW)) return FALSE;
4641 /* WNDCLASSA/W have the same layout */
4642 wcW.lpszClassName = (LPCWSTR)"RichEdit20W";
4643 if (!RegisterClassA((WNDCLASSA *)&wcW)) return FALSE;
4644 wcW.lpszClassName = (LPCWSTR)"RichEdit50W";
4645 if (!RegisterClassA((WNDCLASSA *)&wcW)) return FALSE;
4648 wcA.style = CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS;
4649 wcA.lpfnWndProc = RichEditWndProcA;
4651 wcA.cbWndExtra = sizeof(ME_TextEditor *);
4652 wcA.hInstance = NULL; /* hInstance would register DLL-local class */
4654 wcA.hCursor = LoadCursorW(NULL, MAKEINTRESOURCEW(IDC_IBEAM));
4655 wcA.hbrBackground = GetStockObject(NULL_BRUSH);
4656 wcA.lpszMenuName = NULL;
4657 wcA.lpszClassName = RICHEDIT_CLASS20A;
4658 if (!RegisterClassA(&wcA)) return FALSE;
4659 wcA.lpszClassName = "RichEdit50A";
4660 if (!RegisterClassA(&wcA)) return FALSE;
4665 static LRESULT WINAPI REComboWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) {
4666 /* FIXME: Not implemented */
4667 TRACE("hWnd %p msg %04x (%s) %08lx %08lx\n",
4668 hWnd, msg, get_msg_name(msg), wParam, lParam);
4669 return DefWindowProcW(hWnd, msg, wParam, lParam);
4672 static LRESULT WINAPI REListWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) {
4673 /* FIXME: Not implemented */
4674 TRACE("hWnd %p msg %04x (%s) %08lx %08lx\n",
4675 hWnd, msg, get_msg_name(msg), wParam, lParam);
4676 return DefWindowProcW(hWnd, msg, wParam, lParam);
4679 /******************************************************************
4680 * REExtendedRegisterClass (RICHED20.8)
4682 * FIXME undocumented
4683 * Need to check for errors and implement controls and callbacks
4685 LRESULT WINAPI REExtendedRegisterClass(void)
4690 FIXME("semi stub\n");
4694 wcW.hInstance = NULL;
4697 wcW.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
4698 wcW.lpszMenuName = NULL;
4700 if (!ME_ListBoxRegistered)
4702 wcW.style = CS_PARENTDC | CS_DBLCLKS | CS_GLOBALCLASS;
4703 wcW.lpfnWndProc = REListWndProc;
4704 wcW.lpszClassName = REListBox20W;
4705 if (RegisterClassW(&wcW)) ME_ListBoxRegistered = TRUE;
4708 if (!ME_ComboBoxRegistered)
4710 wcW.style = CS_PARENTDC | CS_DBLCLKS | CS_GLOBALCLASS | CS_VREDRAW | CS_HREDRAW;
4711 wcW.lpfnWndProc = REComboWndProc;
4712 wcW.lpszClassName = REComboBox20W;
4713 if (RegisterClassW(&wcW)) ME_ComboBoxRegistered = TRUE;
4717 if (ME_ListBoxRegistered)
4719 if (ME_ComboBoxRegistered)
4725 static BOOL isurlspecial(WCHAR c)
4727 static const WCHAR special_chars[] = {'.','/','%','@','*','|','\\','+','#',0};
4728 return strchrW( special_chars, c ) != NULL;
4732 * This proc takes a selection, and scans it forward in order to select the span
4733 * of a possible URL candidate. A possible URL candidate must start with isalnum
4734 * or one of the following special characters: *|/\+%#@ and must consist entirely
4735 * of the characters allowed to start the URL, plus : (colon) which may occur
4736 * at most once, and not at either end.
4738 static BOOL ME_FindNextURLCandidate(ME_TextEditor *editor,
4739 const ME_Cursor *start,
4741 ME_Cursor *candidate_min,
4742 ME_Cursor *candidate_max)
4744 ME_Cursor cursor = *start;
4745 BOOL foundColon = FALSE;
4746 BOOL candidateStarted = FALSE;
4747 WCHAR lastAcceptedChar = '\0';
4751 WCHAR *strStart = cursor.pRun->member.run.strText->szData;
4752 WCHAR *str = strStart + cursor.nOffset;
4753 int nLen = cursor.pRun->member.run.strText->nLen - cursor.nOffset;
4756 if (~cursor.pRun->member.run.nFlags & MERF_ENDPARA)
4758 /* Find start of candidate */
4759 if (!candidateStarted)
4764 if (isalnumW(*str) || isurlspecial(*str))
4766 cursor.nOffset = str - strStart;
4767 *candidate_min = cursor;
4768 candidateStarted = TRUE;
4769 lastAcceptedChar = *str++;
4776 /* Find end of candidate */
4777 if (candidateStarted) {
4781 if (*str == ':' && !foundColon) {
4783 } else if (!isalnumW(*str) && !isurlspecial(*str)) {
4784 cursor.nOffset = str - strStart;
4785 if (lastAcceptedChar == ':')
4786 ME_MoveCursorChars(editor, &cursor, -1);
4787 *candidate_max = cursor;
4790 lastAcceptedChar = *str++;
4794 /* End of paragraph: skip it if before candidate span, or terminates
4795 current active span */
4796 if (candidateStarted) {
4797 if (lastAcceptedChar == ':')
4798 ME_MoveCursorChars(editor, &cursor, -1);
4799 *candidate_max = cursor;
4804 /* Reaching this point means no span was found, so get next span */
4805 if (!ME_NextRun(&cursor.pPara, &cursor.pRun)) {
4806 if (candidateStarted) {
4807 /* There are no further runs, so take end of text as end of candidate */
4808 cursor.nOffset = str - strStart;
4809 if (lastAcceptedChar == ':')
4810 ME_MoveCursorChars(editor, &cursor, -1);
4811 *candidate_max = cursor;
4814 *candidate_max = *candidate_min = cursor;
4820 if (candidateStarted) {
4821 /* There are no further runs, so take end of text as end of candidate */
4822 if (lastAcceptedChar == ':')
4823 ME_MoveCursorChars(editor, &cursor, -1);
4824 *candidate_max = cursor;
4827 *candidate_max = *candidate_min = cursor;
4832 * This proc evaluates the selection and returns TRUE if it can be considered an URL
4834 static BOOL ME_IsCandidateAnURL(ME_TextEditor *editor, const ME_Cursor *start, int nChars)
4836 #define MAX_PREFIX_LEN 9
4838 const WCHAR text[MAX_PREFIX_LEN];
4841 {{'p','r','o','s','p','e','r','o',':'}, 9},
4842 {{'t','e','l','n','e','t',':'}, 7},
4843 {{'g','o','p','h','e','r',':'}, 7},
4844 {{'m','a','i','l','t','o',':'}, 7},
4845 {{'h','t','t','p','s',':'}, 6},
4846 {{'f','i','l','e',':'}, 5},
4847 {{'n','e','w','s',':'}, 5},
4848 {{'w','a','i','s',':'}, 5},
4849 {{'n','n','t','p',':'}, 5},
4850 {{'h','t','t','p',':'}, 5},
4851 {{'w','w','w','.'}, 4},
4852 {{'f','t','p',':'}, 4},
4854 WCHAR bufferW[MAX_PREFIX_LEN + 1];
4857 ME_GetTextW(editor, bufferW, MAX_PREFIX_LEN, start, nChars, 0);
4858 for (i = 0; i < sizeof(prefixes) / sizeof(*prefixes); i++)
4860 if (nChars < prefixes[i].length) continue;
4861 if (!memcmp(prefixes[i].text, bufferW, prefixes[i].length * sizeof(WCHAR)))
4865 #undef MAX_PREFIX_LEN
4869 * This proc walks through the indicated selection and evaluates whether each
4870 * section identified by ME_FindNextURLCandidate and in-between sections have
4871 * their proper CFE_LINK attributes set or unset. If the CFE_LINK attribute is
4872 * not what it is supposed to be, this proc sets or unsets it as appropriate.
4874 * Since this function can cause runs to be split, do not depend on the value
4875 * of the start cursor at the end of the function.
4877 * nChars may be set to INT_MAX to update to the end of the text.
4879 * Returns TRUE if at least one section was modified.
4881 static BOOL ME_UpdateLinkAttribute(ME_TextEditor *editor, ME_Cursor *start, int nChars)
4883 BOOL modified = FALSE;
4884 ME_Cursor startCur = *start;
4886 if (!editor->AutoURLDetect_bEnable) return FALSE;
4891 ME_Cursor candidateStart, candidateEnd;
4893 if (ME_FindNextURLCandidate(editor, &startCur, nChars,
4894 &candidateStart, &candidateEnd))
4896 /* Section before candidate is not an URL */
4897 int cMin = ME_GetCursorOfs(&candidateStart);
4898 int cMax = ME_GetCursorOfs(&candidateEnd);
4900 if (!ME_IsCandidateAnURL(editor, &candidateStart, cMax - cMin))
4901 candidateStart = candidateEnd;
4902 nChars -= cMax - ME_GetCursorOfs(&startCur);
4906 /* No more candidates until end of selection */
4910 if (startCur.pRun != candidateStart.pRun ||
4911 startCur.nOffset != candidateStart.nOffset)
4913 /* CFE_LINK effect should be consistently unset */
4914 link.cbSize = sizeof(link);
4915 ME_GetCharFormat(editor, &startCur, &candidateStart, &link);
4916 if (!(link.dwMask & CFM_LINK) || (link.dwEffects & CFE_LINK))
4918 /* CFE_LINK must be unset from this range */
4919 memset(&link, 0, sizeof(CHARFORMAT2W));
4920 link.cbSize = sizeof(link);
4921 link.dwMask = CFM_LINK;
4923 ME_SetCharFormat(editor, &startCur, &candidateStart, &link);
4924 /* Update candidateEnd since setting character formats may split
4925 * runs, which can cause a cursor to be at an invalid offset within
4927 while (candidateEnd.nOffset >= candidateEnd.pRun->member.run.strText->nLen)
4929 candidateEnd.nOffset -= candidateEnd.pRun->member.run.strText->nLen;
4930 candidateEnd.pRun = ME_FindItemFwd(candidateEnd.pRun, diRun);
4935 if (candidateStart.pRun != candidateEnd.pRun ||
4936 candidateStart.nOffset != candidateEnd.nOffset)
4938 /* CFE_LINK effect should be consistently set */
4939 link.cbSize = sizeof(link);
4940 ME_GetCharFormat(editor, &candidateStart, &candidateEnd, &link);
4941 if (!(link.dwMask & CFM_LINK) || !(link.dwEffects & CFE_LINK))
4943 /* CFE_LINK must be set on this range */
4944 memset(&link, 0, sizeof(CHARFORMAT2W));
4945 link.cbSize = sizeof(link);
4946 link.dwMask = CFM_LINK;
4947 link.dwEffects = CFE_LINK;
4948 ME_SetCharFormat(editor, &candidateStart, &candidateEnd, &link);
4952 startCur = candidateEnd;
4953 } while (nChars > 0);