gdiplus: Move font substitution test into a separate function.
[wine] / dlls / riched20 / caret.c
1 /*
2  * RichEdit - Caret and selection functions.
3  *
4  * Copyright 2004 by Krzysztof Foltman
5  * Copyright 2005 by Phil Krylov
6  *
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.
11  *
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.
16  *
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
20  */
21
22
23 #include "editor.h"
24
25 WINE_DEFAULT_DEBUG_CHANNEL(richedit);
26
27 void ME_SetCursorToStart(ME_TextEditor *editor, ME_Cursor *cursor)
28 {
29   cursor->pPara = editor->pBuffer->pFirst->member.para.next_para;
30   cursor->pRun = ME_FindItemFwd(cursor->pPara, diRun);
31   cursor->nOffset = 0;
32 }
33
34 static void ME_SetCursorToEnd(ME_TextEditor *editor, ME_Cursor *cursor)
35 {
36   cursor->pPara = editor->pBuffer->pLast->member.para.prev_para;
37   cursor->pRun = ME_FindItemBack(editor->pBuffer->pLast, diRun);
38   cursor->nOffset = 0;
39 }
40
41
42 int ME_GetSelectionOfs(ME_TextEditor *editor, int *from, int *to)
43 {
44   *from = ME_GetCursorOfs(&editor->pCursors[0]);
45   *to =   ME_GetCursorOfs(&editor->pCursors[1]);
46
47   if (*from > *to)
48   {
49     int tmp = *from;
50     *from = *to;
51     *to = tmp;
52     return 1;
53   }
54   return 0;
55 }
56
57 int ME_GetSelection(ME_TextEditor *editor, ME_Cursor **from, ME_Cursor **to)
58 {
59   if (ME_GetCursorOfs(&editor->pCursors[0]) < ME_GetCursorOfs(&editor->pCursors[1]))
60   {
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;
68   }
69 }
70
71 int ME_GetTextLength(ME_TextEditor *editor)
72 {
73   ME_Cursor cursor;
74   ME_SetCursorToEnd(editor, &cursor);
75   return ME_GetCursorOfs(&cursor);
76 }
77
78
79 int ME_GetTextLengthEx(ME_TextEditor *editor, const GETTEXTLENGTHEX *how)
80 {
81   int length;
82
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;
87   
88   length = ME_GetTextLength(editor);
89
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;
94
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 */
98   {
99     CPINFO cpinfo;
100     
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;
109   }
110   return length; 
111 }
112
113
114 int ME_SetSelection(ME_TextEditor *editor, int from, int to)
115 {
116   int selectionEnd = 0;
117   const int len = ME_GetTextLength(editor);
118
119   /* all negative values are effectively the same */
120   if (from < 0)
121     from = -1;
122   if (to < 0)
123     to = -1;
124
125   /* select all */
126   if (from == 0 && to == -1)
127   {
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;
133   }
134
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))
138   {
139     selectionEnd = 1;
140   }
141   else
142   {
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)
146     {
147       int start, end;
148       ME_GetSelectionOfs(editor, &start, &end);
149       if (start != end)
150       {
151           editor->pCursors[1] = editor->pCursors[0];
152           ME_Repaint(editor);
153       }
154       ME_ClearTempStyle(editor);
155       return end;
156     }
157
158     /* adjust to if it's a negative value */
159     if (to < 0)
160       to = len + 1;
161
162     /* flip from and to if they are reversed */
163     if (from>to)
164     {
165       int tmp = from;
166       from = to;
167       to = tmp;
168     }
169
170     /* after fiddling with the values, we find from > len && to > len */
171     if (from > len)
172       selectionEnd = 1;
173     /* special case with to too big */
174     else if (to > len)
175       to = len + 1;
176   }
177
178   if (selectionEnd)
179   {
180     ME_SetCursorToEnd(editor, &editor->pCursors[0]);
181     editor->pCursors[1] = editor->pCursors[0];
182     ME_InvalidateSelection(editor);
183     ME_ClearTempStyle(editor);
184     return len;
185   }
186
187   ME_CursorFromCharOfs(editor, from, &editor->pCursors[1]);
188   editor->pCursors[0] = editor->pCursors[1];
189   ME_MoveCursorChars(editor, &editor->pCursors[0], to - from);
190   /* Selection is not allowed in the middle of an end paragraph run. */
191   if (editor->pCursors[1].pRun->member.run.nFlags & MERF_ENDPARA)
192     editor->pCursors[1].nOffset = 0;
193   if (editor->pCursors[0].pRun->member.run.nFlags & MERF_ENDPARA)
194     editor->pCursors[0].nOffset = 0;
195   return to;
196 }
197
198
199 static void
200 ME_GetCursorCoordinates(ME_TextEditor *editor, ME_Cursor *pCursor,
201                         int *x, int *y, int *height)
202 {
203   ME_DisplayItem *row;
204   ME_DisplayItem *run = pCursor->pRun;
205   ME_DisplayItem *para = pCursor->pPara;
206   ME_DisplayItem *pSizeRun = run;
207   ME_Context c;
208   SIZE sz = {0, 0};
209
210   assert(height && x && y);
211   assert(~para->member.para.nFlags & MEPF_REWRAP);
212   assert(run && run->type == diRun);
213   assert(para && para->type == diParagraph);
214
215   row = ME_FindItemBack(run, diStartRowOrParagraph);
216   assert(row && row->type == diStartRow);
217
218   ME_InitContext(&c, editor, ITextHost_TxGetDC(editor->texthost));
219
220   if (!pCursor->nOffset)
221   {
222     ME_DisplayItem *prev = ME_FindItemBack(run, diRunOrParagraph);
223     assert(prev);
224     if (prev->type == diRun)
225       pSizeRun = prev;
226   }
227   if (editor->bCaretAtEnd && !pCursor->nOffset &&
228       run == ME_FindItemFwd(row, diRun))
229   {
230     ME_DisplayItem *tmp = ME_FindItemBack(row, diRunOrParagraph);
231     assert(tmp);
232     if (tmp->type == diRun)
233     {
234       row = ME_FindItemBack(tmp, diStartRow);
235       pSizeRun = run = tmp;
236       assert(run);
237       assert(run->type == diRun);
238       sz = ME_GetRunSize(&c, &para->member.para,
239                          &run->member.run, run->member.run.strText->nLen,
240                          row->member.row.nLMargin);
241     }
242   }
243   if (pCursor->nOffset) {
244     sz = ME_GetRunSize(&c, &para->member.para, &run->member.run,
245                        pCursor->nOffset, row->member.row.nLMargin);
246   }
247
248   *height = pSizeRun->member.run.nAscent + pSizeRun->member.run.nDescent;
249   *x = c.rcView.left + run->member.run.pt.x + sz.cx - editor->horz_si.nPos;
250   *y = c.rcView.top + para->member.para.pt.y + row->member.row.nBaseline
251        + run->member.run.pt.y - pSizeRun->member.run.nAscent
252        - editor->vert_si.nPos;
253   ME_DestroyContext(&c);
254   return;
255 }
256
257
258 void
259 ME_MoveCaret(ME_TextEditor *editor)
260 {
261   int x, y, height;
262
263   ME_GetCursorCoordinates(editor, &editor->pCursors[0], &x, &y, &height);
264   if(editor->bHaveFocus && !ME_IsSelection(editor))
265   {
266     x = min(x, editor->rcFormat.right-1);
267     ITextHost_TxCreateCaret(editor->texthost, NULL, 0, height);
268     ITextHost_TxSetCaretPos(editor->texthost, x, y);
269   }
270 }
271
272
273 void ME_ShowCaret(ME_TextEditor *ed)
274 {
275   ME_MoveCaret(ed);
276   if(ed->bHaveFocus && !ME_IsSelection(ed))
277     ITextHost_TxShowCaret(ed->texthost, TRUE);
278 }
279
280 void ME_HideCaret(ME_TextEditor *ed)
281 {
282   if(!ed->bHaveFocus || ME_IsSelection(ed))
283   {
284     ITextHost_TxShowCaret(ed->texthost, FALSE);
285     DestroyCaret();
286   }
287 }
288
289 BOOL ME_InternalDeleteText(ME_TextEditor *editor, ME_Cursor *start,
290                            int nChars, BOOL bForce)
291 {
292   ME_Cursor c = *start;
293   int nOfs = ME_GetCursorOfs(start);
294   int shift = 0;
295   int totalChars = nChars;
296   ME_DisplayItem *start_para;
297
298   /* Prevent deletion past last end of paragraph run. */
299   nChars = min(nChars, ME_GetTextLength(editor) - nOfs);
300   start_para = c.pPara;
301
302   if (!bForce)
303   {
304     ME_ProtectPartialTableDeletion(editor, &c, &nChars);
305     if (nChars == 0)
306       return FALSE;
307   }
308
309   while(nChars > 0)
310   {
311     ME_Run *run;
312     ME_CursorFromCharOfs(editor, nOfs+nChars, &c);
313     if (!c.nOffset &&
314         nOfs+nChars == (c.pRun->member.run.nCharOfs
315                         + c.pPara->member.para.nCharOfs))
316     {
317       /* We aren't deleting anything in this run, so we will go back to the
318        * last run we are deleting text in. */
319       ME_PrevRun(&c.pPara, &c.pRun);
320       c.nOffset = c.pRun->member.run.strText->nLen;
321     }
322     run = &c.pRun->member.run;
323     if (run->nFlags & MERF_ENDPARA) {
324       int eollen = c.pRun->member.run.strText->nLen;
325       BOOL keepFirstParaFormat;
326
327       if (!ME_FindItemFwd(c.pRun, diParagraph))
328       {
329         return TRUE;
330       }
331       keepFirstParaFormat = (totalChars == nChars && nChars <= eollen &&
332                              run->nCharOfs);
333       if (!editor->bEmulateVersion10) /* v4.1 */
334       {
335         ME_DisplayItem *next_para = ME_FindItemFwd(c.pRun, diParagraphOrEnd);
336         ME_DisplayItem *this_para = next_para->member.para.prev_para;
337
338         /* The end of paragraph before a table row is only deleted if there
339          * is nothing else on the line before it. */
340         if (this_para == start_para &&
341             next_para->member.para.nFlags & MEPF_ROWSTART)
342         {
343           /* If the paragraph will be empty, then it should be deleted, however
344            * it still might have text right now which would inherit the
345            * MEPF_STARTROW property if we joined it right now.
346            * Instead we will delete it after the preceding text is deleted. */
347           if (nOfs > this_para->member.para.nCharOfs) {
348             /* Skip this end of line. */
349             nChars -= (eollen < nChars) ? eollen : nChars;
350             continue;
351           }
352           keepFirstParaFormat = TRUE;
353         }
354       }
355       ME_JoinParagraphs(editor, c.pPara, keepFirstParaFormat);
356       /* ME_SkipAndPropagateCharOffset(p->pRun, shift); */
357       ME_CheckCharOffsets(editor);
358       nChars -= (eollen < nChars) ? eollen : nChars;
359       continue;
360     }
361     else
362     {
363       ME_Cursor cursor;
364       int nCharsToDelete = min(nChars, c.nOffset);
365       int i;
366
367       c.nOffset -= nCharsToDelete;
368
369       ME_FindItemBack(c.pRun, diParagraph)->member.para.nFlags |= MEPF_REWRAP;
370
371       cursor = c;
372       /* nChars is the number of characters that should be deleted from the
373          PRECEDING runs (these BEFORE cursor.pRun)
374          nCharsToDelete is a number of chars to delete from THIS run */
375       nChars -= nCharsToDelete;
376       shift -= nCharsToDelete;
377       TRACE("Deleting %d (remaning %d) chars at %d in '%s' (%d)\n",
378         nCharsToDelete, nChars, c.nOffset,
379         debugstr_w(run->strText->szData), run->strText->nLen);
380
381       if (!c.nOffset && run->strText->nLen == nCharsToDelete)
382       {
383         /* undo = reinsert whole run */
384         /* nOfs is a character offset (from the start of the document
385            to the current (deleted) run */
386         ME_UndoItem *pUndo = ME_AddUndoItem(editor, diUndoInsertRun, c.pRun);
387         if (pUndo)
388           pUndo->di.member.run.nCharOfs = nOfs+nChars;
389       }
390       else
391       {
392         /* undo = reinsert partial run */
393         ME_UndoItem *pUndo = ME_AddUndoItem(editor, diUndoInsertRun, c.pRun);
394         if (pUndo) {
395           ME_DestroyString(pUndo->di.member.run.strText);
396           pUndo->di.member.run.nCharOfs = nOfs+nChars;
397           pUndo->di.member.run.strText = ME_MakeStringN(run->strText->szData+c.nOffset, nCharsToDelete);
398         }
399       }
400       TRACE("Post deletion string: %s (%d)\n", debugstr_w(run->strText->szData), run->strText->nLen);
401       TRACE("Shift value: %d\n", shift);
402       ME_StrDeleteV(run->strText, c.nOffset, nCharsToDelete);
403
404       /* update cursors (including c) */
405       for (i=-1; i<editor->nCursors; i++) {
406         ME_Cursor *pThisCur = editor->pCursors + i;
407         if (i == -1) pThisCur = &c;
408         if (pThisCur->pRun == cursor.pRun) {
409           if (pThisCur->nOffset > cursor.nOffset) {
410             if (pThisCur->nOffset-cursor.nOffset < nCharsToDelete)
411               pThisCur->nOffset = cursor.nOffset;
412             else
413               pThisCur->nOffset -= nCharsToDelete;
414             assert(pThisCur->nOffset >= 0);
415             assert(pThisCur->nOffset <= run->strText->nLen);
416           }
417           if (pThisCur->nOffset == run->strText->nLen)
418           {
419             pThisCur->pRun = ME_FindItemFwd(pThisCur->pRun, diRunOrParagraphOrEnd);
420             assert(pThisCur->pRun->type == diRun);
421             pThisCur->nOffset = 0;
422           }
423         }
424       }
425
426       /* c = updated data now */
427
428       if (c.pRun == cursor.pRun)
429         ME_SkipAndPropagateCharOffset(c.pRun, shift);
430       else
431         ME_PropagateCharOffset(c.pRun, shift);
432
433       if (!cursor.pRun->member.run.strText->nLen)
434       {
435         TRACE("Removing useless run\n");
436         ME_Remove(cursor.pRun);
437         ME_DestroyDisplayItem(cursor.pRun);
438       }
439
440       shift = 0;
441       /*
442       ME_CheckCharOffsets(editor);
443       */
444       continue;
445     }
446   }
447   return TRUE;
448 }
449
450 BOOL ME_DeleteTextAtCursor(ME_TextEditor *editor, int nCursor, int nChars)
451 {
452   assert(nCursor>=0 && nCursor<editor->nCursors);
453   /* text operations set modified state */
454   editor->nModifyStep = 1;
455   return ME_InternalDeleteText(editor, &editor->pCursors[nCursor],
456                                nChars, FALSE);
457 }
458
459 static ME_DisplayItem *
460 ME_InternalInsertTextFromCursor(ME_TextEditor *editor, int nCursor,
461                                 const WCHAR *str, int len, ME_Style *style,
462                                 int flags)
463 {
464   ME_Cursor *p = &editor->pCursors[nCursor];
465
466   editor->bCaretAtEnd = FALSE;
467   
468   assert(p->pRun->type == diRun);
469   
470   return ME_InsertRunAtCursor(editor, p, style, str, len, flags);
471 }
472
473
474 void ME_InsertOLEFromCursor(ME_TextEditor *editor, const REOBJECT* reo, int nCursor)
475 {
476   ME_Style              *pStyle = ME_GetInsertStyle(editor, nCursor);
477   ME_DisplayItem        *di;
478   WCHAR                 space = ' ';
479   
480   /* FIXME no no no */
481   if (ME_IsSelection(editor))
482     ME_DeleteSelection(editor);
483
484   di = ME_InternalInsertTextFromCursor(editor, nCursor, &space, 1, pStyle,
485                                        MERF_GRAPHICS);
486   di->member.run.ole_obj = ALLOC_OBJ(*reo);
487   ME_CopyReObject(di->member.run.ole_obj, reo);
488   ME_ReleaseStyle(pStyle);
489 }
490
491
492 void ME_InsertEndRowFromCursor(ME_TextEditor *editor, int nCursor)
493 {
494   ME_Style              *pStyle = ME_GetInsertStyle(editor, nCursor);
495   WCHAR                 space = ' ';
496
497   /* FIXME no no no */
498   if (ME_IsSelection(editor))
499     ME_DeleteSelection(editor);
500
501   ME_InternalInsertTextFromCursor(editor, nCursor, &space, 1, pStyle,
502                                   MERF_ENDROW);
503   ME_ReleaseStyle(pStyle);
504 }
505
506
507 void ME_InsertTextFromCursor(ME_TextEditor *editor, int nCursor, 
508   const WCHAR *str, int len, ME_Style *style)
509 {
510   const WCHAR *pos;
511   ME_Cursor *p = NULL;
512   int oldLen;
513
514   /* FIXME really HERE ? */
515   if (ME_IsSelection(editor))
516     ME_DeleteSelection(editor);
517
518   /* FIXME: is this too slow? */
519   /* Didn't affect performance for WM_SETTEXT (around 50sec/30K) */
520   oldLen = ME_GetTextLength(editor);
521
522   /* text operations set modified state */
523   editor->nModifyStep = 1;
524
525   assert(style);
526
527   assert(nCursor>=0 && nCursor<editor->nCursors);
528   if (len == -1)
529     len = lstrlenW(str);
530
531   /* grow the text limit to fit our text */
532   if(editor->nTextLimit < oldLen +len)
533     editor->nTextLimit = oldLen + len;
534
535   pos = str;
536
537   while (len)
538   {
539     /* FIXME this sucks - no respect for unicode (what else can be a line separator in unicode?) */
540     while(pos - str < len && *pos != '\r' && *pos != '\n' && *pos != '\t')
541       pos++;
542
543     if (pos != str) { /* handle text */
544       ME_InternalInsertTextFromCursor(editor, nCursor, str, pos-str, style, 0);
545     } else if (*pos == '\t') { /* handle tabs */
546       WCHAR tab = '\t';
547       ME_InternalInsertTextFromCursor(editor, nCursor, &tab, 1, style, MERF_TAB);
548       pos++;
549     } else { /* handle EOLs */
550       ME_DisplayItem *tp, *end_run;
551       ME_Style *tmp_style;
552       int eol_len = 0;
553
554       /* Find number of CR and LF in end of paragraph run */
555       if (*pos =='\r')
556       {
557         if (len > 1 && pos[1] == '\n')
558           eol_len = 2;
559         else if (len > 2 && pos[1] == '\r' && pos[2] == '\n')
560           eol_len = 3;
561         else
562           eol_len = 1;
563       } else {
564         assert(*pos == '\n');
565         eol_len = 1;
566       }
567       pos += eol_len;
568
569       if (!editor->bEmulateVersion10 && eol_len == 3)
570       {
571         /* handle special \r\r\n sequence (richedit 2.x and higher only) */
572         WCHAR space = ' ';
573         ME_InternalInsertTextFromCursor(editor, nCursor, &space, 1, style, 0);
574       } else {
575         ME_String *eol_str;
576
577         if (!editor->bEmulateVersion10) {
578           WCHAR cr = '\r';
579           eol_str = ME_MakeStringN(&cr, 1);
580         } else {
581           eol_str = ME_MakeStringN(str, eol_len);
582         }
583
584         p = &editor->pCursors[nCursor];
585         if (p->nOffset)
586           ME_SplitRunSimple(editor, p);
587         tmp_style = ME_GetInsertStyle(editor, nCursor);
588         /* ME_SplitParagraph increases style refcount */
589         tp = ME_SplitParagraph(editor, p->pRun, p->pRun->member.run.style, eol_str, 0);
590         p->pRun = ME_FindItemFwd(tp, diRun);
591         p->pPara = tp;
592         end_run = ME_FindItemBack(tp, diRun);
593         ME_ReleaseStyle(end_run->member.run.style);
594         end_run->member.run.style = tmp_style;
595         p->nOffset = 0;
596       }
597     }
598     len -= pos - str;
599     str = pos;
600   }
601 }
602
603 /* Move the cursor nRelOfs characters (either forwards or backwards)
604  *
605  * returns the actual number of characters moved.
606  **/
607 int ME_MoveCursorChars(ME_TextEditor *editor, ME_Cursor *cursor, int nRelOfs)
608 {
609   cursor->nOffset += nRelOfs;
610   if (cursor->nOffset < 0)
611   {
612     cursor->nOffset += cursor->pRun->member.run.nCharOfs;
613     if (cursor->nOffset >= 0)
614     {
615       /* new offset in the same paragraph */
616       do {
617         cursor->pRun = ME_FindItemBack(cursor->pRun, diRun);
618       } while (cursor->nOffset < cursor->pRun->member.run.nCharOfs);
619       cursor->nOffset -= cursor->pRun->member.run.nCharOfs;
620       return nRelOfs;
621     }
622
623     cursor->nOffset += cursor->pPara->member.para.nCharOfs;
624     if (cursor->nOffset <= 0)
625     {
626       /* moved to the start of the text */
627       nRelOfs -= cursor->nOffset;
628       ME_SetCursorToStart(editor, cursor);
629       return nRelOfs;
630     }
631
632     /* new offset in a previous paragraph */
633     do {
634       cursor->pPara = cursor->pPara->member.para.prev_para;
635     } while (cursor->nOffset < cursor->pPara->member.para.nCharOfs);
636     cursor->nOffset -= cursor->pPara->member.para.nCharOfs;
637
638     cursor->pRun = ME_FindItemBack(cursor->pPara->member.para.next_para, diRun);
639     while (cursor->nOffset < cursor->pRun->member.run.nCharOfs) {
640       cursor->pRun = ME_FindItemBack(cursor->pRun, diRun);
641     }
642     cursor->nOffset -= cursor->pRun->member.run.nCharOfs;
643   } else if (cursor->nOffset >= cursor->pRun->member.run.strText->nLen) {
644     ME_DisplayItem *next_para;
645     int new_offset;
646
647     new_offset = ME_GetCursorOfs(cursor);
648     next_para = cursor->pPara->member.para.next_para;
649     if (new_offset < next_para->member.para.nCharOfs)
650     {
651       /* new offset in the same paragraph */
652       do {
653         cursor->nOffset -= cursor->pRun->member.run.strText->nLen;
654         cursor->pRun = ME_FindItemFwd(cursor->pRun, diRun);
655       } while (cursor->nOffset >= cursor->pRun->member.run.strText->nLen);
656       return nRelOfs;
657     }
658
659     if (new_offset >= ME_GetTextLength(editor))
660     {
661       /* new offset at the end of the text */
662       ME_SetCursorToEnd(editor, cursor);
663       nRelOfs -= new_offset - ME_GetTextLength(editor);
664       return nRelOfs;
665     }
666
667     /* new offset in a following paragraph */
668     do {
669       cursor->pPara = next_para;
670       next_para = next_para->member.para.next_para;
671     } while (new_offset >= next_para->member.para.nCharOfs);
672
673     cursor->nOffset = new_offset - cursor->pPara->member.para.nCharOfs;
674     cursor->pRun = ME_FindItemFwd(cursor->pPara, diRun);
675     while (cursor->nOffset >= cursor->pRun->member.run.strText->nLen)
676     {
677       cursor->nOffset -= cursor->pRun->member.run.strText->nLen;
678       cursor->pRun = ME_FindItemFwd(cursor->pRun, diRun);
679     }
680   } /* else new offset is in the same run */
681   return nRelOfs;
682 }
683
684
685 static BOOL
686 ME_MoveCursorWords(ME_TextEditor *editor, ME_Cursor *cursor, int nRelOfs)
687 {
688   ME_DisplayItem *pRun = cursor->pRun, *pOtherRun;
689   ME_DisplayItem *pPara = cursor->pPara;
690   int nOffset = cursor->nOffset;
691
692   if (nRelOfs == -1)
693   {
694     /* Backward movement */
695     while (TRUE)
696     {
697       nOffset = ME_CallWordBreakProc(editor, pRun->member.run.strText,
698                                      nOffset, WB_MOVEWORDLEFT);
699       if (nOffset)
700         break;
701       pOtherRun = ME_FindItemBack(pRun, diRunOrParagraph);
702       if (pOtherRun->type == diRun)
703       {
704         if (ME_CallWordBreakProc(editor, pOtherRun->member.run.strText,
705                                  pOtherRun->member.run.strText->nLen - 1,
706                                  WB_ISDELIMITER)
707             && !(pRun->member.run.nFlags & MERF_ENDPARA)
708             && !(cursor->pRun == pRun && cursor->nOffset == 0)
709             && !ME_CallWordBreakProc(editor, pRun->member.run.strText, 0,
710                                      WB_ISDELIMITER))
711           break;
712         pRun = pOtherRun;
713         nOffset = pOtherRun->member.run.strText->nLen;
714       }
715       else if (pOtherRun->type == diParagraph)
716       {
717         if (cursor->pRun == pRun && cursor->nOffset == 0)
718         {
719           pPara = pOtherRun;
720           /* Skip empty start of table row paragraph */
721           if (pPara->member.para.prev_para->member.para.nFlags & MEPF_ROWSTART)
722             pPara = pPara->member.para.prev_para;
723           /* Paragraph breaks are treated as separate words */
724           if (pPara->member.para.prev_para->type == diTextStart)
725             return FALSE;
726
727           pRun = ME_FindItemBack(pPara, diRun);
728           pPara = pPara->member.para.prev_para;
729         }
730         break;
731       }
732     }
733   }
734   else
735   {
736     /* Forward movement */
737     BOOL last_delim = FALSE;
738     
739     while (TRUE)
740     {
741       if (last_delim && !ME_CallWordBreakProc(editor, pRun->member.run.strText,
742                                               nOffset, WB_ISDELIMITER))
743         break;
744       nOffset = ME_CallWordBreakProc(editor, pRun->member.run.strText,
745                                      nOffset, WB_MOVEWORDRIGHT);
746       if (nOffset < pRun->member.run.strText->nLen)
747         break;
748       pOtherRun = ME_FindItemFwd(pRun, diRunOrParagraphOrEnd);
749       if (pOtherRun->type == diRun)
750       {
751         last_delim = ME_CallWordBreakProc(editor, pRun->member.run.strText,
752                                           nOffset - 1, WB_ISDELIMITER);
753         pRun = pOtherRun;
754         nOffset = 0;
755       }
756       else if (pOtherRun->type == diParagraph)
757       {
758         if (pOtherRun->member.para.nFlags & MEPF_ROWSTART)
759             pOtherRun = pOtherRun->member.para.next_para;
760         if (cursor->pRun == pRun) {
761           pPara = pOtherRun;
762           pRun = ME_FindItemFwd(pPara, diRun);
763         }
764         nOffset = 0;
765         break;
766       }
767       else /* diTextEnd */
768       {
769         if (cursor->pRun == pRun)
770           return FALSE;
771         nOffset = 0;
772         break;
773       }
774     }
775   }
776   cursor->pPara = pPara;
777   cursor->pRun = pRun;
778   cursor->nOffset = nOffset;
779   return TRUE;
780 }
781
782
783 static void
784 ME_SelectByType(ME_TextEditor *editor, ME_SelectionType selectionType)
785 {
786   /* pCursor[0] is the end of the selection
787    * pCursor[1] is the start of the selection (or the position selection anchor)
788    * pCursor[2] and [3] are the selection anchors that are backed up
789    * so they are kept when the selection changes for drag selection.
790    */
791
792   editor->nSelectionType = selectionType;
793   switch(selectionType)
794   {
795     case stPosition:
796       break;
797     case stWord:
798       ME_MoveCursorWords(editor, &editor->pCursors[0], +1);
799       editor->pCursors[1] = editor->pCursors[0];
800       ME_MoveCursorWords(editor, &editor->pCursors[1], -1);
801       break;
802     case stLine:
803     case stParagraph:
804     {
805       ME_DisplayItem *pItem;
806       ME_DIType fwdSearchType, backSearchType;
807       if (selectionType == stParagraph) {
808           backSearchType = diParagraph;
809           fwdSearchType = diParagraphOrEnd;
810       } else {
811           backSearchType = diStartRow;
812           fwdSearchType = diStartRowOrParagraphOrEnd;
813       }
814       pItem = ME_FindItemFwd(editor->pCursors[0].pRun, fwdSearchType);
815       assert(pItem);
816       if (pItem->type == diTextEnd)
817           editor->pCursors[0].pRun = ME_FindItemBack(pItem, diRun);
818       else
819           editor->pCursors[0].pRun = ME_FindItemFwd(pItem, diRun);
820       editor->pCursors[0].pPara = ME_GetParagraph(editor->pCursors[0].pRun);
821       editor->pCursors[0].nOffset = 0;
822
823       pItem = ME_FindItemBack(pItem, backSearchType);
824       editor->pCursors[1].pRun = ME_FindItemFwd(pItem, diRun);
825       editor->pCursors[1].pPara = ME_GetParagraph(editor->pCursors[1].pRun);
826       editor->pCursors[1].nOffset = 0;
827       break;
828     }
829     case stDocument:
830       /* Select everything with cursor anchored from the start of the text */
831       editor->nSelectionType = stDocument;
832       ME_SetCursorToStart(editor, &editor->pCursors[1]);
833       ME_SetCursorToEnd(editor, &editor->pCursors[0]);
834       break;
835     default: assert(0);
836   }
837   /* Store the anchor positions for extending the selection. */
838   editor->pCursors[2] = editor->pCursors[0];
839   editor->pCursors[3] = editor->pCursors[1];
840 }
841
842 int ME_GetCursorOfs(const ME_Cursor *cursor)
843 {
844   return cursor->pPara->member.para.nCharOfs
845          + cursor->pRun->member.run.nCharOfs + cursor->nOffset;
846 }
847
848 /* Helper function for ME_FindPixelPos to find paragraph within tables */
849 static ME_DisplayItem* ME_FindPixelPosInTableRow(int x, int y,
850                                                  ME_DisplayItem *para)
851 {
852   ME_DisplayItem *cell, *next_cell;
853   assert(para->member.para.nFlags & MEPF_ROWSTART);
854   cell = para->member.para.next_para->member.para.pCell;
855   assert(cell);
856
857   /* find the cell we are in */
858   while ((next_cell = cell->member.cell.next_cell) != NULL) {
859     if (x < next_cell->member.cell.pt.x)
860     {
861       para = ME_FindItemFwd(cell, diParagraph);
862       /* Found the cell, but there might be multiple paragraphs in
863        * the cell, so need to search down the cell for the paragraph. */
864       while (cell == para->member.para.pCell) {
865         if (y < para->member.para.pt.y + para->member.para.nHeight)
866         {
867           if (para->member.para.nFlags & MEPF_ROWSTART)
868             return ME_FindPixelPosInTableRow(x, y, para);
869           else
870             return para;
871         }
872         para = para->member.para.next_para;
873       }
874       /* Past the end of the cell, so go back to the last cell paragraph */
875       return para->member.para.prev_para;
876     }
877     cell = next_cell;
878   }
879   /* Return table row delimiter */
880   para = ME_FindItemFwd(cell, diParagraph);
881   assert(para->member.para.nFlags & MEPF_ROWEND);
882   assert(para->member.para.pFmt->dwMask & PFM_TABLEROWDELIMITER);
883   assert(para->member.para.pFmt->wEffects & PFE_TABLEROWDELIMITER);
884   return para;
885 }
886
887 static BOOL ME_ReturnFoundPos(ME_TextEditor *editor, ME_DisplayItem *found,
888                                ME_Cursor *result, int rx, BOOL isExact)
889 {
890   assert(found);
891   assert(found->type == diRun);
892   if ((found->member.run.nFlags & MERF_ENDPARA) || rx < 0)
893     rx = 0;
894   result->pRun = found;
895   result->nOffset = ME_CharFromPointCursor(editor, rx, &found->member.run);
896   if (result->nOffset == found->member.run.strText->nLen && rx)
897   {
898     result->pRun = ME_FindItemFwd(result->pRun, diRun);
899     result->nOffset = 0;
900   }
901   result->pPara = ME_GetParagraph(result->pRun);
902   return isExact;
903 }
904
905 /* Finds the run and offset from the pixel position.
906  *
907  * x & y are pixel positions in virtual coordinates into the rich edit control,
908  * so client coordinates must first be adjusted by the scroll position.
909  *
910  * returns TRUE if the result was exactly under the cursor, otherwise returns
911  * FALSE, and result is set to the closest position to the coordinates.
912  */
913 static BOOL ME_FindPixelPos(ME_TextEditor *editor, int x, int y,
914                             ME_Cursor *result, BOOL *is_eol)
915 {
916   ME_DisplayItem *p = editor->pBuffer->pFirst->member.para.next_para;
917   ME_DisplayItem *last = NULL;
918   int rx = 0;
919   BOOL isExact = TRUE;
920
921   x -= editor->rcFormat.left;
922   y -= editor->rcFormat.top;
923
924   if (is_eol)
925     *is_eol = 0;
926
927   /* find paragraph */
928   for (; p != editor->pBuffer->pLast; p = p->member.para.next_para)
929   {
930     assert(p->type == diParagraph);
931     if (y < p->member.para.pt.y + p->member.para.nHeight)
932     {
933       if (p->member.para.nFlags & MEPF_ROWSTART)
934         p = ME_FindPixelPosInTableRow(x, y, p);
935       y -= p->member.para.pt.y;
936       p = ME_FindItemFwd(p, diStartRow);
937       break;
938     } else if (p->member.para.nFlags & MEPF_ROWSTART) {
939       p = ME_GetTableRowEnd(p);
940     }
941   }
942   /* find row */
943   for (; p != editor->pBuffer->pLast; )
944   {
945     ME_DisplayItem *pp;
946     assert(p->type == diStartRow);
947     if (y < p->member.row.pt.y + p->member.row.nHeight)
948     {
949         p = ME_FindItemFwd(p, diRun);
950         break;
951     }
952     pp = ME_FindItemFwd(p, diStartRowOrParagraphOrEnd);
953     if (pp->type != diStartRow)
954     {
955         p = ME_FindItemFwd(p, diRun);
956         break;
957     }
958     p = pp;
959   }
960   if (p == editor->pBuffer->pLast)
961   {
962     /* The position is below the last paragraph, so the last row will be used
963      * rather than the end of the text, so the x position will be used to
964      * determine the offset closest to the pixel position. */
965     isExact = FALSE;
966     p = ME_FindItemBack(p, diStartRow);
967     if (p != NULL){
968       p = ME_FindItemFwd(p, diRun);
969     }
970     else
971     {
972       p = editor->pBuffer->pLast;
973     }
974   }
975   for (; p != editor->pBuffer->pLast; p = p->next)
976   {
977     switch (p->type)
978     {
979     case diRun:
980       rx = x - p->member.run.pt.x;
981       if (rx < p->member.run.nWidth)
982         return ME_ReturnFoundPos(editor, p, result, rx, isExact);
983       break;
984     case diStartRow:
985       isExact = FALSE;
986       p = ME_FindItemFwd(p, diRun);
987       if (is_eol) *is_eol = 1;
988       rx = 0; /* FIXME not sure */
989       return ME_ReturnFoundPos(editor, p, result, rx, isExact);
990     case diCell:
991     case diParagraph:
992     case diTextEnd:
993       isExact = FALSE;
994       rx = 0; /* FIXME not sure */
995       p = last;
996       return ME_ReturnFoundPos(editor, p, result, rx, isExact);
997     default: assert(0);
998     }
999     last = p;
1000   }
1001   result->pRun = ME_FindItemBack(p, diRun);
1002   result->pPara = ME_GetParagraph(result->pRun);
1003   result->nOffset = 0;
1004   assert(result->pRun->member.run.nFlags & MERF_ENDPARA);
1005   return FALSE;
1006 }
1007
1008
1009 /* Sets the cursor to the position closest to the pixel position
1010  *
1011  * x & y are pixel positions in client coordinates.
1012  *
1013  * isExact will be set to TRUE if the run is directly under the pixel
1014  * position, FALSE if it not, unless isExact is set to NULL.
1015  *
1016  * return FALSE if outside client area and the cursor is not set,
1017  * otherwise TRUE is returned.
1018  */
1019 BOOL ME_CharFromPos(ME_TextEditor *editor, int x, int y,
1020                     ME_Cursor *cursor, BOOL *isExact)
1021 {
1022   RECT rc;
1023   BOOL bResult;
1024
1025   ITextHost_TxGetClientRect(editor->texthost, &rc);
1026   if (x < 0 || y < 0 || x >= rc.right || y >= rc.bottom) {
1027     if (isExact) *isExact = FALSE;
1028     return FALSE;
1029   }
1030   x += editor->horz_si.nPos;
1031   y += editor->vert_si.nPos;
1032   bResult = ME_FindPixelPos(editor, x, y, cursor, NULL);
1033   if (isExact) *isExact = bResult;
1034   return TRUE;
1035 }
1036
1037
1038
1039 /* Extends the selection with a word, line, or paragraph selection type.
1040  *
1041  * The selection is anchored by editor->pCursors[2-3] such that the text
1042  * between the anchors will remain selected, and one end will be extended.
1043  *
1044  * editor->pCursors[0] should have the position to extend the selection to
1045  * before this function is called.
1046  *
1047  * Nothing will be done if editor->nSelectionType equals stPosition.
1048  */
1049 static void ME_ExtendAnchorSelection(ME_TextEditor *editor)
1050 {
1051   ME_Cursor tmp_cursor;
1052   int curOfs, anchorStartOfs, anchorEndOfs;
1053   if (editor->nSelectionType == stPosition || editor->nSelectionType == stDocument)
1054       return;
1055   curOfs = ME_GetCursorOfs(&editor->pCursors[0]);
1056   anchorStartOfs = ME_GetCursorOfs(&editor->pCursors[3]);
1057   anchorEndOfs = ME_GetCursorOfs(&editor->pCursors[2]);
1058
1059   tmp_cursor = editor->pCursors[0];
1060   editor->pCursors[0] = editor->pCursors[2];
1061   editor->pCursors[1] = editor->pCursors[3];
1062   if (curOfs < anchorStartOfs)
1063   {
1064       /* Extend the left side of selection */
1065       editor->pCursors[1] = tmp_cursor;
1066       if (editor->nSelectionType == stWord)
1067           ME_MoveCursorWords(editor, &editor->pCursors[1], -1);
1068       else
1069       {
1070           ME_DisplayItem *pItem;
1071           ME_DIType searchType = ((editor->nSelectionType == stLine) ?
1072                                   diStartRowOrParagraph:diParagraph);
1073           pItem = ME_FindItemBack(editor->pCursors[1].pRun, searchType);
1074           editor->pCursors[1].pRun = ME_FindItemFwd(pItem, diRun);
1075           editor->pCursors[1].pPara = ME_GetParagraph(editor->pCursors[1].pRun);
1076           editor->pCursors[1].nOffset = 0;
1077       }
1078   }
1079   else if (curOfs >= anchorEndOfs)
1080   {
1081       /* Extend the right side of selection */
1082       editor->pCursors[0] = tmp_cursor;
1083       if (editor->nSelectionType == stWord)
1084           ME_MoveCursorWords(editor, &editor->pCursors[0], +1);
1085       else
1086       {
1087           ME_DisplayItem *pItem;
1088           ME_DIType searchType = ((editor->nSelectionType == stLine) ?
1089                                   diStartRowOrParagraphOrEnd:diParagraphOrEnd);
1090           pItem = ME_FindItemFwd(editor->pCursors[0].pRun, searchType);
1091           if (pItem->type == diTextEnd)
1092               editor->pCursors[0].pRun = ME_FindItemBack(pItem, diRun);
1093           else
1094               editor->pCursors[0].pRun = ME_FindItemFwd(pItem, diRun);
1095           editor->pCursors[0].pPara = ME_GetParagraph(editor->pCursors[0].pRun);
1096           editor->pCursors[0].nOffset = 0;
1097       }
1098   }
1099 }
1100
1101 void ME_LButtonDown(ME_TextEditor *editor, int x, int y, int clickNum)
1102 {
1103   ME_Cursor tmp_cursor;
1104   int is_selection = 0;
1105   BOOL is_shift;
1106
1107   editor->nUDArrowX = -1;
1108
1109   x += editor->horz_si.nPos;
1110   y += editor->vert_si.nPos;
1111
1112   tmp_cursor = editor->pCursors[0];
1113   is_selection = ME_IsSelection(editor);
1114   is_shift = GetKeyState(VK_SHIFT) < 0;
1115
1116   ME_FindPixelPos(editor, x, y, &editor->pCursors[0], &editor->bCaretAtEnd);
1117
1118   if (x >= editor->rcFormat.left || is_shift)
1119   {
1120     if (clickNum > 1)
1121     {
1122       editor->pCursors[1] = editor->pCursors[0];
1123       if (is_shift) {
1124           if (x >= editor->rcFormat.left)
1125               ME_SelectByType(editor, stWord);
1126           else
1127               ME_SelectByType(editor, stParagraph);
1128       } else if (clickNum % 2 == 0) {
1129           ME_SelectByType(editor, stWord);
1130       } else {
1131           ME_SelectByType(editor, stParagraph);
1132       }
1133     }
1134     else if (!is_shift)
1135     {
1136       editor->nSelectionType = stPosition;
1137       editor->pCursors[1] = editor->pCursors[0];
1138     }
1139     else if (!is_selection)
1140     {
1141       editor->nSelectionType = stPosition;
1142       editor->pCursors[1] = tmp_cursor;
1143     }
1144     else if (editor->nSelectionType != stPosition)
1145     {
1146       ME_ExtendAnchorSelection(editor);
1147     }
1148   }
1149   else
1150   {
1151     if (clickNum < 2) {
1152         ME_SelectByType(editor, stLine);
1153     } else if (clickNum % 2 == 0 || is_shift) {
1154         ME_SelectByType(editor, stParagraph);
1155     } else {
1156         ME_SelectByType(editor, stDocument);
1157     }
1158   }
1159   ME_InvalidateSelection(editor);
1160   ITextHost_TxShowCaret(editor->texthost, FALSE);
1161   ME_ShowCaret(editor);
1162   ME_ClearTempStyle(editor);
1163   ME_SendSelChange(editor);
1164 }
1165
1166 void ME_MouseMove(ME_TextEditor *editor, int x, int y)
1167 {
1168   ME_Cursor tmp_cursor;
1169
1170   if (editor->nSelectionType == stDocument)
1171       return;
1172   x += editor->horz_si.nPos;
1173   y += editor->vert_si.nPos;
1174
1175   tmp_cursor = editor->pCursors[0];
1176   /* FIXME: do something with the return value of ME_FindPixelPos */
1177   ME_FindPixelPos(editor, x, y, &tmp_cursor, &editor->bCaretAtEnd);
1178
1179   ME_InvalidateSelection(editor);
1180   editor->pCursors[0] = tmp_cursor;
1181   ME_ExtendAnchorSelection(editor);
1182
1183   if (editor->nSelectionType != stPosition &&
1184       memcmp(&editor->pCursors[1], &editor->pCursors[3], sizeof(ME_Cursor)))
1185   {
1186       /* The scroll the cursor towards the other end, since it was the one
1187        * extended by ME_ExtendAnchorSelection */
1188       ME_EnsureVisible(editor, &editor->pCursors[1]);
1189   } else {
1190       ME_EnsureVisible(editor, &editor->pCursors[0]);
1191   }
1192
1193   ME_InvalidateSelection(editor);
1194   ITextHost_TxShowCaret(editor->texthost, FALSE);
1195   ME_ShowCaret(editor);
1196   ME_SendSelChange(editor);
1197 }
1198
1199 static ME_DisplayItem *ME_FindRunInRow(ME_TextEditor *editor, ME_DisplayItem *pRow, 
1200                                 int x, int *pOffset, int *pbCaretAtEnd)
1201 {
1202   ME_DisplayItem *pNext, *pLastRun;
1203   pNext = ME_FindItemFwd(pRow, diRunOrStartRow);
1204   assert(pNext->type == diRun);
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)
1211     {
1212       return pNext;
1213     }
1214     if (x >= run_x && x < run_x+width)
1215     {
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;          
1222       }
1223     }
1224     pLastRun = pNext;
1225     pNext = ME_FindItemFwd(pNext, diRunOrStartRow);
1226   } while(pNext && pNext->type == diRun);
1227   
1228   if ((pLastRun->member.run.nFlags & MERF_ENDPARA) == 0)
1229   {
1230     pNext = ME_FindItemFwd(pNext, diRun);
1231     if (pbCaretAtEnd) *pbCaretAtEnd = TRUE;
1232     return pNext;
1233   } else {
1234     return pLastRun;
1235   }
1236 }
1237
1238 static int ME_GetXForArrow(ME_TextEditor *editor, ME_Cursor *pCursor)
1239 {
1240   ME_DisplayItem *pRun = pCursor->pRun;
1241   int x;
1242
1243   if (editor->nUDArrowX != -1)
1244     x = editor->nUDArrowX;
1245   else {
1246     if (editor->bCaretAtEnd)
1247     {
1248       pRun = ME_FindItemBack(pRun, diRun);
1249       assert(pRun);
1250       x = pRun->member.run.pt.x + pRun->member.run.nWidth;
1251     }
1252     else {
1253       x = pRun->member.run.pt.x;
1254       x += ME_PointFromChar(editor, &pRun->member.run, pCursor->nOffset);
1255     }
1256     editor->nUDArrowX = x;
1257   }
1258   return x;
1259 }
1260
1261
1262 static void
1263 ME_MoveCursorLines(ME_TextEditor *editor, ME_Cursor *pCursor, int nRelOfs)
1264 {
1265   ME_DisplayItem *pRun = pCursor->pRun;
1266   ME_DisplayItem *pOldPara = pCursor->pPara;
1267   ME_DisplayItem *pItem, *pNewPara;
1268   int x = ME_GetXForArrow(editor, pCursor);
1269
1270   if (editor->bCaretAtEnd && !pCursor->nOffset)
1271     if (!ME_PrevRun(&pOldPara, &pRun))
1272       return;
1273
1274   if (nRelOfs == -1)
1275   {
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))
1287     {
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);
1293     }
1294     if (pNewPara->member.para.nFlags & MEPF_ROWEND)
1295     {
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);
1302     }
1303   }
1304   else
1305   {
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))
1314     {
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);
1320     }
1321     if (pNewPara->member.para.nFlags & MEPF_ROWSTART)
1322     {
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);
1329     }
1330   }
1331   if (!pItem)
1332   {
1333     /* row not found - ignore */
1334     return;
1335   }
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);
1340 }
1341
1342 static void ME_ArrowPageUp(ME_TextEditor *editor, ME_Cursor *pCursor)
1343 {
1344   ME_DisplayItem *p = ME_FindItemFwd(editor->pBuffer->pFirst, diStartRow);
1345
1346   if (editor->vert_si.nPos < p->member.row.nHeight)
1347   {
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, yd, yp;
1358     int yOldScrollPos = editor->vert_si.nPos;
1359
1360     x = ME_GetXForArrow(editor, pCursor);
1361     if (!pCursor->nOffset && editor->bCaretAtEnd)
1362       pRun = ME_FindItemBack(pRun, diRun);
1363
1364     p = ME_FindItemBack(pRun, diStartRowOrParagraph);
1365     assert(p->type == diStartRow);
1366     yp = ME_FindItemBack(p, diParagraph)->member.para.pt.y;
1367     y = yp + p->member.row.pt.y;
1368
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;
1373
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;
1383       }
1384       y = yp + p->member.row.pt.y;
1385       if (y < yd)
1386         break;
1387       pLast = p;
1388     } while(1);
1389
1390     pCursor->pRun = ME_FindRunInRow(editor, pLast, x, &pCursor->nOffset,
1391                                     &editor->bCaretAtEnd);
1392     pCursor->pPara = ME_GetParagraph(pCursor->pRun);
1393   }
1394   assert(pCursor->pRun);
1395   assert(pCursor->pRun->type == diRun);
1396 }
1397
1398 static void ME_ArrowPageDown(ME_TextEditor *editor, ME_Cursor *pCursor)
1399 {
1400   ME_DisplayItem *pLast;
1401   int x, y;
1402
1403   /* Find y position of the last row */
1404   pLast = editor->pBuffer->pLast;
1405   y = pLast->member.para.prev_para->member.para.pt.y
1406       + ME_FindItemBack(pLast, diStartRow)->member.row.pt.y;
1407
1408   x = ME_GetXForArrow(editor, pCursor);
1409
1410   if (editor->vert_si.nPos >= y - editor->sizeWindow.cy)
1411   {
1412     ME_SetCursorToEnd(editor, pCursor);
1413     editor->bCaretAtEnd = FALSE;
1414   } else {
1415     ME_DisplayItem *pRun = pCursor->pRun;
1416     ME_DisplayItem *p;
1417     int yd, yp;
1418     int yOldScrollPos = editor->vert_si.nPos;
1419
1420     if (!pCursor->nOffset && editor->bCaretAtEnd)
1421       pRun = ME_FindItemBack(pRun, diRun);
1422
1423     p = ME_FindItemBack(pRun, diStartRowOrParagraph);
1424     assert(p->type == diStartRow);
1425     yp = ME_FindItemBack(p, diParagraph)->member.para.pt.y;
1426     y = yp + p->member.row.pt.y;
1427
1428     /* For native richedit controls:
1429      * v1.0 - v3.1 can only scroll down as far as the scrollbar lets us
1430      * v4.1 can scroll past this position here. */
1431     ME_ScrollDown(editor, editor->sizeWindow.cy);
1432     /* Only move the cursor by the amount scrolled. */
1433     yd = y + editor->vert_si.nPos - yOldScrollPos;
1434     pLast = p;
1435
1436     do {
1437       p = ME_FindItemFwd(p, diStartRowOrParagraph);
1438       if (!p)
1439         break;
1440       if (p->type == diParagraph) {
1441         yp = p->member.para.pt.y;
1442         continue;
1443       }
1444       y = yp + p->member.row.pt.y;
1445       if (y >= yd)
1446         break;
1447       pLast = p;
1448     } while(1);
1449
1450     pCursor->pRun = ME_FindRunInRow(editor, pLast, x, &pCursor->nOffset,
1451                                     &editor->bCaretAtEnd);
1452     pCursor->pPara = ME_GetParagraph(pCursor->pRun);
1453   }
1454   assert(pCursor->pRun);
1455   assert(pCursor->pRun->type == diRun);
1456 }
1457
1458 static void ME_ArrowHome(ME_TextEditor *editor, ME_Cursor *pCursor)
1459 {
1460   ME_DisplayItem *pRow = ME_FindItemBack(pCursor->pRun, diStartRow);
1461   if (pRow) {
1462     ME_DisplayItem *pRun;
1463     if (editor->bCaretAtEnd && !pCursor->nOffset) {
1464       pRow = ME_FindItemBack(pRow, diStartRow);
1465       if (!pRow)
1466         return;
1467     }
1468     pRun = ME_FindItemFwd(pRow, diRun);
1469     if (pRun) {
1470       pCursor->pRun = pRun;
1471       assert(pCursor->pPara == ME_GetParagraph(pRun));
1472       pCursor->nOffset = 0;
1473     }
1474   }
1475   editor->bCaretAtEnd = FALSE;
1476 }
1477
1478 static void ME_ArrowCtrlHome(ME_TextEditor *editor, ME_Cursor *pCursor)
1479 {
1480   ME_SetCursorToStart(editor, pCursor);
1481   editor->bCaretAtEnd = FALSE;
1482 }
1483
1484 static void ME_ArrowEnd(ME_TextEditor *editor, ME_Cursor *pCursor)
1485 {
1486   ME_DisplayItem *pRow;
1487
1488   if (editor->bCaretAtEnd && !pCursor->nOffset)
1489     return;
1490
1491   pRow = ME_FindItemFwd(pCursor->pRun, diStartRowOrParagraphOrEnd);
1492   assert(pRow);
1493   if (pRow->type == diStartRow) {
1494     ME_DisplayItem *pRun = ME_FindItemFwd(pRow, diRun);
1495     assert(pRun);
1496     pCursor->pRun = pRun;
1497     assert(pCursor->pPara == ME_GetParagraph(pCursor->pRun));
1498     pCursor->nOffset = 0;
1499     editor->bCaretAtEnd = TRUE;
1500     return;
1501   }
1502   pCursor->pRun = ME_FindItemBack(pRow, diRun);
1503   assert(pCursor->pRun && pCursor->pRun->member.run.nFlags & MERF_ENDPARA);
1504   assert(pCursor->pPara == ME_GetParagraph(pCursor->pRun));
1505   pCursor->nOffset = 0;
1506   editor->bCaretAtEnd = FALSE;
1507 }
1508
1509 static void ME_ArrowCtrlEnd(ME_TextEditor *editor, ME_Cursor *pCursor)
1510 {
1511   ME_SetCursorToEnd(editor, pCursor);
1512   editor->bCaretAtEnd = FALSE;
1513 }
1514
1515 BOOL ME_IsSelection(ME_TextEditor *editor)
1516 {
1517   return editor->pCursors[0].pRun != editor->pCursors[1].pRun ||
1518          editor->pCursors[0].nOffset != editor->pCursors[1].nOffset;
1519 }
1520
1521 void ME_DeleteSelection(ME_TextEditor *editor)
1522 {
1523   int from, to;
1524   int nStartCursor = ME_GetSelectionOfs(editor, &from, &to);
1525   ME_DeleteTextAtCursor(editor, nStartCursor, to - from);
1526 }
1527
1528 ME_Style *ME_GetSelectionInsertStyle(ME_TextEditor *editor)
1529 {
1530   return ME_GetInsertStyle(editor, 0);
1531 }
1532
1533 void ME_SendSelChange(ME_TextEditor *editor)
1534 {
1535   SELCHANGE sc;
1536
1537   if (!(editor->nEventMask & ENM_SELCHANGE))
1538     return;
1539
1540   sc.nmhdr.hwndFrom = NULL;
1541   sc.nmhdr.idFrom = 0;
1542   sc.nmhdr.code = EN_SELCHANGE;
1543   ME_GetSelectionOfs(editor, &sc.chrg.cpMin, &sc.chrg.cpMax);
1544   sc.seltyp = SEL_EMPTY;
1545   if (sc.chrg.cpMin != sc.chrg.cpMax)
1546     sc.seltyp |= SEL_TEXT;
1547   if (sc.chrg.cpMin < sc.chrg.cpMax+1) /* what were RICHEDIT authors thinking ? */
1548     sc.seltyp |= SEL_MULTICHAR;
1549   TRACE("cpMin=%d cpMax=%d seltyp=%d (%s %s)\n",
1550     sc.chrg.cpMin, sc.chrg.cpMax, sc.seltyp,
1551     (sc.seltyp & SEL_TEXT) ? "SEL_TEXT" : "",
1552     (sc.seltyp & SEL_MULTICHAR) ? "SEL_MULTICHAR" : "");
1553   if (sc.chrg.cpMin != editor->notified_cr.cpMin || sc.chrg.cpMax != editor->notified_cr.cpMax)
1554   {
1555     ME_ClearTempStyle(editor);
1556
1557     editor->notified_cr = sc.chrg;
1558     ITextHost_TxNotify(editor->texthost, sc.nmhdr.code, &sc);
1559   }
1560 }
1561
1562 BOOL
1563 ME_ArrowKey(ME_TextEditor *editor, int nVKey, BOOL extend, BOOL ctrl)
1564 {
1565   int nCursor = 0;
1566   ME_Cursor *p = &editor->pCursors[nCursor];
1567   ME_Cursor tmp_curs = *p;
1568   BOOL success = FALSE;
1569
1570   ME_CheckCharOffsets(editor);
1571   switch(nVKey) {
1572     case VK_LEFT:
1573       editor->bCaretAtEnd = 0;
1574       if (ctrl)
1575         success = ME_MoveCursorWords(editor, &tmp_curs, -1);
1576       else
1577         success = ME_MoveCursorChars(editor, &tmp_curs, -1);
1578       break;
1579     case VK_RIGHT:
1580       editor->bCaretAtEnd = 0;
1581       if (ctrl)
1582         success = ME_MoveCursorWords(editor, &tmp_curs, +1);
1583       else
1584         success = ME_MoveCursorChars(editor, &tmp_curs, +1);
1585       break;
1586     case VK_UP:
1587       ME_MoveCursorLines(editor, &tmp_curs, -1);
1588       break;
1589     case VK_DOWN:
1590       ME_MoveCursorLines(editor, &tmp_curs, +1);
1591       break;
1592     case VK_PRIOR:
1593       ME_ArrowPageUp(editor, &tmp_curs);
1594       break;
1595     case VK_NEXT:
1596       ME_ArrowPageDown(editor, &tmp_curs);
1597       break;
1598     case VK_HOME: {
1599       if (ctrl)
1600         ME_ArrowCtrlHome(editor, &tmp_curs);
1601       else
1602         ME_ArrowHome(editor, &tmp_curs);
1603       editor->bCaretAtEnd = 0;
1604       break;
1605     }
1606     case VK_END:
1607       if (ctrl)
1608         ME_ArrowCtrlEnd(editor, &tmp_curs);
1609       else
1610         ME_ArrowEnd(editor, &tmp_curs);
1611       break;
1612   }
1613
1614   if (!extend)
1615     editor->pCursors[1] = tmp_curs;
1616   *p = tmp_curs;
1617
1618   ME_InvalidateSelection(editor);
1619   ME_Repaint(editor);
1620   ITextHost_TxShowCaret(editor->texthost, FALSE);
1621   ME_EnsureVisible(editor, &tmp_curs);
1622   ME_ShowCaret(editor);
1623   ME_SendSelChange(editor);
1624   return success;
1625 }