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-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 );
|
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
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
wxBrushStyle GetStyle() const wxOVERRIDE;
|
|
|
|
wxColour GetColour() const wxOVERRIDE;
|
|
|
|
wxBitmap *GetStipple() const wxOVERRIDE;
|
1998-12-09 17:30:17 +00:00
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
void SetColour( const wxColour& col ) wxOVERRIDE;
|
|
|
|
void SetColour( unsigned char r, unsigned char g, unsigned char b ) wxOVERRIDE;
|
|
|
|
void SetStyle( wxBrushStyle style ) wxOVERRIDE;
|
|
|
|
void SetStipple( const wxBitmap& stipple ) wxOVERRIDE;
|
1998-12-09 17:30:17 +00:00
|
|
|
|
2014-01-06 12:42:37 +00:00
|
|
|
wxDEPRECATED_MSG("use wxBRUSHSTYLE_XXX constants")
|
|
|
|
wxBrush(const wxColour& col, int style);
|
|
|
|
|
|
|
|
wxDEPRECATED_MSG("use wxBRUSHSTYLE_XXX constants")
|
|
|
|
void SetStyle(int style) { SetStyle((wxBrushStyle)style); }
|
2008-06-17 17:28:26 +00:00
|
|
|
|
2006-02-08 21:47:09 +00:00
|
|
|
protected:
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual wxGDIRefData *CreateGDIRefData() const wxOVERRIDE;
|
|
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const wxOVERRIDE;
|
2004-11-30 18:46:20 +00:00
|
|
|
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxBrush);
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2006-08-30 05:55:56 +00:00
|
|
|
#endif // _WX_GTK_BRUSH_H_
|