// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "dcclient.h"
#endif
+#include "wx/wxprec.h"
+
#include "wx/dcclient.h"
#include "wx/dcmemory.h"
#include "wx/region.h"
#include "wx/window.h"
#include "wx/toplevel.h"
-#include <math.h>
+#include "wx/settings.h"
+#include "wx/math.h"
#include "wx/mac/private.h"
//-----------------------------------------------------------------------------
window->MacWindowToRootWindow( &x , &y ) ;
m_macLocalOrigin.x = x ;
m_macLocalOrigin.y = y ;
- CopyRgn( (RgnHandle) window->MacGetVisibleRegion().GetWXHRGN() , (RgnHandle) m_macBoundaryClipRgn ) ;
+ CopyRgn( (RgnHandle) window->MacGetVisibleRegion(true).GetWXHRGN() , (RgnHandle) m_macBoundaryClipRgn ) ;
OffsetRgn( (RgnHandle) m_macBoundaryClipRgn , m_macLocalOrigin.x , m_macLocalOrigin.y ) ;
CopyRgn( (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) m_macCurrentClipRgn ) ;
m_macPort = UMAGetWindowPort( windowref ) ;
m_ok = TRUE ;
+ MacSetupGraphicContext() ;
SetBackground(MacGetBackgroundBrush(window));
}
m_macPort = UMAGetWindowPort( windowref ) ;
m_ok = TRUE ;
+ MacSetupGraphicContext() ;
SetBackground(MacGetBackgroundBrush(window));
SetFont( window->GetFont() ) ;
}
m_macPort = UMAGetWindowPort( windowref ) ;
m_ok = TRUE ;
+ MacSetupGraphicContext() ;
SetBackground(MacGetBackgroundBrush(window));
SetFont( window->GetFont() ) ;
}