]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/dcmemory.h
*** empty log message ***
[wxWidgets.git] / include / wx / os2 / dcmemory.h
CommitLineData
0e320a79
DW
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcmemory.h
3// Purpose: wxMemoryDC class
f0a56ab0 4// Author: David Webster
0e320a79 5// Modified by:
f0a56ab0 6// Created: 09/09/99
0e320a79 7// RCS-ID: $Id$
f0a56ab0
DW
8// Copyright: (c) David Webster
9// Licence: wxWindows licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_DCMEMORY_H_
13#define _WX_DCMEMORY_H_
14
15#ifdef __GNUG__
16#pragma interface "dcmemory.h"
17#endif
18
19#include "wx/dcclient.h"
20
21class WXDLLEXPORT wxMemoryDC: public wxPaintDC
22{
23 DECLARE_DYNAMIC_CLASS(wxMemoryDC)
24
25 public:
26 wxMemoryDC(void);
27 wxMemoryDC( wxDC *dc ); // Create compatible DC
ce44c50e 28
0e320a79
DW
29 ~wxMemoryDC(void);
30 virtual void SelectObject( const wxBitmap& bitmap );
31 void GetSize( int *width, int *height ) const;
32
ce44c50e 33 private:
0e320a79
DW
34 friend wxPaintDC;
35 wxBitmap m_selected;
36};
37
38#endif
39 // _WX_DCMEMORY_H_