]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/dcmemory.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/dcmemory.cpp
3 // Purpose: wxMemoryDC class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #include "wx/dcmemory.h"
28 #include "wx/msw/dcmemory.h"
35 #include "wx/msw/private.h"
37 // ----------------------------------------------------------------------------
39 // ----------------------------------------------------------------------------
41 IMPLEMENT_ABSTRACT_CLASS(wxMemoryDCImpl
, wxMSWDCImpl
)
43 wxMemoryDCImpl::wxMemoryDCImpl( wxMemoryDC
*owner
)
44 : wxMSWDCImpl( owner
)
46 CreateCompatible(NULL
);
50 wxMemoryDCImpl::wxMemoryDCImpl( wxMemoryDC
*owner
, wxBitmap
& bitmap
)
51 : wxMSWDCImpl( owner
)
53 CreateCompatible(NULL
);
58 wxMemoryDCImpl::wxMemoryDCImpl( wxMemoryDC
*owner
, wxDC
*dc
)
59 : wxMSWDCImpl( owner
)
61 wxCHECK_RET( dc
, wxT("NULL dc in wxMemoryDC ctor") );
68 void wxMemoryDCImpl::Init()
72 SetBrush(*wxWHITE_BRUSH
);
75 // the background mode is only used for text background and is set in
76 // DrawText() to OPAQUE as required, otherwise always TRANSPARENT
77 ::SetBkMode( GetHdc(), TRANSPARENT
);
81 bool wxMemoryDCImpl::CreateCompatible(wxDC
*dc
)
83 wxDCImpl
*impl
= dc
? dc
->GetImpl() : NULL
;
84 wxMSWDCImpl
*msw_impl
= wxDynamicCast( impl
, wxMSWDCImpl
);
91 m_hDC
= (WXHDC
)::CreateCompatibleDC(dc
? GetHdcOf(*msw_impl
) : NULL
);
93 // as we created the DC, we must delete it in the dtor
101 void wxMemoryDCImpl::DoSelect( const wxBitmap
& bitmap
)
103 // select old bitmap out of the device context
106 ::SelectObject(GetHdc(), (HBITMAP
) m_oldBitmap
);
107 if ( m_selectedBitmap
.Ok() )
109 m_selectedBitmap
.SetSelectedInto(NULL
);
110 m_selectedBitmap
= wxNullBitmap
;
114 // check for whether the bitmap is already selected into a device context
115 wxASSERT_MSG( !bitmap
.GetSelectedInto() ||
116 (bitmap
.GetSelectedInto() == GetOwner()),
117 wxT("Bitmap is selected in another wxMemoryDC, delete the first wxMemoryDC or use SelectObject(NULL)") );
119 m_selectedBitmap
= bitmap
;
120 WXHBITMAP hBmp
= m_selectedBitmap
.GetHBITMAP();
124 m_selectedBitmap
.SetSelectedInto(GetOwner());
125 hBmp
= (WXHBITMAP
)::SelectObject(GetHdc(), (HBITMAP
)hBmp
);
129 wxLogLastError(wxT("SelectObject(memDC, bitmap)"));
131 wxFAIL_MSG(wxT("Couldn't select a bitmap into wxMemoryDC"));
133 else if ( !m_oldBitmap
)
139 void wxMemoryDCImpl::DoGetSize(int *width
, int *height
) const
141 if ( m_selectedBitmap
.Ok() )
143 *width
= m_selectedBitmap
.GetWidth();
144 *height
= m_selectedBitmap
.GetHeight();
153 // the rest of this file deals with drawing rectangles workaround, disabled by
156 #define wxUSE_MEMORY_DC_DRAW_RECTANGLE 0
158 #if wxUSE_MEMORY_DC_DRAW_RECTANGLE
160 // For some reason, drawing a rectangle on a memory DC has problems.
161 // Use this substitute if we can.
162 static void wxDrawRectangle(wxDC
& dc
, wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
164 wxBrush
brush(dc
.GetBrush());
165 wxPen
pen(dc
.GetPen());
166 if (brush
.Ok() && brush
.GetStyle() != wxTRANSPARENT
)
168 HBRUSH hBrush
= (HBRUSH
) brush
.GetResourceHandle() ;
172 rect
.left
= x
; rect
.top
= y
;
173 rect
.right
= x
+ width
- 1;
174 rect
.bottom
= y
+ height
- 1;
175 ::FillRect((HDC
) dc
.GetHDC(), &rect
, hBrush
);
179 if (pen
.Ok() && pen
.GetStyle() != wxTRANSPARENT
)
181 dc
.DrawLine(x
, y
, x
+ width
, y
);
182 dc
.DrawLine(x
, y
, x
, y
+ height
);
183 dc
.DrawLine(x
, y
+height
, x
+width
, y
+ height
);
184 dc
.DrawLine(x
+width
, y
+height
, x
+width
, y
);
188 #endif // wxUSE_MEMORY_DC_DRAW_RECTANGLE
190 void wxMemoryDCImpl::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
192 // Set this to 1 to work around an apparent video driver bug
193 // (visible with e.g. 70x70 rectangle on a memory DC; see Drawing sample)
194 #if wxUSE_MEMORY_DC_DRAW_RECTANGLE
195 if (m_brush
.Ok() && m_pen
.Ok() &&
196 (m_brush
.GetStyle() == wxSOLID
|| m_brush
.GetStyle() == wxTRANSPARENT
) &&
197 (m_pen
.GetStyle() == wxSOLID
|| m_pen
.GetStyle() == wxTRANSPARENT
) &&
198 (GetLogicalFunction() == wxCOPY
))
200 wxDrawRectangle(* this, x
, y
, width
, height
);
203 #endif // wxUSE_MEMORY_DC_DRAW_RECTANGLE
205 wxMSWDCImpl::DoDrawRectangle(x
, y
, width
, height
);