#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, public wxMemoryDCBase
+class WXDLLIMPEXP_CORE wxMemoryDCImpl : public wxDFBDCImpl
{
public:
- wxMemoryDC() { Init(); }
- wxMemoryDC(wxBitmap& bitmap) { Init(); SelectObject(bitmap); }
- wxMemoryDC(wxDC *dc); // create compatible DC
+ wxMemoryDCImpl(wxMemoryDC *owner);
+ wxMemoryDCImpl(wxMemoryDC *owner, wxBitmap& bitmap);
+ wxMemoryDCImpl(wxMemoryDC *owner, wxDC *dc); // create compatible DC
- // implementation from now on:
-
- wxBitmap GetSelectedObject() const { return m_bmp; }
-
-protected:
+ // 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:
wxBitmap m_bmp;
- DECLARE_DYNAMIC_CLASS(wxMemoryDC)
+ DECLARE_DYNAMIC_CLASS(wxMemoryDCImpl)
};
#endif // _WX_DFB_DCMEMORY_H_