Ejemplo n.º 1
0
	HRESULT DrawThemeBackground(HTHEME hTheme, HDC hdc, int iPartId, int iStateId, const RECT *pRect, OPTIONAL const RECT *pClipRect) const
	{THEMECALL(DrawThemeBackground)(hTheme, hdc, iPartId, iStateId, pRect, pClipRect);}
	BOOL IsThemeActive() const
	{THEMECALL(IsThemeActive)();}
Ejemplo n.º 3
0
	HRESULT CloseThemeData(HTHEME hTheme) const 
	{THEMECALL(CloseThemeData)(hTheme);}
Ejemplo n.º 4
0
	HRESULT GetThemeBackgroundContentRect(HTHEME hTheme, OPTIONAL HDC hdc, int iPartId, int iStateId,  const RECT *pBoundingRect, OUT RECT *pContentRect) const
	{THEMECALL(GetThemeBackgroundContentRect)(hTheme, hdc, iPartId, iStateId, pBoundingRect, pContentRect);}
Ejemplo n.º 5
0
	BOOL IsThemeActive() 
	{THEMECALL(IsThemeActive)();}
Ejemplo n.º 6
0
	HTHEME OpenThemeData(HWND hwnd, LPCWSTR pszClassList) const
	{THEMECALL(OpenThemeData)(hwnd, pszClassList);}
BOOL CThemeLibEx::IsThemeActive()  const
{
  THEMECALL(IsThemeActive)();
}
BOOL CThemeLibEx::IsAppThemed() const
{
  THEMECALL(IsAppThemed)();
}
HRESULT CThemeLibEx::EnableThemeDialogTexture(HWND hwnd, DWORD dwFlags) const
{
	THEMECALL(EnableThemeDialogTexture)(hwnd, dwFlags);
}
HRESULT CThemeLibEx::GetThemeColor(HTHEME hTheme, int iPartId, int iStateId, int iPropId, COLORREF *pColor) const
{
  THEMECALL(GetThemeColor)(hTheme, iPartId, iStateId, iPropId, pColor);
}
HRESULT CThemeLibEx::DrawThemeParentBackground(HWND hwnd, HDC hdc, RECT *prc) const
{
	THEMECALL(DrawThemeParentBackground)(hwnd, hdc, prc);
}