1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/dcmemory.h
4 // Author: Robert Roebling
5 // Copyright: (c) 1998 Robert Roebling
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
9 #ifndef _WX_GTK_DCMEMORY_H_
10 #define _WX_GTK_DCMEMORY_H_
12 #include "wx/dcmemory.h"
13 #include "wx/gtk/dcclient.h"
15 //-----------------------------------------------------------------------------
17 //-----------------------------------------------------------------------------
19 class WXDLLIMPEXP_CORE wxMemoryDCImpl
: public wxWindowDCImpl
22 wxMemoryDCImpl( wxMemoryDC
*owner
);
23 wxMemoryDCImpl( wxMemoryDC
*owner
, wxBitmap
& bitmap
);
24 wxMemoryDCImpl( wxMemoryDC
*owner
, wxDC
*dc
);
26 virtual ~wxMemoryDCImpl();
28 // these get reimplemented for mono-bitmaps to behave
29 // more like their Win32 couterparts. They now interpret
30 // wxWHITE, wxWHITE_BRUSH and wxWHITE_PEN as drawing 0
31 // and everything else as drawing 1.
32 virtual void SetPen( const wxPen
&pen
);
33 virtual void SetBrush( const wxBrush
&brush
);
34 virtual void SetBackground( const wxBrush
&brush
);
35 virtual void SetTextForeground( const wxColour
&col
);
36 virtual void SetTextBackground( const wxColour
&col
);
38 // overridden from wxDCImpl
39 virtual void DoGetSize( int *width
, int *height
) const;
40 virtual wxBitmap
DoGetAsBitmap(const wxRect
*subrect
) const;
41 virtual void* GetHandle() const;
43 // overridden for wxMemoryDC Impl
44 virtual void DoSelect(const wxBitmap
& bitmap
);
46 virtual const wxBitmap
& GetSelectedBitmap() const;
47 virtual wxBitmap
& GetSelectedBitmap();
54 DECLARE_ABSTRACT_CLASS(wxMemoryDCImpl
)
58 // _WX_GTK_DCMEMORY_H_