1999-07-29 01:11:30 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-10-04 12:13:42 -04:00
|
|
|
// Name: wx/os2/brush.h
|
1999-07-29 01:11:30 -04:00
|
|
|
// Purpose: wxBrush class
|
1999-10-14 00:43:46 -04:00
|
|
|
// Author: David Webster
|
1999-07-29 01:11:30 -04:00
|
|
|
// Modified by:
|
1999-10-14 00:43:46 -04:00
|
|
|
// Created: 10/13/99
|
1999-07-29 01:11:30 -04:00
|
|
|
// RCS-ID: $Id$
|
1999-10-14 00:43:46 -04:00
|
|
|
// Copyright: (c) David Webster
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1999-07-29 01:11:30 -04: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-11 23:47:28 -05:00
|
|
|
wxBrushRefData(const wxBrushRefData& rData);
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxBrushRefData();
|
1999-07-29 01:11:30 -04:00
|
|
|
|
2006-10-31 07:02:36 -05: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 01:11:30 -04:00
|
|
|
protected:
|
2005-10-04 12:13:42 -04: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 01:11:30 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#define M_BRUSHDATA ((wxBrushRefData *)m_refData)
|
|
|
|
|
|
|
|
// Brush
|
2004-12-03 10:31:31 -05:00
|
|
|
class WXDLLEXPORT wxBrush: public wxBrushBase
|
1999-07-29 01:11:30 -04:00
|
|
|
{
|
2000-12-11 23:47:28 -05:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxBrush)
|
1999-07-29 01:11:30 -04:00
|
|
|
|
|
|
|
public:
|
2000-12-11 23:47:28 -05:00
|
|
|
wxBrush();
|
2005-10-04 12:13:42 -04:00
|
|
|
wxBrush(const wxColour& rCol, int nStyle = wxSOLID);
|
2000-12-11 23:47:28 -05:00
|
|
|
wxBrush(const wxBitmap& rStipple);
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxBrush();
|
2000-12-11 23:47:28 -05:00
|
|
|
|
2006-11-01 16:37:00 -05:00
|
|
|
bool operator == (const wxBrush& rBrush) const;
|
2006-10-30 14:26:48 -05:00
|
|
|
inline bool operator != (const wxBrush& rBrush) const { return !(*this == rBrush); }
|
2000-12-11 23:47:28 -05:00
|
|
|
|
|
|
|
virtual void SetColour(const wxColour& rColour);
|
2005-10-04 14:14:41 -04:00
|
|
|
virtual void SetColour(unsigned char cRed, unsigned char cGreen, unsigned char cBrush);
|
2000-12-11 23:47:28 -05: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 10:31:31 -05:00
|
|
|
virtual int GetStyle(void) const { return (M_BRUSHDATA ? M_BRUSHDATA->m_nStyle : 0); };
|
2000-12-11 23:47:28 -05: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 17:56:55 -04:00
|
|
|
inline virtual bool Ok() const { return IsOk(); }
|
|
|
|
inline virtual bool IsOk(void) const { return (m_refData != NULL) ; }
|
2000-12-11 23:47:28 -05:00
|
|
|
|
|
|
|
//
|
|
|
|
// Implementation
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Useful helper: create the brush resource
|
|
|
|
//
|
|
|
|
bool RealizeResource(void);
|
2006-10-23 07:58:28 -04:00
|
|
|
virtual WXHANDLE GetResourceHandle(void) const;
|
2004-11-30 13:46:20 -05:00
|
|
|
bool FreeResource(bool bForce = false);
|
2000-12-11 23:47:28 -05:00
|
|
|
bool IsFree(void) const;
|
|
|
|
void Unshare(void);
|
|
|
|
}; // end of CLASS wxBrush
|
1999-07-29 01:11:30 -04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_BRUSH_H_
|