X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/debe6624c1e9d4bf3243381153d1e173c849bcd8..93ccaed86983970c4a2aa5af34593781e5b8964f:/include/wx/msw/brush.h diff --git a/include/wx/msw/brush.h b/include/wx/msw/brush.h index 59fce013ad..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: @@ -46,15 +47,12 @@ class WXDLLEXPORT wxBrush: public wxGDIObject public: wxBrush(void); wxBrush(const wxColour& col, int style); - wxBrush(const wxString& 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 SetColour(unsigned char r, unsigned char g, unsigned char b) ; virtual void SetStyle(int style) ; virtual void SetStipple(const wxBitmap& stipple) ; @@ -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_