This commit is contained in:
Dmitry Timoshkov 2012-08-09 12:54:20 +09:00 committed by Alexandre Julliard
parent b953011f9e
commit e9af648aeb
1 changed files with 3 additions and 32 deletions

View File

@ -4910,30 +4910,6 @@ static GpStatus measure_ranges_callback(HDC hdc,
return stat;
}
static void rect_to_pixels(const RectF *in, const GpGraphics *graphics, RectF *out)
{
REAL dpi;
GdipGetDpiX((GpGraphics *)graphics, &dpi);
out->X = units_to_pixels(in->X, graphics->unit, dpi);
out->Width = units_to_pixels(in->Width, graphics->unit, dpi);
GdipGetDpiY((GpGraphics *)graphics, &dpi);
out->Y = units_to_pixels(in->Y, graphics->unit, dpi);
out->Height = units_to_pixels(in->Height, graphics->unit, dpi);
}
static void rect_to_units(const RectF *in, const GpGraphics *graphics, RectF *out)
{
REAL dpi;
GdipGetDpiX((GpGraphics *)graphics, &dpi);
out->X = pixels_to_units(in->X, graphics->unit, dpi);
out->Width = pixels_to_units(in->Width, graphics->unit, dpi);
GdipGetDpiY((GpGraphics *)graphics, &dpi);
out->Y = pixels_to_units(in->Y, graphics->unit, dpi);
out->Height = pixels_to_units(in->Height, graphics->unit, dpi);
}
GpStatus WINGDIPAPI GdipMeasureCharacterRanges(GpGraphics* graphics,
GDIPCONST WCHAR* string, INT length, GDIPCONST GpFont* font,
GDIPCONST RectF* layoutRect, GDIPCONST GpStringFormat *stringFormat,
@ -5037,7 +5013,6 @@ GpStatus WINGDIPAPI GdipMeasureString(GpGraphics *graphics,
struct measure_string_args args;
HDC temp_hdc=NULL, hdc;
GpPointF pt[3];
RectF rect_pixels;
TRACE("(%p, %s, %i, %p, %s, %p, %p, %p, %p)\n", graphics,
debugstr_wn(string, length), length, font, debugstr_rectf(rect), format,
@ -5075,10 +5050,8 @@ GpStatus WINGDIPAPI GdipMeasureString(GpGraphics *graphics,
get_font_hfont(graphics, font, &gdifont);
oldfont = SelectObject(hdc, gdifont);
rect_to_pixels(rect, graphics, &rect_pixels);
bounds->X = rect_pixels.X;
bounds->Y = rect_pixels.Y;
bounds->X = rect->X;
bounds->Y = rect->Y;
bounds->Width = 0.0;
bounds->Height = 0.0;
@ -5086,11 +5059,9 @@ GpStatus WINGDIPAPI GdipMeasureString(GpGraphics *graphics,
args.codepointsfitted = codepointsfitted;
args.linesfilled = linesfilled;
gdip_format_string(hdc, string, length, font, &rect_pixels, format,
gdip_format_string(hdc, string, length, font, rect, format,
measure_string_callback, &args);
rect_to_units(bounds, graphics, bounds);
SelectObject(hdc, oldfont);
DeleteObject(gdifont);