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