]> git.saurik.com Git - wxWidgets.git/commitdiff
Put a wxRegion test into the erase sample.
authorRobert Roebling <robert@roebling.de>
Sat, 16 Feb 2002 17:54:35 +0000 (17:54 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 16 Feb 2002 17:54:35 +0000 (17:54 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14256 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/erase/erase.cpp

index 397535c1c4d56fdae56422fb31baae163e6fccfc..eeddaad927f139de58c763ad612692a15535fd09 100644 (file)
@@ -39,7 +39,7 @@
 // resources
 // ----------------------------------------------------------------------------
 // the application icon
-#if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__)
+#if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) || defined(__WXX11__)
     #include "mondrian.xpm"
 #endif
 
@@ -181,8 +181,13 @@ void MyCanvas::OnPaint( wxPaintEvent &event )
     wxPaintDC dc(this);
     PrepareDC( dc );
     
+    wxRegion region( 110, 110, 80, 80 );
+    wxRegion hole( 130, 130, 40, 1 );
+    region.Intersect( hole );
+    dc.SetClippingRegion( region );
+    
     dc.SetBrush( *wxRED_BRUSH );
-    dc.DrawRectangle( 100, 100, 300, 500 );
+    dc.DrawRectangle( 100, 100, 200, 200 );
 }
 
 void MyCanvas::OnEraseBackground( wxEraseEvent &event )