]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/setup0.h
wxDataFormat default ctor doesn't crash for global objects
[wxWidgets.git] / include / wx / msw / setup0.h
CommitLineData
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
73974df1
VZ
15// ----------------------------------------------------------------------------
16// global settings
17// ----------------------------------------------------------------------------
9bd6a503 18
73974df1
VZ
19// define this to 0 when building wxBase library
20#define wxUSE_GUI 1
1f112209 21
9bd6a503
VZ
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
73974df1
VZ
29// ----------------------------------------------------------------------------
30// General features
31// ----------------------------------------------------------------------------
32
33#define wxUSE_CONFIG 1
34 // Use wxConfig, with CreateConfig in wxApp
35
9bd6a503 36#define wxUSE_POSTSCRIPT 0
83b1bfaa 37 // 0 for no PostScript device context
9bd6a503
VZ
38#define wxUSE_AFM_FOR_POSTSCRIPT 0
39 // 1 to use font metric files in GetTextExtent
40#define wxUSE_METAFILE 1
41 // 0 for no Metafile and metafile device context
9bd6a503
VZ
42#define wxUSE_IPC 1
43 // 0 for no interprocess comms
44// Note: wxHELP uses IPC under X so these are interdependent!
45#define wxUSE_HELP 1
46 // 0 for no help facility
47#define wxUSE_RESOURCES 1
48 // 0 for no wxGetResource/wxWriteResource
49#define wxUSE_CONSTRAINTS 1
50 // 0 for no window layout constraint system
51
52#define wxUSE_TIMEDATE 1
53 // 0 for no wxTime/wxDate classes
54
55#define wxUSE_CLIPBOARD 1
56 // 0 for no clipboard functions
1f112209 57
9bd6a503 58#define wxUSE_SPLINES 1
83b1bfaa 59 // 0 for no splines
9bd6a503
VZ
60
61#define wxUSE_DRAG_AND_DROP 1
62 // 0 for no drag and drop
63
83b1bfaa
GRG
64#define wxUSE_TOOLBAR 1
65 // Define 1 to use toolbar classes
66#define wxUSE_BUTTONBAR 1
67 // Define 1 to use buttonbar classes (enhanced toolbar
68 // for MS Windows)
69#define wxUSE_GAUGE 1
70 // Define 1 to use Microsoft's gauge (Windows)
71 // or Bull's gauge (Motif) library (both in contrib).
72#define wxUSE_COMBOBOX 1
73 // Define 1 to use COMBOXBOX control (Windows)
74 // or FWW's ComboBox widget (Motif).
75#define wxUSE_CHOICE 1
76 // Define 1 to use CHOICE
77
78#define wxUSE_RADIOBUTTON 1
79 // Define 1 to use radio button control
80#define wxUSE_RADIOBTN 1
81 // Unfortunately someone introduced this one, too
82
83#define wxUSE_SCROLLBAR 1
84 // Define 1 to compile contributed wxScrollBar class
85
86#define wxUSE_CHECKBOX 1
87 // Define 1 to compile checkbox
88
89#define wxUSE_LISTBOX 1
90 // Define 1 to compile listbox
91
92#define wxUSE_SPINBTN 1
93 // Define 1 to compile spin button
28d52eed 94
c50f1fb9 95// use wxStaticLine class (separator line in the dialog)?
83b1bfaa 96#define wxUSE_STATLINE 1
c50f1fb9 97
28d52eed 98#define wxUSE_CHECKLISTBOX 1
83b1bfaa 99 // Define 1 to compile check listbox
28d52eed 100
83b1bfaa
GRG
101#define wxUSE_CHOICE 1
102 // Define 1 to compile choice
28d52eed 103
83b1bfaa
GRG
104#define wxUSE_CARET 1
105 // Define 1 to use wxCaret class
f85afd4e
MB
106
107#define wxUSE_NEW_GRID 1
108 // Define 1 to use the new wxGrid class
109 // (still under development, define 0 to
110 // use existing wxGrid class)
83b1bfaa
GRG
111#define wxUSE_XPM_IN_MSW 1
112 // Define 1 to support the XPM package in wxBitmap.
9bd6a503 113#define wxUSE_IMAGE_LOADING_IN_MSW 1
83b1bfaa 114 // Use dynamic DIB loading/saving code in utils/dib under MSW.
9bd6a503 115#define wxUSE_RESOURCE_LOADING_IN_MSW 1
83b1bfaa
GRG
116 // Use dynamic icon/cursor loading/saving code
117 // under MSW.
9bd6a503 118#define wxUSE_WX_RESOURCES 1
83b1bfaa 119 // Use .wxr resource mechanism (requires PrologIO library)
9bd6a503 120
c50f1fb9 121// support for startup tips (wxShowTip &c)
83b1bfaa 122#define wxUSE_STARTUP_TIPS 1
c50f1fb9 123
9bd6a503
VZ
124// BC++/Win16 can't cope with the amount of data in resource.cpp
125#if defined(__WIN16__) && defined(__BORLANDC__)
126#undef wxUSE_WX_RESOURCES
127#define wxUSE_WX_RESOURCES 0
128#endif
129
9bd6a503 130#define wxUSE_DOC_VIEW_ARCHITECTURE 1
83b1bfaa
GRG
131 // Set to 0 to disable document/view architecture
132#define wxUSE_MDI_ARCHITECTURE 1
133 // Set to 0 to disable MDI document/view architecture
9bd6a503 134#define wxUSE_PRINTING_ARCHITECTURE 1
83b1bfaa 135 // Set to 0 to disable print/preview architecture code
9bd6a503 136#define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 1
83b1bfaa
GRG
137 // Set to 0 to disable PostScript print/preview architecture code
138 // under Windows (just use Windows printing).
9bd6a503 139#define wxUSE_DYNAMIC_CLASSES 1
83b1bfaa
GRG
140 // If 1, enables provision of run-time type information.
141 // NOW MANDATORY: don't change.
9bd6a503 142#define wxUSE_MEMORY_TRACING 1
83b1bfaa
GRG
143 // If 1, enables debugging versions of wxObject::new and
144 // wxObject::delete *IF* __WXDEBUG__ is also defined.
145 // WARNING: this code may not work with all architectures, especially
146 // if alignment is an issue.
9bd6a503 147#define wxUSE_DEBUG_CONTEXT 1
83b1bfaa
GRG
148 // If 1, enables wxDebugContext, for
149 // writing error messages to file, etc.
150 // If __WXDEBUG__ is not defined, will still use
151 // normal memory operators.
152 // It's recommended to set this to 1,
153 // since you may well need to output
154 // an error log in a production
155 // version (or non-debugging beta)
9bd6a503 156#define wxUSE_GLOBAL_MEMORY_OPERATORS 1
83b1bfaa
GRG
157 // In debug mode, cause new and delete to be redefined globally.
158 // If this causes problems (e.g. link errors), set this to 0.
9bd6a503
VZ
159
160#define wxUSE_DEBUG_NEW_ALWAYS 1
83b1bfaa
GRG
161 // In debug mode, causes new to be defined to
162 // be WXDEBUG_NEW (see object.h).
163 // If this causes problems (e.g. link errors), set this to 0.
164 // You may need to set this to 0 if using templates (at least
165 // for VC++).
9bd6a503 166
83b1bfaa
GRG
167#define REMOVE_UNUSED_ARG 1
168 // Set this to 0 if your compiler can't cope
169 // with omission of prototype parameters.
9bd6a503 170
83b1bfaa
GRG
171#define wxUSE_ODBC 0
172 // Define 1 to use ODBC classes
9bd6a503
VZ
173
174#ifndef __MWERKS__
175#define wxUSE_IOSTREAMH 1
176#else
dbda9e86 177#define wxUSE_IOSTREAMH 1
9bd6a503 178#endif
83b1bfaa
GRG
179 // VC++ 4.2 and above allows <iostream> and <iostream.h>
180 // but you can't mix them. Set to 1 for <iostream.h>,
181 // 0 for <iostream>
9bd6a503 182
d4ec5d32 183#define wxUSE_STREAMS 1
83b1bfaa 184 // If enabled (1), compiles wxWindows streams classes
d4ec5d32 185
83b1bfaa
GRG
186#define wxUSE_STD_IOSTREAM 0
187 // Use standard C++ streams if 1. If 0, use wxWin
188 // streams implementation.
d4ec5d32 189
9bd6a503 190#define wxUSE_WXCONFIG 1
83b1bfaa
GRG
191 // if enabled, compiles built-in OS independent wxConfig
192 // class and it's file (any platform) and registry (Win)
193 // based implementations
9bd6a503 194#define wxUSE_THREADS 1
83b1bfaa
GRG
195 // support for multithreaded applications: if
196 // 1, compile in thread classes (thread.h)
197 // and make the library thread safe
9bd6a503 198#define wxUSE_ZLIB 1
83b1bfaa 199 // Use zlib for compression in streams and PNG code
9bd6a503 200#define wxUSE_LIBPNG 1
83b1bfaa
GRG
201 // Use PNG bitmap/image code
202#define wxUSE_LIBJPEG 1
203 // Use JPEG bitmap/image code
204#define wxUSE_GIF 1
205 // Use GIF bitmap/image code
1044a386 206#define wxUSE_PNM 1
83b1bfaa 207 // Use PNM bitmap/image code
1044a386 208#define wxUSE_PCX 1
83b1bfaa 209 // Use PCX bitmap/image code
d4ec5d32 210#define wxUSE_SERIAL 0
83b1bfaa 211 // Use serialization (requires utils/serialize)
3aa0e8fa 212#define wxUSE_DYNLIB_CLASS 0
83b1bfaa
GRG
213 // Compile in wxLibrary class for run-time
214 // DLL loading and function calling
9bd6a503 215#define wxUSE_TOOLTIPS 1
83b1bfaa
GRG
216 // Define to use wxToolTip class and
217 // wxWindow::SetToolTip() method
218#define wxUSE_SOCKETS 1
219 // Set to 1 to use socket classes
5526e819 220#define wxUSE_HTML 0
83b1bfaa 221 // Set to 1 to use wxHTML sub-library
d78b3d64 222#define wxUSE_FS_ZIP 0
83b1bfaa 223#define wxUSE_FS_INET 0 // Set to 1 to enable virtual file systems
d78b3d64
VS
224
225#define wxUSE_BUSYINFO 0
83b1bfaa
GRG
226 // wxBusyInfo displays window with message
227 // when app is busy. Works in same way as
228 // wxBusyCursor
a8b96c3d 229#define wxUSE_ZIPSTREAM 0
83b1bfaa 230 // input stream for reading from zip archives
9bd6a503
VZ
231
232/*
233 * Finer detail
234 *
235 */
236
237#define wxUSE_APPLE_IEEE 1
238 // if enabled, the float codec written by Apple
239 // will be used to write, in a portable way,
240 // float on the disk
241
1318fabe
VZ
242// use wxFile class - required by i18n code, wxConfig and others - recommended
243#define wxUSE_FILE 1
244
245// use wxTextFile class: requires wxFile, required by wxConfig
246#define wxUSE_TEXTFILE 1
247
248// i18n support: _() macro, wxLocale class. Requires wxFile
249#define wxUSE_INTL 1
250
251// wxLogXXX functions - highly recommended
83b1bfaa 252#define wxUSE_LOG 1
1318fabe
VZ
253
254// wxValidator class
255#define wxUSE_VALIDATORS 1
256
257// wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar)
258#define wxUSE_ACCEL 1
259
260// wxSashWindow class
261#define wxUSE_SASH 1
262
263// text entry dialog and wxGetTextFromUser function
264#define wxUSE_TEXTDLG 1
265
266// wxToolBar class
267#define wxUSE_TOOLBAR 1
268
269// wxStatusBar class
270#define wxUSE_STATUSBAR 1
271
272// progress dialog class for lengthy operations
273#define wxUSE_PROGRESSDLG 1
274
275// wxDirDlg class for getting a directory name from user
276#define wxUSE_DIRDLG 1
277
9bd6a503
VZ
278/*
279 * MS Windows/Windows NT
280 *
281 */
282
3aa0e8fa
VZ
283#define wxUSE_OLE 1
284 // drag-and-drop, clipboard, OLE Automation
285
9bd6a503 286#if defined(__WIN95__)
1f112209 287#define wxUSE_CTL3D 0
9bd6a503 288#else
1f112209 289#define wxUSE_CTL3D 1
83b1bfaa
GRG
290 // Define 1 to use Microsoft CTL3D library.
291 // See note above about using FAFA and CTL3D.
9bd6a503
VZ
292#endif
293
294#define wxUSE_COMMON_DIALOGS 1
83b1bfaa
GRG
295 // On rare occasions (e.g. using DJGPP) may want
296 // to omit common dialogs
297 // (e.g. file selector, printer dialog).
298 // Switching this off also switches off
299 // the printing architecture and interactive
300 // wxPrinterDC.
9bd6a503 301#define wxUSE_ITSY_BITSY 1
83b1bfaa
GRG
302 // Define 1 to use Microsoft's ItsyBitsy
303 // small title bar library, for wxMiniFrame
9bd6a503 304#define wxUSE_BITMAP_MESSAGE 1
83b1bfaa 305 // Define 1 to use bitmap messages.
9bd6a503 306#define wxUSE_PORTABLE_FONTS_IN_MSW 0
83b1bfaa
GRG
307 // Define 1 to use new portable font scheme in Windows
308 // (used by default under X)
1f112209 309#define wxFONT_SIZE_COMPATIBILITY 0
83b1bfaa
GRG
310 // Define 1 for font size to be backward compatible
311 // to 1.63 and earlier. 1.64 and later define point
312 // sizes to be compatible with Windows.
9bd6a503 313#define wxUSE_GENERIC_DIALOGS_IN_MSW 1
83b1bfaa
GRG
314 // Define 1 to use generic dialogs in Windows, even though
315 // they duplicate native common dialog (e.g. wxColourDialog)
9bd6a503 316#define wxUSE_PENWINDOWS 0
83b1bfaa 317 // Set to 1 to use PenWindows
9bd6a503
VZ
318
319#define wxUSE_OWNER_DRAWN 1
83b1bfaa 320 // Owner-drawn menus and listboxes
9bd6a503
VZ
321
322#define wxUSE_NATIVE_STATUSBAR 1
83b1bfaa 323 // Set to 0 to use cross-platform wxStatusBar
9bd6a503 324#define wxUSE_DBWIN32 1
83b1bfaa
GRG
325 // Use Andrew Tucker's OutputDebugString implementation
326 // (required on Win95 only). See utils.cpp.
9bd6a503
VZ
327
328/*
329 * Any platform
330 *
331 */
332
333#define wxUSE_TYPEDEFS 0
83b1bfaa
GRG
334 // Use typedefs not classes for wxPoint
335 // and others, to reduce overhead and avoid
336 // MS C7 memory bug. Bounds checker
337 // complains about deallocating
338 // arrays of wxPoints if wxPoint is a class.
9bd6a503 339
a6f989f3 340#if (!defined(WIN32) && !defined(__WIN32__)) || (defined(__GNUWIN32__)&&!defined(wxUSE_NORLANDER_HEADERS))
9bd6a503
VZ
341// Can't use OLE drag and drop in Windows 3.1 because we don't know how
342// to implement UUIDs
343// GnuWin32 doesn't have appropriate headers for e.g. IUnknown.
344#undef wxUSE_DRAG_AND_DROP
345#define wxUSE_DRAG_AND_DROP 0
346#endif
347
348// Only WIN32 supports wxStatusBar95
349#if !defined(__WIN32__) && wxUSE_NATIVE_STATUSBAR
350#undef wxUSE_NATIVE_STATUSBAR
351#define wxUSE_NATIVE_STATUSBAR 0
352#endif
353
354// Salford C++ doesn't like some of the memory operator definitions
355#ifdef __SALFORDC__
356#undef wxUSE_MEMORY_TRACING
357#define wxUSE_MEMORY_TRACING 0
358
359#undef wxUSE_GLOBAL_MEMORY_OPERATORS
360#define wxUSE_GLOBAL_MEMORY_OPERATORS 0
361
362#undef wxUSE_DEBUG_NEW_ALWAYS
363#define wxUSE_DEBUG_NEW_ALWAYS 0
364
365#undef wxUSE_THREADS
366#define wxUSE_THREADS 0
367
368#undef wxUSE_DBWIN32
369#define wxUSE_DBWIN32 0
370
371#undef wxUSE_OWNER_DRAWN
372#define wxUSE_OWNER_DRAWN 0
373#endif
374
375#ifdef __TWIN32__
376
377#undef wxUSE_THREADS
378#define wxUSE_THREADS 0
379
380#undef wxUSE_DBWIN32
381#define wxUSE_DBWIN32 0
382
383#undef wxUSE_ODBC
384#define wxUSE_ODBC 0
385
386#endif
387
dbdb39b2
JS
388#if defined(__WXMSW__) && defined(__BORLANDC__)
389#undef wxUSE_ODBC
390#define wxUSE_ODBC 0
391#endif
392
9bd6a503
VZ
393#if defined(__WXMSW__) && !defined(__WIN32__)
394
395#undef wxUSE_THREADS
396#define wxUSE_THREADS 0
397
750b78ba
JS
398#undef wxUSE_TOOLTIPS
399#define wxUSE_TOOLTIPS 0
400
1044a386
JS
401#undef wxUSE_LIBPNG
402#define wxUSE_LIBPNG 0
403
404#undef wxUSE_LIBJPEG
405#define wxUSE_LIBJPEG 0
406
83b1bfaa
GRG
407#undef wxUSE_GIF
408#define wxUSE_GIF 0
1044a386
JS
409
410#undef wxUSE_PNM
411#define wxUSE_PNM 0
412
413#undef wxUSE_PCX
414#define wxUSE_PCX 0
415
9bd6a503
VZ
416#endif
417
9bd6a503
VZ
418#endif
419 // _WX_SETUP_H_