Release 961201
[wine] / objects / text.c
1 /*
2  * text functions
3  *
4  * Copyright 1993, 1994 Alexandre Julliard
5  *
6  */
7
8 #include <stdlib.h>
9 #include <X11/Xatom.h>
10 #include "windows.h"
11 #include "dc.h"
12 #include "gdi.h"
13 #include "callback.h"
14 #include "metafile.h"
15 #include "string32.h"
16 #include "stddebug.h"
17 /* #define DEBUG_TEXT */
18 #include "debug.h"
19 #include "xmalloc.h"
20
21 #define TAB     9
22 #define LF     10
23 #define CR     13
24 #define SPACE  32
25 #define PREFIX 38
26
27 #define SWAP_INT(a,b)  { int t = a; a = b; b = t; }
28
29 static int tabstop = 8;
30 static int tabwidth;
31 static int spacewidth;
32 static int prefix_offset;
33
34 extern int CLIPPING_IntersectClipRect( DC * dc, short left, short top,
35                                          short right, short bottom, UINT16 flags);
36
37 static const char *TEXT_NextLine( HDC16 hdc, const char *str, int *count,
38                                   char *dest, int *len, int width, WORD format)
39 {
40     /* Return next line of text from a string.
41      * 
42      * hdc - handle to DC.
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.
49      *
50      * Returns pointer to next char in str after end of the line
51      * or NULL if end of str reached.
52      */
53
54     int i = 0, j = 0, k;
55     int plen = 0;
56     int numspaces;
57     SIZE16 size;
58     int lasttab = 0;
59     int wb_i = 0, wb_j = 0, wb_count = 0;
60
61     while (*count)
62     {
63         switch (str[i])
64         {
65         case CR:
66         case LF:
67             if (!(format & DT_SINGLELINE))
68             {
69                 if (str[i] == CR && str[i+1] == LF)
70                     i++;
71                 i++;
72                 *len = j;
73                 (*count)--;
74                 return (&str[i]);
75             }
76             dest[j++] = str[i++];
77             if (!(format & DT_NOCLIP) || !(format & DT_NOPREFIX) ||
78                 (format & DT_WORDBREAK))
79             {
80                 if (!GetTextExtentPoint16(hdc, &dest[j-1], 1, &size))
81                     return NULL;
82                 plen += size.cx;
83             }
84             break;
85             
86         case PREFIX:
87             if (!(format & DT_NOPREFIX))
88             {
89                 prefix_offset = j;
90                 i++;
91             }
92             else
93             {
94                 dest[j++] = str[i++];
95                 if (!(format & DT_NOCLIP) || (format & DT_WORDBREAK))
96                 {
97                     if (!GetTextExtentPoint16(hdc, &dest[j-1], 1, &size))
98                         return NULL;
99                     plen += size.cx;
100                 }
101             }
102             break;
103             
104         case TAB:
105             if (format & DT_EXPANDTABS)
106             {
107                 wb_i = ++i;
108                 wb_j = j;
109                 wb_count = *count;
110
111                 if (!GetTextExtentPoint16(hdc, &dest[lasttab], j - lasttab,
112                                                                  &size))
113                     return NULL;
114
115                 numspaces = (tabwidth - size.cx) / spacewidth;
116                 for (k = 0; k < numspaces; k++)
117                     dest[j++] = SPACE;
118                 plen += tabwidth - size.cx;
119                 lasttab = wb_j + numspaces;
120             }
121             else
122             {
123                 dest[j++] = str[i++];
124                 if (!(format & DT_NOCLIP) || !(format & DT_NOPREFIX) ||
125                     (format & DT_WORDBREAK))
126                 {
127                     if (!GetTextExtentPoint16(hdc, &dest[j-1], 1, &size))
128                         return NULL;
129                     plen += size.cx;
130                 }
131             }
132             break;
133
134         case SPACE:
135             dest[j++] = str[i++];
136             if (!(format & DT_NOCLIP) || !(format & DT_NOPREFIX) ||
137                 (format & DT_WORDBREAK))
138             {
139                 wb_i = i;
140                 wb_j = j - 1;
141                 wb_count = *count;
142                 if (!GetTextExtentPoint16(hdc, &dest[j-1], 1, &size))
143                     return NULL;
144                 plen += size.cx;
145             }
146             break;
147
148         default:
149             dest[j++] = str[i++];
150             if (!(format & DT_NOCLIP) || !(format & DT_NOPREFIX) ||
151                 (format & DT_WORDBREAK))
152             {
153                 if (!GetTextExtentPoint16(hdc, &dest[j-1], 1, &size))
154                     return NULL;
155                 plen += size.cx;
156             }
157         }
158
159         (*count)--;
160         if (!(format & DT_NOCLIP) || (format & DT_WORDBREAK))
161         {
162             if (plen > width)
163             {
164                 if (format & DT_WORDBREAK)
165                 {
166                     if (wb_j)
167                     {
168                         *len = wb_j;
169                         *count = wb_count - 1;
170                         return (&str[wb_i]);
171                     }
172                 }
173                 else
174                 {
175                     *len = j;
176                     return (&str[i]);
177                 }
178             }
179         }
180     }
181     
182     *len = j;
183     return NULL;
184 }
185
186
187 /***********************************************************************
188  *           DrawText16    (USER.85)
189  */
190 INT16 DrawText16( HDC16 hdc, LPCSTR str, INT16 i_count,
191                   LPRECT16 rect, UINT16 flags )
192 {
193     SIZE16 size;
194     const char *strPtr;
195     static char line[1024];
196     int len, lh, count=i_count;
197     int prefix_x = 0;
198     int prefix_end = 0;
199     TEXTMETRIC16 tm;
200     int x = rect->left, y = rect->top;
201     int width = rect->right - rect->left;
202     int max_width = 0;
203
204     dprintf_text(stddeb,"DrawText: '%s', %d , [(%d,%d),(%d,%d)]\n", str,
205                  count, rect->left, rect->top, rect->right, rect->bottom);
206     
207     if (count == -1) count = strlen(str);
208     strPtr = str;
209
210     GetTextMetrics16(hdc, &tm);
211     if (flags & DT_EXTERNALLEADING)
212         lh = tm.tmHeight + tm.tmExternalLeading;
213     else
214         lh = tm.tmHeight;
215
216     if (flags & DT_TABSTOP)
217         tabstop = flags >> 8;
218
219     if (flags & DT_EXPANDTABS)
220     {
221         GetTextExtentPoint16(hdc, " ", 1, &size);
222         spacewidth = size.cx;
223         GetTextExtentPoint16(hdc, "o", 1, &size);
224         tabwidth = size.cx * tabstop;
225     }
226
227     if (flags & DT_CALCRECT) flags |= DT_NOCLIP;
228
229     do
230     {
231         prefix_offset = -1;
232         strPtr = TEXT_NextLine(hdc, strPtr, &count, line, &len, width, flags);
233
234         if (prefix_offset != -1)
235         {
236             GetTextExtentPoint16(hdc, line, prefix_offset, &size);
237             prefix_x = size.cx;
238             GetTextExtentPoint16(hdc, line, prefix_offset + 1, &size);
239             prefix_end = size.cx - 1;
240         }
241
242         if (!GetTextExtentPoint16(hdc, line, len, &size)) return 0;
243         if (flags & DT_CENTER) x = (rect->left + rect->right -
244                                     size.cx) / 2;
245         else if (flags & DT_RIGHT) x = rect->right - size.cx;
246
247         if (flags & DT_SINGLELINE)
248         {
249             if (flags & DT_VCENTER) y = rect->top + 
250                 (rect->bottom - rect->top) / 2 - size.cy / 2;
251             else if (flags & DT_BOTTOM) y = rect->bottom - size.cy;
252         }
253         if (!(flags & DT_CALCRECT))
254         {
255             if (!ExtTextOut16(hdc, x, y, (flags & DT_NOCLIP) ? 0 : ETO_CLIPPED,
256                               rect, line, len, NULL )) return 0;
257             if (prefix_offset != -1)
258             {
259                 HPEN32 hpen = CreatePen32( PS_SOLID, 1, GetTextColor(hdc) );
260                 HPEN32 oldPen = SelectObject32( hdc, hpen );
261                 MoveTo(hdc, x + prefix_x, y + tm.tmAscent + 1 );
262                 LineTo32(hdc, x + prefix_end, y + tm.tmAscent + 1 );
263                 SelectObject32( hdc, oldPen );
264                 DeleteObject32( hpen );
265             }
266         }
267         else if (size.cx > max_width)
268             max_width = size.cx;
269
270         y += lh;
271         if (strPtr)
272         {
273             if (!(flags & DT_NOCLIP))
274             {
275                 if (y > rect->bottom - lh)
276                     break;
277             }
278         }
279     }
280     while (strPtr);
281     if (flags & DT_CALCRECT)
282     {
283         rect->right = rect->left + max_width;
284         rect->bottom = y;
285     }
286     return y - rect->top;
287 }
288
289
290 /***********************************************************************
291  *           DrawText32A    (USER32.163)
292  */
293 INT32 DrawText32A( HDC32 hdc, LPCSTR str, INT32 count,
294                    LPRECT32 rect, UINT32 flags )
295 {
296     RECT16 rect16;
297     INT16 ret;
298
299     if (!rect)
300         return DrawText16( (HDC16)hdc, str, (INT16)count, NULL, (UINT16)flags);
301     CONV_RECT32TO16( rect, &rect16 );
302     ret = DrawText16( (HDC16)hdc, str, (INT16)count, &rect16, (UINT16)flags );
303     CONV_RECT16TO32( &rect16, rect );
304     return ret;
305 }
306
307
308 /***********************************************************************
309  *           DrawText32W    (USER32.166)
310  */
311 INT32 DrawText32W( HDC32 hdc, LPCWSTR str, INT32 count,
312                    LPRECT32 rect, UINT32 flags )
313 {
314     char *p = STRING32_DupUniToAnsi( str );
315     INT32 ret = DrawText32A( hdc, p, count, rect, flags );
316     free(p);
317     return ret;
318 }
319
320
321 /***********************************************************************
322  *           ExtTextOut16    (GDI.351)
323  */
324 BOOL16 ExtTextOut16( HDC16 hdc, INT16 x, INT16 y, UINT16 flags,
325                      const RECT16 *lprect, LPCSTR str, UINT16 count,
326                      const INT16 *lpDx )
327 {
328     HRGN32      hRgnClip = 0;
329     int         dir, ascent, descent, i;
330     XCharStruct info;
331     XFontStruct *font;
332     RECT16      rect;
333
334     DC * dc = (DC *) GDI_GetObjPtr( hdc, DC_MAGIC );
335     if (!dc) 
336     {
337         dc = (DC *)GDI_GetObjPtr( hdc, METAFILE_DC_MAGIC );
338         if (!dc) return FALSE;
339         MF_ExtTextOut( dc, x, y, flags, lprect, str, count, lpDx );
340         return TRUE;
341     }
342
343     if (!DC_SetupGCForText( dc )) return TRUE;
344     font = dc->u.x.font.fstruct;
345
346     dprintf_text(stddeb,"ExtTextOut: hdc=%04x %d,%d '%*.*s', %d  flags=%d\n",
347             hdc, x, y, count, count, str, count, flags);
348     if (lprect != NULL) dprintf_text(stddeb, "\trect=(%d,%d- %d,%d)\n",
349                                      lprect->left, lprect->top,
350                                      lprect->right, lprect->bottom );
351
352       /* Setup coordinates */
353
354     if (dc->w.textAlign & TA_UPDATECP)
355     {
356         x = dc->w.CursPosX;
357         y = dc->w.CursPosY;
358     }
359
360     if (flags & (ETO_OPAQUE | ETO_CLIPPED))  /* there's a rectangle */
361     {
362         if (!lprect)  /* not always */
363         {
364             SIZE16 sz;
365             if (flags & ETO_CLIPPED)  /* Can't clip with no rectangle */
366               return FALSE;
367             if (!GetTextExtentPoint16( hdc, str, count, &sz ))
368               return FALSE;
369             rect.left   = XLPTODP( dc, x );
370             rect.right  = XLPTODP( dc, x+sz.cx );
371             rect.top    = YLPTODP( dc, y );
372             rect.bottom = YLPTODP( dc, y+sz.cy );
373         }
374         else
375         {
376             rect.left   = XLPTODP( dc, lprect->left );
377             rect.right  = XLPTODP( dc, lprect->right );
378             rect.top    = YLPTODP( dc, lprect->top );
379             rect.bottom = YLPTODP( dc, lprect->bottom );
380         }
381         if (rect.right < rect.left) SWAP_INT( rect.left, rect.right );
382         if (rect.bottom < rect.top) SWAP_INT( rect.top, rect.bottom );
383     }
384
385     x = XLPTODP( dc, x );
386     y = YLPTODP( dc, y );
387
388     dprintf_text(stddeb,"\treal coord: x=%i, y=%i, rect=(%d,%d-%d,%d)\n",
389                           x, y, rect.left, rect.top, rect.right, rect.bottom);
390
391       /* Draw the rectangle */
392
393     if (flags & ETO_OPAQUE)
394     {
395         XSetForeground( display, dc->u.x.gc, dc->w.backgroundPixel );
396         XFillRectangle( display, dc->u.x.drawable, dc->u.x.gc,
397                         dc->w.DCOrgX + rect.left, dc->w.DCOrgY + rect.top,
398                         rect.right-rect.left, rect.bottom-rect.top );
399     }
400     if (!count) return TRUE;  /* Nothing more to do */
401
402       /* Compute text starting position */
403
404     XTextExtents( font, str, count, &dir, &ascent, &descent, &info );
405
406     if (lpDx) /* have explicit character cell x offsets */
407     {
408         /* sum lpDx array and add the width of last character */
409
410         info.width = XTextWidth( font, str + count - 1, 1) + dc->w.charExtra;
411         if (str[count-1] == (char)dc->u.x.font.metrics.tmBreakChar)
412             info.width += dc->w.breakExtra;
413
414         for (i = 0; i < count; i++) info.width += lpDx[i];
415     }
416     else
417        info.width += count*dc->w.charExtra + dc->w.breakExtra*dc->w.breakCount;
418
419     switch( dc->w.textAlign & (TA_LEFT | TA_RIGHT | TA_CENTER) )
420     {
421       case TA_LEFT:
422           if (dc->w.textAlign & TA_UPDATECP)
423               dc->w.CursPosX = XDPTOLP( dc, x + info.width );
424           break;
425       case TA_RIGHT:
426           x -= info.width;
427           if (dc->w.textAlign & TA_UPDATECP) dc->w.CursPosX = XDPTOLP( dc, x );
428           break;
429       case TA_CENTER:
430           x -= info.width / 2;
431           break;
432     }
433
434     switch( dc->w.textAlign & (TA_TOP | TA_BOTTOM | TA_BASELINE) )
435     {
436       case TA_TOP:
437           y += font->ascent;
438           break;
439       case TA_BOTTOM:
440           y -= font->descent;
441           break;
442       case TA_BASELINE:
443           break;
444     }
445
446       /* Set the clip region */
447
448     if (flags & ETO_CLIPPED)
449     {
450         hRgnClip = dc->w.hClipRgn;
451         CLIPPING_IntersectClipRect( dc, rect.left, rect.top, rect.right,
452                                     rect.bottom, CLIP_INTERSECT|CLIP_KEEPRGN );
453     }
454
455       /* Draw the text background if necessary */
456
457     if (dc->w.backgroundMode != TRANSPARENT)
458     {
459           /* If rectangle is opaque and clipped, do nothing */
460         if (!(flags & ETO_CLIPPED) || !(flags & ETO_OPAQUE))
461         {
462               /* Only draw if rectangle is not opaque or if some */
463               /* text is outside the rectangle */
464             if (!(flags & ETO_OPAQUE) ||
465                 (x < rect.left) ||
466                 (x + info.width >= rect.right) ||
467                 (y-font->ascent < rect.top) ||
468                 (y+font->descent >= rect.bottom))
469             {
470                 XSetForeground( display, dc->u.x.gc, dc->w.backgroundPixel );
471                 XFillRectangle( display, dc->u.x.drawable, dc->u.x.gc,
472                                 dc->w.DCOrgX + x,
473                                 dc->w.DCOrgY + y - font->ascent,
474                                 info.width,
475                                 font->ascent + font->descent );
476             }
477         }
478     }
479     
480     /* Draw the text (count > 0 verified) */
481
482     XSetForeground( display, dc->u.x.gc, dc->w.textPixel );
483     if (!dc->w.charExtra && !dc->w.breakExtra && !lpDx)
484     {
485         XDrawString( display, dc->u.x.drawable, dc->u.x.gc, 
486                      dc->w.DCOrgX + x, dc->w.DCOrgY + y, str, count );
487     }
488     else  /* Now the fun begins... */
489     {
490         XTextItem *items, *pitem;
491         int delta;
492
493         /* allocate max items */
494
495         pitem = items = xmalloc( count * sizeof(XTextItem) );
496         delta = i = 0;
497         while (i < count)
498         {
499             /* initialize text item with accumulated delta */
500
501             pitem->chars  = (char *)str + i;
502             pitem->delta  = delta; 
503             pitem->nchars = 0;
504             pitem->font   = None;
505             delta = 0;
506
507             /* stuff characters into the same XTextItem until new delta 
508              * becomes  non-zero */
509
510             do
511             {
512                 if (lpDx) delta += lpDx[i] - XTextWidth( font, str + i, 1);
513                 else
514                 {
515                     delta += dc->w.charExtra;
516                     if (str[i] == (char)dc->u.x.font.metrics.tmBreakChar)
517                         delta += dc->w.breakExtra;
518                 }
519                 pitem->nchars++;
520             } 
521             while ((++i < count) && !delta);
522             pitem++;
523         }
524
525         XDrawText( display, dc->u.x.drawable, dc->u.x.gc,
526                    dc->w.DCOrgX + x, dc->w.DCOrgY + y, items, pitem - items );
527         free( items );
528     }
529
530       /* Draw underline and strike-out if needed */
531
532     if (dc->u.x.font.metrics.tmUnderlined)
533     {
534         long linePos, lineWidth;       
535         if (!XGetFontProperty( font, XA_UNDERLINE_POSITION, &linePos ))
536             linePos = font->descent-1;
537         if (!XGetFontProperty( font, XA_UNDERLINE_THICKNESS, &lineWidth ))
538             lineWidth = 0;
539         else if (lineWidth == 1) lineWidth = 0;
540         XSetLineAttributes( display, dc->u.x.gc, lineWidth,
541                             LineSolid, CapRound, JoinBevel ); 
542         XDrawLine( display, dc->u.x.drawable, dc->u.x.gc,
543                    dc->w.DCOrgX + x, dc->w.DCOrgY + y + linePos,
544                    dc->w.DCOrgX + x + info.width, dc->w.DCOrgY + y + linePos );
545     }
546     if (dc->u.x.font.metrics.tmStruckOut)
547     {
548         long lineAscent, lineDescent;
549         if (!XGetFontProperty( font, XA_STRIKEOUT_ASCENT, &lineAscent ))
550             lineAscent = font->ascent / 3;
551         if (!XGetFontProperty( font, XA_STRIKEOUT_DESCENT, &lineDescent ))
552             lineDescent = -lineAscent;
553         XSetLineAttributes( display, dc->u.x.gc, lineAscent + lineDescent,
554                             LineSolid, CapRound, JoinBevel ); 
555         XDrawLine( display, dc->u.x.drawable, dc->u.x.gc,
556                    dc->w.DCOrgX + x, dc->w.DCOrgY + y - lineAscent,
557                    dc->w.DCOrgX + x + info.width, dc->w.DCOrgY + y - lineAscent );
558     }
559
560     if (flags & ETO_CLIPPED) SelectClipRgn32( hdc, hRgnClip );
561     return TRUE;
562 }
563
564
565 /***********************************************************************
566  *           ExtTextOut32A    (GDI32.98)
567  */
568 BOOL32 ExtTextOut32A( HDC32 hdc, INT32 x, INT32 y, UINT32 flags,
569                       const RECT32 *lprect, LPCSTR str, UINT32 count,
570                       const INT32 *lpDx )
571 {
572     RECT16 rect16;
573
574     if (lpDx) fprintf( stderr, "ExtTextOut32A: lpDx not implemented\n" );
575     if (!lprect)
576         return ExtTextOut16( (HDC16)hdc, (INT16)x, (INT16)y, (UINT16)flags,
577                              NULL, str, (UINT16)count, NULL );
578     CONV_RECT32TO16( lprect, &rect16 );
579     return ExtTextOut16( (HDC16)hdc, (INT16)x, (INT16)y, (UINT16)flags,
580                          &rect16, str, (UINT16)count, NULL );
581 }
582
583
584 /***********************************************************************
585  *           ExtTextOut32W    (GDI32.99)
586  */
587 BOOL32 ExtTextOut32W( HDC32 hdc, INT32 x, INT32 y, UINT32 flags,
588                       const RECT32 *lprect, LPCWSTR str, UINT32 count,
589                       const INT32 *lpDx )
590 {
591     char *p = STRING32_DupUniToAnsi( str );
592     INT32 ret = ExtTextOut32A( hdc, x, y, flags, lprect, p, count, lpDx );
593     free(p);
594     return ret;
595 }
596
597
598 /***********************************************************************
599  *           TextOut16    (GDI.33)
600  */
601 BOOL16 TextOut16( HDC16 hdc, INT16 x, INT16 y, LPCSTR str, INT16 count )
602 {
603     return ExtTextOut16( hdc, x, y, 0, NULL, str, count, NULL );
604 }
605
606
607 /***********************************************************************
608  *           TextOut32A    (GDI32.355)
609  */
610 BOOL32 TextOut32A( HDC32 hdc, INT32 x, INT32 y, LPCSTR str, INT32 count )
611 {
612     return ExtTextOut32A( hdc, x, y, 0, NULL, str, count, NULL );
613 }
614
615
616 /***********************************************************************
617  *           TextOut32W    (GDI32.356)
618  */
619 BOOL32 TextOut32W( HDC32 hdc, INT32 x, INT32 y, LPCWSTR str, INT32 count )
620 {
621     return ExtTextOut32W( hdc, x, y, 0, NULL, str, count, NULL );
622 }
623
624
625 /***********************************************************************
626  *           GrayString   (USER.185)
627  */
628 BOOL GrayString(HDC16 hdc, HBRUSH16 hbr, GRAYSTRINGPROC16 gsprc, LPARAM lParam, 
629                 INT cch, INT x, INT y, INT cx, INT cy)
630 {
631     BOOL ret;
632     COLORREF current_color;
633
634     if (!cch) cch = lstrlen16( (LPCSTR)PTR_SEG_TO_LIN(lParam) );
635     if (gsprc) return gsprc( hdc, lParam, cch );
636     current_color = GetTextColor( hdc );
637     SetTextColor( hdc, GetSysColor(COLOR_GRAYTEXT) );
638     ret = TextOut16( hdc, x, y, (LPCSTR)PTR_SEG_TO_LIN(lParam), cch );
639     SetTextColor( hdc, current_color );
640     return ret;
641 }
642
643
644 /***********************************************************************
645  *           TEXT_TabbedTextOut
646  *
647  * Helper function for TabbedTextOut() and GetTabbedTextExtent().
648  * Note: this doesn't work too well for text-alignment modes other
649  *       than TA_LEFT|TA_TOP. But we want bug-for-bug compatibility :-)
650  */
651 LONG TEXT_TabbedTextOut( HDC16 hdc, int x, int y, LPSTR lpstr, int count, 
652                          int cTabStops, LPINT16 lpTabPos, int nTabOrg,
653                          BOOL fDisplayText)
654 {
655     WORD defWidth;
656     DWORD extent = 0;
657     int i, tabPos = x;
658     int start = x;
659
660     if (cTabStops == 1)
661     {
662         defWidth = *lpTabPos;
663         cTabStops = 0;
664     }
665     else
666     {
667         TEXTMETRIC16 tm;
668         GetTextMetrics16( hdc, &tm );
669         defWidth = 8 * tm.tmAveCharWidth;
670     }
671     
672     while (count > 0)
673     {
674         for (i = 0; i < count; i++)
675             if (lpstr[i] == '\t') break;
676         extent = GetTextExtent( hdc, lpstr, i );
677         while ((cTabStops > 0) && (nTabOrg + *lpTabPos <= x + LOWORD(extent)))
678         {
679             lpTabPos++;
680             cTabStops--;
681         }
682         if (i == count)
683             tabPos = x + LOWORD(extent);
684         else if (cTabStops > 0)
685             tabPos = nTabOrg + *lpTabPos;
686         else
687             tabPos = nTabOrg + ((x + LOWORD(extent) - nTabOrg) / defWidth + 1) * defWidth;
688         if (fDisplayText)
689         {
690             RECT16 r;
691             SetRect16( &r, x, y, tabPos, y+HIWORD(extent) );
692             ExtTextOut16( hdc, x, y,
693                           GetBkMode(hdc) == OPAQUE ? ETO_OPAQUE : 0,
694                           &r, lpstr, i, NULL );
695         }
696         x = tabPos;
697         count -= i+1;
698         lpstr += i+1;
699     }
700     return MAKELONG(tabPos - start, HIWORD(extent));
701 }
702
703
704 /***********************************************************************
705  *           TabbedTextOut    (USER.196)
706  */
707 LONG TabbedTextOut( HDC16 hdc, short x, short y, LPSTR lpstr, short count, 
708                     short cTabStops, LPINT16 lpTabPos, short nTabOrg )
709 {
710     dprintf_text( stddeb, "TabbedTextOut: %04x %d,%d '%*.*s' %d\n",
711                   hdc, x, y, count, count, lpstr, count );
712     return TEXT_TabbedTextOut( hdc, x, y, lpstr, count, cTabStops,
713                                lpTabPos, nTabOrg, TRUE );
714 }
715
716
717 /***********************************************************************
718  *           GetTabbedTextExtent    (USER.197)
719  */
720 DWORD GetTabbedTextExtent( HDC16 hdc, LPSTR lpstr, int count, 
721                           int cTabStops, LPINT16 lpTabPos )
722 {
723     dprintf_text( stddeb, "GetTabbedTextExtent: %04x '%*.*s' %d\n",
724                   hdc, count, count, lpstr, count );
725     return TEXT_TabbedTextOut( hdc, 0, 0, lpstr, count, cTabStops,
726                                lpTabPos, 0, FALSE );
727 }