]>
Commit | Line | Data |
---|---|---|
72cdf4c9 VZ |
1 | /* |
2 | * The main configuration file for wxWindows. | |
3 | * | |
4 | * NB: this file can be included in .c files, so it must be compileable by a C | |
5 | * compiler - use #ifdef __cplusplus for C++ specific features and avoid | |
6 | * using C++ style comments | |
7 | */ | |
c801d85f | 8 | |
34138703 JS |
9 | #ifndef _WX_SETUP_H_BASE_ |
10 | #define _WX_SETUP_H_BASE_ | |
c801d85f | 11 | |
c67daf87 | 12 | /* compatibility code, to be removed asap: */ |
2049ba38 | 13 | |
07eb77a6 RL |
14 | #if !defined(__WXBASE__) && !defined(__WXMSW__) && !defined(__WXGTK__) && !defined(__WXMOTIF__) && !defined(__WXQT__) && !defined(__WXSTUBS__) && !defined(__WXMAC__) && !defined(__WXPM__) |
15 | #error No __WXxxx__ define set! Please define one of __WXBASE__,__WXGTK__,__WXMSW__,__WXMOTIF__,__WXMAC__,__WXQT__,__WXPM__,__WXSTUBS__ | |
2049ba38 KB |
16 | #endif |
17 | ||
03147cd0 VZ |
18 | /* |
19 | wxUniversal is defined together with one of other ports, so test for it | |
20 | first | |
21 | */ | |
1e6feb95 VZ |
22 | #ifdef __WXUNIVERSAL__ |
23 | #if defined(__USE_WXCONFIG__) && defined(__WXDEBUG__) | |
24 | #include "wx/univd/setup.h" | |
25 | #else | |
26 | #include "wx/univ/setup.h" | |
27 | #endif | |
28 | ||
29 | #elif defined(__WXBASE__) | |
f6bcfd97 BP |
30 | #if defined(__USE_WXCONFIG__) && defined(__WXDEBUG__) |
31 | #include "wx/based/setup.h" | |
32 | #else | |
07eb77a6 | 33 | #include "wx/base/setup.h" |
f6bcfd97 BP |
34 | #endif |
35 | ||
07eb77a6 | 36 | #elif defined(__VMS) |
cd636103 | 37 | #include "wx_root:[wxwindows]setup.h" |
7f4791dd | 38 | #elif defined(__WXMSW__) |
c801d85f | 39 | #include "wx/msw/setup.h" |
34138703 JS |
40 | #elif defined(__WXMAC__) |
41 | #include "wx/mac/setup.h" | |
f6bcfd97 | 42 | |
34138703 | 43 | #elif defined(__WXQT__) |
f6bcfd97 BP |
44 | #if defined(__USE_WXCONFIG__) && defined(__WXDEBUG__) |
45 | #include "wx/qtd/setup.h" | |
46 | #else | |
34138703 | 47 | #include "wx/qt/setup.h" |
f6bcfd97 BP |
48 | #endif |
49 | ||
34138703 | 50 | #elif defined(__WXMOTIF__) |
f6bcfd97 BP |
51 | #if defined(__USE_WXCONFIG__) && defined(__WXDEBUG__) |
52 | #include "wx/motifd/setup.h" | |
53 | #else | |
34138703 | 54 | #include "wx/motif/setup.h" |
f6bcfd97 BP |
55 | #endif |
56 | ||
1777b9bb DW |
57 | #elif defined(__WXPM__) |
58 | #include "wx/os2/setup.h" | |
34138703 JS |
59 | #elif defined(__WXSTUBS__) |
60 | #include "wx/stubs/setup.h" | |
f6bcfd97 | 61 | |
34138703 | 62 | #elif defined(__WXGTK__) |
f6bcfd97 BP |
63 | #if defined(__USE_WXCONFIG__) && defined(__WXDEBUG__) |
64 | #include "wx/gtkd/setup.h" | |
65 | #else | |
c98f0421 | 66 | #include "wx/gtk/setup.h" |
c801d85f KB |
67 | #endif |
68 | ||
f6bcfd97 | 69 | #endif |
1e6feb95 | 70 | |
f39d60cc | 71 | #include "wx/chkconf.h" |
1e6feb95 | 72 | |
03147cd0 VZ |
73 | /* |
74 | define some constants identifying wxWindows version in more details than | |
75 | just the version number | |
76 | */ | |
77 | ||
78 | // wxLogChain class available | |
79 | #define wxHAS_LOG_CHAIN | |
80 | ||
81 | // define this when wxDC::Blit() respects SetDeviceOrigin() in wxGTK | |
82 | #undef wxHAS_WORKING_GTK_DC_BLIT | |
83 | ||
1e6feb95 | 84 | #endif /* _WX_SETUP_H_BASE_ */ |