4 * Copyright 1993, 1994 Alexandre Julliard
17 /* #define DEBUG_TEXT */
27 #define SWAP_INT(a,b) { int t = a; a = b; b = t; }
29 static int tabstop
= 8;
31 static int spacewidth
;
32 static int prefix_offset
;
34 extern int CLIPPING_IntersectClipRect( DC
* dc
, short left
, short top
,
35 short right
, short bottom
, UINT16 flags
);
37 static const char *TEXT_NextLine( HDC hdc
, const char *str
, int *count
,
38 char *dest
, int *len
, int width
, WORD format
)
40 /* Return next line of text from a string.
43 * str - string to parse into lines.
44 * count - length of str.
45 * dest - destination in which to return line.
46 * len - length of resultant line in dest in chars.
47 * width - maximum width of line in pixels.
48 * format - format type passed to DrawText.
50 * Returns pointer to next char in str after end of the line
51 * or NULL if end of str reached.
59 int wb_i
= 0, wb_j
= 0, wb_count
= 0;
67 if (!(format
& DT_SINGLELINE
))
69 if (str
[i
] == CR
&& str
[i
+1] == LF
)
77 if (!(format
& DT_NOCLIP
) || !(format
& DT_NOPREFIX
) ||
78 (format
& DT_WORDBREAK
))
80 if (!GetTextExtentPoint16(hdc
, &dest
[j
-1], 1, &size
))
87 if (!(format
& DT_NOPREFIX
))
95 if (!(format
& DT_NOCLIP
) || (format
& DT_WORDBREAK
))
97 if (!GetTextExtentPoint16(hdc
, &dest
[j
-1], 1, &size
))
105 if (format
& DT_EXPANDTABS
)
111 if (!GetTextExtentPoint16(hdc
, &dest
[lasttab
], j
- lasttab
,
115 numspaces
= (tabwidth
- size
.cx
) / spacewidth
;
116 for (k
= 0; k
< numspaces
; k
++)
118 plen
+= tabwidth
- size
.cx
;
119 lasttab
= wb_j
+ numspaces
;
123 dest
[j
++] = str
[i
++];
124 if (!(format
& DT_NOCLIP
) || !(format
& DT_NOPREFIX
) ||
125 (format
& DT_WORDBREAK
))
127 if (!GetTextExtentPoint16(hdc
, &dest
[j
-1], 1, &size
))
135 dest
[j
++] = str
[i
++];
136 if (!(format
& DT_NOCLIP
) || !(format
& DT_NOPREFIX
) ||
137 (format
& DT_WORDBREAK
))
142 if (!GetTextExtentPoint16(hdc
, &dest
[j
-1], 1, &size
))
149 dest
[j
++] = str
[i
++];
150 if (!(format
& DT_NOCLIP
) || !(format
& DT_NOPREFIX
) ||
151 (format
& DT_WORDBREAK
))
153 if (!GetTextExtentPoint16(hdc
, &dest
[j
-1], 1, &size
))
160 if (!(format
& DT_NOCLIP
) || (format
& DT_WORDBREAK
))
164 if (format
& DT_WORDBREAK
)
169 *count
= wb_count
- 1;
187 /***********************************************************************
188 * DrawText16 (USER.85)
190 INT16
DrawText16( HDC16 hdc
, LPCSTR str
, INT16 i_count
,
191 LPRECT16 rect
, UINT16 flags
)
195 static char line
[1024];
196 int len
, lh
, count
=i_count
;
200 int x
= rect
->left
, y
= rect
->top
;
201 int width
= rect
->right
- rect
->left
;
204 dprintf_text(stddeb
,"DrawText: '%s', %d , [(%d,%d),(%d,%d)]\n", str
,
205 count
, rect
->left
, rect
->top
, rect
->right
, rect
->bottom
);
207 if (count
== -1) count
= strlen(str
);
210 GetTextMetrics16(hdc
, &tm
);
211 if (flags
& DT_EXTERNALLEADING
)
212 lh
= tm
.tmHeight
+ tm
.tmExternalLeading
;
216 if (flags
& DT_TABSTOP
)
217 tabstop
= flags
>> 8;
219 if (flags
& DT_EXPANDTABS
)
221 GetTextExtentPoint16(hdc
, " ", 1, &size
);
222 spacewidth
= size
.cx
;
223 GetTextExtentPoint16(hdc
, "o", 1, &size
);
224 tabwidth
= size
.cx
* tabstop
;
230 strPtr
= TEXT_NextLine(hdc
, strPtr
, &count
, line
, &len
, width
, flags
);
232 if (prefix_offset
!= -1)
234 GetTextExtentPoint16(hdc
, line
, prefix_offset
, &size
);
236 GetTextExtentPoint16(hdc
, line
, prefix_offset
+ 1, &size
);
237 prefix_end
= size
.cx
- 1;
240 if (!GetTextExtentPoint16(hdc
, line
, len
, &size
)) return 0;
241 if (flags
& DT_CENTER
) x
= (rect
->left
+ rect
->right
-
243 else if (flags
& DT_RIGHT
) x
= rect
->right
- size
.cx
;
245 if (flags
& DT_SINGLELINE
)
247 if (flags
& DT_VCENTER
) y
= rect
->top
+
248 (rect
->bottom
- rect
->top
) / 2 - size
.cy
/ 2;
249 else if (flags
& DT_BOTTOM
) y
= rect
->bottom
- size
.cy
;
251 if (!(flags
& DT_CALCRECT
))
253 if (!ExtTextOut16(hdc
, x
, y
, (flags
& DT_NOCLIP
) ? 0 : ETO_CLIPPED
,
254 rect
, line
, len
, NULL
)) return 0;
255 if (prefix_offset
!= -1)
257 HPEN16 hpen
= CreatePen( PS_SOLID
, 1, GetTextColor(hdc
) );
258 HPEN16 oldPen
= SelectObject( hdc
, hpen
);
259 MoveTo(hdc
, x
+ prefix_x
, y
+ tm
.tmAscent
+ 1 );
260 LineTo(hdc
, x
+ prefix_end
, y
+ tm
.tmAscent
+ 1 );
261 SelectObject( hdc
, oldPen
);
262 DeleteObject( hpen
);
265 else if (size
.cx
> max_width
)
271 if (!(flags
& DT_NOCLIP
) && !(flags
& DT_CALCRECT
))
273 if (y
> rect
->bottom
- lh
)
279 if (flags
& DT_CALCRECT
)
281 rect
->right
= rect
->left
+ max_width
;
288 /***********************************************************************
289 * DrawText32A (USER32.163)
291 INT32
DrawText32A( HDC32 hdc
, LPCSTR str
, INT32 count
,
292 LPRECT32 rect
, UINT32 flags
)
298 return DrawText16( (HDC16
)hdc
, str
, (INT16
)count
, NULL
, (UINT16
)flags
);
299 CONV_RECT32TO16( rect
, &rect16
);
300 ret
= DrawText16( (HDC16
)hdc
, str
, (INT16
)count
, &rect16
, (UINT16
)flags
);
301 CONV_RECT16TO32( &rect16
, rect
);
306 /***********************************************************************
307 * DrawText32W (USER32.166)
309 INT32
DrawText32W( HDC32 hdc
, LPCWSTR str
, INT32 count
,
310 LPRECT32 rect
, UINT32 flags
)
312 char *p
= STRING32_DupUniToAnsi( str
);
313 INT32 ret
= DrawText32A( hdc
, p
, count
, rect
, flags
);
319 /***********************************************************************
320 * ExtTextOut16 (GDI.351)
322 BOOL16
ExtTextOut16( HDC16 hdc
, INT16 x
, INT16 y
, UINT16 flags
,
323 const RECT16
*lprect
, LPCSTR str
, UINT16 count
,
327 int dir
, ascent
, descent
, i
;
332 DC
* dc
= (DC
*) GDI_GetObjPtr( hdc
, DC_MAGIC
);
335 dc
= (DC
*)GDI_GetObjPtr( hdc
, METAFILE_DC_MAGIC
);
336 if (!dc
) return FALSE
;
337 MF_ExtTextOut( dc
, x
, y
, flags
, lprect
, str
, count
, lpDx
);
341 if (!DC_SetupGCForText( dc
)) return TRUE
;
342 font
= dc
->u
.x
.font
.fstruct
;
344 dprintf_text(stddeb
,"ExtTextOut: hdc=%04x %d,%d '%*.*s', %d flags=%d\n",
345 hdc
, x
, y
, count
, count
, str
, count
, flags
);
346 if (lprect
!= NULL
) dprintf_text(stddeb
, "\trect=(%d,%d- %d,%d)\n",
347 lprect
->left
, lprect
->top
,
348 lprect
->right
, lprect
->bottom
);
350 /* Setup coordinates */
352 if (dc
->w
.textAlign
& TA_UPDATECP
)
358 if (flags
& (ETO_OPAQUE
| ETO_CLIPPED
)) /* there's a rectangle */
360 if (!lprect
) /* not always */
363 if (flags
& ETO_CLIPPED
) /* Can't clip with no rectangle */
365 if (!GetTextExtentPoint16( hdc
, str
, count
, &sz
))
367 rect
.left
= XLPTODP( dc
, x
);
368 rect
.right
= XLPTODP( dc
, x
+sz
.cx
);
369 rect
.top
= YLPTODP( dc
, y
);
370 rect
.bottom
= YLPTODP( dc
, y
+sz
.cy
);
374 rect
.left
= XLPTODP( dc
, lprect
->left
);
375 rect
.right
= XLPTODP( dc
, lprect
->right
);
376 rect
.top
= YLPTODP( dc
, lprect
->top
);
377 rect
.bottom
= YLPTODP( dc
, lprect
->bottom
);
379 if (rect
.right
< rect
.left
) SWAP_INT( rect
.left
, rect
.right
);
380 if (rect
.bottom
< rect
.top
) SWAP_INT( rect
.top
, rect
.bottom
);
383 x
= XLPTODP( dc
, x
);
384 y
= YLPTODP( dc
, y
);
386 dprintf_text(stddeb
,"\treal coord: x=%i, y=%i, rect=(%d,%d-%d,%d)\n",
387 x
, y
, rect
.left
, rect
.top
, rect
.right
, rect
.bottom
);
389 /* Draw the rectangle */
391 if (flags
& ETO_OPAQUE
)
393 XSetForeground( display
, dc
->u
.x
.gc
, dc
->w
.backgroundPixel
);
394 XFillRectangle( display
, dc
->u
.x
.drawable
, dc
->u
.x
.gc
,
395 dc
->w
.DCOrgX
+ rect
.left
, dc
->w
.DCOrgY
+ rect
.top
,
396 rect
.right
-rect
.left
, rect
.bottom
-rect
.top
);
398 if (!count
) return TRUE
; /* Nothing more to do */
400 /* Compute text starting position */
402 XTextExtents( font
, str
, count
, &dir
, &ascent
, &descent
, &info
);
404 if (lpDx
) /* have explicit character cell x offsets */
406 /* sum lpDx array and add the width of last character */
408 info
.width
= XTextWidth( font
, str
+ count
- 1, 1) + dc
->w
.charExtra
;
409 if (str
[count
-1] == (char)dc
->u
.x
.font
.metrics
.tmBreakChar
)
410 info
.width
+= dc
->w
.breakExtra
;
412 for (i
= 0; i
< count
; i
++) info
.width
+= lpDx
[i
];
415 info
.width
+= count
*dc
->w
.charExtra
+ dc
->w
.breakExtra
*dc
->w
.breakCount
;
417 switch( dc
->w
.textAlign
& (TA_LEFT
| TA_RIGHT
| TA_CENTER
) )
420 if (dc
->w
.textAlign
& TA_UPDATECP
)
421 dc
->w
.CursPosX
= XDPTOLP( dc
, x
+ info
.width
);
425 if (dc
->w
.textAlign
& TA_UPDATECP
) dc
->w
.CursPosX
= XDPTOLP( dc
, x
);
432 switch( dc
->w
.textAlign
& (TA_TOP
| TA_BOTTOM
| TA_BASELINE
) )
444 /* Set the clip region */
446 if (flags
& ETO_CLIPPED
)
448 if (dc
->w
.flags
& DC_MEMORY
)
450 hRgnClip
= dc
->w
.hClipRgn
;
451 CLIPPING_IntersectClipRect(dc
, rect
.left
, rect
.top
, rect
.right
, rect
.bottom
,
452 CLIP_INTERSECT
| CLIP_KEEPRGN
);
457 IntersectVisRect( hdc
, rect
.left
, rect
.top
, rect
.right
, rect
.bottom
);
461 /* Draw the text background if necessary */
463 if (dc
->w
.backgroundMode
!= TRANSPARENT
)
465 /* If rectangle is opaque and clipped, do nothing */
466 if (!(flags
& ETO_CLIPPED
) || !(flags
& ETO_OPAQUE
))
468 /* Only draw if rectangle is not opaque or if some */
469 /* text is outside the rectangle */
470 if (!(flags
& ETO_OPAQUE
) ||
472 (x
+ info
.width
>= rect
.right
) ||
473 (y
-font
->ascent
< rect
.top
) ||
474 (y
+font
->descent
>= rect
.bottom
))
476 XSetForeground( display
, dc
->u
.x
.gc
, dc
->w
.backgroundPixel
);
477 XFillRectangle( display
, dc
->u
.x
.drawable
, dc
->u
.x
.gc
,
479 dc
->w
.DCOrgY
+ y
- font
->ascent
,
481 font
->ascent
+ font
->descent
);
486 /* Draw the text (count > 0 verified) */
488 XSetForeground( display
, dc
->u
.x
.gc
, dc
->w
.textPixel
);
489 if (!dc
->w
.charExtra
&& !dc
->w
.breakExtra
&& !lpDx
)
491 XDrawString( display
, dc
->u
.x
.drawable
, dc
->u
.x
.gc
,
492 dc
->w
.DCOrgX
+ x
, dc
->w
.DCOrgY
+ y
, str
, count
);
494 else /* Now the fun begins... */
496 XTextItem
*items
, *pitem
;
499 /* allocate max items */
501 pitem
= items
= xmalloc( count
* sizeof(XTextItem
) );
505 /* initialize text item with accumulated delta */
507 pitem
->chars
= (char *)str
+ i
;
508 pitem
->delta
= delta
;
513 /* stuff characters into the same XTextItem until new delta
514 * becomes non-zero */
518 if (lpDx
) delta
+= lpDx
[i
] - XTextWidth( font
, str
+ i
, 1);
521 delta
+= dc
->w
.charExtra
;
522 if (str
[i
] == (char)dc
->u
.x
.font
.metrics
.tmBreakChar
)
523 delta
+= dc
->w
.breakExtra
;
527 while ((++i
< count
) && !delta
);
531 XDrawText( display
, dc
->u
.x
.drawable
, dc
->u
.x
.gc
,
532 dc
->w
.DCOrgX
+ x
, dc
->w
.DCOrgY
+ y
, items
, pitem
- items
);
536 /* Draw underline and strike-out if needed */
538 if (dc
->u
.x
.font
.metrics
.tmUnderlined
)
540 long linePos
, lineWidth
;
541 if (!XGetFontProperty( font
, XA_UNDERLINE_POSITION
, &linePos
))
542 linePos
= font
->descent
-1;
543 if (!XGetFontProperty( font
, XA_UNDERLINE_THICKNESS
, &lineWidth
))
545 else if (lineWidth
== 1) lineWidth
= 0;
546 XSetLineAttributes( display
, dc
->u
.x
.gc
, lineWidth
,
547 LineSolid
, CapRound
, JoinBevel
);
548 XDrawLine( display
, dc
->u
.x
.drawable
, dc
->u
.x
.gc
,
549 dc
->w
.DCOrgX
+ x
, dc
->w
.DCOrgY
+ y
+ linePos
,
550 dc
->w
.DCOrgX
+ x
+ info
.width
, dc
->w
.DCOrgY
+ y
+ linePos
);
552 if (dc
->u
.x
.font
.metrics
.tmStruckOut
)
554 long lineAscent
, lineDescent
;
555 if (!XGetFontProperty( font
, XA_STRIKEOUT_ASCENT
, &lineAscent
))
556 lineAscent
= font
->ascent
/ 3;
557 if (!XGetFontProperty( font
, XA_STRIKEOUT_DESCENT
, &lineDescent
))
558 lineDescent
= -lineAscent
;
559 XSetLineAttributes( display
, dc
->u
.x
.gc
, lineAscent
+ lineDescent
,
560 LineSolid
, CapRound
, JoinBevel
);
561 XDrawLine( display
, dc
->u
.x
.drawable
, dc
->u
.x
.gc
,
562 dc
->w
.DCOrgX
+ x
, dc
->w
.DCOrgY
+ y
- lineAscent
,
563 dc
->w
.DCOrgX
+ x
+ info
.width
, dc
->w
.DCOrgY
+ y
- lineAscent
);
566 if (flags
& ETO_CLIPPED
)
568 if( dc
->w
.flags
& DC_MEMORY
)
569 SelectClipRgn( hdc
, hRgnClip
);
570 else RestoreVisRgn( hdc
);
576 /***********************************************************************
577 * ExtTextOut32A (GDI32.98)
579 BOOL32
ExtTextOut32A( HDC32 hdc
, INT32 x
, INT32 y
, UINT32 flags
,
580 const RECT32
*lprect
, LPCSTR str
, UINT32 count
,
585 if (lpDx
) fprintf( stderr
, "ExtTextOut32A: lpDx not implemented\n" );
587 return ExtTextOut16( (HDC16
)hdc
, (INT16
)x
, (INT16
)y
, (UINT16
)flags
,
588 NULL
, str
, (UINT16
)count
, NULL
);
589 CONV_RECT32TO16( lprect
, &rect16
);
590 return ExtTextOut16( (HDC16
)hdc
, (INT16
)x
, (INT16
)y
, (UINT16
)flags
,
591 &rect16
, str
, (UINT16
)count
, NULL
);
595 /***********************************************************************
596 * ExtTextOut32W (GDI32.99)
598 BOOL32
ExtTextOut32W( HDC32 hdc
, INT32 x
, INT32 y
, UINT32 flags
,
599 const RECT32
*lprect
, LPCWSTR str
, UINT32 count
,
602 char *p
= STRING32_DupUniToAnsi( str
);
603 INT32 ret
= ExtTextOut32A( hdc
, x
, y
, flags
, lprect
, p
, count
, lpDx
);
609 /***********************************************************************
612 BOOL16
TextOut16( HDC16 hdc
, INT16 x
, INT16 y
, LPCSTR str
, INT16 count
)
614 return ExtTextOut16( hdc
, x
, y
, 0, NULL
, str
, count
, NULL
);
618 /***********************************************************************
619 * TextOut32A (GDI32.355)
621 BOOL32
TextOut32A( HDC32 hdc
, INT32 x
, INT32 y
, LPCSTR str
, INT32 count
)
623 return ExtTextOut32A( hdc
, x
, y
, 0, NULL
, str
, count
, NULL
);
627 /***********************************************************************
628 * TextOut32W (GDI32.356)
630 BOOL32
TextOut32W( HDC32 hdc
, INT32 x
, INT32 y
, LPCWSTR str
, INT32 count
)
632 return ExtTextOut32W( hdc
, x
, y
, 0, NULL
, str
, count
, NULL
);
636 /***********************************************************************
637 * GrayString (USER.185)
639 BOOL
GrayString(HDC hdc
, HBRUSH hbr
, GRAYSTRINGPROC16 gsprc
, LPARAM lParam
,
640 INT cch
, INT x
, INT y
, INT cx
, INT cy
)
643 COLORREF current_color
;
645 if (!cch
) cch
= lstrlen16( (LPCSTR
)PTR_SEG_TO_LIN(lParam
) );
646 if (gsprc
) return gsprc( hdc
, lParam
, cch
);
647 current_color
= GetTextColor( hdc
);
648 SetTextColor( hdc
, GetSysColor(COLOR_GRAYTEXT
) );
649 ret
= TextOut16( hdc
, x
, y
, (LPCSTR
)PTR_SEG_TO_LIN(lParam
), cch
);
650 SetTextColor( hdc
, current_color
);
655 /***********************************************************************
658 * Helper function for TabbedTextOut() and GetTabbedTextExtent().
659 * Note: this doesn't work too well for text-alignment modes other
660 * than TA_LEFT|TA_TOP. But we want bug-for-bug compatibility :-)
662 LONG
TEXT_TabbedTextOut( HDC hdc
, int x
, int y
, LPSTR lpstr
, int count
,
663 int cTabStops
, LPINT16 lpTabPos
, int nTabOrg
,
673 defWidth
= *lpTabPos
;
679 GetTextMetrics16( hdc
, &tm
);
680 defWidth
= 8 * tm
.tmAveCharWidth
;
685 for (i
= 0; i
< count
; i
++)
686 if (lpstr
[i
] == '\t') break;
687 extent
= GetTextExtent( hdc
, lpstr
, i
);
688 while ((cTabStops
> 0) && (nTabOrg
+ *lpTabPos
<= x
+ LOWORD(extent
)))
694 tabPos
= x
+ LOWORD(extent
);
695 else if (cTabStops
> 0)
696 tabPos
= nTabOrg
+ *lpTabPos
;
698 tabPos
= nTabOrg
+ ((x
+ LOWORD(extent
) - nTabOrg
) / defWidth
+ 1) * defWidth
;
702 SetRect16( &r
, x
, y
, tabPos
, y
+HIWORD(extent
) );
703 ExtTextOut16( hdc
, x
, y
,
704 GetBkMode(hdc
) == OPAQUE
? ETO_OPAQUE
: 0,
705 &r
, lpstr
, i
, NULL
);
711 return MAKELONG(tabPos
- start
, HIWORD(extent
));
715 /***********************************************************************
716 * TabbedTextOut (USER.196)
718 LONG
TabbedTextOut( HDC hdc
, short x
, short y
, LPSTR lpstr
, short count
,
719 short cTabStops
, LPINT16 lpTabPos
, short nTabOrg
)
721 dprintf_text( stddeb
, "TabbedTextOut: %04x %d,%d '%*.*s' %d\n",
722 hdc
, x
, y
, count
, count
, lpstr
, count
);
723 return TEXT_TabbedTextOut( hdc
, x
, y
, lpstr
, count
, cTabStops
,
724 lpTabPos
, nTabOrg
, TRUE
);
728 /***********************************************************************
729 * GetTabbedTextExtent (USER.197)
731 DWORD
GetTabbedTextExtent( HDC hdc
, LPSTR lpstr
, int count
,
732 int cTabStops
, LPINT16 lpTabPos
)
734 dprintf_text( stddeb
, "GetTabbedTextExtent: %04x '%*.*s' %d\n",
735 hdc
, count
, count
, lpstr
, count
);
736 return TEXT_TabbedTextOut( hdc
, 0, 0, lpstr
, count
, cTabStops
,
737 lpTabPos
, 0, FALSE
);