static control: Background of enhanced metafiles.

- Always paint the background of static controls displaying enhanced
  metafiles.
- Also paint the background if there's no metafile to display.
This commit is contained in:
Michael Kaufmann 2006-01-17 16:01:40 +01:00 committed by Alexandre Julliard
parent 7effdb0b23
commit 910f4bb50e

View file

@ -708,17 +708,18 @@ static void STATIC_PaintBitmapfn(HWND hwnd, HDC hdc, DWORD style )
static void STATIC_PaintEnhMetafn(HWND hwnd, HDC hdc, DWORD style )
{
HENHMETAFILE hEnhMetaFile;
/* message is still sent, even if the returned brush is not used */
SendMessageW( GetParent(hwnd), WM_CTLCOLORSTATIC,
(WPARAM)hdc, (LPARAM)hwnd );
RECT rc;
HBRUSH hbrush;
GetClientRect(hwnd, &rc);
hbrush = STATIC_SendWmCtlColorStatic(hwnd, hdc);
FillRect(hdc, &rc, hbrush);
if ((hEnhMetaFile = (HENHMETAFILE)GetWindowLongPtrW( hwnd, HICON_GWL_OFFSET )))
{
RECT clientRect;
if(GetObjectType(hEnhMetaFile) != OBJ_ENHMETAFILE) return;
GetClientRect(hwnd, &clientRect);
PlayEnhMetaFile(hdc, hEnhMetaFile, &clientRect);
/* The control's current font is not selected into the
device context! */
if (GetObjectType(hEnhMetaFile) == OBJ_ENHMETAFILE)
PlayEnhMetaFile(hdc, hEnhMetaFile, &rc);
}
}