+ // note that we combine the new clipping region with the existing one: this
+ // is compatible with what the other ports do and is the documented
+ // behaviour now (starting with 2.3.3)
+#if defined(__WXWINCE__)
+ RECT rectClip;
+ if ( !::GetClipBox(GetHdc(), &rectClip) )
+ return;
+
+ HRGN hrgnDest = ::CreateRectRgn(0, 0, 0, 0);
+ HRGN hrgnClipOld = ::CreateRectRgn(rectClip.left, rectClip.top,
+ rectClip.right, rectClip.bottom);
+
+ if ( ::CombineRgn(hrgnDest, hrgnClipOld, (HRGN)hrgn, RGN_AND) != ERROR )
+ {
+ ::SelectClipRgn(GetHdc(), hrgnDest);
+ }
+
+ ::DeleteObject(hrgnClipOld);
+ ::DeleteObject(hrgnDest);
+#else // !WinCE
+ if ( ::ExtSelectClipRgn(GetHdc(), (HRGN)hrgn, RGN_AND) == ERROR )
+ {
+ wxLogLastError(_T("ExtSelectClipRgn"));
+
+ return;
+ }
+#endif // WinCE/!WinCE
+
+ m_clipping = true;
+
+ UpdateClipBox();
+}
+
+void wxDC::DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord w, wxCoord h)
+{
+ // the region coords are always the device ones, so do the translation
+ // manually
+ //
+ // FIXME: possible +/-1 error here, to check!
+ HRGN hrgn = ::CreateRectRgn(LogicalToDeviceX(x),
+ LogicalToDeviceY(y),
+ LogicalToDeviceX(x + w),
+ LogicalToDeviceY(y + h));
+ if ( !hrgn )
+ {
+ wxLogLastError(_T("CreateRectRgn"));
+ }
+ else
+ {
+ SetClippingHrgn((WXHRGN)hrgn);