cleaning up image mess for os/2
[wxWidgets.git] / include / wx / os2 / setup0.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
19 // define this to 1 if you want icons to behave as bitmaps
20 #define wxICON_IS_BITMAP 0
21
22 // define this to 0 when building wxBase library
23 #define wxUSE_GUI 1
24
25 // ----------------------------------------------------------------------------
26 // General features
27 // ----------------------------------------------------------------------------
28
29 #define wxUSE_PCX 1 // Utilize PCX images
30
31 #define wxUSE_PNM 1 // Utilize PNM images
32
33 #define wxUSE_GIF 1 // Utilize GIF images
34
35 #if defined(__VISAGECPP__) && (__IBMCPP__ < 400 || __IBMC__ < 400 )
36 #define wxUSE_LONG_LONG 1
37 #endif
38
39 #define wxUSE_NET_API 1 // Utilize OS/2's UPM netapi's
40
41 #define wxUSE_CONFIG 1
42 // Use wxConfig, with CreateConfig in wxApp
43
44 #define wxUSE_POSTSCRIPT 1
45 // 0 for no PostScript device context
46 #define wxUSE_AFM_FOR_POSTSCRIPT 1
47 // 1 to use font metric files in GetTextExtent
48 #define wxUSE_METAFILE 1
49 // 0 for no Metafile and metafile device context
50 #define wxUSE_IPC 1
51 // 0 for no interprocess comms
52 // Note: wxHELP uses IPC under X so these are interdependent!
53 #define wxUSE_HELP 1
54 // 0 for no help facility
55 #define wxUSE_RESOURCES 1
56 // 0 for no wxGetResource/wxWriteResource
57 #define wxUSE_CONSTRAINTS 1
58 // 0 for no window layout constraint system
59
60 #define wxUSE_TIMEDATE 1
61 // 0 for no wxTime/wxDate classes
62
63 #define wxUSE_CLIPBOARD 1
64 // 0 for no clipboard functions
65
66 #define wxUSE_SPLINES 1
67 // 0 for no splines
68
69 #define wxUSE_DRAG_AND_DROP 1
70 // 0 for no drag and drop
71
72 #define wxUSE_BUTTONBAR 1
73 // Define 1 to use buttonbar classes (enhanced toolbar
74 // for MS Windows)
75 #define wxUSE_GAUGE 1
76 // Define 1 to use Microsoft's gauge (Windows)
77 // or Bull's gauge (Motif) library (both in contrib).
78 #define wxUSE_COMBOBOX 1
79 // Define 1 to use COMBOXBOX control (Windows)
80 // or FWW's ComboBox widget (Motif).
81 #define wxUSE_CHOICE 1
82 // Define 1 to use CHOICE
83
84 #define wxUSE_RADIOBUTTON 1
85 // Define 1 to use radio button control
86 #define wxUSE_RADIOBTN 1
87 // Unfortunately someone introduced this one, too
88
89 #define wxUSE_SCROLLBAR 1
90 // Define 1 to compile contributed wxScrollBar class
91
92 #define wxUSE_CHECKBOX 1
93 // Define 1 to compile checkbox
94
95 #define wxUSE_LISTBOX 1
96 // Define 1 to compile listbox
97
98 #define wxUSE_SPINBTN 1
99 // Define 1 to compile spin button
100
101 // use wxStaticLine class (separator line in the dialog)?
102 #define wxUSE_STATLINE 1
103
104 #define wxUSE_CHECKLISTBOX 1
105 // Define 1 to compile check listbox
106 #define wxUSE_CARET 1
107 // Define 1 to use wxCaret class
108 #define wxUSE_XPM_IN_OS2 1
109 // Define 1 to support the XPM package in wxBitmap.
110 #define wxUSE_IMAGE_LOADING_IN_OS2 1
111 // Use dynamic DIB loading/saving code in utils/dib under OS2.
112 #define wxUSE_RESOURCE_LOADING_IN_OS2 1
113 // Use dynamic icon/cursor loading/saving code
114 // under OS2.
115 #define wxUSE_WX_RESOURCES 1
116 // Use .wxr resource mechanism (requires PrologIO library)
117
118 // support for startup tips (wxShowTip &c)
119 #define wxUSE_STARTUP_TIPS 1
120
121 #define wxUSE_DOC_VIEW_ARCHITECTURE 1
122 // Set to 0 to disable document/view architecture
123 #define wxUSE_MDI_ARCHITECTURE 1
124 // Set to 0 to disable MDI document/view architecture
125 #define wxUSE_PRINTING_ARCHITECTURE 1
126 // Set to 0 to disable print/preview architecture code
127 #define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_OS2 1
128 // Set to 0 to disable PostScript print/preview architecture code
129 // under OS/2 PM (just use PM printing).
130 #define wxUSE_DYNAMIC_CLASSES 1
131 // If 1, enables provision of run-time type information.
132 // NOW MANDATORY: don't change.
133 #define wxUSE_MEMORY_TRACING 1
134 // If 1, enables debugging versions of wxObject::new and
135 // wxObject::delete *IF* __WXDEBUG__ is also defined.
136 // WARNING: this code may not work with all architectures, especially
137 // if alignment is an issue.
138 #define wxUSE_DEBUG_CONTEXT 1
139 // If 1, enables wxDebugContext, for
140 // writing error messages to file, etc.
141 // If __WXDEBUG__ is not defined, will still use
142 // normal memory operators.
143 // It's recommended to set this to 1,
144 // since you may well need to output
145 // an error log in a production
146 // version (or non-debugging beta)
147 #define wxUSE_GLOBAL_MEMORY_OPERATORS 1
148 // In debug mode, cause new and delete to be redefined globally.
149 // If this causes problems (e.g. link errors), set this to 0.
150
151 #define wxUSE_DEBUG_NEW_ALWAYS 1
152 // In debug mode, causes new to be defined to
153 // be WXDEBUG_NEW (see object.h).
154 // If this causes problems (e.g. link errors), set this to 0.
155 // You may need to set this to 0 if using templates (at least
156 // for VC++).
157
158 #define REMOVE_UNUSED_ARG 1
159 // Set this to 0 if your compiler can't cope
160 // with omission of prototype parameters.
161
162 #define wxUSE_ODBC 0
163 // Define 1 to use ODBC classes
164
165 #define wxODBC_FWD_ONLY_CURSORS 1
166 // Some databases/ODBC drivers only allow forward scrolling cursors.
167 // Unless you specifically want to use backward scrolling
168 // cursors, and you know that all of the databases/ODBC drivers
169 // that you will use these odbc classes with allow backward
170 // scrolling cursors, this setting should remain set to 1
171 // for maximum database/driver compatibilty
172
173 #define wxUSE_IOSTREAMH 1
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 1
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 code
197 #define wxUSE_LIBJPEG 1
198 // Use JPEG bitmap code
199 #define wxUSE_SERIAL 1
200 // Use serialization (requires utils/serialize)
201 #define wxUSE_DYNLIB_CLASS 1
202 // Compile in wxLibrary class for run-time
203 // DLL loading and function calling
204 #define wxUSE_TOOLTIPS 1
205 // Define to use wxToolTip class and
206 // wxWindow::SetToolTip() method
207 #define wxUSE_SOCKETS 1
208 // Set to 1 to use socket classes
209 #define wxUSE_HTML 1
210 // Set to 1 to use wxHTML sub-library
211 #define wxUSE_FS_ZIP 1
212 #define wxUSE_FS_INET 1 // Set to 1 to enable virtual file systems
213
214 #define wxUSE_BUSYINFO 1
215 // wxBusyInfo displays window with message
216 // when app is busy. Works in same way as
217 // wxBusyCursor
218 #define wxUSE_ZIPSTREAM 1
219 // input stream for reading from zip archives
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
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
241 #define wxUSE_LOG 1
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 #define wxUSE_TOOLBAR_NATIVE 1
258
259 // wxStatusBar class
260 #define wxUSE_STATUSBAR 1
261
262 // progress dialog class for lengthy operations
263 #define wxUSE_PROGRESSDLG 1
264
265 // wxDirDlg class for getting a directory name from user
266 #define wxUSE_DIRDLG 1
267
268 #define wxUSE_OWNER_DRAWN 1
269 // Owner-drawn menus and listboxes
270
271 /*
272 * Any platform
273 *
274 */
275
276 #define wxUSE_TYPEDEFS 0
277 // Use typedefs not classes for wxPoint
278 // and others, to reduce overhead and avoid
279 // MS C7 memory bug. Bounds checker
280 // complains about deallocating
281 // arrays of wxPoints if wxPoint is a class.
282
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)
290 #endif
291 // _WX_SETUP_H_