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_
|
|
|
|
|
|
|
|
#include "wx/gdicmn.h"
|
|
|
|
#include "wx/gdiobj.h"
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxBrush;
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxBrushRefData: public wxGDIRefData
|
|
|
|
{
|
|
|
|
friend class WXDLLEXPORT wxBrush;
|
|
|
|
public:
|
|
|
|
wxBrushRefData();
|
2000-12-12 04:47:28 +00:00
|
|
|
wxBrushRefData(const wxBrushRefData& rData);
|
2006-09-05 20:47:48 +00:00
|
|
|
virtual ~wxBrushRefData();
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2006-10-31 12:02:36 +00:00
|
|
|
bool operator == (const wxBrushRefData& data) const
|
|
|
|
{
|
|
|
|
return (m_nStyle == data.m_nStyle &&
|
|
|
|
m_vStipple.IsSameAs(data.m_vStipple) &&
|
|
|
|
m_vColour == data.m_vColour);
|
|
|
|
}
|
|
|
|
|
1999-07-29 05:11:30 +00:00
|
|
|
protected:
|
2005-10-04 16:13:42 +00:00
|
|
|
int m_nStyle;
|
|
|
|
wxBitmap m_vStipple ;
|
|
|
|
wxColour m_vColour;
|
|
|
|
WXHBRUSH m_hBrush; // in OS/2 GPI this will be the PS the pen is associated with
|
|
|
|
AREABUNDLE m_vBundle;
|
1999-07-29 05:11:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define M_BRUSHDATA ((wxBrushRefData *)m_refData)
|
|
|
|
|
|
|
|
// Brush
|
2004-12-03 15:31:31 +00:00
|
|
|
class WXDLLEXPORT wxBrush: public wxBrushBase
|
1999-07-29 05:11:30 +00:00
|
|
|
{
|
2000-12-12 04:47:28 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxBrush)
|
1999-07-29 05:11:30 +00:00
|
|
|
|
|
|
|
public:
|
2000-12-12 04:47:28 +00:00
|
|
|
wxBrush();
|
2005-10-04 16:13:42 +00:00
|
|
|
wxBrush(const wxColour& rCol, int nStyle = wxSOLID);
|
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);
|
|
|
|
virtual void SetStyle(int nStyle) ;
|
|
|
|
virtual void SetStipple(const wxBitmap& rStipple);
|
|
|
|
|
|
|
|
inline wxColour& GetColour(void) const { return (M_BRUSHDATA ? M_BRUSHDATA->m_vColour : wxNullColour); };
|
2004-12-03 15:31:31 +00:00
|
|
|
virtual int GetStyle(void) const { return (M_BRUSHDATA ? M_BRUSHDATA->m_nStyle : 0); };
|
2000-12-12 04:47:28 +00:00
|
|
|
inline wxBitmap* GetStipple(void) const { return (M_BRUSHDATA ? & M_BRUSHDATA->m_vStipple : 0); };
|
|
|
|
inline int GetPS(void) const { return (M_BRUSHDATA ? M_BRUSHDATA->m_hBrush : 0); };
|
|
|
|
|
2006-10-08 21:56:55 +00:00
|
|
|
inline virtual bool Ok() const { return IsOk(); }
|
|
|
|
inline virtual bool IsOk(void) const { return (m_refData != NULL) ; }
|
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;
|
|
|
|
void Unshare(void);
|
|
|
|
}; // end of CLASS wxBrush
|
1999-07-29 05:11:30 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_BRUSH_H_
|