]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/dcmemory.h
16-bit fixes
[wxWidgets.git] / include / wx / gtk / dcmemory.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcmemory.h
3// Purpose:
4// Author: Robert Roebling
6f65e337 5// RCS-ID: $Id$
dbf858b5 6// Copyright: (c) 1998 Robert Roebling
8bbe427f 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifndef __GTKDCMEMORYH__
12#define __GTKDCMEMORYH__
13
14#ifdef __GNUG__
15#pragma interface
16#endif
17
18#include "wx/defs.h"
19#include "wx/dcclient.h"
20
21//-----------------------------------------------------------------------------
22// classes
23//-----------------------------------------------------------------------------
24
25class wxMemoryDC;
26
27//-----------------------------------------------------------------------------
28// wxMemoryDC
29//-----------------------------------------------------------------------------
30
72cdf4c9 31class wxMemoryDC : public wxWindowDC
c801d85f 32{
ec758a20 33public:
20e05ffb
RR
34 wxMemoryDC();
35 wxMemoryDC( wxDC *dc ); // Create compatible DC
36 ~wxMemoryDC();
37 virtual void SelectObject( const wxBitmap& bitmap );
38 void DoGetSize( int *width, int *height ) const;
c801d85f 39
20e05ffb
RR
40 // implementation
41 wxBitmap m_selected;
8bbe427f 42
20e05ffb
RR
43private:
44 DECLARE_DYNAMIC_CLASS(wxMemoryDC)
c801d85f
KB
45};
46
47#endif
48 // __GTKDCMEMORYH__
49