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