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