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
|
2001-04-09 01:22:48 +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
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "dcmemory.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/dcclient.h"
|
|
|
|
|
1999-10-18 15:14:52 +00:00
|
|
|
class WXDLLEXPORT wxMemoryDC : public wxDC
|
1998-05-20 14:12:05 +00:00
|
|
|
{
|
1999-10-18 15:14:52 +00:00
|
|
|
public:
|
|
|
|
wxMemoryDC();
|
|
|
|
wxMemoryDC(wxDC *dc); // Create compatible DC
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1999-10-18 15:14:52 +00:00
|
|
|
virtual void SelectObject(const wxBitmap& bitmap);
|
|
|
|
|
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;
|
|
|
|
|
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:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxMemoryDC)
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-08-07 23:52:45 +00:00
|
|
|
// _WX_DCMEMORY_H_
|