]> git.saurik.com Git - wxWidgets.git/blame - include/wx/chkconf.h
implementation of HotKey, see #12354
[wxWidgets.git] / include / wx / chkconf.h
CommitLineData
b45f79ec
VZ
1/*
2 * Name: wx/chkconf.h
3 * Purpose: check the config settings for consistency
4 * Author: Vadim Zeitlin
5 * Modified by:
6 * Created: 09.08.00
7 * RCS-ID: $Id$
8 * Copyright: (c) 2000 Vadim Zeitlin <vadim@wxwidgets.org>
9 * Licence: wxWindows licence
10 */
1e6feb95
VZ
11
12/* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
8ba16443
VZ
13#ifndef _WX_CHKCONF_H_
14#define _WX_CHKCONF_H_
1e6feb95 15
aa62256a
VZ
16/*
17 **************************************************
18 PLEASE READ THIS IF YOU GET AN ERROR IN THIS FILE!
19 **************************************************
20
21 If you get an error saying "wxUSE_FOO must be defined", it means that you
22 are not using the correct up-to-date version of setup.h. This happens most
23 often when using svn or daily snapshots and a new symbol was added to
4c51a665 24 setup0.h and you haven't updated your local setup.h to reflect it. If
aa62256a
VZ
25 this is the case, you need to propagate the changes from setup0.h to your
26 setup.h and, if using makefiles under MSW, also remove setup.h under the
4c51a665 27 build directory (lib/$(COMPILER)_{lib,dll}/msw[u][d][dll]/wx) so that
aa62256a
VZ
28 the new setup.h is copied there.
29
30 If you get an error of the form "wxFoo requires wxBar", then the settings
31 in your setup.h are inconsistent. You have the choice between correcting
32 them manually or commenting out #define wxABORT_ON_CONFIG_ERROR below to
33 try to correct the problems automatically (not really recommended but
34 might work).
35 */
36
01ebf752 37/*
6619edf0
VZ
38 This file has the following sections:
39 1. checks that all wxUSE_XXX symbols we use are defined
40 a) first the non-GUI ones
41 b) then the GUI-only ones
42 2. platform-specific checks done in the platform headers
43 3. generic consistency checks
44 a) first the non-GUI ones
45 b) then the GUI-only ones
01ebf752
JS
46 */
47
1e6feb95 48/*
730dfeb4 49 this global setting determines what should we do if the setting FOO
8a43eaec
VZ
50 requires BAR and BAR is not set: we can either silently unset FOO as well
51 (do this if you're trying to build the smallest possible library) or give an
cbab1556 52 error and abort (default as leads to least surprising behaviour)
1e6feb95
VZ
53 */
54#define wxABORT_ON_CONFIG_ERROR
55
6962f34e
VZ
56/*
57 global features
58 */
59
60/* GUI build by default */
61#if !defined(wxUSE_GUI)
62# define wxUSE_GUI 1
63#endif /* !defined(wxUSE_GUI) */
64
1bbcb0d5
VZ
65/*
66 If we're compiling without support for threads/exceptions we have to
67 disable the corresponding features.
68 */
69#ifdef wxNO_THREADS
70# undef wxUSE_THREADS
71# define wxUSE_THREADS 0
72#endif /* wxNO_THREADS */
73
74#ifdef wxNO_EXCEPTIONS
75# undef wxUSE_EXCEPTIONS
76# define wxUSE_EXCEPTIONS 0
77#endif /* wxNO_EXCEPTIONS */
78
4652511f
VZ
79/* we also must disable exceptions if compiler doesn't support them */
80#if defined(_MSC_VER) && !defined(_CPPUNWIND)
81# undef wxUSE_EXCEPTIONS
82# define wxUSE_EXCEPTIONS 0
83#endif /* VC++ without exceptions support */
84
1bbcb0d5 85
1e6feb95 86/*
6619edf0 87 Section 1a: tests for non GUI features.
e16514bf
VZ
88
89 please keep the options in alphabetical order!
03169422
RL
90 */
91
178c7760
JS
92#ifndef wxUSE_ANY
93# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 94# error "wxUSE_ANY must be defined, please read comment near the top of this file."
178c7760
JS
95# else
96# define wxUSE_ANY 0
97# endif
98#endif /* wxUSE_ANY */
99
a1873279
VZ
100#ifndef wxUSE_CONSOLE_EVENTLOOP
101# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 102# error "wxUSE_CONSOLE_EVENTLOOP must be defined, please read comment near the top of this file."
a1873279
VZ
103# else
104# define wxUSE_CONSOLE_EVENTLOOP 0
105# endif
106#endif /* !defined(wxUSE_CONSOLE_EVENTLOOP) */
107
03169422
RL
108#ifndef wxUSE_DYNLIB_CLASS
109# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 110# error "wxUSE_DYNLIB_CLASS must be defined, please read comment near the top of this file."
03169422
RL
111# else
112# define wxUSE_DYNLIB_CLASS 0
113# endif
114#endif /* !defined(wxUSE_DYNLIB_CLASS) */
115
4199367e
VZ
116#ifndef wxUSE_EXCEPTIONS
117# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 118# error "wxUSE_EXCEPTIONS must be defined, please read comment near the top of this file."
4199367e
VZ
119# else
120# define wxUSE_EXCEPTIONS 0
121# endif
122#endif /* !defined(wxUSE_EXCEPTIONS) */
123
f19f8180
VS
124#ifndef wxUSE_FILE_HISTORY
125# ifdef wxABORT_ON_CONFIG_ERROR
126# error "wxUSE_FILE_HISTORY must be defined, please read comment near the top of this file."
127# else
128# define wxUSE_FILE_HISTORY 0
129# endif
130#endif /* !defined(wxUSE_FILE_HISTORY) */
131
c7f3eecc
VZ
132#ifndef wxUSE_FILESYSTEM
133# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 134# error "wxUSE_FILESYSTEM must be defined, please read comment near the top of this file."
c7f3eecc
VZ
135# else
136# define wxUSE_FILESYSTEM 0
137# endif
138#endif /* !defined(wxUSE_FILESYSTEM) */
139
26e422a9
MW
140#ifndef wxUSE_FS_ARCHIVE
141# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 142# error "wxUSE_FS_ARCHIVE must be defined, please read comment near the top of this file."
26e422a9
MW
143# else
144# define wxUSE_FS_ARCHIVE 0
145# endif
146#endif /* !defined(wxUSE_FS_ARCHIVE) */
147
05815ab3 148#ifndef wxUSE_FSVOLUME
83d56dd1 149# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 150# error "wxUSE_FSVOLUME must be defined, please read comment near the top of this file."
83d56dd1
FM
151# else
152# define wxUSE_FSVOLUME 0
153# endif
05815ab3
VZ
154#endif /* !defined(wxUSE_FSVOLUME) */
155
6b8ef0b3
VZ
156#ifndef wxUSE_FSWATCHER
157# ifdef wxABORT_ON_CONFIG_ERROR
158# error "wxUSE_FSWATCHER must be defined, please read comment near the top of this file."
159# else
160# define wxUSE_FSWATCHER 0
161# endif
162#endif /* !defined(wxUSE_FSWATCHER) */
163
03169422
RL
164#ifndef wxUSE_DYNAMIC_LOADER
165# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 166# error "wxUSE_DYNAMIC_LOADER must be defined, please read comment near the top of this file."
03169422
RL
167# else
168# define wxUSE_DYNAMIC_LOADER 0
169# endif
170#endif /* !defined(wxUSE_DYNAMIC_LOADER) */
171
149e70e1
VZ
172#ifndef wxUSE_INTL
173# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 174# error "wxUSE_INTL must be defined, please read comment near the top of this file."
149e70e1
VZ
175# else
176# define wxUSE_INTL 0
177# endif
178#endif /* !defined(wxUSE_INTL) */
179
8ac36abb
VZ
180#ifndef wxUSE_IPV6
181# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 182# error "wxUSE_IPV6 must be defined, please read comment near the top of this file."
8ac36abb
VZ
183# else
184# define wxUSE_IPV6 0
185# endif
186#endif /* !defined(wxUSE_IPV6) */
187
a5d46b73
VZ
188#ifndef wxUSE_LOG
189# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 190# error "wxUSE_LOG must be defined, please read comment near the top of this file."
a5d46b73
VZ
191# else
192# define wxUSE_LOG 0
193# endif
194#endif /* !defined(wxUSE_LOG) */
195
196#ifndef wxUSE_LONGLONG
197# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 198# error "wxUSE_LONGLONG must be defined, please read comment near the top of this file."
a5d46b73
VZ
199# else
200# define wxUSE_LONGLONG 0
201# endif
202#endif /* !defined(wxUSE_LONGLONG) */
203
204#ifndef wxUSE_MIMETYPE
205# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 206# error "wxUSE_MIMETYPE must be defined, please read comment near the top of this file."
a5d46b73
VZ
207# else
208# define wxUSE_MIMETYPE 0
209# endif
210#endif /* !defined(wxUSE_MIMETYPE) */
211
0c46d866
VZ
212#ifndef wxUSE_ON_FATAL_EXCEPTION
213# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 214# error "wxUSE_ON_FATAL_EXCEPTION must be defined, please read comment near the top of this file."
0c46d866
VZ
215# else
216# define wxUSE_ON_FATAL_EXCEPTION 0
217# endif
218#endif /* !defined(wxUSE_ON_FATAL_EXCEPTION) */
219
7a828c7f
VZ
220#ifndef wxUSE_PRINTF_POS_PARAMS
221# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 222# error "wxUSE_PRINTF_POS_PARAMS must be defined, please read comment near the top of this file."
7a828c7f
VZ
223# else
224# define wxUSE_PRINTF_POS_PARAMS 0
225# endif
226#endif /* !defined(wxUSE_PRINTF_POS_PARAMS) */
227
a5d46b73
VZ
228#ifndef wxUSE_PROTOCOL
229# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 230# error "wxUSE_PROTOCOL must be defined, please read comment near the top of this file."
a5d46b73
VZ
231# else
232# define wxUSE_PROTOCOL 0
233# endif
234#endif /* !defined(wxUSE_PROTOCOL) */
235
236/* we may not define wxUSE_PROTOCOL_XXX if wxUSE_PROTOCOL is set to 0 */
237#if !wxUSE_PROTOCOL
238# undef wxUSE_PROTOCOL_HTTP
239# undef wxUSE_PROTOCOL_FTP
240# undef wxUSE_PROTOCOL_FILE
241# define wxUSE_PROTOCOL_HTTP 0
242# define wxUSE_PROTOCOL_FTP 0
243# define wxUSE_PROTOCOL_FILE 0
244#endif /* wxUSE_PROTOCOL */
245
246#ifndef wxUSE_PROTOCOL_HTTP
247# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 248# error "wxUSE_PROTOCOL_HTTP must be defined, please read comment near the top of this file."
a5d46b73
VZ
249# else
250# define wxUSE_PROTOCOL_HTTP 0
251# endif
252#endif /* !defined(wxUSE_PROTOCOL_HTTP) */
253
254#ifndef wxUSE_PROTOCOL_FTP
255# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 256# error "wxUSE_PROTOCOL_FTP must be defined, please read comment near the top of this file."
a5d46b73
VZ
257# else
258# define wxUSE_PROTOCOL_FTP 0
259# endif
260#endif /* !defined(wxUSE_PROTOCOL_FTP) */
261
262#ifndef wxUSE_PROTOCOL_FILE
263# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 264# error "wxUSE_PROTOCOL_FILE must be defined, please read comment near the top of this file."
a5d46b73
VZ
265# else
266# define wxUSE_PROTOCOL_FILE 0
267# endif
268#endif /* !defined(wxUSE_PROTOCOL_FILE) */
269
270#ifndef wxUSE_REGEX
271# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 272# error "wxUSE_REGEX must be defined, please read comment near the top of this file."
a5d46b73
VZ
273# else
274# define wxUSE_REGEX 0
275# endif
276#endif /* !defined(wxUSE_REGEX) */
277
07158944
VZ
278#ifndef wxUSE_STDPATHS
279# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 280# error "wxUSE_STDPATHS must be defined, please read comment near the top of this file."
07158944
VZ
281# else
282# define wxUSE_STDPATHS 1
283# endif
284#endif /* !defined(wxUSE_STDPATHS) */
285
27b0c286
VS
286#ifndef wxUSE_XML
287# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 288# error "wxUSE_XML must be defined, please read comment near the top of this file."
27b0c286
VS
289# else
290# define wxUSE_XML 0
291# endif
292#endif /* !defined(wxUSE_XML) */
293
a5d46b73
VZ
294#ifndef wxUSE_SOCKETS
295# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 296# error "wxUSE_SOCKETS must be defined, please read comment near the top of this file."
a5d46b73
VZ
297# else
298# define wxUSE_SOCKETS 0
299# endif
300#endif /* !defined(wxUSE_SOCKETS) */
301
01871bf6
VZ
302#ifndef wxUSE_STD_CONTAINERS
303# ifdef wxABORT_ON_CONFIG_ERROR
304# error "wxUSE_STD_CONTAINERS must be defined, please read comment near the top of this file."
305# else
306# define wxUSE_STD_CONTAINERS 0
307# endif
308#endif /* !defined(wxUSE_STD_CONTAINERS) */
309
310#ifndef wxUSE_STD_STRING_CONV_IN_WXSTRING
311# ifdef wxABORT_ON_CONFIG_ERROR
312# error "wxUSE_STD_STRING_CONV_IN_WXSTRING must be defined, please read comment near the top of this file."
313# else
314# define wxUSE_STD_STRING_CONV_IN_WXSTRING 0
315# endif
316#endif /* !defined(wxUSE_STD_STRING_CONV_IN_WXSTRING) */
317
a5d46b73
VZ
318#ifndef wxUSE_STREAMS
319# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 320# error "wxUSE_STREAMS must be defined, please read comment near the top of this file."
a5d46b73
VZ
321# else
322# define wxUSE_STREAMS 0
323# endif
324#endif /* !defined(wxUSE_STREAMS) */
325
326#ifndef wxUSE_STOPWATCH
327# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 328# error "wxUSE_STOPWATCH must be defined, please read comment near the top of this file."
a5d46b73
VZ
329# else
330# define wxUSE_STOPWATCH 0
331# endif
332#endif /* !defined(wxUSE_STOPWATCH) */
333
334#ifndef wxUSE_TEXTBUFFER
335# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 336# error "wxUSE_TEXTBUFFER must be defined, please read comment near the top of this file."
a5d46b73
VZ
337# else
338# define wxUSE_TEXTBUFFER 0
339# endif
340#endif /* !defined(wxUSE_TEXTBUFFER) */
341
342#ifndef wxUSE_TEXTFILE
343# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 344# error "wxUSE_TEXTFILE must be defined, please read comment near the top of this file."
a5d46b73
VZ
345# else
346# define wxUSE_TEXTFILE 0
347# endif
348#endif /* !defined(wxUSE_TEXTFILE) */
349
350#ifndef wxUSE_UNICODE
351# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 352# error "wxUSE_UNICODE must be defined, please read comment near the top of this file."
a5d46b73
VZ
353# else
354# define wxUSE_UNICODE 0
355# endif
356#endif /* !defined(wxUSE_UNICODE) */
357
358#ifndef wxUSE_URL
359# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 360# error "wxUSE_URL must be defined, please read comment near the top of this file."
a5d46b73
VZ
361# else
362# define wxUSE_URL 0
363# endif
364#endif /* !defined(wxUSE_URL) */
365
ca5c6ac3
VZ
366#ifndef wxUSE_VARIANT
367# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 368# error "wxUSE_VARIANT must be defined, please read comment near the top of this file."
ca5c6ac3
VZ
369# else
370# define wxUSE_VARIANT 0
371# endif
372#endif /* wxUSE_VARIANT */
373
149e70e1
VZ
374#ifndef wxUSE_XLOCALE
375# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 376# error "wxUSE_XLOCALE must be defined, please read comment near the top of this file."
149e70e1
VZ
377# else
378# define wxUSE_XLOCALE 0
379# endif
380#endif /* !defined(wxUSE_XLOCALE) */
381
03169422 382/*
6619edf0 383 Section 1b: all these tests are for GUI only.
e16514bf
VZ
384
385 please keep the options in alphabetical order!
1e6feb95
VZ
386 */
387#if wxUSE_GUI
388
389/*
390 all of the settings tested below must be defined or we'd get an error from
391 preprocessor about invalid integer expression
392 */
393
9211cf3c
VZ
394#ifndef wxUSE_ABOUTDLG
395# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 396# error "wxUSE_ABOUTDLG must be defined, please read comment near the top of this file."
9211cf3c
VZ
397# else
398# define wxUSE_ABOUTDLG 0
399# endif
400#endif /* !defined(wxUSE_ABOUTDLG) */
401
1e6feb95
VZ
402#ifndef wxUSE_ACCEL
403# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 404# error "wxUSE_ACCEL must be defined, please read comment near the top of this file."
1e6feb95
VZ
405# else
406# define wxUSE_ACCEL 0
407# endif
408#endif /* !defined(wxUSE_ACCEL) */
409
a9c64a1b
VZ
410#ifndef wxUSE_ACCESSIBILITY
411# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 412# error "wxUSE_ACCESSIBILITY must be defined, please read comment near the top of this file."
a9c64a1b
VZ
413# else
414# define wxUSE_ACCESSIBILITY 0
415# endif
416#endif /* !defined(wxUSE_ACCESSIBILITY) */
417
72045d57
VZ
418#ifndef wxUSE_ANIMATIONCTRL
419# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 420# error "wxUSE_ANIMATIONCTRL must be defined, please read comment near the top of this file."
72045d57
VZ
421# else
422# define wxUSE_ANIMATIONCTRL 0
423# endif
424#endif /* !defined(wxUSE_ANIMATIONCTRL) */
425
2e9b5717
VZ
426#ifndef wxUSE_ARTPROVIDER_STD
427# ifdef wxABORT_ON_CONFIG_ERROR
428# error "wxUSE_ARTPROVIDER_STD must be defined, please read comment near the top of this file."
429# else
430# define wxUSE_ARTPROVIDER_STD 0
431# endif
432#endif /* !defined(wxUSE_ARTPROVIDER_STD) */
433
c1d2466a
VZ
434#ifndef wxUSE_ARTPROVIDER_TANGO
435# ifdef wxABORT_ON_CONFIG_ERROR
436# error "wxUSE_ARTPROVIDER_TANGO must be defined, please read comment near the top of this file."
437# else
438# define wxUSE_ARTPROVIDER_TANGO 0
439# endif
440#endif /* !defined(wxUSE_ARTPROVIDER_TANGO) */
441
8084f8b7
VZ
442#ifndef wxUSE_AUTOID_MANAGEMENT
443# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 444# error "wxUSE_AUTOID_MANAGEMENT must be defined, please read comment near the top of this file."
8084f8b7
VZ
445# else
446# define wxUSE_AUTOID_MANAGEMENT 0
447# endif
448#endif /* !defined(wxUSE_AUTOID_MANAGEMENT) */
449
8d37334f
VZ
450#ifndef wxUSE_BITMAPCOMBOBOX
451# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 452# error "wxUSE_BITMAPCOMBOBOX must be defined, please read comment near the top of this file."
8d37334f
VZ
453# else
454# define wxUSE_BITMAPCOMBOBOX 0
455# endif
456#endif /* !defined(wxUSE_BITMAPCOMBOBOX) */
457
1e6feb95
VZ
458#ifndef wxUSE_BMPBUTTON
459# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 460# error "wxUSE_BMPBUTTON must be defined, please read comment near the top of this file."
1e6feb95
VZ
461# else
462# define wxUSE_BMPBUTTON 0
463# endif
464#endif /* !defined(wxUSE_BMPBUTTON) */
465
466#ifndef wxUSE_BUTTON
467# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 468# error "wxUSE_BUTTON must be defined, please read comment near the top of this file."
1e6feb95
VZ
469# else
470# define wxUSE_BUTTON 0
471# endif
472#endif /* !defined(wxUSE_BUTTON) */
473
6c99dbd5 474#ifndef wxUSE_CAIRO
711a4812 475# ifdef wxABORT_ON_CONFIG_ERROR
93fdbfb7 476# error "wxUSE_CAIRO must be defined, please read comment near the top of this file."
711a4812
VZ
477# else
478# define wxUSE_CAIRO 0
479# endif
480#endif /* !defined(wxUSE_CAIRO) */
6c99dbd5 481
1e6feb95
VZ
482#ifndef wxUSE_CALENDARCTRL
483# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 484# error "wxUSE_CALENDARCTRL must be defined, please read comment near the top of this file."
1e6feb95
VZ
485# else
486# define wxUSE_CALENDARCTRL 0
487# endif
488#endif /* !defined(wxUSE_CALENDARCTRL) */
489
490#ifndef wxUSE_CARET
491# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 492# error "wxUSE_CARET must be defined, please read comment near the top of this file."
1e6feb95
VZ
493# else
494# define wxUSE_CARET 0
495# endif
496#endif /* !defined(wxUSE_CARET) */
497
498#ifndef wxUSE_CHECKBOX
499# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 500# error "wxUSE_CHECKBOX must be defined, please read comment near the top of this file."
1e6feb95
VZ
501# else
502# define wxUSE_CHECKBOX 0
503# endif
504#endif /* !defined(wxUSE_CHECKBOX) */
505
506#ifndef wxUSE_CHECKLISTBOX
507# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 508# error "wxUSE_CHECKLISTBOX must be defined, please read comment near the top of this file."
1e6feb95
VZ
509# else
510# define wxUSE_CHECKLISTBOX 0
511# endif
512#endif /* !defined(wxUSE_CHECKLISTBOX) */
513
514#ifndef wxUSE_CHOICE
515# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 516# error "wxUSE_CHOICE must be defined, please read comment near the top of this file."
1e6feb95
VZ
517# else
518# define wxUSE_CHOICE 0
519# endif
520#endif /* !defined(wxUSE_CHOICE) */
521
f5e0b4bc
WS
522#ifndef wxUSE_CHOICEBOOK
523# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 524# error "wxUSE_CHOICEBOOK must be defined, please read comment near the top of this file."
f5e0b4bc
WS
525# else
526# define wxUSE_CHOICEBOOK 0
527# endif
528#endif /* !defined(wxUSE_CHOICEBOOK) */
529
3379ed37
VZ
530#ifndef wxUSE_CHOICEDLG
531# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 532# error "wxUSE_CHOICEDLG must be defined, please read comment near the top of this file."
3379ed37
VZ
533# else
534# define wxUSE_CHOICEDLG 0
535# endif
536#endif /* !defined(wxUSE_CHOICEDLG) */
537
1e6feb95
VZ
538#ifndef wxUSE_CLIPBOARD
539# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 540# error "wxUSE_CLIPBOARD must be defined, please read comment near the top of this file."
1e6feb95
VZ
541# else
542# define wxUSE_CLIPBOARD 0
543# endif
544#endif /* !defined(wxUSE_CLIPBOARD) */
545
912c3932
VZ
546#ifndef wxUSE_COLLPANE
547# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 548# error "wxUSE_COLLPANE must be defined, please read comment near the top of this file."
912c3932
VZ
549# else
550# define wxUSE_COLLPANE 0
551# endif
552#endif /* !defined(wxUSE_COLLPANE) */
553
a2c0a9c5
VZ
554#ifndef wxUSE_COLOURDLG
555# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 556# error "wxUSE_COLOURDLG must be defined, please read comment near the top of this file."
a2c0a9c5
VZ
557# else
558# define wxUSE_COLOURDLG 0
559# endif
560#endif /* !defined(wxUSE_COLOURDLG) */
561
ec376c8f
VZ
562#ifndef wxUSE_COLOURPICKERCTRL
563# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 564# error "wxUSE_COLOURPICKERCTRL must be defined, please read comment near the top of this file."
ec376c8f
VZ
565# else
566# define wxUSE_COLOURPICKERCTRL 0
567# endif
568#endif /* !defined(wxUSE_COLOURPICKERCTRL) */
569
1e6feb95
VZ
570#ifndef wxUSE_COMBOBOX
571# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 572# error "wxUSE_COMBOBOX must be defined, please read comment near the top of this file."
1e6feb95
VZ
573# else
574# define wxUSE_COMBOBOX 0
575# endif
576#endif /* !defined(wxUSE_COMBOBOX) */
577
3571e1ad
VZ
578#ifndef wxUSE_COMMANDLINKBUTTON
579# ifdef wxABORT_ON_CONFIG_ERROR
580# error "wxUSE_COMMANDLINKBUTTON must be defined, please read comment near the top of this file."
581# else
582# define wxUSE_COMMANDLINKBUTTON 0
583# endif
584#endif /* !defined(wxUSE_COMMANDLINKBUTTON) */
585
a57d600f 586#ifndef wxUSE_COMBOCTRL
481e2766 587# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 588# error "wxUSE_COMBOCTRL must be defined, please read comment near the top of this file."
481e2766 589# else
a57d600f 590# define wxUSE_COMBOCTRL 0
481e2766 591# endif
a57d600f 592#endif /* !defined(wxUSE_COMBOCTRL) */
481e2766 593
1e6feb95
VZ
594#ifndef wxUSE_DATAOBJ
595# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 596# error "wxUSE_DATAOBJ must be defined, please read comment near the top of this file."
1e6feb95
VZ
597# else
598# define wxUSE_DATAOBJ 0
599# endif
600#endif /* !defined(wxUSE_DATAOBJ) */
601
e16514bf
VZ
602#ifndef wxUSE_DATAVIEWCTRL
603# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 604# error "wxUSE_DATAVIEWCTRL must be defined, please read comment near the top of this file."
e16514bf
VZ
605# else
606# define wxUSE_DATAVIEWCTRL 0
607# endif
608#endif /* !defined(wxUSE_DATAVIEWCTRL) */
609
337dc4c1
WS
610#ifndef wxUSE_DATEPICKCTRL
611# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 612# error "wxUSE_DATEPICKCTRL must be defined, please read comment near the top of this file."
337dc4c1
WS
613# else
614# define wxUSE_DATEPICKCTRL 0
615# endif
616#endif /* !defined(wxUSE_DATEPICKCTRL) */
617
ec376c8f
VZ
618#ifndef wxUSE_DIRPICKERCTRL
619# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 620# error "wxUSE_DIRPICKERCTRL must be defined, please read comment near the top of this file."
ec376c8f
VZ
621# else
622# define wxUSE_DIRPICKERCTRL 0
623# endif
624#endif /* !defined(wxUSE_DIRPICKERCTRL) */
625
f8ba082e
VZ
626#ifndef wxUSE_DISPLAY
627# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 628# error "wxUSE_DISPLAY must be defined, please read comment near the top of this file."
f8ba082e
VZ
629# else
630# define wxUSE_DISPLAY 0
631# endif
632#endif /* !defined(wxUSE_DISPLAY) */
633
3379ed37
VZ
634#ifndef wxUSE_DOC_VIEW_ARCHITECTURE
635# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 636# error "wxUSE_DOC_VIEW_ARCHITECTURE must be defined, please read comment near the top of this file."
3379ed37
VZ
637# else
638# define wxUSE_DOC_VIEW_ARCHITECTURE 0
639# endif
640#endif /* !defined(wxUSE_DOC_VIEW_ARCHITECTURE) */
641
0cf3e587
VZ
642#ifndef wxUSE_FILECTRL
643# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 644# error "wxUSE_FILECTRL must be defined, please read comment near the top of this file."
0cf3e587
VZ
645# else
646# define wxUSE_FILECTRL 0
647# endif
648#endif /* !defined(wxUSE_FILECTRL) */
649
1e6feb95
VZ
650#ifndef wxUSE_FILEDLG
651# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 652# error "wxUSE_FILEDLG must be defined, please read comment near the top of this file."
1e6feb95
VZ
653# else
654# define wxUSE_FILEDLG 0
655# endif
656#endif /* !defined(wxUSE_FILEDLG) */
657
ec376c8f
VZ
658#ifndef wxUSE_FILEPICKERCTRL
659# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 660# error "wxUSE_FILEPICKERCTRL must be defined, please read comment near the top of this file."
ec376c8f
VZ
661# else
662# define wxUSE_FILEPICKERCTRL 0
663# endif
664#endif /* !defined(wxUSE_FILEPICKERCTRL) */
665
1e6feb95
VZ
666#ifndef wxUSE_FONTDLG
667# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 668# error "wxUSE_FONTDLG must be defined, please read comment near the top of this file."
1e6feb95
VZ
669# else
670# define wxUSE_FONTDLG 0
671# endif
672#endif /* !defined(wxUSE_FONTDLG) */
673
674#ifndef wxUSE_FONTMAP
675# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 676# error "wxUSE_FONTMAP must be defined, please read comment near the top of this file."
1e6feb95
VZ
677# else
678# define wxUSE_FONTMAP 0
679# endif
680#endif /* !defined(wxUSE_FONTMAP) */
681
ec376c8f
VZ
682#ifndef wxUSE_FONTPICKERCTRL
683# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 684# error "wxUSE_FONTPICKERCTRL must be defined, please read comment near the top of this file."
ec376c8f
VZ
685# else
686# define wxUSE_FONTPICKERCTRL 0
687# endif
688#endif /* !defined(wxUSE_FONTPICKERCTRL) */
689
1e6feb95
VZ
690#ifndef wxUSE_GAUGE
691# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 692# error "wxUSE_GAUGE must be defined, please read comment near the top of this file."
1e6feb95
VZ
693# else
694# define wxUSE_GAUGE 0
695# endif
696#endif /* !defined(wxUSE_GAUGE) */
697
f43426c1
RD
698#ifndef wxUSE_GRAPHICS_CONTEXT
699# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 700# error "wxUSE_GRAPHICS_CONTEXT must be defined, please read comment near the top of this file."
f43426c1
RD
701# else
702# define wxUSE_GRAPHICS_CONTEXT 0
703# endif
704#endif /* !defined(wxUSE_GRAPHICS_CONTEXT) */
705
706
1e6feb95
VZ
707#ifndef wxUSE_GRID
708# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 709# error "wxUSE_GRID must be defined, please read comment near the top of this file."
1e6feb95
VZ
710# else
711# define wxUSE_GRID 0
712# endif
713#endif /* !defined(wxUSE_GRID) */
714
e721a2a2
VZ
715#ifndef wxUSE_HEADERCTRL
716# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 717# error "wxUSE_HEADERCTRL must be defined, please read comment near the top of this file."
e721a2a2
VZ
718# else
719# define wxUSE_HEADERCTRL 0
720# endif
721#endif /* !defined(wxUSE_HEADERCTRL) */
722
3379ed37
VZ
723#ifndef wxUSE_HELP
724# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 725# error "wxUSE_HELP must be defined, please read comment near the top of this file."
3379ed37
VZ
726# else
727# define wxUSE_HELP 0
728# endif
729#endif /* !defined(wxUSE_HELP) */
730
17e91437
VZ
731#ifndef wxUSE_HYPERLINKCTRL
732# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 733# error "wxUSE_HYPERLINKCTRL must be defined, please read comment near the top of this file."
17e91437
VZ
734# else
735# define wxUSE_HYPERLINKCTRL 0
736# endif
737#endif /* !defined(wxUSE_HYPERLINKCTRL) */
738
05dcbb8e
VZ
739#ifndef wxUSE_HTML
740# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 741# error "wxUSE_HTML must be defined, please read comment near the top of this file."
05dcbb8e
VZ
742# else
743# define wxUSE_HTML 0
744# endif
745#endif /* !defined(wxUSE_HTML) */
746
c839485c 747#ifndef wxUSE_LIBMSPACK
abd0503c 748# if !defined(__UNIX__) || defined(__WXPALMOS__)
c839485c
VS
749 /* set to 0 on platforms that don't have libmspack */
750# define wxUSE_LIBMSPACK 0
751# else
752# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 753# error "wxUSE_LIBMSPACK must be defined, please read comment near the top of this file."
c839485c
VS
754# else
755# define wxUSE_LIBMSPACK 0
756# endif
757# endif
758#endif /* !defined(wxUSE_LIBMSPACK) */
759
658974ae
VS
760#ifndef wxUSE_ICO_CUR
761# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 762# error "wxUSE_ICO_CUR must be defined, please read comment near the top of this file."
658974ae
VS
763# else
764# define wxUSE_ICO_CUR 0
765# endif
766#endif /* !defined(wxUSE_ICO_CUR) */
767
1663afc0
VS
768#ifndef wxUSE_IFF
769# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 770# error "wxUSE_IFF must be defined, please read comment near the top of this file."
1663afc0
VS
771# else
772# define wxUSE_IFF 0
773# endif
774#endif /* !defined(wxUSE_IFF) */
775
1e6feb95
VZ
776#ifndef wxUSE_IMAGLIST
777# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 778# error "wxUSE_IMAGLIST must be defined, please read comment near the top of this file."
1e6feb95
VZ
779# else
780# define wxUSE_IMAGLIST 0
781# endif
782#endif /* !defined(wxUSE_IMAGLIST) */
783
a92b5dfe
VZ
784#ifndef wxUSE_INFOBAR
785# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 786# error "wxUSE_INFOBAR must be defined, please read comment near the top of this file."
a92b5dfe
VZ
787# else
788# define wxUSE_INFOBAR 0
789# endif
790#endif /* !defined(wxUSE_INFOBAR) */
791
2131b89d
VZ
792#ifndef wxUSE_JOYSTICK
793# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 794# error "wxUSE_JOYSTICK must be defined, please read comment near the top of this file."
2131b89d
VZ
795# else
796# define wxUSE_JOYSTICK 0
797# endif
798#endif /* !defined(wxUSE_JOYSTICK) */
799
5b5e4f32
VZ
800#ifndef wxUSE_LISTBOOK
801# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 802# error "wxUSE_LISTBOOK must be defined, please read comment near the top of this file."
5b5e4f32
VZ
803# else
804# define wxUSE_LISTBOOK 0
805# endif
806#endif /* !defined(wxUSE_LISTBOOK) */
807
1e6feb95
VZ
808#ifndef wxUSE_LISTBOX
809# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 810# error "wxUSE_LISTBOX must be defined, please read comment near the top of this file."
1e6feb95
VZ
811# else
812# define wxUSE_LISTBOX 0
813# endif
814#endif /* !defined(wxUSE_LISTBOX) */
815
816#ifndef wxUSE_LISTCTRL
817# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 818# error "wxUSE_LISTCTRL must be defined, please read comment near the top of this file."
1e6feb95
VZ
819# else
820# define wxUSE_LISTCTRL 0
821# endif
822#endif /* !defined(wxUSE_LISTCTRL) */
823
3379ed37
VZ
824#ifndef wxUSE_LOGGUI
825# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 826# error "wxUSE_LOGGUI must be defined, please read comment near the top of this file."
3379ed37
VZ
827# else
828# define wxUSE_LOGGUI 0
829# endif
830#endif /* !defined(wxUSE_LOGGUI) */
831
832#ifndef wxUSE_LOGWINDOW
833# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 834# error "wxUSE_LOGWINDOW must be defined, please read comment near the top of this file."
3379ed37
VZ
835# else
836# define wxUSE_LOGWINDOW 0
837# endif
838#endif /* !defined(wxUSE_LOGWINDOW) */
e421922f 839
3e6e2754
JS
840#ifndef wxUSE_LOG_DIALOG
841# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 842# error "wxUSE_LOG_DIALOG must be defined, please read comment near the top of this file."
3e6e2754
JS
843# else
844# define wxUSE_LOG_DIALOG 0
845# endif
71908213 846#endif /* !defined(wxUSE_LOG_DIALOG) */
3e6e2754 847
f5bdfc69
VZ
848#ifndef wxUSE_MARKUP
849# ifdef wxABORT_ON_CONFIG_ERROR
850# error "wxUSE_MARKUP must be defined, please read comment near the top of this file."
851# else
852# define wxUSE_MARKUP 0
853# endif
854#endif /* !defined(wxUSE_MARKUP) */
855
efd17a1d
VZ
856#ifndef wxUSE_MDI
857# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 858# error "wxUSE_MDI must be defined, please read comment near the top of this file."
efd17a1d
VZ
859# else
860# define wxUSE_MDI 0
861# endif
862#endif /* !defined(wxUSE_MDI) */
863
1e6feb95
VZ
864#ifndef wxUSE_MDI_ARCHITECTURE
865# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 866# error "wxUSE_MDI_ARCHITECTURE must be defined, please read comment near the top of this file."
1e6feb95
VZ
867# else
868# define wxUSE_MDI_ARCHITECTURE 0
869# endif
870#endif /* !defined(wxUSE_MDI_ARCHITECTURE) */
871
872#ifndef wxUSE_MENUS
873# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 874# error "wxUSE_MENUS must be defined, please read comment near the top of this file."
1e6feb95
VZ
875# else
876# define wxUSE_MENUS 0
877# endif
878#endif /* !defined(wxUSE_MENUS) */
879
3379ed37
VZ
880#ifndef wxUSE_MSGDLG
881# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 882# error "wxUSE_MSGDLG must be defined, please read comment near the top of this file."
3379ed37
VZ
883# else
884# define wxUSE_MSGDLG 0
885# endif
886#endif /* !defined(wxUSE_MSGDLG) */
887
1e6feb95
VZ
888#ifndef wxUSE_NOTEBOOK
889# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 890# error "wxUSE_NOTEBOOK must be defined, please read comment near the top of this file."
1e6feb95
VZ
891# else
892# define wxUSE_NOTEBOOK 0
893# endif
894#endif /* !defined(wxUSE_NOTEBOOK) */
895
e36a1739
VZ
896#ifndef wxUSE_NOTIFICATION_MESSAGE
897# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 898# error "wxUSE_NOTIFICATION_MESSAGE must be defined, please read comment near the top of this file."
e36a1739
VZ
899# else
900# define wxUSE_NOTIFICATION_MESSAGE 0
901# endif
902#endif /* !defined(wxUSE_NOTIFICATION_MESSAGE) */
903
a57d600f 904#ifndef wxUSE_ODCOMBOBOX
481e2766 905# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 906# error "wxUSE_ODCOMBOBOX must be defined, please read comment near the top of this file."
481e2766 907# else
a57d600f 908# define wxUSE_ODCOMBOBOX 0
481e2766 909# endif
a57d600f 910#endif /* !defined(wxUSE_ODCOMBOBOX) */
481e2766 911
d275c7eb
VZ
912#ifndef wxUSE_PALETTE
913# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 914# error "wxUSE_PALETTE must be defined, please read comment near the top of this file."
d275c7eb
VZ
915# else
916# define wxUSE_PALETTE 0
917# endif
918#endif /* !defined(wxUSE_PALETTE) */
919
1e6feb95
VZ
920#ifndef wxUSE_POPUPWIN
921# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 922# error "wxUSE_POPUPWIN must be defined, please read comment near the top of this file."
1e6feb95
VZ
923# else
924# define wxUSE_POPUPWIN 0
925# endif
926#endif /* !defined(wxUSE_POPUPWIN) */
927
3379ed37
VZ
928#ifndef wxUSE_PRINTING_ARCHITECTURE
929# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 930# error "wxUSE_PRINTING_ARCHITECTURE must be defined, please read comment near the top of this file."
3379ed37
VZ
931# else
932# define wxUSE_PRINTING_ARCHITECTURE 0
933# endif
934#endif /* !defined(wxUSE_PRINTING_ARCHITECTURE) */
935
1e6feb95
VZ
936#ifndef wxUSE_RADIOBOX
937# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 938# error "wxUSE_RADIOBOX must be defined, please read comment near the top of this file."
1e6feb95
VZ
939# else
940# define wxUSE_RADIOBOX 0
941# endif
942#endif /* !defined(wxUSE_RADIOBOX) */
943
944#ifndef wxUSE_RADIOBTN
945# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 946# error "wxUSE_RADIOBTN must be defined, please read comment near the top of this file."
1e6feb95
VZ
947# else
948# define wxUSE_RADIOBTN 0
949# endif
950#endif /* !defined(wxUSE_RADIOBTN) */
951
65ead230
VZ
952#ifndef wxUSE_REARRANGECTRL
953# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 954# error "wxUSE_REARRANGECTRL must be defined, please read comment near the top of this file."
65ead230
VZ
955# else
956# define wxUSE_REARRANGECTRL 0
957# endif
958#endif /* !defined(wxUSE_REARRANGECTRL) */
959
11c2b041
VZ
960#ifndef wxUSE_RIBBON
961# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 962# error "wxUSE_RIBBON must be defined, please read comment near the top of this file."
11c2b041
VZ
963# else
964# define wxUSE_RIBBON 0
965# endif
966#endif /* !defined(wxUSE_RIBBON) */
967
a1bdd4ab
VZ
968#ifndef wxUSE_RICHMSGDLG
969# ifdef wxABORT_ON_CONFIG_ERROR
970# error "wxUSE_RICHMSGDLG must be defined, please read comment near the top of this file."
971# else
972# define wxUSE_RICHMSGDLG 0
973# endif
974#endif /* !defined(wxUSE_RIBBON) */
975
1e6feb95
VZ
976#ifndef wxUSE_SASH
977# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 978# error "wxUSE_SASH must be defined, please read comment near the top of this file."
1e6feb95
VZ
979# else
980# define wxUSE_SASH 0
981# endif
982#endif /* !defined(wxUSE_SASH) */
983
984#ifndef wxUSE_SCROLLBAR
985# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 986# error "wxUSE_SCROLLBAR must be defined, please read comment near the top of this file."
1e6feb95
VZ
987# else
988# define wxUSE_SCROLLBAR 0
989# endif
990#endif /* !defined(wxUSE_SCROLLBAR) */
991
992#ifndef wxUSE_SLIDER
993# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 994# error "wxUSE_SLIDER must be defined, please read comment near the top of this file."
1e6feb95
VZ
995# else
996# define wxUSE_SLIDER 0
997# endif
998#endif /* !defined(wxUSE_SLIDER) */
999
cad1a197
VS
1000#ifndef wxUSE_SOUND
1001# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1002# error "wxUSE_SOUND must be defined, please read comment near the top of this file."
cad1a197
VS
1003# else
1004# define wxUSE_SOUND 0
1005# endif
1006#endif /* !defined(wxUSE_SOUND) */
1007
1e6feb95
VZ
1008#ifndef wxUSE_SPINBTN
1009# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1010# error "wxUSE_SPINBTN must be defined, please read comment near the top of this file."
1e6feb95
VZ
1011# else
1012# define wxUSE_SPINBTN 0
1013# endif
1014#endif /* !defined(wxUSE_SPINBTN) */
1015
1016#ifndef wxUSE_SPINCTRL
1017# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1018# error "wxUSE_SPINCTRL must be defined, please read comment near the top of this file."
1e6feb95
VZ
1019# else
1020# define wxUSE_SPINCTRL 0
1021# endif
1022#endif /* !defined(wxUSE_SPINCTRL) */
1023
2654a046
MB
1024#ifndef wxUSE_SPLASH
1025# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1026# error "wxUSE_SPLASH must be defined, please read comment near the top of this file."
2654a046
MB
1027# else
1028# define wxUSE_SPLASH 0
1029# endif
1030#endif /* !defined(wxUSE_SPLASH) */
1031
1e6feb95
VZ
1032#ifndef wxUSE_SPLITTER
1033# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1034# error "wxUSE_SPLITTER must be defined, please read comment near the top of this file."
1e6feb95
VZ
1035# else
1036# define wxUSE_SPLITTER 0
1037# endif
1038#endif /* !defined(wxUSE_SPLITTER) */
1039
1040#ifndef wxUSE_STATBMP
1041# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1042# error "wxUSE_STATBMP must be defined, please read comment near the top of this file."
1e6feb95
VZ
1043# else
1044# define wxUSE_STATBMP 0
1045# endif
1046#endif /* !defined(wxUSE_STATBMP) */
1047
1048#ifndef wxUSE_STATBOX
1049# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1050# error "wxUSE_STATBOX must be defined, please read comment near the top of this file."
1e6feb95
VZ
1051# else
1052# define wxUSE_STATBOX 0
1053# endif
1054#endif /* !defined(wxUSE_STATBOX) */
1055
1056#ifndef wxUSE_STATLINE
1057# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1058# error "wxUSE_STATLINE must be defined, please read comment near the top of this file."
1e6feb95
VZ
1059# else
1060# define wxUSE_STATLINE 0
1061# endif
1062#endif /* !defined(wxUSE_STATLINE) */
1063
3379ed37
VZ
1064#ifndef wxUSE_STATTEXT
1065# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1066# error "wxUSE_STATTEXT must be defined, please read comment near the top of this file."
3379ed37
VZ
1067# else
1068# define wxUSE_STATTEXT 0
1069# endif
1070#endif /* !defined(wxUSE_STATTEXT) */
1071
1e6feb95
VZ
1072#ifndef wxUSE_STATUSBAR
1073# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1074# error "wxUSE_STATUSBAR must be defined, please read comment near the top of this file."
1e6feb95
VZ
1075# else
1076# define wxUSE_STATUSBAR 0
1077# endif
1078#endif /* !defined(wxUSE_STATUSBAR) */
1079
4f167b46
VZ
1080#ifndef wxUSE_TASKBARICON
1081# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1082# error "wxUSE_TASKBARICON must be defined, please read comment near the top of this file."
4f167b46
VZ
1083# else
1084# define wxUSE_TASKBARICON 0
1085# endif
1086#endif /* !defined(wxUSE_TASKBARICON) */
1087
1e6feb95
VZ
1088#ifndef wxUSE_TEXTCTRL
1089# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1090# error "wxUSE_TEXTCTRL must be defined, please read comment near the top of this file."
1e6feb95
VZ
1091# else
1092# define wxUSE_TEXTCTRL 0
1093# endif
1094#endif /* !defined(wxUSE_TEXTCTRL) */
1095
f38bcae5
VZ
1096#ifndef wxUSE_TIPWINDOW
1097# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1098# error "wxUSE_TIPWINDOW must be defined, please read comment near the top of this file."
f38bcae5
VZ
1099# else
1100# define wxUSE_TIPWINDOW 0
1101# endif
1102#endif /* !defined(wxUSE_TIPWINDOW) */
1103
1e6feb95
VZ
1104#ifndef wxUSE_TOOLBAR
1105# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1106# error "wxUSE_TOOLBAR must be defined, please read comment near the top of this file."
1e6feb95
VZ
1107# else
1108# define wxUSE_TOOLBAR 0
1109# endif
1110#endif /* !defined(wxUSE_TOOLBAR) */
1111
1112#ifndef wxUSE_TOOLTIPS
1113# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1114# error "wxUSE_TOOLTIPS must be defined, please read comment near the top of this file."
1e6feb95
VZ
1115# else
1116# define wxUSE_TOOLTIPS 0
1117# endif
1118#endif /* !defined(wxUSE_TOOLTIPS) */
1119
1120#ifndef wxUSE_TREECTRL
1121# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1122# error "wxUSE_TREECTRL must be defined, please read comment near the top of this file."
1e6feb95
VZ
1123# else
1124# define wxUSE_TREECTRL 0
1125# endif
1126#endif /* !defined(wxUSE_TREECTRL) */
1127
9b7e0226
VZ
1128#ifndef wxUSE_UIACTIONSIMULATOR
1129# ifdef wxABORT_ON_CONFIG_ERROR
1130# error "wxUSE_UIACTIONSIMULATOR must be defined, please read comment near the top of this file."
1131# else
1132# define wxUSE_UIACTIONSIMULATOR 0
1133# endif
1134#endif /* !defined(wxUSE_UIACTIONSIMULATOR) */
1135
f8ba082e 1136#ifndef wxUSE_VALIDATORS
12491c1f 1137# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1138# error "wxUSE_VALIDATORS must be defined, please read comment near the top of this file."
12491c1f 1139# else
f8ba082e 1140# define wxUSE_VALIDATORS 0
12491c1f 1141# endif
f8ba082e 1142#endif /* !defined(wxUSE_VALIDATORS) */
12491c1f 1143
3379ed37
VZ
1144#ifndef wxUSE_WXHTML_HELP
1145# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1146# error "wxUSE_WXHTML_HELP must be defined, please read comment near the top of this file."
3379ed37
VZ
1147# else
1148# define wxUSE_WXHTML_HELP 0
1149# endif
1150#endif /* !defined(wxUSE_WXHTML_HELP) */
1151
e16514bf
VZ
1152#ifndef wxUSE_XRC
1153# ifdef wxABORT_ON_CONFIG_ERROR
aa62256a 1154# error "wxUSE_XRC must be defined, please read comment near the top of this file."
e16514bf
VZ
1155# else
1156# define wxUSE_XRC 0
1157# endif
1158#endif /* !defined(wxUSE_XRC) */
1159
a5d46b73 1160#endif /* wxUSE_GUI */
c4d596ea 1161
1e6feb95 1162/*
6619edf0
VZ
1163 Section 2: platform-specific checks.
1164
1165 This must be done after checking that everything is defined as the platform
1166 checks use wxUSE_XXX symbols in #if tests.
1167 */
1168
1169#if defined(__WXPALMOS__)
1170# include "wx/palmos/chkconf.h"
1171#elif defined(__WXWINCE__)
1172# include "wx/msw/wince/chkconf.h"
1173#elif defined(__WXMSW__)
1174# include "wx/msw/chkconf.h"
1175#elif defined(__WXGTK__)
1176# include "wx/gtk/chkconf.h"
d30ef769
VZ
1177#elif defined(__WXCOCOA__)
1178# include "wx/cocoa/chkconf.h"
6619edf0 1179#elif defined(__WXMAC__)
ef0e9220 1180# include "wx/osx/chkconf.h"
6619edf0
VZ
1181#elif defined(__OS2__)
1182# include "wx/os2/chkconf.h"
1183#elif defined(__WXMGL__)
1184# include "wx/mgl/chkconf.h"
1185#elif defined(__WXDFB__)
1186# include "wx/dfb/chkconf.h"
1187#elif defined(__WXMOTIF__)
1188# include "wx/motif/chkconf.h"
1189#elif defined(__WXX11__)
1190# include "wx/x11/chkconf.h"
1191#endif
1192
149e70e1
VZ
1193/*
1194 __UNIX__ is also defined under Cygwin but we shouldn't perform these checks
1195 there if we're building wxMSW.
1196 */
1197#if defined(__UNIX__) && !defined(__WXMSW__)
6619edf0
VZ
1198# include "wx/unix/chkconf.h"
1199#endif
1200
1201#ifdef __WXUNIVERSAL__
1202# include "wx/univ/chkconf.h"
1203#endif
1204
1205/*
1206 Section 3a: check consistency of the non-GUI settings.
1e6feb95 1207 */
a5d46b73 1208
c1dc9f83
VZ
1209#if WXWIN_COMPATIBILITY_2_6
1210# if !WXWIN_COMPATIBILITY_2_8
f7c3b945 1211# ifdef wxABORT_ON_CONFIG_ERROR
c1dc9f83 1212# error "2.6.X compatibility requires 2.8.X compatibility"
f7c3b945 1213# else
c1dc9f83
VZ
1214# undef WXWIN_COMPATIBILITY_2_8
1215# define WXWIN_COMPATIBILITY_2_8 1
f7c3b945
WS
1216# endif
1217# endif
c1dc9f83 1218#endif /* WXWIN_COMPATIBILITY_2_6 */
f7c3b945 1219
5d36ad18
VZ
1220#if wxUSE_ARCHIVE_STREAMS
1221# if !wxUSE_DATETIME
1222# ifdef wxABORT_ON_CONFIG_ERROR
1223# error "wxArchive requires wxUSE_DATETIME"
1224# else
1225# undef wxUSE_ARCHIVE_STREAMS
1226# define wxUSE_ARCHIVE_STREAMS 0
1227# endif
1228# endif
1229#endif /* wxUSE_ARCHIVE_STREAMS */
1230
a5d46b73
VZ
1231#if wxUSE_PROTOCOL_FILE || wxUSE_PROTOCOL_FTP || wxUSE_PROTOCOL_HTTP
1232# if !wxUSE_PROTOCOL
1233# ifdef wxABORT_ON_CONFIG_ERROR
1234# error "wxUSE_PROTOCOL_XXX requires wxUSE_PROTOCOL"
1235# else
1236# undef wxUSE_PROTOCOL
1237# define wxUSE_PROTOCOL 1
1238# endif
1239# endif
1240#endif /* wxUSE_PROTOCOL_XXX */
1241
1242#if wxUSE_URL
1243# if !wxUSE_PROTOCOL
1244# ifdef wxABORT_ON_CONFIG_ERROR
1245# error "wxUSE_URL requires wxUSE_PROTOCOL"
1246# else
1247# undef wxUSE_PROTOCOL
1248# define wxUSE_PROTOCOL 1
1249# endif
1250# endif
1251#endif /* wxUSE_URL */
1252
1253#if wxUSE_PROTOCOL
1254# if !wxUSE_SOCKETS
1255# if wxUSE_PROTOCOL_HTTP || wxUSE_PROTOCOL_FTP
1256# ifdef wxABORT_ON_CONFIG_ERROR
1257# error "wxUSE_PROTOCOL_FTP/HTTP requires wxUSE_SOCKETS"
1258# else
1259# undef wxUSE_SOCKETS
1260# define wxUSE_SOCKETS 1
1261# endif
1262# endif
1263# endif
1264
1265# if !wxUSE_STREAMS
1266# ifdef wxABORT_ON_CONFIG_ERROR
1267# error "wxUSE_PROTOCOL requires wxUSE_STREAMS"
1268# else
1269# undef wxUSE_STREAMS
1270# define wxUSE_STREAMS 1
1271# endif
1272# endif
1273#endif /* wxUSE_PROTOCOL */
1274
c7f3eecc
VZ
1275/* have to test for wxUSE_HTML before wxUSE_FILESYSTEM */
1276#if wxUSE_HTML
1277# if !wxUSE_FILESYSTEM
1278# ifdef wxABORT_ON_CONFIG_ERROR
1279# error "wxHTML requires wxFileSystem"
1280# else
1281# undef wxUSE_FILESYSTEM
1282# define wxUSE_FILESYSTEM 1
1283# endif
1284# endif
1285#endif /* wxUSE_HTML */
1286
916af76f
MW
1287#if wxUSE_FS_ARCHIVE
1288# if !wxUSE_FILESYSTEM
1289# ifdef wxABORT_ON_CONFIG_ERROR
1290# error "wxArchiveFSHandler requires wxFileSystem"
1291# else
1292# undef wxUSE_FILESYSTEM
1293# define wxUSE_FILESYSTEM 1
1294# endif
1295# endif
1296# if !wxUSE_ARCHIVE_STREAMS
1297# ifdef wxABORT_ON_CONFIG_ERROR
1298# error "wxArchiveFSHandler requires wxArchive"
1299# else
1300# undef wxUSE_ARCHIVE_STREAMS
1301# define wxUSE_ARCHIVE_STREAMS 1
1302# endif
1303# endif
1304#endif /* wxUSE_FS_ARCHIVE */
1305
c7f3eecc
VZ
1306#if wxUSE_FILESYSTEM
1307# if !wxUSE_STREAMS
1308# ifdef wxABORT_ON_CONFIG_ERROR
1309# error "wxUSE_FILESYSTEM requires wxUSE_STREAMS"
1310# else
1311# undef wxUSE_STREAMS
1312# define wxUSE_STREAMS 1
1313# endif
1314# endif
d9b0ee1e
VZ
1315# if !wxUSE_FILE && !wxUSE_FFILE
1316# ifdef wxABORT_ON_CONFIG_ERROR
1317# error "wxUSE_FILESYSTEM requires either wxUSE_FILE or wxUSE_FFILE"
1318# else
916af76f
MW
1319# undef wxUSE_FILE
1320# define wxUSE_FILE 1
1321# undef wxUSE_FFILE
1322# define wxUSE_FFILE 1
d9b0ee1e
VZ
1323# endif
1324# endif
c7f3eecc
VZ
1325#endif /* wxUSE_FILESYSTEM */
1326
ce73e654
VS
1327#if wxUSE_FS_INET
1328# if !wxUSE_PROTOCOL
1329# ifdef wxABORT_ON_CONFIG_ERROR
1330# error "wxUSE_FS_INET requires wxUSE_PROTOCOL"
1331# else
1332# undef wxUSE_PROTOCOL
1333# define wxUSE_PROTOCOL 1
1334# endif
1335# endif
1336#endif /* wxUSE_FS_INET */
1337
c7f3eecc 1338#if wxUSE_STOPWATCH || wxUSE_DATETIME
a5d46b73
VZ
1339# if !wxUSE_LONGLONG
1340# ifdef wxABORT_ON_CONFIG_ERROR
c7f3eecc 1341# error "wxUSE_STOPWATCH and wxUSE_DATETIME require wxUSE_LONGLONG"
a5d46b73
VZ
1342# else
1343# undef wxUSE_LONGLONG
1344# define wxUSE_LONGLONG 1
1345# endif
1346# endif
1347#endif /* wxUSE_STOPWATCH */
1348
1349#if wxUSE_MIMETYPE && !wxUSE_TEXTFILE
1350# ifdef wxABORT_ON_CONFIG_ERROR
1351# error "wxUSE_MIMETYPE requires wxUSE_TEXTFILE"
1352# else
1353# undef wxUSE_TEXTFILE
1354# define wxUSE_TEXTFILE 1
1355# endif
1356#endif /* wxUSE_MIMETYPE */
1357
1358#if wxUSE_TEXTFILE && !wxUSE_TEXTBUFFER
1359# ifdef wxABORT_ON_CONFIG_ERROR
1360# error "wxUSE_TEXTFILE requires wxUSE_TEXTBUFFER"
1361# else
1362# undef wxUSE_TEXTBUFFER
1363# define wxUSE_TEXTBUFFER 1
1364# endif
1365#endif /* wxUSE_TEXTFILE */
1366
1367#if wxUSE_TEXTFILE && !wxUSE_FILE
1368# ifdef wxABORT_ON_CONFIG_ERROR
1369# error "wxUSE_TEXTFILE requires wxUSE_FILE"
1370# else
1371# undef wxUSE_FILE
1372# define wxUSE_FILE 1
1373# endif
1374#endif /* wxUSE_TEXTFILE */
1375
1948bb32
VS
1376#if !wxUSE_DYNLIB_CLASS
1377# if wxUSE_DYNAMIC_LOADER
1378# ifdef wxABORT_ON_CONFIG_ERROR
1379# error "wxUSE_DYNAMIC_LOADER requires wxUSE_DYNLIB_CLASS."
1380# else
1381# define wxUSE_DYNLIB_CLASS 1
1382# endif
1383# endif
1384#endif /* wxUSE_DYNLIB_CLASS */
1385
81f90336
MW
1386#if wxUSE_ZIPSTREAM
1387# if !wxUSE_ZLIB
1388# ifdef wxABORT_ON_CONFIG_ERROR
1389# error "wxZip requires wxZlib"
1390# else
1391# undef wxUSE_ZLIB
1392# define wxUSE_ZLIB 1
1393# endif
1394# endif
9e8e867f 1395# if !wxUSE_ARCHIVE_STREAMS
81f90336
MW
1396# ifdef wxABORT_ON_CONFIG_ERROR
1397# error "wxZip requires wxArchive"
1398# else
9e8e867f
MW
1399# undef wxUSE_ARCHIVE_STREAMS
1400# define wxUSE_ARCHIVE_STREAMS 1
81f90336
MW
1401# endif
1402# endif
1403#endif /* wxUSE_ZIPSTREAM */
1404
26e422a9
MW
1405#if wxUSE_TARSTREAM
1406# if !wxUSE_ARCHIVE_STREAMS
1407# ifdef wxABORT_ON_CONFIG_ERROR
1408# error "wxTar requires wxArchive"
1409# else
1410# undef wxUSE_ARCHIVE_STREAMS
1411# define wxUSE_ARCHIVE_STREAMS 1
1412# endif
1413# endif
1414#endif /* wxUSE_TARSTREAM */
1415
6619edf0
VZ
1416/*
1417 Section 3b: the tests for the GUI settings only.
1418 */
a5d46b73
VZ
1419#if wxUSE_GUI
1420
93629862 1421#if wxUSE_ACCESSIBILITY && !defined(__WXMSW__) && !defined(__GCCXML__)
a9c64a1b
VZ
1422# ifdef wxABORT_ON_CONFIG_ERROR
1423# error "wxUSE_ACCESSIBILITY is currently only supported under wxMSW"
1424# else
1425# undef wxUSE_ACCESSIBILITY
1426# define wxUSE_ACCESSIBILITY 0
1427# endif
1428#endif /* wxUSE_ACCESSIBILITY */
1429
1e6feb95
VZ
1430#if wxUSE_BUTTON || \
1431 wxUSE_CALENDARCTRL || \
1432 wxUSE_CARET || \
1433 wxUSE_COMBOBOX || \
1434 wxUSE_BMPBUTTON || \
1435 wxUSE_CHECKBOX || \
1436 wxUSE_CHECKLISTBOX || \
1437 wxUSE_CHOICE || \
1438 wxUSE_GAUGE || \
1439 wxUSE_GRID || \
e721a2a2 1440 wxUSE_HEADERCTRL || \
1e6feb95
VZ
1441 wxUSE_LISTBOX || \
1442 wxUSE_LISTCTRL || \
1443 wxUSE_NOTEBOOK || \
1444 wxUSE_RADIOBOX || \
1445 wxUSE_RADIOBTN || \
e721a2a2 1446 wxUSE_REARRANGECTRL || \
1e6feb95
VZ
1447 wxUSE_SCROLLBAR || \
1448 wxUSE_SLIDER || \
1449 wxUSE_SPINBTN || \
1450 wxUSE_SPINCTRL || \
1451 wxUSE_STATBMP || \
1452 wxUSE_STATBOX || \
1453 wxUSE_STATLINE || \
3379ed37 1454 wxUSE_STATTEXT || \
1e6feb95
VZ
1455 wxUSE_STATUSBAR || \
1456 wxUSE_TEXTCTRL || \
1457 wxUSE_TOOLBAR || \
1458 wxUSE_TREECTRL
1459# if !wxUSE_CONTROLS
1460# ifdef wxABORT_ON_CONFIG_ERROR
1461# error "wxUSE_CONTROLS unset but some controls used"
1462# else
1463# undef wxUSE_CONTROLS
1464# define wxUSE_CONTROLS 1
1465# endif
1466# endif
1467#endif /* controls */
1468
0b4f47a3
DS
1469#if wxUSE_BMPBUTTON
1470# if !wxUSE_BUTTON
1471# ifdef wxABORT_ON_CONFIG_ERROR
1472# error "wxUSE_BMPBUTTON requires wxUSE_BUTTON"
1473# else
1474# undef wxUSE_BUTTON
1475# define wxUSE_BUTTON 1
1476# endif
1477# endif
1478#endif /* wxUSE_BMPBUTTON */
1479
3571e1ad
VZ
1480#if wxUSE_COMMANDLINKBUTTON
1481# if !wxUSE_BUTTON
1482# ifdef wxABORT_ON_CONFIG_ERROR
1483# error "wxUSE_COMMANDLINKBUTTON requires wxUSE_BUTTON"
1484# else
1485# undef wxUSE_BUTTON
1486# define wxUSE_BUTTON 1
1487# endif
1488# endif
1489#endif /* wxUSE_COMMANDLINKBUTTON */
1490
aa017eab
VZ
1491/*
1492 wxUSE_BOOKCTRL should be only used if any of the controls deriving from it
1493 are used
1494 */
1495#ifdef wxUSE_BOOKCTRL
1496# ifdef wxABORT_ON_CONFIG_ERROR
1497# error "wxUSE_BOOKCTRL is defined automatically, don't define it"
1498# else
1499# undef wxUSE_BOOKCTRL
15aad3b9 1500# endif
aa017eab 1501#endif
15aad3b9 1502
aa017eab
VZ
1503#define wxUSE_BOOKCTRL (wxUSE_NOTEBOOK || \
1504 wxUSE_LISTBOOK || \
1505 wxUSE_CHOICEBOOK || \
8d206c07 1506 wxUSE_TOOLBOOK || \
aa017eab 1507 wxUSE_TREEBOOK)
15aad3b9 1508
0917b10c
VZ
1509#if wxUSE_COLLPANE
1510# if !wxUSE_BUTTON || !wxUSE_STATLINE
1511# ifdef wxABORT_ON_CONFIG_ERROR
1512# error "wxUSE_COLLPANE requires wxUSE_BUTTON and wxUSE_STATLINE"
1513# else
1514# undef wxUSE_COLLPANE
1515# define wxUSE_COLLPANE 0
1516# endif
1517# endif
1518#endif /* wxUSE_COLLPANE */
1519
5b5e4f32
VZ
1520#if wxUSE_LISTBOOK
1521# if !wxUSE_LISTCTRL
1522# ifdef wxABORT_ON_CONFIG_ERROR
1523# error "wxListbook requires wxListCtrl"
1524# else
1525# undef wxUSE_LISTCTRL
1526# define wxUSE_LISTCTRL 1
1527# endif
1528# endif
1529#endif /* wxUSE_LISTBOOK */
1530
f5e0b4bc
WS
1531#if wxUSE_CHOICEBOOK
1532# if !wxUSE_CHOICE
1533# ifdef wxABORT_ON_CONFIG_ERROR
1534# error "wxChoicebook requires wxChoice"
1535# else
1536# undef wxUSE_CHOICE
1537# define wxUSE_CHOICE 1
1538# endif
1539# endif
1540#endif /* wxUSE_CHOICEBOOK */
1541
8d206c07
PC
1542#if wxUSE_TOOLBOOK
1543# if !wxUSE_TOOLBAR
1544# ifdef wxABORT_ON_CONFIG_ERROR
1545# error "wxToolbook requires wxToolBar"
1546# else
1547# undef wxUSE_TOOLBAR
1548# define wxUSE_TOOLBAR 1
1549# endif
1550# endif
1551#endif /* wxUSE_TOOLBOOK */
1552
8d37334f
VZ
1553#if !wxUSE_ODCOMBOBOX
1554# if wxUSE_BITMAPCOMBOBOX
e721a2a2
VZ
1555# ifdef wxABORT_ON_CONFIG_ERROR
1556# error "wxBitmapComboBox requires wxOwnerDrawnComboBox"
1557# else
1558# undef wxUSE_BITMAPCOMBOBOX
1559# define wxUSE_BITMAPCOMBOBOX 0
1560# endif
8d37334f
VZ
1561# endif
1562#endif /* !wxUSE_ODCOMBOBOX */
1563
e721a2a2
VZ
1564#if !wxUSE_HEADERCTRL
1565# if wxUSE_DATAVIEWCTRL || wxUSE_GRID
1566# ifdef wxABORT_ON_CONFIG_ERROR
1567# error "wxDataViewCtrl and wxGrid require wxHeaderCtrl"
1568# else
1569# undef wxUSE_HEADERCTRL
1570# define wxUSE_HEADERCTRL 1
1571# endif
1572# endif
1573#endif /* !wxUSE_HEADERCTRL */
1574
75545930
VZ
1575#if wxUSE_REARRANGECTRL
1576# if !wxUSE_CHECKLISTBOX
1577# ifdef wxABORT_ON_CONFIG_ERROR
1578# error "wxRearrangeCtrl requires wxCheckListBox"
1579# else
1580# undef wxUSE_REARRANGECTRL
1581# define wxUSE_REARRANGECTRL 0
1582# endif
1583# endif
1584#endif /* wxUSE_REARRANGECTRL */
1585
a1bdd4ab
VZ
1586#if wxUSE_RICHMSGDLG
1587# if !wxUSE_MSGDLG
1588# ifdef wxABORT_ON_CONFIG_ERROR
1589# error "wxUSE_RICHMSGDLG requires wxUSE_MSGDLG"
1590# else
1591# undef wxUSE_MSGDLG
1592# define wxUSE_MSGDLG 1
1593# endif
1594# endif
1595#endif /* wxUSE_RICHMSGDLG */
1596
da4486fb
VZ
1597/* don't attempt to use native status bar on the platforms not having it */
1598#ifndef wxUSE_NATIVE_STATUSBAR
1599# define wxUSE_NATIVE_STATUSBAR 0
1600#elif wxUSE_NATIVE_STATUSBAR
b08cd3bf
WS
1601# if defined(__WXUNIVERSAL__) || !( defined(__WXMSW__) || \
1602 defined(__WXMAC__) || \
1603 defined(__WXPALMOS__) )
da4486fb
VZ
1604# undef wxUSE_NATIVE_STATUSBAR
1605# define wxUSE_NATIVE_STATUSBAR 0
1606# endif
1607#endif
1608
f43426c1
RD
1609#if wxUSE_GRAPHICS_CONTEXT && !wxUSE_GEOMETRY
1610# ifdef wxABORT_ON_CONFIG_ERROR
1611# error "wxUSE_GRAPHICS_CONTEXT requires wxUSE_GEOMETRY"
1612# else
1613# undef wxUSE_GRAPHICS_CONTEXT
1614# define wxUSE_GRAPHICS_CONTEXT 0
1615# endif
1616#endif /* wxUSE_GRAPHICS_CONTEXT */
1617
1618
3379ed37
VZ
1619/* generic controls dependencies */
1620#if !defined(__WXMSW__) || defined(__WXUNIVERSAL__)
1621# if wxUSE_FONTDLG || wxUSE_FILEDLG || wxUSE_CHOICEDLG
1622 /* all common controls are needed by these dialogs */
1623# if !defined(wxUSE_CHOICE) || \
1624 !defined(wxUSE_TEXTCTRL) || \
1625 !defined(wxUSE_BUTTON) || \
1626 !defined(wxUSE_CHECKBOX) || \
1627 !defined(wxUSE_STATTEXT)
1628# ifdef wxABORT_ON_CONFIG_ERROR
1629# error "These common controls are needed by common dialogs"
1630# else
1631# undef wxUSE_CHOICE
1632# define wxUSE_CHOICE 1
1633# undef wxUSE_TEXTCTRL
1634# define wxUSE_TEXTCTRL 1
1635# undef wxUSE_BUTTON
1636# define wxUSE_BUTTON 1
1637# undef wxUSE_CHECKBOX
1638# define wxUSE_CHECKBOX 1
1639# undef wxUSE_STATTEXT
1640# define wxUSE_STATTEXT 1
1641# endif
1642# endif
1643# endif
1644#endif /* !wxMSW || wxUniv */
1645
0cf3e587
VZ
1646/* generic file dialog depends on (generic) file control */
1647#if wxUSE_FILEDLG && !wxUSE_FILECTRL && \
1648 (defined(__WXUNIVERSAL__) || defined(__WXGTK__))
1649# ifdef wxABORT_ON_CONFIG_ERROR
1650# error "Generic wxFileDialog requires wxFileCtrl"
1651# else
1652# undef wxUSE_FILECTRL
1653# define wxUSE_FILECTRL 1
1654# endif
1655#endif /* wxUSE_FILEDLG */
1656
3379ed37 1657/* common dependencies */
c1d2466a
VZ
1658#if wxUSE_ARTPROVIDER_TANGO
1659# if !(wxUSE_STREAMS && wxUSE_IMAGE && wxUSE_LIBPNG)
1660# ifdef wxABORT_ON_CONFIG_ERROR
1661# error "Tango art provider requires wxImage with streams and PNG support"
1662# else
1663# undef wxUSE_ARTPROVIDER_TANGO
1664# define wxUSE_ARTPROVIDER_TANGO 0
1665# endif
1666# endif
1667#endif /* wxUSE_ARTPROVIDER_TANGO */
1668
1e6feb95
VZ
1669#if wxUSE_CALENDARCTRL
1670# if !(wxUSE_SPINBTN && wxUSE_COMBOBOX)
1671# ifdef wxABORT_ON_CONFIG_ERROR
1672# error "wxCalendarCtrl requires wxSpinButton and wxComboBox"
1673# else
1674# undef wxUSE_SPINBTN
1675# undef wxUSE_COMBOBOX
1676# define wxUSE_SPINBTN 1
1677# define wxUSE_COMBOBOX 1
1678# endif
1679# endif
e2b87f38
VZ
1680
1681# if !wxUSE_DATETIME
1682# ifdef wxABORT_ON_CONFIG_ERROR
1683# error "wxCalendarCtrl requires wxUSE_DATETIME"
1684# else
1685# undef wxUSE_DATETIME
1686# define wxUSE_DATETIME 1
1687# endif
1688# endif
1e6feb95
VZ
1689#endif /* wxUSE_CALENDARCTRL */
1690
324eeecb
WS
1691#if wxUSE_DATEPICKCTRL
1692# if !wxUSE_DATETIME
1693# ifdef wxABORT_ON_CONFIG_ERROR
60bea0cf 1694# error "wxDatePickerCtrl requires wxUSE_DATETIME"
324eeecb
WS
1695# else
1696# undef wxUSE_DATETIME
1697# define wxUSE_DATETIME 1
1698# endif
1699# endif
1700#endif /* wxUSE_DATEPICKCTRL */
1701
1e6feb95
VZ
1702#if wxUSE_CHECKLISTBOX
1703# if !wxUSE_LISTBOX
1704# ifdef wxABORT_ON_CONFIG_ERROR
1705# error "wxCheckListBox requires wxListBox"
1706# else
1707# undef wxUSE_LISTBOX
1708# define wxUSE_LISTBOX 1
1709# endif
1710# endif
97e4cf6d
WS
1711#endif /* wxUSE_CHECKLISTBOX */
1712
1713#if wxUSE_CHOICEDLG
1714# if !wxUSE_LISTBOX
1715# ifdef wxABORT_ON_CONFIG_ERROR
1716# error "Choice dialogs requires wxListBox"
1717# else
1718# undef wxUSE_LISTBOX
1719# define wxUSE_LISTBOX 1
1720# endif
1721# endif
1722#endif /* wxUSE_CHOICEDLG */
1e6feb95 1723
0b4f47a3
DS
1724#if wxUSE_HELP
1725# if !wxUSE_BMPBUTTON
1726# ifdef wxABORT_ON_CONFIG_ERROR
1727# error "wxUSE_HELP requires wxUSE_BMPBUTTON"
1728# else
1729# undef wxUSE_BMPBUTTON
1730# define wxUSE_BMPBUTTON 1
1731# endif
1732# endif
adb799d6
DS
1733
1734# if !wxUSE_CHOICEDLG
1735# ifdef wxABORT_ON_CONFIG_ERROR
1736# error "wxUSE_HELP requires wxUSE_CHOICEDLG"
1737# else
1738# undef wxUSE_CHOICEDLG
1739# define wxUSE_CHOICEDLG 1
1740# endif
1741# endif
0b4f47a3
DS
1742#endif /* wxUSE_HELP */
1743
09f43fd3
VZ
1744#if wxUSE_MS_HTML_HELP
1745 /*
1746 this doesn't make sense for platforms other than MSW but we still
1747 define it in wx/setup_inc.h so don't complain if it happens to be
1748 defined under another platform but just silently fix it.
1749 */
1750# ifndef __WXMSW__
1751# undef wxUSE_MS_HTML_HELP
1752# define wxUSE_MS_HTML_HELP 0
1753# endif
1754#endif /* wxUSE_MS_HTML_HELP */
1755
3379ed37 1756#if wxUSE_WXHTML_HELP
0e871ad0 1757# if !wxUSE_HELP || !wxUSE_HTML || !wxUSE_COMBOBOX || !wxUSE_NOTEBOOK || !wxUSE_SPINCTRL
3379ed37
VZ
1758# ifdef wxABORT_ON_CONFIG_ERROR
1759# error "Built in help controller can't be compiled"
1760# else
1761# undef wxUSE_HELP
1762# define wxUSE_HELP 1
1763# undef wxUSE_HTML
1764# define wxUSE_HTML 1
1765# undef wxUSE_COMBOBOX
1766# define wxUSE_COMBOBOX 1
730dfeb4
VS
1767# undef wxUSE_NOTEBOOK
1768# define wxUSE_NOTEBOOK 1
0e871ad0
WS
1769# undef wxUSE_SPINCTRL
1770# define wxUSE_SPINCTRL 1
3379ed37
VZ
1771# endif
1772# endif
1773#endif /* wxUSE_WXHTML_HELP */
1774
05e4fd64
DS
1775#if !wxUSE_IMAGE
1776/*
1777 The default wxUSE_IMAGE setting is 1, so if it's set to 0 we assume the
1778 user explicitly wants this and disable all other features that require
1779 wxUSE_IMAGE.
1780 */
1781# if wxUSE_DRAGIMAGE
1782# ifdef wxABORT_ON_CONFIG_ERROR
1783# error "wxUSE_DRAGIMAGE requires wxUSE_IMAGE"
1784# else
1785# undef wxUSE_DRAGIMAGE
1786# define wxUSE_DRAGIMAGE 0
1787# endif
1788# endif
1789
1790# if wxUSE_LIBPNG
1791# ifdef wxABORT_ON_CONFIG_ERROR
1792# error "wxUSE_LIBPNG requires wxUSE_IMAGE"
1793# else
1794# undef wxUSE_LIBPNG
1795# define wxUSE_LIBPNG 0
1796# endif
1797# endif
1798
1799# if wxUSE_LIBJPEG
1800# ifdef wxABORT_ON_CONFIG_ERROR
1801# error "wxUSE_LIBJPEG requires wxUSE_IMAGE"
1802# else
1803# undef wxUSE_LIBJPEG
1804# define wxUSE_LIBJPEG 0
1805# endif
1806# endif
1807
1808# if wxUSE_LIBTIFF
1809# ifdef wxABORT_ON_CONFIG_ERROR
1810# error "wxUSE_LIBTIFF requires wxUSE_IMAGE"
1811# else
1812# undef wxUSE_LIBTIFF
1813# define wxUSE_LIBTIFF 0
1814# endif
1815# endif
1816
1817# if wxUSE_GIF
1818# ifdef wxABORT_ON_CONFIG_ERROR
1819# error "wxUSE_GIF requires wxUSE_IMAGE"
1820# else
1821# undef wxUSE_GIF
1822# define wxUSE_GIF 0
1823# endif
1824# endif
1825
1826# if wxUSE_PNM
1827# ifdef wxABORT_ON_CONFIG_ERROR
1828# error "wxUSE_PNM requires wxUSE_IMAGE"
1829# else
1830# undef wxUSE_PNM
1831# define wxUSE_PNM 0
1832# endif
1833# endif
1834
1835# if wxUSE_PCX
1836# ifdef wxABORT_ON_CONFIG_ERROR
1837# error "wxUSE_PCX requires wxUSE_IMAGE"
1838# else
1839# undef wxUSE_PCX
1840# define wxUSE_PCX 0
1841# endif
1842# endif
1843
1844# if wxUSE_IFF
1845# ifdef wxABORT_ON_CONFIG_ERROR
1846# error "wxUSE_IFF requires wxUSE_IMAGE"
1847# else
1848# undef wxUSE_IFF
1849# define wxUSE_IFF 0
1850# endif
1851# endif
1852
1853# if wxUSE_TOOLBAR
1854# ifdef wxABORT_ON_CONFIG_ERROR
1855# error "wxUSE_TOOLBAR requires wxUSE_IMAGE"
1856# else
1857# undef wxUSE_TOOLBAR
1858# define wxUSE_TOOLBAR 0
1859# endif
1860# endif
1861
1862# if wxUSE_XPM
1863# ifdef wxABORT_ON_CONFIG_ERROR
1864# error "wxUSE_XPM requires wxUSE_IMAGE"
1865# else
1866# undef wxUSE_XPM
1867# define wxUSE_XPM 0
1868# endif
1869# endif
1870
1871#endif /* !wxUSE_IMAGE */
1872
e30285ab
VZ
1873#if wxUSE_DOC_VIEW_ARCHITECTURE
1874# if !wxUSE_MENUS
1875# ifdef wxABORT_ON_CONFIG_ERROR
1876# error "DocView requires wxUSE_MENUS"
1877# else
1878# undef wxUSE_MENUS
1879# define wxUSE_MENUS 1
1880# endif
1881# endif
1882
adb799d6
DS
1883# if !wxUSE_CHOICEDLG
1884# ifdef wxABORT_ON_CONFIG_ERROR
1885# error "DocView requires wxUSE_CHOICEDLG"
1886# else
1887# undef wxUSE_CHOICEDLG
1888# define wxUSE_CHOICEDLG 1
1889# endif
1890# endif
1891
e30285ab
VZ
1892# if !wxUSE_STREAMS && !wxUSE_STD_IOSTREAM
1893# ifdef wxABORT_ON_CONFIG_ERROR
1894# error "DocView requires wxUSE_STREAMS or wxUSE_STD_IOSTREAM"
1895# else
1896# undef wxUSE_STREAMS
1897# define wxUSE_STREAMS 1
1898# endif
1899# endif
a0219e45
VS
1900
1901# if !wxUSE_FILE_HISTORY
1902# ifdef wxABORT_ON_CONFIG_ERROR
1903# error "DocView requires wxUSE_FILE_HISTORY"
1904# else
1905# undef wxUSE_FILE_HISTORY
1906# define wxUSE_FILE_HISTORY 1
1907# endif
1908# endif
e30285ab
VZ
1909#endif /* wxUSE_DOC_VIEW_ARCHITECTURE */
1910
3379ed37
VZ
1911#if wxUSE_PRINTING_ARCHITECTURE
1912# if !wxUSE_COMBOBOX
1913# ifdef wxABORT_ON_CONFIG_ERROR
1914# error "Print dialog requires wxUSE_COMBOBOX"
1915# else
1916# undef wxUSE_COMBOBOX
1917# define wxUSE_COMBOBOX 1
1918# endif
1919# endif
1920#endif /* wxUSE_PRINTING_ARCHITECTURE */
1921
e30285ab 1922#if wxUSE_MDI_ARCHITECTURE
efd17a1d
VZ
1923# if !wxUSE_MDI
1924# ifdef wxABORT_ON_CONFIG_ERROR
1925# error "MDI requires wxUSE_MDI"
1926# else
1927# undef wxUSE_MDI
1928# define wxUSE_MDI 1
1929# endif
1930# endif
1931
e30285ab 1932# if !wxUSE_DOC_VIEW_ARCHITECTURE
1e6feb95 1933# ifdef wxABORT_ON_CONFIG_ERROR
0872eaf9 1934# error "wxUSE_MDI_ARCHITECTURE requires wxUSE_DOC_VIEW_ARCHITECTURE"
1e6feb95 1935# else
e30285ab
VZ
1936# undef wxUSE_DOC_VIEW_ARCHITECTURE
1937# define wxUSE_DOC_VIEW_ARCHITECTURE 1
1e6feb95
VZ
1938# endif
1939# endif
e30285ab 1940#endif /* wxUSE_MDI_ARCHITECTURE */
1e6feb95
VZ
1941
1942#if !wxUSE_FILEDLG
2119e280 1943# if wxUSE_DOC_VIEW_ARCHITECTURE || wxUSE_WXHTML_HELP
1e6feb95 1944# ifdef wxABORT_ON_CONFIG_ERROR
0872eaf9 1945# error "wxUSE_FILEDLG is required by wxUSE_DOC_VIEW_ARCHITECTURE and wxUSE_WXHTML_HELP!"
1e6feb95
VZ
1946# else
1947# undef wxUSE_FILEDLG
1948# define wxUSE_FILEDLG 1
1949# endif
1950# endif
e421922f 1951#endif /* wxUSE_FILEDLG */
1e6feb95 1952
555f645a
WS
1953#if !wxUSE_GAUGE || !wxUSE_BUTTON
1954# if wxUSE_PROGRESSDLG && !defined(__WXPALMOS__)
063b752e 1955# ifdef wxABORT_ON_CONFIG_ERROR
555f645a 1956# error "Generic progress dialog requires wxUSE_GAUGE and wxUSE_BUTTON"
063b752e
WS
1957# else
1958# undef wxUSE_GAUGE
555f645a 1959# undef wxUSE_BUTTON
063b752e 1960# define wxUSE_GAUGE 1
555f645a 1961# define wxUSE_BUTTON 1
063b752e
WS
1962# endif
1963# endif
1964#endif /* !wxUSE_GAUGE */
1965
0b4f47a3 1966#if !wxUSE_BUTTON
555f645a 1967# if wxUSE_FONTDLG || \
0b4f47a3
DS
1968 wxUSE_FILEDLG || \
1969 wxUSE_CHOICEDLG || \
1970 wxUSE_NUMBERDLG || \
1971 wxUSE_TEXTDLG || \
1972 wxUSE_DIRDLG || \
1973 wxUSE_STARTUP_TIPS || \
1974 wxUSE_WIZARDDLG
1975# ifdef wxABORT_ON_CONFIG_ERROR
1976# error "Common and generic dialogs require wxUSE_BUTTON"
1977# else
1978# undef wxUSE_BUTTON
1979# define wxUSE_BUTTON 1
1980# endif
1981# endif
063b752e 1982#endif /* !wxUSE_BUTTON */
0b4f47a3 1983
12491c1f
JS
1984#if !wxUSE_TOOLBAR
1985# if wxUSE_TOOLBAR_NATIVE
1986# ifdef wxABORT_ON_CONFIG_ERROR
1987# error "wxUSE_TOOLBAR is set to 0 but wxUSE_TOOLBAR_NATIVE is set to 1"
1988# else
1989# undef wxUSE_TOOLBAR_NATIVE
1990# define wxUSE_TOOLBAR_NATIVE 0
1991# endif
1992# endif
12491c1f
JS
1993#endif
1994
1e6feb95
VZ
1995#if !wxUSE_IMAGLIST
1996# if wxUSE_TREECTRL || wxUSE_NOTEBOOK || wxUSE_LISTCTRL
1997# ifdef wxABORT_ON_CONFIG_ERROR
1998# error "wxImageList must be compiled as well"
1999# else
2000# undef wxUSE_IMAGLIST
2001# define wxUSE_IMAGLIST 1
2002# endif
2003# endif
2004#endif /* !wxUSE_IMAGLIST */
2005
1e6feb95 2006#if wxUSE_RADIOBOX
9a727a3b 2007# if !wxUSE_RADIOBTN
1e6feb95 2008# ifdef wxABORT_ON_CONFIG_ERROR
9a727a3b 2009# error "wxUSE_RADIOBOX requires wxUSE_RADIOBTN"
1e6feb95
VZ
2010# else
2011# undef wxUSE_RADIOBTN
1e6feb95 2012# define wxUSE_RADIOBTN 1
9a727a3b
WS
2013# endif
2014# endif
2015# if !wxUSE_STATBOX && !defined(__WXPALMOS__)
2016# ifdef wxABORT_ON_CONFIG_ERROR
2017# error "wxUSE_RADIOBOX requires wxUSE_STATBOX"
2018# else
2019# undef wxUSE_STATBOX
1e6feb95
VZ
2020# define wxUSE_STATBOX 1
2021# endif
2022# endif
2023#endif /* wxUSE_RADIOBOX */
2024
3379ed37
VZ
2025#if wxUSE_LOGWINDOW
2026# if !wxUSE_TEXTCTRL
2027# ifdef wxABORT_ON_CONFIG_ERROR
2028# error "wxUSE_LOGWINDOW requires wxUSE_TEXTCTRL"
2029# else
2030# undef wxUSE_TEXTCTRL
2031# define wxUSE_TEXTCTRL 1
2032# endif
2033# endif
2034#endif /* wxUSE_LOGWINDOW */
1e6feb95 2035
3e6e2754 2036#if wxUSE_LOG_DIALOG
0b4f47a3 2037# if !wxUSE_LISTCTRL || !wxUSE_BUTTON
3e6e2754 2038# ifdef wxABORT_ON_CONFIG_ERROR
0b4f47a3 2039# error "wxUSE_LOG_DIALOG requires wxUSE_LISTCTRL and wxUSE_BUTTON"
3e6e2754
JS
2040# else
2041# undef wxUSE_LISTCTRL
2042# define wxUSE_LISTCTRL 1
0b4f47a3
DS
2043# undef wxUSE_BUTTON
2044# define wxUSE_BUTTON 1
3e6e2754
JS
2045# endif
2046# endif
2047#endif /* wxUSE_LOG_DIALOG */
2048
1e6feb95 2049#if wxUSE_CLIPBOARD && !wxUSE_DATAOBJ
3379ed37 2050# ifdef wxABORT_ON_CONFIG_ERROR
1e6feb95
VZ
2051# error "wxClipboard requires wxDataObject"
2052# else
2053# undef wxUSE_DATAOBJ
2054# define wxUSE_DATAOBJ 1
2055# endif
2056#endif /* wxUSE_CLIPBOARD */
2057
d2ebf0b7
VS
2058#if wxUSE_XRC && !wxUSE_XML
2059# ifdef wxABORT_ON_CONFIG_ERROR
2060# error "wxUSE_XRC requires wxUSE_XML"
2061# else
2062# undef wxUSE_XRC
2063# define wxUSE_XRC 0
2064# endif
5a017695 2065#endif /* wxUSE_XRC */
d2ebf0b7 2066
4669dcb2
RN
2067#if wxUSE_SOCKETS && !wxUSE_STOPWATCH
2068# ifdef wxABORT_ON_CONFIG_ERROR
2069# error "wxUSE_SOCKETS requires wxUSE_STOPWATCH"
2070# else
2071# undef wxUSE_SOCKETS
2072# define wxUSE_SOCKETS 0
2073# endif
2074#endif /* wxUSE_SOCKETS */
2075
b0fc907f
VZ
2076#if wxUSE_SVG && !wxUSE_STREAMS
2077# ifdef wxABORT_ON_CONFIG_ERROR
2078# error "wxUSE_SVG requires wxUSE_STREAMS"
2079# else
2080# undef wxUSE_SVG
2081# define wxUSE_SVG 0
2082# endif
2083#endif /* wxUSE_SVG */
2084
d5cbee17
VS
2085#if wxUSE_SVG && !wxUSE_IMAGE
2086# ifdef wxABORT_ON_CONFIG_ERROR
2087# error "wxUSE_SVG requires wxUSE_IMAGE"
2088# else
2089# undef wxUSE_SVG
2090# define wxUSE_SVG 0
2091# endif
2092#endif /* wxUSE_SVG */
2093
2094#if wxUSE_SVG && !wxUSE_LIBPNG
2095# ifdef wxABORT_ON_CONFIG_ERROR
2096# error "wxUSE_SVG requires wxUSE_LIBPNG"
2097# else
2098# undef wxUSE_SVG
2099# define wxUSE_SVG 0
2100# endif
2101#endif /* wxUSE_SVG */
2102
dc90b8d4
VZ
2103#if wxUSE_TASKBARICON && !wxUSE_MENUS
2104# ifdef wxABORT_ON_CONFIG_ERROR
2105# error "wxUSE_TASKBARICON requires wxUSE_MENUS"
2106# else
2107# undef wxUSE_TASKBARICON
2108# define wxUSE_TASKBARICON 0
2109# endif
2110#endif /* wxUSE_TASKBARICON */
2111
ca5c6ac3
VZ
2112#if !wxUSE_VARIANT
2113# if wxUSE_DATAVIEWCTRL
2114# ifdef wxABORT_ON_CONFIG_ERROR
2115# error "wxDataViewCtrl requires wxVariant"
2116# else
2117# undef wxUSE_DATAVIEWCTRL
2118# define wxUSE_DATAVIEWCTRL 0
2119# endif
2120# endif
ca5c6ac3
VZ
2121#endif /* wxUSE_VARIANT */
2122
1e6feb95 2123#endif /* wxUSE_GUI */
8ba16443
VZ
2124
2125#endif /* _WX_CHKCONF_H_ */