]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed MSWClipBoxRegion
authorJulian Smart <julian@anthemion.co.uk>
Thu, 31 Mar 2005 15:19:14 +0000 (15:19 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 31 Mar 2005 15:19:14 +0000 (15:19 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33216 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/defs.h
include/wx/msw/statbox.h
src/msw/statbox.cpp

index 98646a60dc47d9178b9f7c2438e429156f3d095e..39459d328e9179324ec8bfa0bba7f6fabd45ab78 100644 (file)
@@ -2426,6 +2426,7 @@ typedef void *          WXHBRUSH;
 typedef void *          WXHPALETTE;
 typedef void *          WXHCURSOR;
 typedef void *          WXHRGN;
 typedef void *          WXHPALETTE;
 typedef void *          WXHCURSOR;
 typedef void *          WXHRGN;
+typedef void *          WXRECTPTR;
 typedef void *          WXHACCEL;
 typedef void WXFAR  *   WXHINSTANCE;
 typedef void *          WXHBITMAP;
 typedef void *          WXHACCEL;
 typedef void WXFAR  *   WXHINSTANCE;
 typedef void *          WXHBITMAP;
index e222abbeb131ff49f75b10e12b19bac0deb80f0c..ae0cd5030e7f7d74f1bf75f2faa8691111508e24 100644 (file)
@@ -49,7 +49,7 @@ protected:
     virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
 
     virtual WXHRGN MSWCalculateClippingRegion();
     virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
 
     virtual WXHRGN MSWCalculateClippingRegion();
-    virtual void MSWClipBoxRegion(HRGN hrgn, const RECT *rc);
+    virtual void MSWClipBoxRegion(WXHRGN hrgn, const WXRECTPTR rc);
     void OnPaint(wxPaintEvent& event);
 
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxStaticBox)
     void OnPaint(wxPaintEvent& event);
 
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxStaticBox)
index 9ad9cb9eb251ec5a56e9a118a227ae4409bf3dfc..ea27a85d600d583b748cbed4f0525034b77155f7 100644 (file)
@@ -199,28 +199,28 @@ void wxStaticBox::GetBordersForSizer(int *borderTop, int *borderOther) const
 }
 
 // rc must be in client coords!
 }
 
 // rc must be in client coords!
-void wxStaticBox::MSWClipBoxRegion(HRGN hrgn, const RECT *rc)
+void wxStaticBox::MSWClipBoxRegion(WXHRGN hrgn, const WXRECTPTR rc)
 {
     HRGN hrgnchild;
 
     // top
 {
     HRGN hrgnchild;
 
     // top
-    hrgnchild = ::CreateRectRgn(0, 0, rc->right, 14);
-    ::CombineRgn(hrgn, hrgn, hrgnchild, RGN_DIFF);
+    hrgnchild = ::CreateRectRgn(0, 0, ((const RECT*) rc)->right, 14);
+    ::CombineRgn((HRGN) hrgn, (HRGN) hrgn, hrgnchild, RGN_DIFF);
     ::DeleteObject(hrgnchild);
 
     // bottom
     ::DeleteObject(hrgnchild);
 
     // bottom
-    hrgnchild = ::CreateRectRgn(0, rc->bottom - 7, rc->right, rc->bottom);
-    ::CombineRgn(hrgn, hrgn, hrgnchild, RGN_DIFF);
+    hrgnchild = ::CreateRectRgn(0, ((const RECT*) rc)->bottom - 7, ((const RECT*) rc)->right, ((const RECT*) rc)->bottom);
+    ::CombineRgn((HRGN) hrgn, (HRGN) hrgn, hrgnchild, RGN_DIFF);
     ::DeleteObject(hrgnchild);
 
     // left
     ::DeleteObject(hrgnchild);
 
     // left
-    hrgnchild = ::CreateRectRgn(0, 0, 7, rc->bottom);
-    ::CombineRgn(hrgn, hrgn, hrgnchild, RGN_DIFF);
+    hrgnchild = ::CreateRectRgn(0, 0, 7, ((const RECT*) rc)->bottom);
+    ::CombineRgn((HRGN) hrgn, (HRGN) hrgn, hrgnchild, RGN_DIFF);
     ::DeleteObject(hrgnchild);
 
     // right
     ::DeleteObject(hrgnchild);
 
     // right
-    hrgnchild = ::CreateRectRgn(rc->right - 7, 0, rc->right, rc->bottom);
-    ::CombineRgn(hrgn, hrgn, hrgnchild, RGN_DIFF);
+    hrgnchild = ::CreateRectRgn(((const RECT*) rc)->right - 7, 0, ((const RECT*) rc)->right, ((const RECT*) rc)->bottom);
+    ::CombineRgn((HRGN) hrgn, (HRGN) hrgn, hrgnchild, RGN_DIFF);
     ::DeleteObject(hrgnchild);
 }
 
     ::DeleteObject(hrgnchild);
 }
 
@@ -308,7 +308,7 @@ void wxStaticBox::OnPaint(wxPaintEvent& WXUNUSED(event))
     // paint the inner
     HRGN hrgn = (HRGN)MSWCalculateClippingRegion();
     // now remove the box itself
     // paint the inner
     HRGN hrgn = (HRGN)MSWCalculateClippingRegion();
     // now remove the box itself
-    MSWClipBoxRegion(hrgn, &rc);
+    MSWClipBoxRegion((WXHRGN) hrgn, (const WXRECTPTR) &rc);
 
     hbr = DoMSWControlColor(GetHdcOf(dc), wxNullColour);
     if ( !hbr )
 
     hbr = DoMSWControlColor(GetHdcOf(dc), wxNullColour);
     if ( !hbr )