| 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 | virtual ~wxBrush(); |
| 32 | |
| 33 | virtual void SetColour(const wxColour& col); |
| 34 | virtual void SetColour(unsigned char r, unsigned char g, unsigned char b); |
| 35 | virtual void SetStyle(int style); |
| 36 | virtual void SetStipple(const wxBitmap& stipple); |
| 37 | |
| 38 | bool operator==(const wxBrush& brush) const; |
| 39 | bool operator!=(const wxBrush& brush) const { return !(*this == brush); } |
| 40 | |
| 41 | wxColour GetColour() const; |
| 42 | virtual int GetStyle() const; |
| 43 | wxBitmap *GetStipple() const; |
| 44 | |
| 45 | bool Ok() const { return IsOk(); } |
| 46 | bool IsOk() const { return m_refData != NULL; } |
| 47 | |
| 48 | // return the HBRUSH for this brush |
| 49 | virtual WXHANDLE GetResourceHandle() const; |
| 50 | |
| 51 | protected: |
| 52 | virtual wxObjectRefData *CreateRefData() const; |
| 53 | virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; |
| 54 | |
| 55 | private: |
| 56 | DECLARE_DYNAMIC_CLASS(wxBrush) |
| 57 | }; |
| 58 | |
| 59 | #endif |
| 60 | // _WX_BRUSH_H_ |