richedit: Now painting the newly supported underline types.
[wine] / dlls / riched20 / paint.c
1 /*
2  * RichEdit - painting 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 #include "editor.h"
23
24 WINE_DEFAULT_DEBUG_CHANNEL(richedit);
25
26 void ME_PaintContent(ME_TextEditor *editor, HDC hDC, BOOL bOnlyNew, const RECT *rcUpdate) {
27   ME_DisplayItem *item;
28   ME_Context c;
29   int yoffset;
30
31   editor->nSequence++;
32   yoffset = ME_GetYScrollPos(editor);
33   ME_InitContext(&c, editor, hDC);
34   SetBkMode(hDC, TRANSPARENT);
35   ME_MoveCaret(editor);
36   item = editor->pBuffer->pFirst->next;
37   c.pt.y -= yoffset;
38   while(item != editor->pBuffer->pLast) {
39     int ye;
40     assert(item->type == diParagraph);
41     ye = c.pt.y + item->member.para.nHeight;
42     if (!bOnlyNew || (item->member.para.nFlags & MEPF_REPAINT))
43     {
44       BOOL bPaint = (rcUpdate == NULL);
45       if (rcUpdate)
46         bPaint = c.pt.y<rcUpdate->bottom && 
47           c.pt.y+item->member.para.nHeight>rcUpdate->top;
48       if (bPaint)
49       {
50         ME_DrawParagraph(&c, item);
51         if (!rcUpdate || (rcUpdate->top<=c.pt.y && rcUpdate->bottom>=ye))
52           item->member.para.nFlags &= ~MEPF_REPAINT;
53       }
54     }
55     c.pt.y = ye;
56     item = item->member.para.next_para;
57   }
58   if (c.pt.y<c.rcView.bottom) {
59     RECT rc;
60     int xs = c.rcView.left, xe = c.rcView.right;
61     int ys = c.pt.y, ye = c.rcView.bottom;
62     
63     if (bOnlyNew)
64     {
65       int y1 = editor->nTotalLength-yoffset, y2 = editor->nLastTotalLength-yoffset;
66       if (y1<y2)
67         ys = y1, ye = y2+1;
68       else
69         ys = ye;
70     }
71     
72     if (rcUpdate && ys!=ye)
73     {
74       xs = rcUpdate->left, xe = rcUpdate->right;
75       if (rcUpdate->top > ys)
76         ys = rcUpdate->top;
77       if (rcUpdate->bottom < ye)
78         ye = rcUpdate->bottom;
79     }
80
81     if (ye>ys) {
82       rc.left = xs;
83       rc.top = ys;
84       rc.right = xe;
85       rc.bottom = ye;
86       FillRect(hDC, &rc, c.editor->hbrBackground);
87     }
88     if (ys == c.pt.y) /* don't overwrite the top bar */
89       ys++;
90   }
91   if (editor->nTotalLength != editor->nLastTotalLength)
92     ME_SendRequestResize(editor, FALSE);
93   editor->nLastTotalLength = editor->nTotalLength;
94   ME_DestroyContext(&c);
95 }
96
97 void ME_Repaint(ME_TextEditor *editor)
98 {
99   if (ME_WrapMarkedParagraphs(editor))
100   {
101     ME_UpdateScrollBar(editor);
102     FIXME("ME_Repaint had to call ME_WrapMarkedParagraphs\n");
103   }
104   ME_SendOldNotify(editor, EN_UPDATE);
105   UpdateWindow(editor->hWnd);
106 }
107
108 void ME_UpdateRepaint(ME_TextEditor *editor)
109 {
110   /* Should be called whenever the contents of the control have changed */
111   ME_Cursor *pCursor;
112   
113   if (ME_WrapMarkedParagraphs(editor))
114     ME_UpdateScrollBar(editor);
115   
116   /* Ensure that the cursor is visible */
117   pCursor = &editor->pCursors[0];
118   ME_EnsureVisible(editor, pCursor->pRun);
119   
120   /* send EN_CHANGE if the event mask asks for it */
121   if(editor->nEventMask & ENM_CHANGE)
122   {
123     editor->nEventMask &= ~ENM_CHANGE;
124     ME_SendOldNotify(editor, EN_CHANGE);
125     editor->nEventMask |= ENM_CHANGE;
126   }
127   ME_Repaint(editor);
128   ME_SendSelChange(editor);
129 }
130
131 void
132 ME_RewrapRepaint(ME_TextEditor *editor)
133
134   /* RewrapRepaint should be called whenever the control has changed in
135    * looks, but not content. Like resizing. */
136   
137   ME_MarkAllForWrapping(editor);
138   ME_WrapMarkedParagraphs(editor);
139   ME_UpdateScrollBar(editor);
140   
141   ME_Repaint(editor);
142 }
143
144
145 static void ME_DrawTextWithStyle(ME_Context *c, int x, int y, LPCWSTR szText, int nChars, 
146   ME_Style *s, int *width, int nSelFrom, int nSelTo, int ymin, int cy) {
147   HDC hDC = c->hDC;
148   HGDIOBJ hOldFont;
149   COLORREF rgbOld, rgbBack;
150   int yOffset = 0, yTwipsOffset = 0;
151   SIZE          sz;
152   COLORREF      rgb;
153
154   hOldFont = ME_SelectStyleFont(c->editor, hDC, s);
155   rgbBack = ME_GetBackColor(c->editor);
156   if ((s->fmt.dwMask & CFM_LINK) && (s->fmt.dwEffects & CFE_LINK))
157     rgb = RGB(0,0,255);
158   else if ((s->fmt.dwMask & CFM_COLOR) && (s->fmt.dwEffects & CFE_AUTOCOLOR))
159     rgb = GetSysColor(COLOR_WINDOWTEXT);
160   else
161     rgb = s->fmt.crTextColor;
162   rgbOld = SetTextColor(hDC, rgb);
163   if ((s->fmt.dwMask & s->fmt.dwEffects) & CFM_OFFSET) {
164     yTwipsOffset = s->fmt.yOffset;
165   }
166   if ((s->fmt.dwMask & s->fmt.dwEffects) & (CFM_SUPERSCRIPT | CFM_SUBSCRIPT)) {
167     if (s->fmt.dwEffects & CFE_SUPERSCRIPT) yTwipsOffset = s->fmt.yHeight/3;
168     if (s->fmt.dwEffects & CFE_SUBSCRIPT) yTwipsOffset = -s->fmt.yHeight/12;
169   }
170   if (yTwipsOffset)
171   {
172     int numerator = 1;
173     int denominator = 1;
174     
175     if (c->editor->nZoomNumerator)
176     {
177       numerator = c->editor->nZoomNumerator;
178       denominator = c->editor->nZoomDenominator;
179     }
180     yOffset = yTwipsOffset * GetDeviceCaps(hDC, LOGPIXELSY) * numerator / denominator / 1440;
181   }
182   ExtTextOutW(hDC, x, y-yOffset, 0, NULL, szText, nChars, NULL);
183   GetTextExtentPoint32W(hDC, szText, nChars, &sz);
184   if (width) *width = sz.cx;
185   if (s->fmt.dwMask & CFM_UNDERLINETYPE)
186   {
187     HPEN    hPen;
188     switch (s->fmt.bUnderlineType)
189     {
190     case CFU_UNDERLINE:
191     case CFU_UNDERLINEWORD: /* native seems to map it to simple underline (MSDN) */
192     case CFU_UNDERLINEDOUBLE: /* native seems to map it to simple underline (MSDN) */
193       hPen = CreatePen(PS_SOLID, 1, rgb);
194       break;
195     case CFU_UNDERLINEDOTTED:
196       hPen = CreatePen(PS_DOT, 1, rgb);
197       break;
198     default:
199       WINE_FIXME("Unknown underline type (%u)\n", s->fmt.bUnderlineType);
200       /* fall through */
201     case CFU_CF1UNDERLINE: /* this type is supported in the font, do nothing */
202     case CFU_UNDERLINENONE:
203       hPen = NULL;
204       break;
205     }
206     if (hPen != NULL)
207     {
208       HPEN hOldPen = SelectObject(hDC, hPen);
209       /* FIXME: should use textmetrics info for Descent info */
210       MoveToEx(hDC, x, y - yOffset + 1, NULL);
211       LineTo(hDC, x + sz.cx, y - yOffset + 1);
212       SelectObject(hDC, hOldPen);
213       DeleteObject(hPen);
214     }
215   }
216   if (nSelFrom < nChars && nSelTo >= 0 && nSelFrom<nSelTo)
217   {
218     if (nSelFrom < 0) nSelFrom = 0;
219     if (nSelTo > nChars) nSelTo = nChars;
220     GetTextExtentPoint32W(hDC, szText, nSelFrom, &sz);
221     x += sz.cx;
222     GetTextExtentPoint32W(hDC, szText+nSelFrom, nSelTo-nSelFrom, &sz);
223     
224     /* Invert selection if not hidden by EM_HIDESELECTION */
225     if (c->editor->bHideSelection == FALSE)
226         PatBlt(hDC, x, ymin, sz.cx, cy, DSTINVERT);
227   }
228   SetTextColor(hDC, rgbOld);
229   ME_UnselectStyleFont(c->editor, hDC, s, hOldFont);
230 }
231
232 static void ME_DebugWrite(HDC hDC, const POINT *pt, LPCWSTR szText) {
233   int align = SetTextAlign(hDC, TA_LEFT|TA_TOP);
234   HGDIOBJ hFont = SelectObject(hDC, GetStockObject(DEFAULT_GUI_FONT));
235   COLORREF color = SetTextColor(hDC, RGB(128,128,128));
236   TextOutW(hDC, pt->x, pt->y, szText, lstrlenW(szText));
237   SelectObject(hDC, hFont);
238   SetTextAlign(hDC, align);
239   SetTextColor(hDC, color);
240 }
241
242 static void ME_DrawGraphics(ME_Context *c, int x, int y, ME_Run *run,
243                             ME_Paragraph *para, BOOL selected) {
244   SIZE sz;
245   int xs, ys, xe, ye, h, ym, width, eyes;
246   ME_GetGraphicsSize(c->editor, run, &sz);
247   xs = run->pt.x;
248   ys = y-sz.cy;
249   xe = xs+sz.cx;
250   ye = y;
251   h = ye-ys;
252   ym = ys+h/4;
253   width = sz.cx;
254   eyes = width/8;
255   /* draw a smiling face :) */
256   Ellipse(c->hDC, xs, ys, xe, ye);
257   Ellipse(c->hDC, xs+width/8, ym, x+width/8+eyes, ym+eyes);
258   Ellipse(c->hDC, xs+7*width/8-eyes, ym, xs+7*width/8, ym+eyes);
259   MoveToEx(c->hDC, xs+width/8, ys+3*h/4-eyes, NULL);
260   LineTo(c->hDC, xs+width/8, ys+3*h/4);
261   LineTo(c->hDC, xs+7*width/8, ys+3*h/4);
262   LineTo(c->hDC, xs+7*width/8, ys+3*h/4-eyes);
263   if (selected)
264   {
265     /* descent is usually (always?) 0 for graphics */
266     PatBlt(c->hDC, x, y-run->nAscent, sz.cx, run->nAscent+run->nDescent, DSTINVERT);    
267   }
268 }
269
270 static void ME_DrawRun(ME_Context *c, int x, int y, ME_DisplayItem *rundi, ME_Paragraph *para) 
271 {
272   ME_Run *run = &rundi->member.run;
273   ME_DisplayItem *start = ME_FindItemBack(rundi, diStartRow);
274   int runofs = run->nCharOfs+para->nCharOfs;
275   int nSelFrom, nSelTo;
276   const WCHAR wszSpace[] = {' ', 0};
277   
278   if (run->nFlags & MERF_HIDDEN)
279     return;
280
281   ME_GetSelection(c->editor, &nSelFrom, &nSelTo);
282
283   /* Draw selected end-of-paragraph mark */
284   if (run->nFlags & MERF_ENDPARA && runofs >= nSelFrom && runofs < nSelTo)
285     ME_DrawTextWithStyle(c, x, y, wszSpace, 1, run->style, NULL, 0, 1,
286                          c->pt.y + start->member.row.nYPos,
287                          start->member.row.nHeight);
288           
289   /* you can always comment it out if you need visible paragraph marks */
290   if (run->nFlags & (MERF_ENDPARA | MERF_TAB | MERF_CELL)) 
291     return;
292
293   if (run->nFlags & MERF_GRAPHICS)
294     ME_DrawGraphics(c, x, y, run, para, (runofs >= nSelFrom) && (runofs < nSelTo));
295   else
296   {
297     if (c->editor->cPasswordMask)
298     {
299       ME_String *szMasked = ME_MakeStringR(c->editor->cPasswordMask,ME_StrVLen(run->strText));
300       ME_DrawTextWithStyle(c, x, y, 
301         szMasked->szData, ME_StrVLen(szMasked), run->style, NULL, 
302         nSelFrom-runofs,nSelTo-runofs, c->pt.y+start->member.row.nYPos, start->member.row.nHeight);
303       ME_DestroyString(szMasked);
304     }
305     else
306       ME_DrawTextWithStyle(c, x, y, 
307         run->strText->szData, ME_StrVLen(run->strText), run->style, NULL, 
308         nSelFrom-runofs,nSelTo-runofs, c->pt.y+start->member.row.nYPos, start->member.row.nHeight);
309     }
310 }
311
312 COLORREF ME_GetBackColor(const ME_TextEditor *editor)
313 {
314 /* Looks like I was seriously confused
315     return GetSysColor((GetWindowLong(editor->hWnd, GWL_STYLE) & ES_READONLY) ? COLOR_3DFACE: COLOR_WINDOW);
316 */
317   if (editor->rgbBackColor == -1)
318     return GetSysColor(COLOR_WINDOW);
319   else
320     return editor->rgbBackColor;
321 }
322
323 void ME_DrawParagraph(ME_Context *c, ME_DisplayItem *paragraph) {
324   int align = SetTextAlign(c->hDC, TA_BASELINE);
325   ME_DisplayItem *p;
326   ME_Run *run;
327   ME_Paragraph *para = NULL;
328   RECT rc, rcPara;
329   int y = c->pt.y;
330   int height = 0, baseline = 0, no=0, pno = 0;
331   int xs, xe;
332   int visible = 0;
333   int nMargWidth = 0;
334   
335   c->pt.x = c->rcView.left;
336   rcPara.left = c->rcView.left;
337   rcPara.right = c->rcView.right;
338   for (p = paragraph; p!=paragraph->member.para.next_para; p = p->next) {
339     switch(p->type) {
340       case diParagraph:
341         para = &p->member.para;
342         break;
343       case diStartRow:
344         assert(para);
345         nMargWidth = (pno==0?para->nFirstMargin:para->nLeftMargin);
346         xs = c->rcView.left+nMargWidth;
347         xe = c->rcView.right-para->nRightMargin;
348         y += height;
349         rcPara.top = y;
350         rcPara.bottom = y+p->member.row.nHeight;
351         visible = RectVisible(c->hDC, &rcPara);
352         if (visible) {
353           HBRUSH hbr;
354           hbr = CreateSolidBrush(ME_GetBackColor(c->editor));
355           /* left margin */
356           rc.left = c->rcView.left;
357           rc.right = c->rcView.left+nMargWidth;
358           rc.top = y;
359           rc.bottom = y+p->member.row.nHeight;
360           FillRect(c->hDC, &rc, hbr/* c->hbrMargin */);
361           /* right margin */
362           rc.left = xe;
363           rc.right = c->rcView.right;
364           FillRect(c->hDC, &rc, hbr/* c->hbrMargin */);
365           rc.left = c->rcView.left+nMargWidth;
366           rc.right = xe;
367           FillRect(c->hDC, &rc, hbr);
368           DeleteObject(hbr);
369         }
370         if (me_debug)
371         {
372           const WCHAR wszRowDebug[] = {'r','o','w','[','%','d',']',0};
373           WCHAR buf[128];
374           POINT pt = c->pt;
375           wsprintfW(buf, wszRowDebug, no);
376           pt.y = 12+y;
377           ME_DebugWrite(c->hDC, &pt, buf);
378         }
379         
380         height = p->member.row.nHeight;
381         baseline = p->member.row.nBaseline;
382         pno++;
383         break;
384       case diRun:
385         assert(para);
386         run = &p->member.run;
387         if (visible && me_debug) {
388           rc.left = c->rcView.left+run->pt.x;
389           rc.right = c->rcView.left+run->pt.x+run->nWidth;
390           rc.top = c->pt.y+run->pt.y;
391           rc.bottom = c->pt.y+run->pt.y+height;
392           TRACE("rc = (%d, %d, %d, %d)\n", rc.left, rc.top, rc.right, rc.bottom);
393           if (run->nFlags & MERF_SKIPPED)
394             DrawFocusRect(c->hDC, &rc);
395           else
396             FrameRect(c->hDC, &rc, GetSysColorBrush(COLOR_GRAYTEXT));
397         }
398         if (visible)
399           ME_DrawRun(c, run->pt.x, c->pt.y+run->pt.y+baseline, p, &paragraph->member.para);
400         if (me_debug)
401         {
402           /* I'm using %ls, hope wsprintfW is not going to use wrong (4-byte) WCHAR version */
403           const WCHAR wszRunDebug[] = {'[','%','d',':','%','x',']',' ','%','l','s',0};
404           WCHAR buf[2560];
405           POINT pt;
406           pt.x = run->pt.x;
407           pt.y = c->pt.y + run->pt.y;
408           wsprintfW(buf, wszRunDebug, no, p->member.run.nFlags, p->member.run.strText->szData);
409           ME_DebugWrite(c->hDC, &pt, buf);
410         }
411         /* c->pt.x += p->member.run.nWidth; */
412         break;
413       default:
414         break;
415     }
416     no++;
417   }
418   SetTextAlign(c->hDC, align);
419 }
420
421 void ME_ScrollAbs(ME_TextEditor *editor, int absY)
422 {
423   ME_Scroll(editor, absY, 1);
424 }
425
426 void ME_ScrollUp(ME_TextEditor *editor, int cy)
427 {
428   ME_Scroll(editor, cy, 2);
429 }
430
431 void ME_ScrollDown(ME_TextEditor *editor, int cy)
432
433   ME_Scroll(editor, cy, 3);
434 }
435
436 void ME_Scroll(ME_TextEditor *editor, int value, int type)
437 {
438   SCROLLINFO si;
439   int nOrigPos, nNewPos, nActualScroll;
440
441   nOrigPos = ME_GetYScrollPos(editor);
442   
443   si.cbSize = sizeof(SCROLLINFO);
444   si.fMask = SIF_POS;
445   
446   switch (type)
447   {
448     case 1:
449       /*Scroll absolutly*/
450       si.nPos = value;
451       break;
452     case 2:
453       /* Scroll up - towards the beginning of the document */
454       si.nPos = nOrigPos - value;
455       break;
456     case 3:
457       /* Scroll down - towards the end of the document */
458       si.nPos = nOrigPos + value;
459       break;
460     default:
461       FIXME("ME_Scroll called incorrectly\n");
462       si.nPos = 0;
463   }
464   
465   nNewPos = SetScrollInfo(editor->hWnd, SB_VERT, &si, editor->bRedraw);
466   nActualScroll = nOrigPos - nNewPos;
467   if (editor->bRedraw)
468   {
469     if (abs(nActualScroll) > editor->sizeWindow.cy)
470       InvalidateRect(editor->hWnd, NULL, TRUE);
471     else
472       ScrollWindowEx(editor->hWnd, 0, nActualScroll, NULL, NULL, NULL, NULL, SW_INVALIDATE);
473     ME_Repaint(editor);
474   }
475   
476   ME_UpdateScrollBar(editor);
477 }
478
479  
480  void ME_UpdateScrollBar(ME_TextEditor *editor)
481
482   /* Note that this is the only funciton that should ever call SetScrolLInfo 
483    * with SIF_PAGE or SIF_RANGE. SetScrollPos and SetScrollRange should never
484    * be used at all. */
485   
486   HWND hWnd;
487   SCROLLINFO si;
488   BOOL bScrollBarWasVisible,bScrollBarWillBeVisible;
489   
490   if (ME_WrapMarkedParagraphs(editor))
491     FIXME("ME_UpdateScrollBar had to call ME_WrapMarkedParagraphs\n");
492   
493   hWnd = editor->hWnd;
494   si.cbSize = sizeof(si);
495   bScrollBarWasVisible = ME_GetYScrollVisible(editor);
496   bScrollBarWillBeVisible = editor->nHeight > editor->sizeWindow.cy;
497   
498   if (bScrollBarWasVisible != bScrollBarWillBeVisible)
499   {
500     ShowScrollBar(hWnd, SB_VERT, bScrollBarWillBeVisible);
501     ME_MarkAllForWrapping(editor);
502     ME_WrapMarkedParagraphs(editor);
503   }
504   
505   si.fMask = SIF_PAGE | SIF_RANGE;
506   if (GetWindowLongW(hWnd, GWL_STYLE) & ES_DISABLENOSCROLL)
507     si.fMask |= SIF_DISABLENOSCROLL;
508   
509   si.nMin = 0;  
510   si.nMax = editor->nTotalLength;
511   
512   si.nPage = editor->sizeWindow.cy;
513      
514   TRACE("min=%d max=%d page=%d\n", si.nMin, si.nMax, si.nPage);
515   SetScrollInfo(hWnd, SB_VERT, &si, TRUE);
516 }
517
518 int ME_GetYScrollPos(ME_TextEditor *editor)
519 {
520   SCROLLINFO si;
521   si.cbSize = sizeof(si);
522   si.fMask = SIF_POS;
523   GetScrollInfo(editor->hWnd, SB_VERT, &si);
524   return si.nPos;
525 }
526
527 BOOL ME_GetYScrollVisible(ME_TextEditor *editor)
528 { /* Returns true if the scrollbar is visible */
529   SCROLLBARINFO sbi;
530   sbi.cbSize = sizeof(sbi);
531   GetScrollBarInfo(editor->hWnd, OBJID_VSCROLL, &sbi);
532   return ((sbi.rgstate[0] & STATE_SYSTEM_INVISIBLE) == 0);
533 }
534
535 void ME_EnsureVisible(ME_TextEditor *editor, ME_DisplayItem *pRun)
536 {
537   ME_DisplayItem *pRow = ME_FindItemBack(pRun, diStartRow);
538   ME_DisplayItem *pPara = ME_FindItemBack(pRun, diParagraph);
539   int y, yrel, yheight, yold;
540   
541   assert(pRow);
542   assert(pPara);
543   
544   y = pPara->member.para.nYPos+pRow->member.row.nYPos;
545   yheight = pRow->member.row.nHeight;
546   yold = ME_GetYScrollPos(editor);
547   yrel = y - yold;
548   
549   if (y < yold)
550     ME_ScrollAbs(editor,y);
551   else if (yrel + yheight > editor->sizeWindow.cy) 
552     ME_ScrollAbs(editor,y+yheight-editor->sizeWindow.cy);
553 }
554
555
556 void
557 ME_InvalidateFromOfs(ME_TextEditor *editor, int nCharOfs)
558 {
559   RECT rc;
560   int x, y, height;
561   ME_Cursor tmp;
562
563   ME_RunOfsFromCharOfs(editor, nCharOfs, &tmp.pRun, &tmp.nOffset);
564   ME_GetCursorCoordinates(editor, &tmp, &x, &y, &height);
565
566   rc.left = 0;
567   rc.top = y;
568   rc.bottom = y + height;
569   rc.right = editor->rcFormat.right;
570   InvalidateRect(editor->hWnd, &rc, FALSE);
571 }
572
573
574 void
575 ME_InvalidateSelection(ME_TextEditor *editor)
576 {
577   ME_DisplayItem *para1, *para2;
578   int nStart, nEnd;
579   int len = ME_GetTextLength(editor);
580
581   ME_GetSelection(editor, &nStart, &nEnd);
582   /* if both old and new selection are 0-char (= caret only), then
583   there's no (inverted) area to be repainted, neither old nor new */
584   if (nStart == nEnd && editor->nLastSelStart == editor->nLastSelEnd)
585     return;
586   ME_WrapMarkedParagraphs(editor);
587   ME_GetSelectionParas(editor, &para1, &para2);
588   assert(para1->type == diParagraph);
589   assert(para2->type == diParagraph);
590   /* last selection markers aren't always updated, which means
591   they can point past the end of the document */ 
592   if (editor->nLastSelStart > len || editor->nLastSelEnd > len) {
593     ME_MarkForPainting(editor,
594         ME_FindItemFwd(editor->pBuffer->pFirst, diParagraph),
595         ME_FindItemFwd(editor->pBuffer->pFirst, diTextEnd));
596   } else {
597     /* if the start part of selection is being expanded or contracted... */
598     if (nStart < editor->nLastSelStart) {
599       ME_MarkForPainting(editor, para1, ME_FindItemFwd(editor->pLastSelStartPara, diParagraphOrEnd));
600     } else
601     if (nStart > editor->nLastSelStart) {
602       ME_MarkForPainting(editor, editor->pLastSelStartPara, ME_FindItemFwd(para1, diParagraphOrEnd));
603     }
604
605     /* if the end part of selection is being contracted or expanded... */
606     if (nEnd < editor->nLastSelEnd) {
607       ME_MarkForPainting(editor, para2, ME_FindItemFwd(editor->pLastSelEndPara, diParagraphOrEnd));
608     } else
609     if (nEnd > editor->nLastSelEnd) {
610       ME_MarkForPainting(editor, editor->pLastSelEndPara, ME_FindItemFwd(para2, diParagraphOrEnd));
611     }
612   }
613
614   ME_InvalidateMarkedParagraphs(editor);
615   /* remember the last invalidated position */
616   ME_GetSelection(editor, &editor->nLastSelStart, &editor->nLastSelEnd);
617   ME_GetSelectionParas(editor, &editor->pLastSelStartPara, &editor->pLastSelEndPara);
618   assert(editor->pLastSelStartPara->type == diParagraph);
619   assert(editor->pLastSelEndPara->type == diParagraph);
620 }
621
622 void
623 ME_QueueInvalidateFromCursor(ME_TextEditor *editor, int nCursor)
624 {
625   editor->nInvalidOfs = ME_GetCursorOfs(editor, nCursor);
626 }
627
628
629 BOOL
630 ME_SetZoom(ME_TextEditor *editor, int numerator, int denominator)
631 {
632   /* TODO: Zoom images and objects */
633
634   if (numerator != 0)
635   {
636     if (denominator == 0)
637       return FALSE;
638     if (1.0 / 64.0 > (float)numerator / (float)denominator
639         || (float)numerator / (float)denominator > 64.0)
640       return FALSE;
641   }
642   
643   editor->nZoomNumerator = numerator;
644   editor->nZoomDenominator = denominator;
645   
646   ME_RewrapRepaint(editor);
647   return TRUE;
648 }