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