git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51445
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
class WXDLLIMPEXP_CORE wxMemoryDCImpl : public wxDFBDCImpl
{
public:
class WXDLLIMPEXP_CORE wxMemoryDCImpl : public wxDFBDCImpl
{
public:
- wxMemoryDCImpl(wxMemoryDC *owner)
- : wxDFBDCImpl(owner)
- {
- Init();
- }
-
- wxMemoryDCImpl(wxMemoryDC *owner, wxBitmap& bitmap)
- : wxDFBDCImpl(owner)
- {
- Init();
- DoSelect(bitmap);
- }
-
+ wxMemoryDCImpl(wxMemoryDC *owner);
+ wxMemoryDCImpl(wxMemoryDC *owner, wxBitmap& bitmap);
wxMemoryDCImpl(wxMemoryDC *owner, wxDC *dc); // create compatible DC
// override wxMemoryDC-specific base class virtual methods
wxMemoryDCImpl(wxMemoryDC *owner, wxDC *dc); // create compatible DC
// override wxMemoryDC-specific base class virtual methods
#include "wx/bitmap.h"
#endif
#include "wx/bitmap.h"
#endif
+#include "wx/dcmemory.h"
#include "wx/dfb/dcmemory.h"
#include "wx/dfb/private.h"
#include "wx/dfb/dcmemory.h"
#include "wx/dfb/private.h"
+wxMemoryDCImpl::wxMemoryDCImpl(wxMemoryDC *owner)
+ : wxDFBDCImpl(owner)
+{
+ Init();
+}
+
+wxMemoryDCImpl::wxMemoryDCImpl(wxMemoryDC *owner, wxBitmap& bitmap)
+ : wxDFBDCImpl(owner)
+{
+ Init();
+ DoSelect(bitmap);
+}
+
wxMemoryDCImpl::wxMemoryDCImpl(wxMemoryDC *owner, wxDC *WXUNUSED(dc))
: wxDFBDCImpl(owner)
{
wxMemoryDCImpl::wxMemoryDCImpl(wxMemoryDC *owner, wxDC *WXUNUSED(dc))
: wxDFBDCImpl(owner)
{
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
+#include "wx/dcscreen.h"
#include "wx/dfb/dcscreen.h"
#include "wx/dfb/private.h"
#include "wx/dfb/dcscreen.h"
#include "wx/dfb/private.h"