]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/brush.h
Spelling fixes from Andreas Mohr (patch #1360064)
[wxWidgets.git] / include / wx / os2 / brush.h
CommitLineData
0e320a79 1/////////////////////////////////////////////////////////////////////////////
46562151 2// Name: wx/os2/brush.h
0e320a79 3// Purpose: wxBrush class
37f214d5 4// Author: David Webster
0e320a79 5// Modified by:
37f214d5 6// Created: 10/13/99
0e320a79 7// RCS-ID: $Id$
37f214d5 8// Copyright: (c) David Webster
65571936 9// Licence: wxWindows licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_BRUSH_H_
13#define _WX_BRUSH_H_
14
0e320a79
DW
15#include "wx/gdicmn.h"
16#include "wx/gdiobj.h"
17#include "wx/bitmap.h"
18
19class WXDLLEXPORT wxBrush;
20
21class WXDLLEXPORT wxBrushRefData: public wxGDIRefData
22{
23 friend class WXDLLEXPORT wxBrush;
24public:
25 wxBrushRefData();
15f03b25 26 wxBrushRefData(const wxBrushRefData& rData);
0e320a79
DW
27 ~wxBrushRefData();
28
29protected:
46562151
WS
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;
0e320a79
DW
35};
36
37#define M_BRUSHDATA ((wxBrushRefData *)m_refData)
38
39// Brush
cb9d5bd0 40class WXDLLEXPORT wxBrush: public wxBrushBase
0e320a79 41{
15f03b25 42 DECLARE_DYNAMIC_CLASS(wxBrush)
0e320a79
DW
43
44public:
15f03b25 45 wxBrush();
46562151 46 wxBrush(const wxColour& rCol, int nStyle = wxSOLID);
15f03b25
DW
47 wxBrush(const wxBitmap& rStipple);
48 inline wxBrush(const wxBrush& rBrush) { Ref(rBrush); }
49 ~wxBrush();
50
51 inline wxBrush& operator = (const wxBrush& rBrush) { if (*this == rBrush) return (*this); Ref(rBrush); return *this; }
ba2de0a1
SN
52 inline bool operator == (const wxBrush& rBrush) const { return m_refData == rBrush.m_refData; }
53 inline bool operator != (const wxBrush& rBrush) const { return m_refData != rBrush.m_refData; }
15f03b25
DW
54
55 virtual void SetColour(const wxColour& rColour);
1a1498c0 56 virtual void SetColour(unsigned char cRed, unsigned char cGreen, unsigned char cBrush);
15f03b25
DW
57 virtual void SetPS(HPS hPS);
58 virtual void SetStyle(int nStyle) ;
59 virtual void SetStipple(const wxBitmap& rStipple);
60
61 inline wxColour& GetColour(void) const { return (M_BRUSHDATA ? M_BRUSHDATA->m_vColour : wxNullColour); };
cb9d5bd0 62 virtual int GetStyle(void) const { return (M_BRUSHDATA ? M_BRUSHDATA->m_nStyle : 0); };
15f03b25
DW
63 inline wxBitmap* GetStipple(void) const { return (M_BRUSHDATA ? & M_BRUSHDATA->m_vStipple : 0); };
64 inline int GetPS(void) const { return (M_BRUSHDATA ? M_BRUSHDATA->m_hBrush : 0); };
65
66 inline virtual bool Ok(void) const { return (m_refData != NULL) ; }
67
68 //
69 // Implementation
70 //
71
72 //
73 // Useful helper: create the brush resource
74 //
75 bool RealizeResource(void);
76 WXHANDLE GetResourceHandle(void) ;
ab9d0a8c 77 bool FreeResource(bool bForce = false);
15f03b25
DW
78 bool IsFree(void) const;
79 void Unshare(void);
80}; // end of CLASS wxBrush
0e320a79
DW
81
82#endif
83 // _WX_BRUSH_H_