]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: brush.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
dbf858b5 | 5 | // Id: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling |
8bbe427f | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | ||
11 | #ifndef __GTKBRUSHH__ | |
12 | #define __GTKBRUSHH__ | |
13 | ||
14 | #ifdef __GNUG__ | |
15 | #pragma interface | |
16 | #endif | |
17 | ||
18 | #include "wx/defs.h" | |
19 | #include "wx/object.h" | |
20 | #include "wx/string.h" | |
21 | #include "wx/gdiobj.h" | |
22 | #include "wx/bitmap.h" | |
23 | ||
24 | //----------------------------------------------------------------------------- | |
25 | // classes | |
26 | //----------------------------------------------------------------------------- | |
27 | ||
28 | class wxBrush; | |
29 | ||
30 | //----------------------------------------------------------------------------- | |
31 | // wxBrush | |
32 | //----------------------------------------------------------------------------- | |
33 | ||
34 | class wxBrush: public wxGDIObject | |
35 | { | |
738f9e5a | 36 | public: |
c89f5c02 RR |
37 | wxBrush() { } |
38 | ||
debe6624 | 39 | wxBrush( const wxColour &colour, int style ); |
c801d85f | 40 | wxBrush( const wxBitmap &stippleBitmap ); |
8bbe427f | 41 | ~wxBrush(); |
c89f5c02 RR |
42 | |
43 | wxBrush( const wxBrush &brush ) { Ref(brush); } | |
44 | wxBrush& operator = ( const wxBrush& brush ) { Ref(brush); return *this; } | |
45 | ||
46 | bool Ok() const { return m_refData != NULL; } | |
47 | ||
f6bcfd97 | 48 | bool operator == ( const wxBrush& brush ) const; |
c89f5c02 | 49 | bool operator != (const wxBrush& brush) const { return !(*this == brush); } |
8bbe427f VZ |
50 | |
51 | int GetStyle() const; | |
52 | wxColour &GetColour() const; | |
53 | wxBitmap *GetStipple() const; | |
54 | ||
e55ad60e | 55 | void SetColour( const wxColour& col ); |
e55ad60e RR |
56 | void SetColour( unsigned char r, unsigned char g, unsigned char b ); |
57 | void SetStyle( int style ); | |
58 | void SetStipple( const wxBitmap& stipple ); | |
8bbe427f | 59 | |
738f9e5a | 60 | private: |
c89f5c02 RR |
61 | // ref counting code |
62 | virtual wxObjectRefData *CreateRefData() const; | |
63 | virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; | |
64 | ||
738f9e5a | 65 | DECLARE_DYNAMIC_CLASS(wxBrush) |
c801d85f KB |
66 | }; |
67 | ||
68 | #endif // __GTKBRUSHH__ |