]>
Commit | Line | Data |
---|---|---|
8cf73271 | 1 | ///////////////////////////////////////////////////////////////////////////// |
46562151 | 2 | // Name: wx/mac/carbon/brush.h |
8cf73271 SC |
3 | // Purpose: wxBrush class |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
65571936 | 9 | // Licence: wxWindows licence |
8cf73271 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_BRUSH_H_ | |
13 | #define _WX_BRUSH_H_ | |
14 | ||
8cf73271 SC |
15 | #include "wx/gdicmn.h" |
16 | #include "wx/gdiobj.h" | |
17 | #include "wx/bitmap.h" | |
18 | ||
b5dbe15d | 19 | class WXDLLIMPEXP_FWD_CORE wxBrush; |
8cf73271 | 20 | |
8cf73271 | 21 | // Brush |
cb9d5bd0 | 22 | class WXDLLEXPORT wxBrush: public wxBrushBase |
8cf73271 | 23 | { |
850df2d7 | 24 | public: |
ab9d0a8c | 25 | wxBrush(); |
ab9d0a8c WS |
26 | wxBrush(const wxColour& col, int style = wxSOLID); |
27 | wxBrush(const wxBitmap& stipple); | |
d3c7fc99 | 28 | virtual ~wxBrush(); |
ab9d0a8c | 29 | |
46562151 | 30 | virtual void SetColour(const wxColour& col) ; |
1a1498c0 | 31 | virtual void SetColour(unsigned char r, unsigned char g, unsigned char b) ; |
ab9d0a8c WS |
32 | virtual void SetStyle(int style) ; |
33 | virtual void SetStipple(const wxBitmap& stipple) ; | |
ab9d0a8c | 34 | |
55ccdb93 | 35 | bool operator == (const wxBrush& brush) const; |
fbfb8bcc | 36 | bool operator != (const wxBrush& brush) const |
55ccdb93 | 37 | { return !(*this == brush); } |
ab9d0a8c | 38 | |
850df2d7 | 39 | const wxColour& GetColour() const ; |
cb9d5bd0 | 40 | virtual int GetStyle() const ; |
ab9d0a8c WS |
41 | wxBitmap *GetStipple() const ; |
42 | ||
850df2d7 SC |
43 | protected: |
44 | virtual wxObjectRefData *CreateRefData() const; | |
45 | virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; | |
83dcd781 | 46 | private: |
850df2d7 | 47 | DECLARE_DYNAMIC_CLASS(wxBrush) |
8cf73271 SC |
48 | }; |
49 | ||
50 | #endif | |
51 | // _WX_BRUSH_H_ |