Added wxDC::GetAsBitmap, and implemented wxWindowDC::DoGetAsBitmap on OS X, in order to restore the ability to blit the contents of those DCs.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42604 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Kevin Ollivier
2006-10-29 05:29:04 +00:00
parent ce4b7808ca
commit c64c9cd3ba
4 changed files with 82 additions and 8 deletions

View File

@@ -35,6 +35,7 @@ class WXDLLEXPORT wxWindowDC: public wxDC
wxWindow *GetWindow() const { return m_window; }
protected :
virtual void DoGetSize( int *width, int *height ) const;
virtual wxBitmap DoGetAsBitmap() const;
wxWindow *m_window;
#if wxMAC_USE_CORE_GRAPHICS
bool m_release;