Add wxDCImpl::MSWApplyGDIPlusTransform() to formalize wxRendererMSW hack.
Replace the dynamic_cast<> used in wxMSW wxRenderer implementation code with a virtual function call. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68180 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -114,28 +114,6 @@
|
||||
#define DFCS_HOT 0x1000
|
||||
#endif
|
||||
|
||||
// When we're using GDI+, the DC might have transforms applied to it,
|
||||
// but the renderer APIs don't respect them. So we need to apply
|
||||
// the transforms to the rect ourselves.
|
||||
inline
|
||||
wxRect applyGDIPlusTransformsToRect(wxDC& dc, const wxRect& r)
|
||||
{
|
||||
wxRect rect = r;
|
||||
#if wxUSE_GRAPHICS_CONTEXT
|
||||
wxGCDC* gcdc = dynamic_cast<wxGCDC*>(&dc);
|
||||
if (gcdc)
|
||||
{
|
||||
double xtrans = 0;
|
||||
double ytrans = 0;
|
||||
wxGraphicsContext* gc = gcdc->GetGraphicsContext();
|
||||
gc->GetTransform().TransformPoint(&xtrans, &ytrans);
|
||||
rect.x = rect.x + (int)xtrans;
|
||||
rect.y = rect.y + (int)ytrans;
|
||||
}
|
||||
#endif
|
||||
return rect;
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// methods common to wxRendererMSW and wxRendererXP
|
||||
// ----------------------------------------------------------------------------
|
||||
@@ -417,7 +395,9 @@ wxRendererMSW::DrawComboBoxDropButton(wxWindow * WXUNUSED(win),
|
||||
const wxRect& rect,
|
||||
int flags)
|
||||
{
|
||||
wxRect adjustedRect = applyGDIPlusTransformsToRect(dc, rect);
|
||||
wxCHECK_RET( dc.GetImpl(), wxT("Invalid wxDC") );
|
||||
|
||||
wxRect adjustedRect = dc.GetImpl()->MSWApplyGDIPlusTransform(rect);
|
||||
|
||||
RECT r;
|
||||
wxCopyRectToRECT(adjustedRect, r);
|
||||
@@ -439,7 +419,9 @@ wxRendererMSW::DoDrawFrameControl(UINT type,
|
||||
const wxRect& rect,
|
||||
int flags)
|
||||
{
|
||||
wxRect adjustedRect = applyGDIPlusTransformsToRect(dc, rect);
|
||||
wxCHECK_RET( dc.GetImpl(), wxT("Invalid wxDC") );
|
||||
|
||||
wxRect adjustedRect = dc.GetImpl()->MSWApplyGDIPlusTransform(rect);
|
||||
|
||||
RECT r;
|
||||
wxCopyRectToRECT(adjustedRect, r);
|
||||
@@ -642,7 +624,9 @@ wxRendererXP::DrawComboBoxDropButton(wxWindow * win,
|
||||
return;
|
||||
}
|
||||
|
||||
wxRect adjustedRect = applyGDIPlusTransformsToRect(dc, rect);
|
||||
wxCHECK_RET( dc.GetImpl(), wxT("Invalid wxDC") );
|
||||
|
||||
wxRect adjustedRect = dc.GetImpl()->MSWApplyGDIPlusTransform(rect);
|
||||
|
||||
RECT r;
|
||||
wxCopyRectToRECT(adjustedRect, r);
|
||||
@@ -683,7 +667,9 @@ wxRendererXP::DrawHeaderButton(wxWindow *win,
|
||||
return m_rendererNative.DrawHeaderButton(win, dc, rect, flags, sortArrow, params);
|
||||
}
|
||||
|
||||
wxRect adjustedRect = applyGDIPlusTransformsToRect(dc, rect);
|
||||
wxCHECK_MSG( dc.GetImpl(), -1, wxT("Invalid wxDC") );
|
||||
|
||||
wxRect adjustedRect = dc.GetImpl()->MSWApplyGDIPlusTransform(rect);
|
||||
|
||||
RECT r;
|
||||
wxCopyRectToRECT(adjustedRect, r);
|
||||
@@ -727,7 +713,9 @@ wxRendererXP::DrawTreeItemButton(wxWindow *win,
|
||||
return;
|
||||
}
|
||||
|
||||
wxRect adjustedRect = applyGDIPlusTransformsToRect(dc, rect);
|
||||
wxCHECK_RET( dc.GetImpl(), wxT("Invalid wxDC") );
|
||||
|
||||
wxRect adjustedRect = dc.GetImpl()->MSWApplyGDIPlusTransform(rect);
|
||||
|
||||
RECT r;
|
||||
wxCopyRectToRECT(adjustedRect, r);
|
||||
@@ -767,7 +755,9 @@ wxRendererXP::DoDrawButtonLike(HTHEME htheme,
|
||||
const wxRect& rect,
|
||||
int flags)
|
||||
{
|
||||
wxRect adjustedRect = applyGDIPlusTransformsToRect(dc, rect);
|
||||
wxCHECK_RET( dc.GetImpl(), wxT("Invalid wxDC") );
|
||||
|
||||
wxRect adjustedRect = dc.GetImpl()->MSWApplyGDIPlusTransform(rect);
|
||||
|
||||
RECT r;
|
||||
wxCopyRectToRECT(adjustedRect, r);
|
||||
|
||||
Reference in New Issue
Block a user