text.c 49.8 KB
Newer Older
1 2 3 4
/*
 * USER text functions
 *
 * Copyright 1993, 1994 Alexandre Julliard
5
 * Copyright 2002 Bill Medland
6
 *
7
 * Contains
8 9 10
 *   1.  DrawText functions
 *   2.  GrayString functions
 *   3.  TabbedText functions
11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
24
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 26
 */

27 28 29
#include "config.h"
#include "wine/port.h"

30
#include <stdarg.h>
31
#include <stdlib.h>
32
#include <string.h>
33
#include <assert.h>
34 35

#include "windef.h"
36
#include "winbase.h"
37
#include "wingdi.h"
38
#include "wine/unicode.h"
39
#include "winnls.h"
40
#include "controls.h"
41
#include "user_private.h"
42
#include "wine/debug.h"
43

44
WINE_DEFAULT_DEBUG_CHANNEL(text);
45

46 47 48
/*********************************************************************
 *
 *            DrawText functions
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
 *
 * Design issues
 *   How many buffers to use
 *     While processing in DrawText there are potentially three different forms
 *     of the text that need to be held.  How are they best held?
 *     1. The original text is needed, of course, to see what to display.
 *     2. The text that will be returned to the user if the DT_MODIFYSTRING is
 *        in effect.
 *     3. The buffered text that is about to be displayed e.g. the current line.
 *        Typically this will exclude the ampersands used for prefixing etc.
 *
 *     Complications.
 *     a. If the buffered text to be displayed includes the ampersands then
 *        we will need special measurement and draw functions that will ignore
 *        the ampersands (e.g. by copying to a buffer without the prefix and
64
 *        then using the normal forms).  This may involve less space but may
65 66 67 68 69
 *        require more processing.  e.g. since a line containing tabs may
 *        contain several underlined characters either we need to carry around
 *        a list of prefix locations or we may need to locate them several
 *        times.
 *     b. If we actually directly modify the "original text" as we go then we
70
 *        will need some special "caching" to handle the fact that when we
71 72 73 74 75 76 77 78 79 80 81 82
 *        ellipsify the text the ellipsis may modify the next line of text,
 *        which we have not yet processed.  (e.g. ellipsification of a W at the
 *        end of a line will overwrite the W, the \n and the first character of
 *        the next line, and a \0 will overwrite the second.  Try it!!)
 *
 *     Option 1.  Three separate storages. (To be implemented)
 *       If DT_MODIFYSTRING is in effect then allocate an extra buffer to hold
 *       the edited string in some form, either as the string itself or as some
 *       sort of "edit list" to be applied just before returning.
 *       Use a buffer that holds the ellipsified current line sans ampersands
 *       and accept the need occasionally to recalculate the prefixes (if
 *       DT_EXPANDTABS and not DT_NOPREFIX and not DT_HIDEPREFIX)
83 84
 */

85 86 87 88 89 90
#define TAB     9
#define LF     10
#define CR     13
#define SPACE  32
#define PREFIX 38

91 92 93
#define FORWARD_SLASH '/'
#define BACK_SLASH '\\'

94 95
static const WCHAR ELLIPSISW[] = {'.','.','.', 0};

96 97 98 99 100 101 102
typedef struct tag_ellipsis_data
{
    int before;
    int len;
    int under;
    int after;
} ellipsis_data;
103

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
/*********************************************************************
 *                      TEXT_Ellipsify (static)
 *
 *  Add an ellipsis to the end of the given string whilst ensuring it fits.
 *
 * If the ellipsis alone doesn't fit then it will be returned anyway.
 *
 * See Also TEXT_PathEllipsify
 *
 * Arguments
 *   hdc        [in] The handle to the DC that defines the font.
 *   str        [in/out] The string that needs to be modified.
 *   max_str    [in] The dimension of str (number of WCHAR).
 *   len_str    [in/out] The number of characters in str
 *   width      [in] The maximum width permitted (in logical coordinates)
 *   size       [out] The dimensions of the text
 *   modstr     [out] The modified form of the string, to be returned to the
121
 *                    calling program.  It is assumed that the caller has
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
 *                    made sufficient space available so we don't need to
 *                    know the size of the space.  This pointer may be NULL if
 *                    the modified string is not required.
 *   len_before [out] The number of characters before the ellipsis.
 *   len_ellip  [out] The number of characters in the ellipsis.
 *
 * See for example Microsoft article Q249678.
 *
 * For now we will simply use three dots rather than worrying about whether
 * the font contains an explicit ellipsis character.
 */
static void TEXT_Ellipsify (HDC hdc, WCHAR *str, unsigned int max_len,
                            unsigned int *len_str, int width, SIZE *size,
                            WCHAR *modstr,
                            int *len_before, int *len_ellip)
{
    unsigned int len_ellipsis;
139
    unsigned int lo, mid, hi;
140 141 142 143 144 145

    len_ellipsis = strlenW (ELLIPSISW);
    if (len_ellipsis > max_len) len_ellipsis = max_len;
    if (*len_str > max_len - len_ellipsis)
        *len_str = max_len - len_ellipsis;

146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
    /* First do a quick binary search to get an upper bound for *len_str. */
    if (*len_str > 0 &&
        GetTextExtentExPointW(hdc, str, *len_str, width, NULL, NULL, size) &&
        size->cx > width)
    {
        for (lo = 0, hi = *len_str; lo < hi; )
        {
            mid = (lo + hi) / 2;
            if (!GetTextExtentExPointW(hdc, str, mid, width, NULL, NULL, size))
                break;
            if (size->cx > width)
                hi = mid;
            else
                lo = mid + 1;
        }
        *len_str = hi;
    }
    /* Now this should take only a couple iterations at most. */
164 165
    for ( ; ; )
    {
166
        memcpy(str + *len_str, ELLIPSISW, len_ellipsis*sizeof(WCHAR));
167 168 169 170 171 172 173 174 175 176 177 178 179 180

        if (!GetTextExtentExPointW (hdc, str, *len_str + len_ellipsis, width,
                                    NULL, NULL, size)) break;

        if (!*len_str || size->cx <= width) break;

        (*len_str)--;
    }
    *len_ellip = len_ellipsis;
    *len_before = *len_str;
    *len_str += len_ellipsis;

    if (modstr)
    {
181
        memcpy (modstr, str, *len_str * sizeof(WCHAR));
182
        modstr[*len_str] = '\0';
183 184 185 186
    }
}

