]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/gtk/brush.h
handle mouse capture lost event in grid windows and reset the grid to normal state...
[wxWidgets.git] / include / wx / gtk / brush.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/gtk/brush.h
3// Purpose:
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_GTK_BRUSH_H_
11#define _WX_GTK_BRUSH_H_
12
13class WXDLLIMPEXP_CORE wxBitmap;
14class WXDLLIMPEXP_CORE wxColour;
15
16//-----------------------------------------------------------------------------
17// wxBrush
18//-----------------------------------------------------------------------------
19
20class WXDLLIMPEXP_CORE wxBrush: public wxBrushBase
21{
22public:
23 wxBrush() { }
24
25 wxBrush( const wxColour &colour, int style = wxSOLID );
26 wxBrush( const wxBitmap &stippleBitmap );
27 virtual ~wxBrush();
28
29 bool Ok() const { return IsOk(); }
30 bool IsOk() const { return m_refData != NULL; }
31
32 bool operator == ( const wxBrush& brush ) const;
33 bool operator != (const wxBrush& brush) const { return !(*this == brush); }
34
35 virtual int GetStyle() const;
36 wxColour &GetColour() const;
37 wxBitmap *GetStipple() const;
38
39 void SetColour( const wxColour& col );
40 void SetColour( unsigned char r, unsigned char g, unsigned char b );
41 void SetStyle( int style );
42 void SetStipple( const wxBitmap& stipple );
43
44protected:
45 // ref counting code
46 virtual wxObjectRefData *CreateRefData() const;
47 virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
48
49 DECLARE_DYNAMIC_CLASS(wxBrush)
50};
51
52#endif // _WX_GTK_BRUSH_H_