]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/setup0.h
Fixed so this file will compile if wxUSE_IPC is 0 (previous fix broke something else).
[wxWidgets.git] / include / wx / msw / setup0.h
CommitLineData
9bd6a503 1/////////////////////////////////////////////////////////////////////////////
b3402d0d 2// Name: wx/msw/setup.h
9bd6a503
VZ
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
73974df1
VZ
15// ----------------------------------------------------------------------------
16// global settings
17// ----------------------------------------------------------------------------
9bd6a503 18
73974df1
VZ
19// define this to 0 when building wxBase library
20#define wxUSE_GUI 1
1f112209 21
6d167489
VZ
22// ----------------------------------------------------------------------------
23// compatibility settings
24// ----------------------------------------------------------------------------
25
b3402d0d
VZ
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.
9bd6a503 34#define WXWIN_COMPATIBILITY 0
9bd6a503 35
6d167489
VZ
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
73974df1 49// ----------------------------------------------------------------------------
40973ea5 50// non GUI features selection
73974df1
VZ
51// ----------------------------------------------------------------------------
52
40973ea5
VZ
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
16193c2b
VZ
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
73974df1 89#define wxUSE_CONFIG 1
16193c2b
VZ
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
bf84b0be
VZ
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
106f0395 111#define wxUSE_DIALUP_MANAGER 1
bf84b0be
VZ
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
b3402d0d
VZ
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_COMBOBOX 1
149#define wxUSE_CHOICE 1
150#define wxUSE_RADIOBTN 1
151#define wxUSE_RADIOBOX 1
152#define wxUSE_SCROLLBAR 1
153#define wxUSE_CHECKBOX 1
154#define wxUSE_LISTBOX 1
155#define wxUSE_SPINBTN 1
156#define wxUSE_SPINCTRL 1
157#define wxUSE_STATLINE 1
158#define wxUSE_CHECKLISTBOX 1
159#define wxUSE_CHOICE 1
160#define wxUSE_CARET 1
161#define wxUSE_SLIDER 1
162
d9317fd4
VZ
163// ----------------------------------------------------------------------------
164// Metafiles support
165// ----------------------------------------------------------------------------
166
167// Windows supports the graphics format known as metafile which is, though not
168// portable, is widely used under Windows and so is supported by wxWin (under
169// Windows only, of course). Win16 (Win3.1) used the so-called "Window
170// MetaFiles" or WMFs which were replaced with "Enhanced MetaFiles" or EMFs in
171// Win32 (Win9x, NT, 2000). Both of these are supported in wxWin and, by
172// default, WMFs will be used under Win16 and EMFs under Win32. This may be
173// changed by setting wxUSE_WIN_METAFILES_ALWAYS to 1 and/or setting
174// wxUSE_ENH_METAFILE to 0. You may also set wxUSE_METAFILE to 0 to not compile
175// in any metafile related classes at all.
176//
177// Default is 1 for wxUSE_ENH_METAFILE and 0 for wxUSE_WIN_METAFILES_ALWAYS.
178//
179// Recommended setting: default or 0 for everything for portable programs.
180#define wxUSE_METAFILE 1
181#define wxUSE_ENH_METAFILE 1
182#define wxUSE_WIN_METAFILES_ALWAYS 0
183
bf84b0be
VZ
184// ----------------------------------------------------------------------------
185// Postscript support settings
186// ----------------------------------------------------------------------------
187
9bd6a503 188#define wxUSE_POSTSCRIPT 0
83b1bfaa 189 // 0 for no PostScript device context
9bd6a503
VZ
190#define wxUSE_AFM_FOR_POSTSCRIPT 0
191 // 1 to use font metric files in GetTextExtent
9bd6a503
VZ
192#define wxUSE_IPC 1
193 // 0 for no interprocess comms
194// Note: wxHELP uses IPC under X so these are interdependent!
195#define wxUSE_HELP 1
196 // 0 for no help facility
197#define wxUSE_RESOURCES 1
198 // 0 for no wxGetResource/wxWriteResource
199#define wxUSE_CONSTRAINTS 1
200 // 0 for no window layout constraint system
201
9bd6a503
VZ
202#define wxUSE_CLIPBOARD 1
203 // 0 for no clipboard functions
1f112209 204
9bd6a503 205#define wxUSE_SPLINES 1
83b1bfaa 206 // 0 for no splines
9bd6a503
VZ
207
208#define wxUSE_DRAG_AND_DROP 1
209 // 0 for no drag and drop
210
83b1bfaa
GRG
211#define wxUSE_BUTTONBAR 1
212 // Define 1 to use buttonbar classes (enhanced toolbar
213 // for MS Windows)
214#define wxUSE_GAUGE 1
215 // Define 1 to use Microsoft's gauge (Windows)
216 // or Bull's gauge (Motif) library (both in contrib).
f85afd4e
MB
217#define wxUSE_NEW_GRID 1
218 // Define 1 to use the new wxGrid class
219 // (still under development, define 0 to
220 // use existing wxGrid class)
83b1bfaa
GRG
221#define wxUSE_XPM_IN_MSW 1
222 // Define 1 to support the XPM package in wxBitmap.
9bd6a503 223#define wxUSE_IMAGE_LOADING_IN_MSW 1
83b1bfaa 224 // Use dynamic DIB loading/saving code in utils/dib under MSW.
9bd6a503 225#define wxUSE_RESOURCE_LOADING_IN_MSW 1
83b1bfaa
GRG
226 // Use dynamic icon/cursor loading/saving code
227 // under MSW.
9bd6a503 228#define wxUSE_WX_RESOURCES 1
83b1bfaa 229 // Use .wxr resource mechanism (requires PrologIO library)
9bd6a503 230
83b1bfaa 231#define wxUSE_STARTUP_TIPS 1
448af9a4 232 // support for startup tips (wxShowTip &c)
9bd6a503 233
9bd6a503 234#define wxUSE_DOC_VIEW_ARCHITECTURE 1
83b1bfaa
GRG
235 // Set to 0 to disable document/view architecture
236#define wxUSE_MDI_ARCHITECTURE 1
237 // Set to 0 to disable MDI document/view architecture
9bd6a503 238#define wxUSE_PRINTING_ARCHITECTURE 1
83b1bfaa 239 // Set to 0 to disable print/preview architecture code
9bd6a503 240#define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 1
83b1bfaa
GRG
241 // Set to 0 to disable PostScript print/preview architecture code
242 // under Windows (just use Windows printing).
9bd6a503 243#define wxUSE_DYNAMIC_CLASSES 1
83b1bfaa
GRG
244 // If 1, enables provision of run-time type information.
245 // NOW MANDATORY: don't change.
9bd6a503 246#define wxUSE_MEMORY_TRACING 1
83b1bfaa
GRG
247 // If 1, enables debugging versions of wxObject::new and
248 // wxObject::delete *IF* __WXDEBUG__ is also defined.
249 // WARNING: this code may not work with all architectures, especially
250 // if alignment is an issue.
9bd6a503 251#define wxUSE_DEBUG_CONTEXT 1
83b1bfaa 252 // If 1, enables wxDebugContext, for
5ea6dbbf 253 // writing error messages to file, etc.
83b1bfaa
GRG
254 // If __WXDEBUG__ is not defined, will still use
255 // normal memory operators.
256 // It's recommended to set this to 1,
257 // since you may well need to output
258 // an error log in a production
259 // version (or non-debugging beta)
9bd6a503 260#define wxUSE_GLOBAL_MEMORY_OPERATORS 1
83b1bfaa
GRG
261 // In debug mode, cause new and delete to be redefined globally.
262 // If this causes problems (e.g. link errors), set this to 0.
9bd6a503
VZ
263
264#define wxUSE_DEBUG_NEW_ALWAYS 1
83b1bfaa
GRG
265 // In debug mode, causes new to be defined to
266 // be WXDEBUG_NEW (see object.h).
267 // If this causes problems (e.g. link errors), set this to 0.
268 // You may need to set this to 0 if using templates (at least
269 // for VC++).
9bd6a503 270
83b1bfaa
GRG
271#define REMOVE_UNUSED_ARG 1
272 // Set this to 0 if your compiler can't cope
273 // with omission of prototype parameters.
9bd6a503 274
83b1bfaa
GRG
275#define wxUSE_ODBC 0
276 // Define 1 to use ODBC classes
9bd6a503 277
9695185a
GT
278#define wxODBC_FWD_ONLY_CURSORS 1
279 // Some databases/ODBC drivers only allow forward scrolling cursors.
280 // Unless you specifically want to use backward scrolling
281 // cursors, and you know that all of the databases/ODBC drivers
5ea6dbbf 282 // that you will use these odbc classes with allow backward
9695185a
GT
283 // scrolling cursors, this setting should remain set to 1
284 // for maximum database/driver compatibilty
285
9bd6a503
VZ
286#ifndef __MWERKS__
287#define wxUSE_IOSTREAMH 1
288#else
dbda9e86 289#define wxUSE_IOSTREAMH 1
9bd6a503 290#endif
83b1bfaa
GRG
291 // VC++ 4.2 and above allows <iostream> and <iostream.h>
292 // but you can't mix them. Set to 1 for <iostream.h>,
293 // 0 for <iostream>
9bd6a503 294
d4ec5d32 295#define wxUSE_STREAMS 1
83b1bfaa 296 // If enabled (1), compiles wxWindows streams classes
d4ec5d32 297
83b1bfaa
GRG
298#define wxUSE_STD_IOSTREAM 0
299 // Use standard C++ streams if 1. If 0, use wxWin
300 // streams implementation.
d4ec5d32 301
9bd6a503 302#define wxUSE_WXCONFIG 1
83b1bfaa
GRG
303 // if enabled, compiles built-in OS independent wxConfig
304 // class and it's file (any platform) and registry (Win)
305 // based implementations
9bd6a503 306#define wxUSE_THREADS 1
83b1bfaa
GRG
307 // support for multithreaded applications: if
308 // 1, compile in thread classes (thread.h)
309 // and make the library thread safe
9bd6a503 310#define wxUSE_ZLIB 1
83b1bfaa 311 // Use zlib for compression in streams and PNG code
9bd6a503 312#define wxUSE_LIBPNG 1
83b1bfaa
GRG
313 // Use PNG bitmap/image code
314#define wxUSE_LIBJPEG 1
315 // Use JPEG bitmap/image code
5ea6dbbf
RD
316#define wxUSE_LIBTIFF 0
317 // Use TIFF bitmap/image code
83b1bfaa
GRG
318#define wxUSE_GIF 1
319 // Use GIF bitmap/image code
1044a386 320#define wxUSE_PNM 1
83b1bfaa 321 // Use PNM bitmap/image code
1044a386 322#define wxUSE_PCX 1
83b1bfaa 323 // Use PCX bitmap/image code
d4ec5d32 324#define wxUSE_SERIAL 0
83b1bfaa 325 // Use serialization (requires utils/serialize)
3aa0e8fa 326#define wxUSE_DYNLIB_CLASS 0
83b1bfaa
GRG
327 // Compile in wxLibrary class for run-time
328 // DLL loading and function calling
9bd6a503 329#define wxUSE_TOOLTIPS 1
83b1bfaa
GRG
330 // Define to use wxToolTip class and
331 // wxWindow::SetToolTip() method
332#define wxUSE_SOCKETS 1
333 // Set to 1 to use socket classes
0b5d3315 334#define wxUSE_HTML 1
83b1bfaa 335 // Set to 1 to use wxHTML sub-library
0b5d3315
VS
336#define wxUSE_FS_ZIP 1
337#define wxUSE_FS_INET 1 // Set to 1 to enable virtual file systems
d78b3d64 338
0b5d3315 339#define wxUSE_BUSYINFO 1
83b1bfaa
GRG
340 // wxBusyInfo displays window with message
341 // when app is busy. Works in same way as
342 // wxBusyCursor
0b5d3315 343#define wxUSE_ZIPSTREAM 1
83b1bfaa 344 // input stream for reading from zip archives
9bd6a503
VZ
345
346/*
347 * Finer detail
348 *
349 */
350
351#define wxUSE_APPLE_IEEE 1
352 // if enabled, the float codec written by Apple
353 // will be used to write, in a portable way,
354 // float on the disk
355
1318fabe
VZ
356// use wxFile class - required by i18n code, wxConfig and others - recommended
357#define wxUSE_FILE 1
358
359// use wxTextFile class: requires wxFile, required by wxConfig
360#define wxUSE_TEXTFILE 1
361
362// i18n support: _() macro, wxLocale class. Requires wxFile
363#define wxUSE_INTL 1
364
365// wxLogXXX functions - highly recommended
83b1bfaa 366#define wxUSE_LOG 1
1318fabe
VZ
367
368// wxValidator class
369#define wxUSE_VALIDATORS 1
370
371// wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar)
372#define wxUSE_ACCEL 1
373
374// wxSashWindow class
375#define wxUSE_SASH 1
376
377// text entry dialog and wxGetTextFromUser function
378#define wxUSE_TEXTDLG 1
379
1318fabe
VZ
380// wxStatusBar class
381#define wxUSE_STATUSBAR 1
382
383// progress dialog class for lengthy operations
384#define wxUSE_PROGRESSDLG 1
385
386// wxDirDlg class for getting a directory name from user
387#define wxUSE_DIRDLG 1
388
9bd6a503
VZ
389/*
390 * MS Windows/Windows NT
391 *
392 */
393
3aa0e8fa
VZ
394#define wxUSE_OLE 1
395 // drag-and-drop, clipboard, OLE Automation
396
9bd6a503 397#if defined(__WIN95__)
1f112209 398#define wxUSE_CTL3D 0
9bd6a503 399#else
1f112209 400#define wxUSE_CTL3D 1
83b1bfaa
GRG
401 // Define 1 to use Microsoft CTL3D library.
402 // See note above about using FAFA and CTL3D.
9bd6a503
VZ
403#endif
404
6d167489
VZ
405// can we use RICHEDIT control?
406#if defined(__WIN95__) && !defined(__TWIN32__) && !defined(__GNUWIN32_OLD__)
407#define wxUSE_RICHEDIT 1
408#else
409#define wxUSE_RICHEDIT 0
410#endif
411
9bd6a503 412#define wxUSE_COMMON_DIALOGS 1
83b1bfaa
GRG
413 // On rare occasions (e.g. using DJGPP) may want
414 // to omit common dialogs
415 // (e.g. file selector, printer dialog).
416 // Switching this off also switches off
417 // the printing architecture and interactive
418 // wxPrinterDC.
9bd6a503 419#define wxUSE_ITSY_BITSY 1
83b1bfaa
GRG
420 // Define 1 to use Microsoft's ItsyBitsy
421 // small title bar library, for wxMiniFrame
9bd6a503 422#define wxUSE_BITMAP_MESSAGE 1
83b1bfaa 423 // Define 1 to use bitmap messages.
9bd6a503 424#define wxUSE_PORTABLE_FONTS_IN_MSW 0
83b1bfaa
GRG
425 // Define 1 to use new portable font scheme in Windows
426 // (used by default under X)
1f112209 427#define wxFONT_SIZE_COMPATIBILITY 0
83b1bfaa
GRG
428 // Define 1 for font size to be backward compatible
429 // to 1.63 and earlier. 1.64 and later define point
430 // sizes to be compatible with Windows.
9bd6a503 431#define wxUSE_GENERIC_DIALOGS_IN_MSW 1
83b1bfaa
GRG
432 // Define 1 to use generic dialogs in Windows, even though
433 // they duplicate native common dialog (e.g. wxColourDialog)
9bd6a503 434#define wxUSE_PENWINDOWS 0
83b1bfaa 435 // Set to 1 to use PenWindows
9bd6a503
VZ
436
437#define wxUSE_OWNER_DRAWN 1
83b1bfaa 438 // Owner-drawn menus and listboxes
9bd6a503
VZ
439
440#define wxUSE_NATIVE_STATUSBAR 1
83b1bfaa 441 // Set to 0 to use cross-platform wxStatusBar
9bd6a503
VZ
442
443/*
444 * Any platform
445 *
446 */
447
448#define wxUSE_TYPEDEFS 0
83b1bfaa
GRG
449 // Use typedefs not classes for wxPoint
450 // and others, to reduce overhead and avoid
451 // MS C7 memory bug. Bounds checker
452 // complains about deallocating
453 // arrays of wxPoints if wxPoint is a class.
9bd6a503 454
1a7f3062
JS
455#if defined(__MINGW32__) && ((__GNUC__>2) ||((__GNUC__==2) && (__GNUC_MINOR__>=95)))
456#ifndef wxUSE_NORLANDER_HEADERS
457# define wxUSE_NORLANDER_HEADERS 1
458#endif
459#endif
460
461#if (!defined(WIN32) && !defined(__WIN32__)) || (defined(__GNUWIN32__) && !defined(wxUSE_NORLANDER_HEADERS))
9bd6a503
VZ
462// Can't use OLE drag and drop in Windows 3.1 because we don't know how
463// to implement UUIDs
464// GnuWin32 doesn't have appropriate headers for e.g. IUnknown.
465#undef wxUSE_DRAG_AND_DROP
466#define wxUSE_DRAG_AND_DROP 0
467#endif
468
469// Only WIN32 supports wxStatusBar95
470#if !defined(__WIN32__) && wxUSE_NATIVE_STATUSBAR
471#undef wxUSE_NATIVE_STATUSBAR
472#define wxUSE_NATIVE_STATUSBAR 0
473#endif
474
475// Salford C++ doesn't like some of the memory operator definitions
476#ifdef __SALFORDC__
477#undef wxUSE_MEMORY_TRACING
478#define wxUSE_MEMORY_TRACING 0
479
480#undef wxUSE_GLOBAL_MEMORY_OPERATORS
481#define wxUSE_GLOBAL_MEMORY_OPERATORS 0
482
483#undef wxUSE_DEBUG_NEW_ALWAYS
484#define wxUSE_DEBUG_NEW_ALWAYS 0
485
486#undef wxUSE_THREADS
487#define wxUSE_THREADS 0
488
9bd6a503
VZ
489#undef wxUSE_OWNER_DRAWN
490#define wxUSE_OWNER_DRAWN 0
491#endif
492
493#ifdef __TWIN32__
494
495#undef wxUSE_THREADS
496#define wxUSE_THREADS 0
497
9bd6a503
VZ
498#undef wxUSE_ODBC
499#define wxUSE_ODBC 0
500
501#endif
502
448af9a4
JS
503// BC++/Win16 can't cope with the amount of data in resource.cpp
504#if defined(__WIN16__) && defined(__BORLANDC__)
505#undef wxUSE_WX_RESOURCES
506#define wxUSE_WX_RESOURCES 0
154f22b3
JS
507
508#undef wxUSE_ODBC
509#define wxUSE_ODBC 0
448af9a4
JS
510#endif
511
0cdf89ab 512#if defined(__WXMSW__) && defined(__WATCOMC__)
0cdf89ab
JS
513#undef wxUSE_LIBJPEG
514#define wxUSE_LIBJPEG 0
515#endif
516
9bd6a503
VZ
517#if defined(__WXMSW__) && !defined(__WIN32__)
518
8fb3a512
JS
519#undef wxUSE_SOCKETS
520#define wxUSE_SOCKETS 0
521
9bd6a503
VZ
522#undef wxUSE_THREADS
523#define wxUSE_THREADS 0
524
750b78ba
JS
525#undef wxUSE_TOOLTIPS
526#define wxUSE_TOOLTIPS 0
527
0e528b99
JS
528#undef wxUSE_SPINCTRL
529#define wxUSE_SPINCTRL 0
530
531#undef wxUSE_SPINBTN
532#define wxUSE_SPINBTN 0
533
1044a386
JS
534#undef wxUSE_LIBPNG
535#define wxUSE_LIBPNG 0
536
537#undef wxUSE_LIBJPEG
538#define wxUSE_LIBJPEG 0
539
83b1bfaa
GRG
540#undef wxUSE_GIF
541#define wxUSE_GIF 0
1044a386
JS
542
543#undef wxUSE_PNM
544#define wxUSE_PNM 0
545
546#undef wxUSE_PCX
547#define wxUSE_PCX 0
548
9bd6a503
VZ
549#endif
550
9bd6a503
VZ
551#endif
552 // _WX_SETUP_H_