]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/setup0.h
source clean-up
[wxWidgets.git] / include / wx / msw / setup0.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: setup.h
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
20 #define wxUSE_GUI 1
21
22 // ----------------------------------------------------------------------------
23 // compatibility settings
24 // ----------------------------------------------------------------------------
25
26 #define WXWIN_COMPATIBILITY 0
27 // Compatibility with 1.68 API.
28 // Level 0: no backward compatibility, all new features
29 // Level 1: Some compatibility. In fact
30 // the compatibility code is now very minimal so there
31 // is little advantage to setting it to 1.
32
33 // in wxMSW version 2.1.11 and earlier, wxIcon always derives from wxBitmap,
34 // but this is very dangerous because you can mistakenly pass an icon instead
35 // of a bitmap to a function taking "const wxBitmap&" - which will *not* work
36 // because an icon is not a valid bitmap
37 //
38 // Starting from 2.1.12, you have the choice under this backwards compatible
39 // behaviour (your code will still compile, but probably won't behave as
40 // expected!) and not deriving wxIcon class from wxBitmap, but providing a
41 // conversion ctor wxBitmap(const wxIcon&) instead.
42 //
43 // Recommended setting: 0
44 #define wxICON_IS_BITMAP 0
45
46 // ----------------------------------------------------------------------------
47 // General features
48 // ----------------------------------------------------------------------------
49
50 // Setting wxUSE_CONFIG to 1 enables the use of wxConfig and related classes
51 // which allow the application to store its settings in the persistent
52 // storage. Setting this to 1 will also enable on-demand creation of the
53 // global config object in wxApp.
54 //
55 // See also wxUSE_CONFIG_NATIVE below.
56 //
57 // Recommended setting: 1
58 #define wxUSE_CONFIG 1
59
60 // If wxUSE_CONFIG is 1, you may choose to use either the native config
61 // classes under Windows (using .INI files under Win16 and the registry under
62 // Win32) or the portable text file format used by the config classes under
63 // Unix.
64 //
65 // Default is 1 to use native classes. Note that you may still use
66 // wxFileConfig even if you set this to 1 - just the config object created by
67 // default for the applications needs will be a wxRegConfig or wxIniConfig and
68 // not wxFileConfig.
69 //
70 // Recommended setting: 1
71 #define wxUSE_CONFIG_NATIVE 1
72
73 #define wxUSE_DIALUP_MANAGER 1
74 // Use wxDialUpManager class
75 #define wxUSE_POSTSCRIPT 0
76 // 0 for no PostScript device context
77 #define wxUSE_AFM_FOR_POSTSCRIPT 0
78 // 1 to use font metric files in GetTextExtent
79 #define wxUSE_METAFILE 1
80 // 0 for no Metafile and metafile device context
81 #define wxUSE_IPC 1
82 // 0 for no interprocess comms
83 // Note: wxHELP uses IPC under X so these are interdependent!
84 #define wxUSE_HELP 1
85 // 0 for no help facility
86 #define wxUSE_RESOURCES 1
87 // 0 for no wxGetResource/wxWriteResource
88 #define wxUSE_CONSTRAINTS 1
89 // 0 for no window layout constraint system
90
91 #define wxUSE_TIMEDATE 1
92 // 0 for no wxTime/wxDate classes
93
94 #define wxUSE_CLIPBOARD 1
95 // 0 for no clipboard functions
96
97 #define wxUSE_SPLINES 1
98 // 0 for no splines
99
100 #define wxUSE_DRAG_AND_DROP 1
101 // 0 for no drag and drop
102
103 #define wxUSE_BUTTONBAR 1
104 // Define 1 to use buttonbar classes (enhanced toolbar
105 // for MS Windows)
106 #define wxUSE_GAUGE 1
107 // Define 1 to use Microsoft's gauge (Windows)
108 // or Bull's gauge (Motif) library (both in contrib).
109 #define wxUSE_COMBOBOX 1
110 // Define 1 to use COMBOXBOX control (Windows)
111 // or FWW's ComboBox widget (Motif).
112 #define wxUSE_CHOICE 1
113 // Define 1 to use CHOICE
114
115 #define wxUSE_RADIOBUTTON 1
116 // Define 1 to use radio button control
117 #define wxUSE_RADIOBTN 1
118 // Unfortunately someone introduced this one, too
119 #define wxUSE_RADIOBOX 1
120 // And this... don't know which one is corect
121
122 #define wxUSE_SCROLLBAR 1
123 // Define 1 to compile contributed wxScrollBar class
124
125 #define wxUSE_CHECKBOX 1
126 // Define 1 to compile checkbox
127
128 #define wxUSE_LISTBOX 1
129 // Define 1 to compile listbox
130
131 #define wxUSE_SPINBTN 1
132 // Define 1 to compile spin button
133
134 #define wxUSE_SPINCTRL 1
135 // Define 1 to use wxSpinCtrl class
136
137 #define wxUSE_STATLINE 1
138 // use wxStaticLine class
139
140 #define wxUSE_CHECKLISTBOX 1
141 // Define 1 to compile check listbox
142
143 #define wxUSE_CHOICE 1
144 // Define 1 to compile choice
145
146 #define wxUSE_CARET 1
147 // Define 1 to use wxCaret class
148
149 #define wxUSE_SLIDER 1
150 // Define 1 to use wxSlider class
151
152 #define wxUSE_NEW_GRID 1
153 // Define 1 to use the new wxGrid class
154 // (still under development, define 0 to
155 // use existing wxGrid class)
156 #define wxUSE_XPM_IN_MSW 1
157 // Define 1 to support the XPM package in wxBitmap.
158 #define wxUSE_IMAGE_LOADING_IN_MSW 1
159 // Use dynamic DIB loading/saving code in utils/dib under MSW.
160 #define wxUSE_RESOURCE_LOADING_IN_MSW 1
161 // Use dynamic icon/cursor loading/saving code
162 // under MSW.
163 #define wxUSE_WX_RESOURCES 1
164 // Use .wxr resource mechanism (requires PrologIO library)
165
166 #define wxUSE_STARTUP_TIPS 1
167 // support for startup tips (wxShowTip &c)
168
169 #define wxUSE_DOC_VIEW_ARCHITECTURE 1
170 // Set to 0 to disable document/view architecture
171 #define wxUSE_MDI_ARCHITECTURE 1
172 // Set to 0 to disable MDI document/view architecture
173 #define wxUSE_PRINTING_ARCHITECTURE 1
174 // Set to 0 to disable print/preview architecture code
175 #define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 1
176 // Set to 0 to disable PostScript print/preview architecture code
177 // under Windows (just use Windows printing).
178 #define wxUSE_DYNAMIC_CLASSES 1
179 // If 1, enables provision of run-time type information.
180 // NOW MANDATORY: don't change.
181 #define wxUSE_MEMORY_TRACING 1
182 // If 1, enables debugging versions of wxObject::new and
183 // wxObject::delete *IF* __WXDEBUG__ is also defined.
184 // WARNING: this code may not work with all architectures, especially
185 // if alignment is an issue.
186 #define wxUSE_DEBUG_CONTEXT 1
187 // If 1, enables wxDebugContext, for
188 // writing error messages to file, etc.
189 // If __WXDEBUG__ is not defined, will still use
190 // normal memory operators.
191 // It's recommended to set this to 1,
192 // since you may well need to output
193 // an error log in a production
194 // version (or non-debugging beta)
195 #define wxUSE_GLOBAL_MEMORY_OPERATORS 1
196 // In debug mode, cause new and delete to be redefined globally.
197 // If this causes problems (e.g. link errors), set this to 0.
198
199 #define wxUSE_DEBUG_NEW_ALWAYS 1
200 // In debug mode, causes new to be defined to
201 // be WXDEBUG_NEW (see object.h).
202 // If this causes problems (e.g. link errors), set this to 0.
203 // You may need to set this to 0 if using templates (at least
204 // for VC++).
205
206 #define REMOVE_UNUSED_ARG 1
207 // Set this to 0 if your compiler can't cope
208 // with omission of prototype parameters.
209
210 #define wxUSE_ODBC 0
211 // Define 1 to use ODBC classes
212
213 #define wxODBC_FWD_ONLY_CURSORS 1
214 // Some databases/ODBC drivers only allow forward scrolling cursors.
215 // Unless you specifically want to use backward scrolling
216 // cursors, and you know that all of the databases/ODBC drivers
217 // that you will use these odbc classes with allow backward
218 // scrolling cursors, this setting should remain set to 1
219 // for maximum database/driver compatibilty
220
221 #ifndef __MWERKS__
222 #define wxUSE_IOSTREAMH 1
223 #else
224 #define wxUSE_IOSTREAMH 1
225 #endif
226 // VC++ 4.2 and above allows <iostream> and <iostream.h>
227 // but you can't mix them. Set to 1 for <iostream.h>,
228 // 0 for <iostream>
229
230 #define wxUSE_STREAMS 1
231 // If enabled (1), compiles wxWindows streams classes
232
233 #define wxUSE_STD_IOSTREAM 0
234 // Use standard C++ streams if 1. If 0, use wxWin
235 // streams implementation.
236
237 #define wxUSE_WXCONFIG 1
238 // if enabled, compiles built-in OS independent wxConfig
239 // class and it's file (any platform) and registry (Win)
240 // based implementations
241 #define wxUSE_THREADS 1
242 // support for multithreaded applications: if
243 // 1, compile in thread classes (thread.h)
244 // and make the library thread safe
245 #define wxUSE_ZLIB 1
246 // Use zlib for compression in streams and PNG code
247 #define wxUSE_LIBPNG 1
248 // Use PNG bitmap/image code
249 #define wxUSE_LIBJPEG 1
250 // Use JPEG bitmap/image code
251 #define wxUSE_GIF 1
252 // Use GIF bitmap/image code
253 #define wxUSE_PNM 1
254 // Use PNM bitmap/image code
255 #define wxUSE_PCX 1
256 // Use PCX bitmap/image code
257 #define wxUSE_SERIAL 0
258 // Use serialization (requires utils/serialize)
259 #define wxUSE_DYNLIB_CLASS 0
260 // Compile in wxLibrary class for run-time
261 // DLL loading and function calling
262 #define wxUSE_TOOLTIPS 1
263 // Define to use wxToolTip class and
264 // wxWindow::SetToolTip() method
265 #define wxUSE_SOCKETS 1
266 // Set to 1 to use socket classes
267 #define wxUSE_HTML 1
268 // Set to 1 to use wxHTML sub-library
269 #define wxUSE_FS_ZIP 1
270 #define wxUSE_FS_INET 1 // Set to 1 to enable virtual file systems
271
272 #define wxUSE_BUSYINFO 1
273 // wxBusyInfo displays window with message
274 // when app is busy. Works in same way as
275 // wxBusyCursor
276 #define wxUSE_ZIPSTREAM 1
277 // input stream for reading from zip archives
278
279 /*
280 * Finer detail
281 *
282 */
283
284 #define wxUSE_APPLE_IEEE 1
285 // if enabled, the float codec written by Apple
286 // will be used to write, in a portable way,
287 // float on the disk
288
289 // use wxFile class - required by i18n code, wxConfig and others - recommended
290 #define wxUSE_FILE 1
291
292 // use wxTextFile class: requires wxFile, required by wxConfig
293 #define wxUSE_TEXTFILE 1
294
295 // i18n support: _() macro, wxLocale class. Requires wxFile
296 #define wxUSE_INTL 1
297
298 // wxLogXXX functions - highly recommended
299 #define wxUSE_LOG 1
300
301 // wxValidator class
302 #define wxUSE_VALIDATORS 1
303
304 // wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar)
305 #define wxUSE_ACCEL 1
306
307 // wxSashWindow class
308 #define wxUSE_SASH 1
309
310 // text entry dialog and wxGetTextFromUser function
311 #define wxUSE_TEXTDLG 1
312
313 // wxToolBar class
314 #define wxUSE_TOOLBAR 1
315
316 // wxStatusBar class
317 #define wxUSE_STATUSBAR 1
318
319 // progress dialog class for lengthy operations
320 #define wxUSE_PROGRESSDLG 1
321
322 // wxDirDlg class for getting a directory name from user
323 #define wxUSE_DIRDLG 1
324
325 /*
326 * MS Windows/Windows NT
327 *
328 */
329
330 #define wxUSE_OLE 1
331 // drag-and-drop, clipboard, OLE Automation
332
333 #if defined(__WIN95__)
334 #define wxUSE_CTL3D 0
335 #else
336 #define wxUSE_CTL3D 1
337 // Define 1 to use Microsoft CTL3D library.
338 // See note above about using FAFA and CTL3D.
339 #endif
340
341 // can we use RICHEDIT control?
342 #if defined(__WIN95__) && !defined(__TWIN32__) && !defined(__GNUWIN32_OLD__)
343 #define wxUSE_RICHEDIT 1
344 #else
345 #define wxUSE_RICHEDIT 0
346 #endif
347
348 #define wxUSE_COMMON_DIALOGS 1
349 // On rare occasions (e.g. using DJGPP) may want
350 // to omit common dialogs
351 // (e.g. file selector, printer dialog).
352 // Switching this off also switches off
353 // the printing architecture and interactive
354 // wxPrinterDC.
355 #define wxUSE_ITSY_BITSY 1
356 // Define 1 to use Microsoft's ItsyBitsy
357 // small title bar library, for wxMiniFrame
358 #define wxUSE_BITMAP_MESSAGE 1
359 // Define 1 to use bitmap messages.
360 #define wxUSE_PORTABLE_FONTS_IN_MSW 0
361 // Define 1 to use new portable font scheme in Windows
362 // (used by default under X)
363 #define wxFONT_SIZE_COMPATIBILITY 0
364 // Define 1 for font size to be backward compatible
365 // to 1.63 and earlier. 1.64 and later define point
366 // sizes to be compatible with Windows.
367 #define wxUSE_GENERIC_DIALOGS_IN_MSW 1
368 // Define 1 to use generic dialogs in Windows, even though
369 // they duplicate native common dialog (e.g. wxColourDialog)
370 #define wxUSE_PENWINDOWS 0
371 // Set to 1 to use PenWindows
372
373 #define wxUSE_OWNER_DRAWN 1
374 // Owner-drawn menus and listboxes
375
376 #define wxUSE_NATIVE_STATUSBAR 1
377 // Set to 0 to use cross-platform wxStatusBar
378
379 /*
380 * Any platform
381 *
382 */
383
384 #define wxUSE_TYPEDEFS 0
385 // Use typedefs not classes for wxPoint
386 // and others, to reduce overhead and avoid
387 // MS C7 memory bug. Bounds checker
388 // complains about deallocating
389 // arrays of wxPoints if wxPoint is a class.
390
391 #if defined(__MINGW32__) && ((__GNUC__>2) ||((__GNUC__==2) && (__GNUC_MINOR__>=95)))
392 #ifndef wxUSE_NORLANDER_HEADERS
393 # define wxUSE_NORLANDER_HEADERS 1
394 #endif
395 #endif
396
397 #if (!defined(WIN32) && !defined(__WIN32__)) || (defined(__GNUWIN32__) && !defined(wxUSE_NORLANDER_HEADERS))
398 // Can't use OLE drag and drop in Windows 3.1 because we don't know how
399 // to implement UUIDs
400 // GnuWin32 doesn't have appropriate headers for e.g. IUnknown.
401 #undef wxUSE_DRAG_AND_DROP
402 #define wxUSE_DRAG_AND_DROP 0
403 #endif
404
405 // Only WIN32 supports wxStatusBar95
406 #if !defined(__WIN32__) && wxUSE_NATIVE_STATUSBAR
407 #undef wxUSE_NATIVE_STATUSBAR
408 #define wxUSE_NATIVE_STATUSBAR 0
409 #endif
410
411 // Salford C++ doesn't like some of the memory operator definitions
412 #ifdef __SALFORDC__
413 #undef wxUSE_MEMORY_TRACING
414 #define wxUSE_MEMORY_TRACING 0
415
416 #undef wxUSE_GLOBAL_MEMORY_OPERATORS
417 #define wxUSE_GLOBAL_MEMORY_OPERATORS 0
418
419 #undef wxUSE_DEBUG_NEW_ALWAYS
420 #define wxUSE_DEBUG_NEW_ALWAYS 0
421
422 #undef wxUSE_THREADS
423 #define wxUSE_THREADS 0
424
425 #undef wxUSE_OWNER_DRAWN
426 #define wxUSE_OWNER_DRAWN 0
427 #endif
428
429 #ifdef __TWIN32__
430
431 #undef wxUSE_THREADS
432 #define wxUSE_THREADS 0
433
434 #undef wxUSE_ODBC
435 #define wxUSE_ODBC 0
436
437 #endif
438
439 // BC++/Win16 can't cope with the amount of data in resource.cpp
440 #if defined(__WIN16__) && defined(__BORLANDC__)
441 #undef wxUSE_WX_RESOURCES
442 #define wxUSE_WX_RESOURCES 0
443
444 #undef wxUSE_ODBC
445 #define wxUSE_ODBC 0
446 #endif
447
448 #if defined(__WXMSW__) && defined(__WATCOMC__)
449 #undef wxUSE_LIBJPEG
450 #define wxUSE_LIBJPEG 0
451 #endif
452
453 #if defined(__WXMSW__) && !defined(__WIN32__)
454
455 #undef wxUSE_SOCKETS
456 #define wxUSE_SOCKETS 0
457
458 #undef wxUSE_THREADS
459 #define wxUSE_THREADS 0
460
461 #undef wxUSE_TOOLTIPS
462 #define wxUSE_TOOLTIPS 0
463
464 #undef wxUSE_SPINCTRL
465 #define wxUSE_SPINCTRL 0
466
467 #undef wxUSE_SPINBTN
468 #define wxUSE_SPINBTN 0
469
470 #undef wxUSE_LIBPNG
471 #define wxUSE_LIBPNG 0
472
473 #undef wxUSE_LIBJPEG
474 #define wxUSE_LIBJPEG 0
475
476 #undef wxUSE_GIF
477 #define wxUSE_GIF 0
478
479 #undef wxUSE_PNM
480 #define wxUSE_PNM 0
481
482 #undef wxUSE_PCX
483 #define wxUSE_PCX 0
484
485 #endif
486
487 #endif
488 // _WX_SETUP_H_