]>
Commit | Line | Data |
---|---|---|
ffecfa5a | 1 | ///////////////////////////////////////////////////////////////////////////// |
e1d63b79 | 2 | // Name: wx/palmos/setup.h |
ffecfa5a JS |
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 | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_SETUP_H_ | |
13 | #define _WX_SETUP_H_ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // global settings | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | // define this to 0 when building wxBase library - this can also be done from | |
20 | // makefile/project file overriding the value here | |
21 | #ifndef wxUSE_GUI | |
22 | #define wxUSE_GUI 1 | |
23 | #endif // wxUSE_GUI | |
24 | ||
25 | // ---------------------------------------------------------------------------- | |
26 | // compatibility settings | |
27 | // ---------------------------------------------------------------------------- | |
28 | ||
dee1a63f | 29 | // This setting determines the compatibility with 2.4 API: set it to 1 to |
ffecfa5a JS |
30 | // enable it but please consider updating your code instead. |
31 | // | |
32 | // Default is 0 | |
33 | // | |
34 | // Recommended setting: 0 (please update your code) | |
dee1a63f | 35 | #define WXWIN_COMPATIBILITY_2_4 0 |
ffecfa5a | 36 | |
dee1a63f | 37 | // This setting determines the compatibility with 2.6 API: set it to 0 to |
ffecfa5a JS |
38 | // flag all cases of using deprecated functions. |
39 | // | |
40 | // Default is 1 but please try building your code with 0 as the default will | |
41 | // change to 0 in the next version and the deprecated functions will disappear | |
42 | // in the version after it completely. | |
43 | // | |
44 | // Recommended setting: 0 (please update your code) | |
dee1a63f | 45 | #define WXWIN_COMPATIBILITY_2_6 0 |
ffecfa5a | 46 | |
ffecfa5a JS |
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. | |
49 | // | |
50 | // Default is 1 | |
51 | // | |
52 | // Recommended setting: 0 (the new calculations are more correct!) | |
53 | #define wxDIALOG_UNIT_COMPATIBILITY 1 | |
54 | ||
55 | // ---------------------------------------------------------------------------- | |
56 | // debugging settings | |
57 | // ---------------------------------------------------------------------------- | |
58 | ||
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. | |
65 | // | |
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. | |
69 | ||
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. | |
72 | // | |
73 | // Default is 0 | |
74 | // | |
75 | // Recommended setting: 0 | |
76 | #define wxUSE_DEBUG_CONTEXT 0 | |
77 | ||
78 | // If 1, enables debugging versions of wxObject::new and wxObject::delete *IF* | |
79 | // __WXDEBUG__ is also defined. | |
80 | // | |
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 | |
83 | // | |
84 | // Default is 0 | |
85 | // | |
86 | // Recommended setting: 1 if you are not using a memory debugging tool, else 0 | |
87 | #define wxUSE_MEMORY_TRACING 0 | |
88 | ||
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 | |
94 | // | |
95 | // Default is 0 | |
96 | // | |
97 | // Recommended setting: 0 | |
98 | #define wxUSE_GLOBAL_MEMORY_OPERATORS 0 | |
99 | ||
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 | |
104 | // | |
105 | // Default is 0 | |
106 | // | |
107 | // Recommended setting: 0 | |
108 | #define wxUSE_DEBUG_NEW_ALWAYS 0 | |
109 | ||
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. | |
114 | // | |
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) | |
117 | // | |
118 | // Default is 1 | |
119 | // | |
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 | |
124 | #else | |
125 | #define wxUSE_ON_FATAL_EXCEPTION 0 | |
126 | #endif | |
127 | ||
128 | // ---------------------------------------------------------------------------- | |
129 | // Unicode support | |
130 | // ---------------------------------------------------------------------------- | |
131 | ||
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. | |
135 | // | |
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). | |
139 | // | |
140 | // Default is 0 | |
141 | // | |
142 | // Recommended setting: 0 (unless you only plan to use Windows NT/2000/XP) | |
143 | #ifndef wxUSE_UNICODE | |
144 | #define wxUSE_UNICODE 0 | |
145 | #endif | |
146 | ||
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). | |
154 | // | |
155 | // If your compiler doesn't have unicows.lib, you can get a version of it at | |
156 | // http://libunicows.sourceforge.net | |
157 | // | |
158 | // Default is 0 | |
159 | // | |
160 | // Recommended setting: 0 (1 if you want to deploy Unicode apps on 9x systems) | |
161 | #define wxUSE_UNICODE_MSLU 0 | |
162 | ||
163 | // Setting wxUSE_WCHAR_T to 1 gives you some degree of Unicode support without | |
164 | // compiling the program in Unicode mode. More precisely, it will be possible | |
165 | // to construct wxString from a wide (Unicode) string and convert any wxString | |
166 | // to Unicode. | |
167 | // | |
168 | // Default is 1 | |
169 | // | |
170 | // Recommended setting: 1 | |
171 | #define wxUSE_WCHAR_T 0 | |
172 | ||
173 | // ---------------------------------------------------------------------------- | |
174 | // global features | |
175 | // ---------------------------------------------------------------------------- | |
176 | ||
177 | // Compile library in exception-safe mode? If set to 1, the library will try to | |
178 | // behave correctly in presence of exceptions (even though it still will not | |
179 | // use the exceptions itself) and notify the user code about any unhandled | |
180 | // exceptions. If set to 0, propagation of the exceptions through the library | |
181 | // code will lead to undefined behaviour -- but the code itself will be | |
182 | // slightly smaller and faster. | |
183 | // | |
184 | // Default is 1 | |
185 | // | |
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 | |
189 | ||
190 | // Set wxUSE_EXTENDED_RTTI to 1 to use extended RTTI | |
191 | // | |
192 | // Default is 0 | |
193 | // | |
194 | // Recommended setting: 0 | |
195 | #define wxUSE_EXTENDED_RTTI 0 | |
196 | ||
197 | #if defined(__BORLANDC__) | |
198 | #undef wxUSE_EXTENDED_RTTI | |
199 | #define wxUSE_EXTENDED_RTTI 1 | |
200 | #endif | |
201 | ||
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. | |
205 | // | |
206 | // Default is 0 | |
207 | // | |
208 | // Recommended setting: YMMV | |
209 | #define wxUSE_STL 0 | |
210 | ||
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 | |
213 | // you are doing. | |
214 | // | |
215 | // Default is 1 | |
216 | // | |
217 | // Recommended setting: 1 (always) | |
218 | #define wxUSE_LOG 0 | |
219 | ||
220 | // Recommended setting: 1 | |
221 | #define wxUSE_LOGWINDOW 0 | |
222 | ||
223 | // Recommended setting: 1 | |
224 | #define wxUSE_LOGGUI 0 | |
225 | ||
226 | // Recommended setting: 1 | |
227 | #define wxUSE_LOG_DIALOG 0 | |
228 | ||
229 | // Support for command line parsing using wxCmdLineParser class. | |
230 | // | |
231 | // Default is 1 | |
232 | // | |
233 | // Recommended setting: 1 (can be set to 0 if you don't use the cmd line) | |
234 | #define wxUSE_CMDLINE_PARSER 0 | |
235 | ||
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. | |
241 | // | |
242 | // This is ignored under Win16, threads are only supported under Win32. | |
243 | // | |
244 | // Default is 1 | |
245 | // | |
246 | // Recommended setting: 0 unless you do plan to develop MT applications | |
247 | #define wxUSE_THREADS 0 | |
248 | ||
249 | // If enabled (1), compiles wxWidgets streams classes | |
250 | #define wxUSE_STREAMS 0 | |
251 | ||
252 | // Use standard C++ streams if 1. If 0, use wxWin streams implementation. | |
253 | #define wxUSE_STD_IOSTREAM 0 | |
254 | ||
255 | // ---------------------------------------------------------------------------- | |
256 | // non GUI features selection | |
257 | // ---------------------------------------------------------------------------- | |
258 | ||
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. | |
262 | // | |
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 | |
267 | // off. | |
268 | // | |
269 | // Recommended setting: 1 | |
270 | #define wxUSE_LONGLONG 1 | |
271 | ||
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. | |
274 | // | |
275 | // Default is 1 | |
276 | // | |
277 | // Recommended setting: 1 (wxFile is highly recommended as it is required by | |
278 | // i18n code, wxFileConfig and others) | |
279 | #define wxUSE_FILE 0 | |
280 | #define wxUSE_FFILE 0 | |
281 | ||
282 | // Use wxFSVolume class providing access to the configured/active mount points | |
283 | // | |
284 | // Default is 1 | |
285 | // | |
286 | // Recommended setting: 1 (but may be safely disabled if you don't use it) | |
12839f76 | 287 | #define wxUSE_FSVOLUME 1 |
ffecfa5a | 288 | |
5e10aed5 WS |
289 | // Use wxStandardPaths class which allows to retrieve some standard locations |
290 | // in the file system | |
291 | // | |
292 | // Default is 1 | |
293 | // | |
294 | // Recommended setting: 1 (may be disabled to save space, but not much) | |
295 | #define wxUSE_STDPATHS 1 | |
296 | ||
ffecfa5a JS |
297 | // use wxTextBuffer class: required by wxTextFile |
298 | #define wxUSE_TEXTBUFFER 0 | |
299 | ||
300 | // use wxTextFile class: requires wxFile and wxTextBuffer, required by | |
301 | // wxFileConfig | |
302 | #define wxUSE_TEXTFILE 0 | |
303 | ||
304 | // i18n support: _() macro, wxLocale class. Requires wxTextFile. | |
305 | #define wxUSE_INTL 0 | |
306 | ||
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). | |
311 | // | |
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. | |
316 | // | |
317 | // Requires: wxUSE_LONGLONG | |
318 | // | |
319 | // Default is 1 | |
320 | // | |
321 | // Recommended setting: 1 | |
6a27c749 | 322 | #define wxUSE_DATETIME 1 |
ffecfa5a JS |
323 | |
324 | // Set wxUSE_TIMER to 1 to compile wxTimer class | |
325 | // | |
326 | // Default is 1 | |
327 | // | |
328 | // Recommended setting: 1 | |
329 | #define wxUSE_TIMER 0 | |
330 | ||
331 | // Use wxStopWatch clas. | |
332 | // | |
333 | // Default is 1 | |
334 | // | |
335 | // Recommended setting: 1 (needed by wxSocket) | |
336 | #define wxUSE_STOPWATCH 0 | |
337 | ||
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. | |
342 | // | |
343 | // See also wxUSE_CONFIG_NATIVE below. | |
344 | // | |
345 | // Recommended setting: 1 | |
23a59c2c | 346 | #define wxUSE_CONFIG 1 |
ffecfa5a JS |
347 | |
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 | |
351 | // Unix. | |
352 | // | |
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 | |
356 | // not wxFileConfig. | |
357 | // | |
358 | // Recommended setting: 1 | |
23a59c2c | 359 | #define wxUSE_CONFIG_NATIVE 1 |
ffecfa5a JS |
360 | |
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. | |
364 | // | |
365 | // Default is 1. | |
366 | // | |
367 | // Recommended setting: 1 | |
368 | #define wxUSE_DIALUP_MANAGER 0 | |
369 | ||
370 | // Compile in classes for run-time DLL loading and function calling. | |
371 | // Required by wxUSE_DIALUP_MANAGER. | |
372 | // | |
373 | // This setting is for Win32 only | |
374 | // | |
375 | // Default is 1. | |
376 | // | |
377 | // Recommended setting: 1 | |
378 | #define wxUSE_DYNLIB_CLASS 0 | |
379 | ||
380 | // experimental, don't use for now | |
381 | #define wxUSE_DYNAMIC_LOADER 0 | |
382 | ||
383 | // Set to 1 to use socket classes | |
384 | #define wxUSE_SOCKETS 0 | |
385 | ||
386 | // Set to 1 to enable virtual file systems (required by wxHTML) | |
387 | #define wxUSE_FILESYSTEM 0 | |
388 | ||
389 | // Set to 1 to enable virtual ZIP filesystem (requires wxUSE_FILESYSTEM) | |
390 | #define wxUSE_FS_ZIP 0 | |
391 | ||
392 | // Set to 1 to enable virtual Internet filesystem (requires wxUSE_FILESYSTEM) | |
393 | #define wxUSE_FS_INET 0 | |
394 | ||
81f90336 | 395 | // wxArchive classes for accessing archives such as zip and tar |
9e8e867f | 396 | #define wxUSE_ARCHIVE_STREAMS 0 |
81f90336 | 397 | |
ffecfa5a JS |
398 | // Set to 1 to compile wxZipInput/OutputStream classes. |
399 | #define wxUSE_ZIPSTREAM 0 | |
400 | ||
401 | // Set to 1 to compile wxZlibInput/OutputStream classes. Also required by | |
402 | // wxUSE_LIBPNG | |
403 | #define wxUSE_ZLIB 0 | |
404 | ||
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. | |
408 | // | |
409 | // Default is 1. | |
410 | // | |
411 | // Recommended setting: 1 unless you don't like the license terms (unlikely) | |
412 | #define wxUSE_APPLE_IEEE 0 | |
413 | ||
414 | // Joystick support class | |
415 | #define wxUSE_JOYSTICK 0 | |
416 | ||
417 | // wxFontMapper class | |
418 | #define wxUSE_FONTMAP 0 | |
419 | ||
420 | // wxMimeTypesManager class | |
421 | #define wxUSE_MIMETYPE 0 | |
422 | ||
423 | // wxProtocol and related classes: if you want to use either of wxFTP, wxHTTP | |
424 | // or wxURL you need to set this to 1. | |
425 | // | |
426 | // Default is 1. | |
427 | // | |
428 | // Recommended setting: 1 | |
429 | #define wxUSE_PROTOCOL 0 | |
430 | ||
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 | |
435 | ||
436 | // Define this to use wxURL class. | |
437 | #define wxUSE_URL 0 | |
438 | ||
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. | |
445 | // | |
446 | // This code is experimental and subject to change. | |
447 | #define wxUSE_URL_NATIVE 0 | |
448 | ||
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. | |
452 | // | |
453 | // Default is 0 | |
454 | // | |
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 | |
458 | ||
459 | // wxSystemOptions class | |
460 | #define wxUSE_SYSTEM_OPTIONS 0 | |
461 | ||
462 | // wxSound class | |
463 | #define wxUSE_SOUND 0 | |
464 | ||
c8a50408 RN |
465 | #define wxUSE_MEDIACTRL 0 |
466 | ||
ffecfa5a JS |
467 | // Use wxWidget's XRC XML-based resource system. Recommended. |
468 | // | |
469 | // Default is 1 | |
470 | // | |
471 | // Recommended setting: 1 (requires wxUSE_XML) | |
472 | #define wxUSE_XRC 0 | |
473 | ||
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. | |
476 | // | |
477 | // Default is 1 | |
478 | // | |
479 | // Recommended setting: 1 (required by XRC) | |
480 | #if wxUSE_XRC | |
481 | # define wxUSE_XML 1 | |
482 | #else | |
483 | # define wxUSE_XML 0 | |
484 | #endif | |
485 | ||
486 | // ---------------------------------------------------------------------------- | |
487 | // Individual GUI controls | |
488 | // ---------------------------------------------------------------------------- | |
489 | ||
490 | // You must set wxUSE_CONTROLS to 1 if you are using any controls at all | |
491 | // (without it, wxControl class is not compiled) | |
492 | // | |
493 | // Default is 1 | |
494 | // | |
495 | // Recommended setting: 1 (don't change except for very special programs) | |
496 | #define wxUSE_CONTROLS 1 | |
497 | ||
498 | // wxPopupWindow class is a top level transient window. It is currently used | |
499 | // to implement wxTipWindow | |
500 | // | |
501 | // Default is 1 | |
502 | // | |
503 | // Recommended setting: 1 (may be set to 0 if you don't wxUSE_TIPWINDOW) | |
504 | #define wxUSE_POPUPWIN 0 | |
505 | ||
506 | // wxTipWindow allows to implement the custom tooltips, it is used by the | |
507 | // context help classes. Requires wxUSE_POPUPWIN. | |
508 | // | |
509 | // Default is 1 | |
510 | // | |
511 | // Recommended setting: 1 (may be set to 0) | |
512 | #define wxUSE_TIPWINDOW 0 | |
513 | ||
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. | |
519 | // | |
520 | // Default is 1 | |
521 | // | |
522 | // Recommended setting: 1 | |
db101bd3 | 523 | #define wxUSE_BUTTON 1 // wxButton |
ffecfa5a JS |
524 | #define wxUSE_BMPBUTTON 0 // wxBitmapButton |
525 | #define wxUSE_CALENDARCTRL 0 // wxCalendarCtrl | |
bdb54365 | 526 | #define wxUSE_CHECKBOX 1 // wxCheckBox |
ffecfa5a JS |
527 | #define wxUSE_CHECKLISTBOX 0 // wxCheckListBox (requires wxUSE_OWNER_DRAWN) |
528 | #define wxUSE_CHOICE 0 // wxChoice | |
529 | #define wxUSE_COMBOBOX 0 // wxComboBox | |
6a27c749 | 530 | #define wxUSE_DATEPICKCTRL 1 // wxDatePickerCtrl |
ffecfa5a JS |
531 | #define wxUSE_GAUGE 0 // wxGauge |
532 | #define wxUSE_LISTBOX 0 // wxListBox | |
533 | #define wxUSE_LISTCTRL 0 // wxListCtrl | |
9a727a3b | 534 | #define wxUSE_RADIOBOX 1 // wxRadioBox |
808e3bce | 535 | #define wxUSE_RADIOBTN 1 // wxRadioButton |
ffecfa5a | 536 | #define wxUSE_SCROLLBAR 0 // wxScrollBar |
bdb54365 | 537 | #define wxUSE_SLIDER 1 // wxSlider |
ffecfa5a JS |
538 | #define wxUSE_SPINBTN 0 // wxSpinButton |
539 | #define wxUSE_SPINCTRL 0 // wxSpinCtrl | |
540 | #define wxUSE_STATBOX 0 // wxStaticBox | |
541 | #define wxUSE_STATLINE 0 // wxStaticLine | |
a152561c | 542 | #define wxUSE_STATTEXT 1 // wxStaticText |
ffecfa5a JS |
543 | #define wxUSE_STATBMP 0 // wxStaticBitmap |
544 | #define wxUSE_TEXTCTRL 0 // wxTextCtrl | |
bdb54365 | 545 | #define wxUSE_TOGGLEBTN 1 // requires wxButton |
ffecfa5a JS |
546 | #define wxUSE_TREECTRL 0 // wxTreeCtrl |
547 | ||
548 | // Use a status bar class? Depending on the value of wxUSE_NATIVE_STATUSBAR | |
db101bd3 | 549 | // below either wxStatusBarPalm or a generic wxStatusBar will be used. |
ffecfa5a JS |
550 | // |
551 | // Default is 1 | |
552 | // | |
553 | // Recommended setting: 1 | |
554 | #define wxUSE_STATUSBAR 1 | |
555 | ||
db101bd3 WS |
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 | |
ffecfa5a JS |
558 | // version should be used. |
559 | // | |
560 | // Default is 1. | |
561 | // | |
562 | // Recommended setting: 1 (there is no advantage in using the generic one) | |
563 | #define wxUSE_NATIVE_STATUSBAR 1 | |
564 | ||
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. | |
568 | // | |
569 | // Default is 1 for all settings. | |
570 | // | |
571 | // Recommended setting: 1 for wxUSE_TOOLBAR and wxUSE_TOOLBAR_NATIVE. | |
572 | #define wxUSE_TOOLBAR 0 | |
573 | #define wxUSE_TOOLBAR_NATIVE 0 | |
574 | ||
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. | |
579 | // | |
580 | // Default is 1. | |
581 | // | |
582 | // Recommended setting: 1 | |
583 | #define wxUSE_NOTEBOOK 0 | |
584 | ||
585 | // wxListbook control is similar to wxNotebook but uses wxListCtrl instead of | |
586 | // the tabs | |
587 | // | |
588 | // Default is 1. | |
589 | // | |
590 | // Recommended setting: 1 | |
591 | #define wxUSE_LISTBOOK 0 | |
592 | ||
593 | // wxChoicebook control is similar to wxNotebook but uses wxChoice instead of | |
594 | // the tabs | |
595 | // | |
596 | // Default is 1. | |
597 | // | |
598 | // Recommended setting: 1 | |
599 | #define wxUSE_CHOICEBOOK 0 | |
600 | ||
e9ac5f02 WS |
601 | // wxTreebook control is similar to wxNotebook but uses wxTreeCtrl instead of |
602 | // the tabs | |
603 | // | |
604 | // Default is 1. | |
605 | // | |
606 | // Recommended setting: 1 | |
607 | #define wxUSE_TREEBOOK 0 | |
608 | ||
ffecfa5a JS |
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. | |
611 | // | |
612 | // Default is 0. | |
613 | // | |
614 | // Recommended setting: 0 (use wxNotebook) | |
615 | #define wxUSE_TAB_DIALOG 0 | |
616 | ||
617 | // wxGrid class | |
618 | // | |
619 | // Default is 1 for both options. | |
620 | // | |
621 | // Recommended setting: 1 | |
622 | // | |
623 | #define wxUSE_GRID 0 | |
624 | ||
625 | // ---------------------------------------------------------------------------- | |
626 | // Miscellaneous GUI stuff | |
627 | // ---------------------------------------------------------------------------- | |
628 | ||
629 | // wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar) | |
630 | #define wxUSE_ACCEL 0 | |
631 | ||
632 | // Hotkey support (currently Windows only) | |
633 | #define wxUSE_HOTKEY 0 | |
634 | ||
635 | // Use wxCaret: a class implementing a "cursor" in a text control (called caret | |
636 | // under Windows). | |
637 | // | |
638 | // Default is 1. | |
639 | // | |
640 | // Recommended setting: 1 (can be safely set to 0, not used by the library) | |
641 | #define wxUSE_CARET 0 | |
642 | ||
643 | // Use wxDisplay class: it allows enumerating all displays on a system and | |
644 | // working with them. | |
645 | // | |
646 | // Default is 0 because it isn't yet implemented on all platforms | |
647 | // | |
648 | // Recommended setting: 1 if you need it, can be safely set to 0 otherwise | |
649 | #define wxUSE_DISPLAY 0 | |
650 | ||
651 | // Miscellaneous geometry code: needed for Canvas library | |
652 | #define wxUSE_GEOMETRY 0 | |
653 | ||
654 | // Use wxImageList. This class is needed by wxNotebook, wxTreeCtrl and | |
655 | // wxListCtrl. | |
656 | // | |
657 | // Default is 1. | |
658 | // | |
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 | |
662 | ||
663 | // Use wxMenu, wxMenuBar, wxMenuItem. | |
664 | // | |
665 | // Default is 1. | |
666 | // | |
667 | // Recommended setting: 1 (can't be disabled under MSW) | |
668 | #define wxUSE_MENUS 1 | |
669 | ||
670 | // Use wxSashWindow class. | |
671 | // | |
672 | // Default is 1. | |
673 | // | |
674 | // Recommended setting: 1 | |
675 | #define wxUSE_SASH 0 | |
676 | ||
677 | // Use wxSplitterWindow class. | |
678 | // | |
679 | // Default is 1. | |
680 | // | |
681 | // Recommended setting: 1 | |
682 | #define wxUSE_SPLITTER 0 | |
683 | ||
684 | // Use wxToolTip and wxWindow::Set/GetToolTip() methods. | |
685 | // | |
686 | // Default is 1. | |
687 | // | |
688 | // Recommended setting: 1 | |
689 | #define wxUSE_TOOLTIPS 0 | |
690 | ||
691 | // wxValidator class and related methods | |
692 | #define wxUSE_VALIDATORS 0 | |
693 | ||
694 | // wxDC cacheing implementation | |
695 | #define wxUSE_DC_CACHEING 0 | |
696 | ||
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 | |
700 | ||
701 | // Set this to 1 to enable wxDIB | |
702 | #define wxUSE_WXDIB 0 | |
703 | ||
704 | // ---------------------------------------------------------------------------- | |
705 | // common dialogs | |
706 | // ---------------------------------------------------------------------------- | |
707 | ||
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. | |
711 | // | |
712 | // Default is 1 | |
713 | // | |
714 | // Recommended setting: 1 (unless it really doesn't work) | |
715 | #define wxUSE_COMMON_DIALOGS 0 | |
716 | ||
717 | // wxBusyInfo displays window with message when app is busy. Works in same way | |
718 | // as wxBusyCursor | |
719 | #define wxUSE_BUSYINFO 0 | |
720 | ||
721 | // Use single/multiple choice dialogs. | |
722 | // | |
723 | // Default is 1 | |
724 | // | |
725 | // Recommended setting: 1 (used in the library itself) | |
726 | #define wxUSE_CHOICEDLG 0 | |
727 | ||
728 | // Use colour picker dialog | |
729 | // | |
730 | // Default is 1 | |
731 | // | |
732 | // Recommended setting: 1 | |
f5d9cc73 | 733 | #define wxUSE_COLOURDLG 1 |
ffecfa5a JS |
734 | |
735 | // wxDirDlg class for getting a directory name from user | |
736 | #define wxUSE_DIRDLG 0 | |
737 | ||
738 | // TODO: setting to choose the generic or native one | |
739 | ||
740 | // Use file open/save dialogs. | |
741 | // | |
742 | // Default is 1 | |
743 | // | |
744 | // Recommended setting: 1 (used in many places in the library itself) | |
745 | #define wxUSE_FILEDLG 0 | |
746 | ||
747 | // Use find/replace dialogs. | |
748 | // | |
749 | // Default is 1 | |
750 | // | |
751 | // Recommended setting: 1 (but may be safely set to 0) | |
752 | #define wxUSE_FINDREPLDLG 0 | |
753 | ||
754 | // Use font picker dialog | |
755 | // | |
756 | // Default is 1 | |
757 | // | |
758 | // Recommended setting: 1 (used in the library itself) | |
759 | #define wxUSE_FONTDLG 0 | |
760 | ||
761 | // Use wxMessageDialog and wxMessageBox. | |
762 | // | |
763 | // Default is 1 | |
764 | // | |
765 | // Recommended setting: 1 (used in the library itself) | |
766 | #define wxUSE_MSGDLG 1 | |
767 | ||
768 | // progress dialog class for lengthy operations | |
7d81eb8c | 769 | #define wxUSE_PROGRESSDLG 1 |
ffecfa5a JS |
770 | |
771 | // support for startup tips (wxShowTip &c) | |
772 | #define wxUSE_STARTUP_TIPS 0 | |
773 | ||
774 | // text entry dialog and wxGetTextFromUser function | |
775 | #define wxUSE_TEXTDLG 0 | |
776 | ||
777 | // number entry dialog | |
778 | #define wxUSE_NUMBERDLG 0 | |
779 | ||
780 | // splash screen class | |
781 | #define wxUSE_SPLASH 0 | |
782 | ||
783 | // wizards | |
784 | #define wxUSE_WIZARDDLG 0 | |
785 | ||
786 | // ---------------------------------------------------------------------------- | |
787 | // Metafiles support | |
788 | // ---------------------------------------------------------------------------- | |
789 | ||
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. | |
799 | // | |
800 | // Default is 1 for wxUSE_ENH_METAFILE and 0 for wxUSE_WIN_METAFILES_ALWAYS. | |
801 | // | |
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 | |
806 | ||
807 | // ---------------------------------------------------------------------------- | |
808 | // Big GUI components | |
809 | // ---------------------------------------------------------------------------- | |
810 | ||
811 | // Set to 0 to disable MDI support. | |
812 | // | |
813 | // Requires wxUSE_NOTEBOOK under platforms other than MSW. | |
814 | // | |
815 | // Default is 1. | |
816 | // | |
817 | // Recommended setting: 1, can be safely set to 0. | |
818 | #define wxUSE_MDI 0 | |
819 | ||
820 | // Set to 0 to disable document/view architecture | |
821 | #define wxUSE_DOC_VIEW_ARCHITECTURE 0 | |
822 | ||
823 | // Set to 0 to disable MDI document/view architecture | |
824 | // | |
825 | // Requires wxUSE_MDI && wxUSE_DOC_VIEW_ARCHITECTURE | |
826 | #define wxUSE_MDI_ARCHITECTURE 0 | |
827 | ||
828 | // Set to 0 to disable print/preview architecture code | |
829 | #define wxUSE_PRINTING_ARCHITECTURE 0 | |
830 | ||
831 | // wxHTML sublibrary allows to display HTML in wxWindow programs and much, | |
832 | // much more. | |
833 | // | |
834 | // Default is 1. | |
835 | // | |
836 | // Recommended setting: 1 (wxHTML is great!), set to 0 if you want compile a | |
837 | // smaller library. | |
838 | #define wxUSE_HTML 0 | |
839 | ||
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. | |
845 | // | |
846 | // Default is 0. | |
847 | // | |
848 | // Recommended setting: 1 if you intend to use OpenGL, 0 otherwise | |
849 | #define wxUSE_GLCANVAS 0 | |
850 | ||
851 | // ---------------------------------------------------------------------------- | |
852 | // Data transfer | |
853 | // ---------------------------------------------------------------------------- | |
854 | ||
855 | // Use wxClipboard class for clipboard copy/paste. | |
856 | // | |
857 | // Default is 1. | |
858 | // | |
859 | // Recommended setting: 1 | |
860 | #define wxUSE_CLIPBOARD 0 | |
861 | ||
862 | // Use wxDataObject and related classes. Needed for clipboard and OLE drag and | |
863 | // drop | |
864 | // | |
865 | // Default is 1. | |
866 | // | |
867 | // Recommended setting: 1 | |
868 | #define wxUSE_DATAOBJ 0 | |
869 | ||
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. | |
873 | // | |
874 | // Default is 1. | |
875 | // | |
876 | // Recommended setting: 1 | |
877 | #define wxUSE_DRAG_AND_DROP 0 | |
878 | ||
879 | // Use wxAccessible for enhanced and customisable accessibility. | |
880 | // Depends on wxUSE_OLE. | |
881 | // | |
882 | // Default is 0. | |
883 | // | |
884 | // Recommended setting (at present): 0 | |
885 | #define wxUSE_ACCESSIBILITY 0 | |
886 | ||
887 | // ---------------------------------------------------------------------------- | |
888 | // miscellaneous settings | |
889 | // ---------------------------------------------------------------------------- | |
890 | ||
891 | // wxSingleInstanceChecker class allows to verify at startup if another program | |
892 | // instance is running (it is only available under Win32) | |
893 | // | |
894 | // Default is 1 | |
895 | // | |
896 | // Recommended setting: 1 (the class is tiny, disabling it won't save much | |
897 | // space) | |
898 | #define wxUSE_SNGLINST_CHECKER 0 | |
899 | ||
900 | #define wxUSE_DRAGIMAGE 0 | |
901 | ||
902 | #define wxUSE_IPC 0 | |
903 | // 0 for no interprocess comms | |
904 | #define wxUSE_HELP 0 | |
905 | // 0 for no help facility | |
906 | #define wxUSE_MS_HTML_HELP 0 | |
907 | // 0 for no MS HTML Help | |
908 | ||
909 | // Use wxHTML-based help controller? | |
910 | #define wxUSE_WXHTML_HELP 0 | |
911 | ||
912 | #define wxUSE_RESOURCES 0 | |
913 | // 0 for no wxGetResource/wxWriteResource | |
914 | #define wxUSE_CONSTRAINTS 0 | |
915 | // 0 for no window layout constraint system | |
916 | ||
917 | #define wxUSE_SPLINES 0 | |
918 | // 0 for no splines | |
919 | ||
920 | #define wxUSE_MOUSEWHEEL 0 | |
921 | // Include mouse wheel support | |
922 | ||
923 | // ---------------------------------------------------------------------------- | |
924 | // postscript support settings | |
925 | // ---------------------------------------------------------------------------- | |
926 | ||
927 | // Set to 1 for PostScript device context. | |
928 | #define wxUSE_POSTSCRIPT 0 | |
929 | ||
930 | // Set to 1 to use font metric files in GetTextExtent | |
931 | #define wxUSE_AFM_FOR_POSTSCRIPT 0 | |
932 | ||
ffecfa5a JS |
933 | // ---------------------------------------------------------------------------- |
934 | // database classes | |
935 | // ---------------------------------------------------------------------------- | |
936 | ||
937 | // Define 1 to use ODBC classes | |
938 | #define wxUSE_ODBC 0 | |
939 | ||
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. | |
23a59c2c | 947 | #define wxODBC_FWD_ONLY_CURSORS 0 |
ffecfa5a JS |
948 | |
949 | // Default is 0. Set to 1 to use the deprecated classes, enum types, function, | |
3103e8a9 | 950 | // member variables. With a setting of 1, full backward compatibility with the |
ffecfa5a JS |
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 | |
955 | ||
956 | // ---------------------------------------------------------------------------- | |
957 | // other compiler (mis)features | |
958 | // ---------------------------------------------------------------------------- | |
959 | ||
960 | // Set this to 0 if your compiler can't cope with omission of prototype | |
961 | // parameters. | |
962 | // | |
963 | // Default is 1. | |
964 | // | |
965 | // Recommended setting: 1 (should never need to set this to 0) | |
966 | #define REMOVE_UNUSED_ARG 1 | |
967 | ||
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 | |
971 | // used anyhow. | |
972 | // | |
973 | // Default is 1. | |
974 | // | |
975 | // Recommended setting: whatever your compiler likes more | |
976 | #define wxUSE_IOSTREAMH 1 | |
977 | ||
978 | // ---------------------------------------------------------------------------- | |
979 | // image format support | |
980 | // ---------------------------------------------------------------------------- | |
981 | ||
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. | |
986 | // | |
987 | // Some formats require an extra library which is included in wxWin sources | |
988 | // which is mentioned if it is the case. | |
989 | ||
990 | // Set to 1 for wxImage support (recommended). | |
991 | #define wxUSE_IMAGE 0 | |
992 | ||
993 | // Set to 1 for PNG format support (requires libpng). Also requires wxUSE_ZLIB. | |
994 | #define wxUSE_LIBPNG 0 | |
995 | ||
996 | // Set to 1 for JPEG format support (requires libjpeg) | |
997 | #define wxUSE_LIBJPEG 0 | |
998 | ||
999 | // Set to 1 for TIFF format support (requires libtiff) | |
1000 | #define wxUSE_LIBTIFF 0 | |
1001 | ||
1002 | // Set to 1 for GIF format support | |
1003 | #define wxUSE_GIF 0 | |
1004 | ||
1005 | // Set to 1 for PNM format support | |
1006 | #define wxUSE_PNM 0 | |
1007 | ||
1008 | // Set to 1 for PCX format support | |
1009 | #define wxUSE_PCX 0 | |
1010 | ||
1011 | // Set to 1 for IFF format support (Amiga format) | |
1012 | #define wxUSE_IFF 0 | |
1013 | ||
1014 | // Set to 1 for XPM format support | |
1015 | #define wxUSE_XPM 0 | |
1016 | ||
1017 | // Set to 1 for MS Icons and Cursors format support | |
1018 | #define wxUSE_ICO_CUR 0 | |
1019 | ||
1020 | // Set to 1 to compile in wxPalette class | |
1021 | #define wxUSE_PALETTE 0 | |
1022 | ||
1023 | // ---------------------------------------------------------------------------- | |
1024 | // Windows-only settings | |
1025 | // ---------------------------------------------------------------------------- | |
1026 | ||
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) | |
1029 | // | |
1030 | // Default is 0. | |
1031 | // | |
1032 | // Recommended setting: 0 unless you really have to use MFC | |
1033 | #define wxUSE_MFC 0 | |
1034 | ||
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. | |
1038 | // | |
1039 | // Default is 1. | |
1040 | // | |
1041 | // Recommended setting: 1 | |
1042 | #define wxUSE_OLE 0 | |
1043 | ||
e6bdaaad MW |
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 | |
1047 | ||
ffecfa5a JS |
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). | |
1051 | // | |
1052 | // Default is 1 for compilers which support it | |
1053 | // | |
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 | |
1058 | ||
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 | |
1062 | ||
1063 | #else | |
1064 | #define wxUSE_RICHEDIT 0 | |
1065 | #define wxUSE_RICHEDIT2 0 | |
1066 | #endif | |
1067 | ||
1068 | // Set this to 1 to enable support for the owner-drawn menu and listboxes. This | |
1069 | // is required by wxUSE_CHECKLISTBOX. | |
1070 | // | |
1071 | // Default is 1. | |
1072 | // | |
1073 | // Recommended setting: 1, set to 0 for a small library size reduction | |
1074 | #define wxUSE_OWNER_DRAWN 0 | |
1075 | ||
1076 | // Set to 1 to compile MS Windows XP theme engine support | |
1077 | #define wxUSE_UXTHEME 0 | |
1078 | ||
1079 | // Set to 1 to auto-adapt to MS Windows XP themes where possible | |
1080 | // (notably, wxNotebook pages) | |
1081 | #define wxUSE_UXTHEME_AUTO 0 | |
1082 | ||
1083 | // ---------------------------------------------------------------------------- | |
1084 | // obsolete settings | |
1085 | // ---------------------------------------------------------------------------- | |
1086 | ||
1087 | // NB: all settings in this section are obsolete and should not be used/changed | |
1088 | // at all, they will disappear | |
1089 | ||
ffecfa5a JS |
1090 | // Define 1 to use bitmap messages. |
1091 | #define wxUSE_BITMAP_MESSAGE 0 | |
1092 | ||
1093 | // If 1, enables provision of run-time type information. | |
1094 | // NOW MANDATORY: don't change. | |
1095 | #define wxUSE_DYNAMIC_CLASSES 1 | |
1096 | ||
1097 | #endif | |
1098 | // _WX_SETUP_H_ | |
5d7836c4 JS |
1099 | // ---------------------------------------------------------------------------- |
1100 | // global settings | |
1101 | // ---------------------------------------------------------------------------- | |
1102 | ||
1103 | // define this to 0 when building wxBase library - this can also be done from | |
1104 | // makefile/project file overriding the value here | |
1105 | #ifndef wxUSE_GUI | |
1106 | #define wxUSE_GUI 1 | |
1107 | #endif // wxUSE_GUI | |
1108 | ||
1109 | // ---------------------------------------------------------------------------- | |
1110 | // compatibility settings | |
1111 | // ---------------------------------------------------------------------------- | |
1112 | ||
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. | |
1115 | // | |
1116 | // Default is 0 | |
1117 | // | |
1118 | // Recommended setting: 0 (please update your code) | |
1119 | #define WXWIN_COMPATIBILITY_2_4 0 | |
1120 | ||
1121 | // This setting determines the compatibility with 2.6 API: set it to 0 to | |
1122 | // flag all cases of using deprecated functions. | |
1123 | // | |
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. | |
1127 | // | |
1128 | // Recommended setting: 0 (please update your code) | |
1129 | #define WXWIN_COMPATIBILITY_2_6 1 | |
1130 | ||
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. | |
1134 | // | |
1135 | // Default is 0 | |
1136 | // | |
1137 | // Recommended setting: 0 | |
1138 | #define wxDIALOG_UNIT_COMPATIBILITY 0 | |
1139 | ||
1140 | // ---------------------------------------------------------------------------- | |
1141 | // debugging settings | |
1142 | // ---------------------------------------------------------------------------- | |
1143 | ||
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. | |
1150 | // | |
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. | |
1154 | ||
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. | |
1157 | // | |
1158 | // Default is 0 | |
1159 | // | |
1160 | // Recommended setting: 0 | |
1161 | #define wxUSE_DEBUG_CONTEXT 0 | |
1162 | ||
1163 | // If 1, enables debugging versions of wxObject::new and wxObject::delete *IF* | |
1164 | // __WXDEBUG__ is also defined. | |
1165 | // | |
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 | |
1168 | // | |
1169 | // Default is 0 | |
1170 | // | |
1171 | // Recommended setting: 1 if you are not using a memory debugging tool, else 0 | |
1172 | #define wxUSE_MEMORY_TRACING 0 | |
1173 | ||
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 | |
1179 | // | |
1180 | // Default is 0 | |
1181 | // | |
1182 | // Recommended setting: 0 | |
1183 | #define wxUSE_GLOBAL_MEMORY_OPERATORS 0 | |
1184 | ||
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 | |
1189 | // | |
1190 | // Default is 0 | |
1191 | // | |
1192 | // Recommended setting: 0 | |
1193 | #define wxUSE_DEBUG_NEW_ALWAYS 0 | |
1194 | ||
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. | |
1199 | // | |
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) | |
1202 | // | |
1203 | // Default is 1 | |
1204 | // | |
1205 | // Recommended setting: 1 if your compiler supports it. | |
1206 | #define wxUSE_ON_FATAL_EXCEPTION 1 | |
1207 | ||
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 | |
1211 | // | |
1212 | // Default is 1 if supported by the compiler. | |
1213 | // | |
1214 | // Recommended setting: 1, set to 0 if your programs never crash | |
1215 | #define wxUSE_STACKWALKER 1 | |
1216 | ||
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. | |
1220 | // | |
1221 | // Default is 1 if supported by the compiler. | |
1222 | // | |
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 | |
1226 | ||
1227 | // ---------------------------------------------------------------------------- | |
1228 | // Unicode support | |
1229 | // ---------------------------------------------------------------------------- | |
1230 | ||
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. | |
1234 | // | |
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). | |
1238 | // | |
1239 | // Default is 0 | |
1240 | // | |
1241 | // Recommended setting: 0 (unless you only plan to use Windows NT/2000/XP) | |
1242 | #ifndef wxUSE_UNICODE | |
1243 | #define wxUSE_UNICODE 0 | |
1244 | #endif | |
1245 | ||
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 | |
1249 | // to Unicode. | |
1250 | // | |
1251 | // Default is 1 | |
1252 | // | |
1253 | // Recommended setting: 1 | |
1254 | #define wxUSE_WCHAR_T 1 | |
1255 | ||
1256 | // ---------------------------------------------------------------------------- | |
1257 | // global features | |
1258 | // ---------------------------------------------------------------------------- | |
1259 | ||
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. | |
1266 | // | |
1267 | // Note that like wxUSE_THREADS this option is automatically set to 0 if | |
1268 | // wxNO_EXCEPTIONS is defined. | |
1269 | // | |
1270 | // Default is 1 | |
1271 | // | |
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 | |
1275 | ||
1276 | // Set wxUSE_EXTENDED_RTTI to 1 to use extended RTTI | |
1277 | // | |
1278 | // Default is 0 | |
1279 | // | |
1280 | // Recommended setting: 0 (this is still work in progress...) | |
1281 | #define wxUSE_EXTENDED_RTTI 0 | |
1282 | ||
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. | |
1286 | // | |
1287 | // Default is 0 | |
1288 | // | |
1289 | // Recommended setting: YMMV | |
1290 | #define wxUSE_STL 0 | |
1291 | ||
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 | |
1294 | // you are doing. | |
1295 | // | |
1296 | // Default is 1 | |
1297 | // | |
1298 | // Recommended setting: 1 (always) | |
1299 | #define wxUSE_LOG 1 | |
1300 | ||
1301 | // Recommended setting: 1 | |
1302 | #define wxUSE_LOGWINDOW 1 | |
1303 | ||
1304 | // Recommended setting: 1 | |
1305 | #define wxUSE_LOGGUI 1 | |
1306 | ||
1307 | // Recommended setting: 1 | |
1308 | #define wxUSE_LOG_DIALOG 1 | |
1309 | ||
1310 | // Support for command line parsing using wxCmdLineParser class. | |
1311 | // | |
1312 | // Default is 1 | |
1313 | // | |
1314 | // Recommended setting: 1 (can be set to 0 if you don't use the cmd line) | |
1315 | #define wxUSE_CMDLINE_PARSER 1 | |
1316 | ||
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. | |
1322 | // | |
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. | |
1326 | // | |
1327 | // Default is 1 | |
1328 | // | |
1329 | // Recommended setting: 0 unless you do plan to develop MT applications | |
1330 | #define wxUSE_THREADS 1 | |
1331 | ||
1332 | // If enabled (1), compiles wxWidgets streams classes | |
1333 | #define wxUSE_STREAMS 1 | |
1334 | ||
1335 | // Use standard C++ streams if 1. If 0, use wxWin streams implementation only. | |
1336 | #define wxUSE_STD_IOSTREAM 0 | |
1337 | ||
1338 | // Enable conversion to standard C++ string if 1. | |
1339 | #define wxUSE_STD_STRING 0 | |
1340 | ||
1341 | // ---------------------------------------------------------------------------- | |
1342 | // non GUI features selection | |
1343 | // ---------------------------------------------------------------------------- | |
1344 | ||
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. | |
1348 | // | |
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 | |
1353 | // off. | |
1354 | // | |
1355 | // Recommended setting: 1 | |
1356 | #define wxUSE_LONGLONG 1 | |
1357 | ||
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. | |
1360 | // | |
1361 | // Default is 1 | |
1362 | // | |
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 | |
1367 | ||
1368 | // Use wxFSVolume class providing access to the configured/active mount points | |
1369 | // | |
1370 | // Default is 1 | |
1371 | // | |
1372 | // Recommended setting: 1 (but may be safely disabled if you don't use it) | |
1373 | #define wxUSE_FSVOLUME 1 | |
1374 | ||
1375 | // Use wxStandardPaths class which allows to retrieve some standard locations | |
1376 | // in the file system | |
1377 | // | |
1378 | // Default is 1 | |
1379 | // | |
1380 | // Recommended setting: 1 (may be disabled to save space, but not much) | |
1381 | #define wxUSE_STDPATHS 1 | |
1382 | ||
1383 | // use wxTextBuffer class: required by wxTextFile | |
1384 | #define wxUSE_TEXTBUFFER 1 | |
1385 | ||
1386 | // use wxTextFile class: requires wxFile and wxTextBuffer, required by | |
1387 | // wxFileConfig | |
1388 | #define wxUSE_TEXTFILE 1 | |
1389 | ||
1390 | // i18n support: _() macro, wxLocale class. Requires wxTextFile. | |
1391 | #define wxUSE_INTL 1 | |
1392 | ||
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). | |
1397 | // | |
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. | |
1402 | // | |
1403 | // Requires: wxUSE_LONGLONG | |
1404 | // | |
1405 | // Default is 1 | |
1406 | // | |
1407 | // Recommended setting: 1 | |
1408 | #define wxUSE_DATETIME 1 | |
1409 | ||
1410 | // Set wxUSE_TIMER to 1 to compile wxTimer class | |
1411 | // | |
1412 | // Default is 1 | |
1413 | // | |
1414 | // Recommended setting: 1 | |
1415 | #define wxUSE_TIMER 1 | |
1416 | ||
1417 | // Use wxStopWatch clas. | |
1418 | // | |
1419 | // Default is 1 | |
1420 | // | |
1421 | // Recommended setting: 1 (needed by wxSocket) | |
1422 | #define wxUSE_STOPWATCH 1 | |
1423 | ||
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. | |
1428 | // | |
1429 | // See also wxUSE_CONFIG_NATIVE below. | |
1430 | // | |
1431 | // Recommended setting: 1 | |
1432 | #define wxUSE_CONFIG 1 | |
1433 | ||
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 | |
1437 | // Unix. | |
1438 | // | |
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. | |
1443 | // | |
1444 | // Recommended setting: 1 | |
1445 | #define wxUSE_CONFIG_NATIVE 1 | |
1446 | ||
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. | |
1450 | // | |
1451 | // Default is 1. | |
1452 | // | |
1453 | // Recommended setting: 1 | |
1454 | #define wxUSE_DIALUP_MANAGER 1 | |
1455 | ||
1456 | // Compile in classes for run-time DLL loading and function calling. | |
1457 | // Required by wxUSE_DIALUP_MANAGER. | |
1458 | // | |
1459 | // This setting is for Win32 only | |
1460 | // | |
1461 | // Default is 1. | |
1462 | // | |
1463 | // Recommended setting: 1 | |
1464 | #define wxUSE_DYNLIB_CLASS 1 | |
1465 | ||
1466 | // experimental, don't use for now | |
1467 | #define wxUSE_DYNAMIC_LOADER 1 | |
1468 | ||
1469 | // Set to 1 to use socket classes | |
1470 | #define wxUSE_SOCKETS 1 | |
1471 | ||
1472 | // Set to 1 to enable virtual file systems (required by wxHTML) | |
1473 | #define wxUSE_FILESYSTEM 1 | |
1474 | ||
1475 | // Set to 1 to enable virtual ZIP filesystem (requires wxUSE_FILESYSTEM) | |
1476 | #define wxUSE_FS_ZIP 1 | |
1477 | ||
1478 | // Set to 1 to enable virtual Internet filesystem (requires wxUSE_FILESYSTEM) | |
1479 | #define wxUSE_FS_INET 1 | |
1480 | ||
1481 | // wxArchive classes for accessing archives such as zip and tar | |
1482 | #define wxUSE_ARCHIVE_STREAMS 1 | |
1483 | ||
1484 | // Set to 1 to compile wxZipInput/OutputStream classes. | |
1485 | #define wxUSE_ZIPSTREAM 1 | |
1486 | ||
1487 | // Set to 1 to compile wxZlibInput/OutputStream classes. Also required by | |
1488 | // wxUSE_LIBPNG | |
1489 | #define wxUSE_ZLIB 1 | |
1490 | ||
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. | |
1494 | // | |
1495 | // Default is 1. | |
1496 | // | |
1497 | // Recommended setting: 1 unless you don't like the license terms (unlikely) | |
1498 | #define wxUSE_APPLE_IEEE 1 | |
1499 | ||
1500 | // Joystick support class | |
1501 | #define wxUSE_JOYSTICK 1 | |
1502 | ||
1503 | // wxFontMapper class | |
1504 | #define wxUSE_FONTMAP 1 | |
1505 | ||
1506 | // wxMimeTypesManager class | |
1507 | #define wxUSE_MIMETYPE 1 | |
1508 | ||
1509 | // wxProtocol and related classes: if you want to use either of wxFTP, wxHTTP | |
1510 | // or wxURL you need to set this to 1. | |
1511 | // | |
1512 | // Default is 1. | |
1513 | // | |
1514 | // Recommended setting: 1 | |
1515 | #define wxUSE_PROTOCOL 1 | |
1516 | ||
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 | |
1521 | ||
1522 | // Define this to use wxURL class. | |
1523 | #define wxUSE_URL 1 | |
1524 | ||
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. | |
1531 | // | |
1532 | // This code is experimental and subject to change. | |
1533 | #define wxUSE_URL_NATIVE 0 | |
1534 | ||
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. | |
1538 | // | |
1539 | // Default is 0 | |
1540 | // | |
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 | |
1544 | ||
1545 | // wxSystemOptions class | |
1546 | #define wxUSE_SYSTEM_OPTIONS 1 | |
1547 | ||
1548 | // wxSound class | |
1549 | #define wxUSE_SOUND 1 | |
1550 | ||
1551 | // Use wxMediaCtrl | |
1552 | // | |
1553 | // Default is 1. | |
1554 | // | |
1555 | // Recommended setting: 1 | |
1556 | #define wxUSE_MEDIACTRL 1 | |
1557 | ||
1558 | // Use GStreamer for Unix (req a lot of dependancies) | |
1559 | // | |
1560 | // Default is 0 | |
1561 | // | |
1562 | // Recommended setting: 1 (wxMediaCtrl won't work by default without it) | |
1563 | #define wxUSE_GSTREAMER 0 | |
1564 | ||
1565 | // Use wxWidget's XRC XML-based resource system. Recommended. | |
1566 | // | |
1567 | // Default is 1 | |
1568 | // | |
1569 | // Recommended setting: 1 (requires wxUSE_XML) | |
1570 | #define wxUSE_XRC 1 | |
1571 | ||
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. | |
1574 | // | |
1575 | // Default is 1 | |
1576 | // | |
1577 | // Recommended setting: 1 (required by XRC) | |
1578 | #if wxUSE_XRC | |
1579 | # define wxUSE_XML 1 | |
1580 | #else | |
1581 | # define wxUSE_XML 0 | |
1582 | #endif | |
1583 | ||
1584 | // ---------------------------------------------------------------------------- | |
1585 | // Individual GUI controls | |
1586 | // ---------------------------------------------------------------------------- | |
1587 | ||
1588 | // You must set wxUSE_CONTROLS to 1 if you are using any controls at all | |
1589 | // (without it, wxControl class is not compiled) | |
1590 | // | |
1591 | // Default is 1 | |
1592 | // | |
1593 | // Recommended setting: 1 (don't change except for very special programs) | |
1594 | #define wxUSE_CONTROLS 1 | |
1595 | ||
1596 | // wxPopupWindow class is a top level transient window. It is currently used | |
1597 | // to implement wxTipWindow | |
1598 | // | |
1599 | // Default is 1 | |
1600 | // | |
1601 | // Recommended setting: 1 (may be set to 0 if you don't wxUSE_TIPWINDOW) | |
1602 | #define wxUSE_POPUPWIN 1 | |
1603 | ||
1604 | // wxTipWindow allows to implement the custom tooltips, it is used by the | |
1605 | // context help classes. Requires wxUSE_POPUPWIN. | |
1606 | // | |
1607 | // Default is 1 | |
1608 | // | |
1609 | // Recommended setting: 1 (may be set to 0) | |
1610 | #define wxUSE_TIPWINDOW 1 | |
1611 | ||
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. | |
1617 | // | |
1618 | // Default is 1 | |
1619 | // | |
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 | |
1645 | ||
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. | |
1648 | // | |
1649 | // Default is 1 | |
1650 | // | |
1651 | // Recommended setting: 1 | |
1652 | #define wxUSE_STATUSBAR 1 | |
1653 | ||
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. | |
1657 | // | |
1658 | // Default is 1 for the platforms where native status bar is supported. | |
1659 | // | |
1660 | // Recommended setting: 1 (there is no advantage in using the generic one) | |
1661 | #define wxUSE_NATIVE_STATUSBAR 1 | |
1662 | ||
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. | |
1666 | // | |
1667 | // Default is 1 for all settings. | |
1668 | // | |
1669 | // Recommended setting: 1 for wxUSE_TOOLBAR and wxUSE_TOOLBAR_NATIVE. | |
1670 | #define wxUSE_TOOLBAR 1 | |
1671 | #define wxUSE_TOOLBAR_NATIVE 1 | |
1672 | ||
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. | |
1677 | // | |
1678 | // Default is 1. | |
1679 | // | |
1680 | // Recommended setting: 1 | |
1681 | #define wxUSE_NOTEBOOK 1 | |
1682 | ||
1683 | // wxListbook control is similar to wxNotebook but uses wxListCtrl instead of | |
1684 | // the tabs | |
1685 | // | |
1686 | // Default is 1. | |
1687 | // | |
1688 | // Recommended setting: 1 | |
1689 | #define wxUSE_LISTBOOK 1 | |
1690 | ||
1691 | // wxChoicebook control is similar to wxNotebook but uses wxChoice instead of | |
1692 | // the tabs | |
1693 | // | |
1694 | // Default is 1. | |
1695 | // | |
1696 | // Recommended setting: 1 | |
1697 | #define wxUSE_CHOICEBOOK 1 | |
1698 | ||
1699 | // wxTreebook control is similar to wxNotebook but uses wxTreeCtrl instead of | |
1700 | // the tabs | |
1701 | // | |
1702 | // Default is 1. | |
1703 | // | |
1704 | // Recommended setting: 1 | |
1705 | #define wxUSE_TREEBOOK 1 | |
1706 | ||
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. | |
1709 | // | |
1710 | // Default is 0. | |
1711 | // | |
1712 | // Recommended setting: 0 (use wxNotebook) | |
1713 | #define wxUSE_TAB_DIALOG 0 | |
1714 | ||
1715 | // wxGrid class | |
1716 | // | |
1717 | // Default is 1, set to 0 to cut down compilation time and binaries size if you | |
1718 | // don't use it. | |
1719 | // | |
1720 | // Recommended setting: 1 | |
1721 | // | |
1722 | #define wxUSE_GRID 1 | |
1723 | ||
1724 | // wxMiniFrame class: a frame with narrow title bar | |
1725 | // | |
1726 | // Default is 1. | |
1727 | // | |
1728 | // Recommended setting: 1 (it doesn't cost almost anything) | |
1729 | #define wxUSE_MINIFRAME 1 | |
1730 | ||
1731 | // ---------------------------------------------------------------------------- | |
1732 | // Miscellaneous GUI stuff | |
1733 | // ---------------------------------------------------------------------------- | |
1734 | ||
1735 | // wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar) | |
1736 | #define wxUSE_ACCEL 1 | |
1737 | ||
1738 | // Hotkey support (currently Windows only) | |
1739 | #define wxUSE_HOTKEY 1 | |
1740 | ||
1741 | // Use wxCaret: a class implementing a "cursor" in a text control (called caret | |
1742 | // under Windows). | |
1743 | // | |
1744 | // Default is 1. | |
1745 | // | |
1746 | // Recommended setting: 1 (can be safely set to 0, not used by the library) | |
1747 | #define wxUSE_CARET 1 | |
1748 | ||
1749 | // Use wxDisplay class: it allows enumerating all displays on a system and | |
1750 | // working with them. | |
1751 | // | |
1752 | // Default is 0 because it isn't yet implemented on all platforms | |
1753 | // | |
1754 | // Recommended setting: 1 if you need it, can be safely set to 0 otherwise | |
1755 | #define wxUSE_DISPLAY 0 | |
1756 | ||
1757 | // Miscellaneous geometry code: needed for Canvas library | |
1758 | #define wxUSE_GEOMETRY 1 | |
1759 | ||
1760 | // Use wxImageList. This class is needed by wxNotebook, wxTreeCtrl and | |
1761 | // wxListCtrl. | |
1762 | // | |
1763 | // Default is 1. | |
1764 | // | |
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 | |
1768 | ||
1769 | // Use wxMenu, wxMenuBar, wxMenuItem. | |
1770 | // | |
1771 | // Default is 1. | |
1772 | // | |
1773 | // Recommended setting: 1 (can't be disabled under MSW) | |
1774 | #define wxUSE_MENUS 1 | |
1775 | ||
1776 | // Use wxSashWindow class. | |
1777 | // | |
1778 | // Default is 1. | |
1779 | // | |
1780 | // Recommended setting: 1 | |
1781 | #define wxUSE_SASH 1 | |
1782 | ||
1783 | // Use wxSplitterWindow class. | |
1784 | // | |
1785 | // Default is 1. | |
1786 | // | |
1787 | // Recommended setting: 1 | |
1788 | #define wxUSE_SPLITTER 1 | |
1789 | ||
1790 | // Use wxToolTip and wxWindow::Set/GetToolTip() methods. | |
1791 | // | |
1792 | // Default is 1. | |
1793 | // | |
1794 | // Recommended setting: 1 | |
1795 | #define wxUSE_TOOLTIPS 1 | |
1796 | ||
1797 | // wxValidator class and related methods | |
1798 | #define wxUSE_VALIDATORS 1 | |
1799 | ||
1800 | // ---------------------------------------------------------------------------- | |
1801 | // common dialogs | |
1802 | // ---------------------------------------------------------------------------- | |
1803 | ||
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. | |
1807 | // | |
1808 | // Default is 1 | |
1809 | // | |
1810 | // Recommended setting: 1 (unless it really doesn't work) | |
1811 | #define wxUSE_COMMON_DIALOGS 1 | |
1812 | ||
1813 | // wxBusyInfo displays window with message when app is busy. Works in same way | |
1814 | // as wxBusyCursor | |
1815 | #define wxUSE_BUSYINFO 1 | |
1816 | ||
1817 | // Use single/multiple choice dialogs. | |
1818 | // | |
1819 | // Default is 1 | |
1820 | // | |
1821 | // Recommended setting: 1 (used in the library itself) | |
1822 | #define wxUSE_CHOICEDLG 1 | |
1823 | ||
1824 | // Use colour picker dialog | |
1825 | // | |
1826 | // Default is 1 | |
1827 | // | |
1828 | // Recommended setting: 1 | |
1829 | #define wxUSE_COLOURDLG 1 | |
1830 | ||
1831 | // wxDirDlg class for getting a directory name from user | |
1832 | #define wxUSE_DIRDLG 1 | |
1833 | ||
1834 | // TODO: setting to choose the generic or native one | |
1835 | ||
1836 | // Use file open/save dialogs. | |
1837 | // | |
1838 | // Default is 1 | |
1839 | // | |
1840 | // Recommended setting: 1 (used in many places in the library itself) | |
1841 | #define wxUSE_FILEDLG 1 | |
1842 | ||
1843 | // Use find/replace dialogs. | |
1844 | // | |
1845 | // Default is 1 | |
1846 | // | |
1847 | // Recommended setting: 1 (but may be safely set to 0) | |
1848 | #define wxUSE_FINDREPLDLG 1 | |
1849 | ||
1850 | // Use font picker dialog | |
1851 | // | |
1852 | // Default is 1 | |
1853 | // | |
1854 | // Recommended setting: 1 (used in the library itself) | |
1855 | #define wxUSE_FONTDLG 1 | |
1856 | ||
1857 | // Use wxMessageDialog and wxMessageBox. | |
1858 | // | |
1859 | // Default is 1 | |
1860 | // | |
1861 | // Recommended setting: 1 (used in the library itself) | |
1862 | #define wxUSE_MSGDLG 1 | |
1863 | ||
1864 | // progress dialog class for lengthy operations | |
1865 | #define wxUSE_PROGRESSDLG 1 | |
1866 | ||
1867 | // support for startup tips (wxShowTip &c) | |
1868 | #define wxUSE_STARTUP_TIPS 1 | |
1869 | ||
1870 | // text entry dialog and wxGetTextFromUser function | |
1871 | #define wxUSE_TEXTDLG 1 | |
1872 | ||
1873 | // number entry dialog | |
1874 | #define wxUSE_NUMBERDLG 1 | |
1875 | ||
1876 | // splash screen class | |
1877 | #define wxUSE_SPLASH 1 | |
1878 | ||
1879 | // wizards | |
1880 | #define wxUSE_WIZARDDLG 1 | |
1881 | ||
1882 | // ---------------------------------------------------------------------------- | |
1883 | // Metafiles support | |
1884 | // ---------------------------------------------------------------------------- | |
1885 | ||
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. | |
1895 | // | |
1896 | // Default is 1 for wxUSE_ENH_METAFILE and 0 for wxUSE_WIN_METAFILES_ALWAYS. | |
1897 | // | |
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 | |
1902 | ||
1903 | // ---------------------------------------------------------------------------- | |
1904 | // Big GUI components | |
1905 | // ---------------------------------------------------------------------------- | |
1906 | ||
1907 | // Set to 0 to disable MDI support. | |
1908 | // | |
1909 | // Requires wxUSE_NOTEBOOK under platforms other than MSW. | |
1910 | // | |
1911 | // Default is 1. | |
1912 | // | |
1913 | // Recommended setting: 1, can be safely set to 0. | |
1914 | #define wxUSE_MDI 1 | |
1915 | ||
1916 | // Set to 0 to disable document/view architecture | |
1917 | #define wxUSE_DOC_VIEW_ARCHITECTURE 1 | |
1918 | ||
1919 | // Set to 0 to disable MDI document/view architecture | |
1920 | // | |
1921 | // Requires wxUSE_MDI && wxUSE_DOC_VIEW_ARCHITECTURE | |
1922 | #define wxUSE_MDI_ARCHITECTURE 1 | |
1923 | ||
1924 | // Set to 0 to disable print/preview architecture code | |
1925 | #define wxUSE_PRINTING_ARCHITECTURE 1 | |
1926 | ||
1927 | // wxHTML sublibrary allows to display HTML in wxWindow programs and much, | |
1928 | // much more. | |
1929 | // | |
1930 | // Default is 1. | |
1931 | // | |
1932 | // Recommended setting: 1 (wxHTML is great!), set to 0 if you want compile a | |
1933 | // smaller library. | |
1934 | #define wxUSE_HTML 1 | |
1935 | ||
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. | |
1941 | // | |
1942 | // Default is 0. | |
1943 | // | |
1944 | // Recommended setting: 1 if you intend to use OpenGL, 0 otherwise | |
1945 | #define wxUSE_GLCANVAS 0 | |
1946 | ||
1947 | // wxRichTextCtrl allows editing of styled text. | |
1948 | // | |
1949 | // Default is 1. | |
1950 | // | |
1951 | // Recommended setting: 1, set to 0 if you want compile a | |
1952 | // smaller library. | |
1953 | #define wxUSE_RICHTEXT 1 | |
1954 | ||
1955 | // ---------------------------------------------------------------------------- | |
1956 | // Data transfer | |
1957 | // ---------------------------------------------------------------------------- | |
1958 | ||
1959 | // Use wxClipboard class for clipboard copy/paste. | |
1960 | // | |
1961 | // Default is 1. | |
1962 | // | |
1963 | // Recommended setting: 1 | |
1964 | #define wxUSE_CLIPBOARD 1 | |
1965 | ||
1966 | // Use wxDataObject and related classes. Needed for clipboard and OLE drag and | |
1967 | // drop | |
1968 | // | |
1969 | // Default is 1. | |
1970 | // | |
1971 | // Recommended setting: 1 | |
1972 | #define wxUSE_DATAOBJ 1 | |
1973 | ||
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. | |
1977 | // | |
1978 | // Default is 1. | |
1979 | // | |
1980 | // Recommended setting: 1 | |
1981 | #define wxUSE_DRAG_AND_DROP 1 | |
1982 | ||
1983 | // Use wxAccessible for enhanced and customisable accessibility. | |
1984 | // Depends on wxUSE_OLE. | |
1985 | // | |
1986 | // Default is 0. | |
1987 | // | |
1988 | // Recommended setting (at present): 0 | |
1989 | #define wxUSE_ACCESSIBILITY 0 | |
1990 | ||
1991 | // ---------------------------------------------------------------------------- | |
1992 | // miscellaneous settings | |
1993 | // ---------------------------------------------------------------------------- | |
1994 | ||
1995 | // wxSingleInstanceChecker class allows to verify at startup if another program | |
1996 | // instance is running (it is only available under Win32) | |
1997 | // | |
1998 | // Default is 1 | |
1999 | // | |
2000 | // Recommended setting: 1 (the class is tiny, disabling it won't save much | |
2001 | // space) | |
2002 | #define wxUSE_SNGLINST_CHECKER 1 | |
2003 | ||
2004 | #define wxUSE_DRAGIMAGE 1 | |
2005 | ||
2006 | #define wxUSE_IPC 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 | |
2012 | ||
2013 | // Use wxHTML-based help controller? | |
2014 | #define wxUSE_WXHTML_HELP 1 | |
2015 | ||
2016 | #define wxUSE_RESOURCES 0 | |
2017 | // 0 for no wxGetResource/wxWriteResource | |
2018 | #define wxUSE_CONSTRAINTS 1 | |
2019 | // 0 for no window layout constraint system | |
2020 | ||
2021 | #define wxUSE_SPLINES 1 | |
2022 | // 0 for no splines | |
2023 | ||
2024 | #define wxUSE_MOUSEWHEEL 1 | |
2025 | // Include mouse wheel support | |
2026 | ||
2027 | // ---------------------------------------------------------------------------- | |
2028 | // postscript support settings | |
2029 | // ---------------------------------------------------------------------------- | |
2030 | ||
2031 | // Set to 1 for PostScript device context. | |
2032 | #define wxUSE_POSTSCRIPT 0 | |
2033 | ||
2034 | // Set to 1 to use font metric files in GetTextExtent | |
2035 | #define wxUSE_AFM_FOR_POSTSCRIPT 1 | |
2036 | ||
2037 | // ---------------------------------------------------------------------------- | |
2038 | // database classes | |
2039 | // ---------------------------------------------------------------------------- | |
2040 | ||
2041 | // Define 1 to use ODBC classes | |
2042 | #define wxUSE_ODBC 0 | |
2043 | ||
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 | |
2052 | ||
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 | |
2059 | ||
2060 | // ---------------------------------------------------------------------------- | |
2061 | // other compiler (mis)features | |
2062 | // ---------------------------------------------------------------------------- | |
2063 | ||
2064 | // Set this to 0 if your compiler can't cope with omission of prototype | |
2065 | // parameters. | |
2066 | // | |
2067 | // Default is 1. | |
2068 | // | |
2069 | // Recommended setting: 1 (should never need to set this to 0) | |
2070 | #define REMOVE_UNUSED_ARG 1 | |
2071 | ||
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 | |
2075 | // used anyhow. | |
2076 | // | |
2077 | // Default is 1. | |
2078 | // | |
2079 | // Recommended setting: whatever your compiler likes more | |
2080 | #define wxUSE_IOSTREAMH 1 | |
2081 | ||
2082 | // ---------------------------------------------------------------------------- | |
2083 | // image format support | |
2084 | // ---------------------------------------------------------------------------- | |
2085 | ||
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. | |
2090 | // | |
2091 | // Some formats require an extra library which is included in wxWin sources | |
2092 | // which is mentioned if it is the case. | |
2093 | ||
2094 | // Set to 1 for wxImage support (recommended). | |
2095 | #define wxUSE_IMAGE 1 | |
2096 | ||
2097 | // Set to 1 for PNG format support (requires libpng). Also requires wxUSE_ZLIB. | |
2098 | #define wxUSE_LIBPNG 1 | |
2099 | ||
2100 | // Set to 1 for JPEG format support (requires libjpeg) | |
2101 | #define wxUSE_LIBJPEG 1 | |
2102 | ||
2103 | // Set to 1 for TIFF format support (requires libtiff) | |
2104 | #define wxUSE_LIBTIFF 1 | |
2105 | ||
2106 | // Set to 1 for GIF format support | |
2107 | #define wxUSE_GIF 1 | |
2108 | ||
2109 | // Set to 1 for PNM format support | |
2110 | #define wxUSE_PNM 1 | |
2111 | ||
2112 | // Set to 1 for PCX format support | |
2113 | #define wxUSE_PCX 1 | |
2114 | ||
2115 | // Set to 1 for IFF format support (Amiga format) | |
2116 | #define wxUSE_IFF 0 | |
2117 | ||
2118 | // Set to 1 for XPM format support | |
2119 | #define wxUSE_XPM 1 | |
2120 | ||
2121 | // Set to 1 for MS Icons and Cursors format support | |
2122 | #define wxUSE_ICO_CUR 1 | |
2123 | ||
2124 | // Set to 1 to compile in wxPalette class | |
2125 | #define wxUSE_PALETTE 1 | |
2126 |