]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/brush.h
Some more Motif work; included utils.h in fileconf.cpp (for wxGetHomeDir or something)
[wxWidgets.git] / include / wx / msw / brush.h
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: brush.h
3// Purpose: wxBrush class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bbcdf8bc
JS
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_BRUSH_H_
13#define _WX_BRUSH_H_
2bda0e17
KB
14
15#ifdef __GNUG__
16#pragma interface "brush.h"
17#endif
18
19#include "wx/gdicmn.h"
20#include "wx/gdiobj.h"
21#include "wx/bitmap.h"
22
23class WXDLLEXPORT wxBrush;
24
25class WXDLLEXPORT wxBrushRefData: public wxGDIRefData
26{
27 friend class WXDLLEXPORT wxBrush;
28public:
29 wxBrushRefData(void);
b823f5a1 30 wxBrushRefData(const wxBrushRefData& data);
2bda0e17
KB
31 ~wxBrushRefData(void);
32
33protected:
34 int m_style;
35 wxBitmap m_stipple ;
36 wxColour m_colour;
37 WXHBRUSH m_hBrush;
38};
39
40#define M_BRUSHDATA ((wxBrushRefData *)m_refData)
41
42// Brush
43class WXDLLEXPORT wxBrush: public wxGDIObject
44{
45 DECLARE_DYNAMIC_CLASS(wxBrush)
46
47public:
48 wxBrush(void);
debe6624
JS
49 wxBrush(const wxColour& col, int style);
50 wxBrush(const wxString& col, int style);
2bda0e17
KB
51 wxBrush(const wxBitmap& stipple);
52 inline wxBrush(const wxBrush& brush) { Ref(brush); }
b823f5a1 53 inline wxBrush(const wxBrush* brush) { if (brush) Ref(*brush); }
2bda0e17
KB
54 ~wxBrush(void);
55
56 virtual void SetColour(const wxColour& col) ;
57 virtual void SetColour(const wxString& col) ;
58 virtual void SetColour(const unsigned char r, const unsigned char g, const unsigned char b) ;
debe6624 59 virtual void SetStyle(int style) ;
2bda0e17
KB
60 virtual void SetStipple(const wxBitmap& stipple) ;
61
62 inline wxBrush& operator = (const wxBrush& brush) { if (*this == brush) return (*this); Ref(brush); return *this; }
63 inline bool operator == (const wxBrush& brush) { return m_refData == brush.m_refData; }
64 inline bool operator != (const wxBrush& brush) { return m_refData != brush.m_refData; }
65
66 inline wxColour& GetColour(void) const { return (M_BRUSHDATA ? M_BRUSHDATA->m_colour : wxNullColour); };
67 inline int GetStyle(void) const { return (M_BRUSHDATA ? M_BRUSHDATA->m_style : 0); };
68 inline wxBitmap *GetStipple(void) const { return (M_BRUSHDATA ? & M_BRUSHDATA->m_stipple : 0); };
69
70 virtual bool Ok(void) const { return (m_refData != NULL) ; }
71
72 // Internal
73 bool RealizeResource(void);
74 WXHANDLE GetResourceHandle(void) ;
75 bool FreeResource(bool force = FALSE);
2bda0e17 76 bool IsFree(void);
b823f5a1 77 void Unshare();
2bda0e17
KB
78};
79
80#endif
bbcdf8bc 81 // _WX_BRUSH_H_