]>
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 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 
  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 
  61     If we're compiling without support for threads/exceptions we have to 
  62     disable the corresponding features. 
  66 #   define wxUSE_THREADS 0 
  67 #endif /* wxNO_THREADS */ 
  69 #ifdef wxNO_EXCEPTIONS 
  70 #   undef wxUSE_EXCEPTIONS 
  71 #   define wxUSE_EXCEPTIONS 0 
  72 #endif /* wxNO_EXCEPTIONS */ 
  74 /* we also must disable exceptions if compiler doesn't support them */ 
  75 #if defined(_MSC_VER) && !defined(_CPPUNWIND) 
  76 #   undef wxUSE_EXCEPTIONS 
  77 #   define wxUSE_EXCEPTIONS 0 
  78 #endif /* VC++ without exceptions support */ 
  82    Section 1a: tests for non GUI features. 
  84    please keep the options in alphabetical order! 
  88 #   ifdef wxABORT_ON_CONFIG_ERROR 
  89 #       error "wxUSE_ANY must be defined, please read comment near the top of this file." 
  93 #endif /* wxUSE_ANY */ 
  95 #ifndef wxUSE_CONSOLE_EVENTLOOP 
  96 #   ifdef wxABORT_ON_CONFIG_ERROR 
  97 #       error "wxUSE_CONSOLE_EVENTLOOP must be defined, please read comment near the top of this file." 
  99 #       define wxUSE_CONSOLE_EVENTLOOP 0 
 101 #endif /* !defined(wxUSE_CONSOLE_EVENTLOOP) */ 
 103 #ifndef wxUSE_DYNLIB_CLASS 
 104 #   ifdef wxABORT_ON_CONFIG_ERROR 
 105 #       error "wxUSE_DYNLIB_CLASS must be defined, please read comment near the top of this file." 
 107 #       define wxUSE_DYNLIB_CLASS 0 
 109 #endif /* !defined(wxUSE_DYNLIB_CLASS) */ 
 111 #ifndef wxUSE_EXCEPTIONS 
 112 #   ifdef wxABORT_ON_CONFIG_ERROR 
 113 #       error "wxUSE_EXCEPTIONS must be defined, please read comment near the top of this file." 
 115 #       define wxUSE_EXCEPTIONS 0 
 117 #endif /* !defined(wxUSE_EXCEPTIONS) */ 
 119 #ifndef wxUSE_FILE_HISTORY 
 120 #   ifdef wxABORT_ON_CONFIG_ERROR 
 121 #       error "wxUSE_FILE_HISTORY must be defined, please read comment near the top of this file." 
 123 #       define wxUSE_FILE_HISTORY 0 
 125 #endif /* !defined(wxUSE_FILE_HISTORY) */ 
 127 #ifndef wxUSE_FILESYSTEM 
 128 #   ifdef wxABORT_ON_CONFIG_ERROR 
 129 #       error "wxUSE_FILESYSTEM must be defined, please read comment near the top of this file." 
 131 #       define wxUSE_FILESYSTEM 0 
 133 #endif /* !defined(wxUSE_FILESYSTEM) */ 
 135 #ifndef wxUSE_FS_ARCHIVE 
 136 #   ifdef wxABORT_ON_CONFIG_ERROR 
 137 #       error "wxUSE_FS_ARCHIVE must be defined, please read comment near the top of this file." 
 139 #       define wxUSE_FS_ARCHIVE 0 
 141 #endif /* !defined(wxUSE_FS_ARCHIVE) */ 
 143 #ifndef wxUSE_FSVOLUME 
 144 #   ifdef wxABORT_ON_CONFIG_ERROR 
 145 #       error "wxUSE_FSVOLUME must be defined, please read comment near the top of this file." 
 147 #       define wxUSE_FSVOLUME 0 
 149 #endif /* !defined(wxUSE_FSVOLUME) */ 
 151 #ifndef wxUSE_FSWATCHER 
 152 #   ifdef wxABORT_ON_CONFIG_ERROR 
 153 #       error "wxUSE_FSWATCHER must be defined, please read comment near the top of this file." 
 155 #       define wxUSE_FSWATCHER 0 
 157 #endif /* !defined(wxUSE_FSWATCHER) */ 
 159 #ifndef wxUSE_DYNAMIC_LOADER 
 160 #   ifdef wxABORT_ON_CONFIG_ERROR 
 161 #       error "wxUSE_DYNAMIC_LOADER must be defined, please read comment near the top of this file." 
 163 #       define wxUSE_DYNAMIC_LOADER 0 
 165 #endif /* !defined(wxUSE_DYNAMIC_LOADER) */ 
 168 #   ifdef wxABORT_ON_CONFIG_ERROR 
 169 #       error "wxUSE_INTL must be defined, please read comment near the top of this file." 
 171 #       define wxUSE_INTL 0 
 173 #endif /* !defined(wxUSE_INTL) */ 
 176 #   ifdef wxABORT_ON_CONFIG_ERROR 
 177 #       error "wxUSE_IPV6 must be defined, please read comment near the top of this file." 
 179 #       define wxUSE_IPV6 0 
 181 #endif /* !defined(wxUSE_IPV6) */ 
 184 #   ifdef wxABORT_ON_CONFIG_ERROR 
 185 #       error "wxUSE_LOG must be defined, please read comment near the top of this file." 
 189 #endif /* !defined(wxUSE_LOG) */ 
 191 #ifndef wxUSE_LONGLONG 
 192 #   ifdef wxABORT_ON_CONFIG_ERROR 
 193 #       error "wxUSE_LONGLONG must be defined, please read comment near the top of this file." 
 195 #       define wxUSE_LONGLONG 0 
 197 #endif /* !defined(wxUSE_LONGLONG) */ 
 199 #ifndef wxUSE_MIMETYPE 
 200 #   ifdef wxABORT_ON_CONFIG_ERROR 
 201 #       error "wxUSE_MIMETYPE must be defined, please read comment near the top of this file." 
 203 #       define wxUSE_MIMETYPE 0 
 205 #endif /* !defined(wxUSE_MIMETYPE) */ 
 207 #ifndef wxUSE_ON_FATAL_EXCEPTION 
 208 #   ifdef wxABORT_ON_CONFIG_ERROR 
 209 #       error "wxUSE_ON_FATAL_EXCEPTION must be defined, please read comment near the top of this file." 
 211 #       define wxUSE_ON_FATAL_EXCEPTION 0 
 213 #endif /* !defined(wxUSE_ON_FATAL_EXCEPTION) */ 
 215 #ifndef wxUSE_PRINTF_POS_PARAMS 
 216 #   ifdef wxABORT_ON_CONFIG_ERROR 
 217 #       error "wxUSE_PRINTF_POS_PARAMS must be defined, please read comment near the top of this file." 
 219 #       define wxUSE_PRINTF_POS_PARAMS 0 
 221 #endif /* !defined(wxUSE_PRINTF_POS_PARAMS) */ 
 223 #ifndef wxUSE_PROTOCOL 
 224 #   ifdef wxABORT_ON_CONFIG_ERROR 
 225 #       error "wxUSE_PROTOCOL must be defined, please read comment near the top of this file." 
 227 #       define wxUSE_PROTOCOL 0 
 229 #endif /* !defined(wxUSE_PROTOCOL) */ 
 231 /* we may not define wxUSE_PROTOCOL_XXX if wxUSE_PROTOCOL is set to 0 */ 
 233 #   undef wxUSE_PROTOCOL_HTTP 
 234 #   undef wxUSE_PROTOCOL_FTP 
 235 #   undef wxUSE_PROTOCOL_FILE 
 236 #   define wxUSE_PROTOCOL_HTTP 0 
 237 #   define wxUSE_PROTOCOL_FTP 0 
 238 #   define wxUSE_PROTOCOL_FILE 0 
 239 #endif /* wxUSE_PROTOCOL */ 
 241 #ifndef wxUSE_PROTOCOL_HTTP 
 242 #   ifdef wxABORT_ON_CONFIG_ERROR 
 243 #       error "wxUSE_PROTOCOL_HTTP must be defined, please read comment near the top of this file." 
 245 #       define wxUSE_PROTOCOL_HTTP 0 
 247 #endif /* !defined(wxUSE_PROTOCOL_HTTP) */ 
 249 #ifndef wxUSE_PROTOCOL_FTP 
 250 #   ifdef wxABORT_ON_CONFIG_ERROR 
 251 #       error "wxUSE_PROTOCOL_FTP must be defined, please read comment near the top of this file." 
 253 #       define wxUSE_PROTOCOL_FTP 0 
 255 #endif /* !defined(wxUSE_PROTOCOL_FTP) */ 
 257 #ifndef wxUSE_PROTOCOL_FILE 
 258 #   ifdef wxABORT_ON_CONFIG_ERROR 
 259 #       error "wxUSE_PROTOCOL_FILE must be defined, please read comment near the top of this file." 
 261 #       define wxUSE_PROTOCOL_FILE 0 
 263 #endif /* !defined(wxUSE_PROTOCOL_FILE) */ 
 266 #   ifdef wxABORT_ON_CONFIG_ERROR 
 267 #       error "wxUSE_REGEX must be defined, please read comment near the top of this file." 
 269 #       define wxUSE_REGEX 0 
 271 #endif /* !defined(wxUSE_REGEX) */ 
 273 #ifndef wxUSE_STDPATHS 
 274 #   ifdef wxABORT_ON_CONFIG_ERROR 
 275 #       error "wxUSE_STDPATHS must be defined, please read comment near the top of this file." 
 277 #       define wxUSE_STDPATHS 1 
 279 #endif /* !defined(wxUSE_STDPATHS) */ 
 282 #   ifdef wxABORT_ON_CONFIG_ERROR 
 283 #       error "wxUSE_XML must be defined, please read comment near the top of this file." 
 287 #endif /* !defined(wxUSE_XML) */ 
 289 #ifndef wxUSE_SOCKETS 
 290 #   ifdef wxABORT_ON_CONFIG_ERROR 
 291 #       error "wxUSE_SOCKETS must be defined, please read comment near the top of this file." 
 293 #       define wxUSE_SOCKETS 0 
 295 #endif /* !defined(wxUSE_SOCKETS) */ 
 297 #ifndef wxUSE_STD_CONTAINERS 
 298 #   ifdef wxABORT_ON_CONFIG_ERROR 
 299 #       error "wxUSE_STD_CONTAINERS must be defined, please read comment near the top of this file." 
 301 #       define wxUSE_STD_CONTAINERS 0 
 303 #endif /* !defined(wxUSE_STD_CONTAINERS) */ 
 305 #ifndef wxUSE_STD_STRING_CONV_IN_WXSTRING 
 306 #   ifdef wxABORT_ON_CONFIG_ERROR 
 307 #       error "wxUSE_STD_STRING_CONV_IN_WXSTRING must be defined, please read comment near the top of this file." 
 309 #       define wxUSE_STD_STRING_CONV_IN_WXSTRING 0 
 311 #endif /* !defined(wxUSE_STD_STRING_CONV_IN_WXSTRING) */ 
 313 #ifndef wxUSE_STREAMS 
 314 #   ifdef wxABORT_ON_CONFIG_ERROR 
 315 #       error "wxUSE_STREAMS must be defined, please read comment near the top of this file." 
 317 #       define wxUSE_STREAMS 0 
 319 #endif /* !defined(wxUSE_STREAMS) */ 
 321 #ifndef wxUSE_STOPWATCH 
 322 #   ifdef wxABORT_ON_CONFIG_ERROR 
 323 #       error "wxUSE_STOPWATCH must be defined, please read comment near the top of this file." 
 325 #       define wxUSE_STOPWATCH 0 
 327 #endif /* !defined(wxUSE_STOPWATCH) */ 
 329 #ifndef wxUSE_TEXTBUFFER 
 330 #   ifdef wxABORT_ON_CONFIG_ERROR 
 331 #       error "wxUSE_TEXTBUFFER must be defined, please read comment near the top of this file." 
 333 #       define wxUSE_TEXTBUFFER 0 
 335 #endif /* !defined(wxUSE_TEXTBUFFER) */ 
 337 #ifndef wxUSE_TEXTFILE 
 338 #   ifdef wxABORT_ON_CONFIG_ERROR 
 339 #       error "wxUSE_TEXTFILE must be defined, please read comment near the top of this file." 
 341 #       define wxUSE_TEXTFILE 0 
 343 #endif /* !defined(wxUSE_TEXTFILE) */ 
 345 #ifndef wxUSE_UNICODE 
 346 #   ifdef wxABORT_ON_CONFIG_ERROR 
 347 #       error "wxUSE_UNICODE must be defined, please read comment near the top of this file." 
 349 #       define wxUSE_UNICODE 0 
 351 #endif /* !defined(wxUSE_UNICODE) */ 
 354 #   ifdef wxABORT_ON_CONFIG_ERROR 
 355 #       error "wxUSE_URL must be defined, please read comment near the top of this file." 
 359 #endif /* !defined(wxUSE_URL) */ 
 361 #ifndef wxUSE_VARIANT 
 362 #   ifdef wxABORT_ON_CONFIG_ERROR 
 363 #       error "wxUSE_VARIANT must be defined, please read comment near the top of this file." 
 365 #       define wxUSE_VARIANT 0 
 367 #endif /* wxUSE_VARIANT */ 
 369 #ifndef wxUSE_XLOCALE 
 370 #   ifdef wxABORT_ON_CONFIG_ERROR 
 371 #       error "wxUSE_XLOCALE must be defined, please read comment near the top of this file." 
 373 #       define wxUSE_XLOCALE 0 
 375 #endif /* !defined(wxUSE_XLOCALE) */ 
 378    Section 1b: all these tests are for GUI only. 
 380    please keep the options in alphabetical order! 
 385    all of the settings tested below must be defined or we'd get an error from 
 386    preprocessor about invalid integer expression 
 389 #ifndef wxUSE_ABOUTDLG 
 390 #   ifdef wxABORT_ON_CONFIG_ERROR 
 391 #       error "wxUSE_ABOUTDLG must be defined, please read comment near the top of this file." 
 393 #       define wxUSE_ABOUTDLG 0 
 395 #endif /* !defined(wxUSE_ABOUTDLG) */ 
 398 #   ifdef wxABORT_ON_CONFIG_ERROR 
 399 #       error "wxUSE_ACCEL must be defined, please read comment near the top of this file." 
 401 #       define wxUSE_ACCEL 0 
 403 #endif /* !defined(wxUSE_ACCEL) */ 
 405 #ifndef wxUSE_ACCESSIBILITY 
 406 #   ifdef wxABORT_ON_CONFIG_ERROR 
 407 #       error "wxUSE_ACCESSIBILITY must be defined, please read comment near the top of this file." 
 409 #       define wxUSE_ACCESSIBILITY 0 
 411 #endif /* !defined(wxUSE_ACCESSIBILITY) */ 
 413 #ifndef wxUSE_ANIMATIONCTRL 
 414 #   ifdef wxABORT_ON_CONFIG_ERROR 
 415 #       error "wxUSE_ANIMATIONCTRL must be defined, please read comment near the top of this file." 
 417 #       define wxUSE_ANIMATIONCTRL 0 
 419 #endif /* !defined(wxUSE_ANIMATIONCTRL) */ 
 421 #ifndef wxUSE_ARTPROVIDER_STD 
 422 #   ifdef wxABORT_ON_CONFIG_ERROR 
 423 #       error "wxUSE_ARTPROVIDER_STD must be defined, please read comment near the top of this file." 
 425 #       define wxUSE_ARTPROVIDER_STD 0 
 427 #endif /* !defined(wxUSE_ARTPROVIDER_STD) */ 
 429 #ifndef wxUSE_ARTPROVIDER_TANGO 
 430 #   ifdef wxABORT_ON_CONFIG_ERROR 
 431 #       error "wxUSE_ARTPROVIDER_TANGO must be defined, please read comment near the top of this file." 
 433 #       define wxUSE_ARTPROVIDER_TANGO 0 
 435 #endif /* !defined(wxUSE_ARTPROVIDER_TANGO) */ 
 437 #ifndef wxUSE_AUTOID_MANAGEMENT 
 438 #   ifdef wxABORT_ON_CONFIG_ERROR 
 439 #       error "wxUSE_AUTOID_MANAGEMENT must be defined, please read comment near the top of this file." 
 441 #       define wxUSE_AUTOID_MANAGEMENT 0 
 443 #endif /* !defined(wxUSE_AUTOID_MANAGEMENT) */ 
 445 #ifndef wxUSE_BITMAPCOMBOBOX 
 446 #   ifdef wxABORT_ON_CONFIG_ERROR 
 447 #       error "wxUSE_BITMAPCOMBOBOX must be defined, please read comment near the top of this file." 
 449 #       define wxUSE_BITMAPCOMBOBOX 0 
 451 #endif /* !defined(wxUSE_BITMAPCOMBOBOX) */ 
 453 #ifndef wxUSE_BMPBUTTON 
 454 #   ifdef wxABORT_ON_CONFIG_ERROR 
 455 #       error "wxUSE_BMPBUTTON must be defined, please read comment near the top of this file." 
 457 #       define wxUSE_BMPBUTTON 0 
 459 #endif /* !defined(wxUSE_BMPBUTTON) */ 
 462 #   ifdef wxABORT_ON_CONFIG_ERROR 
 463 #       error "wxUSE_BUTTON must be defined, please read comment near the top of this file." 
 465 #       define wxUSE_BUTTON 0 
 467 #endif /* !defined(wxUSE_BUTTON) */ 
 470 #   ifdef wxABORT_ON_CONFIG_ERROR 
 471 #       error "wxUSE_CAIRO must be defined, please read comment near the top of this file." 
 473 #       define wxUSE_CAIRO 0 
 475 #endif /* !defined(wxUSE_CAIRO) */ 
 477 #ifndef wxUSE_CALENDARCTRL 
 478 #   ifdef wxABORT_ON_CONFIG_ERROR 
 479 #       error "wxUSE_CALENDARCTRL must be defined, please read comment near the top of this file." 
 481 #       define wxUSE_CALENDARCTRL 0 
 483 #endif /* !defined(wxUSE_CALENDARCTRL) */ 
 486 #   ifdef wxABORT_ON_CONFIG_ERROR 
 487 #       error "wxUSE_CARET must be defined, please read comment near the top of this file." 
 489 #       define wxUSE_CARET 0 
 491 #endif /* !defined(wxUSE_CARET) */ 
 493 #ifndef wxUSE_CHECKBOX 
 494 #   ifdef wxABORT_ON_CONFIG_ERROR 
 495 #       error "wxUSE_CHECKBOX must be defined, please read comment near the top of this file." 
 497 #       define wxUSE_CHECKBOX 0 
 499 #endif /* !defined(wxUSE_CHECKBOX) */ 
 501 #ifndef wxUSE_CHECKLISTBOX 
 502 #   ifdef wxABORT_ON_CONFIG_ERROR 
 503 #       error "wxUSE_CHECKLISTBOX must be defined, please read comment near the top of this file." 
 505 #       define wxUSE_CHECKLISTBOX 0 
 507 #endif /* !defined(wxUSE_CHECKLISTBOX) */ 
 510 #   ifdef wxABORT_ON_CONFIG_ERROR 
 511 #       error "wxUSE_CHOICE must be defined, please read comment near the top of this file." 
 513 #       define wxUSE_CHOICE 0 
 515 #endif /* !defined(wxUSE_CHOICE) */ 
 517 #ifndef wxUSE_CHOICEBOOK 
 518 #   ifdef wxABORT_ON_CONFIG_ERROR 
 519 #       error "wxUSE_CHOICEBOOK must be defined, please read comment near the top of this file." 
 521 #       define wxUSE_CHOICEBOOK 0 
 523 #endif /* !defined(wxUSE_CHOICEBOOK) */ 
 525 #ifndef wxUSE_CHOICEDLG 
 526 #   ifdef wxABORT_ON_CONFIG_ERROR 
 527 #       error "wxUSE_CHOICEDLG must be defined, please read comment near the top of this file." 
 529 #       define wxUSE_CHOICEDLG 0 
 531 #endif /* !defined(wxUSE_CHOICEDLG) */ 
 533 #ifndef wxUSE_CLIPBOARD 
 534 #   ifdef wxABORT_ON_CONFIG_ERROR 
 535 #       error "wxUSE_CLIPBOARD must be defined, please read comment near the top of this file." 
 537 #       define wxUSE_CLIPBOARD 0 
 539 #endif /* !defined(wxUSE_CLIPBOARD) */ 
 541 #ifndef wxUSE_COLLPANE 
 542 #   ifdef wxABORT_ON_CONFIG_ERROR 
 543 #       error "wxUSE_COLLPANE must be defined, please read comment near the top of this file." 
 545 #       define wxUSE_COLLPANE 0 
 547 #endif /* !defined(wxUSE_COLLPANE) */ 
 549 #ifndef wxUSE_COLOURDLG 
 550 #   ifdef wxABORT_ON_CONFIG_ERROR 
 551 #       error "wxUSE_COLOURDLG must be defined, please read comment near the top of this file." 
 553 #       define wxUSE_COLOURDLG 0 
 555 #endif /* !defined(wxUSE_COLOURDLG) */ 
 557 #ifndef wxUSE_COLOURPICKERCTRL 
 558 #   ifdef wxABORT_ON_CONFIG_ERROR 
 559 #       error "wxUSE_COLOURPICKERCTRL must be defined, please read comment near the top of this file." 
 561 #       define wxUSE_COLOURPICKERCTRL 0 
 563 #endif /* !defined(wxUSE_COLOURPICKERCTRL) */ 
 565 #ifndef wxUSE_COMBOBOX 
 566 #   ifdef wxABORT_ON_CONFIG_ERROR 
 567 #       error "wxUSE_COMBOBOX must be defined, please read comment near the top of this file." 
 569 #       define wxUSE_COMBOBOX 0 
 571 #endif /* !defined(wxUSE_COMBOBOX) */ 
 573 #ifndef wxUSE_COMMANDLINKBUTTON 
 574 #   ifdef wxABORT_ON_CONFIG_ERROR 
 575 #       error "wxUSE_COMMANDLINKBUTTON must be defined, please read comment near the top of this file." 
 577 #       define wxUSE_COMMANDLINKBUTTON 0 
 579 #endif /* !defined(wxUSE_COMMANDLINKBUTTON) */ 
 581 #ifndef wxUSE_COMBOCTRL 
 582 #   ifdef wxABORT_ON_CONFIG_ERROR 
 583 #       error "wxUSE_COMBOCTRL must be defined, please read comment near the top of this file." 
 585 #       define wxUSE_COMBOCTRL 0 
 587 #endif /* !defined(wxUSE_COMBOCTRL) */ 
 589 #ifndef wxUSE_DATAOBJ 
 590 #   ifdef wxABORT_ON_CONFIG_ERROR 
 591 #       error "wxUSE_DATAOBJ must be defined, please read comment near the top of this file." 
 593 #       define wxUSE_DATAOBJ 0 
 595 #endif /* !defined(wxUSE_DATAOBJ) */ 
 597 #ifndef wxUSE_DATAVIEWCTRL 
 598 #   ifdef wxABORT_ON_CONFIG_ERROR 
 599 #       error "wxUSE_DATAVIEWCTRL must be defined, please read comment near the top of this file." 
 601 #       define wxUSE_DATAVIEWCTRL 0 
 603 #endif /* !defined(wxUSE_DATAVIEWCTRL) */ 
 605 #ifndef wxUSE_DATEPICKCTRL 
 606 #   ifdef wxABORT_ON_CONFIG_ERROR 
 607 #       error "wxUSE_DATEPICKCTRL must be defined, please read comment near the top of this file." 
 609 #       define wxUSE_DATEPICKCTRL 0 
 611 #endif /* !defined(wxUSE_DATEPICKCTRL) */ 
 613 #ifndef wxUSE_DC_TRANSFORM_MATRIX 
 614 #   ifdef wxABORT_ON_CONFIG_ERROR 
 615 #       error "wxUSE_DC_TRANSFORM_MATRIX must be defined, please read comment near the top of this file." 
 617 #       define wxUSE_DC_TRANSFORM_MATRIX 1 
 619 #endif /* wxUSE_DC_TRANSFORM_MATRIX */ 
 621 #ifndef wxUSE_DIRPICKERCTRL 
 622 #   ifdef wxABORT_ON_CONFIG_ERROR 
 623 #       error "wxUSE_DIRPICKERCTRL must be defined, please read comment near the top of this file." 
 625 #       define wxUSE_DIRPICKERCTRL 0 
 627 #endif /* !defined(wxUSE_DIRPICKERCTRL) */ 
 629 #ifndef wxUSE_DISPLAY 
 630 #   ifdef wxABORT_ON_CONFIG_ERROR 
 631 #       error "wxUSE_DISPLAY must be defined, please read comment near the top of this file." 
 633 #       define wxUSE_DISPLAY 0 
 635 #endif /* !defined(wxUSE_DISPLAY) */ 
 637 #ifndef wxUSE_DOC_VIEW_ARCHITECTURE 
 638 #   ifdef wxABORT_ON_CONFIG_ERROR 
 639 #       error "wxUSE_DOC_VIEW_ARCHITECTURE must be defined, please read comment near the top of this file." 
 641 #       define wxUSE_DOC_VIEW_ARCHITECTURE 0 
 643 #endif /* !defined(wxUSE_DOC_VIEW_ARCHITECTURE) */ 
 645 #ifndef wxUSE_FILECTRL 
 646 #   ifdef wxABORT_ON_CONFIG_ERROR 
 647 #       error "wxUSE_FILECTRL must be defined, please read comment near the top of this file." 
 649 #       define wxUSE_FILECTRL 0 
 651 #endif /* !defined(wxUSE_FILECTRL) */ 
 653 #ifndef wxUSE_FILEDLG 
 654 #   ifdef wxABORT_ON_CONFIG_ERROR 
 655 #       error "wxUSE_FILEDLG must be defined, please read comment near the top of this file." 
 657 #       define wxUSE_FILEDLG 0 
 659 #endif /* !defined(wxUSE_FILEDLG) */ 
 661 #ifndef wxUSE_FILEPICKERCTRL 
 662 #   ifdef wxABORT_ON_CONFIG_ERROR 
 663 #       error "wxUSE_FILEPICKERCTRL must be defined, please read comment near the top of this file." 
 665 #       define wxUSE_FILEPICKERCTRL 0 
 667 #endif /* !defined(wxUSE_FILEPICKERCTRL) */ 
 669 #ifndef wxUSE_FONTDLG 
 670 #   ifdef wxABORT_ON_CONFIG_ERROR 
 671 #       error "wxUSE_FONTDLG must be defined, please read comment near the top of this file." 
 673 #       define wxUSE_FONTDLG 0 
 675 #endif /* !defined(wxUSE_FONTDLG) */ 
 677 #ifndef wxUSE_FONTMAP 
 678 #   ifdef wxABORT_ON_CONFIG_ERROR 
 679 #       error "wxUSE_FONTMAP must be defined, please read comment near the top of this file." 
 681 #       define wxUSE_FONTMAP 0 
 683 #endif /* !defined(wxUSE_FONTMAP) */ 
 685 #ifndef wxUSE_FONTPICKERCTRL 
 686 #   ifdef wxABORT_ON_CONFIG_ERROR 
 687 #       error "wxUSE_FONTPICKERCTRL must be defined, please read comment near the top of this file." 
 689 #       define wxUSE_FONTPICKERCTRL 0 
 691 #endif /* !defined(wxUSE_FONTPICKERCTRL) */ 
 694 #   ifdef wxABORT_ON_CONFIG_ERROR 
 695 #       error "wxUSE_GAUGE must be defined, please read comment near the top of this file." 
 697 #       define wxUSE_GAUGE 0 
 699 #endif /* !defined(wxUSE_GAUGE) */ 
 701 #ifndef wxUSE_GRAPHICS_CONTEXT 
 702 #   ifdef wxABORT_ON_CONFIG_ERROR 
 703 #       error "wxUSE_GRAPHICS_CONTEXT must be defined, please read comment near the top of this file." 
 705 #       define wxUSE_GRAPHICS_CONTEXT 0 
 707 #endif /* !defined(wxUSE_GRAPHICS_CONTEXT) */ 
 711 #   ifdef wxABORT_ON_CONFIG_ERROR 
 712 #       error "wxUSE_GRID must be defined, please read comment near the top of this file." 
 714 #       define wxUSE_GRID 0 
 716 #endif /* !defined(wxUSE_GRID) */ 
 718 #ifndef wxUSE_HEADERCTRL 
 719 #   ifdef wxABORT_ON_CONFIG_ERROR 
 720 #       error "wxUSE_HEADERCTRL must be defined, please read comment near the top of this file." 
 722 #       define wxUSE_HEADERCTRL 0 
 724 #endif /* !defined(wxUSE_HEADERCTRL) */ 
 727 #   ifdef wxABORT_ON_CONFIG_ERROR 
 728 #       error "wxUSE_HELP must be defined, please read comment near the top of this file." 
 730 #       define wxUSE_HELP 0 
 732 #endif /* !defined(wxUSE_HELP) */ 
 734 #ifndef wxUSE_HYPERLINKCTRL 
 735 #   ifdef wxABORT_ON_CONFIG_ERROR 
 736 #       error "wxUSE_HYPERLINKCTRL must be defined, please read comment near the top of this file." 
 738 #       define wxUSE_HYPERLINKCTRL 0 
 740 #endif /* !defined(wxUSE_HYPERLINKCTRL) */ 
 743 #   ifdef wxABORT_ON_CONFIG_ERROR 
 744 #       error "wxUSE_HTML must be defined, please read comment near the top of this file." 
 746 #       define wxUSE_HTML 0 
 748 #endif /* !defined(wxUSE_HTML) */ 
 750 #ifndef wxUSE_LIBMSPACK 
 751 #   if !defined(__UNIX__) 
 752         /* set to 0 on platforms that don't have libmspack */ 
 753 #       define wxUSE_LIBMSPACK 0 
 755 #       ifdef wxABORT_ON_CONFIG_ERROR 
 756 #           error "wxUSE_LIBMSPACK must be defined, please read comment near the top of this file." 
 758 #           define wxUSE_LIBMSPACK 0 
 761 #endif /* !defined(wxUSE_LIBMSPACK) */ 
 763 #ifndef wxUSE_ICO_CUR 
 764 #   ifdef wxABORT_ON_CONFIG_ERROR 
 765 #       error "wxUSE_ICO_CUR must be defined, please read comment near the top of this file." 
 767 #       define wxUSE_ICO_CUR 0 
 769 #endif /* !defined(wxUSE_ICO_CUR) */ 
 772 #   ifdef wxABORT_ON_CONFIG_ERROR 
 773 #       error "wxUSE_IFF must be defined, please read comment near the top of this file." 
 777 #endif /* !defined(wxUSE_IFF) */ 
 779 #ifndef wxUSE_IMAGLIST 
 780 #   ifdef wxABORT_ON_CONFIG_ERROR 
 781 #       error "wxUSE_IMAGLIST must be defined, please read comment near the top of this file." 
 783 #       define wxUSE_IMAGLIST 0 
 785 #endif /* !defined(wxUSE_IMAGLIST) */ 
 787 #ifndef wxUSE_INFOBAR 
 788 #   ifdef wxABORT_ON_CONFIG_ERROR 
 789 #       error "wxUSE_INFOBAR must be defined, please read comment near the top of this file." 
 791 #       define wxUSE_INFOBAR 0 
 793 #endif /* !defined(wxUSE_INFOBAR) */ 
 795 #ifndef wxUSE_JOYSTICK 
 796 #   ifdef wxABORT_ON_CONFIG_ERROR 
 797 #       error "wxUSE_JOYSTICK must be defined, please read comment near the top of this file." 
 799 #       define wxUSE_JOYSTICK 0 
 801 #endif /* !defined(wxUSE_JOYSTICK) */ 
 803 #ifndef wxUSE_LISTBOOK 
 804 #   ifdef wxABORT_ON_CONFIG_ERROR 
 805 #       error "wxUSE_LISTBOOK must be defined, please read comment near the top of this file." 
 807 #       define wxUSE_LISTBOOK 0 
 809 #endif /* !defined(wxUSE_LISTBOOK) */ 
 811 #ifndef wxUSE_LISTBOX 
 812 #   ifdef wxABORT_ON_CONFIG_ERROR 
 813 #       error "wxUSE_LISTBOX must be defined, please read comment near the top of this file." 
 815 #       define wxUSE_LISTBOX 0 
 817 #endif /* !defined(wxUSE_LISTBOX) */ 
 819 #ifndef wxUSE_LISTCTRL 
 820 #   ifdef wxABORT_ON_CONFIG_ERROR 
 821 #       error "wxUSE_LISTCTRL must be defined, please read comment near the top of this file." 
 823 #       define wxUSE_LISTCTRL 0 
 825 #endif /* !defined(wxUSE_LISTCTRL) */ 
 828 #   ifdef wxABORT_ON_CONFIG_ERROR 
 829 #       error "wxUSE_LOGGUI must be defined, please read comment near the top of this file." 
 831 #       define wxUSE_LOGGUI 0 
 833 #endif /* !defined(wxUSE_LOGGUI) */ 
 835 #ifndef wxUSE_LOGWINDOW 
 836 #   ifdef wxABORT_ON_CONFIG_ERROR 
 837 #       error "wxUSE_LOGWINDOW must be defined, please read comment near the top of this file." 
 839 #       define wxUSE_LOGWINDOW 0 
 841 #endif /* !defined(wxUSE_LOGWINDOW) */ 
 843 #ifndef wxUSE_LOG_DIALOG 
 844 #   ifdef wxABORT_ON_CONFIG_ERROR 
 845 #       error "wxUSE_LOG_DIALOG must be defined, please read comment near the top of this file." 
 847 #       define wxUSE_LOG_DIALOG 0 
 849 #endif /* !defined(wxUSE_LOG_DIALOG) */ 
 852 #   ifdef wxABORT_ON_CONFIG_ERROR 
 853 #       error "wxUSE_MARKUP must be defined, please read comment near the top of this file." 
 855 #       define wxUSE_MARKUP 0 
 857 #endif /* !defined(wxUSE_MARKUP) */ 
 860 #   ifdef wxABORT_ON_CONFIG_ERROR 
 861 #       error "wxUSE_MDI must be defined, please read comment near the top of this file." 
 865 #endif /* !defined(wxUSE_MDI) */ 
 867 #ifndef wxUSE_MDI_ARCHITECTURE 
 868 #   ifdef wxABORT_ON_CONFIG_ERROR 
 869 #       error "wxUSE_MDI_ARCHITECTURE must be defined, please read comment near the top of this file." 
 871 #       define wxUSE_MDI_ARCHITECTURE 0 
 873 #endif /* !defined(wxUSE_MDI_ARCHITECTURE) */ 
 876 #   ifdef wxABORT_ON_CONFIG_ERROR 
 877 #       error "wxUSE_MENUS must be defined, please read comment near the top of this file." 
 879 #       define wxUSE_MENUS 0 
 881 #endif /* !defined(wxUSE_MENUS) */ 
 884 #   ifdef wxABORT_ON_CONFIG_ERROR 
 885 #       error "wxUSE_MSGDLG must be defined, please read comment near the top of this file." 
 887 #       define wxUSE_MSGDLG 0 
 889 #endif /* !defined(wxUSE_MSGDLG) */ 
 891 #ifndef wxUSE_NOTEBOOK 
 892 #   ifdef wxABORT_ON_CONFIG_ERROR 
 893 #       error "wxUSE_NOTEBOOK must be defined, please read comment near the top of this file." 
 895 #       define wxUSE_NOTEBOOK 0 
 897 #endif /* !defined(wxUSE_NOTEBOOK) */ 
 899 #ifndef wxUSE_NOTIFICATION_MESSAGE 
 900 #   ifdef wxABORT_ON_CONFIG_ERROR 
 901 #       error "wxUSE_NOTIFICATION_MESSAGE must be defined, please read comment near the top of this file." 
 903 #       define wxUSE_NOTIFICATION_MESSAGE 0 
 905 #endif /* !defined(wxUSE_NOTIFICATION_MESSAGE) */ 
 907 #ifndef wxUSE_ODCOMBOBOX 
 908 #   ifdef wxABORT_ON_CONFIG_ERROR 
 909 #       error "wxUSE_ODCOMBOBOX must be defined, please read comment near the top of this file." 
 911 #       define wxUSE_ODCOMBOBOX 0 
 913 #endif /* !defined(wxUSE_ODCOMBOBOX) */ 
 915 #ifndef wxUSE_PALETTE 
 916 #   ifdef wxABORT_ON_CONFIG_ERROR 
 917 #       error "wxUSE_PALETTE must be defined, please read comment near the top of this file." 
 919 #       define wxUSE_PALETTE 0 
 921 #endif /* !defined(wxUSE_PALETTE) */ 
 923 #ifndef wxUSE_POPUPWIN 
 924 #   ifdef wxABORT_ON_CONFIG_ERROR 
 925 #       error "wxUSE_POPUPWIN must be defined, please read comment near the top of this file." 
 927 #       define wxUSE_POPUPWIN 0 
 929 #endif /* !defined(wxUSE_POPUPWIN) */ 
 931 #ifndef wxUSE_PRINTING_ARCHITECTURE 
 932 #   ifdef wxABORT_ON_CONFIG_ERROR 
 933 #       error "wxUSE_PRINTING_ARCHITECTURE must be defined, please read comment near the top of this file." 
 935 #       define wxUSE_PRINTING_ARCHITECTURE 0 
 937 #endif /* !defined(wxUSE_PRINTING_ARCHITECTURE) */ 
 939 #ifndef wxUSE_RADIOBOX 
 940 #   ifdef wxABORT_ON_CONFIG_ERROR 
 941 #       error "wxUSE_RADIOBOX must be defined, please read comment near the top of this file." 
 943 #       define wxUSE_RADIOBOX 0 
 945 #endif /* !defined(wxUSE_RADIOBOX) */ 
 947 #ifndef wxUSE_RADIOBTN 
 948 #   ifdef wxABORT_ON_CONFIG_ERROR 
 949 #       error "wxUSE_RADIOBTN must be defined, please read comment near the top of this file." 
 951 #       define wxUSE_RADIOBTN 0 
 953 #endif /* !defined(wxUSE_RADIOBTN) */ 
 955 #ifndef wxUSE_REARRANGECTRL 
 956 #   ifdef wxABORT_ON_CONFIG_ERROR 
 957 #       error "wxUSE_REARRANGECTRL must be defined, please read comment near the top of this file." 
 959 #       define wxUSE_REARRANGECTRL 0 
 961 #endif /* !defined(wxUSE_REARRANGECTRL) */ 
 964 #   ifdef wxABORT_ON_CONFIG_ERROR 
 965 #       error "wxUSE_RIBBON must be defined, please read comment near the top of this file." 
 967 #       define wxUSE_RIBBON 0 
 969 #endif /* !defined(wxUSE_RIBBON) */ 
 971 #ifndef wxUSE_RICHMSGDLG 
 972 #   ifdef wxABORT_ON_CONFIG_ERROR 
 973 #       error "wxUSE_RICHMSGDLG must be defined, please read comment near the top of this file." 
 975 #       define wxUSE_RICHMSGDLG 0 
 977 #endif /* !defined(wxUSE_RICHMSGDLG) */ 
 979 #ifndef wxUSE_RICHTOOLTIP 
 980 #   ifdef wxABORT_ON_CONFIG_ERROR 
 981 #       error "wxUSE_RICHTOOLTIP must be defined, please read comment near the top of this file." 
 983 #       define wxUSE_RICHTOOLTIP 0 
 985 #endif /* !defined(wxUSE_RICHTOOLTIP) */ 
 988 #   ifdef wxABORT_ON_CONFIG_ERROR 
 989 #       error "wxUSE_SASH must be defined, please read comment near the top of this file." 
 991 #       define wxUSE_SASH 0 
 993 #endif /* !defined(wxUSE_SASH) */ 
 995 #ifndef wxUSE_SCROLLBAR 
 996 #   ifdef wxABORT_ON_CONFIG_ERROR 
 997 #       error "wxUSE_SCROLLBAR must be defined, please read comment near the top of this file." 
 999 #       define wxUSE_SCROLLBAR 0 
