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