1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/brush.h
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_GTK_BRUSH_H_
11 #define _WX_GTK_BRUSH_H_
13 class WXDLLIMPEXP_FWD_CORE wxBitmap
;
14 class WXDLLIMPEXP_FWD_CORE wxColour
;
16 //-----------------------------------------------------------------------------
18 //-----------------------------------------------------------------------------
20 class WXDLLIMPEXP_CORE wxBrush
: public wxBrushBase
25 wxBrush( const wxColour
&colour
, wxBrushStyle style
= wxBRUSHSTYLE_SOLID
);
26 #if FUTURE_WXWIN_COMPATIBILITY_3_0
27 wxDEPRECATED_FUTURE( wxBrush(const wxColour
& col
, int style
) );
29 wxBrush( const wxBitmap
&stippleBitmap
);
32 bool operator==(const wxBrush
& brush
) const;
33 bool operator!=(const wxBrush
& brush
) const { return !(*this == brush
); }
35 wxBrushStyle
GetStyle() const;
36 wxColour
GetColour() const;
37 wxBitmap
*GetStipple() const;
39 void SetColour( const wxColour
& col
);
40 void SetColour( unsigned char r
, unsigned char g
, unsigned char b
);
41 void SetStyle( wxBrushStyle style
);
42 void SetStipple( const wxBitmap
& stipple
);
44 #if FUTURE_WXWIN_COMPATIBILITY_3_0
45 wxDEPRECATED_FUTURE( void SetStyle(int style
) )
46 { SetStyle((wxBrushStyle
)style
); }
50 virtual wxGDIRefData
*CreateGDIRefData() const;
51 virtual wxGDIRefData
*CloneGDIRefData(const wxGDIRefData
*data
) const;
53 DECLARE_DYNAMIC_CLASS(wxBrush
)
56 #endif // _WX_GTK_BRUSH_H_