]>
Commit | Line | Data |
---|---|---|
99d80019 JS |
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 | ||
34138703 JS |
12 | #ifndef _WX_REGION_H_BASE_ |
13 | #define _WX_REGION_H_BASE_ | |
c801d85f | 14 | |
c87beb79 VZ |
15 | #include "wx/colour.h" |
16 | ||
be2001fe VS |
17 | enum wxRegionContain |
18 | { | |
19 | wxOutRegion = 0, | |
20 | wxPartRegion = 1, | |
21 | wxInRegion = 2 | |
22 | }; | |
23 | ||
4055ed82 | 24 | #if defined(__WXPALMOS__) |
c87beb79 | 25 | #include "wx/palmos/region.h" |
ffecfa5a | 26 | #elif defined(__WXMSW__) |
c87beb79 | 27 | #include "wx/msw/region.h" |
1be7a35c | 28 | #elif defined(__WXGTK20__) |
c87beb79 | 29 | #include "wx/gtk/region.h" |
1be7a35c MR |
30 | #elif defined(__WXGTK__) |
31 | #include "wx/gtk1/region.h" | |
c87beb79 VZ |
32 | #elif defined(__WXMOTIF__) || defined(__WXX11__) |
33 | #include "wx/x11/region.h" | |
d32cad2c | 34 | #elif defined(__WXMGL__) |
c87beb79 | 35 | #include "wx/mgl/region.h" |
b3c86150 VS |
36 | #elif defined(__WXDFB__) |
37 | #include "wx/dfb/region.h" | |
34138703 | 38 | #elif defined(__WXMAC__) |
c87beb79 | 39 | #include "wx/mac/region.h" |
e64df9bc | 40 | #elif defined(__WXCOCOA__) |
c87beb79 | 41 | #include "wx/cocoa/region.h" |
1777b9bb | 42 | #elif defined(__WXPM__) |
c87beb79 | 43 | #include "wx/os2/region.h" |
c801d85f KB |
44 | #endif |
45 | ||
46 | #endif | |
34138703 | 47 | // _WX_REGION_H_BASE_ |