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
|
1998-12-09 17:30:17 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00: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
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxBrush)
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
1998-12-09 17:30:17 +00:00
|
|
|
wxBrush();
|
1998-07-04 15:17:59 +00:00
|
|
|
wxBrush( const wxColour &colour, int style );
|
1998-05-20 14:01:55 +00:00
|
|
|
wxBrush( const wxBitmap &stippleBitmap );
|
|
|
|
wxBrush( const wxBrush &brush );
|
1998-12-09 17:30:17 +00:00
|
|
|
~wxBrush();
|
1998-05-20 14:01:55 +00:00
|
|
|
wxBrush& operator = ( const wxBrush& brush );
|
|
|
|
bool operator == ( const wxBrush& brush );
|
|
|
|
bool operator != ( const wxBrush& brush );
|
1998-12-09 17:30:17 +00:00
|
|
|
bool Ok() const;
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
void Unshare();
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// no data :-)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKBRUSHH__
|