gdiplus: Add option to save metafile tests to files.
[wine/multimedia.git] / dlls / riched20 / caret.c
blobe51003337bde1fc9a3af715d50b6c77eba4b3bed
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 int from_ofs = ME_GetCursorOfs( &editor->pCursors[0] );
60 int to_ofs = ME_GetCursorOfs( &editor->pCursors[1] );
61 BOOL swap = (from_ofs > to_ofs);
63 if (from_ofs == to_ofs)
65 /* If cursor[0] is at the beginning of a run and cursor[1] at the end
66 of the prev run then we need to swap. */
67 if (editor->pCursors[0].nOffset < editor->pCursors[1].nOffset)
68 swap = TRUE;
71 if (!swap)
73 *from = &editor->pCursors[0];
74 *to = &editor->pCursors[1];
75 return 0;
76 } else {
77 *from = &editor->pCursors[1];
78 *to = &editor->pCursors[0];
79 return 1;
83 int ME_GetTextLength(ME_TextEditor *editor)
85 ME_Cursor cursor;
86 ME_SetCursorToEnd(editor, &cursor);
87 return ME_GetCursorOfs(&cursor);
91 int ME_GetTextLengthEx(ME_TextEditor *editor, const GETTEXTLENGTHEX *how)
93 int length;
95 if (how->flags & GTL_PRECISE && how->flags & GTL_CLOSE)
96 return E_INVALIDARG;
97 if (how->flags & GTL_NUMCHARS && how->flags & GTL_NUMBYTES)
98 return E_INVALIDARG;
100 length = ME_GetTextLength(editor);
102 if ((editor->styleFlags & ES_MULTILINE)
103 && (how->flags & GTL_USECRLF)
104 && !editor->bEmulateVersion10) /* Ignore GTL_USECRLF flag in 1.0 emulation */
105 length += editor->nParagraphs - 1;
107 if (how->flags & GTL_NUMBYTES ||
108 (how->flags & GTL_PRECISE && /* GTL_PRECISE seems to imply GTL_NUMBYTES */
109 !(how->flags & GTL_NUMCHARS))) /* unless GTL_NUMCHARS is given */
111 CPINFO cpinfo;
113 if (how->codepage == 1200)
114 return length * 2;
115 if (how->flags & GTL_PRECISE)
116 FIXME("GTL_PRECISE flag unsupported. Using GTL_CLOSE\n");
117 if (GetCPInfo(how->codepage, &cpinfo))
118 return length * cpinfo.MaxCharSize;
119 ERR("Invalid codepage %u\n", how->codepage);
120 return E_INVALIDARG;
122 return length;
126 int ME_SetSelection(ME_TextEditor *editor, int from, int to)
128 int selectionEnd = 0;
129 const int len = ME_GetTextLength(editor);
131 /* all negative values are effectively the same */
132 if (from < 0)
133 from = -1;
134 if (to < 0)
135 to = -1;
137 /* select all */
138 if (from == 0 && to == -1)
140 ME_SetCursorToStart(editor, &editor->pCursors[1]);
141 ME_SetCursorToEnd(editor, &editor->pCursors[0]);
142 ME_InvalidateSelection(editor);
143 return len + 1;
146 /* if both values are equal and also out of bound, that means to */
147 /* put the selection at the end of the text */
148 if ((from == to) && (to < 0 || to > len))
150 selectionEnd = 1;
152 else
154 /* if from is negative and to is positive then selection is */
155 /* deselected and caret moved to end of the current selection */
156 if (from < 0)
158 int start, end;
159 ME_GetSelectionOfs(editor, &start, &end);
160 if (start != end)
162 editor->pCursors[1] = editor->pCursors[0];
163 ME_Repaint(editor);
165 return end;
168 /* adjust to if it's a negative value */
169 if (to < 0)
170 to = len + 1;
172 /* flip from and to if they are reversed */
173 if (from>to)
175 int tmp = from;
176 from = to;
177 to = tmp;
180 /* after fiddling with the values, we find from > len && to > len */
181 if (from > len)
182 selectionEnd = 1;
183 /* special case with to too big */
184 else if (to > len)
185 to = len + 1;
188 if (selectionEnd)
190 ME_SetCursorToEnd(editor, &editor->pCursors[0]);
191 editor->pCursors[1] = editor->pCursors[0];
192 ME_InvalidateSelection(editor);
193 return len;
196 ME_CursorFromCharOfs(editor, from, &editor->pCursors[1]);
197 editor->pCursors[0] = editor->pCursors[1];
198 ME_MoveCursorChars(editor, &editor->pCursors[0], to - from);
199 /* Selection is not allowed in the middle of an end paragraph run. */
200 if (editor->pCursors[1].pRun->member.run.nFlags & MERF_ENDPARA)
201 editor->pCursors[1].nOffset = 0;
202 if (editor->pCursors[0].pRun->member.run.nFlags & MERF_ENDPARA)
203 editor->pCursors[0].nOffset = 0;
204 return to;
208 static void
209 ME_GetCursorCoordinates(ME_TextEditor *editor, ME_Cursor *pCursor,
210 int *x, int *y, int *height)
212 ME_DisplayItem *row;
213 ME_DisplayItem *run = pCursor->pRun;
214 ME_DisplayItem *para = pCursor->pPara;
215 ME_DisplayItem *pSizeRun = run;
216 ME_Context c;
217 int run_x;
219 assert(height && x && y);
220 assert(~para->member.para.nFlags & MEPF_REWRAP);
221 assert(run && run->type == diRun);
222 assert(para && para->type == diParagraph);
224 row = ME_FindItemBack(run, diStartRowOrParagraph);
225 assert(row && row->type == diStartRow);
227 ME_InitContext(&c, editor, ITextHost_TxGetDC(editor->texthost));
229 if (!pCursor->nOffset)
231 ME_DisplayItem *prev = ME_FindItemBack(run, diRunOrParagraph);
232 assert(prev);
233 if (prev->type == diRun)
234 pSizeRun = prev;
236 if (editor->bCaretAtEnd && !pCursor->nOffset &&
237 run == ME_FindItemFwd(row, diRun))
239 ME_DisplayItem *tmp = ME_FindItemBack(row, diRunOrParagraph);
240 assert(tmp);
241 if (tmp->type == diRun)
243 row = ME_FindItemBack(tmp, diStartRow);
244 pSizeRun = run = tmp;
245 assert(run);
246 assert(run->type == diRun);
249 run_x = ME_PointFromCharContext( &c, &run->member.run, pCursor->nOffset, TRUE );
251 *height = pSizeRun->member.run.nAscent + pSizeRun->member.run.nDescent;
252 *x = c.rcView.left + run->member.run.pt.x + run_x - editor->horz_si.nPos;
253 *y = c.rcView.top + para->member.para.pt.y + row->member.row.nBaseline
254 + run->member.run.pt.y - pSizeRun->member.run.nAscent
255 - editor->vert_si.nPos;
256 ME_DestroyContext(&c);
257 return;
261 void
262 ME_MoveCaret(ME_TextEditor *editor)
264 int x, y, height;
266 ME_GetCursorCoordinates(editor, &editor->pCursors[0], &x, &y, &height);
267 if(editor->bHaveFocus && !ME_IsSelection(editor))
269 x = min(x, editor->rcFormat.right-1);
270 ITextHost_TxCreateCaret(editor->texthost, NULL, 0, height);
271 ITextHost_TxSetCaretPos(editor->texthost, x, y);
276 void ME_ShowCaret(ME_TextEditor *ed)
278 ME_MoveCaret(ed);
279 if(ed->bHaveFocus && !ME_IsSelection(ed))
280 ITextHost_TxShowCaret(ed->texthost, TRUE);
283 void ME_HideCaret(ME_TextEditor *ed)
285 if(!ed->bHaveFocus || ME_IsSelection(ed))
287 ITextHost_TxShowCaret(ed->texthost, FALSE);
288 DestroyCaret();
292 BOOL ME_InternalDeleteText(ME_TextEditor *editor, ME_Cursor *start,
293 int nChars, BOOL bForce)
295 ME_Cursor c = *start;
296 int nOfs = ME_GetCursorOfs(start), text_len = ME_GetTextLength( editor );
297 int shift = 0;
298 int totalChars = nChars;
299 ME_DisplayItem *start_para;
300 BOOL delete_all = FALSE;
302 /* Prevent deletion past last end of paragraph run. */
303 nChars = min(nChars, text_len - nOfs);
304 if (nChars == text_len) delete_all = TRUE;
305 start_para = c.pPara;
307 if (!bForce)
309 ME_ProtectPartialTableDeletion(editor, &c, &nChars);
310 if (nChars == 0)
311 return FALSE;
314 while(nChars > 0)
316 ME_Run *run;
317 ME_CursorFromCharOfs(editor, nOfs+nChars, &c);
318 if (!c.nOffset &&
319 nOfs+nChars == (c.pRun->member.run.nCharOfs
320 + c.pPara->member.para.nCharOfs))
322 /* We aren't deleting anything in this run, so we will go back to the
323 * last run we are deleting text in. */
324 ME_PrevRun(&c.pPara, &c.pRun);
325 c.nOffset = c.pRun->member.run.len;
327 run = &c.pRun->member.run;
328 if (run->nFlags & MERF_ENDPARA) {
329 int eollen = c.pRun->member.run.len;
330 BOOL keepFirstParaFormat;
332 if (!ME_FindItemFwd(c.pRun, diParagraph))
334 return TRUE;
336 keepFirstParaFormat = (totalChars == nChars && nChars <= eollen &&
337 run->nCharOfs);
338 if (!editor->bEmulateVersion10) /* v4.1 */
340 ME_DisplayItem *next_para = ME_FindItemFwd(c.pRun, diParagraphOrEnd);
341 ME_DisplayItem *this_para = next_para->member.para.prev_para;
343 /* The end of paragraph before a table row is only deleted if there
344 * is nothing else on the line before it. */
345 if (this_para == start_para &&
346 next_para->member.para.nFlags & MEPF_ROWSTART)
348 /* If the paragraph will be empty, then it should be deleted, however
349 * it still might have text right now which would inherit the
350 * MEPF_STARTROW property if we joined it right now.
351 * Instead we will delete it after the preceding text is deleted. */
352 if (nOfs > this_para->member.para.nCharOfs) {
353 /* Skip this end of line. */
354 nChars -= (eollen < nChars) ? eollen : nChars;
355 continue;
357 keepFirstParaFormat = TRUE;
360 ME_JoinParagraphs(editor, c.pPara, keepFirstParaFormat);
361 /* ME_SkipAndPropagateCharOffset(p->pRun, shift); */
362 ME_CheckCharOffsets(editor);
363 nChars -= (eollen < nChars) ? eollen : nChars;
364 continue;
366 else
368 ME_Cursor cursor;
369 int nCharsToDelete = min(nChars, c.nOffset);
370 int i;
372 c.nOffset -= nCharsToDelete;
374 ME_FindItemBack(c.pRun, diParagraph)->member.para.nFlags |= MEPF_REWRAP;
376 cursor = c;
377 /* nChars is the number of characters that should be deleted from the
378 PRECEDING runs (these BEFORE cursor.pRun)
379 nCharsToDelete is a number of chars to delete from THIS run */
380 nChars -= nCharsToDelete;
381 shift -= nCharsToDelete;
382 TRACE("Deleting %d (remaning %d) chars at %d in %s (%d)\n",
383 nCharsToDelete, nChars, c.nOffset,
384 debugstr_run( run ), run->len);
386 /* nOfs is a character offset (from the start of the document
387 to the current (deleted) run */
388 add_undo_insert_run( editor, nOfs + nChars, get_text( run, c.nOffset ), nCharsToDelete, run->nFlags, run->style );
390 ME_StrDeleteV(run->para->text, run->nCharOfs + c.nOffset, nCharsToDelete);
391 run->len -= nCharsToDelete;
392 TRACE("Post deletion string: %s (%d)\n", debugstr_run( run ), run->len);
393 TRACE("Shift value: %d\n", shift);
395 /* update cursors (including c) */
396 for (i=-1; i<editor->nCursors; i++) {
397 ME_Cursor *pThisCur = editor->pCursors + i;
398 if (i == -1) pThisCur = &c;
399 if (pThisCur->pRun == cursor.pRun) {
400 if (pThisCur->nOffset > cursor.nOffset) {
401 if (pThisCur->nOffset-cursor.nOffset < nCharsToDelete)
402 pThisCur->nOffset = cursor.nOffset;
403 else
404 pThisCur->nOffset -= nCharsToDelete;
405 assert(pThisCur->nOffset >= 0);
406 assert(pThisCur->nOffset <= run->len);
408 if (pThisCur->nOffset == run->len)
410 pThisCur->pRun = ME_FindItemFwd(pThisCur->pRun, diRunOrParagraphOrEnd);
411 assert(pThisCur->pRun->type == diRun);
412 pThisCur->nOffset = 0;
417 /* c = updated data now */
419 if (c.pRun == cursor.pRun)
420 ME_SkipAndPropagateCharOffset(c.pRun, shift);
421 else
422 ME_PropagateCharOffset(c.pRun, shift);
424 if (!cursor.pRun->member.run.len)
426 TRACE("Removing empty run\n");
427 ME_Remove(cursor.pRun);
428 ME_DestroyDisplayItem(cursor.pRun);
431 shift = 0;
433 ME_CheckCharOffsets(editor);
435 continue;
438 if (delete_all) ME_SetDefaultParaFormat( start_para->member.para.pFmt );
439 return TRUE;
442 BOOL ME_DeleteTextAtCursor(ME_TextEditor *editor, int nCursor, int nChars)
444 assert(nCursor>=0 && nCursor<editor->nCursors);
445 /* text operations set modified state */
446 editor->nModifyStep = 1;
447 return ME_InternalDeleteText(editor, &editor->pCursors[nCursor],
448 nChars, FALSE);
451 static ME_DisplayItem *
452 ME_InternalInsertTextFromCursor(ME_TextEditor *editor, int nCursor,
453 const WCHAR *str, int len, ME_Style *style,
454 int flags)
456 ME_Cursor *p = &editor->pCursors[nCursor];
458 editor->bCaretAtEnd = FALSE;
460 assert(p->pRun->type == diRun);
462 return ME_InsertRunAtCursor(editor, p, style, str, len, flags);
466 void ME_InsertOLEFromCursor(ME_TextEditor *editor, const REOBJECT* reo, int nCursor)
468 ME_Style *pStyle = ME_GetInsertStyle(editor, nCursor);
469 ME_DisplayItem *di;
470 WCHAR space = ' ';
472 /* FIXME no no no */
473 if (ME_IsSelection(editor))
474 ME_DeleteSelection(editor);
476 di = ME_InternalInsertTextFromCursor(editor, nCursor, &space, 1, pStyle,
477 MERF_GRAPHICS);
478 di->member.run.ole_obj = ALLOC_OBJ(*reo);
479 ME_CopyReObject(di->member.run.ole_obj, reo);
480 ME_ReleaseStyle(pStyle);
484 void ME_InsertEndRowFromCursor(ME_TextEditor *editor, int nCursor)
486 ME_Style *pStyle = ME_GetInsertStyle(editor, nCursor);
487 WCHAR space = ' ';
489 /* FIXME no no no */
490 if (ME_IsSelection(editor))
491 ME_DeleteSelection(editor);
493 ME_InternalInsertTextFromCursor(editor, nCursor, &space, 1, pStyle,
494 MERF_ENDROW);
495 ME_ReleaseStyle(pStyle);
499 void ME_InsertTextFromCursor(ME_TextEditor *editor, int nCursor,
500 const WCHAR *str, int len, ME_Style *style)
502 const WCHAR *pos;
503 ME_Cursor *p = NULL;
504 int oldLen;
506 /* FIXME really HERE ? */
507 if (ME_IsSelection(editor))
508 ME_DeleteSelection(editor);
510 /* FIXME: is this too slow? */
511 /* Didn't affect performance for WM_SETTEXT (around 50sec/30K) */
512 oldLen = ME_GetTextLength(editor);
514 /* text operations set modified state */
515 editor->nModifyStep = 1;
517 assert(style);
519 assert(nCursor>=0 && nCursor<editor->nCursors);
520 if (len == -1)
521 len = lstrlenW(str);
523 /* grow the text limit to fit our text */
524 if(editor->nTextLimit < oldLen +len)
525 editor->nTextLimit = oldLen + len;
527 pos = str;
529 while (len)
531 /* FIXME this sucks - no respect for unicode (what else can be a line separator in unicode?) */
532 while(pos - str < len && *pos != '\r' && *pos != '\n' && *pos != '\t')
533 pos++;
535 if (pos != str) { /* handle text */
536 ME_InternalInsertTextFromCursor(editor, nCursor, str, pos-str, style, 0);
537 } else if (*pos == '\t') { /* handle tabs */
538 WCHAR tab = '\t';
539 ME_InternalInsertTextFromCursor(editor, nCursor, &tab, 1, style, MERF_TAB);
540 pos++;
541 } else { /* handle EOLs */
542 ME_DisplayItem *tp, *end_run, *run, *prev;
543 ME_Style *tmp_style;
544 int eol_len = 0;
546 /* Find number of CR and LF in end of paragraph run */
547 if (*pos =='\r')
549 if (len > 1 && pos[1] == '\n')
550 eol_len = 2;
551 else if (len > 2 && pos[1] == '\r' && pos[2] == '\n')
552 eol_len = 3;
553 else
554 eol_len = 1;
555 } else {
556 assert(*pos == '\n');
557 eol_len = 1;
559 pos += eol_len;
561 if (!editor->bEmulateVersion10 && eol_len == 3)
563 /* handle special \r\r\n sequence (richedit 2.x and higher only) */
564 WCHAR space = ' ';
565 ME_InternalInsertTextFromCursor(editor, nCursor, &space, 1, style, 0);
566 } else {
567 const WCHAR cr = '\r', *eol_str = str;
569 if (!editor->bEmulateVersion10)
571 eol_str = &cr;
572 eol_len = 1;
575 p = &editor->pCursors[nCursor];
577 if (p->nOffset == p->pRun->member.run.len)
579 run = ME_FindItemFwd( p->pRun, diRun );
580 if (!run) run = p->pRun;
582 else
584 if (p->nOffset) ME_SplitRunSimple(editor, p);
585 run = p->pRun;
588 tmp_style = ME_GetInsertStyle(editor, nCursor);
589 /* ME_SplitParagraph increases style refcount */
590 tp = ME_SplitParagraph(editor, run, run->member.run.style, eol_str, eol_len, 0);
592 end_run = ME_FindItemBack(tp, diRun);
593 ME_ReleaseStyle(end_run->member.run.style);
594 end_run->member.run.style = tmp_style;
596 /* Move any cursors that were at the end of the previous run to the beginning of the new para */
597 prev = ME_FindItemBack( end_run, diRun );
598 if (prev)
600 int i;
601 for (i = 0; i < editor->nCursors; i++)
603 if (editor->pCursors[i].pRun == prev &&
604 editor->pCursors[i].nOffset == prev->member.run.len)
606 editor->pCursors[i].pPara = tp;
607 editor->pCursors[i].pRun = run;
608 editor->pCursors[i].nOffset = 0;
615 len -= pos - str;
616 str = pos;
620 /* Move the cursor nRelOfs characters (either forwards or backwards)
622 * returns the actual number of characters moved.
624 int ME_MoveCursorChars(ME_TextEditor *editor, ME_Cursor *cursor, int nRelOfs)
626 cursor->nOffset += nRelOfs;
627 if (cursor->nOffset < 0)
629 cursor->nOffset += cursor->pRun->member.run.nCharOfs;
630 if (cursor->nOffset >= 0)
632 /* new offset in the same paragraph */
633 do {
634 cursor->pRun = ME_FindItemBack(cursor->pRun, diRun);
635 } while (cursor->nOffset < cursor->pRun->member.run.nCharOfs);
636 cursor->nOffset -= cursor->pRun->member.run.nCharOfs;
637 return nRelOfs;
640 cursor->nOffset += cursor->pPara->member.para.nCharOfs;
641 if (cursor->nOffset <= 0)
643 /* moved to the start of the text */
644 nRelOfs -= cursor->nOffset;
645 ME_SetCursorToStart(editor, cursor);
646 return nRelOfs;
649 /* new offset in a previous paragraph */
650 do {
651 cursor->pPara = cursor->pPara->member.para.prev_para;
652 } while (cursor->nOffset < cursor->pPara->member.para.nCharOfs);
653 cursor->nOffset -= cursor->pPara->member.para.nCharOfs;
655 cursor->pRun = ME_FindItemBack(cursor->pPara->member.para.next_para, diRun);
656 while (cursor->nOffset < cursor->pRun->member.run.nCharOfs) {
657 cursor->pRun = ME_FindItemBack(cursor->pRun, diRun);
659 cursor->nOffset -= cursor->pRun->member.run.nCharOfs;
660 } else if (cursor->nOffset >= cursor->pRun->member.run.len) {
661 ME_DisplayItem *next_para;
662 int new_offset;
664 new_offset = ME_GetCursorOfs(cursor);
665 next_para = cursor->pPara->member.para.next_para;
666 if (new_offset < next_para->member.para.nCharOfs)
668 /* new offset in the same paragraph */
669 do {
670 cursor->nOffset -= cursor->pRun->member.run.len;
671 cursor->pRun = ME_FindItemFwd(cursor->pRun, diRun);
672 } while (cursor->nOffset >= cursor->pRun->member.run.len);
673 return nRelOfs;
676 if (new_offset >= ME_GetTextLength(editor))
678 /* new offset at the end of the text */
679 ME_SetCursorToEnd(editor, cursor);
680 nRelOfs -= new_offset - ME_GetTextLength(editor);
681 return nRelOfs;
684 /* new offset in a following paragraph */
685 do {
686 cursor->pPara = next_para;
687 next_para = next_para->member.para.next_para;
688 } while (new_offset >= next_para->member.para.nCharOfs);
690 cursor->nOffset = new_offset - cursor->pPara->member.para.nCharOfs;
691 cursor->pRun = ME_FindItemFwd(cursor->pPara, diRun);
692 while (cursor->nOffset >= cursor->pRun->member.run.len)
694 cursor->nOffset -= cursor->pRun->member.run.len;
695 cursor->pRun = ME_FindItemFwd(cursor->pRun, diRun);
697 } /* else new offset is in the same run */
698 return nRelOfs;
702 static BOOL
703 ME_MoveCursorWords(ME_TextEditor *editor, ME_Cursor *cursor, int nRelOfs)
705 ME_DisplayItem *pRun = cursor->pRun, *pOtherRun;
706 ME_DisplayItem *pPara = cursor->pPara;
707 int nOffset = cursor->nOffset;
709 if (nRelOfs == -1)
711 /* Backward movement */
712 while (TRUE)
714 nOffset = ME_CallWordBreakProc(editor, get_text( &pRun->member.run, 0 ),
715 pRun->member.run.len, nOffset, WB_MOVEWORDLEFT);
716 if (nOffset)
717 break;
718 pOtherRun = ME_FindItemBack(pRun, diRunOrParagraph);
719 if (pOtherRun->type == diRun)
721 if (ME_CallWordBreakProc(editor, get_text( &pOtherRun->member.run, 0 ),
722 pOtherRun->member.run.len,
723 pOtherRun->member.run.len - 1,
724 WB_ISDELIMITER)
725 && !(pRun->member.run.nFlags & MERF_ENDPARA)
726 && !(cursor->pRun == pRun && cursor->nOffset == 0)
727 && !ME_CallWordBreakProc(editor, get_text( &pRun->member.run, 0 ),
728 pRun->member.run.len, 0,
729 WB_ISDELIMITER))
730 break;
731 pRun = pOtherRun;
732 nOffset = pOtherRun->member.run.len;
734 else if (pOtherRun->type == diParagraph)
736 if (cursor->pRun == pRun && cursor->nOffset == 0)
738 pPara = pOtherRun;
739 /* Skip empty start of table row paragraph */
740 if (pPara->member.para.prev_para->member.para.nFlags & MEPF_ROWSTART)
741 pPara = pPara->member.para.prev_para;
742 /* Paragraph breaks are treated as separate words */
743 if (pPara->member.para.prev_para->type == diTextStart)
744 return FALSE;
746 pRun = ME_FindItemBack(pPara, diRun);
747 pPara = pPara->member.para.prev_para;
749 break;
753 else
755 /* Forward movement */
756 BOOL last_delim = FALSE;
758 while (TRUE)
760 if (last_delim && !ME_CallWordBreakProc(editor, get_text( &pRun->member.run, 0 ),
761 pRun->member.run.len, nOffset, WB_ISDELIMITER))
762 break;
763 nOffset = ME_CallWordBreakProc(editor, get_text( &pRun->member.run, 0 ),
764 pRun->member.run.len, nOffset, WB_MOVEWORDRIGHT);
765 if (nOffset < pRun->member.run.len)
766 break;
767 pOtherRun = ME_FindItemFwd(pRun, diRunOrParagraphOrEnd);
768 if (pOtherRun->type == diRun)
770 last_delim = ME_CallWordBreakProc(editor, get_text( &pRun->member.run, 0 ),
771 pRun->member.run.len, nOffset - 1, WB_ISDELIMITER);
772 pRun = pOtherRun;
773 nOffset = 0;
775 else if (pOtherRun->type == diParagraph)
777 if (pOtherRun->member.para.nFlags & MEPF_ROWSTART)
778 pOtherRun = pOtherRun->member.para.next_para;
779 if (cursor->pRun == pRun) {
780 pPara = pOtherRun;
781 pRun = ME_FindItemFwd(pPara, diRun);
783 nOffset = 0;
784 break;
786 else /* diTextEnd */
788 if (cursor->pRun == pRun)
789 return FALSE;
790 nOffset = 0;
791 break;
795 cursor->pPara = pPara;
796 cursor->pRun = pRun;
797 cursor->nOffset = nOffset;
798 return TRUE;
802 static void
803 ME_SelectByType(ME_TextEditor *editor, ME_SelectionType selectionType)
805 /* pCursor[0] is the end of the selection
806 * pCursor[1] is the start of the selection (or the position selection anchor)
807 * pCursor[2] and [3] are the selection anchors that are backed up
808 * so they are kept when the selection changes for drag selection.
811 editor->nSelectionType = selectionType;
812 switch(selectionType)
814 case stPosition:
815 break;
816 case stWord:
817 ME_MoveCursorWords(editor, &editor->pCursors[0], +1);
818 editor->pCursors[1] = editor->pCursors[0];
819 ME_MoveCursorWords(editor, &editor->pCursors[1], -1);
820 break;
821 case stLine:
822 case stParagraph:
824 ME_DisplayItem *pItem;
825 ME_DIType fwdSearchType, backSearchType;
826 if (selectionType == stParagraph) {
827 backSearchType = diParagraph;
828 fwdSearchType = diParagraphOrEnd;
829 } else {
830 backSearchType = diStartRow;
831 fwdSearchType = diStartRowOrParagraphOrEnd;
833 pItem = ME_FindItemFwd(editor->pCursors[0].pRun, fwdSearchType);
834 assert(pItem);
835 if (pItem->type == diTextEnd)
836 editor->pCursors[0].pRun = ME_FindItemBack(pItem, diRun);
837 else
838 editor->pCursors[0].pRun = ME_FindItemFwd(pItem, diRun);
839 editor->pCursors[0].pPara = ME_GetParagraph(editor->pCursors[0].pRun);
840 editor->pCursors[0].nOffset = 0;
842 pItem = ME_FindItemBack(pItem, backSearchType);
843 editor->pCursors[1].pRun = ME_FindItemFwd(pItem, diRun);
844 editor->pCursors[1].pPara = ME_GetParagraph(editor->pCursors[1].pRun);
845 editor->pCursors[1].nOffset = 0;
846 break;
848 case stDocument:
849 /* Select everything with cursor anchored from the start of the text */
850 editor->nSelectionType = stDocument;
851 ME_SetCursorToStart(editor, &editor->pCursors[1]);
852 ME_SetCursorToEnd(editor, &editor->pCursors[0]);
853 break;
854 default: assert(0);
856 /* Store the anchor positions for extending the selection. */
857 editor->pCursors[2] = editor->pCursors[0];
858 editor->pCursors[3] = editor->pCursors[1];
861 int ME_GetCursorOfs(const ME_Cursor *cursor)
863 return cursor->pPara->member.para.nCharOfs
864 + cursor->pRun->member.run.nCharOfs + cursor->nOffset;
867 /* Helper function for ME_FindPixelPos to find paragraph within tables */
868 static ME_DisplayItem* ME_FindPixelPosInTableRow(int x, int y,
869 ME_DisplayItem *para)
871 ME_DisplayItem *cell, *next_cell;
872 assert(para->member.para.nFlags & MEPF_ROWSTART);
873 cell = para->member.para.next_para->member.para.pCell;
874 assert(cell);
876 /* find the cell we are in */
877 while ((next_cell = cell->member.cell.next_cell) != NULL) {
878 if (x < next_cell->member.cell.pt.x)
880 para = ME_FindItemFwd(cell, diParagraph);
881 /* Found the cell, but there might be multiple paragraphs in
882 * the cell, so need to search down the cell for the paragraph. */
883 while (cell == para->member.para.pCell) {
884 if (y < para->member.para.pt.y + para->member.para.nHeight)
886 if (para->member.para.nFlags & MEPF_ROWSTART)
887 return ME_FindPixelPosInTableRow(x, y, para);
888 else
889 return para;
891 para = para->member.para.next_para;
893 /* Past the end of the cell, so go back to the last cell paragraph */
894 return para->member.para.prev_para;
896 cell = next_cell;
898 /* Return table row delimiter */
899 para = ME_FindItemFwd(cell, diParagraph);
900 assert(para->member.para.nFlags & MEPF_ROWEND);
901 assert(para->member.para.pFmt->dwMask & PFM_TABLEROWDELIMITER);
902 assert(para->member.para.pFmt->wEffects & PFE_TABLEROWDELIMITER);
903 return para;
906 static BOOL ME_FindRunInRow(ME_TextEditor *editor, ME_DisplayItem *pRow,
907 int x, ME_Cursor *cursor, int *pbCaretAtEnd)
909 ME_DisplayItem *pNext, *pLastRun;
910 ME_Row *row = &pRow->member.row;
911 BOOL exact = TRUE;
913 if (x < row->pt.x)
915 x = row->pt.x;
916 exact = FALSE;
918 pNext = ME_FindItemFwd(pRow, diRunOrStartRow);
919 assert(pNext->type == diRun);
920 if (pbCaretAtEnd) *pbCaretAtEnd = FALSE;
921 cursor->nOffset = 0;
922 do {
923 int run_x = pNext->member.run.pt.x;
924 int width = pNext->member.run.nWidth;
926 if (x >= run_x && x < run_x+width)
928 cursor->nOffset = ME_CharFromPoint(editor, x-run_x, &pNext->member.run, TRUE, TRUE);
929 cursor->pRun = pNext;
930 cursor->pPara = ME_GetParagraph( cursor->pRun );
931 return exact;
933 pLastRun = pNext;
934 pNext = ME_FindItemFwd(pNext, diRunOrStartRow);
935 } while(pNext && pNext->type == diRun);
937 if ((pLastRun->member.run.nFlags & MERF_ENDPARA) == 0)
939 cursor->pRun = ME_FindItemFwd(pNext, diRun);
940 if (pbCaretAtEnd) *pbCaretAtEnd = TRUE;
942 else
943 cursor->pRun = pLastRun;
945 cursor->pPara = ME_GetParagraph( cursor->pRun );
946 return FALSE;
949 /* Finds the run and offset from the pixel position.
951 * x & y are pixel positions in virtual coordinates into the rich edit control,
952 * so client coordinates must first be adjusted by the scroll position.
954 * returns TRUE if the result was exactly under the cursor, otherwise returns
955 * FALSE, and result is set to the closest position to the coordinates.
957 static BOOL ME_FindPixelPos(ME_TextEditor *editor, int x, int y,
958 ME_Cursor *result, BOOL *is_eol)
960 ME_DisplayItem *p = editor->pBuffer->pFirst->member.para.next_para;
961 BOOL isExact = TRUE;
963 x -= editor->rcFormat.left;
964 y -= editor->rcFormat.top;
966 if (is_eol)
967 *is_eol = 0;
969 /* find paragraph */
970 for (; p != editor->pBuffer->pLast; p = p->member.para.next_para)
972 assert(p->type == diParagraph);
973 if (y < p->member.para.pt.y + p->member.para.nHeight)
975 if (p->member.para.nFlags & MEPF_ROWSTART)
976 p = ME_FindPixelPosInTableRow(x, y, p);
977 y -= p->member.para.pt.y;
978 p = ME_FindItemFwd(p, diStartRow);
979 break;
980 } else if (p->member.para.nFlags & MEPF_ROWSTART) {
981 p = ME_GetTableRowEnd(p);
984 /* find row */
985 for (; p != editor->pBuffer->pLast; )
987 ME_DisplayItem *pp;
988 assert(p->type == diStartRow);
989 if (y < p->member.row.pt.y + p->member.row.nHeight) break;
990 pp = ME_FindItemFwd(p, diStartRow);
991 if (!pp) break;
992 p = pp;
994 if (p == editor->pBuffer->pLast)
996 /* The position is below the last paragraph, so the last row will be used
997 * rather than the end of the text, so the x position will be used to
998 * determine the offset closest to the pixel position. */
999 isExact = FALSE;
1000 p = ME_FindItemBack(p, diStartRow);
1001 if (!p) p = editor->pBuffer->pLast;
1004 assert( p->type == diStartRow || p == editor->pBuffer->pLast );
1006 if( p->type == diStartRow )
1007 return ME_FindRunInRow( editor, p, x, result, is_eol ) && isExact;
1009 result->pRun = ME_FindItemBack(p, diRun);
1010 result->pPara = ME_GetParagraph(result->pRun);
1011 result->nOffset = 0;
1012 assert(result->pRun->member.run.nFlags & MERF_ENDPARA);
1013 return FALSE;
1017 /* Sets the cursor to the position closest to the pixel position
1019 * x & y are pixel positions in client coordinates.
1021 * isExact will be set to TRUE if the run is directly under the pixel
1022 * position, FALSE if it not, unless isExact is set to NULL.
1024 * return FALSE if outside client area and the cursor is not set,
1025 * otherwise TRUE is returned.
1027 BOOL ME_CharFromPos(ME_TextEditor *editor, int x, int y,
1028 ME_Cursor *cursor, BOOL *isExact)
1030 RECT rc;
1031 BOOL bResult;
1033 ITextHost_TxGetClientRect(editor->texthost, &rc);
1034 if (x < 0 || y < 0 || x >= rc.right || y >= rc.bottom) {
1035 if (isExact) *isExact = FALSE;
1036 return FALSE;
1038 x += editor->horz_si.nPos;
1039 y += editor->vert_si.nPos;
1040 bResult = ME_FindPixelPos(editor, x, y, cursor, NULL);
1041 if (isExact) *isExact = bResult;
1042 return TRUE;
1047 /* Extends the selection with a word, line, or paragraph selection type.
1049 * The selection is anchored by editor->pCursors[2-3] such that the text
1050 * between the anchors will remain selected, and one end will be extended.
1052 * editor->pCursors[0] should have the position to extend the selection to
1053 * before this function is called.
1055 * Nothing will be done if editor->nSelectionType equals stPosition.
1057 static void ME_ExtendAnchorSelection(ME_TextEditor *editor)
1059 ME_Cursor tmp_cursor;
1060 int curOfs, anchorStartOfs, anchorEndOfs;
1061 if (editor->nSelectionType == stPosition || editor->nSelectionType == stDocument)
1062 return;
1063 curOfs = ME_GetCursorOfs(&editor->pCursors[0]);
1064 anchorStartOfs = ME_GetCursorOfs(&editor->pCursors[3]);
1065 anchorEndOfs = ME_GetCursorOfs(&editor->pCursors[2]);
1067 tmp_cursor = editor->pCursors[0];
1068 editor->pCursors[0] = editor->pCursors[2];
1069 editor->pCursors[1] = editor->pCursors[3];
1070 if (curOfs < anchorStartOfs)
1072 /* Extend the left side of selection */
1073 editor->pCursors[1] = tmp_cursor;
1074 if (editor->nSelectionType == stWord)
1075 ME_MoveCursorWords(editor, &editor->pCursors[1], -1);
1076 else
1078 ME_DisplayItem *pItem;
1079 ME_DIType searchType = ((editor->nSelectionType == stLine) ?
1080 diStartRowOrParagraph:diParagraph);
1081 pItem = ME_FindItemBack(editor->pCursors[1].pRun, searchType);
1082 editor->pCursors[1].pRun = ME_FindItemFwd(pItem, diRun);
1083 editor->pCursors[1].pPara = ME_GetParagraph(editor->pCursors[1].pRun);
1084 editor->pCursors[1].nOffset = 0;
1087 else if (curOfs >= anchorEndOfs)
1089 /* Extend the right side of selection */
1090 editor->pCursors[0] = tmp_cursor;
1091 if (editor->nSelectionType == stWord)
1092 ME_MoveCursorWords(editor, &editor->pCursors[0], +1);
1093 else
1095 ME_DisplayItem *pItem;
1096 ME_DIType searchType = ((editor->nSelectionType == stLine) ?
1097 diStartRowOrParagraphOrEnd:diParagraphOrEnd);
1098 pItem = ME_FindItemFwd(editor->pCursors[0].pRun, searchType);
1099 if (pItem->type == diTextEnd)
1100 editor->pCursors[0].pRun = ME_FindItemBack(pItem, diRun);
1101 else
1102 editor->pCursors[0].pRun = ME_FindItemFwd(pItem, diRun);
1103 editor->pCursors[0].pPara = ME_GetParagraph(editor->pCursors[0].pRun);
1104 editor->pCursors[0].nOffset = 0;
1109 void ME_LButtonDown(ME_TextEditor *editor, int x, int y, int clickNum)
1111 ME_Cursor tmp_cursor;
1112 int is_selection = 0;
1113 BOOL is_shift;
1115 editor->nUDArrowX = -1;
1117 x += editor->horz_si.nPos;
1118 y += editor->vert_si.nPos;
1120 tmp_cursor = editor->pCursors[0];
1121 is_selection = ME_IsSelection(editor);
1122 is_shift = GetKeyState(VK_SHIFT) < 0;
1124 ME_FindPixelPos(editor, x, y, &editor->pCursors[0], &editor->bCaretAtEnd);
1126 if (x >= editor->rcFormat.left || is_shift)
1128 if (clickNum > 1)
1130 editor->pCursors[1] = editor->pCursors[0];
1131 if (is_shift) {
1132 if (x >= editor->rcFormat.left)
1133 ME_SelectByType(editor, stWord);
1134 else
1135 ME_SelectByType(editor, stParagraph);
1136 } else if (clickNum % 2 == 0) {
1137 ME_SelectByType(editor, stWord);
1138 } else {
1139 ME_SelectByType(editor, stParagraph);
1142 else if (!is_shift)
1144 editor->nSelectionType = stPosition;
1145 editor->pCursors[1] = editor->pCursors[0];
1147 else if (!is_selection)
1149 editor->nSelectionType = stPosition;
1150 editor->pCursors[1] = tmp_cursor;
1152 else if (editor->nSelectionType != stPosition)
1154 ME_ExtendAnchorSelection(editor);
1157 else
1159 if (clickNum < 2) {
1160 ME_SelectByType(editor, stLine);
1161 } else if (clickNum % 2 == 0 || is_shift) {
1162 ME_SelectByType(editor, stParagraph);
1163 } else {
1164 ME_SelectByType(editor, stDocument);
1167 ME_InvalidateSelection(editor);
1168 ITextHost_TxShowCaret(editor->texthost, FALSE);
1169 ME_ShowCaret(editor);
1170 ME_SendSelChange(editor);
1173 void ME_MouseMove(ME_TextEditor *editor, int x, int y)
1175 ME_Cursor tmp_cursor;
1177 if (editor->nSelectionType == stDocument)
1178 return;
1179 x += editor->horz_si.nPos;
1180 y += editor->vert_si.nPos;
1182 tmp_cursor = editor->pCursors[0];
1183 /* FIXME: do something with the return value of ME_FindPixelPos */
1184 ME_FindPixelPos(editor, x, y, &tmp_cursor, &editor->bCaretAtEnd);
1186 ME_InvalidateSelection(editor);
1187 editor->pCursors[0] = tmp_cursor;
1188 ME_ExtendAnchorSelection(editor);
1190 if (editor->nSelectionType != stPosition &&
1191 memcmp(&editor->pCursors[1], &editor->pCursors[3], sizeof(ME_Cursor)))
1193 /* The scroll the cursor towards the other end, since it was the one
1194 * extended by ME_ExtendAnchorSelection */
1195 ME_EnsureVisible(editor, &editor->pCursors[1]);
1196 } else {
1197 ME_EnsureVisible(editor, &editor->pCursors[0]);
1200 ME_InvalidateSelection(editor);
1201 ITextHost_TxShowCaret(editor->texthost, FALSE);
1202 ME_ShowCaret(editor);
1203 ME_SendSelChange(editor);
1206 static int ME_GetXForArrow(ME_TextEditor *editor, ME_Cursor *pCursor)
1208 ME_DisplayItem *pRun = pCursor->pRun;
1209 int x;
1211 if (editor->nUDArrowX != -1)
1212 x = editor->nUDArrowX;
1213 else {
1214 if (editor->bCaretAtEnd)
1216 pRun = ME_FindItemBack(pRun, diRun);
1217 assert(pRun);
1218 x = pRun->member.run.pt.x + pRun->member.run.nWidth;
1220 else {
1221 x = pRun->member.run.pt.x;
1222 x += ME_PointFromChar(editor, &pRun->member.run, pCursor->nOffset, TRUE);
1224 editor->nUDArrowX = x;
1226 return x;
1230 static void
1231 ME_MoveCursorLines(ME_TextEditor *editor, ME_Cursor *pCursor, int nRelOfs)
1233 ME_DisplayItem *pRun = pCursor->pRun;
1234 ME_DisplayItem *pOldPara = pCursor->pPara;
1235 ME_DisplayItem *pItem, *pNewPara;
1236 int x = ME_GetXForArrow(editor, pCursor);
1238 if (editor->bCaretAtEnd && !pCursor->nOffset)
1239 if (!ME_PrevRun(&pOldPara, &pRun))
1240 return;
1242 if (nRelOfs == -1)
1244 /* start of this row */
1245 pItem = ME_FindItemBack(pRun, diStartRow);
1246 assert(pItem);
1247 /* start of the previous row */
1248 pItem = ME_FindItemBack(pItem, diStartRow);
1249 if (!pItem)
1250 return; /* row not found - ignore */
1251 pNewPara = ME_GetParagraph(pItem);
1252 if (pOldPara->member.para.nFlags & MEPF_ROWEND ||
1253 (pOldPara->member.para.pCell &&
1254 pOldPara->member.para.pCell != pNewPara->member.para.pCell))
1256 /* Brought out of a cell */
1257 pNewPara = ME_GetTableRowStart(pOldPara)->member.para.prev_para;
1258 if (pNewPara->type == diTextStart)
1259 return; /* At the top, so don't go anywhere. */
1260 pItem = ME_FindItemFwd(pNewPara, diStartRow);
1262 if (pNewPara->member.para.nFlags & MEPF_ROWEND)
1264 /* Brought into a table row */
1265 ME_Cell *cell = &ME_FindItemBack(pNewPara, diCell)->member.cell;
1266 while (x < cell->pt.x && cell->prev_cell)
1267 cell = &cell->prev_cell->member.cell;
1268 if (cell->next_cell) /* else - we are still at the end of the row */
1269 pItem = ME_FindItemBack(cell->next_cell, diStartRow);
1272 else
1274 /* start of the next row */
1275 pItem = ME_FindItemFwd(pRun, diStartRow);
1276 if (!pItem)
1277 return; /* row not found - ignore */
1278 pNewPara = ME_GetParagraph(pItem);
1279 if (pOldPara->member.para.nFlags & MEPF_ROWSTART ||
1280 (pOldPara->member.para.pCell &&
1281 pOldPara->member.para.pCell != pNewPara->member.para.pCell))
1283 /* Brought out of a cell */
1284 pNewPara = ME_GetTableRowEnd(pOldPara)->member.para.next_para;
1285 if (pNewPara->type == diTextEnd)
1286 return; /* At the bottom, so don't go anywhere. */
1287 pItem = ME_FindItemFwd(pNewPara, diStartRow);
1289 if (pNewPara->member.para.nFlags & MEPF_ROWSTART)
1291 /* Brought into a table row */
1292 ME_DisplayItem *cell = ME_FindItemFwd(pNewPara, diCell);
1293 while (cell->member.cell.next_cell &&
1294 x >= cell->member.cell.next_cell->member.cell.pt.x)
1295 cell = cell->member.cell.next_cell;
1296 pItem = ME_FindItemFwd(cell, diStartRow);
1299 if (!pItem)
1301 /* row not found - ignore */
1302 return;
1304 ME_FindRunInRow(editor, pItem, x, pCursor, &editor->bCaretAtEnd);
1305 assert(pCursor->pRun);
1306 assert(pCursor->pRun->type == diRun);
1309 static void ME_ArrowPageUp(ME_TextEditor *editor, ME_Cursor *pCursor)
1311 ME_DisplayItem *p = ME_FindItemFwd(editor->pBuffer->pFirst, diStartRow);
1313 if (editor->vert_si.nPos < p->member.row.nHeight)
1315 ME_SetCursorToStart(editor, pCursor);
1316 editor->bCaretAtEnd = FALSE;
1317 /* Native clears seems to clear this x value on page up at the top
1318 * of the text, but not on page down at the end of the text.
1319 * Doesn't make sense, but we try to be bug for bug compatible. */
1320 editor->nUDArrowX = -1;
1321 } else {
1322 ME_DisplayItem *pRun = pCursor->pRun;
1323 ME_DisplayItem *pLast;
1324 int x, y, yd, yp;
1325 int yOldScrollPos = editor->vert_si.nPos;
1327 x = ME_GetXForArrow(editor, pCursor);
1328 if (!pCursor->nOffset && editor->bCaretAtEnd)
1329 pRun = ME_FindItemBack(pRun, diRun);
1331 p = ME_FindItemBack(pRun, diStartRowOrParagraph);
1332 assert(p->type == diStartRow);
1333 yp = ME_FindItemBack(p, diParagraph)->member.para.pt.y;
1334 y = yp + p->member.row.pt.y;
1336 ME_ScrollUp(editor, editor->sizeWindow.cy);
1337 /* Only move the cursor by the amount scrolled. */
1338 yd = y + editor->vert_si.nPos - yOldScrollPos;
1339 pLast = p;
1341 do {
1342 p = ME_FindItemBack(p, diStartRowOrParagraph);
1343 if (!p)
1344 break;
1345 if (p->type == diParagraph) { /* crossing paragraphs */
1346 if (p->member.para.prev_para == NULL)
1347 break;
1348 yp = p->member.para.prev_para->member.para.pt.y;
1349 continue;
1351 y = yp + p->member.row.pt.y;
1352 if (y < yd)
1353 break;
1354 pLast = p;
1355 } while(1);
1357 ME_FindRunInRow(editor, pLast, x, pCursor, &editor->bCaretAtEnd);
1359 assert(pCursor->pRun);
1360 assert(pCursor->pRun->type == diRun);
1363 static void ME_ArrowPageDown(ME_TextEditor *editor, ME_Cursor *pCursor)
1365 ME_DisplayItem *pLast;
1366 int x, y;
1368 /* Find y position of the last row */
1369 pLast = editor->pBuffer->pLast;
1370 y = pLast->member.para.prev_para->member.para.pt.y
1371 + ME_FindItemBack(pLast, diStartRow)->member.row.pt.y;
1373 x = ME_GetXForArrow(editor, pCursor);
1375 if (editor->vert_si.nPos >= y - editor->sizeWindow.cy)
1377 ME_SetCursorToEnd(editor, pCursor);
1378 editor->bCaretAtEnd = FALSE;
1379 } else {
1380 ME_DisplayItem *pRun = pCursor->pRun;
1381 ME_DisplayItem *p;
1382 int yd, yp;
1383 int yOldScrollPos = editor->vert_si.nPos;
1385 if (!pCursor->nOffset && editor->bCaretAtEnd)
1386 pRun = ME_FindItemBack(pRun, diRun);
1388 p = ME_FindItemBack(pRun, diStartRowOrParagraph);
1389 assert(p->type == diStartRow);
1390 yp = ME_FindItemBack(p, diParagraph)->member.para.pt.y;
1391 y = yp + p->member.row.pt.y;
1393 /* For native richedit controls:
1394 * v1.0 - v3.1 can only scroll down as far as the scrollbar lets us
1395 * v4.1 can scroll past this position here. */
1396 ME_ScrollDown(editor, editor->sizeWindow.cy);
1397 /* Only move the cursor by the amount scrolled. */
1398 yd = y + editor->vert_si.nPos - yOldScrollPos;
1399 pLast = p;
1401 do {
1402 p = ME_FindItemFwd(p, diStartRowOrParagraph);
1403 if (!p)
1404 break;
1405 if (p->type == diParagraph) {
1406 yp = p->member.para.pt.y;
1407 continue;
1409 y = yp + p->member.row.pt.y;
1410 if (y >= yd)
1411 break;
1412 pLast = p;
1413 } while(1);
1415 ME_FindRunInRow(editor, pLast, x, pCursor, &editor->bCaretAtEnd);
1417 assert(pCursor->pRun);
1418 assert(pCursor->pRun->type == diRun);
1421 static void ME_ArrowHome(ME_TextEditor *editor, ME_Cursor *pCursor)
1423 ME_DisplayItem *pRow = ME_FindItemBack(pCursor->pRun, diStartRow);
1424 if (pRow) {
1425 ME_DisplayItem *pRun;
1426 if (editor->bCaretAtEnd && !pCursor->nOffset) {
1427 pRow = ME_FindItemBack(pRow, diStartRow);
1428 if (!pRow)
1429 return;
1431 pRun = ME_FindItemFwd(pRow, diRun);
1432 if (pRun) {
1433 pCursor->pRun = pRun;
1434 assert(pCursor->pPara == ME_GetParagraph(pRun));
1435 pCursor->nOffset = 0;
1438 editor->bCaretAtEnd = FALSE;
1441 static void ME_ArrowCtrlHome(ME_TextEditor *editor, ME_Cursor *pCursor)
1443 ME_SetCursorToStart(editor, pCursor);
1444 editor->bCaretAtEnd = FALSE;
1447 static void ME_ArrowEnd(ME_TextEditor *editor, ME_Cursor *pCursor)
1449 ME_DisplayItem *pRow;
1451 if (editor->bCaretAtEnd && !pCursor->nOffset)
1452 return;
1454 pRow = ME_FindItemFwd(pCursor->pRun, diStartRowOrParagraphOrEnd);
1455 assert(pRow);
1456 if (pRow->type == diStartRow) {
1457 ME_DisplayItem *pRun = ME_FindItemFwd(pRow, diRun);
1458 assert(pRun);
1459 pCursor->pRun = pRun;
1460 assert(pCursor->pPara == ME_GetParagraph(pCursor->pRun));
1461 pCursor->nOffset = 0;
1462 editor->bCaretAtEnd = TRUE;
1463 return;
1465 pCursor->pRun = ME_FindItemBack(pRow, diRun);
1466 assert(pCursor->pRun && pCursor->pRun->member.run.nFlags & MERF_ENDPARA);
1467 assert(pCursor->pPara == ME_GetParagraph(pCursor->pRun));
1468 pCursor->nOffset = 0;
1469 editor->bCaretAtEnd = FALSE;
1472 static void ME_ArrowCtrlEnd(ME_TextEditor *editor, ME_Cursor *pCursor)
1474 ME_SetCursorToEnd(editor, pCursor);
1475 editor->bCaretAtEnd = FALSE;
1478 BOOL ME_IsSelection(ME_TextEditor *editor)
1480 return editor->pCursors[0].pRun != editor->pCursors[1].pRun ||
1481 editor->pCursors[0].nOffset != editor->pCursors[1].nOffset;
1484 void ME_DeleteSelection(ME_TextEditor *editor)
1486 int from, to;
1487 int nStartCursor = ME_GetSelectionOfs(editor, &from, &to);
1488 int nEndCursor = nStartCursor ^ 1;
1489 ME_DeleteTextAtCursor(editor, nStartCursor, to - from);
1490 editor->pCursors[nEndCursor] = editor->pCursors[nStartCursor];
1493 ME_Style *ME_GetSelectionInsertStyle(ME_TextEditor *editor)
1495 return ME_GetInsertStyle(editor, 0);
1498 void ME_SendSelChange(ME_TextEditor *editor)
1500 SELCHANGE sc;
1502 if (!(editor->nEventMask & ENM_SELCHANGE))
1503 return;
1505 sc.nmhdr.hwndFrom = NULL;
1506 sc.nmhdr.idFrom = 0;
1507 sc.nmhdr.code = EN_SELCHANGE;
1508 ME_GetSelectionOfs(editor, &sc.chrg.cpMin, &sc.chrg.cpMax);
1509 sc.seltyp = SEL_EMPTY;
1510 if (sc.chrg.cpMin != sc.chrg.cpMax)
1511 sc.seltyp |= SEL_TEXT;
1512 if (sc.chrg.cpMin < sc.chrg.cpMax+1) /* what were RICHEDIT authors thinking ? */
1513 sc.seltyp |= SEL_MULTICHAR;
1514 TRACE("cpMin=%d cpMax=%d seltyp=%d (%s %s)\n",
1515 sc.chrg.cpMin, sc.chrg.cpMax, sc.seltyp,
1516 (sc.seltyp & SEL_TEXT) ? "SEL_TEXT" : "",
1517 (sc.seltyp & SEL_MULTICHAR) ? "SEL_MULTICHAR" : "");
1518 if (sc.chrg.cpMin != editor->notified_cr.cpMin || sc.chrg.cpMax != editor->notified_cr.cpMax)
1520 ME_ClearTempStyle(editor);
1522 editor->notified_cr = sc.chrg;
1523 ITextHost_TxNotify(editor->texthost, sc.nmhdr.code, &sc);
1527 BOOL
1528 ME_ArrowKey(ME_TextEditor *editor, int nVKey, BOOL extend, BOOL ctrl)
1530 int nCursor = 0;
1531 ME_Cursor *p = &editor->pCursors[nCursor];
1532 ME_Cursor tmp_curs = *p;
1533 BOOL success = FALSE;
1535 ME_CheckCharOffsets(editor);
1536 switch(nVKey) {
1537 case VK_LEFT:
1538 editor->bCaretAtEnd = 0;
1539 if (ctrl)
1540 success = ME_MoveCursorWords(editor, &tmp_curs, -1);
1541 else
1542 success = ME_MoveCursorChars(editor, &tmp_curs, -1);
1543 break;
1544 case VK_RIGHT:
1545 editor->bCaretAtEnd = 0;
1546 if (ctrl)
1547 success = ME_MoveCursorWords(editor, &tmp_curs, +1);
1548 else
1549 success = ME_MoveCursorChars(editor, &tmp_curs, +1);
1550 break;
1551 case VK_UP:
1552 ME_MoveCursorLines(editor, &tmp_curs, -1);
1553 break;
1554 case VK_DOWN:
1555 ME_MoveCursorLines(editor, &tmp_curs, +1);
1556 break;
1557 case VK_PRIOR:
1558 ME_ArrowPageUp(editor, &tmp_curs);
1559 break;
1560 case VK_NEXT:
1561 ME_ArrowPageDown(editor, &tmp_curs);
1562 break;
1563 case VK_HOME: {
1564 if (ctrl)
1565 ME_ArrowCtrlHome(editor, &tmp_curs);
1566 else
1567 ME_ArrowHome(editor, &tmp_curs);
1568 editor->bCaretAtEnd = 0;
1569 break;
1571 case VK_END:
1572 if (ctrl)
1573 ME_ArrowCtrlEnd(editor, &tmp_curs);
1574 else
1575 ME_ArrowEnd(editor, &tmp_curs);
1576 break;
1579 if (!extend)
1580 editor->pCursors[1] = tmp_curs;
1581 *p = tmp_curs;
1583 ME_InvalidateSelection(editor);
1584 ME_Repaint(editor);
1585 ITextHost_TxShowCaret(editor->texthost, FALSE);
1586 ME_EnsureVisible(editor, &tmp_curs);
1587 ME_ShowCaret(editor);
1588 ME_SendSelChange(editor);
1589 return success;