]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/msw/brush.h | |
3 | // Purpose: wxBrush class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_BRUSH_H_ | |
13 | #define _WX_BRUSH_H_ | |
14 | ||
15 | #include "wx/gdicmn.h" | |
16 | #include "wx/gdiobj.h" | |
17 | #include "wx/bitmap.h" | |
18 | ||
19 | class WXDLLEXPORT wxBrush; | |
20 | ||
21 | // ---------------------------------------------------------------------------- | |
22 | // wxBrush | |
23 | // ---------------------------------------------------------------------------- | |
24 | ||
25 | class WXDLLEXPORT wxBrush : public wxBrushBase | |
26 | { | |
27 | public: | |
28 | wxBrush(); | |
29 | wxBrush(const wxColour& col, int style = wxSOLID); | |
30 | wxBrush(const wxBitmap& stipple); | |
31 | wxBrush(const wxBrush& brush) : wxBrushBase(brush) { Ref(brush); } | |
32 | virtual ~wxBrush(); | |
33 | ||
34 | virtual void SetColour(const wxColour& col); | |
35 | virtual void SetColour(unsigned char r, unsigned char g, unsigned char b); | |
36 | virtual void SetStyle(int style); | |
37 | virtual void SetStipple(const wxBitmap& stipple); | |
38 | ||
39 | wxBrush& operator=(const wxBrush& brush); | |
40 | bool operator==(const wxBrush& brush) const; | |
41 | bool operator!=(const wxBrush& brush) const { return !(*this == brush); } | |
42 | ||
43 | wxColour GetColour() const; | |
44 | virtual int GetStyle() const; | |
45 | wxBitmap *GetStipple() const; | |
46 | ||
47 | bool Ok() const { return m_refData != NULL; } | |
48 | ||
49 | // return the HBRUSH for this brush | |
50 | virtual WXHANDLE GetResourceHandle() const; | |
51 | ||
52 | protected: | |
53 | virtual wxObjectRefData *CreateRefData() const; | |
54 | virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; | |
55 | ||
56 | private: | |
57 | DECLARE_DYNAMIC_CLASS(wxBrush) | |
58 | }; | |
59 | ||
60 | #endif | |
61 | // _WX_BRUSH_H_ |