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