1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-10-04 16:13:42 +00:00
|
|
|
// Name: wx/gtk/brush.h
|
1998-05-20 14:01:55 +00:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 10:56:58 +00:00
|
|
|
// Id: $Id$
|
1998-10-24 17:12:05 +00:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-08-30 05:55:56 +00:00
|
|
|
#ifndef _WX_GTK_BRUSH_H_
|
|
|
|
#define _WX_GTK_BRUSH_H_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxBitmap;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxColour;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxBrush
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2005-08-02 22:58:06 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxBrush: public wxBrushBase
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-10-11 10:05:36 +00:00
|
|
|
public:
|
2002-02-04 18:01:21 +00:00
|
|
|
wxBrush() { }
|
2004-11-30 18:46:20 +00:00
|
|
|
|
2008-03-16 16:47:57 +00:00
|
|
|
wxBrush( const wxColour &colour, wxBrushStyle style = wxBRUSHSTYLE_SOLID );
|
2008-03-20 15:08:51 +00:00
|
|
|
#if FUTURE_WXWIN_COMPATIBILITY_3_0
|
|
|
|
wxDEPRECATED_FUTURE( wxBrush(const wxColour& col, int style) );
|
|
|
|
#endif
|
1998-05-20 14:01:55 +00:00
|
|
|
wxBrush( const wxBitmap &stippleBitmap );
|
2006-09-05 20:47:48 +00:00
|
|
|
virtual ~wxBrush();
|
2004-11-30 18:46:20 +00:00
|
|
|
|
2007-12-15 17:54:20 +00:00
|
|
|
bool operator==(const wxBrush& brush) const;
|
|
|
|
bool operator!=(const wxBrush& brush) const { return !(*this == brush); }
|
1998-12-09 17:30:17 +00:00
|
|
|
|
2008-03-28 16:47:58 +00:00
|
|
|
wxBrushStyle GetStyle() const;
|
|
|
|
wxColour GetColour() const;
|
1998-12-09 17:30:17 +00:00
|
|
|
wxBitmap *GetStipple() const;
|
|
|
|
|
1998-09-11 09:05:26 +00:00
|
|
|
void SetColour( const wxColour& col );
|
2005-10-04 18:14:41 +00:00
|
|
|
void SetColour( unsigned char r, unsigned char g, unsigned char b );
|
2008-03-16 16:47:57 +00:00
|
|
|
void SetStyle( wxBrushStyle style );
|
1998-09-11 09:05:26 +00:00
|
|
|
void SetStipple( const wxBitmap& stipple );
|
1998-12-09 17:30:17 +00:00
|
|
|
|
2006-02-08 21:47:09 +00:00
|
|
|
protected:
|
2007-12-15 17:54:20 +00:00
|
|
|
virtual wxGDIRefData *CreateGDIRefData() const;
|
|
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
|
2004-11-30 18:46:20 +00:00
|
|
|
|
1999-10-11 10:05:36 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxBrush)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2006-08-30 05:55:56 +00:00
|
|
|
#endif // _WX_GTK_BRUSH_H_
|