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