]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/region.h
Initial commit of native OS X list ctrl support. Compile tested on Win, Mac, FC4...
[wxWidgets.git] / include / wx / palmos / region.h
index b44b8f08fcecced37758e2735cbcc08837fae9e4..31af0202bec05cf9a4af5d119d7f6abe45986121 100644 (file)
 #ifndef _WX_REGION_H_
 #define _WX_REGION_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-    #pragma interface "region.h"
-#endif
-
 #include "wx/gdiobj.h"
 #include "wx/gdicmn.h"
 
 class WXDLLEXPORT wxRect;
 class WXDLLEXPORT wxPoint;
 
-enum wxRegionContain
-{
-    wxOutRegion = 0,
-    wxPartRegion = 1,
-    wxInRegion = 2
-};
-
 // So far, for internal use only
 enum wxRegionOp
 {
@@ -60,12 +49,6 @@ public:
 
     virtual ~wxRegion();
 
-    // Copying
-    wxRegion(const wxRegion& r) : wxGDIObject(r)
-        { Ref(r); }
-    wxRegion& operator = (const wxRegion& r)
-        { Ref(r); return (*this); }
-
     // Modify region
     // -------------