X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d3c7fc996a73e9f6a83067bc28a3c5581a3fee65..da52a4e023e73c2922f63d95026816a624695559:/include/wx/cocoa/dcmemory.h diff --git a/include/wx/cocoa/dcmemory.h b/include/wx/cocoa/dcmemory.h index e6580bab96..f71534cfcb 100644 --- a/include/wx/cocoa/dcmemory.h +++ b/include/wx/cocoa/dcmemory.h @@ -6,7 +6,7 @@ // Created: 2003/03/16 // RCS-ID: $Id$ // Copyright: (c) 2003 David Elliott -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef __WX_COCOA_DCMEMORY_H__ @@ -14,15 +14,19 @@ #include "wx/dc.h" -class WXDLLEXPORT wxMemoryDC: public wxDC +class WXDLLEXPORT wxMemoryDC: public wxDC, public wxMemoryDCBase { DECLARE_DYNAMIC_CLASS(wxMemoryDC) + public: - wxMemoryDC(void); + wxMemoryDC() { Init(); } + wxMemoryDC(wxBitmap& bitmap) { Init(); SelectObject(bitmap); } wxMemoryDC( wxDC *dc ); // Create compatible DC virtual ~wxMemoryDC(void); - virtual void SelectObject(const wxBitmap& bitmap); + virtual void DoGetSize(int *width, int *height) const; + virtual void DoSelect(const wxBitmap& bitmap); + protected: wxBitmap m_selectedBitmap; WX_NSImage m_cocoaNSImage; @@ -34,6 +38,10 @@ protected: virtual bool CocoaDoBlitOnFocusedDC(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height, wxCoord xsrc, wxCoord ysrc, int logicalFunc, bool useMask, wxCoord xsrcMask, wxCoord ysrcMask); + +private: + void Init(); }; -#endif // __WX_COCOA_DCMEMORY_H__ +#endif + // __WX_COCOA_DCMEMORY_H__