]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/chkconf.h
3 * Purpose: check the config settings for consistency
4 * Author: Vadim Zeitlin
8 * Copyright: (c) 2000 Vadim Zeitlin <vadim@wxwidgets.org>
9 * Licence: wxWindows licence
12 /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
13 #ifndef _WX_CHKCONF_H_
14 #define _WX_CHKCONF_H_
17 **************************************************
18 PLEASE READ THIS IF YOU GET AN ERROR IN THIS FILE!
19 **************************************************
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
24 setup0.h and you haven't updated your local setup.h to to reflect it. If
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
27 build directory (lib/$(COMPILER)_{lib,dll}/msw[u][d][dll]/wx) so that it
28 the new setup.h is copied there.
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
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
49 this global setting determines what should we do if the setting FOO
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
52 error and abort (default as leads to least surprising behaviour)
54 #define wxABORT_ON_CONFIG_ERROR
60 /* GUI build by default */
61 #if !defined(wxUSE_GUI)
63 #endif /* !defined(wxUSE_GUI) */
66 If we're compiling without support for threads/exceptions we have to
67 disable the corresponding features.
71 # define wxUSE_THREADS 0
72 #endif /* wxNO_THREADS */
74 #ifdef wxNO_EXCEPTIONS
75 # undef wxUSE_EXCEPTIONS
76 # define wxUSE_EXCEPTIONS 0
77 #endif /* wxNO_EXCEPTIONS */
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 */
87 Section 1a: tests for non GUI features.
89 please keep the options in alphabetical order!
93 # ifdef wxABORT_ON_CONFIG_ERROR
94 # error "wxUSE_ANY must be defined, please read comment near the top of this file."
98 #endif /* wxUSE_ANY */
100 #ifndef wxUSE_CONSOLE_EVENTLOOP
101 # ifdef wxABORT_ON_CONFIG_ERROR
102 # error "wxUSE_CONSOLE_EVENTLOOP must be defined, please read comment near the top of this file."
104 # define wxUSE_CONSOLE_EVENTLOOP 0
106 #endif /* !defined(wxUSE_CONSOLE_EVENTLOOP) */
108 #ifndef wxUSE_DYNLIB_CLASS
109 # ifdef wxABORT_ON_CONFIG_ERROR
110 # error "wxUSE_DYNLIB_CLASS must be defined, please read comment near the top of this file."
112 # define wxUSE_DYNLIB_CLASS 0
114 #endif /* !defined(wxUSE_DYNLIB_CLASS) */
116 #ifndef wxUSE_EXCEPTIONS
117 # ifdef wxABORT_ON_CONFIG_ERROR
118 # error "wxUSE_EXCEPTIONS must be defined, please read comment near the top of this file."
120 # define wxUSE_EXCEPTIONS 0
122 #endif /* !defined(wxUSE_EXCEPTIONS) */
124 #ifndef wxUSE_FILESYSTEM
125 # ifdef wxABORT_ON_CONFIG_ERROR
126 # error "wxUSE_FILESYSTEM must be defined, please read comment near the top of this file."
128 # define wxUSE_FILESYSTEM 0
130 #endif /* !defined(wxUSE_FILESYSTEM) */
132 #ifndef wxUSE_FS_ARCHIVE
133 # ifdef wxABORT_ON_CONFIG_ERROR
134 # error "wxUSE_FS_ARCHIVE must be defined, please read comment near the top of this file."
136 # define wxUSE_FS_ARCHIVE 0
138 #endif /* !defined(wxUSE_FS_ARCHIVE) */
140 #ifndef wxUSE_FSVOLUME
141 # ifdef wxABORT_ON_CONFIG_ERROR
142 # error "wxUSE_FSVOLUME must be defined, please read comment near the top of this file."
144 # define wxUSE_FSVOLUME 0
146 #endif /* !defined(wxUSE_FSVOLUME) */
148 #ifndef wxUSE_FSWATCHER
149 # ifdef wxABORT_ON_CONFIG_ERROR
150 # error "wxUSE_FSWATCHER must be defined, please read comment near the top of this file."
152 # define wxUSE_FSWATCHER 0
154 #endif /* !defined(wxUSE_FSWATCHER) */
156 #ifndef wxUSE_DYNAMIC_LOADER
157 # ifdef wxABORT_ON_CONFIG_ERROR
158 # error "wxUSE_DYNAMIC_LOADER must be defined, please read comment near the top of this file."
160 # define wxUSE_DYNAMIC_LOADER 0
162 #endif /* !defined(wxUSE_DYNAMIC_LOADER) */
165 # ifdef wxABORT_ON_CONFIG_ERROR
166 # error "wxUSE_INTL must be defined, please read comment near the top of this file."
168 # define wxUSE_INTL 0
170 #endif /* !defined(wxUSE_INTL) */
173 # ifdef wxABORT_ON_CONFIG_ERROR
174 # error "wxUSE_IPV6 must be defined, please read comment near the top of this file."
176 # define wxUSE_IPV6 0
178 #endif /* !defined(wxUSE_IPV6) */
181 # ifdef wxABORT_ON_CONFIG_ERROR
182 # error "wxUSE_LOG must be defined, please read comment near the top of this file."
186 #endif /* !defined(wxUSE_LOG) */
188 #ifndef wxUSE_LONGLONG
189 # ifdef wxABORT_ON_CONFIG_ERROR
190 # error "wxUSE_LONGLONG must be defined, please read comment near the top of this file."
192 # define wxUSE_LONGLONG 0
194 #endif /* !defined(wxUSE_LONGLONG) */
196 #ifndef wxUSE_MIMETYPE
197 # ifdef wxABORT_ON_CONFIG_ERROR
198 # error "wxUSE_MIMETYPE must be defined, please read comment near the top of this file."
200 # define wxUSE_MIMETYPE 0
202 #endif /* !defined(wxUSE_MIMETYPE) */
204 #ifndef wxUSE_ON_FATAL_EXCEPTION
205 # ifdef wxABORT_ON_CONFIG_ERROR
206 # error "wxUSE_ON_FATAL_EXCEPTION must be defined, please read comment near the top of this file."
208 # define wxUSE_ON_FATAL_EXCEPTION 0
210 #endif /* !defined(wxUSE_ON_FATAL_EXCEPTION) */
212 #ifndef wxUSE_PRINTF_POS_PARAMS
213 # ifdef wxABORT_ON_CONFIG_ERROR
214 # error "wxUSE_PRINTF_POS_PARAMS must be defined, please read comment near the top of this file."
216 # define wxUSE_PRINTF_POS_PARAMS 0
218 #endif /* !defined(wxUSE_PRINTF_POS_PARAMS) */
220 #ifndef wxUSE_PROTOCOL
221 # ifdef wxABORT_ON_CONFIG_ERROR
222 # error "wxUSE_PROTOCOL must be defined, please read comment near the top of this file."
224 # define wxUSE_PROTOCOL 0
226 #endif /* !defined(wxUSE_PROTOCOL) */
228 /* we may not define wxUSE_PROTOCOL_XXX if wxUSE_PROTOCOL is set to 0 */
230 # undef wxUSE_PROTOCOL_HTTP
231 # undef wxUSE_PROTOCOL_FTP
232 # undef wxUSE_PROTOCOL_FILE
233 # define wxUSE_PROTOCOL_HTTP 0
234 # define wxUSE_PROTOCOL_FTP 0
235 # define wxUSE_PROTOCOL_FILE 0
236 #endif /* wxUSE_PROTOCOL */
238 #ifndef wxUSE_PROTOCOL_HTTP
239 # ifdef wxABORT_ON_CONFIG_ERROR
240 # error "wxUSE_PROTOCOL_HTTP must be defined, please read comment near the top of this file."
242 # define wxUSE_PROTOCOL_HTTP 0
244 #endif /* !defined(wxUSE_PROTOCOL_HTTP) */
246 #ifndef wxUSE_PROTOCOL_FTP
247 # ifdef wxABORT_ON_CONFIG_ERROR
248 # error "wxUSE_PROTOCOL_FTP must be defined, please read comment near the top of this file."
250 # define wxUSE_PROTOCOL_FTP 0
252 #endif /* !defined(wxUSE_PROTOCOL_FTP) */
254 #ifndef wxUSE_PROTOCOL_FILE
255 # ifdef wxABORT_ON_CONFIG_ERROR
256 # error "wxUSE_PROTOCOL_FILE must be defined, please read comment near the top of this file."
258 # define wxUSE_PROTOCOL_FILE 0
260 #endif /* !defined(wxUSE_PROTOCOL_FILE) */
263 # ifdef wxABORT_ON_CONFIG_ERROR
264 # error "wxUSE_REGEX must be defined, please read comment near the top of this file."
266 # define wxUSE_REGEX 0
268 #endif /* !defined(wxUSE_REGEX) */
270 #ifndef wxUSE_STDPATHS
271 # ifdef wxABORT_ON_CONFIG_ERROR
272 # error "wxUSE_STDPATHS must be defined, please read comment near the top of this file."
274 # define wxUSE_STDPATHS 1
276 #endif /* !defined(wxUSE_STDPATHS) */
279 # ifdef wxABORT_ON_CONFIG_ERROR
280 # error "wxUSE_XML must be defined, please read comment near the top of this file."
284 #endif /* !defined(wxUSE_XML) */
286 #ifndef wxUSE_SOCKETS
287 # ifdef wxABORT_ON_CONFIG_ERROR
288 # error "wxUSE_SOCKETS must be defined, please read comment near the top of this file."
290 # define wxUSE_SOCKETS 0
292 #endif /* !defined(wxUSE_SOCKETS) */
294 #ifndef wxUSE_STREAMS
295 # ifdef wxABORT_ON_CONFIG_ERROR
296 # error "wxUSE_STREAMS must be defined, please read comment near the top of this file."
298 # define wxUSE_STREAMS 0
300 #endif /* !defined(wxUSE_STREAMS) */
302 #ifndef wxUSE_STOPWATCH
303 # ifdef wxABORT_ON_CONFIG_ERROR
304 # error "wxUSE_STOPWATCH must be defined, please read comment near the top of this file."
306 # define wxUSE_STOPWATCH 0
308 #endif /* !defined(wxUSE_STOPWATCH) */
310 #ifndef wxUSE_TEXTBUFFER
311 # ifdef wxABORT_ON_CONFIG_ERROR
312 # error "wxUSE_TEXTBUFFER must be defined, please read comment near the top of this file."
314 # define wxUSE_TEXTBUFFER 0
316 #endif /* !defined(wxUSE_TEXTBUFFER) */
318 #ifndef wxUSE_TEXTFILE
319 # ifdef wxABORT_ON_CONFIG_ERROR
320 # error "wxUSE_TEXTFILE must be defined, please read comment near the top of this file."
322 # define wxUSE_TEXTFILE 0
324 #endif /* !defined(wxUSE_TEXTFILE) */
326 #ifndef wxUSE_UNICODE
327 # ifdef wxABORT_ON_CONFIG_ERROR
328 # error "wxUSE_UNICODE must be defined, please read comment near the top of this file."
330 # define wxUSE_UNICODE 0
332 #endif /* !defined(wxUSE_UNICODE) */
335 # ifdef wxABORT_ON_CONFIG_ERROR
336 # error "wxUSE_URL must be defined, please read comment near the top of this file."
340 #endif /* !defined(wxUSE_URL) */
342 #ifndef wxUSE_VARIANT
343 # ifdef wxABORT_ON_CONFIG_ERROR
344 # error "wxUSE_VARIANT must be defined, please read comment near the top of this file."
346 # define wxUSE_VARIANT 0
348 #endif /* wxUSE_VARIANT */
350 #ifndef wxUSE_XLOCALE
351 # ifdef wxABORT_ON_CONFIG_ERROR
352 # error "wxUSE_XLOCALE must be defined, please read comment near the top of this file."
354 # define wxUSE_XLOCALE 0
356 #endif /* !defined(wxUSE_XLOCALE) */
359 Section 1b: all these tests are for GUI only.
361 please keep the options in alphabetical order!
366 all of the settings tested below must be defined or we'd get an error from
367 preprocessor about invalid integer expression
370 #ifndef wxUSE_ABOUTDLG
371 # ifdef wxABORT_ON_CONFIG_ERROR
372 # error "wxUSE_ABOUTDLG must be defined, please read comment near the top of this file."
374 # define wxUSE_ABOUTDLG 0
376 #endif /* !defined(wxUSE_ABOUTDLG) */
379 # ifdef wxABORT_ON_CONFIG_ERROR
380 # error "wxUSE_ACCEL must be defined, please read comment near the top of this file."
382 # define wxUSE_ACCEL 0
384 #endif /* !defined(wxUSE_ACCEL) */
386 #ifndef wxUSE_ACCESSIBILITY
387 # ifdef wxABORT_ON_CONFIG_ERROR
388 # error "wxUSE_ACCESSIBILITY must be defined, please read comment near the top of this file."
390 # define wxUSE_ACCESSIBILITY 0
392 #endif /* !defined(wxUSE_ACCESSIBILITY) */
394 #ifndef wxUSE_ANIMATIONCTRL
395 # ifdef wxABORT_ON_CONFIG_ERROR
396 # error "wxUSE_ANIMATIONCTRL must be defined, please read comment near the top of this file."
398 # define wxUSE_ANIMATIONCTRL 0
400 #endif /* !defined(wxUSE_ANIMATIONCTRL) */
402 #ifndef wxUSE_AUTOID_MANAGEMENT
403 # ifdef wxABORT_ON_CONFIG_ERROR
404 # error "wxUSE_AUTOID_MANAGEMENT must be defined, please read comment near the top of this file."
406 # define wxUSE_AUTOID_MANAGEMENT 0
408 #endif /* !defined(wxUSE_AUTOID_MANAGEMENT) */
410 #ifndef wxUSE_BITMAPCOMBOBOX
411 # ifdef wxABORT_ON_CONFIG_ERROR
412 # error "wxUSE_BITMAPCOMBOBOX must be defined, please read comment near the top of this file."
414 # define wxUSE_BITMAPCOMBOBOX 0
416 #endif /* !defined(wxUSE_BITMAPCOMBOBOX) */
418 #ifndef wxUSE_BMPBUTTON
419 # ifdef wxABORT_ON_CONFIG_ERROR
420 # error "wxUSE_BMPBUTTON must be defined, please read comment near the top of this file."
422 # define wxUSE_BMPBUTTON 0
424 #endif /* !defined(wxUSE_BMPBUTTON) */
427 # ifdef wxABORT_ON_CONFIG_ERROR
428 # error "wxUSE_BUTTON must be defined, please read comment near the top of this file."
430 # define wxUSE_BUTTON 0
432 #endif /* !defined(wxUSE_BUTTON) */
435 This one is special, it's only used under wxGTK currently so don't require
440 # define wxUSE_CAIRO 1
442 # define wxUSE_CAIRO 0
446 #ifndef wxUSE_CALENDARCTRL
447 # ifdef wxABORT_ON_CONFIG_ERROR
448 # error "wxUSE_CALENDARCTRL must be defined, please read comment near the top of this file."
450 # define wxUSE_CALENDARCTRL 0
452 #endif /* !defined(wxUSE_CALENDARCTRL) */
455 # ifdef wxABORT_ON_CONFIG_ERROR
456 # error "wxUSE_CARET must be defined, please read comment near the top of this file."
458 # define wxUSE_CARET 0
460 #endif /* !defined(wxUSE_CARET) */
462 #ifndef wxUSE_CHECKBOX
463 # ifdef wxABORT_ON_CONFIG_ERROR
464 # error "wxUSE_CHECKBOX must be defined, please read comment near the top of this file."
466 # define wxUSE_CHECKBOX 0
468 #endif /* !defined(wxUSE_CHECKBOX) */
470 #ifndef wxUSE_CHECKLISTBOX
471 # ifdef wxABORT_ON_CONFIG_ERROR
472 # error "wxUSE_CHECKLISTBOX must be defined, please read comment near the top of this file."
474 # define wxUSE_CHECKLISTBOX 0
476 #endif /* !defined(wxUSE_CHECKLISTBOX) */
479 # ifdef wxABORT_ON_CONFIG_ERROR
480 # error "wxUSE_CHOICE must be defined, please read comment near the top of this file."
482 # define wxUSE_CHOICE 0
484 #endif /* !defined(wxUSE_CHOICE) */
486 #ifndef wxUSE_CHOICEBOOK
487 # ifdef wxABORT_ON_CONFIG_ERROR
488 # error "wxUSE_CHOICEBOOK must be defined, please read comment near the top of this file."
490 # define wxUSE_CHOICEBOOK 0
492 #endif /* !defined(wxUSE_CHOICEBOOK) */
494 #ifndef wxUSE_CHOICEDLG
495 # ifdef wxABORT_ON_CONFIG_ERROR
496 # error "wxUSE_CHOICEDLG must be defined, please read comment near the top of this file."
498 # define wxUSE_CHOICEDLG 0
500 #endif /* !defined(wxUSE_CHOICEDLG) */
502 #ifndef wxUSE_CLIPBOARD
503 # ifdef wxABORT_ON_CONFIG_ERROR
504 # error "wxUSE_CLIPBOARD must be defined, please read comment near the top of this file."
506 # define wxUSE_CLIPBOARD 0
508 #endif /* !defined(wxUSE_CLIPBOARD) */
510 #ifndef wxUSE_COLLPANE
511 # ifdef wxABORT_ON_CONFIG_ERROR
512 # error "wxUSE_COLLPANE must be defined, please read comment near the top of this file."
514 # define wxUSE_COLLPANE 0
516 #endif /* !defined(wxUSE_COLLPANE) */
518 #ifndef wxUSE_COLOURDLG
519 # ifdef wxABORT_ON_CONFIG_ERROR
520 # error "wxUSE_COLOURDLG must be defined, please read comment near the top of this file."
522 # define wxUSE_COLOURDLG 0
524 #endif /* !defined(wxUSE_COLOURDLG) */
526 #ifndef wxUSE_COLOURPICKERCTRL
527 # ifdef wxABORT_ON_CONFIG_ERROR
528 # error "wxUSE_COLOURPICKERCTRL must be defined, please read comment near the top of this file."
530 # define wxUSE_COLOURPICKERCTRL 0
532 #endif /* !defined(wxUSE_COLOURPICKERCTRL) */
534 #ifndef wxUSE_COMBOBOX
535 # ifdef wxABORT_ON_CONFIG_ERROR
536 # error "wxUSE_COMBOBOX must be defined, please read comment near the top of this file."
538 # define wxUSE_COMBOBOX 0
540 #endif /* !defined(wxUSE_COMBOBOX) */
542 #ifndef wxUSE_COMBOCTRL
543 # ifdef wxABORT_ON_CONFIG_ERROR
544 # error "wxUSE_COMBOCTRL must be defined, please read comment near the top of this file."
546 # define wxUSE_COMBOCTRL 0
548 #endif /* !defined(wxUSE_COMBOCTRL) */
550 #ifndef wxUSE_DATAOBJ
551 # ifdef wxABORT_ON_CONFIG_ERROR
552 # error "wxUSE_DATAOBJ must be defined, please read comment near the top of this file."
554 # define wxUSE_DATAOBJ 0
556 #endif /* !defined(wxUSE_DATAOBJ) */
558 #ifndef wxUSE_DATAVIEWCTRL
559 # ifdef wxABORT_ON_CONFIG_ERROR
560 # error "wxUSE_DATAVIEWCTRL must be defined, please read comment near the top of this file."
562 # define wxUSE_DATAVIEWCTRL 0
564 #endif /* !defined(wxUSE_DATAVIEWCTRL) */
566 #ifndef wxUSE_DATEPICKCTRL
567 # ifdef wxABORT_ON_CONFIG_ERROR
568 # error "wxUSE_DATEPICKCTRL must be defined, please read comment near the top of this file."
570 # define wxUSE_DATEPICKCTRL 0
572 #endif /* !defined(wxUSE_DATEPICKCTRL) */
574 #ifndef wxUSE_DIRPICKERCTRL
575 # ifdef wxABORT_ON_CONFIG_ERROR
576 # error "wxUSE_DIRPICKERCTRL must be defined, please read comment near the top of this file."
578 # define wxUSE_DIRPICKERCTRL 0
580 #endif /* !defined(wxUSE_DIRPICKERCTRL) */
582 #ifndef wxUSE_DISPLAY
583 # ifdef wxABORT_ON_CONFIG_ERROR
584 # error "wxUSE_DISPLAY must be defined, please read comment near the top of this file."
586 # define wxUSE_DISPLAY 0
588 #endif /* !defined(wxUSE_DISPLAY) */
590 #ifndef wxUSE_DOC_VIEW_ARCHITECTURE
591 # ifdef wxABORT_ON_CONFIG_ERROR
592 # error "wxUSE_DOC_VIEW_ARCHITECTURE must be defined, please read comment near the top of this file."
594 # define wxUSE_DOC_VIEW_ARCHITECTURE 0
596 #endif /* !defined(wxUSE_DOC_VIEW_ARCHITECTURE) */
598 #ifndef wxUSE_FILECTRL
599 # ifdef wxABORT_ON_CONFIG_ERROR
600 # error "wxUSE_FILECTRL must be defined, please read comment near the top of this file."
602 # define wxUSE_FILECTRL 0
604 #endif /* !defined(wxUSE_FILECTRL) */
606 #ifndef wxUSE_FILEDLG
607 # ifdef wxABORT_ON_CONFIG_ERROR
608 # error "wxUSE_FILEDLG must be defined, please read comment near the top of this file."
610 # define wxUSE_FILEDLG 0
612 #endif /* !defined(wxUSE_FILEDLG) */
614 #ifndef wxUSE_FILEPICKERCTRL
615 # ifdef wxABORT_ON_CONFIG_ERROR
616 # error "wxUSE_FILEPICKERCTRL must be defined, please read comment near the top of this file."
618 # define wxUSE_FILEPICKERCTRL 0
620 #endif /* !defined(wxUSE_FILEPICKERCTRL) */
622 #ifndef wxUSE_FONTDLG
623 # ifdef wxABORT_ON_CONFIG_ERROR
624 # error "wxUSE_FONTDLG must be defined, please read comment near the top of this file."
626 # define wxUSE_FONTDLG 0
628 #endif /* !defined(wxUSE_FONTDLG) */
630 #ifndef wxUSE_FONTMAP
631 # ifdef wxABORT_ON_CONFIG_ERROR
632 # error "wxUSE_FONTMAP must be defined, please read comment near the top of this file."
634 # define wxUSE_FONTMAP 0
636 #endif /* !defined(wxUSE_FONTMAP) */
638 #ifndef wxUSE_FONTPICKERCTRL
639 # ifdef wxABORT_ON_CONFIG_ERROR
640 # error "wxUSE_FONTPICKERCTRL must be defined, please read comment near the top of this file."
642 # define wxUSE_FONTPICKERCTRL 0
644 #endif /* !defined(wxUSE_FONTPICKERCTRL) */
647 # ifdef wxABORT_ON_CONFIG_ERROR
648 # error "wxUSE_GAUGE must be defined, please read comment near the top of this file."
650 # define wxUSE_GAUGE 0
652 #endif /* !defined(wxUSE_GAUGE) */
654 #ifndef wxUSE_GRAPHICS_CONTEXT
655 # ifdef wxABORT_ON_CONFIG_ERROR
656 # error "wxUSE_GRAPHICS_CONTEXT must be defined, please read comment near the top of this file."
658 # define wxUSE_GRAPHICS_CONTEXT 0
660 #endif /* !defined(wxUSE_GRAPHICS_CONTEXT) */
664 # ifdef wxABORT_ON_CONFIG_ERROR
665 # error "wxUSE_GRID must be defined, please read comment near the top of this file."
667 # define wxUSE_GRID 0
669 #endif /* !defined(wxUSE_GRID) */
671 #ifndef wxUSE_HEADERCTRL
672 # ifdef wxABORT_ON_CONFIG_ERROR
673 # error "wxUSE_HEADERCTRL must be defined, please read comment near the top of this file."
675 # define wxUSE_HEADERCTRL 0
677 #endif /* !defined(wxUSE_HEADERCTRL) */
680 # ifdef wxABORT_ON_CONFIG_ERROR
681 # error "wxUSE_HELP must be defined, please read comment near the top of this file."
683 # define wxUSE_HELP 0
685 #endif /* !defined(wxUSE_HELP) */
687 #ifndef wxUSE_HYPERLINKCTRL
688 # ifdef wxABORT_ON_CONFIG_ERROR
689 # error "wxUSE_HYPERLINKCTRL must be defined, please read comment near the top of this file."
691 # define wxUSE_HYPERLINKCTRL 0
693 #endif /* !defined(wxUSE_HYPERLINKCTRL) */
696 # ifdef wxABORT_ON_CONFIG_ERROR
697 # error "wxUSE_HTML must be defined, please read comment near the top of this file."
699 # define wxUSE_HTML 0
701 #endif /* !defined(wxUSE_HTML) */
703 #ifndef wxUSE_LIBMSPACK
704 # if !defined(__UNIX__) || defined(__WXPALMOS__)
705 /* set to 0 on platforms that don't have libmspack */
706 # define wxUSE_LIBMSPACK 0
708 # ifdef wxABORT_ON_CONFIG_ERROR
709 # error "wxUSE_LIBMSPACK must be defined, please read comment near the top of this file."
711 # define wxUSE_LIBMSPACK 0
714 #endif /* !defined(wxUSE_LIBMSPACK) */
716 #ifndef wxUSE_ICO_CUR
717 # ifdef wxABORT_ON_CONFIG_ERROR
718 # error "wxUSE_ICO_CUR must be defined, please read comment near the top of this file."
720 # define wxUSE_ICO_CUR 0
722 #endif /* !defined(wxUSE_ICO_CUR) */
725 # ifdef wxABORT_ON_CONFIG_ERROR
726 # error "wxUSE_IFF must be defined, please read comment near the top of this file."
730 #endif /* !defined(wxUSE_IFF) */
732 #ifndef wxUSE_IMAGLIST
733 # ifdef wxABORT_ON_CONFIG_ERROR
734 # error "wxUSE_IMAGLIST must be defined, please read comment near the top of this file."
736 # define wxUSE_IMAGLIST 0
738 #endif /* !defined(wxUSE_IMAGLIST) */
740 #ifndef wxUSE_INFOBAR
741 # ifdef wxABORT_ON_CONFIG_ERROR
742 # error "wxUSE_INFOBAR must be defined, please read comment near the top of this file."
744 # define wxUSE_INFOBAR 0
746 #endif /* !defined(wxUSE_INFOBAR) */
748 #ifndef wxUSE_JOYSTICK
749 # ifdef wxABORT_ON_CONFIG_ERROR
750 # error "wxUSE_JOYSTICK must be defined, please read comment near the top of this file."
752 # define wxUSE_JOYSTICK 0
754 #endif /* !defined(wxUSE_JOYSTICK) */
756 #ifndef wxUSE_LISTBOOK
757 # ifdef wxABORT_ON_CONFIG_ERROR
758 # error "wxUSE_LISTBOOK must be defined, please read comment near the top of this file."
760 # define wxUSE_LISTBOOK 0
762 #endif /* !defined(wxUSE_LISTBOOK) */
764 #ifndef wxUSE_LISTBOX
765 # ifdef wxABORT_ON_CONFIG_ERROR
766 # error "wxUSE_LISTBOX must be defined, please read comment near the top of this file."
768 # define wxUSE_LISTBOX 0
770 #endif /* !defined(wxUSE_LISTBOX) */
772 #ifndef wxUSE_LISTCTRL
773 # ifdef wxABORT_ON_CONFIG_ERROR
774 # error "wxUSE_LISTCTRL must be defined, please read comment near the top of this file."
776 # define wxUSE_LISTCTRL 0
778 #endif /* !defined(wxUSE_LISTCTRL) */
781 # ifdef wxABORT_ON_CONFIG_ERROR
782 # error "wxUSE_LOGGUI must be defined, please read comment near the top of this file."
784 # define wxUSE_LOGGUI 0
786 #endif /* !defined(wxUSE_LOGGUI) */
788 #ifndef wxUSE_LOGWINDOW
789 # ifdef wxABORT_ON_CONFIG_ERROR
790 # error "wxUSE_LOGWINDOW must be defined, please read comment near the top of this file."
792 # define wxUSE_LOGWINDOW 0
794 #endif /* !defined(wxUSE_LOGWINDOW) */
796 #ifndef wxUSE_LOG_DIALOG
797 # ifdef wxABORT_ON_CONFIG_ERROR
798 # error "wxUSE_LOG_DIALOG must be defined, please read comment near the top of this file."
800 # define wxUSE_LOG_DIALOG 0
802 #endif /* !defined(wxUSE_LOG_DIALOG) */
805 # ifdef wxABORT_ON_CONFIG_ERROR
806 # error "wxUSE_MDI must be defined, please read comment near the top of this file."
810 #endif /* !defined(wxUSE_MDI) */
812 #ifndef wxUSE_MDI_ARCHITECTURE
813 # ifdef wxABORT_ON_CONFIG_ERROR
814 # error "wxUSE_MDI_ARCHITECTURE must be defined, please read comment near the top of this file."
816 # define wxUSE_MDI_ARCHITECTURE 0
818 #endif /* !defined(wxUSE_MDI_ARCHITECTURE) */
821 # ifdef wxABORT_ON_CONFIG_ERROR
822 # error "wxUSE_MENUS must be defined, please read comment near the top of this file."
824 # define wxUSE_MENUS 0
826 #endif /* !defined(wxUSE_MENUS) */
829 # ifdef wxABORT_ON_CONFIG_ERROR
830 # error "wxUSE_MSGDLG must be defined, please read comment near the top of this file."
832 # define wxUSE_MSGDLG 0
834 #endif /* !defined(wxUSE_MSGDLG) */
836 #ifndef wxUSE_NOTEBOOK
837 # ifdef wxABORT_ON_CONFIG_ERROR
838 # error "wxUSE_NOTEBOOK must be defined, please read comment near the top of this file."
840 # define wxUSE_NOTEBOOK 0
842 #endif /* !defined(wxUSE_NOTEBOOK) */
844 #ifndef wxUSE_NOTIFICATION_MESSAGE
845 # ifdef wxABORT_ON_CONFIG_ERROR
846 # error "wxUSE_NOTIFICATION_MESSAGE must be defined, please read comment near the top of this file."
848 # define wxUSE_NOTIFICATION_MESSAGE 0
850 #endif /* !defined(wxUSE_NOTIFICATION_MESSAGE) */
852 #ifndef wxUSE_ODCOMBOBOX
853 # ifdef wxABORT_ON_CONFIG_ERROR
854 # error "wxUSE_ODCOMBOBOX must be defined, please read comment near the top of this file."
856 # define wxUSE_ODCOMBOBOX 0
858 #endif /* !defined(wxUSE_ODCOMBOBOX) */
860 #ifndef wxUSE_PALETTE
861 # ifdef wxABORT_ON_CONFIG_ERROR
862 # error "wxUSE_PALETTE must be defined, please read comment near the top of this file."
864 # define wxUSE_PALETTE 0
866 #endif /* !defined(wxUSE_PALETTE) */
868 #ifndef wxUSE_POPUPWIN
869 # ifdef wxABORT_ON_CONFIG_ERROR
870 # error "wxUSE_POPUPWIN must be defined, please read comment near the top of this file."
872 # define wxUSE_POPUPWIN 0
874 #endif /* !defined(wxUSE_POPUPWIN) */
876 #ifndef wxUSE_PRINTING_ARCHITECTURE
877 # ifdef wxABORT_ON_CONFIG_ERROR
878 # error "wxUSE_PRINTING_ARCHITECTURE must be defined, please read comment near the top of this file."
880 # define wxUSE_PRINTING_ARCHITECTURE 0
882 #endif /* !defined(wxUSE_PRINTING_ARCHITECTURE) */
884 #ifndef wxUSE_RADIOBOX
885 # ifdef wxABORT_ON_CONFIG_ERROR
886 # error "wxUSE_RADIOBOX must be defined, please read comment near the top of this file."
888 # define wxUSE_RADIOBOX 0
890 #endif /* !defined(wxUSE_RADIOBOX) */
892 #ifndef wxUSE_RADIOBTN
893 # ifdef wxABORT_ON_CONFIG_ERROR
894 # error "wxUSE_RADIOBTN must be defined, please read comment near the top of this file."
896 # define wxUSE_RADIOBTN 0
898 #endif /* !defined(wxUSE_RADIOBTN) */
900 #ifndef wxUSE_REARRANGECTRL
901 # ifdef wxABORT_ON_CONFIG_ERROR
902 # error "wxUSE_REARRANGECTRL must be defined, please read comment near the top of this file."
904 # define wxUSE_REARRANGECTRL 0
906 #endif /* !defined(wxUSE_REARRANGECTRL) */
909 # ifdef wxABORT_ON_CONFIG_ERROR
910 # error "wxUSE_RIBBON must be defined, please read comment near the top of this file."
912 # define wxUSE_RIBBON 0
914 #endif /* !defined(wxUSE_RIBBON) */
917 # ifdef wxABORT_ON_CONFIG_ERROR
918 # error "wxUSE_SASH must be defined, please read comment near the top of this file."
920 # define wxUSE_SASH 0
922 #endif /* !defined(wxUSE_SASH) */
924 #ifndef wxUSE_SCROLLBAR
925 # ifdef wxABORT_ON_CONFIG_ERROR
926 # error "wxUSE_SCROLLBAR must be defined, please read comment near the top of this file."
928 # define wxUSE_SCROLLBAR 0
930 #endif /* !defined(wxUSE_SCROLLBAR) */
933 # ifdef wxABORT_ON_CONFIG_ERROR
934 # error "wxUSE_SLIDER must be defined, please read comment near the top of this file."
936 # define wxUSE_SLIDER 0
938 #endif /* !defined(wxUSE_SLIDER) */
941 # ifdef wxABORT_ON_CONFIG_ERROR
942 # error "wxUSE_SOUND must be defined, please read comment near the top of this file."
944 # define wxUSE_SOUND 0
946 #endif /* !defined(wxUSE_SOUND) */
948 #ifndef wxUSE_SPINBTN
949 # ifdef wxABORT_ON_CONFIG_ERROR
950 # error "wxUSE_SPINBTN must be defined, please read comment near the top of this file."
952 # define wxUSE_SPINBTN 0
954 #endif /* !defined(wxUSE_SPINBTN) */
956 #ifndef wxUSE_SPINCTRL
957 # ifdef wxABORT_ON_CONFIG_ERROR
958 # error "wxUSE_SPINCTRL must be defined, please read comment near the top of this file."
960 # define wxUSE_SPINCTRL 0
962 #endif /* !defined(wxUSE_SPINCTRL) */
965 # ifdef wxABORT_ON_CONFIG_ERROR
966 # error "wxUSE_SPLASH must be defined, please read comment near the top of this file."
968 # define wxUSE_SPLASH 0
970 #endif /* !defined(wxUSE_SPLASH) */
972 #ifndef wxUSE_SPLITTER
973 # ifdef wxABORT_ON_CONFIG_ERROR
974 # error "wxUSE_SPLITTER must be defined, please read comment near the top of this file."
976 # define wxUSE_SPLITTER 0
978 #endif /* !defined(wxUSE_SPLITTER) */
980 #ifndef wxUSE_STATBMP
981 # ifdef wxABORT_ON_CONFIG_ERROR
982 # error "wxUSE_STATBMP must be defined, please read comment near the top of this file."
984 # define wxUSE_STATBMP 0
986 #endif /* !defined(wxUSE_STATBMP) */
988 #ifndef wxUSE_STATBOX
989 # ifdef wxABORT_ON_CONFIG_ERROR
990 # error "wxUSE_STATBOX must be defined, please read comment near the top of this file."
992 # define wxUSE_STATBOX 0
994 #endif /* !defined(wxUSE_STATBOX) */
996 #ifndef wxUSE_STATLINE
997 # ifdef wxABORT_ON_CONFIG_ERROR
998 # error "wxUSE_STATLINE must be defined, please read comment near the top of this file."
1000 # define wxUSE_STATLINE 0
1002 #endif /* !defined(wxUSE_STATLINE) */
1004 #ifndef wxUSE_STATTEXT
1005 # ifdef wxABORT_ON_CONFIG_ERROR
1006 # error "wxUSE_STATTEXT must be defined, please read comment near the top of this file."
1008 # define wxUSE_STATTEXT 0
1010 #endif /* !defined(wxUSE_STATTEXT) */
1012 #ifndef wxUSE_STATUSBAR
1013 # ifdef wxABORT_ON_CONFIG_ERROR
1014 # error "wxUSE_STATUSBAR must be defined, please read comment near the top of this file."
1016 # define wxUSE_STATUSBAR 0
1018 #endif /* !defined(wxUSE_STATUSBAR) */
1020 #ifndef wxUSE_TASKBARICON
1021 # ifdef wxABORT_ON_CONFIG_ERROR
1022 # error "wxUSE_TASKBARICON must be defined, please read comment near the top of this file."
1024 # define wxUSE_TASKBARICON 0
1026 #endif /* !defined(wxUSE_TASKBARICON) */
1028 #ifndef wxUSE_TEXTCTRL
1029 # ifdef wxABORT_ON_CONFIG_ERROR
1030 # error "wxUSE_TEXTCTRL must be defined, please read comment near the top of this file."
1032 # define wxUSE_TEXTCTRL 0
1034 #endif /* !defined(wxUSE_TEXTCTRL) */
1036 #ifndef wxUSE_TIPWINDOW
1037 # ifdef wxABORT_ON_CONFIG_ERROR
1038 # error "wxUSE_TIPWINDOW must be defined, please read comment near the top of this file."
1040 # define wxUSE_TIPWINDOW 0
1042 #endif /* !defined(wxUSE_TIPWINDOW) */
1044 #ifndef wxUSE_TOOLBAR
1045 # ifdef wxABORT_ON_CONFIG_ERROR
1046 # error "wxUSE_TOOLBAR must be defined, please read comment near the top of this file."
1048 # define wxUSE_TOOLBAR 0
1050 #endif /* !defined(wxUSE_TOOLBAR) */
1052 #ifndef wxUSE_TOOLTIPS
1053 # ifdef wxABORT_ON_CONFIG_ERROR
1054 # error "wxUSE_TOOLTIPS must be defined, please read comment near the top of this file."
1056 # define wxUSE_TOOLTIPS 0
1058 #endif /* !defined(wxUSE_TOOLTIPS) */
1060 #ifndef wxUSE_TREECTRL
1061 # ifdef wxABORT_ON_CONFIG_ERROR
1062 # error "wxUSE_TREECTRL must be defined, please read comment near the top of this file."
1064 # define wxUSE_TREECTRL 0
1066 #endif /* !defined(wxUSE_TREECTRL) */
1068 #ifndef wxUSE_UIACTIONSIMULATOR
1069 # ifdef wxABORT_ON_CONFIG_ERROR
1070 # error "wxUSE_UIACTIONSIMULATOR must be defined, please read comment near the top of this file."
1072 # define wxUSE_UIACTIONSIMULATOR 0
1074 #endif /* !defined(wxUSE_UIACTIONSIMULATOR) */
1076 #ifndef wxUSE_VALIDATORS
1077 # ifdef wxABORT_ON_CONFIG_ERROR
1078 # error "wxUSE_VALIDATORS must be defined, please read comment near the top of this file."
1080 # define wxUSE_VALIDATORS 0
1082 #endif /* !defined(wxUSE_VALIDATORS) */
1084 #ifndef wxUSE_WXHTML_HELP
1085 # ifdef wxABORT_ON_CONFIG_ERROR
1086 # error "wxUSE_WXHTML_HELP must be defined, please read comment near the top of this file."
1088 # define wxUSE_WXHTML_HELP 0
1090 #endif /* !defined(wxUSE_WXHTML_HELP) */
1093 # ifdef wxABORT_ON_CONFIG_ERROR
1094 # error "wxUSE_XRC must be defined, please read comment near the top of this file."
1096 # define wxUSE_XRC 0
1098 #endif /* !defined(wxUSE_XRC) */
1100 #endif /* wxUSE_GUI */
1103 Section 2: platform-specific checks.
1105 This must be done after checking that everything is defined as the platform
1106 checks use wxUSE_XXX symbols in #if tests.
1109 #if defined(__WXPALMOS__)
1110 # include "wx/palmos/chkconf.h"
1111 #elif defined(__WXWINCE__)
1112 # include "wx/msw/wince/chkconf.h"
1113 #elif defined(__WXMSW__)
1114 # include "wx/msw/chkconf.h"
1115 #elif defined(__WXGTK__)
1116 # include "wx/gtk/chkconf.h"
1117 #elif defined(__WXCOCOA__)
1118 # include "wx/cocoa/chkconf.h"
1119 #elif defined(__WXMAC__)
1120 # include "wx/osx/chkconf.h"
1121 #elif defined(__OS2__)
1122 # include "wx/os2/chkconf.h"
1123 #elif defined(__WXMGL__)
1124 # include "wx/mgl/chkconf.h"
1125 #elif defined(__WXDFB__)
1126 # include "wx/dfb/chkconf.h"
1127 #elif defined(__WXMOTIF__)
1128 # include "wx/motif/chkconf.h"
1129 #elif defined(__WXX11__)
1130 # include "wx/x11/chkconf.h"
1134 __UNIX__ is also defined under Cygwin but we shouldn't perform these checks
1135 there if we're building wxMSW.
1137 #if defined(__UNIX__) && !defined(__WXMSW__)
1138 # include "wx/unix/chkconf.h"
1141 #ifdef __WXUNIVERSAL__
1142 # include "wx/univ/chkconf.h"
1146 Section 3a: check consistency of the non-GUI settings.
1149 #if WXWIN_COMPATIBILITY_2_6
1150 # if !WXWIN_COMPATIBILITY_2_8
1151 # ifdef wxABORT_ON_CONFIG_ERROR
1152 # error "2.6.X compatibility requires 2.8.X compatibility"
1154 # undef WXWIN_COMPATIBILITY_2_8
1155 # define WXWIN_COMPATIBILITY_2_8 1
1158 #endif /* WXWIN_COMPATIBILITY_2_6 */
1160 #if wxUSE_ARCHIVE_STREAMS
1161 # if !wxUSE_DATETIME
1162 # ifdef wxABORT_ON_CONFIG_ERROR
1163 # error "wxArchive requires wxUSE_DATETIME"
1165 # undef wxUSE_ARCHIVE_STREAMS
1166 # define wxUSE_ARCHIVE_STREAMS 0
1169 #endif /* wxUSE_ARCHIVE_STREAMS */
1171 #if wxUSE_PROTOCOL_FILE || wxUSE_PROTOCOL_FTP || wxUSE_PROTOCOL_HTTP
1172 # if !wxUSE_PROTOCOL
1173 # ifdef wxABORT_ON_CONFIG_ERROR
1174 # error "wxUSE_PROTOCOL_XXX requires wxUSE_PROTOCOL"
1176 # undef wxUSE_PROTOCOL
1177 # define wxUSE_PROTOCOL 1
1180 #endif /* wxUSE_PROTOCOL_XXX */
1183 # if !wxUSE_PROTOCOL
1184 # ifdef wxABORT_ON_CONFIG_ERROR
1185 # error "wxUSE_URL requires wxUSE_PROTOCOL"
1187 # undef wxUSE_PROTOCOL
1188 # define wxUSE_PROTOCOL 1
1191 #endif /* wxUSE_URL */
1195 # if wxUSE_PROTOCOL_HTTP || wxUSE_PROTOCOL_FTP
1196 # ifdef wxABORT_ON_CONFIG_ERROR
1197 # error "wxUSE_PROTOCOL_FTP/HTTP requires wxUSE_SOCKETS"
1199 # undef wxUSE_SOCKETS
1200 # define wxUSE_SOCKETS 1
1206 # ifdef wxABORT_ON_CONFIG_ERROR
1207 # error "wxUSE_PROTOCOL requires wxUSE_STREAMS"
1209 # undef wxUSE_STREAMS
1210 # define wxUSE_STREAMS 1
1213 #endif /* wxUSE_PROTOCOL */
1215 /* have to test for wxUSE_HTML before wxUSE_FILESYSTEM */
1217 # if !wxUSE_FILESYSTEM
1218 # ifdef wxABORT_ON_CONFIG_ERROR
1219 # error "wxHTML requires wxFileSystem"
1221 # undef wxUSE_FILESYSTEM
1222 # define wxUSE_FILESYSTEM 1
1225 #endif /* wxUSE_HTML */
1227 #if wxUSE_FS_ARCHIVE
1228 # if !wxUSE_FILESYSTEM
1229 # ifdef wxABORT_ON_CONFIG_ERROR
1230 # error "wxArchiveFSHandler requires wxFileSystem"
1232 # undef wxUSE_FILESYSTEM
1233 # define wxUSE_FILESYSTEM 1
1236 # if !wxUSE_ARCHIVE_STREAMS
1237 # ifdef wxABORT_ON_CONFIG_ERROR
1238 # error "wxArchiveFSHandler requires wxArchive"
1240 # undef wxUSE_ARCHIVE_STREAMS
1241 # define wxUSE_ARCHIVE_STREAMS 1
1244 #endif /* wxUSE_FS_ARCHIVE */
1246 #if wxUSE_FILESYSTEM
1248 # ifdef wxABORT_ON_CONFIG_ERROR
1249 # error "wxUSE_FILESYSTEM requires wxUSE_STREAMS"
1251 # undef wxUSE_STREAMS
1252 # define wxUSE_STREAMS 1
1255 # if !wxUSE_FILE && !wxUSE_FFILE
1256 # ifdef wxABORT_ON_CONFIG_ERROR
1257 # error "wxUSE_FILESYSTEM requires either wxUSE_FILE or wxUSE_FFILE"
1260 # define wxUSE_FILE 1
1262 # define wxUSE_FFILE 1
1265 #endif /* wxUSE_FILESYSTEM */
1268 # if !wxUSE_PROTOCOL
1269 # ifdef wxABORT_ON_CONFIG_ERROR
1270 # error "wxUSE_FS_INET requires wxUSE_PROTOCOL"
1272 # undef wxUSE_PROTOCOL
1273 # define wxUSE_PROTOCOL 1
1276 #endif /* wxUSE_FS_INET */
1278 #if wxUSE_STOPWATCH || wxUSE_DATETIME
1279 # if !wxUSE_LONGLONG
1280 # ifdef wxABORT_ON_CONFIG_ERROR
1281 # error "wxUSE_STOPWATCH and wxUSE_DATETIME require wxUSE_LONGLONG"
1283 # undef wxUSE_LONGLONG
1284 # define wxUSE_LONGLONG 1
1287 #endif /* wxUSE_STOPWATCH */
1289 #if wxUSE_MIMETYPE && !wxUSE_TEXTFILE
1290 # ifdef wxABORT_ON_CONFIG_ERROR
1291 # error "wxUSE_MIMETYPE requires wxUSE_TEXTFILE"
1293 # undef wxUSE_TEXTFILE
1294 # define wxUSE_TEXTFILE 1
1296 #endif /* wxUSE_MIMETYPE */
1298 #if wxUSE_TEXTFILE && !wxUSE_TEXTBUFFER
1299 # ifdef wxABORT_ON_CONFIG_ERROR
1300 # error "wxUSE_TEXTFILE requires wxUSE_TEXTBUFFER"
1302 # undef wxUSE_TEXTBUFFER
1303 # define wxUSE_TEXTBUFFER 1
1305 #endif /* wxUSE_TEXTFILE */
1307 #if wxUSE_TEXTFILE && !wxUSE_FILE
1308 # ifdef wxABORT_ON_CONFIG_ERROR
1309 # error "wxUSE_TEXTFILE requires wxUSE_FILE"
1312 # define wxUSE_FILE 1
1314 #endif /* wxUSE_TEXTFILE */
1316 #if !wxUSE_DYNLIB_CLASS
1317 # if wxUSE_DYNAMIC_LOADER
1318 # ifdef wxABORT_ON_CONFIG_ERROR
1319 # error "wxUSE_DYNAMIC_LOADER requires wxUSE_DYNLIB_CLASS."
1321 # define wxUSE_DYNLIB_CLASS 1
1324 #endif /* wxUSE_DYNLIB_CLASS */
1328 # ifdef wxABORT_ON_CONFIG_ERROR
1329 # error "wxZip requires wxZlib"
1332 # define wxUSE_ZLIB 1
1335 # if !wxUSE_ARCHIVE_STREAMS
1336 # ifdef wxABORT_ON_CONFIG_ERROR
1337 # error "wxZip requires wxArchive"
1339 # undef wxUSE_ARCHIVE_STREAMS
1340 # define wxUSE_ARCHIVE_STREAMS 1
1343 #endif /* wxUSE_ZIPSTREAM */
1346 # if !wxUSE_ARCHIVE_STREAMS
1347 # ifdef wxABORT_ON_CONFIG_ERROR
1348 # error "wxTar requires wxArchive"
1350 # undef wxUSE_ARCHIVE_STREAMS
1351 # define wxUSE_ARCHIVE_STREAMS 1
1354 #endif /* wxUSE_TARSTREAM */
1357 Section 3b: the tests for the GUI settings only.
1361 #if wxUSE_ACCESSIBILITY && !defined(__WXMSW__) && !defined(__GCCXML__)
1362 # ifdef wxABORT_ON_CONFIG_ERROR
1363 # error "wxUSE_ACCESSIBILITY is currently only supported under wxMSW"
1365 # undef wxUSE_ACCESSIBILITY
1366 # define wxUSE_ACCESSIBILITY 0
1368 #endif /* wxUSE_ACCESSIBILITY */
1370 #if wxUSE_BUTTON || \
1371 wxUSE_CALENDARCTRL || \
1374 wxUSE_BMPBUTTON || \
1376 wxUSE_CHECKLISTBOX || \
1380 wxUSE_HEADERCTRL || \
1386 wxUSE_REARRANGECTRL || \
1387 wxUSE_SCROLLBAR || \
1395 wxUSE_STATUSBAR || \
1399 # if !wxUSE_CONTROLS
1400 # ifdef wxABORT_ON_CONFIG_ERROR
1401 # error "wxUSE_CONTROLS unset but some controls used"
1403 # undef wxUSE_CONTROLS
1404 # define wxUSE_CONTROLS 1
1407 #endif /* controls */
1411 # ifdef wxABORT_ON_CONFIG_ERROR
1412 # error "wxUSE_BMPBUTTON requires wxUSE_BUTTON"
1414 # undef wxUSE_BUTTON
1415 # define wxUSE_BUTTON 1
1418 #endif /* wxUSE_BMPBUTTON */
1421 wxUSE_BOOKCTRL should be only used if any of the controls deriving from it
1424 #ifdef wxUSE_BOOKCTRL
1425 # ifdef wxABORT_ON_CONFIG_ERROR
1426 # error "wxUSE_BOOKCTRL is defined automatically, don't define it"
1428 # undef wxUSE_BOOKCTRL
1432 #define wxUSE_BOOKCTRL (wxUSE_NOTEBOOK || \
1434 wxUSE_CHOICEBOOK || \
1439 # if !wxUSE_BUTTON || !wxUSE_STATLINE
1440 # ifdef wxABORT_ON_CONFIG_ERROR
1441 # error "wxUSE_COLLPANE requires wxUSE_BUTTON and wxUSE_STATLINE"
1443 # undef wxUSE_COLLPANE
1444 # define wxUSE_COLLPANE 0
1447 #endif /* wxUSE_COLLPANE */
1450 # if !wxUSE_LISTCTRL
1451 # ifdef wxABORT_ON_CONFIG_ERROR
1452 # error "wxListbook requires wxListCtrl"
1454 # undef wxUSE_LISTCTRL
1455 # define wxUSE_LISTCTRL 1
1458 #endif /* wxUSE_LISTBOOK */
1460 #if wxUSE_CHOICEBOOK
1462 # ifdef wxABORT_ON_CONFIG_ERROR
1463 # error "wxChoicebook requires wxChoice"
1465 # undef wxUSE_CHOICE
1466 # define wxUSE_CHOICE 1
1469 #endif /* wxUSE_CHOICEBOOK */
1473 # ifdef wxABORT_ON_CONFIG_ERROR
1474 # error "wxToolbook requires wxToolBar"
1476 # undef wxUSE_TOOLBAR
1477 # define wxUSE_TOOLBAR 1
1480 #endif /* wxUSE_TOOLBOOK */
1482 #if !wxUSE_ODCOMBOBOX
1483 # if wxUSE_BITMAPCOMBOBOX
1484 # ifdef wxABORT_ON_CONFIG_ERROR
1485 # error "wxBitmapComboBox requires wxOwnerDrawnComboBox"
1487 # undef wxUSE_BITMAPCOMBOBOX
1488 # define wxUSE_BITMAPCOMBOBOX 0
1491 #endif /* !wxUSE_ODCOMBOBOX */
1493 #if !wxUSE_HEADERCTRL
1494 # if wxUSE_DATAVIEWCTRL || wxUSE_GRID
1495 # ifdef wxABORT_ON_CONFIG_ERROR
1496 # error "wxDataViewCtrl and wxGrid require wxHeaderCtrl"
1498 # undef wxUSE_HEADERCTRL
1499 # define wxUSE_HEADERCTRL 1
1502 #endif /* !wxUSE_HEADERCTRL */
1504 #if wxUSE_REARRANGECTRL
1505 # if !wxUSE_CHECKLISTBOX
1506 # ifdef wxABORT_ON_CONFIG_ERROR
1507 # error "wxRearrangeCtrl requires wxCheckListBox"
1509 # undef wxUSE_REARRANGECTRL
1510 # define wxUSE_REARRANGECTRL 0
1513 #endif /* wxUSE_REARRANGECTRL */
1515 /* don't attempt to use native status bar on the platforms not having it */
1516 #ifndef wxUSE_NATIVE_STATUSBAR
1517 # define wxUSE_NATIVE_STATUSBAR 0
1518 #elif wxUSE_NATIVE_STATUSBAR
1519 # if defined(__WXUNIVERSAL__) || !( defined(__WXMSW__) || \
1520 defined(__WXMAC__) || \
1521 defined(__WXPALMOS__) )
1522 # undef wxUSE_NATIVE_STATUSBAR
1523 # define wxUSE_NATIVE_STATUSBAR 0
1527 #if wxUSE_GRAPHICS_CONTEXT && !wxUSE_GEOMETRY
1528 # ifdef wxABORT_ON_CONFIG_ERROR
1529 # error "wxUSE_GRAPHICS_CONTEXT requires wxUSE_GEOMETRY"
1531 # undef wxUSE_GRAPHICS_CONTEXT
1532 # define wxUSE_GRAPHICS_CONTEXT 0
1534 #endif /* wxUSE_GRAPHICS_CONTEXT */
1537 /* generic controls dependencies */
1538 #if !defined(__WXMSW__) || defined(__WXUNIVERSAL__)
1539 # if wxUSE_FONTDLG || wxUSE_FILEDLG || wxUSE_CHOICEDLG
1540 /* all common controls are needed by these dialogs */
1541 # if !defined(wxUSE_CHOICE) || \
1542 !defined(wxUSE_TEXTCTRL) || \
1543 !defined(wxUSE_BUTTON) || \
1544 !defined(wxUSE_CHECKBOX) || \
1545 !defined(wxUSE_STATTEXT)
1546 # ifdef wxABORT_ON_CONFIG_ERROR
1547 # error "These common controls are needed by common dialogs"
1549 # undef wxUSE_CHOICE
1550 # define wxUSE_CHOICE 1
1551 # undef wxUSE_TEXTCTRL
1552 # define wxUSE_TEXTCTRL 1
1553 # undef wxUSE_BUTTON
1554 # define wxUSE_BUTTON 1
1555 # undef wxUSE_CHECKBOX
1556 # define wxUSE_CHECKBOX 1
1557 # undef wxUSE_STATTEXT
1558 # define wxUSE_STATTEXT 1
1562 #endif /* !wxMSW || wxUniv */
1564 /* generic file dialog depends on (generic) file control */
1565 #if wxUSE_FILEDLG && !wxUSE_FILECTRL && \
1566 (defined(__WXUNIVERSAL__) || defined(__WXGTK__))
1567 # ifdef wxABORT_ON_CONFIG_ERROR
1568 # error "Generic wxFileDialog requires wxFileCtrl"
1570 # undef wxUSE_FILECTRL
1571 # define wxUSE_FILECTRL 1
1573 #endif /* wxUSE_FILEDLG */
1575 /* common dependencies */
1576 #if wxUSE_CALENDARCTRL
1577 # if !(wxUSE_SPINBTN && wxUSE_COMBOBOX)
1578 # ifdef wxABORT_ON_CONFIG_ERROR
1579 # error "wxCalendarCtrl requires wxSpinButton and wxComboBox"
1581 # undef wxUSE_SPINBTN
1582 # undef wxUSE_COMBOBOX
1583 # define wxUSE_SPINBTN 1
1584 # define wxUSE_COMBOBOX 1
1588 # if !wxUSE_DATETIME
1589 # ifdef wxABORT_ON_CONFIG_ERROR
1590 # error "wxCalendarCtrl requires wxUSE_DATETIME"
1592 # undef wxUSE_DATETIME
1593 # define wxUSE_DATETIME 1
1596 #endif /* wxUSE_CALENDARCTRL */
1598 #if wxUSE_DATEPICKCTRL
1599 # if !wxUSE_DATETIME
1600 # ifdef wxABORT_ON_CONFIG_ERROR
1601 # error "wxDatePickerCtrl requires wxUSE_DATETIME"
1603 # undef wxUSE_DATETIME
1604 # define wxUSE_DATETIME 1
1607 #endif /* wxUSE_DATEPICKCTRL */
1609 #if wxUSE_CHECKLISTBOX
1611 # ifdef wxABORT_ON_CONFIG_ERROR
1612 # error "wxCheckListBox requires wxListBox"
1614 # undef wxUSE_LISTBOX
1615 # define wxUSE_LISTBOX 1
1618 #endif /* wxUSE_CHECKLISTBOX */
1622 # ifdef wxABORT_ON_CONFIG_ERROR
1623 # error "Choice dialogs requires wxListBox"
1625 # undef wxUSE_LISTBOX
1626 # define wxUSE_LISTBOX 1
1629 #endif /* wxUSE_CHOICEDLG */
1632 # if !wxUSE_BMPBUTTON
1633 # ifdef wxABORT_ON_CONFIG_ERROR
1634 # error "wxUSE_HELP requires wxUSE_BMPBUTTON"
1636 # undef wxUSE_BMPBUTTON
1637 # define wxUSE_BMPBUTTON 1
1641 # if !wxUSE_CHOICEDLG
1642 # ifdef wxABORT_ON_CONFIG_ERROR
1643 # error "wxUSE_HELP requires wxUSE_CHOICEDLG"
1645 # undef wxUSE_CHOICEDLG
1646 # define wxUSE_CHOICEDLG 1
1649 #endif /* wxUSE_HELP */
1651 #if wxUSE_MS_HTML_HELP
1653 this doesn't make sense for platforms other than MSW but we still
1654 define it in wx/setup_inc.h so don't complain if it happens to be
1655 defined under another platform but just silently fix it.
1658 # undef wxUSE_MS_HTML_HELP
1659 # define wxUSE_MS_HTML_HELP 0
1661 #endif /* wxUSE_MS_HTML_HELP */
1663 #if wxUSE_WXHTML_HELP
1664 # if !wxUSE_HELP || !wxUSE_HTML || !wxUSE_COMBOBOX || !wxUSE_NOTEBOOK || !wxUSE_SPINCTRL
1665 # ifdef wxABORT_ON_CONFIG_ERROR
1666 # error "Built in help controller can't be compiled"
1669 # define wxUSE_HELP 1
1671 # define wxUSE_HTML 1
1672 # undef wxUSE_COMBOBOX
1673 # define wxUSE_COMBOBOX 1
1674 # undef wxUSE_NOTEBOOK
1675 # define wxUSE_NOTEBOOK 1
1676 # undef wxUSE_SPINCTRL
1677 # define wxUSE_SPINCTRL 1
1680 #endif /* wxUSE_WXHTML_HELP */
1684 The default wxUSE_IMAGE setting is 1, so if it's set to 0 we assume the
1685 user explicitly wants this and disable all other features that require
1688 # if wxUSE_DRAGIMAGE
1689 # ifdef wxABORT_ON_CONFIG_ERROR
1690 # error "wxUSE_DRAGIMAGE requires wxUSE_IMAGE"
1692 # undef wxUSE_DRAGIMAGE
1693 # define wxUSE_DRAGIMAGE 0
1698 # ifdef wxABORT_ON_CONFIG_ERROR
1699 # error "wxUSE_LIBPNG requires wxUSE_IMAGE"
1701 # undef wxUSE_LIBPNG
1702 # define wxUSE_LIBPNG 0
1707 # ifdef wxABORT_ON_CONFIG_ERROR
1708 # error "wxUSE_LIBJPEG requires wxUSE_IMAGE"
1710 # undef wxUSE_LIBJPEG
1711 # define wxUSE_LIBJPEG 0
1716 # ifdef wxABORT_ON_CONFIG_ERROR
1717 # error "wxUSE_LIBTIFF requires wxUSE_IMAGE"
1719 # undef wxUSE_LIBTIFF
1720 # define wxUSE_LIBTIFF 0
1725 # ifdef wxABORT_ON_CONFIG_ERROR
1726 # error "wxUSE_GIF requires wxUSE_IMAGE"
1729 # define wxUSE_GIF 0
1734 # ifdef wxABORT_ON_CONFIG_ERROR
1735 # error "wxUSE_PNM requires wxUSE_IMAGE"
1738 # define wxUSE_PNM 0
1743 # ifdef wxABORT_ON_CONFIG_ERROR
1744 # error "wxUSE_PCX requires wxUSE_IMAGE"
1747 # define wxUSE_PCX 0
1752 # ifdef wxABORT_ON_CONFIG_ERROR
1753 # error "wxUSE_IFF requires wxUSE_IMAGE"
1756 # define wxUSE_IFF 0
1761 # ifdef wxABORT_ON_CONFIG_ERROR
1762 # error "wxUSE_TOOLBAR requires wxUSE_IMAGE"
1764 # undef wxUSE_TOOLBAR
1765 # define wxUSE_TOOLBAR 0
1770 # ifdef wxABORT_ON_CONFIG_ERROR
1771 # error "wxUSE_XPM requires wxUSE_IMAGE"
1774 # define wxUSE_XPM 0
1778 #endif /* !wxUSE_IMAGE */
1780 #if wxUSE_DOC_VIEW_ARCHITECTURE
1782 # ifdef wxABORT_ON_CONFIG_ERROR
1783 # error "DocView requires wxUSE_MENUS"
1786 # define wxUSE_MENUS 1
1790 # if !wxUSE_CHOICEDLG
1791 # ifdef wxABORT_ON_CONFIG_ERROR
1792 # error "DocView requires wxUSE_CHOICEDLG"
1794 # undef wxUSE_CHOICEDLG
1795 # define wxUSE_CHOICEDLG 1
1799 # if !wxUSE_STREAMS && !wxUSE_STD_IOSTREAM
1800 # ifdef wxABORT_ON_CONFIG_ERROR
1801 # error "DocView requires wxUSE_STREAMS or wxUSE_STD_IOSTREAM"
1803 # undef wxUSE_STREAMS
1804 # define wxUSE_STREAMS 1
1807 #endif /* wxUSE_DOC_VIEW_ARCHITECTURE */
1809 #if wxUSE_PRINTING_ARCHITECTURE
1810 # if !wxUSE_COMBOBOX
1811 # ifdef wxABORT_ON_CONFIG_ERROR
1812 # error "Print dialog requires wxUSE_COMBOBOX"
1814 # undef wxUSE_COMBOBOX
1815 # define wxUSE_COMBOBOX 1
1818 #endif /* wxUSE_PRINTING_ARCHITECTURE */
1820 #if wxUSE_MDI_ARCHITECTURE
1822 # ifdef wxABORT_ON_CONFIG_ERROR
1823 # error "MDI requires wxUSE_MDI"
1826 # define wxUSE_MDI 1
1830 # if !wxUSE_DOC_VIEW_ARCHITECTURE
1831 # ifdef wxABORT_ON_CONFIG_ERROR
1832 # error "wxUSE_MDI_ARCHITECTURE requires wxUSE_DOC_VIEW_ARCHITECTURE"
1834 # undef wxUSE_DOC_VIEW_ARCHITECTURE
1835 # define wxUSE_DOC_VIEW_ARCHITECTURE 1
1838 #endif /* wxUSE_MDI_ARCHITECTURE */
1841 # if wxUSE_DOC_VIEW_ARCHITECTURE || wxUSE_WXHTML_HELP
1842 # ifdef wxABORT_ON_CONFIG_ERROR
1843 # error "wxUSE_FILEDLG is required by wxUSE_DOC_VIEW_ARCHITECTURE and wxUSE_WXHTML_HELP!"
1845 # undef wxUSE_FILEDLG
1846 # define wxUSE_FILEDLG 1
1849 #endif /* wxUSE_FILEDLG */
1851 #if !wxUSE_GAUGE || !wxUSE_BUTTON
1852 # if wxUSE_PROGRESSDLG && !defined(__WXPALMOS__)
1853 # ifdef wxABORT_ON_CONFIG_ERROR
1854 # error "Generic progress dialog requires wxUSE_GAUGE and wxUSE_BUTTON"
1857 # undef wxUSE_BUTTON
1858 # define wxUSE_GAUGE 1
1859 # define wxUSE_BUTTON 1
1862 #endif /* !wxUSE_GAUGE */
1865 # if wxUSE_FONTDLG || \
1867 wxUSE_CHOICEDLG || \
1868 wxUSE_NUMBERDLG || \
1871 wxUSE_STARTUP_TIPS || \
1873 # ifdef wxABORT_ON_CONFIG_ERROR
1874 # error "Common and generic dialogs require wxUSE_BUTTON"
1876 # undef wxUSE_BUTTON
1877 # define wxUSE_BUTTON 1
1880 #endif /* !wxUSE_BUTTON */
1883 # if wxUSE_TOOLBAR_NATIVE
1884 # ifdef wxABORT_ON_CONFIG_ERROR
1885 # error "wxUSE_TOOLBAR is set to 0 but wxUSE_TOOLBAR_NATIVE is set to 1"
1887 # undef wxUSE_TOOLBAR_NATIVE
1888 # define wxUSE_TOOLBAR_NATIVE 0
1894 # if wxUSE_TREECTRL || wxUSE_NOTEBOOK || wxUSE_LISTCTRL
1895 # ifdef wxABORT_ON_CONFIG_ERROR
1896 # error "wxImageList must be compiled as well"
1898 # undef wxUSE_IMAGLIST
1899 # define wxUSE_IMAGLIST 1
1902 #endif /* !wxUSE_IMAGLIST */
1905 # if !wxUSE_RADIOBTN
1906 # ifdef wxABORT_ON_CONFIG_ERROR
1907 # error "wxUSE_RADIOBOX requires wxUSE_RADIOBTN"
1909 # undef wxUSE_RADIOBTN
1910 # define wxUSE_RADIOBTN 1
1913 # if !wxUSE_STATBOX && !defined(__WXPALMOS__)
1914 # ifdef wxABORT_ON_CONFIG_ERROR
1915 # error "wxUSE_RADIOBOX requires wxUSE_STATBOX"
1917 # undef wxUSE_STATBOX
1918 # define wxUSE_STATBOX 1
1921 #endif /* wxUSE_RADIOBOX */
1924 # if !wxUSE_TEXTCTRL
1925 # ifdef wxABORT_ON_CONFIG_ERROR
1926 # error "wxUSE_LOGWINDOW requires wxUSE_TEXTCTRL"
1928 # undef wxUSE_TEXTCTRL
1929 # define wxUSE_TEXTCTRL 1
1932 #endif /* wxUSE_LOGWINDOW */
1934 #if wxUSE_LOG_DIALOG
1935 # if !wxUSE_LISTCTRL || !wxUSE_BUTTON
1936 # ifdef wxABORT_ON_CONFIG_ERROR
1937 # error "wxUSE_LOG_DIALOG requires wxUSE_LISTCTRL and wxUSE_BUTTON"
1939 # undef wxUSE_LISTCTRL
1940 # define wxUSE_LISTCTRL 1
1941 # undef wxUSE_BUTTON
1942 # define wxUSE_BUTTON 1
1945 #endif /* wxUSE_LOG_DIALOG */
1947 #if wxUSE_CLIPBOARD && !wxUSE_DATAOBJ
1948 # ifdef wxABORT_ON_CONFIG_ERROR
1949 # error "wxClipboard requires wxDataObject"
1951 # undef wxUSE_DATAOBJ
1952 # define wxUSE_DATAOBJ 1
1954 #endif /* wxUSE_CLIPBOARD */
1956 #if wxUSE_XRC && !wxUSE_XML
1957 # ifdef wxABORT_ON_CONFIG_ERROR
1958 # error "wxUSE_XRC requires wxUSE_XML"
1961 # define wxUSE_XRC 0
1963 #endif /* wxUSE_XRC */
1965 #if wxUSE_SOCKETS && !wxUSE_STOPWATCH
1966 # ifdef wxABORT_ON_CONFIG_ERROR
1967 # error "wxUSE_SOCKETS requires wxUSE_STOPWATCH"
1969 # undef wxUSE_SOCKETS
1970 # define wxUSE_SOCKETS 0
1972 #endif /* wxUSE_SOCKETS */
1974 #if wxUSE_SVG && !wxUSE_STREAMS
1975 # ifdef wxABORT_ON_CONFIG_ERROR
1976 # error "wxUSE_SVG requires wxUSE_STREAMS"
1979 # define wxUSE_SVG 0
1981 #endif /* wxUSE_SVG */
1983 #if wxUSE_SVG && !wxUSE_IMAGE
1984 # ifdef wxABORT_ON_CONFIG_ERROR
1985 # error "wxUSE_SVG requires wxUSE_IMAGE"
1988 # define wxUSE_SVG 0
1990 #endif /* wxUSE_SVG */
1992 #if wxUSE_SVG && !wxUSE_LIBPNG
1993 # ifdef wxABORT_ON_CONFIG_ERROR
1994 # error "wxUSE_SVG requires wxUSE_LIBPNG"
1997 # define wxUSE_SVG 0
1999 #endif /* wxUSE_SVG */
2002 # if wxUSE_DATAVIEWCTRL
2003 # ifdef wxABORT_ON_CONFIG_ERROR
2004 # error "wxDataViewCtrl requires wxVariant"
2006 # undef wxUSE_DATAVIEWCTRL
2007 # define wxUSE_DATAVIEWCTRL 0
2010 #endif /* wxUSE_VARIANT */
2012 #endif /* wxUSE_GUI */
2014 #endif /* _WX_CHKCONF_H_ */