]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/setup0.h
Added def files for making OpenGL DLLs (Mingw32); added comment to wxHTML format
[wxWidgets.git] / include / wx / msw / setup0.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/setup.h
3 // Purpose: Configuration for the library
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_SETUP_H_
13 #define _WX_SETUP_H_
14
15 // ----------------------------------------------------------------------------
16 // global settings
17 // ----------------------------------------------------------------------------
18
19 // define this to 0 when building wxBase library
20 #define wxUSE_GUI 1
21
22 // ----------------------------------------------------------------------------
23 // compatibility settings
24 // ----------------------------------------------------------------------------
25
26 // This setting determines the compatibility with 1.68 API:
27 // Level 0: no backward compatibility, all new features
28 // Level 1: some extra methods are defined for compatibility.
29 //
30 // Default is 0.
31 //
32 // Recommended setting: 0 (in fact the compatibility code is now very minimal
33 // so there is little advantage to setting it to 1.
34 #define WXWIN_COMPATIBILITY 0
35
36 // in wxMSW version 2.1.11 and earlier, wxIcon always derives from wxBitmap,
37 // but this is very dangerous because you can mistakenly pass an icon instead
38 // of a bitmap to a function taking "const wxBitmap&" - which will *not* work
39 // because an icon is not a valid bitmap
40 //
41 // Starting from 2.1.12, you have the choice under this backwards compatible
42 // behaviour (your code will still compile, but probably won't behave as
43 // expected!) and not deriving wxIcon class from wxBitmap, but providing a
44 // conversion ctor wxBitmap(const wxIcon&) instead.
45 //
46 // Recommended setting: 0
47 #define wxICON_IS_BITMAP 0
48
49 // ----------------------------------------------------------------------------
50 // non GUI features selection
51 // ----------------------------------------------------------------------------
52
53 // Set wxUSE_LONGLONG to 1 to compile the wxLongLong class. This is a 64 bit
54 // integer which is implemented in terms of native 64 bit integers if any or
55 // uses emulation otherwise.
56 //
57 // This class is required by wxDateTime and so you should enable it if you want
58 // to use wxDateTime. For most modern platforms, it will use the native 64 bit
59 // integers in which case (almost) all of its functions are inline and it
60 // almost does not take any space, so there should be no reason to switch it
61 // off.
62 //
63 // Recommended setting: 1
64 #define wxUSE_LONGLONG 1
65
66 // Set wxUSE_TIMEDATE to 1 to compile the wxDateTime and related classes which
67 // allow to manipulate dates, times and time intervals. wxDateTime replaces the
68 // old wxTime and wxDate classes which are still provided for backwards
69 // compatibility (and implemented in terms of wxDateTime).
70 //
71 // Note that this class is relatively new and is still officially in alpha
72 // stage because some features are not yet (fully) implemented. It is already
73 // quite useful though and should only be disabled if you are aiming at
74 // absolutely minimal version of the library.
75 //
76 // Requires: wxUSE_LONGLONG
77 //
78 // Recommended setting: 1
79 #define wxUSE_TIMEDATE 1
80
81 // Setting wxUSE_CONFIG to 1 enables the use of wxConfig and related classes
82 // which allow the application to store its settings in the persistent
83 // storage. Setting this to 1 will also enable on-demand creation of the
84 // global config object in wxApp.
85 //
86 // See also wxUSE_CONFIG_NATIVE below.
87 //
88 // Recommended setting: 1
89 #define wxUSE_CONFIG 1
90
91 // If wxUSE_CONFIG is 1, you may choose to use either the native config
92 // classes under Windows (using .INI files under Win16 and the registry under
93 // Win32) or the portable text file format used by the config classes under
94 // Unix.
95 //
96 // Default is 1 to use native classes. Note that you may still use
97 // wxFileConfig even if you set this to 1 - just the config object created by
98 // default for the applications needs will be a wxRegConfig or wxIniConfig and
99 // not wxFileConfig.
100 //
101 // Recommended setting: 1
102 #define wxUSE_CONFIG_NATIVE 1
103
104 // If wxUSE_DIALUP_MANAGER is 1, compile in wxDialUpManager class which allows
105 // to connect/disconnect from the network and be notified whenever the dial-up
106 // network connection is established/terminated.
107 //
108 // Default is 1.
109 //
110 // Recommended setting: 1
111 #define wxUSE_DIALUP_MANAGER 1
112
113 // ----------------------------------------------------------------------------
114 // Optional controls
115 // ----------------------------------------------------------------------------
116
117 // wxToolBar related settings: if wxUSE_TOOLBAR is 0, don't compile any toolbar
118 // classes at all. Otherwise, use the native toolbar class unless
119 // wxUSE_TOOLBAR_NATIVE is 0. Additionally, the generic toolbar class which
120 // supports some features which might not be supported by the native wxToolBar
121 // class may be compiled in if wxUSE_TOOLBAR_SIMPLE is 1.
122 //
123 // Default is 1 for all settings.
124 //
125 // Recommended setting: 1 for wxUSE_TOOLBAR and wxUSE_TOOLBAR_NATIVE and 0 for
126 // wxUSE_TOOLBAR_SIMPLE (the default is 1 mainly for backwards compatibility).
127 #define wxUSE_TOOLBAR 1
128 #define wxUSE_TOOLBAR_NATIVE 1
129 #define wxUSE_TOOLBAR_SIMPLE 1
130
131 // wxNotebook is a control with several "tabs" located on one of its sides. It
132 // may be used ot logically organise the data presented to the user instead of
133 // putting everything in one huge dialog. It replaces wxTabControl and related
134 // classes of wxWin 1.6x.
135 //
136 // Default is 1.
137 //
138 // Recommended setting: 1
139 #define wxUSE_NOTEBOOK 1
140
141 // The corresponding controls will be compiled in if wxUSE_<CONTROL> is set to
142 // 1 and not compiled into the library otherwise.
143 //
144 // Default is 1 for everything.
145 //
146 // Recommended setting: 1 (library might fail to compile for some combinations
147 // of disabled controls)
148 #define wxUSE_CARET 1
149 #define wxUSE_CHECKBOX 1
150 #define wxUSE_CHECKLISTBOX 1
151 #define wxUSE_CHOICE 1
152 #define wxUSE_COMBOBOX 1
153 #define wxUSE_GAUGE 1
154 #define wxUSE_LISTBOX 1
155 #define wxUSE_RADIOBOX 1
156 #define wxUSE_RADIOBTN 1
157 #define wxUSE_SCROLLBAR 1
158 #define wxUSE_SLIDER 1
159 #define wxUSE_SPINBTN 1
160 #define wxUSE_SPINCTRL 1
161 #define wxUSE_STATLINE 1
162
163 // this setting is obsolete, value is ignored
164 #define wxUSE_BUTTONBAR 1
165
166 // wxGrid class comes in two flavours: the original (pre wxWin 2.2) one and
167 // the new, much imporved and enhanced version. The new version is backwards
168 // compatible with the old one and should be used whenever possible, i.e. if
169 // you set wxUSE_GRID to 1, set wxUSE_NEW_GRID to 1 too.
170 //
171 // Default is 1 for both options.
172 //
173 // Recommended setting: 1 for wxUSE_NEW_GRID, 0 if you have an old code using
174 // wxGrid and 100% backwards compatible (with all old wxGrid quirks) is
175 // essential.
176 //
177 // WIN16/BC++ resets wxUSE_NEW_GRID to 0 because it exceeds the data limit.
178 #define wxUSE_GRID 1
179 #define wxUSE_NEW_GRID 1
180
181 // ----------------------------------------------------------------------------
182 // Metafiles support
183 // ----------------------------------------------------------------------------
184
185 // Windows supports the graphics format known as metafile which is, though not
186 // portable, is widely used under Windows and so is supported by wxWin (under
187 // Windows only, of course). Win16 (Win3.1) used the so-called "Window
188 // MetaFiles" or WMFs which were replaced with "Enhanced MetaFiles" or EMFs in
189 // Win32 (Win9x, NT, 2000). Both of these are supported in wxWin and, by
190 // default, WMFs will be used under Win16 and EMFs under Win32. This may be
191 // changed by setting wxUSE_WIN_METAFILES_ALWAYS to 1 and/or setting
192 // wxUSE_ENH_METAFILE to 0. You may also set wxUSE_METAFILE to 0 to not compile
193 // in any metafile related classes at all.
194 //
195 // Default is 1 for wxUSE_ENH_METAFILE and 0 for wxUSE_WIN_METAFILES_ALWAYS.
196 //
197 // Recommended setting: default or 0 for everything for portable programs.
198 #define wxUSE_METAFILE 1
199 #define wxUSE_ENH_METAFILE 1
200 #define wxUSE_WIN_METAFILES_ALWAYS 0
201
202 // ----------------------------------------------------------------------------
203 // Big GUI components
204 // ----------------------------------------------------------------------------
205
206 // wxHTML sublibrary allows to display HTML in wxWindow programs and much,
207 // much more.
208 //
209 // Default is 1.
210 //
211 // Recommended setting: 1 (wxHTML is great!), set to 0 if you want compile a
212 // smaller library.
213 #define wxUSE_HTML 1
214
215 // wxPlot is a class to display functions plots in wxWindow.
216 //
217 // Default is 1.
218 //
219 // Recommended setting: 1
220 #define wxUSE_PLOT 1
221
222 // OpenGL canvas
223 #define wxUSE_GLCANVAS 0
224
225 // wxTreeLayout class
226 #define wxUSE_TREELAYOUT 1
227
228 // ----------------------------------------------------------------------------
229 // Postscript support settings
230 // ----------------------------------------------------------------------------
231
232 #define wxUSE_POSTSCRIPT 0
233 // 0 for no PostScript device context
234 #define wxUSE_AFM_FOR_POSTSCRIPT 0
235 // 1 to use font metric files in GetTextExtent
236 #define wxUSE_IPC 1
237 // 0 for no interprocess comms
238 // Note: wxHELP uses IPC under X so these are interdependent!
239 #define wxUSE_HELP 1
240 // 0 for no help facility
241 #define wxUSE_RESOURCES 1
242 // 0 for no wxGetResource/wxWriteResource
243 #define wxUSE_CONSTRAINTS 1
244 // 0 for no window layout constraint system
245
246 #define wxUSE_CLIPBOARD 1
247 // 0 for no clipboard functions
248
249 #define wxUSE_SPLINES 1
250 // 0 for no splines
251
252 #define wxUSE_DRAG_AND_DROP 1
253 // 0 for no drag and drop
254
255 #define wxUSE_XPM_IN_MSW 1
256 // 0 for no XPM support in wxBitmap.
257 // Default is 1, as XPM is now fully
258 // supported this makes easier the issue
259 // of portable icons and bitmaps.
260 #define wxUSE_IMAGE_LOADING_IN_MSW 1
261 // Use dynamic DIB loading/saving code in utils/dib under MSW.
262 #define wxUSE_RESOURCE_LOADING_IN_MSW 1
263 // Use dynamic icon/cursor loading/saving code
264 // under MSW.
265 #define wxUSE_WX_RESOURCES 1
266 // Use .wxr resource mechanism (requires PrologIO library)
267
268 #define wxUSE_STARTUP_TIPS 1
269 // support for startup tips (wxShowTip &c)
270
271 #define wxUSE_DOC_VIEW_ARCHITECTURE 1
272 // Set to 0 to disable document/view architecture
273 #define wxUSE_MDI_ARCHITECTURE 1
274 // Set to 0 to disable MDI document/view architecture
275 #define wxUSE_PRINTING_ARCHITECTURE 1
276 // Set to 0 to disable print/preview architecture code
277 #define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 1
278 // Set to 0 to disable PostScript print/preview architecture code
279 // under Windows (just use Windows printing).
280 #define wxUSE_DYNAMIC_CLASSES 1
281 // If 1, enables provision of run-time type information.
282 // NOW MANDATORY: don't change.
283 #define wxUSE_DEBUG_CONTEXT 1
284 // If 1, enables wxDebugContext, for
285 // writing error messages to file, etc.
286 // If __WXDEBUG__ is not defined, will
287 // still use normal memory operators.
288 // It's recommended to set this to 1,
289 // since you may well need to output
290 // an error log in a production
291 // version (or non-debugging beta)
292 #define wxUSE_MEMORY_TRACING 1
293 // If 1, enables debugging versions of wxObject::new and
294 // wxObject::delete *IF* __WXDEBUG__ is also defined.
295 // WARNING: this code may not work with all architectures,
296 // especially if alignment is an issue.
297 // This switch is currently ignored for
298 // mingw / cygwin
299 #define wxUSE_GLOBAL_MEMORY_OPERATORS 1
300 // In debug mode, cause new and delete to be redefined globally.
301 // If this causes problems (e.g. link errors), set this to 0.
302 // This switch is currently ignored for
303 // mingw / cygwin
304 #define wxUSE_DEBUG_NEW_ALWAYS 1
305 // In debug mode, causes new to be defined to
306 // be WXDEBUG_NEW (see object.h).
307 // If this causes problems (e.g. link errors), set this to 0.
308 // You may need to set this to 0 if using templates (at least
309 // for VC++).
310 // This switch is currently ignored for
311 // mingw / cygwin
312 #define REMOVE_UNUSED_ARG 1
313 // Set this to 0 if your compiler can't cope
314 // with omission of prototype parameters.
315
316 #define wxUSE_ODBC 0
317 // Define 1 to use ODBC classes
318
319 #define wxODBC_FWD_ONLY_CURSORS 1
320 // For backward compatibility reasons, this parameter now only
321 // controls the default scrolling method used by cursors. This
322 // default behavior can be overriden by setting the second param
323 // of wxDB::GetDbConnection() to indicate whether the connection
324 // (and any wxTable()s that use the connection) should support
325 // forward only scrolling of cursors, or both forward and backward
326 // Support for backward scrolling cursors is dependent on the
327 // data source as well as the ODBC driver being used.
328
329 #ifndef __MWERKS__
330 #define wxUSE_IOSTREAMH 1
331 #else
332 #define wxUSE_IOSTREAMH 1
333 #endif
334 // VC++ 4.2 and above allows <iostream> and <iostream.h>
335 // but you can't mix them. Set to 1 for <iostream.h>,
336 // 0 for <iostream>
337 #define wxUSE_STREAMS 1
338 // If enabled (1), compiles wxWindows streams classes
339
340 #define wxUSE_STD_IOSTREAM 0
341 // Use standard C++ streams if 1. If 0, use wxWin
342 // streams implementation.
343 #define wxUSE_THREADS 1
344 // support for multithreaded applications: if
345 // 1, compile in thread classes (thread.h)
346 // and make the library thread safe
347 #define wxUSE_ZLIB 1
348 // Use zlib for compression in streams and PNG code
349 #define wxUSE_LIBPNG 1
350 // Use PNG bitmap/image code
351 #define wxUSE_LIBJPEG 1
352 // Use JPEG bitmap/image code
353 #define wxUSE_LIBTIFF 1
354 // Use TIFF bitmap/image code
355 #define wxUSE_GIF 1
356 // Use GIF bitmap/image code
357 #define wxUSE_PNM 1
358 // Use PNM bitmap/image code
359 #define wxUSE_PCX 1
360 // Use PCX bitmap/image code
361 #define wxUSE_SERIAL 0
362 // Use serialization (requires utils/serialize)
363 #define wxUSE_DYNLIB_CLASS 1
364 // Compile in wxLibrary class for run-time
365 // DLL loading and function calling
366 #define wxUSE_TOOLTIPS 1
367 // Define to use wxToolTip class and
368 // wxWindow::SetToolTip() method
369 #define wxUSE_SOCKETS 1
370 // Set to 1 to use socket classes
371 #define wxUSE_FILESYSTEM 1
372 // Set to 1 to enable virtual file systems
373 // (needed by wxHTML)
374 #define wxUSE_FS_ZIP 1
375 #define wxUSE_FS_INET 1
376 // Set to 1 to enable virtual file systems
377
378 #define wxUSE_BUSYINFO 1
379 // wxBusyInfo displays window with message
380 // when app is busy. Works in same way as
381 // wxBusyCursor
382 #define wxUSE_ZIPSTREAM 1
383 // input stream for reading from zip archives
384
385 /*
386 * Finer detail
387 *
388 */
389
390 #define wxUSE_APPLE_IEEE 1
391 // if enabled, the float codec written by Apple
392 // will be used to write, in a portable way,
393 // float on the disk
394
395 // use wxFile class - required by i18n code, wxConfig and others - recommended
396 #define wxUSE_FILE 1
397
398 // use wxTextFile class: requires wxFile, required by wxConfig
399 #define wxUSE_TEXTFILE 1
400
401 // i18n support: _() macro, wxLocale class. Requires wxFile
402 #define wxUSE_INTL 1
403
404 // wxLogXXX functions - highly recommended
405 #define wxUSE_LOG 1
406
407 // wxValidator class
408 #define wxUSE_VALIDATORS 1
409
410 // wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar)
411 #define wxUSE_ACCEL 1
412
413 // wxSashWindow class
414 #define wxUSE_SASH 1
415
416 // text entry dialog and wxGetTextFromUser function
417 #define wxUSE_TEXTDLG 1
418
419 // wxStatusBar class
420 #define wxUSE_STATUSBAR 1
421
422 // progress dialog class for lengthy operations
423 #define wxUSE_PROGRESSDLG 1
424
425 // wxDirDlg class for getting a directory name from user
426 #define wxUSE_DIRDLG 1
427
428 /*
429 * MS Windows/Windows NT
430 *
431 */
432
433 // Make settings compatible with MFC
434 #define wxUSE_MFC 0
435
436 #define wxUSE_OLE 1
437 // drag-and-drop, clipboard, OLE Automation
438
439 #if defined(__WIN95__)
440 #define wxUSE_CTL3D 0
441 #else
442 #define wxUSE_CTL3D 1
443 // Define 1 to use Microsoft CTL3D library.
444 // See note above about using FAFA and CTL3D.
445 #endif
446
447 // can we use RICHEDIT control?
448 #if defined(__WIN95__) && !defined(__TWIN32__) && !defined(__GNUWIN32_OLD__)
449 #define wxUSE_RICHEDIT 1
450 #else
451 #define wxUSE_RICHEDIT 0
452 #endif
453
454 #define wxUSE_COMMON_DIALOGS 1
455 // On rare occasions (e.g. using DJGPP) may want
456 // to omit common dialogs
457 // (e.g. file selector, printer dialog).
458 // Switching this off also switches off
459 // the printing architecture and interactive
460 // wxPrinterDC.
461 #define wxUSE_ITSY_BITSY 1
462 // Define 1 to use Microsoft's ItsyBitsy
463 // small title bar library, for wxMiniFrame.
464 // This setting is only used for Win3.1;
465 // Win9x and NT use native miniframes
466 // support instead.
467 #define wxUSE_BITMAP_MESSAGE 1
468 // Define 1 to use bitmap messages.
469 #define wxUSE_PORTABLE_FONTS_IN_MSW 0
470 // Define 1 to use new portable font scheme in Windows
471 // (used by default under X)
472 #define wxFONT_SIZE_COMPATIBILITY 0
473 // Define 1 for font size to be backward compatible
474 // to 1.63 and earlier. 1.64 and later define point
475 // sizes to be compatible with Windows.
476 #define wxUSE_GENERIC_DIALOGS_IN_MSW 0
477 // Define 1 to use generic dialogs in Windows, even though
478 // they duplicate native common dialog (e.g. wxColourDialog)
479 #define wxUSE_PENWINDOWS 0
480 // Set to 1 to use PenWindows
481
482 #define wxUSE_OWNER_DRAWN 1
483 // Owner-drawn menus and listboxes
484
485 #define wxUSE_NATIVE_STATUSBAR 1
486 // Set to 0 to use cross-platform wxStatusBar
487
488 /*
489 * Any platform
490 *
491 */
492
493 #define wxUSE_TYPEDEFS 0
494 // Use typedefs not classes for wxPoint
495 // and others, to reduce overhead and avoid
496 // MS C7 memory bug. Bounds checker
497 // complains about deallocating
498 // arrays of wxPoints if wxPoint is a class.
499
500 #if defined(__MINGW32__) && ((__GNUC__>2) ||((__GNUC__==2) && (__GNUC_MINOR__>=95)))
501 #ifndef wxUSE_NORLANDER_HEADERS
502 # define wxUSE_NORLANDER_HEADERS 1
503 #endif
504 #endif
505
506 // These don't work as expected for mingw32 and cygwin32
507 #if defined(__GNUWIN32__)
508 #undef wxUSE_MEMORY_TRACING
509 #define wxUSE_MEMORY_TRACING 0
510
511 #undef wxUSE_GLOBAL_MEMORY_OPERATORS
512 #define wxUSE_GLOBAL_MEMORY_OPERATORS 0
513
514 #undef wxUSE_DEBUG_NEW_ALWAYS
515 #define wxUSE_DEBUG_NEW_ALWAYS 0
516 #endif
517
518 // MFC duplicates these operators
519 #if wxUSE_MFC
520 #undef wxUSE_GLOBAL_MEMORY_OPERATORS
521 #define wxUSE_GLOBAL_MEMORY_OPERATORS 0
522
523 #undef wxUSE_DEBUG_NEW_ALWAYS
524 #define wxUSE_DEBUG_NEW_ALWAYS 0
525
526 #ifndef _MBCS
527 // #define _MBCS
528 #endif
529 #endif
530
531 #if (!defined(WIN32) && !defined(__WIN32__)) || (defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS)
532 // Can't use OLE drag and drop in Windows 3.1 because we don't know how
533 // to implement UUIDs
534 // GnuWin32 doesn't have appropriate headers for e.g. IUnknown.
535 #undef wxUSE_DRAG_AND_DROP
536 #define wxUSE_DRAG_AND_DROP 0
537 #endif
538
539 // Only WIN32 supports wxStatusBar95
540 #if !defined(__WIN32__) && wxUSE_NATIVE_STATUSBAR
541 #undef wxUSE_NATIVE_STATUSBAR
542 #define wxUSE_NATIVE_STATUSBAR 0
543 #endif
544
545 // Salford C++ doesn't like some of the memory operator definitions
546 #ifdef __SALFORDC__
547 #undef wxUSE_MEMORY_TRACING
548 #define wxUSE_MEMORY_TRACING 0
549
550 #undef wxUSE_GLOBAL_MEMORY_OPERATORS
551 #define wxUSE_GLOBAL_MEMORY_OPERATORS 0
552
553 #undef wxUSE_DEBUG_NEW_ALWAYS
554 #define wxUSE_DEBUG_NEW_ALWAYS 0
555
556 #undef wxUSE_THREADS
557 #define wxUSE_THREADS 0
558
559 #undef wxUSE_OWNER_DRAWN
560 #define wxUSE_OWNER_DRAWN 0
561 #endif
562
563 #ifdef __TWIN32__
564
565 #undef wxUSE_THREADS
566 #define wxUSE_THREADS 0
567
568 #undef wxUSE_ODBC
569 #define wxUSE_ODBC 0
570
571 #endif
572
573 // BC++/Win16 can't cope with the amount of data in resource.cpp
574 #if defined(__WIN16__) && defined(__BORLANDC__)
575 #undef wxUSE_WX_RESOURCES
576 #define wxUSE_WX_RESOURCES 0
577
578 #undef wxUSE_ODBC
579 #define wxUSE_ODBC 0
580
581 #undef wxUSE_NEW_GRID
582 #define wxUSE_NEW_GRID 0
583 #endif
584
585 #if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
586 // BC++ 4.0 can't compile JPEG library
587 #undef wxUSE_LIBJPEG
588 #define wxUSE_LIBJPEG 0
589 #endif
590
591 #if defined(__WXMSW__) && defined(__WATCOMC__)
592 #undef wxUSE_LIBJPEG
593 #define wxUSE_LIBJPEG 0
594
595 #undef wxUSE_LIBTIFF
596 #define wxUSE_LIBTIFF 0
597
598 #undef wxUSE_GLCANVAS
599 #define wxUSE_GLCANVAS 0
600 #endif
601
602 #if defined(__WXMSW__) && !defined(__WIN32__)
603
604 #undef wxUSE_SOCKETS
605 #define wxUSE_SOCKETS 0
606
607 #undef wxUSE_THREADS
608 #define wxUSE_THREADS 0
609
610 #undef wxUSE_TOOLTIPS
611 #define wxUSE_TOOLTIPS 0
612
613 #undef wxUSE_SPINCTRL
614 #define wxUSE_SPINCTRL 0
615
616 #undef wxUSE_SPINBTN
617 #define wxUSE_SPINBTN 0
618
619 #undef wxUSE_LIBPNG
620 #define wxUSE_LIBPNG 0
621
622 #undef wxUSE_LIBJPEG
623 #define wxUSE_LIBJPEG 0
624
625 #undef wxUSE_LIBTIFF
626 #define wxUSE_LIBTIFF 0
627
628 #undef wxUSE_GIF
629 #define wxUSE_GIF 0
630
631 #undef wxUSE_PNM
632 #define wxUSE_PNM 0
633
634 #undef wxUSE_PCX
635 #define wxUSE_PCX 0
636
637 #undef wxUSE_GLCANVAS
638 #define wxUSE_GLCANVAS 0
639
640 #endif
641
642 #endif
643 // _WX_SETUP_H_