]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/os2/brush.h | |
3 | // Purpose: wxBrush class | |
4 | // Author: David Webster | |
5 | // Modified by: | |
6 | // Created: 10/13/99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) David Webster | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_BRUSH_H_ | |
13 | #define _WX_BRUSH_H_ | |
14 | ||
15 | #include "wx/bitmap.h" | |
16 | ||
17 | // Brush | |
18 | class WXDLLIMPEXP_CORE wxBrush: public wxBrushBase | |
19 | { | |
20 | public: | |
21 | wxBrush(); | |
22 | wxBrush(const wxColour& rCol, wxBrushStyle nStyle = wxBRUSHSTYLE_SOLID); | |
23 | #if FUTURE_WXWIN_COMPATIBILITY_3_0 | |
24 | wxDEPRECATED_FUTURE( wxBrush(const wxColour& col, int style) ); | |
25 | #endif | |
26 | wxBrush(const wxBitmap& rStipple); | |
27 | virtual ~wxBrush(); | |
28 | ||
29 | bool operator == (const wxBrush& rBrush) const; | |
30 | inline bool operator != (const wxBrush& rBrush) const { return !(*this == rBrush); } | |
31 | ||
32 | virtual void SetColour(const wxColour& rColour); | |
33 | virtual void SetColour(unsigned char cRed, unsigned char cGreen, unsigned char cBrush); | |
34 | virtual void SetPS(HPS hPS); | |
35 | virtual void SetStyle(wxBrushStyle nStyle); | |
36 | virtual void SetStipple(const wxBitmap& rStipple); | |
37 | ||
38 | wxColour GetColour(void) const; | |
39 | virtual wxBrushStyle GetStyle(void) const; | |
40 | wxBitmap* GetStipple(void) const; | |
41 | int GetPS(void) const; | |
42 | ||
43 | // | |
44 | // Implementation | |
45 | // | |
46 | ||
47 | // | |
48 | // Useful helper: create the brush resource | |
49 | // | |
50 | bool RealizeResource(void); | |
51 | virtual WXHANDLE GetResourceHandle(void) const; | |
52 | bool FreeResource(bool bForce = false); | |
53 | bool IsFree(void) const; | |
54 | ||
55 | protected: | |
56 | virtual wxGDIRefData *CreateGDIRefData() const; | |
57 | virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const; | |
58 | ||
59 | private: | |
60 | DECLARE_DYNAMIC_CLASS(wxBrush) | |
61 | }; // end of CLASS wxBrush | |
62 | ||
63 | #endif | |
64 | // _WX_BRUSH_H_ |