X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2bda0e173844e8e0f8acf4e8ad8b5c26e5c6fe5d..794bcc2dea743ac907b839f54e451847c9ea4b72:/include/wx/msw/brush.h diff --git a/include/wx/msw/brush.h b/include/wx/msw/brush.h index 5c568ec04f..05ae288300 100644 --- a/include/wx/msw/brush.h +++ b/include/wx/msw/brush.h @@ -5,12 +5,12 @@ // 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" @@ -27,6 +27,7 @@ class WXDLLEXPORT wxBrushRefData: public wxGDIRefData friend class WXDLLEXPORT wxBrush; public: wxBrushRefData(void); + wxBrushRefData(const wxBrushRefData& data); ~wxBrushRefData(void); protected: @@ -45,17 +46,14 @@ class WXDLLEXPORT wxBrush: public wxGDIObject 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; } @@ -72,13 +70,9 @@ public: bool RealizeResource(void); WXHANDLE GetResourceHandle(void) ; bool FreeResource(bool force = FALSE); -/* - bool UseResource(void); - bool ReleaseResource(void); -*/ - - bool IsFree(void); + bool IsFree() const; + void Unshare(); }; #endif - // __BRUSHH__ + // _WX_BRUSH_H_