riched20: Remove variable ys which is not really used from ME_ArrowPageDown.
[wine.git] / dlls / riched20 / caret.c
blob930fb14dfec6197320584bd1419f47719877fe6f
1 /*
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
23 #include "editor.h"
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);
31 cursor->nOffset = 0;
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);
38 cursor->nOffset = 0;
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]);
47 if (*from > *to)
49 int tmp = *from;
50 *from = *to;
51 *to = tmp;
52 return 1;
54 return 0;
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];
63 return 0;
64 } else {
65 *from = &editor->pCursors[1];
66 *to = &editor->pCursors[0];
67 return 1;
71 int ME_GetTextLength(ME_TextEditor *editor)
73 ME_Cursor cursor;
74 ME_SetCursorToEnd(editor, &cursor);
75 return ME_GetCursorOfs(&cursor);
79 int ME_GetTextLengthEx(ME_TextEditor *editor, const GETTEXTLENGTHEX *how)
81 int length;
83 if (how->flags & GTL_PRECISE && how->flags & GTL_CLOSE)
84 return E_INVALIDARG;
85 if (how->flags & GTL_NUMCHARS && how->flags & GTL_NUMBYTES)
86 return E_INVALIDARG;
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 */
99 CPINFO cpinfo;
101 if (how->codepage == 1200)
102 return length * 2;
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);
108 return E_INVALIDARG;
110 return length;
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 */
120 if (from < 0)
121 from = -1;
122 if (to < 0)
123 to = -1;
125 /* select all */
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);
132 return len + 1;
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))
139 selectionEnd = 1;
141 else
143 /* if from is negative and to is positive then selection is */
144 /* deselected and caret moved to end of the current selection */
145 if (from < 0)
147 int start, end;
148 ME_GetSelectionOfs(editor, &start, &end);
149 editor->pCursors[1] = editor->pCursors[0];
150 ME_Repaint(editor);
151 ME_ClearTempStyle(editor);
152 return end;
155 /* adjust to if it's a negative value */
156 if (to < 0)
157 to = len + 1;
159 /* flip from and to if they are reversed */
160 if (from>to)
162 int tmp = from;
163 from = to;
164 to = tmp;
167 /* after fiddling with the values, we find from > len && to > len */
168 if (from > len)
169 selectionEnd = 1;
170 /* special case with to too big */
171 else if (to > len)
172 to = len + 1;
175 if (selectionEnd)
177 ME_SetCursorToEnd(editor, &editor->pCursors[0]);
178 editor->pCursors[1] = editor->pCursors[0];
179 ME_InvalidateSelection(editor);
180 ME_ClearTempStyle(editor);
181 return len;
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;
192 return to;
196 static void
197 ME_GetCursorCoordinates(ME_TextEditor *editor, ME_Cursor *pCursor,
198 int *x, int *y, int *height)
200 ME_DisplayItem *row;
201 ME_DisplayItem *run = pCursor->pRun;
202 ME_DisplayItem *para = pCursor->pPara;
203 ME_DisplayItem *pSizeRun = run;
204 ME_Context c;
205 SIZE sz = {0, 0};
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);
220 assert(prev);
221 if (prev->type == diRun)
222 pSizeRun = prev;
224 if (editor->bCaretAtEnd && !pCursor->nOffset &&
225 run == ME_FindItemFwd(row, diRun))
227 ME_DisplayItem *tmp = ME_FindItemBack(row, diRunOrParagraph);
228 assert(tmp);
229 if (tmp->type == diRun)
231 row = ME_FindItemBack(tmp, diStartRow);
232 pSizeRun = run = tmp;
233 assert(run);
234 assert(run->type == diRun);
235 sz = ME_GetRunSize(&c, &para->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, &para->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);
251 return;
255 void
256 ME_MoveCaret(ME_TextEditor *editor)
258 int x, y, height;
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)
272 ME_MoveCaret(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);
282 DestroyCaret();
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);
291 int shift = 0;
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;
299 if (!bForce)
301 ME_ProtectPartialTableDeletion(editor, &c, &nChars);
302 if (nChars == 0)
303 return FALSE;
306 while(nChars > 0)
308 ME_Run *run;
309 ME_CursorFromCharOfs(editor, nOfs+nChars, &c);
310 if (!c.nOffset &&
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))
326 return TRUE;
328 keepFirstParaFormat = (totalChars == nChars && nChars <= eollen &&
329 run->nCharOfs);
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;
347 continue;
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;
356 continue;
358 else
360 ME_Cursor cursor;
361 int nCharsToDelete = min(nChars, c.nOffset);
362 int i;
364 c.nOffset -= nCharsToDelete;
366 ME_FindItemBack(c.pRun, diParagraph)->member.para.nFlags |= MEPF_REWRAP;
368 cursor = c;
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);
384 if (pUndo)
385 pUndo->di.member.run.nCharOfs = nOfs+nChars;
387 else
389 /* undo = reinsert partial run */
390 ME_UndoItem *pUndo = ME_AddUndoItem(editor, diUndoInsertRun, c.pRun);
391 if (pUndo) {
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;
409 else
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);
427 else
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);
437 shift = 0;
439 ME_CheckCharOffsets(editor);
441 continue;
444 return TRUE;
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],
453 nChars, FALSE);
456 static ME_DisplayItem *
457 ME_InternalInsertTextFromCursor(ME_TextEditor *editor, int nCursor,
458 const WCHAR *str, int len, ME_Style *style,
459 int flags)
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);
474 ME_DisplayItem *di;
475 WCHAR space = ' ';
477 /* FIXME no no no */
478 if (ME_IsSelection(editor))
479 ME_DeleteSelection(editor);
481 di = ME_InternalInsertTextFromCursor(editor, nCursor, &space, 1, pStyle,
482 MERF_GRAPHICS);
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);
492 WCHAR space = ' ';
494 /* FIXME no no no */
495 if (ME_IsSelection(editor))
496 ME_DeleteSelection(editor);
498 ME_InternalInsertTextFromCursor(editor, nCursor, &space, 1, pStyle,
499 MERF_ENDROW);
500 ME_ReleaseStyle(pStyle);
504 void ME_InsertTextFromCursor(ME_TextEditor *editor, int nCursor,
505 const WCHAR *str, int len, ME_Style *style)
507 const WCHAR *pos;
508 ME_Cursor *p = NULL;
509 int oldLen;
511 /* FIXME really HERE ? */
512 if (ME_IsSelection(editor))
513 ME_DeleteSelection(editor);
515 /* FIXME: is this too slow? */
516 /* Didn't affect performance for WM_SETTEXT (around 50sec/30K) */
517 oldLen = ME_GetTextLength(editor);
519 /* text operations set modified state */
520 editor->nModifyStep = 1;
522 assert(style);
524 assert(nCursor>=0 && nCursor<editor->nCursors);
525 if (len == -1)
526 len = lstrlenW(str);
528 /* grow the text limit to fit our text */
529 if(editor->nTextLimit < oldLen +len)
530 editor->nTextLimit = oldLen + len;
532 pos = str;
534 while (len)
536 /* FIXME this sucks - no respect for unicode (what else can be a line separator in unicode?) */
537 while(pos - str < len && *pos != '\r' && *pos != '\n' && *pos != '\t')
538 pos++;
540 if (pos != str) { /* handle text */
541 ME_InternalInsertTextFromCursor(editor, nCursor, str, pos-str, style, 0);
542 } else if (*pos == '\t') { /* handle tabs */
543 WCHAR tab = '\t';
544 ME_InternalInsertTextFromCursor(editor, nCursor, &tab, 1, style, MERF_TAB);
545 pos++;
546 } else { /* handle EOLs */
547 ME_DisplayItem *tp, *end_run;
548 ME_Style *tmp_style;
549 int eol_len = 0;
551 /* Find number of CR and LF in end of paragraph run */
552 if (*pos =='\r')
554 if (len > 1 && pos[1] == '\n')
555 eol_len = 2;
556 else if (len > 2 && pos[1] == '\r' && pos[2] == '\n')
557 eol_len = 3;
558 else
559 eol_len = 1;
560 } else {
561 assert(*pos == '\n');
562 eol_len = 1;
564 pos += eol_len;
566 if (!editor->bEmulateVersion10 && eol_len == 3)
568 /* handle special \r\r\n sequence (richedit 2.x and higher only) */
569 WCHAR space = ' ';
570 ME_InternalInsertTextFromCursor(editor, nCursor, &space, 1, style, 0);
571 } else {
572 ME_String *eol_str;
574 if (!editor->bEmulateVersion10) {
575 WCHAR cr = '\r';
576 eol_str = ME_MakeStringN(&cr, 1);
577 } else {
578 eol_str = ME_MakeStringN(str, eol_len);
581 p = &editor->pCursors[nCursor];
582 if (p->nOffset) {
583 ME_SplitRunSimple(editor, p->pRun, p->nOffset);
584 p = &editor->pCursors[nCursor];
586 tmp_style = ME_GetInsertStyle(editor, nCursor);
587 /* ME_SplitParagraph increases style refcount */
588 tp = ME_SplitParagraph(editor, p->pRun, p->pRun->member.run.style, eol_str, 0);
589 p->pRun = ME_FindItemFwd(tp, diRun);
590 p->pPara = tp;
591 end_run = ME_FindItemBack(tp, diRun);
592 ME_ReleaseStyle(end_run->member.run.style);
593 end_run->member.run.style = tmp_style;
594 p->nOffset = 0;
597 len -= pos - str;
598 str = pos;
602 /* Move the cursor nRelOfs characters (either forwards or backwards)
604 * returns the actual number of characters moved.
606 int ME_MoveCursorChars(ME_TextEditor *editor, ME_Cursor *cursor, int nRelOfs)
608 cursor->nOffset += nRelOfs;
609 if (cursor->nOffset < 0)
611 cursor->nOffset += cursor->pRun->member.run.nCharOfs;
612 if (cursor->nOffset >= 0)
614 /* new offset in the same paragraph */
615 do {
616 cursor->pRun = ME_FindItemBack(cursor->pRun, diRun);
617 } while (cursor->nOffset < cursor->pRun->member.run.nCharOfs);
618 cursor->nOffset -= cursor->pRun->member.run.nCharOfs;
619 return nRelOfs;
622 cursor->nOffset += cursor->pPara->member.para.nCharOfs;
623 if (cursor->nOffset <= 0)
625 /* moved to the start of the text */
626 nRelOfs -= cursor->nOffset;
627 ME_SetCursorToStart(editor, cursor);
628 return nRelOfs;
631 /* new offset in a previous paragraph */
632 do {
633 cursor->pPara = cursor->pPara->member.para.prev_para;
634 } while (cursor->nOffset < cursor->pPara->member.para.nCharOfs);
635 cursor->nOffset -= cursor->pPara->member.para.nCharOfs;
637 cursor->pRun = ME_FindItemBack(cursor->pPara->member.para.next_para, diRun);
638 while (cursor->nOffset < cursor->pRun->member.run.nCharOfs) {
639 cursor->pRun = ME_FindItemBack(cursor->pRun, diRun);
641 cursor->nOffset -= cursor->pRun->member.run.nCharOfs;
642 } else if (cursor->nOffset >= cursor->pRun->member.run.strText->nLen) {
643 ME_DisplayItem *next_para;
644 int new_offset;
646 new_offset = ME_GetCursorOfs(cursor);
647 next_para = cursor->pPara->member.para.next_para;
648 if (new_offset < next_para->member.para.nCharOfs)
650 /* new offset in the same paragraph */
651 do {
652 cursor->nOffset -= cursor->pRun->member.run.strText->nLen;
653 cursor->pRun = ME_FindItemFwd(cursor->pRun, diRun);
654 } while (cursor->nOffset >= cursor->pRun->member.run.strText->nLen);
655 return nRelOfs;
658 if (new_offset >= ME_GetTextLength(editor))
660 /* new offset at the end of the text */
661 ME_SetCursorToEnd(editor, cursor);
662 nRelOfs -= new_offset - ME_GetTextLength(editor);
663 return nRelOfs;
666 /* new offset in a following paragraph */
667 do {
668 cursor->pPara = next_para;
669 next_para = next_para->member.para.next_para;
670 } while (new_offset >= next_para->member.para.nCharOfs);
672 cursor->nOffset = new_offset - cursor->pPara->member.para.nCharOfs;
673 cursor->pRun = ME_FindItemFwd(cursor->pPara, diRun);
674 while (cursor->nOffset >= cursor->pRun->member.run.strText->nLen)
676 cursor->nOffset -= cursor->pRun->member.run.strText->nLen;
677 cursor->pRun = ME_FindItemFwd(cursor->pRun, diRun);
679 } /* else new offset is in the same run */
680 return nRelOfs;
684 static BOOL
685 ME_MoveCursorWords(ME_TextEditor *editor, ME_Cursor *cursor, int nRelOfs)
687 ME_DisplayItem *pRun = cursor->pRun, *pOtherRun;
688 ME_DisplayItem *pPara = cursor->pPara;
689 int nOffset = cursor->nOffset;
691 if (nRelOfs == -1)
693 /* Backward movement */
694 while (TRUE)
696 nOffset = ME_CallWordBreakProc(editor, pRun->member.run.strText,
697 nOffset, WB_MOVEWORDLEFT);
698 if (nOffset)
699 break;
700 pOtherRun = ME_FindItemBack(pRun, diRunOrParagraph);
701 if (pOtherRun->type == diRun)
703 if (ME_CallWordBreakProc(editor, pOtherRun->member.run.strText,
704 pOtherRun->member.run.strText->nLen - 1,
705 WB_ISDELIMITER)
706 && !(pRun->member.run.nFlags & MERF_ENDPARA)
707 && !(cursor->pRun == pRun && cursor->nOffset == 0)
708 && !ME_CallWordBreakProc(editor, pRun->member.run.strText, 0,
709 WB_ISDELIMITER))
710 break;
711 pRun = pOtherRun;
712 nOffset = pOtherRun->member.run.strText->nLen;
714 else if (pOtherRun->type == diParagraph)
716 if (cursor->pRun == pRun && cursor->nOffset == 0)
718 pPara = pOtherRun;
719 /* Skip empty start of table row paragraph */
720 if (pPara->member.para.prev_para->member.para.nFlags & MEPF_ROWSTART)
721 pPara = pPara->member.para.prev_para;
722 /* Paragraph breaks are treated as separate words */
723 if (pPara->member.para.prev_para->type == diTextStart)
724 return FALSE;
726 pRun = ME_FindItemBack(pPara, diRun);
727 pPara = pPara->member.para.prev_para;
729 break;
733 else
735 /* Forward movement */
736 BOOL last_delim = FALSE;
738 while (TRUE)
740 if (last_delim && !ME_CallWordBreakProc(editor, pRun->member.run.strText,
741 nOffset, WB_ISDELIMITER))
742 break;
743 nOffset = ME_CallWordBreakProc(editor, pRun->member.run.strText,
744 nOffset, WB_MOVEWORDRIGHT);
745 if (nOffset < pRun->member.run.strText->nLen)
746 break;
747 pOtherRun = ME_FindItemFwd(pRun, diRunOrParagraphOrEnd);
748 if (pOtherRun->type == diRun)
750 last_delim = ME_CallWordBreakProc(editor, pRun->member.run.strText,
751 nOffset - 1, WB_ISDELIMITER);
752 pRun = pOtherRun;
753 nOffset = 0;
755 else if (pOtherRun->type == diParagraph)
757 if (pOtherRun->member.para.nFlags & MEPF_ROWSTART)
758 pOtherRun = pOtherRun->member.para.next_para;
759 if (cursor->pRun == pRun) {
760 pPara = pOtherRun;
761 pRun = ME_FindItemFwd(pPara, diRun);
763 nOffset = 0;
764 break;
766 else /* diTextEnd */
768 if (cursor->pRun == pRun)
769 return FALSE;
770 nOffset = 0;
771 break;
775 cursor->pPara = pPara;
776 cursor->pRun = pRun;
777 cursor->nOffset = nOffset;
778 return TRUE;
782 static void
783 ME_SelectByType(ME_TextEditor *editor, ME_SelectionType selectionType)
785 /* pCursor[0] is the end of the selection
786 * pCursor[1] is the start of the selection (or the position selection anchor)
787 * pCursor[2] and [3] are the selection anchors that are backed up
788 * so they are kept when the selection changes for drag selection.
791 editor->nSelectionType = selectionType;
792 switch(selectionType)
794 case stPosition:
795 break;
796 case stWord:
797 ME_MoveCursorWords(editor, &editor->pCursors[0], +1);
798 editor->pCursors[1] = editor->pCursors[0];
799 ME_MoveCursorWords(editor, &editor->pCursors[1], -1);
800 break;
801 case stLine:
802 case stParagraph:
804 ME_DisplayItem *pItem;
805 ME_DIType fwdSearchType, backSearchType;
806 if (selectionType == stParagraph) {
807 backSearchType = diParagraph;
808 fwdSearchType = diParagraphOrEnd;
809 } else {
810 backSearchType = diStartRow;
811 fwdSearchType = diStartRowOrParagraphOrEnd;
813 pItem = ME_FindItemFwd(editor->pCursors[0].pRun, fwdSearchType);
814 assert(pItem);
815 if (pItem->type == diTextEnd)
816 editor->pCursors[0].pRun = ME_FindItemBack(pItem, diRun);
817 else
818 editor->pCursors[0].pRun = ME_FindItemFwd(pItem, diRun);
819 editor->pCursors[0].pPara = ME_GetParagraph(editor->pCursors[0].pRun);
820 editor->pCursors[0].nOffset = 0;
822 pItem = ME_FindItemBack(pItem, backSearchType);
823 editor->pCursors[1].pRun = ME_FindItemFwd(pItem, diRun);
824 editor->pCursors[1].pPara = ME_GetParagraph(editor->pCursors[1].pRun);
825 editor->pCursors[1].nOffset = 0;
826 break;
828 case stDocument:
829 /* Select everything with cursor anchored from the start of the text */
830 editor->nSelectionType = stDocument;
831 ME_SetCursorToStart(editor, &editor->pCursors[1]);
832 ME_SetCursorToEnd(editor, &editor->pCursors[0]);
833 break;
834 default: assert(0);
836 /* Store the anchor positions for extending the selection. */
837 editor->pCursors[2] = editor->pCursors[0];
838 editor->pCursors[3] = editor->pCursors[1];
841 int ME_GetCursorOfs(const ME_Cursor *cursor)
843 return cursor->pPara->member.para.nCharOfs
844 + cursor->pRun->member.run.nCharOfs + cursor->nOffset;
847 /* Helper function for ME_FindPixelPos to find paragraph within tables */
848 static ME_DisplayItem* ME_FindPixelPosInTableRow(int x, int y,
849 ME_DisplayItem *para)
851 ME_DisplayItem *cell, *next_cell;
852 assert(para->member.para.nFlags & MEPF_ROWSTART);
853 cell = para->member.para.next_para->member.para.pCell;
854 assert(cell);
856 /* find the cell we are in */
857 while ((next_cell = cell->member.cell.next_cell) != NULL) {
858 if (x < next_cell->member.cell.pt.x)
860 para = ME_FindItemFwd(cell, diParagraph);
861 /* Found the cell, but there might be multiple paragraphs in
862 * the cell, so need to search down the cell for the paragraph. */
863 while (cell == para->member.para.pCell) {
864 if (y < para->member.para.pt.y + para->member.para.nHeight)
866 if (para->member.para.nFlags & MEPF_ROWSTART)
867 return ME_FindPixelPosInTableRow(x, y, para);
868 else
869 return para;
871 para = para->member.para.next_para;
873 /* Past the end of the cell, so go back to the last cell paragraph */
874 return para->member.para.prev_para;
876 cell = next_cell;
878 /* Return table row delimiter */
879 para = ME_FindItemFwd(cell, diParagraph);
880 assert(para->member.para.nFlags & MEPF_ROWEND);
881 assert(para->member.para.pFmt->dwMask & PFM_TABLEROWDELIMITER);
882 assert(para->member.para.pFmt->wEffects & PFE_TABLEROWDELIMITER);
883 return para;
886 static BOOL ME_ReturnFoundPos(ME_TextEditor *editor, ME_DisplayItem *found,
887 ME_Cursor *result, int rx, BOOL isExact)
889 assert(found);
890 assert(found->type == diRun);
891 if ((found->member.run.nFlags & MERF_ENDPARA) || rx < 0)
892 rx = 0;
893 result->pRun = found;
894 result->nOffset = ME_CharFromPointCursor(editor, rx, &found->member.run);
895 if (result->nOffset == found->member.run.strText->nLen && rx)
897 result->pRun = ME_FindItemFwd(result->pRun, diRun);
898 result->nOffset = 0;
900 result->pPara = ME_GetParagraph(result->pRun);
901 return isExact;
904 /* Finds the run and offset from the pixel position.
906 * x & y are pixel positions in virtual coordinates into the rich edit control,
907 * so client coordinates must first be adjusted by the scroll position.
909 * returns TRUE if the result was exactly under the cursor, otherwise returns
910 * FALSE, and result is set to the closest position to the coordinates.
912 static BOOL ME_FindPixelPos(ME_TextEditor *editor, int x, int y,
913 ME_Cursor *result, BOOL *is_eol)
915 ME_DisplayItem *p = editor->pBuffer->pFirst->member.para.next_para;
916 ME_DisplayItem *last = NULL;
917 int rx = 0;
918 BOOL isExact = TRUE;
920 x -= editor->rcFormat.left;
921 y -= editor->rcFormat.top;
923 if (is_eol)
924 *is_eol = 0;
926 /* find paragraph */
927 for (; p != editor->pBuffer->pLast; p = p->member.para.next_para)
929 assert(p->type == diParagraph);
930 if (y < p->member.para.pt.y + p->member.para.nHeight)
932 if (p->member.para.nFlags & MEPF_ROWSTART)
933 p = ME_FindPixelPosInTableRow(x, y, p);
934 y -= p->member.para.pt.y;
935 p = ME_FindItemFwd(p, diStartRow);
936 break;
937 } else if (p->member.para.nFlags & MEPF_ROWSTART) {
938 p = ME_GetTableRowEnd(p);
941 /* find row */
942 for (; p != editor->pBuffer->pLast; )
944 ME_DisplayItem *pp;
945 assert(p->type == diStartRow);
946 if (y < p->member.row.pt.y + p->member.row.nHeight)
948 p = ME_FindItemFwd(p, diRun);
949 break;
951 pp = ME_FindItemFwd(p, diStartRowOrParagraphOrEnd);
952 if (pp->type != diStartRow)
954 p = ME_FindItemFwd(p, diRun);
955 break;
957 p = pp;
959 if (p == editor->pBuffer->pLast)
961 /* The position is below the last paragraph, so the last row will be used
962 * rather than the end of the text, so the x position will be used to
963 * determine the offset closest to the pixel position. */
964 isExact = FALSE;
965 p = ME_FindItemBack(p, diStartRow);
966 if (p != NULL){
967 p = ME_FindItemFwd(p, diRun);
969 else
971 p = editor->pBuffer->pLast;
974 for (; p != editor->pBuffer->pLast; p = p->next)
976 switch (p->type)
978 case diRun:
979 rx = x - p->member.run.pt.x;
980 if (rx < p->member.run.nWidth)
981 return ME_ReturnFoundPos(editor, p, result, rx, isExact);
982 break;
983 case diStartRow:
984 isExact = FALSE;
985 p = ME_FindItemFwd(p, diRun);
986 if (is_eol) *is_eol = 1;
987 rx = 0; /* FIXME not sure */
988 return ME_ReturnFoundPos(editor, p, result, rx, isExact);
989 case diCell:
990 case diParagraph:
991 case diTextEnd:
992 isExact = FALSE;
993 rx = 0; /* FIXME not sure */
994 p = last;
995 return ME_ReturnFoundPos(editor, p, result, rx, isExact);
996 default: assert(0);
998 last = p;
1000 result->pRun = ME_FindItemBack(p, diRun);
1001 result->pPara = ME_GetParagraph(result->pRun);
1002 result->nOffset = 0;
1003 assert(result->pRun->member.run.nFlags & MERF_ENDPARA);
1004 return FALSE;
1008 /* Sets the cursor to the position closest to the pixel position
1010 * x & y are pixel positions in client coordinates.
1012 * isExact will be set to TRUE if the run is directly under the pixel
1013 * position, FALSE if it not, unless isExact is set to NULL.
1015 * return FALSE if outside client area and the cursor is not set,
1016 * otherwise TRUE is returned.
1018 BOOL ME_CharFromPos(ME_TextEditor *editor, int x, int y,
1019 ME_Cursor *cursor, BOOL *isExact)
1021 RECT rc;
1022 BOOL bResult;
1024 ITextHost_TxGetClientRect(editor->texthost, &rc);
1025 if (x < 0 || y < 0 || x >= rc.right || y >= rc.bottom) {
1026 if (isExact) *isExact = FALSE;
1027 return FALSE;
1029 x += editor->horz_si.nPos;
1030 y += editor->vert_si.nPos;
1031 bResult = ME_FindPixelPos(editor, x, y, cursor, NULL);
1032 if (isExact) *isExact = bResult;
1033 return TRUE;
1038 /* Extends the selection with a word, line, or paragraph selection type.
1040 * The selection is anchored by editor->pCursors[2-3] such that the text
1041 * between the anchors will remain selected, and one end will be extended.
1043 * editor->pCursors[0] should have the position to extend the selection to
1044 * before this function is called.
1046 * Nothing will be done if editor->nSelectionType equals stPosition.
1048 static void ME_ExtendAnchorSelection(ME_TextEditor *editor)
1050 ME_Cursor tmp_cursor;
1051 int curOfs, anchorStartOfs, anchorEndOfs;
1052 if (editor->nSelectionType == stPosition || editor->nSelectionType == stDocument)
1053 return;
1054 curOfs = ME_GetCursorOfs(&editor->pCursors[0]);
1055 anchorStartOfs = ME_GetCursorOfs(&editor->pCursors[3]);
1056 anchorEndOfs = ME_GetCursorOfs(&editor->pCursors[2]);
1058 tmp_cursor = editor->pCursors[0];
1059 editor->pCursors[0] = editor->pCursors[2];
1060 editor->pCursors[1] = editor->pCursors[3];
1061 if (curOfs < anchorStartOfs)
1063 /* Extend the left side of selection */
1064 editor->pCursors[1] = tmp_cursor;
1065 if (editor->nSelectionType == stWord)
1066 ME_MoveCursorWords(editor, &editor->pCursors[1], -1);
1067 else
1069 ME_DisplayItem *pItem;
1070 ME_DIType searchType = ((editor->nSelectionType == stLine) ?
1071 diStartRowOrParagraph:diParagraph);
1072 pItem = ME_FindItemBack(editor->pCursors[1].pRun, searchType);
1073 editor->pCursors[1].pRun = ME_FindItemFwd(pItem, diRun);
1074 editor->pCursors[1].pPara = ME_GetParagraph(editor->pCursors[1].pRun);
1075 editor->pCursors[1].nOffset = 0;
1078 else if (curOfs >= anchorEndOfs)
1080 /* Extend the right side of selection */
1081 editor->pCursors[0] = tmp_cursor;
1082 if (editor->nSelectionType == stWord)
1083 ME_MoveCursorWords(editor, &editor->pCursors[0], +1);
1084 else
1086 ME_DisplayItem *pItem;
1087 ME_DIType searchType = ((editor->nSelectionType == stLine) ?
1088 diStartRowOrParagraphOrEnd:diParagraphOrEnd);
1089 pItem = ME_FindItemFwd(editor->pCursors[0].pRun, searchType);
1090 if (pItem->type == diTextEnd)
1091 editor->pCursors[0].pRun = ME_FindItemBack(pItem, diRun);
1092 else
1093 editor->pCursors[0].pRun = ME_FindItemFwd(pItem, diRun);
1094 editor->pCursors[0].pPara = ME_GetParagraph(editor->pCursors[0].pRun);
1095 editor->pCursors[0].nOffset = 0;
1100 void ME_LButtonDown(ME_TextEditor *editor, int x, int y, int clickNum)
1102 ME_Cursor tmp_cursor;
1103 int is_selection = 0;
1104 BOOL is_shift;
1106 editor->nUDArrowX = -1;
1108 x += editor->horz_si.nPos;
1109 y += editor->vert_si.nPos;
1111 tmp_cursor = editor->pCursors[0];
1112 is_selection = ME_IsSelection(editor);
1113 is_shift = GetKeyState(VK_SHIFT) < 0;
1115 ME_FindPixelPos(editor, x, y, &editor->pCursors[0], &editor->bCaretAtEnd);
1117 if (x >= editor->rcFormat.left || is_shift)
1119 if (clickNum > 1)
1121 editor->pCursors[1] = editor->pCursors[0];
1122 if (is_shift) {
1123 if (x >= editor->rcFormat.left)
1124 ME_SelectByType(editor, stWord);
1125 else
1126 ME_SelectByType(editor, stParagraph);
1127 } else if (clickNum % 2 == 0) {
1128 ME_SelectByType(editor, stWord);
1129 } else {
1130 ME_SelectByType(editor, stParagraph);
1133 else if (!is_shift)
1135 editor->nSelectionType = stPosition;
1136 editor->pCursors[1] = editor->pCursors[0];
1138 else if (!is_selection)
1140 editor->nSelectionType = stPosition;
1141 editor->pCursors[1] = tmp_cursor;
1143 else if (editor->nSelectionType != stPosition)
1145 ME_ExtendAnchorSelection(editor);
1148 else
1150 if (clickNum < 2) {
1151 ME_SelectByType(editor, stLine);
1152 } else if (clickNum % 2 == 0 || is_shift) {
1153 ME_SelectByType(editor, stParagraph);
1154 } else {
1155 ME_SelectByType(editor, stDocument);
1158 ME_InvalidateSelection(editor);
1159 ITextHost_TxShowCaret(editor->texthost, FALSE);
1160 ME_ShowCaret(editor);
1161 ME_ClearTempStyle(editor);
1162 ME_SendSelChange(editor);
1165 void ME_MouseMove(ME_TextEditor *editor, int x, int y)
1167 ME_Cursor tmp_cursor;
1169 if (editor->nSelectionType == stDocument)
1170 return;
1171 x += editor->horz_si.nPos;
1172 y += editor->vert_si.nPos;
1174 tmp_cursor = editor->pCursors[0];
1175 /* FIXME: do something with the return value of ME_FindPixelPos */
1176 ME_FindPixelPos(editor, x, y, &tmp_cursor, &editor->bCaretAtEnd);
1178 ME_InvalidateSelection(editor);
1179 editor->pCursors[0] = tmp_cursor;
1180 ME_ExtendAnchorSelection(editor);
1182 if (editor->nSelectionType != stPosition &&
1183 memcmp(&editor->pCursors[1], &editor->pCursors[3], sizeof(ME_Cursor)))
1185 /* The scroll the cursor towards the other end, since it was the one
1186 * extended by ME_ExtendAnchorSelection */
1187 ME_EnsureVisible(editor, &editor->pCursors[1]);
1188 } else {
1189 ME_EnsureVisible(editor, &editor->pCursors[0]);
1192 ME_InvalidateSelection(editor);
1193 ITextHost_TxShowCaret(editor->texthost, FALSE);
1194 ME_ShowCaret(editor);
1195 ME_SendSelChange(editor);
1198 static ME_DisplayItem *ME_FindRunInRow(ME_TextEditor *editor, ME_DisplayItem *pRow,
1199 int x, int *pOffset, int *pbCaretAtEnd)
1201 ME_DisplayItem *pNext, *pLastRun;
1202 pNext = ME_FindItemFwd(pRow, diRunOrStartRow);
1203 assert(pNext->type == diRun);
1204 pLastRun = pNext;
1205 if (pbCaretAtEnd) *pbCaretAtEnd = FALSE;
1206 if (pOffset) *pOffset = 0;
1207 do {
1208 int run_x = pNext->member.run.pt.x;
1209 int width = pNext->member.run.nWidth;
1210 if (x < run_x)
1212 return pNext;
1214 if (x >= run_x && x < run_x+width)
1216 int ch = ME_CharFromPointCursor(editor, x-run_x, &pNext->member.run);
1217 ME_String *s = pNext->member.run.strText;
1218 if (ch < s->nLen) {
1219 if (pOffset)
1220 *pOffset = ch;
1221 return pNext;
1224 pLastRun = pNext;
1225 pNext = ME_FindItemFwd(pNext, diRunOrStartRow);
1226 } while(pNext && pNext->type == diRun);
1228 if ((pLastRun->member.run.nFlags & MERF_ENDPARA) == 0)
1230 pNext = ME_FindItemFwd(pNext, diRun);
1231 if (pbCaretAtEnd) *pbCaretAtEnd = TRUE;
1232 return pNext;
1233 } else {
1234 return pLastRun;
1238 static int ME_GetXForArrow(ME_TextEditor *editor, ME_Cursor *pCursor)
1240 ME_DisplayItem *pRun = pCursor->pRun;
1241 int x;
1243 if (editor->nUDArrowX != -1)
1244 x = editor->nUDArrowX;
1245 else {
1246 if (editor->bCaretAtEnd)
1248 pRun = ME_FindItemBack(pRun, diRun);
1249 assert(pRun);
1250 x = pRun->member.run.pt.x + pRun->member.run.nWidth;
1252 else {
1253 x = pRun->member.run.pt.x;
1254 x += ME_PointFromChar(editor, &pRun->member.run, pCursor->nOffset);
1256 editor->nUDArrowX = x;
1258 return x;
1262 static void
1263 ME_MoveCursorLines(ME_TextEditor *editor, ME_Cursor *pCursor, int nRelOfs)
1265 ME_DisplayItem *pRun = pCursor->pRun;
1266 ME_DisplayItem *pOldPara = pCursor->pPara;
1267 ME_DisplayItem *pItem, *pNewPara;
1268 int x = ME_GetXForArrow(editor, pCursor);
1270 if (editor->bCaretAtEnd && !pCursor->nOffset)
1271 if (!ME_PrevRun(&pOldPara, &pRun))
1272 return;
1274 if (nRelOfs == -1)
1276 /* start of this row */
1277 pItem = ME_FindItemBack(pRun, diStartRow);
1278 assert(pItem);
1279 /* start of the previous row */
1280 pItem = ME_FindItemBack(pItem, diStartRow);
1281 if (!pItem)
1282 return; /* row not found - ignore */
1283 pNewPara = ME_GetParagraph(pItem);
1284 if (pOldPara->member.para.nFlags & MEPF_ROWEND ||
1285 (pOldPara->member.para.pCell &&
1286 pOldPara->member.para.pCell != pNewPara->member.para.pCell))
1288 /* Brought out of a cell */
1289 pNewPara = ME_GetTableRowStart(pOldPara)->member.para.prev_para;
1290 if (pNewPara->type == diTextStart)
1291 return; /* At the top, so don't go anywhere. */
1292 pItem = ME_FindItemFwd(pNewPara, diStartRow);
1294 if (pNewPara->member.para.nFlags & MEPF_ROWEND)
1296 /* Brought into a table row */
1297 ME_Cell *cell = &ME_FindItemBack(pNewPara, diCell)->member.cell;
1298 while (x < cell->pt.x && cell->prev_cell)
1299 cell = &cell->prev_cell->member.cell;
1300 if (cell->next_cell) /* else - we are still at the end of the row */
1301 pItem = ME_FindItemBack(cell->next_cell, diStartRow);
1304 else
1306 /* start of the next row */
1307 pItem = ME_FindItemFwd(pRun, diStartRow);
1308 if (!pItem)
1309 return; /* row not found - ignore */
1310 pNewPara = ME_GetParagraph(pItem);
1311 if (pOldPara->member.para.nFlags & MEPF_ROWSTART ||
1312 (pOldPara->member.para.pCell &&
1313 pOldPara->member.para.pCell != pNewPara->member.para.pCell))
1315 /* Brought out of a cell */
1316 pNewPara = ME_GetTableRowEnd(pOldPara)->member.para.next_para;
1317 if (pNewPara->type == diTextEnd)
1318 return; /* At the bottom, so don't go anywhere. */
1319 pItem = ME_FindItemFwd(pNewPara, diStartRow);
1321 if (pNewPara->member.para.nFlags & MEPF_ROWSTART)
1323 /* Brought into a table row */
1324 ME_DisplayItem *cell = ME_FindItemFwd(pNewPara, diCell);
1325 while (cell->member.cell.next_cell &&
1326 x >= cell->member.cell.next_cell->member.cell.pt.x)
1327 cell = cell->member.cell.next_cell;
1328 pItem = ME_FindItemFwd(cell, diStartRow);
1331 if (!pItem)
1333 /* row not found - ignore */
1334 return;
1336 pCursor->pRun = ME_FindRunInRow(editor, pItem, x, &pCursor->nOffset, &editor->bCaretAtEnd);
1337 pCursor->pPara = ME_GetParagraph(pCursor->pRun);
1338 assert(pCursor->pRun);
1339 assert(pCursor->pRun->type == diRun);
1342 static void ME_ArrowPageUp(ME_TextEditor *editor, ME_Cursor *pCursor)
1344 ME_DisplayItem *p = ME_FindItemFwd(editor->pBuffer->pFirst, diStartRow);
1346 if (editor->vert_si.nPos < p->member.row.nHeight)
1348 ME_SetCursorToStart(editor, pCursor);
1349 editor->bCaretAtEnd = FALSE;
1350 /* Native clears seems to clear this x value on page up at the top
1351 * of the text, but not on page down at the end of the text.
1352 * Doesn't make sense, but we try to be bug for bug compatible. */
1353 editor->nUDArrowX = -1;
1354 } else {
1355 ME_DisplayItem *pRun = pCursor->pRun;
1356 ME_DisplayItem *pLast;
1357 int x, y, ys, yd, yp, yprev;
1358 int yOldScrollPos = editor->vert_si.nPos;
1360 x = ME_GetXForArrow(editor, pCursor);
1361 if (!pCursor->nOffset && editor->bCaretAtEnd)
1362 pRun = ME_FindItemBack(pRun, diRun);
1364 p = ME_FindItemBack(pRun, diStartRowOrParagraph);
1365 assert(p->type == diStartRow);
1366 yp = ME_FindItemBack(p, diParagraph)->member.para.pt.y;
1367 yprev = ys = y = yp + p->member.row.pt.y;
1369 ME_ScrollUp(editor, editor->sizeWindow.cy);
1370 /* Only move the cursor by the amount scrolled. */
1371 yd = y + editor->vert_si.nPos - yOldScrollPos;
1372 pLast = p;
1374 do {
1375 p = ME_FindItemBack(p, diStartRowOrParagraph);
1376 if (!p)
1377 break;
1378 if (p->type == diParagraph) { /* crossing paragraphs */
1379 if (p->member.para.prev_para == NULL)
1380 break;
1381 yp = p->member.para.prev_para->member.para.pt.y;
1382 continue;
1384 y = yp + p->member.row.pt.y;
1385 if (y < yd)
1386 break;
1387 pLast = p;
1388 yprev = y;
1389 } while(1);
1391 pCursor->pRun = ME_FindRunInRow(editor, pLast, x, &pCursor->nOffset,
1392 &editor->bCaretAtEnd);
1393 pCursor->pPara = ME_GetParagraph(pCursor->pRun);
1395 assert(pCursor->pRun);
1396 assert(pCursor->pRun->type == diRun);
1399 static void ME_ArrowPageDown(ME_TextEditor *editor, ME_Cursor *pCursor)
1401 ME_DisplayItem *pLast;
1402 int x, y;
1404 /* Find y position of the last row */
1405 pLast = editor->pBuffer->pLast;
1406 y = pLast->member.para.prev_para->member.para.pt.y
1407 + ME_FindItemBack(pLast, diStartRow)->member.row.pt.y;
1409 x = ME_GetXForArrow(editor, pCursor);
1411 if (editor->vert_si.nPos >= y - editor->sizeWindow.cy)
1413 ME_SetCursorToEnd(editor, pCursor);
1414 editor->bCaretAtEnd = FALSE;
1415 } else {
1416 ME_DisplayItem *pRun = pCursor->pRun;
1417 ME_DisplayItem *p;
1418 int yd, yp;
1419 int yOldScrollPos = editor->vert_si.nPos;
1421 if (!pCursor->nOffset && editor->bCaretAtEnd)
1422 pRun = ME_FindItemBack(pRun, diRun);
1424 p = ME_FindItemBack(pRun, diStartRowOrParagraph);
1425 assert(p->type == diStartRow);
1426 yp = ME_FindItemBack(p, diParagraph)->member.para.pt.y;
1427 y = yp + p->member.row.pt.y;
1429 /* For native richedit controls:
1430 * v1.0 - v3.1 can only scroll down as far as the scrollbar lets us
1431 * v4.1 can scroll past this position here. */
1432 ME_ScrollDown(editor, editor->sizeWindow.cy);
1433 /* Only move the cursor by the amount scrolled. */
1434 yd = y + editor->vert_si.nPos - yOldScrollPos;
1435 pLast = p;
1437 do {
1438 p = ME_FindItemFwd(p, diStartRowOrParagraph);
1439 if (!p)
1440 break;
1441 if (p->type == diParagraph) {
1442 yp = p->member.para.pt.y;
1443 continue;
1445 y = yp + p->member.row.pt.y;
1446 if (y >= yd)
1447 break;
1448 pLast = p;
1449 } while(1);
1451 pCursor->pRun = ME_FindRunInRow(editor, pLast, x, &pCursor->nOffset,
1452 &editor->bCaretAtEnd);
1453 pCursor->pPara = ME_GetParagraph(pCursor->pRun);
1455 assert(pCursor->pRun);
1456 assert(pCursor->pRun->type == diRun);
1459 static void ME_ArrowHome(ME_TextEditor *editor, ME_Cursor *pCursor)
1461 ME_DisplayItem *pRow = ME_FindItemBack(pCursor->pRun, diStartRow);
1462 if (pRow) {
1463 ME_DisplayItem *pRun;
1464 if (editor->bCaretAtEnd && !pCursor->nOffset) {
1465 pRow = ME_FindItemBack(pRow, diStartRow);
1466 if (!pRow)
1467 return;
1469 pRun = ME_FindItemFwd(pRow, diRun);
1470 if (pRun) {
1471 pCursor->pRun = pRun;
1472 assert(pCursor->pPara == ME_GetParagraph(pRun));
1473 pCursor->nOffset = 0;
1476 editor->bCaretAtEnd = FALSE;
1479 static void ME_ArrowCtrlHome(ME_TextEditor *editor, ME_Cursor *pCursor)
1481 ME_SetCursorToStart(editor, pCursor);
1482 editor->bCaretAtEnd = FALSE;
1485 static void ME_ArrowEnd(ME_TextEditor *editor, ME_Cursor *pCursor)
1487 ME_DisplayItem *pRow;
1489 if (editor->bCaretAtEnd && !pCursor->nOffset)
1490 return;
1492 pRow = ME_FindItemFwd(pCursor->pRun, diStartRowOrParagraphOrEnd);
1493 assert(pRow);
1494 if (pRow->type == diStartRow) {
1495 ME_DisplayItem *pRun = ME_FindItemFwd(pRow, diRun);
1496 assert(pRun);
1497 pCursor->pRun = pRun;
1498 assert(pCursor->pPara == ME_GetParagraph(pCursor->pRun));
1499 pCursor->nOffset = 0;
1500 editor->bCaretAtEnd = TRUE;
1501 return;
1503 pCursor->pRun = ME_FindItemBack(pRow, diRun);
1504 assert(pCursor->pRun && pCursor->pRun->member.run.nFlags & MERF_ENDPARA);
1505 assert(pCursor->pPara == ME_GetParagraph(pCursor->pRun));
1506 pCursor->nOffset = 0;
1507 editor->bCaretAtEnd = FALSE;
1510 static void ME_ArrowCtrlEnd(ME_TextEditor *editor, ME_Cursor *pCursor)
1512 ME_SetCursorToEnd(editor, pCursor);
1513 editor->bCaretAtEnd = FALSE;
1516 BOOL ME_IsSelection(ME_TextEditor *editor)
1518 return editor->pCursors[0].pRun != editor->pCursors[1].pRun ||
1519 editor->pCursors[0].nOffset != editor->pCursors[1].nOffset;
1522 void ME_DeleteSelection(ME_TextEditor *editor)
1524 int from, to;
1525 int nStartCursor = ME_GetSelectionOfs(editor, &from, &to);
1526 ME_DeleteTextAtCursor(editor, nStartCursor, to - from);
1529 ME_Style *ME_GetSelectionInsertStyle(ME_TextEditor *editor)
1531 return ME_GetInsertStyle(editor, 0);
1534 void ME_SendSelChange(ME_TextEditor *editor)
1536 SELCHANGE sc;
1538 if (!(editor->nEventMask & ENM_SELCHANGE))
1539 return;
1541 sc.nmhdr.hwndFrom = NULL;
1542 sc.nmhdr.idFrom = 0;
1543 sc.nmhdr.code = EN_SELCHANGE;
1544 ME_GetSelectionOfs(editor, &sc.chrg.cpMin, &sc.chrg.cpMax);
1545 sc.seltyp = SEL_EMPTY;
1546 if (sc.chrg.cpMin != sc.chrg.cpMax)
1547 sc.seltyp |= SEL_TEXT;
1548 if (sc.chrg.cpMin < sc.chrg.cpMax+1) /* what were RICHEDIT authors thinking ? */
1549 sc.seltyp |= SEL_MULTICHAR;
1550 TRACE("cpMin=%d cpMax=%d seltyp=%d (%s %s)\n",
1551 sc.chrg.cpMin, sc.chrg.cpMax, sc.seltyp,
1552 (sc.seltyp & SEL_TEXT) ? "SEL_TEXT" : "",
1553 (sc.seltyp & SEL_MULTICHAR) ? "SEL_MULTICHAR" : "");
1554 if (sc.chrg.cpMin != editor->notified_cr.cpMin || sc.chrg.cpMax != editor->notified_cr.cpMax)
1556 ME_ClearTempStyle(editor);
1558 editor->notified_cr = sc.chrg;
1559 ITextHost_TxNotify(editor->texthost, sc.nmhdr.code, &sc);
1563 BOOL
1564 ME_ArrowKey(ME_TextEditor *editor, int nVKey, BOOL extend, BOOL ctrl)
1566 int nCursor = 0;
1567 ME_Cursor *p = &editor->pCursors[nCursor];
1568 ME_Cursor tmp_curs = *p;
1569 BOOL success = FALSE;
1571 ME_CheckCharOffsets(editor);
1572 switch(nVKey) {
1573 case VK_LEFT:
1574 editor->bCaretAtEnd = 0;
1575 if (ctrl)
1576 success = ME_MoveCursorWords(editor, &tmp_curs, -1);
1577 else
1578 success = ME_MoveCursorChars(editor, &tmp_curs, -1);
1579 break;
1580 case VK_RIGHT:
1581 editor->bCaretAtEnd = 0;
1582 if (ctrl)
1583 success = ME_MoveCursorWords(editor, &tmp_curs, +1);
1584 else
1585 success = ME_MoveCursorChars(editor, &tmp_curs, +1);
1586 break;
1587 case VK_UP:
1588 ME_MoveCursorLines(editor, &tmp_curs, -1);
1589 break;
1590 case VK_DOWN:
1591 ME_MoveCursorLines(editor, &tmp_curs, +1);
1592 break;
1593 case VK_PRIOR:
1594 ME_ArrowPageUp(editor, &tmp_curs);
1595 break;
1596 case VK_NEXT:
1597 ME_ArrowPageDown(editor, &tmp_curs);
1598 break;
1599 case VK_HOME: {
1600 if (ctrl)
1601 ME_ArrowCtrlHome(editor, &tmp_curs);
1602 else
1603 ME_ArrowHome(editor, &tmp_curs);
1604 editor->bCaretAtEnd = 0;
1605 break;
1607 case VK_END:
1608 if (ctrl)
1609 ME_ArrowCtrlEnd(editor, &tmp_curs);
1610 else
1611 ME_ArrowEnd(editor, &tmp_curs);
1612 break;
1615 if (!extend)
1616 editor->pCursors[1] = tmp_curs;
1617 *p = tmp_curs;
1619 ME_InvalidateSelection(editor);
1620 ME_Repaint(editor);
1621 ITextHost_TxShowCaret(editor->texthost, FALSE);
1622 ME_EnsureVisible(editor, &tmp_curs);
1623 ME_ShowCaret(editor);
1624 ME_SendSelChange(editor);
1625 return success;