X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8a667305e7e4e2052ae689e7c4d73efc7518be30..b513212d2eab4daacd56606d6c7d489639e3215b:/include/wx/gtk1/pen.h diff --git a/include/wx/gtk1/pen.h b/include/wx/gtk1/pen.h index 20d09c2ed4..cf1464fdb1 100644 --- a/include/wx/gtk1/pen.h +++ b/include/wx/gtk1/pen.h @@ -40,13 +40,18 @@ typedef gchar wxGTKDash; class wxPen: public wxGDIObject { public: - wxPen(); + wxPen() { } + wxPen( const wxColour &colour, int width, int style ); - wxPen( const wxPen& pen ); ~wxPen(); - wxPen& operator = ( const wxPen& pen ); + + wxPen( const wxPen& pen ) { Ref(pen); } + wxPen& operator = ( const wxPen& pen ) { Ref(pen); return *this; } + + bool Ok() const { return m_refData != NULL; } + bool operator == ( const wxPen& pen ) const; - bool operator != ( const wxPen& pen ) const; + bool operator != (const wxPen& pen) const { return !(*this == pen); } void SetColour( const wxColour &colour ); void SetColour( int red, int green, int blue ); @@ -64,12 +69,12 @@ public: int GetDashes(wxDash **ptr) const; int GetDashCount() const; wxDash* GetDash() const; - - bool Ok() const; - - void Unshare(); private: + // ref counting code + virtual wxObjectRefData *CreateRefData() const; + virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; + DECLARE_DYNAMIC_CLASS(wxPen) };