]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/region.h
Add const to GetTargetSize()
[wxWidgets.git] / include / wx / gtk / region.h
index fa396d31e1e5f17fbe2271fc1052a65cbb672e16..50aa865bd38203acde775cce0a92358ce5d55d2d 100644 (file)
 #ifndef _WX_GTK_REGION_H_
 #define _WX_GTK_REGION_H_
 
 #ifndef _WX_GTK_REGION_H_
 #define _WX_GTK_REGION_H_
 
-#include "wx/list.h"
 #include "wx/gdiobj.h"
 #include "wx/gdicmn.h"
 
 #include "wx/gdiobj.h"
 #include "wx/gdicmn.h"
 
-//-----------------------------------------------------------------------------
-// classes
-//-----------------------------------------------------------------------------
-
-class WXDLLIMPEXP_CORE wxRegion;
-
 //-----------------------------------------------------------------------------
 // constants
 //-----------------------------------------------------------------------------
 
 //-----------------------------------------------------------------------------
 // constants
 //-----------------------------------------------------------------------------
 
-enum wxRegionContain
-{
-    wxOutRegion = 0,
-    wxPartRegion = 1,
-    wxInRegion = 2
-};
-
 // So far, for internal use only
 enum wxRegionOp
 {
 // So far, for internal use only
 enum wxRegionOp
 {
@@ -78,17 +64,12 @@ public:
         Union(bmp, transColour, tolerance);
     }
 
         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 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();
 
 
     void Clear();