moved duplicated wxRegionContain definitions to wx/region.h
[wxWidgets.git] / include / wx / region.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/region.h
3 // Purpose: Base header for wxRegion
4 // Author: Julian Smart
5 // Modified by:
6 // Created:
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows Licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_REGION_H_BASE_
13 #define _WX_REGION_H_BASE_
14
15 #include "wx/colour.h"
16
17 enum wxRegionContain
18 {
19 wxOutRegion = 0,
20 wxPartRegion = 1,
21 wxInRegion = 2
22 };
23
24 #if defined(__WXPALMOS__)
25 #include "wx/palmos/region.h"
26 #elif defined(__WXMSW__)
27 #include "wx/msw/region.h"
28 #elif defined(__WXGTK20__)
29 #include "wx/gtk/region.h"
30 #elif defined(__WXGTK__)
31 #include "wx/gtk1/region.h"
32 #elif defined(__WXMOTIF__) || defined(__WXX11__)
33 #include "wx/x11/region.h"
34 #elif defined(__WXMGL__)
35 #include "wx/mgl/region.h"
36 #elif defined(__WXMAC__)
37 #include "wx/mac/region.h"
38 #elif defined(__WXCOCOA__)
39 #include "wx/cocoa/region.h"
40 #elif defined(__WXPM__)
41 #include "wx/os2/region.h"
42 #endif
43
44 #endif
45 // _WX_REGION_H_BASE_