+
+ RECT r;
+ wxCopyRectToRECT(rect, r);
+
+ int state = flags & wxCONTROL_EXPANDED ? GLPS_OPENED : GLPS_CLOSED;
+ wxUxThemeEngine::Get()->DrawThemeBackground
+ (
+ hTheme,
+ GetHdcOf(dc),
+ TVP_GLYPH,
+ state,
+ &r,
+ NULL
+ );
+}
+
+void
+wxRendererXP::DrawCheckBox(wxWindow *win,
+ wxDC& dc,
+ const wxRect& rect,
+ int flags)
+{
+ wxUxThemeHandle hTheme(win, L"BUTTON");
+ if ( !hTheme )
+ {
+ m_rendererNative.DrawCheckBox(win, dc, rect, flags);
+ return;
+ }
+
+ RECT r;
+ wxCopyRectToRECT(rect, r);
+
+ int state;
+ if ( flags & wxCONTROL_CHECKED )
+ state = CBS_CHECKEDNORMAL;
+ else if ( flags & wxCONTROL_UNDETERMINED )
+ state = CBS_MIXEDNORMAL;
+ else
+ state = CBS_UNCHECKEDNORMAL;
+
+ // CBS_XXX is followed by CBX_XXXGOT, then CBS_XXXPRESSED and DISABLED
+ if ( flags & wxCONTROL_CURRENT )
+ state += 1;
+ else if ( flags & wxCONTROL_PRESSED )
+ state += 2;
+ else if ( flags & wxCONTROL_DISABLED )
+ state += 3;
+
+ wxUxThemeEngine::Get()->DrawThemeBackground
+ (
+ hTheme,
+ GetHdcOf(dc),
+ BP_CHECKBOX,
+ state,
+ &r,
+ NULL
+ );
+}
+
+void
+wxRendererXP::DrawPushButton(wxWindow * win,
+ wxDC& dc,
+ const wxRect& rect,
+ int flags)
+{
+ wxUxThemeHandle hTheme(win, L"BUTTON");
+ if ( !hTheme )
+ {
+ m_rendererNative.DrawPushButton(win, dc, rect, flags);
+ return;
+ }
+
+ RECT r;
+ wxCopyRectToRECT(rect, r);
+
+ int state;
+ if ( flags & wxCONTROL_PRESSED )
+ state = PBS_PRESSED;
+ else if ( flags & wxCONTROL_CURRENT )
+ state = PBS_HOT;
+ else if ( flags & wxCONTROL_DISABLED )
+ state = PBS_DISABLED;
+ else if ( flags & wxCONTROL_ISDEFAULT )
+ state = PBS_DEFAULTED;
+ else
+ state = PBS_NORMAL;
+
+ wxUxThemeEngine::Get()->DrawThemeBackground
+ (
+ hTheme,
+ GetHdcOf(dc),
+ BP_PUSHBUTTON,
+ state,
+ &r,
+ NULL
+ );
+