/*********************************************************************
187
 *                      TEXT_PathEllipsify (static)
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
 *
 * Add an ellipsis to the provided string in order to make it fit within
 * the width.  The ellipsis is added as specified for the DT_PATH_ELLIPSIS
 * flag.
 *
 * See Also TEXT_Ellipsify
 *
 * Arguments
 *   hdc        [in] The handle to the DC that defines the font.
 *   str        [in/out] The string that needs to be modified
 *   max_str    [in] The dimension of str (number of WCHAR).
 *   len_str    [in/out] The number of characters in str
 *   width      [in] The maximum width permitted (in logical coordinates)
 *   size       [out] The dimensions of the text
 *   modstr     [out] The modified form of the string, to be returned to the
203
 *                    calling program.  It is assumed that the caller has
204 205 206
 *                    made sufficient space available so we don't need to
 *                    know the size of the space.  This pointer may be NULL if
 *                    the modified string is not required.
207
 *   pellip     [out] The ellipsification results
208 209 210 211 212 213 214 215 216 217 218 219 220 221
 *
 * For now we will simply use three dots rather than worrying about whether
 * the font contains an explicit ellipsis character.
 *
 * The following applies, I think to Win95.  We will need to extend it for
 * Win98 which can have both path and end ellipsis at the same time (e.g.
 *  C:\MyLongFileName.Txt becomes ...\MyLongFileN...)
 *
 * The resulting string consists of as much as possible of the following:
 * 1. The ellipsis itself
 * 2. The last \ or / of the string (if any)
 * 3. Everything after the last \ or / of the string (if any) or the whole
 *    string if there is no / or \.  I believe that under Win95 this would
 *    include everything even though some might be clipped off the end whereas
222 223
 *    under Win98 that might be ellipsified too.
 *    Yet to be investigated is whether this would include wordbreaking if the
224 225 226 227 228 229 230
 *    filename is more than 1 word and splitting if DT_EDITCONTROL was in
 *    effect.  (If DT_EDITCONTROL is in effect then on occasions text will be
 *    broken within words).
 * 4. All the stuff before the / or \, which is placed before the ellipsis.
 */
static void TEXT_PathEllipsify (HDC hdc, WCHAR *str, unsigned int max_len,
                                unsigned int *len_str, int width, SIZE *size,
231
                                WCHAR *modstr, ellipsis_data *pellip)
232 233 234
{
    int len_ellipsis;
    int len_trailing;
235
    int len_under;
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
    WCHAR *lastBkSlash, *lastFwdSlash, *lastSlash;

    len_ellipsis = strlenW (ELLIPSISW);
    if (!max_len) return;
    if (len_ellipsis >= max_len) len_ellipsis = max_len - 1;
    if (*len_str + len_ellipsis >= max_len)
        *len_str = max_len - len_ellipsis-1;
        /* Hopefully this will never happen, otherwise it would probably lose
         * the wrong character
         */
    str[*len_str] = '\0'; /* to simplify things */

    lastBkSlash  = strrchrW (str, BACK_SLASH);
    lastFwdSlash = strrchrW (str, FORWARD_SLASH);
    lastSlash = lastBkSlash > lastFwdSlash ? lastBkSlash : lastFwdSlash;
    if (!lastSlash) lastSlash = str;
    len_trailing = *len_str - (lastSlash - str);

    /* overlap-safe movement to the right */
    memmove (lastSlash+len_ellipsis, lastSlash, len_trailing * sizeof(WCHAR));
256
    memcpy (lastSlash, ELLIPSISW, len_ellipsis*sizeof(WCHAR));
257 258 259 260 261
    len_trailing += len_ellipsis;
    /* From this point on lastSlash actually points to the ellipsis in front
     * of the last slash and len_trailing includes the ellipsis
     */

262
    len_under = 0;
263 264 265 266 267 268 269 270 271 272
    for ( ; ; )
    {
        if (!GetTextExtentExPointW (hdc, str, *len_str + len_ellipsis, width,
                                    NULL, NULL, size)) break;

        if (lastSlash == str || size->cx <= width) break;

        /* overlap-safe movement to the left */
        memmove (lastSlash-1, lastSlash, len_trailing * sizeof(WCHAR));
        lastSlash--;
273
        len_under++;
274

275 276 277
        assert (*len_str);
        (*len_str)--;
    }
278 279 280 281
    pellip->before = lastSlash-str;
    pellip->len = len_ellipsis;
    pellip->under = len_under;
    pellip->after = len_trailing - len_ellipsis;
282 283 284 285
    *len_str += len_ellipsis;

    if (modstr)
    {
286 287
        memcpy(modstr, str, *len_str * sizeof(WCHAR));
        modstr[*len_str] = '\0';
288 289 290
    }
}

291 292 293 294 295 296
/*********************************************************************
 *                      TEXT_WordBreak (static)
 *
 *  Perform wordbreak processing on the given string
 *
 * Assumes that DT_WORDBREAK has been specified and not all the characters
297 298
 * fit.  Note that this function should even be called when the first character
 * that doesn't fit is known to be a space or tab, so that it can swallow them.
299
 *
300 301 302 303 304 305 306 307 308
 * Note that the Windows processing has some strange properties.
 * 1. If the text is left-justified and there is room for some of the spaces
 *    that follow the last word on the line then those that fit are included on
 *    the line.
 * 2. If the text is centred or right-justified and there is room for some of
 *    the spaces that follow the last word on the line then all but one of those
 *    that fit are included on the line.
 * 3. (Reasonable behaviour) If the word breaking causes a space to be the first
 *    character of a new line it will be skipped.
309 310 311 312 313 314 315 316 317 318 319 320
 *
 * Arguments
 *   hdc        [in] The handle to the DC that defines the font.
 *   str        [in/out] The string that needs to be broken.
 *   max_str    [in] The dimension of str (number of WCHAR).
 *   len_str    [in/out] The number of characters in str
 *   width      [in] The maximum width permitted
 *   format     [in] The format flags in effect
 *   chars_fit  [in] The maximum number of characters of str that are already
 *              known to fit; chars_fit+1 is known not to fit.
 *   chars_used [out] The number of characters of str that have been "used" and
 *              do not need to be included in later text.  For example this will
321
 *              include any spaces that have been discarded from the start of
322 323 324 325 326 327 328
 *              the next line.
 *   size       [out] The size of the returned text in logical coordinates
 *
 * Pedantic assumption - Assumes that the text length is monotonically
 * increasing with number of characters (i.e. no weird kernings)
 *
 * Algorithm
329
 *
330 331 332
 * Work back from the last character that did fit to either a space or the last
 * character of a word, whichever is met first.
 * If there was one or the first character didn't fit then
333 334 335
 *     If the text is centred or right justified and that one character was a
 *     space then break the line before that character
 *     Otherwise break the line after that character
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
 *     and if the next character is a space then discard it.
 * Suppose there was none (and the first character did fit).
 *     If Break Within Word is permitted
 *         break the word after the last character that fits (there must be
 *         at least one; none is caught earlier).
 *     Otherwise
 *         discard any trailing space.
 *         include the whole word; it may be ellipsified later
 *
 * Break Within Word is permitted under a set of circumstances that are not
 * totally clear yet.  Currently our best guess is:
 *     If DT_EDITCONTROL is in effect and neither DT_WORD_ELLIPSIS nor
 *     DT_PATH_ELLIPSIS is
 */

