]>
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 | ||
4055ed82 | 17 | #if defined(__WXPALMOS__) |
c87beb79 | 18 | #include "wx/palmos/region.h" |
ffecfa5a | 19 | #elif defined(__WXMSW__) |
c87beb79 | 20 | #include "wx/msw/region.h" |
2049ba38 | 21 | #elif defined(__WXGTK__) |
c87beb79 VZ |
22 | #include "wx/gtk/region.h" |
23 | #elif defined(__WXMOTIF__) || defined(__WXX11__) | |
24 | #include "wx/x11/region.h" | |
d32cad2c | 25 | #elif defined(__WXMGL__) |
c87beb79 | 26 | #include "wx/mgl/region.h" |
34138703 | 27 | #elif defined(__WXMAC__) |
c87beb79 | 28 | #include "wx/mac/region.h" |
e64df9bc | 29 | #elif defined(__WXCOCOA__) |
c87beb79 | 30 | #include "wx/cocoa/region.h" |
1777b9bb | 31 | #elif defined(__WXPM__) |
c87beb79 | 32 | #include "wx/os2/region.h" |
c801d85f KB |
33 | #endif |
34 | ||
35 | #endif | |
34138703 | 36 | // _WX_REGION_H_BASE_ |