1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxClientDC class
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
23 #include "wx/string.h"
25 #include "wx/window.h"
27 #include "wx/os2/private.h"
29 #include "wx/dcclient.h"
31 // ----------------------------------------------------------------------------
33 // ----------------------------------------------------------------------------
35 struct WXDLLEXPORT wxPaintDCInfo
37 wxPaintDCInfo( wxWindow
* pWin
41 m_hWnd
= pWin
->GetHWND();
42 m_hDC
= pDC
->GetHDC();
46 WXHWND m_hWnd
; // window for this DC
47 WXHDC m_hDC
; // the DC handle
48 size_t m_nCount
; // usage count
49 }; // end of wxPaintDCInfot
51 #include "wx/arrimpl.cpp"
53 WX_DEFINE_OBJARRAY(wxArrayDCInfo
);
55 // ----------------------------------------------------------------------------
57 // ----------------------------------------------------------------------------
59 IMPLEMENT_DYNAMIC_CLASS(wxWindowDC
, wxDC
)
60 IMPLEMENT_DYNAMIC_CLASS(wxClientDC
, wxWindowDC
)
61 IMPLEMENT_DYNAMIC_CLASS(wxPaintDC
, wxWindowDC
)
63 // ----------------------------------------------------------------------------
65 // ----------------------------------------------------------------------------
67 static RECT g_paintStruct
;
70 // a global variable which we check to verify that wxPaintDC are only
71 // created in resopnse to WM_PAINT message - doing this from elsewhere is a
72 // common programming error among wxWindows programmers and might lead to
73 // very subtle and difficult to debug refresh/repaint bugs.
77 // ===========================================================================
79 // ===========================================================================
81 // ----------------------------------------------------------------------------
83 // ----------------------------------------------------------------------------
85 wxWindowDC::wxWindowDC()
90 wxWindowDC::wxWindowDC(
97 m_pCanvas
= pTheCanvas
;
98 m_hDC
= (WXHDC
) ::WinOpenWindowDC(GetWinHwnd(pTheCanvas
) );
101 // default under PM is that Window and Client DC's are the same
102 // so we offer a separate Presentation Space to use for the
103 // entire window. Otherwise, calling BeginPaint will just create
104 // chached-micro client presentation space
106 m_hPS
= GpiCreatePS( m_hab
109 ,PU_PELS
| GPIF_LONG
| GPIA_ASSOC
111 ::GpiAssociate(m_hPS
, NULLHANDLE
);
112 ::GpiAssociate(m_hPS
, m_hDC
);
113 // Set the wxWindows color table
114 if (!::GpiCreateLogColorTable( m_hPS
118 ,(LONG
)wxTheColourDatabase
->m_nSize
119 ,(PLONG
)wxTheColourDatabase
->m_palTable
122 vError
= ::WinGetLastError(vHabmain
);
123 sError
= wxPMErrorToStr(vError
);
124 wxLogError("Unable to set current color table. Error: %s\n", sError
);
126 SetBackground(wxBrush(m_pCanvas
->GetBackgroundColour(), wxSOLID
));
129 wxWindowDC::~wxWindowDC()
131 if (m_pCanvas
&& m_hDC
)
133 SelectOldObjects(m_hDC
);
136 // In PM one does not explicitly close or release an open WindowDC
137 // They automatically close with the window, unless explicitly detached
138 // but we need to destroy our PS
142 ::GpiAssociate(m_hPS
, NULLHANDLE
);
143 ::GpiDestroyPS(m_hPS
);
151 // ----------------------------------------------------------------------------
153 // ----------------------------------------------------------------------------
155 wxClientDC::wxClientDC()
160 wxClientDC::wxClientDC(
164 SIZEL vSizl
= { 0,0};
168 m_pCanvas
= pTheCanvas
;
171 // default under PM is that Window and Client DC's are the same
173 m_hDC
= (WXHDC
) ::WinOpenWindowDC(GetWinHwnd(pTheCanvas
));
174 m_hPS
= ::GpiCreatePS( wxGetInstance()
177 ,PU_PELS
| GPIF_LONG
| GPIA_ASSOC
180 // Set the wxWindows color table
181 if (!::GpiCreateLogColorTable( m_hPS
185 ,(LONG
)wxTheColourDatabase
->m_nSize
186 ,(PLONG
)wxTheColourDatabase
->m_palTable
189 vError
= ::WinGetLastError(vHabmain
);
190 sError
= wxPMErrorToStr(vError
);
191 wxLogError("Unable to set current color table. Error: %s\n", sError
);
194 // Default mode is BM_LEAVEALONE so we make no call Set the mix
196 SetBackground(wxBrush( m_pCanvas
->GetBackgroundColour()
200 } // end of wxClientDC::wxClientDC
202 wxClientDC::~wxClientDC()
204 if ( m_pCanvas
&& GetHdc() )
206 SelectOldObjects(m_hDC
);
209 // We don't explicitly release Device contexts in PM and
210 // the cached micro PS is already gone
214 } // end of wxClientDC::~wxClientDC
216 // ----------------------------------------------------------------------------
218 // ----------------------------------------------------------------------------
220 // VZ: initial implementation (by JACS) only remembered the last wxPaintDC
221 // created and tried to reuse - this was supposed to take care of a
222 // situation when a derived class OnPaint() calls base class OnPaint()
223 // because in this case ::BeginPaint() shouldn't be called second time.
225 // I'm not sure how useful this is, however we must remember the HWND
226 // associated with the last HDC as well - otherwise we may (and will!) try
227 // to reuse the HDC for another HWND which is a nice recipe for disaster.
229 // So we store a list of windows for which we already have the DC and not
230 // just one single hDC. This seems to work, but I'm really not sure about
231 // the usefullness of the whole idea - IMHO it's much better to not call
232 // base class OnPaint() at all, or, if we really want to allow it, add a
233 // "wxPaintDC *" parameter to wxPaintEvent which should be used if it's
234 // !NULL instead of creating a new DC.
236 wxArrayDCInfo
wxPaintDC::ms_cache
;
238 wxPaintDC::wxPaintDC()
244 wxPaintDC::wxPaintDC(
248 wxCHECK_RET(pCanvas
, wxT("NULL canvas in wxPaintDC ctor"));
252 if (g_isPainting
<= 0)
254 wxFAIL_MSG( wxT("wxPaintDC may be created only in EVT_PAINT handler!") );
257 #endif // __WXDEBUG__
262 // Do we have a DC for this window in the cache?
264 wxPaintDCInfo
* pInfo
= FindInCache();
268 m_hDC
= pInfo
->m_hDC
;
271 else // not in cache, create a new one
275 hPS
= ::WinBeginPaint( GetWinHwnd(m_pCanvas
)
287 ::GpiCreateLogColorTable( m_hPS
291 ,(LONG
)wxTheColourDatabase
->m_nSize
292 ,(PLONG
)wxTheColourDatabase
->m_palTable
294 ::GpiCreateLogColorTable( m_hPS
302 ::WinFillRect(hPS
, &g_paintStruct
, m_pCanvas
->GetBackgroundColour().GetPixel());
303 ::WinQueryWindowRect( GetWinHwnd(m_pCanvas
)
308 m_bIsPaintTime
= TRUE
;
309 m_hDC
= (WXHDC
) -1; // to satisfy those anonizmous efforts
310 ms_cache
.Add(new wxPaintDCInfo(m_pCanvas
, this));
312 SetBackground(wxBrush(m_pCanvas
->GetBackgroundColour(), wxSOLID
));
315 wxPaintDC::~wxPaintDC()
319 SelectOldObjects(m_hDC
);
322 wxPaintDCInfo
* pInfo
= FindInCache(&nIndex
);
324 wxCHECK_RET( pInfo
, wxT("existing DC should have a cache entry") );
326 if ( !--pInfo
->m_nCount
)
328 ::WinEndPaint(m_hPS
);
330 m_bIsPaintTime
= FALSE
;
331 ms_cache
.Remove(nIndex
);
333 //else: cached DC entry is still in use
335 // prevent the base class dtor from ReleaseDC()ing it again
340 wxPaintDCInfo
* wxPaintDC::FindInCache(
344 wxPaintDCInfo
* pInfo
= NULL
;
345 size_t nCache
= ms_cache
.GetCount();
347 for (size_t n
= 0; n
< nCache
; n
++)
349 pInfo
= &ms_cache
[n
];
350 if (pInfo
->m_hWnd
== m_pCanvas
->GetHWND())
358 } // end of wxPaintDC::FindInCache