static void TEXT_WordBreak (HDC hdc, WCHAR *str, unsigned int max_str,
                            unsigned int *len_str,
                            int width, int format, unsigned int chars_fit,
                            unsigned int *chars_used, SIZE *size)
{
    WCHAR *p;
    int word_fits;
    assert (format & DT_WORDBREAK);
    assert (chars_fit < *len_str);

    /* Work back from the last character that did fit to either a space or the
     * last character of a word, whichever is met first.
     */
    p = str + chars_fit; /* The character that doesn't fit */
    word_fits = TRUE;
    if (!chars_fit)
        ; /* we pretend that it fits anyway */
    else if (*p == SPACE) /* chars_fit < *len_str so this is valid */
        p--; /* the word just fitted */
    else
    {
        while (p > str && *(--p) != SPACE)
            ;
        word_fits = (p != str || *p == SPACE);
    }
    /* If there was one or the first character didn't fit then */
    if (word_fits)
    {
379
        int next_is_space;
380 381 382
        /* break the line before/after that character */
        if (!(format & (DT_RIGHT | DT_CENTER)) || *p != SPACE)
            p++;
383
        next_is_space = (p - str) < *len_str && *p == SPACE;
384 385 386
        *len_str = p - str;
        /* and if the next character is a space then discard it. */
        *chars_used = *len_str;
387
        if (next_is_space)
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
            (*chars_used)++;
    }
    /* Suppose there was none. */
    else
    {
        if ((format & (DT_EDITCONTROL | DT_WORD_ELLIPSIS | DT_PATH_ELLIPSIS)) ==
            DT_EDITCONTROL)
        {
            /* break the word after the last character that fits (there must be
             * at least one; none is caught earlier).
             */
            *len_str = chars_fit;
            *chars_used = chars_fit;

            /* FIXME - possible error.  Since the next character is now removed
             * this could make the text longer so that it no longer fits, and
             * so we need a loop to test and shrink.
             */
        }
        /* Otherwise */
        else
        {
            /* discard any trailing space. */
            const WCHAR *e = str + *len_str;
            p = str + chars_fit;
            while (p < e && *p != SPACE)
                p++;
            *chars_used = p - str;
            if (p < e) /* i.e. loop failed because *p == SPACE */
                (*chars_used)++;

            /* include the whole word; it may be ellipsified later */
            *len_str = p - str;
            /* Possible optimisation; if DT_WORD_ELLIPSIS only use chars_fit+1
             * so that it will be too long
             */
        }
    }
    /* Remeasure the string */
    GetTextExtentExPointW (hdc, str, *len_str, 0, NULL, NULL, size);
}

/*********************************************************************
 *                      TEXT_SkipChars
 *
 *  Skip over the given number of characters, bearing in mind prefix
 *  substitution and the fact that a character may take more than one
 *  WCHAR (Unicode surrogates are two words long) (and there may have been
 *  a trailing &)
 *
 * Parameters
 *   new_count  [out] The updated count
 *   new_str    [out] The updated pointer
 *   start_count [in] The count of remaining characters corresponding to the
 *                    start of the string
 *   start_str  [in] The starting point of the string
 *   max        [in] The number of characters actually in this segment of the
 *                   string (the & counts)
 *   n          [in] The number of characters to skip (if prefix then
 *                   &c counts as one)
 *   prefix     [in] Apply prefix substitution
 *
 * Return Values
 *   none
 *
 * Remarks
 *   There must be at least n characters in the string
 *   We need max because the "line" may have ended with a & followed by a tab
 *   or newline etc. which we don't want to swallow
 */

static void TEXT_SkipChars (int *new_count, const WCHAR **new_str,
                            int start_count, const WCHAR *start_str,
                            int max, int n, int prefix)
{
    /* This is specific to wide characters, MSDN doesn't say anything much
     * about Unicode surrogates yet and it isn't clear if _wcsinc will
     * correctly handle them so we'll just do this the easy way for now
     */

    if (prefix)
    {
        const WCHAR *str_on_entry = start_str;
        assert (max >= n);
        max -= n;
        while (n--)
474
        {
475 476
            if (*start_str++ == PREFIX && max--)
                start_str++;
477
        }
478 479 480 481 482 483 484 485 486 487
        start_count -= (start_str - str_on_entry);
    }
    else
    {
        start_str += n;
        start_count -= n;
    }
    *new_str = start_str;
    *new_count = start_count;
}
488

489 490 491 492 493 494 495 496 497
/*********************************************************************
 *                      TEXT_Reprefix
 *
 *  Reanalyse the text to find the prefixed character.  This is called when
 *  wordbreaking or ellipsification has shortened the string such that the
 *  previously noted prefixed character is no longer visible.
 *
 * Parameters
 *   str        [in] The original string segment (including all characters)
498 499
 *   ns         [in] The number of characters in str (including prefixes)
 *   pe         [in] The ellipsification data
500 501 502 503 504 505
 *
 * Return Values
 *   The prefix offset within the new string segment (the one that contains the
 *   ellipses and does not contain the prefix characters) (-1 if none)
 */

506 507
static int TEXT_Reprefix (const WCHAR *str, unsigned int ns,
                          const ellipsis_data *pe)
508 509 510
{
    int result = -1;
    unsigned int i = 0;
511 512
    unsigned int n = pe->before + pe->under + pe->after;
    assert (n <= ns);
513 514
    while (i < n)
    {
515
        if (i == pe->before)
516 517
        {
            /* Reached the path ellipsis; jump over it */
518 519 520 521 522
            if (ns < pe->under) break;
            str += pe->under;
            ns -= pe->under;
            i += pe->under;
            if (!pe->after) break; /* Nothing after the path ellipsis */
523
        }
524 525
        if (!ns) break;
        ns--;
526 527
        if (*str++ == PREFIX)
        {
528 529 530 531
            if (!ns) break;
            if (*str != PREFIX)
                result = (i < pe->before || pe->under == 0) ? i : i - pe->under + pe->len;
                /* pe->len may be non-zero while pe_under is zero */
532
            str++;
533
            ns--;
534 535 536 537 538
        }
        i++;
    }
    return result;
}
539

540
/*********************************************************************
541
 *  Returns true if and only if the remainder of the line is a single
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
 *  newline representation or nothing
 */

static int remainder_is_none_or_newline (int num_chars, const WCHAR *str)
{
    if (!num_chars) return TRUE;
    if (*str != LF && *str != CR) return FALSE;
    if (!--num_chars) return TRUE;
    if (*str == *(str+1)) return FALSE;
    str++;
    if (*str != CR && *str != LF) return FALSE;
    if (--num_chars) return FALSE;
    return TRUE;
}

557 558
/*********************************************************************
 *  Return next line of text from a string.
559
 *
560 561 562 563
 * hdc - handle to DC.
 * str - string to parse into lines.
 * count - length of str.
 * dest - destination in which to return line.
564
 * len - dest buffer size in chars on input, copied length into dest on output.
565 566
 * width - maximum width of line in pixels.
 * format - format type passed to DrawText.
567
 * retsize - returned size of the line in pixels.
568 569 570
 * last_line - TRUE if is the last line that will be processed
 * p_retstr - If DT_MODIFYSTRING this points to a cursor in the buffer in which
 *            the return string is built.
571 572
 * tabwidth - The width of a tab in logical coordinates
 * pprefix_offset - Here is where we return the offset within dest of the first
573
 *                  prefixed (underlined) character.  -1 is returned if there
574 575 576 577 578
 *                  are none.  Note that there may be more; the calling code
 *                  will need to use TEXT_Reprefix to find any later ones.
 * pellip - Here is where we return the information about any ellipsification
 *          that was carried out.  Note that if tabs are being expanded then
 *          this data will correspond to the last text segment actually
579
 *          returned in dest; by definition there would not have been any
580
 *          ellipsification in earlier text segments of the line.
581 582 583 584
 *
 * Returns pointer to next char in str after end of the line
 * or NULL if end of str reached.
 */
