richedit: Removed useless code.
[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 && ye>rcUpdate->top;
47       if (bPaint)
48       {
49         ME_DrawParagraph(&c, item);
50         if (!rcUpdate || (rcUpdate->top<=c.pt.y && rcUpdate->bottom>=ye))
51           item->member.para.nFlags &= ~MEPF_REPAINT;
52       }
53     }
54     c.pt.y = ye;
55     item = item->member.para.next_para;
56   }
57   if (c.pt.y<c.rcView.bottom) {
58     RECT rc;
59     int xs = c.rcView.left, xe = c.rcView.right;
60     int ys = c.pt.y, ye = c.rcView.bottom;
61     
62     if (bOnlyNew)
63     {
64       int y1 = editor->nTotalLength-yoffset, y2 = editor->nLastTotalLength-yoffset;
65       if (y1<y2)
66         ys = y1, ye = y2+1;
67       else
68         ys = ye;
69     }
70     
71     if (rcUpdate && ys!=ye)
72     {
73       xs = rcUpdate->left, xe = rcUpdate->right;
74       if (rcUpdate->top > ys)
75         ys = rcUpdate->top;
76       if (rcUpdate->bottom < ye)
77         ye = rcUpdate->bottom;
78     }
79
80     if (ye>ys) {
81       rc.left = xs;
82       rc.top = ys;
83       rc.right = xe;
84       rc.bottom = ye;
85       FillRect(hDC, &rc, c.editor->hbrBackground);
86     }
87   }
88   if (editor->nTotalLength != editor->nLastTotalLength)
89     ME_SendRequestResize(editor, FALSE);
90   editor->nLastTotalLength = editor->nTotalLength;
91   ME_DestroyContext(&c, NULL);
92 }
93
94 void ME_Repaint(ME_TextEditor *editor)
95 {
96   if (ME_WrapMarkedParagraphs(editor))
97   {
98     ME_UpdateScrollBar(editor);
99     FIXME("ME_Repaint had to call ME_WrapMarkedParagraphs\n");
100   }
101   ME_SendOldNotify(editor, EN_UPDATE);
102   UpdateWindow(editor->hWnd);
103 }
104
105 void ME_UpdateRepaint(ME_TextEditor *editor)
106 {
107   /* Should be called whenever the contents of the control have changed */
108   ME_Cursor *pCursor;
109   BOOL wrappedParagraphs;
110
111   wrappedParagraphs = ME_WrapMarkedParagraphs(editor);
112   if (!editor->bRedraw) return;
113   if (wrappedParagraphs)
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   if (editor->bRedraw)
139   {
140     ME_WrapMarkedParagraphs(editor);
141     ME_UpdateScrollBar(editor);
142     ME_Repaint(editor);
143   }
144 }
145
146 int ME_twips2pointsX(ME_Context *c, int x)
147 {
148   if (c->editor->nZoomNumerator == 0)
149     return x * c->dpi.cx / 1440;
150   else
151     return x * c->dpi.cx * c->editor->nZoomNumerator / 1440 / c->editor->nZoomDenominator;
152 }
153
154 int ME_twips2pointsY(ME_Context *c, int y)
155 {
156   if (c->editor->nZoomNumerator == 0)
157     return y * c->dpi.cy / 1440;
158   else
159     return y * c->dpi.cy * c->editor->nZoomNumerator / 1440 / c->editor->nZoomDenominator;
160 }
161
162 static void ME_DrawTextWithStyle(ME_Context *c, int x, int y, LPCWSTR szText, int nChars, 
163   ME_Style *s, int *width, int nSelFrom, int nSelTo, int ymin, int cy) {
164   HDC hDC = c->hDC;
165   HGDIOBJ hOldFont;
166   COLORREF rgbOld;
167   int yOffset = 0, yTwipsOffset = 0;
168   SIZE          sz;
169   COLORREF      rgb;
170
171   hOldFont = ME_SelectStyleFont(c, s);
172   if ((s->fmt.dwMask & CFM_LINK) && (s->fmt.dwEffects & CFE_LINK))
173     rgb = RGB(0,0,255);
174   else if ((s->fmt.dwMask & CFM_COLOR) && (s->fmt.dwEffects & CFE_AUTOCOLOR))
175     rgb = GetSysColor(COLOR_WINDOWTEXT);
176   else
177     rgb = s->fmt.crTextColor;
178   rgbOld = SetTextColor(hDC, rgb);
179   if ((s->fmt.dwMask & s->fmt.dwEffects) & CFM_OFFSET) {
180     yTwipsOffset = s->fmt.yOffset;
181   }
182   if ((s->fmt.dwMask & s->fmt.dwEffects) & (CFM_SUPERSCRIPT | CFM_SUBSCRIPT)) {
183     if (s->fmt.dwEffects & CFE_SUPERSCRIPT) yTwipsOffset = s->fmt.yHeight/3;
184     if (s->fmt.dwEffects & CFE_SUBSCRIPT) yTwipsOffset = -s->fmt.yHeight/12;
185   }
186   if (yTwipsOffset)
187     yOffset = ME_twips2pointsY(c, yTwipsOffset);
188   ExtTextOutW(hDC, x, y-yOffset, 0, NULL, szText, nChars, NULL);
189   GetTextExtentPoint32W(hDC, szText, nChars, &sz);
190   if (width) *width = sz.cx;
191   if (s->fmt.dwMask & CFM_UNDERLINETYPE)
192   {
193     HPEN    hPen;
194     switch (s->fmt.bUnderlineType)
195     {
196     case CFU_UNDERLINE:
197     case CFU_UNDERLINEWORD: /* native seems to map it to simple underline (MSDN) */
198     case CFU_UNDERLINEDOUBLE: /* native seems to map it to simple underline (MSDN) */
199       hPen = CreatePen(PS_SOLID, 1, rgb);
200       break;
201     case CFU_UNDERLINEDOTTED:
202       hPen = CreatePen(PS_DOT, 1, rgb);
203       break;
204     default:
205       WINE_FIXME("Unknown underline type (%u)\n", s->fmt.bUnderlineType);
206       /* fall through */
207     case CFU_CF1UNDERLINE: /* this type is supported in the font, do nothing */
208     case CFU_UNDERLINENONE:
209       hPen = NULL;
210       break;
211     }
212     if (hPen != NULL)
213     {
214       HPEN hOldPen = SelectObject(hDC, hPen);
215       /* FIXME: should use textmetrics info for Descent info */
216       MoveToEx(hDC, x, y - yOffset + 1, NULL);
217       LineTo(hDC, x + sz.cx, y - yOffset + 1);
218       SelectObject(hDC, hOldPen);
219       DeleteObject(hPen);
220     }
221   }
222   if (nSelFrom < nChars && nSelTo >= 0 && nSelFrom<nSelTo)
223   {
224     if (nSelFrom < 0) nSelFrom = 0;
225     if (nSelTo > nChars) nSelTo = nChars;
226     GetTextExtentPoint32W(hDC, szText, nSelFrom, &sz);
227     x += sz.cx;
228     GetTextExtentPoint32W(hDC, szText+nSelFrom, nSelTo-nSelFrom, &sz);
229     
230     /* Invert selection if not hidden by EM_HIDESELECTION */
231     if (c->editor->bHideSelection == FALSE)
232         PatBlt(hDC, x, ymin, sz.cx, cy, DSTINVERT);
233   }
234   SetTextColor(hDC, rgbOld);
235   ME_UnselectStyleFont(c, s, hOldFont);
236 }
237
238 static void ME_DebugWrite(HDC hDC, const POINT *pt, LPCWSTR szText) {
239   int align = SetTextAlign(hDC, TA_LEFT|TA_TOP);
240   HGDIOBJ hFont = SelectObject(hDC, GetStockObject(DEFAULT_GUI_FONT));
241   COLORREF color = SetTextColor(hDC, RGB(128,128,128));
242   TextOutW(hDC, pt->x, pt->y, szText, lstrlenW(szText));
243   SelectObject(hDC, hFont);
244   SetTextAlign(hDC, align);
245   SetTextColor(hDC, color);
246 }
247
248 static void ME_DrawRun(ME_Context *c, int x, int y, ME_DisplayItem *rundi, ME_Paragraph *para) 
249 {
250   ME_Run *run = &rundi->member.run;
251   ME_DisplayItem *start;
252   int runofs = run->nCharOfs+para->nCharOfs;
253   int nSelFrom, nSelTo;
254   const WCHAR wszSpace[] = {' ', 0};
255   
256   if (run->nFlags & MERF_HIDDEN)
257     return;
258
259   start = ME_FindItemBack(rundi, diStartRow);
260   ME_GetSelection(c->editor, &nSelFrom, &nSelTo);
261
262   /* Draw selected end-of-paragraph mark */
263   if (run->nFlags & MERF_ENDPARA && runofs >= nSelFrom && runofs < nSelTo)
264     ME_DrawTextWithStyle(c, x, y, wszSpace, 1, run->style, NULL, 0, 1,
265                          c->pt.y + start->member.row.nYPos,
266                          start->member.row.nHeight);
267           
268   /* you can always comment it out if you need visible paragraph marks */
269   if (run->nFlags & (MERF_ENDPARA | MERF_TAB | MERF_CELL)) 
270     return;
271
272   if (run->nFlags & MERF_GRAPHICS)
273     ME_DrawOLE(c, x, y, run, para, (runofs >= nSelFrom) && (runofs < nSelTo));
274   else
275   {
276     if (c->editor->cPasswordMask)
277     {
278       ME_String *szMasked = ME_MakeStringR(c->editor->cPasswordMask,ME_StrVLen(run->strText));
279       ME_DrawTextWithStyle(c, x, y, 
280         szMasked->szData, ME_StrVLen(szMasked), run->style, NULL, 
281         nSelFrom-runofs,nSelTo-runofs, c->pt.y+start->member.row.nYPos, start->member.row.nHeight);
282       ME_DestroyString(szMasked);
283     }
284     else
285       ME_DrawTextWithStyle(c, x, y, 
286         run->strText->szData, ME_StrVLen(run->strText), run->style, NULL, 
287         nSelFrom-runofs,nSelTo-runofs, c->pt.y+start->member.row.nYPos, start->member.row.nHeight);
288     }
289 }
290
291 static struct {unsigned width_num : 4, width_den : 4, pen_style : 4, dble : 1;} border_details[] = {
292   /* none */            {0, 1, PS_SOLID, FALSE},
293   /* 3/4 */             {3, 4, PS_SOLID, FALSE},
294   /* 1 1/2 */           {3, 2, PS_SOLID, FALSE},
295   /* 2 1/4 */           {9, 4, PS_SOLID, FALSE},
296   /* 3 */               {3, 1, PS_SOLID, FALSE},
297   /* 4 1/2 */           {9, 2, PS_SOLID, FALSE},
298   /* 6 */               {6, 1, PS_SOLID, FALSE},
299   /* 3/4 double */      {3, 4, PS_SOLID, TRUE},
300   /* 1 1/2 double */    {3, 2, PS_SOLID, TRUE},
301   /* 2 1/4 double */    {9, 4, PS_SOLID, TRUE},
302   /* 3/4 gray */        {3, 4, PS_DOT /* FIXME */, FALSE},
303   /* 1 1/2 dashed */    {3, 2, PS_DASH, FALSE},
304 };
305
306 static COLORREF         pen_colors[16] = {
307   /* Black */           RGB(0x00, 0x00, 0x00),  /* Blue */            RGB(0x00, 0x00, 0xFF),
308   /* Cyan */            RGB(0x00, 0xFF, 0xFF),  /* Green */           RGB(0x00, 0xFF, 0x00),
309   /* Magenta */         RGB(0xFF, 0x00, 0xFF),  /* Red */             RGB(0xFF, 0x00, 0x00),
310   /* Yellow */          RGB(0xFF, 0xFF, 0x00),  /* White */           RGB(0xFF, 0xFF, 0xFF),
311   /* Dark blue */       RGB(0x00, 0x00, 0x80),  /* Dark cyan */       RGB(0x00, 0x80, 0x80),
312   /* Dark green */      RGB(0x00, 0x80, 0x80),  /* Dark magenta */    RGB(0x80, 0x00, 0x80),
313   /* Dark red */        RGB(0x80, 0x00, 0x00),  /* Dark yellow */     RGB(0x80, 0x80, 0x00),
314   /* Dark gray */       RGB(0x80, 0x80, 0x80),  /* Light gray */      RGB(0xc0, 0xc0, 0xc0),
315 };
316
317 static int ME_GetBorderPenWidth(ME_TextEditor* editor, int idx)
318 {
319   int width;
320
321   if (editor->nZoomNumerator == 0)
322   {
323       width = border_details[idx].width_num + border_details[idx].width_den / 2;
324       width /= border_details[idx].width_den;
325   }
326   else
327   {
328       width = border_details[idx].width_num * editor->nZoomNumerator;
329       width += border_details[idx].width_den * editor->nZoomNumerator / 2;
330       width /= border_details[idx].width_den * editor->nZoomDenominator;
331   }
332   return width;
333 }
334
335 int  ME_GetParaBorderWidth(ME_TextEditor* editor, int flags)
336 {
337   int idx = (flags >> 8) & 0xF;
338   int width;
339
340   if (idx >= sizeof(border_details) / sizeof(border_details[0]))
341   {
342       FIXME("Unsupported border value %d\n", idx);
343       return 0;
344   }
345   width = ME_GetBorderPenWidth(editor, idx);
346   if (border_details[idx].dble) width = width * 2 + 1;
347   return width;
348 }
349
350 int  ME_GetParaLineSpace(ME_Context* c, ME_Paragraph* para)
351 {
352   int   sp = 0, ls = 0;
353   if (!(para->pFmt->dwMask & PFM_LINESPACING)) return 0;
354
355   /* FIXME: how to compute simply the line space in ls ??? */
356   /* FIXME: does line spacing include the line itself ??? */
357   switch (para->pFmt->bLineSpacingRule)
358   {
359   case 0:       sp = ls; break;
360   case 1:       sp = (3 * ls) / 2; break;
361   case 2:       sp = 2 * ls; break;
362   case 3:       sp = ME_twips2pointsY(c, para->pFmt->dyLineSpacing); if (sp < ls) sp = ls; break;
363   case 4:       sp = ME_twips2pointsY(c, para->pFmt->dyLineSpacing); break;
364   case 5:       sp = para->pFmt->dyLineSpacing / 20; break;
365   default: FIXME("Unsupported spacing rule value %d\n", para->pFmt->bLineSpacingRule);
366   }
367   if (c->editor->nZoomNumerator == 0)
368     return sp;
369   else
370     return sp * c->editor->nZoomNumerator / c->editor->nZoomDenominator;
371 }
372
373 static void ME_DrawParaDecoration(ME_Context* c, ME_Paragraph* para, int y, RECT* bounds)
374 {
375   int           idx, border_width, top_border, bottom_border;
376   RECT          rc;
377
378   SetRectEmpty(bounds);
379   if (!(para->pFmt->dwMask & (PFM_BORDER | PFM_SPACEBEFORE | PFM_SPACEAFTER))) return;
380
381   border_width = top_border = bottom_border = 0;
382   idx = (para->pFmt->wBorders >> 8) & 0xF;
383   if ((para->pFmt->dwMask & PFM_BORDER) && idx != 0 && (para->pFmt->wBorders & 0xF))
384   {
385     if (para->pFmt->wBorders & 0x00B0)
386       FIXME("Unsupported border flags %x\n", para->pFmt->wBorders);
387     border_width = ME_GetParaBorderWidth(c->editor, para->pFmt->wBorders);
388     if (para->pFmt->wBorders & 4)       top_border = border_width;
389     if (para->pFmt->wBorders & 8)       bottom_border = border_width;
390   }
391
392   if (para->pFmt->dwMask & PFM_SPACEBEFORE)
393   {
394     rc.left = c->rcView.left;
395     rc.right = c->rcView.right;
396     rc.top = y;
397     bounds->top = ME_twips2pointsY(c, para->pFmt->dySpaceBefore);
398     rc.bottom = y + bounds->top + top_border;
399     FillRect(c->hDC, &rc, c->editor->hbrBackground);
400   }
401
402   if (para->pFmt->dwMask & PFM_SPACEAFTER)
403   {
404     rc.left = c->rcView.left;
405     rc.right = c->rcView.right;
406     rc.bottom = y + para->nHeight;
407     bounds->bottom = ME_twips2pointsY(c, para->pFmt->dySpaceAfter);
408     rc.top = rc.bottom - bounds->bottom - bottom_border;
409     FillRect(c->hDC, &rc, c->editor->hbrBackground);
410   }
411
412   if ((para->pFmt->dwMask & PFM_BORDER) && idx != 0 && (para->pFmt->wBorders & 0xF)) {
413     int         pen_width;
414     COLORREF    pencr;
415     HPEN        pen = NULL, oldpen = NULL;
416     POINT       pt;
417
418     if (para->pFmt->wBorders & 64) /* autocolor */
419       pencr = GetSysColor(COLOR_WINDOWTEXT);
420     else
421       pencr = pen_colors[(para->pFmt->wBorders >> 12) & 0xF];
422
423     pen_width = ME_GetBorderPenWidth(c->editor, idx);
424     pen = CreatePen(border_details[idx].pen_style, pen_width, pencr);
425     oldpen = SelectObject(c->hDC, pen);
426     MoveToEx(c->hDC, 0, 0, &pt);
427
428     /* before & after spaces are not included in border */
429
430     /* helper to draw the double lines in case of corner */
431 #define DD(x)   ((para->pFmt->wBorders & (x)) ? (pen_width + 1) : 0)
432
433     if (para->pFmt->wBorders & 1)
434     {
435       MoveToEx(c->hDC, c->rcView.left, y + bounds->top, NULL);
436       LineTo(c->hDC, c->rcView.left, y + para->nHeight - bounds->bottom);
437       if (border_details[idx].dble) {
438         rc.left = c->rcView.left + 1;
439         rc.right = rc.left + border_width;
440         rc.top = y + bounds->top;
441         rc.bottom = y + para->nHeight - bounds->bottom;
442         FillRect(c->hDC, &rc, c->editor->hbrBackground);
443         MoveToEx(c->hDC, c->rcView.left + pen_width + 1, y + bounds->top + DD(4), NULL);
444         LineTo(c->hDC, c->rcView.left + pen_width + 1, y + para->nHeight - bounds->bottom - DD(8));
445       }
446       bounds->left += border_width;
447     }
448     if (para->pFmt->wBorders & 2)
449     {
450       MoveToEx(c->hDC, c->rcView.right - 1, y + bounds->top, NULL);
451       LineTo(c->hDC, c->rcView.right - 1, y + para->nHeight - bounds->bottom);
452       if (border_details[idx].dble) {
453         rc.left = c->rcView.right - pen_width - 1;
454         rc.right = c->rcView.right - 1;
455         rc.top = y + bounds->top;
456         rc.bottom = y + para->nHeight - bounds->bottom;
457         FillRect(c->hDC, &rc, c->editor->hbrBackground);
458         MoveToEx(c->hDC, c->rcView.right - 1 - pen_width - 1, y + bounds->top + DD(4), NULL);
459         LineTo(c->hDC, c->rcView.right - 1 - pen_width - 1, y + para->nHeight - bounds->bottom - DD(8));
460       }
461       bounds->right += border_width;
462     }
463     if (para->pFmt->wBorders & 4)
464     {
465       MoveToEx(c->hDC, c->rcView.left, y + bounds->top, NULL);
466       LineTo(c->hDC, c->rcView.right, y + bounds->top);
467       if (border_details[idx].dble) {
468         MoveToEx(c->hDC, c->rcView.left + DD(1), y + bounds->top + pen_width + 1, NULL);
469         LineTo(c->hDC, c->rcView.right - DD(2), y + bounds->top + pen_width + 1);
470       }
471       bounds->top += border_width;
472     }
473     if (para->pFmt->wBorders & 8)
474     {
475       MoveToEx(c->hDC, c->rcView.left, y + para->nHeight - bounds->bottom - 1, NULL);
476       LineTo(c->hDC, c->rcView.right, y + para->nHeight - bounds->bottom - 1);
477       if (border_details[idx].dble) {
478         MoveToEx(c->hDC, c->rcView.left + DD(1), y + para->nHeight - bounds->bottom - 1 - pen_width - 1, NULL);
479         LineTo(c->hDC, c->rcView.right - DD(2), y + para->nHeight - bounds->bottom - 1 - pen_width - 1);
480       }
481       bounds->bottom += border_width;
482     }
483 #undef DD
484
485     MoveToEx(c->hDC, pt.x, pt.y, NULL);
486     SelectObject(c->hDC, oldpen);
487     DeleteObject(pen);
488   }
489 }
490
491 void ME_DrawParagraph(ME_Context *c, ME_DisplayItem *paragraph) {
492   int align = SetTextAlign(c->hDC, TA_BASELINE);
493   ME_DisplayItem *p;
494   ME_Run *run;
495   ME_Paragraph *para = NULL;
496   RECT rc, rcPara, bounds;
497   int y = c->pt.y;
498   int height = 0, baseline = 0, no=0, pno = 0;
499   int xs = 0, xe = 0;
500   BOOL visible = FALSE;
501
502   c->pt.x = c->rcView.left;
503   rcPara.left = c->rcView.left;
504   rcPara.right = c->rcView.right;
505   for (p = paragraph; p!=paragraph->member.para.next_para; p = p->next) {
506     switch(p->type) {
507       case diParagraph:
508         para = &p->member.para;
509         assert(para);
510         pno = 0;
511         xs = c->rcView.left + ME_twips2pointsX(c, para->pFmt->dxStartIndent);
512         xe = c->rcView.right - ME_twips2pointsX(c, para->pFmt->dxRightIndent);
513         ME_DrawParaDecoration(c, para, y, &bounds);
514         y += bounds.top;
515         break;
516       case diStartRow:
517         y += height;
518         rcPara.top = y;
519         rcPara.bottom = y+p->member.row.nHeight;
520         visible = RectVisible(c->hDC, &rcPara);
521         if (visible) {
522           /* left margin */
523           rc.left = c->rcView.left + bounds.left;
524           rc.right = xs;
525           rc.top = y;
526           rc.bottom = y+p->member.row.nHeight;
527           FillRect(c->hDC, &rc, c->editor->hbrBackground);
528           /* right margin */
529           rc.left = xe;
530           rc.right = c->rcView.right - bounds.right;
531           FillRect(c->hDC, &rc, c->editor->hbrBackground);
532           rc.left = xs;
533           rc.right = xe;
534           FillRect(c->hDC, &rc, c->editor->hbrBackground);
535         }
536         if (me_debug)
537         {
538           const WCHAR wszRowDebug[] = {'r','o','w','[','%','d',']',0};
539           WCHAR buf[128];
540           POINT pt = c->pt;
541           wsprintfW(buf, wszRowDebug, no);
542           pt.y = 12+y;
543           ME_DebugWrite(c->hDC, &pt, buf);
544         }
545         
546         height = p->member.row.nHeight;
547         baseline = p->member.row.nBaseline;
548         if (!pno++)
549           xe += ME_twips2pointsX(c, para->pFmt->dxOffset);
550         break;
551       case diRun:
552         assert(para);
553         run = &p->member.run;
554         if (visible && me_debug) {
555           rc.left = c->rcView.left+run->pt.x;
556           rc.right = c->rcView.left+run->pt.x+run->nWidth;
557           rc.top = c->pt.y+run->pt.y;
558           rc.bottom = c->pt.y+run->pt.y+height;
559           TRACE("rc = (%d, %d, %d, %d)\n", rc.left, rc.top, rc.right, rc.bottom);
560           if (run->nFlags & MERF_SKIPPED)
561             DrawFocusRect(c->hDC, &rc);
562           else
563             FrameRect(c->hDC, &rc, GetSysColorBrush(COLOR_GRAYTEXT));
564         }
565         if (visible)
566           ME_DrawRun(c, run->pt.x, c->pt.y+run->pt.y+baseline, p, &paragraph->member.para);
567         if (me_debug)
568         {
569           /* I'm using %ls, hope wsprintfW is not going to use wrong (4-byte) WCHAR version */
570           const WCHAR wszRunDebug[] = {'[','%','d',':','%','x',']',' ','%','l','s',0};
571           WCHAR buf[2560];
572           POINT pt;
573           pt.x = run->pt.x;
574           pt.y = c->pt.y + run->pt.y;
575           wsprintfW(buf, wszRunDebug, no, p->member.run.nFlags, p->member.run.strText->szData);
576           ME_DebugWrite(c->hDC, &pt, buf);
577         }
578         /* c->pt.x += p->member.run.nWidth; */
579         break;
580       default:
581         break;
582     }
583     no++;
584   }
585   SetTextAlign(c->hDC, align);
586 }
587
588 void ME_ScrollAbs(ME_TextEditor *editor, int absY)
589 {
590   ME_Scroll(editor, absY, 1);
591 }
592
593 void ME_ScrollUp(ME_TextEditor *editor, int cy)
594 {
595   ME_Scroll(editor, cy, 2);
596 }
597
598 void ME_ScrollDown(ME_TextEditor *editor, int cy)
599
600   ME_Scroll(editor, cy, 3);
601 }
602
603 void ME_Scroll(ME_TextEditor *editor, int value, int type)
604 {
605   SCROLLINFO si;
606   int nOrigPos, nNewPos, nActualScroll;
607
608   nOrigPos = ME_GetYScrollPos(editor);
609   
610   si.cbSize = sizeof(SCROLLINFO);
611   si.fMask = SIF_POS;
612   
613   switch (type)
614   {
615     case 1:
616       /*Scroll absolutely*/
617       si.nPos = value;
618       break;
619     case 2:
620       /* Scroll up - towards the beginning of the document */
621       si.nPos = nOrigPos - value;
622       break;
623     case 3:
624       /* Scroll down - towards the end of the document */
625       si.nPos = nOrigPos + value;
626       break;
627     default:
628       FIXME("ME_Scroll called incorrectly\n");
629       si.nPos = 0;
630   }
631   
632   nNewPos = SetScrollInfo(editor->hWnd, SB_VERT, &si, editor->bRedraw);
633   nActualScroll = nOrigPos - nNewPos;
634   if (editor->bRedraw)
635   {
636     if (abs(nActualScroll) > editor->sizeWindow.cy)
637       InvalidateRect(editor->hWnd, NULL, TRUE);
638     else
639       ScrollWindowEx(editor->hWnd, 0, nActualScroll, NULL, NULL, NULL, NULL, SW_INVALIDATE);
640     ME_Repaint(editor);
641   }
642   
643   ME_UpdateScrollBar(editor);
644 }
645
646  
647  void ME_UpdateScrollBar(ME_TextEditor *editor)
648
649   /* Note that this is the only function that should ever call SetScrolLInfo
650    * with SIF_PAGE or SIF_RANGE. SetScrollPos and SetScrollRange should never
651    * be used at all. */
652   
653   HWND hWnd;
654   SCROLLINFO si;
655   BOOL bScrollBarWasVisible,bScrollBarWillBeVisible;
656   
657   if (ME_WrapMarkedParagraphs(editor))
658     FIXME("ME_UpdateScrollBar had to call ME_WrapMarkedParagraphs\n");
659   
660   hWnd = editor->hWnd;
661   si.cbSize = sizeof(si);
662   bScrollBarWasVisible = ME_GetYScrollVisible(editor);
663   bScrollBarWillBeVisible = editor->nHeight > editor->sizeWindow.cy;
664   
665   if (bScrollBarWasVisible != bScrollBarWillBeVisible)
666   {
667     ShowScrollBar(hWnd, SB_VERT, bScrollBarWillBeVisible);
668     ME_MarkAllForWrapping(editor);
669     ME_WrapMarkedParagraphs(editor);
670   }
671   
672   si.fMask = SIF_PAGE | SIF_RANGE;
673   if (GetWindowLongW(hWnd, GWL_STYLE) & ES_DISABLENOSCROLL)
674     si.fMask |= SIF_DISABLENOSCROLL;
675   
676   si.nMin = 0;  
677   si.nMax = editor->nTotalLength;
678   
679   si.nPage = editor->sizeWindow.cy;
680      
681   TRACE("min=%d max=%d page=%d\n", si.nMin, si.nMax, si.nPage);
682   SetScrollInfo(hWnd, SB_VERT, &si, TRUE);
683 }
684
685 int ME_GetYScrollPos(ME_TextEditor *editor)
686 {
687   SCROLLINFO si;
688   si.cbSize = sizeof(si);
689   si.fMask = SIF_POS;
690   return GetScrollInfo(editor->hWnd, SB_VERT, &si) ? si.nPos : 0;
691 }
692
693 BOOL ME_GetYScrollVisible(ME_TextEditor *editor)
694 { /* Returns true if the scrollbar is visible */
695   SCROLLBARINFO sbi;
696   sbi.cbSize = sizeof(sbi);
697   GetScrollBarInfo(editor->hWnd, OBJID_VSCROLL, &sbi);
698   return ((sbi.rgstate[0] & STATE_SYSTEM_INVISIBLE) == 0);
699 }
700
701 void ME_EnsureVisible(ME_TextEditor *editor, ME_DisplayItem *pRun)
702 {
703   ME_DisplayItem *pRow = ME_FindItemBack(pRun, diStartRow);
704   ME_DisplayItem *pPara = ME_FindItemBack(pRun, diParagraph);
705   int y, yrel, yheight, yold;
706   
707   assert(pRow);
708   assert(pPara);
709   
710   y = pPara->member.para.nYPos+pRow->member.row.nYPos;
711   yheight = pRow->member.row.nHeight;
712   yold = ME_GetYScrollPos(editor);
713   yrel = y - yold;
714   
715   if (y < yold)
716     ME_ScrollAbs(editor,y);
717   else if (yrel + yheight > editor->sizeWindow.cy) 
718     ME_ScrollAbs(editor,y+yheight-editor->sizeWindow.cy);
719 }
720
721
722 void
723 ME_InvalidateFromOfs(ME_TextEditor *editor, int nCharOfs)
724 {
725   RECT rc;
726   int x, y, height;
727   ME_Cursor tmp;
728
729   ME_RunOfsFromCharOfs(editor, nCharOfs, &tmp.pRun, &tmp.nOffset);
730   ME_GetCursorCoordinates(editor, &tmp, &x, &y, &height);
731
732   rc.left = 0;
733   rc.top = y;
734   rc.bottom = y + height;
735   rc.right = editor->rcFormat.right;
736   InvalidateRect(editor->hWnd, &rc, FALSE);
737 }
738
739
740 void
741 ME_InvalidateSelection(ME_TextEditor *editor)
742 {
743   ME_DisplayItem *para1, *para2;
744   int nStart, nEnd;
745   int len = ME_GetTextLength(editor);
746
747   ME_GetSelection(editor, &nStart, &nEnd);
748   /* if both old and new selection are 0-char (= caret only), then
749   there's no (inverted) area to be repainted, neither old nor new */
750   if (nStart == nEnd && editor->nLastSelStart == editor->nLastSelEnd)
751     return;
752   ME_WrapMarkedParagraphs(editor);
753   ME_GetSelectionParas(editor, &para1, &para2);
754   assert(para1->type == diParagraph);
755   assert(para2->type == diParagraph);
756   /* last selection markers aren't always updated, which means
757   they can point past the end of the document */ 
758   if (editor->nLastSelStart > len || editor->nLastSelEnd > len) {
759     ME_MarkForPainting(editor,
760         ME_FindItemFwd(editor->pBuffer->pFirst, diParagraph),
761         ME_FindItemFwd(editor->pBuffer->pFirst, diTextEnd));
762   } else {
763     /* if the start part of selection is being expanded or contracted... */
764     if (nStart < editor->nLastSelStart) {
765       ME_MarkForPainting(editor, para1, ME_FindItemFwd(editor->pLastSelStartPara, diParagraphOrEnd));
766     } else
767     if (nStart > editor->nLastSelStart) {
768       ME_MarkForPainting(editor, editor->pLastSelStartPara, ME_FindItemFwd(para1, diParagraphOrEnd));
769     }
770
771     /* if the end part of selection is being contracted or expanded... */
772     if (nEnd < editor->nLastSelEnd) {
773       ME_MarkForPainting(editor, para2, ME_FindItemFwd(editor->pLastSelEndPara, diParagraphOrEnd));
774     } else
775     if (nEnd > editor->nLastSelEnd) {
776       ME_MarkForPainting(editor, editor->pLastSelEndPara, ME_FindItemFwd(para2, diParagraphOrEnd));
777     }
778   }
779
780   ME_InvalidateMarkedParagraphs(editor);
781   /* remember the last invalidated position */
782   ME_GetSelection(editor, &editor->nLastSelStart, &editor->nLastSelEnd);
783   ME_GetSelectionParas(editor, &editor->pLastSelStartPara, &editor->pLastSelEndPara);
784   assert(editor->pLastSelStartPara->type == diParagraph);
785   assert(editor->pLastSelEndPara->type == diParagraph);
786 }
787
788 void
789 ME_QueueInvalidateFromCursor(ME_TextEditor *editor, int nCursor)
790 {
791   editor->nInvalidOfs = ME_GetCursorOfs(editor, nCursor);
792 }
793
794
795 BOOL
796 ME_SetZoom(ME_TextEditor *editor, int numerator, int denominator)
797 {
798   /* TODO: Zoom images and objects */
799
800   if (numerator != 0)
801   {
802     if (denominator == 0)
803       return FALSE;
804     if (1.0 / 64.0 > (float)numerator / (float)denominator
805         || (float)numerator / (float)denominator > 64.0)
806       return FALSE;
807   }
808   
809   editor->nZoomNumerator = numerator;
810   editor->nZoomDenominator = denominator;
811   
812   ME_RewrapRepaint(editor);
813   return TRUE;
814 }