riched20: Allow NUL characters.
[wine] / dlls / riched20 / caret.c
1 /*
2  * RichEdit - Caret and selection functions.
3  *
4  * Copyright 2004 by Krzysztof Foltman
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21
22 #include "editor.h"
23
24 WINE_DEFAULT_DEBUG_CHANNEL(richedit);
25
26 void ME_GetSelection(ME_TextEditor *editor, int *from, int *to)
27 {
28   *from = ME_GetCursorOfs(editor, 0);
29   *to =   ME_GetCursorOfs(editor, 1);
30   
31   if (*from > *to)
32   {
33     int tmp = *from;
34     *from = *to;
35     *to = tmp;    
36   }
37 }
38
39 int ME_GetTextLength(ME_TextEditor *editor)
40 {
41   return ME_CharOfsFromRunOfs(editor, ME_FindItemBack(editor->pBuffer->pLast, diRun), 0);   
42 }
43
44
45 int ME_GetTextLengthEx(ME_TextEditor *editor, GETTEXTLENGTHEX *how)
46 {
47   int length;
48   
49   if (how->flags & GTL_PRECISE && how->flags & GTL_CLOSE)
50     return E_INVALIDARG;
51   if (how->flags & GTL_NUMCHARS && how->flags & GTL_NUMBYTES)
52     return E_INVALIDARG;
53   
54   length = ME_GetTextLength(editor);
55   
56   if (how->flags & GTL_USECRLF)
57     length += editor->nParagraphs;
58   
59   if (how->flags & GTL_NUMBYTES)
60   {
61     CPINFO cpinfo;
62     
63     if (how->codepage == 1200)
64       return length * 2;
65     if (how->flags & GTL_PRECISE)
66       FIXME("GTL_PRECISE flag unsupported. Using GTL_CLOSE\n");
67     if (GetCPInfo(how->codepage, &cpinfo))
68       return length * cpinfo.MaxCharSize;
69     ERR("Invalid codepage %u\n", how->codepage);
70     return E_INVALIDARG;
71   }
72   return length; 
73 }
74
75
76 void ME_SetSelection(ME_TextEditor *editor, int from, int to)
77 {
78   if (from == 0 && to == -1)
79   {
80     editor->pCursors[1].pRun = ME_FindItemFwd(editor->pBuffer->pFirst, diRun); 
81     editor->pCursors[1].nOffset = 0; 
82     editor->pCursors[0].pRun = ME_FindItemBack(editor->pBuffer->pLast, diRun); 
83     editor->pCursors[0].nOffset = 0; 
84     ME_Repaint(editor);
85     ME_ClearTempStyle(editor);
86     return;
87   }
88   if (from == -1)
89   {
90     editor->pCursors[1] = editor->pCursors[0]; 
91     ME_Repaint(editor);
92     ME_ClearTempStyle(editor);
93     return;
94   }
95   if (from>to)
96   {
97     int tmp = from;
98     from = to;
99     to = tmp;
100   }
101   ME_RunOfsFromCharOfs(editor, from, &editor->pCursors[1].pRun, &editor->pCursors[1].nOffset);
102   ME_RunOfsFromCharOfs(editor, to, &editor->pCursors[0].pRun, &editor->pCursors[0].nOffset);  
103 }
104
105 void ME_MoveCaret(ME_TextEditor *editor)
106 {
107   HDC hDC = GetDC(editor->hWnd);
108   ME_Context c;
109
110   ME_Cursor *pCursor = &editor->pCursors[0];
111   ME_DisplayItem *pCursorRun = pCursor->pRun;
112   ME_DisplayItem *pSizeRun = pCursor->pRun;
113   
114   ME_InitContext(&c, editor, hDC);
115   assert(!pCursor->nOffset || !editor->bCaretAtEnd);
116   
117   if (pCursorRun->type == diRun) {
118     ME_DisplayItem *row = ME_FindItemBack(pCursorRun, diStartRowOrParagraph);
119     if (row) {
120       ME_DisplayItem *run = pCursorRun;
121       ME_DisplayItem *para;
122       SIZE sz = {0, 0};
123       if (!pCursor->nOffset && !editor->bCaretAtEnd)
124       {
125         ME_DisplayItem *prev = ME_FindItemBack(pCursorRun, diRunOrStartRow);
126         if (prev->type == diRun)
127           pSizeRun = prev;
128       }
129       assert(row->type == diStartRow); /* paragraph -> run without start row ?*/
130       para = ME_FindItemBack(row, diParagraph);
131       if (editor->bCaretAtEnd && !pCursor->nOffset && 
132           run == ME_FindItemFwd(row, diRun))
133       {
134         ME_DisplayItem *tmp = ME_FindItemBack(row, diRunOrParagraph);
135         if (tmp->type == diRun)
136         {
137           row = ME_FindItemBack(tmp, diStartRow);
138           pSizeRun = run = tmp;
139           sz = ME_GetRunSize(&c, &para->member.para, &run->member.run, ME_StrLen(run->member.run.strText));
140         }
141       }
142       if (pCursor->nOffset && !(run->member.run.nFlags & MERF_SKIPPED)) {
143         sz = ME_GetRunSize(&c, &para->member.para, &run->member.run, pCursor->nOffset);
144       }
145       CreateCaret(editor->hWnd, NULL, 0, pSizeRun->member.run.nAscent+pSizeRun->member.run.nDescent);
146       SetCaretPos(run->member.run.pt.x+sz.cx,
147         para->member.para.nYPos+row->member.row.nBaseline+pSizeRun->member.run.pt.y-pSizeRun->member.run.nAscent-ME_GetYScrollPos(editor));
148     } else {
149       assert(0 == "Wrapped paragraph run without a row?");
150       CreateCaret(editor->hWnd, NULL, 0, 10);
151       SetCaretPos(0,0);
152     }
153   }  
154   else {
155     assert(0 == "Cursor not on a run");
156     CreateCaret(editor->hWnd, NULL, 0, 10); /* FIXME use global font */
157     SetCaretPos(0,0);
158   }
159   ME_DestroyContext(&c);
160   ReleaseDC(editor->hWnd, hDC);
161 }
162
163 void ME_ShowCaret(ME_TextEditor *ed)
164 {
165   ME_MoveCaret(ed);
166   ShowCaret(ed->hWnd);
167 }
168
169 void ME_HideCaret(ME_TextEditor *ed)
170 {
171   HideCaret(ed->hWnd);
172   DestroyCaret();
173 }
174
175 void ME_InternalDeleteText(ME_TextEditor *editor, int nOfs, 
176   int nChars)
177 {
178   ME_Cursor c;
179   int shift = 0;
180   
181   while(nChars > 0)
182   {
183     ME_Run *run;
184     ME_CursorFromCharOfs(editor, nOfs, &c);
185     run = &c.pRun->member.run;
186     if (run->nFlags & MERF_ENDPARA) {
187       if (!ME_FindItemFwd(c.pRun, diParagraph))
188       {
189         return;
190       }
191       ME_JoinParagraphs(editor, ME_GetParagraph(c.pRun));
192       /* ME_SkipAndPropagateCharOffset(p->pRun, shift); */
193       ME_CheckCharOffsets(editor);
194       nChars--;
195       if (editor->bEmulateVersion10 && nChars)
196         nChars--;
197       continue;
198     }
199     else
200     {
201       ME_Cursor cursor;
202       int nIntendedChars = nChars;
203       int nCharsToDelete = nChars;
204       int i;
205       int loc = c.nOffset;
206       
207       ME_FindItemBack(c.pRun, diParagraph)->member.para.nFlags |= MEPF_REWRAP;
208       
209       cursor = c;
210       ME_StrRelPos(run->strText, loc, &nChars);
211       /* nChars is the number of characters that should be deleted from the
212          FOLLOWING runs (these AFTER cursor.pRun)
213          nCharsToDelete is a number of chars to delete from THIS run */
214       nCharsToDelete -= nChars;
215       shift -= nCharsToDelete;
216       TRACE("Deleting %d (intended %d-remaning %d) chars at %d in '%s' (%d)\n", 
217         nCharsToDelete, nIntendedChars, nChars, c.nOffset, 
218         debugstr_w(run->strText->szData), run->strText->nLen);
219
220       if (!c.nOffset && ME_StrVLen(run->strText) == nCharsToDelete)
221       {
222         /* undo = reinsert whole run */
223         /* nOfs is a character offset (from the start of the document
224            to the current (deleted) run */
225         ME_UndoItem *pUndo = ME_AddUndoItem(editor, diUndoInsertRun, c.pRun);
226         if (pUndo)
227           pUndo->di.member.run.nCharOfs = nOfs;
228       }
229       else
230       {
231         /* undo = reinsert partial run */
232         ME_UndoItem *pUndo = ME_AddUndoItem(editor, diUndoInsertRun, c.pRun);
233         if (pUndo) {
234           ME_DestroyString(pUndo->di.member.run.strText);
235           pUndo->di.member.run.nCharOfs = nOfs;
236           pUndo->di.member.run.strText = ME_MakeStringN(run->strText->szData+c.nOffset, nCharsToDelete);
237         }
238       }
239       TRACE("Post deletion string: %s (%d)\n", debugstr_w(run->strText->szData), run->strText->nLen);
240       TRACE("Shift value: %d\n", shift);
241       ME_StrDeleteV(run->strText, c.nOffset, nCharsToDelete);
242       
243       /* update cursors (including c) */
244       for (i=-1; i<editor->nCursors; i++) {
245         ME_Cursor *pThisCur = editor->pCursors + i; 
246         if (i == -1) pThisCur = &c;
247         if (pThisCur->pRun == cursor.pRun) {
248           if (pThisCur->nOffset > cursor.nOffset) {
249             if (pThisCur->nOffset-cursor.nOffset < nCharsToDelete)
250               pThisCur->nOffset = cursor.nOffset;
251             else
252               pThisCur->nOffset -= nCharsToDelete;
253             assert(pThisCur->nOffset >= 0);
254             assert(pThisCur->nOffset <= ME_StrVLen(run->strText));
255           }
256           if (pThisCur->nOffset == ME_StrVLen(run->strText))
257           {
258             pThisCur->pRun = ME_FindItemFwd(pThisCur->pRun, diRunOrParagraphOrEnd);
259             assert(pThisCur->pRun->type == diRun);
260             pThisCur->nOffset = 0;
261           }
262         }
263       }
264       
265       /* c = updated data now */
266       
267       if (c.pRun == cursor.pRun)
268         ME_SkipAndPropagateCharOffset(c.pRun, shift);
269       else
270         ME_PropagateCharOffset(c.pRun, shift);
271
272       if (!ME_StrVLen(cursor.pRun->member.run.strText))
273       {
274         TRACE("Removing useless run\n");
275         ME_Remove(cursor.pRun);
276         ME_DestroyDisplayItem(cursor.pRun);
277       }
278       
279       shift = 0;
280       /*
281       ME_CheckCharOffsets(editor);
282       */
283       continue;
284     }
285   }
286 }
287
288 void ME_DeleteTextAtCursor(ME_TextEditor *editor, int nCursor, 
289   int nChars)
290 {  
291   assert(nCursor>=0 && nCursor<editor->nCursors);
292   ME_InternalDeleteText(editor, ME_GetCursorOfs(editor, nCursor), nChars);
293 }
294
295 static WCHAR wszSpace[] = {' ', 0};
296
297 /* FIXME this is temporary, just to have something to test how bad graphics handler is */
298 void ME_InsertGraphicsFromCursor(ME_TextEditor *editor, int nCursor)
299 {
300   ME_Cursor *pCursor = &editor->pCursors[nCursor];
301   ME_DisplayItem *pItem = NULL;
302   ME_DisplayItem *pNewRun = NULL;
303   ME_Style *pStyle = ME_GetInsertStyle(editor, nCursor);
304   ME_UndoItem *pUndo;
305   
306   /* FIXME no no no */
307   if (ME_IsSelection(editor))
308     ME_DeleteSelection(editor);
309
310   pUndo = ME_AddUndoItem(editor, diUndoDeleteRun, NULL);
311   if (pUndo) {
312     pUndo->nStart = pCursor->nOffset + pCursor->pRun->member.run.nCharOfs + ME_GetParagraph(pCursor->pRun)->member.para.nCharOfs;
313     pUndo->nLen = 1;
314   }
315   if (pCursor->nOffset)
316   {
317     ME_SplitRunSimple(editor, pCursor->pRun, pCursor->nOffset);
318   }
319   pItem = pCursor->pRun;
320   pNewRun = ME_MakeRun(pStyle, ME_MakeStringN(wszSpace, 1), MERF_GRAPHICS);
321   pNewRun->member.run.nCharOfs = pCursor->pRun->member.run.nCharOfs;
322   ME_InsertBefore(pCursor->pRun, pNewRun);
323   ME_PropagateCharOffset(pItem, 1);
324   ME_CheckCharOffsets(editor);
325   ME_SendSelChange(editor);
326 }
327
328
329 static void
330 ME_InternalInsertTextFromCursor(ME_TextEditor *editor, int nCursor,
331                                 const WCHAR *str, int len, ME_Style *style,
332                                 int flags)
333 {
334   ME_Cursor *p = &editor->pCursors[nCursor];
335
336   editor->bCaretAtEnd = FALSE;
337   
338   assert(p->pRun->type == diRun);
339   
340   ME_InsertRunAtCursor(editor, p, style, str, len, flags);
341 }
342
343
344 void ME_InsertTextFromCursor(ME_TextEditor *editor, int nCursor, 
345   const WCHAR *str, int len, ME_Style *style)
346 {
347   const WCHAR *pos;
348   ME_Cursor *p = NULL;
349
350   assert(style);
351
352   /* FIXME really HERE ? */
353   if (ME_IsSelection(editor))
354     ME_DeleteSelection(editor);
355
356   assert(nCursor>=0 && nCursor<editor->nCursors);
357   if (len == -1)
358     len = lstrlenW(str);
359   while (len)
360   {
361     pos = str;
362     /* FIXME this sucks - no respect for unicode (what else can be a line separator in unicode?) */
363     while(pos-str < len && *pos != '\r' && *pos != '\n' && *pos != '\t')
364       pos++;
365     if (pos-str < len && *pos == '\t') { /* handle tabs */
366       WCHAR tab = '\t';
367
368       if (pos!=str)
369         ME_InternalInsertTextFromCursor(editor, nCursor, str, pos-str, style, 0);
370     
371       ME_InternalInsertTextFromCursor(editor, nCursor, &tab, 1, style, MERF_TAB);
372  
373       pos++;
374       if(pos-str <= len) {
375         len -= pos - str;
376         str = pos;
377         continue;
378       }
379     }
380     if (pos-str < len) {   /* handle EOLs */
381       ME_DisplayItem *tp, *end_run;
382       ME_Style *tmp_style;
383       if (pos!=str)
384         ME_InternalInsertTextFromCursor(editor, nCursor, str, pos-str, style, 0);
385       p = &editor->pCursors[nCursor];
386       if (p->nOffset) {
387         ME_SplitRunSimple(editor, p->pRun, p->nOffset);
388         p = &editor->pCursors[nCursor];
389       }
390       tmp_style = ME_GetInsertStyle(editor, nCursor);
391       /* ME_SplitParagraph increases style refcount */
392       tp = ME_SplitParagraph(editor, p->pRun, p->pRun->member.run.style);
393       p->pRun = ME_FindItemFwd(tp, diRun);
394       end_run = ME_FindItemBack(tp, diRun);
395       ME_ReleaseStyle(end_run->member.run.style);
396       end_run->member.run.style = tmp_style;
397       p->nOffset = 0;
398       if(pos-str < len && *pos =='\r')
399         pos++;
400       if(pos-str < len && *pos =='\n')
401         pos++;
402       if(pos-str <= len) {
403         len -= pos - str;
404         str = pos;
405         continue;
406       }
407     }
408     ME_InternalInsertTextFromCursor(editor, nCursor, str, len, style, 0);
409     len = 0;
410   }
411 }
412
413 static BOOL ME_ArrowLeft(ME_TextEditor *editor, ME_Cursor *p)
414 {
415   if (p->nOffset) {
416     p->nOffset = ME_StrRelPos2(p->pRun->member.run.strText, p->nOffset, -1);
417     return TRUE;
418   }
419   else
420   {
421     ME_DisplayItem *pRun = ME_FindItemBack(p->pRun, diRunOrParagraph);
422     assert(pRun);
423     if (pRun->type == diRun) {
424       p->pRun = pRun;
425       assert(p->pRun->type == diRun);
426       assert(pRun->member.run.strText->nLen);
427       p->nOffset = pRun->member.run.strText->nLen;
428       if (p->nOffset) {
429         p->nOffset = ME_StrRelPos2(pRun->member.run.strText, p->nOffset, -1);
430         return TRUE;
431       }
432       else
433         assert(0);
434     }
435     if (pRun->type == diParagraph)
436     {
437       if (pRun->member.para.prev_para->type == diTextStart)
438         return FALSE;
439       assert(pRun->member.para.prev_para->type == diParagraph);
440       pRun = ME_FindItemBack(pRun, diRunOrParagraph);
441       /* every paragraph ought to have at least one run */
442       assert(pRun && pRun->type == diRun);
443       assert(pRun->member.run.nFlags & MERF_ENDPARA);
444       p->pRun = pRun;
445       p->nOffset = 0;
446       return TRUE;
447     }
448     assert(0);
449   }
450   return FALSE;
451 }
452
453 static BOOL ME_ArrowRight(ME_TextEditor *editor, ME_Cursor *p)
454 {
455   ME_DisplayItem *pRun;
456   
457   if (!(p->pRun->member.run.nFlags & MERF_ENDPARA))
458   {
459     int new_ofs = ME_StrRelPos2(p->pRun->member.run.strText, p->nOffset, 1);
460     
461     if (new_ofs<p->pRun->member.run.strText->nLen)
462     {
463       p->nOffset = new_ofs;
464       return TRUE;
465     }
466   }
467   pRun = ME_FindItemFwd(p->pRun, diRun);
468   if (pRun) {
469     p->pRun = pRun;
470     assert(p->pRun->type == diRun);
471     p->nOffset = 0;
472   }
473   return TRUE;
474 }
475
476 int ME_GetCursorOfs(ME_TextEditor *editor, int nCursor)
477 {
478   ME_Cursor *pCursor = &editor->pCursors[nCursor];
479   
480   return ME_GetParagraph(pCursor->pRun)->member.para.nCharOfs
481     + pCursor->pRun->member.run.nCharOfs + pCursor->nOffset;
482 }
483
484 int ME_FindPixelPos(ME_TextEditor *editor, int x, int y, ME_Cursor *result, BOOL *is_eol)
485 {
486   ME_DisplayItem *p = editor->pBuffer->pFirst->member.para.next_para;
487   int rx = 0;
488   
489   if (is_eol)
490     *is_eol = 0;
491
492   while(p != editor->pBuffer->pLast)
493   {
494     if (p->type == diParagraph)
495     {
496       int ry = y - p->member.para.nYPos;
497       if (ry < 0)
498       {
499         result->pRun = ME_FindItemFwd(p, diRun);
500         result->nOffset = 0;
501         return 0;
502       }
503       if (ry >= p->member.para.nHeight)
504       {
505         p = p->member.para.next_para;
506         continue;
507       }
508       p = ME_FindItemFwd(p, diStartRow);
509       y = ry;
510       continue;
511     }
512     if (p->type == diStartRow)
513     {
514       int ry = y - p->member.row.nYPos;
515       if (ry < 0)
516         return 0;
517       if (ry >= p->member.row.nHeight)
518       {
519         p = ME_FindItemFwd(p, diStartRowOrParagraphOrEnd);
520         if (p->type != diStartRow)
521           return 0;
522         continue;
523       }
524       p = ME_FindItemFwd(p, diRun);
525       continue;
526     }
527     if (p->type == diRun)
528     {
529       ME_DisplayItem *pp;
530       rx = x - p->member.run.pt.x;
531       if (rx < 0)
532         rx = 0;
533       if (rx >= p->member.run.nWidth) /* not this run yet... find next item */
534       {
535         pp = p;
536         do {
537           p = p->next;
538           if (p->type == diRun)
539           {
540             rx = x - p->member.run.pt.x;
541             goto continue_search;
542           }
543           if (p->type == diStartRow)
544           {
545             p = ME_FindItemFwd(p, diRun);
546             if (is_eol)
547               *is_eol = 1;
548             rx = 0; /* FIXME not sure */
549             goto found_here;
550           }
551           if (p->type == diParagraph || p->type == diTextEnd)
552           {
553             rx = 0; /* FIXME not sure */
554             p = pp;
555             goto found_here;
556           }
557         } while(1);
558         continue;
559       }
560     found_here:
561       if (p->member.run.nFlags & MERF_ENDPARA)
562         rx = 0;
563       result->pRun = p;
564       result->nOffset = ME_CharFromPointCursor(editor, rx, &p->member.run);
565       if (editor->pCursors[0].nOffset == p->member.run.strText->nLen && rx)
566       {
567         result->pRun = ME_FindItemFwd(editor->pCursors[0].pRun, diRun);
568         result->nOffset = 0;
569       }
570       return 1;
571     }
572     assert(0);
573   continue_search:
574     ;
575   }
576   result->pRun = ME_FindItemBack(p, diRun);
577   result->nOffset = 0;
578   assert(result->pRun->member.run.nFlags & MERF_ENDPARA);
579   return 0;
580 }
581
582
583 int
584 ME_CharFromPos(ME_TextEditor *editor, int x, int y)
585 {
586   ME_Cursor cursor;
587   RECT rc;
588
589   GetClientRect(editor->hWnd, &rc);
590   if (x < 0 || y < 0 || x >= rc.right || y >= rc.bottom)
591     return -1;
592   ME_FindPixelPos(editor, x, y, &cursor, NULL);
593   return (ME_GetParagraph(cursor.pRun)->member.para.nCharOfs
594           + cursor.pRun->member.run.nCharOfs + cursor.nOffset);
595 }
596
597
598 void ME_LButtonDown(ME_TextEditor *editor, int x, int y)
599 {
600   ME_Cursor tmp_cursor;
601   int is_selection = 0;
602   
603   editor->nUDArrowX = -1;
604   
605   y += ME_GetYScrollPos(editor);
606
607   tmp_cursor = editor->pCursors[0];
608   is_selection = ME_IsSelection(editor);
609
610   ME_FindPixelPos(editor, x, y, &editor->pCursors[0], &editor->bCaretAtEnd);
611   
612   if (GetKeyState(VK_SHIFT)>=0)
613   {
614     editor->pCursors[1] = editor->pCursors[0];
615   }
616   else
617   {
618     if (!is_selection) {
619       editor->pCursors[1] = tmp_cursor;
620       is_selection = 1;
621     }
622   }
623   HideCaret(editor->hWnd);
624   ME_MoveCaret(editor);
625   if (is_selection)
626     ME_Repaint(editor);
627   ShowCaret(editor->hWnd);
628   ME_ClearTempStyle(editor);
629   ME_SendSelChange(editor);
630 }
631
632 void ME_MouseMove(ME_TextEditor *editor, int x, int y)
633 {
634   ME_Cursor tmp_cursor;
635   
636   y += ME_GetYScrollPos(editor);
637
638   tmp_cursor = editor->pCursors[0];
639   if (!ME_FindPixelPos(editor, x, y, &editor->pCursors[0], &editor->bCaretAtEnd))
640     /* return */;
641   
642   if (tmp_cursor.pRun == editor->pCursors[0].pRun && 
643       tmp_cursor.nOffset == editor->pCursors[0].nOffset)
644     return;
645   
646   HideCaret(editor->hWnd);
647   ME_MoveCaret(editor);
648   ME_Repaint(editor);
649   ShowCaret(editor->hWnd);
650   ME_SendSelChange(editor);
651 }
652
653 static ME_DisplayItem *ME_FindRunInRow(ME_TextEditor *editor, ME_DisplayItem *pRow, 
654                                 int x, int *pOffset, int *pbCaretAtEnd)
655 {
656   ME_DisplayItem *pNext, *pLastRun;
657   pNext = ME_FindItemFwd(pRow, diRunOrStartRow);
658   assert(pNext->type == diRun);
659   pLastRun = pNext;
660   *pbCaretAtEnd = FALSE;
661   do {
662     int run_x = pNext->member.run.pt.x;
663     int width = pNext->member.run.nWidth;
664     if (x < run_x)
665     {
666       if (pOffset) *pOffset = 0;
667       return pNext;
668     }
669     if (x >= run_x && x < run_x+width)
670     {
671       int ch = ME_CharFromPointCursor(editor, x-run_x, &pNext->member.run);
672       ME_String *s = pNext->member.run.strText;
673       if (ch < s->nLen) {
674         if (pOffset)
675           *pOffset = ch;
676         return pNext;          
677       }
678     }
679     pLastRun = pNext;
680     pNext = ME_FindItemFwd(pNext, diRunOrStartRow);
681   } while(pNext && pNext->type == diRun);
682   
683   if ((pLastRun->member.run.nFlags & MERF_ENDPARA) == 0)
684   {
685     pNext = ME_FindItemFwd(pNext, diRun);
686     if (pbCaretAtEnd) *pbCaretAtEnd = 1;
687     if (pOffset) *pOffset = 0;
688     return pNext;
689   } else {
690     if (pbCaretAtEnd) *pbCaretAtEnd = 0;
691     if (pOffset) *pOffset = 0;
692     return pLastRun;
693   }
694 }
695
696 static int ME_GetXForArrow(ME_TextEditor *editor, ME_Cursor *pCursor)
697 {
698   ME_DisplayItem *pRun = pCursor->pRun;
699   int x;
700
701   if (editor->nUDArrowX != -1)
702     x = editor->nUDArrowX;
703   else {
704     if (editor->bCaretAtEnd)
705     {
706       pRun = ME_FindItemBack(pRun, diRun);
707       assert(pRun);
708       x = pRun->member.run.pt.x + pRun->member.run.nWidth;
709     }
710     else {
711       x = pRun->member.run.pt.x;
712       x += ME_PointFromChar(editor, &pRun->member.run, pCursor->nOffset);
713     }
714     editor->nUDArrowX = x;
715   }
716   return x;
717 }
718
719 static void ME_ArrowUp(ME_TextEditor *editor, ME_Cursor *pCursor)
720 {
721   ME_DisplayItem *pRun = pCursor->pRun;
722   ME_DisplayItem *pItem, *pItem2;
723   int x = ME_GetXForArrow(editor, pCursor);
724   
725   if (editor->bCaretAtEnd && !pCursor->nOffset)
726   {
727     pRun = ME_FindItemBack(pRun, diRun);
728     if (!pRun)
729       return;
730   }
731   
732   /* start of this row */
733   pItem = ME_FindItemBack(pRun, diStartRow);
734   assert(pItem);
735   /* start of the previous row */
736   pItem2 = ME_FindItemBack(pItem, diStartRow);
737   /* no previous row = the first line of the first paragraph */
738   if (!pItem2) /* can't go up - don't go BOL (as in MS richedit) */
739     return;
740   /* FIXME
741   ME_WrapTextParagraph(editor, ME_FindItemBack(pItem2, diParagraph));
742   */
743   pCursor->pRun = ME_FindRunInRow(editor, pItem2, x, &pCursor->nOffset, &editor->bCaretAtEnd);
744 }
745
746 static void ME_ArrowDown(ME_TextEditor *editor, ME_Cursor *pCursor)
747 {
748   ME_DisplayItem *pRun = pCursor->pRun;
749   ME_DisplayItem *pItem;
750   int x = ME_GetXForArrow(editor, pCursor);
751   if (!pCursor->nOffset && editor->bCaretAtEnd)
752   {
753     pRun = ME_FindItemBack(pRun, diRun);
754 /*    x = pRun->member.run.pt.x + pRun->member.run.nWidth; */
755   }
756   /* start of the next row */
757   pItem = ME_FindItemFwd(pRun, diStartRow);
758   /* FIXME If diParagraph is before diStartRow, wrap the next paragraph?
759   */
760   if (!pItem)
761   {
762     /* next row not found - ignore */
763     return;
764   }
765   pCursor->pRun = ME_FindRunInRow(editor, pItem, x, &pCursor->nOffset, &editor->bCaretAtEnd);
766   assert(pCursor->pRun);
767   assert(pCursor->pRun->type == diRun);
768 }
769
770 static void ME_ArrowPageUp(ME_TextEditor *editor, ME_Cursor *pCursor)
771 {
772   ME_DisplayItem *pRun = pCursor->pRun;
773   ME_DisplayItem *pLast, *p;
774   int x, y, ys, yd, yp, yprev;
775   ME_Cursor tmp_curs = *pCursor;
776   
777   x = ME_GetXForArrow(editor, pCursor);
778   if (!pCursor->nOffset && editor->bCaretAtEnd)
779     pRun = ME_FindItemBack(pRun, diRun);
780   
781   p = ME_FindItemBack(pRun, diStartRowOrParagraph);
782   assert(p->type == diStartRow);
783   yp = ME_FindItemBack(p, diParagraph)->member.para.nYPos;
784   yprev = ys = y = yp + p->member.row.nYPos;
785   yd = y - editor->sizeWindow.cy;
786   pLast = p;
787   
788   do {
789     p = ME_FindItemBack(p, diStartRowOrParagraph);
790     if (!p)
791       break;
792     if (p->type == diParagraph) { /* crossing paragraphs */
793       if (p->member.para.prev_para == NULL)
794         break;
795       yp = p->member.para.prev_para->member.para.nYPos;
796       continue;
797     }
798     y = yp + p->member.row.nYPos;
799     if (y < yd)
800       break;
801     pLast = p;
802     yprev = y;
803   } while(1);
804   
805   pCursor->pRun = ME_FindRunInRow(editor, pLast, x, &pCursor->nOffset, &editor->bCaretAtEnd);
806   ME_UpdateSelection(editor, &tmp_curs);
807   if (yprev < editor->sizeWindow.cy)
808   {
809     ME_EnsureVisible(editor, ME_FindItemFwd(editor->pBuffer->pFirst, diRun));
810     ME_Repaint(editor);
811   }
812   else {
813     ME_Scroll(editor, 0, ys-yprev);
814     ME_Repaint(editor);
815   }
816   assert(pCursor->pRun);
817   assert(pCursor->pRun->type == diRun);
818 }
819
820 /* FIXME: in the original RICHEDIT, PageDown always scrolls by the same amount 
821    of pixels, even if it makes the scroll bar position exceed its normal maximum.
822    In such a situation, clicking the scrollbar restores its position back to the
823    normal range (ie. sets it to (doclength-screenheight)). */
824
825 static void ME_ArrowPageDown(ME_TextEditor *editor, ME_Cursor *pCursor)
826 {
827   ME_DisplayItem *pRun = pCursor->pRun;
828   ME_DisplayItem *pLast, *p;
829   int x, y, ys, yd, yp, yprev;
830   ME_Cursor tmp_curs = *pCursor;
831   
832   x = ME_GetXForArrow(editor, pCursor);
833   if (!pCursor->nOffset && editor->bCaretAtEnd)
834     pRun = ME_FindItemBack(pRun, diRun);
835   
836   p = ME_FindItemBack(pRun, diStartRowOrParagraph);
837   assert(p->type == diStartRow);
838   yp = ME_FindItemBack(p, diParagraph)->member.para.nYPos;
839   yprev = ys = y = yp + p->member.row.nYPos;
840   yd = y + editor->sizeWindow.cy;
841   pLast = p;
842   
843   do {
844     p = ME_FindItemFwd(p, diStartRowOrParagraph);
845     if (!p)
846       break;
847     if (p->type == diParagraph) {
848       yp = p->member.para.nYPos;
849       continue;
850     }
851     y = yp + p->member.row.nYPos;
852     if (y >= yd)
853       break;
854     pLast = p;
855     yprev = y;
856   } while(1);
857   
858   pCursor->pRun = ME_FindRunInRow(editor, pLast, x, &pCursor->nOffset, &editor->bCaretAtEnd);
859   ME_UpdateSelection(editor, &tmp_curs);
860   if (yprev >= editor->nTotalLength-editor->sizeWindow.cy)
861   {
862     ME_EnsureVisible(editor, ME_FindItemBack(editor->pBuffer->pLast, diRun));
863     ME_Repaint(editor);
864   }
865   else {
866     ME_Scroll(editor, 0, ys-yprev);
867     ME_Repaint(editor);
868   }
869   assert(pCursor->pRun);
870   assert(pCursor->pRun->type == diRun);
871 }
872
873 static void ME_ArrowHome(ME_TextEditor *editor, ME_Cursor *pCursor)
874 {
875   ME_DisplayItem *pRow = ME_FindItemBack(pCursor->pRun, diStartRow);
876   if (pRow) {
877     ME_DisplayItem *pRun;
878     if (editor->bCaretAtEnd && !pCursor->nOffset) {
879       pRow = ME_FindItemBack(pRow, diStartRow);
880       if (!pRow)
881         return;
882     }
883     pRun = ME_FindItemFwd(pRow, diRun);
884     if (pRun) {
885       pCursor->pRun = pRun;
886       pCursor->nOffset = 0;
887     }
888   }
889   editor->bCaretAtEnd = FALSE;
890 }
891
892 static void ME_ArrowCtrlHome(ME_TextEditor *editor, ME_Cursor *pCursor)
893 {
894   ME_DisplayItem *pRow = ME_FindItemBack(pCursor->pRun, diTextStart);
895   if (pRow) {
896     ME_DisplayItem *pRun = ME_FindItemFwd(pRow, diRun);
897     if (pRun) {
898       pCursor->pRun = pRun;
899       pCursor->nOffset = 0;
900     }
901   }
902 }
903
904 static void ME_ArrowEnd(ME_TextEditor *editor, ME_Cursor *pCursor)
905 {
906   ME_DisplayItem *pRow;
907   
908   if (editor->bCaretAtEnd && !pCursor->nOffset)
909     return;
910   
911   pRow = ME_FindItemFwd(pCursor->pRun, diStartRowOrParagraphOrEnd);
912   assert(pRow);
913   if (pRow->type == diStartRow) {
914     /* FIXME WTF was I thinking about here ? */
915     ME_DisplayItem *pRun = ME_FindItemFwd(pRow, diRun);
916     assert(pRun);
917     pCursor->pRun = pRun;
918     pCursor->nOffset = 0;
919     editor->bCaretAtEnd = 1;
920     return;
921   }
922   pCursor->pRun = ME_FindItemBack(pRow, diRun);
923   assert(pCursor->pRun && pCursor->pRun->member.run.nFlags & MERF_ENDPARA);
924   pCursor->nOffset = 0;
925   editor->bCaretAtEnd = FALSE;
926 }
927       
928 static void ME_ArrowCtrlEnd(ME_TextEditor *editor, ME_Cursor *pCursor)
929 {
930   ME_DisplayItem *p = ME_FindItemFwd(pCursor->pRun, diTextEnd);
931   assert(p);
932   p = ME_FindItemBack(p, diRun);
933   assert(p);
934   assert(p->member.run.nFlags & MERF_ENDPARA);
935   pCursor->pRun = p;
936   pCursor->nOffset = 0;
937   editor->bCaretAtEnd = FALSE;
938 }
939
940 BOOL ME_IsSelection(ME_TextEditor *editor)
941 {
942   return memcmp(&editor->pCursors[0], &editor->pCursors[1], sizeof(ME_Cursor))!=0;
943 }
944
945 static int ME_GetSelCursor(ME_TextEditor *editor, int dir)
946 {
947   int cdir = ME_GetCursorOfs(editor, 0) - ME_GetCursorOfs(editor, 1);
948   
949   if (cdir*dir>0)
950     return 0;
951   else
952     return 1;
953 }
954       
955 static BOOL ME_CancelSelection(ME_TextEditor *editor, int dir)
956 {
957   int cdir;
958   
959   if (GetKeyState(VK_SHIFT)<0)
960     return FALSE;
961   if (!memcmp(&editor->pCursors[0], &editor->pCursors[1], sizeof(ME_Cursor)))
962     return FALSE;
963   
964   cdir = ME_GetCursorOfs(editor, 0) - ME_GetCursorOfs(editor, 1);
965   
966   if (cdir*dir>0)
967     editor->pCursors[1] = editor->pCursors[0];
968   else
969     editor->pCursors[0] = editor->pCursors[1];
970   ME_Repaint(editor);
971   return TRUE;
972 }
973
974 BOOL ME_UpdateSelection(ME_TextEditor *editor, ME_Cursor *pTempCursor)
975 {
976   ME_Cursor old_anchor = editor->pCursors[1];
977   
978   if (GetKeyState(VK_SHIFT)>=0) /* cancelling selection */
979   {
980     /* any selection was present ? if so, it's no more, repaint ! */
981     editor->pCursors[1] = editor->pCursors[0];
982     if (memcmp(pTempCursor, &old_anchor, sizeof(ME_Cursor))) {
983       return TRUE;
984     }
985     return FALSE;
986   }
987   else
988   {
989     if (!memcmp(pTempCursor, &editor->pCursors[1], sizeof(ME_Cursor))) /* starting selection */
990     {
991       editor->pCursors[1] = *pTempCursor;
992       return TRUE;
993     }
994   }
995
996   ME_Repaint(editor);
997   return TRUE;
998 }
999
1000 static void ME_RepaintSelection(ME_TextEditor *editor, ME_Cursor *pTempCursor)
1001 {
1002   if (ME_UpdateSelection(editor, pTempCursor)) {
1003     ME_EnsureVisible(editor, editor->pCursors[0].pRun); 
1004     ME_Repaint(editor);
1005   }
1006 }
1007
1008 void ME_DeleteSelection(ME_TextEditor *editor)
1009 {
1010   int from, to;
1011   ME_GetSelection(editor, &from, &to);
1012   ME_DeleteTextAtCursor(editor, ME_GetSelCursor(editor,-1), to-from);
1013 }
1014
1015 ME_Style *ME_GetSelectionInsertStyle(ME_TextEditor *editor)
1016 {
1017   ME_Style *style;
1018   int from, to;
1019   ME_Cursor c;
1020   
1021   ME_GetSelection(editor, &from, &to);
1022   ME_CursorFromCharOfs(editor, from, &c);
1023   if (from != to) {
1024     style = c.pRun->member.run.style;
1025     ME_AddRefStyle(style); /* ME_GetInsertStyle has already done that */
1026   }
1027   else
1028     style = ME_GetInsertStyle(editor, 0);
1029   return style;
1030 }
1031
1032 void ME_SendSelChange(ME_TextEditor *editor)
1033 {
1034   SELCHANGE sc;
1035   if (!(editor->nEventMask & ENM_SELCHANGE))
1036     return;
1037   sc.nmhdr.hwndFrom = editor->hWnd;
1038   sc.nmhdr.idFrom = GetWindowLongW(editor->hWnd, GWLP_ID);
1039   sc.nmhdr.code = EN_SELCHANGE;
1040   SendMessageW(editor->hWnd, EM_EXGETSEL, 0, (LPARAM)&sc.chrg);
1041   sc.seltyp = SEL_EMPTY;
1042   if (sc.chrg.cpMin != sc.chrg.cpMax)
1043     sc.seltyp |= SEL_TEXT;
1044   if (sc.chrg.cpMin < sc.chrg.cpMax+1) /* wth were RICHEDIT authors thinking ? */
1045     sc.seltyp |= SEL_MULTICHAR;
1046   SendMessageW(GetParent(editor->hWnd), WM_NOTIFY, sc.nmhdr.idFrom, (LPARAM)&sc);
1047 }
1048
1049 BOOL ME_ArrowKey(ME_TextEditor *editor, int nVKey, int nCtrl)
1050 {
1051   int nCursor = 0;
1052   ME_Cursor *p = &editor->pCursors[nCursor];
1053   ME_Cursor tmp_curs = *p;
1054   
1055   switch(nVKey) {
1056     case VK_UP:
1057       ME_ArrowUp(editor, p);
1058       ME_ClearTempStyle(editor);
1059       ME_RepaintSelection(editor, &tmp_curs);
1060       ME_SendSelChange(editor);
1061       return TRUE;
1062     case VK_DOWN:
1063       ME_ArrowDown(editor, p);
1064       ME_ClearTempStyle(editor);
1065       ME_RepaintSelection(editor, &tmp_curs);
1066       ME_SendSelChange(editor);
1067       return TRUE;
1068     case VK_PRIOR:
1069       ME_ArrowPageUp(editor, p);
1070       ME_ClearTempStyle(editor);
1071       ME_SendSelChange(editor);
1072       return TRUE;
1073     case VK_NEXT:
1074       ME_ArrowPageDown(editor, p);
1075       ME_ClearTempStyle(editor);
1076       ME_SendSelChange(editor);
1077       return TRUE;
1078   }
1079   
1080   editor->nUDArrowX = -1;
1081   switch(nVKey) {
1082     case VK_BACK: { /* FIXME backspace and delete aren't the same, they act different wrt paragraph style of the merged paragraph */
1083       if (GetWindowLongW(editor->hWnd, GWL_STYLE) & ES_READONLY)
1084         return FALSE;
1085       if (ME_IsSelection(editor))
1086       {
1087         editor->bCaretAtEnd = FALSE; /* FIXME or maybe not */
1088         ME_DeleteSelection(editor);
1089         ME_UpdateRepaint(editor);
1090         ME_SendRequestResize(editor, FALSE);
1091         return TRUE;
1092       }
1093       if (ME_ArrowLeft(editor, p)) {
1094         editor->bCaretAtEnd = FALSE; /* FIXME or maybe not */
1095         ME_ClearTempStyle(editor);
1096         ME_MoveCaret(editor);
1097         ME_DeleteTextAtCursor(editor, nCursor, 1);
1098         ME_UpdateRepaint(editor);
1099         ME_SendRequestResize(editor, FALSE);
1100       }
1101       return TRUE;
1102     }
1103     case VK_DELETE: {
1104       if (GetWindowLongW(editor->hWnd, GWL_STYLE) & ES_READONLY)
1105         return FALSE;
1106       /* editor->bCaretAtEnd = 0; FIXME or maybe not */
1107       if (ME_IsSelection(editor))
1108       {
1109         ME_DeleteSelection(editor);
1110         ME_ClearTempStyle(editor);
1111         ME_UpdateRepaint(editor);
1112         ME_SendRequestResize(editor, FALSE);
1113         return TRUE;
1114       }
1115       ME_DeleteTextAtCursor(editor, nCursor, 1);
1116       ME_ClearTempStyle(editor);
1117       ME_UpdateRepaint(editor);
1118       ME_SendRequestResize(editor, FALSE);
1119       return TRUE;
1120     }
1121     case VK_HOME: {
1122       if (GetKeyState(VK_CONTROL)<0)
1123         ME_ArrowCtrlHome(editor, p);
1124       else
1125         ME_ArrowHome(editor, p);
1126       editor->bCaretAtEnd = 0;
1127       ME_ClearTempStyle(editor);
1128       ME_RepaintSelection(editor, &tmp_curs);
1129       ME_SendSelChange(editor);
1130       return TRUE;
1131     }
1132     case VK_END: 
1133       if (GetKeyState(VK_CONTROL)<0)
1134         ME_ArrowCtrlEnd(editor, p);
1135       else
1136         ME_ArrowEnd(editor, p);
1137       ME_ClearTempStyle(editor);
1138       ME_RepaintSelection(editor, &tmp_curs);
1139       ME_SendSelChange(editor);
1140       return TRUE;
1141     case VK_LEFT:
1142       editor->bCaretAtEnd = 0;
1143       if (ME_CancelSelection(editor, -1))
1144         return TRUE;
1145       ME_ArrowLeft(editor, p);
1146       ME_RepaintSelection(editor, &tmp_curs);
1147       ME_ClearTempStyle(editor);
1148       ME_SendSelChange(editor);
1149       return TRUE;
1150     case VK_RIGHT:
1151       editor->bCaretAtEnd = 0;
1152       if (ME_CancelSelection(editor, +1))
1153         return TRUE;
1154       ME_ArrowRight(editor, p);
1155       ME_RepaintSelection(editor, &tmp_curs);
1156       ME_ClearTempStyle(editor);
1157       ME_SendSelChange(editor);
1158       return TRUE;
1159   }
1160   return FALSE;
1161 }