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