COW cleanup patch (1583966):
[wxWidgets.git] / include / wx / os2 / brush.h
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/gdicmn.h"
16 #include "wx/gdiobj.h"
17 #include "wx/bitmap.h"
18
19 class WXDLLEXPORT wxBrush;
20
21 class WXDLLEXPORT wxBrushRefData: public wxGDIRefData
22 {
23 friend class WXDLLEXPORT wxBrush;
24 public:
25 wxBrushRefData();
26 wxBrushRefData(const wxBrushRefData& rData);
27 virtual ~wxBrushRefData();
28
29 protected:
30 int m_nStyle;
31 wxBitmap m_vStipple ;
32 wxColour m_vColour;
33 WXHBRUSH m_hBrush; // in OS/2 GPI this will be the PS the pen is associated with
34 AREABUNDLE m_vBundle;
35 };
36
37 #define M_BRUSHDATA ((wxBrushRefData *)m_refData)
38
39 // Brush
40 class WXDLLEXPORT wxBrush: public wxBrushBase
41 {
42 DECLARE_DYNAMIC_CLASS(wxBrush)
43
44 public:
45 wxBrush();
46 wxBrush(const wxColour& rCol, int nStyle = wxSOLID);
47 wxBrush(const wxBitmap& rStipple);
48 virtual ~wxBrush();
49
50 inline bool operator == (const wxBrush& rBrush) const;
51 inline bool operator != (const wxBrush& rBrush) const { return !(*this == rBrush); }
52
53 virtual void SetColour(const wxColour& rColour);
54 virtual void SetColour(unsigned char cRed, unsigned char cGreen, unsigned char cBrush);
55 virtual void SetPS(HPS hPS);
56 virtual void SetStyle(int nStyle) ;
57 virtual void SetStipple(const wxBitmap& rStipple);
58
59 inline wxColour& GetColour(void) const { return (M_BRUSHDATA ? M_BRUSHDATA->m_vColour : wxNullColour); };
60 virtual int GetStyle(void) const { return (M_BRUSHDATA ? M_BRUSHDATA->m_nStyle : 0); };
61 inline wxBitmap* GetStipple(void) const { return (M_BRUSHDATA ? & M_BRUSHDATA->m_vStipple : 0); };
62 inline int GetPS(void) const { return (M_BRUSHDATA ? M_BRUSHDATA->m_hBrush : 0); };
63
64 inline virtual bool Ok() const { return IsOk(); }
65 inline virtual bool IsOk(void) const { return (m_refData != NULL) ; }
66
67 //
68 // Implementation
69 //
70
71 //
72 // Useful helper: create the brush resource
73 //
74 bool RealizeResource(void);
75 virtual WXHANDLE GetResourceHandle(void) const;
76 bool FreeResource(bool bForce = false);
77 bool IsFree(void) const;
78 void Unshare(void);
79 }; // end of CLASS wxBrush
80
81 #endif
82 // _WX_BRUSH_H_