1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: brush.h
|
|
|
|
// 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);
|
1999-07-29 05:11:30 +00:00
|
|
|
~wxBrushRefData();
|
|
|
|
|
|
|
|
protected:
|
2000-12-12 04:47:28 +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();
|
|
|
|
wxBrush( const wxColour& rCol
|
2003-07-21 20:41:48 +00:00
|
|
|
,int nStyle = wxSOLID
|
2000-12-12 04:47:28 +00:00
|
|
|
);
|
|
|
|
wxBrush(const wxBitmap& rStipple);
|
|
|
|
inline wxBrush(const wxBrush& rBrush) { Ref(rBrush); }
|
|
|
|
~wxBrush();
|
|
|
|
|
|
|
|
inline wxBrush& operator = (const wxBrush& rBrush) { if (*this == rBrush) return (*this); Ref(rBrush); return *this; }
|
2004-05-09 15:03:10 +00:00
|
|
|
inline bool operator == (const wxBrush& rBrush) const { return m_refData == rBrush.m_refData; }
|
|
|
|
inline bool operator != (const wxBrush& rBrush) const { return m_refData != rBrush.m_refData; }
|
2000-12-12 04:47:28 +00:00
|
|
|
|
|
|
|
virtual void SetColour(const wxColour& rColour);
|
|
|
|
virtual void SetColour( unsigned char cRed
|
|
|
|
,unsigned char cGreen
|
|
|
|
,unsigned char cBrush
|
|
|
|
);
|
|
|
|
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); };
|
|
|
|
|
|
|
|
inline virtual bool Ok(void) const { return (m_refData != NULL) ; }
|
|
|
|
|
|
|
|
//
|
|
|
|
// Implementation
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Useful helper: create the brush resource
|
|
|
|
//
|
|
|
|
bool RealizeResource(void);
|
|
|
|
WXHANDLE GetResourceHandle(void) ;
|
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_
|