]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/setup0.h
On screens with restricted space, it's useful to be able to add controls
[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
65571936 9// Licence: wxWindows licence
9bd6a503
VZ
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_SETUP_H_
13#define _WX_SETUP_H_
14
24ab5c03 15/* --- start common options --- */
73974df1
VZ
16// ----------------------------------------------------------------------------
17// global settings
18// ----------------------------------------------------------------------------
9bd6a503 19
f6bcfd97
BP
20// define this to 0 when building wxBase library - this can also be done from
21// makefile/project file overriding the value here
22#ifndef wxUSE_GUI
23 #define wxUSE_GUI 1
24#endif // wxUSE_GUI
1f112209 25
6d167489
VZ
26// ----------------------------------------------------------------------------
27// compatibility settings
28// ----------------------------------------------------------------------------
29
dee1a63f 30// This setting determines the compatibility with 2.4 API: set it to 1 to
44cf9b50 31// enable it but please consider updating your code instead.
134ecc85
VZ
32//
33// Default is 0
34//
35// Recommended setting: 0 (please update your code)
dee1a63f 36#define WXWIN_COMPATIBILITY_2_4 0
134ecc85 37
dee1a63f 38// This setting determines the compatibility with 2.6 API: set it to 0 to
2b5f62a0 39// flag all cases of using deprecated functions.
874efd13 40//
134ecc85
VZ
41// Default is 1 but please try building your code with 0 as the default will
42// change to 0 in the next version and the deprecated functions will disappear
43// in the version after it completely.
874efd13 44//
2b5f62a0 45// Recommended setting: 0 (please update your code)
dee1a63f 46#define WXWIN_COMPATIBILITY_2_6 1
874efd13 47
ed6dd18a
VZ
48// MSW-only: Set to 0 for accurate dialog units, else 1 for old behaviour when
49// default system font is used for wxWindow::GetCharWidth/Height() instead of
50// the current font.
3ca6a5f0 51//
ed6dd18a 52// Default is 0
3ca6a5f0 53//
ed6dd18a
VZ
54// Recommended setting: 0
55#define wxDIALOG_UNIT_COMPATIBILITY 0
3ca6a5f0 56
3b415ba4
VZ
57// ----------------------------------------------------------------------------
58// debugging settings
59// ----------------------------------------------------------------------------
60
61// Generic comment about debugging settings: they are very useful if you don't
62// use any other memory leak detection tools such as Purify/BoundsChecker, but
63// are probably redundant otherwise. Also, Visual C++ CRT has the same features
77ffb593 64// as wxWidgets memory debugging subsystem built in since version 5.0 and you
3b415ba4
VZ
65// may prefer to use it instead of built in memory debugging code because it is
66// faster and more fool proof.
67//
68// Using VC++ CRT memory debugging is enabled by default in debug mode
69// (__WXDEBUG__) if wxUSE_GLOBAL_MEMORY_OPERATORS is *not* enabled (i.e. is 0)
70// and if __NO_VC_CRTDBG__ is not defined.
71
72// If 1, enables wxDebugContext, for writing error messages to file, etc. If
62402193 73// __WXDEBUG__ is not defined, will still use the normal memory operators.
3b415ba4 74//
62402193 75// Default is 0
3b415ba4 76//
62402193
VZ
77// Recommended setting: 0
78#define wxUSE_DEBUG_CONTEXT 0
3b415ba4
VZ
79
80// If 1, enables debugging versions of wxObject::new and wxObject::delete *IF*
81// __WXDEBUG__ is also defined.
82//
83// WARNING: this code may not work with all architectures, especially if
84// alignment is an issue. This switch is currently ignored for mingw / cygwin
85//
62402193 86// Default is 0
3b415ba4 87//
62402193
VZ
88// Recommended setting: 1 if you are not using a memory debugging tool, else 0
89#define wxUSE_MEMORY_TRACING 0
3b415ba4
VZ
90
91// In debug mode, cause new and delete to be redefined globally.
62402193
VZ
92// If this causes problems (e.g. link errors which is a common problem
93// especially if you use another library which also redefines the global new
94// and delete), set this to 0.
3b415ba4
VZ
95// This switch is currently ignored for mingw / cygwin
96//
62402193 97// Default is 0
3b415ba4 98//
62402193
VZ
99// Recommended setting: 0
100#define wxUSE_GLOBAL_MEMORY_OPERATORS 0
3b415ba4
VZ
101
102// In debug mode, causes new to be defined to be WXDEBUG_NEW (see object.h). If
103// this causes problems (e.g. link errors), set this to 0. You may need to set
104// this to 0 if using templates (at least for VC++). This switch is currently
ba14d986 105// ignored for mingw / cygwin / CodeWarrior
3b415ba4 106//
62402193 107// Default is 0
3b415ba4 108//
62402193
VZ
109// Recommended setting: 0
110#define wxUSE_DEBUG_NEW_ALWAYS 0
3b415ba4
VZ
111
112// wxHandleFatalExceptions() may be used to catch the program faults at run
113// time and, instead of terminating the program with a usual GPF message box,
114// call the user-defined wxApp::OnFatalException() function. If you set
115// wxUSE_ON_FATAL_EXCEPTION to 0, wxHandleFatalExceptions() will not work.
116//
117// This setting is for Win32 only and can only be enabled if your compiler
118// supports Win32 structured exception handling (currently only VC++ does)
119//
b39c4812 120// Default is 1
3b415ba4
VZ
121//
122// Recommended setting: 1 if your compiler supports it.
6cbe14ba 123#define wxUSE_ON_FATAL_EXCEPTION 1
3b415ba4 124
eaff0f0d 125// Set this to 1 to be able to generate a human-readable (unlike
88783bc4 126// machine-readable minidump created by wxCrashReport::Generate()) stack back
eaff0f0d
VZ
127// trace when your program crashes using wxStackWalker
128//
b39c4812 129// Default is 1 if supported by the compiler.
eaff0f0d
VZ
130//
131// Recommended setting: 1, set to 0 if your programs never crash
132#define wxUSE_STACKWALKER 1
133
36b6448c
VZ
134// Set this to 1 to compile in wxDebugReport class which allows you to create
135// and optionally upload to your web site a debug report consisting of back
136// trace of the crash (if wxUSE_STACKWALKER == 1) and other information.
137//
138// Default is 1 if supported by the compiler.
139//
0978fcb3
VZ
140// Recommended setting: 1, it is compiled into a separate library so there
141// is no overhead if you don't use it
142#define wxUSE_DEBUGREPORT 1
36b6448c 143
f6bcfd97
BP
144// ----------------------------------------------------------------------------
145// Unicode support
146// ----------------------------------------------------------------------------
147
77ffb593 148// Set wxUSE_UNICODE to 1 to compile wxWidgets in Unicode mode: wxChar will be
f6bcfd97
BP
149// defined as wchar_t, wxString will use Unicode internally. If you set this
150// to 1, you must use wxT() macro for all literal strings in the program.
151//
e74563e4
VS
152// Unicode is currently only fully supported under Windows NT/2000/XP
153// (Windows 9x doesn't support it and the programs compiled in Unicode mode
44cf9b50 154// will not run under 9x -- but see wxUSE_UNICODE_MSLU below).
f6bcfd97
BP
155//
156// Default is 0
157//
db3272a0 158// Recommended setting: 0 (unless you only plan to use Windows NT/2000/XP)
ce6cea68
VS
159#ifndef wxUSE_UNICODE
160 #define wxUSE_UNICODE 0
161#endif
f6bcfd97
BP
162
163// Setting wxUSE_WCHAR_T to 1 gives you some degree of Unicode support without
164// compiling the program in Unicode mode. More precisely, it will be possible
165// to construct wxString from a wide (Unicode) string and convert any wxString
166// to Unicode.
167//
168// Default is 1
169//
170// Recommended setting: 1
171#define wxUSE_WCHAR_T 1
172
3b415ba4
VZ
173// ----------------------------------------------------------------------------
174// global features
175// ----------------------------------------------------------------------------
176
4199367e
VZ
177// Compile library in exception-safe mode? If set to 1, the library will try to
178// behave correctly in presence of exceptions (even though it still will not
179// use the exceptions itself) and notify the user code about any unhandled
180// exceptions. If set to 0, propagation of the exceptions through the library
181// code will lead to undefined behaviour -- but the code itself will be
182// slightly smaller and faster.
183//
b39c4812
VZ
184// Note that like wxUSE_THREADS this option is automatically set to 0 if
185// wxNO_EXCEPTIONS is defined.
186//
4199367e
VZ
187// Default is 1
188//
189// Recommended setting: depends on whether you intend to use C++ exceptions
190// in your own code (1 if you do, 0 if you don't)
191#define wxUSE_EXCEPTIONS 1
192
4ef29fb5
JS
193// Set wxUSE_EXTENDED_RTTI to 1 to use extended RTTI
194//
195// Default is 0
196//
28999ba6 197// Recommended setting: 0 (this is still work in progress...)
4ef29fb5
JS
198#define wxUSE_EXTENDED_RTTI 0
199
df5168c4
MB
200// Set wxUSE_STL to 1 to derive wxList(Foo) and wxArray(Foo) from
201// std::list<Foo*> and std::vector<Foo*>, with a compatibility interface,
202// and for wxHashMap to be implemented with templates.
203//
204// Default is 0
205//
206// Recommended setting: YMMV
207#define wxUSE_STL 0
208
3b415ba4
VZ
209// Support for message/error logging. This includes wxLogXXX() functions and
210// wxLog and derived classes. Don't set this to 0 unless you really know what
211// you are doing.
212//
213// Default is 1
214//
215// Recommended setting: 1 (always)
216#define wxUSE_LOG 1
217
874efd13 218// Recommended setting: 1
dd8b2f4a
JS
219#define wxUSE_LOGWINDOW 1
220
874efd13 221// Recommended setting: 1
dd8b2f4a
JS
222#define wxUSE_LOGGUI 1
223
874efd13 224// Recommended setting: 1
3e6e2754
JS
225#define wxUSE_LOG_DIALOG 1
226
2b5f62a0
VZ
227// Support for command line parsing using wxCmdLineParser class.
228//
229// Default is 1
230//
231// Recommended setting: 1 (can be set to 0 if you don't use the cmd line)
232#define wxUSE_CMDLINE_PARSER 1
233
3b415ba4
VZ
234// Support for multithreaded applications: if 1, compile in thread classes
235// (thread.h) and make the library a bit more thread safe. Although thread
236// support is quite stable by now, you may still consider recompiling the
237// library without it if you have no use for it - this will result in a
238// somewhat smaller and faster operation.
239//
b39c4812
VZ
240// Notice that if wxNO_THREADS is defined, wxUSE_THREADS is automatically reset
241// to 0 in wx/chkconf.h, so, for example, if you set USE_THREADS to 0 in
b39c4812 242// build/msw/config.* file this value will have no effect.
3b415ba4
VZ
243//
244// Default is 1
245//
246// Recommended setting: 0 unless you do plan to develop MT applications
247#define wxUSE_THREADS 1
248
77ffb593 249// If enabled (1), compiles wxWidgets streams classes
3b415ba4
VZ
250#define wxUSE_STREAMS 1
251
668d55c9 252// Use standard C++ streams if 1. If 0, use wxWin streams implementation only.
3b415ba4
VZ
253#define wxUSE_STD_IOSTREAM 0
254
2bb06220 255// Enable conversion to standard C++ string if 1.
668d55c9
RR
256#define wxUSE_STD_STRING 0
257
73974df1 258// ----------------------------------------------------------------------------
40973ea5 259// non GUI features selection
73974df1
VZ
260// ----------------------------------------------------------------------------
261
40973ea5
VZ
262// Set wxUSE_LONGLONG to 1 to compile the wxLongLong class. This is a 64 bit
263// integer which is implemented in terms of native 64 bit integers if any or
264// uses emulation otherwise.
265//
266// This class is required by wxDateTime and so you should enable it if you want
267// to use wxDateTime. For most modern platforms, it will use the native 64 bit
268// integers in which case (almost) all of its functions are inline and it
269// almost does not take any space, so there should be no reason to switch it
270// off.
271//
272// Recommended setting: 1
273#define wxUSE_LONGLONG 1
274
1e6feb95
VZ
275// Set wxUSE_(F)FILE to 1 to compile wx(F)File classes. wxFile uses low level
276// POSIX functions for file access, wxFFile uses ANSI C stdio.h functions.
277//
278// Default is 1
279//
280// Recommended setting: 1 (wxFile is highly recommended as it is required by
281// i18n code, wxFileConfig and others)
282#define wxUSE_FILE 1
283#define wxUSE_FFILE 1
284
05815ab3
VZ
285// Use wxFSVolume class providing access to the configured/active mount points
286//
287// Default is 1
288//
289// Recommended setting: 1 (but may be safely disabled if you don't use it)
290#define wxUSE_FSVOLUME 1
291
07158944
VZ
292// Use wxStandardPaths class which allows to retrieve some standard locations
293// in the file system
294//
295// Default is 1
296//
297// Recommended setting: 1 (may be disabled to save space, but not much)
298#define wxUSE_STDPATHS 1
299
a3a584a7
VZ
300// use wxTextBuffer class: required by wxTextFile
301#define wxUSE_TEXTBUFFER 1
302
303// use wxTextFile class: requires wxFile and wxTextBuffer, required by
304// wxFileConfig
1e6feb95
VZ
305#define wxUSE_TEXTFILE 1
306
307// i18n support: _() macro, wxLocale class. Requires wxTextFile.
308#define wxUSE_INTL 1
309
874efd13 310// Set wxUSE_DATETIME to 1 to compile the wxDateTime and related classes which
40973ea5
VZ
311// allow to manipulate dates, times and time intervals. wxDateTime replaces the
312// old wxTime and wxDate classes which are still provided for backwards
313// compatibility (and implemented in terms of wxDateTime).
314//
315// Note that this class is relatively new and is still officially in alpha
316// stage because some features are not yet (fully) implemented. It is already
317// quite useful though and should only be disabled if you are aiming at
318// absolutely minimal version of the library.
319//
320// Requires: wxUSE_LONGLONG
321//
874efd13
VZ
322// Default is 1
323//
40973ea5 324// Recommended setting: 1
e421922f
VZ
325#define wxUSE_DATETIME 1
326
1e6feb95
VZ
327// Set wxUSE_TIMER to 1 to compile wxTimer class
328//
329// Default is 1
330//
331// Recommended setting: 1
332#define wxUSE_TIMER 1
333
334// Use wxStopWatch clas.
335//
336// Default is 1
337//
338// Recommended setting: 1 (needed by wxSocket)
339#define wxUSE_STOPWATCH 1
340
16193c2b
VZ
341// Setting wxUSE_CONFIG to 1 enables the use of wxConfig and related classes
342// which allow the application to store its settings in the persistent
343// storage. Setting this to 1 will also enable on-demand creation of the
344// global config object in wxApp.
345//
346// See also wxUSE_CONFIG_NATIVE below.
347//
348// Recommended setting: 1
1e6feb95 349#define wxUSE_CONFIG 1
16193c2b
VZ
350
351// If wxUSE_CONFIG is 1, you may choose to use either the native config
352// classes under Windows (using .INI files under Win16 and the registry under
353// Win32) or the portable text file format used by the config classes under
354// Unix.
355//
356// Default is 1 to use native classes. Note that you may still use
357// wxFileConfig even if you set this to 1 - just the config object created by
358// default for the applications needs will be a wxRegConfig or wxIniConfig and
359// not wxFileConfig.
360//
361// Recommended setting: 1
362#define wxUSE_CONFIG_NATIVE 1
363
bf84b0be
VZ
364// If wxUSE_DIALUP_MANAGER is 1, compile in wxDialUpManager class which allows
365// to connect/disconnect from the network and be notified whenever the dial-up
0b9ab0bd 366// network connection is established/terminated. Requires wxUSE_DYNAMIC_LOADER.
bf84b0be
VZ
367//
368// Default is 1.
369//
370// Recommended setting: 1
106f0395 371#define wxUSE_DIALUP_MANAGER 1
bf84b0be 372
0b9ab0bd 373// Compile in classes for run-time DLL loading and function calling.
3ca6a5f0 374// Required by wxUSE_DIALUP_MANAGER.
3b415ba4
VZ
375//
376// This setting is for Win32 only
377//
378// Default is 1.
379//
380// Recommended setting: 1
466367be 381#define wxUSE_DYNLIB_CLASS 1
3b415ba4 382
466367be 383// experimental, don't use for now
abad5367 384#define wxUSE_DYNAMIC_LOADER 1
b4a5319e 385
3b415ba4
VZ
386// Set to 1 to use socket classes
387#define wxUSE_SOCKETS 1
388
3ca6a5f0 389// Set to 1 to enable virtual file systems (required by wxHTML)
3b415ba4 390#define wxUSE_FILESYSTEM 1
3ca6a5f0
BP
391
392// Set to 1 to enable virtual ZIP filesystem (requires wxUSE_FILESYSTEM)
3b415ba4 393#define wxUSE_FS_ZIP 1
3ca6a5f0
BP
394
395// Set to 1 to enable virtual Internet filesystem (requires wxUSE_FILESYSTEM)
3b415ba4
VZ
396#define wxUSE_FS_INET 1
397
81f90336 398// wxArchive classes for accessing archives such as zip and tar
9e8e867f 399#define wxUSE_ARCHIVE_STREAMS 1
81f90336 400
3ca6a5f0 401// Set to 1 to compile wxZipInput/OutputStream classes.
3b415ba4
VZ
402#define wxUSE_ZIPSTREAM 1
403
3ca6a5f0 404// Set to 1 to compile wxZlibInput/OutputStream classes. Also required by
477a6238 405// wxUSE_LIBPNG
3ca6a5f0
BP
406#define wxUSE_ZLIB 1
407
3ca6a5f0
BP
408// If enabled, the code written by Apple will be used to write, in a portable
409// way, float on the disk. See extended.c for the license which is different
77ffb593 410// from wxWidgets one.
3ca6a5f0
BP
411//
412// Default is 1.
413//
414// Recommended setting: 1 unless you don't like the license terms (unlikely)
3b415ba4 415#define wxUSE_APPLE_IEEE 1
3b415ba4 416
29104849
RD
417// Joystick support class
418#define wxUSE_JOYSTICK 1
419
1e6feb95
VZ
420// wxFontMapper class
421#define wxUSE_FONTMAP 1
b9e5acef 422
1e6feb95
VZ
423// wxMimeTypesManager class
424#define wxUSE_MIMETYPE 1
29104849 425
a5d46b73
VZ
426// wxProtocol and related classes: if you want to use either of wxFTP, wxHTTP
427// or wxURL you need to set this to 1.
428//
429// Default is 1.
430//
431// Recommended setting: 1
432#define wxUSE_PROTOCOL 1
433
434// The settings for the individual URL schemes
435#define wxUSE_PROTOCOL_FILE 1
436#define wxUSE_PROTOCOL_FTP 1
437#define wxUSE_PROTOCOL_HTTP 1
438
439// Define this to use wxURL class.
440#define wxUSE_URL 1
874efd13 441
25959b95
VZ
442// Define this to use native platform url and protocol support.
443// Currently valid only for MS-Windows.
444// Note: if you set this to 1, you can open ftp/http/gopher sites
445// and obtain a valid input stream for these sites
446// even when you set wxUSE_PROTOCOL_FTP/HTTP to 0.
447// Doing so reduces the code size.
448//
449// This code is experimental and subject to change.
450#define wxUSE_URL_NATIVE 0
451
874efd13
VZ
452// Support for regular expression matching via wxRegEx class: enable this to
453// use POSIX regular expressions in your code. You need to compile regex
454// library from src/regex to use it under Windows.
455//
456// Default is 0
457//
458// Recommended setting: 1 if your compiler supports it, if it doesn't please
459// contribute us a makefile for src/regex for it
5638d705 460#define wxUSE_REGEX 1
874efd13 461
a5d46b73
VZ
462// wxSystemOptions class
463#define wxUSE_SYSTEM_OPTIONS 1
464
002ed9af
VS
465// wxSound class
466#define wxUSE_SOUND 1
874efd13 467
c8a50408
RN
468// Use wxMediaCtrl
469//
470// Default is 1.
471//
472// Recommended setting: 1
473#define wxUSE_MEDIACTRL 1
474
dccd9b0c
RN
475// Use GStreamer for Unix (req a lot of dependancies)
476//
477// Default is 0
478//
479// Recommended setting: 1 (wxMediaCtrl won't work by default without it)
480#define wxUSE_GSTREAMER 0
481
f33cb209
RN
482// Use wxWidget's XRC XML-based resource system. Recommended.
483//
484// Default is 1
485//
84fe931d 486// Recommended setting: 1 (requires wxUSE_XML)
f33cb209
RN
487#define wxUSE_XRC 1
488
27b0c286
VS
489// XML parsing classes. Note that their API will change in the future, so
490// using wxXmlDocument and wxXmlNode in your app is not recommended.
491//
492// Default is 1
493//
f33cb209
RN
494// Recommended setting: 1 (required by XRC)
495#if wxUSE_XRC
496# define wxUSE_XML 1
497#else
498# define wxUSE_XML 0
499#endif
27b0c286 500
bf84b0be 501// ----------------------------------------------------------------------------
1e6feb95 502// Individual GUI controls
bf84b0be
VZ
503// ----------------------------------------------------------------------------
504
1e6feb95
VZ
505// You must set wxUSE_CONTROLS to 1 if you are using any controls at all
506// (without it, wxControl class is not compiled)
507//
508// Default is 1
509//
510// Recommended setting: 1 (don't change except for very special programs)
511#define wxUSE_CONTROLS 1
512
f38bcae5
VZ
513// wxPopupWindow class is a top level transient window. It is currently used
514// to implement wxTipWindow
1e6feb95 515//
f38bcae5 516// Default is 1
1e6feb95 517//
f38bcae5
VZ
518// Recommended setting: 1 (may be set to 0 if you don't wxUSE_TIPWINDOW)
519#define wxUSE_POPUPWIN 1
520
521// wxTipWindow allows to implement the custom tooltips, it is used by the
522// context help classes. Requires wxUSE_POPUPWIN.
523//
524// Default is 1
525//
526// Recommended setting: 1 (may be set to 0)
527#define wxUSE_TIPWINDOW 1
1e6feb95 528
77ffb593 529// Each of the settings below corresponds to one wxWidgets control. They are
1e6feb95
VZ
530// all switched on by default but may be disabled if you are sure that your
531// program (including any standard dialogs it can show!) doesn't need them and
532// if you desperately want to save some space. If you use any of these you must
533// set wxUSE_CONTROLS as well.
534//
535// Default is 1
536//
537// Recommended setting: 1
538#define wxUSE_BUTTON 1 // wxButton
539#define wxUSE_BMPBUTTON 1 // wxBitmapButton
540#define wxUSE_CALENDARCTRL 1 // wxCalendarCtrl
541#define wxUSE_CHECKBOX 1 // wxCheckBox
542#define wxUSE_CHECKLISTBOX 1 // wxCheckListBox (requires wxUSE_OWNER_DRAWN)
543#define wxUSE_CHOICE 1 // wxChoice
544#define wxUSE_COMBOBOX 1 // wxComboBox
6d1fbf78 545#define wxUSE_DATEPICKCTRL 1 // wxDatePickerCtrl
1e6feb95
VZ
546#define wxUSE_GAUGE 1 // wxGauge
547#define wxUSE_LISTBOX 1 // wxListBox
548#define wxUSE_LISTCTRL 1 // wxListCtrl
549#define wxUSE_RADIOBOX 1 // wxRadioBox
550#define wxUSE_RADIOBTN 1 // wxRadioButton
551#define wxUSE_SCROLLBAR 1 // wxScrollBar
552#define wxUSE_SLIDER 1 // wxSlider
553#define wxUSE_SPINBTN 1 // wxSpinButton
554#define wxUSE_SPINCTRL 1 // wxSpinCtrl
555#define wxUSE_STATBOX 1 // wxStaticBox
556#define wxUSE_STATLINE 1 // wxStaticLine
557#define wxUSE_STATTEXT 1 // wxStaticText
558#define wxUSE_STATBMP 1 // wxStaticBitmap
559#define wxUSE_TEXTCTRL 1 // wxTextCtrl
560#define wxUSE_TOGGLEBTN 1 // requires wxButton
561#define wxUSE_TREECTRL 1 // wxTreeCtrl
b910a8ad 562#define wxUSE_DATAVIEWCTRL 1 // wxDataViewCtrl
1e6feb95
VZ
563
564// Use a status bar class? Depending on the value of wxUSE_NATIVE_STATUSBAR
565// below either wxStatusBar95 or a generic wxStatusBar will be used.
566//
567// Default is 1
568//
569// Recommended setting: 1
570#define wxUSE_STATUSBAR 1
571
572// Two status bar implementations are available under Win32: the generic one
573// or the wrapper around native control. For native look and feel the native
574// version should be used.
575//
c67b4daf 576// Default is 1 for the platforms where native status bar is supported.
1e6feb95
VZ
577//
578// Recommended setting: 1 (there is no advantage in using the generic one)
579#define wxUSE_NATIVE_STATUSBAR 1
580
bf84b0be
VZ
581// wxToolBar related settings: if wxUSE_TOOLBAR is 0, don't compile any toolbar
582// classes at all. Otherwise, use the native toolbar class unless
8a82c9ec 583// wxUSE_TOOLBAR_NATIVE is 0.
bf84b0be
VZ
584//
585// Default is 1 for all settings.
586//
8a82c9ec 587// Recommended setting: 1 for wxUSE_TOOLBAR and wxUSE_TOOLBAR_NATIVE.
bf84b0be
VZ
588#define wxUSE_TOOLBAR 1
589#define wxUSE_TOOLBAR_NATIVE 1
bf84b0be 590
b3402d0d 591// wxNotebook is a control with several "tabs" located on one of its sides. It
95ae6d5f 592// may be used to logically organise the data presented to the user instead of
b3402d0d
VZ
593// putting everything in one huge dialog. It replaces wxTabControl and related
594// classes of wxWin 1.6x.
595//
596// Default is 1.
597//
598// Recommended setting: 1
599#define wxUSE_NOTEBOOK 1
600
e9c0df38
VZ
601// wxListbook control is similar to wxNotebook but uses wxListCtrl instead of
602// the tabs
603//
604// Default is 1.
605//
606// Recommended setting: 1
607#define wxUSE_LISTBOOK 1
608
f5e0b4bc
WS
609// wxChoicebook control is similar to wxNotebook but uses wxChoice instead of
610// the tabs
611//
612// Default is 1.
613//
614// Recommended setting: 1
615#define wxUSE_CHOICEBOOK 1
616
eca15c0d
VZ
617// wxTreebook control is similar to wxNotebook but uses wxTreeCtrl instead of
618// the tabs
619//
620// Default is 1.
621//
622// Recommended setting: 1
623#define wxUSE_TREEBOOK 1
624
f4edf138
JS
625// wxToolbook control is similar to wxNotebook but uses wxToolBar instead of
626// tabs
627//
628// Default is 1.
629//
630// Recommended setting: 1
631#define wxUSE_TOOLBOOK 1
632
1e6feb95
VZ
633// wxTabDialog is a generic version of wxNotebook but it is incompatible with
634// the new class. It shouldn't be used in new code.
3b415ba4 635//
1e6feb95 636// Default is 0.
3b415ba4 637//
1e6feb95
VZ
638// Recommended setting: 0 (use wxNotebook)
639#define wxUSE_TAB_DIALOG 0
ff2d113e 640
dd74a7ad 641// wxGrid class
ff2d113e 642//
c67b4daf
VZ
643// Default is 1, set to 0 to cut down compilation time and binaries size if you
644// don't use it.
ff2d113e 645//
dd74a7ad 646// Recommended setting: 1
9c824f29 647//
ff2d113e 648#define wxUSE_GRID 1
b3402d0d 649
c67b4daf
VZ
650// wxMiniFrame class: a frame with narrow title bar
651//
652// Default is 1.
653//
654// Recommended setting: 1 (it doesn't cost almost anything)
655#define wxUSE_MINIFRAME 1
656
1e6feb95
VZ
657// ----------------------------------------------------------------------------
658// Miscellaneous GUI stuff
659// ----------------------------------------------------------------------------
3b415ba4
VZ
660
661// wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar)
662#define wxUSE_ACCEL 1
663
5048c832
JS
664// Hotkey support (currently Windows only)
665#define wxUSE_HOTKEY 1
666
1e6feb95
VZ
667// Use wxCaret: a class implementing a "cursor" in a text control (called caret
668// under Windows).
669//
670// Default is 1.
671//
672// Recommended setting: 1 (can be safely set to 0, not used by the library)
673#define wxUSE_CARET 1
674
8a09029e
VZ
675// Use wxDisplay class: it allows enumerating all displays on a system and
676// working with them.
677//
678// Default is 0 because it isn't yet implemented on all platforms
679//
680// Recommended setting: 1 if you need it, can be safely set to 0 otherwise
01c54165 681#define wxUSE_DISPLAY 1
8a09029e 682
1e6feb95
VZ
683// Miscellaneous geometry code: needed for Canvas library
684#define wxUSE_GEOMETRY 1
685
686// Use wxImageList. This class is needed by wxNotebook, wxTreeCtrl and
687// wxListCtrl.
688//
689// Default is 1.
690//
691// Recommended setting: 1 (set it to 0 if you don't use any of the controls
692// enumerated above, then this class is mostly useless too)
693#define wxUSE_IMAGLIST 1
694
695// Use wxMenu, wxMenuBar, wxMenuItem.
696//
697// Default is 1.
698//
699// Recommended setting: 1 (can't be disabled under MSW)
700#define wxUSE_MENUS 1
701
702// Use wxSashWindow class.
703//
704// Default is 1.
705//
706// Recommended setting: 1
707#define wxUSE_SASH 1
708
709// Use wxSplitterWindow class.
710//
711// Default is 1.
712//
713// Recommended setting: 1
714#define wxUSE_SPLITTER 1
715
716// Use wxToolTip and wxWindow::Set/GetToolTip() methods.
717//
718// Default is 1.
719//
720// Recommended setting: 1
721#define wxUSE_TOOLTIPS 1
722
723// wxValidator class and related methods
724#define wxUSE_VALIDATORS 1
725
3b415ba4
VZ
726// ----------------------------------------------------------------------------
727// common dialogs
728// ----------------------------------------------------------------------------
729
3b415ba4
VZ
730// On rare occasions (e.g. using DJGPP) may want to omit common dialogs (e.g.
731// file selector, printer dialog). Switching this off also switches off the
732// printing architecture and interactive wxPrinterDC.
733//
734// Default is 1
735//
736// Recommended setting: 1 (unless it really doesn't work)
737#define wxUSE_COMMON_DIALOGS 1
738
874efd13
VZ
739// wxBusyInfo displays window with message when app is busy. Works in same way
740// as wxBusyCursor
741#define wxUSE_BUSYINFO 1
742
743// Use single/multiple choice dialogs.
744//
745// Default is 1
746//
747// Recommended setting: 1 (used in the library itself)
748#define wxUSE_CHOICEDLG 1
749
750// Use colour picker dialog
751//
752// Default is 1
753//
754// Recommended setting: 1
755#define wxUSE_COLOURDLG 1
756
757// wxDirDlg class for getting a directory name from user
758#define wxUSE_DIRDLG 1
759
760// TODO: setting to choose the generic or native one
761
1e6feb95
VZ
762// Use file open/save dialogs.
763//
764// Default is 1
765//
766// Recommended setting: 1 (used in many places in the library itself)
767#define wxUSE_FILEDLG 1
768
874efd13
VZ
769// Use find/replace dialogs.
770//
771// Default is 1
772//
773// Recommended setting: 1 (but may be safely set to 0)
baff4ae2
VZ
774#define wxUSE_FINDREPLDLG 1
775
1e6feb95
VZ
776// Use font picker dialog
777//
778// Default is 1
779//
780// Recommended setting: 1 (used in the library itself)
781#define wxUSE_FONTDLG 1
782
e421922f 783// Use wxMessageDialog and wxMessageBox.
1e6feb95
VZ
784//
785// Default is 1
786//
787// Recommended setting: 1 (used in the library itself)
e421922f 788#define wxUSE_MSGDLG 1
3b415ba4 789
874efd13
VZ
790// progress dialog class for lengthy operations
791#define wxUSE_PROGRESSDLG 1
3b415ba4 792
874efd13
VZ
793// support for startup tips (wxShowTip &c)
794#define wxUSE_STARTUP_TIPS 1
3b415ba4 795
e421922f
VZ
796// text entry dialog and wxGetTextFromUser function
797#define wxUSE_TEXTDLG 1
798
874efd13 799// number entry dialog
ff8b6290
JS
800#define wxUSE_NUMBERDLG 1
801
874efd13
VZ
802// splash screen class
803#define wxUSE_SPLASH 1
47606d36 804
874efd13 805// wizards
b1f5d087
VZ
806#define wxUSE_WIZARDDLG 1
807
d9317fd4
VZ
808// ----------------------------------------------------------------------------
809// Metafiles support
810// ----------------------------------------------------------------------------
811
812// Windows supports the graphics format known as metafile which is, though not
813// portable, is widely used under Windows and so is supported by wxWin (under
814// Windows only, of course). Win16 (Win3.1) used the so-called "Window
815// MetaFiles" or WMFs which were replaced with "Enhanced MetaFiles" or EMFs in
816// Win32 (Win9x, NT, 2000). Both of these are supported in wxWin and, by
817// default, WMFs will be used under Win16 and EMFs under Win32. This may be
818// changed by setting wxUSE_WIN_METAFILES_ALWAYS to 1 and/or setting
819// wxUSE_ENH_METAFILE to 0. You may also set wxUSE_METAFILE to 0 to not compile
820// in any metafile related classes at all.
821//
822// Default is 1 for wxUSE_ENH_METAFILE and 0 for wxUSE_WIN_METAFILES_ALWAYS.
823//
824// Recommended setting: default or 0 for everything for portable programs.
825#define wxUSE_METAFILE 1
826#define wxUSE_ENH_METAFILE 1
827#define wxUSE_WIN_METAFILES_ALWAYS 0
828
ff2d113e
VZ
829// ----------------------------------------------------------------------------
830// Big GUI components
831// ----------------------------------------------------------------------------
832
efd17a1d
VZ
833// Set to 0 to disable MDI support.
834//
835// Requires wxUSE_NOTEBOOK under platforms other than MSW.
836//
837// Default is 1.
838//
839// Recommended setting: 1, can be safely set to 0.
840#define wxUSE_MDI 1
841
3b415ba4
VZ
842// Set to 0 to disable document/view architecture
843#define wxUSE_DOC_VIEW_ARCHITECTURE 1
844
845// Set to 0 to disable MDI document/view architecture
efd17a1d
VZ
846//
847// Requires wxUSE_MDI && wxUSE_DOC_VIEW_ARCHITECTURE
3b415ba4
VZ
848#define wxUSE_MDI_ARCHITECTURE 1
849
850// Set to 0 to disable print/preview architecture code
851#define wxUSE_PRINTING_ARCHITECTURE 1
852
ff2d113e
VZ
853// wxHTML sublibrary allows to display HTML in wxWindow programs and much,
854// much more.
855//
856// Default is 1.
857//
858// Recommended setting: 1 (wxHTML is great!), set to 0 if you want compile a
859// smaller library.
860#define wxUSE_HTML 1
861
2b5f62a0
VZ
862// Setting wxUSE_GLCANVAS to 1 enables OpenGL support. You need to have OpenGL
863// headers and libraries to be able to compile the library with wxUSE_GLCANVAS
864// set to 1. Note that for some compilers (notably Microsoft Visual C++) you
865// will need to manually add opengl32.lib and glu32.lib to the list of
866// libraries linked with your program if you use OpenGL.
867//
868// Default is 0.
869//
870// Recommended setting: 1 if you intend to use OpenGL, 0 otherwise
8b089c5e
JS
871#define wxUSE_GLCANVAS 0
872
5d7836c4
JS
873// wxRichTextCtrl allows editing of styled text.
874//
875// Default is 1.
876//
877// Recommended setting: 1, set to 0 if you want compile a
878// smaller library.
879#define wxUSE_RICHTEXT 1
880
1e6feb95
VZ
881// ----------------------------------------------------------------------------
882// Data transfer
883// ----------------------------------------------------------------------------
884
885// Use wxClipboard class for clipboard copy/paste.
886//
887// Default is 1.
888//
889// Recommended setting: 1
890#define wxUSE_CLIPBOARD 1
891
892// Use wxDataObject and related classes. Needed for clipboard and OLE drag and
893// drop
894//
895// Default is 1.
896//
897// Recommended setting: 1
898#define wxUSE_DATAOBJ 1
899
900// Use wxDropTarget and wxDropSource classes for drag and drop (this is
901// different from "built in" drag and drop in wxTreeCtrl which is always
902// available). Requires wxUSE_DATAOBJ.
903//
904// Default is 1.
905//
906// Recommended setting: 1
907#define wxUSE_DRAG_AND_DROP 1
908
45a959a3
JS
909// Use wxAccessible for enhanced and customisable accessibility.
910// Depends on wxUSE_OLE.
911//
912// Default is 0.
913//
914// Recommended setting (at present): 0
915#define wxUSE_ACCESSIBILITY 0
916
bf84b0be 917// ----------------------------------------------------------------------------
3b415ba4 918// miscellaneous settings
bf84b0be
VZ
919// ----------------------------------------------------------------------------
920
68a602fc
VZ
921// wxSingleInstanceChecker class allows to verify at startup if another program
922// instance is running (it is only available under Win32)
923//
924// Default is 1
925//
926// Recommended setting: 1 (the class is tiny, disabling it won't save much
927// space)
928#define wxUSE_SNGLINST_CHECKER 1
929
24fd6d87
VZ
930#define wxUSE_DRAGIMAGE 1
931
9bd6a503
VZ
932#define wxUSE_IPC 1
933 // 0 for no interprocess comms
9bd6a503
VZ
934#define wxUSE_HELP 1
935 // 0 for no help facility
5a32e182 936#define wxUSE_MS_HTML_HELP 1
f6bcfd97 937 // 0 for no MS HTML Help
874efd13
VZ
938
939// Use wxHTML-based help controller?
3379ed37 940#define wxUSE_WXHTML_HELP 1
874efd13 941
c67b4daf 942#define wxUSE_RESOURCES 0
9bd6a503
VZ
943 // 0 for no wxGetResource/wxWriteResource
944#define wxUSE_CONSTRAINTS 1
945 // 0 for no window layout constraint system
946
9bd6a503 947#define wxUSE_SPLINES 1
83b1bfaa 948 // 0 for no splines
9bd6a503 949
d2c52078
RD
950#define wxUSE_MOUSEWHEEL 1
951 // Include mouse wheel support
952
3b415ba4 953// ----------------------------------------------------------------------------
3ca6a5f0 954// postscript support settings
3b415ba4
VZ
955// ----------------------------------------------------------------------------
956
3ca6a5f0 957// Set to 1 for PostScript device context.
3b415ba4 958#define wxUSE_POSTSCRIPT 0
3ca6a5f0
BP
959
960// Set to 1 to use font metric files in GetTextExtent
12bdd77c 961#define wxUSE_AFM_FOR_POSTSCRIPT 1
9bd6a503 962
3b415ba4
VZ
963// ----------------------------------------------------------------------------
964// database classes
965// ----------------------------------------------------------------------------
9bd6a503 966
3ca6a5f0 967// Define 1 to use ODBC classes
83b1bfaa 968#define wxUSE_ODBC 0
9bd6a503 969
3ca6a5f0
BP
970// For backward compatibility reasons, this parameter now only controls the
971// default scrolling method used by cursors. This default behavior can be
d2c52078 972// overriden by setting the second param of wxDB::wxDbGetConnection() or
3ca6a5f0 973// wxDb() constructor to indicate whether the connection (and any wxDbTable()s
d2c52078
RD
974// that use the connection) should support forward only scrolling of cursors,
975// or both forward and backward support for backward scrolling cursors is
3ca6a5f0 976// dependent on the data source as well as the ODBC driver being used.
aeb040bf 977#define wxODBC_FWD_ONLY_CURSORS 1
9695185a 978
3ca6a5f0 979// Default is 0. Set to 1 to use the deprecated classes, enum types, function,
3103e8a9 980// member variables. With a setting of 1, full backward compatibility with the
3ca6a5f0
BP
981// 2.0.x release is possible. It is STRONGLY recommended that this be set to 0,
982// as future development will be done only on the non-deprecated
983// functions/classes/member variables/etc.
f6bcfd97 984#define wxODBC_BACKWARD_COMPATABILITY 0
f6bcfd97 985
3b415ba4
VZ
986// ----------------------------------------------------------------------------
987// other compiler (mis)features
988// ----------------------------------------------------------------------------
989
990// Set this to 0 if your compiler can't cope with omission of prototype
991// parameters.
992//
993// Default is 1.
994//
995// Recommended setting: 1 (should never need to set this to 0)
996#define REMOVE_UNUSED_ARG 1
997
998// VC++ 4.2 and above allows <iostream> and <iostream.h> but you can't mix
eb382f3e
VZ
999// them. Set to 1 for <iostream.h>, 0 for <iostream>. Note that VC++ 7.1
1000// and later doesn't support wxUSE_IOSTREAMH == 1 and so <iostream> will be
1001// used anyhow.
3b415ba4
VZ
1002//
1003// Default is 1.
1004//
1005// Recommended setting: whatever your compiler likes more
dbda9e86 1006#define wxUSE_IOSTREAMH 1
d4ec5d32 1007
3b415ba4
VZ
1008// ----------------------------------------------------------------------------
1009// image format support
1010// ----------------------------------------------------------------------------
1011
3ca6a5f0
BP
1012// wxImage supports many different image formats which can be configured at
1013// compile-time. BMP is always supported, others are optional and can be safely
1014// disabled if you don't plan to use images in such format sometimes saving
1015// substantial amount of code in the final library.
1016//
1017// Some formats require an extra library which is included in wxWin sources
1018// which is mentioned if it is the case.
1019
0046ff7c
VS
1020// Set to 1 for wxImage support (recommended).
1021#define wxUSE_IMAGE 1
1022
3ca6a5f0 1023// Set to 1 for PNG format support (requires libpng). Also requires wxUSE_ZLIB.
9bd6a503 1024#define wxUSE_LIBPNG 1
3ca6a5f0
BP
1025
1026// Set to 1 for JPEG format support (requires libjpeg)
83b1bfaa 1027#define wxUSE_LIBJPEG 1
3ca6a5f0
BP
1028
1029// Set to 1 for TIFF format support (requires libtiff)
1ea67089 1030#define wxUSE_LIBTIFF 1
3ca6a5f0
BP
1031
1032// Set to 1 for GIF format support
83b1bfaa 1033#define wxUSE_GIF 1
3ca6a5f0
BP
1034
1035// Set to 1 for PNM format support
1044a386 1036#define wxUSE_PNM 1
3ca6a5f0
BP
1037
1038// Set to 1 for PCX format support
1044a386 1039#define wxUSE_PCX 1
9bd6a503 1040
d297e8ff
VZ
1041// Set to 1 for IFF format support (Amiga format)
1042#define wxUSE_IFF 0
4b6b4dfc 1043
0046ff7c
VS
1044// Set to 1 for XPM format support
1045#define wxUSE_XPM 1
1046
658974ae
VS
1047// Set to 1 for MS Icons and Cursors format support
1048#define wxUSE_ICO_CUR 1
1049
874efd13 1050// Set to 1 to compile in wxPalette class
d275c7eb
VZ
1051#define wxUSE_PALETTE 1
1052
24ab5c03
VZ
1053/* --- end common options --- */
1054
3b415ba4
VZ
1055// ----------------------------------------------------------------------------
1056// Windows-only settings
1057// ----------------------------------------------------------------------------
1318fabe 1058
2bb06220
VZ
1059// Set wxUSE_UNICODE_MSLU to 1 if you're compiling wxWidgets in Unicode mode
1060// and want to run your programs under Windows 9x and not only NT/2000/XP.
1061// This setting enables use of unicows.dll from MSLU (MS Layer for Unicode, see
1062// http://www.microsoft.com/globaldev/handson/dev/mslu_announce.mspx). Note
1063// that you will have to modify the makefiles to include unicows.lib import
1064// library as the first library (see installation instructions in install.txt
1065// to learn how to do it when building the library or samples).
1066//
1067// If your compiler doesn't have unicows.lib, you can get a version of it at
1068// http://libunicows.sourceforge.net
1069//
1070// Default is 0
1071//
1072// Recommended setting: 0 (1 if you want to deploy Unicode apps on 9x systems)
1073#ifndef wxUSE_UNICODE_MSLU
1074 #define wxUSE_UNICODE_MSLU 0
1075#endif
1076
77ffb593 1077// Set this to 1 if you want to use wxWidgets and MFC in the same program. This
3ca6a5f0
BP
1078// will override some other settings (see below)
1079//
1080// Default is 0.
1081//
1082// Recommended setting: 0 unless you really have to use MFC
3f8e5072
JS
1083#define wxUSE_MFC 0
1084
3ca6a5f0
BP
1085// Set this to 1 for generic OLE support: this is required for drag-and-drop,
1086// clipboard, OLE Automation. Only set it to 0 if your compiler is very old and
1087// can't compile/doesn't have the OLE headers.
1088//
1089// Default is 1.
1090//
1091// Recommended setting: 1
3aa0e8fa 1092#define wxUSE_OLE 1
3aa0e8fa 1093
6d1fbf78
VZ
1094// wxDC cacheing implementation
1095#define wxUSE_DC_CACHEING 1
1096
1097// Set this to 1 to enable the use of DIB's for wxBitmap to support
1098// bitmaps > 16MB on Win95/98/Me. Set to 0 to use DDB's only.
1099#define wxUSE_DIB_FOR_BITMAP 0
1100
da75a14e
VZ
1101// Set this to 1 to enable wxDIB class used internally for manipulating
1102// wxBitmao data.
1103//
1104// Default is 1, set it to 0 only if you don't use wxImage neither
1105//
1106// Recommended setting: 1 (without it conversion to/from wxImage won't work)
6d1fbf78
VZ
1107#define wxUSE_WXDIB 1
1108
e6bdaaad
MW
1109// Set to 0 to disable PostScript print/preview architecture code under Windows
1110// (just use Windows printing).
1111#define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 1
1112
3ca6a5f0
BP
1113// Set this to 1 to use RICHEDIT controls for wxTextCtrl with style wxTE_RICH
1114// which allows to put more than ~32Kb of text in it even under Win9x (NT
1115// doesn't have such limitation).
1116//
1117// Default is 1 for compilers which support it
1118//
1119// Recommended setting: 1, only set it to 0 if your compiler doesn't have
1120// or can't compile <richedit.h>
be329a3d
RD
1121#define wxUSE_RICHEDIT 1
1122
c5a12362
VZ
1123// Set this to 1 to use extra features of richedit v2 and later controls
1124//
1125// Default is 1 for compilers which support it
1126//
1127// Recommended setting: 1
be329a3d
RD
1128#define wxUSE_RICHEDIT2 1
1129
3ca6a5f0
BP
1130// Set this to 1 to enable support for the owner-drawn menu and listboxes. This
1131// is required by wxUSE_CHECKLISTBOX.
1132//
1133// Default is 1.
1134//
1135// Recommended setting: 1, set to 0 for a small library size reduction
1136#define wxUSE_OWNER_DRAWN 1
1137
85b43fbf
JS
1138// Set to 1 to compile MS Windows XP theme engine support
1139#define wxUSE_UXTHEME 1
1140
1141// Set to 1 to auto-adapt to MS Windows XP themes where possible
1142// (notably, wxNotebook pages)
1143#define wxUSE_UXTHEME_AUTO 1
1144
f4edf138
JS
1145// Set to 1 to use InkEdit control (Tablet PC), if available
1146#define wxUSE_INKEDIT 0
1147
04049dbb
VZ
1148// ----------------------------------------------------------------------------
1149// Generic versions of native controls
1150// ----------------------------------------------------------------------------
1151
1152// Set this to 1 to be able to use wxDatePickerCtrlGeneric in addition to the
1153// native wxDatePickerCtrl
1154//
1155// Default is 0.
1156//
1157// Recommended setting: 0, this is mainly used for testing
1158#define wxUSE_DATEPICKCTRL_GENERIC 0
1159
1b68f1da
VZ
1160// ----------------------------------------------------------------------------
1161// Crash debugging helpers
1162// ----------------------------------------------------------------------------
1163
1164// Set this to 1 to be able to use wxCrashReport::Generate() to create mini
1165// dumps of your program when it crashes (or at any other moment)
1166//
3e3a3e17 1167// Default is 1 if supported by the compiler (VC++ and recent BC++ only).
1b68f1da
VZ
1168//
1169// Recommended setting: 1, set to 0 if your programs never crash
1170#define wxUSE_CRASHREPORT 1
1171
3ca6a5f0
BP
1172// ----------------------------------------------------------------------------
1173// obsolete settings
1174// ----------------------------------------------------------------------------
1175
1176// NB: all settings in this section are obsolete and should not be used/changed
1177// at all, they will disappear
1178
3ca6a5f0
BP
1179// Define 1 to use bitmap messages.
1180#define wxUSE_BITMAP_MESSAGE 1
1181
ef782301
VZ
1182#endif // _WX_SETUP_H_
1183