]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dcclient.cpp | |
3 | // Purpose: wxClientDC class | |
f0a56ab0 | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
f0a56ab0 | 6 | // Created: 09/21/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
f0a56ab0 | 8 | // Copyright: (c) David Webster |
23e4b7d8 | 9 | // Licence: wxWindows licence |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
23e4b7d8 DW |
12 | // =========================================================================== |
13 | // declarations | |
14 | // =========================================================================== | |
0e320a79 | 15 | |
23e4b7d8 DW |
16 | // ---------------------------------------------------------------------------- |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
0e320a79 | 19 | |
23e4b7d8 DW |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
0e320a79 | 22 | |
23e4b7d8 DW |
23 | #include "wx/string.h" |
24 | #include "wx/log.h" | |
25 | #include "wx/window.h" | |
3417f661 | 26 | #include "wx/app.h" |
0e320a79 | 27 | |
ce44c50e | 28 | #include "wx/os2/private.h" |
0e320a79 | 29 | |
23e4b7d8 | 30 | #include "wx/dcclient.h" |
0e320a79 | 31 | |
23e4b7d8 DW |
32 | // ---------------------------------------------------------------------------- |
33 | // array/list types | |
34 | // ---------------------------------------------------------------------------- | |
0e320a79 | 35 | |
23e4b7d8 | 36 | struct WXDLLEXPORT wxPaintDCInfo |
0e320a79 | 37 | { |
e99762c0 DW |
38 | wxPaintDCInfo( wxWindow* pWin |
39 | ,wxDC* pDC | |
40 | ) | |
23e4b7d8 | 41 | { |
e99762c0 DW |
42 | m_hWnd = pWin->GetHWND(); |
43 | m_hDC = pDC->GetHDC(); | |
44 | m_nCount = 1; | |
23e4b7d8 | 45 | } |
0e320a79 | 46 | |
e99762c0 DW |
47 | WXHWND m_hWnd; // window for this DC |
48 | WXHDC m_hDC; // the DC handle | |
49 | size_t m_nCount; // usage count | |
50 | }; // end of wxPaintDCInfot | |
0e320a79 | 51 | |
23e4b7d8 | 52 | #include "wx/arrimpl.cpp" |
1408104d | 53 | |
23e4b7d8 | 54 | WX_DEFINE_OBJARRAY(wxArrayDCInfo); |
1408104d | 55 | |
23e4b7d8 DW |
56 | // ---------------------------------------------------------------------------- |
57 | // macros | |
58 | // ---------------------------------------------------------------------------- | |
0e320a79 | 59 | |
23e4b7d8 DW |
60 | IMPLEMENT_DYNAMIC_CLASS(wxWindowDC, wxDC) |
61 | IMPLEMENT_DYNAMIC_CLASS(wxClientDC, wxWindowDC) | |
62 | IMPLEMENT_DYNAMIC_CLASS(wxPaintDC, wxWindowDC) | |
0e320a79 | 63 | |
23e4b7d8 DW |
64 | // ---------------------------------------------------------------------------- |
65 | // global variables | |
66 | // ---------------------------------------------------------------------------- | |
1408104d | 67 | |
ce44c50e | 68 | static RECT g_paintStruct; |
1408104d | 69 | |
23e4b7d8 DW |
70 | #ifdef __WXDEBUG__ |
71 | // a global variable which we check to verify that wxPaintDC are only | |
72 | // created in resopnse to WM_PAINT message - doing this from elsewhere is a | |
73 | // common programming error among wxWindows programmers and might lead to | |
74 | // very subtle and difficult to debug refresh/repaint bugs. | |
75 | int g_isPainting = 0; | |
76 | #endif // __WXDEBUG__ | |
1408104d | 77 | |
23e4b7d8 DW |
78 | // =========================================================================== |
79 | // implementation | |
80 | // =========================================================================== | |
1408104d | 81 | |
23e4b7d8 DW |
82 | // ---------------------------------------------------------------------------- |
83 | // wxWindowDC | |
84 | // ---------------------------------------------------------------------------- | |
0e320a79 | 85 | |
23e4b7d8 | 86 | wxWindowDC::wxWindowDC() |
0e320a79 | 87 | { |
26ac77db | 88 | m_pCanvas = NULL; |
23e4b7d8 | 89 | } |
0e320a79 | 90 | |
e99762c0 DW |
91 | wxWindowDC::wxWindowDC( |
92 | wxWindow* pTheCanvas | |
93 | ) | |
0e320a79 | 94 | { |
26ac77db DW |
95 | ERRORID vError; |
96 | wxString sError; | |
1408104d | 97 | |
e99762c0 DW |
98 | m_pCanvas = pTheCanvas; |
99 | m_hDC = (WXHDC) ::WinOpenWindowDC(GetWinHwnd(pTheCanvas) ); | |
e1a688e4 | 100 | |
23e4b7d8 | 101 | // |
26ac77db DW |
102 | // default under PM is that Window and Client DC's are the same |
103 | // so we offer a separate Presentation Space to use for the | |
104 | // entire window. Otherwise, calling BeginPaint will just create | |
105 | // chached-micro client presentation space | |
23e4b7d8 | 106 | // |
e1a688e4 DW |
107 | m_hPS = ::GpiCreatePS( vHabmain |
108 | ,m_hDC | |
109 | ,&m_PageSize | |
110 | ,PU_PELS | GPIF_LONG | GPIA_ASSOC | |
111 | ); | |
26ac77db DW |
112 | ::GpiAssociate(m_hPS, NULLHANDLE); |
113 | ::GpiAssociate(m_hPS, m_hDC); | |
e1a688e4 DW |
114 | |
115 | // | |
26ac77db | 116 | // Set the wxWindows color table |
e1a688e4 | 117 | // |
26ac77db DW |
118 | if (!::GpiCreateLogColorTable( m_hPS |
119 | ,0L | |
120 | ,LCOLF_CONSECRGB | |
121 | ,0L | |
122 | ,(LONG)wxTheColourDatabase->m_nSize | |
123 | ,(PLONG)wxTheColourDatabase->m_palTable | |
124 | )) | |
7e99520b | 125 | { |
26ac77db DW |
126 | vError = ::WinGetLastError(vHabmain); |
127 | sError = wxPMErrorToStr(vError); | |
128 | wxLogError("Unable to set current color table. Error: %s\n", sError); | |
7e99520b | 129 | } |
5afb9458 DW |
130 | ::GpiCreateLogColorTable( m_hPS |
131 | ,0L | |
132 | ,LCOLF_RGB | |
133 | ,0L | |
134 | ,0L | |
135 | ,NULL | |
136 | ); | |
5afb9458 DW |
137 | ::WinQueryWindowRect( GetWinHwnd(m_pCanvas) |
138 | ,&m_vRclPaint | |
139 | ); | |
e1a688e4 DW |
140 | InitDC(); |
141 | } // end of wxWindowDC::wxWindowDC | |
1408104d | 142 | |
e1a688e4 | 143 | void wxWindowDC::InitDC() |
26ac77db | 144 | { |
2b0ec34b DW |
145 | wxColour vColor; |
146 | ||
147 | vColor.InitFromName("BLACK"); | |
148 | m_pen.SetColour(vColor); | |
149 | vColor.Set("WHITE"); | |
150 | m_brush.SetColour(vColor); | |
e1a688e4 DW |
151 | // |
152 | // The background mode is only used for text background and is set in | |
153 | // DrawText() to OPAQUE as required, otherwise always TRANSPARENT, | |
154 | // | |
155 | ::GpiSetBackMix(GetHPS(), BM_LEAVEALONE); | |
26ac77db | 156 | |
e1a688e4 DW |
157 | // |
158 | // Default bg colour is pne of the window | |
159 | // | |
160 | SetBackground(wxBrush(m_pCanvas->GetBackgroundColour(), wxSOLID)); | |
161 | } // end of wxWindowDC::InitDC | |
0e320a79 | 162 | |
23e4b7d8 DW |
163 | // ---------------------------------------------------------------------------- |
164 | // wxClientDC | |
165 | // ---------------------------------------------------------------------------- | |
0e320a79 | 166 | |
23e4b7d8 | 167 | wxClientDC::wxClientDC() |
0e320a79 | 168 | { |
26ac77db | 169 | m_pCanvas = NULL; |
23e4b7d8 | 170 | } |
0e320a79 | 171 | |
e99762c0 DW |
172 | wxClientDC::wxClientDC( |
173 | wxWindow* pTheCanvas | |
174 | ) | |
0e320a79 | 175 | { |
7e99520b | 176 | SIZEL vSizl = { 0,0}; |
26ac77db DW |
177 | ERRORID vError; |
178 | wxString sError; | |
0e320a79 | 179 | |
e99762c0 | 180 | m_pCanvas = pTheCanvas; |
1408104d | 181 | |
7e99520b DW |
182 | // |
183 | // default under PM is that Window and Client DC's are the same | |
184 | // | |
e99762c0 | 185 | m_hDC = (WXHDC) ::WinOpenWindowDC(GetWinHwnd(pTheCanvas)); |
7e99520b DW |
186 | m_hPS = ::GpiCreatePS( wxGetInstance() |
187 | ,m_hDC | |
f44fdfb0 | 188 | ,&vSizl |
7e99520b DW |
189 | ,PU_PELS | GPIF_LONG | GPIA_ASSOC |
190 | ); | |
191 | ||
26ac77db DW |
192 | // Set the wxWindows color table |
193 | if (!::GpiCreateLogColorTable( m_hPS | |
194 | ,0L | |
195 | ,LCOLF_CONSECRGB | |
196 | ,0L | |
197 | ,(LONG)wxTheColourDatabase->m_nSize | |
198 | ,(PLONG)wxTheColourDatabase->m_palTable | |
199 | )) | |
200 | { | |
201 | vError = ::WinGetLastError(vHabmain); | |
202 | sError = wxPMErrorToStr(vError); | |
203 | wxLogError("Unable to set current color table. Error: %s\n", sError); | |
204 | } | |
5afb9458 DW |
205 | ::GpiCreateLogColorTable( m_hPS |
206 | ,0L | |
207 | ,LCOLF_RGB | |
208 | ,0L | |
209 | ,0L | |
210 | ,NULL | |
211 | ); | |
7e99520b | 212 | // |
5afb9458 DW |
213 | // Set the DC/PS rectangle |
214 | // | |
215 | ::WinQueryWindowRect( GetWinHwnd(m_pCanvas) | |
216 | ,&m_vRclPaint | |
217 | ); | |
e1a688e4 | 218 | InitDC(); |
e99762c0 | 219 | } // end of wxClientDC::wxClientDC |
0e320a79 | 220 | |
23e4b7d8 DW |
221 | // ---------------------------------------------------------------------------- |
222 | // wxPaintDC | |
223 | // ---------------------------------------------------------------------------- | |
224 | ||
23e4b7d8 DW |
225 | wxArrayDCInfo wxPaintDC::ms_cache; |
226 | ||
227 | wxPaintDC::wxPaintDC() | |
228 | { | |
f6bcfd97 | 229 | m_pCanvas = NULL; |
23e4b7d8 DW |
230 | m_hDC = 0; |
231 | } | |
0e320a79 | 232 | |
7e99520b DW |
233 | wxPaintDC::wxPaintDC( |
234 | wxWindow* pCanvas | |
235 | ) | |
0e320a79 | 236 | { |
f44fdfb0 | 237 | wxCHECK_RET(pCanvas, wxT("NULL canvas in wxPaintDC ctor")); |
1408104d | 238 | |
23e4b7d8 | 239 | #ifdef __WXDEBUG__ |
7e99520b | 240 | if (g_isPainting <= 0) |
23e4b7d8 | 241 | { |
223d09f6 | 242 | wxFAIL_MSG( wxT("wxPaintDC may be created only in EVT_PAINT handler!") ); |
23e4b7d8 DW |
243 | return; |
244 | } | |
245 | #endif // __WXDEBUG__ | |
0e320a79 | 246 | |
7e99520b | 247 | m_pCanvas = pCanvas; |
1408104d | 248 | |
7e99520b DW |
249 | // |
250 | // Do we have a DC for this window in the cache? | |
251 | // | |
252 | wxPaintDCInfo* pInfo = FindInCache(); | |
253 | ||
254 | if (pInfo) | |
0e320a79 | 255 | { |
e99762c0 DW |
256 | m_hDC = pInfo->m_hDC; |
257 | pInfo->m_nCount++; | |
23e4b7d8 DW |
258 | } |
259 | else // not in cache, create a new one | |
260 | { | |
7e99520b DW |
261 | HPS hPS; |
262 | ||
263 | hPS = ::WinBeginPaint( GetWinHwnd(m_pCanvas) | |
264 | ,NULLHANDLE | |
265 | ,&g_paintStruct | |
266 | ); | |
267 | if(hPS) | |
268 | { | |
269 | m_hOldPS = m_hPS; | |
270 | m_hPS = hPS; | |
26ac77db DW |
271 | ::GpiCreateLogColorTable( m_hPS |
272 | ,0L | |
273 | ,LCOLF_CONSECRGB | |
274 | ,0L | |
275 | ,(LONG)wxTheColourDatabase->m_nSize | |
276 | ,(PLONG)wxTheColourDatabase->m_palTable | |
277 | ); | |
278 | ::GpiCreateLogColorTable( m_hPS | |
279 | ,0L | |
280 | ,LCOLF_RGB | |
281 | ,0L | |
282 | ,0L | |
283 | ,NULL | |
284 | ); | |
8d854fa9 DW |
285 | |
286 | ::WinFillRect(hPS, &g_paintStruct, m_pCanvas->GetBackgroundColour().GetPixel()); | |
eeff964a DW |
287 | ::WinQueryWindowRect( GetWinHwnd(m_pCanvas) |
288 | ,&m_vRclPaint | |
289 | ); | |
7e99520b | 290 | } |
e99762c0 | 291 | |
7e99520b DW |
292 | m_bIsPaintTime = TRUE; |
293 | m_hDC = (WXHDC) -1; // to satisfy those anonizmous efforts | |
f6bcfd97 | 294 | ms_cache.Add(new wxPaintDCInfo(m_pCanvas, this)); |
0e320a79 | 295 | } |
e1a688e4 DW |
296 | InitDC(); |
297 | } // end of wxPaintDC::wxPaintDC | |
0e320a79 | 298 | |
23e4b7d8 | 299 | wxPaintDC::~wxPaintDC() |
0e320a79 | 300 | { |
23e4b7d8 DW |
301 | if ( m_hDC ) |
302 | { | |
303 | SelectOldObjects(m_hDC); | |
0e320a79 | 304 | |
e99762c0 DW |
305 | size_t nIndex; |
306 | wxPaintDCInfo* pInfo = FindInCache(&nIndex); | |
0e320a79 | 307 | |
e99762c0 | 308 | wxCHECK_RET( pInfo, wxT("existing DC should have a cache entry") ); |
0e320a79 | 309 | |
e99762c0 | 310 | if ( !--pInfo->m_nCount ) |
23e4b7d8 | 311 | { |
ce44c50e | 312 | ::WinEndPaint(m_hPS); |
f44fdfb0 | 313 | m_hPS = m_hOldPS; |
7e99520b | 314 | m_bIsPaintTime = FALSE; |
e99762c0 | 315 | ms_cache.Remove(nIndex); |
23e4b7d8 DW |
316 | } |
317 | //else: cached DC entry is still in use | |
0e320a79 | 318 | |
23e4b7d8 DW |
319 | // prevent the base class dtor from ReleaseDC()ing it again |
320 | m_hDC = 0; | |
0e320a79 DW |
321 | } |
322 | } | |
323 | ||
e99762c0 DW |
324 | wxPaintDCInfo* wxPaintDC::FindInCache( |
325 | size_t* pIndex | |
326 | ) const | |
0e320a79 | 327 | { |
e99762c0 DW |
328 | wxPaintDCInfo* pInfo = NULL; |
329 | size_t nCache = ms_cache.GetCount(); | |
330 | ||
331 | for (size_t n = 0; n < nCache; n++) | |
0e320a79 | 332 | { |
e99762c0 DW |
333 | pInfo = &ms_cache[n]; |
334 | if (pInfo->m_hWnd == m_pCanvas->GetHWND()) | |
23e4b7d8 | 335 | { |
e99762c0 DW |
336 | if (pIndex) |
337 | *pIndex = n; | |
23e4b7d8 DW |
338 | break; |
339 | } | |
0e320a79 | 340 | } |
e99762c0 DW |
341 | return pInfo; |
342 | } // end of wxPaintDC::FindInCache | |
0e320a79 | 343 | |
e1a688e4 DW |
344 | // find the entry for this DC in the cache (keyed by the window) |
345 | WXHDC wxPaintDC::FindDCInCache( | |
346 | wxWindow* pWin | |
347 | ) | |
348 | { | |
349 | wxPaintDCInfo* pInfo = NULL; | |
350 | size_t nCache = ms_cache.GetCount(); | |
351 | ||
352 | for (size_t n = 0; n < nCache; n++) | |
353 | { | |
354 | pInfo = &ms_cache[n]; | |
355 | if (pInfo->m_hWnd == pWin->GetHWND()) | |
356 | { | |
357 | return pInfo->m_hDC; | |
358 | } | |
359 | } | |
360 | return 0; | |
361 | } // end of wxPaintDC::FindInCache | |
362 |