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