585
static const WCHAR *TEXT_NextLineW( HDC hdc, const WCHAR *str, int *count,
586
                                 WCHAR *dest, int *len, int width, DWORD format,
587 588 589
                                 SIZE *retsize, int last_line, WCHAR **p_retstr,
                                 int tabwidth, int *pprefix_offset,
                                 ellipsis_data *pellip)
590
{
591
    int i = 0, j = 0;
592 593
    int plen = 0;
    SIZE size;
594
    int maxl = *len;
595 596 597 598
    int seg_i, seg_count, seg_j;
    int max_seg_width;
    int num_fit;
    int word_broken;
599
    int line_fits;
600
    unsigned int j_in_seg;
601
    int ellipsified;
602
    *pprefix_offset = -1;
603

604 605 606 607
    /* For each text segment in the line */

    retsize->cy = 0;
    while (*count)
608
    {
609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637

        /* Skip any leading tabs */

        if (str[i] == TAB && (format & DT_EXPANDTABS))
        {
            plen = ((plen/tabwidth)+1)*tabwidth;
            (*count)--; if (j < maxl) dest[j++] = str[i++]; else i++;
            while (*count && str[i] == TAB)
            {
                plen += tabwidth;
                (*count)--; if (j < maxl) dest[j++] = str[i++]; else i++;
            }
        }


        /* Now copy as far as the next tab or cr/lf or eos */

        seg_i = i;
        seg_count = *count;
        seg_j = j;

        while (*count &&
               (str[i] != TAB || !(format & DT_EXPANDTABS)) &&
               ((str[i] != CR && str[i] != LF) || (format & DT_SINGLELINE)))
        {
	    if (str[i] == PREFIX && !(format & DT_NOPREFIX) && *count > 1)
            {
                (*count)--, i++; /* Throw away the prefix itself */
                if (str[i] == PREFIX)
638
                {
639 640
                    /* Swallow it before we see it again */
		    (*count)--; if (j < maxl) dest[j++] = str[i++]; else i++;
641
                }
642
		else if (*pprefix_offset == -1 || *pprefix_offset >= seg_j)
643
                {
644
                    *pprefix_offset = j;
645
                }
646 647 648 649
                /* else the previous prefix was in an earlier segment of the
                 * line; we will leave it to the drawing code to catch this
                 * one.
                 */
650
	    }
651 652 653
            else
            {
                (*count)--; if (j < maxl) dest[j++] = str[i++]; else i++;
654
            }
655 656
        }

657

658 659 660
        /* Measure the whole text segment and possibly WordBreak and
         * ellipsify it
         */
661

662
        j_in_seg = j - seg_j;
663
        max_seg_width = width - plen;
664
        GetTextExtentExPointW (hdc, dest + seg_j, j_in_seg, max_seg_width, &num_fit, NULL, &size);
665

666 667 668 669 670
        /* The Microsoft handling of various combinations of formats is weird.
         * The following may very easily be incorrect if several formats are
         * combined, and may differ between versions (to say nothing of the
         * several bugs in the Microsoft versions).
         */
671
        word_broken = 0;
672 673
        line_fits = (num_fit >= j_in_seg);
        if (!line_fits && (format & DT_WORDBREAK))
674
        {
675
            const WCHAR *s;
676
            unsigned int chars_used;
677 678
            TEXT_WordBreak (hdc, dest+seg_j, maxl-seg_j, &j_in_seg,
                            max_seg_width, format, num_fit, &chars_used, &size);
679
            line_fits = (size.cx <= max_seg_width);
680 681 682 683 684
            /* and correct the counts */
            TEXT_SkipChars (count, &s, seg_count, str+seg_i, i-seg_i,
                            chars_used, !(format & DT_NOPREFIX));
            i = s - str;
            word_broken = 1;
685
        }
686 687 688 689
        pellip->before = j_in_seg;
        pellip->under = 0;
        pellip->after = 0;
        pellip->len = 0;
690 691 692 693
        ellipsified = 0;
        if (!line_fits && (format & DT_PATH_ELLIPSIS))
        {
            TEXT_PathEllipsify (hdc, dest + seg_j, maxl-seg_j, &j_in_seg,
694
                                max_seg_width, &size, *p_retstr, pellip);
695 696 697 698 699 700
            line_fits = (size.cx <= max_seg_width);
            ellipsified = 1;
        }
        /* NB we may end up ellipsifying a word-broken or path_ellipsified
         * string */
        if ((!line_fits && (format & DT_WORD_ELLIPSIS)) ||
701
            ((format & DT_END_ELLIPSIS) &&
702 703 704
              ((last_line && *count) ||
               (remainder_is_none_or_newline (*count, &str[i]) && !line_fits))))
        {
705
            int before, len_ellipsis;
706 707
            TEXT_Ellipsify (hdc, dest + seg_j, maxl-seg_j, &j_in_seg,
                            max_seg_width, &size, *p_retstr, &before, &len_ellipsis);
708
            if (before > pellip->before)
709 710
            {
                /* We must have done a path ellipsis too */
711 712
                pellip->after = before - pellip->before - pellip->len;
                /* Leave the len as the length of the first ellipsis */
713 714 715
            }
            else
            {
716 717 718 719 720 721 722 723
                /* If we are here after a path ellipsification it must be
                 * because even the ellipsis itself didn't fit.
                 */
                assert (pellip->under == 0 && pellip->after == 0);
                pellip->before = before;
                pellip->len = len_ellipsis;
                /* pellip->after remains as zero as does
                 * pellip->under
724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
                 */
            }
            line_fits = (size.cx <= max_seg_width);
            ellipsified = 1;
        }
        /* As an optimisation if we have ellipsified and we are expanding
         * tabs and we haven't reached the end of the line we can skip to it
         * now rather than going around the loop again.
         */
        if ((format & DT_EXPANDTABS) && ellipsified)
        {
            if (format & DT_SINGLELINE)
                *count = 0;
            else
            {
                while ((*count) && str[i] != CR && str[i] != LF)
                {
                    (*count)--, i++;
                }
            }
        }
745

746
        j = seg_j + j_in_seg;
747
        if (*pprefix_offset >= seg_j + pellip->before)
748
        {
749 750 751
            *pprefix_offset = TEXT_Reprefix (str + seg_i, i - seg_i, pellip);
            if (*pprefix_offset != -1)
                *pprefix_offset += seg_j;
752
        }
753

754 755 756 757 758 759 760 761 762 763
        plen += size.cx;
        if (size.cy > retsize->cy)
            retsize->cy = size.cy;

        if (word_broken)
            break;
        else if (!*count)
            break;
        else if (str[i] == CR || str[i] == LF)
        {
764 765
            (*count)--, i++;
            if (*count && (str[i] == CR || str[i] == LF) && str[i] != str[i-1])
766
            {
767
                (*count)--, i++;
768 769 770 771
            }
            break;
        }
        /* else it was a Tab and we go around again */
772
    }
773

774
    retsize->cx = plen;
775
    *len = j;
776 777 778 779
    if (*count)
        return (&str[i]);
    else
        return NULL;
780 781 782
}


