2001-06-26 17:05:06 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-10-04 12:13:42 -04:00
|
|
|
// Name: wx/mgl/brush.h
|
2001-06-26 17:05:06 -04:00
|
|
|
// Purpose:
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Id: $Id$
|
2002-02-14 15:30:34 -05:00
|
|
|
// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 17:05:06 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __WX_BRUSH_H__
|
|
|
|
#define __WX_BRUSH_H__
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/string.h"
|
|
|
|
#include "wx/gdiobj.h"
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxBitmap;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxBrush;
|
2001-06-26 17:05:06 -04:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxBrush
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxBrush : public wxBrushBase
|
2001-06-26 17:05:06 -04:00
|
|
|
{
|
|
|
|
public:
|
2001-11-20 19:00:29 -05:00
|
|
|
wxBrush() {}
|
2008-03-16 12:47:57 -04:00
|
|
|
wxBrush(const wxColour &colour, wxBrushStyle style = wxBRUSHSTYLE_SOLID);
|
2008-03-20 11:08:51 -04:00
|
|
|
#if FUTURE_WXWIN_COMPATIBILITY_3_0
|
|
|
|
wxDEPRECATED_FUTURE( wxBrush(const wxColour& col, int style) );
|
|
|
|
#endif
|
2001-06-26 17:05:06 -04:00
|
|
|
wxBrush(const wxBitmap &stippleBitmap);
|
2007-12-15 12:54:20 -05:00
|
|
|
|
|
|
|
bool operator==(const wxBrush& brush) const;
|
|
|
|
bool operator!=(const wxBrush& brush) const;
|
2001-06-26 17:05:06 -04:00
|
|
|
|
2008-03-28 12:47:58 -04:00
|
|
|
wxBrushStyle GetStyle() const;
|
|
|
|
wxColour GetColour() const;
|
2001-06-26 17:05:06 -04:00
|
|
|
wxBitmap *GetStipple() const;
|
|
|
|
|
|
|
|
void SetColour(const wxColour& col);
|
2005-10-04 14:14:41 -04:00
|
|
|
void SetColour(unsigned char r, unsigned char g, unsigned char b);
|
2008-03-16 12:47:57 -04:00
|
|
|
void SetStyle(wxBrushStyle style);
|
2001-06-26 17:05:06 -04:00
|
|
|
void SetStipple(const wxBitmap& stipple);
|
2004-11-30 13:46:20 -05:00
|
|
|
|
2001-06-26 17:05:06 -04:00
|
|
|
// implementation:
|
|
|
|
|
|
|
|
void* GetMaskPattern() const;
|
|
|
|
void* GetPixPattern() const;
|
|
|
|
|
2002-02-09 18:29:05 -05:00
|
|
|
protected:
|
2007-12-15 12:54:20 -05:00
|
|
|
virtual wxGDIRefData *CreateGDIRefData() const;
|
|
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
|
2002-02-09 18:29:05 -05:00
|
|
|
|
2001-06-26 17:05:06 -04:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxBrush)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __WX_BRUSH_H__
|