riched20: Add a helper to debug the run text.
[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_run( run ), run->strText->nLen);
380
381       /* nOfs is a character offset (from the start of the document
382          to the current (deleted) run */
383       add_undo_insert_run( editor, nOfs + nChars, run->strText->szData + c.nOffset, nCharsToDelete, run->nFlags, run->style );
384
385       TRACE("Post deletion string: %s (%d)\n", debugstr_run( run ), run->strText->nLen);
386       TRACE("Shift value: %d\n", shift);
387       ME_StrDeleteV(run->strText, c.nOffset, nCharsToDelete);
388
389       /* update cursors (including c) */
390       for (i=-1; i<editor->nCursors; i++) {
391         ME_Cursor *pThisCur = editor->pCursors + i;
392         if (i == -1) pThisCur = &c;
393         if (pThisCur->pRun == cursor.pRun) {
394           if (pThisCur->nOffset > cursor.nOffset) {
395             if (pThisCur->nOffset-cursor.nOffset < nCharsToDelete)
396               pThisCur->nOffset = cursor.nOffset;
397             else
398               pThisCur->nOffset -= nCharsToDelete;
399             assert(pThisCur->nOffset >= 0);
400             assert(pThisCur->nOffset <= run->strText->nLen);
401           }
402           if (pThisCur->nOffset == run->strText->nLen)
403           {
404             pThisCur->pRun = ME_FindItemFwd(pThisCur->pRun, diRunOrParagraphOrEnd);
405             assert(pThisCur->pRun->type == diRun);
406             pThisCur->nOffset = 0;
407           }
408         }
409       }
410
411       /* c = updated data now */
412
413       if (c.pRun == cursor.pRun)
414         ME_SkipAndPropagateCharOffset(c.pRun, shift);
415       else
416         ME_PropagateCharOffset(c.pRun, shift);
417
418       if (!cursor.pRun->member.run.strText->nLen)
419       {
420         TRACE("Removing useless run\n");
421         ME_Remove(cursor.pRun);
422         ME_DestroyDisplayItem(cursor.pRun);
423       }
424
425       shift = 0;
426       /*
427       ME_CheckCharOffsets(editor);
428       */
429       continue;
430     }
431   }
432   return TRUE;
433 }
434
435 BOOL ME_DeleteTextAtCursor(ME_TextEditor *editor, int nCursor, int nChars)
436 {
437   assert(nCursor>=0 && nCursor<editor->nCursors);
438   /* text operations set modified state */
439   editor->nModifyStep = 1;
440   return ME_InternalDeleteText(editor, &editor->pCursors[nCursor],
441                                nChars, FALSE);
442 }
443
444 static ME_DisplayItem *
445 ME_InternalInsertTextFromCursor(ME_TextEditor *editor, int nCursor,
446                                 const WCHAR *str, int len, ME_Style *style,
447                                 int flags)
448 {
449   ME_Cursor *p = &editor->pCursors[nCursor];
450
451   editor->bCaretAtEnd = FALSE;
452   
453   assert(p->pRun->type == diRun);
454   
455   return ME_InsertRunAtCursor(editor, p, style, str, len, flags);
456 }
457
458
459 void ME_InsertOLEFromCursor(ME_TextEditor *editor, const REOBJECT* reo, int nCursor)
460 {
461   ME_Style              *pStyle = ME_GetInsertStyle(editor, nCursor);
462   ME_DisplayItem        *di;
463   WCHAR                 space = ' ';
464   
465   /* FIXME no no no */
466   if (ME_IsSelection(editor))
467     ME_DeleteSelection(editor);
468
469   di = ME_InternalInsertTextFromCursor(editor, nCursor, &space, 1, pStyle,
470                                        MERF_GRAPHICS);
471   di->member.run.ole_obj = ALLOC_OBJ(*reo);
472   ME_CopyReObject(di->member.run.ole_obj, reo);
473   ME_ReleaseStyle(pStyle);
474 }
475
476
477 void ME_InsertEndRowFromCursor(ME_TextEditor *editor, int nCursor)
478 {
479   ME_Style              *pStyle = ME_GetInsertStyle(editor, nCursor);
480   WCHAR                 space = ' ';
481
482   /* FIXME no no no */
483   if (ME_IsSelection(editor))
484     ME_DeleteSelection(editor);
485
486   ME_InternalInsertTextFromCursor(editor, nCursor, &space, 1, pStyle,
487                                   MERF_ENDROW);
488   ME_ReleaseStyle(pStyle);
489 }
490
491
492 void ME_InsertTextFromCursor(ME_TextEditor *editor, int nCursor, 
493   const WCHAR *str, int len, ME_Style *style)
494 {
495   const WCHAR *pos;
496   ME_Cursor *p = NULL;
497   int oldLen;
498
499   /* FIXME really HERE ? */
500   if (ME_IsSelection(editor))
501     ME_DeleteSelection(editor);
502
503   /* FIXME: is this too slow? */
504   /* Didn't affect performance for WM_SETTEXT (around 50sec/30K) */
505   oldLen = ME_GetTextLength(editor);
506
507   /* text operations set modified state */
508   editor->nModifyStep = 1;
509
510   assert(style);
511
512   assert(nCursor>=0 && nCursor<editor->nCursors);
513   if (len == -1)
514     len = lstrlenW(str);
515
516   /* grow the text limit to fit our text */
517   if(editor->nTextLimit < oldLen +len)
518     editor->nTextLimit = oldLen + len;
519
520   pos = str;
521
522   while (len)
523   {
524     /* FIXME this sucks - no respect for unicode (what else can be a line separator in unicode?) */
525     while(pos - str < len && *pos != '\r' && *pos != '\n' && *pos != '\t')
526       pos++;
527
528     if (pos != str) { /* handle text */
529       ME_InternalInsertTextFromCursor(editor, nCursor, str, pos-str, style, 0);
530     } else if (*pos == '\t') { /* handle tabs */
531       WCHAR tab = '\t';
532       ME_InternalInsertTextFromCursor(editor, nCursor, &tab, 1, style, MERF_TAB);
533       pos++;
534     } else { /* handle EOLs */
535       ME_DisplayItem *tp, *end_run;
536       ME_Style *tmp_style;
537       int eol_len = 0;
538
539       /* Find number of CR and LF in end of paragraph run */
540       if (*pos =='\r')
541       {
542         if (len > 1 && pos[1] == '\n')
543           eol_len = 2;
544         else if (len > 2 && pos[1] == '\r' && pos[2] == '\n')
545           eol_len = 3;
546         else
547           eol_len = 1;
548       } else {
549         assert(*pos == '\n');
550         eol_len = 1;
551       }
552       pos += eol_len;
553
554       if (!editor->bEmulateVersion10 && eol_len == 3)
555       {
556         /* handle special \r\r\n sequence (richedit 2.x and higher only) */
557         WCHAR space = ' ';
558         ME_InternalInsertTextFromCursor(editor, nCursor, &space, 1, style, 0);
559       } else {
560         ME_String *eol_str;
561
562         if (!editor->bEmulateVersion10) {
563           WCHAR cr = '\r';
564           eol_str = ME_MakeStringN(&cr, 1);
565         } else {
566           eol_str = ME_MakeStringN(str, eol_len);
567         }
568
569         p = &editor->pCursors[nCursor];
570         if (p->nOffset)
571           ME_SplitRunSimple(editor, p);
572         tmp_style = ME_GetInsertStyle(editor, nCursor);
573         /* ME_SplitParagraph increases style refcount */
574         tp = ME_SplitParagraph(editor, p->pRun, p->pRun->member.run.style, eol_str, 0);
575         p->pRun = ME_FindItemFwd(tp, diRun);
576         p->pPara = tp;
577         end_run = ME_FindItemBack(tp, diRun);
578         ME_ReleaseStyle(end_run->member.run.style);
579         end_run->member.run.style = tmp_style;
580         p->nOffset = 0;
581       }
582     }
583     len -= pos - str;
584     str = pos;
585   }
586 }
587
588 /* Move the cursor nRelOfs characters (either forwards or backwards)
589  *
590  * returns the actual number of characters moved.
591  **/
592 int ME_MoveCursorChars(ME_TextEditor *editor, ME_Cursor *cursor, int nRelOfs)
593 {
594   cursor->nOffset += nRelOfs;
595   if (cursor->nOffset < 0)
596   {
597     cursor->nOffset += cursor->pRun->member.run.nCharOfs;
598     if (cursor->nOffset >= 0)
599     {
600       /* new offset in the same paragraph */
601       do {
602         cursor->pRun = ME_FindItemBack(cursor->pRun, diRun);
603       } while (cursor->nOffset < cursor->pRun->member.run.nCharOfs);
604       cursor->nOffset -= cursor->pRun->member.run.nCharOfs;
605       return nRelOfs;
606     }
607
608     cursor->nOffset += cursor->pPara->member.para.nCharOfs;
609     if (cursor->nOffset <= 0)
610     {
611       /* moved to the start of the text */
612       nRelOfs -= cursor->nOffset;
613       ME_SetCursorToStart(editor, cursor);
614       return nRelOfs;
615     }
616
617     /* new offset in a previous paragraph */
618     do {
619       cursor->pPara = cursor->pPara->member.para.prev_para;
620     } while (cursor->nOffset < cursor->pPara->member.para.nCharOfs);
621     cursor->nOffset -= cursor->pPara->member.para.nCharOfs;
622
623     cursor->pRun = ME_FindItemBack(cursor->pPara->member.para.next_para, diRun);
624     while (cursor->nOffset < cursor->pRun->member.run.nCharOfs) {
625       cursor->pRun = ME_FindItemBack(cursor->pRun, diRun);
626     }
627     cursor->nOffset -= cursor->pRun->member.run.nCharOfs;
628   } else if (cursor->nOffset >= cursor->pRun->member.run.strText->nLen) {
629     ME_DisplayItem *next_para;
630     int new_offset;
631
632     new_offset = ME_GetCursorOfs(cursor);
633     next_para = cursor->pPara->member.para.next_para;
634     if (new_offset < next_para->member.para.nCharOfs)
635     {
636       /* new offset in the same paragraph */
637       do {
638         cursor->nOffset -= cursor->pRun->member.run.strText->nLen;
639         cursor->pRun = ME_FindItemFwd(cursor->pRun, diRun);
640       } while (cursor->nOffset >= cursor->pRun->member.run.strText->nLen);
641       return nRelOfs;
642     }
643
644     if (new_offset >= ME_GetTextLength(editor))
645     {
646       /* new offset at the end of the text */
647       ME_SetCursorToEnd(editor, cursor);
648       nRelOfs -= new_offset - ME_GetTextLength(editor);
649       return nRelOfs;
650     }
651
652     /* new offset in a following paragraph */
653     do {
654       cursor->pPara = next_para;
655       next_para = next_para->member.para.next_para;
656     } while (new_offset >= next_para->member.para.nCharOfs);
657
658     cursor->nOffset = new_offset - cursor->pPara->member.para.nCharOfs;
659     cursor->pRun = ME_FindItemFwd(cursor->pPara, diRun);
660     while (cursor->nOffset >= cursor->pRun->member.run.strText->nLen)
661     {
662       cursor->nOffset -= cursor->pRun->member.run.strText->nLen;
663       cursor->pRun = ME_FindItemFwd(cursor->pRun, diRun);
664     }
665   } /* else new offset is in the same run */
666   return nRelOfs;
667 }
668
669
670 static BOOL
671 ME_MoveCursorWords(ME_TextEditor *editor, ME_Cursor *cursor, int nRelOfs)
672 {
673   ME_DisplayItem *pRun = cursor->pRun, *pOtherRun;
674   ME_DisplayItem *pPara = cursor->pPara;
675   int nOffset = cursor->nOffset;
676
677   if (nRelOfs == -1)
678   {
679     /* Backward movement */
680     while (TRUE)
681     {
682       nOffset = ME_CallWordBreakProc(editor, pRun->member.run.strText,
683                                      nOffset, WB_MOVEWORDLEFT);
684       if (nOffset)
685         break;
686       pOtherRun = ME_FindItemBack(pRun, diRunOrParagraph);
687       if (pOtherRun->type == diRun)
688       {
689         if (ME_CallWordBreakProc(editor, pOtherRun->member.run.strText,
690                                  pOtherRun->member.run.strText->nLen - 1,
691                                  WB_ISDELIMITER)
692             && !(pRun->member.run.nFlags & MERF_ENDPARA)
693             && !(cursor->pRun == pRun && cursor->nOffset == 0)
694             && !ME_CallWordBreakProc(editor, pRun->member.run.strText, 0,
695                                      WB_ISDELIMITER))
696           break;
697         pRun = pOtherRun;
698         nOffset = pOtherRun->member.run.strText->nLen;
699       }
700       else if (pOtherRun->type == diParagraph)
701       {
702         if (cursor->pRun == pRun && cursor->nOffset == 0)
703         {
704           pPara = pOtherRun;
705           /* Skip empty start of table row paragraph */
706           if (pPara->member.para.prev_para->member.para.nFlags & MEPF_ROWSTART)
707             pPara = pPara->member.para.prev_para;
708           /* Paragraph breaks are treated as separate words */
709           if (pPara->member.para.prev_para->type == diTextStart)
710             return FALSE;
711
712           pRun = ME_FindItemBack(pPara, diRun);
713           pPara = pPara->member.para.prev_para;
714         }
715         break;
716       }
717     }
718   }
719   else
720   {
721     /* Forward movement */
722     BOOL last_delim = FALSE;
723     
724     while (TRUE)
725     {
726       if (last_delim && !ME_CallWordBreakProc(editor, pRun->member.run.strText,
727                                               nOffset, WB_ISDELIMITER))
728         break;
729       nOffset = ME_CallWordBreakProc(editor, pRun->member.run.strText,
730                                      nOffset, WB_MOVEWORDRIGHT);
731       if (nOffset < pRun->member.run.strText->nLen)
732         break;
733       pOtherRun = ME_FindItemFwd(pRun, diRunOrParagraphOrEnd);
734       if (pOtherRun->type == diRun)
735       {
736         last_delim = ME_CallWordBreakProc(editor, pRun->member.run.strText,
737                                           nOffset - 1, WB_ISDELIMITER);
738         pRun = pOtherRun;
739         nOffset = 0;
740       }
741       else if (pOtherRun->type == diParagraph)
742       {
743         if (pOtherRun->member.para.nFlags & MEPF_ROWSTART)
744             pOtherRun = pOtherRun->member.para.next_para;
745         if (cursor->pRun == pRun) {
746           pPara = pOtherRun;
747           pRun = ME_FindItemFwd(pPara, diRun);
748         }
749         nOffset = 0;
750         break;
751       }
752       else /* diTextEnd */
753       {
754         if (cursor->pRun == pRun)
755           return FALSE;
756         nOffset = 0;
757         break;
758       }
759     }
760   }
761   cursor->pPara = pPara;
762   cursor->pRun = pRun;
763   cursor->nOffset = nOffset;
764   return TRUE;
765 }
766
767
768 static void
769 ME_SelectByType(ME_TextEditor *editor, ME_SelectionType selectionType)
770 {
771   /* pCursor[0] is the end of the selection
772    * pCursor[1] is the start of the selection (or the position selection anchor)
773    * pCursor[2] and [3] are the selection anchors that are backed up
774    * so they are kept when the selection changes for drag selection.
775    */
776
777   editor->nSelectionType = selectionType;
778   switch(selectionType)
779   {
780     case stPosition:
781       break;
782     case stWord:
783       ME_MoveCursorWords(editor, &editor->pCursors[0], +1);
784       editor->pCursors[1] = editor->pCursors[0];
785       ME_MoveCursorWords(editor, &editor->pCursors[1], -1);
786       break;
787     case stLine:
788     case stParagraph:
789     {
790       ME_DisplayItem *pItem;
791       ME_DIType fwdSearchType, backSearchType;
792       if (selectionType == stParagraph) {
793           backSearchType = diParagraph;
794           fwdSearchType = diParagraphOrEnd;
795       } else {
796           backSearchType = diStartRow;
797           fwdSearchType = diStartRowOrParagraphOrEnd;
798       }
799       pItem = ME_FindItemFwd(editor->pCursors[0].pRun, fwdSearchType);
800       assert(pItem);
801       if (pItem->type == diTextEnd)
802           editor->pCursors[0].pRun = ME_FindItemBack(pItem, diRun);
803       else
804           editor->pCursors[0].pRun = ME_FindItemFwd(pItem, diRun);
805       editor->pCursors[0].pPara = ME_GetParagraph(editor->pCursors[0].pRun);
806       editor->pCursors[0].nOffset = 0;
807
808       pItem = ME_FindItemBack(pItem, backSearchType);
809       editor->pCursors[1].pRun = ME_FindItemFwd(pItem, diRun);
810       editor->pCursors[1].pPara = ME_GetParagraph(editor->pCursors[1].pRun);
811       editor->pCursors[1].nOffset = 0;
812       break;
813     }
814     case stDocument:
815       /* Select everything with cursor anchored from the start of the text */
816       editor->nSelectionType = stDocument;
817       ME_SetCursorToStart(editor, &editor->pCursors[1]);
818       ME_SetCursorToEnd(editor, &editor->pCursors[0]);
819       break;
820     default: assert(0);
821   }
822   /* Store the anchor positions for extending the selection. */
823   editor->pCursors[2] = editor->pCursors[0];
824   editor->pCursors[3] = editor->pCursors[1];
825 }
826
827 int ME_GetCursorOfs(const ME_Cursor *cursor)
828 {
829   return cursor->pPara->member.para.nCharOfs
830          + cursor->pRun->member.run.nCharOfs + cursor->nOffset;
831 }
832
833 /* Helper function for ME_FindPixelPos to find paragraph within tables */
834 static ME_DisplayItem* ME_FindPixelPosInTableRow(int x, int y,
835                                                  ME_DisplayItem *para)
836 {
837   ME_DisplayItem *cell, *next_cell;
838   assert(para->member.para.nFlags & MEPF_ROWSTART);
839   cell = para->member.para.next_para->member.para.pCell;
840   assert(cell);
841
842   /* find the cell we are in */
843   while ((next_cell = cell->member.cell.next_cell) != NULL) {
844     if (x < next_cell->member.cell.pt.x)
845     {
846       para = ME_FindItemFwd(cell, diParagraph);
847       /* Found the cell, but there might be multiple paragraphs in
848        * the cell, so need to search down the cell for the paragraph. */
849       while (cell == para->member.para.pCell) {
850         if (y < para->member.para.pt.y + para->member.para.nHeight)
851         {
852           if (para->member.para.nFlags & MEPF_ROWSTART)
853             return ME_FindPixelPosInTableRow(x, y, para);
854           else
855             return para;
856         }
857         para = para->member.para.next_para;
858       }
859       /* Past the end of the cell, so go back to the last cell paragraph */
860       return para->member.para.prev_para;
861     }
862     cell = next_cell;
863   }
864   /* Return table row delimiter */
865   para = ME_FindItemFwd(cell, diParagraph);
866   assert(para->member.para.nFlags & MEPF_ROWEND);
867   assert(para->member.para.pFmt->dwMask & PFM_TABLEROWDELIMITER);
868   assert(para->member.para.pFmt->wEffects & PFE_TABLEROWDELIMITER);
869   return para;
870 }
871
872 static BOOL ME_ReturnFoundPos(ME_TextEditor *editor, ME_DisplayItem *found,
873                                ME_Cursor *result, int rx, BOOL isExact)
874 {
875   assert(found);
876   assert(found->type == diRun);
877   if ((found->member.run.nFlags & MERF_ENDPARA) || rx < 0)
878     rx = 0;
879   result->pRun = found;
880   result->nOffset = ME_CharFromPointCursor(editor, rx, &found->member.run);
881   if (result->nOffset == found->member.run.strText->nLen && rx)
882   {
883     result->pRun = ME_FindItemFwd(result->pRun, diRun);
884     result->nOffset = 0;
885   }
886   result->pPara = ME_GetParagraph(result->pRun);
887   return isExact;
888 }
889
890 /* Finds the run and offset from the pixel position.
891  *
892  * x & y are pixel positions in virtual coordinates into the rich edit control,
893  * so client coordinates must first be adjusted by the scroll position.
894  *
895  * returns TRUE if the result was exactly under the cursor, otherwise returns
896  * FALSE, and result is set to the closest position to the coordinates.
897  */
898 static BOOL ME_FindPixelPos(ME_TextEditor *editor, int x, int y,
899                             ME_Cursor *result, BOOL *is_eol)
900 {
901   ME_DisplayItem *p = editor->pBuffer->pFirst->member.para.next_para;
902   ME_DisplayItem *last = NULL;
903   int rx = 0;
904   BOOL isExact = TRUE;
905
906   x -= editor->rcFormat.left;
907   y -= editor->rcFormat.top;
908
909   if (is_eol)
910     *is_eol = 0;
911
912   /* find paragraph */
913   for (; p != editor->pBuffer->pLast; p = p->member.para.next_para)
914   {
915     assert(p->type == diParagraph);
916     if (y < p->member.para.pt.y + p->member.para.nHeight)
917     {
918       if (p->member.para.nFlags & MEPF_ROWSTART)
919         p = ME_FindPixelPosInTableRow(x, y, p);
920       y -= p->member.para.pt.y;
921       p = ME_FindItemFwd(p, diStartRow);
922       break;
923     } else if (p->member.para.nFlags & MEPF_ROWSTART) {
924       p = ME_GetTableRowEnd(p);
925     }
926   }
927   /* find row */
928   for (; p != editor->pBuffer->pLast; )
929   {
930     ME_DisplayItem *pp;
931     assert(p->type == diStartRow);
932     if (y < p->member.row.pt.y + p->member.row.nHeight)
933     {
934         p = ME_FindItemFwd(p, diRun);
935         break;
936     }
937     pp = ME_FindItemFwd(p, diStartRowOrParagraphOrEnd);
938     if (pp->type != diStartRow)
939     {
940         p = ME_FindItemFwd(p, diRun);
941         break;
942     }
943     p = pp;
944   }
945   if (p == editor->pBuffer->pLast)
946   {
947     /* The position is below the last paragraph, so the last row will be used
948      * rather than the end of the text, so the x position will be used to
949      * determine the offset closest to the pixel position. */
950     isExact = FALSE;
951     p = ME_FindItemBack(p, diStartRow);
952     if (p != NULL){
953       p = ME_FindItemFwd(p, diRun);
954     }
955     else
956     {
957       p = editor->pBuffer->pLast;
958     }
959   }
960   for (; p != editor->pBuffer->pLast; p = p->next)
961   {
962     switch (p->type)
963     {
964     case diRun:
965       rx = x - p->member.run.pt.x;
966       if (rx < p->member.run.nWidth)
967         return ME_ReturnFoundPos(editor, p, result, rx, isExact);
968       break;
969     case diStartRow:
970       isExact = FALSE;
971       p = ME_FindItemFwd(p, diRun);
972       if (is_eol) *is_eol = 1;
973       rx = 0; /* FIXME not sure */
974       return ME_ReturnFoundPos(editor, p, result, rx, isExact);
975     case diCell:
976     case diParagraph:
977     case diTextEnd:
978       isExact = FALSE;
979       rx = 0; /* FIXME not sure */
980       p = last;
981       return ME_ReturnFoundPos(editor, p, result, rx, isExact);
982     default: assert(0);
983     }
984     last = p;
985   }
986   result->pRun = ME_FindItemBack(p, diRun);
987   result->pPara = ME_GetParagraph(result->pRun);
988   result->nOffset = 0;
989   assert(result->pRun->member.run.nFlags & MERF_ENDPARA);
990   return FALSE;
991 }
992
993
994 /* Sets the cursor to the position closest to the pixel position
995  *
996  * x & y are pixel positions in client coordinates.
997  *
998  * isExact will be set to TRUE if the run is directly under the pixel
999  * position, FALSE if it not, unless isExact is set to NULL.
1000  *
1001  * return FALSE if outside client area and the cursor is not set,
1002  * otherwise TRUE is returned.
1003  */
1004 BOOL ME_CharFromPos(ME_TextEditor *editor, int x, int y,
1005                     ME_Cursor *cursor, BOOL *isExact)
1006 {
1007   RECT rc;
1008   BOOL bResult;
1009
1010   ITextHost_TxGetClientRect(editor->texthost, &rc);
1011   if (x < 0 || y < 0 || x >= rc.right || y >= rc.bottom) {
1012     if (isExact) *isExact = FALSE;
1013     return FALSE;
1014   }
1015   x += editor->horz_si.nPos;
1016   y += editor->vert_si.nPos;
1017   bResult = ME_FindPixelPos(editor, x, y, cursor, NULL);
1018   if (isExact) *isExact = bResult;
1019   return TRUE;
1020 }
1021
1022
1023
1024 /* Extends the selection with a word, line, or paragraph selection type.
1025  *
1026  * The selection is anchored by editor->pCursors[2-3] such that the text
1027  * between the anchors will remain selected, and one end will be extended.
1028  *
1029  * editor->pCursors[0] should have the position to extend the selection to
1030  * before this function is called.
1031  *
1032  * Nothing will be done if editor->nSelectionType equals stPosition.
1033  */
1034 static void ME_ExtendAnchorSelection(ME_TextEditor *editor)
1035 {
1036   ME_Cursor tmp_cursor;
1037   int curOfs, anchorStartOfs, anchorEndOfs;
1038   if (editor->nSelectionType == stPosition || editor->nSelectionType == stDocument)
1039       return;
1040   curOfs = ME_GetCursorOfs(&editor->pCursors[0]);
1041   anchorStartOfs = ME_GetCursorOfs(&editor->pCursors[3]);
1042   anchorEndOfs = ME_GetCursorOfs(&editor->pCursors[2]);
1043
1044   tmp_cursor = editor->pCursors[0];
1045   editor->pCursors[0] = editor->pCursors[2];
1046   editor->pCursors[1] = editor->pCursors[3];
1047   if (curOfs < anchorStartOfs)
1048   {
1049       /* Extend the left side of selection */
1050       editor->pCursors[1] = tmp_cursor;
1051       if (editor->nSelectionType == stWord)
1052           ME_MoveCursorWords(editor, &editor->pCursors[1], -1);
1053       else
1054       {
1055           ME_DisplayItem *pItem;
1056           ME_DIType searchType = ((editor->nSelectionType == stLine) ?
1057                                   diStartRowOrParagraph:diParagraph);
1058           pItem = ME_FindItemBack(editor->pCursors[1].pRun, searchType);
1059           editor->pCursors[1].pRun = ME_FindItemFwd(pItem, diRun);
1060           editor->pCursors[1].pPara = ME_GetParagraph(editor->pCursors[1].pRun);
1061           editor->pCursors[1].nOffset = 0;
1062       }
1063   }
1064   else if (curOfs >= anchorEndOfs)
1065   {
1066       /* Extend the right side of selection */
1067       editor->pCursors[0] = tmp_cursor;
1068       if (editor->nSelectionType == stWord)
1069           ME_MoveCursorWords(editor, &editor->pCursors[0], +1);
1070       else
1071       {
1072           ME_DisplayItem *pItem;
1073           ME_DIType searchType = ((editor->nSelectionType == stLine) ?
1074                                   diStartRowOrParagraphOrEnd:diParagraphOrEnd);
1075           pItem = ME_FindItemFwd(editor->pCursors[0].pRun, searchType);
1076           if (pItem->type == diTextEnd)
1077               editor->pCursors[0].pRun = ME_FindItemBack(pItem, diRun);
1078           else
1079               editor->pCursors[0].pRun = ME_FindItemFwd(pItem, diRun);
1080           editor->pCursors[0].pPara = ME_GetParagraph(editor->pCursors[0].pRun);
1081           editor->pCursors[0].nOffset = 0;
1082       }
1083   }
1084 }
1085
1086 void ME_LButtonDown(ME_TextEditor *editor, int x, int y, int clickNum)
1087 {
1088   ME_Cursor tmp_cursor;
1089   int is_selection = 0;
1090   BOOL is_shift;
1091
1092   editor->nUDArrowX = -1;
1093
1094   x += editor->horz_si.nPos;
1095   y += editor->vert_si.nPos;
1096
1097   tmp_cursor = editor->pCursors[0];
1098   is_selection = ME_IsSelection(editor);
1099   is_shift = GetKeyState(VK_SHIFT) < 0;
1100
1101   ME_FindPixelPos(editor, x, y, &editor->pCursors[0], &editor->bCaretAtEnd);
1102
1103   if (x >= editor->rcFormat.left || is_shift)
1104   {
1105     if (clickNum > 1)
1106     {
1107       editor->pCursors[1] = editor->pCursors[0];
1108       if (is_shift) {
1109           if (x >= editor->rcFormat.left)
1110               ME_SelectByType(editor, stWord);
1111           else
1112               ME_SelectByType(editor, stParagraph);
1113       } else if (clickNum % 2 == 0) {
1114           ME_SelectByType(editor, stWord);
1115       } else {
1116           ME_SelectByType(editor, stParagraph);
1117       }
1118     }
1119     else if (!is_shift)
1120     {
1121       editor->nSelectionType = stPosition;
1122       editor->pCursors[1] = editor->pCursors[0];
1123     }
1124     else if (!is_selection)
1125     {
1126       editor->nSelectionType = stPosition;
1127       editor->pCursors[1] = tmp_cursor;
1128     }
1129     else if (editor->nSelectionType != stPosition)
1130     {
1131       ME_ExtendAnchorSelection(editor);
1132     }
1133   }
1134   else
1135   {
1136     if (clickNum < 2) {
1137         ME_SelectByType(editor, stLine);
1138     } else if (clickNum % 2 == 0 || is_shift) {
1139         ME_SelectByType(editor, stParagraph);
1140     } else {
1141         ME_SelectByType(editor, stDocument);
1142     }
1143   }
1144   ME_InvalidateSelection(editor);
1145   ITextHost_TxShowCaret(editor->texthost, FALSE);
1146   ME_ShowCaret(editor);
1147   ME_ClearTempStyle(editor);
1148   ME_SendSelChange(editor);
1149 }
1150
1151 void ME_MouseMove(ME_TextEditor *editor, int x, int y)
1152 {
1153   ME_Cursor tmp_cursor;
1154
1155   if (editor->nSelectionType == stDocument)
1156       return;
1157   x += editor->horz_si.nPos;
1158   y += editor->vert_si.nPos;
1159
1160   tmp_cursor = editor->pCursors[0];
1161   /* FIXME: do something with the return value of ME_FindPixelPos */
1162   ME_FindPixelPos(editor, x, y, &tmp_cursor, &editor->bCaretAtEnd);
1163
1164   ME_InvalidateSelection(editor);
1165   editor->pCursors[0] = tmp_cursor;
1166   ME_ExtendAnchorSelection(editor);
1167
1168   if (editor->nSelectionType != stPosition &&
1169       memcmp(&editor->pCursors[1], &editor->pCursors[3], sizeof(ME_Cursor)))
1170   {
1171       /* The scroll the cursor towards the other end, since it was the one
1172        * extended by ME_ExtendAnchorSelection */
1173       ME_EnsureVisible(editor, &editor->pCursors[1]);
1174   } else {
1175       ME_EnsureVisible(editor, &editor->pCursors[0]);
1176   }
1177
1178   ME_InvalidateSelection(editor);
1179   ITextHost_TxShowCaret(editor->texthost, FALSE);
1180   ME_ShowCaret(editor);
1181   ME_SendSelChange(editor);
1182 }
1183
1184 static ME_DisplayItem *ME_FindRunInRow(ME_TextEditor *editor, ME_DisplayItem *pRow, 
1185                                 int x, int *pOffset, int *pbCaretAtEnd)
1186 {
1187   ME_DisplayItem *pNext, *pLastRun;
1188   pNext = ME_FindItemFwd(pRow, diRunOrStartRow);
1189   assert(pNext->type == diRun);
1190   if (pbCaretAtEnd) *pbCaretAtEnd = FALSE;
1191   if (pOffset) *pOffset = 0;
1192   do {
1193     int run_x = pNext->member.run.pt.x;
1194     int width = pNext->member.run.nWidth;
1195     if (x < run_x)
1196     {
1197       return pNext;
1198     }
1199     if (x >= run_x && x < run_x+width)
1200     {
1201       int ch = ME_CharFromPointCursor(editor, x-run_x, &pNext->member.run);
1202       ME_String *s = pNext->member.run.strText;
1203       if (ch < s->nLen) {
1204         if (pOffset)
1205           *pOffset = ch;
1206         return pNext;          
1207       }
1208     }
1209     pLastRun = pNext;
1210     pNext = ME_FindItemFwd(pNext, diRunOrStartRow);
1211   } while(pNext && pNext->type == diRun);
1212   
1213   if ((pLastRun->member.run.nFlags & MERF_ENDPARA) == 0)
1214   {
1215     pNext = ME_FindItemFwd(pNext, diRun);
1216     if (pbCaretAtEnd) *pbCaretAtEnd = TRUE;
1217     return pNext;
1218   } else {
1219     return pLastRun;
1220   }
1221 }
1222
1223 static int ME_GetXForArrow(ME_TextEditor *editor, ME_Cursor *pCursor)
1224 {
1225   ME_DisplayItem *pRun = pCursor->pRun;
1226   int x;
1227
1228   if (editor->nUDArrowX != -1)
1229     x = editor->nUDArrowX;
1230   else {
1231     if (editor->bCaretAtEnd)
1232     {
1233       pRun = ME_FindItemBack(pRun, diRun);
1234       assert(pRun);
1235       x = pRun->member.run.pt.x + pRun->member.run.nWidth;
1236     }
1237     else {
1238       x = pRun->member.run.pt.x;
1239       x += ME_PointFromChar(editor, &pRun->member.run, pCursor->nOffset);
1240     }
1241     editor->nUDArrowX = x;
1242   }
1243   return x;
1244 }
1245
1246
1247 static void
1248 ME_MoveCursorLines(ME_TextEditor *editor, ME_Cursor *pCursor, int nRelOfs)
1249 {
1250   ME_DisplayItem *pRun = pCursor->pRun;
1251   ME_DisplayItem *pOldPara = pCursor->pPara;
1252   ME_DisplayItem *pItem, *pNewPara;
1253   int x = ME_GetXForArrow(editor, pCursor);
1254
1255   if (editor->bCaretAtEnd && !pCursor->nOffset)
1256     if (!ME_PrevRun(&pOldPara, &pRun))
1257       return;
1258
1259   if (nRelOfs == -1)
1260   {
1261     /* start of this row */
1262     pItem = ME_FindItemBack(pRun, diStartRow);
1263     assert(pItem);
1264     /* start of the previous row */
1265     pItem = ME_FindItemBack(pItem, diStartRow);
1266     if (!pItem)
1267       return; /* row not found - ignore */
1268     pNewPara = ME_GetParagraph(pItem);
1269     if (pOldPara->member.para.nFlags & MEPF_ROWEND ||
1270         (pOldPara->member.para.pCell &&
1271          pOldPara->member.para.pCell != pNewPara->member.para.pCell))
1272     {
1273       /* Brought out of a cell */
1274       pNewPara = ME_GetTableRowStart(pOldPara)->member.para.prev_para;
1275       if (pNewPara->type == diTextStart)
1276         return; /* At the top, so don't go anywhere. */
1277       pItem = ME_FindItemFwd(pNewPara, diStartRow);
1278     }
1279     if (pNewPara->member.para.nFlags & MEPF_ROWEND)
1280     {
1281       /* Brought into a table row */
1282       ME_Cell *cell = &ME_FindItemBack(pNewPara, diCell)->member.cell;
1283       while (x < cell->pt.x && cell->prev_cell)
1284         cell = &cell->prev_cell->member.cell;
1285       if (cell->next_cell) /* else - we are still at the end of the row */
1286         pItem = ME_FindItemBack(cell->next_cell, diStartRow);
1287     }
1288   }
1289   else
1290   {
1291     /* start of the next row */
1292     pItem = ME_FindItemFwd(pRun, diStartRow);
1293     if (!pItem)
1294       return; /* row not found - ignore */
1295     pNewPara = ME_GetParagraph(pItem);
1296     if (pOldPara->member.para.nFlags & MEPF_ROWSTART ||
1297         (pOldPara->member.para.pCell &&
1298          pOldPara->member.para.pCell != pNewPara->member.para.pCell))
1299     {
1300       /* Brought out of a cell */
1301       pNewPara = ME_GetTableRowEnd(pOldPara)->member.para.next_para;
1302       if (pNewPara->type == diTextEnd)
1303         return; /* At the bottom, so don't go anywhere. */
1304       pItem = ME_FindItemFwd(pNewPara, diStartRow);
1305     }
1306     if (pNewPara->member.para.nFlags & MEPF_ROWSTART)
1307     {
1308       /* Brought into a table row */
1309       ME_DisplayItem *cell = ME_FindItemFwd(pNewPara, diCell);
1310       while (cell->member.cell.next_cell &&
1311              x >= cell->member.cell.next_cell->member.cell.pt.x)
1312         cell = cell->member.cell.next_cell;
1313       pItem = ME_FindItemFwd(cell, diStartRow);
1314     }
1315   }
1316   if (!pItem)
1317   {
1318     /* row not found - ignore */
1319     return;
1320   }
1321   pCursor->pRun = ME_FindRunInRow(editor, pItem, x, &pCursor->nOffset, &editor->bCaretAtEnd);
1322   pCursor->pPara = ME_GetParagraph(pCursor->pRun);
1323   assert(pCursor->pRun);
1324   assert(pCursor->pRun->type == diRun);
1325 }
1326
1327 static void ME_ArrowPageUp(ME_TextEditor *editor, ME_Cursor *pCursor)
1328 {
1329   ME_DisplayItem *p = ME_FindItemFwd(editor->pBuffer->pFirst, diStartRow);
1330
1331   if (editor->vert_si.nPos < p->member.row.nHeight)
1332   {
1333     ME_SetCursorToStart(editor, pCursor);
1334     editor->bCaretAtEnd = FALSE;
1335     /* Native clears seems to clear this x value on page up at the top
1336      * of the text, but not on page down at the end of the text.
1337      * Doesn't make sense, but we try to be bug for bug compatible. */
1338     editor->nUDArrowX = -1;
1339   } else {
1340     ME_DisplayItem *pRun = pCursor->pRun;
1341     ME_DisplayItem *pLast;
1342     int x, y, yd, yp;
1343     int yOldScrollPos = editor->vert_si.nPos;
1344
1345     x = ME_GetXForArrow(editor, pCursor);
1346     if (!pCursor->nOffset && editor->bCaretAtEnd)
1347       pRun = ME_FindItemBack(pRun, diRun);
1348
1349     p = ME_FindItemBack(pRun, diStartRowOrParagraph);
1350     assert(p->type == diStartRow);
1351     yp = ME_FindItemBack(p, diParagraph)->member.para.pt.y;
1352     y = yp + p->member.row.pt.y;
1353
1354     ME_ScrollUp(editor, editor->sizeWindow.cy);
1355     /* Only move the cursor by the amount scrolled. */
1356     yd = y + editor->vert_si.nPos - yOldScrollPos;
1357     pLast = p;
1358
1359     do {
1360       p = ME_FindItemBack(p, diStartRowOrParagraph);
1361       if (!p)
1362         break;
1363       if (p->type == diParagraph) { /* crossing paragraphs */
1364         if (p->member.para.prev_para == NULL)
1365           break;
1366         yp = p->member.para.prev_para->member.para.pt.y;
1367         continue;
1368       }
1369       y = yp + p->member.row.pt.y;
1370       if (y < yd)
1371         break;
1372       pLast = p;
1373     } while(1);
1374
1375     pCursor->pRun = ME_FindRunInRow(editor, pLast, x, &pCursor->nOffset,
1376                                     &editor->bCaretAtEnd);
1377     pCursor->pPara = ME_GetParagraph(pCursor->pRun);
1378   }
1379   assert(pCursor->pRun);
1380   assert(pCursor->pRun->type == diRun);
1381 }
1382
1383 static void ME_ArrowPageDown(ME_TextEditor *editor, ME_Cursor *pCursor)
1384 {
1385   ME_DisplayItem *pLast;
1386   int x, y;
1387
1388   /* Find y position of the last row */
1389   pLast = editor->pBuffer->pLast;
1390   y = pLast->member.para.prev_para->member.para.pt.y
1391       + ME_FindItemBack(pLast, diStartRow)->member.row.pt.y;
1392
1393   x = ME_GetXForArrow(editor, pCursor);
1394
1395   if (editor->vert_si.nPos >= y - editor->sizeWindow.cy)
1396   {
1397     ME_SetCursorToEnd(editor, pCursor);
1398     editor->bCaretAtEnd = FALSE;
1399   } else {
1400     ME_DisplayItem *pRun = pCursor->pRun;
1401     ME_DisplayItem *p;
1402     int yd, yp;
1403     int yOldScrollPos = editor->vert_si.nPos;
1404
1405     if (!pCursor->nOffset && editor->bCaretAtEnd)
1406       pRun = ME_FindItemBack(pRun, diRun);
1407
1408     p = ME_FindItemBack(pRun, diStartRowOrParagraph);
1409     assert(p->type == diStartRow);
1410     yp = ME_FindItemBack(p, diParagraph)->member.para.pt.y;
1411     y = yp + p->member.row.pt.y;
1412
1413     /* For native richedit controls:
1414      * v1.0 - v3.1 can only scroll down as far as the scrollbar lets us
1415      * v4.1 can scroll past this position here. */
1416     ME_ScrollDown(editor, editor->sizeWindow.cy);
1417     /* Only move the cursor by the amount scrolled. */
1418     yd = y + editor->vert_si.nPos - yOldScrollPos;
1419     pLast = p;
1420
1421     do {
1422       p = ME_FindItemFwd(p, diStartRowOrParagraph);
1423       if (!p)
1424         break;
1425       if (p->type == diParagraph) {
1426         yp = p->member.para.pt.y;
1427         continue;
1428       }
1429       y = yp + p->member.row.pt.y;
1430       if (y >= yd)
1431         break;
1432       pLast = p;
1433     } while(1);
1434
1435     pCursor->pRun = ME_FindRunInRow(editor, pLast, x, &pCursor->nOffset,
1436                                     &editor->bCaretAtEnd);
1437     pCursor->pPara = ME_GetParagraph(pCursor->pRun);
1438   }
1439   assert(pCursor->pRun);
1440   assert(pCursor->pRun->type == diRun);
1441 }
1442
1443 static void ME_ArrowHome(ME_TextEditor *editor, ME_Cursor *pCursor)
1444 {
1445   ME_DisplayItem *pRow = ME_FindItemBack(pCursor->pRun, diStartRow);
1446   if (pRow) {
1447     ME_DisplayItem *pRun;
1448     if (editor->bCaretAtEnd && !pCursor->nOffset) {
1449       pRow = ME_FindItemBack(pRow, diStartRow);
1450       if (!pRow)
1451         return;
1452     }
1453     pRun = ME_FindItemFwd(pRow, diRun);
1454     if (pRun) {
1455       pCursor->pRun = pRun;
1456       assert(pCursor->pPara == ME_GetParagraph(pRun));
1457       pCursor->nOffset = 0;
1458     }
1459   }
1460   editor->bCaretAtEnd = FALSE;
1461 }
1462
1463 static void ME_ArrowCtrlHome(ME_TextEditor *editor, ME_Cursor *pCursor)
1464 {
1465   ME_SetCursorToStart(editor, pCursor);
1466   editor->bCaretAtEnd = FALSE;
1467 }
1468
1469 static void ME_ArrowEnd(ME_TextEditor *editor, ME_Cursor *pCursor)
1470 {
1471   ME_DisplayItem *pRow;
1472
1473   if (editor->bCaretAtEnd && !pCursor->nOffset)
1474     return;
1475
1476   pRow = ME_FindItemFwd(pCursor->pRun, diStartRowOrParagraphOrEnd);
1477   assert(pRow);
1478   if (pRow->type == diStartRow) {
1479     ME_DisplayItem *pRun = ME_FindItemFwd(pRow, diRun);
1480     assert(pRun);
1481     pCursor->pRun = pRun;
1482     assert(pCursor->pPara == ME_GetParagraph(pCursor->pRun));
1483     pCursor->nOffset = 0;
1484     editor->bCaretAtEnd = TRUE;
1485     return;
1486   }
1487   pCursor->pRun = ME_FindItemBack(pRow, diRun);
1488   assert(pCursor->pRun && pCursor->pRun->member.run.nFlags & MERF_ENDPARA);
1489   assert(pCursor->pPara == ME_GetParagraph(pCursor->pRun));
1490   pCursor->nOffset = 0;
1491   editor->bCaretAtEnd = FALSE;
1492 }
1493
1494 static void ME_ArrowCtrlEnd(ME_TextEditor *editor, ME_Cursor *pCursor)
1495 {
1496   ME_SetCursorToEnd(editor, pCursor);
1497   editor->bCaretAtEnd = FALSE;
1498 }
1499
1500 BOOL ME_IsSelection(ME_TextEditor *editor)
1501 {
1502   return editor->pCursors[0].pRun != editor->pCursors[1].pRun ||
1503          editor->pCursors[0].nOffset != editor->pCursors[1].nOffset;
1504 }
1505
1506 void ME_DeleteSelection(ME_TextEditor *editor)
1507 {
1508   int from, to;
1509   int nStartCursor = ME_GetSelectionOfs(editor, &from, &to);
1510   ME_DeleteTextAtCursor(editor, nStartCursor, to - from);
1511 }
1512
1513 ME_Style *ME_GetSelectionInsertStyle(ME_TextEditor *editor)
1514 {
1515   return ME_GetInsertStyle(editor, 0);
1516 }
1517
1518 void ME_SendSelChange(ME_TextEditor *editor)
1519 {
1520   SELCHANGE sc;
1521
1522   if (!(editor->nEventMask & ENM_SELCHANGE))
1523     return;
1524
1525   sc.nmhdr.hwndFrom = NULL;
1526   sc.nmhdr.idFrom = 0;
1527   sc.nmhdr.code = EN_SELCHANGE;
1528   ME_GetSelectionOfs(editor, &sc.chrg.cpMin, &sc.chrg.cpMax);
1529   sc.seltyp = SEL_EMPTY;
1530   if (sc.chrg.cpMin != sc.chrg.cpMax)
1531     sc.seltyp |= SEL_TEXT;
1532   if (sc.chrg.cpMin < sc.chrg.cpMax+1) /* what were RICHEDIT authors thinking ? */
1533     sc.seltyp |= SEL_MULTICHAR;
1534   TRACE("cpMin=%d cpMax=%d seltyp=%d (%s %s)\n",
1535     sc.chrg.cpMin, sc.chrg.cpMax, sc.seltyp,
1536     (sc.seltyp & SEL_TEXT) ? "SEL_TEXT" : "",
1537     (sc.seltyp & SEL_MULTICHAR) ? "SEL_MULTICHAR" : "");
1538   if (sc.chrg.cpMin != editor->notified_cr.cpMin || sc.chrg.cpMax != editor->notified_cr.cpMax)
1539   {
1540     ME_ClearTempStyle(editor);
1541
1542     editor->notified_cr = sc.chrg;
1543     ITextHost_TxNotify(editor->texthost, sc.nmhdr.code, &sc);
1544   }
1545 }
1546
1547 BOOL
1548 ME_ArrowKey(ME_TextEditor *editor, int nVKey, BOOL extend, BOOL ctrl)
1549 {
1550   int nCursor = 0;
1551   ME_Cursor *p = &editor->pCursors[nCursor];
1552   ME_Cursor tmp_curs = *p;
1553   BOOL success = FALSE;
1554
1555   ME_CheckCharOffsets(editor);
1556   switch(nVKey) {
1557     case VK_LEFT:
1558       editor->bCaretAtEnd = 0;
1559       if (ctrl)
1560         success = ME_MoveCursorWords(editor, &tmp_curs, -1);
1561       else
1562         success = ME_MoveCursorChars(editor, &tmp_curs, -1);
1563       break;
1564     case VK_RIGHT:
1565       editor->bCaretAtEnd = 0;
1566       if (ctrl)
1567         success = ME_MoveCursorWords(editor, &tmp_curs, +1);
1568       else
1569         success = ME_MoveCursorChars(editor, &tmp_curs, +1);
1570       break;
1571     case VK_UP:
1572       ME_MoveCursorLines(editor, &tmp_curs, -1);
1573       break;
1574     case VK_DOWN:
1575       ME_MoveCursorLines(editor, &tmp_curs, +1);
1576       break;
1577     case VK_PRIOR:
1578       ME_ArrowPageUp(editor, &tmp_curs);
1579       break;
1580     case VK_NEXT:
1581       ME_ArrowPageDown(editor, &tmp_curs);
1582       break;
1583     case VK_HOME: {
1584       if (ctrl)
1585         ME_ArrowCtrlHome(editor, &tmp_curs);
1586       else
1587         ME_ArrowHome(editor, &tmp_curs);
1588       editor->bCaretAtEnd = 0;
1589       break;
1590     }
1591     case VK_END:
1592       if (ctrl)
1593         ME_ArrowCtrlEnd(editor, &tmp_curs);
1594       else
1595         ME_ArrowEnd(editor, &tmp_curs);
1596       break;
1597   }
1598
1599   if (!extend)
1600     editor->pCursors[1] = tmp_curs;
1601   *p = tmp_curs;
1602
1603   ME_InvalidateSelection(editor);
1604   ME_Repaint(editor);
1605   ITextHost_TxShowCaret(editor->texthost, FALSE);
1606   ME_EnsureVisible(editor, &tmp_curs);
1607   ME_ShowCaret(editor);
1608   ME_SendSelChange(editor);
1609   return success;
1610 }