1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/os2/dcmemory.h
3 // Purpose: wxMemoryDC class
4 // Author: David Webster
7 // Copyright: (c) David Webster
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_DCMEMORY_H_
12 #define _WX_DCMEMORY_H_
14 #include "wx/dcmemory.h"
15 #include "wx/os2/dc.h"
17 class WXDLLIMPEXP_CORE wxMemoryDCImpl
: public wxPMDCImpl
20 wxMemoryDCImpl( wxMemoryDC
*owner
);
21 wxMemoryDCImpl( wxMemoryDC
*owner
, wxBitmap
& bitmap
);
22 wxMemoryDCImpl( wxMemoryDC
*owner
, wxDC
* pDC
); // Create compatible DC
24 // override some base class virtuals
25 virtual void DoGetSize(int* pWidth
, int* pHeight
) const;
26 virtual void DoSelect(const wxBitmap
& bitmap
);
28 virtual wxBitmap
DoGetAsBitmap(const wxRect
* subrect
) const
29 { return subrect
== NULL
? GetSelectedBitmap() : GetSelectedBitmap().GetSubBitmap(*subrect
);}
32 // create DC compatible with the given one or screen if dc == NULL
33 bool CreateCompatible(wxDC
* pDC
);
35 // initialize the newly created DC
38 DECLARE_CLASS(wxMemoryDCImpl
)
39 wxDECLARE_NO_COPY_CLASS(wxMemoryDCImpl
);
40 }; // end of CLASS wxMemoryDCImpl