783 784 785 786 787 788 789 790 791 792 793 794
/***********************************************************************
 *                      TEXT_DrawUnderscore
 *
 *  Draw the underline under the prefixed character
 *
 * Parameters
 *   hdc        [in] The handle of the DC for drawing
 *   x          [in] The x location of the line segment (logical coordinates)
 *   y          [in] The y location of where the underscore should appear
 *                   (logical coordinates)
 *   str        [in] The text of the line segment
 *   offset     [in] The offset of the underscored character within str
795
 *   rect       [in] Clipping rectangle (if not NULL)
796 797
 */

798
static void TEXT_DrawUnderscore (HDC hdc, int x, int y, const WCHAR *str, int offset, const RECT *rect)
799 800 801 802 803 804 805 806 807 808 809 810 811
{
    int prefix_x;
    int prefix_end;
    SIZE size;
    HPEN hpen;
    HPEN oldPen;

    GetTextExtentPointW (hdc, str, offset, &size);
    prefix_x = x + size.cx;
    GetTextExtentPointW (hdc, str, offset+1, &size);
    prefix_end = x + size.cx - 1;
    /* The above method may eventually be slightly wrong due to kerning etc. */

812 813 814 815 816 817 818 819 820
    /* Check for clipping */
    if (rect){
	if (prefix_x > rect->right || prefix_end < rect->left || y < rect->top || y > rect->bottom)
	    return; /* Completely outside */
	/* Partially outside */
	if (prefix_x   < rect->left ) prefix_x   = rect->left;
	if (prefix_end > rect->right) prefix_end = rect->right;
    }
    
821 822 823 824 825 826 827 828
    hpen = CreatePen (PS_SOLID, 1, GetTextColor (hdc));
    oldPen = SelectObject (hdc, hpen);
    MoveToEx (hdc, prefix_x, y, NULL);
    LineTo (hdc, prefix_end, y);
    SelectObject (hdc, oldPen);
    DeleteObject (hpen);
}

829
/***********************************************************************
830
 *           DrawTextExW    (USER32.@)
831 832 833 834 835
 *
 * The documentation on the extra space required for DT_MODIFYSTRING at MSDN
 * is not quite complete, especially with regard to \0.  We will assume that
 * the returned string could have a length of up to i_count+3 and also have
 * a trailing \0 (which would be 4 more than a not-null-terminated string but
836
 * 3 more than a null-terminated string).  If this is not so then increase
837
 * the allowance in DrawTextExA.
838
 */
839
#define MAX_BUFFER 1024
840 841
INT WINAPI DrawTextExW( HDC hdc, LPWSTR str, INT i_count,
                        LPRECT rect, UINT flags, LPDRAWTEXTPARAMS dtp )
842 843
{
    SIZE size;
844
    const WCHAR *strPtr;
845 846
    WCHAR *retstr, *p_retstr;
    size_t size_retstr;
847
    WCHAR line[MAX_BUFFER];
848
    int len, lh, count=i_count;
849
    TEXTMETRICW tm;
850
    int lmargin = 0, rmargin = 0;
851 852 853
    int x = rect->left, y = rect->top;
    int width = rect->right - rect->left;
    int max_width = 0;
854
    int last_line;
855 856 857
    int tabwidth /* to keep gcc happy */ = 0;
    int prefix_offset;
    ellipsis_data ellip;
858
    int invert_y=0;
859

860 861
    TRACE("%s, %d, [%s] %08x\n", debugstr_wn (str, count), count,
        wine_dbgstr_rect(rect), flags);
862

863 864
   if (dtp) TRACE("Params: iTabLength=%d, iLeftMargin=%d, iRightMargin=%d\n",
          dtp->iTabLength, dtp->iLeftMargin, dtp->iRightMargin);
865

866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884
    if (!str) return 0;

    strPtr = str;

    if (flags & DT_SINGLELINE)
        flags &= ~DT_WORDBREAK;

    GetTextMetricsW(hdc, &tm);
    if (flags & DT_EXTERNALLEADING)
	lh = tm.tmHeight + tm.tmExternalLeading;
    else
	lh = tm.tmHeight;

    if (str[0] && count == 0)
        return lh;

    if (dtp && dtp->cbSize != sizeof(DRAWTEXTPARAMS))
        return 0;

885 886 887 888 889 890 891 892
    if (count == -1)
    {
        count = strlenW(str);
        if (count == 0)
        {
            if( flags & DT_CALCRECT)
            {
                rect->right = rect->left;
893 894 895 896
                if( flags & DT_SINGLELINE)
                    rect->bottom = rect->top + lh;
                else
                    rect->bottom = rect->top;
897
            }
898
            return lh;
899 900
        }
    }
901

902 903 904 905 906 907 908 909 910
    if (GetGraphicsMode(hdc) == GM_COMPATIBLE)
    {
        SIZE window_ext, viewport_ext;
        GetWindowExtEx(hdc, &window_ext);
        GetViewportExtEx(hdc, &viewport_ext);
        if ((window_ext.cy > 0) != (viewport_ext.cy > 0))
            invert_y = 1;
    }

911 912
    if (dtp)
    {
913 914
        lmargin = dtp->iLeftMargin;
        rmargin = dtp->iRightMargin;
915 916 917 918 919
        if (!(flags & (DT_CENTER | DT_RIGHT)))
            x += lmargin;
        dtp->uiLengthDrawn = 0;     /* This param RECEIVES number of chars processed */
    }

920 921
    if (flags & DT_EXPANDTABS)
    {
922 923
        int tabstop = ((flags & DT_TABSTOP) && dtp) ? dtp->iTabLength : 8;
	tabwidth = tm.tmAveCharWidth * tabstop;
924 925 926 927
    }

    if (flags & DT_CALCRECT) flags |= DT_NOCLIP;

928 929 930 931 932 933 934 935 936 937 938 939 940 941
    if (flags & DT_MODIFYSTRING)
    {
        size_retstr = (count + 4) * sizeof (WCHAR);
        retstr = HeapAlloc(GetProcessHeap(), 0, size_retstr);
        if (!retstr) return 0;
        memcpy (retstr, str, size_retstr);
    }
    else
    {
        size_retstr = 0;
        retstr = NULL;
    }
    p_retstr = retstr;

942 943
    do
    {
944
	len = sizeof(line)/sizeof(line[0]);
945 946 947 948
	if (invert_y)
            last_line = !(flags & DT_NOCLIP) && y - ((flags & DT_EDITCONTROL) ? 2*lh-1 : lh) < rect->bottom;
	else
            last_line = !(flags & DT_NOCLIP) && y + ((flags & DT_EDITCONTROL) ? 2*lh-1 : lh) > rect->bottom;
949
	strPtr = TEXT_NextLineW(hdc, strPtr, &count, line, &len, width, flags, &size, last_line, &p_retstr, tabwidth, &prefix_offset, &ellip);
950 951 952 953 954 955 956

	if (flags & DT_CENTER) x = (rect->left + rect->right -
				    size.cx) / 2;
	else if (flags & DT_RIGHT) x = rect->right - size.cx;

	if (flags & DT_SINGLELINE)
	{
957
	    if (flags & DT_VCENTER) y = rect->top +
958 959
	    	(rect->bottom - rect->top) / 2 - size.cy / 2;
	    else if (flags & DT_BOTTOM) y = rect->bottom - size.cy;
960
        }
961

962 963
	if (!(flags & DT_CALCRECT))
	{
964 965 966 967 968 969 970 971 972 973 974
            const WCHAR *str = line;
            int xseg = x;
            while (len)
            {
                int len_seg;
                SIZE size;
                if ((flags & DT_EXPANDTABS))
                {
                    const WCHAR *p;
                    p = str; while (p < str+len && *p != TAB) p++;
                    len_seg = p - str;
975
                    if (len_seg != len && !GetTextExtentPointW(hdc, str, len_seg, &size))
976 977 978 979
                        return 0;
                }
                else
                    len_seg = len;
980

981 982 983 984 985 986
                if (!ExtTextOutW( hdc, xseg, y,
                                 ((flags & DT_NOCLIP) ? 0 : ETO_CLIPPED) |
                                 ((flags & DT_RTLREADING) ? ETO_RTLREADING : 0),
                                 rect, str, len_seg, NULL ))  return 0;
                if (prefix_offset != -1 && prefix_offset < len_seg)
                {
987
                    TEXT_DrawUnderscore (hdc, xseg, y + tm.tmAscent + 1, str, prefix_offset, (flags & DT_NOCLIP) ? NULL : rect);
988 989 990 991 992 993
                }
                len -= len_seg;
                str += len_seg;
                if (len)
                {
                    assert ((flags & DT_EXPANDTABS) && *str == TAB);
994
                    len--; str++;
995 996 997 998 999 1000 1001 1002
                    xseg += ((size.cx/tabwidth)+1)*tabwidth;
                    if (prefix_offset != -1)
                    {
                        if (prefix_offset < len_seg)
                        {
                            /* We have just drawn an underscore; we ought to
                             * figure out where the next one is.  I am going
                             * to leave it for now until I have a better model
1003 1004
                             * for the line, which will make reprefixing easier.
                             * This is where ellip would be used.
1005 1006 1007 1008 1009 1010 1011 1012
                             */
                            prefix_offset = -1;
                        }
                        else
                            prefix_offset -= len_seg;
                    }
                }
            }
1013 1014 1015 1016
	}
	else if (size.cx > max_width)
	    max_width = size.cx;

1017 1018 1019 1020
        if (invert_y)
	    y -= lh;
        else
	    y += lh;
1021 1022
        if (dtp)
            dtp->uiLengthDrawn += len;
1023
    }
1024
    while (strPtr && !last_line);
1025

1026 1027 1028 1029
    if (flags & DT_CALCRECT)
    {
	rect->right = rect->left + max_width;
	rect->bottom = y;
1030 1031
        if (dtp)
            rect->right += lmargin + rmargin;
1032
    }
1033 1034 1035 1036 1037
    if (retstr)
    {
        memcpy (str, retstr, size_retstr);
        HeapFree (GetProcessHeap(), 0, retstr);
    }
1038 1039 1040
    return y - rect->top;
}

