]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/palmos/setup0.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/setup.h
3 // Purpose: Configuration for the library
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // define this to 0 when building wxBase library - this can also be done from
20 // makefile/project file overriding the value here
25 // ----------------------------------------------------------------------------
26 // compatibility settings
27 // ----------------------------------------------------------------------------
29 // This setting determines the compatibility with 2.4 API: set it to 1 to
30 // enable it but please consider updating your code instead.
34 // Recommended setting: 0 (please update your code)
35 #define WXWIN_COMPATIBILITY_2_4 0
37 // This setting determines the compatibility with 2.6 API: set it to 0 to
38 // flag all cases of using deprecated functions.
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.
44 // Recommended setting: 0 (please update your code)
45 #define WXWIN_COMPATIBILITY_2_6 0
47 // Set to 0 for accurate dialog units, else 1 to be as per 2.1.16 and before.
48 // If migrating between versions, your dialogs may seem to shrink.
52 // Recommended setting: 0 (the new calculations are more correct!)
53 #define wxDIALOG_UNIT_COMPATIBILITY 1
55 // ----------------------------------------------------------------------------
57 // ----------------------------------------------------------------------------
59 // Generic comment about debugging settings: they are very useful if you don't
60 // use any other memory leak detection tools such as Purify/BoundsChecker, but
61 // are probably redundant otherwise. Also, Visual C++ CRT has the same features
62 // as wxWidgets memory debugging subsystem built in since version 5.0 and you
63 // may prefer to use it instead of built in memory debugging code because it is
64 // faster and more fool proof.
66 // Using VC++ CRT memory debugging is enabled by default in debug mode
67 // (__WXDEBUG__) if wxUSE_GLOBAL_MEMORY_OPERATORS is *not* enabled (i.e. is 0)
68 // and if __NO_VC_CRTDBG__ is not defined.
70 // If 1, enables wxDebugContext, for writing error messages to file, etc. If
71 // __WXDEBUG__ is not defined, will still use the normal memory operators.
75 // Recommended setting: 0
76 #define wxUSE_DEBUG_CONTEXT 0
78 // If 1, enables debugging versions of wxObject::new and wxObject::delete *IF*
79 // __WXDEBUG__ is also defined.
81 // WARNING: this code may not work with all architectures, especially if
82 // alignment is an issue. This switch is currently ignored for mingw / cygwin
86 // Recommended setting: 1 if you are not using a memory debugging tool, else 0
87 #define wxUSE_MEMORY_TRACING 0
89 // In debug mode, cause new and delete to be redefined globally.
90 // If this causes problems (e.g. link errors which is a common problem
91 // especially if you use another library which also redefines the global new
92 // and delete), set this to 0.
93 // This switch is currently ignored for mingw / cygwin
97 // Recommended setting: 0
98 #define wxUSE_GLOBAL_MEMORY_OPERATORS 0
100 // In debug mode, causes new to be defined to be WXDEBUG_NEW (see object.h). If
101 // this causes problems (e.g. link errors), set this to 0. You may need to set
102 // this to 0 if using templates (at least for VC++). This switch is currently
103 // ignored for mingw / cygwin / CodeWarrior
107 // Recommended setting: 0
108 #define wxUSE_DEBUG_NEW_ALWAYS 0
110 // wxHandleFatalExceptions() may be used to catch the program faults at run
111 // time and, instead of terminating the program with a usual GPF message box,
112 // call the user-defined wxApp::OnFatalException() function. If you set
113 // wxUSE_ON_FATAL_EXCEPTION to 0, wxHandleFatalExceptions() will not work.
115 // This setting is for Win32 only and can only be enabled if your compiler
116 // supports Win32 structured exception handling (currently only VC++ does)
120 // Recommended setting: 1 if your compiler supports it.
121 #if defined(_MSC_VER) || \
122 (defined(__BORLANDC__) && __BORLANDC__ >= 0x0550)
123 #define wxUSE_ON_FATAL_EXCEPTION 0
125 #define wxUSE_ON_FATAL_EXCEPTION 0
128 // ----------------------------------------------------------------------------
130 // ----------------------------------------------------------------------------
132 // Set wxUSE_UNICODE to 1 to compile wxWidgets in Unicode mode: wxChar will be
133 // defined as wchar_t, wxString will use Unicode internally. If you set this
134 // to 1, you must use wxT() macro for all literal strings in the program.
136 // Unicode is currently only fully supported under Windows NT/2000/XP
137 // (Windows 9x doesn't support it and the programs compiled in Unicode mode
138 // will not run under 9x -- but see wxUSE_UNICODE_MSLU below).
142 // Recommended setting: 0 (unless you only plan to use Windows NT/2000/XP)
143 #ifndef wxUSE_UNICODE
144 #define wxUSE_UNICODE 0
147 // Set wxUSE_UNICODE_MSLU to 1 if you want to compile wxWidgets in Unicode mode
148 // and be able to run compiled apps under Windows 9x as well as NT/2000/XP.
149 // This setting enables use of unicows.dll from MSLU (MS Layer for Unicode, see
150 // http://www.microsoft.com/globaldev/handson/dev/mslu_announce.mspx). Note
151 // that you will have to modify the makefiles to include unicows.lib import
152 // library as the first library (see installation instructions in install.txt
153 // to learn how to do it when building the library or samples).
155 // If your compiler doesn't have unicows.lib, you can get a version of it at
156 // http://libunicows.sourceforge.net
160 // Recommended setting: 0 (1 if you want to deploy Unicode apps on 9x systems)
161 #define wxUSE_UNICODE_MSLU 0
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
170 // Recommended setting: 1
171 #define wxUSE_WCHAR_T 0
173 // ----------------------------------------------------------------------------
175 // ----------------------------------------------------------------------------
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.
186 // Recommended setting: depends on whether you intend to use C++ exceptions
187 // in your own code (1 if you do, 0 if you don't)
188 #define wxUSE_EXCEPTIONS 1
190 // Set wxUSE_EXTENDED_RTTI to 1 to use extended RTTI
194 // Recommended setting: 0
195 #define wxUSE_EXTENDED_RTTI 0
197 #if defined(__BORLANDC__)
198 #undef wxUSE_EXTENDED_RTTI
199 #define wxUSE_EXTENDED_RTTI 1
202 // Set wxUSE_STL to 1 to derive wxList(Foo) and wxArray(Foo) from
203 // std::list<Foo*> and std::vector<Foo*>, with a compatibility interface,
204 // and for wxHashMap to be implemented with templates.
208 // Recommended setting: YMMV
211 // Support for message/error logging. This includes wxLogXXX() functions and
212 // wxLog and derived classes. Don't set this to 0 unless you really know what
217 // Recommended setting: 1 (always)
220 // Recommended setting: 1
221 #define wxUSE_LOGWINDOW 0
223 // Recommended setting: 1
224 #define wxUSE_LOGGUI 0
226 // Recommended setting: 1
227 #define wxUSE_LOG_DIALOG 0
229 // Support for command line parsing using wxCmdLineParser class.
233 // Recommended setting: 1 (can be set to 0 if you don't use the cmd line)
234 #define wxUSE_CMDLINE_PARSER 0
236 // Support for multithreaded applications: if 1, compile in thread classes
237 // (thread.h) and make the library a bit more thread safe. Although thread
238 // support is quite stable by now, you may still consider recompiling the
239 // library without it if you have no use for it - this will result in a
240 // somewhat smaller and faster operation.
242 // This is ignored under Win16, threads are only supported under Win32.
246 // Recommended setting: 0 unless you do plan to develop MT applications
247 #define wxUSE_THREADS 0
249 // If enabled (1), compiles wxWidgets streams classes
250 #define wxUSE_STREAMS 0
252 // Use standard C++ streams if 1. If 0, use wxWin streams implementation.
253 #define wxUSE_STD_IOSTREAM 0
255 // ----------------------------------------------------------------------------
256 // non GUI features selection
257 // ----------------------------------------------------------------------------
259 // Set wxUSE_LONGLONG to 1 to compile the wxLongLong class. This is a 64 bit
260 // integer which is implemented in terms of native 64 bit integers if any or
261 // uses emulation otherwise.
263 // This class is required by wxDateTime and so you should enable it if you want
264 // to use wxDateTime. For most modern platforms, it will use the native 64 bit
265 // integers in which case (almost) all of its functions are inline and it
266 // almost does not take any space, so there should be no reason to switch it
269 // Recommended setting: 1
270 #define wxUSE_LONGLONG 1
272 // Set wxUSE_(F)FILE to 1 to compile wx(F)File classes. wxFile uses low level
273 // POSIX functions for file access, wxFFile uses ANSI C stdio.h functions.
277 // Recommended setting: 1 (wxFile is highly recommended as it is required by
278 // i18n code, wxFileConfig and others)
280 #define wxUSE_FFILE 0
282 // Use wxFSVolume class providing access to the configured/active mount points
286 // Recommended setting: 1 (but may be safely disabled if you don't use it)
287 #define wxUSE_FSVOLUME 1
289 // Use wxStandardPaths class which allows to retrieve some standard locations
290 // in the file system
294 // Recommended setting: 1 (may be disabled to save space, but not much)
295 #define wxUSE_STDPATHS 1
297 // use wxTextBuffer class: required by wxTextFile
298 #define wxUSE_TEXTBUFFER 0
300 // use wxTextFile class: requires wxFile and wxTextBuffer, required by
302 #define wxUSE_TEXTFILE 0
304 // i18n support: _() macro, wxLocale class. Requires wxTextFile.
307 // Set wxUSE_DATETIME to 1 to compile the wxDateTime and related classes which
308 // allow to manipulate dates, times and time intervals. wxDateTime replaces the
309 // old wxTime and wxDate classes which are still provided for backwards
310 // compatibility (and implemented in terms of wxDateTime).
312 // Note that this class is relatively new and is still officially in alpha
313 // stage because some features are not yet (fully) implemented. It is already
314 // quite useful though and should only be disabled if you are aiming at
315 // absolutely minimal version of the library.
317 // Requires: wxUSE_LONGLONG
321 // Recommended setting: 1
322 #define wxUSE_DATETIME 1
324 // Set wxUSE_TIMER to 1 to compile wxTimer class
328 // Recommended setting: 1
329 #define wxUSE_TIMER 0
331 // Use wxStopWatch clas.
335 // Recommended setting: 1 (needed by wxSocket)
336 #define wxUSE_STOPWATCH 0
338 // Setting wxUSE_CONFIG to 1 enables the use of wxConfig and related classes
339 // which allow the application to store its settings in the persistent
340 // storage. Setting this to 1 will also enable on-demand creation of the
341 // global config object in wxApp.
343 // See also wxUSE_CONFIG_NATIVE below.
345 // Recommended setting: 1
346 #define wxUSE_CONFIG 1
348 // If wxUSE_CONFIG is 1, you may choose to use either the native config
349 // classes under Windows (using .INI files under Win16 and the registry under
350 // Win32) or the portable text file format used by the config classes under
353 // Default is 1 to use native classes. Note that you may still use
354 // wxFileConfig even if you set this to 1 - just the config object created by
355 // default for the applications needs will be a wxRegConfig or wxIniConfig and
358 // Recommended setting: 1
359 #define wxUSE_CONFIG_NATIVE 1
361 // If wxUSE_DIALUP_MANAGER is 1, compile in wxDialUpManager class which allows
362 // to connect/disconnect from the network and be notified whenever the dial-up
363 // network connection is established/terminated. Requires wxUSE_DYNAMIC_LOADER.
367 // Recommended setting: 1
368 #define wxUSE_DIALUP_MANAGER 0
370 // Compile in classes for run-time DLL loading and function calling.
371 // Required by wxUSE_DIALUP_MANAGER.
373 // This setting is for Win32 only
377 // Recommended setting: 1
378 #define wxUSE_DYNLIB_CLASS 0
380 // experimental, don't use for now
381 #define wxUSE_DYNAMIC_LOADER 0
383 // Set to 1 to use socket classes
384 #define wxUSE_SOCKETS 0
386 // Set to 1 to enable virtual file systems (required by wxHTML)
387 #define wxUSE_FILESYSTEM 0
389 // Set to 1 to enable virtual ZIP filesystem (requires wxUSE_FILESYSTEM)
390 #define wxUSE_FS_ZIP 0
392 // Set to 1 to enable virtual Internet filesystem (requires wxUSE_FILESYSTEM)
393 #define wxUSE_FS_INET 0
395 // wxArchive classes for accessing archives such as zip and tar
396 #define wxUSE_ARCHIVE_STREAMS 0
398 // Set to 1 to compile wxZipInput/OutputStream classes.
399 #define wxUSE_ZIPSTREAM 0
401 // Set to 1 to compile wxZlibInput/OutputStream classes. Also required by
405 // If enabled, the code written by Apple will be used to write, in a portable
406 // way, float on the disk. See extended.c for the license which is different
407 // from wxWidgets one.
411 // Recommended setting: 1 unless you don't like the license terms (unlikely)
412 #define wxUSE_APPLE_IEEE 0
414 // Joystick support class
415 #define wxUSE_JOYSTICK 0
417 // wxFontMapper class
418 #define wxUSE_FONTMAP 0
420 // wxMimeTypesManager class
421 #define wxUSE_MIMETYPE 0
423 // wxProtocol and related classes: if you want to use either of wxFTP, wxHTTP
424 // or wxURL you need to set this to 1.
428 // Recommended setting: 1
429 #define wxUSE_PROTOCOL 0
431 // The settings for the individual URL schemes
432 #define wxUSE_PROTOCOL_FILE 0
433 #define wxUSE_PROTOCOL_FTP 0
434 #define wxUSE_PROTOCOL_HTTP 0
436 // Define this to use wxURL class.
439 // Define this to use native platform url and protocol support.
440 // Currently valid only for MS-Windows.
441 // Note: if you set this to 1, you can open ftp/http/gopher sites
442 // and obtain a valid input stream for these sites
443 // even when you set wxUSE_PROTOCOL_FTP/HTTP to 0.
444 // Doing so reduces the code size.
446 // This code is experimental and subject to change.
447 #define wxUSE_URL_NATIVE 0
449 // Support for regular expression matching via wxRegEx class: enable this to
450 // use POSIX regular expressions in your code. You need to compile regex
451 // library from src/regex to use it under Windows.
455 // Recommended setting: 1 if your compiler supports it, if it doesn't please
456 // contribute us a makefile for src/regex for it
457 #define wxUSE_REGEX 0
459 // wxSystemOptions class
460 #define wxUSE_SYSTEM_OPTIONS 0
463 #define wxUSE_SOUND 0
465 #define wxUSE_MEDIACTRL 0
467 // Use wxWidget's XRC XML-based resource system. Recommended.
471 // Recommended setting: 1 (requires wxUSE_XML)
474 // XML parsing classes. Note that their API will change in the future, so
475 // using wxXmlDocument and wxXmlNode in your app is not recommended.
479 // Recommended setting: 1 (required by XRC)
486 // ----------------------------------------------------------------------------
487 // Individual GUI controls
488 // ----------------------------------------------------------------------------
490 // You must set wxUSE_CONTROLS to 1 if you are using any controls at all
491 // (without it, wxControl class is not compiled)
495 // Recommended setting: 1 (don't change except for very special programs)
496 #define wxUSE_CONTROLS 1
498 // wxPopupWindow class is a top level transient window. It is currently used
499 // to implement wxTipWindow
503 // Recommended setting: 1 (may be set to 0 if you don't wxUSE_TIPWINDOW)
504 #define wxUSE_POPUPWIN 0
506 // wxTipWindow allows to implement the custom tooltips, it is used by the
507 // context help classes. Requires wxUSE_POPUPWIN.
511 // Recommended setting: 1 (may be set to 0)
512 #define wxUSE_TIPWINDOW 0
514 // Each of the settings below corresponds to one wxWidgets control. They are
515 // all switched on by default but may be disabled if you are sure that your
516 // program (including any standard dialogs it can show!) doesn't need them and
517 // if you desperately want to save some space. If you use any of these you must
518 // set wxUSE_CONTROLS as well.
522 // Recommended setting: 1
523 #define wxUSE_BUTTON 1 // wxButton
524 #define wxUSE_BMPBUTTON 0 // wxBitmapButton
525 #define wxUSE_CALENDARCTRL 0 // wxCalendarCtrl
526 #define wxUSE_CHECKBOX 1 // wxCheckBox
527 #define wxUSE_CHECKLISTBOX 0 // wxCheckListBox (requires wxUSE_OWNER_DRAWN)
528 #define wxUSE_CHOICE 0 // wxChoice
529 #define wxUSE_COMBOBOX 0 // wxComboBox
530 #define wxUSE_DATEPICKCTRL 1 // wxDatePickerCtrl
531 #define wxUSE_GAUGE 0 // wxGauge
532 #define wxUSE_LISTBOX 0 // wxListBox
533 #define wxUSE_LISTCTRL 0 // wxListCtrl
534 #define wxUSE_RADIOBOX 1 // wxRadioBox
535 #define wxUSE_RADIOBTN 1 // wxRadioButton
536 #define wxUSE_SCROLLBAR 0 // wxScrollBar
537 #define wxUSE_SLIDER 1 // wxSlider
538 #define wxUSE_SPINBTN 0 // wxSpinButton
539 #define wxUSE_SPINCTRL 0 // wxSpinCtrl
540 #define wxUSE_STATBOX 0 // wxStaticBox
541 #define wxUSE_STATLINE 0 // wxStaticLine
542 #define wxUSE_STATTEXT 1 // wxStaticText
543 #define wxUSE_STATBMP 0 // wxStaticBitmap
544 #define wxUSE_TEXTCTRL 0 // wxTextCtrl
545 #define wxUSE_TOGGLEBTN 1 // requires wxButton
546 #define wxUSE_TREECTRL 0 // wxTreeCtrl
548 // Use a status bar class? Depending on the value of wxUSE_NATIVE_STATUSBAR
549 // below either wxStatusBarPalm or a generic wxStatusBar will be used.
553 // Recommended setting: 1
554 #define wxUSE_STATUSBAR 1
556 // Two status bar implementations are available under PalmOS: the generic one
557 // or the wrapper around native status bar. For native look and feel the native
558 // version should be used.
562 // Recommended setting: 1 (there is no advantage in using the generic one)
563 #define wxUSE_NATIVE_STATUSBAR 1
565 // wxToolBar related settings: if wxUSE_TOOLBAR is 0, don't compile any toolbar
566 // classes at all. Otherwise, use the native toolbar class unless
567 // wxUSE_TOOLBAR_NATIVE is 0.
569 // Default is 1 for all settings.
571 // Recommended setting: 1 for wxUSE_TOOLBAR and wxUSE_TOOLBAR_NATIVE.
572 #define wxUSE_TOOLBAR 0
573 #define wxUSE_TOOLBAR_NATIVE 0
575 // wxNotebook is a control with several "tabs" located on one of its sides. It
576 // may be used ot logically organise the data presented to the user instead of
577 // putting everything in one huge dialog. It replaces wxTabControl and related
578 // classes of wxWin 1.6x.
582 // Recommended setting: 1
583 #define wxUSE_NOTEBOOK 0
585 // wxListbook control is similar to wxNotebook but uses wxListCtrl instead of
590 // Recommended setting: 1
591 #define wxUSE_LISTBOOK 0
593 // wxChoicebook control is similar to wxNotebook but uses wxChoice instead of
598 // Recommended setting: 1
599 #define wxUSE_CHOICEBOOK 0
601 // wxTreebook control is similar to wxNotebook but uses wxTreeCtrl instead of
606 // Recommended setting: 1
607 #define wxUSE_TREEBOOK 0
609 // wxTabDialog is a generic version of wxNotebook but it is incompatible with
610 // the new class. It shouldn't be used in new code.
614 // Recommended setting: 0 (use wxNotebook)
615 #define wxUSE_TAB_DIALOG 0
619 // Default is 1 for both options.
621 // Recommended setting: 1
625 // ----------------------------------------------------------------------------
626 // Miscellaneous GUI stuff
627 // ----------------------------------------------------------------------------
629 // wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar)
630 #define wxUSE_ACCEL 0
632 // Hotkey support (currently Windows only)
633 #define wxUSE_HOTKEY 0
635 // Use wxCaret: a class implementing a "cursor" in a text control (called caret
640 // Recommended setting: 1 (can be safely set to 0, not used by the library)
641 #define wxUSE_CARET 0
643 // Use wxDisplay class: it allows enumerating all displays on a system and
644 // working with them.
646 // Default is 0 because it isn't yet implemented on all platforms
648 // Recommended setting: 1 if you need it, can be safely set to 0 otherwise
649 #define wxUSE_DISPLAY 0
651 // Miscellaneous geometry code: needed for Canvas library
652 #define wxUSE_GEOMETRY 0
654 // Use wxImageList. This class is needed by wxNotebook, wxTreeCtrl and
659 // Recommended setting: 1 (set it to 0 if you don't use any of the controls
660 // enumerated above, then this class is mostly useless too)
661 #define wxUSE_IMAGLIST 0
663 // Use wxMenu, wxMenuBar, wxMenuItem.
667 // Recommended setting: 1 (can't be disabled under MSW)
668 #define wxUSE_MENUS 1
670 // Use wxSashWindow class.
674 // Recommended setting: 1
677 // Use wxSplitterWindow class.
681 // Recommended setting: 1
682 #define wxUSE_SPLITTER 0
684 // Use wxToolTip and wxWindow::Set/GetToolTip() methods.
688 // Recommended setting: 1
689 #define wxUSE_TOOLTIPS 0
691 // wxValidator class and related methods
692 #define wxUSE_VALIDATORS 0
694 // wxDC cacheing implementation
695 #define wxUSE_DC_CACHEING 0
697 // Set this to 1 to enable the use of DIB's for wxBitmap to support
698 // bitmaps > 16MB on Win95/98/Me. Set to 0 to use DDB's only.
699 #define wxUSE_DIB_FOR_BITMAP 0
701 // Set this to 1 to enable wxDIB
702 #define wxUSE_WXDIB 0
704 // ----------------------------------------------------------------------------
706 // ----------------------------------------------------------------------------
708 // On rare occasions (e.g. using DJGPP) may want to omit common dialogs (e.g.
709 // file selector, printer dialog). Switching this off also switches off the
710 // printing architecture and interactive wxPrinterDC.
714 // Recommended setting: 1 (unless it really doesn't work)
715 #define wxUSE_COMMON_DIALOGS 0
717 // wxBusyInfo displays window with message when app is busy. Works in same way
719 #define wxUSE_BUSYINFO 0
721 // Use single/multiple choice dialogs.
725 // Recommended setting: 1 (used in the library itself)
726 #define wxUSE_CHOICEDLG 0
728 // Use colour picker dialog
732 // Recommended setting: 1
733 #define wxUSE_COLOURDLG 1
735 // wxDirDlg class for getting a directory name from user
736 #define wxUSE_DIRDLG 0
738 // TODO: setting to choose the generic or native one
740 // Use file open/save dialogs.
744 // Recommended setting: 1 (used in many places in the library itself)
745 #define wxUSE_FILEDLG 0
747 // Use find/replace dialogs.
751 // Recommended setting: 1 (but may be safely set to 0)
752 #define wxUSE_FINDREPLDLG 0
754 // Use font picker dialog
758 // Recommended setting: 1 (used in the library itself)
759 #define wxUSE_FONTDLG 0
761 // Use wxMessageDialog and wxMessageBox.
765 // Recommended setting: 1 (used in the library itself)
766 #define wxUSE_MSGDLG 1
768 // progress dialog class for lengthy operations
769 #define wxUSE_PROGRESSDLG 1
771 // support for startup tips (wxShowTip &c)
772 #define wxUSE_STARTUP_TIPS 0
774 // text entry dialog and wxGetTextFromUser function
775 #define wxUSE_TEXTDLG 0
777 // number entry dialog
778 #define wxUSE_NUMBERDLG 0
780 // splash screen class
781 #define wxUSE_SPLASH 0
784 #define wxUSE_WIZARDDLG 0
786 // ----------------------------------------------------------------------------
788 // ----------------------------------------------------------------------------
790 // Windows supports the graphics format known as metafile which is, though not
791 // portable, is widely used under Windows and so is supported by wxWin (under
792 // Windows only, of course). Win16 (Win3.1) used the so-called "Window
793 // MetaFiles" or WMFs which were replaced with "Enhanced MetaFiles" or EMFs in
794 // Win32 (Win9x, NT, 2000). Both of these are supported in wxWin and, by
795 // default, WMFs will be used under Win16 and EMFs under Win32. This may be
796 // changed by setting wxUSE_WIN_METAFILES_ALWAYS to 1 and/or setting
797 // wxUSE_ENH_METAFILE to 0. You may also set wxUSE_METAFILE to 0 to not compile
798 // in any metafile related classes at all.
800 // Default is 1 for wxUSE_ENH_METAFILE and 0 for wxUSE_WIN_METAFILES_ALWAYS.
802 // Recommended setting: default or 0 for everything for portable programs.
803 #define wxUSE_METAFILE 0
804 #define wxUSE_ENH_METAFILE 0
805 #define wxUSE_WIN_METAFILES_ALWAYS 0
807 // ----------------------------------------------------------------------------
808 // Big GUI components
809 // ----------------------------------------------------------------------------
811 // Set to 0 to disable MDI support.
813 // Requires wxUSE_NOTEBOOK under platforms other than MSW.
817 // Recommended setting: 1, can be safely set to 0.
820 // Set to 0 to disable document/view architecture
821 #define wxUSE_DOC_VIEW_ARCHITECTURE 0
823 // Set to 0 to disable MDI document/view architecture
825 // Requires wxUSE_MDI && wxUSE_DOC_VIEW_ARCHITECTURE
826 #define wxUSE_MDI_ARCHITECTURE 0
828 // Set to 0 to disable print/preview architecture code
829 #define wxUSE_PRINTING_ARCHITECTURE 0
831 // wxHTML sublibrary allows to display HTML in wxWindow programs and much,
836 // Recommended setting: 1 (wxHTML is great!), set to 0 if you want compile a
840 // Setting wxUSE_GLCANVAS to 1 enables OpenGL support. You need to have OpenGL
841 // headers and libraries to be able to compile the library with wxUSE_GLCANVAS
842 // set to 1. Note that for some compilers (notably Microsoft Visual C++) you
843 // will need to manually add opengl32.lib and glu32.lib to the list of
844 // libraries linked with your program if you use OpenGL.
848 // Recommended setting: 1 if you intend to use OpenGL, 0 otherwise
849 #define wxUSE_GLCANVAS 0
851 // ----------------------------------------------------------------------------
853 // ----------------------------------------------------------------------------
855 // Use wxClipboard class for clipboard copy/paste.
859 // Recommended setting: 1
860 #define wxUSE_CLIPBOARD 0
862 // Use wxDataObject and related classes. Needed for clipboard and OLE drag and
867 // Recommended setting: 1
868 #define wxUSE_DATAOBJ 0
870 // Use wxDropTarget and wxDropSource classes for drag and drop (this is
871 // different from "built in" drag and drop in wxTreeCtrl which is always
872 // available). Requires wxUSE_DATAOBJ.
876 // Recommended setting: 1
877 #define wxUSE_DRAG_AND_DROP 0
879 // Use wxAccessible for enhanced and customisable accessibility.
880 // Depends on wxUSE_OLE.
884 // Recommended setting (at present): 0
885 #define wxUSE_ACCESSIBILITY 0
887 // ----------------------------------------------------------------------------
888 // miscellaneous settings
889 // ----------------------------------------------------------------------------
891 // wxSingleInstanceChecker class allows to verify at startup if another program
892 // instance is running (it is only available under Win32)
896 // Recommended setting: 1 (the class is tiny, disabling it won't save much
898 #define wxUSE_SNGLINST_CHECKER 0
900 #define wxUSE_DRAGIMAGE 0
903 // 0 for no interprocess comms
905 // 0 for no help facility
906 #define wxUSE_MS_HTML_HELP 0
907 // 0 for no MS HTML Help
909 // Use wxHTML-based help controller?
910 #define wxUSE_WXHTML_HELP 0
912 #define wxUSE_RESOURCES 0
913 // 0 for no wxGetResource/wxWriteResource
914 #define wxUSE_CONSTRAINTS 0
915 // 0 for no window layout constraint system
917 #define wxUSE_SPLINES 0
920 #define wxUSE_MOUSEWHEEL 0
921 // Include mouse wheel support
923 // ----------------------------------------------------------------------------
924 // postscript support settings
925 // ----------------------------------------------------------------------------
927 // Set to 1 for PostScript device context.
928 #define wxUSE_POSTSCRIPT 0
930 // Set to 1 to use font metric files in GetTextExtent
931 #define wxUSE_AFM_FOR_POSTSCRIPT 0
933 // ----------------------------------------------------------------------------
935 // ----------------------------------------------------------------------------
937 // Define 1 to use ODBC classes
940 // For backward compatibility reasons, this parameter now only controls the
941 // default scrolling method used by cursors. This default behavior can be
942 // overriden by setting the second param of wxDB::wxDbGetConnection() or
943 // wxDb() constructor to indicate whether the connection (and any wxDbTable()s
944 // that use the connection) should support forward only scrolling of cursors,
945 // or both forward and backward support for backward scrolling cursors is
946 // dependent on the data source as well as the ODBC driver being used.
947 #define wxODBC_FWD_ONLY_CURSORS 0
949 // Default is 0. Set to 1 to use the deprecated classes, enum types, function,
950 // member variables. With a setting of 1, full backward compatibility with the
951 // 2.0.x release is possible. It is STRONGLY recommended that this be set to 0,
952 // as future development will be done only on the non-deprecated
953 // functions/classes/member variables/etc.
954 #define wxODBC_BACKWARD_COMPATABILITY 0
956 // ----------------------------------------------------------------------------
957 // other compiler (mis)features
958 // ----------------------------------------------------------------------------
960 // Set this to 0 if your compiler can't cope with omission of prototype
965 // Recommended setting: 1 (should never need to set this to 0)
966 #define REMOVE_UNUSED_ARG 1
968 // VC++ 4.2 and above allows <iostream> and <iostream.h> but you can't mix
969 // them. Set to 1 for <iostream.h>, 0 for <iostream>. Note that VC++ 7.1
970 // and later doesn't support wxUSE_IOSTREAMH == 1 and so <iostream> will be
975 // Recommended setting: whatever your compiler likes more
976 #define wxUSE_IOSTREAMH 1
978 // ----------------------------------------------------------------------------
979 // image format support
980 // ----------------------------------------------------------------------------
982 // wxImage supports many different image formats which can be configured at
983 // compile-time. BMP is always supported, others are optional and can be safely
984 // disabled if you don't plan to use images in such format sometimes saving
985 // substantial amount of code in the final library.
987 // Some formats require an extra library which is included in wxWin sources
988 // which is mentioned if it is the case.
990 // Set to 1 for wxImage support (recommended).
991 #define wxUSE_IMAGE 0
993 // Set to 1 for PNG format support (requires libpng). Also requires wxUSE_ZLIB.
994 #define wxUSE_LIBPNG 0
996 // Set to 1 for JPEG format support (requires libjpeg)
997 #define wxUSE_LIBJPEG 0
999 // Set to 1 for TIFF format support (requires libtiff)
1000 #define wxUSE_LIBTIFF 0
1002 // Set to 1 for GIF format support
1005 // Set to 1 for PNM format support
1008 // Set to 1 for PCX format support
1011 // Set to 1 for IFF format support (Amiga format)
1014 // Set to 1 for XPM format support
1017 // Set to 1 for MS Icons and Cursors format support
1018 #define wxUSE_ICO_CUR 0
1020 // Set to 1 to compile in wxPalette class
1021 #define wxUSE_PALETTE 0
1023 // ----------------------------------------------------------------------------
1024 // Windows-only settings
1025 // ----------------------------------------------------------------------------
1027 // Set this to 1 if you want to use wxWidgets and MFC in the same program. This
1028 // will override some other settings (see below)
1032 // Recommended setting: 0 unless you really have to use MFC
1035 // Set this to 1 for generic OLE support: this is required for drag-and-drop,
1036 // clipboard, OLE Automation. Only set it to 0 if your compiler is very old and
1037 // can't compile/doesn't have the OLE headers.
1041 // Recommended setting: 1
1044 // Set to 0 to disable PostScript print/preview architecture code under Windows
1045 // (just use Windows printing).
1046 #define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 0
1048 // Set this to 1 to use RICHEDIT controls for wxTextCtrl with style wxTE_RICH
1049 // which allows to put more than ~32Kb of text in it even under Win9x (NT
1050 // doesn't have such limitation).
1052 // Default is 1 for compilers which support it
1054 // Recommended setting: 1, only set it to 0 if your compiler doesn't have
1055 // or can't compile <richedit.h>
1056 #if defined(__WIN95__) && !defined(__WINE__) && !defined(__GNUWIN32_OLD__)
1057 #define wxUSE_RICHEDIT 0
1059 // TODO: This should be ifdef'ed for any compilers that don't support
1060 // RichEdit 2.0 but do have RichEdit 1.0...
1061 #define wxUSE_RICHEDIT2 0
1064 #define wxUSE_RICHEDIT 0
1065 #define wxUSE_RICHEDIT2 0
1068 // Set this to 1 to enable support for the owner-drawn menu and listboxes. This
1069 // is required by wxUSE_CHECKLISTBOX.
1073 // Recommended setting: 1, set to 0 for a small library size reduction
1074 #define wxUSE_OWNER_DRAWN 0
1076 // Set to 1 to compile MS Windows XP theme engine support
1077 #define wxUSE_UXTHEME 0
1079 // Set to 1 to auto-adapt to MS Windows XP themes where possible
1080 // (notably, wxNotebook pages)
1081 #define wxUSE_UXTHEME_AUTO 0
1083 // ----------------------------------------------------------------------------
1084 // obsolete settings
1085 // ----------------------------------------------------------------------------
1087 // NB: all settings in this section are obsolete and should not be used/changed
1088 // at all, they will disappear
1090 // Define 1 to use bitmap messages.
1091 #define wxUSE_BITMAP_MESSAGE 0
1093 // If 1, enables provision of run-time type information.
1094 // NOW MANDATORY: don't change.
1095 #define wxUSE_DYNAMIC_CLASSES 1
1099 // ----------------------------------------------------------------------------
1101 // ----------------------------------------------------------------------------
1103 // define this to 0 when building wxBase library - this can also be done from
1104 // makefile/project file overriding the value here
1109 // ----------------------------------------------------------------------------
1110 // compatibility settings
1111 // ----------------------------------------------------------------------------
1113 // This setting determines the compatibility with 2.4 API: set it to 1 to
1114 // enable it but please consider updating your code instead.
1118 // Recommended setting: 0 (please update your code)
1119 #define WXWIN_COMPATIBILITY_2_4 0
1121 // This setting determines the compatibility with 2.6 API: set it to 0 to
1122 // flag all cases of using deprecated functions.
1124 // Default is 1 but please try building your code with 0 as the default will
1125 // change to 0 in the next version and the deprecated functions will disappear
1126 // in the version after it completely.
1128 // Recommended setting: 0 (please update your code)
1129 #define WXWIN_COMPATIBILITY_2_6 1
1131 // MSW-only: Set to 0 for accurate dialog units, else 1 for old behaviour when
1132 // default system font is used for wxWindow::GetCharWidth/Height() instead of
1133 // the current font.
1137 // Recommended setting: 0
1138 #define wxDIALOG_UNIT_COMPATIBILITY 0
1140 // ----------------------------------------------------------------------------
1141 // debugging settings
1142 // ----------------------------------------------------------------------------
1144 // Generic comment about debugging settings: they are very useful if you don't
1145 // use any other memory leak detection tools such as Purify/BoundsChecker, but
1146 // are probably redundant otherwise. Also, Visual C++ CRT has the same features
1147 // as wxWidgets memory debugging subsystem built in since version 5.0 and you
1148 // may prefer to use it instead of built in memory debugging code because it is
1149 // faster and more fool proof.
1151 // Using VC++ CRT memory debugging is enabled by default in debug mode
1152 // (__WXDEBUG__) if wxUSE_GLOBAL_MEMORY_OPERATORS is *not* enabled (i.e. is 0)
1153 // and if __NO_VC_CRTDBG__ is not defined.
1155 // If 1, enables wxDebugContext, for writing error messages to file, etc. If
1156 // __WXDEBUG__ is not defined, will still use the normal memory operators.
1160 // Recommended setting: 0
1161 #define wxUSE_DEBUG_CONTEXT 0
1163 // If 1, enables debugging versions of wxObject::new and wxObject::delete *IF*
1164 // __WXDEBUG__ is also defined.
1166 // WARNING: this code may not work with all architectures, especially if
1167 // alignment is an issue. This switch is currently ignored for mingw / cygwin
1171 // Recommended setting: 1 if you are not using a memory debugging tool, else 0
1172 #define wxUSE_MEMORY_TRACING 0
1174 // In debug mode, cause new and delete to be redefined globally.
1175 // If this causes problems (e.g. link errors which is a common problem
1176 // especially if you use another library which also redefines the global new
1177 // and delete), set this to 0.
1178 // This switch is currently ignored for mingw / cygwin
1182 // Recommended setting: 0
1183 #define wxUSE_GLOBAL_MEMORY_OPERATORS 0
1185 // In debug mode, causes new to be defined to be WXDEBUG_NEW (see object.h). If
1186 // this causes problems (e.g. link errors), set this to 0. You may need to set
1187 // this to 0 if using templates (at least for VC++). This switch is currently
1188 // ignored for mingw / cygwin / CodeWarrior
1192 // Recommended setting: 0
1193 #define wxUSE_DEBUG_NEW_ALWAYS 0
1195 // wxHandleFatalExceptions() may be used to catch the program faults at run
1196 // time and, instead of terminating the program with a usual GPF message box,
1197 // call the user-defined wxApp::OnFatalException() function. If you set
1198 // wxUSE_ON_FATAL_EXCEPTION to 0, wxHandleFatalExceptions() will not work.
1200 // This setting is for Win32 only and can only be enabled if your compiler
1201 // supports Win32 structured exception handling (currently only VC++ does)
1205 // Recommended setting: 1 if your compiler supports it.
1206 #define wxUSE_ON_FATAL_EXCEPTION 1
1208 // Set this to 1 to be able to generate a human-readable (unlike
1209 // machine-readable minidump created by wxCrashReport::Generate()) stack back
1210 // trace when your program crashes using wxStackWalker
1212 // Default is 1 if supported by the compiler.
1214 // Recommended setting: 1, set to 0 if your programs never crash
1215 #define wxUSE_STACKWALKER 1
1217 // Set this to 1 to compile in wxDebugReport class which allows you to create
1218 // and optionally upload to your web site a debug report consisting of back
1219 // trace of the crash (if wxUSE_STACKWALKER == 1) and other information.
1221 // Default is 1 if supported by the compiler.
1223 // Recommended setting: 1, it is compiled into a separate library so there
1224 // is no overhead if you don't use it
1225 #define wxUSE_DEBUGREPORT 1
1227 // ----------------------------------------------------------------------------
1229 // ----------------------------------------------------------------------------
1231 // Set wxUSE_UNICODE to 1 to compile wxWidgets in Unicode mode: wxChar will be
1232 // defined as wchar_t, wxString will use Unicode internally. If you set this
1233 // to 1, you must use wxT() macro for all literal strings in the program.
1235 // Unicode is currently only fully supported under Windows NT/2000/XP
1236 // (Windows 9x doesn't support it and the programs compiled in Unicode mode
1237 // will not run under 9x -- but see wxUSE_UNICODE_MSLU below).
1241 // Recommended setting: 0 (unless you only plan to use Windows NT/2000/XP)
1242 #ifndef wxUSE_UNICODE
1243 #define wxUSE_UNICODE 0
1246 // Setting wxUSE_WCHAR_T to 1 gives you some degree of Unicode support without
1247 // compiling the program in Unicode mode. More precisely, it will be possible
1248 // to construct wxString from a wide (Unicode) string and convert any wxString
1253 // Recommended setting: 1
1254 #define wxUSE_WCHAR_T 1
1256 // ----------------------------------------------------------------------------
1258 // ----------------------------------------------------------------------------
1260 // Compile library in exception-safe mode? If set to 1, the library will try to
1261 // behave correctly in presence of exceptions (even though it still will not
1262 // use the exceptions itself) and notify the user code about any unhandled
1263 // exceptions. If set to 0, propagation of the exceptions through the library
1264 // code will lead to undefined behaviour -- but the code itself will be
1265 // slightly smaller and faster.
1267 // Note that like wxUSE_THREADS this option is automatically set to 0 if
1268 // wxNO_EXCEPTIONS is defined.
1272 // Recommended setting: depends on whether you intend to use C++ exceptions
1273 // in your own code (1 if you do, 0 if you don't)
1274 #define wxUSE_EXCEPTIONS 1
1276 // Set wxUSE_EXTENDED_RTTI to 1 to use extended RTTI
1280 // Recommended setting: 0 (this is still work in progress...)
1281 #define wxUSE_EXTENDED_RTTI 0
1283 // Set wxUSE_STL to 1 to derive wxList(Foo) and wxArray(Foo) from
1284 // std::list<Foo*> and std::vector<Foo*>, with a compatibility interface,
1285 // and for wxHashMap to be implemented with templates.
1289 // Recommended setting: YMMV
1292 // Support for message/error logging. This includes wxLogXXX() functions and
1293 // wxLog and derived classes. Don't set this to 0 unless you really know what
1298 // Recommended setting: 1 (always)
1301 // Recommended setting: 1
1302 #define wxUSE_LOGWINDOW 1
1304 // Recommended setting: 1
1305 #define wxUSE_LOGGUI 1
1307 // Recommended setting: 1
1308 #define wxUSE_LOG_DIALOG 1
1310 // Support for command line parsing using wxCmdLineParser class.
1314 // Recommended setting: 1 (can be set to 0 if you don't use the cmd line)
1315 #define wxUSE_CMDLINE_PARSER 1
1317 // Support for multithreaded applications: if 1, compile in thread classes
1318 // (thread.h) and make the library a bit more thread safe. Although thread
1319 // support is quite stable by now, you may still consider recompiling the
1320 // library without it if you have no use for it - this will result in a
1321 // somewhat smaller and faster operation.
1323 // Notice that if wxNO_THREADS is defined, wxUSE_THREADS is automatically reset
1324 // to 0 in wx/chkconf.h, so, for example, if you set USE_THREADS to 0 in
1325 // build/msw/config.* file this value will have no effect.
1329 // Recommended setting: 0 unless you do plan to develop MT applications
1330 #define wxUSE_THREADS 1
1332 // If enabled (1), compiles wxWidgets streams classes
1333 #define wxUSE_STREAMS 1
1335 // Use standard C++ streams if 1. If 0, use wxWin streams implementation only.
1336 #define wxUSE_STD_IOSTREAM 0
1338 // Enable conversion to standard C++ string if 1.
1339 #define wxUSE_STD_STRING 0
1341 // ----------------------------------------------------------------------------
1342 // non GUI features selection
1343 // ----------------------------------------------------------------------------
1345 // Set wxUSE_LONGLONG to 1 to compile the wxLongLong class. This is a 64 bit
1346 // integer which is implemented in terms of native 64 bit integers if any or
1347 // uses emulation otherwise.
1349 // This class is required by wxDateTime and so you should enable it if you want
1350 // to use wxDateTime. For most modern platforms, it will use the native 64 bit
1351 // integers in which case (almost) all of its functions are inline and it
1352 // almost does not take any space, so there should be no reason to switch it
1355 // Recommended setting: 1
1356 #define wxUSE_LONGLONG 1
1358 // Set wxUSE_(F)FILE to 1 to compile wx(F)File classes. wxFile uses low level
1359 // POSIX functions for file access, wxFFile uses ANSI C stdio.h functions.
1363 // Recommended setting: 1 (wxFile is highly recommended as it is required by
1364 // i18n code, wxFileConfig and others)
1365 #define wxUSE_FILE 1
1366 #define wxUSE_FFILE 1
1368 // Use wxFSVolume class providing access to the configured/active mount points
1372 // Recommended setting: 1 (but may be safely disabled if you don't use it)
1373 #define wxUSE_FSVOLUME 1
1375 // Use wxStandardPaths class which allows to retrieve some standard locations
1376 // in the file system
1380 // Recommended setting: 1 (may be disabled to save space, but not much)
1381 #define wxUSE_STDPATHS 1
1383 // use wxTextBuffer class: required by wxTextFile
1384 #define wxUSE_TEXTBUFFER 1
1386 // use wxTextFile class: requires wxFile and wxTextBuffer, required by
1388 #define wxUSE_TEXTFILE 1
1390 // i18n support: _() macro, wxLocale class. Requires wxTextFile.
1391 #define wxUSE_INTL 1
1393 // Set wxUSE_DATETIME to 1 to compile the wxDateTime and related classes which
1394 // allow to manipulate dates, times and time intervals. wxDateTime replaces the
1395 // old wxTime and wxDate classes which are still provided for backwards
1396 // compatibility (and implemented in terms of wxDateTime).
1398 // Note that this class is relatively new and is still officially in alpha
1399 // stage because some features are not yet (fully) implemented. It is already
1400 // quite useful though and should only be disabled if you are aiming at
1401 // absolutely minimal version of the library.
1403 // Requires: wxUSE_LONGLONG
1407 // Recommended setting: 1
1408 #define wxUSE_DATETIME 1
1410 // Set wxUSE_TIMER to 1 to compile wxTimer class
1414 // Recommended setting: 1
1415 #define wxUSE_TIMER 1
1417 // Use wxStopWatch clas.
1421 // Recommended setting: 1 (needed by wxSocket)
1422 #define wxUSE_STOPWATCH 1
1424 // Setting wxUSE_CONFIG to 1 enables the use of wxConfig and related classes
1425 // which allow the application to store its settings in the persistent
1426 // storage. Setting this to 1 will also enable on-demand creation of the
1427 // global config object in wxApp.
1429 // See also wxUSE_CONFIG_NATIVE below.
1431 // Recommended setting: 1
1432 #define wxUSE_CONFIG 1
1434 // If wxUSE_CONFIG is 1, you may choose to use either the native config
1435 // classes under Windows (using .INI files under Win16 and the registry under
1436 // Win32) or the portable text file format used by the config classes under
1439 // Default is 1 to use native classes. Note that you may still use
1440 // wxFileConfig even if you set this to 1 - just the config object created by
1441 // default for the applications needs will be a wxRegConfig or wxIniConfig and
1442 // not wxFileConfig.
1444 // Recommended setting: 1
1445 #define wxUSE_CONFIG_NATIVE 1
1447 // If wxUSE_DIALUP_MANAGER is 1, compile in wxDialUpManager class which allows
1448 // to connect/disconnect from the network and be notified whenever the dial-up
1449 // network connection is established/terminated. Requires wxUSE_DYNAMIC_LOADER.
1453 // Recommended setting: 1
1454 #define wxUSE_DIALUP_MANAGER 1
1456 // Compile in classes for run-time DLL loading and function calling.
1457 // Required by wxUSE_DIALUP_MANAGER.
1459 // This setting is for Win32 only
1463 // Recommended setting: 1
1464 #define wxUSE_DYNLIB_CLASS 1
1466 // experimental, don't use for now
1467 #define wxUSE_DYNAMIC_LOADER 1
1469 // Set to 1 to use socket classes
1470 #define wxUSE_SOCKETS 1
1472 // Set to 1 to enable virtual file systems (required by wxHTML)
1473 #define wxUSE_FILESYSTEM 1
1475 // Set to 1 to enable virtual ZIP filesystem (requires wxUSE_FILESYSTEM)
1476 #define wxUSE_FS_ZIP 1
1478 // Set to 1 to enable virtual Internet filesystem (requires wxUSE_FILESYSTEM)
1479 #define wxUSE_FS_INET 1
1481 // wxArchive classes for accessing archives such as zip and tar
1482 #define wxUSE_ARCHIVE_STREAMS 1
1484 // Set to 1 to compile wxZipInput/OutputStream classes.
1485 #define wxUSE_ZIPSTREAM 1
1487 // Set to 1 to compile wxZlibInput/OutputStream classes. Also required by
1489 #define wxUSE_ZLIB 1
1491 // If enabled, the code written by Apple will be used to write, in a portable
1492 // way, float on the disk. See extended.c for the license which is different
1493 // from wxWidgets one.
1497 // Recommended setting: 1 unless you don't like the license terms (unlikely)
1498 #define wxUSE_APPLE_IEEE 1
1500 // Joystick support class
1501 #define wxUSE_JOYSTICK 1
1503 // wxFontMapper class
1504 #define wxUSE_FONTMAP 1
1506 // wxMimeTypesManager class
1507 #define wxUSE_MIMETYPE 1
1509 // wxProtocol and related classes: if you want to use either of wxFTP, wxHTTP
1510 // or wxURL you need to set this to 1.
1514 // Recommended setting: 1
1515 #define wxUSE_PROTOCOL 1
1517 // The settings for the individual URL schemes
1518 #define wxUSE_PROTOCOL_FILE 1
1519 #define wxUSE_PROTOCOL_FTP 1
1520 #define wxUSE_PROTOCOL_HTTP 1
1522 // Define this to use wxURL class.
1525 // Define this to use native platform url and protocol support.
1526 // Currently valid only for MS-Windows.
1527 // Note: if you set this to 1, you can open ftp/http/gopher sites
1528 // and obtain a valid input stream for these sites
1529 // even when you set wxUSE_PROTOCOL_FTP/HTTP to 0.
1530 // Doing so reduces the code size.
1532 // This code is experimental and subject to change.
1533 #define wxUSE_URL_NATIVE 0
1535 // Support for regular expression matching via wxRegEx class: enable this to
1536 // use POSIX regular expressions in your code. You need to compile regex
1537 // library from src/regex to use it under Windows.
1541 // Recommended setting: 1 if your compiler supports it, if it doesn't please
1542 // contribute us a makefile for src/regex for it
1543 #define wxUSE_REGEX 1
1545 // wxSystemOptions class
1546 #define wxUSE_SYSTEM_OPTIONS 1
1549 #define wxUSE_SOUND 1
1555 // Recommended setting: 1
1556 #define wxUSE_MEDIACTRL 1
1558 // Use GStreamer for Unix (req a lot of dependancies)
1562 // Recommended setting: 1 (wxMediaCtrl won't work by default without it)
1563 #define wxUSE_GSTREAMER 0
1565 // Use wxWidget's XRC XML-based resource system. Recommended.
1569 // Recommended setting: 1 (requires wxUSE_XML)
1572 // XML parsing classes. Note that their API will change in the future, so
1573 // using wxXmlDocument and wxXmlNode in your app is not recommended.
1577 // Recommended setting: 1 (required by XRC)
1579 # define wxUSE_XML 1
1581 # define wxUSE_XML 0
1584 // ----------------------------------------------------------------------------
1585 // Individual GUI controls
1586 // ----------------------------------------------------------------------------
1588 // You must set wxUSE_CONTROLS to 1 if you are using any controls at all
1589 // (without it, wxControl class is not compiled)
1593 // Recommended setting: 1 (don't change except for very special programs)
1594 #define wxUSE_CONTROLS 1
1596 // wxPopupWindow class is a top level transient window. It is currently used
1597 // to implement wxTipWindow
1601 // Recommended setting: 1 (may be set to 0 if you don't wxUSE_TIPWINDOW)
1602 #define wxUSE_POPUPWIN 1
1604 // wxTipWindow allows to implement the custom tooltips, it is used by the
1605 // context help classes. Requires wxUSE_POPUPWIN.
1609 // Recommended setting: 1 (may be set to 0)
1610 #define wxUSE_TIPWINDOW 1
1612 // Each of the settings below corresponds to one wxWidgets control. They are
1613 // all switched on by default but may be disabled if you are sure that your
1614 // program (including any standard dialogs it can show!) doesn't need them and
1615 // if you desperately want to save some space. If you use any of these you must
1616 // set wxUSE_CONTROLS as well.
1620 // Recommended setting: 1
1621 #define wxUSE_BUTTON 1 // wxButton
1622 #define wxUSE_BMPBUTTON 1 // wxBitmapButton
1623 #define wxUSE_CALENDARCTRL 1 // wxCalendarCtrl
1624 #define wxUSE_CHECKBOX 1 // wxCheckBox
1625 #define wxUSE_CHECKLISTBOX 1 // wxCheckListBox (requires wxUSE_OWNER_DRAWN)
1626 #define wxUSE_CHOICE 1 // wxChoice
1627 #define wxUSE_COMBOBOX 1 // wxComboBox
1628 #define wxUSE_DATEPICKCTRL 1 // wxDatePickerCtrl
1629 #define wxUSE_GAUGE 1 // wxGauge
1630 #define wxUSE_LISTBOX 1 // wxListBox
1631 #define wxUSE_LISTCTRL 1 // wxListCtrl
1632 #define wxUSE_RADIOBOX 1 // wxRadioBox
1633 #define wxUSE_RADIOBTN 1 // wxRadioButton
1634 #define wxUSE_SCROLLBAR 1 // wxScrollBar
1635 #define wxUSE_SLIDER 1 // wxSlider
1636 #define wxUSE_SPINBTN 1 // wxSpinButton
1637 #define wxUSE_SPINCTRL 1 // wxSpinCtrl
1638 #define wxUSE_STATBOX 1 // wxStaticBox
1639 #define wxUSE_STATLINE 1 // wxStaticLine
1640 #define wxUSE_STATTEXT 1 // wxStaticText
1641 #define wxUSE_STATBMP 1 // wxStaticBitmap
1642 #define wxUSE_TEXTCTRL 1 // wxTextCtrl
1643 #define wxUSE_TOGGLEBTN 1 // requires wxButton
1644 #define wxUSE_TREECTRL 1 // wxTreeCtrl
1646 // Use a status bar class? Depending on the value of wxUSE_NATIVE_STATUSBAR
1647 // below either wxStatusBar95 or a generic wxStatusBar will be used.
1651 // Recommended setting: 1
1652 #define wxUSE_STATUSBAR 1
1654 // Two status bar implementations are available under Win32: the generic one
1655 // or the wrapper around native control. For native look and feel the native
1656 // version should be used.
1658 // Default is 1 for the platforms where native status bar is supported.
1660 // Recommended setting: 1 (there is no advantage in using the generic one)
1661 #define wxUSE_NATIVE_STATUSBAR 1
1663 // wxToolBar related settings: if wxUSE_TOOLBAR is 0, don't compile any toolbar
1664 // classes at all. Otherwise, use the native toolbar class unless
1665 // wxUSE_TOOLBAR_NATIVE is 0.
1667 // Default is 1 for all settings.
1669 // Recommended setting: 1 for wxUSE_TOOLBAR and wxUSE_TOOLBAR_NATIVE.
1670 #define wxUSE_TOOLBAR 1
1671 #define wxUSE_TOOLBAR_NATIVE 1
1673 // wxNotebook is a control with several "tabs" located on one of its sides. It
1674 // may be used to logically organise the data presented to the user instead of
1675 // putting everything in one huge dialog. It replaces wxTabControl and related
1676 // classes of wxWin 1.6x.
1680 // Recommended setting: 1
1681 #define wxUSE_NOTEBOOK 1
1683 // wxListbook control is similar to wxNotebook but uses wxListCtrl instead of
1688 // Recommended setting: 1
1689 #define wxUSE_LISTBOOK 1
1691 // wxChoicebook control is similar to wxNotebook but uses wxChoice instead of
1696 // Recommended setting: 1
1697 #define wxUSE_CHOICEBOOK 1
1699 // wxTreebook control is similar to wxNotebook but uses wxTreeCtrl instead of
1704 // Recommended setting: 1
1705 #define wxUSE_TREEBOOK 1
1707 // wxTabDialog is a generic version of wxNotebook but it is incompatible with
1708 // the new class. It shouldn't be used in new code.
1712 // Recommended setting: 0 (use wxNotebook)
1713 #define wxUSE_TAB_DIALOG 0
1717 // Default is 1, set to 0 to cut down compilation time and binaries size if you
1720 // Recommended setting: 1
1722 #define wxUSE_GRID 1
1724 // wxMiniFrame class: a frame with narrow title bar
1728 // Recommended setting: 1 (it doesn't cost almost anything)
1729 #define wxUSE_MINIFRAME 1
1731 // ----------------------------------------------------------------------------
1732 // Miscellaneous GUI stuff
1733 // ----------------------------------------------------------------------------
1735 // wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar)
1736 #define wxUSE_ACCEL 1
1738 // Hotkey support (currently Windows only)
1739 #define wxUSE_HOTKEY 1
1741 // Use wxCaret: a class implementing a "cursor" in a text control (called caret
1746 // Recommended setting: 1 (can be safely set to 0, not used by the library)
1747 #define wxUSE_CARET 1
1749 // Use wxDisplay class: it allows enumerating all displays on a system and
1750 // working with them.
1752 // Default is 0 because it isn't yet implemented on all platforms
1754 // Recommended setting: 1 if you need it, can be safely set to 0 otherwise
1755 #define wxUSE_DISPLAY 0
1757 // Miscellaneous geometry code: needed for Canvas library
1758 #define wxUSE_GEOMETRY 1
1760 // Use wxImageList. This class is needed by wxNotebook, wxTreeCtrl and
1765 // Recommended setting: 1 (set it to 0 if you don't use any of the controls
1766 // enumerated above, then this class is mostly useless too)
1767 #define wxUSE_IMAGLIST 1
1769 // Use wxMenu, wxMenuBar, wxMenuItem.
1773 // Recommended setting: 1 (can't be disabled under MSW)
1774 #define wxUSE_MENUS 1
1776 // Use wxSashWindow class.
1780 // Recommended setting: 1
1781 #define wxUSE_SASH 1
1783 // Use wxSplitterWindow class.
1787 // Recommended setting: 1
1788 #define wxUSE_SPLITTER 1
1790 // Use wxToolTip and wxWindow::Set/GetToolTip() methods.
1794 // Recommended setting: 1
1795 #define wxUSE_TOOLTIPS 1
1797 // wxValidator class and related methods
1798 #define wxUSE_VALIDATORS 1
1800 // ----------------------------------------------------------------------------
1802 // ----------------------------------------------------------------------------
1804 // On rare occasions (e.g. using DJGPP) may want to omit common dialogs (e.g.
1805 // file selector, printer dialog). Switching this off also switches off the
1806 // printing architecture and interactive wxPrinterDC.
1810 // Recommended setting: 1 (unless it really doesn't work)
1811 #define wxUSE_COMMON_DIALOGS 1
1813 // wxBusyInfo displays window with message when app is busy. Works in same way
1815 #define wxUSE_BUSYINFO 1
1817 // Use single/multiple choice dialogs.
1821 // Recommended setting: 1 (used in the library itself)
1822 #define wxUSE_CHOICEDLG 1
1824 // Use colour picker dialog
1828 // Recommended setting: 1
1829 #define wxUSE_COLOURDLG 1
1831 // wxDirDlg class for getting a directory name from user
1832 #define wxUSE_DIRDLG 1
1834 // TODO: setting to choose the generic or native one
1836 // Use file open/save dialogs.
1840 // Recommended setting: 1 (used in many places in the library itself)
1841 #define wxUSE_FILEDLG 1
1843 // Use find/replace dialogs.
1847 // Recommended setting: 1 (but may be safely set to 0)
1848 #define wxUSE_FINDREPLDLG 1
1850 // Use font picker dialog
1854 // Recommended setting: 1 (used in the library itself)
1855 #define wxUSE_FONTDLG 1
1857 // Use wxMessageDialog and wxMessageBox.
1861 // Recommended setting: 1 (used in the library itself)
1862 #define wxUSE_MSGDLG 1
1864 // progress dialog class for lengthy operations
1865 #define wxUSE_PROGRESSDLG 1
1867 // support for startup tips (wxShowTip &c)
1868 #define wxUSE_STARTUP_TIPS 1
1870 // text entry dialog and wxGetTextFromUser function
1871 #define wxUSE_TEXTDLG 1
1873 // number entry dialog
1874 #define wxUSE_NUMBERDLG 1
1876 // splash screen class
1877 #define wxUSE_SPLASH 1
1880 #define wxUSE_WIZARDDLG 1
1882 // ----------------------------------------------------------------------------
1883 // Metafiles support
1884 // ----------------------------------------------------------------------------
1886 // Windows supports the graphics format known as metafile which is, though not
1887 // portable, is widely used under Windows and so is supported by wxWin (under
1888 // Windows only, of course). Win16 (Win3.1) used the so-called "Window
1889 // MetaFiles" or WMFs which were replaced with "Enhanced MetaFiles" or EMFs in
1890 // Win32 (Win9x, NT, 2000). Both of these are supported in wxWin and, by
1891 // default, WMFs will be used under Win16 and EMFs under Win32. This may be
1892 // changed by setting wxUSE_WIN_METAFILES_ALWAYS to 1 and/or setting
1893 // wxUSE_ENH_METAFILE to 0. You may also set wxUSE_METAFILE to 0 to not compile
1894 // in any metafile related classes at all.
1896 // Default is 1 for wxUSE_ENH_METAFILE and 0 for wxUSE_WIN_METAFILES_ALWAYS.
1898 // Recommended setting: default or 0 for everything for portable programs.
1899 #define wxUSE_METAFILE 1
1900 #define wxUSE_ENH_METAFILE 1
1901 #define wxUSE_WIN_METAFILES_ALWAYS 0
1903 // ----------------------------------------------------------------------------
1904 // Big GUI components
1905 // ----------------------------------------------------------------------------
1907 // Set to 0 to disable MDI support.
1909 // Requires wxUSE_NOTEBOOK under platforms other than MSW.
1913 // Recommended setting: 1, can be safely set to 0.
1916 // Set to 0 to disable document/view architecture
1917 #define wxUSE_DOC_VIEW_ARCHITECTURE 1
1919 // Set to 0 to disable MDI document/view architecture
1921 // Requires wxUSE_MDI && wxUSE_DOC_VIEW_ARCHITECTURE
1922 #define wxUSE_MDI_ARCHITECTURE 1
1924 // Set to 0 to disable print/preview architecture code
1925 #define wxUSE_PRINTING_ARCHITECTURE 1
1927 // wxHTML sublibrary allows to display HTML in wxWindow programs and much,
1932 // Recommended setting: 1 (wxHTML is great!), set to 0 if you want compile a
1934 #define wxUSE_HTML 1
1936 // Setting wxUSE_GLCANVAS to 1 enables OpenGL support. You need to have OpenGL
1937 // headers and libraries to be able to compile the library with wxUSE_GLCANVAS
1938 // set to 1. Note that for some compilers (notably Microsoft Visual C++) you
1939 // will need to manually add opengl32.lib and glu32.lib to the list of
1940 // libraries linked with your program if you use OpenGL.
1944 // Recommended setting: 1 if you intend to use OpenGL, 0 otherwise
1945 #define wxUSE_GLCANVAS 0
1947 // wxRichTextCtrl allows editing of styled text.
1951 // Recommended setting: 1, set to 0 if you want compile a
1953 #define wxUSE_RICHTEXT 1
1955 // ----------------------------------------------------------------------------
1957 // ----------------------------------------------------------------------------
1959 // Use wxClipboard class for clipboard copy/paste.
1963 // Recommended setting: 1
1964 #define wxUSE_CLIPBOARD 1
1966 // Use wxDataObject and related classes. Needed for clipboard and OLE drag and
1971 // Recommended setting: 1
1972 #define wxUSE_DATAOBJ 1
1974 // Use wxDropTarget and wxDropSource classes for drag and drop (this is
1975 // different from "built in" drag and drop in wxTreeCtrl which is always
1976 // available). Requires wxUSE_DATAOBJ.
1980 // Recommended setting: 1
1981 #define wxUSE_DRAG_AND_DROP 1
1983 // Use wxAccessible for enhanced and customisable accessibility.
1984 // Depends on wxUSE_OLE.
1988 // Recommended setting (at present): 0
1989 #define wxUSE_ACCESSIBILITY 0
1991 // ----------------------------------------------------------------------------
1992 // miscellaneous settings
1993 // ----------------------------------------------------------------------------
1995 // wxSingleInstanceChecker class allows to verify at startup if another program
1996 // instance is running (it is only available under Win32)
2000 // Recommended setting: 1 (the class is tiny, disabling it won't save much
2002 #define wxUSE_SNGLINST_CHECKER 1
2004 #define wxUSE_DRAGIMAGE 1
2007 // 0 for no interprocess comms
2008 #define wxUSE_HELP 1
2009 // 0 for no help facility
2010 #define wxUSE_MS_HTML_HELP 1
2011 // 0 for no MS HTML Help
2013 // Use wxHTML-based help controller?
2014 #define wxUSE_WXHTML_HELP 1
2016 #define wxUSE_RESOURCES 0
2017 // 0 for no wxGetResource/wxWriteResource
2018 #define wxUSE_CONSTRAINTS 1
2019 // 0 for no window layout constraint system
2021 #define wxUSE_SPLINES 1
2024 #define wxUSE_MOUSEWHEEL 1
2025 // Include mouse wheel support
2027 // ----------------------------------------------------------------------------
2028 // postscript support settings
2029 // ----------------------------------------------------------------------------
2031 // Set to 1 for PostScript device context.
2032 #define wxUSE_POSTSCRIPT 0
2034 // Set to 1 to use font metric files in GetTextExtent
2035 #define wxUSE_AFM_FOR_POSTSCRIPT 1
2037 // ----------------------------------------------------------------------------
2039 // ----------------------------------------------------------------------------
2041 // Define 1 to use ODBC classes
2042 #define wxUSE_ODBC 0
2044 // For backward compatibility reasons, this parameter now only controls the
2045 // default scrolling method used by cursors. This default behavior can be
2046 // overriden by setting the second param of wxDB::wxDbGetConnection() or
2047 // wxDb() constructor to indicate whether the connection (and any wxDbTable()s
2048 // that use the connection) should support forward only scrolling of cursors,
2049 // or both forward and backward support for backward scrolling cursors is
2050 // dependent on the data source as well as the ODBC driver being used.
2051 #define wxODBC_FWD_ONLY_CURSORS 1
2053 // Default is 0. Set to 1 to use the deprecated classes, enum types, function,
2054 // member variables. With a setting of 1, full backward compatibility with the
2055 // 2.0.x release is possible. It is STRONGLY recommended that this be set to 0,
2056 // as future development will be done only on the non-deprecated
2057 // functions/classes/member variables/etc.
2058 #define wxODBC_BACKWARD_COMPATABILITY 0
2060 // ----------------------------------------------------------------------------
2061 // other compiler (mis)features
2062 // ----------------------------------------------------------------------------
2064 // Set this to 0 if your compiler can't cope with omission of prototype
2069 // Recommended setting: 1 (should never need to set this to 0)
2070 #define REMOVE_UNUSED_ARG 1
2072 // VC++ 4.2 and above allows <iostream> and <iostream.h> but you can't mix
2073 // them. Set to 1 for <iostream.h>, 0 for <iostream>. Note that VC++ 7.1
2074 // and later doesn't support wxUSE_IOSTREAMH == 1 and so <iostream> will be
2079 // Recommended setting: whatever your compiler likes more
2080 #define wxUSE_IOSTREAMH 1
2082 // ----------------------------------------------------------------------------
2083 // image format support
2084 // ----------------------------------------------------------------------------
2086 // wxImage supports many different image formats which can be configured at
2087 // compile-time. BMP is always supported, others are optional and can be safely
2088 // disabled if you don't plan to use images in such format sometimes saving
2089 // substantial amount of code in the final library.
2091 // Some formats require an extra library which is included in wxWin sources
2092 // which is mentioned if it is the case.
2094 // Set to 1 for wxImage support (recommended).
2095 #define wxUSE_IMAGE 1
2097 // Set to 1 for PNG format support (requires libpng). Also requires wxUSE_ZLIB.
2098 #define wxUSE_LIBPNG 1
2100 // Set to 1 for JPEG format support (requires libjpeg)
2101 #define wxUSE_LIBJPEG 1
2103 // Set to 1 for TIFF format support (requires libtiff)
2104 #define wxUSE_LIBTIFF 1
2106 // Set to 1 for GIF format support
2109 // Set to 1 for PNM format support
2112 // Set to 1 for PCX format support
2115 // Set to 1 for IFF format support (Amiga format)
2118 // Set to 1 for XPM format support
2121 // Set to 1 for MS Icons and Cursors format support
2122 #define wxUSE_ICO_CUR 1
2124 // Set to 1 to compile in wxPalette class
2125 #define wxUSE_PALETTE 1