1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: dcmemory.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-05-28 15:54:07 -04:00
|
|
|
// RCS-ID: $Id$
|
1998-10-26 05:56:58 -05:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-12-07 00:44:44 -05:00
|
|
|
#ifndef _WX_GTK_DCMEMORY_H_
|
|
|
|
#define _WX_GTK_DCMEMORY_H_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
|
|
|
#include "wx/dcclient.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxMemoryDC
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2007-09-23 07:27:41 -04:00
|
|
|
|
|
|
|
#if wxUSE_NEW_DC
|
|
|
|
class WXDLLIMPEXP_CORE wxGTKMemoryImplDC : public wxGTKWindowImplDC, public wxMemoryImplDCBase
|
|
|
|
#else
|
|
|
|
#define wxGTKMemoryImplDC wxMemoryDC
|
2006-10-30 14:41:46 -05:00
|
|
|
class WXDLLIMPEXP_CORE wxMemoryDC : public wxWindowDC, public wxMemoryDCBase
|
2007-09-23 07:27:41 -04:00
|
|
|
#endif
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1998-12-01 07:55:09 -05:00
|
|
|
public:
|
2007-09-23 07:27:41 -04:00
|
|
|
|
|
|
|
#if wxUSE_NEW_DC
|
|
|
|
wxGTKMemoryImplDC( wxMemoryDC *owner );
|
|
|
|
wxGTKMemoryImplDC( wxMemoryDC *owner, wxBitmap& bitmap );
|
|
|
|
wxGTKMemoryImplDC( wxMemoryDC *owner, wxDC *dc );
|
|
|
|
#else
|
|
|
|
wxMemoryDC();
|
|
|
|
wxMemoryDC(wxBitmap& bitmap);
|
|
|
|
wxMemoryDC( wxDC *dc );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
virtual ~wxGTKMemoryImplDC();
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2000-01-15 05:39:27 -05:00
|
|
|
// these get reimplemented for mono-bitmaps to behave
|
|
|
|
// more like their Win32 couterparts. They now interpret
|
|
|
|
// wxWHITE, wxWHITE_BRUSH and wxWHITE_PEN as drawing 0
|
|
|
|
// and everything else as drawing 1.
|
|
|
|
virtual void SetPen( const wxPen &pen );
|
|
|
|
virtual void SetBrush( const wxBrush &brush );
|
2003-05-01 15:31:30 -04:00
|
|
|
virtual void SetBackground( const wxBrush &brush );
|
2000-01-15 05:39:27 -05:00
|
|
|
virtual void SetTextForeground( const wxColour &col );
|
|
|
|
virtual void SetTextBackground( const wxColour &col );
|
|
|
|
|
1999-11-22 14:44:25 -05:00
|
|
|
// implementation
|
2007-03-30 11:27:08 -04:00
|
|
|
wxBitmap GetSelectedBitmap() const { return m_selected; }
|
1998-12-09 12:30:17 -05:00
|
|
|
|
2006-02-08 16:47:09 -05:00
|
|
|
protected:
|
2007-09-23 07:27:41 -04:00
|
|
|
// overridden from wxImplDC
|
|
|
|
virtual void DoGetSize( int *width, int *height ) const;
|
|
|
|
virtual wxBitmap DoGetAsBitmap(const wxRect *subrect) const;
|
|
|
|
|
|
|
|
public:
|
|
|
|
// overridden from wxMemoryImplDCBase
|
2006-10-30 14:41:46 -05:00
|
|
|
virtual void DoSelect(const wxBitmap& bitmap);
|
2007-09-23 07:27:41 -04:00
|
|
|
virtual const wxBitmap& DoGetSelectedBitmap() const;
|
|
|
|
virtual wxBitmap& DoGetSelectedBitmap();
|
2006-10-30 14:41:46 -05:00
|
|
|
|
2007-09-23 07:27:41 -04:00
|
|
|
wxBitmap m_selected;
|
|
|
|
|
2006-10-30 14:41:46 -05:00
|
|
|
private:
|
|
|
|
void Init();
|
2006-02-08 16:47:09 -05:00
|
|
|
|
2007-09-23 07:27:41 -04:00
|
|
|
DECLARE_ABSTRACT_CLASS(wxGTKMemoryImplDC)
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
2006-12-07 00:44:44 -05:00
|
|
|
#endif // _WX_GTK_DCMEMORY_H_
|