2004-10-19 13:40:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/palmos/brush.h
|
|
|
|
// Purpose: wxBrush class
|
2005-01-18 21:14:27 +00:00
|
|
|
// Author: William Osborne - minimal working wxPalmOS port
|
2004-10-19 13:40:30 +00:00
|
|
|
// Modified by:
|
|
|
|
// Created: 10/13/04
|
2005-01-18 21:14:27 +00:00
|
|
|
// RCS-ID: $Id$
|
2004-10-19 13:40:30 +00:00
|
|
|
// Copyright: (c) William Osborne
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_BRUSH_H_
|
|
|
|
#define _WX_BRUSH_H_
|
|
|
|
|
|
|
|
#include "wx/gdicmn.h"
|
|
|
|
#include "wx/gdiobj.h"
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxBrush;
|
2004-10-19 13:40:30 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxBrush
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxBrush : public wxBrushBase
|
2004-10-19 13:40:30 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxBrush();
|
2008-03-16 16:47:57 +00:00
|
|
|
wxBrush(const wxColour& col, wxBrushStyle style = wxBRUSHSTYLE_SOLID);
|
2008-03-20 15:08:51 +00:00
|
|
|
#if FUTURE_WXWIN_COMPATIBILITY_3_0
|
|
|
|
wxDEPRECATED_FUTURE( wxBrush(const wxColour& col, int style) );
|
|
|
|
#endif
|
2004-10-19 13:40:30 +00:00
|
|
|
wxBrush(const wxBitmap& stipple);
|
|
|
|
virtual ~wxBrush();
|
|
|
|
|
|
|
|
virtual void SetColour(const wxColour& col);
|
2005-10-04 18:14:41 +00:00
|
|
|
virtual void SetColour(unsigned char r, unsigned char g, unsigned char b);
|
2008-03-16 16:47:57 +00:00
|
|
|
virtual void SetStyle(wxBrushStyle style);
|
2004-10-19 13:40:30 +00:00
|
|
|
virtual void SetStipple(const wxBitmap& stipple);
|
|
|
|
|
|
|
|
bool operator==(const wxBrush& brush) const;
|
|
|
|
bool operator!=(const wxBrush& brush) const { return !(*this == brush); }
|
|
|
|
|
|
|
|
wxColour GetColour() const;
|
2008-03-28 16:47:58 +00:00
|
|
|
wxBrushStyle GetStyle() const;
|
2004-10-19 13:40:30 +00:00
|
|
|
wxBitmap *GetStipple() const;
|
|
|
|
|
2008-06-17 17:28:26 +00:00
|
|
|
#if FUTURE_WXWIN_COMPATIBILITY_3_0
|
|
|
|
wxDEPRECATED_FUTURE( void SetStyle(int style) )
|
|
|
|
{ SetStyle((wxBrushStyle)style); }
|
|
|
|
#endif
|
|
|
|
|
2004-10-19 13:40:30 +00:00
|
|
|
// return the HBRUSH for this brush
|
|
|
|
virtual WXHANDLE GetResourceHandle() const;
|
|
|
|
|
|
|
|
protected:
|
2007-12-15 17:54:20 +00:00
|
|
|
virtual wxGDIRefData *CreateGDIRefData() const;
|
|
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
|
2004-10-19 13:40:30 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxBrush)
|
|
|
|
};
|
|
|
|
|
2007-12-15 17:54:20 +00:00
|
|
|
#endif // _WX_BRUSH_H_
|