]> git.saurik.com Git - wxWidgets.git/blame - src/os2/dcmemory.cpp
clean up of memory debugging macros and chanegs to compile with CW7 (patch 548408)
[wxWidgets.git] / src / os2 / dcmemory.cpp
CommitLineData
0e320a79
DW
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcmemory.cpp
3// Purpose: wxMemoryDC class
fb46a9a6 4// Author: David Webster
0e320a79 5// Modified by:
fb46a9a6 6// Created: 10/14/99
0e320a79 7// RCS-ID: $Id$
fb46a9a6
DW
8// Copyright: (c) David Webster
9// Licence: wxWindows licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
fb46a9a6
DW
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifndef WX_PRECOMP
16#include "wx/utils.h"
3417f661
SN
17#include "wx/app.h"
18#include "wx/log.h"
0e320a79
DW
19#endif
20
fb46a9a6
DW
21#include "wx/os2/private.h"
22
0e320a79
DW
23#include "wx/dcmemory.h"
24
fb46a9a6 25IMPLEMENT_DYNAMIC_CLASS(wxMemoryDC, wxDC)
0e320a79 26
23122f8c
DW
27/////////////////////////////////////////////////////////////////////////////
28// Memory DC
29/////////////////////////////////////////////////////////////////////////////
0e320a79
DW
30
31wxMemoryDC::wxMemoryDC(void)
32{
e1a688e4
DW
33 CreateCompatible(NULL);
34 Init();
23122f8c
DW
35} // end of wxMemoryDC::wxMemoryDC
36
37wxMemoryDC::wxMemoryDC(
38 wxDC* pOldDC
39)
e1a688e4
DW
40{
41 pOldDC->BeginDrawing();
42 CreateCompatible(pOldDC);
43 pOldDC->EndDrawing();
44 Init();
45} // end of wxMemoryDC::wxMemoryDC
46
47void wxMemoryDC::Init()
48{
49 if (m_ok)
50 {
51 SetBrush(*wxWHITE_BRUSH);
52 SetPen(*wxBLACK_PEN);
53
54 // the background mode is only used for text background and is set in
55 // DrawText() to OPAQUE as required, otherwise always TRANSPARENT
56 ::GpiSetBackMix( GetHPS(), BM_LEAVEALONE );
57 }
1d0edc0f 58 memset(&m_vRclPaint, 0, sizeof(m_vRclPaint));
e1a688e4
DW
59} // end of wxMemoryDC::Init
60
61bool wxMemoryDC::CreateCompatible(
62 wxDC* pDC
63)
0e320a79 64{
23122f8c
DW
65 HDC hDC;
66 HPS hPS;
67 DEVOPENSTRUC vDOP = {0L, "DISPLAY", NULL, 0L, 0L, 0L, 0L, 0L, 0L};
68 SIZEL vSize = {0, 0};
69
23122f8c
DW
70 //
71 // Create a memory device context
72 //
e1a688e4 73 hDC = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDOP, NULLHANDLE);
23122f8c
DW
74 if (hDC != DEV_ERROR)
75 {
76 hPS = ::GpiCreatePS(vHabmain, hDC, &vSize, PU_PELS | GPIT_MICRO | GPIA_ASSOC);
77 if (hPS != GPI_ERROR)
78 {
79 m_hPS = hPS;
80 m_hDC = hDC;
81 m_ok = TRUE;
82 m_bOwnsDC = TRUE;
e1a688e4
DW
83 //
84 // Set the wxWindows color table
85 //
86 ::GpiCreateLogColorTable( m_hPS
87 ,0L
88 ,LCOLF_CONSECRGB
89 ,0L
90 ,(LONG)wxTheColourDatabase->m_nSize
91 ,(PLONG)wxTheColourDatabase->m_palTable
92 );
93 ::GpiCreateLogColorTable( m_hPS
94 ,0L
95 ,LCOLF_RGB
96 ,0L
97 ,0L
98 ,NULL
99 );
23122f8c
DW
100 }
101 else
102 {
23122f8c
DW
103 m_hPS = NULLHANDLE;
104 m_hDC = NULLHANDLE;
105 m_ok = FALSE;
106 m_bOwnsDC = FALSE;
107 }
108 }
109 else
110 {
23122f8c
DW
111 m_hPS = NULLHANDLE;
112 m_hDC = NULLHANDLE;
113 m_ok = FALSE;
114 m_bOwnsDC = FALSE;
115 }
23122f8c 116
e1a688e4
DW
117 //
118 // As we created the DC, we must delete it in the dtor
119 //
120 m_bOwnsDC = TRUE;
121 m_ok = m_hDC != 0;
122 return m_ok;
123} // end of wxMemoryDC::CreateCompatible
23122f8c
DW
124
125void wxMemoryDC::SelectObject(
126 const wxBitmap& rBitmap
127)
0e320a79 128{
23122f8c
DW
129 //
130 // Select old bitmap out of the device context
131 //
132 if (m_hOldBitmap)
133 {
134 ::GpiSetBitmap(m_hPS, NULLHANDLE);
135 if (m_vSelectedBitmap.Ok())
136 {
137 m_vSelectedBitmap.SetSelectedInto(NULL);
138 m_vSelectedBitmap = wxNullBitmap;
139 }
140 }
141
142 //
143 // Check for whether the bitmap is already selected into a device context
144 //
145 wxCHECK_RET( !rBitmap.GetSelectedInto() ||
146 (rBitmap.GetSelectedInto() == this),
147 wxT("Bitmap is selected in another wxMemoryDC, delete the first wxMemoryDC or use SelectObject(NULL)") );
148
149 m_vSelectedBitmap = rBitmap;
150
1d0edc0f 151 WXHBITMAP hBmp = rBitmap.GetHBITMAP();
23122f8c
DW
152
153 if (!hBmp)
154 return;
155
156 m_vSelectedBitmap.SetSelectedInto(this);
157 hBmp = (WXHBITMAP)::GpiSetBitmap(m_hPS, (HBITMAP)hBmp);
158
5afb9458 159 if (hBmp == HBM_ERROR)
23122f8c
DW
160 {
161 wxLogLastError(wxT("SelectObject(memDC, bitmap)"));
162 wxFAIL_MSG(wxT("Couldn't select a bitmap into wxMemoryDC"));
163 }
164 else if (!m_hOldBitmap)
165 {
166 m_hOldBitmap = hBmp;
167 }
168} // end of wxMemoryDC::SelectObject
169
170void wxMemoryDC::DoGetSize(
171 int* pWidth
172, int* pHeight
173) const
0e320a79 174{
23122f8c
DW
175 if (!m_vSelectedBitmap.Ok())
176 {
177 *pWidth = 0;
178 *pHeight = 0;
179 return;
180 }
181 *pWidth = m_vSelectedBitmap.GetWidth();
182 *pHeight = m_vSelectedBitmap.GetHeight();
183} // end of wxMemoryDC::DoGetSize
0e320a79 184
e1a688e4
DW
185void wxMemoryDC::DoDrawRectangle(
186 wxCoord vX
187, wxCoord vY
188, wxCoord vWidth
189, wxCoord vHeight
190)
191{
192 wxDC::DoDrawRectangle(vX, vY, vWidth, vHeight);
1cee3f60
DW
193
194 //
195 // Debug testing:
196 //
197 if (m_vSelectedBitmap.GetHBITMAP() != NULLHANDLE)
198 {
199 BITMAPINFOHEADER2 vHeader;
200 BITMAPINFO2 vInfo;
201
202 vHeader.cbFix = 16L;
203 if (::GpiQueryBitmapInfoHeader(m_vSelectedBitmap.GetHBITMAP(), &vHeader))
204 {
205 unsigned char* pucData = NULL;
206 unsigned char* pucBits;
b1b054da 207 int nBytesPerLine = m_vSelectedBitmap.GetWidth() * 3;
1cee3f60
DW
208 LONG lScans = 0L;
209 POINTL vPoint;
210 LONG lColor;
211
212 vInfo.cbFix = 16;
213 vInfo.cx = vHeader.cx;
214 vInfo.cy = vHeader.cy;
215 vInfo.cPlanes = vHeader.cPlanes;
216 vInfo.cBitCount = 24;
217 pucData = (unsigned char*)malloc(nBytesPerLine * m_vSelectedBitmap.GetHeight());
218 if ((lScans = ::GpiQueryBitmapBits( m_hPS
219 ,0L
220 ,(LONG)m_vSelectedBitmap.GetHeight()
221 ,(PBYTE)pucData
222 ,&vInfo
223 )) == GPI_ALTERROR)
224 {
225 ERRORID vError;
226 wxString sError;
227
228 vError = ::WinGetLastError(vHabmain);
229 sError = wxPMErrorToStr(vError);
230 }
231 pucBits = pucData;
232 for (int i = 0; i < m_vSelectedBitmap.GetHeight(); i++)
233 {
b1b054da 234 for (int j = 0; j < m_vSelectedBitmap.GetWidth(); j++)
1cee3f60
DW
235 {
236 if (i >= vY && j >= vX && i < vHeight && j < vWidth)
237 {
1cee3f60
DW
238 if (i == vY || j == vX ||
239 i == m_vSelectedBitmap.GetWidth() -1 ||
b1b054da 240 j == m_vSelectedBitmap.GetHeight() - 1
1cee3f60
DW
241 )
242 lColor = m_pen.GetColour().GetPixel();
243 else
244 lColor = m_brush.GetColour().GetPixel();
245 *(pucBits++) = (unsigned char)lColor;
246 *(pucBits++) = (unsigned char)(lColor >> 8);
247 *(pucBits++) = (unsigned char)(lColor >> 16);
248 }
249 else
250 pucBits += 3;
251 }
252 }
253 if ((lScans = ::GpiSetBitmapBits( m_hPS
254 ,0
255 ,(LONG)m_vSelectedBitmap.GetHeight()
256 ,(PBYTE)pucData
257 ,&vInfo
258 )) == GPI_ALTERROR)
259 {
260 ERRORID vError;
261 wxString sError;
262
263 vError = ::WinGetLastError(vHabmain);
264 sError = wxPMErrorToStr(vError);
265 }
266 free(pucData);
267 }
268 }
e1a688e4 269} // end of wxMemoryDC::DoDrawRectangle
1cee3f60 270