]>
Commit | Line | Data |
---|---|---|
ffecfa5a JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/palmos/brush.h | |
3 | // Purpose: wxBrush class | |
e1d63b79 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e1d63b79 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_BRUSH_H_ | |
13 | #define _WX_BRUSH_H_ | |
14 | ||
ffecfa5a JS |
15 | #include "wx/gdicmn.h" |
16 | #include "wx/gdiobj.h" | |
17 | #include "wx/bitmap.h" | |
18 | ||
b5dbe15d | 19 | class WXDLLIMPEXP_FWD_CORE wxBrush; |
ffecfa5a JS |
20 | |
21 | // ---------------------------------------------------------------------------- | |
22 | // wxBrush | |
23 | // ---------------------------------------------------------------------------- | |
24 | ||
53a2db12 | 25 | class WXDLLIMPEXP_CORE wxBrush : public wxBrushBase |
ffecfa5a JS |
26 | { |
27 | public: | |
28 | wxBrush(); | |
3e6858cd | 29 | wxBrush(const wxColour& col, wxBrushStyle style = wxBRUSHSTYLE_SOLID); |
ac3688c0 FM |
30 | #if FUTURE_WXWIN_COMPATIBILITY_3_0 |
31 | wxDEPRECATED_FUTURE( wxBrush(const wxColour& col, int style) ); | |
32 | #endif | |
ffecfa5a | 33 | wxBrush(const wxBitmap& stipple); |
ffecfa5a JS |
34 | virtual ~wxBrush(); |
35 | ||
36 | virtual void SetColour(const wxColour& col); | |
1a1498c0 | 37 | virtual void SetColour(unsigned char r, unsigned char g, unsigned char b); |
3e6858cd | 38 | virtual void SetStyle(wxBrushStyle style); |
ffecfa5a JS |
39 | virtual void SetStipple(const wxBitmap& stipple); |
40 | ||
ffecfa5a JS |
41 | bool operator==(const wxBrush& brush) const; |
42 | bool operator!=(const wxBrush& brush) const { return !(*this == brush); } | |
43 | ||
44 | wxColour GetColour() const; | |
231b9591 | 45 | wxBrushStyle GetStyle() const; |
ffecfa5a JS |
46 | wxBitmap *GetStipple() const; |
47 | ||
ffecfa5a JS |
48 | // return the HBRUSH for this brush |
49 | virtual WXHANDLE GetResourceHandle() const; | |
50 | ||
51 | protected: | |
8f884a0d VZ |
52 | virtual wxGDIRefData *CreateGDIRefData() const; |
53 | virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const; | |
ffecfa5a JS |
54 | |
55 | private: | |
56 | DECLARE_DYNAMIC_CLASS(wxBrush) | |
57 | }; | |
58 | ||
8f884a0d | 59 | #endif // _WX_BRUSH_H_ |