1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-01-23 02:28:01 +00:00
|
|
|
// Name: wx/gtk1/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
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKBRUSHH__
|
|
|
|
#define __GTKBRUSHH__
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/string.h"
|
|
|
|
#include "wx/gdiobj.h"
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxBrush;
|
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
|
|
|
|
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
|
|
|
|
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
|
|
|
|
1999-10-11 10:05:36 +00:00
|
|
|
private:
|
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
|
|
|
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxBrush);
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKBRUSHH__
|