2 * RichEdit - Caret and selection functions.
4 * Copyright 2004 by Krzysztof Foltman
5 * Copyright 2005 by Phil Krylov
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 WINE_DEFAULT_DEBUG_CHANNEL(richedit
);
27 void ME_SetCursorToStart(ME_TextEditor
*editor
, ME_Cursor
*cursor
)
29 cursor
->pPara
= editor
->pBuffer
->pFirst
->member
.para
.next_para
;
30 cursor
->pRun
= ME_FindItemFwd(cursor
->pPara
, diRun
);
34 static void ME_SetCursorToEnd(ME_TextEditor
*editor
, ME_Cursor
*cursor
)
36 cursor
->pPara
= editor
->pBuffer
->pLast
->member
.para
.prev_para
;
37 cursor
->pRun
= ME_FindItemBack(editor
->pBuffer
->pLast
, diRun
);
42 int ME_GetSelectionOfs(ME_TextEditor
*editor
, int *from
, int *to
)
44 *from
= ME_GetCursorOfs(&editor
->pCursors
[0]);
45 *to
= ME_GetCursorOfs(&editor
->pCursors
[1]);
57 int ME_GetSelection(ME_TextEditor
*editor
, ME_Cursor
**from
, ME_Cursor
**to
)
59 if (ME_GetCursorOfs(&editor
->pCursors
[0]) < ME_GetCursorOfs(&editor
->pCursors
[1]))
61 *from
= &editor
->pCursors
[0];
62 *to
= &editor
->pCursors
[1];
65 *from
= &editor
->pCursors
[1];
66 *to
= &editor
->pCursors
[0];
71 int ME_GetTextLength(ME_TextEditor
*editor
)
74 ME_SetCursorToEnd(editor
, &cursor
);
75 return ME_GetCursorOfs(&cursor
);
79 int ME_GetTextLengthEx(ME_TextEditor
*editor
, const GETTEXTLENGTHEX
*how
)
83 if (how
->flags
& GTL_PRECISE
&& how
->flags
& GTL_CLOSE
)
85 if (how
->flags
& GTL_NUMCHARS
&& how
->flags
& GTL_NUMBYTES
)
88 length
= ME_GetTextLength(editor
);
90 if ((editor
->styleFlags
& ES_MULTILINE
)
91 && (how
->flags
& GTL_USECRLF
)
92 && !editor
->bEmulateVersion10
) /* Ignore GTL_USECRLF flag in 1.0 emulation */
93 length
+= editor
->nParagraphs
- 1;
95 if (how
->flags
& GTL_NUMBYTES
||
96 (how
->flags
& GTL_PRECISE
&& /* GTL_PRECISE seems to imply GTL_NUMBYTES */
97 !(how
->flags
& GTL_NUMCHARS
))) /* unless GTL_NUMCHARS is given */
101 if (how
->codepage
== 1200)
103 if (how
->flags
& GTL_PRECISE
)
104 FIXME("GTL_PRECISE flag unsupported. Using GTL_CLOSE\n");
105 if (GetCPInfo(how
->codepage
, &cpinfo
))
106 return length
* cpinfo
.MaxCharSize
;
107 ERR("Invalid codepage %u\n", how
->codepage
);
114 int ME_SetSelection(ME_TextEditor
*editor
, int from
, int to
)
116 int selectionEnd
= 0;
117 const int len
= ME_GetTextLength(editor
);
119 /* all negative values are effectively the same */
126 if (from
== 0 && to
== -1)
128 ME_SetCursorToStart(editor
, &editor
->pCursors
[1]);
129 ME_SetCursorToEnd(editor
, &editor
->pCursors
[0]);
130 ME_InvalidateSelection(editor
);
131 ME_ClearTempStyle(editor
);
135 /* if both values are equal and also out of bound, that means to */
136 /* put the selection at the end of the text */
137 if ((from
== to
) && (to
< 0 || to
> len
))
143 /* if from is negative and to is positive then selection is */
144 /* deselected and caret moved to end of the current selection */
148 ME_GetSelectionOfs(editor
, &start
, &end
);
149 editor
->pCursors
[1] = editor
->pCursors
[0];
151 ME_ClearTempStyle(editor
);
155 /* adjust to if it's a negative value */
159 /* flip from and to if they are reversed */
167 /* after fiddling with the values, we find from > len && to > len */
170 /* special case with to too big */
177 ME_SetCursorToEnd(editor
, &editor
->pCursors
[0]);
178 editor
->pCursors
[1] = editor
->pCursors
[0];
179 ME_InvalidateSelection(editor
);
180 ME_ClearTempStyle(editor
);
184 ME_CursorFromCharOfs(editor
, from
, &editor
->pCursors
[1]);
185 editor
->pCursors
[0] = editor
->pCursors
[1];
186 ME_MoveCursorChars(editor
, &editor
->pCursors
[0], to
- from
);
187 /* Selection is not allowed in the middle of an end paragraph run. */
188 if (editor
->pCursors
[1].pRun
->member
.run
.nFlags
& MERF_ENDPARA
)
189 editor
->pCursors
[1].nOffset
= 0;
190 if (editor
->pCursors
[0].pRun
->member
.run
.nFlags
& MERF_ENDPARA
)
191 editor
->pCursors
[0].nOffset
= 0;
197 ME_GetCursorCoordinates(ME_TextEditor
*editor
, ME_Cursor
*pCursor
,
198 int *x
, int *y
, int *height
)
201 ME_DisplayItem
*run
= pCursor
->pRun
;
202 ME_DisplayItem
*para
= pCursor
->pPara
;
203 ME_DisplayItem
*pSizeRun
= run
;
207 assert(height
&& x
&& y
);
208 assert(~para
->member
.para
.nFlags
& MEPF_REWRAP
);
209 assert(run
&& run
->type
== diRun
);
210 assert(para
&& para
->type
== diParagraph
);
212 row
= ME_FindItemBack(run
, diStartRowOrParagraph
);
213 assert(row
&& row
->type
== diStartRow
);
215 ME_InitContext(&c
, editor
, ITextHost_TxGetDC(editor
->texthost
));
217 if (!pCursor
->nOffset
)
219 ME_DisplayItem
*prev
= ME_FindItemBack(run
, diRunOrParagraph
);
221 if (prev
->type
== diRun
)
224 if (editor
->bCaretAtEnd
&& !pCursor
->nOffset
&&
225 run
== ME_FindItemFwd(row
, diRun
))
227 ME_DisplayItem
*tmp
= ME_FindItemBack(row
, diRunOrParagraph
);
229 if (tmp
->type
== diRun
)
231 row
= ME_FindItemBack(tmp
, diStartRow
);
232 pSizeRun
= run
= tmp
;
234 assert(run
->type
== diRun
);
235 sz
= ME_GetRunSize(&c
, ¶
->member
.para
,
236 &run
->member
.run
, run
->member
.run
.strText
->nLen
,
237 row
->member
.row
.nLMargin
);
240 if (pCursor
->nOffset
) {
241 sz
= ME_GetRunSize(&c
, ¶
->member
.para
, &run
->member
.run
,
242 pCursor
->nOffset
, row
->member
.row
.nLMargin
);
245 *height
= pSizeRun
->member
.run
.nAscent
+ pSizeRun
->member
.run
.nDescent
;
246 *x
= c
.rcView
.left
+ run
->member
.run
.pt
.x
+ sz
.cx
- editor
->horz_si
.nPos
;
247 *y
= c
.rcView
.top
+ para
->member
.para
.pt
.y
+ row
->member
.row
.nBaseline
248 + run
->member
.run
.pt
.y
- pSizeRun
->member
.run
.nAscent
249 - editor
->vert_si
.nPos
;
250 ME_DestroyContext(&c
);
256 ME_MoveCaret(ME_TextEditor
*editor
)
260 ME_GetCursorCoordinates(editor
, &editor
->pCursors
[0], &x
, &y
, &height
);
261 if(editor
->bHaveFocus
&& !ME_IsSelection(editor
))
263 x
= min(x
, editor
->rcFormat
.right
-1);
264 ITextHost_TxCreateCaret(editor
->texthost
, NULL
, 0, height
);
265 ITextHost_TxSetCaretPos(editor
->texthost
, x
, y
);
270 void ME_ShowCaret(ME_TextEditor
*ed
)
273 if(ed
->bHaveFocus
&& !ME_IsSelection(ed
))
274 ITextHost_TxShowCaret(ed
->texthost
, TRUE
);
277 void ME_HideCaret(ME_TextEditor
*ed
)
279 if(!ed
->bHaveFocus
|| ME_IsSelection(ed
))
281 ITextHost_TxShowCaret(ed
->texthost
, FALSE
);
286 BOOL
ME_InternalDeleteText(ME_TextEditor
*editor
, ME_Cursor
*start
,
287 int nChars
, BOOL bForce
)
289 ME_Cursor c
= *start
;
290 int nOfs
= ME_GetCursorOfs(start
);
292 int totalChars
= nChars
;
293 ME_DisplayItem
*start_para
;
295 /* Prevent deletion past last end of paragraph run. */
296 nChars
= min(nChars
, ME_GetTextLength(editor
) - nOfs
);
297 start_para
= c
.pPara
;
301 ME_ProtectPartialTableDeletion(editor
, &c
, &nChars
);
309 ME_CursorFromCharOfs(editor
, nOfs
+nChars
, &c
);
311 nOfs
+nChars
== (c
.pRun
->member
.run
.nCharOfs
312 + c
.pPara
->member
.para
.nCharOfs
))
314 /* We aren't deleting anything in this run, so we will go back to the
315 * last run we are deleting text in. */
316 ME_PrevRun(&c
.pPara
, &c
.pRun
);
317 c
.nOffset
= c
.pRun
->member
.run
.strText
->nLen
;
319 run
= &c
.pRun
->member
.run
;
320 if (run
->nFlags
& MERF_ENDPARA
) {
321 int eollen
= c
.pRun
->member
.run
.strText
->nLen
;
322 BOOL keepFirstParaFormat
;
324 if (!ME_FindItemFwd(c
.pRun
, diParagraph
))
328 keepFirstParaFormat
= (totalChars
== nChars
&& nChars
<= eollen
&&
330 if (!editor
->bEmulateVersion10
) /* v4.1 */
332 ME_DisplayItem
*next_para
= ME_FindItemFwd(c
.pRun
, diParagraphOrEnd
);
333 ME_DisplayItem
*this_para
= next_para
->member
.para
.prev_para
;
335 /* The end of paragraph before a table row is only deleted if there
336 * is nothing else on the line before it. */
337 if (this_para
== start_para
&&
338 next_para
->member
.para
.nFlags
& MEPF_ROWSTART
)
340 /* If the paragraph will be empty, then it should be deleted, however
341 * it still might have text right now which would inherit the
342 * MEPF_STARTROW property if we joined it right now.
343 * Instead we will delete it after the preceding text is deleted. */
344 if (nOfs
> this_para
->member
.para
.nCharOfs
) {
345 /* Skip this end of line. */
346 nChars
-= (eollen
< nChars
) ? eollen
: nChars
;
349 keepFirstParaFormat
= TRUE
;
352 ME_JoinParagraphs(editor
, c
.pPara
, keepFirstParaFormat
);
353 /* ME_SkipAndPropagateCharOffset(p->pRun, shift); */
354 ME_CheckCharOffsets(editor
);
355 nChars
-= (eollen
< nChars
) ? eollen
: nChars
;
361 int nCharsToDelete
= min(nChars
, c
.nOffset
);
364 c
.nOffset
-= nCharsToDelete
;
366 ME_FindItemBack(c
.pRun
, diParagraph
)->member
.para
.nFlags
|= MEPF_REWRAP
;
369 /* nChars is the number of characters that should be deleted from the
370 PRECEDING runs (these BEFORE cursor.pRun)
371 nCharsToDelete is a number of chars to delete from THIS run */
372 nChars
-= nCharsToDelete
;
373 shift
-= nCharsToDelete
;
374 TRACE("Deleting %d (remaning %d) chars at %d in '%s' (%d)\n",
375 nCharsToDelete
, nChars
, c
.nOffset
,
376 debugstr_w(run
->strText
->szData
), run
->strText
->nLen
);
378 if (!c
.nOffset
&& run
->strText
->nLen
== nCharsToDelete
)
380 /* undo = reinsert whole run */
381 /* nOfs is a character offset (from the start of the document
382 to the current (deleted) run */
383 ME_UndoItem
*pUndo
= ME_AddUndoItem(editor
, diUndoInsertRun
, c
.pRun
);
385 pUndo
->di
.member
.run
.nCharOfs
= nOfs
+nChars
;
389 /* undo = reinsert partial run */
390 ME_UndoItem
*pUndo
= ME_AddUndoItem(editor
, diUndoInsertRun
, c
.pRun
);
392 ME_DestroyString(pUndo
->di
.member
.run
.strText
);
393 pUndo
->di
.member
.run
.nCharOfs
= nOfs
+nChars
;
394 pUndo
->di
.member
.run
.strText
= ME_MakeStringN(run
->strText
->szData
+c
.nOffset
, nCharsToDelete
);
397 TRACE("Post deletion string: %s (%d)\n", debugstr_w(run
->strText
->szData
), run
->strText
->nLen
);
398 TRACE("Shift value: %d\n", shift
);
399 ME_StrDeleteV(run
->strText
, c
.nOffset
, nCharsToDelete
);
401 /* update cursors (including c) */
402 for (i
=-1; i
<editor
->nCursors
; i
++) {
403 ME_Cursor
*pThisCur
= editor
->pCursors
+ i
;
404 if (i
== -1) pThisCur
= &c
;
405 if (pThisCur
->pRun
== cursor
.pRun
) {
406 if (pThisCur
->nOffset
> cursor
.nOffset
) {
407 if (pThisCur
->nOffset
-cursor
.nOffset
< nCharsToDelete
)
408 pThisCur
->nOffset
= cursor
.nOffset
;
410 pThisCur
->nOffset
-= nCharsToDelete
;
411 assert(pThisCur
->nOffset
>= 0);
412 assert(pThisCur
->nOffset
<= run
->strText
->nLen
);
414 if (pThisCur
->nOffset
== run
->strText
->nLen
)
416 pThisCur
->pRun
= ME_FindItemFwd(pThisCur
->pRun
, diRunOrParagraphOrEnd
);
417 assert(pThisCur
->pRun
->type
== diRun
);
418 pThisCur
->nOffset
= 0;
423 /* c = updated data now */
425 if (c
.pRun
== cursor
.pRun
)
426 ME_SkipAndPropagateCharOffset(c
.pRun
, shift
);
428 ME_PropagateCharOffset(c
.pRun
, shift
);
430 if (!cursor
.pRun
->member
.run
.strText
->nLen
)
432 TRACE("Removing useless run\n");
433 ME_Remove(cursor
.pRun
);
434 ME_DestroyDisplayItem(cursor
.pRun
);
439 ME_CheckCharOffsets(editor);
447 BOOL
ME_DeleteTextAtCursor(ME_TextEditor
*editor
, int nCursor
, int nChars
)
449 assert(nCursor
>=0 && nCursor
<editor
->nCursors
);
450 /* text operations set modified state */
451 editor
->nModifyStep
= 1;
452 return ME_InternalDeleteText(editor
, &editor
->pCursors
[nCursor
],
456 static ME_DisplayItem
*
457 ME_InternalInsertTextFromCursor(ME_TextEditor
*editor
, int nCursor
,
458 const WCHAR
*str
, int len
, ME_Style
*style
,
461 ME_Cursor
*p
= &editor
->pCursors
[nCursor
];
463 editor
->bCaretAtEnd
= FALSE
;
465 assert(p
->pRun
->type
== diRun
);
467 return ME_InsertRunAtCursor(editor
, p
, style
, str
, len
, flags
);
471 void ME_InsertOLEFromCursor(ME_TextEditor
*editor
, const REOBJECT
* reo
, int nCursor
)
473 ME_Style
*pStyle
= ME_GetInsertStyle(editor
, nCursor
);
478 if (ME_IsSelection(editor
))
479 ME_DeleteSelection(editor
);
481 di
= ME_InternalInsertTextFromCursor(editor
, nCursor
, &space
, 1, pStyle
,
483 di
->member
.run
.ole_obj
= ALLOC_OBJ(*reo
);
484 ME_CopyReObject(di
->member
.run
.ole_obj
, reo
);
485 ME_ReleaseStyle(pStyle
);
489 void ME_InsertEndRowFromCursor(ME_TextEditor
*editor
, int nCursor
)
491 ME_Style
*pStyle
= ME_GetInsertStyle(editor
, nCursor
);
496 if (ME_IsSelection(editor
))
497 ME_DeleteSelection(editor
);
499 di
= ME_InternalInsertTextFromCursor(editor
, nCursor
, &space
, 1, pStyle
,
501 ME_ReleaseStyle(pStyle
);
505 void ME_InsertTextFromCursor(ME_TextEditor
*editor
, int nCursor
,
506 const WCHAR
*str
, int len
, ME_Style
*style
)
512 /* FIXME really HERE ? */
513 if (ME_IsSelection(editor
))
514 ME_DeleteSelection(editor
);
516 /* FIXME: is this too slow? */
517 /* Didn't affect performance for WM_SETTEXT (around 50sec/30K) */
518 oldLen
= ME_GetTextLength(editor
);
520 /* text operations set modified state */
521 editor
->nModifyStep
= 1;
525 assert(nCursor
>=0 && nCursor
<editor
->nCursors
);
529 /* grow the text limit to fit our text */
530 if(editor
->nTextLimit
< oldLen
+len
)
531 editor
->nTextLimit
= oldLen
+ len
;
537 /* FIXME this sucks - no respect for unicode (what else can be a line separator in unicode?) */
538 while(pos
- str
< len
&& *pos
!= '\r' && *pos
!= '\n' && *pos
!= '\t')
541 if (pos
!= str
) { /* handle text */
542 ME_InternalInsertTextFromCursor(editor
, nCursor
, str
, pos
-str
, style
, 0);
543 } else if (*pos
== '\t') { /* handle tabs */
545 ME_InternalInsertTextFromCursor(editor
, nCursor
, &tab
, 1, style
, MERF_TAB
);
547 } else { /* handle EOLs */
548 ME_DisplayItem
*tp
, *end_run
;
552 /* Find number of CR and LF in end of paragraph run */
555 if (len
> 1 && pos
[1] == '\n')
557 else if (len
> 2 && pos
[1] == '\r' && pos
[2] == '\n')
562 assert(*pos
== '\n');
567 if (!editor
->bEmulateVersion10
&& eol_len
== 3)
569 /* handle special \r\r\n sequence (richedit 2.x and higher only) */
571 ME_InternalInsertTextFromCursor(editor
, nCursor
, &space
, 1, style
, 0);
575 if (!editor
->bEmulateVersion10
) {
577 eol_str
= ME_MakeStringN(&cr
, 1);
579 eol_str
= ME_MakeStringN(str
, eol_len
);
582 p
= &editor
->pCursors
[nCursor
];
584 ME_SplitRunSimple(editor
, p
->pRun
, p
->nOffset
);
585 p
= &editor
->pCursors
[nCursor
];
587 tmp_style
= ME_GetInsertStyle(editor
, nCursor
);
588 /* ME_SplitParagraph increases style refcount */
589 tp
= ME_SplitParagraph(editor
, p
->pRun
, p
->pRun
->member
.run
.style
, eol_str
, 0);
590 p
->pRun
= ME_FindItemFwd(tp
, diRun
);
592 end_run
= ME_FindItemBack(tp
, diRun
);
593 ME_ReleaseStyle(end_run
->member
.run
.style
);
594 end_run
->member
.run
.style
= tmp_style
;
603 /* Move the cursor nRelOfs characters (either forwards or backwards)
605 * returns the actual number of characters moved.
607 int ME_MoveCursorChars(ME_TextEditor
*editor
, ME_Cursor
*cursor
, int nRelOfs
)
609 cursor
->nOffset
+= nRelOfs
;
610 if (cursor
->nOffset
< 0)
612 cursor
->nOffset
+= cursor
->pRun
->member
.run
.nCharOfs
;
613 if (cursor
->nOffset
>= 0)
615 /* new offset in the same paragraph */
617 cursor
->pRun
= ME_FindItemBack(cursor
->pRun
, diRun
);
618 } while (cursor
->nOffset
< cursor
->pRun
->member
.run
.nCharOfs
);
619 cursor
->nOffset
-= cursor
->pRun
->member
.run
.nCharOfs
;
623 cursor
->nOffset
+= cursor
->pPara
->member
.para
.nCharOfs
;
624 if (cursor
->nOffset
<= 0)
626 /* moved to the start of the text */
627 nRelOfs
-= cursor
->nOffset
;
628 ME_SetCursorToStart(editor
, cursor
);
632 /* new offset in a previous paragraph */
634 cursor
->pPara
= cursor
->pPara
->member
.para
.prev_para
;
635 } while (cursor
->nOffset
< cursor
->pPara
->member
.para
.nCharOfs
);
636 cursor
->nOffset
-= cursor
->pPara
->member
.para
.nCharOfs
;
638 cursor
->pRun
= ME_FindItemBack(cursor
->pPara
->member
.para
.next_para
, diRun
);
639 while (cursor
->nOffset
< cursor
->pRun
->member
.run
.nCharOfs
) {
640 cursor
->pRun
= ME_FindItemBack(cursor
->pRun
, diRun
);
642 cursor
->nOffset
-= cursor
->pRun
->member
.run
.nCharOfs
;
643 } else if (cursor
->nOffset
>= cursor
->pRun
->member
.run
.strText
->nLen
) {
644 ME_DisplayItem
*next_para
;
647 new_offset
= ME_GetCursorOfs(cursor
);
648 next_para
= cursor
->pPara
->member
.para
.next_para
;
649 if (new_offset
< next_para
->member
.para
.nCharOfs
)
651 /* new offset in the same paragraph */
653 cursor
->nOffset
-= cursor
->pRun
->member
.run
.strText
->nLen
;
654 cursor
->pRun
= ME_FindItemFwd(cursor
->pRun
, diRun
);
655 } while (cursor
->nOffset
>= cursor
->pRun
->member
.run
.strText
->nLen
);
659 if (new_offset
>= ME_GetTextLength(editor
))
661 /* new offset at the end of the text */
662 ME_SetCursorToEnd(editor
, cursor
);
663 nRelOfs
-= new_offset
- ME_GetTextLength(editor
);
667 /* new offset in a following paragraph */
669 cursor
->pPara
= next_para
;
670 next_para
= next_para
->member
.para
.next_para
;
671 } while (new_offset
>= next_para
->member
.para
.nCharOfs
);
673 cursor
->nOffset
= new_offset
- cursor
->pPara
->member
.para
.nCharOfs
;
674 cursor
->pRun
= ME_FindItemFwd(cursor
->pPara
, diRun
);
675 while (cursor
->nOffset
>= cursor
->pRun
->member
.run
.strText
->nLen
)
677 cursor
->nOffset
-= cursor
->pRun
->member
.run
.strText
->nLen
;
678 cursor
->pRun
= ME_FindItemFwd(cursor
->pRun
, diRun
);
680 } /* else new offset is in the same run */
686 ME_MoveCursorWords(ME_TextEditor
*editor
, ME_Cursor
*cursor
, int nRelOfs
)
688 ME_DisplayItem
*pRun
= cursor
->pRun
, *pOtherRun
;
689 ME_DisplayItem
*pPara
= cursor
->pPara
;
690 int nOffset
= cursor
->nOffset
;
694 /* Backward movement */
697 nOffset
= ME_CallWordBreakProc(editor
, pRun
->member
.run
.strText
,
698 nOffset
, WB_MOVEWORDLEFT
);
701 pOtherRun
= ME_FindItemBack(pRun
, diRunOrParagraph
);
702 if (pOtherRun
->type
== diRun
)
704 if (ME_CallWordBreakProc(editor
, pOtherRun
->member
.run
.strText
,
705 pOtherRun
->member
.run
.strText
->nLen
- 1,
707 && !(pRun
->member
.run
.nFlags
& MERF_ENDPARA
)
708 && !(cursor
->pRun
== pRun
&& cursor
->nOffset
== 0)
709 && !ME_CallWordBreakProc(editor
, pRun
->member
.run
.strText
, 0,
713 nOffset
= pOtherRun
->member
.run
.strText
->nLen
;
715 else if (pOtherRun
->type
== diParagraph
)
717 if (cursor
->pRun
== pRun
&& cursor
->nOffset
== 0)
720 /* Skip empty start of table row paragraph */
721 if (pPara
->member
.para
.prev_para
->member
.para
.nFlags
& MEPF_ROWSTART
)
722 pPara
= pPara
->member
.para
.prev_para
;
723 /* Paragraph breaks are treated as separate words */
724 if (pPara
->member
.para
.prev_para
->type
== diTextStart
)
727 pRun
= ME_FindItemBack(pPara
, diRun
);
728 pPara
= pPara
->member
.para
.prev_para
;
736 /* Forward movement */
737 BOOL last_delim
= FALSE
;
741 if (last_delim
&& !ME_CallWordBreakProc(editor
, pRun
->member
.run
.strText
,
742 nOffset
, WB_ISDELIMITER
))
744 nOffset
= ME_CallWordBreakProc(editor
, pRun
->member
.run
.strText
,
745 nOffset
, WB_MOVEWORDRIGHT
);
746 if (nOffset
< pRun
->member
.run
.strText
->nLen
)
748 pOtherRun
= ME_FindItemFwd(pRun
, diRunOrParagraphOrEnd
);
749 if (pOtherRun
->type
== diRun
)
751 last_delim
= ME_CallWordBreakProc(editor
, pRun
->member
.run
.strText
,
752 nOffset
- 1, WB_ISDELIMITER
);
756 else if (pOtherRun
->type
== diParagraph
)
758 if (pOtherRun
->member
.para
.nFlags
& MEPF_ROWSTART
)
759 pOtherRun
= pOtherRun
->member
.para
.next_para
;
760 if (cursor
->pRun
== pRun
) {
762 pRun
= ME_FindItemFwd(pPara
, diRun
);
769 if (cursor
->pRun
== pRun
)
776 cursor
->pPara
= pPara
;
778 cursor
->nOffset
= nOffset
;
784 ME_SelectByType(ME_TextEditor
*editor
, ME_SelectionType selectionType
)
786 /* pCursor[0] is the end of the selection
787 * pCursor[1] is the start of the selection (or the position selection anchor)
788 * pCursor[2] and [3] are the selection anchors that are backed up
789 * so they are kept when the selection changes for drag selection.
792 editor
->nSelectionType
= selectionType
;
793 switch(selectionType
)
798 ME_MoveCursorWords(editor
, &editor
->pCursors
[0], +1);
799 editor
->pCursors
[1] = editor
->pCursors
[0];
800 ME_MoveCursorWords(editor
, &editor
->pCursors
[1], -1);
805 ME_DisplayItem
*pItem
;
806 ME_DIType fwdSearchType
, backSearchType
;
807 if (selectionType
== stParagraph
) {
808 backSearchType
= diParagraph
;
809 fwdSearchType
= diParagraphOrEnd
;
811 backSearchType
= diStartRow
;
812 fwdSearchType
= diStartRowOrParagraphOrEnd
;
814 pItem
= ME_FindItemFwd(editor
->pCursors
[0].pRun
, fwdSearchType
);
816 if (pItem
->type
== diTextEnd
)
817 editor
->pCursors
[0].pRun
= ME_FindItemBack(pItem
, diRun
);
819 editor
->pCursors
[0].pRun
= ME_FindItemFwd(pItem
, diRun
);
820 editor
->pCursors
[0].pPara
= ME_GetParagraph(editor
->pCursors
[0].pRun
);
821 editor
->pCursors
[0].nOffset
= 0;
823 pItem
= ME_FindItemBack(pItem
, backSearchType
);
824 editor
->pCursors
[1].pRun
= ME_FindItemFwd(pItem
, diRun
);
825 editor
->pCursors
[1].pPara
= ME_GetParagraph(editor
->pCursors
[1].pRun
);
826 editor
->pCursors
[1].nOffset
= 0;
830 /* Select everything with cursor anchored from the start of the text */
831 editor
->nSelectionType
= stDocument
;
832 ME_SetCursorToStart(editor
, &editor
->pCursors
[1]);
833 ME_SetCursorToEnd(editor
, &editor
->pCursors
[0]);
837 /* Store the anchor positions for extending the selection. */
838 editor
->pCursors
[2] = editor
->pCursors
[0];
839 editor
->pCursors
[3] = editor
->pCursors
[1];
842 int ME_GetCursorOfs(const ME_Cursor
*cursor
)
844 return cursor
->pPara
->member
.para
.nCharOfs
845 + cursor
->pRun
->member
.run
.nCharOfs
+ cursor
->nOffset
;
848 /* Helper function for ME_FindPixelPos to find paragraph within tables */
849 static ME_DisplayItem
* ME_FindPixelPosInTableRow(int x
, int y
,
850 ME_DisplayItem
*para
)
852 ME_DisplayItem
*cell
, *next_cell
;
853 assert(para
->member
.para
.nFlags
& MEPF_ROWSTART
);
854 cell
= para
->member
.para
.next_para
->member
.para
.pCell
;
857 /* find the cell we are in */
858 while ((next_cell
= cell
->member
.cell
.next_cell
) != NULL
) {
859 if (x
< next_cell
->member
.cell
.pt
.x
)
861 para
= ME_FindItemFwd(cell
, diParagraph
);
862 /* Found the cell, but there might be multiple paragraphs in
863 * the cell, so need to search down the cell for the paragraph. */
864 while (cell
== para
->member
.para
.pCell
) {
865 if (y
< para
->member
.para
.pt
.y
+ para
->member
.para
.nHeight
)
867 if (para
->member
.para
.nFlags
& MEPF_ROWSTART
)
868 return ME_FindPixelPosInTableRow(x
, y
, para
);
872 para
= para
->member
.para
.next_para
;
874 /* Past the end of the cell, so go back to the last cell paragraph */
875 return para
->member
.para
.prev_para
;
879 /* Return table row delimiter */
880 para
= ME_FindItemFwd(cell
, diParagraph
);
881 assert(para
->member
.para
.nFlags
& MEPF_ROWEND
);
882 assert(para
->member
.para
.pFmt
->dwMask
& PFM_TABLEROWDELIMITER
);
883 assert(para
->member
.para
.pFmt
->wEffects
& PFE_TABLEROWDELIMITER
);
887 static BOOL
ME_ReturnFoundPos(ME_TextEditor
*editor
, ME_DisplayItem
*found
,
888 ME_Cursor
*result
, int rx
, BOOL isExact
)
891 assert(found
->type
== diRun
);
892 if ((found
->member
.run
.nFlags
& MERF_ENDPARA
) || rx
< 0)
894 result
->pRun
= found
;
895 result
->nOffset
= ME_CharFromPointCursor(editor
, rx
, &found
->member
.run
);
896 if (result
->nOffset
== found
->member
.run
.strText
->nLen
&& rx
)
898 result
->pRun
= ME_FindItemFwd(result
->pRun
, diRun
);
901 result
->pPara
= ME_GetParagraph(result
->pRun
);
905 /* Finds the run and offset from the pixel position.
907 * x & y are pixel positions in virtual coordinates into the rich edit control,
908 * so client coordinates must first be adjusted by the scroll position.
910 * returns TRUE if the result was exactly under the cursor, otherwise returns
911 * FALSE, and result is set to the closest position to the coordinates.
913 static BOOL
ME_FindPixelPos(ME_TextEditor
*editor
, int x
, int y
,
914 ME_Cursor
*result
, BOOL
*is_eol
)
916 ME_DisplayItem
*p
= editor
->pBuffer
->pFirst
->member
.para
.next_para
;
917 ME_DisplayItem
*last
= NULL
;
921 x
-= editor
->rcFormat
.left
;
922 y
-= editor
->rcFormat
.top
;
928 for (; p
!= editor
->pBuffer
->pLast
; p
= p
->member
.para
.next_para
)
930 assert(p
->type
== diParagraph
);
931 if (y
< p
->member
.para
.pt
.y
+ p
->member
.para
.nHeight
)
933 if (p
->member
.para
.nFlags
& MEPF_ROWSTART
)
934 p
= ME_FindPixelPosInTableRow(x
, y
, p
);
935 y
-= p
->member
.para
.pt
.y
;
936 p
= ME_FindItemFwd(p
, diStartRow
);
938 } else if (p
->member
.para
.nFlags
& MEPF_ROWSTART
) {
939 p
= ME_GetTableRowEnd(p
);
943 for (; p
!= editor
->pBuffer
->pLast
; )
946 assert(p
->type
== diStartRow
);
947 if (y
< p
->member
.row
.pt
.y
+ p
->member
.row
.nHeight
)
949 p
= ME_FindItemFwd(p
, diRun
);
952 pp
= ME_FindItemFwd(p
, diStartRowOrParagraphOrEnd
);
953 if (pp
->type
!= diStartRow
)
955 p
= ME_FindItemFwd(p
, diRun
);
960 if (p
== editor
->pBuffer
->pLast
)
962 /* The position is below the last paragraph, so the last row will be used
963 * rather than the end of the text, so the x position will be used to
964 * determine the offset closest to the pixel position. */
966 p
= ME_FindItemBack(p
, diStartRow
);
968 p
= ME_FindItemFwd(p
, diRun
);
972 p
= editor
->pBuffer
->pLast
;
975 for (; p
!= editor
->pBuffer
->pLast
; p
= p
->next
)
980 rx
= x
- p
->member
.run
.pt
.x
;
981 if (rx
< p
->member
.run
.nWidth
)
982 return ME_ReturnFoundPos(editor
, p
, result
, rx
, isExact
);
986 p
= ME_FindItemFwd(p
, diRun
);
987 if (is_eol
) *is_eol
= 1;
988 rx
= 0; /* FIXME not sure */
989 return ME_ReturnFoundPos(editor
, p
, result
, rx
, isExact
);
994 rx
= 0; /* FIXME not sure */
996 return ME_ReturnFoundPos(editor
, p
, result
, rx
, isExact
);
1001 result
->pRun
= ME_FindItemBack(p
, diRun
);
1002 result
->pPara
= ME_GetParagraph(result
->pRun
);
1003 result
->nOffset
= 0;
1004 assert(result
->pRun
->member
.run
.nFlags
& MERF_ENDPARA
);
1009 /* Sets the cursor to the position closest to the pixel position
1011 * x & y are pixel positions in client coordinates.
1013 * isExact will be set to TRUE if the run is directly under the pixel
1014 * position, FALSE if it not, unless isExact is set to NULL.
1016 * return FALSE if outside client area and the cursor is not set,
1017 * otherwise TRUE is returned.
1019 BOOL
ME_CharFromPos(ME_TextEditor
*editor
, int x
, int y
,
1020 ME_Cursor
*cursor
, BOOL
*isExact
)
1025 ITextHost_TxGetClientRect(editor
->texthost
, &rc
);
1026 if (x
< 0 || y
< 0 || x
>= rc
.right
|| y
>= rc
.bottom
) {
1027 if (isExact
) *isExact
= FALSE
;
1030 x
+= editor
->horz_si
.nPos
;
1031 y
+= editor
->vert_si
.nPos
;
1032 bResult
= ME_FindPixelPos(editor
, x
, y
, cursor
, NULL
);
1033 if (isExact
) *isExact
= bResult
;
1039 /* Extends the selection with a word, line, or paragraph selection type.
1041 * The selection is anchored by editor->pCursors[2-3] such that the text
1042 * between the anchors will remain selected, and one end will be extended.
1044 * editor->pCursors[0] should have the position to extend the selection to
1045 * before this function is called.
1047 * Nothing will be done if editor->nSelectionType equals stPosition.
1049 static void ME_ExtendAnchorSelection(ME_TextEditor
*editor
)
1051 ME_Cursor tmp_cursor
;
1052 int curOfs
, anchorStartOfs
, anchorEndOfs
;
1053 if (editor
->nSelectionType
== stPosition
|| editor
->nSelectionType
== stDocument
)
1055 curOfs
= ME_GetCursorOfs(&editor
->pCursors
[0]);
1056 anchorStartOfs
= ME_GetCursorOfs(&editor
->pCursors
[3]);
1057 anchorEndOfs
= ME_GetCursorOfs(&editor
->pCursors
[2]);
1059 tmp_cursor
= editor
->pCursors
[0];
1060 editor
->pCursors
[0] = editor
->pCursors
[2];
1061 editor
->pCursors
[1] = editor
->pCursors
[3];
1062 if (curOfs
< anchorStartOfs
)
1064 /* Extend the left side of selection */
1065 editor
->pCursors
[1] = tmp_cursor
;
1066 if (editor
->nSelectionType
== stWord
)
1067 ME_MoveCursorWords(editor
, &editor
->pCursors
[1], -1);
1070 ME_DisplayItem
*pItem
;
1071 ME_DIType searchType
= ((editor
->nSelectionType
== stLine
) ?
1072 diStartRowOrParagraph
:diParagraph
);
1073 pItem
= ME_FindItemBack(editor
->pCursors
[1].pRun
, searchType
);
1074 editor
->pCursors
[1].pRun
= ME_FindItemFwd(pItem
, diRun
);
1075 editor
->pCursors
[1].pPara
= ME_GetParagraph(editor
->pCursors
[1].pRun
);
1076 editor
->pCursors
[1].nOffset
= 0;
1079 else if (curOfs
>= anchorEndOfs
)
1081 /* Extend the right side of selection */
1082 editor
->pCursors
[0] = tmp_cursor
;
1083 if (editor
->nSelectionType
== stWord
)
1084 ME_MoveCursorWords(editor
, &editor
->pCursors
[0], +1);
1087 ME_DisplayItem
*pItem
;
1088 ME_DIType searchType
= ((editor
->nSelectionType
== stLine
) ?
1089 diStartRowOrParagraphOrEnd
:diParagraphOrEnd
);
1090 pItem
= ME_FindItemFwd(editor
->pCursors
[0].pRun
, searchType
);
1091 if (pItem
->type
== diTextEnd
)
1092 editor
->pCursors
[0].pRun
= ME_FindItemBack(pItem
, diRun
);
1094 editor
->pCursors
[0].pRun
= ME_FindItemFwd(pItem
, diRun
);
1095 editor
->pCursors
[0].pPara
= ME_GetParagraph(editor
->pCursors
[0].pRun
);
1096 editor
->pCursors
[0].nOffset
= 0;
1101 void ME_LButtonDown(ME_TextEditor
*editor
, int x
, int y
, int clickNum
)
1103 ME_Cursor tmp_cursor
;
1104 int is_selection
= 0;
1107 editor
->nUDArrowX
= -1;
1109 x
+= editor
->horz_si
.nPos
;
1110 y
+= editor
->vert_si
.nPos
;
1112 tmp_cursor
= editor
->pCursors
[0];
1113 is_selection
= ME_IsSelection(editor
);
1114 is_shift
= GetKeyState(VK_SHIFT
) < 0;
1116 ME_FindPixelPos(editor
, x
, y
, &editor
->pCursors
[0], &editor
->bCaretAtEnd
);
1118 if (x
>= editor
->rcFormat
.left
|| is_shift
)
1122 editor
->pCursors
[1] = editor
->pCursors
[0];
1124 if (x
>= editor
->rcFormat
.left
)
1125 ME_SelectByType(editor
, stWord
);
1127 ME_SelectByType(editor
, stParagraph
);
1128 } else if (clickNum
% 2 == 0) {
1129 ME_SelectByType(editor
, stWord
);
1131 ME_SelectByType(editor
, stParagraph
);
1136 editor
->nSelectionType
= stPosition
;
1137 editor
->pCursors
[1] = editor
->pCursors
[0];
1139 else if (!is_selection
)
1141 editor
->nSelectionType
= stPosition
;
1142 editor
->pCursors
[1] = tmp_cursor
;
1144 else if (editor
->nSelectionType
!= stPosition
)
1146 ME_ExtendAnchorSelection(editor
);
1152 ME_SelectByType(editor
, stLine
);
1153 } else if (clickNum
% 2 == 0 || is_shift
) {
1154 ME_SelectByType(editor
, stParagraph
);
1156 ME_SelectByType(editor
, stDocument
);
1159 ME_InvalidateSelection(editor
);
1160 ITextHost_TxShowCaret(editor
->texthost
, FALSE
);
1161 ME_ShowCaret(editor
);
1162 ME_ClearTempStyle(editor
);
1163 ME_SendSelChange(editor
);
1166 void ME_MouseMove(ME_TextEditor
*editor
, int x
, int y
)
1168 ME_Cursor tmp_cursor
;
1170 if (editor
->nSelectionType
== stDocument
)
1172 x
+= editor
->horz_si
.nPos
;
1173 y
+= editor
->vert_si
.nPos
;
1175 tmp_cursor
= editor
->pCursors
[0];
1176 /* FIXME: do something with the return value of ME_FindPixelPos */
1177 ME_FindPixelPos(editor
, x
, y
, &tmp_cursor
, &editor
->bCaretAtEnd
);
1179 ME_InvalidateSelection(editor
);
1180 editor
->pCursors
[0] = tmp_cursor
;
1181 ME_ExtendAnchorSelection(editor
);
1183 if (editor
->nSelectionType
!= stPosition
&&
1184 memcmp(&editor
->pCursors
[1], &editor
->pCursors
[3], sizeof(ME_Cursor
)))
1186 /* The scroll the cursor towards the other end, since it was the one
1187 * extended by ME_ExtendAnchorSelection */
1188 ME_EnsureVisible(editor
, &editor
->pCursors
[1]);
1190 ME_EnsureVisible(editor
, &editor
->pCursors
[0]);
1193 ME_InvalidateSelection(editor
);
1194 ITextHost_TxShowCaret(editor
->texthost
, FALSE
);
1195 ME_ShowCaret(editor
);
1196 ME_SendSelChange(editor
);
1199 static ME_DisplayItem
*ME_FindRunInRow(ME_TextEditor
*editor
, ME_DisplayItem
*pRow
,
1200 int x
, int *pOffset
, int *pbCaretAtEnd
)
1202 ME_DisplayItem
*pNext
, *pLastRun
;
1203 pNext
= ME_FindItemFwd(pRow
, diRunOrStartRow
);
1204 assert(pNext
->type
== diRun
);
1206 if (pbCaretAtEnd
) *pbCaretAtEnd
= FALSE
;
1207 if (pOffset
) *pOffset
= 0;
1209 int run_x
= pNext
->member
.run
.pt
.x
;
1210 int width
= pNext
->member
.run
.nWidth
;
1215 if (x
>= run_x
&& x
< run_x
+width
)
1217 int ch
= ME_CharFromPointCursor(editor
, x
-run_x
, &pNext
->member
.run
);
1218 ME_String
*s
= pNext
->member
.run
.strText
;
1226 pNext
= ME_FindItemFwd(pNext
, diRunOrStartRow
);
1227 } while(pNext
&& pNext
->type
== diRun
);
1229 if ((pLastRun
->member
.run
.nFlags
& MERF_ENDPARA
) == 0)
1231 pNext
= ME_FindItemFwd(pNext
, diRun
);
1232 if (pbCaretAtEnd
) *pbCaretAtEnd
= TRUE
;
1239 static int ME_GetXForArrow(ME_TextEditor
*editor
, ME_Cursor
*pCursor
)
1241 ME_DisplayItem
*pRun
= pCursor
->pRun
;
1244 if (editor
->nUDArrowX
!= -1)
1245 x
= editor
->nUDArrowX
;
1247 if (editor
->bCaretAtEnd
)
1249 pRun
= ME_FindItemBack(pRun
, diRun
);
1251 x
= pRun
->member
.run
.pt
.x
+ pRun
->member
.run
.nWidth
;
1254 x
= pRun
->member
.run
.pt
.x
;
1255 x
+= ME_PointFromChar(editor
, &pRun
->member
.run
, pCursor
->nOffset
);
1257 editor
->nUDArrowX
= x
;
1264 ME_MoveCursorLines(ME_TextEditor
*editor
, ME_Cursor
*pCursor
, int nRelOfs
)
1266 ME_DisplayItem
*pRun
= pCursor
->pRun
;
1267 ME_DisplayItem
*pOldPara
= pCursor
->pPara
;
1268 ME_DisplayItem
*pItem
, *pNewPara
;
1269 int x
= ME_GetXForArrow(editor
, pCursor
);
1271 if (editor
->bCaretAtEnd
&& !pCursor
->nOffset
)
1272 if (!ME_PrevRun(&pOldPara
, &pRun
))
1277 /* start of this row */
1278 pItem
= ME_FindItemBack(pRun
, diStartRow
);
1280 /* start of the previous row */
1281 pItem
= ME_FindItemBack(pItem
, diStartRow
);
1283 return; /* row not found - ignore */
1284 pNewPara
= ME_GetParagraph(pItem
);
1285 if (pOldPara
->member
.para
.nFlags
& MEPF_ROWEND
||
1286 (pOldPara
->member
.para
.pCell
&&
1287 pOldPara
->member
.para
.pCell
!= pNewPara
->member
.para
.pCell
))
1289 /* Brought out of a cell */
1290 pNewPara
= ME_GetTableRowStart(pOldPara
)->member
.para
.prev_para
;
1291 if (pNewPara
->type
== diTextStart
)
1292 return; /* At the top, so don't go anywhere. */
1293 pItem
= ME_FindItemFwd(pNewPara
, diStartRow
);
1295 if (pNewPara
->member
.para
.nFlags
& MEPF_ROWEND
)
1297 /* Brought into a table row */
1298 ME_Cell
*cell
= &ME_FindItemBack(pNewPara
, diCell
)->member
.cell
;
1299 while (x
< cell
->pt
.x
&& cell
->prev_cell
)
1300 cell
= &cell
->prev_cell
->member
.cell
;
1301 if (cell
->next_cell
) /* else - we are still at the end of the row */
1302 pItem
= ME_FindItemBack(cell
->next_cell
, diStartRow
);
1307 /* start of the next row */
1308 pItem
= ME_FindItemFwd(pRun
, diStartRow
);
1310 return; /* row not found - ignore */
1311 pNewPara
= ME_GetParagraph(pItem
);
1312 if (pOldPara
->member
.para
.nFlags
& MEPF_ROWSTART
||
1313 (pOldPara
->member
.para
.pCell
&&
1314 pOldPara
->member
.para
.pCell
!= pNewPara
->member
.para
.pCell
))
1316 /* Brought out of a cell */
1317 pNewPara
= ME_GetTableRowEnd(pOldPara
)->member
.para
.next_para
;
1318 if (pNewPara
->type
== diTextEnd
)
1319 return; /* At the bottom, so don't go anywhere. */
1320 pItem
= ME_FindItemFwd(pNewPara
, diStartRow
);
1322 if (pNewPara
->member
.para
.nFlags
& MEPF_ROWSTART
)
1324 /* Brought into a table row */
1325 ME_DisplayItem
*cell
= ME_FindItemFwd(pNewPara
, diCell
);
1326 while (cell
->member
.cell
.next_cell
&&
1327 x
>= cell
->member
.cell
.next_cell
->member
.cell
.pt
.x
)
1328 cell
= cell
->member
.cell
.next_cell
;
1329 pItem
= ME_FindItemFwd(cell
, diStartRow
);
1334 /* row not found - ignore */
1337 pCursor
->pRun
= ME_FindRunInRow(editor
, pItem
, x
, &pCursor
->nOffset
, &editor
->bCaretAtEnd
);
1338 pCursor
->pPara
= ME_GetParagraph(pCursor
->pRun
);
1339 assert(pCursor
->pRun
);
1340 assert(pCursor
->pRun
->type
== diRun
);
1343 static void ME_ArrowPageUp(ME_TextEditor
*editor
, ME_Cursor
*pCursor
)
1345 ME_DisplayItem
*p
= ME_FindItemFwd(editor
->pBuffer
->pFirst
, diStartRow
);
1347 if (editor
->vert_si
.nPos
< p
->member
.row
.nHeight
)
1349 ME_SetCursorToStart(editor
, pCursor
);
1350 editor
->bCaretAtEnd
= FALSE
;
1351 /* Native clears seems to clear this x value on page up at the top
1352 * of the text, but not on page down at the end of the text.
1353 * Doesn't make sense, but we try to be bug for bug compatible. */
1354 editor
->nUDArrowX
= -1;
1356 ME_DisplayItem
*pRun
= pCursor
->pRun
;
1357 ME_DisplayItem
*pLast
;
1358 int x
, y
, ys
, yd
, yp
, yprev
;
1359 int yOldScrollPos
= editor
->vert_si
.nPos
;
1361 x
= ME_GetXForArrow(editor
, pCursor
);
1362 if (!pCursor
->nOffset
&& editor
->bCaretAtEnd
)
1363 pRun
= ME_FindItemBack(pRun
, diRun
);
1365 p
= ME_FindItemBack(pRun
, diStartRowOrParagraph
);
1366 assert(p
->type
== diStartRow
);
1367 yp
= ME_FindItemBack(p
, diParagraph
)->member
.para
.pt
.y
;
1368 yprev
= ys
= y
= yp
+ p
->member
.row
.pt
.y
;
1370 ME_ScrollUp(editor
, editor
->sizeWindow
.cy
);
1371 /* Only move the cursor by the amount scrolled. */
1372 yd
= y
+ editor
->vert_si
.nPos
- yOldScrollPos
;
1376 p
= ME_FindItemBack(p
, diStartRowOrParagraph
);
1379 if (p
->type
== diParagraph
) { /* crossing paragraphs */
1380 if (p
->member
.para
.prev_para
== NULL
)
1382 yp
= p
->member
.para
.prev_para
->member
.para
.pt
.y
;
1385 y
= yp
+ p
->member
.row
.pt
.y
;
1392 pCursor
->pRun
= ME_FindRunInRow(editor
, pLast
, x
, &pCursor
->nOffset
,
1393 &editor
->bCaretAtEnd
);
1394 pCursor
->pPara
= ME_GetParagraph(pCursor
->pRun
);
1396 assert(pCursor
->pRun
);
1397 assert(pCursor
->pRun
->type
== diRun
);
1400 static void ME_ArrowPageDown(ME_TextEditor
*editor
, ME_Cursor
*pCursor
)
1402 ME_DisplayItem
*pLast
;
1405 /* Find y position of the last row */
1406 pLast
= editor
->pBuffer
->pLast
;
1407 y
= pLast
->member
.para
.prev_para
->member
.para
.pt
.y
1408 + ME_FindItemBack(pLast
, diStartRow
)->member
.row
.pt
.y
;
1410 x
= ME_GetXForArrow(editor
, pCursor
);
1412 if (editor
->vert_si
.nPos
>= y
- editor
->sizeWindow
.cy
)
1414 ME_SetCursorToEnd(editor
, pCursor
);
1415 editor
->bCaretAtEnd
= FALSE
;
1417 ME_DisplayItem
*pRun
= pCursor
->pRun
;
1419 int ys
, yd
, yp
, yprev
;
1420 int yOldScrollPos
= editor
->vert_si
.nPos
;
1422 if (!pCursor
->nOffset
&& editor
->bCaretAtEnd
)
1423 pRun
= ME_FindItemBack(pRun
, diRun
);
1425 p
= ME_FindItemBack(pRun
, diStartRowOrParagraph
);
1426 assert(p
->type
== diStartRow
);
1427 yp
= ME_FindItemBack(p
, diParagraph
)->member
.para
.pt
.y
;
1428 yprev
= ys
= y
= yp
+ p
->member
.row
.pt
.y
;
1430 /* For native richedit controls:
1431 * v1.0 - v3.1 can only scroll down as far as the scrollbar lets us
1432 * v4.1 can scroll past this position here. */
1433 ME_ScrollDown(editor
, editor
->sizeWindow
.cy
);
1434 /* Only move the cursor by the amount scrolled. */
1435 yd
= y
+ editor
->vert_si
.nPos
- yOldScrollPos
;
1439 p
= ME_FindItemFwd(p
, diStartRowOrParagraph
);
1442 if (p
->type
== diParagraph
) {
1443 yp
= p
->member
.para
.pt
.y
;
1446 y
= yp
+ p
->member
.row
.pt
.y
;
1453 pCursor
->pRun
= ME_FindRunInRow(editor
, pLast
, x
, &pCursor
->nOffset
,
1454 &editor
->bCaretAtEnd
);
1455 pCursor
->pPara
= ME_GetParagraph(pCursor
->pRun
);
1457 assert(pCursor
->pRun
);
1458 assert(pCursor
->pRun
->type
== diRun
);
1461 static void ME_ArrowHome(ME_TextEditor
*editor
, ME_Cursor
*pCursor
)
1463 ME_DisplayItem
*pRow
= ME_FindItemBack(pCursor
->pRun
, diStartRow
);
1465 ME_DisplayItem
*pRun
;
1466 if (editor
->bCaretAtEnd
&& !pCursor
->nOffset
) {
1467 pRow
= ME_FindItemBack(pRow
, diStartRow
);
1471 pRun
= ME_FindItemFwd(pRow
, diRun
);
1473 pCursor
->pRun
= pRun
;
1474 assert(pCursor
->pPara
== ME_GetParagraph(pRun
));
1475 pCursor
->nOffset
= 0;
1478 editor
->bCaretAtEnd
= FALSE
;
1481 static void ME_ArrowCtrlHome(ME_TextEditor
*editor
, ME_Cursor
*pCursor
)
1483 ME_SetCursorToStart(editor
, pCursor
);
1484 editor
->bCaretAtEnd
= FALSE
;
1487 static void ME_ArrowEnd(ME_TextEditor
*editor
, ME_Cursor
*pCursor
)
1489 ME_DisplayItem
*pRow
;
1491 if (editor
->bCaretAtEnd
&& !pCursor
->nOffset
)
1494 pRow
= ME_FindItemFwd(pCursor
->pRun
, diStartRowOrParagraphOrEnd
);
1496 if (pRow
->type
== diStartRow
) {
1497 ME_DisplayItem
*pRun
= ME_FindItemFwd(pRow
, diRun
);
1499 pCursor
->pRun
= pRun
;
1500 assert(pCursor
->pPara
== ME_GetParagraph(pCursor
->pRun
));
1501 pCursor
->nOffset
= 0;
1502 editor
->bCaretAtEnd
= TRUE
;
1505 pCursor
->pRun
= ME_FindItemBack(pRow
, diRun
);
1506 assert(pCursor
->pRun
&& pCursor
->pRun
->member
.run
.nFlags
& MERF_ENDPARA
);
1507 assert(pCursor
->pPara
== ME_GetParagraph(pCursor
->pRun
));
1508 pCursor
->nOffset
= 0;
1509 editor
->bCaretAtEnd
= FALSE
;
1512 static void ME_ArrowCtrlEnd(ME_TextEditor
*editor
, ME_Cursor
*pCursor
)
1514 ME_SetCursorToEnd(editor
, pCursor
);
1515 editor
->bCaretAtEnd
= FALSE
;
1518 BOOL
ME_IsSelection(ME_TextEditor
*editor
)
1520 return editor
->pCursors
[0].pRun
!= editor
->pCursors
[1].pRun
||
1521 editor
->pCursors
[0].nOffset
!= editor
->pCursors
[1].nOffset
;
1524 void ME_DeleteSelection(ME_TextEditor
*editor
)
1527 int nStartCursor
= ME_GetSelectionOfs(editor
, &from
, &to
);
1528 ME_DeleteTextAtCursor(editor
, nStartCursor
, to
- from
);
1531 ME_Style
*ME_GetSelectionInsertStyle(ME_TextEditor
*editor
)
1533 return ME_GetInsertStyle(editor
, 0);
1536 void ME_SendSelChange(ME_TextEditor
*editor
)
1540 if (!(editor
->nEventMask
& ENM_SELCHANGE
))
1543 sc
.nmhdr
.hwndFrom
= NULL
;
1544 sc
.nmhdr
.idFrom
= 0;
1545 sc
.nmhdr
.code
= EN_SELCHANGE
;
1546 ME_GetSelectionOfs(editor
, &sc
.chrg
.cpMin
, &sc
.chrg
.cpMax
);
1547 sc
.seltyp
= SEL_EMPTY
;
1548 if (sc
.chrg
.cpMin
!= sc
.chrg
.cpMax
)
1549 sc
.seltyp
|= SEL_TEXT
;
1550 if (sc
.chrg
.cpMin
< sc
.chrg
.cpMax
+1) /* what were RICHEDIT authors thinking ? */
1551 sc
.seltyp
|= SEL_MULTICHAR
;
1552 TRACE("cpMin=%d cpMax=%d seltyp=%d (%s %s)\n",
1553 sc
.chrg
.cpMin
, sc
.chrg
.cpMax
, sc
.seltyp
,
1554 (sc
.seltyp
& SEL_TEXT
) ? "SEL_TEXT" : "",
1555 (sc
.seltyp
& SEL_MULTICHAR
) ? "SEL_MULTICHAR" : "");
1556 if (sc
.chrg
.cpMin
!= editor
->notified_cr
.cpMin
|| sc
.chrg
.cpMax
!= editor
->notified_cr
.cpMax
)
1558 ME_ClearTempStyle(editor
);
1560 editor
->notified_cr
= sc
.chrg
;
1561 ITextHost_TxNotify(editor
->texthost
, sc
.nmhdr
.code
, &sc
);
1566 ME_ArrowKey(ME_TextEditor
*editor
, int nVKey
, BOOL extend
, BOOL ctrl
)
1569 ME_Cursor
*p
= &editor
->pCursors
[nCursor
];
1570 ME_Cursor tmp_curs
= *p
;
1571 BOOL success
= FALSE
;
1573 ME_CheckCharOffsets(editor
);
1576 editor
->bCaretAtEnd
= 0;
1578 success
= ME_MoveCursorWords(editor
, &tmp_curs
, -1);
1580 success
= ME_MoveCursorChars(editor
, &tmp_curs
, -1);
1583 editor
->bCaretAtEnd
= 0;
1585 success
= ME_MoveCursorWords(editor
, &tmp_curs
, +1);
1587 success
= ME_MoveCursorChars(editor
, &tmp_curs
, +1);
1590 ME_MoveCursorLines(editor
, &tmp_curs
, -1);
1593 ME_MoveCursorLines(editor
, &tmp_curs
, +1);
1596 ME_ArrowPageUp(editor
, &tmp_curs
);
1599 ME_ArrowPageDown(editor
, &tmp_curs
);
1603 ME_ArrowCtrlHome(editor
, &tmp_curs
);
1605 ME_ArrowHome(editor
, &tmp_curs
);
1606 editor
->bCaretAtEnd
= 0;
1611 ME_ArrowCtrlEnd(editor
, &tmp_curs
);
1613 ME_ArrowEnd(editor
, &tmp_curs
);
1618 editor
->pCursors
[1] = tmp_curs
;
1621 ME_InvalidateSelection(editor
);
1623 ITextHost_TxShowCaret(editor
->texthost
, FALSE
);
1624 ME_EnsureVisible(editor
, &tmp_curs
);
1625 ME_ShowCaret(editor
);
1626 ME_SendSelChange(editor
);