1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMemoryDC class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "dcmemory.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
26 #include "wx/dcmemory.h"
30 #if !USE_SHARED_LIBRARY
31 IMPLEMENT_DYNAMIC_CLASS(wxMemoryDC
, wxDC
)
39 wxMemoryDC::wxMemoryDC(void)
41 m_hDC
= (WXHDC
) ::CreateCompatibleDC(NULL
);
45 SetBrush(*wxWHITE_BRUSH
);
49 wxMemoryDC::wxMemoryDC(wxDC
*old_dc
)
51 old_dc
->BeginDrawing();
53 m_hDC
= (WXHDC
) ::CreateCompatibleDC((HDC
) old_dc
->GetHDC());
58 SetBrush(*wxWHITE_BRUSH
);
62 wxMemoryDC::~wxMemoryDC(void)
66 void wxMemoryDC::SelectObject(const wxBitmap
& bitmap
)
68 // Select old bitmap out of the device context
71 ::SelectObject((HDC
) m_hDC
, (HBITMAP
) m_oldBitmap
);
72 if (m_selectedBitmap
.Ok())
74 m_selectedBitmap
.SetSelectedInto(NULL
);
75 m_selectedBitmap
= wxNullBitmap
;
79 // Do own check for whether the bitmap is already selected into
81 if (bitmap
.GetSelectedInto() && (bitmap
.GetSelectedInto() != this))
83 wxFatalError("Error in wxMemoryDC::SelectObject\nBitmap is selected in another wxMemoryDC.\nDelete the first wxMemoryDC or use SelectObject(NULL)");
87 // Check if the bitmap has the correct depth for this device context
88 // if (bitmap.Ok() && (bitmap.GetDepth() != GetDepth()))
89 // JACS 11/12/98: disabling this since the Forty Thieves sample
90 // shows this not working properly. In fact, if loading from a resource,
91 // the depth should become the screen depth, so why was it being called?
94 // Make a new bitmap that has the correct depth.
95 wxBitmap newBitmap
= bitmap
.GetBitmapForDC(* this);
97 m_selectedBitmap
= newBitmap
;
101 m_selectedBitmap
= bitmap
;
104 if (!m_selectedBitmap
.Ok())
107 m_selectedBitmap
.SetSelectedInto(this);
108 HBITMAP bm
= (HBITMAP
) ::SelectObject((HDC
) m_hDC
, (HBITMAP
) m_selectedBitmap
.GetHBITMAP());
112 wxFatalError("Error in wxMemoryDC::SelectObject\nBitmap may not be loaded, or may be selected in another wxMemoryDC.\nDelete the first wxMemoryDC to deselect bitmap.");
114 else if (!m_oldBitmap
)
115 m_oldBitmap
= (WXHBITMAP
) bm
;
118 void wxMemoryDC::GetSize(int *width
, int *height
) const
120 if (!m_selectedBitmap
.Ok())
122 *width
= 0; *height
= 0;
125 *width
= m_selectedBitmap
.GetWidth();
126 *height
= m_selectedBitmap
.GetHeight();