1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: brush.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 10:56:58 +00:00
|
|
|
// Id: $Id$
|
1998-10-24 17:12:05 +00:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKBRUSHH__
|
|
|
|
#define __GTKBRUSHH__
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1998-05-20 14:01:55 +00:00
|
|
|
#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 10:05:36 +00:00
|
|
|
public:
|
2002-02-04 18:01:21 +00:00
|
|
|
wxBrush() { }
|
|
|
|
|
2003-07-21 20:41:48 +00:00
|
|
|
wxBrush( const wxColour &colour, int style = wxSOLID );
|
1998-05-20 14:01:55 +00:00
|
|
|
wxBrush( const wxBitmap &stippleBitmap );
|
1998-12-09 17:30:17 +00:00
|
|
|
~wxBrush();
|
2002-02-04 18:01:21 +00:00
|
|
|
|
2002-05-07 21:58:27 +00:00
|
|
|
wxBrush( const wxBrush &brush )
|
|
|
|
: wxGDIObject()
|
|
|
|
{ Ref(brush); }
|
2002-02-04 18:01:21 +00:00
|
|
|
wxBrush& operator = ( const wxBrush& brush ) { Ref(brush); return *this; }
|
|
|
|
|
|
|
|
bool Ok() const { return m_refData != NULL; }
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
bool operator == ( const wxBrush& brush ) const;
|
2002-02-04 18:01:21 +00:00
|
|
|
bool operator != (const wxBrush& brush) const { return !(*this == brush); }
|
1998-12-09 17:30:17 +00:00
|
|
|
|
|
|
|
int GetStyle() const;
|
|
|
|
wxColour &GetColour() const;
|
|
|
|
wxBitmap *GetStipple() const;
|
|
|
|
|
1998-09-11 09:05:26 +00: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 17:30:17 +00:00
|
|
|
|
1999-10-11 10:05:36 +00:00
|
|
|
private:
|
2002-02-04 18:01:21 +00:00
|
|
|
// ref counting code
|
|
|
|
virtual wxObjectRefData *CreateRefData() const;
|
|
|
|
virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
|
|
|
|
|
1999-10-11 10:05:36 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxBrush)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKBRUSHH__
|