| 1 | /* $Id: text.cpp,v 1.35 2003-12-01 13:27:39 sandervl Exp $ */
|
|---|
| 2 |
|
|---|
| 3 | /*
|
|---|
| 4 | * GDI32 text apis
|
|---|
| 5 | *
|
|---|
| 6 | * Based on Wine code (991031) (objects\text.c)
|
|---|
| 7 | *
|
|---|
| 8 | * Copyright 1993, 1994 Alexandre Julliard
|
|---|
| 9 | * Copyright 1999-2000 Christoph Bratschi
|
|---|
| 10 | *
|
|---|
| 11 | * Project Odin Software License can be found in LICENSE.TXT
|
|---|
| 12 | *
|
|---|
| 13 | */
|
|---|
| 14 | #include <os2win.h>
|
|---|
| 15 | #include <stdlib.h>
|
|---|
| 16 | #include <stdio.h>
|
|---|
| 17 | #include <misc.h>
|
|---|
| 18 | #include <string.h>
|
|---|
| 19 | #include <float.h>
|
|---|
| 20 | #include "oslibgpi.h"
|
|---|
| 21 | #include <dcdata.h>
|
|---|
| 22 | #include <unicode.h>
|
|---|
| 23 | #include "font.h"
|
|---|
| 24 |
|
|---|
| 25 | #define DBG_LOCALLOG DBG_text
|
|---|
| 26 | #include "dbglocal.h"
|
|---|
| 27 |
|
|---|
| 28 | #define ELLIPSIS "..."
|
|---|
| 29 | #define ELLIPSISLEN 3
|
|---|
| 30 |
|
|---|
| 31 | //******************************************************************************
|
|---|
| 32 | //******************************************************************************
|
|---|
| 33 | UINT WINAPI GetTextCharsetInfo(
|
|---|
| 34 | HDC hdc, /* [in] Handle to device context */
|
|---|
| 35 | LPFONTSIGNATURE fs, /* [out] Pointer to struct to receive data */
|
|---|
| 36 | DWORD flags) /* [in] Reserved - must be 0 */
|
|---|
| 37 | {
|
|---|
| 38 | HGDIOBJ hFont;
|
|---|
| 39 | UINT charSet = DEFAULT_CHARSET;
|
|---|
| 40 | LOGFONTW lf;
|
|---|
| 41 | CHARSETINFO csinfo;
|
|---|
| 42 |
|
|---|
| 43 | dprintf(("GetTextCharsetInfo %x %x %x", hdc, fs, flags));
|
|---|
| 44 |
|
|---|
| 45 | hFont = GetCurrentObject(hdc, OBJ_FONT);
|
|---|
| 46 | if (hFont == 0)
|
|---|
| 47 | return(DEFAULT_CHARSET);
|
|---|
| 48 | if ( GetObjectW(hFont, sizeof(LOGFONTW), &lf) != 0 )
|
|---|
| 49 | charSet = lf.lfCharSet;
|
|---|
| 50 |
|
|---|
| 51 | if (fs != NULL) {
|
|---|
| 52 | if (!TranslateCharsetInfo((LPDWORD)charSet, &csinfo, TCI_SRCCHARSET))
|
|---|
| 53 | return (DEFAULT_CHARSET);
|
|---|
| 54 | memcpy(fs, &csinfo.fs, sizeof(FONTSIGNATURE));
|
|---|
| 55 | }
|
|---|
| 56 | return charSet;
|
|---|
| 57 | }
|
|---|
| 58 | /***********************************************************************
|
|---|
| 59 | * GetTextCharset32 [GDI32.226] Gets character set for font in DC
|
|---|
| 60 | *
|
|---|
| 61 | * NOTES
|
|---|
| 62 | * Should it return a UINT32 instead of an INT32?
|
|---|
| 63 | * => YES, as GetTextCharsetInfo returns UINT32
|
|---|
| 64 | *
|
|---|
| 65 | * RETURNS
|
|---|
| 66 | * Success: Character set identifier
|
|---|
| 67 | * Failure: DEFAULT_CHARSET
|
|---|
| 68 | */
|
|---|
| 69 | UINT WINAPI GetTextCharset(HDC hdc) /* [in] Handle to device context */
|
|---|
| 70 | {
|
|---|
| 71 | /* MSDN docs say this is equivalent */
|
|---|
| 72 | return GetTextCharsetInfo(hdc, NULL, 0);
|
|---|
| 73 | }
|
|---|
| 74 | //******************************************************************************
|
|---|
| 75 | // todo: metafile support
|
|---|
| 76 | //#undef INVERT
|
|---|
| 77 | //#define INVERT_SETYINVERSION
|
|---|
| 78 | //******************************************************************************
|
|---|
| 79 | BOOL InternalTextOutA(HDC hdc,int X,int Y,UINT fuOptions,CONST RECT *lprc,LPCSTR lpszString,INT cbCount,CONST INT *lpDx,BOOL IsExtTextOut)
|
|---|
| 80 | {
|
|---|
| 81 | pDCData pHps = (pDCData)OSLibGpiQueryDCData(hdc);
|
|---|
| 82 | ULONG flOptions = 0;
|
|---|
| 83 | RECTLOS2 pmRect;
|
|---|
| 84 | POINTLOS2 ptl;
|
|---|
| 85 | LONG hits;
|
|---|
| 86 |
|
|---|
| 87 | if (!pHps || (cbCount < 0) || ((lpszString == NULL) && (cbCount != 0)))
|
|---|
| 88 | {
|
|---|
| 89 | dprintf(("InternalTextOutA: invalid parameter"));
|
|---|
| 90 | SetLastError(ERROR_INVALID_HANDLE);
|
|---|
| 91 | return FALSE;
|
|---|
| 92 | }
|
|---|
| 93 |
|
|---|
| 94 | if (cbCount > 512)
|
|---|
| 95 | {
|
|---|
| 96 | dprintf(("InternalTextOutA: invalid parameter cbCount"));
|
|---|
| 97 | SetLastError(ERROR_INVALID_PARAMETER);
|
|---|
| 98 | return FALSE;
|
|---|
| 99 | }
|
|---|
| 100 | if (fuOptions & ~((UINT)(ETO_CLIPPED | ETO_OPAQUE)))
|
|---|
| 101 | {
|
|---|
| 102 | dprintf(("InternalTextOutA: invalid fuOptions"));
|
|---|
| 103 | //ETO_GLYPH_INDEX, ETO_RTLLEADING, ETO_NUMERICSLOCAL, ETO_NUMERICSLATIN, ETO_IGNORELANGUAGE, ETO_PDY are ignored
|
|---|
| 104 | return TRUE;
|
|---|
| 105 | }
|
|---|
| 106 |
|
|---|
| 107 | #if defined(INVERT) && !defined(INVERT_SETYINVERSION)
|
|---|
| 108 | if(pHps->yInvert > 0) {
|
|---|
| 109 | Y = pHps->yInvert - Y;
|
|---|
| 110 | }
|
|---|
| 111 | #endif
|
|---|
| 112 |
|
|---|
| 113 | #ifdef INVERT_SETYINVERSION
|
|---|
| 114 | int oldyinv = GpiQueryYInversion(pHps->hps);
|
|---|
| 115 | Y = oldyinv - Y;
|
|---|
| 116 | #endif
|
|---|
| 117 |
|
|---|
| 118 | //CB: add metafile info
|
|---|
| 119 |
|
|---|
| 120 | if (lprc)
|
|---|
| 121 | {
|
|---|
| 122 | if (fuOptions)
|
|---|
| 123 | {
|
|---|
| 124 | MapWin32ToOS2Rect(*lprc,pmRect);
|
|---|
| 125 | if (excludeBottomRightPoint(pHps,(PPOINTLOS2)&pmRect) == 0)
|
|---|
| 126 | {
|
|---|
| 127 | dprintf(("InternalTextOutA: excludeBottomRightPoint returned 0"));
|
|---|
| 128 | return TRUE;
|
|---|
| 129 | }
|
|---|
| 130 | #ifndef INVERT
|
|---|
| 131 | #ifdef INVERT_SETYINVERSION
|
|---|
| 132 | if (oldyinv) {
|
|---|
| 133 | int temp = oldyinv - pmRect.yTop;
|
|---|
| 134 | pmRect.yTop = oldyinv - pmRect.yBottom;
|
|---|
| 135 | pmRect.yBottom = temp;
|
|---|
| 136 | }
|
|---|
| 137 | #else
|
|---|
| 138 | if (pHps->yInvert > 0) {
|
|---|
| 139 | int temp = pHps->yInvert - pmRect.yTop;
|
|---|
| 140 | pmRect.yTop = pHps->yInvert - pmRect.yBottom;
|
|---|
| 141 | pmRect.yBottom = temp;
|
|---|
| 142 | }
|
|---|
| 143 | #endif
|
|---|
| 144 | #endif
|
|---|
| 145 |
|
|---|
| 146 | if (fuOptions & ETO_CLIPPED) flOptions |= CHSOS_CLIP;
|
|---|
| 147 | if (fuOptions & ETO_OPAQUE) flOptions |= CHSOS_OPAQUE;
|
|---|
| 148 | }
|
|---|
| 149 | }
|
|---|
| 150 | else
|
|---|
| 151 | {
|
|---|
| 152 | if (fuOptions)
|
|---|
| 153 | {
|
|---|
| 154 | dprintf(("InternalTextOutA: ERROR_INVALID_HANDLE"));
|
|---|
| 155 | SetLastError(ERROR_INVALID_HANDLE);
|
|---|
| 156 | return FALSE;
|
|---|
| 157 | }
|
|---|
| 158 | }
|
|---|
| 159 |
|
|---|
| 160 | if (cbCount == 0)
|
|---|
| 161 | {
|
|---|
| 162 | if (fuOptions & ETO_OPAQUE)
|
|---|
| 163 | {
|
|---|
| 164 | //SvL: This doesn't seem to work (anymore). Look at MFC apps for the missing border
|
|---|
| 165 | // between menu & button bar (all white). (e.g. odin app & acrobat reader 4.05)
|
|---|
| 166 | #if 0
|
|---|
| 167 | lpszString = " ";
|
|---|
| 168 | cbCount = 1;
|
|---|
| 169 | flOptions |= CHSOS_CLIP;
|
|---|
| 170 | #else
|
|---|
| 171 | HBRUSH hbrush = CreateSolidBrush(GetBkColor(hdc));
|
|---|
| 172 | HBRUSH oldbrush;
|
|---|
| 173 |
|
|---|
| 174 | oldbrush = SelectObject(hdc, hbrush);
|
|---|
| 175 | FillRect(hdc, lprc, hbrush);
|
|---|
| 176 | SelectObject(hdc, oldbrush);
|
|---|
| 177 | DeleteObject(hbrush);
|
|---|
| 178 | return TRUE;
|
|---|
| 179 | #endif
|
|---|
| 180 | }
|
|---|
| 181 | else {
|
|---|
| 182 | dprintf(("InternalTextOutA: cbCount == 0"));
|
|---|
| 183 | return TRUE;
|
|---|
| 184 | }
|
|---|
| 185 | }
|
|---|
| 186 |
|
|---|
| 187 | #ifdef INVERT_SETYINVERSION
|
|---|
| 188 | GpiEnableYInversion(pHps->hps, 0);
|
|---|
| 189 | #endif
|
|---|
| 190 |
|
|---|
| 191 | if (lpDx)
|
|---|
| 192 | flOptions |= CHSOS_VECTOR;
|
|---|
| 193 |
|
|---|
| 194 | if (!getAlignUpdateCP(pHps))
|
|---|
| 195 | {
|
|---|
| 196 | ptl.x = X;
|
|---|
| 197 | ptl.y = Y;
|
|---|
| 198 |
|
|---|
| 199 | flOptions |= CHSOS_LEAVEPOS;
|
|---|
| 200 | }
|
|---|
| 201 | else OSLibGpiQueryCurrentPosition(pHps,&ptl);
|
|---|
| 202 |
|
|---|
| 203 | UINT align = GetTextAlign(hdc);
|
|---|
| 204 | LONG pmHAlign,pmVAlign;
|
|---|
| 205 |
|
|---|
| 206 | #if 0
|
|---|
| 207 | //SvL: This code is broken. TODO: Investigate
|
|---|
| 208 | //CB: TA_RIGHT not supported by PM, only TA_CENTER and TA_LEFT
|
|---|
| 209 | if ((align & 0x6) == TA_RIGHT)
|
|---|
| 210 | {
|
|---|
| 211 | BOOL rc;
|
|---|
| 212 | PPOINTLOS2 pts = (PPOINTLOS2)malloc((cbCount+1)*sizeof(POINTLOS2));
|
|---|
| 213 |
|
|---|
| 214 | rc = OSLibGpiQueryCharStringPosAt(pHps,&ptl,flOptions & CHSOS_VECTOR,cbCount,lpszString,lpDx,pts);
|
|---|
| 215 | if(rc) {
|
|---|
| 216 | for(int i=0;i<cbCount+1;i++) {
|
|---|
| 217 | dprintf(("OSLibGpiQueryCharStringPosAt %d (%d,%d)", pts[i].x, pts[i].y));
|
|---|
| 218 | }
|
|---|
| 219 | ptl.x -= pts[cbCount].x-pts[0].x;
|
|---|
| 220 | }
|
|---|
| 221 | free(pts);
|
|---|
| 222 | }
|
|---|
| 223 | #endif
|
|---|
| 224 |
|
|---|
| 225 | if (lprc && ((align & 0x18) == TA_BASELINE))
|
|---|
| 226 | {
|
|---|
| 227 | //CB: if TA_BASELINE is set, GPI doesn't fill rect
|
|---|
| 228 | // TA_BOTTOM fills rect
|
|---|
| 229 | OSLibGpiQueryTextAlignment(pHps,&pmHAlign,&pmVAlign);
|
|---|
| 230 | OSLibGpiSetTextAlignment(pHps,pmHAlign,(pmVAlign & ~TAOS_BASE) | TAOS_BOTTOM);
|
|---|
| 231 | }
|
|---|
| 232 |
|
|---|
| 233 | #ifdef INVERT
|
|---|
| 234 | ptl.y += getWorldYDeltaFor1Pixel(pHps);
|
|---|
| 235 | #else
|
|---|
| 236 | ptl.y -= getWorldYDeltaFor1Pixel(pHps);
|
|---|
| 237 |
|
|---|
| 238 | int vertAdjust = 0;
|
|---|
| 239 | if ((pHps->taMode & 0x18) != TA_TOP)
|
|---|
| 240 | {
|
|---|
| 241 | vertAdjust = OSLibGpiQueryFontMaxHeight(pHps->hps);
|
|---|
| 242 | }
|
|---|
| 243 | ptl.y -= vertAdjust;
|
|---|
| 244 | #endif
|
|---|
| 245 |
|
|---|
| 246 | hits = OSLibGpiCharStringPosAt(pHps,&ptl,&pmRect,flOptions,cbCount,lpszString,lpDx);
|
|---|
| 247 |
|
|---|
| 248 | if (lprc && ((align & 0x18) == TA_BASELINE))
|
|---|
| 249 | OSLibGpiSetTextAlignment(pHps,pmHAlign,pmVAlign);
|
|---|
| 250 |
|
|---|
| 251 | if(hits == GPIOS_ERROR) {
|
|---|
| 252 | dprintf(("InternalTextOutA: OSLibGpiCharStringPosAt returned GPIOS_ERROR"));
|
|---|
| 253 | #ifdef INVERT_SETYINVERSION
|
|---|
| 254 | GpiEnableYInversion(pHps->hps, oldyinv);
|
|---|
| 255 | #endif
|
|---|
| 256 | return FALSE;
|
|---|
| 257 | }
|
|---|
| 258 |
|
|---|
| 259 | if (getAlignUpdateCP(pHps))
|
|---|
| 260 | {
|
|---|
| 261 | OSLibGpiQueryCurrentPosition(pHps,&ptl);
|
|---|
| 262 | ptl.y -= getWorldYDeltaFor1Pixel(pHps);
|
|---|
| 263 | #ifndef INVERT
|
|---|
| 264 | ptl.y += vertAdjust;
|
|---|
| 265 | #endif
|
|---|
| 266 | OSLibGpiSetCurrentPosition(pHps,&ptl);
|
|---|
| 267 | }
|
|---|
| 268 |
|
|---|
| 269 | #ifdef INVERT_SETYINVERSION
|
|---|
| 270 | GpiEnableYInversion(pHps->hps, oldyinv);
|
|---|
| 271 | #endif
|
|---|
| 272 | return TRUE;
|
|---|
| 273 | }
|
|---|
| 274 | //******************************************************************************
|
|---|
| 275 | //******************************************************************************
|
|---|
| 276 | BOOL InternalTextOutW(HDC hdc,int X,int Y,UINT fuOptions,CONST RECT *lprc,LPCWSTR lpszString,INT cbCount,CONST INT *lpDx,BOOL IsExtTextOut)
|
|---|
| 277 | {
|
|---|
| 278 | char *astring = NULL;
|
|---|
| 279 | BOOL rc;
|
|---|
| 280 |
|
|---|
| 281 | if(cbCount == -1) {
|
|---|
| 282 | astring = UnicodeToAsciiString((LPWSTR)lpszString);
|
|---|
| 283 | }
|
|---|
| 284 | else
|
|---|
| 285 | if(cbCount >= 0) {
|
|---|
| 286 | int n = WideCharToMultiByte( CP_ACP, 0, lpszString, cbCount, 0, 0, NULL, NULL ) + 1;
|
|---|
| 287 |
|
|---|
| 288 | astring = (char *)HEAP_malloc( n );
|
|---|
| 289 | UnicodeToAsciiN((LPWSTR)lpszString, astring, n );
|
|---|
| 290 | }
|
|---|
| 291 |
|
|---|
| 292 | rc = InternalTextOutA(hdc,X,Y,fuOptions,lprc,(LPCSTR)astring, strlen( astring ),lpDx,IsExtTextOut);
|
|---|
| 293 | if(astring) {
|
|---|
| 294 | FreeAsciiString(astring);
|
|---|
| 295 | }
|
|---|
| 296 |
|
|---|
| 297 | return(rc);
|
|---|
| 298 | }
|
|---|
| 299 | //******************************************************************************
|
|---|
| 300 | //******************************************************************************
|
|---|
| 301 | BOOL WIN32API ExtTextOutA(HDC hdc,int X,int Y,UINT fuOptions,CONST RECT *lprc,LPCSTR lpszString,UINT cbCount,CONST INT *lpDx)
|
|---|
| 302 | {
|
|---|
| 303 | LPSTR astring = NULL;
|
|---|
| 304 | LPCSTR aCstring = lpszString;
|
|---|
| 305 | BOOL rc;
|
|---|
| 306 |
|
|---|
| 307 | /* no guarantee for zeroterminated text in lpszString, found in "PuTTY A Free Win32 Telnet SSH Client" */
|
|---|
| 308 | if (cbCount >= 0)
|
|---|
| 309 | {
|
|---|
| 310 | astring = (char *)malloc(cbCount+1);
|
|---|
| 311 | memcpy(astring, lpszString, cbCount);
|
|---|
| 312 | astring[cbCount] = '\0';
|
|---|
| 313 | aCstring = astring;
|
|---|
| 314 | }
|
|---|
| 315 | if(lprc)
|
|---|
| 316 | {
|
|---|
| 317 | dprintf(("GDI32: ExtTextOutA %x %s (%d,%d) %x %d %x rect (%d,%d)(%d,%d)", hdc, /*lpszString*/ aCstring, X, Y, fuOptions, cbCount, lpDx, lprc->left, lprc->top, lprc->right, lprc->bottom));
|
|---|
| 318 | }
|
|---|
| 319 | else dprintf(("GDI32: ExtTextOutA %x %s (%d,%d) %x %d %x", hdc, /*lpszString*/ aCstring, X, Y, fuOptions, cbCount, lpDx));
|
|---|
| 320 |
|
|---|
| 321 | rc = InternalTextOutA(hdc, X, Y, fuOptions, lprc, aCstring, cbCount, lpDx, TRUE);
|
|---|
| 322 |
|
|---|
| 323 | if(astring)
|
|---|
| 324 | free(astring);
|
|---|
| 325 |
|
|---|
| 326 | return(rc);
|
|---|
| 327 | }
|
|---|
| 328 | //******************************************************************************
|
|---|
| 329 | //******************************************************************************
|
|---|
| 330 | BOOL WIN32API ExtTextOutW(HDC hdc,int X,int Y,UINT fuOptions,CONST RECT *lprc,LPCWSTR lpszString,UINT cbCount,CONST int *lpDx)
|
|---|
| 331 | {
|
|---|
| 332 | if(lprc) {
|
|---|
| 333 | dprintf(("GDI32: ExtTextOutW %x %ls (%d,%d) %x %d %x rect (%d,%d)(%d,%d)", hdc, lpszString, X, Y, fuOptions, cbCount, lpDx, lprc->left, lprc->top, lprc->right, lprc->bottom));
|
|---|
| 334 | }
|
|---|
| 335 | else dprintf(("GDI32: ExtTextOutW %x %ls (%d,%d) %x %d %x", hdc, lpszString, X, Y, fuOptions, cbCount, lpDx));
|
|---|
| 336 | return InternalTextOutW(hdc, X, Y, fuOptions, lprc, lpszString, cbCount, lpDx, TRUE);
|
|---|
| 337 | }
|
|---|
| 338 | //******************************************************************************
|
|---|
| 339 | //******************************************************************************
|
|---|
| 340 | BOOL WIN32API TextOutA(HDC hdc,int nXStart,int nYStart,LPCSTR lpszString,int cbString)
|
|---|
| 341 | {
|
|---|
| 342 | dprintf(("GDI32: TextOutA %x (%d,%d) %d %.*s", hdc, nXStart, nYStart, cbString, cbString, lpszString));
|
|---|
| 343 | return InternalTextOutA(hdc,nXStart,nYStart,0,NULL,lpszString,cbString,NULL,FALSE);
|
|---|
| 344 | }
|
|---|
| 345 | //******************************************************************************
|
|---|
| 346 | //******************************************************************************
|
|---|
| 347 | BOOL WIN32API TextOutW(HDC hdc,int nXStart,int nYStart,LPCWSTR lpszString,int cbString)
|
|---|
| 348 | {
|
|---|
| 349 | dprintf(("GDI32: TextOutW %x (%d,%d) %d %.*ls", hdc, nXStart, nYStart, cbString, cbString, lpszString));
|
|---|
| 350 | return InternalTextOutW(hdc,nXStart,nYStart,0,NULL,lpszString,cbString,NULL,FALSE);
|
|---|
| 351 | }
|
|---|
| 352 | //******************************************************************************
|
|---|
| 353 | //******************************************************************************
|
|---|
| 354 | BOOL WIN32API PolyTextOutA(HDC hdc,POLYTEXTA *pptxt,int cStrings)
|
|---|
| 355 | {
|
|---|
| 356 | dprintf(("GDI32: PolyTextOutA %x %x %d", hdc, pptxt, cStrings));
|
|---|
| 357 |
|
|---|
| 358 | for (INT x = 0;x < cStrings;x++)
|
|---|
| 359 | {
|
|---|
| 360 | BOOL rc;
|
|---|
| 361 |
|
|---|
| 362 | rc = InternalTextOutA(hdc,pptxt[x].x,pptxt[x].y,pptxt[x].uiFlags,&pptxt[x].rcl,pptxt[x].lpstr,pptxt[x].n,pptxt[x].pdx,TRUE);
|
|---|
| 363 | if (!rc) return FALSE;
|
|---|
| 364 | }
|
|---|
| 365 |
|
|---|
| 366 | return TRUE;
|
|---|
| 367 | }
|
|---|
| 368 | //******************************************************************************
|
|---|
| 369 | //******************************************************************************
|
|---|
| 370 | BOOL WIN32API PolyTextOutW(HDC hdc,POLYTEXTW *pptxt,int cStrings)
|
|---|
| 371 | {
|
|---|
| 372 | dprintf(("GDI32: PolyTextOutW %x %x %d", hdc, pptxt, cStrings));
|
|---|
| 373 |
|
|---|
| 374 | for (INT x = 0;x < cStrings;x++)
|
|---|
| 375 | {
|
|---|
| 376 | BOOL rc;
|
|---|
| 377 |
|
|---|
| 378 | rc = InternalTextOutW(hdc,pptxt[x].x,pptxt[x].y,pptxt[x].uiFlags,&pptxt[x].rcl,pptxt[x].lpstr,pptxt[x].n,pptxt[x].pdx,TRUE);
|
|---|
| 379 | if (!rc) return FALSE;
|
|---|
| 380 | }
|
|---|
| 381 |
|
|---|
| 382 | return TRUE;
|
|---|
| 383 | }
|
|---|
| 384 | //******************************************************************************
|
|---|
| 385 | //******************************************************************************
|
|---|
| 386 | BOOL WIN32API GetTextExtentPointA(HDC hdc, LPCTSTR lpsz, int cbString,
|
|---|
| 387 | LPSIZE lpsSize)
|
|---|
| 388 | {
|
|---|
| 389 | BOOL ret = FALSE;
|
|---|
| 390 | INT wlen;
|
|---|
| 391 | LPWSTR p = FONT_mbtowc(hdc, lpsz, cbString, &wlen, NULL);
|
|---|
| 392 | if (p) {
|
|---|
| 393 | ret = GetTextExtentPointW( hdc, p, wlen, lpsSize );
|
|---|
| 394 | HeapFree( GetProcessHeap(), 0, p );
|
|---|
| 395 | }
|
|---|
| 396 | else DebugInt3();
|
|---|
| 397 | return ret;
|
|---|
| 398 | }
|
|---|
| 399 | //******************************************************************************
|
|---|
| 400 | //******************************************************************************
|
|---|
| 401 | BOOL WIN32API GetTextExtentPointW(HDC hdc,
|
|---|
| 402 | LPCWSTR lpString,
|
|---|
| 403 | int cbString,
|
|---|
| 404 | PSIZE lpSize)
|
|---|
| 405 | {
|
|---|
| 406 | BOOL rc;
|
|---|
| 407 | POINTLOS2 pts[TXTBOXOS_COUNT];
|
|---|
| 408 | POINTLOS2 widthHeight = { 0, 0};
|
|---|
| 409 | pDCData pHps = (pDCData)OSLibGpiQueryDCData((HPS)hdc);
|
|---|
| 410 |
|
|---|
| 411 | dprintf(("GDI32: GetTextExtentPointW %ls", lpString));
|
|---|
| 412 | if(pHps == NULL)
|
|---|
| 413 | {
|
|---|
| 414 | SetLastError(ERROR_INVALID_HANDLE);
|
|---|
| 415 | return FALSE;
|
|---|
| 416 | }
|
|---|
| 417 |
|
|---|
| 418 | if(lpString == NULL || cbString < 0 || lpSize == NULL)
|
|---|
| 419 | {
|
|---|
| 420 | SetLastError(ERROR_INVALID_PARAMETER);
|
|---|
| 421 | return FALSE;
|
|---|
| 422 | }
|
|---|
| 423 |
|
|---|
| 424 | lpSize->cx = 0;
|
|---|
| 425 | lpSize->cy = 0;
|
|---|
| 426 |
|
|---|
| 427 | // Verified with NT4, SP6
|
|---|
| 428 | if(cbString == 0)
|
|---|
| 429 | {
|
|---|
| 430 | SetLastError(ERROR_SUCCESS);
|
|---|
| 431 | return TRUE;
|
|---|
| 432 | }
|
|---|
| 433 | if(cbString > 512)
|
|---|
| 434 | {
|
|---|
| 435 | DWORD cbStringNew;
|
|---|
| 436 | SIZE newSize;
|
|---|
| 437 |
|
|---|
| 438 | dprintf(("WARNING: string longer than 512 chars; splitting up"));
|
|---|
| 439 | lpSize->cx = 0;
|
|---|
| 440 | lpSize->cy = 0;
|
|---|
| 441 | while(cbString) {
|
|---|
| 442 | cbStringNew = min(500, cbString);
|
|---|
| 443 | rc = GetTextExtentPointW(hdc, lpString, cbStringNew, &newSize);
|
|---|
| 444 | if(rc == FALSE) {
|
|---|
| 445 | return FALSE;
|
|---|
| 446 | }
|
|---|
| 447 | lpSize->cx += newSize.cx;
|
|---|
| 448 | lpSize->cy = max(newSize.cy, lpSize->cy);
|
|---|
| 449 | lpString += cbStringNew;
|
|---|
| 450 | cbString -= cbStringNew;
|
|---|
| 451 | }
|
|---|
| 452 | return TRUE;
|
|---|
| 453 | }
|
|---|
| 454 |
|
|---|
| 455 | int len;
|
|---|
| 456 | LPSTR astring;
|
|---|
| 457 |
|
|---|
| 458 | len = WideCharToMultiByte( CP_ACP, 0, lpString, cbString, 0, 0, NULL, NULL );
|
|---|
| 459 | astring = (char *)malloc( len + 1 );
|
|---|
| 460 | lstrcpynWtoA(astring, lpString, len + 1 );
|
|---|
| 461 |
|
|---|
| 462 | BOOL ret = OSLibGpiQueryTextBox(pHps, cbString, astring, TXTBOXOS_COUNT, pts);
|
|---|
| 463 | free(astring);
|
|---|
| 464 |
|
|---|
| 465 | if(rc == FALSE)
|
|---|
| 466 | {
|
|---|
| 467 | SetLastError(ERROR_INVALID_PARAMETER); //todo wrong error
|
|---|
| 468 | return FALSE;
|
|---|
| 469 | }
|
|---|
| 470 | calcDimensions(pts, &widthHeight);
|
|---|
| 471 | lpSize->cx = widthHeight.x;
|
|---|
| 472 | lpSize->cy = widthHeight.y;
|
|---|
| 473 |
|
|---|
| 474 | if(pHps && pHps->isPrinter && pHps->hdc)
|
|---|
| 475 | {//scale for printer dcs
|
|---|
| 476 | LONG alArray[2];
|
|---|
| 477 |
|
|---|
| 478 | if (OSLibDevQueryCaps(pHps, OSLIB_CAPS_HORIZONTAL_RESOLUTION, 2, &alArray[0]))
|
|---|
| 479 | lpSize->cx = lpSize->cx * alArray[0] / alArray[1];
|
|---|
| 480 | }
|
|---|
| 481 |
|
|---|
| 482 | dprintf(("GDI32: GetTextExtentPointW %x %ls %d returned %d (%d,%d)", hdc, lpString, cbString, rc, lpSize->cx, lpSize->cy));
|
|---|
| 483 | SetLastError(ERROR_SUCCESS);
|
|---|
| 484 | return TRUE;
|
|---|
| 485 | }
|
|---|
| 486 | //******************************************************************************
|
|---|
| 487 | //******************************************************************************
|
|---|
| 488 | BOOL WIN32API GetTextExtentPoint32A( HDC hdc, LPCSTR lpsz, int cbString, PSIZE lpSize)
|
|---|
| 489 | {
|
|---|
| 490 | return GetTextExtentPointA(hdc, lpsz, cbString, lpSize);
|
|---|
| 491 | }
|
|---|
| 492 | //******************************************************************************
|
|---|
| 493 | //******************************************************************************
|
|---|
| 494 | BOOL WIN32API GetTextExtentPoint32W(HDC hdc, LPCWSTR lpsz, int cbString, PSIZE lpSize)
|
|---|
| 495 | {
|
|---|
| 496 | return GetTextExtentPointW(hdc, lpsz, cbString, lpSize);
|
|---|
| 497 | }
|
|---|
| 498 | //******************************************************************************
|
|---|
| 499 | //******************************************************************************
|
|---|
| 500 | BOOL WIN32API GetTextExtentExPointA(HDC hdc,
|
|---|
| 501 | LPCSTR str,
|
|---|
| 502 | int count,
|
|---|
| 503 | int maxExt,
|
|---|
| 504 | LPINT lpnFit,
|
|---|
| 505 | LPINT alpDx,
|
|---|
| 506 | LPSIZE size)
|
|---|
| 507 | {
|
|---|
| 508 | BOOL ret;
|
|---|
| 509 | INT wlen;
|
|---|
| 510 | LPWSTR p = FONT_mbtowc( hdc, str, count, &wlen, NULL);
|
|---|
| 511 | ret = GetTextExtentExPointW( hdc, p, wlen, maxExt, lpnFit, alpDx, size);
|
|---|
| 512 | if (lpnFit) *lpnFit = WideCharToMultiByte(CP_ACP,0,p,*lpnFit,NULL,0,NULL,NULL);
|
|---|
| 513 | HeapFree( GetProcessHeap(), 0, p );
|
|---|
| 514 | return ret;
|
|---|
| 515 | }
|
|---|
| 516 | //******************************************************************************
|
|---|
| 517 | //******************************************************************************
|
|---|
| 518 | BOOL WIN32API GetTextExtentExPointW(HDC hdc,
|
|---|
| 519 | LPCWSTR str,
|
|---|
| 520 | int count,
|
|---|
| 521 | int maxExt,
|
|---|
| 522 | LPINT lpnFit,
|
|---|
| 523 | LPINT alpDx,
|
|---|
| 524 | LPSIZE size)
|
|---|
| 525 | {
|
|---|
| 526 | int index, nFit, extent;
|
|---|
| 527 | SIZE tSize;
|
|---|
| 528 | BOOL ret = FALSE;
|
|---|
| 529 |
|
|---|
| 530 | size->cx = size->cy = nFit = extent = 0;
|
|---|
| 531 | for(index = 0; index < count; index++)
|
|---|
| 532 | {
|
|---|
| 533 | if(!GetTextExtentPoint32W( hdc, str, 1, &tSize )) goto done;
|
|---|
| 534 | /* GetTextExtentPoint includes intercharacter spacing. */
|
|---|
| 535 | /* FIXME - justification needs doing yet. Remember that the base
|
|---|
| 536 | * data will not be in logical coordinates.
|
|---|
| 537 | */
|
|---|
| 538 | extent += tSize.cx;
|
|---|
| 539 | if( !lpnFit || extent <= maxExt )
|
|---|
| 540 | /* It is allowed to be equal. */
|
|---|
| 541 | {
|
|---|
| 542 | nFit++;
|
|---|
| 543 | if( alpDx ) alpDx[index] = extent;
|
|---|
| 544 | }
|
|---|
| 545 | if( tSize.cy > size->cy ) size->cy = tSize.cy;
|
|---|
| 546 | str++;
|
|---|
| 547 | }
|
|---|
| 548 | size->cx = extent;
|
|---|
| 549 | if(lpnFit) *lpnFit = nFit;
|
|---|
| 550 | ret = TRUE;
|
|---|
| 551 |
|
|---|
| 552 | dprintf(("returning %d %ld x %ld\n",nFit,size->cx,size->cy));
|
|---|
| 553 |
|
|---|
| 554 | done:
|
|---|
| 555 | return ret;
|
|---|
| 556 | }
|
|---|
| 557 | //******************************************************************************
|
|---|
| 558 | //******************************************************************************
|
|---|