]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
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 | ||
27476f73 DW |
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 | // ---------------------------------------------------------------------------- | |
0e320a79 | 32 | |
d90895ac DW |
33 | #define wxUSE_NET_API 1 // Utilize OS/2's UPM netapi's |
34 | ||
0e320a79 DW |
35 | #define wxUSE_CONFIG 1 |
36 | // Use wxConfig, with CreateConfig in wxApp | |
37 | ||
38 | #define WXWIN_COMPATIBILITY 0 | |
39 | // Compatibility with 1.68 API. | |
40 | // Level 0: no backward compatibility, all new features | |
41 | // Level 1: Some compatibility. In fact | |
42 | // the compatibility code is now very minimal so there | |
43 | // is little advantage to setting it to 1. | |
44 | ||
45 | #define wxUSE_POSTSCRIPT 1 | |
46 | // 0 for no PostScript device context | |
47 | #define wxUSE_AFM_FOR_POSTSCRIPT 1 | |
48 | // 1 to use font metric files in GetTextExtent | |
49 | #define wxUSE_METAFILE 1 | |
50 | // 0 for no Metafile and metafile device context | |
51 | #define wxUSE_IPC 1 | |
52 | // 0 for no interprocess comms | |
53 | // Note: wxHELP uses IPC under X so these are interdependent! | |
54 | #define wxUSE_HELP 1 | |
55 | // 0 for no help facility | |
56 | #define wxUSE_RESOURCES 1 | |
57 | // 0 for no wxGetResource/wxWriteResource | |
58 | #define wxUSE_CONSTRAINTS 1 | |
59 | // 0 for no window layout constraint system | |
60 | ||
61 | #define wxUSE_TIMEDATE 1 | |
62 | // 0 for no wxTime/wxDate classes | |
63 | ||
64 | #define wxUSE_CLIPBOARD 1 | |
65 | // 0 for no clipboard functions | |
66 | ||
67 | #define wxUSE_SPLINES 1 | |
68 | // 0 for no splines | |
69 | ||
70 | #define wxUSE_DRAG_AND_DROP 1 | |
71 | // 0 for no drag and drop | |
72 | ||
73 | #define wxUSE_TOOLBAR 1 | |
74 | // Define 1 to use toolbar classes | |
75 | #define wxUSE_BUTTONBAR 1 | |
76 | // Define 1 to use buttonbar classes (enhanced toolbar | |
77 | // for MS Windows) | |
78 | #define wxUSE_GAUGE 1 | |
79 | // Define 1 to use Microsoft's gauge (Windows) | |
80 | // or Bull's gauge (Motif) library (both in contrib). | |
81 | #define wxUSE_COMBOBOX 1 | |
82 | // Define 1 to use COMBOXBOX control (Windows) | |
83 | // or FWW's ComboBox widget (Motif). | |
84 | #define wxUSE_CHOICE 1 | |
85 | // Define 1 to use CHOICE | |
86 | ||
87 | #define wxUSE_RADIOBUTTON 1 | |
88 | // Define 1 to use radio button control | |
89 | #define wxUSE_RADIOBTN 1 | |
90 | // Unfortunately someone introduced this one, too | |
91 | ||
92 | #define wxUSE_SCROLLBAR 1 | |
93 | // Define 1 to compile contributed wxScrollBar class | |
94 | ||
95 | #define wxUSE_CHECKBOX 1 | |
96 | // Define 1 to compile checkbox | |
97 | ||
98 | #define wxUSE_LISTBOX 1 | |
99 | // Define 1 to compile listbox | |
100 | ||
101 | #define wxUSE_SPINBTN 1 | |
102 | // Define 1 to compile spin button | |
103 | ||
104 | // use wxStaticLine class (separator line in the dialog)? | |
105 | #define wxUSE_STATLINE 1 | |
106 | ||
107 | #define wxUSE_CHECKLISTBOX 1 | |
108 | // Define 1 to compile check listbox | |
109 | ||
110 | #define wxUSE_CHOICE 1 | |
111 | // Define 1 to compile choice | |
112 | ||
113 | #define wxUSE_CARET 1 | |
114 | // Define 1 to use wxCaret class | |
fb46a9a6 | 115 | #define wxUSE_XPM_IN_OS2 1 |
0e320a79 | 116 | // Define 1 to support the XPM package in wxBitmap. |
fb46a9a6 DW |
117 | #define wxUSE_IMAGE_LOADING_IN_OS2 1 |
118 | // Use dynamic DIB loading/saving code in utils/dib under OS2. | |
119 | #define wxUSE_RESOURCE_LOADING_IN_OS2 1 | |
120 | // Use dynamic icon/cursor loading/saving code | |
121 | // under OS2. | |
0e320a79 DW |
122 | #define wxUSE_WX_RESOURCES 1 |
123 | // Use .wxr resource mechanism (requires PrologIO library) | |
124 | ||
125 | // support for startup tips (wxShowTip &c) | |
126 | #define wxUSE_STARTUP_TIPS 1 | |
127 | ||
128 | #define wxUSE_DOC_VIEW_ARCHITECTURE 1 | |
129 | // Set to 0 to disable document/view architecture | |
130 | #define wxUSE_MDI_ARCHITECTURE 1 | |
131 | // Set to 0 to disable MDI document/view architecture | |
132 | #define wxUSE_PRINTING_ARCHITECTURE 1 | |
133 | // Set to 0 to disable print/preview architecture code | |
fb46a9a6 DW |
134 | #define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_OS2 1 |
135 | // Set to 0 to disable PostScript print/preview architecture code | |
136 | // under OS/2 PM (just use PM printing). | |
0e320a79 DW |
137 | #define wxUSE_DYNAMIC_CLASSES 1 |
138 | // If 1, enables provision of run-time type information. | |
139 | // NOW MANDATORY: don't change. | |
140 | #define wxUSE_MEMORY_TRACING 1 | |
141 | // If 1, enables debugging versions of wxObject::new and | |
142 | // wxObject::delete *IF* __WXDEBUG__ is also defined. | |
143 | // WARNING: this code may not work with all architectures, especially | |
144 | // if alignment is an issue. | |
145 | #define wxUSE_DEBUG_CONTEXT 1 | |
146 | // If 1, enables wxDebugContext, for | |
147 | // writing error messages to file, etc. | |
148 | // If __WXDEBUG__ is not defined, will still use | |
149 | // normal memory operators. | |
150 | // It's recommended to set this to 1, | |
151 | // since you may well need to output | |
152 | // an error log in a production | |
153 | // version (or non-debugging beta) | |
154 | #define wxUSE_GLOBAL_MEMORY_OPERATORS 1 | |
155 | // In debug mode, cause new and delete to be redefined globally. | |
156 | // If this causes problems (e.g. link errors), set this to 0. | |
157 | ||
158 | #define wxUSE_DEBUG_NEW_ALWAYS 1 | |
159 | // In debug mode, causes new to be defined to | |
160 | // be WXDEBUG_NEW (see object.h). | |
161 | // If this causes problems (e.g. link errors), set this to 0. | |
162 | // You may need to set this to 0 if using templates (at least | |
163 | // for VC++). | |
164 | ||
165 | #define REMOVE_UNUSED_ARG 1 | |
166 | // Set this to 0 if your compiler can't cope | |
167 | // with omission of prototype parameters. | |
168 | ||
169 | #define wxUSE_ODBC 0 | |
170 | // Define 1 to use ODBC classes | |
171 | ||
172 | #define wxUSE_IOSTREAMH 1 | |
173 | // VC++ 4.2 and above allows <iostream> and <iostream.h> | |
174 | // but you can't mix them. Set to 1 for <iostream.h>, | |
175 | // 0 for <iostream> | |
176 | ||
177 | #define wxUSE_STREAMS 1 | |
178 | // If enabled (1), compiles wxWindows streams classes | |
179 | ||
180 | #define wxUSE_STD_IOSTREAM 1 | |
181 | // Use standard C++ streams if 1. If 0, use wxWin | |
182 | // streams implementation. | |
183 | ||
184 | #define wxUSE_WXCONFIG 1 | |
185 | // if enabled, compiles built-in OS independent wxConfig | |
186 | // class and it's file (any platform) and registry (Win) | |
187 | // based implementations | |
188 | #define wxUSE_THREADS 1 | |
189 | // support for multithreaded applications: if | |
190 | // 1, compile in thread classes (thread.h) | |
191 | // and make the library thread safe | |
192 | #define wxUSE_ZLIB 1 | |
193 | // Use zlib for compression in streams and PNG code | |
194 | #define wxUSE_LIBPNG 1 | |
195 | // Use PNG bitmap code | |
196 | #define wxUSE_LIBJPEG 1 | |
197 | // Use JPEG bitmap code | |
198 | #define wxUSE_SERIAL 1 | |
199 | // Use serialization (requires utils/serialize) | |
200 | #define wxUSE_DYNLIB_CLASS 1 | |
201 | // Compile in wxLibrary class for run-time | |
202 | // DLL loading and function calling | |
203 | #define wxUSE_TOOLTIPS 1 | |
204 | // Define to use wxToolTip class and | |
205 | // wxWindow::SetToolTip() method | |
206 | #define wxUSE_SOCKETS 1 | |
207 | // Set to 1 to use socket classes | |
208 | #define wxUSE_HTML 1 | |
209 | // Set to 1 to use wxHTML sub-library | |
210 | #define wxUSE_FS_ZIP 1 | |
211 | #define wxUSE_FS_INET 1 // Set to 1 to enable virtual file systems | |
212 | ||
213 | #define wxUSE_BUSYINFO 1 | |
214 | // wxBusyInfo displays window with message | |
215 | // when app is busy. Works in same way as | |
216 | // wxBusyCursor | |
217 | #define wxUSE_ZIPSTREAM 1 | |
218 | // input stream for reading from zip archives | |
219 | ||
220 | /* | |
221 | * Finer detail | |
222 | * | |
223 | */ | |
224 | ||
225 | #define wxUSE_APPLE_IEEE 1 | |
226 | // if enabled, the float codec written by Apple | |
227 | // will be used to write, in a portable way, | |
228 | // float on the disk | |
229 | ||
230 | // use wxFile class - required by i18n code, wxConfig and others - recommended | |
231 | #define wxUSE_FILE 1 | |
232 | ||
233 | // use wxTextFile class: requires wxFile, required by wxConfig | |
234 | #define wxUSE_TEXTFILE 1 | |
235 | ||
236 | // i18n support: _() macro, wxLocale class. Requires wxFile | |
237 | #define wxUSE_INTL 1 | |
238 | ||
239 | // wxLogXXX functions - highly recommended | |
240 | #define wxUSE_LOG 1 | |
241 | ||
242 | // wxValidator class | |
243 | #define wxUSE_VALIDATORS 1 | |
244 | ||
245 | // wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar) | |
246 | #define wxUSE_ACCEL 1 | |
247 | ||
248 | // wxSashWindow class | |
249 | #define wxUSE_SASH 1 | |
250 | ||
251 | // text entry dialog and wxGetTextFromUser function | |
252 | #define wxUSE_TEXTDLG 1 | |
253 | ||
254 | // wxToolBar class | |
255 | #define wxUSE_TOOLBAR 1 | |
256 | ||
257 | // wxStatusBar class | |
258 | #define wxUSE_STATUSBAR 1 | |
259 | ||
260 | // progress dialog class for lengthy operations | |
261 | #define wxUSE_PROGRESSDLG 1 | |
262 | ||
263 | // wxDirDlg class for getting a directory name from user | |
264 | #define wxUSE_DIRDLG 1 | |
265 | ||
266 | #define wxUSE_OWNER_DRAWN 1 | |
267 | // Owner-drawn menus and listboxes | |
268 | ||
269 | /* | |
270 | * Any platform | |
271 | * | |
272 | */ | |
273 | ||
274 | #define wxUSE_TYPEDEFS 0 | |
275 | // Use typedefs not classes for wxPoint | |
276 | // and others, to reduce overhead and avoid | |
277 | // MS C7 memory bug. Bounds checker | |
278 | // complains about deallocating | |
279 | // arrays of wxPoints if wxPoint is a class. | |
280 | ||
281 | #define wxUSE_DRAG_AND_DROP 1 | |
282 | ||
fb46a9a6 DW |
283 | #define wxUSE_PORTABLE_FONTS_IN_OS2 0 |
284 | // Define 1 to use new portable font scheme in Windows | |
285 | // (used by default under X) | |
286 | ||
287 | #define wxUSE_GENERIC_DIALOGS_IN_OS2 0 | |
288 | // Define 1 to use generic dialogs in Windows, even though | |
289 | // they duplicate native common dialog (e.g. wxColourDialog) | |
0e320a79 DW |
290 | #endif |
291 | // _WX_SETUP_H_ |