]>
Commit | Line | Data |
---|---|---|
32b8ec41 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: brush.h | |
3 | // Purpose: | |
4 | // Author: Vaclav Slavik | |
5 | // Id: $Id$ | |
8f7b34a8 | 6 | // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) |
32b8ec41 VZ |
7 | // Licence: wxWindows licence |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | ||
11 | #ifndef __WX_BRUSH_H__ | |
12 | #define __WX_BRUSH_H__ | |
13 | ||
14 | #ifdef __GNUG__ | |
15 | #pragma interface "brush.h" | |
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 WXDLLEXPORT wxBitmap; | |
29 | class WXDLLEXPORT wxBrush; | |
30 | ||
31 | //----------------------------------------------------------------------------- | |
32 | // wxBrush | |
33 | //----------------------------------------------------------------------------- | |
34 | ||
35 | class WXDLLEXPORT wxBrush: public wxGDIObject | |
36 | { | |
37 | public: | |
38 | wxBrush(); | |
39 | wxBrush(const wxColour &colour, int style); | |
40 | wxBrush(const wxBitmap &stippleBitmap); | |
41 | wxBrush(const wxBrush &brush); | |
42 | ~wxBrush(); | |
43 | wxBrush& operator = (const wxBrush& brush); | |
44 | bool operator == (const wxBrush& brush) const; | |
45 | bool operator != (const wxBrush& brush) const; | |
46 | bool Ok() const; | |
47 | ||
48 | int GetStyle() const; | |
49 | wxColour &GetColour() const; | |
50 | wxBitmap *GetStipple() const; | |
51 | ||
52 | void SetColour(const wxColour& col); | |
53 | void SetColour(unsigned char r, unsigned char g, unsigned char b); | |
54 | void SetStyle(int style); | |
55 | void SetStipple(const wxBitmap& stipple); | |
56 | ||
57 | // implementation: | |
58 | ||
59 | void Unshare(); | |
60 | ||
61 | void* GetMaskPattern() const; | |
62 | void* GetPixPattern() const; | |
63 | ||
64 | private: | |
65 | DECLARE_DYNAMIC_CLASS(wxBrush) | |
66 | }; | |
67 | ||
68 | #endif // __WX_BRUSH_H__ |