1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-10-04 16:13:42 +00:00
|
|
|
// Name: wx/os2/brush.h
|
1999-07-29 05:11:30 +00:00
|
|
|
// Purpose: wxBrush class
|
1999-10-14 04:43:46 +00:00
|
|
|
// Author: David Webster
|
1999-07-29 05:11:30 +00:00
|
|
|
// Modified by:
|
1999-10-14 04:43:46 +00:00
|
|
|
// Created: 10/13/99
|
1999-07-29 05:11:30 +00:00
|
|
|
// RCS-ID: $Id$
|
1999-10-14 04:43:46 +00:00
|
|
|
// Copyright: (c) David Webster
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_BRUSH_H_
|
|
|
|
#define _WX_BRUSH_H_
|
|
|
|
|
2008-03-23 19:12:15 +00:00
|
|
|
#include "wx/bitmap.h"
|
1999-07-29 05:11:30 +00:00
|
|
|
|
|
|
|
// Brush
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxBrush: public wxBrushBase
|
1999-07-29 05:11:30 +00:00
|
|
|
{
|
|
|
|
public:
|
2000-12-12 04:47:28 +00:00
|
|
|
wxBrush();
|
2008-03-16 16:47:57 +00:00
|
|
|
wxBrush(const wxColour& rCol, wxBrushStyle nStyle = 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
|
2000-12-12 04:47:28 +00:00
|
|
|
wxBrush(const wxBitmap& rStipple);
|
2006-09-05 20:47:48 +00:00
|
|
|
virtual ~wxBrush();
|
2000-12-12 04:47:28 +00:00
|
|
|
|
2006-11-01 21:37:00 +00:00
|
|
|
bool operator == (const wxBrush& rBrush) const;
|
2006-10-30 19:26:48 +00:00
|
|
|
inline bool operator != (const wxBrush& rBrush) const { return !(*this == rBrush); }
|
2000-12-12 04:47:28 +00:00
|
|
|
|
|
|
|
virtual void SetColour(const wxColour& rColour);
|
2005-10-04 18:14:41 +00:00
|
|
|
virtual void SetColour(unsigned char cRed, unsigned char cGreen, unsigned char cBrush);
|
2000-12-12 04:47:28 +00:00
|
|
|
virtual void SetPS(HPS hPS);
|
2008-03-16 16:47:57 +00:00
|
|
|
virtual void SetStyle(wxBrushStyle nStyle);
|
2000-12-12 04:47:28 +00:00
|
|
|
virtual void SetStipple(const wxBitmap& rStipple);
|
|
|
|
|
2008-03-23 17:41:16 +00:00
|
|
|
wxColour GetColour(void) const;
|
|
|
|
virtual wxBrushStyle GetStyle(void) const;
|
|
|
|
wxBitmap* GetStipple(void) const;
|
|
|
|
int GetPS(void) const;
|
2000-12-12 04:47:28 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Implementation
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Useful helper: create the brush resource
|
|
|
|
//
|
|
|
|
bool RealizeResource(void);
|
2006-10-23 11:58:28 +00:00
|
|
|
virtual WXHANDLE GetResourceHandle(void) const;
|
2004-11-30 18:46:20 +00:00
|
|
|
bool FreeResource(bool bForce = false);
|
2000-12-12 04:47:28 +00:00
|
|
|
bool IsFree(void) const;
|
2008-01-12 15:05:15 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual wxGDIRefData *CreateGDIRefData() const;
|
|
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxBrush)
|
2000-12-12 04:47:28 +00:00
|
|
|
}; // end of CLASS wxBrush
|
1999-07-29 05:11:30 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_BRUSH_H_
|