2 * RichEdit - painting functions
4 * Copyright 2004 by Krzysztof Foltman
5 * Copyright 2005 by Phil Krylov
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.
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.
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
24 WINE_DEFAULT_DEBUG_CHANNEL(richedit
);
26 static void ME_DrawParagraph(ME_Context
*c
, ME_DisplayItem
*paragraph
);
28 void ME_PaintContent(ME_TextEditor
*editor
, HDC hDC
, const RECT
*rcUpdate
)
35 oldRgn
= CreateRectRgn(0, 0, 0, 0);
36 if (!GetClipRgn(hDC
, oldRgn
))
41 IntersectClipRect(hDC
, rcUpdate
->left
, rcUpdate
->top
,
42 rcUpdate
->right
, rcUpdate
->bottom
);
44 ME_InitContext(&c
, editor
, hDC
);
45 SetBkMode(hDC
, TRANSPARENT
);
47 item
= editor
->pBuffer
->pFirst
->next
;
48 /* This context point is an offset for the paragraph positions stored
49 * during wrapping. It shouldn't be modified during painting. */
50 c
.pt
.x
= c
.rcView
.left
- editor
->horz_si
.nPos
;
51 c
.pt
.y
= c
.rcView
.top
- editor
->vert_si
.nPos
;
52 while(item
!= editor
->pBuffer
->pLast
)
54 assert(item
->type
== diParagraph
);
56 ys
= c
.pt
.y
+ item
->member
.para
.pt
.y
;
57 if (item
->member
.para
.pCell
58 != item
->member
.para
.next_para
->member
.para
.pCell
)
61 cell
= &ME_FindItemBack(item
->member
.para
.next_para
, diCell
)->member
.cell
;
62 ye
= c
.pt
.y
+ cell
->pt
.y
+ cell
->nHeight
;
64 ye
= ys
+ item
->member
.para
.nHeight
;
66 if (item
->member
.para
.pCell
&& !(item
->member
.para
.nFlags
& MEPF_ROWEND
) &&
67 item
->member
.para
.pCell
!= item
->member
.para
.prev_para
->member
.para
.pCell
)
69 /* the border shifts the text down */
70 ys
-= item
->member
.para
.pCell
->member
.cell
.yTextOffset
;
73 /* Draw the paragraph if any of the paragraph is in the update region. */
74 if (ys
< rcUpdate
->bottom
&& ye
> rcUpdate
->top
)
75 ME_DrawParagraph(&c
, item
);
76 item
= item
->member
.para
.next_para
;
78 if (c
.pt
.y
+ editor
->nTotalLength
< c
.rcView
.bottom
)
80 /* Fill space after the end of the text. */
82 rc
.top
= c
.pt
.y
+ editor
->nTotalLength
;
83 rc
.left
= c
.rcView
.left
;
84 rc
.bottom
= c
.rcView
.bottom
;
85 rc
.right
= c
.rcView
.right
;
87 IntersectRect(&rc
, &rc
, rcUpdate
);
89 if (!IsRectEmpty(&rc
))
90 FillRect(hDC
, &rc
, c
.editor
->hbrBackground
);
92 if (editor
->nTotalLength
!= editor
->nLastTotalLength
||
93 editor
->nTotalWidth
!= editor
->nLastTotalWidth
)
94 ME_SendRequestResize(editor
, FALSE
);
95 editor
->nLastTotalLength
= editor
->nTotalLength
;
96 editor
->nLastTotalWidth
= editor
->nTotalWidth
;
98 SelectClipRgn(hDC
, oldRgn
);
100 DeleteObject(oldRgn
);
103 ME_DestroyContext(&c
);
106 void ME_Repaint(ME_TextEditor
*editor
)
108 if (ME_WrapMarkedParagraphs(editor
))
110 ME_UpdateScrollBar(editor
);
111 FIXME("ME_Repaint had to call ME_WrapMarkedParagraphs\n");
113 ITextHost_TxViewChange(editor
->texthost
, TRUE
);
116 void ME_UpdateRepaint(ME_TextEditor
*editor
, BOOL update_now
)
118 /* Should be called whenever the contents of the control have changed */
119 BOOL wrappedParagraphs
;
121 wrappedParagraphs
= ME_WrapMarkedParagraphs(editor
);
122 if (wrappedParagraphs
)
123 ME_UpdateScrollBar(editor
);
125 /* Ensure that the cursor is visible */
126 ME_EnsureVisible(editor
, &editor
->pCursors
[0]);
128 ITextHost_TxViewChange(editor
->texthost
, update_now
);
130 ME_SendSelChange(editor
);
132 /* send EN_CHANGE if the event mask asks for it */
133 if(editor
->nEventMask
& ENM_CHANGE
)
135 editor
->nEventMask
&= ~ENM_CHANGE
;
136 ME_SendOldNotify(editor
, EN_CHANGE
);
137 editor
->nEventMask
|= ENM_CHANGE
;
142 ME_RewrapRepaint(ME_TextEditor
*editor
)
144 /* RewrapRepaint should be called whenever the control has changed in
145 * looks, but not content. Like resizing. */
147 ME_MarkAllForWrapping(editor
);
148 ME_WrapMarkedParagraphs(editor
);
149 ME_UpdateScrollBar(editor
);
153 int ME_twips2pointsX(const ME_Context
*c
, int x
)
155 if (c
->editor
->nZoomNumerator
== 0)
156 return x
* c
->dpi
.cx
/ 1440;
158 return x
* c
->dpi
.cx
* c
->editor
->nZoomNumerator
/ 1440 / c
->editor
->nZoomDenominator
;
161 int ME_twips2pointsY(const ME_Context
*c
, int y
)
163 if (c
->editor
->nZoomNumerator
== 0)
164 return y
* c
->dpi
.cy
/ 1440;
166 return y
* c
->dpi
.cy
* c
->editor
->nZoomNumerator
/ 1440 / c
->editor
->nZoomDenominator
;
169 static void ME_HighlightSpace(ME_Context
*c
, int x
, int y
, LPCWSTR szText
,
170 int nChars
, ME_Style
*s
, int width
,
171 int nSelFrom
, int nSelTo
, int ymin
, int cy
)
174 HGDIOBJ hOldFont
= NULL
;
177 /* Only highlight if there is a selection in the run and when
178 * EM_HIDESELECTION is not being used to hide the selection. */
179 if (nSelFrom
>= nChars
|| nSelTo
< 0 || nSelFrom
>= nSelTo
180 || c
->editor
->bHideSelection
)
182 hOldFont
= ME_SelectStyleFont(c
, s
);
185 GetTextExtentPoint32W(hDC
, szText
, nChars
, &sz
);
188 if (nSelFrom
< 0) nSelFrom
= 0;
189 if (nSelTo
> nChars
) nSelTo
= nChars
;
190 GetTextExtentPoint32W(hDC
, szText
, nSelFrom
, &sz
);
192 if (nSelTo
!= nChars
)
194 GetTextExtentPoint32W(hDC
, szText
+nSelFrom
, nSelTo
-nSelFrom
, &sz
);
197 selWidth
= width
- sz
.cx
;
199 ME_UnselectStyleFont(c
, s
, hOldFont
);
201 if (c
->editor
->bEmulateVersion10
)
202 PatBlt(hDC
, x
, ymin
, selWidth
, cy
, DSTINVERT
);
209 rect
.right
= x
+ selWidth
;
210 rect
.bottom
= ymin
+ cy
;
211 hBrush
= CreateSolidBrush(ITextHost_TxGetSysColor(c
->editor
->texthost
,
213 FillRect(hDC
, &rect
, hBrush
);
214 DeleteObject(hBrush
);
218 static void ME_DrawTextWithStyle(ME_Context
*c
, int x
, int y
, LPCWSTR szText
,
219 int nChars
, ME_Style
*s
, int width
,
220 int nSelFrom
, int nSelTo
, int ymin
, int cy
)
225 int yOffset
= 0, yTwipsOffset
= 0;
228 HPEN hPen
= NULL
, hOldPen
= NULL
;
229 BOOL bHighlightedText
= (nSelFrom
< nChars
&& nSelTo
>= 0
230 && nSelFrom
< nSelTo
&& !c
->editor
->bHideSelection
);
231 int xSelStart
= x
, xSelEnd
= x
;
233 /* lpDx is only needed for tabs to make sure the underline done automatically
234 * by the font extends to the end of the tab. Tabs are always stored as
235 * a single character run, so we can handle this case separately, since
236 * otherwise lpDx would need to specify the lengths of each character. */
237 if (width
&& nChars
== 1)
238 lpDx
= &width
; /* Make sure underline for tab extends across tab space */
240 hOldFont
= ME_SelectStyleFont(c
, s
);
241 if ((s
->fmt
.dwMask
& s
->fmt
.dwEffects
) & CFM_OFFSET
) {
242 yTwipsOffset
= s
->fmt
.yOffset
;
244 if ((s
->fmt
.dwMask
& s
->fmt
.dwEffects
) & (CFM_SUPERSCRIPT
| CFM_SUBSCRIPT
)) {
245 if (s
->fmt
.dwEffects
& CFE_SUPERSCRIPT
) yTwipsOffset
= s
->fmt
.yHeight
/3;
246 if (s
->fmt
.dwEffects
& CFE_SUBSCRIPT
) yTwipsOffset
= -s
->fmt
.yHeight
/12;
249 yOffset
= ME_twips2pointsY(c
, yTwipsOffset
);
251 if ((s
->fmt
.dwMask
& CFM_LINK
) && (s
->fmt
.dwEffects
& CFE_LINK
))
253 else if ((s
->fmt
.dwMask
& CFM_COLOR
) && (s
->fmt
.dwEffects
& CFE_AUTOCOLOR
))
254 rgb
= ITextHost_TxGetSysColor(c
->editor
->texthost
, COLOR_WINDOWTEXT
);
256 rgb
= s
->fmt
.crTextColor
;
258 /* Determine the area that is selected in the run. */
259 GetTextExtentPoint32W(hDC
, szText
, nChars
, &sz
);
260 /* Treat width as an optional parameter. We can get the width from the
261 * text extent of the string if it isn't specified. */
262 if (!width
) width
= sz
.cx
;
263 if (bHighlightedText
)
271 GetTextExtentPoint32W(hDC
, szText
, nSelFrom
, &sz
);
272 xSelStart
= x
+ sz
.cx
;
274 if (nSelTo
>= nChars
)
281 GetTextExtentPoint32W(hDC
, szText
+nSelFrom
, nSelTo
-nSelFrom
, &sz
);
282 xSelEnd
= xSelStart
+ sz
.cx
;
286 /* Choose the pen type for underlining the text. */
287 if (s
->fmt
.dwMask
& CFM_UNDERLINETYPE
)
289 switch (s
->fmt
.bUnderlineType
)
292 case CFU_UNDERLINEWORD
: /* native seems to map it to simple underline (MSDN) */
293 case CFU_UNDERLINEDOUBLE
: /* native seems to map it to simple underline (MSDN) */
294 hPen
= CreatePen(PS_SOLID
, 1, rgb
);
296 case CFU_UNDERLINEDOTTED
:
297 hPen
= CreatePen(PS_DOT
, 1, rgb
);
300 FIXME("Unknown underline type (%u)\n", s
->fmt
.bUnderlineType
);
302 case CFU_CF1UNDERLINE
: /* this type is supported in the font, do nothing */
303 case CFU_UNDERLINENONE
:
309 hOldPen
= SelectObject(hDC
, hPen
);
313 rgbOld
= SetTextColor(hDC
, rgb
);
314 if (bHighlightedText
&& !c
->editor
->bEmulateVersion10
)
318 /* FIXME: should use textmetrics info for Descent info */
320 MoveToEx(hDC
, x
, y
- yOffset
+ 1, NULL
);
323 ExtTextOutW(hDC
, x
, y
-yOffset
, 0, NULL
, szText
, nSelFrom
, NULL
);
325 LineTo(hDC
, xSelStart
, y
- yOffset
+ 1);
328 dim
.bottom
= ymin
+ cy
;
329 dim
.left
= xSelStart
;
331 SetTextColor(hDC
, ITextHost_TxGetSysColor(c
->editor
->texthost
,
332 COLOR_HIGHLIGHTTEXT
));
333 rgbBackOld
= SetBkColor(hDC
, ITextHost_TxGetSysColor(c
->editor
->texthost
,
335 ExtTextOutW(hDC
, xSelStart
, y
-yOffset
, ETO_OPAQUE
, &dim
,
336 szText
+nSelFrom
, nSelTo
-nSelFrom
, lpDx
);
338 LineTo(hDC
, xSelEnd
, y
- yOffset
+ 1);
339 SetBkColor(hDC
, rgbBackOld
);
340 if (xSelEnd
< x
+ width
)
342 SetTextColor(hDC
, rgb
);
343 ExtTextOutW(hDC
, xSelEnd
, y
-yOffset
, 0, NULL
, szText
+nSelTo
,
344 nChars
-nSelTo
, NULL
);
346 LineTo(hDC
, x
+ width
, y
- yOffset
+ 1);
351 ExtTextOutW(hDC
, x
, y
-yOffset
, 0, NULL
, szText
, nChars
, lpDx
);
353 /* FIXME: should use textmetrics info for Descent info */
356 MoveToEx(hDC
, x
, y
- yOffset
+ 1, NULL
);
357 LineTo(hDC
, x
+ width
, y
- yOffset
+ 1);
360 if (bHighlightedText
) /* v1.0 inverts the selection */
362 PatBlt(hDC
, xSelStart
, ymin
, xSelEnd
-xSelStart
, cy
, DSTINVERT
);
368 SelectObject(hDC
, hOldPen
);
371 SetTextColor(hDC
, rgbOld
);
372 ME_UnselectStyleFont(c
, s
, hOldFont
);
375 static void ME_DebugWrite(HDC hDC
, const POINT
*pt
, LPCWSTR szText
) {
376 int align
= SetTextAlign(hDC
, TA_LEFT
|TA_TOP
);
377 HGDIOBJ hFont
= SelectObject(hDC
, GetStockObject(DEFAULT_GUI_FONT
));
378 COLORREF color
= SetTextColor(hDC
, RGB(128,128,128));
379 TextOutW(hDC
, pt
->x
, pt
->y
, szText
, lstrlenW(szText
));
380 SelectObject(hDC
, hFont
);
381 SetTextAlign(hDC
, align
);
382 SetTextColor(hDC
, color
);
385 static void ME_DrawRun(ME_Context
*c
, int x
, int y
, ME_DisplayItem
*rundi
, ME_Paragraph
*para
)
387 ME_Run
*run
= &rundi
->member
.run
;
388 ME_DisplayItem
*start
;
389 int runofs
= run
->nCharOfs
+para
->nCharOfs
;
390 int nSelFrom
, nSelTo
;
391 const WCHAR wszSpace
[] = {' ', 0};
393 if (run
->nFlags
& MERF_HIDDEN
)
396 start
= ME_FindItemBack(rundi
, diStartRow
);
397 ME_GetSelectionOfs(c
->editor
, &nSelFrom
, &nSelTo
);
399 /* Draw selected end-of-paragraph mark */
400 if (run
->nFlags
& MERF_ENDPARA
)
402 if (runofs
>= nSelFrom
&& runofs
< nSelTo
)
404 ME_HighlightSpace(c
, x
, y
, wszSpace
, 1, run
->style
, 0, 0, 1,
405 c
->pt
.y
+ para
->pt
.y
+ start
->member
.row
.pt
.y
,
406 start
->member
.row
.nHeight
);
411 if (run
->nFlags
& (MERF_TAB
| MERF_ENDCELL
))
413 /* wszSpace is used instead of the tab character because otherwise
414 * an unwanted symbol can be inserted instead. */
415 ME_DrawTextWithStyle(c
, x
, y
, wszSpace
, 1, run
->style
, run
->nWidth
,
416 nSelFrom
-runofs
, nSelTo
-runofs
,
417 c
->pt
.y
+ para
->pt
.y
+ start
->member
.row
.pt
.y
,
418 start
->member
.row
.nHeight
);
422 if (run
->nFlags
& MERF_GRAPHICS
)
423 ME_DrawOLE(c
, x
, y
, run
, para
, (runofs
>= nSelFrom
) && (runofs
< nSelTo
));
426 if (c
->editor
->cPasswordMask
)
428 ME_String
*szMasked
= ME_MakeStringR(c
->editor
->cPasswordMask
, run
->strText
->nLen
);
429 ME_DrawTextWithStyle(c
, x
, y
,
430 szMasked
->szData
, szMasked
->nLen
, run
->style
, run
->nWidth
,
431 nSelFrom
-runofs
,nSelTo
-runofs
,
432 c
->pt
.y
+ para
->pt
.y
+ start
->member
.row
.pt
.y
,
433 start
->member
.row
.nHeight
);
434 ME_DestroyString(szMasked
);
437 ME_DrawTextWithStyle(c
, x
, y
,
438 run
->strText
->szData
, run
->strText
->nLen
, run
->style
, run
->nWidth
,
439 nSelFrom
-runofs
,nSelTo
-runofs
,
440 c
->pt
.y
+ para
->pt
.y
+ start
->member
.row
.pt
.y
,
441 start
->member
.row
.nHeight
);
445 /* The documented widths are in points (72 dpi), but converting them to
446 * 96 dpi (standard display resolution) avoids dealing with fractions. */
447 static const struct {unsigned width
: 8, pen_style
: 4, dble
: 1;} border_details
[] = {
448 /* none */ {0, PS_SOLID
, FALSE
},
449 /* 3/4 */ {1, PS_SOLID
, FALSE
},
450 /* 1 1/2 */ {2, PS_SOLID
, FALSE
},
451 /* 2 1/4 */ {3, PS_SOLID
, FALSE
},
452 /* 3 */ {4, PS_SOLID
, FALSE
},
453 /* 4 1/2 */ {6, PS_SOLID
, FALSE
},
454 /* 6 */ {8, PS_SOLID
, FALSE
},
455 /* 3/4 double */ {1, PS_SOLID
, TRUE
},
456 /* 1 1/2 double */ {2, PS_SOLID
, TRUE
},
457 /* 2 1/4 double */ {3, PS_SOLID
, TRUE
},
458 /* 3/4 gray */ {1, PS_DOT
/* FIXME */, FALSE
},
459 /* 1 1/2 dashed */ {2, PS_DASH
, FALSE
},
462 static const COLORREF pen_colors
[16] = {
463 /* Black */ RGB(0x00, 0x00, 0x00), /* Blue */ RGB(0x00, 0x00, 0xFF),
464 /* Cyan */ RGB(0x00, 0xFF, 0xFF), /* Green */ RGB(0x00, 0xFF, 0x00),
465 /* Magenta */ RGB(0xFF, 0x00, 0xFF), /* Red */ RGB(0xFF, 0x00, 0x00),
466 /* Yellow */ RGB(0xFF, 0xFF, 0x00), /* White */ RGB(0xFF, 0xFF, 0xFF),
467 /* Dark blue */ RGB(0x00, 0x00, 0x80), /* Dark cyan */ RGB(0x00, 0x80, 0x80),
468 /* Dark green */ RGB(0x00, 0x80, 0x80), /* Dark magenta */ RGB(0x80, 0x00, 0x80),
469 /* Dark red */ RGB(0x80, 0x00, 0x00), /* Dark yellow */ RGB(0x80, 0x80, 0x00),
470 /* Dark gray */ RGB(0x80, 0x80, 0x80), /* Light gray */ RGB(0xc0, 0xc0, 0xc0),
473 static int ME_GetBorderPenWidth(const ME_Context
* c
, int idx
)
475 int width
= border_details
[idx
].width
;
478 width
= MulDiv(width
, c
->dpi
.cx
, 96);
480 if (c
->editor
->nZoomNumerator
!= 0)
481 width
= MulDiv(width
, c
->editor
->nZoomNumerator
, c
->editor
->nZoomDenominator
);
486 int ME_GetParaBorderWidth(const ME_Context
* c
, int flags
)
488 int idx
= (flags
>> 8) & 0xF;
491 if (idx
>= sizeof(border_details
) / sizeof(border_details
[0]))
493 FIXME("Unsupported border value %d\n", idx
);
496 width
= ME_GetBorderPenWidth(c
, idx
);
497 if (border_details
[idx
].dble
) width
= width
* 2 + 1;
501 static void ME_DrawParaDecoration(ME_Context
* c
, ME_Paragraph
* para
, int y
, RECT
* bounds
)
503 int idx
, border_width
, top_border
, bottom_border
;
507 SetRectEmpty(bounds
);
508 if (!(para
->pFmt
->dwMask
& (PFM_BORDER
| PFM_SPACEBEFORE
| PFM_SPACEAFTER
))) return;
510 border_width
= top_border
= bottom_border
= 0;
511 idx
= (para
->pFmt
->wBorders
>> 8) & 0xF;
512 hasParaBorder
= (!(c
->editor
->bEmulateVersion10
&&
513 para
->pFmt
->dwMask
& PFM_TABLE
&&
514 para
->pFmt
->wEffects
& PFE_TABLE
) &&
515 (para
->pFmt
->dwMask
& PFM_BORDER
) &&
517 (para
->pFmt
->wBorders
& 0xF));
520 /* FIXME: wBorders is not stored as MSDN says in v1.0 - 4.1 of richedit
521 * controls. It actually stores the paragraph or row border style. Although
522 * the value isn't used for drawing, it is used for streaming out rich text.
524 * wBorders stores the border style for each side (top, left, bottom, right)
525 * using nibble (4 bits) to store each border style. The rich text format
526 * control words, and their associated value are the following:
536 * The order of the sides stored actually differs from v1.0 to 3.0 and v4.1.
537 * The mask corresponding to each side for the version are the following:
541 * 0x0F00 bottom right
542 * 0xF000 right bottom
544 if (para
->pFmt
->wBorders
& 0x00B0)
545 FIXME("Unsupported border flags %x\n", para
->pFmt
->wBorders
);
546 border_width
= ME_GetParaBorderWidth(c
, para
->pFmt
->wBorders
);
547 if (para
->pFmt
->wBorders
& 4) top_border
= border_width
;
548 if (para
->pFmt
->wBorders
& 8) bottom_border
= border_width
;
551 if (para
->pFmt
->dwMask
& PFM_SPACEBEFORE
)
553 rc
.left
= c
->rcView
.left
;
554 rc
.right
= c
->rcView
.right
;
556 bounds
->top
= ME_twips2pointsY(c
, para
->pFmt
->dySpaceBefore
);
557 rc
.bottom
= y
+ bounds
->top
+ top_border
;
558 FillRect(c
->hDC
, &rc
, c
->editor
->hbrBackground
);
561 if (para
->pFmt
->dwMask
& PFM_SPACEAFTER
)
563 rc
.left
= c
->rcView
.left
;
564 rc
.right
= c
->rcView
.right
;
565 rc
.bottom
= y
+ para
->nHeight
;
566 bounds
->bottom
= ME_twips2pointsY(c
, para
->pFmt
->dySpaceAfter
);
567 rc
.top
= rc
.bottom
- bounds
->bottom
- bottom_border
;
568 FillRect(c
->hDC
, &rc
, c
->editor
->hbrBackground
);
571 /* Native richedit doesn't support paragraph borders in v1.0 - 4.1,
572 * but might support it in later versions. */
574 int pen_width
, rightEdge
;
576 HPEN pen
= NULL
, oldpen
= NULL
;
579 if (para
->pFmt
->wBorders
& 64) /* autocolor */
580 pencr
= ITextHost_TxGetSysColor(c
->editor
->texthost
,
583 pencr
= pen_colors
[(para
->pFmt
->wBorders
>> 12) & 0xF];
585 rightEdge
= c
->pt
.x
+ max(c
->editor
->sizeWindow
.cx
,
586 c
->editor
->nTotalWidth
);
588 pen_width
= ME_GetBorderPenWidth(c
, idx
);
589 pen
= CreatePen(border_details
[idx
].pen_style
, pen_width
, pencr
);
590 oldpen
= SelectObject(c
->hDC
, pen
);
591 MoveToEx(c
->hDC
, 0, 0, &pt
);
593 /* before & after spaces are not included in border */
595 /* helper to draw the double lines in case of corner */
596 #define DD(x) ((para->pFmt->wBorders & (x)) ? (pen_width + 1) : 0)
598 if (para
->pFmt
->wBorders
& 1)
600 MoveToEx(c
->hDC
, c
->pt
.x
, y
+ bounds
->top
, NULL
);
601 LineTo(c
->hDC
, c
->pt
.x
, y
+ para
->nHeight
- bounds
->bottom
);
602 if (border_details
[idx
].dble
) {
603 rc
.left
= c
->pt
.x
+ 1;
604 rc
.right
= rc
.left
+ border_width
;
605 rc
.top
= y
+ bounds
->top
;
606 rc
.bottom
= y
+ para
->nHeight
- bounds
->bottom
;
607 FillRect(c
->hDC
, &rc
, c
->editor
->hbrBackground
);
608 MoveToEx(c
->hDC
, c
->pt
.x
+ pen_width
+ 1, y
+ bounds
->top
+ DD(4), NULL
);
609 LineTo(c
->hDC
, c
->pt
.x
+ pen_width
+ 1, y
+ para
->nHeight
- bounds
->bottom
- DD(8));
611 bounds
->left
+= border_width
;
613 if (para
->pFmt
->wBorders
& 2)
615 MoveToEx(c
->hDC
, rightEdge
- 1, y
+ bounds
->top
, NULL
);
616 LineTo(c
->hDC
, rightEdge
- 1, y
+ para
->nHeight
- bounds
->bottom
);
617 if (border_details
[idx
].dble
) {
618 rc
.left
= rightEdge
- pen_width
- 1;
619 rc
.right
= rc
.left
+ pen_width
;
620 rc
.top
= y
+ bounds
->top
;
621 rc
.bottom
= y
+ para
->nHeight
- bounds
->bottom
;
622 FillRect(c
->hDC
, &rc
, c
->editor
->hbrBackground
);
623 MoveToEx(c
->hDC
, rightEdge
- 1 - pen_width
- 1, y
+ bounds
->top
+ DD(4), NULL
);
624 LineTo(c
->hDC
, rightEdge
- 1 - pen_width
- 1, y
+ para
->nHeight
- bounds
->bottom
- DD(8));
626 bounds
->right
+= border_width
;
628 if (para
->pFmt
->wBorders
& 4)
630 MoveToEx(c
->hDC
, c
->pt
.x
, y
+ bounds
->top
, NULL
);
631 LineTo(c
->hDC
, rightEdge
, y
+ bounds
->top
);
632 if (border_details
[idx
].dble
) {
633 MoveToEx(c
->hDC
, c
->pt
.x
+ DD(1), y
+ bounds
->top
+ pen_width
+ 1, NULL
);
634 LineTo(c
->hDC
, rightEdge
- DD(2), y
+ bounds
->top
+ pen_width
+ 1);
636 bounds
->top
+= border_width
;
638 if (para
->pFmt
->wBorders
& 8)
640 MoveToEx(c
->hDC
, c
->pt
.x
, y
+ para
->nHeight
- bounds
->bottom
- 1, NULL
);
641 LineTo(c
->hDC
, rightEdge
, y
+ para
->nHeight
- bounds
->bottom
- 1);
642 if (border_details
[idx
].dble
) {
643 MoveToEx(c
->hDC
, c
->pt
.x
+ DD(1), y
+ para
->nHeight
- bounds
->bottom
- 1 - pen_width
- 1, NULL
);
644 LineTo(c
->hDC
, rightEdge
- DD(2), y
+ para
->nHeight
- bounds
->bottom
- 1 - pen_width
- 1);
646 bounds
->bottom
+= border_width
;
650 MoveToEx(c
->hDC
, pt
.x
, pt
.y
, NULL
);
651 SelectObject(c
->hDC
, oldpen
);
656 static void ME_DrawTableBorders(ME_Context
*c
, ME_DisplayItem
*paragraph
)
658 ME_Paragraph
*para
= ¶graph
->member
.para
;
659 if (!c
->editor
->bEmulateVersion10
) /* v4.1 */
664 ME_Cell
*cell
= ¶
->pCell
->member
.cell
;
665 ME_DisplayItem
*paraAfterRow
;
672 BOOL atTop
= (para
->pCell
!= para
->prev_para
->member
.para
.pCell
);
673 BOOL atBottom
= (para
->pCell
!= para
->next_para
->member
.para
.pCell
);
674 int top
= c
->pt
.y
+ (atTop
? cell
->pt
.y
: para
->pt
.y
);
675 int bottom
= (atBottom
?
676 c
->pt
.y
+ cell
->pt
.y
+ cell
->nHeight
:
677 top
+ para
->nHeight
+ (atTop
? cell
->yTextOffset
: 0));
678 rc
.left
= c
->pt
.x
+ cell
->pt
.x
;
679 rc
.right
= rc
.left
+ cell
->nWidth
;
681 /* Erase gap before text if not all borders are the same height. */
682 width
= max(ME_twips2pointsY(c
, cell
->border
.top
.width
), 1);
683 rc
.top
= top
+ width
;
684 width
= cell
->yTextOffset
- width
;
685 rc
.bottom
= rc
.top
+ width
;
687 FillRect(c
->hDC
, &rc
, c
->editor
->hbrBackground
);
690 /* Draw cell borders.
691 * The order borders are draw in is left, top, bottom, right in order
692 * to be consistent with native richedit. This is noticeable from the
693 * overlap of borders of different colours. */
694 if (!(para
->nFlags
& MEPF_ROWEND
)) {
697 if (cell
->border
.left
.width
> 0)
699 color
= cell
->border
.left
.colorRef
;
700 width
= max(ME_twips2pointsX(c
, cell
->border
.left
.width
), 1);
702 color
= RGB(192,192,192);
705 logBrush
.lbStyle
= BS_SOLID
;
706 logBrush
.lbColor
= color
;
707 logBrush
.lbHatch
= 0;
708 pen
= ExtCreatePen(PS_GEOMETRIC
|PS_SOLID
|PS_ENDCAP_FLAT
|PS_JOIN_MITER
,
709 width
, &logBrush
, 0, NULL
);
710 oldPen
= SelectObject(c
->hDC
, pen
);
711 MoveToEx(c
->hDC
, rc
.left
, rc
.top
, &oldPt
);
712 LineTo(c
->hDC
, rc
.left
, rc
.bottom
);
713 SelectObject(c
->hDC
, oldPen
);
715 MoveToEx(c
->hDC
, oldPt
.x
, oldPt
.y
, NULL
);
719 if (cell
->border
.top
.width
> 0)
721 brush
= CreateSolidBrush(cell
->border
.top
.colorRef
);
722 width
= max(ME_twips2pointsY(c
, cell
->border
.top
.width
), 1);
724 brush
= GetStockObject(LTGRAY_BRUSH
);
728 rc
.bottom
= rc
.top
+ width
;
729 FillRect(c
->hDC
, &rc
, brush
);
730 if (cell
->border
.top
.width
> 0)
734 /* Draw the bottom border if at the last paragraph in the cell, and when
735 * in the last row of the table. */
737 int oldLeft
= rc
.left
;
738 width
= max(ME_twips2pointsY(c
, cell
->border
.bottom
.width
), 1);
739 paraAfterRow
= ME_GetTableRowEnd(paragraph
)->member
.para
.next_para
;
740 if (paraAfterRow
->member
.para
.nFlags
& MEPF_ROWSTART
) {
741 ME_DisplayItem
*nextEndCell
;
742 nextEndCell
= ME_FindItemBack(ME_GetTableRowEnd(paraAfterRow
), diCell
);
743 assert(nextEndCell
&& !nextEndCell
->member
.cell
.next_cell
);
744 rc
.left
= c
->pt
.x
+ nextEndCell
->member
.cell
.pt
.x
;
745 /* FIXME: Native draws FROM the bottom of the table rather than
746 * TO the bottom of the table in this case, but just doing so here
747 * will cause the next row to erase the border. */
750 rc.bottom = rc.top + width;
753 if (rc
.left
< rc
.right
) {
754 if (cell
->border
.bottom
.width
> 0) {
755 brush
= CreateSolidBrush(cell
->border
.bottom
.colorRef
);
757 brush
= GetStockObject(LTGRAY_BRUSH
);
760 rc
.top
= rc
.bottom
- width
;
761 FillRect(c
->hDC
, &rc
, brush
);
762 if (cell
->border
.bottom
.width
> 0)
768 /* Right border only drawn if at the end of the table row. */
769 if (!cell
->next_cell
->member
.cell
.next_cell
&&
770 !(para
->nFlags
& MEPF_ROWSTART
))
774 if (cell
->border
.right
.width
> 0) {
775 color
= cell
->border
.right
.colorRef
;
776 width
= max(ME_twips2pointsX(c
, cell
->border
.right
.width
), 1);
778 color
= RGB(192,192,192);
781 logBrush
.lbStyle
= BS_SOLID
;
782 logBrush
.lbColor
= color
;
783 logBrush
.lbHatch
= 0;
784 pen
= ExtCreatePen(PS_GEOMETRIC
|PS_SOLID
|PS_ENDCAP_FLAT
|PS_JOIN_MITER
,
785 width
, &logBrush
, 0, NULL
);
786 oldPen
= SelectObject(c
->hDC
, pen
);
787 MoveToEx(c
->hDC
, rc
.right
- 1, rc
.top
, &oldPt
);
788 LineTo(c
->hDC
, rc
.right
- 1, rc
.bottom
);
789 SelectObject(c
->hDC
, oldPen
);
791 MoveToEx(c
->hDC
, oldPt
.x
, oldPt
.y
, NULL
);
794 } else { /* v1.0 - 3.0 */
795 /* Draw simple table border */
796 if (para
->pFmt
->dwMask
& PFM_TABLE
&& para
->pFmt
->wEffects
& PFE_TABLE
) {
797 HPEN pen
= NULL
, oldpen
= NULL
;
798 int i
, firstX
, startX
, endX
, rowY
, rowBottom
, nHeight
;
800 PARAFORMAT2
*pNextFmt
;
802 pen
= CreatePen(PS_SOLID
, 0, para
->border
.top
.colorRef
);
803 oldpen
= SelectObject(c
->hDC
, pen
);
805 /* Find the start relative to the text */
806 firstX
= c
->pt
.x
+ ME_FindItemFwd(paragraph
, diRun
)->member
.run
.pt
.x
;
807 /* Go back by the horizontal gap, which is stored in dxOffset */
808 firstX
-= ME_twips2pointsX(c
, para
->pFmt
->dxOffset
);
809 /* The left edge, stored in dxStartIndent affected just the first edge */
810 startX
= firstX
- ME_twips2pointsX(c
, para
->pFmt
->dxStartIndent
);
811 rowY
= c
->pt
.y
+ para
->pt
.y
;
812 if (para
->pFmt
->dwMask
& PFM_SPACEBEFORE
)
813 rowY
+= ME_twips2pointsY(c
, para
->pFmt
->dySpaceBefore
);
814 nHeight
= ME_FindItemFwd(paragraph
, diStartRow
)->member
.row
.nHeight
;
815 rowBottom
= rowY
+ nHeight
;
817 /* Draw horizontal lines */
818 MoveToEx(c
->hDC
, firstX
, rowY
, &oldPt
);
819 i
= para
->pFmt
->cTabCount
- 1;
820 endX
= startX
+ ME_twips2pointsX(c
, para
->pFmt
->rgxTabs
[i
] & 0x00ffffff) + 1;
821 LineTo(c
->hDC
, endX
, rowY
);
822 pNextFmt
= para
->next_para
->member
.para
.pFmt
;
823 /* The bottom of the row only needs to be drawn if the next row is
825 if (!(pNextFmt
&& pNextFmt
->dwMask
& PFM_TABLE
&& pNextFmt
->wEffects
&&
828 /* Decrement rowBottom to draw the bottom line within the row, and
829 * to not draw over this line when drawing the vertical lines. */
831 MoveToEx(c
->hDC
, firstX
, rowBottom
, NULL
);
832 LineTo(c
->hDC
, endX
, rowBottom
);
835 /* Draw vertical lines */
836 MoveToEx(c
->hDC
, firstX
, rowY
, NULL
);
837 LineTo(c
->hDC
, firstX
, rowBottom
);
838 for (i
= 0; i
< para
->pFmt
->cTabCount
; i
++)
840 int rightBoundary
= para
->pFmt
->rgxTabs
[i
] & 0x00ffffff;
841 endX
= startX
+ ME_twips2pointsX(c
, rightBoundary
);
842 MoveToEx(c
->hDC
, endX
, rowY
, NULL
);
843 LineTo(c
->hDC
, endX
, rowBottom
);
846 MoveToEx(c
->hDC
, oldPt
.x
, oldPt
.y
, NULL
);
847 SelectObject(c
->hDC
, oldpen
);
853 static void ME_DrawParagraph(ME_Context
*c
, ME_DisplayItem
*paragraph
)
855 int align
= SetTextAlign(c
->hDC
, TA_BASELINE
);
858 ME_Paragraph
*para
= NULL
;
861 int height
= 0, baseline
= 0, no
=0;
862 BOOL visible
= FALSE
;
865 rc
.right
= c
->rcView
.right
;
868 para
= ¶graph
->member
.para
;
869 y
= c
->pt
.y
+ para
->pt
.y
;
872 ME_Cell
*cell
= ¶
->pCell
->member
.cell
;
873 rc
.left
= c
->pt
.x
+ cell
->pt
.x
;
874 rc
.right
= rc
.left
+ cell
->nWidth
;
876 if (para
->nFlags
& MEPF_ROWSTART
) {
877 ME_Cell
*cell
= ¶
->next_para
->member
.para
.pCell
->member
.cell
;
878 rc
.right
= c
->pt
.x
+ cell
->pt
.x
;
879 } else if (para
->nFlags
& MEPF_ROWEND
) {
880 ME_Cell
*cell
= ¶
->prev_para
->member
.para
.pCell
->member
.cell
;
881 rc
.left
= c
->pt
.x
+ cell
->pt
.x
+ cell
->nWidth
;
883 ME_DrawParaDecoration(c
, para
, y
, &bounds
);
885 if (bounds
.left
|| bounds
.right
) {
886 rc
.left
= max(rc
.left
, c
->pt
.x
+ bounds
.left
);
887 rc
.right
= min(rc
.right
, c
->pt
.x
- bounds
.right
888 + max(c
->editor
->sizeWindow
.cx
,
889 c
->editor
->nTotalWidth
));
892 for (p
= paragraph
->next
; p
!= para
->next_para
; p
= p
->next
)
901 if (para
->nFlags
& (MEPF_ROWSTART
|MEPF_ROWEND
)) {
902 rc
.bottom
= y
+ para
->nHeight
;
904 rc
.bottom
= y
+ p
->member
.row
.nHeight
;
906 visible
= RectVisible(c
->hDC
, &rc
);
908 FillRect(c
->hDC
, &rc
, c
->editor
->hbrBackground
);
912 /* If scrolled to the right past the end of the text, then
913 * there may be space to the right of the paragraph border. */
914 RECT rcAfterBrdr
= rc
;
915 rcAfterBrdr
.left
= rc
.right
+ bounds
.right
;
916 rcAfterBrdr
.right
= c
->rcView
.right
;
917 if (RectVisible(c
->hDC
, &rcAfterBrdr
))
918 FillRect(c
->hDC
, &rcAfterBrdr
, c
->editor
->hbrBackground
);
922 const WCHAR wszRowDebug
[] = {'r','o','w','[','%','d',']',0};
925 wsprintfW(buf
, wszRowDebug
, no
);
927 ME_DebugWrite(c
->hDC
, &pt
, buf
);
930 height
= p
->member
.row
.nHeight
;
931 baseline
= p
->member
.row
.nBaseline
;
935 run
= &p
->member
.run
;
936 if (visible
&& me_debug
) {
938 rc
.left
= c
->pt
.x
+ run
->pt
.x
;
939 rc
.right
= rc
.left
+ run
->nWidth
;
940 rc
.top
= c
->pt
.y
+ para
->pt
.y
+ run
->pt
.y
;
941 rc
.bottom
= rc
.top
+ height
;
942 TRACE("rc = (%d, %d, %d, %d)\n", rc
.left
, rc
.top
, rc
.right
, rc
.bottom
);
943 FrameRect(c
->hDC
, &rc
, GetSysColorBrush(COLOR_GRAYTEXT
));
946 ME_DrawRun(c
, c
->pt
.x
+ run
->pt
.x
,
947 c
->pt
.y
+ para
->pt
.y
+ run
->pt
.y
+ baseline
, p
, para
);
950 /* I'm using %ls, hope wsprintfW is not going to use wrong (4-byte) WCHAR version */
951 const WCHAR wszRunDebug
[] = {'[','%','d',':','%','x',']',' ','%','l','s',0};
954 pt
.x
= c
->pt
.x
+ run
->pt
.x
;
955 pt
.y
= c
->pt
.y
+ para
->pt
.y
+ run
->pt
.y
;
956 wsprintfW(buf
, wszRunDebug
, no
, p
->member
.run
.nFlags
, p
->member
.run
.strText
->szData
);
957 ME_DebugWrite(c
->hDC
, &pt
, buf
);
961 /* Clear any space at the bottom of the cell after the text. */
962 if (para
->nFlags
& (MEPF_ROWSTART
|MEPF_ROWEND
))
965 rc
.top
= c
->pt
.y
+ para
->pt
.y
+ para
->nHeight
;
966 rc
.bottom
= c
->pt
.y
+ p
->member
.cell
.pt
.y
+ p
->member
.cell
.nHeight
;
967 if (RectVisible(c
->hDC
, &rc
))
969 FillRect(c
->hDC
, &rc
, c
->editor
->hbrBackground
);
978 ME_DrawTableBorders(c
, paragraph
);
980 SetTextAlign(c
->hDC
, align
);
983 void ME_ScrollAbs(ME_TextEditor
*editor
, int x
, int y
)
985 BOOL bScrollBarIsVisible
, bScrollBarWillBeVisible
;
986 int scrollX
= 0, scrollY
= 0;
988 if (editor
->horz_si
.nPos
!= x
) {
989 x
= min(x
, editor
->horz_si
.nMax
);
990 x
= max(x
, editor
->horz_si
.nMin
);
991 scrollX
= editor
->horz_si
.nPos
- x
;
992 editor
->horz_si
.nPos
= x
;
993 if (editor
->horz_si
.nMax
> 0xFFFF) /* scale to 16-bit value */
994 x
= MulDiv(x
, 0xFFFF, editor
->horz_si
.nMax
);
995 ITextHost_TxSetScrollPos(editor
->texthost
, SB_HORZ
, x
, TRUE
);
998 if (editor
->vert_si
.nPos
!= y
) {
999 y
= min(y
, editor
->vert_si
.nMax
- (int)editor
->vert_si
.nPage
);
1000 y
= max(y
, editor
->vert_si
.nMin
);
1001 scrollY
= editor
->vert_si
.nPos
- y
;
1002 editor
->vert_si
.nPos
= y
;
1003 if (editor
->vert_si
.nMax
> 0xFFFF) /* scale to 16-bit value */
1004 y
= MulDiv(y
, 0xFFFF, editor
->vert_si
.nMax
);
1005 ITextHost_TxSetScrollPos(editor
->texthost
, SB_VERT
, y
, TRUE
);
1008 if (abs(scrollX
) > editor
->sizeWindow
.cx
||
1009 abs(scrollY
) > editor
->sizeWindow
.cy
)
1010 ITextHost_TxInvalidateRect(editor
->texthost
, NULL
, TRUE
);
1012 ITextHost_TxScrollWindowEx(editor
->texthost
, scrollX
, scrollY
,
1013 &editor
->rcFormat
, &editor
->rcFormat
,
1014 NULL
, NULL
, SW_INVALIDATE
);
1019 LONG winStyle
= GetWindowLongW(editor
->hWnd
, GWL_STYLE
);
1020 if (editor
->styleFlags
& WS_HSCROLL
)
1022 bScrollBarIsVisible
= (winStyle
& WS_HSCROLL
) != 0;
1023 bScrollBarWillBeVisible
= (editor
->nTotalWidth
> editor
->sizeWindow
.cx
1024 && (editor
->styleFlags
& WS_HSCROLL
))
1025 || (editor
->styleFlags
& ES_DISABLENOSCROLL
);
1026 if (bScrollBarIsVisible
!= bScrollBarWillBeVisible
)
1027 ITextHost_TxShowScrollBar(editor
->texthost
, SB_HORZ
,
1028 bScrollBarWillBeVisible
);
1031 if (editor
->styleFlags
& WS_VSCROLL
)
1033 bScrollBarIsVisible
= (winStyle
& WS_VSCROLL
) != 0;
1034 bScrollBarWillBeVisible
= (editor
->nTotalLength
> editor
->sizeWindow
.cy
1035 && (editor
->styleFlags
& WS_VSCROLL
)
1036 && (editor
->styleFlags
& ES_MULTILINE
))
1037 || (editor
->styleFlags
& ES_DISABLENOSCROLL
);
1038 if (bScrollBarIsVisible
!= bScrollBarWillBeVisible
)
1039 ITextHost_TxShowScrollBar(editor
->texthost
, SB_VERT
,
1040 bScrollBarWillBeVisible
);
1043 ME_UpdateScrollBar(editor
);
1046 void ME_HScrollAbs(ME_TextEditor
*editor
, int x
)
1048 ME_ScrollAbs(editor
, x
, editor
->vert_si
.nPos
);
1051 void ME_VScrollAbs(ME_TextEditor
*editor
, int y
)
1053 ME_ScrollAbs(editor
, editor
->horz_si
.nPos
, y
);
1056 void ME_ScrollUp(ME_TextEditor
*editor
, int cy
)
1058 ME_VScrollAbs(editor
, editor
->vert_si
.nPos
- cy
);
1061 void ME_ScrollDown(ME_TextEditor
*editor
, int cy
)
1063 ME_VScrollAbs(editor
, editor
->vert_si
.nPos
+ cy
);
1066 void ME_ScrollLeft(ME_TextEditor
*editor
, int cx
)
1068 ME_HScrollAbs(editor
, editor
->horz_si
.nPos
- cx
);
1071 void ME_ScrollRight(ME_TextEditor
*editor
, int cx
)
1073 ME_HScrollAbs(editor
, editor
->horz_si
.nPos
+ cx
);
1076 /* Calculates the visibility after a call to SetScrollRange or
1077 * SetScrollInfo with SIF_RANGE. */
1078 static BOOL
ME_PostSetScrollRangeVisibility(SCROLLINFO
*si
)
1080 if (si
->fMask
& SIF_DISABLENOSCROLL
)
1083 /* This must match the check in SetScrollInfo to determine whether
1084 * to show or hide the scrollbars. */
1085 return si
->nMin
< si
->nMax
- max(si
->nPage
- 1, 0);
1088 void ME_UpdateScrollBar(ME_TextEditor
*editor
)
1090 /* Note that this is the only function that should ever call
1091 * SetScrollInfo with SIF_PAGE or SIF_RANGE. */
1094 BOOL bScrollBarWasVisible
, bScrollBarWillBeVisible
;
1096 if (ME_WrapMarkedParagraphs(editor
))
1097 FIXME("ME_UpdateScrollBar had to call ME_WrapMarkedParagraphs\n");
1099 si
.cbSize
= sizeof(si
);
1100 si
.fMask
= SIF_PAGE
| SIF_RANGE
| SIF_POS
;
1102 if (editor
->styleFlags
& ES_DISABLENOSCROLL
)
1103 si
.fMask
|= SIF_DISABLENOSCROLL
;
1105 /* Update horizontal scrollbar */
1106 bScrollBarWasVisible
= editor
->horz_si
.nMax
> editor
->horz_si
.nPage
;
1107 bScrollBarWillBeVisible
= editor
->nTotalWidth
> editor
->sizeWindow
.cx
;
1108 if (editor
->horz_si
.nPos
&& !bScrollBarWillBeVisible
)
1110 ME_HScrollAbs(editor
, 0);
1111 /* ME_HScrollAbs will call this function,
1112 * so nothing else needs to be done here. */
1116 si
.nMax
= editor
->nTotalWidth
;
1117 si
.nPos
= editor
->horz_si
.nPos
;
1118 si
.nPage
= editor
->sizeWindow
.cx
;
1120 if (si
.nMax
!= editor
->horz_si
.nMax
||
1121 si
.nPage
!= editor
->horz_si
.nPage
)
1123 TRACE("min=%d max=%d page=%d\n", si
.nMin
, si
.nMax
, si
.nPage
);
1124 editor
->horz_si
.nMax
= si
.nMax
;
1125 editor
->horz_si
.nPage
= si
.nPage
;
1126 if ((bScrollBarWillBeVisible
|| bScrollBarWasVisible
) &&
1127 editor
->styleFlags
& WS_HSCROLL
)
1129 if (si
.nMax
> 0xFFFF)
1131 /* Native scales the scrollbar info to 16-bit external values. */
1132 si
.nPos
= MulDiv(si
.nPos
, 0xFFFF, si
.nMax
);
1136 SetScrollInfo(editor
->hWnd
, SB_HORZ
, &si
, TRUE
);
1138 ITextHost_TxSetScrollRange(editor
->texthost
, SB_HORZ
, si
.nMin
, si
.nMax
, FALSE
);
1139 ITextHost_TxSetScrollPos(editor
->texthost
, SB_HORZ
, si
.nPos
, TRUE
);
1141 /* SetScrollInfo or SetScrollRange change scrollbar visibility. */
1142 bScrollBarWasVisible
= ME_PostSetScrollRangeVisibility(&si
);
1146 if (editor
->styleFlags
& WS_HSCROLL
)
1148 if (si
.fMask
& SIF_DISABLENOSCROLL
) {
1149 bScrollBarWillBeVisible
= TRUE
;
1150 } else if (!(editor
->styleFlags
& WS_HSCROLL
)) {
1151 bScrollBarWillBeVisible
= FALSE
;
1154 if (bScrollBarWasVisible
!= bScrollBarWillBeVisible
)
1155 ITextHost_TxShowScrollBar(editor
->texthost
, SB_HORZ
, bScrollBarWillBeVisible
);
1158 /* Update vertical scrollbar */
1159 bScrollBarWasVisible
= editor
->vert_si
.nMax
> editor
->vert_si
.nPage
;
1160 bScrollBarWillBeVisible
= editor
->nTotalLength
> editor
->sizeWindow
.cy
&&
1161 (editor
->styleFlags
& ES_MULTILINE
);
1163 if (editor
->vert_si
.nPos
&& !bScrollBarWillBeVisible
)
1165 ME_VScrollAbs(editor
, 0);
1166 /* ME_VScrollAbs will call this function,
1167 * so nothing else needs to be done here. */
1171 si
.nMax
= editor
->nTotalLength
;
1172 si
.nPos
= editor
->vert_si
.nPos
;
1173 si
.nPage
= editor
->sizeWindow
.cy
;
1175 if (si
.nMax
!= editor
->vert_si
.nMax
||
1176 si
.nPage
!= editor
->vert_si
.nPage
)
1178 TRACE("min=%d max=%d page=%d\n", si
.nMin
, si
.nMax
, si
.nPage
);
1179 editor
->vert_si
.nMax
= si
.nMax
;
1180 editor
->vert_si
.nPage
= si
.nPage
;
1181 if ((bScrollBarWillBeVisible
|| bScrollBarWasVisible
) &&
1182 editor
->styleFlags
& WS_VSCROLL
)
1184 if (si
.nMax
> 0xFFFF)
1186 /* Native scales the scrollbar info to 16-bit external values. */
1187 si
.nPos
= MulDiv(si
.nPos
, 0xFFFF, si
.nMax
);
1191 SetScrollInfo(editor
->hWnd
, SB_VERT
, &si
, TRUE
);
1193 ITextHost_TxSetScrollRange(editor
->texthost
, SB_VERT
, si
.nMin
, si
.nMax
, FALSE
);
1194 ITextHost_TxSetScrollPos(editor
->texthost
, SB_VERT
, si
.nPos
, TRUE
);
1196 /* SetScrollInfo or SetScrollRange change scrollbar visibility. */
1197 bScrollBarWasVisible
= ME_PostSetScrollRangeVisibility(&si
);
1201 if (editor
->styleFlags
& WS_VSCROLL
)
1203 if (si
.fMask
& SIF_DISABLENOSCROLL
) {
1204 bScrollBarWillBeVisible
= TRUE
;
1205 } else if (!(editor
->styleFlags
& WS_VSCROLL
)) {
1206 bScrollBarWillBeVisible
= FALSE
;
1209 if (bScrollBarWasVisible
!= bScrollBarWillBeVisible
)
1210 ITextHost_TxShowScrollBar(editor
->texthost
, SB_VERT
,
1211 bScrollBarWillBeVisible
);
1215 void ME_EnsureVisible(ME_TextEditor
*editor
, ME_Cursor
*pCursor
)
1217 ME_Run
*pRun
= &pCursor
->pRun
->member
.run
;
1218 ME_DisplayItem
*pRow
= ME_FindItemBack(pCursor
->pRun
, diStartRow
);
1219 ME_DisplayItem
*pPara
= pCursor
->pPara
;
1225 if (editor
->styleFlags
& ES_AUTOHSCROLL
)
1227 x
= pRun
->pt
.x
+ ME_PointFromChar(editor
, pRun
, pCursor
->nOffset
);
1228 if (x
> editor
->horz_si
.nPos
+ editor
->sizeWindow
.cx
)
1229 x
= x
+ 1 - editor
->sizeWindow
.cx
;
1230 else if (x
> editor
->horz_si
.nPos
)
1231 x
= editor
->horz_si
.nPos
;
1233 if (~editor
->styleFlags
& ES_AUTOVSCROLL
)
1235 ME_HScrollAbs(editor
, x
);
1239 if (~editor
->styleFlags
& ES_AUTOVSCROLL
)
1241 x
= editor
->horz_si
.nPos
;
1244 y
= pPara
->member
.para
.pt
.y
+ pRow
->member
.row
.pt
.y
;
1245 yheight
= pRow
->member
.row
.nHeight
;
1247 if (y
< editor
->vert_si
.nPos
)
1248 ME_ScrollAbs(editor
, x
, y
);
1249 else if (y
+ yheight
> editor
->vert_si
.nPos
+ editor
->sizeWindow
.cy
)
1250 ME_ScrollAbs(editor
, x
, y
+ yheight
- editor
->sizeWindow
.cy
);
1251 else if (x
!= editor
->horz_si
.nPos
)
1252 ME_ScrollAbs(editor
, x
, editor
->vert_si
.nPos
);
1257 ME_InvalidateSelection(ME_TextEditor
*editor
)
1259 ME_DisplayItem
*sel_start
, *sel_end
;
1260 ME_DisplayItem
*repaint_start
= NULL
, *repaint_end
= NULL
;
1262 int len
= ME_GetTextLength(editor
);
1264 ME_GetSelectionOfs(editor
, &nStart
, &nEnd
);
1265 /* if both old and new selection are 0-char (= caret only), then
1266 there's no (inverted) area to be repainted, neither old nor new */
1267 if (nStart
== nEnd
&& editor
->nLastSelStart
== editor
->nLastSelEnd
)
1269 ME_WrapMarkedParagraphs(editor
);
1270 ME_GetSelectionParas(editor
, &sel_start
, &sel_end
);
1271 assert(sel_start
->type
== diParagraph
);
1272 assert(sel_end
->type
== diParagraph
);
1273 /* last selection markers aren't always updated, which means
1274 * they can point past the end of the document */
1275 if (editor
->nLastSelStart
> len
|| editor
->nLastSelEnd
> len
) {
1276 repaint_start
= ME_FindItemFwd(editor
->pBuffer
->pFirst
, diParagraph
);
1277 repaint_end
= editor
->pBuffer
->pLast
->member
.para
.prev_para
;
1279 /* if the start part of selection is being expanded or contracted... */
1280 if (nStart
< editor
->nLastSelStart
) {
1281 repaint_start
= sel_start
;
1282 repaint_end
= editor
->pLastSelStartPara
;
1283 } else if (nStart
> editor
->nLastSelStart
) {
1284 repaint_start
= editor
->pLastSelStartPara
;
1285 repaint_end
= sel_start
;
1288 /* if the end part of selection is being contracted or expanded... */
1289 if (nEnd
< editor
->nLastSelEnd
) {
1290 if (!repaint_start
) repaint_start
= sel_end
;
1291 repaint_end
= editor
->pLastSelEndPara
;
1292 } else if (nEnd
> editor
->nLastSelEnd
) {
1293 if (!repaint_start
) repaint_start
= editor
->pLastSelEndPara
;
1294 repaint_end
= sel_end
;
1299 ME_InvalidateParagraphRange(editor
, repaint_start
, repaint_end
);
1300 /* remember the last invalidated position */
1301 ME_GetSelectionOfs(editor
, &editor
->nLastSelStart
, &editor
->nLastSelEnd
);
1302 ME_GetSelectionParas(editor
, &editor
->pLastSelStartPara
, &editor
->pLastSelEndPara
);
1303 assert(editor
->pLastSelStartPara
->type
== diParagraph
);
1304 assert(editor
->pLastSelEndPara
->type
== diParagraph
);
1308 ME_SetZoom(ME_TextEditor
*editor
, int numerator
, int denominator
)
1310 /* TODO: Zoom images and objects */
1312 if (numerator
== 0 && denominator
== 0)
1314 editor
->nZoomNumerator
= editor
->nZoomDenominator
= 0;
1317 if (numerator
<= 0 || denominator
<= 0)
1319 if (numerator
* 64 <= denominator
|| numerator
/ denominator
>= 64)
1322 editor
->nZoomNumerator
= numerator
;
1323 editor
->nZoomDenominator
= denominator
;
1325 ME_RewrapRepaint(editor
);