1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2001-04-09 01:22:48 +00:00
|
|
|
// Name: wx/msw/dcmemory.h
|
1998-05-20 14:12:05 +00:00
|
|
|
// Purpose: wxMemoryDC class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 23:52:45 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
#ifndef _WX_DCMEMORY_H_
|
|
|
|
#define _WX_DCMEMORY_H_
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
#include "wx/dcclient.h"
|
|
|
|
|
2006-10-30 19:41:46 +00:00
|
|
|
class WXDLLEXPORT wxMemoryDC : public wxDC, public wxMemoryDCBase
|
1998-05-20 14:12:05 +00:00
|
|
|
{
|
1999-10-18 15:14:52 +00:00
|
|
|
public:
|
2006-10-30 19:41:46 +00:00
|
|
|
wxMemoryDC() { CreateCompatible(NULL); Init(); }
|
|
|
|
wxMemoryDC(wxBitmap& bitmap) { CreateCompatible(NULL); Init(); SelectObject(bitmap); }
|
1999-10-18 15:14:52 +00:00
|
|
|
wxMemoryDC(wxDC *dc); // Create compatible DC
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1999-10-18 15:14:52 +00:00
|
|
|
|
2001-04-09 01:22:48 +00:00
|
|
|
protected:
|
|
|
|
// override some base class virtuals
|
|
|
|
virtual void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
|
1999-10-18 15:14:52 +00:00
|
|
|
virtual void DoGetSize(int* width, int* height) const;
|
2006-10-30 19:41:46 +00:00
|
|
|
virtual void DoSelect(const wxBitmap& bitmap);
|
1999-10-18 15:14:52 +00:00
|
|
|
|
2001-04-09 01:22:48 +00:00
|
|
|
// create DC compatible with the given one or screen if dc == NULL
|
|
|
|
bool CreateCompatible(wxDC *dc);
|
|
|
|
|
|
|
|
// initialize the newly created DC
|
|
|
|
void Init();
|
|
|
|
|
1999-10-18 15:14:52 +00:00
|
|
|
private:
|
2003-07-22 00:24:07 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxMemoryDC)
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-08-07 23:52:45 +00:00
|
|
|
// _WX_DCMEMORY_H_
|