X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b3c861501a451503b31c075ccb59d16b0ae01e99..f6f0ef852ce8a020ad89bec5d67f42780a42230c:/include/wx/dfb/dcmemory.h diff --git a/include/wx/dfb/dcmemory.h b/include/wx/dfb/dcmemory.h index afe7fcf12f..b7dd9c2d81 100644 --- a/include/wx/dfb/dcmemory.h +++ b/include/wx/dfb/dcmemory.h @@ -11,18 +11,38 @@ #ifndef _WX_DFB_DCMEMORY_H_ #define _WX_DFB_DCMEMORY_H_ -#include "wx/dc.h" +#include "wx/dfb/dc.h" #include "wx/bitmap.h" -class WXDLLIMPEXP_CORE wxMemoryDC : public wxDC +class WXDLLIMPEXP_CORE wxMemoryDCImpl : public wxDFBDCImpl { public: - wxMemoryDC(); - wxMemoryDC(wxDC *dc); // create compatible DC + wxMemoryDCImpl(wxMemoryDC *owner) + : wxDFBDCImpl(owner) + { + Init(); + } - virtual void SelectObject(const wxBitmap& bitmap); + wxMemoryDCImpl(wxMemoryDC *owner, wxBitmap& bitmap) + : wxDFBDCImpl(owner) + { + Init(); + DoSelect(bitmap); + } - DECLARE_DYNAMIC_CLASS(wxMemoryDC) + wxMemoryDCImpl(wxMemoryDC *owner, wxDC *dc); // create compatible DC + + // override wxMemoryDC-specific base class virtual methods + virtual const wxBitmap& GetSelectedBitmap() const { return m_bmp; } + virtual wxBitmap& GetSelectedBitmap() { return m_bmp; } + virtual void DoSelect(const wxBitmap& bitmap); + +private: + void Init(); + + wxBitmap m_bmp; + + DECLARE_DYNAMIC_CLASS(wxMemoryDCImpl) }; #endif // _WX_DFB_DCMEMORY_H_