// Modified by:
// Created: 01/02/97
// RCS-ID: $Id$
-// Copyright: (c) Julian Smart and Markus Holzem
-// Licence: wxWindows license
+// Copyright: (c) Julian Smart
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifndef __BRUSHH__
-#define __BRUSHH__
+#ifndef _WX_BRUSH_H_
+#define _WX_BRUSH_H_
#ifdef __GNUG__
#pragma interface "brush.h"
friend class WXDLLEXPORT wxBrush;
public:
wxBrushRefData(void);
+ wxBrushRefData(const wxBrushRefData& data);
~wxBrushRefData(void);
protected:
public:
wxBrush(void);
- wxBrush(const wxColour& col, const int style);
- wxBrush(const wxString& col, const int style);
+ wxBrush(const wxColour& col, int style);
wxBrush(const wxBitmap& stipple);
inline wxBrush(const wxBrush& brush) { Ref(brush); }
- inline wxBrush(const wxBrush* brush) { /* UnRef(); */ if (brush) Ref(*brush); }
~wxBrush(void);
virtual void SetColour(const wxColour& col) ;
- virtual void SetColour(const wxString& col) ;
- virtual void SetColour(const unsigned char r, const unsigned char g, const unsigned char b) ;
- virtual void SetStyle(const int style) ;
+ virtual void SetColour(unsigned char r, unsigned char g, unsigned char b) ;
+ virtual void SetStyle(int style) ;
virtual void SetStipple(const wxBitmap& stipple) ;
inline wxBrush& operator = (const wxBrush& brush) { if (*this == brush) return (*this); Ref(brush); return *this; }
bool RealizeResource(void);
WXHANDLE GetResourceHandle(void) ;
bool FreeResource(bool force = FALSE);
-/*
- bool UseResource(void);
- bool ReleaseResource(void);
-*/
-
bool IsFree(void);
+ void Unshare();
};
#endif
- // __BRUSHH__
+ // _WX_BRUSH_H_