1998-09-18 06:19:10 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-07-25 10:31:55 -04:00
|
|
|
// Name: wx/motif/dcmemory.h
|
2007-12-14 19:06:08 -05:00
|
|
|
// Purpose: wxMemoryDCImpl class
|
1998-09-18 06:19:10 -04:00
|
|
|
// 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_
|
|
|
|
|
2007-12-14 19:06:08 -05:00
|
|
|
#include "wx/motif/dcclient.h"
|
1998-09-18 06:19:10 -04:00
|
|
|
|
2007-12-14 19:06:08 -05:00
|
|
|
class WXDLLIMPEXP_CORE wxMemoryDCImpl : public wxWindowDCImpl
|
1998-09-18 06:19:10 -04:00
|
|
|
{
|
1999-06-08 15:10:37 -04:00
|
|
|
public:
|
2007-12-14 19:06:08 -05:00
|
|
|
wxMemoryDCImpl(wxMemoryDC *owner) : wxWindowDCImpl(owner) { Init(); }
|
|
|
|
wxMemoryDCImpl(wxMemoryDC *owner, wxBitmap& bitmap)
|
|
|
|
: wxWindowDCImpl(owner)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
DoSelect(bitmap);
|
|
|
|
}
|
|
|
|
|
|
|
|
wxMemoryDCImpl(wxMemoryDC *owner, wxDC *dc);
|
|
|
|
virtual ~wxMemoryDCImpl();
|
|
|
|
|
|
|
|
virtual void DoGetSize( int *width, int *height ) const;
|
2006-10-30 14:41:46 -05:00
|
|
|
virtual void DoSelect(const wxBitmap& bitmap);
|
|
|
|
|
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
|
|
|
|
2006-10-30 14:41:46 -05:00
|
|
|
void Init();
|
|
|
|
|
2007-12-14 19:06:08 -05:00
|
|
|
wxBitmap m_bitmap;
|
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxMemoryDCImpl)
|
1998-09-18 06:19:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2002-02-05 11:34:33 -05:00
|
|
|
// _WX_DCMEMORY_H_
|