comctl32/statusbar: Fixed missing icon in owner draw panels.
This commit is contained in:
parent
95ca444692
commit
9751a946e3
|
@ -207,6 +207,7 @@ STATUSBAR_DrawPart (const STATUS_INFO *infoPtr, HDC hdc, const STATUSWINDOWPART
|
||||||
UINT border = BDR_SUNKENOUTER;
|
UINT border = BDR_SUNKENOUTER;
|
||||||
HTHEME theme = GetWindowTheme (infoPtr->Self);
|
HTHEME theme = GetWindowTheme (infoPtr->Self);
|
||||||
int themePart = SP_PANE;
|
int themePart = SP_PANE;
|
||||||
|
int x = 0;
|
||||||
|
|
||||||
TRACE("part bound %s\n", wine_dbgstr_rect(&r));
|
TRACE("part bound %s\n", wine_dbgstr_rect(&r));
|
||||||
if (part->style & SBT_POPOUT)
|
if (part->style & SBT_POPOUT)
|
||||||
|
@ -224,6 +225,12 @@ STATUSBAR_DrawPart (const STATUS_INFO *infoPtr, HDC hdc, const STATUSWINDOWPART
|
||||||
else
|
else
|
||||||
DrawEdge(hdc, &r, border, BF_RECT|BF_ADJUST);
|
DrawEdge(hdc, &r, border, BF_RECT|BF_ADJUST);
|
||||||
|
|
||||||
|
if (part->hIcon) {
|
||||||
|
INT cy = r.bottom - r.top;
|
||||||
|
DrawIconEx (hdc, r.left + 2, r.top, part->hIcon, cy, cy, 0, 0, DI_NORMAL);
|
||||||
|
x = 2 + cy;
|
||||||
|
}
|
||||||
|
|
||||||
if (part->style & SBT_OWNERDRAW) {
|
if (part->style & SBT_OWNERDRAW) {
|
||||||
DRAWITEMSTRUCT dis;
|
DRAWITEMSTRUCT dis;
|
||||||
|
|
||||||
|
@ -233,15 +240,9 @@ STATUSBAR_DrawPart (const STATUS_INFO *infoPtr, HDC hdc, const STATUSWINDOWPART
|
||||||
dis.hDC = hdc;
|
dis.hDC = hdc;
|
||||||
dis.rcItem = r;
|
dis.rcItem = r;
|
||||||
dis.itemData = (ULONG_PTR)part->text;
|
dis.itemData = (ULONG_PTR)part->text;
|
||||||
SendMessageW (infoPtr->Notify, WM_DRAWITEM, dis.CtlID, (LPARAM)&dis);
|
SendMessageW (infoPtr->Notify, WM_DRAWITEM, dis.CtlID, (LPARAM)&dis);
|
||||||
} else {
|
} else {
|
||||||
if (part->hIcon) {
|
r.left += x;
|
||||||
INT cy = r.bottom - r.top;
|
|
||||||
|
|
||||||
r.left += 2;
|
|
||||||
DrawIconEx (hdc, r.left, r.top, part->hIcon, cy, cy, 0, 0, DI_NORMAL);
|
|
||||||
r.left += cy;
|
|
||||||
}
|
|
||||||
DrawStatusTextW (hdc, &r, part->text, SBT_NOBORDERS);
|
DrawStatusTextW (hdc, &r, part->text, SBT_NOBORDERS);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue