1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: brush.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 05:56:58 -05:00
|
|
|
// Id: $Id$
|
1998-10-24 13:12:05 -04:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
1998-12-09 12:30:17 -05:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKBRUSHH__
|
|
|
|
#define __GTKBRUSHH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/string.h"
|
|
|
|
#include "wx/gdiobj.h"
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxBrush;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxBrush
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxBrush: public wxGDIObject
|
|
|
|
{
|
1999-10-11 06:05:36 -04:00
|
|
|
public:
|
2002-02-04 13:01:21 -05:00
|
|
|
wxBrush() { }
|
|
|
|
|
1998-07-04 11:17:59 -04:00
|
|
|
wxBrush( const wxColour &colour, int style );
|
1998-05-20 10:01:55 -04:00
|
|
|
wxBrush( const wxBitmap &stippleBitmap );
|
1998-12-09 12:30:17 -05:00
|
|
|
~wxBrush();
|
2002-02-04 13:01:21 -05:00
|
|
|
|
2002-05-07 17:58:27 -04:00
|
|
|
wxBrush( const wxBrush &brush )
|
|
|
|
: wxGDIObject()
|
|
|
|
{ Ref(brush); }
|
2002-02-04 13:01:21 -05:00
|
|
|
wxBrush& operator = ( const wxBrush& brush ) { Ref(brush); return *this; }
|
|
|
|
|
|
|
|
bool Ok() const { return m_refData != NULL; }
|
|
|
|
|
2000-07-15 15:51:35 -04:00
|
|
|
bool operator == ( const wxBrush& brush ) const;
|
2002-02-04 13:01:21 -05:00
|
|
|
bool operator != (const wxBrush& brush) const { return !(*this == brush); }
|
1998-12-09 12:30:17 -05:00
|
|
|
|
|
|
|
int GetStyle() const;
|
|
|
|
wxColour &GetColour() const;
|
|
|
|
wxBitmap *GetStipple() const;
|
|
|
|
|
1998-09-11 05:05:26 -04:00
|
|
|
void SetColour( const wxColour& col );
|
|
|
|
void SetColour( unsigned char r, unsigned char g, unsigned char b );
|
|
|
|
void SetStyle( int style );
|
|
|
|
void SetStipple( const wxBitmap& stipple );
|
1998-12-09 12:30:17 -05:00
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
private:
|
2002-02-04 13:01:21 -05:00
|
|
|
// ref counting code
|
|
|
|
virtual wxObjectRefData *CreateRefData() const;
|
|
|
|
virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
|
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxBrush)
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKBRUSHH__
|