X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/777105f2b7f91a17fab7d9c4808e282547bb9393..4bfec1790f526d462f8f2ce107f8a83f725d9192:/include/wx/x11/region.h diff --git a/include/wx/x11/region.h b/include/wx/x11/region.h index c9ff21e4b4..2dc28ecca0 100644 --- a/include/wx/x11/region.h +++ b/include/wx/x11/region.h @@ -12,10 +12,6 @@ #ifndef _WX_REGION_H_ #define _WX_REGION_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "region.h" -#endif - #include "wx/list.h" #include "wx/gdiobj.h" #include "wx/gdicmn.h" @@ -24,7 +20,7 @@ // classes //----------------------------------------------------------------------------- -class wxRegion; +class WXDLLIMPEXP_CORE wxRegion; //----------------------------------------------------------------------------- // constants @@ -51,7 +47,7 @@ enum wxRegionOp // wxRegion // ---------------------------------------------------------------------------- -class wxRegion : public wxGDIObject +class WXDLLIMPEXP_CORE wxRegion : public wxGDIObject { public: wxRegion() { } @@ -86,13 +82,10 @@ public: ~wxRegion(); - wxRegion( const wxRegion& region ) { Ref(region); } - wxRegion& operator = ( const wxRegion& region ) { Ref(region); return *this; } - 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(); @@ -158,7 +151,7 @@ private: // wxRegionIterator: decomposes a region into rectangles // ---------------------------------------------------------------------------- -class wxRegionIterator: public wxObject +class WXDLLIMPEXP_CORE wxRegionIterator: public wxObject { public: wxRegionIterator();