added WXWIN_COMPATIBILITY_2_8
[wxWidgets.git] / include / wx / univ / setup0.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/univ/setup.h
3 // Purpose: configuration settings for wxUniversal/MSW
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 14.08.00
7 // RCS-ID: $Id$
8 // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_UNIV_SETUP_H_
13 #define _WX_UNIV_SETUP_H_
14
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
22 #define wxUSE_GUI 1
23 #endif // wxUSE_GUI
24
25 // ----------------------------------------------------------------------------
26 // compatibility settings
27 // ----------------------------------------------------------------------------
28
29 // This setting determines the compatibility with 2.4 API: set it to 1 to
30 // enable it
31 //
32 // Default is 0.
33 //
34 // Recommended setting: 0 (please update your code instead!)
35 #define WXWIN_COMPATIBILITY_2_4 0
36
37 // This setting determines the compatibility with 2.6 API: set it to 0 to
38 // flag all cases of using deprecated functions.
39 //
40 // Default is 1 but please try building your code with 0 as the default will
41 // change to 0 in the next version and the deprecated functions will disappear
42 // in the version after it completely.
43 //
44 // Recommended setting: 0 (please update your code)
45 #define WXWIN_COMPATIBILITY_2_6 0
46
47 // This setting determines the compatibility with 2.8 API: set it to 0 to
48 // flag all cases of using deprecated functions.
49 //
50 // Default is 1 but please try building your code with 0 as the default will
51 // change to 0 in the next version and the deprecated functions will disappear
52 // in the version after it completely.
53 //
54 // Recommended setting: 0 (please update your code)
55 #define WXWIN_COMPATIBILITY_2_8 1
56
57 // Set to 0 for accurate dialog units, else 1 to be as per 2.1.16 and before.
58 // If migrating between versions, your dialogs may seem to shrink.
59 //
60 // Default is 1
61 //
62 // Recommended setting: 0 (the new calculations are more correct!)
63 #define wxDIALOG_UNIT_COMPATIBILITY 0
64
65 // ----------------------------------------------------------------------------
66 // debugging settings
67 // ----------------------------------------------------------------------------
68
69 // Generic comment about debugging settings: they are very useful if you don't
70 // use any other memory leak detection tools such as Purify/BoundsChecker, but
71 // are probably redundant otherwise. Also, Visual C++ CRT has the same features
72 // as wxWidgets memory debugging subsystem built in since version 5.0 and you
73 // may prefer to use it instead of built in memory debugging code because it is
74 // faster and more fool proof.
75 //
76 // Using VC++ CRT memory debugging is enabled by default in debug mode
77 // (__WXDEBUG__) if wxUSE_GLOBAL_MEMORY_OPERATORS is *not* enabled (i.e. is 0)
78 // and if __NO_VC_CRTDBG__ is not defined.
79
80 // If 1, enables wxDebugContext, for writing error messages to file, etc. If
81 // __WXDEBUG__ is not defined, will still use the normal memory operators.
82 //
83 // Default is 0
84 //
85 // Recommended setting: 0
86 #ifdef __MWERKS__
87 #define wxUSE_DEBUG_CONTEXT 1
88 #else
89 #define wxUSE_DEBUG_CONTEXT 0
90 #endif
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.
135 #ifdef _MSC_VER
136 #define wxUSE_ON_FATAL_EXCEPTION 1
137 #else
138 #define wxUSE_ON_FATAL_EXCEPTION 0
139 #endif
140
141 // ----------------------------------------------------------------------------
142 // Unicode support
143 // ----------------------------------------------------------------------------
144
145 // Set wxUSE_UNICODE to 1 to compile wxWidgets in Unicode mode: wxChar will be
146 // defined as wchar_t, wxString will use Unicode internally. If you set this
147 // to 1, you must use wxT() macro for all literal strings in the program.
148 //
149 // Unicode is currently only fully supported under Windows NT/2000/XP (Windows 9x
150 // doesn't support it and the programs compiled in Unicode mode will not run
151 // under 9x).
152 //
153 // Default is 0
154 //
155 // Recommended setting: 0 (unless you only plan to use Windows NT/2000/XP)
156 #ifndef wxUSE_UNICODE
157 #define wxUSE_UNICODE 0
158 #endif
159
160 // Set wxUSE_UNICODE_MSLU to 1 if you want to compile wxWidgets in Unicode mode
161 // and be able to run compiled apps under Windows 9x as well as NT/2000/XP. This
162 // setting enables use of unicows.dll from MSLU (MS Layer for Unicode, see
163 // http://www.microsoft.com/globaldev/Articles/mslu_announce.asp). Note that you
164 // will have to modify the makefiles to include unicows.lib import library as the first
165 // library (if you use MSVC, you can run the makefile with "nmake MSLU=1 UNICODE=1"
166 // command).
167 //
168 // If your compiler doesn't have unicows.lib, you can get a version of it at
169 // http://libunicows.sourceforge.net
170 //
171 // Default is 0
172 //
173 // Recommended setting: 0
174 #define wxUSE_UNICODE_MSLU 0
175
176 // Setting wxUSE_WCHAR_T to 1 gives you some degree of Unicode support without
177 // compiling the program in Unicode mode. More precisely, it will be possible
178 // to construct wxString from a wide (Unicode) string and convert any wxString
179 // to Unicode.
180 //
181 // Default is 1
182 //
183 // Recommended setting: 1 for win32 else 0
184 #if defined(__WIN32__) || defined(__WATCOMC__)
185 #define wxUSE_WCHAR_T 1
186 #else
187 #define wxUSE_WCHAR_T 0
188 #endif
189
190 // ----------------------------------------------------------------------------
191 // global features
192 // ----------------------------------------------------------------------------
193
194 // Compile library in exception-safe mode? If set to 1, the library will try to
195 // behave correctly in presence of exceptions (even though it still will not
196 // use the exceptions itself) and notify the user code about any unhandled
197 // exceptions. If set to 0, propagation of the exceptions through the library
198 // code will lead to undefined behaviour -- but the code itself will be
199 // slightly smaller and faster.
200 //
201 // Default is 1
202 //
203 // Recommended setting: depends on whether you intend to use C++ exceptions
204 // in your own code (1 if you do, 0 if you don't)
205 #define wxUSE_EXCEPTIONS 1
206
207 // Set wxUSE_STL to 1 to derive wxList(Foo) and wxArray(Foo) from
208 // std::list<Foo*> and std::vector<Foo*>, with a compatibility interface,
209 // and for wxHashMap to be implemented with templates.
210 //
211 // Default is 0
212 //
213 // Recommended setting: YMMV
214 #define wxUSE_STL 0
215
216 // Set wxUSE_EXTENDED_RTTI to 1 to use extended RTTI
217 //
218 // Default is 0
219 //
220 // Recommended setting: 0
221 #define wxUSE_EXTENDED_RTTI 0
222
223 // Support for message/error logging. This includes wxLogXXX() functions and
224 // wxLog and derived classes. Don't set this to 0 unless you really know what
225 // you are doing.
226 //
227 // Default is 1
228 //
229 // Recommended setting: 1 (always)
230 #define wxUSE_LOG 1
231
232 // Recommended setting: 1
233 #define wxUSE_LOGWINDOW 1
234
235 // Recommended setting: 1
236 #define wxUSE_LOGGUI 1
237
238 // Recommended setting: 1
239 #define wxUSE_LOG_DIALOG 1
240
241 // Support for command line parsing using wxCmdLineParser class.
242 //
243 // Default is 1
244 //
245 // Recommended setting: 1 (can be set to 0 if you don't use the cmd line)
246 #define wxUSE_CMDLINE_PARSER 1
247
248 // Support for multithreaded applications: if 1, compile in thread classes
249 // (thread.h) and make the library a bit more thread safe. Although thread
250 // support is quite stable by now, you may still consider recompiling the
251 // library without it if you have no use for it - this will result in a
252 // somewhat smaller and faster operation.
253 //
254 // This is ignored under Win16, threads are only supported under Win32.
255 //
256 // Default is 1
257 //
258 // Recommended setting: 0 unless you do plan to develop MT applications
259 #define wxUSE_THREADS 1
260
261 // If enabled (1), compiles wxWidgets streams classes
262 #define wxUSE_STREAMS 1
263
264 // Use standard C++ streams if 1. If 0, use wxWin streams implementation.
265 #ifdef __MWERKS__
266 #define wxUSE_STD_IOSTREAM 1
267 #else
268 #define wxUSE_STD_IOSTREAM 0
269 #endif
270
271 // Enable conversion to standard C++ string if 1.
272 //
273 // Default is 1 for most compilers.
274 //
275 // Currently the Digital Mars and Watcom compilers come without standard C++
276 // library headers by default, wxUSE_STD_STRING can be set to 1 if you do have
277 // them (e.g. from STLPort).
278 //
279 // VC++ 5.0 does include standard C++ library header, however they produce
280 // many warnings that can't be turned off when compiled at warning level 4.
281 #if defined(__DMC__) || defined(__WATCOMC__) \
282 || (defined(_MSC_VER) && _MSC_VER < 1200)
283 #define wxUSE_STD_STRING 0
284 #else
285 #define wxUSE_STD_STRING 1
286 #endif
287
288 // Support for positional parameters (e.g. %1$d, %2$s ...) in wxVsnprintf.
289 // Note that if the system's implementation does not support positional
290 // parameters, setting this to 1 forces the use of the wxWidgets implementation
291 // of wxVsnprintf. The standard vsnprintf() supports positional parameters on
292 // many Unix systems but usually doesn't under Windows.
293 //
294 // Positional parameters are very useful when translating a program since using
295 // them in formatting strings allow translators to correctly reorder the
296 // translated sentences.
297 //
298 // Default is 1
299 //
300 // Recommended setting: 1 if you want to support multiple languages
301 #define wxUSE_PRINTF_POS_PARAMS 0
302
303 // ----------------------------------------------------------------------------
304 // non GUI features selection
305 // ----------------------------------------------------------------------------
306
307 // Set wxUSE_LONGLONG to 1 to compile the wxLongLong class. This is a 64 bit
308 // integer which is implemented in terms of native 64 bit integers if any or
309 // uses emulation otherwise.
310 //
311 // This class is required by wxDateTime and so you should enable it if you want
312 // to use wxDateTime. For most modern platforms, it will use the native 64 bit
313 // integers in which case (almost) all of its functions are inline and it
314 // almost does not take any space, so there should be no reason to switch it
315 // off.
316 //
317 // Recommended setting: 1
318 #define wxUSE_LONGLONG 1
319
320 // Set wxUSE_(F)FILE to 1 to compile wx(F)File classes. wxFile uses low level
321 // POSIX functions for file access, wxFFile uses ANSI C stdio.h functions.
322 //
323 // Default is 1
324 //
325 // Recommended setting: 1 (wxFile is highly recommended as it is required by
326 // i18n code, wxFileConfig and others)
327 #define wxUSE_FILE 1
328 #define wxUSE_FFILE 1
329
330 // Use wxFSVolume class providing access to the configured/active mount points
331 //
332 // Default is 1
333 //
334 // Recommended setting: 1 (but may be safely disabled if you don't use it)
335 #define wxUSE_FSVOLUME 1
336
337 // Use wxStandardPaths class which allows to retrieve some standard locations
338 // in the file system
339 //
340 // Default is 1
341 //
342 // Recommended setting: 1 (may be disabled to save space, but not much)
343 #define wxUSE_STDPATHS 1
344
345 // use wxTextBuffer class: required by wxTextFile
346 #define wxUSE_TEXTBUFFER 1
347
348 // use wxTextFile class: requires wxFile and wxTextBuffer, required by
349 // wxFileConfig
350 #define wxUSE_TEXTFILE 1
351
352 // i18n support: _() macro, wxLocale class. Requires wxTextFile.
353 #define wxUSE_INTL 1
354
355 // Set wxUSE_DATETIME to 1 to compile the wxDateTime and related classes which
356 // allow to manipulate dates, times and time intervals. wxDateTime replaces the
357 // old wxTime and wxDate classes which are still provided for backwards
358 // compatibility (and implemented in terms of wxDateTime).
359 //
360 // Note that this class is relatively new and is still officially in alpha
361 // stage because some features are not yet (fully) implemented. It is already
362 // quite useful though and should only be disabled if you are aiming at
363 // absolutely minimal version of the library.
364 //
365 // Requires: wxUSE_LONGLONG
366 //
367 // Default is 1
368 //
369 // Recommended setting: 1
370 #define wxUSE_DATETIME 1
371
372 // wxUSE_TIMEDATE enables compilation of the old wxDate and wxTime classes (not
373 // the same as wxDateTime!). These classes are obsolete and shouldn't be used
374 // in new code
375 //
376 // Default is 0
377 //
378 // Recommended setting: 0 unless you have legacy code which uses these classes
379 #define wxUSE_TIMEDATE 0
380
381 // Set wxUSE_TIMER to 1 to compile wxTimer class
382 //
383 // Default is 1
384 //
385 // Recommended setting: 1
386 #define wxUSE_TIMER 1
387
388 // Use wxStopWatch clas.
389 //
390 // Default is 1
391 //
392 // Recommended setting: 1 (needed by wxSocket)
393 #define wxUSE_STOPWATCH 1
394
395 // Setting wxUSE_CONFIG to 1 enables the use of wxConfig and related classes
396 // which allow the application to store its settings in the persistent
397 // storage. Setting this to 1 will also enable on-demand creation of the
398 // global config object in wxApp.
399 //
400 // See also wxUSE_CONFIG_NATIVE below.
401 //
402 // Recommended setting: 1
403 #define wxUSE_CONFIG 1
404
405 // If wxUSE_CONFIG is 1, you may choose to use either the native config
406 // classes under Windows (using .INI files under Win16 and the registry under
407 // Win32) or the portable text file format used by the config classes under
408 // Unix.
409 //
410 // Default is 1 to use native classes. Note that you may still use
411 // wxFileConfig even if you set this to 1 - just the config object created by
412 // default for the applications needs will be a wxRegConfig or wxIniConfig and
413 // not wxFileConfig.
414 //
415 // Recommended setting: 0 (universal should not use native)
416 #if defined(__WIN32__)
417 #define wxUSE_CONFIG_NATIVE 0
418 #else
419 #define wxUSE_CONFIG_NATIVE 0
420 #endif
421
422 // If wxUSE_DIALUP_MANAGER is 1, compile in wxDialUpManager class which allows
423 // to connect/disconnect from the network and be notified whenever the dial-up
424 // network connection is established/terminated. Requires wxUSE_DYNAMIC_LOADER.
425 //
426 // Default is 1.
427 //
428 // Recommended setting: 1
429 #if defined(__WIN32__)
430 #define wxUSE_DIALUP_MANAGER 1
431 #else
432 #define wxUSE_DIALUP_MANAGER 0
433 #endif
434
435 // Compile in classes for run-time DLL loading and function calling.
436 // Required by wxUSE_DIALUP_MANAGER.
437 //
438 // This setting is for Win32 only
439 //
440 // Default is 1.
441 //
442 // Recommended setting: 1
443 #if defined(__WIN32__)
444 #define wxUSE_DYNLIB_CLASS 1
445 #else
446 #define wxUSE_DYNLIB_CLASS 0
447 #endif
448
449 // experimental, don't use for now
450 #if defined(__WIN32__)
451 #define wxUSE_DYNAMIC_LOADER 1
452 #else
453 #define wxUSE_DYNAMIC_LOADER 0
454 #endif
455
456 // Set to 1 to use socket classes
457 #define wxUSE_SOCKETS 1
458
459 // Set to 1 to enable virtual file systems (required by wxHTML)
460 #define wxUSE_FILESYSTEM 1
461
462 // Set to 1 to enable virtual ZIP filesystem (requires wxUSE_FILESYSTEM)
463 #define wxUSE_FS_ZIP 1
464
465 // Set to 1 to enable virtual archive filesystem (requires wxUSE_FILESYSTEM)
466 #define wxUSE_FS_ARCHIVE 1
467
468 // wxArchive classes for accessing archives such as zip and tar
469 #define wxUSE_ARCHIVE_STREAMS 1
470
471 // Set to 1 to compile wxZipInput/OutputStream classes.
472 #define wxUSE_ZIPSTREAM 1
473
474 // Set to 1 to compile wxTarInput/OutputStream classes.
475 #define wxUSE_TARSTREAM 1
476
477 // Set to 1 to compile wxZlibInput/OutputStream classes. Also required by
478 // wxUSE_LIBPNG
479 #define wxUSE_ZLIB 1
480
481 // Set to 1 to enable virtual Internet filesystem (requires wxUSE_FILESYSTEM)
482 #define wxUSE_FS_INET 1
483
484 // If enabled, the code written by Apple will be used to write, in a portable
485 // way, float on the disk. See extended.c for the license which is different
486 // from wxWidgets one.
487 //
488 // Default is 1.
489 //
490 // Recommended setting: 1 unless you don't like the license terms (unlikely)
491 #define wxUSE_APPLE_IEEE 1
492
493 // Joystick support class
494 #if defined(__WIN32__)
495 #define wxUSE_JOYSTICK 1
496 #else
497 #define wxUSE_JOYSTICK 1
498 #endif
499
500 // wxFontMapper class
501 #define wxUSE_FONTMAP 1
502
503 // wxMimeTypesManager class
504 #define wxUSE_MIMETYPE 1
505
506 // wxProtocol and related classes: if you want to use either of wxFTP, wxHTTP
507 // or wxURL you need to set this to 1.
508 //
509 // Default is 1.
510 //
511 // Recommended setting: 1
512 #define wxUSE_PROTOCOL 1
513
514 // The settings for the individual URL schemes
515 #define wxUSE_PROTOCOL_FILE 1
516 #define wxUSE_PROTOCOL_FTP 1
517 #define wxUSE_PROTOCOL_HTTP 1
518
519 // Define this to use wxURL class.
520 #define wxUSE_URL 1
521
522 // Support for wxVariant class used in several places throughout the library,
523 // notably in wxDataViewCtrl API.
524 //
525 // Default is 1.
526 //
527 // Recommended setting: 1 unless you want to reduce the library size as much as
528 // possible in which case setting this to 0 can gain up to 100KB.
529 #define wxUSE_VARIANT 1
530
531 // Support for regular expression matching via wxRegEx class: enable this to
532 // use POSIX regular expressions in your code. You need to compile regex
533 // library from src/regex to use it under Windows.
534 //
535 // Default is 0
536 //
537 // Recommended setting: 1 if your compiler supports it, if it doesn't please
538 // contribute us a makefile for src/regex for it
539 #define wxUSE_REGEX 1
540
541 // wxSystemOptions class
542 #define wxUSE_SYSTEM_OPTIONS 1
543
544 // wxSound class
545 #define wxUSE_SOUND 1
546
547 // Use wxMediaCtrl
548 //
549 // Default is 1.
550 //
551 // Recommended setting: 1
552 #define wxUSE_MEDIACTRL 1
553
554 // Use QuickTime
555 //
556 // Default is 0
557 //
558 // Recommended setting: 1 if you have the QT SDK installed and you need it, else 0
559 #define wxUSE_QUICKTIME 0
560
561 // Use DirectShow
562 //
563 // Default is 0
564 //
565 // Recommended setting: 1 if the DirectX 7 SDK is installed (highly recommended), else 0
566 #define wxUSE_DIRECTSHOW 0
567
568 // Use wxWidget's XRC XML-based resource system. Recommended.
569 //
570 // Default is 1
571 //
572 // Recommended setting: 1 (requires wxUSE_XML)
573 #define wxUSE_XRC 1
574
575 // XML parsing classes. Note that their API will change in the future, so
576 // using wxXmlDocument and wxXmlNode in your app is not recommended.
577 //
578 // Default is 1
579 //
580 // Recommended setting: 1 (required by XRC)
581 #if wxUSE_XRC
582 # define wxUSE_XML 1
583 #else
584 # define wxUSE_XML 0
585 #endif
586
587 // Use wxWidget's AUI docking system
588 //
589 // Default is 1
590 //
591 // Recommended setting: 1
592 #define wxUSE_AUI 1
593
594
595 // Enable the new wxGraphicsPath and wxGraphicsContext classes for an advanced
596 // 2D drawing API. (Still somewhat experimental)
597 //
598 // Please note that on Windows you will need to link with gdiplus.lib (use
599 // USE_GDIPLUS=1 for makefile builds) and distribute gdiplus.dll with your
600 // application if you want it to be runnable on pre-XP systems.
601 //
602 // Default is 0
603 //
604 // Recommended setting: 1
605 #ifndef wxUSE_GRAPHICS_CONTEXT
606 #define wxUSE_GRAPHICS_CONTEXT 0
607 #endif
608
609 // Set to 1 to compile MS Windows XP theme engine support
610 #define wxUSE_UXTHEME 0
611
612 // Set to 1 to auto-adapt to MS Windows XP themes where possible
613 // (notably, wxNotebook pages)
614 #define wxUSE_UXTHEME_AUTO 0
615
616 // ----------------------------------------------------------------------------
617 // Individual GUI controls
618 // ----------------------------------------------------------------------------
619
620 // You must set wxUSE_CONTROLS to 1 if you are using any controls at all
621 // (without it, wxControl class is not compiled)
622 //
623 // Default is 1
624 //
625 // Recommended setting: 1 (don't change except for very special programs)
626 #define wxUSE_CONTROLS 1
627
628 // wxPopupWindow class is a top level transient window. It is currently used
629 // to implement wxTipWindow
630 //
631 // Default is 1
632 //
633 // Recommended setting: 1 (may be set to 0 if you don't wxUSE_TIPWINDOW)
634 #define wxUSE_POPUPWIN 1
635
636 // wxTipWindow allows to implement the custom tooltips, it is used by the
637 // context help classes. Requires wxUSE_POPUPWIN.
638 //
639 // Default is 1
640 //
641 // Recommended setting: 1 (may be set to 0)
642 #define wxUSE_TIPWINDOW 1
643
644 // Each of the settings below corresponds to one wxWidgets control. They are
645 // all switched on by default but may be disabled if you are sure that your
646 // program (including any standard dialogs it can show!) doesn't need them and
647 // if you desperately want to save some space. If you use any of these you must
648 // set wxUSE_CONTROLS as well.
649 //
650 // Default is 1
651 //
652 // Recommended setting: 1
653 #define wxUSE_ANIMATIONCTRL 1 // wxAnimationCtrl
654 #define wxUSE_BUTTON 1 // wxButton
655 #define wxUSE_BMPBUTTON 1 // wxBitmapButton
656 #define wxUSE_CALENDARCTRL 1 // wxCalendarCtrl
657 #define wxUSE_CHECKBOX 1 // wxCheckBox
658 #define wxUSE_CHECKLISTBOX 1 // wxCheckListBox
659 #define wxUSE_CHOICE 1 // wxChoice
660 #define wxUSE_COLLPANE 1 // wxCollapsiblePane
661 #define wxUSE_COLOURPICKERCTRL 1 // wxColourPickerCtrl
662 #define wxUSE_COMBOBOX 1 // wxComboBox
663 #define wxUSE_DATAVIEWCTRL 1 // wxDataViewCtrl
664 #define wxUSE_DATEPICKCTRL 1 // wxDatePickerCtrl
665 #define wxUSE_DIRPICKERCTRL 1 // wxDirPickerCtrl
666 #define wxUSE_FILEPICKERCTRL 1 // wxFilePickerCtrl
667 #define wxUSE_FONTPICKERCTRL 1 // wxFontPickerCtrl
668 #define wxUSE_GAUGE 1 // wxGauge
669 #define wxUSE_HYPERLINKCTRL 1 // wxHyperlinkCtrl
670 #define wxUSE_LISTBOX 1 // wxListBox
671 #define wxUSE_LISTCTRL 1 // wxListCtrl
672 #define wxUSE_RADIOBOX 1 // wxRadioBox
673 #define wxUSE_RADIOBTN 1 // wxRadioButton
674 #define wxUSE_SCROLLBAR 1 // wxScrollBar
675 #define wxUSE_SEARCHCTRL 1 // wxSearchCtrl
676 #define wxUSE_SLIDER 1 // wxSlider
677 #define wxUSE_SPINBTN 1 // wxSpinButton
678 #define wxUSE_SPINCTRL 1 // wxSpinCtrl
679 #define wxUSE_STATBOX 1 // wxStaticBox
680 #define wxUSE_STATLINE 1 // wxStaticLine
681 #define wxUSE_STATTEXT 1 // wxStaticText
682 #define wxUSE_STATBMP 1 // wxStaticBitmap
683 #define wxUSE_TEXTCTRL 1 // wxTextCtrl
684 #define wxUSE_TOGGLEBTN 1 // wxToggleButton
685 #define wxUSE_TREECTRL 1 // wxTreeCtrl
686
687 // Use a status bar class? Depending on the value of wxUSE_NATIVE_STATUSBAR
688 // below either wxStatusBar95 or a generic wxStatusBar will be used.
689 //
690 // Default is 1
691 //
692 // Recommended setting: 1
693 #define wxUSE_STATUSBAR 1
694
695 // Two status bar implementations are available under Win32: the generic one
696 // or the wrapper around native control. For native look and feel the native
697 // version should be used.
698 //
699 // Default is 0.
700 //
701 // Recommended setting: 0
702 #define wxUSE_NATIVE_STATUSBAR 0
703
704 // wxToolBar related settings: if wxUSE_TOOLBAR is 0, don't compile any toolbar
705 // classes at all. Otherwise, use the native toolbar class unless
706 // wxUSE_TOOLBAR_NATIVE is 0.
707 //
708 // Default is 0 for all settings.
709 //
710 // Recommended setting: 1 for wxUSE_TOOLBAR and 0 for wxUSE_TOOLBAR_NATIVE.
711 #define wxUSE_TOOLBAR 1
712 #define wxUSE_TOOLBAR_NATIVE 0
713
714 // wxNotebook is a control with several "tabs" located on one of its sides. It
715 // may be used ot logically organise the data presented to the user instead of
716 // putting everything in one huge dialog. It replaces wxTabControl and related
717 // classes of wxWin 1.6x.
718 //
719 // Default is 1.
720 //
721 // Recommended setting: 1
722 #define wxUSE_NOTEBOOK 1
723
724 // wxListbook control is similar to wxNotebook but uses wxListCtrl instead of
725 // the tabs
726 //
727 // Default is 1.
728 //
729 // Recommended setting: 1
730 #define wxUSE_LISTBOOK 1
731
732 // wxChoicebook control is similar to wxNotebook but uses wxChoice instead of
733 // the tabs
734 //
735 // Default is 1.
736 //
737 // Recommended setting: 1
738 #define wxUSE_CHOICEBOOK 1
739
740 // wxTreebook control is similar to wxNotebook but uses wxTreeCtrl instead of
741 // the tabs
742 //
743 // Default is 1.
744 //
745 // Recommended setting: 1
746 #define wxUSE_TREEBOOK 1
747
748 // wxToolbook control is similar to wxNotebook but uses wxToolBar instead of
749 // tabs
750 //
751 // Default is 1.
752 //
753 // Recommended setting: 1
754 #define wxUSE_TOOLBOOK 1
755
756 // wxTabDialog is a generic version of wxNotebook but it is incompatible with
757 // the new class. It shouldn't be used in new code.
758 //
759 // Default is 0.
760 //
761 // Recommended setting: 0 (use wxNotebook)
762 #define wxUSE_TAB_DIALOG 0
763
764 // wxGrid class
765 //
766 // Default is 1, set to 0 to cut down compilation time and binaries size if you
767 // don't use it.
768 //
769 // Recommended setting: 1
770 //
771 #define wxUSE_GRID 1
772
773 // wxProperty[Value/Form/List] classes, used by Dialog Editor
774 #define wxUSE_PROPSHEET 1
775
776 // wxComboCtrl and related classes: combobox with custom popup window and
777 // not necessarily a listbox.
778 //
779 // Default is 1.
780 //
781 // Recommended setting: 1 but can be safely set to 0 except for wxUniv where it
782 // it used by wxComboBox
783 #define wxUSE_COMBOCTRL 1
784
785 // wxOwnerDrawnComboBox is a custom combobox allowing to paint the combobox
786 // items.
787 //
788 // Default is 1.
789 //
790 // Recommended setting: 1 but can be safely set to 0, except where it is
791 // needed as a base class for generic wxBitmapComboBox.
792 #define wxUSE_ODCOMBOBOX 1
793
794 // wxBitmapComboBox a combobox that can have images in front of text items.
795 //
796 // Default is 1.
797 //
798 // Recommended setting: 1 but can be safely set to 0
799 #define wxUSE_BITMAPCOMBOBOX 1
800
801 // ----------------------------------------------------------------------------
802 // Miscellaneous GUI stuff
803 // ----------------------------------------------------------------------------
804
805 // wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar)
806 #define wxUSE_ACCEL 1
807
808 // Use wxCaret: a class implementing a "cursor" in a text control (called caret
809 // under Windows).
810 //
811 // Default is 1.
812 //
813 // Recommended setting: 1 (can be safely set to 0, not used by the library)
814 #define wxUSE_CARET 1
815
816 // Use wxDisplay class: it allows enumerating all displays on a system and
817 // working with them.
818 //
819 // Default is 0 because it isn't yet implemented on all platforms
820 //
821 // Recommended setting: 1 if you need it, can be safely set to 0 otherwise
822 #define wxUSE_DISPLAY 0
823
824 // Miscellaneous geometry code: needed for Canvas library
825 #define wxUSE_GEOMETRY 0
826
827 // Use wxImageList. This class is needed by wxNotebook, wxTreeCtrl and
828 // wxListCtrl.
829 //
830 // Default is 1.
831 //
832 // Recommended setting: 1 (set it to 0 if you don't use any of the controls
833 // enumerated above, then this class is mostly useless too)
834 #define wxUSE_IMAGLIST 1
835
836 // Use wxMenu, wxMenuBar, wxMenuItem.
837 //
838 // Default is 1.
839 //
840 // Recommended setting: 1 (can't be disabled under MSW)
841 #define wxUSE_MENUS 1
842
843 // Use wxSashWindow class.
844 //
845 // Default is 1.
846 //
847 // Recommended setting: 1
848 #define wxUSE_SASH 1
849
850 // Use wxSplitterWindow class.
851 //
852 // Default is 1.
853 //
854 // Recommended setting: 1
855 #define wxUSE_SPLITTER 1
856
857 // Use wxToolTip and wxWindow::Set/GetToolTip() methods.
858 //
859 // Default is 1.
860 //
861 // Recommended setting: 1
862 #ifdef __WIN32__
863 #define wxUSE_TOOLTIPS 1
864 #else
865 #define wxUSE_TOOLTIPS 0
866 #endif
867
868 // wxValidator class and related methods
869 #define wxUSE_VALIDATORS 1
870
871 // wxDC cacheing implementation
872 #define wxUSE_DC_CACHEING 1
873
874 // Set this to 1 to enable the use of DIB's for wxBitmap to support
875 // bitmaps > 16MB on Win95/98/Me. Set to 0 to use DDB's only.
876 #define wxUSE_DIB_FOR_BITMAP 0
877
878 // ----------------------------------------------------------------------------
879 // common dialogs
880 // ----------------------------------------------------------------------------
881
882 // On rare occasions (e.g. using DJGPP) may want to omit common dialogs (e.g.
883 // file selector, printer dialog). Switching this off also switches off the
884 // printing architecture and interactive wxPrinterDC.
885 //
886 // Default is 1
887 //
888 // Recommended setting: 1 (unless it really doesn't work)
889 #define wxUSE_COMMON_DIALOGS 1
890
891 // wxBusyInfo displays window with message when app is busy. Works in same way
892 // as wxBusyCursor
893 #define wxUSE_BUSYINFO 1
894
895 // Use single/multiple choice dialogs.
896 //
897 // Default is 1
898 //
899 // Recommended setting: 1 (used in the library itself)
900 #define wxUSE_CHOICEDLG 1
901
902 // Use colour picker dialog
903 //
904 // Default is 1
905 //
906 // Recommended setting: 1
907 #define wxUSE_COLOURDLG 1
908
909 // wxDirDlg class for getting a directory name from user
910 #define wxUSE_DIRDLG 1
911
912 // TODO: setting to choose the generic or native one
913
914 // Use file open/save dialogs.
915 //
916 // Default is 1
917 //
918 // Recommended setting: 1 (used in many places in the library itself)
919 #if defined(__WIN32__)
920 #define wxUSE_FILEDLG 1
921 #else
922 #define wxUSE_FILEDLG 1
923 #endif
924
925 // Use find/replace dialogs.
926 //
927 // Default is 1
928 //
929 // Recommended setting: 1 (but may be safely set to 0)
930 #define wxUSE_FINDREPLDLG 1
931
932 // Use font picker dialog
933 //
934 // Default is 1
935 //
936 // Recommended setting: 1 (used in the library itself)
937 #define wxUSE_FONTDLG 1
938
939 // Use wxMessageDialog and wxMessageBox.
940 //
941 // Default is 1
942 //
943 // Recommended setting: 1 (used in the library itself)
944 #define wxUSE_MSGDLG 1
945
946 // progress dialog class for lengthy operations
947 #define wxUSE_PROGRESSDLG 1
948
949 // support for startup tips (wxShowTip &c)
950 #define wxUSE_STARTUP_TIPS 1
951
952 // text entry dialog and wxGetTextFromUser function
953 #define wxUSE_TEXTDLG 1
954
955 // number entry dialog
956 #define wxUSE_NUMBERDLG 1
957
958 // splash screen class
959 #define wxUSE_SPLASH 1
960
961 // wizards
962 #define wxUSE_WIZARDDLG 1
963
964 // Compile in wxAboutBox() function showing the standard "About" dialog.
965 //
966 // Default is 1
967 //
968 // Recommended setting: 1 but can be set to 0 to save some space if you don't
969 // use this function
970 #define wxUSE_ABOUTDLG 1
971
972 // ----------------------------------------------------------------------------
973 // Metafiles support
974 // ----------------------------------------------------------------------------
975
976 // Windows supports the graphics format known as metafile which is, though not
977 // portable, is widely used under Windows and so is supported by wxWin (under
978 // Windows only, of course). Win16 (Win3.1) used the so-called "Window
979 // MetaFiles" or WMFs which were replaced with "Enhanced MetaFiles" or EMFs in
980 // Win32 (Win9x, NT, 2000). Both of these are supported in wxWin and, by
981 // default, WMFs will be used under Win16 and EMFs under Win32. This may be
982 // changed by setting wxUSE_WIN_METAFILES_ALWAYS to 1 and/or setting
983 // wxUSE_ENH_METAFILE to 0. You may also set wxUSE_METAFILE to 0 to not compile
984 // in any metafile related classes at all.
985 //
986 // Default is 1 for wxUSE_ENH_METAFILE and 0 for wxUSE_WIN_METAFILES_ALWAYS.
987 //
988 // Recommended setting: default or 0 for everything for portable programs.
989 #if defined(__WIN32__)
990 #define wxUSE_METAFILE 1
991 #define wxUSE_ENH_METAFILE 1
992 #define wxUSE_WIN_METAFILES_ALWAYS 0
993 #else
994 #define wxUSE_METAFILE 0
995 #define wxUSE_ENH_METAFILE 0
996 #define wxUSE_WIN_METAFILES_ALWAYS 0
997 #endif
998
999 // ----------------------------------------------------------------------------
1000 // Big GUI components
1001 // ----------------------------------------------------------------------------
1002
1003 // Set to 0 to disable MDI support.
1004 //
1005 // Requires wxUSE_NOTEBOOK under platforms other than MSW.
1006 //
1007 // Default is 1.
1008 //
1009 // Recommended setting: 1, can be safely set to 0.
1010 #define wxUSE_MDI 1
1011
1012 // Set to 0 to disable document/view architecture
1013 #define wxUSE_DOC_VIEW_ARCHITECTURE 1
1014
1015 // Set to 0 to disable MDI document/view architecture
1016 //
1017 // Requires wxUSE_MDI && wxUSE_DOC_VIEW_ARCHITECTURE
1018 #define wxUSE_MDI_ARCHITECTURE 1
1019
1020 // Set to 0 to disable print/preview architecture code
1021 #define wxUSE_PRINTING_ARCHITECTURE 1
1022
1023 // wxHTML sublibrary allows to display HTML in wxWindow programs and much,
1024 // much more.
1025 //
1026 // Default is 1.
1027 //
1028 // Recommended setting: 1 (wxHTML is great!), set to 0 if you want compile a
1029 // smaller library.
1030 #define wxUSE_HTML 1
1031
1032 // Setting wxUSE_GLCANVAS to 1 enables OpenGL support. You need to have OpenGL
1033 // headers and libraries to be able to compile the library with wxUSE_GLCANVAS
1034 // set to 1. Note that for some compilers (notably Microsoft Visual C++) you
1035 // will need to manually add opengl32.lib and glu32.lib to the list of
1036 // libraries linked with your program if you use OpenGL.
1037 //
1038 // Default is 0.
1039 //
1040 // Recommended setting: 1 if you intend to use OpenGL, 0 otherwise
1041 #if defined(__WIN32__)
1042 #define wxUSE_GLCANVAS 1
1043 #else
1044 #define wxUSE_GLCANVAS 0
1045 #endif
1046
1047 // wxRichTextCtrl allows editing of styled text.
1048 //
1049 // Default is 1.
1050 //
1051 // Recommended setting: 1, set to 0 if you want compile a
1052 // smaller library.
1053 #define wxUSE_RICHTEXT 1
1054
1055 // wxTreeLayout class
1056 #define wxUSE_TREELAYOUT 1
1057
1058 // ----------------------------------------------------------------------------
1059 // Data transfer
1060 // ----------------------------------------------------------------------------
1061
1062 // Use wxClipboard class for clipboard copy/paste.
1063 //
1064 // Default is 1.
1065 //
1066 // Recommended setting: 1
1067 #define wxUSE_CLIPBOARD 1
1068
1069 // Use wxDataObject and related classes. Needed for clipboard and OLE drag and
1070 // drop
1071 //
1072 // Default is 1.
1073 //
1074 // Recommended setting: 1 for WIN32
1075 #define wxUSE_DATAOBJ 1
1076
1077 // Use wxDropTarget and wxDropSource classes for drag and drop (this is
1078 // different from "built in" drag and drop in wxTreeCtrl which is always
1079 // available). Requires wxUSE_DATAOBJ.
1080 //
1081 // Default is 1.
1082 //
1083 // Recommended setting: 1
1084 #if defined(__WIN32__)
1085 #define wxUSE_DRAG_AND_DROP 1
1086 #else
1087 #define wxUSE_DRAG_AND_DROP 0
1088 #endif
1089
1090 // Use wxAccessible for enhanced and customisable accessibility.
1091 // Depends on wxUSE_OLE.
1092 //
1093 // Default is 0.
1094 //
1095 // Recommended setting (at present): 0
1096 #define wxUSE_ACCESSIBILITY 0
1097
1098 // ----------------------------------------------------------------------------
1099 // miscellaneous settings
1100 // ----------------------------------------------------------------------------
1101
1102 // wxSingleInstanceChecker class allows to verify at startup if another program
1103 // instance is running (it is only available under Win32)
1104 //
1105 // Default is 1
1106 //
1107 // Recommended setting: 1 (the class is tiny, disabling it won't save much
1108 // space)
1109 #if defined(__WIN32__)
1110 #define wxUSE_SNGLINST_CHECKER 1
1111 #else
1112 #define wxUSE_SNGLINST_CHECKER 0
1113 #endif
1114
1115 // Drag image
1116 #define wxUSE_DRAGIMAGE 1
1117
1118 // Interprocess communication
1119 #define wxUSE_IPC 1
1120
1121 // Help
1122 #if defined(__WIN32__)
1123 #define wxUSE_HELP 1
1124 #else
1125 #define wxUSE_HELP 1
1126 #endif
1127
1128 // MS help
1129 #define wxUSE_MS_HTML_HELP 1
1130
1131 // Use wxHTML-based help controller
1132 #define wxUSE_WXHTML_HELP 1
1133
1134 // Use resources
1135 #define wxUSE_RESOURCES 0
1136
1137 // Window layout constraint system
1138 #define wxUSE_CONSTRAINTS 1
1139
1140 // Splines
1141 #define wxUSE_SPLINES 1
1142
1143 // Include mouse wheel support
1144 #define wxUSE_MOUSEWHEEL 1
1145
1146 // ----------------------------------------------------------------------------
1147 // postscript support settings
1148 // ----------------------------------------------------------------------------
1149
1150 // Set to 1 for PostScript device context.
1151 #define wxUSE_POSTSCRIPT 1
1152
1153 // Set to 1 to use font metric files in GetTextExtent
1154 #define wxUSE_AFM_FOR_POSTSCRIPT 1
1155
1156 // ----------------------------------------------------------------------------
1157 // database classes
1158 // ----------------------------------------------------------------------------
1159
1160 // Define 1 to use ODBC classes
1161 #define wxUSE_ODBC 1
1162
1163 // For backward compatibility reasons, this parameter now only controls the
1164 // default scrolling method used by cursors. This default behavior can be
1165 // overriden by setting the second param of wxDB::wxDbGetConnection() or
1166 // wxDb() constructor to indicate whether the connection (and any wxDbTable()s
1167 // that use the connection) should support forward only scrolling of cursors,
1168 // or both forward and backward support for backward scrolling cursors is
1169 // dependent on the data source as well as the ODBC driver being used.
1170 #define wxODBC_FWD_ONLY_CURSORS 0
1171
1172 // Default is 0. Set to 1 to use the deprecated classes, enum types, function,
1173 // member variables. With a setting of 1, full backward compatibility with the
1174 // 2.0.x release is possible. It is STRONGLY recommended that this be set to 0,
1175 // as future development will be done only on the non-deprecated
1176 // functions/classes/member variables/etc.
1177 #define wxODBC_BACKWARD_COMPATABILITY 0
1178
1179 // ----------------------------------------------------------------------------
1180 // other compiler (mis)features
1181 // ----------------------------------------------------------------------------
1182
1183 // Set this to 0 if your compiler can't cope with omission of prototype
1184 // parameters.
1185 //
1186 // Default is 1.
1187 //
1188 // Recommended setting: 1 (should never need to set this to 0)
1189 #define REMOVE_UNUSED_ARG 1
1190
1191 // VC++ 4.2 and above allows <iostream> and <iostream.h> but you can't mix
1192 // them. Set to 1 for <iostream.h>, 0 for <iostream>
1193 //
1194 // Default is 1.
1195 //
1196 // Recommended setting: whatever your compiler likes more
1197 #ifdef __MWERKS__
1198 #define wxUSE_IOSTREAMH 1
1199 #else
1200 #define wxUSE_IOSTREAMH 0
1201 #endif
1202
1203 // ----------------------------------------------------------------------------
1204 // image format support
1205 // ----------------------------------------------------------------------------
1206
1207 // wxImage supports many different image formats which can be configured at
1208 // compile-time. BMP is always supported, others are optional and can be safely
1209 // disabled if you don't plan to use images in such format sometimes saving
1210 // substantial amount of code in the final library.
1211 //
1212 // Some formats require an extra library which is included in wxWin sources
1213 // which is mentioned if it is the case.
1214
1215 // Set to 1 for wxImage support (recommended).
1216 #define wxUSE_IMAGE 1
1217
1218 // Set to 1 for PNG format support (requires libpng). Also requires wxUSE_ZLIB.
1219 #define wxUSE_LIBPNG 1
1220
1221 // Set to 1 for JPEG format support (requires libjpeg)
1222 #define wxUSE_LIBJPEG 1
1223
1224 // Set to 1 for TIFF format support (requires libtiff)
1225 #define wxUSE_LIBTIFF 1
1226
1227 // Set to 1 for GIF format support
1228 #define wxUSE_GIF 1
1229
1230 // Set to 1 for PNM format support
1231 #define wxUSE_PNM 1
1232
1233 // Set to 1 for PCX format support
1234 #define wxUSE_PCX 1
1235
1236 // Set to 1 for IFF format support (Amiga format)
1237 #define wxUSE_IFF 0
1238
1239 // Set to 1 for XPM format support
1240 #define wxUSE_XPM 1
1241
1242 // Set to 1 for MS Icons and Cursors format support
1243 #define wxUSE_ICO_CUR 0
1244
1245 // Set to 1 to compile in wxPalette class
1246 #define wxUSE_PALETTE 1
1247
1248 // ----------------------------------------------------------------------------
1249 // Windows-only settings
1250 // ----------------------------------------------------------------------------
1251 #if defined(__WINDOWS__)
1252
1253 // Set this to 1 if you want to use wxWidgets and MFC in the same program. This
1254 // will override some other settings (see below)
1255 //
1256 // Default is 0.
1257 //
1258 // Recommended setting: 0 unless you really have to use MFC
1259 #define wxUSE_MFC 0
1260
1261 // Set this to 1 for generic OLE support: this is required for drag-and-drop,
1262 // clipboard, OLE Automation. Only set it to 0 if your compiler is very old and
1263 // can't compile/doesn't have the OLE headers.
1264 //
1265 // Default is 1.
1266 //
1267 // Recommended setting: 1 for WIN32
1268 #define wxUSE_OLE 1
1269
1270 // Set to 0 to disable PostScript print/preview architecture code under Windows
1271 // (just use Windows printing).
1272 #if defined(__WIN32__)
1273 #define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 1
1274 #else
1275 #define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 0
1276 #endif
1277
1278 // Set this to 1 to use RICHEDIT controls for wxTextCtrl with style wxTE_RICH
1279 // which allows to put more than ~32Kb of text in it even under Win9x (NT
1280 // doesn't have such limitation).
1281 //
1282 // Default is 1 for compilers which support it
1283 //
1284 // Recommended setting: 1, only set it to 0 if your compiler doesn't have
1285 // or can't compile <richedit.h>
1286 #if defined(__WIN95__) && !defined(__WINE__) && !defined(__GNUWIN32_OLD__)
1287 // TODO: This should be ifdef'ed for any compilers that don't support
1288 // RichEdit 2.0 but do have RichEdit 1.0...
1289 #define wxUSE_RICHEDIT 0 // currently not supported
1290 #define wxUSE_RICHEDIT2 0 // currently not supported
1291
1292 #else
1293 #define wxUSE_RICHEDIT 0
1294 #define wxUSE_RICHEDIT2 0
1295 #endif
1296
1297 // Set this to 1 to enable support for the owner-drawn menu and listboxes.
1298 //
1299 // Default is 1.
1300 //
1301 // Recommended setting: 1, set to 0 for a small library size reduction
1302 #define wxUSE_OWNER_DRAWN 0
1303
1304 // Set this to 1 to be able to use wxCrashReport::Generate() to create mini
1305 // dumps of your program when it crashes (or at any other moment)
1306 //
1307 // Default is 1 if supported by the compiler (VC++ and recent BC++ only).
1308 //
1309 // Recommended setting: 1, set to 0 if your programs never crash
1310 #define wxUSE_CRASHREPORT 1
1311
1312 #endif
1313
1314 // ----------------------------------------------------------------------------
1315 // unknown settings
1316 // ----------------------------------------------------------------------------
1317
1318 // If 1, enables provision of run-time type information.
1319 // NOW MANDATORY: don't change.
1320 #define wxUSE_DYNAMIC_CLASSES 1
1321
1322 //??????
1323 #if defined(__WIN32__)
1324 #define wxUSE_DDE_FOR_IPC 0
1325 #else
1326 #define wxUSE_DDE_FOR_IPC 0
1327 #endif
1328
1329 #endif // _WX_UNIV_SETUP_H_