X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fea35690f171f9677bd9f949c0af3dc16d1a9576..b5ec7dd6eebda65b5f430cebf2f92eaddc4f7c9e:/include/wx/dcmemory.h diff --git a/include/wx/dcmemory.h b/include/wx/dcmemory.h index 55e6724e95..9618b55a22 100644 --- a/include/wx/dcmemory.h +++ b/include/wx/dcmemory.h @@ -12,13 +12,58 @@ #ifndef _WX_DCMEMORY_H_BASE_ #define _WX_DCMEMORY_H_BASE_ -#include "wx/defs.h" +#include "wx/dc.h" +#include "wx/bitmap.h" + + +#if wxUSE_NEW_DC + +//----------------------------------------------------------------------------- +// wxMemoryDC +//----------------------------------------------------------------------------- + +class WXDLLIMPEXP_CORE wxMemoryImplDCBase +{ +public: + wxMemoryImplDCBase() { } + + virtual void DoSelect(const wxBitmap& bmp) = 0; + + virtual const wxBitmap& DoGetSelectedBitmap() const = 0; + virtual wxBitmap& DoGetSelectedBitmap() = 0; +}; + + +class WXDLLIMPEXP_CORE wxMemoryDC: public wxDC +{ +public: + wxMemoryDC(); + wxMemoryDC( wxBitmap& bitmap ); + wxMemoryDC( wxDC *dc ); + + // select the given bitmap to draw on it + void SelectObject(wxBitmap& bmp); + + // select the given bitmap for read-only + void SelectObjectAsSource(const wxBitmap& bmp); + + // get selected bitmap + const wxBitmap& GetSelectedBitmap() const; + wxBitmap& GetSelectedBitmap(); + +private: + DECLARE_DYNAMIC_CLASS(wxMemoryDC) +}; + + + +#else // NOTE: different native implementations of wxMemoryDC will derive from // different wxDC classes (wxPaintDC, wxWindowDC, etc), so that // we cannot derive wxMemoryDCBase from wxDC and then use it as the // only base class for native impl of wxMemoryDC... -class wxMemoryDCBase +class WXDLLEXPORT wxMemoryDCBase { public: wxMemoryDCBase() { } @@ -44,9 +89,14 @@ public: DoSelect(bmp); } +protected: virtual void DoSelect(const wxBitmap& bmp) = 0; }; + +#endif + + #if defined(__WXPALMOS__) #include "wx/palmos/dcmemory.h" #elif defined(__WXMSW__)