]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/x11/brush.h
add possibility to specify the conversion to use in wxStringOutputStream; use it...
[wxWidgets.git] / include / wx / x11 / brush.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/x11/brush.h
3// Purpose: wxBrush class
4// Author: Julian Smart, Robert Roebling
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart, Robert Roebling
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_BRUSH_H_
13#define _WX_BRUSH_H_
14
15#include "wx/gdiobj.h"
16
17//-----------------------------------------------------------------------------
18// classes
19//-----------------------------------------------------------------------------
20
21class WXDLLIMPEXP_FWD_CORE wxBrush;
22class WXDLLIMPEXP_FWD_CORE wxColour;
23class WXDLLIMPEXP_FWD_CORE wxBitmap;
24
25//-----------------------------------------------------------------------------
26// wxBrush
27//-----------------------------------------------------------------------------
28
29class WXDLLIMPEXP_CORE wxBrush : public wxBrushBase
30{
31public:
32 wxBrush() { }
33
34 wxBrush( const wxColour &colour, wxBrushStyle style = wxBRUSHSTYLE_SOLID );
35#if FUTURE_WXWIN_COMPATIBILITY_3_0
36 wxDEPRECATED_FUTURE( wxBrush(const wxColour& col, int style) );
37#endif
38 wxBrush( const wxBitmap &stippleBitmap );
39 virtual ~wxBrush();
40
41 bool operator==(const wxBrush& brush) const;
42 bool operator!=(const wxBrush& brush) const { return !(*this == brush); }
43
44 wxBrushStyle GetStyle() const;
45 wxColour GetColour() const;
46 wxBitmap *GetStipple() const;
47
48 void SetColour( const wxColour& col );
49 void SetColour( unsigned char r, unsigned char g, unsigned char b );
50 void SetStyle( wxBrushStyle style );
51 void SetStipple( const wxBitmap& stipple );
52
53protected:
54 virtual wxGDIRefData *CreateGDIRefData() const;
55 virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
56
57 DECLARE_DYNAMIC_CLASS(wxBrush)
58};
59
60#endif // _WX_BRUSH_H_