1001 #endif /* !defined(wxUSE_SCROLLBAR) */ 
1003 #ifndef wxUSE_SLIDER 
1004 #   ifdef wxABORT_ON_CONFIG_ERROR 
1005 #       error "wxUSE_SLIDER must be defined, please read comment near the top of this file." 
1007 #       define wxUSE_SLIDER 0 
1009 #endif /* !defined(wxUSE_SLIDER) */ 
1012 #   ifdef wxABORT_ON_CONFIG_ERROR 
1013 #       error "wxUSE_SOUND must be defined, please read comment near the top of this file." 
1015 #       define wxUSE_SOUND 0 
1017 #endif /* !defined(wxUSE_SOUND) */ 
1019 #ifndef wxUSE_SPINBTN 
1020 #   ifdef wxABORT_ON_CONFIG_ERROR 
1021 #       error "wxUSE_SPINBTN must be defined, please read comment near the top of this file." 
1023 #       define wxUSE_SPINBTN 0 
1025 #endif /* !defined(wxUSE_SPINBTN) */ 
1027 #ifndef wxUSE_SPINCTRL 
1028 #   ifdef wxABORT_ON_CONFIG_ERROR 
1029 #       error "wxUSE_SPINCTRL must be defined, please read comment near the top of this file." 
1031 #       define wxUSE_SPINCTRL 0 
1033 #endif /* !defined(wxUSE_SPINCTRL) */ 
1035 #ifndef wxUSE_SPLASH 
1036 #   ifdef wxABORT_ON_CONFIG_ERROR 
1037 #       error "wxUSE_SPLASH must be defined, please read comment near the top of this file." 
1039 #       define wxUSE_SPLASH 0 
1041 #endif /* !defined(wxUSE_SPLASH) */ 
1043 #ifndef wxUSE_SPLITTER 
1044 #   ifdef wxABORT_ON_CONFIG_ERROR 
1045 #       error "wxUSE_SPLITTER must be defined, please read comment near the top of this file." 
1047 #       define wxUSE_SPLITTER 0 
1049 #endif /* !defined(wxUSE_SPLITTER) */ 
1051 #ifndef wxUSE_STATBMP 
1052 #   ifdef wxABORT_ON_CONFIG_ERROR 
1053 #       error "wxUSE_STATBMP must be defined, please read comment near the top of this file." 
1055 #       define wxUSE_STATBMP 0 
1057 #endif /* !defined(wxUSE_STATBMP) */ 
1059 #ifndef wxUSE_STATBOX 
1060 #   ifdef wxABORT_ON_CONFIG_ERROR 
1061 #       error "wxUSE_STATBOX must be defined, please read comment near the top of this file." 
1063 #       define wxUSE_STATBOX 0 
1065 #endif /* !defined(wxUSE_STATBOX) */ 
1067 #ifndef wxUSE_STATLINE 
1068 #   ifdef wxABORT_ON_CONFIG_ERROR 
1069 #       error "wxUSE_STATLINE must be defined, please read comment near the top of this file." 
1071 #       define wxUSE_STATLINE 0 
1073 #endif /* !defined(wxUSE_STATLINE) */ 
1075 #ifndef wxUSE_STATTEXT 
1076 #   ifdef wxABORT_ON_CONFIG_ERROR 
1077 #       error "wxUSE_STATTEXT must be defined, please read comment near the top of this file." 
1079 #       define wxUSE_STATTEXT 0 
1081 #endif /* !defined(wxUSE_STATTEXT) */ 
1083 #ifndef wxUSE_STATUSBAR 
1084 #   ifdef wxABORT_ON_CONFIG_ERROR 
1085 #       error "wxUSE_STATUSBAR must be defined, please read comment near the top of this file." 
1087 #       define wxUSE_STATUSBAR 0 
1089 #endif /* !defined(wxUSE_STATUSBAR) */ 
1091 #ifndef wxUSE_TASKBARICON 
1092 #   ifdef wxABORT_ON_CONFIG_ERROR 
1093 #       error "wxUSE_TASKBARICON must be defined, please read comment near the top of this file." 
1095 #       define wxUSE_TASKBARICON 0 
1097 #endif /* !defined(wxUSE_TASKBARICON) */ 
1099 #ifndef wxUSE_TEXTCTRL 
1100 #   ifdef wxABORT_ON_CONFIG_ERROR 
1101 #       error "wxUSE_TEXTCTRL must be defined, please read comment near the top of this file." 
1103 #       define wxUSE_TEXTCTRL 0 
1105 #endif /* !defined(wxUSE_TEXTCTRL) */ 
1107 #ifndef wxUSE_TIMEPICKCTRL 
1108 #   ifdef wxABORT_ON_CONFIG_ERROR 
1109 #       error "wxUSE_TIMEPICKCTRL must be defined, please read comment near the top of this file." 
1111 #       define wxUSE_TIMEPICKCTRL 0 
1113 #endif /* !defined(wxUSE_TIMEPICKCTRL) */ 
1115 #ifndef wxUSE_TIPWINDOW 
1116 #   ifdef wxABORT_ON_CONFIG_ERROR 
1117 #       error "wxUSE_TIPWINDOW must be defined, please read comment near the top of this file." 
1119 #       define wxUSE_TIPWINDOW 0 
1121 #endif /* !defined(wxUSE_TIPWINDOW) */ 
1123 #ifndef wxUSE_TOOLBAR 
1124 #   ifdef wxABORT_ON_CONFIG_ERROR 
1125 #       error "wxUSE_TOOLBAR must be defined, please read comment near the top of this file." 
1127 #       define wxUSE_TOOLBAR 0 
1129 #endif /* !defined(wxUSE_TOOLBAR) */ 
1131 #ifndef wxUSE_TOOLTIPS 
1132 #   ifdef wxABORT_ON_CONFIG_ERROR 
1133 #       error "wxUSE_TOOLTIPS must be defined, please read comment near the top of this file." 
1135 #       define wxUSE_TOOLTIPS 0 
1137 #endif /* !defined(wxUSE_TOOLTIPS) */ 
1139 #ifndef wxUSE_TREECTRL 
1140 #   ifdef wxABORT_ON_CONFIG_ERROR 
1141 #       error "wxUSE_TREECTRL must be defined, please read comment near the top of this file." 
1143 #       define wxUSE_TREECTRL 0 
1145 #endif /* !defined(wxUSE_TREECTRL) */ 
1147 #ifndef wxUSE_TREELISTCTRL 
1148 #   ifdef wxABORT_ON_CONFIG_ERROR 
1149 #       error "wxUSE_TREELISTCTRL must be defined, please read comment near the top of this file." 
1151 #       define wxUSE_TREELISTCTRL 0 
1153 #endif /* !defined(wxUSE_TREELISTCTRL) */ 
1155 #ifndef wxUSE_UIACTIONSIMULATOR 
1156 #   ifdef wxABORT_ON_CONFIG_ERROR 
1157 #       error "wxUSE_UIACTIONSIMULATOR must be defined, please read comment near the top of this file." 
1159 #       define wxUSE_UIACTIONSIMULATOR 0 
1161 #endif /* !defined(wxUSE_UIACTIONSIMULATOR) */ 
1163 #ifndef wxUSE_VALIDATORS 
1164 #   ifdef wxABORT_ON_CONFIG_ERROR 
1165 #       error "wxUSE_VALIDATORS must be defined, please read comment near the top of this file." 
1167 #       define wxUSE_VALIDATORS 0 
1169 #endif /* !defined(wxUSE_VALIDATORS) */ 
1171 #ifndef wxUSE_WEBVIEW 
1172 #   ifdef wxABORT_ON_CONFIG_ERROR 
1173 #       error "wxUSE_WEBVIEW must be defined, please read comment near the top of this file." 
1175 #       define wxUSE_WEBVIEW 0 
1177 #endif /* !defined(wxUSE_WEBVIEW) */ 
1179 #ifndef wxUSE_WXHTML_HELP 
1180 #   ifdef wxABORT_ON_CONFIG_ERROR 
1181 #       error "wxUSE_WXHTML_HELP must be defined, please read comment near the top of this file." 
1183 #       define wxUSE_WXHTML_HELP 0 
1185 #endif /* !defined(wxUSE_WXHTML_HELP) */ 
1188 #   ifdef wxABORT_ON_CONFIG_ERROR 
1189 #       error "wxUSE_XRC must be defined, please read comment near the top of this file." 
1191 #       define wxUSE_XRC 0 
1193 #endif /* !defined(wxUSE_XRC) */ 
1195 #endif /* wxUSE_GUI */ 
1198    Section 2: platform-specific checks. 
1200    This must be done after checking that everything is defined as the platform 
1201    checks use wxUSE_XXX symbols in #if tests. 
1204 #if defined(__WXWINCE__) 
1205 #  include "wx/msw/wince/chkconf.h" 
1206 #elif defined(__WXMSW__) 
1207 #  include "wx/msw/chkconf.h" 
1208 #elif defined(__WXGTK__) 
1209 #  include "wx/gtk/chkconf.h" 
1210 #elif defined(__WXCOCOA__) 
1211 #  include "wx/cocoa/chkconf.h" 
1212 #elif defined(__WXMAC__) 
1213 #  include "wx/osx/chkconf.h" 
1214 #elif defined(__OS2__) 
1215 #  include "wx/os2/chkconf.h" 
1216 #elif defined(__WXDFB__) 
1217 #  include "wx/dfb/chkconf.h" 
1218 #elif defined(__WXMOTIF__) 
1219 #  include "wx/motif/chkconf.h" 
1220 #elif defined(__WXX11__) 
1221 #  include "wx/x11/chkconf.h" 
1225     __UNIX__ is also defined under Cygwin but we shouldn't perform these checks 
1226     there if we're building wxMSW. 
1228 #if defined(__UNIX__) && !defined(__WXMSW__) 
1229 #   include "wx/unix/chkconf.h" 
1232 #ifdef __WXUNIVERSAL__ 
1233 #   include "wx/univ/chkconf.h" 
1237    Section 3a: check consistency of the non-GUI settings. 
1240 #if WXWIN_COMPATIBILITY_2_6 
1241 #   if !WXWIN_COMPATIBILITY_2_8 
1242 #       ifdef wxABORT_ON_CONFIG_ERROR 
1243 #           error "2.6.X compatibility requires 2.8.X compatibility" 
1245 #           undef WXWIN_COMPATIBILITY_2_8 
1246 #           define WXWIN_COMPATIBILITY_2_8 1 
1249 #endif /* WXWIN_COMPATIBILITY_2_6 */ 
1251 #if wxUSE_ARCHIVE_STREAMS 
1252 #   if !wxUSE_DATETIME 
1253 #       ifdef wxABORT_ON_CONFIG_ERROR 
1254 #           error "wxArchive requires wxUSE_DATETIME" 
1256 #           undef wxUSE_ARCHIVE_STREAMS 
1257 #           define wxUSE_ARCHIVE_STREAMS 0 
1260 #endif /* wxUSE_ARCHIVE_STREAMS */ 
1262 #if wxUSE_PROTOCOL_FILE || wxUSE_PROTOCOL_FTP || wxUSE_PROTOCOL_HTTP 
1263 #   if !wxUSE_PROTOCOL 
1264 #        ifdef wxABORT_ON_CONFIG_ERROR 
1265 #            error "wxUSE_PROTOCOL_XXX requires wxUSE_PROTOCOL" 
1267 #            undef wxUSE_PROTOCOL 
1268 #            define wxUSE_PROTOCOL 1 
1271 #endif /* wxUSE_PROTOCOL_XXX */ 
1274 #   if !wxUSE_PROTOCOL 
1275 #        ifdef wxABORT_ON_CONFIG_ERROR 
1276 #            error "wxUSE_URL requires wxUSE_PROTOCOL" 
1278 #            undef wxUSE_PROTOCOL 
1279 #            define wxUSE_PROTOCOL 1 
1282 #endif /* wxUSE_URL */ 
1286 #       if wxUSE_PROTOCOL_HTTP || wxUSE_PROTOCOL_FTP 
1287 #           ifdef wxABORT_ON_CONFIG_ERROR 
1288 #               error "wxUSE_PROTOCOL_FTP/HTTP requires wxUSE_SOCKETS" 
1290 #               undef wxUSE_SOCKETS 
1291 #               define wxUSE_SOCKETS 1 
1297 #       ifdef wxABORT_ON_CONFIG_ERROR 
1298 #           error "wxUSE_PROTOCOL requires wxUSE_STREAMS" 
1300 #           undef wxUSE_STREAMS 
1301 #           define wxUSE_STREAMS 1 
1304 #endif /* wxUSE_PROTOCOL */ 
1306 /* have to test for wxUSE_HTML before wxUSE_FILESYSTEM */ 
1308 #   if !wxUSE_FILESYSTEM 
1309 #       ifdef wxABORT_ON_CONFIG_ERROR 
1310 #           error "wxHTML requires wxFileSystem" 
1312 #           undef wxUSE_FILESYSTEM 
1313 #           define wxUSE_FILESYSTEM 1 
1316 #endif /* wxUSE_HTML */ 
1318 #if wxUSE_FS_ARCHIVE 
1319 #   if !wxUSE_FILESYSTEM 
1320 #       ifdef wxABORT_ON_CONFIG_ERROR 
1321 #           error "wxArchiveFSHandler requires wxFileSystem" 
1323 #           undef wxUSE_FILESYSTEM 
1324 #           define wxUSE_FILESYSTEM 1 
1327 #   if !wxUSE_ARCHIVE_STREAMS 
1328 #       ifdef wxABORT_ON_CONFIG_ERROR 
1329 #           error "wxArchiveFSHandler requires wxArchive" 
1331 #           undef wxUSE_ARCHIVE_STREAMS 
1332 #           define wxUSE_ARCHIVE_STREAMS 1 
1335 #endif /* wxUSE_FS_ARCHIVE */ 
1337 #if wxUSE_FILESYSTEM 
1339 #       ifdef wxABORT_ON_CONFIG_ERROR 
1340 #           error "wxUSE_FILESYSTEM requires wxUSE_STREAMS" 
1342 #           undef wxUSE_STREAMS 
1343 #           define wxUSE_STREAMS 1 
1346 #   if !wxUSE_FILE && !wxUSE_FFILE 
1347 #       ifdef wxABORT_ON_CONFIG_ERROR 
1348 #           error "wxUSE_FILESYSTEM requires either wxUSE_FILE or wxUSE_FFILE" 
1351 #           define wxUSE_FILE 1 
1353 #           define wxUSE_FFILE 1 
1356 #endif /* wxUSE_FILESYSTEM */ 
1359 #   if !wxUSE_PROTOCOL 
1360 #       ifdef wxABORT_ON_CONFIG_ERROR 
1361 #           error "wxUSE_FS_INET requires wxUSE_PROTOCOL" 
1363 #           undef wxUSE_PROTOCOL 
1364 #           define wxUSE_PROTOCOL 1 
1367 #endif /* wxUSE_FS_INET */ 
1369 #if wxUSE_STOPWATCH || wxUSE_DATETIME 
1370 #    if !wxUSE_LONGLONG 
1371 #        ifdef wxABORT_ON_CONFIG_ERROR 
1372 #            error "wxUSE_STOPWATCH and wxUSE_DATETIME require wxUSE_LONGLONG" 
1374 #            undef wxUSE_LONGLONG 
1375 #            define wxUSE_LONGLONG 1 
1378 #endif /* wxUSE_STOPWATCH */ 
1380 #if wxUSE_MIMETYPE && !wxUSE_TEXTFILE 
1381 #   ifdef wxABORT_ON_CONFIG_ERROR 
1382 #       error "wxUSE_MIMETYPE requires wxUSE_TEXTFILE" 
1384 #       undef wxUSE_TEXTFILE 
1385 #       define wxUSE_TEXTFILE 1 
1387 #endif /* wxUSE_MIMETYPE */ 
1389 #if wxUSE_TEXTFILE && !wxUSE_TEXTBUFFER 
1390 #   ifdef wxABORT_ON_CONFIG_ERROR 
1391 #       error "wxUSE_TEXTFILE requires wxUSE_TEXTBUFFER" 
1393 #       undef wxUSE_TEXTBUFFER 
1394 #       define wxUSE_TEXTBUFFER 1 
1396 #endif /* wxUSE_TEXTFILE */ 
1398 #if wxUSE_TEXTFILE && !wxUSE_FILE 
1399 #   ifdef wxABORT_ON_CONFIG_ERROR 
1400 #       error "wxUSE_TEXTFILE requires wxUSE_FILE" 
1403 #       define wxUSE_FILE 1 
1405 #endif /* wxUSE_TEXTFILE */ 
1407 #if !wxUSE_DYNLIB_CLASS 
1408 #   if wxUSE_DYNAMIC_LOADER 
1409 #       ifdef wxABORT_ON_CONFIG_ERROR 
1410 #           error "wxUSE_DYNAMIC_LOADER requires wxUSE_DYNLIB_CLASS." 
1412 #           define wxUSE_DYNLIB_CLASS 1 
1415 #endif  /* wxUSE_DYNLIB_CLASS */ 
1419 #       ifdef wxABORT_ON_CONFIG_ERROR 
1420 #           error "wxZip requires wxZlib" 
1423 #           define wxUSE_ZLIB 1 
1426 #   if !wxUSE_ARCHIVE_STREAMS 
1427 #       ifdef wxABORT_ON_CONFIG_ERROR 
1428 #           error "wxZip requires wxArchive" 
1430 #           undef wxUSE_ARCHIVE_STREAMS 
1431 #           define wxUSE_ARCHIVE_STREAMS 1 
1434 #endif /* wxUSE_ZIPSTREAM */ 
1437 #   if !wxUSE_ARCHIVE_STREAMS 
1438 #       ifdef wxABORT_ON_CONFIG_ERROR 
1439 #           error "wxTar requires wxArchive" 
1441 #           undef wxUSE_ARCHIVE_STREAMS 
1442 #           define wxUSE_ARCHIVE_STREAMS 1 
1445 #endif /* wxUSE_TARSTREAM */ 
1448    Section 3b: the tests for the GUI settings only. 
1452 #if wxUSE_ACCESSIBILITY && !defined(__WXMSW__) && !defined(__GCCXML__) 
1453 #   ifdef wxABORT_ON_CONFIG_ERROR 
1454 #       error "wxUSE_ACCESSIBILITY is currently only supported under wxMSW" 
1456 #       undef wxUSE_ACCESSIBILITY 
1457 #       define wxUSE_ACCESSIBILITY 0 
1459 #endif /* wxUSE_ACCESSIBILITY */ 
1461 #if wxUSE_BUTTON || \ 
1462     wxUSE_CALENDARCTRL || \ 
1465     wxUSE_BMPBUTTON || \ 
1467     wxUSE_CHECKLISTBOX || \ 
1471     wxUSE_HEADERCTRL || \ 
1477     wxUSE_REARRANGECTRL || \ 
1478     wxUSE_SCROLLBAR || \ 
1486     wxUSE_STATUSBAR || \ 
1491 #    if !wxUSE_CONTROLS 
1492 #        ifdef wxABORT_ON_CONFIG_ERROR 
1493 #            error "wxUSE_CONTROLS unset but some controls used" 
1495 #            undef wxUSE_CONTROLS 
1496 #            define wxUSE_CONTROLS 1 
1499 #endif /* controls */ 
1503 #        ifdef wxABORT_ON_CONFIG_ERROR 
1504 #            error "wxUSE_BMPBUTTON requires wxUSE_BUTTON" 
1506 #            undef wxUSE_BUTTON 
1507 #            define wxUSE_BUTTON 1 
1510 #endif /* wxUSE_BMPBUTTON */ 
1512 #if wxUSE_COMMANDLINKBUTTON 
1514 #        ifdef wxABORT_ON_CONFIG_ERROR 
1515 #            error "wxUSE_COMMANDLINKBUTTON requires wxUSE_BUTTON" 
1517 #            undef wxUSE_BUTTON 
1518 #            define wxUSE_BUTTON 1 
1521 #endif /* wxUSE_COMMANDLINKBUTTON */ 
1524    wxUSE_BOOKCTRL should be only used if any of the controls deriving from it 
1527 #ifdef wxUSE_BOOKCTRL 
1528 #   ifdef wxABORT_ON_CONFIG_ERROR 
1529 #       error "wxUSE_BOOKCTRL is defined automatically, don't define it" 
1531 #       undef wxUSE_BOOKCTRL 
1535 #define wxUSE_BOOKCTRL (wxUSE_NOTEBOOK || \ 
1537                         wxUSE_CHOICEBOOK || \ 
1542 #   if !wxUSE_BUTTON || !wxUSE_STATLINE 
1543 #       ifdef wxABORT_ON_CONFIG_ERROR 
1544 #           error "wxUSE_COLLPANE requires wxUSE_BUTTON and wxUSE_STATLINE" 
1546 #           undef wxUSE_COLLPANE 
1547 #           define wxUSE_COLLPANE 0 
1550 #endif /* wxUSE_COLLPANE */ 
1553 #   if !wxUSE_LISTCTRL 
1554 #       ifdef wxABORT_ON_CONFIG_ERROR 
1555 #           error "wxListbook requires wxListCtrl" 
1557 #           undef wxUSE_LISTCTRL 
1558 #           define wxUSE_LISTCTRL 1 
1561 #endif /* wxUSE_LISTBOOK */ 
1563 #if wxUSE_CHOICEBOOK 
1565 #       ifdef wxABORT_ON_CONFIG_ERROR 
1566 #           error "wxChoicebook requires wxChoice" 
1568 #           undef wxUSE_CHOICE 
1569 #           define wxUSE_CHOICE 1 
1572 #endif /* wxUSE_CHOICEBOOK */ 
1576 #       ifdef wxABORT_ON_CONFIG_ERROR 
1577 #           error "wxToolbook requires wxToolBar" 
1579 #           undef wxUSE_TOOLBAR 
1580 #           define wxUSE_TOOLBAR 1 
1583 #endif /* wxUSE_TOOLBOOK */ 
1585 #if !wxUSE_ODCOMBOBOX 
1586 #   if wxUSE_BITMAPCOMBOBOX 
1587 #       ifdef wxABORT_ON_CONFIG_ERROR 
1588 #           error "wxBitmapComboBox requires wxOwnerDrawnComboBox" 
1590 #           undef wxUSE_BITMAPCOMBOBOX 
1591 #           define wxUSE_BITMAPCOMBOBOX 0 
1594 #endif /* !wxUSE_ODCOMBOBOX */ 
1596 #if !wxUSE_HEADERCTRL 
1597 #   if wxUSE_DATAVIEWCTRL || wxUSE_GRID 
1598 #       ifdef wxABORT_ON_CONFIG_ERROR 
1599 #           error "wxDataViewCtrl and wxGrid require wxHeaderCtrl" 
1601 #           undef wxUSE_HEADERCTRL 
1602 #           define wxUSE_HEADERCTRL 1 
1605 #endif /* !wxUSE_HEADERCTRL */ 
1607 #if wxUSE_REARRANGECTRL 
1608 #   if !wxUSE_CHECKLISTBOX 
1609 #       ifdef wxABORT_ON_CONFIG_ERROR 
1610 #           error "wxRearrangeCtrl requires wxCheckListBox" 
1612 #           undef wxUSE_REARRANGECTRL 
1613 #           define wxUSE_REARRANGECTRL 0 
1616 #endif /* wxUSE_REARRANGECTRL */ 
1618 #if wxUSE_RICHMSGDLG 
1620 #        ifdef wxABORT_ON_CONFIG_ERROR 
1621 #            error "wxUSE_RICHMSGDLG requires wxUSE_MSGDLG" 
1623 #            undef wxUSE_MSGDLG 
1624 #            define wxUSE_MSGDLG 1 
1627 #endif /* wxUSE_RICHMSGDLG */ 
1629 /* don't attempt to use native status bar on the platforms not having it */ 
1630 #ifndef wxUSE_NATIVE_STATUSBAR 
1631 #   define wxUSE_NATIVE_STATUSBAR 0 
1632 #elif wxUSE_NATIVE_STATUSBAR 
1633 #   if defined(__WXUNIVERSAL__) || !(defined(__WXMSW__) || defined(__WXMAC__)) 
1634 #       undef wxUSE_NATIVE_STATUSBAR 
1635 #       define wxUSE_NATIVE_STATUSBAR 0 
1639 #if wxUSE_GRAPHICS_CONTEXT && !wxUSE_GEOMETRY 
1640 #   ifdef wxABORT_ON_CONFIG_ERROR 
1641 #       error "wxUSE_GRAPHICS_CONTEXT requires wxUSE_GEOMETRY" 
1643 #       undef wxUSE_GRAPHICS_CONTEXT 
1644 #       define wxUSE_GRAPHICS_CONTEXT 0 
1646 #endif /* wxUSE_GRAPHICS_CONTEXT */ 
1649 /* generic controls dependencies */ 
1650 #if !defined(__WXMSW__) || defined(__WXUNIVERSAL__) 
1651 #   if wxUSE_FONTDLG || wxUSE_FILEDLG || wxUSE_CHOICEDLG 
1652         /* all common controls are needed by these dialogs */ 
1653 #       if !defined(wxUSE_CHOICE) || \ 
1654            !defined(wxUSE_TEXTCTRL) || \ 
1655            !defined(wxUSE_BUTTON) || \ 
1656            !defined(wxUSE_CHECKBOX) || \ 
1657            !defined(wxUSE_STATTEXT) 
1658 #           ifdef wxABORT_ON_CONFIG_ERROR 
1659 #               error "These common controls are needed by common dialogs" 
1661 #               undef wxUSE_CHOICE 
1662 #               define wxUSE_CHOICE 1 
1663 #               undef wxUSE_TEXTCTRL 
1664 #               define wxUSE_TEXTCTRL 1 
1665 #               undef wxUSE_BUTTON 
1666 #               define wxUSE_BUTTON 1 
1667 #               undef wxUSE_CHECKBOX 
1668 #               define wxUSE_CHECKBOX 1 
1669 #               undef wxUSE_STATTEXT 
1670 #               define wxUSE_STATTEXT 1 
1674 #endif /* !wxMSW || wxUniv */ 
1676 /* generic file dialog depends on (generic) file control */ 
1677 #if wxUSE_FILEDLG && !wxUSE_FILECTRL && \ 
1678         (defined(__WXUNIVERSAL__) || defined(__WXGTK__)) 
1679 #   ifdef wxABORT_ON_CONFIG_ERROR 
1680 #       error "Generic wxFileDialog requires wxFileCtrl" 
1682 #       undef wxUSE_FILECTRL 
1683 #       define wxUSE_FILECTRL 1 
1685 #endif /* wxUSE_FILEDLG */ 
1687 /* common dependencies */ 
1688 #if wxUSE_ARTPROVIDER_TANGO 
1689 #   if !(wxUSE_STREAMS && wxUSE_IMAGE && wxUSE_LIBPNG) 
1690 #       ifdef wxABORT_ON_CONFIG_ERROR 
1691 #           error "Tango art provider requires wxImage with streams and PNG support" 
1693 #           undef wxUSE_ARTPROVIDER_TANGO 
1694 #           define wxUSE_ARTPROVIDER_TANGO 0 
1697 #endif /* wxUSE_ARTPROVIDER_TANGO */ 
1699 #if wxUSE_CALENDARCTRL 
1700 #   if !(wxUSE_SPINBTN && wxUSE_COMBOBOX) 
1701 #       ifdef wxABORT_ON_CONFIG_ERROR 
1702 #           error "wxCalendarCtrl requires wxSpinButton and wxComboBox" 
1704 #           undef wxUSE_SPINBTN 
1705 #           undef wxUSE_COMBOBOX 
1706 #           define wxUSE_SPINBTN 1 
1707 #           define wxUSE_COMBOBOX 1 
1711 #   if !wxUSE_DATETIME 
1712 #       ifdef wxABORT_ON_CONFIG_ERROR 
1713 #           error "wxCalendarCtrl requires wxUSE_DATETIME" 
1715 #           undef wxUSE_DATETIME 
1716 #           define wxUSE_DATETIME 1 
1719 #endif /* wxUSE_CALENDARCTRL */ 
1721 #if wxUSE_DATEPICKCTRL || wxUSE_TIMEPICKCTRL 
1722 #   if !wxUSE_DATETIME 
1723 #       ifdef wxABORT_ON_CONFIG_ERROR 
1724 #           error "wxDatePickerCtrl and wxTimePickerCtrl requires wxUSE_DATETIME" 
1726 #           undef wxUSE_DATETIME 
1727 #           define wxUSE_DATETIME 1 
1730 #endif /* wxUSE_DATEPICKCTRL || wxUSE_TIMEPICKCTRL */ 
1732 #if wxUSE_CHECKLISTBOX 
1734 #        ifdef wxABORT_ON_CONFIG_ERROR 
1735 #            error "wxCheckListBox requires wxListBox" 
1737 #            undef wxUSE_LISTBOX 
1738 #            define wxUSE_LISTBOX 1 
1741 #endif /* wxUSE_CHECKLISTBOX */ 
1745 #        ifdef wxABORT_ON_CONFIG_ERROR 
1746 #            error "Choice dialogs requires wxListBox" 
1748 #            undef wxUSE_LISTBOX 
1749 #            define wxUSE_LISTBOX 1 
1752 #endif /* wxUSE_CHOICEDLG */ 
1755 #   if !wxUSE_DATETIME 
1756 #       ifdef wxABORT_ON_CONFIG_ERROR 
1757 #           error "wxFileCtrl requires wxDateTime" 
1759 #           undef wxUSE_DATETIME 
1760 #           define wxUSE_DATETIME 1 
1763 #endif /* wxUSE_FILECTRL */ 
1766 #   if !wxUSE_BMPBUTTON 
1767 #       ifdef wxABORT_ON_CONFIG_ERROR 
1768 #           error "wxUSE_HELP requires wxUSE_BMPBUTTON" 
1770 #           undef wxUSE_BMPBUTTON 
1771 #           define wxUSE_BMPBUTTON 1 
1775 #   if !wxUSE_CHOICEDLG 
1776 #       ifdef wxABORT_ON_CONFIG_ERROR 
1777 #           error "wxUSE_HELP requires wxUSE_CHOICEDLG" 
1779 #           undef wxUSE_CHOICEDLG 
1780 #           define wxUSE_CHOICEDLG 1 
1783 #endif /* wxUSE_HELP */ 
1785 #if wxUSE_MS_HTML_HELP 
1787         this doesn't make sense for platforms other than MSW but we still 
1788         define it in wx/setup_inc.h so don't complain if it happens to be 
1789         defined under another platform but just silently fix it. 
1792 #       undef wxUSE_MS_HTML_HELP 
1793 #       define wxUSE_MS_HTML_HELP 0 
1795 #endif /* wxUSE_MS_HTML_HELP */ 
1797 #if wxUSE_WXHTML_HELP 
1798 #   if !wxUSE_HELP || !wxUSE_HTML || !wxUSE_COMBOBOX || !wxUSE_NOTEBOOK || !wxUSE_SPINCTRL 
1799 #       ifdef wxABORT_ON_CONFIG_ERROR 
1800 #           error "Built in help controller can't be compiled" 
1803 #           define wxUSE_HELP 1 
1805 #           define wxUSE_HTML 1 
1806 #           undef wxUSE_COMBOBOX 
1807 #           define wxUSE_COMBOBOX 1 
1808 #           undef wxUSE_NOTEBOOK 
1809 #           define wxUSE_NOTEBOOK 1 
1810 #           undef wxUSE_SPINCTRL 
1811 #           define wxUSE_SPINCTRL 1 
1814 #endif /* wxUSE_WXHTML_HELP */ 
1818    The default wxUSE_IMAGE setting is 1, so if it's set to 0 we assume the 
1819    user explicitly wants this and disable all other features that require 
1822 #   if wxUSE_DRAGIMAGE 
1823 #        ifdef wxABORT_ON_CONFIG_ERROR 
1824 #            error "wxUSE_DRAGIMAGE requires wxUSE_IMAGE" 
1826 #            undef wxUSE_DRAGIMAGE 
1827 #            define wxUSE_DRAGIMAGE 0 
1832 #        ifdef wxABORT_ON_CONFIG_ERROR 
1833 #            error "wxUSE_LIBPNG requires wxUSE_IMAGE" 
1835 #            undef wxUSE_LIBPNG 
1836 #            define wxUSE_LIBPNG 0 
1841 #        ifdef wxABORT_ON_CONFIG_ERROR 
1842 #            error "wxUSE_LIBJPEG requires wxUSE_IMAGE" 
1844 #            undef wxUSE_LIBJPEG 
1845 #            define wxUSE_LIBJPEG 0 
1850 #        ifdef wxABORT_ON_CONFIG_ERROR 
1851 #            error "wxUSE_LIBTIFF requires wxUSE_IMAGE" 
1853 #            undef wxUSE_LIBTIFF 
1854 #            define wxUSE_LIBTIFF 0 
1859 #        ifdef wxABORT_ON_CONFIG_ERROR 
1860 #            error "wxUSE_GIF requires wxUSE_IMAGE" 
1863 #            define wxUSE_GIF 0 
1868 #        ifdef wxABORT_ON_CONFIG_ERROR 
1869 #            error "wxUSE_PNM requires wxUSE_IMAGE" 
1872 #            define wxUSE_PNM 0 
1877 #        ifdef wxABORT_ON_CONFIG_ERROR 
1878 #            error "wxUSE_PCX requires wxUSE_IMAGE" 
1881 #            define wxUSE_PCX 0 
1886 #        ifdef wxABORT_ON_CONFIG_ERROR 
1887 #            error "wxUSE_IFF requires wxUSE_IMAGE" 
1890 #            define wxUSE_IFF 0 
1895 #        ifdef wxABORT_ON_CONFIG_ERROR 
1896 #            error "wxUSE_TOOLBAR requires wxUSE_IMAGE" 
1898 #            undef wxUSE_TOOLBAR 
1899 #            define wxUSE_TOOLBAR 0 
1904 #        ifdef wxABORT_ON_CONFIG_ERROR 
1905 #            error "wxUSE_XPM requires wxUSE_IMAGE" 
1908 #            define wxUSE_XPM 0 
1912 #endif /* !wxUSE_IMAGE */ 
1914 #if wxUSE_DOC_VIEW_ARCHITECTURE 
1916 #        ifdef wxABORT_ON_CONFIG_ERROR 
1917 #            error "DocView requires wxUSE_MENUS" 
1920 #            define wxUSE_MENUS 1 
1924 #   if !wxUSE_CHOICEDLG 
1925 #        ifdef wxABORT_ON_CONFIG_ERROR 
1926 #            error "DocView requires wxUSE_CHOICEDLG" 
1928 #            undef wxUSE_CHOICEDLG 
1929 #            define wxUSE_CHOICEDLG 1 
1933 #   if !wxUSE_STREAMS && !wxUSE_STD_IOSTREAM 
1934 #        ifdef wxABORT_ON_CONFIG_ERROR 
1935 #            error "DocView requires wxUSE_STREAMS or wxUSE_STD_IOSTREAM" 
1937 #            undef wxUSE_STREAMS 
1938 #            define wxUSE_STREAMS 1 
1942 #   if !wxUSE_FILE_HISTORY 
1943 #        ifdef wxABORT_ON_CONFIG_ERROR 
1944 #            error "DocView requires wxUSE_FILE_HISTORY" 
1946 #            undef wxUSE_FILE_HISTORY 
1947 #            define wxUSE_FILE_HISTORY 1 
1950 #endif /* wxUSE_DOC_VIEW_ARCHITECTURE */ 
1952 #if wxUSE_PRINTING_ARCHITECTURE 
1953 #   if !wxUSE_COMBOBOX 
1954 #       ifdef wxABORT_ON_CONFIG_ERROR 
1955 #           error "Print dialog requires wxUSE_COMBOBOX" 
1957 #           undef wxUSE_COMBOBOX 
1958 #           define wxUSE_COMBOBOX 1 
1961 #endif /* wxUSE_PRINTING_ARCHITECTURE */ 
1963 #if wxUSE_MDI_ARCHITECTURE 
1965 #        ifdef wxABORT_ON_CONFIG_ERROR 
1966 #            error "MDI requires wxUSE_MDI" 
1969 #            define wxUSE_MDI 1 
1973 #   if !wxUSE_DOC_VIEW_ARCHITECTURE 
1974 #        ifdef wxABORT_ON_CONFIG_ERROR 
1975 #            error "wxUSE_MDI_ARCHITECTURE requires wxUSE_DOC_VIEW_ARCHITECTURE" 
1977 #            undef wxUSE_DOC_VIEW_ARCHITECTURE 
1978 #            define wxUSE_DOC_VIEW_ARCHITECTURE 1 
1981 #endif /* wxUSE_MDI_ARCHITECTURE */ 
1984 #   if wxUSE_DOC_VIEW_ARCHITECTURE || wxUSE_WXHTML_HELP 
1985 #       ifdef wxABORT_ON_CONFIG_ERROR 
1986 #           error "wxUSE_FILEDLG is required by wxUSE_DOC_VIEW_ARCHITECTURE and wxUSE_WXHTML_HELP!" 
1988 #           undef wxUSE_FILEDLG 
1989 #           define wxUSE_FILEDLG 1 
1992 #endif /* wxUSE_FILEDLG */ 
1994 #if !wxUSE_GAUGE || !wxUSE_BUTTON 
1995 #   if wxUSE_PROGRESSDLG 
1996 #       ifdef wxABORT_ON_CONFIG_ERROR 
1997 #           error "Generic progress dialog requires wxUSE_GAUGE and wxUSE_BUTTON" 
2000 #           undef wxUSE_BUTTON 
2001 #           define wxUSE_GAUGE 1 
2002 #           define wxUSE_BUTTON 1 
2005 #endif /* !wxUSE_GAUGE */ 
2008 #   if wxUSE_FONTDLG || \ 
2010        wxUSE_CHOICEDLG || \ 
2011        wxUSE_NUMBERDLG || \ 
2014        wxUSE_STARTUP_TIPS || \ 
2016 #       ifdef wxABORT_ON_CONFIG_ERROR 
2017 #           error "Common and generic dialogs require wxUSE_BUTTON" 
2019 #           undef wxUSE_BUTTON 
2020 #           define wxUSE_BUTTON 1 
2023 #endif /* !wxUSE_BUTTON */ 
2026 #   if wxUSE_TOOLBAR_NATIVE 
2027 #        ifdef wxABORT_ON_CONFIG_ERROR 
2028 #            error "wxUSE_TOOLBAR is set to 0 but wxUSE_TOOLBAR_NATIVE is set to 1" 
2030 #            undef wxUSE_TOOLBAR_NATIVE 
2031 #            define wxUSE_TOOLBAR_NATIVE 0 
2037 #   if wxUSE_TREECTRL || wxUSE_NOTEBOOK || wxUSE_LISTCTRL || wxUSE_TREELISTCTRL 
2038 #       ifdef wxABORT_ON_CONFIG_ERROR 
2039 #           error "wxImageList must be compiled as well" 
2041 #           undef wxUSE_IMAGLIST 
2042 #           define wxUSE_IMAGLIST 1 
2045 #endif /* !wxUSE_IMAGLIST */ 
2048 #   if !wxUSE_RADIOBTN 
2049 #        ifdef wxABORT_ON_CONFIG_ERROR 
2050 #            error "wxUSE_RADIOBOX requires wxUSE_RADIOBTN" 
2052 #            undef wxUSE_RADIOBTN 
2053 #            define wxUSE_RADIOBTN 1 
2057 #        ifdef wxABORT_ON_CONFIG_ERROR 
2058 #            error "wxUSE_RADIOBOX requires wxUSE_STATBOX" 
2060 #            undef wxUSE_STATBOX 
2061 #            define wxUSE_STATBOX 1 
2064 #endif /* wxUSE_RADIOBOX */ 
2067 #    if !wxUSE_TEXTCTRL 
2068 #        ifdef wxABORT_ON_CONFIG_ERROR 
2069 #            error "wxUSE_LOGWINDOW requires wxUSE_TEXTCTRL" 
2071 #            undef wxUSE_TEXTCTRL 
2072 #            define wxUSE_TEXTCTRL 1 
2075 #endif /* wxUSE_LOGWINDOW */ 
2077 #if wxUSE_LOG_DIALOG 
2078 #    if !wxUSE_LISTCTRL || !wxUSE_BUTTON 
2079 #        ifdef wxABORT_ON_CONFIG_ERROR 
2080 #            error "wxUSE_LOG_DIALOG requires wxUSE_LISTCTRL and wxUSE_BUTTON" 
2082 #            undef wxUSE_LISTCTRL 
2083 #            define wxUSE_LISTCTRL 1 
2084 #            undef wxUSE_BUTTON 
2085 #            define wxUSE_BUTTON 1 
2088 #endif /* wxUSE_LOG_DIALOG */ 
2090 #if wxUSE_CLIPBOARD && !wxUSE_DATAOBJ 
2091 #   ifdef wxABORT_ON_CONFIG_ERROR 
2092 #       error "wxClipboard requires wxDataObject" 
2094 #       undef wxUSE_DATAOBJ 
2095 #       define wxUSE_DATAOBJ 1 
2097 #endif /* wxUSE_CLIPBOARD */ 
2099 #if wxUSE_XRC && !wxUSE_XML 
2100 #   ifdef wxABORT_ON_CONFIG_ERROR 
2101 #       error "wxUSE_XRC requires wxUSE_XML" 
2104 #       define wxUSE_XRC 0 
2106 #endif /* wxUSE_XRC */ 
2108 #if wxUSE_SOCKETS && !wxUSE_STOPWATCH 
2109 #   ifdef wxABORT_ON_CONFIG_ERROR 
2110 #       error "wxUSE_SOCKETS requires wxUSE_STOPWATCH" 
2112 #       undef wxUSE_SOCKETS 
2113 #       define wxUSE_SOCKETS 0 
2115 #endif /* wxUSE_SOCKETS */ 
2117 #if wxUSE_SVG && !wxUSE_STREAMS 
2118 #   ifdef wxABORT_ON_CONFIG_ERROR 
2119 #       error "wxUSE_SVG requires wxUSE_STREAMS" 
2122 #       define wxUSE_SVG 0 
2124 #endif /* wxUSE_SVG */ 
2126 #if wxUSE_SVG && !wxUSE_IMAGE 
2127 #   ifdef wxABORT_ON_CONFIG_ERROR 
2128 #       error "wxUSE_SVG requires wxUSE_IMAGE" 
2131 #       define wxUSE_SVG 0 
2133 #endif /* wxUSE_SVG */ 
2135 #if wxUSE_SVG && !wxUSE_LIBPNG 
2136 #   ifdef wxABORT_ON_CONFIG_ERROR 
2137 #       error "wxUSE_SVG requires wxUSE_LIBPNG" 
2140 #       define wxUSE_SVG 0 
2142 #endif /* wxUSE_SVG */ 
2144 #if wxUSE_TASKBARICON && !wxUSE_MENUS 
2145 #   ifdef wxABORT_ON_CONFIG_ERROR 
2146 #       error "wxUSE_TASKBARICON requires wxUSE_MENUS" 
2148 #       undef wxUSE_TASKBARICON 
2149 #       define wxUSE_TASKBARICON 0 
2151 #endif /* wxUSE_TASKBARICON */ 
2154 #   if wxUSE_DATAVIEWCTRL 
2155 #       ifdef wxABORT_ON_CONFIG_ERROR 
2156 #           error "wxDataViewCtrl requires wxVariant" 
2158 #           undef wxUSE_DATAVIEWCTRL 
2159 #           define wxUSE_DATAVIEWCTRL 0 
2162 #endif /* wxUSE_VARIANT */ 
2164 #if wxUSE_TREELISTCTRL && !wxUSE_DATAVIEWCTRL 
2165 #   ifdef wxABORT_ON_CONFIG_ERROR 
2166 #       error "wxUSE_TREELISTCTRL requires wxDataViewCtrl" 
2168 #       undef wxUSE_TREELISTCTRL 
2169 #       define wxUSE_TREELISTCTRL 0 
2171 #endif /* wxUSE_TREELISTCTRL */ 
2173 #if wxUSE_WEBVIEW && !(wxUSE_WEBVIEW_WEBKIT || wxUSE_WEBVIEW_IE) 
2174 #   ifdef wxABORT_ON_CONFIG_ERROR 
2175 #       error "wxUSE_WEBVIEW requires at least one backend" 
2177 #       undef wxUSE_WEBVIEW 
2178 #       define wxUSE_WEBVIEW 0 
2180 #endif /* wxUSE_WEBVIEW && !any web view backend */ 
2182 #endif /* wxUSE_GUI */ 
2184 #endif /* _WX_CHKCONF_H_ */