]>
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 VZ |
30 | #define wxUSE_POSTSCRIPT 0 |
31 | // 0 for no PostScript device context | |
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 VZ |
52 | #define wxUSE_SPLINES 1 |
53 | // 0 for no splines | |
9bd6a503 VZ |
54 | |
55 | #define wxUSE_DRAG_AND_DROP 1 | |
56 | // 0 for no drag and drop | |
57 | ||
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). | |
ce4169a4 RR |
69 | #define wxUSE_CHOICE 1 |
70 | // Define 1 to use CHOICE | |
71 | ||
9bd6a503 VZ |
72 | #define wxUSE_RADIOBUTTON 1 |
73 | // Define 1 to use radio button control | |
28d52eed JS |
74 | #define wxUSE_RADIOBTN 1 |
75 | // Unfortunately someone introduced this one, too | |
9bd6a503 VZ |
76 | |
77 | #define wxUSE_SCROLLBAR 1 | |
78 | // Define 1 to compile contributed wxScrollBar class | |
28d52eed JS |
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 | |
88 | ||
c50f1fb9 VZ |
89 | // use wxStaticLine class (separator line in the dialog)? |
90 | #define wxUSE_STATLINE 1 | |
91 | ||
28d52eed JS |
92 | #define wxUSE_CHECKLISTBOX 1 |
93 | // Define 1 to compile check listbox | |
94 | ||
95 | #define wxUSE_CHOICE 1 | |
96 | // Define 1 to compile choice | |
97 | ||
789295bf VZ |
98 | #define wxUSE_CARET 1 |
99 | // Define 1 to use wxCaret class | |
9bd6a503 VZ |
100 | #define wxUSE_XPM_IN_MSW 1 |
101 | // Define 1 to support the XPM package in wxBitmap. | |
102 | #define wxUSE_IMAGE_LOADING_IN_MSW 1 | |
103 | // Use dynamic DIB loading/saving code in utils/dib under MSW. | |
104 | #define wxUSE_RESOURCE_LOADING_IN_MSW 1 | |
105 | // Use dynamic icon/cursor loading/saving code | |
106 | // under MSW. | |
107 | #define wxUSE_WX_RESOURCES 1 | |
108 | // Use .wxr resource mechanism (requires PrologIO library) | |
109 | ||
c50f1fb9 VZ |
110 | // support for startup tips (wxShowTip &c) |
111 | #define wxUSE_STARTUP_TIPS 1 | |
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 VZ |
119 | #define wxUSE_DOC_VIEW_ARCHITECTURE 1 |
120 | // Set to 0 to disable document/view architecture | |
121 | #define wxUSE_PRINTING_ARCHITECTURE 1 | |
122 | // Set to 0 to disable print/preview architecture code | |
123 | #define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 1 | |
124 | // Set to 0 to disable PostScript print/preview architecture code | |
125 | // under Windows (just use Windows printing). | |
126 | #define wxUSE_DYNAMIC_CLASSES 1 | |
127 | // If 1, enables provision of run-time type information. | |
128 | // NOW MANDATORY: don't change. | |
129 | #define wxUSE_MEMORY_TRACING 1 | |
130 | // If 1, enables debugging versions of wxObject::new and | |
131 | // wxObject::delete *IF* __WXDEBUG__ is also defined. | |
132 | // WARNING: this code may not work with all architectures, especially | |
133 | // if alignment is an issue. | |
134 | #define wxUSE_DEBUG_CONTEXT 1 | |
135 | // If 1, enables wxDebugContext, for | |
136 | // writing error messages to file, etc. | |
137 | // If __WXDEBUG__ is not defined, will still use | |
138 | // normal memory operators. | |
139 | // It's recommended to set this to 1, | |
140 | // since you may well need to output | |
141 | // an error log in a production | |
142 | // version (or non-debugging beta) | |
143 | #define wxUSE_GLOBAL_MEMORY_OPERATORS 1 | |
144 | // In debug mode, cause new and delete to be redefined globally. | |
145 | // If this causes problems (e.g. link errors), set this to 0. | |
146 | ||
147 | #define wxUSE_DEBUG_NEW_ALWAYS 1 | |
148 | // In debug mode, causes new to be defined to | |
149 | // be WXDEBUG_NEW (see object.h). | |
150 | // If this causes problems (e.g. link errors), set this to 0. | |
151 | // You may need to set this to 0 if using templates (at least | |
152 | // for VC++). | |
153 | ||
154 | #define REMOVE_UNUSED_ARG 1 | |
155 | // Set this to 0 if your compiler can't cope | |
156 | // with omission of prototype parameters. | |
157 | ||
158 | #define wxUSE_ODBC 1 | |
159 | // Define 1 to use ODBC classes | |
160 | ||
161 | #ifndef __MWERKS__ | |
162 | #define wxUSE_IOSTREAMH 1 | |
163 | #else | |
dbda9e86 | 164 | #define wxUSE_IOSTREAMH 1 |
9bd6a503 VZ |
165 | #endif |
166 | // VC++ 4.2 and above allows <iostream> and <iostream.h> | |
167 | // but you can't mix them. Set to 1 for <iostream.h>, | |
168 | // 0 for <iostream> | |
169 | ||
d4ec5d32 JS |
170 | #define wxUSE_STREAMS 1 |
171 | // If enabled (1), compiles wxWindows streams classes | |
172 | ||
173 | #define wxUSE_STD_IOSTREAM 1 | |
174 | // Use standard C++ streams if 1. If 0, use wxWin | |
175 | // streams implementation. | |
176 | ||
9bd6a503 VZ |
177 | #define wxUSE_WXCONFIG 1 |
178 | // if enabled, compiles built-in OS independent wxConfig | |
179 | // class and it's file (any platform) and registry (Win) | |
180 | // based implementations | |
181 | #define wxUSE_THREADS 1 | |
182 | // support for multithreaded applications: if | |
183 | // 1, compile in thread classes (thread.h) | |
184 | // and make the library thread safe | |
185 | #define wxUSE_ZLIB 1 | |
186 | // Use zlib for compression in streams and PNG code | |
187 | #define wxUSE_LIBPNG 1 | |
188 | // Use PNG bitmap code | |
2fff5f08 VS |
189 | #define wxUSE_LIBJPEG 0 |
190 | // Use JPEG bitmap code | |
d4ec5d32 JS |
191 | #define wxUSE_SERIAL 0 |
192 | // Use serialization (requires utils/serialize) | |
3aa0e8fa VZ |
193 | #define wxUSE_DYNLIB_CLASS 0 |
194 | // Compile in wxLibrary class for run-time | |
195 | // DLL loading and function calling | |
9bd6a503 VZ |
196 | #define wxUSE_TOOLTIPS 1 |
197 | // Define to use wxToolTip class and | |
198 | // wxWindow::SetToolTip() method | |
a737331d | 199 | #define wxUSE_SOCKETS 0 |
9a05fd8d | 200 | // Set to 1 to use socket classes |
5526e819 VS |
201 | #define wxUSE_HTML 0 |
202 | // Set to 1 to use wxHTML sub-library | |
9bd6a503 VZ |
203 | |
204 | /* | |
205 | * Finer detail | |
206 | * | |
207 | */ | |
208 | ||
209 | #define wxUSE_APPLE_IEEE 1 | |
210 | // if enabled, the float codec written by Apple | |
211 | // will be used to write, in a portable way, | |
212 | // float on the disk | |
213 | ||
1318fabe VZ |
214 | // use wxFile class - required by i18n code, wxConfig and others - recommended |
215 | #define wxUSE_FILE 1 | |
216 | ||
217 | // use wxTextFile class: requires wxFile, required by wxConfig | |
218 | #define wxUSE_TEXTFILE 1 | |
219 | ||
220 | // i18n support: _() macro, wxLocale class. Requires wxFile | |
221 | #define wxUSE_INTL 1 | |
222 | ||
223 | // wxLogXXX functions - highly recommended | |
224 | #define wxUSE_LOG 1 | |
225 | ||
226 | // wxValidator class | |
227 | #define wxUSE_VALIDATORS 1 | |
228 | ||
229 | // wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar) | |
230 | #define wxUSE_ACCEL 1 | |
231 | ||
232 | // wxSashWindow class | |
233 | #define wxUSE_SASH 1 | |
234 | ||
235 | // text entry dialog and wxGetTextFromUser function | |
236 | #define wxUSE_TEXTDLG 1 | |
237 | ||
238 | // wxToolBar class | |
239 | #define wxUSE_TOOLBAR 1 | |
240 | ||
241 | // wxStatusBar class | |
242 | #define wxUSE_STATUSBAR 1 | |
243 | ||
244 | // progress dialog class for lengthy operations | |
245 | #define wxUSE_PROGRESSDLG 1 | |
246 | ||
247 | // wxDirDlg class for getting a directory name from user | |
248 | #define wxUSE_DIRDLG 1 | |
249 | ||
9bd6a503 VZ |
250 | /* |
251 | * MS Windows/Windows NT | |
252 | * | |
253 | */ | |
254 | ||
3aa0e8fa VZ |
255 | #define wxUSE_OLE 1 |
256 | // drag-and-drop, clipboard, OLE Automation | |
257 | ||
9bd6a503 | 258 | #if defined(__WIN95__) |
1f112209 | 259 | #define wxUSE_CTL3D 0 |
9bd6a503 | 260 | #else |
1f112209 | 261 | #define wxUSE_CTL3D 1 |
9bd6a503 VZ |
262 | // Define 1 to use Microsoft CTL3D library. |
263 | // See note above about using FAFA and CTL3D. | |
264 | #endif | |
265 | ||
266 | #define wxUSE_COMMON_DIALOGS 1 | |
267 | // On rare occasions (e.g. using DJGPP) may want | |
268 | // to omit common dialogs | |
269 | // (e.g. file selector, printer dialog). | |
270 | // Switching this off also switches off | |
271 | // the printing architecture and interactive | |
272 | // wxPrinterDC. | |
273 | #define wxUSE_ITSY_BITSY 1 | |
274 | // Define 1 to use Microsoft's ItsyBitsy | |
275 | // small title bar library, for wxMiniFrame | |
276 | #define wxUSE_BITMAP_MESSAGE 1 | |
277 | // Define 1 to use bitmap messages. | |
278 | #define wxUSE_PORTABLE_FONTS_IN_MSW 0 | |
279 | // Define 1 to use new portable font scheme in Windows | |
280 | // (used by default under X) | |
1f112209 | 281 | #define wxFONT_SIZE_COMPATIBILITY 0 |
9bd6a503 VZ |
282 | // Define 1 for font size to be backward compatible |
283 | // to 1.63 and earlier. 1.64 and later define point | |
284 | // sizes to be compatible with Windows. | |
285 | #define wxUSE_GENERIC_DIALOGS_IN_MSW 1 | |
286 | // Define 1 to use generic dialogs in Windows, even though | |
287 | // they duplicate native common dialog (e.g. wxColourDialog) | |
288 | #define wxUSE_PENWINDOWS 0 | |
289 | // Set to 1 to use PenWindows | |
290 | ||
291 | #define wxUSE_OWNER_DRAWN 1 | |
292 | // Owner-drawn menus and listboxes | |
293 | ||
294 | #define wxUSE_NATIVE_STATUSBAR 1 | |
295 | // Set to 0 to use cross-platform wxStatusBar | |
296 | #define wxUSE_DBWIN32 1 | |
297 | // Use Andrew Tucker's OutputDebugString implementation | |
298 | // (required on Win95 only). See utils.cpp. | |
299 | ||
300 | /* | |
301 | * Any platform | |
302 | * | |
303 | */ | |
304 | ||
305 | #define wxUSE_TYPEDEFS 0 | |
306 | // Use typedefs not classes for wxPoint | |
307 | // and others, to reduce overhead and avoid | |
308 | // MS C7 memory bug. Bounds checker | |
309 | // complains about deallocating | |
310 | // arrays of wxPoints if wxPoint is a class. | |
311 | ||
b86510f8 | 312 | #if (!defined(WIN32) && !defined(__WIN32__)) || defined(__GNUWIN32__) |
9bd6a503 VZ |
313 | // Can't use OLE drag and drop in Windows 3.1 because we don't know how |
314 | // to implement UUIDs | |
315 | // GnuWin32 doesn't have appropriate headers for e.g. IUnknown. | |
316 | #undef wxUSE_DRAG_AND_DROP | |
317 | #define wxUSE_DRAG_AND_DROP 0 | |
318 | #endif | |
319 | ||
320 | // Only WIN32 supports wxStatusBar95 | |
321 | #if !defined(__WIN32__) && wxUSE_NATIVE_STATUSBAR | |
322 | #undef wxUSE_NATIVE_STATUSBAR | |
323 | #define wxUSE_NATIVE_STATUSBAR 0 | |
324 | #endif | |
325 | ||
326 | // Salford C++ doesn't like some of the memory operator definitions | |
327 | #ifdef __SALFORDC__ | |
328 | #undef wxUSE_MEMORY_TRACING | |
329 | #define wxUSE_MEMORY_TRACING 0 | |
330 | ||
331 | #undef wxUSE_GLOBAL_MEMORY_OPERATORS | |
332 | #define wxUSE_GLOBAL_MEMORY_OPERATORS 0 | |
333 | ||
334 | #undef wxUSE_DEBUG_NEW_ALWAYS | |
335 | #define wxUSE_DEBUG_NEW_ALWAYS 0 | |
336 | ||
337 | #undef wxUSE_THREADS | |
338 | #define wxUSE_THREADS 0 | |
339 | ||
340 | #undef wxUSE_DBWIN32 | |
341 | #define wxUSE_DBWIN32 0 | |
342 | ||
343 | #undef wxUSE_OWNER_DRAWN | |
344 | #define wxUSE_OWNER_DRAWN 0 | |
345 | #endif | |
346 | ||
347 | #ifdef __TWIN32__ | |
348 | ||
349 | #undef wxUSE_THREADS | |
350 | #define wxUSE_THREADS 0 | |
351 | ||
352 | #undef wxUSE_DBWIN32 | |
353 | #define wxUSE_DBWIN32 0 | |
354 | ||
355 | #undef wxUSE_ODBC | |
356 | #define wxUSE_ODBC 0 | |
357 | ||
358 | #endif | |
359 | ||
dbdb39b2 JS |
360 | #if defined(__WXMSW__) && defined(__BORLANDC__) |
361 | #undef wxUSE_ODBC | |
362 | #define wxUSE_ODBC 0 | |
363 | #endif | |
364 | ||
9bd6a503 VZ |
365 | #if defined(__WXMSW__) && !defined(__WIN32__) |
366 | ||
367 | #undef wxUSE_THREADS | |
368 | #define wxUSE_THREADS 0 | |
369 | ||
750b78ba JS |
370 | #undef wxUSE_TOOLTIPS |
371 | #define wxUSE_TOOLTIPS 0 | |
372 | ||
9bd6a503 VZ |
373 | #endif |
374 | ||
9bd6a503 VZ |
375 | #endif |
376 | // _WX_SETUP_H_ |