X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..5f1f21d2a54124859b1fbeaa31ebf373bb5f0114:/include/wx/os2/dcmemory.h diff --git a/include/wx/os2/dcmemory.h b/include/wx/os2/dcmemory.h index f0484a8dee..07927df52c 100644 --- a/include/wx/os2/dcmemory.h +++ b/include/wx/os2/dcmemory.h @@ -14,18 +14,20 @@ #include "wx/dcclient.h" -class WXDLLEXPORT wxMemoryDC: public wxDC +class WXDLLEXPORT wxMemoryDC: public wxDC, public wxMemoryDCBase { public: - wxMemoryDC(void); + wxMemoryDC() { CreateCompatible(NULL); Init(); } + wxMemoryDC(wxBitmap& bitmap) { CreateCompatible(NULL); Init(); SelectObject(bitmap); } wxMemoryDC(wxDC* pDC); // Create compatible DC - virtual void SelectObject(const wxBitmap& rBitmap); protected: // override some base class virtuals virtual void DoGetSize( int* pWidth ,int* pHeight ) const; + virtual void DoSelect(const wxBitmap& bitmap); + // create DC compatible with the given one or screen if dc == NULL bool CreateCompatible(wxDC* pDC);