1041
/***********************************************************************
1042
 *           DrawTextExA    (USER32.@)
1043
 *
1044
 * If DT_MODIFYSTRING is specified then there must be room for up to
1045 1046
 * 4 extra characters.  We take great care about just how much modified
 * string we return.
1047
 */
1048 1049
INT WINAPI DrawTextExA( HDC hdc, LPSTR str, INT count,
                        LPRECT rect, UINT flags, LPDRAWTEXTPARAMS dtp )
1050 1051
{
   WCHAR *wstr;
1052
   WCHAR *p;
1053
   INT ret = 0;
1054
   int i;
1055
   DWORD wcount;
1056 1057
   DWORD wmax;
   DWORD amax;
1058
   UINT cp;
1059 1060

   if (!count) return 0;
1061
   if (!str && count > 0) return 0;
1062 1063
   if( !str || ((count == -1) && !(count = strlen(str))))
   {
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
        int lh;
        TEXTMETRICA tm;

        if (dtp && dtp->cbSize != sizeof(DRAWTEXTPARAMS))
            return 0;

        GetTextMetricsA(hdc, &tm);
        if (flags & DT_EXTERNALLEADING)
            lh = tm.tmHeight + tm.tmExternalLeading;
        else
            lh = tm.tmHeight;

1076 1077 1078
        if( flags & DT_CALCRECT)
        {
            rect->right = rect->left;
1079 1080 1081 1082
            if( flags & DT_SINGLELINE)
                rect->bottom = rect->top + lh;
            else
                rect->bottom = rect->top;
1083
        }
1084
        return lh;
1085
   }
1086 1087
   cp = GdiGetCodePage( hdc );
   wcount = MultiByteToWideChar( cp, 0, str, count, NULL, 0 );
1088 1089 1090 1091 1092 1093 1094 1095
   wmax = wcount;
   amax = count;
   if (flags & DT_MODIFYSTRING)
   {
        wmax += 4;
        amax += 4;
   }
   wstr = HeapAlloc(GetProcessHeap(), 0, wmax * sizeof(WCHAR));
1096 1097
   if (wstr)
   {
1098
       MultiByteToWideChar( cp, 0, str, count, wstr, wcount );
1099 1100 1101 1102 1103 1104
       if (flags & DT_MODIFYSTRING)
           for (i=4, p=wstr+wcount; i--; p++) *p=0xFFFE;
           /* Initialise the extra characters so that we can see which ones
            * change.  U+FFFE is guaranteed to be not a unicode character and
            * so will not be generated by DrawTextEx itself.
            */
1105
       ret = DrawTextExW( hdc, wstr, wcount, rect, flags, dtp );
1106
       if (flags & DT_MODIFYSTRING)
1107 1108 1109 1110 1111
       {
            /* Unfortunately the returned string may contain multiple \0s
             * and so we need to measure it ourselves.
             */
            for (i=4, p=wstr+wcount; i-- && *p != 0xFFFE; p++) wcount++;
1112
            WideCharToMultiByte( cp, 0, wstr, wcount, str, amax, NULL, NULL );
1113
       }
1114 1115 1116 1117
       HeapFree(GetProcessHeap(), 0, wstr);
   }
   return ret;
}
1118 1119

/***********************************************************************
1120
 *           DrawTextW    (USER32.@)
1121
 */
1122
INT WINAPI DrawTextW( HDC hdc, LPCWSTR str, INT count, LPRECT rect, UINT flags )
1123
{
1124 1125 1126
    DRAWTEXTPARAMS dtp;

    memset (&dtp, 0, sizeof(dtp));
1127
    dtp.cbSize = sizeof(dtp);
1128 1129
    if (flags & DT_TABSTOP)
    {
1130
        dtp.iTabLength = (flags >> 8) & 0xff;
1131 1132 1133
        flags &= 0xffff00ff;
    }
    return DrawTextExW(hdc, (LPWSTR)str, count, rect, flags, &dtp);
1134 1135 1136
}

