]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/brush.h
compilation fix for wxUSE_GUI=0
[wxWidgets.git] / include / wx / gtk1 / brush.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
8ef94bfc 2// Name: wx/gtk1/brush.h
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
dbf858b5 5// Id: $Id$
01111366 6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifndef __GTKBRUSHH__
12#define __GTKBRUSHH__
13
c801d85f
KB
14#include "wx/defs.h"
15#include "wx/object.h"
16#include "wx/string.h"
17#include "wx/gdiobj.h"
18#include "wx/bitmap.h"
19
20//-----------------------------------------------------------------------------
21// classes
22//-----------------------------------------------------------------------------
23
b5dbe15d 24class WXDLLIMPEXP_FWD_CORE wxBrush;
c801d85f
KB
25
26//-----------------------------------------------------------------------------
27// wxBrush
28//-----------------------------------------------------------------------------
29
20123d49 30class WXDLLIMPEXP_CORE wxBrush: public wxBrushBase
c801d85f 31{
738f9e5a 32public:
c89f5c02 33 wxBrush() { }
ab9d0a8c 34
3e6858cd 35 wxBrush( const wxColour &colour, wxBrushStyle style = wxBRUSHSTYLE_SOLID );
c801d85f 36 wxBrush( const wxBitmap &stippleBitmap );
d3c7fc99 37 virtual ~wxBrush();
ab9d0a8c 38
8f884a0d
VZ
39 bool operator==(const wxBrush& brush) const;
40 bool operator!=(const wxBrush& brush) const { return !(*this == brush); }
8bbe427f 41
3e6858cd 42 virtual wxBrushStyle GetStyle() const;
8bbe427f
VZ
43 wxColour &GetColour() const;
44 wxBitmap *GetStipple() const;
45
e55ad60e 46 void SetColour( const wxColour& col );
1a1498c0 47 void SetColour( unsigned char r, unsigned char g, unsigned char b );
3e6858cd 48 void SetStyle( wxBrushStyle style );
e55ad60e 49 void SetStipple( const wxBitmap& stipple );
8bbe427f 50
738f9e5a 51private:
8f884a0d
VZ
52 virtual wxGDIRefData *CreateGDIRefData() const;
53 virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
ab9d0a8c 54
738f9e5a 55 DECLARE_DYNAMIC_CLASS(wxBrush)
c801d85f
KB
56};
57
58#endif // __GTKBRUSHH__