comctl32: Use theming when drawing IP address control.
This commit is contained in:
parent
ca5184f512
commit
6f9724d581
|
@ -45,6 +45,9 @@
|
|||
#include "winnls.h"
|
||||
#include "commctrl.h"
|
||||
#include "comctl32.h"
|
||||
#include "uxtheme.h"
|
||||
#include "vsstyle.h"
|
||||
#include "vssym32.h"
|
||||
#include "wine/unicode.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
|
@ -150,12 +153,32 @@ static LRESULT IPADDRESS_Draw (const IPADDRESS_INFO *infoPtr, HDC hdc)
|
|||
static const WCHAR dotW[] = { '.', 0 };
|
||||
RECT rect, rcPart;
|
||||
COLORREF bgCol, fgCol;
|
||||
int i;
|
||||
HTHEME theme;
|
||||
int i, state = ETS_NORMAL;
|
||||
|
||||
TRACE("\n");
|
||||
|
||||
GetClientRect (infoPtr->Self, &rect);
|
||||
|
||||
theme = OpenThemeData(infoPtr->Self, WC_EDITW);
|
||||
|
||||
if (theme) {
|
||||
DWORD dwStyle = GetWindowLongW (infoPtr->Self, GWL_STYLE);
|
||||
|
||||
if (!infoPtr->Enabled)
|
||||
state = ETS_DISABLED;
|
||||
else if (dwStyle & ES_READONLY)
|
||||
state = ETS_READONLY;
|
||||
else if (GetFocus() == infoPtr->Self)
|
||||
state = ETS_FOCUSED;
|
||||
|
||||
GetThemeColor(theme, EP_EDITTEXT, state, TMT_FILLCOLOR, &bgCol);
|
||||
GetThemeColor(theme, EP_EDITTEXT, state, TMT_TEXTCOLOR, &fgCol);
|
||||
|
||||
if (IsThemeBackgroundPartiallyTransparent (theme, EP_EDITTEXT, state))
|
||||
DrawThemeParentBackground(infoPtr->Self, hdc, &rect);
|
||||
DrawThemeBackground (theme, hdc, EP_EDITTEXT, state, &rect, 0);
|
||||
} else {
|
||||
if (infoPtr->Enabled) {
|
||||
bgCol = comctl32_color.clrWindow;
|
||||
fgCol = comctl32_color.clrWindowText;
|
||||
|
@ -166,6 +189,7 @@ static LRESULT IPADDRESS_Draw (const IPADDRESS_INFO *infoPtr, HDC hdc)
|
|||
|
||||
FillRect (hdc, &rect, (HBRUSH)(DWORD_PTR)(bgCol+1));
|
||||
DrawEdge (hdc, &rect, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
|
||||
}
|
||||
|
||||
SetBkColor (hdc, bgCol);
|
||||
SetTextColor(hdc, fgCol);
|
||||
|
@ -177,9 +201,16 @@ static LRESULT IPADDRESS_Draw (const IPADDRESS_INFO *infoPtr, HDC hdc)
|
|||
GetWindowRect (infoPtr->Part[i+1].EditHwnd, &rcPart);
|
||||
MapWindowPoints( 0, infoPtr->Self, (POINT *)&rcPart, 2 );
|
||||
rect.right = rcPart.left;
|
||||
|
||||
if (theme)
|
||||
DrawThemeText(theme, hdc, EP_EDITTEXT, state, dotW, 1, DT_SINGLELINE | DT_CENTER | DT_BOTTOM, 0, &rect);
|
||||
else
|
||||
DrawTextW(hdc, dotW, 1, &rect, DT_SINGLELINE | DT_CENTER | DT_BOTTOM);
|
||||
}
|
||||
|
||||
if (theme)
|
||||
CloseThemeData(theme);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue