]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/dcmemory.cpp
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
14 #pragma implementation "dcmemory.h"
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
27 #include "wx/dcmemory.h"
31 #if !USE_SHARED_LIBRARY
32 IMPLEMENT_DYNAMIC_CLASS ( wxMemoryDC
, wxDC
)
40 wxMemoryDC :: wxMemoryDC ( void )
42 m_hDC
= ( WXHDC
) :: CreateCompatibleDC ( NULL
);
46 SetBrush (* wxWHITE_BRUSH
);
50 wxMemoryDC :: wxMemoryDC ( wxDC
* old_dc
)
52 old_dc
-> BeginDrawing ();
54 m_hDC
= ( WXHDC
) :: CreateCompatibleDC (( HDC
) old_dc
-> GetHDC ());
59 SetBrush (* wxWHITE_BRUSH
);
63 wxMemoryDC ::~ wxMemoryDC ( void )
67 void wxMemoryDC :: SelectObject ( const wxBitmap
& bitmap
)
69 // Select old bitmap out of the device context
72 :: SelectObject (( HDC
) m_hDC
, ( HBITMAP
) m_oldBitmap
);
73 if ( m_selectedBitmap
. Ok ())
75 m_selectedBitmap
. SetSelectedInto ( NULL
);
76 m_selectedBitmap
= wxNullBitmap
;
80 // Do own check for whether the bitmap is already selected into
82 if ( bitmap
. GetSelectedInto () && ( bitmap
. GetSelectedInto () != this ))
84 wxFatalError ( "Error in wxMemoryDC::SelectObject \n Bitmap is selected in another wxMemoryDC. \n Delete the first wxMemoryDC or use SelectObject(NULL)" );
88 // Check if the bitmap has the correct depth for this device context
89 if ( bitmap
. Ok () && ( bitmap
. GetDepth () != GetDepth ()))
91 // Make a new bitmap that has the correct depth.
92 wxBitmap newBitmap
= bitmap
. GetBitmapForDC (* this );
94 m_selectedBitmap
= newBitmap
;
98 m_selectedBitmap
= bitmap
;
101 if (! m_selectedBitmap
. Ok ())
104 m_selectedBitmap
. SetSelectedInto ( this );
106 wxDebugMsg ( "wxMemoryDC::SelectObject: Selecting HBITMAP %X \n " , m_selectedBitmap
. GetHBITMAP ());
108 HBITMAP bm
= ( HBITMAP
) :: SelectObject (( HDC
) m_hDC
, ( HBITMAP
) m_selectedBitmap
. GetHBITMAP ());
112 wxFatalError ( "Error in wxMemoryDC::SelectObject \n Bitmap may not be loaded, or may be selected in another wxMemoryDC. \n Delete 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 ();