/***********************************************************************
1137
 *           DrawTextA    (USER32.@)
1138
 */
1139
INT WINAPI DrawTextA( HDC hdc, LPCSTR str, INT count, LPRECT rect, UINT flags )
1140
{
1141 1142 1143
    DRAWTEXTPARAMS dtp;

    memset (&dtp, 0, sizeof(dtp));
1144
    dtp.cbSize = sizeof(dtp);
1145 1146
    if (flags & DT_TABSTOP)
    {
1147
        dtp.iTabLength = (flags >> 8) & 0xff;
1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
        flags &= 0xffff00ff;
    }
    return DrawTextExA( hdc, (LPSTR)str, count, rect, flags, &dtp );
}

/***********************************************************************
 *
 *           GrayString functions
 */

1158 1159
/* callback for ASCII gray string proc */
static BOOL CALLBACK gray_string_callbackA( HDC hdc, LPARAM param, INT len )
1160
{
1161 1162
    return TextOutA( hdc, 0, 0, (LPCSTR)param, len );
}
1163

1164 1165
/* callback for Unicode gray string proc */
static BOOL CALLBACK gray_string_callbackW( HDC hdc, LPARAM param, INT len )
1166
{
1167
    return TextOutW( hdc, 0, 0, (LPCWSTR)param, len );
1168 1169 1170 1171 1172 1173
}

/***********************************************************************
 *           TEXT_GrayString
 */
static BOOL TEXT_GrayString(HDC hdc, HBRUSH hb, GRAYSTRINGPROC fn, LPARAM lp, INT len,
1174
                            INT x, INT y, INT cx, INT cy )
1175 1176 1177 1178
{
    HBITMAP hbm, hbmsave;
    HBRUSH hbsave;
    HFONT hfsave;
Sander van Leeuwen's avatar
Sander van Leeuwen committed
1179
    HDC memdc;
1180 1181 1182 1183 1184
    int slen = len;
    BOOL retval = TRUE;
    COLORREF fg, bg;

    if(!hdc) return FALSE;
Sander van Leeuwen's avatar
Sander van Leeuwen committed
1185 1186
    if (!(memdc = CreateCompatibleDC(hdc))) return FALSE;

1187
    hbm = CreateBitmap(cx, cy, 1, 1, NULL);
1188
    hbmsave = SelectObject(memdc, hbm);
1189 1190 1191 1192 1193
    hbsave = SelectObject( memdc, GetStockObject(BLACK_BRUSH) );
    PatBlt( memdc, 0, 0, cx, cy, PATCOPY );
    SelectObject( memdc, hbsave );
    SetTextColor(memdc, RGB(255, 255, 255));
    SetBkColor(memdc, RGB(0, 0, 0));
1194
    hfsave = SelectObject(memdc, GetCurrentObject(hdc, OBJ_FONT));
1195

1196
    retval = fn(memdc, lp, slen);
1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207
    SelectObject(memdc, hfsave);

/*
 * Windows doc says that the bitmap isn't grayed when len == -1 and
 * the callback function returns FALSE. However, testing this on
 * win95 showed otherwise...
*/
#ifdef GRAYSTRING_USING_DOCUMENTED_BEHAVIOUR
    if(retval || len != -1)
#endif
    {
1208
        hbsave = SelectObject(memdc, SYSCOLOR_55AABrush);
1209 1210 1211 1212
        PatBlt(memdc, 0, 0, cx, cy, 0x000A0329);
        SelectObject(memdc, hbsave);
    }

1213
    if(hb) hbsave = SelectObject(hdc, hb);
1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228
    fg = SetTextColor(hdc, RGB(0, 0, 0));
    bg = SetBkColor(hdc, RGB(255, 255, 255));
    BitBlt(hdc, x, y, cx, cy, memdc, 0, 0, 0x00E20746);
    SetTextColor(hdc, fg);
    SetBkColor(hdc, bg);
    if(hb) SelectObject(hdc, hbsave);

    SelectObject(memdc, hbmsave);
    DeleteObject(hbm);
    DeleteDC(memdc);
    return retval;
}


/***********************************************************************
1229
 *           GrayStringA   (USER32.@)
1230 1231
 */
BOOL WINAPI GrayStringA( HDC hdc, HBRUSH hbr, GRAYSTRINGPROC gsprc,
1232 1233
                         LPARAM lParam, INT cch, INT x, INT y,
                         INT cx, INT cy )
1234
{
1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
    if (!cch) cch = strlen( (LPCSTR)lParam );
    if ((cx == 0 || cy == 0) && cch != -1)
    {
        SIZE s;
        GetTextExtentPoint32A( hdc, (LPCSTR)lParam, cch, &s );
        if (cx == 0) cx = s.cx;
        if (cy == 0) cy = s.cy;
    }
    if (!gsprc) gsprc = gray_string_callbackA;
    return TEXT_GrayString( hdc, hbr, gsprc, lParam, cch, x, y, cx, cy );
1245 1246 1247 1248
}


/***********************************************************************
1249
 *           GrayStringW   (USER32.@)
1250 1251
 */
BOOL WINAPI GrayStringW( HDC hdc, HBRUSH hbr, GRAYSTRINGPROC gsprc,
1252 1253
                         LPARAM lParam, INT cch, INT x, INT y,
                         INT cx, INT cy )
1254
{
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
    if (!cch) cch = strlenW( (LPCWSTR)lParam );
    if ((cx == 0 || cy == 0) && cch != -1)
    {
        SIZE s;
        GetTextExtentPoint32W( hdc, (LPCWSTR)lParam, cch, &s );
        if (cx == 0) cx = s.cx;
        if (cy == 0) cy = s.cy;
    }
    if (!gsprc) gsprc = gray_string_callbackW;
    return TEXT_GrayString( hdc, hbr, gsprc, lParam, cch, x, y, cx, cy );
1265 1266
}

1267

1268 1269 1270 1271 1272 1273 1274
/***********************************************************************
 *           TEXT_TabbedTextOut
 *
 * Helper function for TabbedTextOut() and GetTabbedTextExtent().
 * Note: this doesn't work too well for text-alignment modes other
 *       than TA_LEFT|TA_TOP. But we want bug-for-bug compatibility :-)
 */
