#include "wx/tabctrl.h"
-static wxBrush MacGetBackgroundBrush( wxWindow* window )
-{
- wxBrush bkdBrush = window->MacGetBackgroundBrush() ;
- return bkdBrush ;
-}
wxWindowDC::wxWindowDC()
{
}
SetClippingRegion( 0 , 0 , m_width , m_height ) ;
- SetBackground(MacGetBackgroundBrush(window));
+ SetBackground(wxBrush(window->GetBackgroundColour(),wxSOLID));
SetFont( window->GetFont() ) ;
}
if (!m_window)
return wxNullBitmap;
+#ifdef __LP64__
+ return wxNullBitmap;
+#else
ControlRef handle = (ControlRef) m_window->GetHandle();
if ( !handle )
return wxNullBitmap;
-
+
HIRect rect;
CGImageRef image;
CGContextRef context;
}
return bmp;
+#endif
}
/*