]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/setup.h
2 * The main configuration file for wxWindows.
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
9 #ifndef _WX_SETUP_H_BASE_
10 #define _WX_SETUP_H_BASE_
12 /* compatibility code, to be removed asap: */
14 #if !defined(__WXBASE__) && !defined(__WXMSW__) && !defined(__WXGTK__) && !defined(__WXMOTIF__) && !defined(__WXSTUBS__) && !defined(__WXMAC__) && !defined(__WXPM__)
15 #error No __WXxxx__ define set! Please define one of __WXBASE__,__WXMSW__,__WXGTK__,__WXMOTIF__,__WXSTUBS__,__WXMAC__,__WXPM__
19 wxUniversal is defined together with one of other ports, so test for it
22 #ifdef __WXUNIVERSAL__
23 #if defined(__USE_WXCONFIG__) && defined(__WXDEBUG__)
24 #include "wx/univd/setup.h"
26 #include "wx/univ/setup.h"
29 #elif defined(__WXBASE__)
30 #if defined(__USE_WXCONFIG__) && defined(__WXDEBUG__)
31 #include "wx/based/setup.h"
33 #include "wx/base/setup.h"
37 #include "wx_root:[wxwindows]setup.h"
38 #elif defined(__WXMSW__)
39 #include "wx/msw/setup.h"
40 #elif defined(__WXMAC__)
41 #include "wx/mac/setup.h"
43 #elif defined(__WXMOTIF__)
44 #if defined(__USE_WXCONFIG__) && defined(__WXDEBUG__)
45 #include "wx/motifd/setup.h"
47 #include "wx/motif/setup.h"
50 #elif defined(__WXPM__)
51 #include "wx/os2/setup.h"
52 #elif defined(__WXSTUBS__)
53 #include "wx/stubs/setup.h"
55 #elif defined(__WXGTK__)
56 #if defined(__USE_WXCONFIG__) && defined(__WXDEBUG__)
57 #include "wx/gtkd/setup.h"
59 #include "wx/gtk/setup.h"
64 #include "wx/chkconf.h"
67 define some constants identifying wxWindows version in more details than
68 just the version number
71 /* wxLogChain class available */
72 #define wxHAS_LOG_CHAIN
74 /* define this when wxDC::Blit() respects SetDeviceOrigin() in wxGTK */
75 #undef wxHAS_WORKING_GTK_DC_BLIT
77 #endif /* _WX_SETUP_H_BASE_ */