1998-09-18 06:19:10 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-07-25 10:31:55 -04:00
|
|
|
// Name: wx/motif/dcmemory.h
|
1998-09-18 06:19:10 -04:00
|
|
|
// Purpose: wxMemoryDC class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-09-18 06:19:10 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DCMEMORY_H_
|
|
|
|
#define _WX_DCMEMORY_H_
|
|
|
|
|
|
|
|
#include "wx/dcclient.h"
|
|
|
|
|
2005-08-02 20:53:09 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxMemoryDC : public wxWindowDC
|
1998-09-18 06:19:10 -04:00
|
|
|
{
|
2002-02-05 11:34:33 -05:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxMemoryDC)
|
2006-07-25 10:31:55 -04:00
|
|
|
|
1999-06-08 15:10:37 -04:00
|
|
|
public:
|
|
|
|
wxMemoryDC();
|
1998-09-18 06:19:10 -04:00
|
|
|
wxMemoryDC( wxDC *dc ); // Create compatible DC
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxMemoryDC();
|
2006-07-25 10:31:55 -04:00
|
|
|
|
1998-09-18 06:19:10 -04:00
|
|
|
virtual void SelectObject( const wxBitmap& bitmap );
|
2006-07-25 10:31:55 -04:00
|
|
|
|
1999-06-23 11:25:23 -04:00
|
|
|
void DoGetSize( int *width, int *height ) const;
|
2006-07-25 10:31:55 -04:00
|
|
|
|
1999-06-08 15:10:37 -04:00
|
|
|
wxBitmap& GetBitmap() const { return (wxBitmap&) m_bitmap; }
|
2006-07-25 10:31:55 -04:00
|
|
|
|
1999-06-08 15:10:37 -04:00
|
|
|
private:
|
2000-07-15 15:51:35 -04:00
|
|
|
friend class wxPaintDC;
|
2006-07-25 10:31:55 -04:00
|
|
|
|
1998-09-22 17:15:56 -04:00
|
|
|
wxBitmap m_bitmap;
|
1998-09-18 06:19:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2002-02-05 11:34:33 -05:00
|
|
|
// _WX_DCMEMORY_H_
|