]>
Commit | Line | Data |
---|---|---|
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 | 24 | class WXDLLIMPEXP_FWD_CORE wxBrush; |
c801d85f KB |
25 | |
26 | //----------------------------------------------------------------------------- | |
27 | // wxBrush | |
28 | //----------------------------------------------------------------------------- | |
29 | ||
20123d49 | 30 | class WXDLLIMPEXP_CORE wxBrush: public wxBrushBase |
c801d85f | 31 | { |
738f9e5a | 32 | public: |
c89f5c02 | 33 | wxBrush() { } |
ab9d0a8c | 34 | |
5b36366c | 35 | wxBrush( const wxColour &colour, int style = wxSOLID ); |
c801d85f | 36 | wxBrush( const wxBitmap &stippleBitmap ); |
d3c7fc99 | 37 | virtual ~wxBrush(); |
ab9d0a8c | 38 | |
b7cacb43 VZ |
39 | bool Ok() const { return IsOk(); } |
40 | bool IsOk() const { return m_refData != NULL; } | |
ab9d0a8c | 41 | |
f6bcfd97 | 42 | bool operator == ( const wxBrush& brush ) const; |
c89f5c02 | 43 | bool operator != (const wxBrush& brush) const { return !(*this == brush); } |
8bbe427f | 44 | |
cb9d5bd0 | 45 | virtual int GetStyle() const; |
8bbe427f VZ |
46 | wxColour &GetColour() const; |
47 | wxBitmap *GetStipple() const; | |
48 | ||
e55ad60e | 49 | void SetColour( const wxColour& col ); |
1a1498c0 | 50 | void SetColour( unsigned char r, unsigned char g, unsigned char b ); |
e55ad60e RR |
51 | void SetStyle( int style ); |
52 | void SetStipple( const wxBitmap& stipple ); | |
8bbe427f | 53 | |
738f9e5a | 54 | private: |
c89f5c02 RR |
55 | // ref counting code |
56 | virtual wxObjectRefData *CreateRefData() const; | |
57 | virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; | |
ab9d0a8c | 58 | |
738f9e5a | 59 | DECLARE_DYNAMIC_CLASS(wxBrush) |
c801d85f KB |
60 | }; |
61 | ||
62 | #endif // __GTKBRUSHH__ |