1998-09-18 10:19:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: dcmemory.h
|
|
|
|
// Purpose: wxMemoryDC class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
1999-06-08 19:10:37 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-09-18 10:19:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DCMEMORY_H_
|
|
|
|
#define _WX_DCMEMORY_H_
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2002-02-05 16:34:33 +00:00
|
|
|
#pragma interface "dcmemory.h"
|
1998-09-18 10:19:10 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/dcclient.h"
|
|
|
|
|
1999-06-08 19:10:37 +00:00
|
|
|
class wxMemoryDC : public wxWindowDC
|
1998-09-18 10:19:10 +00:00
|
|
|
{
|
2002-02-05 16:34:33 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxMemoryDC)
|
|
|
|
|
1999-06-08 19:10:37 +00:00
|
|
|
public:
|
|
|
|
wxMemoryDC();
|
1998-09-18 10:19:10 +00:00
|
|
|
wxMemoryDC( wxDC *dc ); // Create compatible DC
|
1999-06-08 19:10:37 +00:00
|
|
|
~wxMemoryDC();
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1998-09-18 10:19:10 +00:00
|
|
|
virtual void SelectObject( const wxBitmap& bitmap );
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1999-06-23 15:25:23 +00:00
|
|
|
void DoGetSize( int *width, int *height ) const;
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1999-06-08 19:10:37 +00:00
|
|
|
wxBitmap& GetBitmap() const { return (wxBitmap&) m_bitmap; }
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1999-06-08 19:10:37 +00:00
|
|
|
private:
|
2000-07-15 19:51:35 +00:00
|
|
|
friend class wxPaintDC;
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1998-09-22 21:15:56 +00:00
|
|
|
wxBitmap m_bitmap;
|
1998-09-18 10:19:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2002-02-05 16:34:33 +00:00
|
|
|
// _WX_DCMEMORY_H_
|