X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..a5664fd6ef32c7e7432a9213ad8a8f9550460fbf:/include/wx/mgl/dcmemory.h diff --git a/include/wx/mgl/dcmemory.h b/include/wx/mgl/dcmemory.h index 0113b67fbd..9ec0e6fd0f 100644 --- a/include/wx/mgl/dcmemory.h +++ b/include/wx/mgl/dcmemory.h @@ -17,19 +17,19 @@ // classes //----------------------------------------------------------------------------- -class WXDLLEXPORT wxMemoryDC; +class WXDLLIMPEXP_FWD_CORE wxMemoryDC; //----------------------------------------------------------------------------- // wxMemoryDC //----------------------------------------------------------------------------- -class WXDLLEXPORT wxMemoryDC : public wxDC +class WXDLLIMPEXP_CORE wxMemoryDC : public wxDC, public wxMemoryDCBase { public: - wxMemoryDC(); + wxMemoryDC() { Init(); } + wxMemoryDC(wxBitmap& bitmap) { Init(); SelectObject(bitmap); } wxMemoryDC(wxDC *dc); // Create compatible DC - ~wxMemoryDC(); - virtual void SelectObject(const wxBitmap& bitmap); + virtual ~wxMemoryDC(); // these get reimplemented for mono-bitmaps to behave // more like their Win32 couterparts. They now interpret @@ -42,10 +42,15 @@ public: // implementation wxBitmap m_selected; - + wxBitmap GetSelectedObject() const { return m_selected; } +protected: + virtual void DoSelect(const wxBitmap& bitmap); + private: + void Init(); + DECLARE_DYNAMIC_CLASS(wxMemoryDC) };