1275 1276
static LONG TEXT_TabbedTextOut( HDC hdc, INT x, INT y, LPCWSTR lpstr,
                                INT count, INT cTabStops, const INT *lpTabPos, INT nTabOrg,
1277 1278 1279 1280
                                BOOL fDisplayText )
{
    INT defWidth;
    SIZE extent;
1281
    int i, j;
1282 1283
    int start = x;

1284 1285 1286
    if (!lpTabPos)
        cTabStops=0;

1287
    if (cTabStops == 1)
1288
    {
1289
        defWidth = *lpTabPos;
1290 1291 1292 1293
        cTabStops = 0;
    }
    else
    {
1294 1295
        TEXTMETRICW tm;
        GetTextMetricsW( hdc, &tm );
1296 1297 1298 1299 1300
        defWidth = 8 * tm.tmAveCharWidth;
    }

    while (count > 0)
    {
1301 1302 1303 1304 1305 1306
        RECT r;
        INT x0;
        x0 = x;
        r.left = x0;
        /* chop the string into substrings of 0 or more <tabs> 
         * possibly followed by 1 or more normal characters */
1307
        for (i = 0; i < count; i++)
1308 1309 1310 1311 1312 1313 1314
            if (lpstr[i] != '\t') break;
        for (j = i; j < count; j++)
            if (lpstr[j] == '\t') break;
        /* get the extent of the normal character part */
        GetTextExtentPointW( hdc, lpstr + i, j - i , &extent );
        /* and if there is a <tab>, calculate its position */
        if( i) {
1315
            /* get x coordinate for the drawing of this string */
1316
            for (; cTabStops >= i; lpTabPos++, cTabStops--)
1317
            {
1318 1319 1320
                if( nTabOrg + abs( *lpTabPos) > x) {
                    if( lpTabPos[ i - 1] >= 0) {
                        /* a left aligned tab */
1321 1322
                        x0 = nTabOrg + lpTabPos[i-1];
                        x = x0 + extent.cx;
1323 1324
                        break;
                    }
1325
                    else
1326
                    {
1327 1328 1329 1330 1331 1332 1333 1334 1335
                        /* if tab pos is negative then text is right-aligned
                         * to tab stop meaning that the string extends to the
                         * left, so we must subtract the width of the string */
                        if (nTabOrg - lpTabPos[ i - 1] - extent.cx > x)
                        {
                            x = nTabOrg - lpTabPos[ i - 1];
                            x0 = x - extent.cx;
                            break;
                        }
1336 1337 1338 1339 1340
                    }
                }
            }
            /* if we have run out of tab stops and we have a valid default tab
             * stop width then round x up to that width */
1341
            if ((cTabStops < i) && (defWidth > 0)) {
1342 1343
                x0 = nTabOrg + ((x - nTabOrg) / defWidth + i) * defWidth;
                x = x0 + extent.cx;
1344
            } else if ((cTabStops < i) && (defWidth < 0)) {
1345 1346 1347 1348 1349 1350 1351
                x = nTabOrg + ((x - nTabOrg + extent.cx) / -defWidth + i)
                    * -defWidth;
                x0 = x - extent.cx;
            }
        } else
            x += extent.cx;
        
1352 1353 1354
        if (fDisplayText)
        {
            r.top    = y;
1355
            r.right  = x;
1356
            r.bottom = y + extent.cy;
1357 1358
            ExtTextOutW( hdc, x0, y, GetBkMode(hdc) == OPAQUE ? ETO_OPAQUE : 0,
                         &r, lpstr + i, j - i, NULL );
1359
        }
1360 1361
        count -= j;
        lpstr += j;
1362
    }
1363
    return MAKELONG(x - start, extent.cy);
1364 1365 1366 1367
}


/***********************************************************************
1368
 *           TabbedTextOutA    (USER32.@)
1369 1370
 *
 * See TabbedTextOutW.
1371
 */
1372 1373
LONG WINAPI TabbedTextOutA( HDC hdc, INT x, INT y, LPCSTR lpstr, INT count,
                            INT cTabStops, const INT *lpTabPos, INT nTabOrg )
1374
{
1375 1376 1377 1378 1379 1380 1381 1382
    LONG ret;
    DWORD len = MultiByteToWideChar( CP_ACP, 0, lpstr, count, NULL, 0 );
    LPWSTR strW = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
    if (!strW) return 0;
    MultiByteToWideChar( CP_ACP, 0, lpstr, count, strW, len );
    ret = TabbedTextOutW( hdc, x, y, strW, len, cTabStops, lpTabPos, nTabOrg );
    HeapFree( GetProcessHeap(), 0, strW );
    return ret;
1383 1384 1385 1386
}


/***********************************************************************
1387
 *           TabbedTextOutW    (USER32.@)
1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412
 *
 * Draws tabbed text aligned using the specified tab stops.
 *
 * PARAMS
 *  hdc       [I] Handle to device context to draw to.
 *  x         [I] X co-ordinate to start drawing the text at in logical units.
 *  y         [I] Y co-ordinate to start drawing the text at in logical units.
 *  str       [I] Pointer to the characters to draw.
 *  count     [I] Number of WCHARs pointed to by str.
 *  cTabStops [I] Number of tab stops pointed to by lpTabPos.
 *  lpTabPos  [I] Tab stops in logical units. Should be sorted in ascending order.
 *  nTabOrg   [I] Starting position to expand tabs from in logical units.
 *
 * RETURNS
 *  The dimensions of the string drawn. The height is in the high-order word
 *  and the width is in the low-order word.
 *
 * NOTES
 *  The tabs stops can be negative, in which case the text is right aligned to
 *  that tab stop and, despite what MSDN says, this is supported on
 *  Windows XP SP2.
 *
 * BUGS
 *  MSDN says that the TA_UPDATECP from GetTextAlign causes this function to
 *  ignore the x and y co-ordinates, but this is unimplemented at the moment.
1413
 */
1414 1415
LONG WINAPI TabbedTextOutW( HDC hdc, INT x, INT y, LPCWSTR str, INT count,
                            INT cTabStops, const INT *lpTabPos, INT nTabOrg )
1416
{
1417
    TRACE("%p %d,%d %s %d\n", hdc, x, y, debugstr_wn(str,count), count );
1418
    return TEXT_TabbedTextOut( hdc, x, y, str, count, cTabStops, lpTabPos, nTabOrg, TRUE );
1419 1420 1421 1422
}


/***********************************************************************
1423
 *           GetTabbedTextExtentA    (USER32.@)
1424
 */
1425 1426
DWORD WINAPI GetTabbedTextExtentA( HDC hdc, LPCSTR lpstr, INT count,
                                   INT cTabStops, const INT *lpTabPos )
1427
{
1428 1429 1430 1431 1432 1433 1434 1435
    LONG ret;
    DWORD len = MultiByteToWideChar( CP_ACP, 0, lpstr, count, NULL, 0 );
    LPWSTR strW = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
    if (!strW) return 0;
    MultiByteToWideChar( CP_ACP, 0, lpstr, count, strW, len );
    ret = GetTabbedTextExtentW( hdc, strW, len, cTabStops, lpTabPos );
    HeapFree( GetProcessHeap(), 0, strW );
    return ret;
1436 1437 1438 1439
}


/***********************************************************************
1440
 *           GetTabbedTextExtentW    (USER32.@)
1441
 */
1442 1443
DWORD WINAPI GetTabbedTextExtentW( HDC hdc, LPCWSTR lpstr, INT count,
                                   INT cTabStops, const INT *lpTabPos )
1444
{
1445
    TRACE("%p %s %d\n", hdc, debugstr_wn(lpstr,count), count );
1446
    return TEXT_TabbedTextOut( hdc, 0, 0, lpstr, count, cTabStops, lpTabPos, 0, FALSE );
1447
}