- MGLDC *dc = MGL_wmBeginPaint(m_wnd->GetHandle());
- SetMGLDC(new MGLDevCtx(dc), FALSE);
- // FIXME_MGL -- correctly handle setting device origin and
- // clipping regions
+ MGLDevCtx *dc = win->GetPaintMGLDC();
+
+ if ( dc )
+ {
+ m_inPaintHandler = TRUE;
+
+ m_globalClippingRegion = win->GetUpdateRegion();
+ SetMGLDC(dc, FALSE);
+ }
+ else
+ {
+ m_inPaintHandler = FALSE;
+
+ dc = new MGLDevCtx(MGL_wmBeginPaint(win->GetHandle()));
+
+ MGLRegion clip;
+ dc->getClipRegion(clip);
+ m_globalClippingRegion = wxRegion(clip);
+ SetMGLDC(dc, TRUE);
+ // TRUE means that dtor will delete MGLDevCtx object
+ // but it won't destroy MGLDC returned by MGL_wmBeginPaint because
+ // ~MGLDevCtx() doesn't call destroy()
+ }