]>
Commit | Line | Data |
---|---|---|
32b8ec41 | 1 | ///////////////////////////////////////////////////////////////////////////// |
46562151 | 2 | // Name: wx/mgl/brush.h |
32b8ec41 VZ |
3 | // Purpose: |
4 | // Author: Vaclav Slavik | |
5 | // Id: $Id$ | |
52750c2e | 6 | // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) |
65571936 | 7 | // Licence: wxWindows licence |
32b8ec41 VZ |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
32b8ec41 VZ |
10 | #ifndef __WX_BRUSH_H__ |
11 | #define __WX_BRUSH_H__ | |
12 | ||
32b8ec41 VZ |
13 | #include "wx/defs.h" |
14 | #include "wx/object.h" | |
15 | #include "wx/string.h" | |
16 | #include "wx/gdiobj.h" | |
17 | #include "wx/bitmap.h" | |
18 | ||
19 | //----------------------------------------------------------------------------- | |
20 | // classes | |
21 | //----------------------------------------------------------------------------- | |
22 | ||
23 | class WXDLLEXPORT wxBitmap; | |
24 | class WXDLLEXPORT wxBrush; | |
25 | ||
26 | //----------------------------------------------------------------------------- | |
27 | // wxBrush | |
28 | //----------------------------------------------------------------------------- | |
29 | ||
cb9d5bd0 | 30 | class WXDLLEXPORT wxBrush: public wxBrushBase |
32b8ec41 VZ |
31 | { |
32 | public: | |
3cdd0895 | 33 | wxBrush() {} |
5b36366c | 34 | wxBrush(const wxColour &colour, int style = wxSOLID); |
32b8ec41 | 35 | wxBrush(const wxBitmap &stippleBitmap); |
d3c7fc99 | 36 | virtual ~wxBrush() {} |
32b8ec41 VZ |
37 | bool operator == (const wxBrush& brush) const; |
38 | bool operator != (const wxBrush& brush) const; | |
b7cacb43 VZ |
39 | bool Ok() const { return IsOk(); } |
40 | bool IsOk() const; | |
32b8ec41 | 41 | |
cb9d5bd0 | 42 | virtual int GetStyle() const; |
32b8ec41 VZ |
43 | wxColour &GetColour() const; |
44 | wxBitmap *GetStipple() const; | |
45 | ||
46 | void SetColour(const wxColour& col); | |
1a1498c0 | 47 | void SetColour(unsigned char r, unsigned char g, unsigned char b); |
32b8ec41 VZ |
48 | void SetStyle(int style); |
49 | void SetStipple(const wxBitmap& stipple); | |
ab9d0a8c | 50 | |
32b8ec41 VZ |
51 | // implementation: |
52 | ||
32b8ec41 VZ |
53 | void* GetMaskPattern() const; |
54 | void* GetPixPattern() const; | |
55 | ||
6d7ee9e8 VS |
56 | protected: |
57 | // ref counting code | |
58 | virtual wxObjectRefData *CreateRefData() const; | |
59 | virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; | |
60 | ||
32b8ec41 VZ |
61 | private: |
62 | DECLARE_DYNAMIC_CLASS(wxBrush) | |
63 | }; | |
64 | ||
65 | #endif // __WX_BRUSH_H__ |