]> git.saurik.com Git - wxWidgets.git/blame - include/wx/univ/setup0.h
and a third fix from http://trac.wxwidgets.org/ticket/10457 fix
[wxWidgets.git] / include / wx / univ / setup0.h
CommitLineData
3b7c589c 1/////////////////////////////////////////////////////////////////////////////
2b5f62a0 2// Name: wx/univ/setup.h
3b7c589c
VZ
3// Purpose: Configuration for the universal build of the library
4// Author: Julian Smart
5// Created: 01/02/97
2b5f62a0 6// RCS-ID: $Id$
3b7c589c 7// Copyright: (c) Julian Smart
65571936 8// Licence: wxWindows licence
3b7c589c 9/////////////////////////////////////////////////////////////////////////////
b1ab4762 10
3b7c589c
VZ
11#ifndef _WX_SETUP_H_
12#define _WX_SETUP_H_
b1ab4762 13
3b7c589c 14/* --- start common options --- */
2b5f62a0
VZ
15// ----------------------------------------------------------------------------
16// global settings
17// ----------------------------------------------------------------------------
18
19// define this to 0 when building wxBase library - this can also be done from
20// makefile/project file overriding the value here
21#ifndef wxUSE_GUI
b1ab4762 22 #define wxUSE_GUI 1
2b5f62a0
VZ
23#endif // wxUSE_GUI
24
25// ----------------------------------------------------------------------------
26// compatibility settings
27// ----------------------------------------------------------------------------
28
dee1a63f 29// This setting determines the compatibility with 2.6 API: set it to 0 to
134ecc85
VZ
30// flag all cases of using deprecated functions.
31//
32// Default is 1 but please try building your code with 0 as the default will
33// change to 0 in the next version and the deprecated functions will disappear
34// in the version after it completely.
35//
36// Recommended setting: 0 (please update your code)
abb6edd1
VS
37#define WXWIN_COMPATIBILITY_2_6 0
38
39// This setting determines the compatibility with 2.8 API: set it to 0 to
40// flag all cases of using deprecated functions.
41//
42// Default is 1 but please try building your code with 0 as the default will
43// change to 0 in the next version and the deprecated functions will disappear
44// in the version after it completely.
45//
46// Recommended setting: 0 (please update your code)
47#define WXWIN_COMPATIBILITY_2_8 1
134ecc85 48
3c778901
VZ
49// Use the 2.8-compatible events and Connect(): this is set to 0 by default as
50// the new events bring significant benefits in compile-time safety and
51// flexibility but can be disabled to somewhat reduce the compilation time and,
52// especially, to still allow building if the compiler template support is too
53// bad to compile the new code.
54//
55// Default is 0 for all compilers except VC6 currently.
56//
57// Recommended setting: 0 (please upgrade your compiler instead of changing it)
58#define wxEVENTS_COMPATIBILITY_2_8 0
59
b1ab4762
CE
60// MSW-only: Set to 0 for accurate dialog units, else 1 for old behaviour when
61// default system font is used for wxWindow::GetCharWidth/Height() instead of
62// the current font.
2b5f62a0 63//
b1ab4762 64// Default is 0
2b5f62a0 65//
b1ab4762
CE
66// Recommended setting: 0
67#define wxDIALOG_UNIT_COMPATIBILITY 0
2b5f62a0
VZ
68
69// ----------------------------------------------------------------------------
70// debugging settings
71// ----------------------------------------------------------------------------
72
73// Generic comment about debugging settings: they are very useful if you don't
74// use any other memory leak detection tools such as Purify/BoundsChecker, but
75// are probably redundant otherwise. Also, Visual C++ CRT has the same features
77ffb593 76// as wxWidgets memory debugging subsystem built in since version 5.0 and you
2b5f62a0
VZ
77// may prefer to use it instead of built in memory debugging code because it is
78// faster and more fool proof.
79//
80// Using VC++ CRT memory debugging is enabled by default in debug mode
81// (__WXDEBUG__) if wxUSE_GLOBAL_MEMORY_OPERATORS is *not* enabled (i.e. is 0)
82// and if __NO_VC_CRTDBG__ is not defined.
83
84// If 1, enables wxDebugContext, for writing error messages to file, etc. If
85// __WXDEBUG__ is not defined, will still use the normal memory operators.
86//
87// Default is 0
88//
89// Recommended setting: 0
b1ab4762 90#define wxUSE_DEBUG_CONTEXT 0
2b5f62a0
VZ
91
92// If 1, enables debugging versions of wxObject::new and wxObject::delete *IF*
93// __WXDEBUG__ is also defined.
94//
95// WARNING: this code may not work with all architectures, especially if
96// alignment is an issue. This switch is currently ignored for mingw / cygwin
97//
98// Default is 0
99//
100// Recommended setting: 1 if you are not using a memory debugging tool, else 0
101#define wxUSE_MEMORY_TRACING 0
102
103// In debug mode, cause new and delete to be redefined globally.
104// If this causes problems (e.g. link errors which is a common problem
105// especially if you use another library which also redefines the global new
106// and delete), set this to 0.
107// This switch is currently ignored for mingw / cygwin
108//
109// Default is 0
110//
111// Recommended setting: 0
112#define wxUSE_GLOBAL_MEMORY_OPERATORS 0
113
114// In debug mode, causes new to be defined to be WXDEBUG_NEW (see object.h). If
115// this causes problems (e.g. link errors), set this to 0. You may need to set
116// this to 0 if using templates (at least for VC++). This switch is currently
117// ignored for mingw / cygwin / CodeWarrior
118//
119// Default is 0
120//
121// Recommended setting: 0
122#define wxUSE_DEBUG_NEW_ALWAYS 0
123
124// wxHandleFatalExceptions() may be used to catch the program faults at run
125// time and, instead of terminating the program with a usual GPF message box,
126// call the user-defined wxApp::OnFatalException() function. If you set
127// wxUSE_ON_FATAL_EXCEPTION to 0, wxHandleFatalExceptions() will not work.
128//
129// This setting is for Win32 only and can only be enabled if your compiler
130// supports Win32 structured exception handling (currently only VC++ does)
131//
132// Default is 1
133//
134// Recommended setting: 1 if your compiler supports it.
b1ab4762
CE
135#define wxUSE_ON_FATAL_EXCEPTION 1
136
137// Set this to 1 to be able to generate a human-readable (unlike
138// machine-readable minidump created by wxCrashReport::Generate()) stack back
139// trace when your program crashes using wxStackWalker
140//
141// Default is 1 if supported by the compiler.
142//
143// Recommended setting: 1, set to 0 if your programs never crash
144#define wxUSE_STACKWALKER 1
145
146// Set this to 1 to compile in wxDebugReport class which allows you to create
147// and optionally upload to your web site a debug report consisting of back
148// trace of the crash (if wxUSE_STACKWALKER == 1) and other information.
149//
150// Default is 1 if supported by the compiler.
151//
152// Recommended setting: 1, it is compiled into a separate library so there
153// is no overhead if you don't use it
154#define wxUSE_DEBUGREPORT 1
2b5f62a0
VZ
155
156// ----------------------------------------------------------------------------
157// Unicode support
158// ----------------------------------------------------------------------------
159
3b7c589c
VZ
160// These settings are obsolete: the library is always built in Unicode mode
161// now, only set wxUSE_UNICODE to 0 to compile legacy code in ANSI mode if
162// absolutely necessary -- updating it is strongly recommended as the ANSI mode
163// will disappear completely in future wxWidgets releases.
86c8acb7 164#ifndef wxUSE_UNICODE
3b7c589c 165 #define wxUSE_UNICODE 1
86c8acb7 166#endif
2b5f62a0 167
3b7c589c 168// wxUSE_WCHAR_T is required by wxWidgets now, don't change.
b1ab4762 169#define wxUSE_WCHAR_T 1
2b5f62a0
VZ
170
171// ----------------------------------------------------------------------------
172// global features
173// ----------------------------------------------------------------------------
174
c37dc21c
VZ
175// Compile library in exception-safe mode? If set to 1, the library will try to
176// behave correctly in presence of exceptions (even though it still will not
177// use the exceptions itself) and notify the user code about any unhandled
178// exceptions. If set to 0, propagation of the exceptions through the library
179// code will lead to undefined behaviour -- but the code itself will be
180// slightly smaller and faster.
181//
b1ab4762
CE
182// Note that like wxUSE_THREADS this option is automatically set to 0 if
183// wxNO_EXCEPTIONS is defined.
184//
c37dc21c
VZ
185// Default is 1
186//
187// Recommended setting: depends on whether you intend to use C++ exceptions
188// in your own code (1 if you do, 0 if you don't)
189#define wxUSE_EXCEPTIONS 1
190
b1ab4762
CE
191// Set wxUSE_EXTENDED_RTTI to 1 to use extended RTTI
192//
193// Default is 0
194//
195// Recommended setting: 0 (this is still work in progress...)
196#define wxUSE_EXTENDED_RTTI 0
197
252e57ce
VZ
198// Set wxUSE_STL to 1 to derive wxList(Foo) and wxArray(Foo) from
199// std::list<Foo*> and std::vector<Foo*>, with a compatibility interface,
200// and for wxHashMap to be implemented with templates.
201//
202// Default is 0
203//
204// Recommended setting: YMMV
205#define wxUSE_STL 0
206
2b5f62a0
VZ
207// Support for message/error logging. This includes wxLogXXX() functions and
208// wxLog and derived classes. Don't set this to 0 unless you really know what
209// you are doing.
210//
211// Default is 1
212//
213// Recommended setting: 1 (always)
214#define wxUSE_LOG 1
215
2b5f62a0
VZ
216// Recommended setting: 1
217#define wxUSE_LOGWINDOW 1
218
219// Recommended setting: 1
220#define wxUSE_LOGGUI 1
221
222// Recommended setting: 1
223#define wxUSE_LOG_DIALOG 1
224
715d7d25
JS
225// Support for command line parsing using wxCmdLineParser class.
226//
227// Default is 1
228//
229// Recommended setting: 1 (can be set to 0 if you don't use the cmd line)
230#define wxUSE_CMDLINE_PARSER 1
231
2b5f62a0
VZ
232// Support for multithreaded applications: if 1, compile in thread classes
233// (thread.h) and make the library a bit more thread safe. Although thread
234// support is quite stable by now, you may still consider recompiling the
235// library without it if you have no use for it - this will result in a
236// somewhat smaller and faster operation.
237//
b1ab4762
CE
238// Notice that if wxNO_THREADS is defined, wxUSE_THREADS is automatically reset
239// to 0 in wx/chkconf.h, so, for example, if you set USE_THREADS to 0 in
240// build/msw/config.* file this value will have no effect.
2b5f62a0
VZ
241//
242// Default is 1
243//
244// Recommended setting: 0 unless you do plan to develop MT applications
245#define wxUSE_THREADS 1
246
b1ab4762
CE
247// If enabled, compiles wxWidgets streams classes
248//
249// wx stream classes are used for image IO, process IO redirection, network
250// protocols implementation and much more and so disabling this results in a
251// lot of other functionality being lost.
252//
253// Default is 1
254//
255// Recommended setting: 1 as setting it to 0 disables many other things
256#define wxUSE_STREAMS 1
2b5f62a0 257
bb445ba7
VZ
258// This is not a real option but is used as the default value for
259// wxUSE_STD_IOSTREAM and wxUSE_STD_STRING.
260//
261// Currently the Digital Mars and Watcom compilers come without standard C++
262// library headers by default, wxUSE_STD_STRING can be set to 1 if you do have
263// them (e.g. from STLPort).
264//
265// VC++ 5.0 does include standard C++ library headers, however they produce
266// many warnings that can't be turned off when compiled at warning level 4.
267#if defined(__DMC__) || defined(__WATCOMC__) \
268 || (defined(_MSC_VER) && _MSC_VER < 1200)
269 #define wxUSE_STD_DEFAULT 0
270#else
271 #define wxUSE_STD_DEFAULT 1
272#endif
273
b1ab4762
CE
274// Use standard C++ streams if 1 instead of wx streams in some places. If
275// disabled (default), wx streams are used everywhere and wxWidgets doesn't
276// depend on the standard streams library.
277//
278// Notice that enabling this does not replace wx streams with std streams
279// everywhere, in a lot of places wx streams are used no matter what.
280//
281// Default is 0
282//
283// Recommended setting: 1 if you use the standard streams anyhow and so
284// dependency on the standard streams library is not a
285// problem
bb445ba7 286#define wxUSE_STD_IOSTREAM wxUSE_STD_DEFAULT
2b5f62a0 287
8bb9d852
MW
288// Enable conversion to standard C++ string if 1.
289//
290// Default is 1 for most compilers.
291//
bb445ba7
VZ
292// Recommended setting: 1 unless you want to ensure your program doesn't use
293// the standard C++ library at all.
294#define wxUSE_STD_STRING wxUSE_STD_DEFAULT
8bb9d852 295
b41af6aa
WS
296// Support for positional parameters (e.g. %1$d, %2$s ...) in wxVsnprintf.
297// Note that if the system's implementation does not support positional
298// parameters, setting this to 1 forces the use of the wxWidgets implementation
299// of wxVsnprintf. The standard vsnprintf() supports positional parameters on
300// many Unix systems but usually doesn't under Windows.
301//
302// Positional parameters are very useful when translating a program since using
303// them in formatting strings allow translators to correctly reorder the
304// translated sentences.
305//
306// Default is 1
307//
308// Recommended setting: 1 if you want to support multiple languages
b1ab4762 309#define wxUSE_PRINTF_POS_PARAMS 1
b41af6aa 310
2b5f62a0
VZ
311// ----------------------------------------------------------------------------
312// non GUI features selection
313// ----------------------------------------------------------------------------
314
315// Set wxUSE_LONGLONG to 1 to compile the wxLongLong class. This is a 64 bit
316// integer which is implemented in terms of native 64 bit integers if any or
317// uses emulation otherwise.
318//
319// This class is required by wxDateTime and so you should enable it if you want
320// to use wxDateTime. For most modern platforms, it will use the native 64 bit
321// integers in which case (almost) all of its functions are inline and it
322// almost does not take any space, so there should be no reason to switch it
323// off.
324//
325// Recommended setting: 1
b1ab4762
CE
326#define wxUSE_LONGLONG 1
327
328// Set wxUSE_BASE64 to 1, to compile in Base64 support. This is required for
329// storing binary data in wxConfig on most platforms.
330//
331// Default is 1.
332//
333// Recommended setting: 1 (but can be safely disabled if you don't use it)
334#define wxUSE_BASE64 1
335
336// Set this to 1 to be able to use wxEventLoop even in console applications
337// (i.e. using base library only, without GUI). This is mostly useful for
338// processing socket events but is also necessary to use timers in console
339// applications
340//
341// Default is 1.
342//
343// Recommended setting: 1 (but can be safely disabled if you don't use it)
344#define wxUSE_CONSOLE_EVENTLOOP 1
2b5f62a0
VZ
345
346// Set wxUSE_(F)FILE to 1 to compile wx(F)File classes. wxFile uses low level
347// POSIX functions for file access, wxFFile uses ANSI C stdio.h functions.
348//
349// Default is 1
350//
351// Recommended setting: 1 (wxFile is highly recommended as it is required by
352// i18n code, wxFileConfig and others)
b1ab4762
CE
353#define wxUSE_FILE 1
354#define wxUSE_FFILE 1
2b5f62a0
VZ
355
356// Use wxFSVolume class providing access to the configured/active mount points
357//
358// Default is 1
359//
360// Recommended setting: 1 (but may be safely disabled if you don't use it)
b1ab4762 361#define wxUSE_FSVOLUME 1
2b5f62a0 362
a28b4703
WS
363// Use wxStandardPaths class which allows to retrieve some standard locations
364// in the file system
365//
366// Default is 1
367//
368// Recommended setting: 1 (may be disabled to save space, but not much)
369#define wxUSE_STDPATHS 1
370
2b5f62a0 371// use wxTextBuffer class: required by wxTextFile
b1ab4762 372#define wxUSE_TEXTBUFFER 1
2b5f62a0
VZ
373
374// use wxTextFile class: requires wxFile and wxTextBuffer, required by
375// wxFileConfig
b1ab4762 376#define wxUSE_TEXTFILE 1
2b5f62a0
VZ
377
378// i18n support: _() macro, wxLocale class. Requires wxTextFile.
b1ab4762 379#define wxUSE_INTL 1
2b5f62a0 380
6e4ae332
VZ
381// Provide wxFoo_l() functions similar to standard foo() functions but taking
382// an extra locale parameter.
383//
384// Notice that this is fully implemented only for the systems providing POSIX
385// xlocale support or Microsoft Visual C++ >= 8 (which provides proprietary
386// almost-equivalent of xlocale functions), otherwise wxFoo_l() functions will
387// only work for the current user locale and "C" locale. You can use
388// wxHAS_XLOCALE_SUPPORT to test whether the full support is available.
389//
390// Default is 1
391//
392// Recommended setting: 1 but may be disabled if you are writing programs
393// running only in C locale anyhow
394#define wxUSE_XLOCALE 1
395
2b5f62a0
VZ
396// Set wxUSE_DATETIME to 1 to compile the wxDateTime and related classes which
397// allow to manipulate dates, times and time intervals. wxDateTime replaces the
398// old wxTime and wxDate classes which are still provided for backwards
399// compatibility (and implemented in terms of wxDateTime).
400//
401// Note that this class is relatively new and is still officially in alpha
402// stage because some features are not yet (fully) implemented. It is already
403// quite useful though and should only be disabled if you are aiming at
404// absolutely minimal version of the library.
405//
406// Requires: wxUSE_LONGLONG
407//
408// Default is 1
409//
410// Recommended setting: 1
b1ab4762 411#define wxUSE_DATETIME 1
2b5f62a0 412
2b5f62a0
VZ
413// Set wxUSE_TIMER to 1 to compile wxTimer class
414//
415// Default is 1
416//
417// Recommended setting: 1
b1ab4762 418#define wxUSE_TIMER 1
2b5f62a0
VZ
419
420// Use wxStopWatch clas.
421//
422// Default is 1
423//
424// Recommended setting: 1 (needed by wxSocket)
b1ab4762 425#define wxUSE_STOPWATCH 1
2b5f62a0
VZ
426
427// Setting wxUSE_CONFIG to 1 enables the use of wxConfig and related classes
428// which allow the application to store its settings in the persistent
429// storage. Setting this to 1 will also enable on-demand creation of the
430// global config object in wxApp.
431//
432// See also wxUSE_CONFIG_NATIVE below.
433//
434// Recommended setting: 1
b1ab4762 435#define wxUSE_CONFIG 1
2b5f62a0
VZ
436
437// If wxUSE_CONFIG is 1, you may choose to use either the native config
438// classes under Windows (using .INI files under Win16 and the registry under
439// Win32) or the portable text file format used by the config classes under
440// Unix.
441//
442// Default is 1 to use native classes. Note that you may still use
443// wxFileConfig even if you set this to 1 - just the config object created by
444// default for the applications needs will be a wxRegConfig or wxIniConfig and
445// not wxFileConfig.
446//
b1ab4762
CE
447// Recommended setting: 1
448#define wxUSE_CONFIG_NATIVE 1
2b5f62a0
VZ
449
450// If wxUSE_DIALUP_MANAGER is 1, compile in wxDialUpManager class which allows
451// to connect/disconnect from the network and be notified whenever the dial-up
452// network connection is established/terminated. Requires wxUSE_DYNAMIC_LOADER.
453//
454// Default is 1.
455//
456// Recommended setting: 1
b1ab4762 457#define wxUSE_DIALUP_MANAGER 1
2b5f62a0
VZ
458
459// Compile in classes for run-time DLL loading and function calling.
460// Required by wxUSE_DIALUP_MANAGER.
461//
462// This setting is for Win32 only
463//
464// Default is 1.
465//
466// Recommended setting: 1
b1ab4762 467#define wxUSE_DYNLIB_CLASS 1
2b5f62a0
VZ
468
469// experimental, don't use for now
b1ab4762 470#define wxUSE_DYNAMIC_LOADER 1
2b5f62a0
VZ
471
472// Set to 1 to use socket classes
b1ab4762 473#define wxUSE_SOCKETS 1
2b5f62a0 474
3b7c589c
VZ
475// Set to 1 to use ipv6 socket classes (requires wxUSE_SOCKETS)
476//
477// Notice that currently setting this option under Windows will result in
478// programs which can only run on recent OS versions (with ws2_32.dll
479// installed) which is why it is disabled by default.
480//
481// Default is 1.
482//
483// Recommended setting: 1 if you need IPv6 support
484#define wxUSE_IPV6 0
485
2b5f62a0 486// Set to 1 to enable virtual file systems (required by wxHTML)
b1ab4762 487#define wxUSE_FILESYSTEM 1
2b5f62a0
VZ
488
489// Set to 1 to enable virtual ZIP filesystem (requires wxUSE_FILESYSTEM)
b1ab4762 490#define wxUSE_FS_ZIP 1
2b5f62a0 491
26e422a9
MW
492// Set to 1 to enable virtual archive filesystem (requires wxUSE_FILESYSTEM)
493#define wxUSE_FS_ARCHIVE 1
494
b1ab4762
CE
495// Set to 1 to enable virtual Internet filesystem (requires wxUSE_FILESYSTEM)
496#define wxUSE_FS_INET 1
497
81f90336 498// wxArchive classes for accessing archives such as zip and tar
b1ab4762 499#define wxUSE_ARCHIVE_STREAMS 1
81f90336 500
2b5f62a0 501// Set to 1 to compile wxZipInput/OutputStream classes.
b1ab4762 502#define wxUSE_ZIPSTREAM 1
2b5f62a0 503
26e422a9
MW
504// Set to 1 to compile wxTarInput/OutputStream classes.
505#define wxUSE_TARSTREAM 1
506
2b5f62a0 507// Set to 1 to compile wxZlibInput/OutputStream classes. Also required by
477a6238 508// wxUSE_LIBPNG
6f96ac03
VZ
509#define wxUSE_ZLIB 1
510
2b5f62a0
VZ
511// If enabled, the code written by Apple will be used to write, in a portable
512// way, float on the disk. See extended.c for the license which is different
77ffb593 513// from wxWidgets one.
2b5f62a0
VZ
514//
515// Default is 1.
516//
517// Recommended setting: 1 unless you don't like the license terms (unlikely)
b1ab4762 518#define wxUSE_APPLE_IEEE 1
2b5f62a0
VZ
519
520// Joystick support class
b1ab4762
CE
521#define wxUSE_JOYSTICK 1
522
523// wxFontEnumerator class
524#define wxUSE_FONTENUM 1
2b5f62a0
VZ
525
526// wxFontMapper class
527#define wxUSE_FONTMAP 1
528
529// wxMimeTypesManager class
530#define wxUSE_MIMETYPE 1
531
532// wxProtocol and related classes: if you want to use either of wxFTP, wxHTTP
533// or wxURL you need to set this to 1.
534//
535// Default is 1.
536//
537// Recommended setting: 1
538#define wxUSE_PROTOCOL 1
539
2b5f62a0
VZ
540// The settings for the individual URL schemes
541#define wxUSE_PROTOCOL_FILE 1
542#define wxUSE_PROTOCOL_FTP 1
543#define wxUSE_PROTOCOL_HTTP 1
544
715d7d25
JS
545// Define this to use wxURL class.
546#define wxUSE_URL 1
547
b1ab4762
CE
548// Define this to use native platform url and protocol support.
549// Currently valid only for MS-Windows.
550// Note: if you set this to 1, you can open ftp/http/gopher sites
551// and obtain a valid input stream for these sites
552// even when you set wxUSE_PROTOCOL_FTP/HTTP to 0.
553// Doing so reduces the code size.
554//
555// This code is experimental and subject to change.
556#define wxUSE_URL_NATIVE 0
557
b6428aba
WS
558// Support for wxVariant class used in several places throughout the library,
559// notably in wxDataViewCtrl API.
560//
561// Default is 1.
562//
563// Recommended setting: 1 unless you want to reduce the library size as much as
564// possible in which case setting this to 0 can gain up to 100KB.
565#define wxUSE_VARIANT 1
566
2b5f62a0
VZ
567// Support for regular expression matching via wxRegEx class: enable this to
568// use POSIX regular expressions in your code. You need to compile regex
569// library from src/regex to use it under Windows.
570//
571// Default is 0
572//
573// Recommended setting: 1 if your compiler supports it, if it doesn't please
574// contribute us a makefile for src/regex for it
b1ab4762 575#define wxUSE_REGEX 1
2b5f62a0
VZ
576
577// wxSystemOptions class
578#define wxUSE_SYSTEM_OPTIONS 1
579
002ed9af 580// wxSound class
b1ab4762 581#define wxUSE_SOUND 1
2b5f62a0 582
c8a50408
RN
583// Use wxMediaCtrl
584//
585// Default is 1.
586//
922bcaff 587// Recommended setting: 1
c8a50408
RN
588#define wxUSE_MEDIACTRL 1
589
1c4293cb 590// Use GStreamer for Unix.
b1ab4762 591//
1c4293cb
VZ
592// Default is 0 as this requires a lot of dependencies which might not be
593// available.
b1ab4762
CE
594//
595// Recommended setting: 1 (wxMediaCtrl won't work by default without it)
596#define wxUSE_GSTREAMER 0
597
9581c3c6
RN
598// Use wxWidget's XRC XML-based resource system. Recommended.
599//
600// Default is 1
601//
84fe931d 602// Recommended setting: 1 (requires wxUSE_XML)
9581c3c6
RN
603#define wxUSE_XRC 1
604
7de1e98d
JS
605// XML parsing classes. Note that their API will change in the future, so
606// using wxXmlDocument and wxXmlNode in your app is not recommended.
607//
b1ab4762 608// Default is the same as wxUSE_XRC, i.e. 1 by default.
7de1e98d 609//
9581c3c6 610// Recommended setting: 1 (required by XRC)
b1ab4762 611#define wxUSE_XML wxUSE_XRC
7de1e98d 612
5e4903f5
JS
613// Use wxWidget's AUI docking system
614//
615// Default is 1
616//
617// Recommended setting: 1
618#define wxUSE_AUI 1
619
1c4293cb
VZ
620// Use wxPropertyGrid.
621//
622// Default is 1
623//
624// Recommended setting: 1
625#define wxUSE_PROPGRID 1
626
29825f5f
PC
627// Use wxStyledTextCtrl, a wxWidgets implementation of Scintilla.
628//
629// Default is 1
630//
631// Recommended setting: 1
632#define wxUSE_STC 1
633
9fb52312
WS
634
635// Enable the new wxGraphicsPath and wxGraphicsContext classes for an advanced
636// 2D drawing API. (Still somewhat experimental)
637//
638// Please note that on Windows you will need to link with gdiplus.lib (use
639// USE_GDIPLUS=1 for makefile builds) and distribute gdiplus.dll with your
640// application if you want it to be runnable on pre-XP systems.
641//
642// Default is 0
643//
644// Recommended setting: 1
645#ifndef wxUSE_GRAPHICS_CONTEXT
646#define wxUSE_GRAPHICS_CONTEXT 0
647#endif
648
2b5f62a0
VZ
649// ----------------------------------------------------------------------------
650// Individual GUI controls
651// ----------------------------------------------------------------------------
652
653// You must set wxUSE_CONTROLS to 1 if you are using any controls at all
654// (without it, wxControl class is not compiled)
655//
656// Default is 1
657//
658// Recommended setting: 1 (don't change except for very special programs)
659#define wxUSE_CONTROLS 1
660
661// wxPopupWindow class is a top level transient window. It is currently used
662// to implement wxTipWindow
663//
664// Default is 1
665//
666// Recommended setting: 1 (may be set to 0 if you don't wxUSE_TIPWINDOW)
667#define wxUSE_POPUPWIN 1
668
669// wxTipWindow allows to implement the custom tooltips, it is used by the
670// context help classes. Requires wxUSE_POPUPWIN.
671//
672// Default is 1
673//
674// Recommended setting: 1 (may be set to 0)
675#define wxUSE_TIPWINDOW 1
676
77ffb593 677// Each of the settings below corresponds to one wxWidgets control. They are
2b5f62a0
VZ
678// all switched on by default but may be disabled if you are sure that your
679// program (including any standard dialogs it can show!) doesn't need them and
680// if you desperately want to save some space. If you use any of these you must
681// set wxUSE_CONTROLS as well.
682//
683// Default is 1
684//
685// Recommended setting: 1
b1ab4762
CE
686#define wxUSE_ANIMATIONCTRL 1 // wxAnimationCtrl
687#define wxUSE_BUTTON 1 // wxButton
688#define wxUSE_BMPBUTTON 1 // wxBitmapButton
689#define wxUSE_CALENDARCTRL 1 // wxCalendarCtrl
690#define wxUSE_CHECKBOX 1 // wxCheckBox
691#define wxUSE_CHECKLISTBOX 1 // wxCheckListBox (requires wxUSE_OWNER_DRAWN)
692#define wxUSE_CHOICE 1 // wxChoice
693#define wxUSE_COLLPANE 1 // wxCollapsiblePane
24bbfc62 694#define wxUSE_COLOURPICKERCTRL 1 // wxColourPickerCtrl
b1ab4762
CE
695#define wxUSE_COMBOBOX 1 // wxComboBox
696#define wxUSE_DATAVIEWCTRL 1 // wxDataViewCtrl
697#define wxUSE_DATEPICKCTRL 1 // wxDatePickerCtrl
698#define wxUSE_DIRPICKERCTRL 1 // wxDirPickerCtrl
699#define wxUSE_EDITABLELISTBOX 1 // wxEditableListBox
700#define wxUSE_FILECTRL 1 // wxFileCtrl
701#define wxUSE_FILEPICKERCTRL 1 // wxFilePickerCtrl
702#define wxUSE_FONTPICKERCTRL 1 // wxFontPickerCtrl
703#define wxUSE_GAUGE 1 // wxGauge
e721a2a2 704#define wxUSE_HEADERCTRL 1 // wxHeaderCtrl
b1ab4762
CE
705#define wxUSE_HYPERLINKCTRL 1 // wxHyperlinkCtrl
706#define wxUSE_LISTBOX 1 // wxListBox
707#define wxUSE_LISTCTRL 1 // wxListCtrl
708#define wxUSE_RADIOBOX 1 // wxRadioBox
709#define wxUSE_RADIOBTN 1 // wxRadioButton
710#define wxUSE_SCROLLBAR 1 // wxScrollBar
711#define wxUSE_SEARCHCTRL 1 // wxSearchCtrl
712#define wxUSE_SLIDER 1 // wxSlider
713#define wxUSE_SPINBTN 1 // wxSpinButton
714#define wxUSE_SPINCTRL 1 // wxSpinCtrl
715#define wxUSE_STATBOX 1 // wxStaticBox
716#define wxUSE_STATLINE 1 // wxStaticLine
717#define wxUSE_STATTEXT 1 // wxStaticText
718#define wxUSE_STATBMP 1 // wxStaticBitmap
719#define wxUSE_TEXTCTRL 1 // wxTextCtrl
720#define wxUSE_TOGGLEBTN 1 // requires wxButton
721#define wxUSE_TREECTRL 1 // wxTreeCtrl
2b5f62a0
VZ
722
723// Use a status bar class? Depending on the value of wxUSE_NATIVE_STATUSBAR
724// below either wxStatusBar95 or a generic wxStatusBar will be used.
725//
726// Default is 1
727//
728// Recommended setting: 1
b1ab4762 729#define wxUSE_STATUSBAR 1
2b5f62a0
VZ
730
731// Two status bar implementations are available under Win32: the generic one
732// or the wrapper around native control. For native look and feel the native
733// version should be used.
734//
b1ab4762 735// Default is 1 for the platforms where native status bar is supported.
2b5f62a0 736//
b1ab4762
CE
737// Recommended setting: 1 (there is no advantage in using the generic one)
738#define wxUSE_NATIVE_STATUSBAR 1
3b7c589c 739
2b5f62a0
VZ
740// wxToolBar related settings: if wxUSE_TOOLBAR is 0, don't compile any toolbar
741// classes at all. Otherwise, use the native toolbar class unless
8a82c9ec 742// wxUSE_TOOLBAR_NATIVE is 0.
2b5f62a0 743//
b1ab4762 744// Default is 1 for all settings.
2b5f62a0 745//
b1ab4762 746// Recommended setting: 1 for wxUSE_TOOLBAR and wxUSE_TOOLBAR_NATIVE.
2b5f62a0 747#define wxUSE_TOOLBAR 1
b1ab4762 748#define wxUSE_TOOLBAR_NATIVE 1
2b5f62a0 749
2b5f62a0 750// wxNotebook is a control with several "tabs" located on one of its sides. It
b1ab4762 751// may be used to logically organise the data presented to the user instead of
2b5f62a0
VZ
752// putting everything in one huge dialog. It replaces wxTabControl and related
753// classes of wxWin 1.6x.
754//
755// Default is 1.
756//
757// Recommended setting: 1
758#define wxUSE_NOTEBOOK 1
759
e9c0df38
VZ
760// wxListbook control is similar to wxNotebook but uses wxListCtrl instead of
761// the tabs
762//
763// Default is 1.
764//
765// Recommended setting: 1
766#define wxUSE_LISTBOOK 1
767
f5e0b4bc
WS
768// wxChoicebook control is similar to wxNotebook but uses wxChoice instead of
769// the tabs
770//
771// Default is 1.
772//
773// Recommended setting: 1
774#define wxUSE_CHOICEBOOK 1
775
eca15c0d
VZ
776// wxTreebook control is similar to wxNotebook but uses wxTreeCtrl instead of
777// the tabs
778//
779// Default is 1.
780//
781// Recommended setting: 1
782#define wxUSE_TREEBOOK 1
783
e36bdde2
WS
784// wxToolbook control is similar to wxNotebook but uses wxToolBar instead of
785// tabs
786//
787// Default is 1.
788//
789// Recommended setting: 1
790#define wxUSE_TOOLBOOK 1
791
b1ab4762
CE
792// wxTaskBarIcon is a small notification icon shown in the system toolbar or
793// dock.
794//
795// Default is 1.
796//
797// Recommended setting: 1 (but can be set to 0 if you don't need it)
798#define wxUSE_TASKBARICON 1
2b5f62a0 799
e36bdde2
WS
800// wxGrid class
801//
802// Default is 1, set to 0 to cut down compilation time and binaries size if you
803// don't use it.
804//
805// Recommended setting: 1
2b5f62a0 806//
b1ab4762
CE
807#define wxUSE_GRID 1
808
809// wxMiniFrame class: a frame with narrow title bar
810//
811// Default is 1.
812//
813// Recommended setting: 1 (it doesn't cost almost anything)
814#define wxUSE_MINIFRAME 1
2b5f62a0 815
e36bdde2
WS
816// wxComboCtrl and related classes: combobox with custom popup window and
817// not necessarily a listbox.
818//
819// Default is 1.
820//
821// Recommended setting: 1 but can be safely set to 0 except for wxUniv where it
822// it used by wxComboBox
823#define wxUSE_COMBOCTRL 1
824
825// wxOwnerDrawnComboBox is a custom combobox allowing to paint the combobox
826// items.
827//
828// Default is 1.
829//
95a46303
RR
830// Recommended setting: 1 but can be safely set to 0, except where it is
831// needed as a base class for generic wxBitmapComboBox.
e36bdde2
WS
832#define wxUSE_ODCOMBOBOX 1
833
b1ab4762 834// wxBitmapComboBox is a combobox that can have images in front of text items.
95a46303
RR
835//
836// Default is 1.
837//
838// Recommended setting: 1 but can be safely set to 0
839#define wxUSE_BITMAPCOMBOBOX 1
840
f0bb342f
VZ
841// wxRearrangeCtrl is a wxCheckListBox with two buttons allowing to move items
842// up and down in it. It is also used as part of wxRearrangeDialog.
843//
844// Default is 1.
845//
846// Recommended setting: 1 but can be safely set to 0 (currently used only by
847// wxHeaderCtrl)
848#define wxUSE_REARRANGECTRL 1
849
2b5f62a0
VZ
850// ----------------------------------------------------------------------------
851// Miscellaneous GUI stuff
852// ----------------------------------------------------------------------------
853
854// wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar)
855#define wxUSE_ACCEL 1
856
b1ab4762
CE
857// Hotkey support (currently Windows only)
858#define wxUSE_HOTKEY 1
859
2b5f62a0
VZ
860// Use wxCaret: a class implementing a "cursor" in a text control (called caret
861// under Windows).
862//
863// Default is 1.
864//
865// Recommended setting: 1 (can be safely set to 0, not used by the library)
b1ab4762 866#define wxUSE_CARET 1
2b5f62a0 867
715d7d25 868// Use wxDisplay class: it allows enumerating all displays on a system and
b1ab4762
CE
869// their geometries as well as finding the display on which the given point or
870// window lies.
715d7d25 871//
b1ab4762 872// Default is 1.
715d7d25
JS
873//
874// Recommended setting: 1 if you need it, can be safely set to 0 otherwise
b1ab4762 875#define wxUSE_DISPLAY 1
715d7d25 876
2b5f62a0 877// Miscellaneous geometry code: needed for Canvas library
b1ab4762 878#define wxUSE_GEOMETRY 1
2b5f62a0
VZ
879
880// Use wxImageList. This class is needed by wxNotebook, wxTreeCtrl and
881// wxListCtrl.
882//
883// Default is 1.
884//
885// Recommended setting: 1 (set it to 0 if you don't use any of the controls
886// enumerated above, then this class is mostly useless too)
b1ab4762 887#define wxUSE_IMAGLIST 1
2b5f62a0
VZ
888
889// Use wxMenu, wxMenuBar, wxMenuItem.
890//
891// Default is 1.
892//
893// Recommended setting: 1 (can't be disabled under MSW)
b1ab4762 894#define wxUSE_MENUS 1
2b5f62a0 895
3b7c589c
VZ
896// Use wxNotificationMessage.
897//
898// wxNotificationMessage allows to show non-intrusive messages to the user
899// using balloons, banners, popups or whatever is the appropriate method for
900// the current platform.
901//
902// Default is 1.
903//
904// Recommended setting: 1
905#define wxUSE_NOTIFICATION_MESSAGE 1
906
2b5f62a0
VZ
907// Use wxSashWindow class.
908//
909// Default is 1.
910//
911// Recommended setting: 1
b1ab4762 912#define wxUSE_SASH 1
2b5f62a0
VZ
913
914// Use wxSplitterWindow class.
915//
916// Default is 1.
917//
918// Recommended setting: 1
b1ab4762 919#define wxUSE_SPLITTER 1
2b5f62a0
VZ
920
921// Use wxToolTip and wxWindow::Set/GetToolTip() methods.
922//
923// Default is 1.
924//
925// Recommended setting: 1
b1ab4762 926#define wxUSE_TOOLTIPS 1
2b5f62a0
VZ
927
928// wxValidator class and related methods
929#define wxUSE_VALIDATORS 1
930
3b7c589c
VZ
931// Use reference counted ID management: this means that wxWidgets will track
932// the automatically allocated ids (those used when you use wxID_ANY when
933// creating a window, menu or toolbar item &c) instead of just supposing that
934// the program never runs out of them. This is mostly useful only under wxMSW
935// where the total ids range is limited to SHRT_MIN..SHRT_MAX and where
936// long-running programs can run into problems with ids reuse without this. On
937// the other platforms, where the ids have the full int range, this shouldn't
938// be necessary.
939#ifdef __WXMSW__
940#define wxUSE_AUTOID_MANAGEMENT 1
941#else
942#define wxUSE_AUTOID_MANAGEMENT 0
943#endif
944
2b5f62a0
VZ
945// ----------------------------------------------------------------------------
946// common dialogs
947// ----------------------------------------------------------------------------
948
2b5f62a0
VZ
949// On rare occasions (e.g. using DJGPP) may want to omit common dialogs (e.g.
950// file selector, printer dialog). Switching this off also switches off the
951// printing architecture and interactive wxPrinterDC.
952//
953// Default is 1
954//
955// Recommended setting: 1 (unless it really doesn't work)
956#define wxUSE_COMMON_DIALOGS 1
957
958// wxBusyInfo displays window with message when app is busy. Works in same way
959// as wxBusyCursor
b1ab4762 960#define wxUSE_BUSYINFO 1
2b5f62a0
VZ
961
962// Use single/multiple choice dialogs.
963//
964// Default is 1
965//
966// Recommended setting: 1 (used in the library itself)
b1ab4762 967#define wxUSE_CHOICEDLG 1
2b5f62a0
VZ
968
969// Use colour picker dialog
970//
971// Default is 1
972//
973// Recommended setting: 1
b1ab4762 974#define wxUSE_COLOURDLG 1
2b5f62a0
VZ
975
976// wxDirDlg class for getting a directory name from user
977#define wxUSE_DIRDLG 1
978
979// TODO: setting to choose the generic or native one
980
981// Use file open/save dialogs.
982//
983// Default is 1
984//
985// Recommended setting: 1 (used in many places in the library itself)
b1ab4762 986#define wxUSE_FILEDLG 1
2b5f62a0
VZ
987
988// Use find/replace dialogs.
989//
990// Default is 1
991//
992// Recommended setting: 1 (but may be safely set to 0)
b1ab4762 993#define wxUSE_FINDREPLDLG 1
2b5f62a0
VZ
994
995// Use font picker dialog
996//
997// Default is 1
998//
999// Recommended setting: 1 (used in the library itself)
b1ab4762 1000#define wxUSE_FONTDLG 1
2b5f62a0
VZ
1001
1002// Use wxMessageDialog and wxMessageBox.
1003//
1004// Default is 1
1005//
1006// Recommended setting: 1 (used in the library itself)
b1ab4762 1007#define wxUSE_MSGDLG 1
2b5f62a0
VZ
1008
1009// progress dialog class for lengthy operations
1010#define wxUSE_PROGRESSDLG 1
1011
1012// support for startup tips (wxShowTip &c)
1013#define wxUSE_STARTUP_TIPS 1
1014
1015// text entry dialog and wxGetTextFromUser function
1016#define wxUSE_TEXTDLG 1
1017
1018// number entry dialog
1019#define wxUSE_NUMBERDLG 1
1020
1021// splash screen class
1022#define wxUSE_SPLASH 1
1023
1024// wizards
29f82345 1025#define wxUSE_WIZARDDLG 1
2b5f62a0 1026
9fb52312
WS
1027// Compile in wxAboutBox() function showing the standard "About" dialog.
1028//
1029// Default is 1
1030//
1031// Recommended setting: 1 but can be set to 0 to save some space if you don't
1032// use this function
1033#define wxUSE_ABOUTDLG 1
1034
2b5f62a0
VZ
1035// ----------------------------------------------------------------------------
1036// Metafiles support
1037// ----------------------------------------------------------------------------
1038
1039// Windows supports the graphics format known as metafile which is, though not
1040// portable, is widely used under Windows and so is supported by wxWin (under
1041// Windows only, of course). Win16 (Win3.1) used the so-called "Window
1042// MetaFiles" or WMFs which were replaced with "Enhanced MetaFiles" or EMFs in
1043// Win32 (Win9x, NT, 2000). Both of these are supported in wxWin and, by
1044// default, WMFs will be used under Win16 and EMFs under Win32. This may be
1045// changed by setting wxUSE_WIN_METAFILES_ALWAYS to 1 and/or setting
1046// wxUSE_ENH_METAFILE to 0. You may also set wxUSE_METAFILE to 0 to not compile
1047// in any metafile related classes at all.
1048//
1049// Default is 1 for wxUSE_ENH_METAFILE and 0 for wxUSE_WIN_METAFILES_ALWAYS.
1050//
1051// Recommended setting: default or 0 for everything for portable programs.
b1ab4762
CE
1052#define wxUSE_METAFILE 1
1053#define wxUSE_ENH_METAFILE 1
1054#define wxUSE_WIN_METAFILES_ALWAYS 0
2b5f62a0
VZ
1055
1056// ----------------------------------------------------------------------------
1057// Big GUI components
1058// ----------------------------------------------------------------------------
1059
496e80e5
JS
1060// Set to 0 to disable MDI support.
1061//
1062// Requires wxUSE_NOTEBOOK under platforms other than MSW.
1063//
1064// Default is 1.
1065//
1066// Recommended setting: 1, can be safely set to 0.
1067#define wxUSE_MDI 1
1068
2b5f62a0
VZ
1069// Set to 0 to disable document/view architecture
1070#define wxUSE_DOC_VIEW_ARCHITECTURE 1
1071
1072// Set to 0 to disable MDI document/view architecture
81152407
VZ
1073//
1074// Requires wxUSE_MDI && wxUSE_DOC_VIEW_ARCHITECTURE
b1ab4762 1075#define wxUSE_MDI_ARCHITECTURE 1
2b5f62a0
VZ
1076
1077// Set to 0 to disable print/preview architecture code
b1ab4762 1078#define wxUSE_PRINTING_ARCHITECTURE 1
2b5f62a0
VZ
1079
1080// wxHTML sublibrary allows to display HTML in wxWindow programs and much,
1081// much more.
1082//
1083// Default is 1.
1084//
1085// Recommended setting: 1 (wxHTML is great!), set to 0 if you want compile a
1086// smaller library.
b1ab4762 1087#define wxUSE_HTML 1
2b5f62a0 1088
715d7d25
JS
1089// Setting wxUSE_GLCANVAS to 1 enables OpenGL support. You need to have OpenGL
1090// headers and libraries to be able to compile the library with wxUSE_GLCANVAS
1091// set to 1. Note that for some compilers (notably Microsoft Visual C++) you
1092// will need to manually add opengl32.lib and glu32.lib to the list of
1093// libraries linked with your program if you use OpenGL.
1094//
1095// Default is 0.
1096//
1097// Recommended setting: 1 if you intend to use OpenGL, 0 otherwise
b1ab4762 1098#define wxUSE_GLCANVAS 0
2b5f62a0 1099
922bcaff
WS
1100// wxRichTextCtrl allows editing of styled text.
1101//
1102// Default is 1.
1103//
1104// Recommended setting: 1, set to 0 if you want compile a
1105// smaller library.
1106#define wxUSE_RICHTEXT 1
1107
2b5f62a0
VZ
1108// ----------------------------------------------------------------------------
1109// Data transfer
1110// ----------------------------------------------------------------------------
1111
1112// Use wxClipboard class for clipboard copy/paste.
1113//
1114// Default is 1.
1115//
1116// Recommended setting: 1
b1ab4762 1117#define wxUSE_CLIPBOARD 1
2b5f62a0
VZ
1118
1119// Use wxDataObject and related classes. Needed for clipboard and OLE drag and
1120// drop
1121//
1122// Default is 1.
1123//
b1ab4762
CE
1124// Recommended setting: 1
1125#define wxUSE_DATAOBJ 1
2b5f62a0
VZ
1126
1127// Use wxDropTarget and wxDropSource classes for drag and drop (this is
1128// different from "built in" drag and drop in wxTreeCtrl which is always
1129// available). Requires wxUSE_DATAOBJ.
1130//
1131// Default is 1.
1132//
1133// Recommended setting: 1
b1ab4762 1134#define wxUSE_DRAG_AND_DROP 1
2b5f62a0 1135
715d7d25
JS
1136// Use wxAccessible for enhanced and customisable accessibility.
1137// Depends on wxUSE_OLE.
1138//
1139// Default is 0.
1140//
1141// Recommended setting (at present): 0
1142#define wxUSE_ACCESSIBILITY 0
1143
2b5f62a0
VZ
1144// ----------------------------------------------------------------------------
1145// miscellaneous settings
1146// ----------------------------------------------------------------------------
1147
1148// wxSingleInstanceChecker class allows to verify at startup if another program
3b7c589c 1149// instance is running.
2b5f62a0
VZ
1150//
1151// Default is 1
1152//
1153// Recommended setting: 1 (the class is tiny, disabling it won't save much
1154// space)
b1ab4762 1155#define wxUSE_SNGLINST_CHECKER 1
2b5f62a0 1156
2b5f62a0
VZ
1157#define wxUSE_DRAGIMAGE 1
1158
b1ab4762
CE
1159#define wxUSE_IPC 1
1160 // 0 for no interprocess comms
1161#define wxUSE_HELP 1
1162 // 0 for no help facility
2b5f62a0 1163
b1ab4762
CE
1164// Should we use MS HTML help for wxHelpController? If disabled, neither
1165// wxCHMHelpController nor wxBestHelpController are available.
1166//
1167// Default is 1 under MSW, 0 is always used for the other platforms.
1168//
1169// Recommended setting: 1, only set to 0 if you have trouble compiling
1170// wxCHMHelpController (could be a problem with really ancient compilers)
2b5f62a0
VZ
1171#define wxUSE_MS_HTML_HELP 1
1172
b1ab4762
CE
1173
1174// Use wxHTML-based help controller?
aab49a0b 1175#define wxUSE_WXHTML_HELP 1
2b5f62a0 1176
2b5f62a0 1177#define wxUSE_CONSTRAINTS 1
b1ab4762 1178 // 0 for no window layout constraint system
2b5f62a0 1179
b1ab4762
CE
1180#define wxUSE_SPLINES 1
1181 // 0 for no splines
2b5f62a0 1182
b1ab4762
CE
1183#define wxUSE_MOUSEWHEEL 1
1184 // Include mouse wheel support
2b5f62a0
VZ
1185
1186// ----------------------------------------------------------------------------
b1ab4762 1187// wxDC classes for various output formats
2b5f62a0
VZ
1188// ----------------------------------------------------------------------------
1189
1190// Set to 1 for PostScript device context.
b1ab4762 1191#define wxUSE_POSTSCRIPT 0
2b5f62a0
VZ
1192
1193// Set to 1 to use font metric files in GetTextExtent
1194#define wxUSE_AFM_FOR_POSTSCRIPT 1
1195
b1ab4762 1196// Set to 1 to compile in support for wxSVGFileDC, a wxDC subclass which allows
1c4293cb 1197// to create files in SVG (Scalable Vector Graphics) format.
b1ab4762
CE
1198#define wxUSE_SVG 1
1199
2b5f62a0
VZ
1200// ----------------------------------------------------------------------------
1201// other compiler (mis)features
1202// ----------------------------------------------------------------------------
1203
1204// Set this to 0 if your compiler can't cope with omission of prototype
1205// parameters.
1206//
1207// Default is 1.
1208//
1209// Recommended setting: 1 (should never need to set this to 0)
b1ab4762 1210#define REMOVE_UNUSED_ARG 1
2b5f62a0
VZ
1211
1212// VC++ 4.2 and above allows <iostream> and <iostream.h> but you can't mix
396197cb 1213// them. Set this option to 1 to use <iostream.h>, 0 to use <iostream>.
2b5f62a0 1214//
396197cb
VZ
1215// Note that newer compilers (including VC++ 7.1 and later) don't support
1216// wxUSE_IOSTREAMH == 1 and so <iostream> will be used anyhow.
1217//
1218// Default is 0.
2b5f62a0 1219//
396197cb
VZ
1220// Recommended setting: 0, only set to 1 if you use a really old compiler
1221#define wxUSE_IOSTREAMH 0
2b5f62a0
VZ
1222
1223// ----------------------------------------------------------------------------
1224// image format support
1225// ----------------------------------------------------------------------------
1226
1227// wxImage supports many different image formats which can be configured at
1228// compile-time. BMP is always supported, others are optional and can be safely
1229// disabled if you don't plan to use images in such format sometimes saving
1230// substantial amount of code in the final library.
1231//
1232// Some formats require an extra library which is included in wxWin sources
1233// which is mentioned if it is the case.
1234
1235// Set to 1 for wxImage support (recommended).
b1ab4762 1236#define wxUSE_IMAGE 1
2b5f62a0
VZ
1237
1238// Set to 1 for PNG format support (requires libpng). Also requires wxUSE_ZLIB.
b1ab4762 1239#define wxUSE_LIBPNG 1
2b5f62a0
VZ
1240
1241// Set to 1 for JPEG format support (requires libjpeg)
b1ab4762 1242#define wxUSE_LIBJPEG 1
2b5f62a0
VZ
1243
1244// Set to 1 for TIFF format support (requires libtiff)
b1ab4762
CE
1245#define wxUSE_LIBTIFF 1
1246
1247// Set to 1 for TGA format support (loading only)
1248#define wxUSE_TGA 1
2b5f62a0
VZ
1249
1250// Set to 1 for GIF format support
b1ab4762 1251#define wxUSE_GIF 1
2b5f62a0
VZ
1252
1253// Set to 1 for PNM format support
b1ab4762 1254#define wxUSE_PNM 1
2b5f62a0
VZ
1255
1256// Set to 1 for PCX format support
b1ab4762 1257#define wxUSE_PCX 1
2b5f62a0
VZ
1258
1259// Set to 1 for IFF format support (Amiga format)
b1ab4762 1260#define wxUSE_IFF 0
2b5f62a0
VZ
1261
1262// Set to 1 for XPM format support
b1ab4762 1263#define wxUSE_XPM 1
2b5f62a0
VZ
1264
1265// Set to 1 for MS Icons and Cursors format support
b1ab4762 1266#define wxUSE_ICO_CUR 1
2b5f62a0
VZ
1267
1268// Set to 1 to compile in wxPalette class
b1ab4762
CE
1269#define wxUSE_PALETTE 1
1270
1271// ----------------------------------------------------------------------------
1272// wxUniversal-only options
1273// ----------------------------------------------------------------------------
1274
1275// Set to 1 to enable compilation of all themes, this is the default
1276#define wxUSE_ALL_THEMES 1
1277
1278// Set to 1 to enable the compilation of individual theme if wxUSE_ALL_THEMES
1279// is unset, if it is set these options are not used; notice that metal theme
1280// uses Win32 one
1281#define wxUSE_THEME_GTK 0
1282#define wxUSE_THEME_METAL 0
1283#define wxUSE_THEME_MONO 0
1284#define wxUSE_THEME_WIN32 0
1285
2b5f62a0 1286
3b7c589c
VZ
1287/* --- end common options --- */
1288
1289/* --- start MSW options --- */
2b5f62a0
VZ
1290// ----------------------------------------------------------------------------
1291// Windows-only settings
1292// ----------------------------------------------------------------------------
b1ab4762
CE
1293
1294// Set wxUSE_UNICODE_MSLU to 1 if you're compiling wxWidgets in Unicode mode
1295// and want to run your programs under Windows 9x and not only NT/2000/XP.
1296// This setting enables use of unicows.dll from MSLU (MS Layer for Unicode, see
1297// http://www.microsoft.com/globaldev/handson/dev/mslu_announce.mspx). Note
1298// that you will have to modify the makefiles to include unicows.lib import
1299// library as the first library (see installation instructions in install.txt
1300// to learn how to do it when building the library or samples).
1301//
1302// If your compiler doesn't have unicows.lib, you can get a version of it at
1303// http://libunicows.sourceforge.net
1304//
1305// Default is 0
1306//
1307// Recommended setting: 0 (1 if you want to deploy Unicode apps on 9x systems)
1308#ifndef wxUSE_UNICODE_MSLU
1309 #define wxUSE_UNICODE_MSLU 0
1310#endif
2b5f62a0 1311
77ffb593 1312// Set this to 1 if you want to use wxWidgets and MFC in the same program. This
2b5f62a0
VZ
1313// will override some other settings (see below)
1314//
1315// Default is 0.
1316//
1317// Recommended setting: 0 unless you really have to use MFC
b1ab4762 1318#define wxUSE_MFC 0
2b5f62a0
VZ
1319
1320// Set this to 1 for generic OLE support: this is required for drag-and-drop,
1321// clipboard, OLE Automation. Only set it to 0 if your compiler is very old and
1322// can't compile/doesn't have the OLE headers.
1323//
1324// Default is 1.
1325//
b1ab4762
CE
1326// Recommended setting: 1
1327#define wxUSE_OLE 1
1328
1329// Set this to 1 to enable wxAutomationObject class.
1330//
1331// Default is 1.
1332//
1333// Recommended setting: 1 if you need to control other applications via OLE
1334// Automation, can be safely set to 0 otherwise
1335#define wxUSE_OLE_AUTOMATION 1
1336
1337// Set this to 1 to enable wxActiveXContainer class allowing to embed OLE
1338// controls in wx.
1339//
1340// Default is 1.
1341//
1342// Recommended setting: 1, required by wxMediaCtrl
1343#define wxUSE_ACTIVEX 1
1344
1345// wxDC cacheing implementation
1346#define wxUSE_DC_CACHEING 1
1347
1348// Set this to 1 to enable wxDIB class used internally for manipulating
1349// wxBitmap data.
1350//
1351// Default is 1, set it to 0 only if you don't use wxImage neither
1352//
1353// Recommended setting: 1 (without it conversion to/from wxImage won't work)
1354#define wxUSE_WXDIB 1
2b5f62a0 1355
e6bdaaad
MW
1356// Set to 0 to disable PostScript print/preview architecture code under Windows
1357// (just use Windows printing).
b1ab4762
CE
1358#define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 1
1359
1360// Set this to 1 to compile in wxRegKey class.
1361//
1362// Default is 1
1363//
1364// Recommended setting: 1, this is used internally by wx in a few places
1365#define wxUSE_REGKEY 1
e6bdaaad 1366
2b5f62a0
VZ
1367// Set this to 1 to use RICHEDIT controls for wxTextCtrl with style wxTE_RICH
1368// which allows to put more than ~32Kb of text in it even under Win9x (NT
1369// doesn't have such limitation).
1370//
1371// Default is 1 for compilers which support it
1372//
1373// Recommended setting: 1, only set it to 0 if your compiler doesn't have
1374// or can't compile <richedit.h>
b1ab4762 1375#define wxUSE_RICHEDIT 1
2b5f62a0 1376
b1ab4762
CE
1377// Set this to 1 to use extra features of richedit v2 and later controls
1378//
1379// Default is 1 for compilers which support it
1380//
1381// Recommended setting: 1
1382#define wxUSE_RICHEDIT2 1
2b5f62a0 1383
b1ab4762
CE
1384// Set this to 1 to enable support for the owner-drawn menu and listboxes. This
1385// is required by wxUSE_CHECKLISTBOX.
2b5f62a0
VZ
1386//
1387// Default is 1.
1388//
1389// Recommended setting: 1, set to 0 for a small library size reduction
b1ab4762 1390#define wxUSE_OWNER_DRAWN 1
2b5f62a0 1391
3b7c589c
VZ
1392// Set this to 1 to enable MSW-specific wxTaskBarIcon::ShowBalloon() method. It
1393// is required by native wxNotificationMessage implementation.
1394//
1395// Default is 1 but disabled in wx/msw/chkconf.h if SDK is too old to contain
1396// the necessary declarations.
1397//
1398// Recommended setting: 1, set to 0 for a tiny library size reduction
1399#define wxUSE_TASKBARICON_BALLOONS 1
1400
b1ab4762
CE
1401// Set to 1 to compile MS Windows XP theme engine support
1402#define wxUSE_UXTHEME 1
1403
1404// Set to 1 to use InkEdit control (Tablet PC), if available
1405#define wxUSE_INKEDIT 0
1406
1407// Set to 1 to enable .INI files based wxConfig implementation (wxIniConfig)
ee64d4f3 1408//
b1ab4762 1409// Default is 0.
ee64d4f3 1410//
b1ab4762
CE
1411// Recommended setting: 0, nobody uses .INI files any more
1412#define wxUSE_INICONF 0
2b5f62a0 1413
2b5f62a0 1414// ----------------------------------------------------------------------------
b1ab4762 1415// Generic versions of native controls
2b5f62a0
VZ
1416// ----------------------------------------------------------------------------
1417
b1ab4762
CE
1418// Set this to 1 to be able to use wxDatePickerCtrlGeneric in addition to the
1419// native wxDatePickerCtrl
1420//
1421// Default is 0.
1422//
1423// Recommended setting: 0, this is mainly used for testing
1424#define wxUSE_DATEPICKCTRL_GENERIC 0
1425
1426// ----------------------------------------------------------------------------
1427// Crash debugging helpers
1428// ----------------------------------------------------------------------------
2b5f62a0 1429
b1ab4762
CE
1430// Set this to 1 to be able to use wxCrashReport::Generate() to create mini
1431// dumps of your program when it crashes (or at any other moment)
1432//
1433// Default is 1 if supported by the compiler (VC++ and recent BC++ only).
1434//
1435// Recommended setting: 1, set to 0 if your programs never crash
1436#define wxUSE_CRASHREPORT 1
3b7c589c
VZ
1437/* --- end MSW options --- */
1438
1439/* --- start wxUniv options --- */
1440// ----------------------------------------------------------------------------
1441// wxUniversal-only options
1442// ----------------------------------------------------------------------------
1443
1444// Set to 1 to enable compilation of all themes, this is the default
1445#define wxUSE_ALL_THEMES 1
1446
1447// Set to 1 to enable the compilation of individual theme if wxUSE_ALL_THEMES
1448// is unset, if it is set these options are not used; notice that metal theme
1449// uses Win32 one
1450#define wxUSE_THEME_GTK 0
1451#define wxUSE_THEME_METAL 0
1452#define wxUSE_THEME_MONO 0
1453#define wxUSE_THEME_WIN32 0
1454/* --- end wxUniv options --- */
1455
1456#endif // _WX_SETUP_H_
1457