X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..84d1cd430f9f4cba81737a45cd40fdb7cbac4f7d:/include/wx/gtk/region.h diff --git a/include/wx/gtk/region.h b/include/wx/gtk/region.h index fa396d31e1..50aa865bd3 100644 --- a/include/wx/gtk/region.h +++ b/include/wx/gtk/region.h @@ -10,27 +10,13 @@ #ifndef _WX_GTK_REGION_H_ #define _WX_GTK_REGION_H_ -#include "wx/list.h" #include "wx/gdiobj.h" #include "wx/gdicmn.h" -//----------------------------------------------------------------------------- -// classes -//----------------------------------------------------------------------------- - -class WXDLLIMPEXP_CORE wxRegion; - //----------------------------------------------------------------------------- // constants //----------------------------------------------------------------------------- -enum wxRegionContain -{ - wxOutRegion = 0, - wxPartRegion = 1, - wxInRegion = 2 -}; - // So far, for internal use only enum wxRegionOp { @@ -78,17 +64,12 @@ public: Union(bmp, transColour, tolerance); } - ~wxRegion(); - - wxRegion( const wxRegion& region ) - : wxGDIObject() - { Ref(region); } - wxRegion& operator = ( const wxRegion& region ) { Ref(region); return *this; } + virtual ~wxRegion(); bool Ok() const { return m_refData != NULL; } - bool operator == ( const wxRegion& region ); - bool operator != ( const wxRegion& region ) { return !(*this == region); } + bool operator == ( const wxRegion& region ) const; + bool operator != ( const wxRegion& region ) const { return !(*this == region); } void Clear();