#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
{
virtual ~wxRegion();
- // Copying
- wxRegion(const wxRegion& r) : wxGDIObject(r)
- { Ref(r); }
- wxRegion& operator = (const wxRegion& r)
- { Ref(r); return (*this); }
-
// Modify region
// -------------