]> git.saurik.com Git - wxWidgets.git/blame - include/wx/motif/brush.h
an extra backslash removed
[wxWidgets.git] / include / wx / motif / brush.h
CommitLineData
9b6dbb09
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: brush.h
3// Purpose: wxBrush class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_BRUSH_H_
13#define _WX_BRUSH_H_
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();
30 wxBrushRefData(const wxBrushRefData& data);
31 ~wxBrushRefData();
32
33protected:
34 int m_style;
35 wxBitmap m_stipple ;
36 wxColour m_colour;
9b6dbb09
JS
37};
38
39#define M_BRUSHDATA ((wxBrushRefData *)m_refData)
40
41// Brush
42class WXDLLEXPORT wxBrush: public wxGDIObject
43{
44 DECLARE_DYNAMIC_CLASS(wxBrush)
45
46public:
47 wxBrush();
48 wxBrush(const wxColour& col, int style);
49 wxBrush(const wxString& col, int style);
50 wxBrush(const wxBitmap& stipple);
51 inline wxBrush(const wxBrush& brush) { Ref(brush); }
52 inline wxBrush(const wxBrush* brush) { if (brush) Ref(*brush); }
53 ~wxBrush();
54
55 virtual void SetColour(const wxColour& col) ;
56 virtual void SetColour(const wxString& col) ;
57 virtual void SetColour(unsigned char r, unsigned char g, unsigned char b) ;
58 virtual void SetStyle(int style) ;
59 virtual void SetStipple(const wxBitmap& stipple) ;
60
61 inline wxBrush& operator = (const wxBrush& brush) { if (*this == brush) return (*this); Ref(brush); return *this; }
62 inline bool operator == (const wxBrush& brush) { return m_refData == brush.m_refData; }
63 inline bool operator != (const wxBrush& brush) { return m_refData != brush.m_refData; }
64
65 inline wxColour& GetColour() const { return (M_BRUSHDATA ? M_BRUSHDATA->m_colour : wxNullColour); };
66 inline int GetStyle() const { return (M_BRUSHDATA ? M_BRUSHDATA->m_style : 0); };
67 inline wxBitmap *GetStipple() const { return (M_BRUSHDATA ? & M_BRUSHDATA->m_stipple : 0); };
68
69 virtual bool Ok() const { return (m_refData != NULL) ; }
70
71// Implementation
72
73 // Useful helper: create the brush resource
dfc54541 74 bool RealizeResource();
9b6dbb09
JS
75
76 // When setting properties, we must make sure we're not changing
77 // another object
78 void Unshare();
79};
80
81#endif
82 // _WX_BRUSH_H_