]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/brush.h
added wxBookCtrl::ChangeSelection() which is the same as SetSelection() but doesn...
[wxWidgets.git] / include / wx / msw / brush.h
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
cafbad8f 2// Name: wx/msw/brush.h
2bda0e17
KB
3// Purpose: wxBrush class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bbcdf8bc 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_BRUSH_H_
13#define _WX_BRUSH_H_
2bda0e17 14
2bda0e17
KB
15#include "wx/gdicmn.h"
16#include "wx/gdiobj.h"
17#include "wx/bitmap.h"
18
19class WXDLLEXPORT wxBrush;
20
cafbad8f
VZ
21// ----------------------------------------------------------------------------
22// wxBrush
23// ----------------------------------------------------------------------------
24
cb9d5bd0 25class WXDLLEXPORT wxBrush : public wxBrushBase
2bda0e17 26{
2bda0e17 27public:
cafbad8f 28 wxBrush();
5b36366c 29 wxBrush(const wxColour& col, int style = wxSOLID);
cafbad8f 30 wxBrush(const wxBitmap& stipple);
cafbad8f 31 virtual ~wxBrush();
2bda0e17 32
cafbad8f 33 virtual void SetColour(const wxColour& col);
1a1498c0 34 virtual void SetColour(unsigned char r, unsigned char g, unsigned char b);
cafbad8f
VZ
35 virtual void SetStyle(int style);
36 virtual void SetStipple(const wxBitmap& stipple);
2bda0e17 37
cafbad8f
VZ
38 bool operator==(const wxBrush& brush) const;
39 bool operator!=(const wxBrush& brush) const { return !(*this == brush); }
2bda0e17 40
cafbad8f 41 wxColour GetColour() const;
cb9d5bd0 42 virtual int GetStyle() const;
cafbad8f 43 wxBitmap *GetStipple() const;
2bda0e17 44
cafbad8f 45 bool Ok() const { return m_refData != NULL; }
2bda0e17 46
2b5f62a0
VZ
47 // return the HBRUSH for this brush
48 virtual WXHANDLE GetResourceHandle() const;
2bda0e17 49
cafbad8f
VZ
50protected:
51 virtual wxObjectRefData *CreateRefData() const;
52 virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
2bda0e17 53
cafbad8f
VZ
54private:
55 DECLARE_DYNAMIC_CLASS(wxBrush)
2bda0e17
KB
56};
57
58#endif
bbcdf8bc 59 // _WX_BRUSH_H_