]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/setup.h
Fixed VC++ compile error in mstream; formatted window.cpp.
[wxWidgets.git] / include / wx / msw / setup.h
CommitLineData
2bda0e17
KB
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$
bbcdf8bc
JS
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_SETUP_H_
13#define _WX_SETUP_H_
2bda0e17
KB
14
15/*
16 * General features
17 *
18 */
19
47d67540 20#define wxUSE_CONFIG 1
6b0eb19f 21 // Use wxConfig, with CreateConfig in wxApp
bbcdf8bc 22#define _WX_GOODCOMPILER__
145aa406
JS
23 // gcc can have problems, but Windows compilers
24 // are generally OK.
2bda0e17
KB
25#define WXWIN_COMPATIBILITY 1
26 // Compatibility with 1.66 API.
27 // Level 0: no backward compatibility, all new features
28 // Level 1: wxDC, OnSize (etc.) compatibility, but
29 // some new features such as event tables
30
47d67540 31#define wxUSE_AUTOTRANS 1
2bda0e17 32 // Define wxTString
47d67540 33#define wxUSE_POSTSCRIPT 1
2bda0e17 34 // 0 for no PostScript device context
47d67540 35#define wxUSE_AFM_FOR_POSTSCRIPT 0
2bda0e17 36 // 1 to use font metric files in GetTextExtent
47d67540 37#define wxUSE_METAFILE 1
2bda0e17 38 // 0 for no Metafile and metafile device context
47d67540 39#define wxUSE_FORM 0
2bda0e17 40 // 0 for no wxForm
47d67540 41#define wxUSE_IPC 1
2bda0e17
KB
42 // 0 for no interprocess comms
43// Note: wxHELP uses IPC under X so these are interdependent!
47d67540 44#define wxUSE_HELP 1
2bda0e17 45 // 0 for no help facility
47d67540 46#define wxUSE_RESOURCES 1
2bda0e17 47 // 0 for no wxGetResource/wxWriteResource
47d67540 48#define wxUSE_CONSTRAINTS 1
2bda0e17
KB
49 // 0 for no window layout constraint system
50
47d67540 51#define wxUSE_TIMEDATE 1
2bda0e17
KB
52 // 0 for no wxTime/wxDate classes
53
47d67540 54#define wxUSE_CLIPBOARD 1
2bda0e17 55 // 0 for no clipboard functions
47d67540 56#define wxUSE_SPLINES 1
2bda0e17 57 // 0 for no splines
47d67540 58#define wxUSE_XFIG_SPLINE_CODE 1
2bda0e17
KB
59 // 1 for XFIG spline code, 0 for AIAI spline code.
60// AIAI spline code is slower, but freer of copyright issues.
61
47d67540 62#define wxUSE_DRAG_AND_DROP 1
2bda0e17
KB
63 // 0 for no drag and drop
64
47d67540 65#define wxUSE_TOOLBAR 1
2bda0e17 66 // Define 1 to use toolbar classes
47d67540 67#define wxUSE_BUTTONBAR 1
2bda0e17
KB
68 // Define 1 to use buttonbar classes (enhanced toolbar
69 // for MS Windows)
47d67540 70#define wxUSE_GAUGE 1
2bda0e17
KB
71 // Define 1 to use Microsoft's gauge (Windows)
72 // or Bull's gauge (Motif) library (both in contrib).
47d67540 73#define wxUSE_COMBOBOX 1
2bda0e17
KB
74 // Define 1 to use COMBOXBOX control (Windows)
75 // or FWW's ComboBox widget (Motif).
47d67540 76#define wxUSE_RADIOBUTTON 1
2bda0e17
KB
77 // Define 1 to use radio button control
78
47d67540 79#define wxUSE_SCROLLBAR 1
2bda0e17 80 // Define 1 to compile contributed wxScrollBar class
47d67540
VZ
81#define wxUSE_XPM_IN_X 1
82#define wxUSE_XPM_IN_MSW 0
2bda0e17
KB
83 // Define 1 to support the XPM package in wxBitmap,
84 // separated by platform. If 1, you must link in
85 // the XPM library to your applications.
47d67540 86#define wxUSE_IMAGE_LOADING_IN_X 1
2bda0e17
KB
87 // Use dynamic icon/bitmap loading/saving code in utils/image under X.
88 // If this is 1, you will need to link your applications
89 // with image_X.lib. where X is motif, ol, or hp.
90
47d67540 91#define wxUSE_IMAGE_LOADING_IN_MSW 1
2bda0e17 92 // Use dynamic DIB loading/saving code in utils/dib under MSW.
47d67540 93#define wxUSE_RESOURCE_LOADING_IN_MSW 0
2bda0e17
KB
94 // Use dynamic icon/cursor loading/saving code
95 // under MSW.
47d67540 96#define wxUSE_WX_RESOURCES 1
2bda0e17
KB
97 // Use .wxr resource mechanism (requires PrologIO library)
98
47d67540 99#define wxUSE_GNU_WXSTRING 0
2bda0e17
KB
100 // Define 1 to use modified GNU wxString class
101 // from (stefan.hammes@urz.uni-heidelberg.de) in contrib\string
102 // TODO: why does this give an unresolved 'wxRegex::Search'
103 // symbol if 1?
104
105#define HAVE_SOCKET 1
106 // Use WinSock if 1
47d67540 107#define wxUSE_DOC_VIEW_ARCHITECTURE 1
2bda0e17 108 // Set to 0 to disable document/view architecture
47d67540 109#define wxUSE_PRINTING_ARCHITECTURE 1
2bda0e17 110 // Set to 0 to disable print/preview architecture code
47d67540 111#define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 1
2bda0e17
KB
112 // Set to 0 to disable PostScript print/preview architecture code
113 // under Windows (just use Windows printing).
47d67540 114#define wxUSE_DYNAMIC_CLASSES 1
2bda0e17
KB
115 // If 1, enables provision of run-time type information.
116 // NOW MANDATORY: don't change.
47d67540 117#define wxUSE_MEMORY_TRACING 1
2bda0e17 118 // If 1, enables debugging versions of wxObject::new and
b2aef89b 119 // wxObject::delete *IF* WXDEBUG is also defined.
2bda0e17
KB
120 // WARNING: this code may not work with all architectures, especially
121 // if alignment is an issue.
47d67540 122#define wxUSE_DEBUG_CONTEXT 1
2bda0e17
KB
123 // If 1, enables wxDebugContext, for
124 // writing error messages to file, etc.
b2aef89b 125 // If WXDEBUG is not defined, will still use
2bda0e17
KB
126 // normal memory operators.
127 // It's recommended to set this to 1,
128 // since you may well need to output
129 // an error log in a production
130 // version (or non-debugging beta)
47d67540 131#define wxUSE_GLOBAL_MEMORY_OPERATORS 1
2bda0e17
KB
132 // In debug mode, cause new and delete to be redefined globally.
133 // If this causes problems (e.g. link errors), set this to 0.
134
135#define REMOVE_UNUSED_ARG 1
136 // Set this to 0 if your compiler can't cope
137 // with omission of prototype parameters.
138
47d67540 139#define wxUSE_C_MAIN 0
2bda0e17
KB
140 // Set to 1 to use main.c instead of main.cpp (UNIX only)
141
47d67540 142#define wxUSE_ODBC 1
2bda0e17
KB
143 // Define 1 to use ODBC classes
144
47d67540 145#define wxUSE_IOSTREAMH 1
2bda0e17
KB
146 // VC++ 4.2 and above allows <iostream> and <iostream.h>
147 // but you can't mix them. Set to 1 for <iostream.h>,
148 // 0 for <iostream>
149
47d67540 150#define wxUSE_WXCONFIG 1
3bd29723
VZ
151 // if enabled, compiles built-in OS independent wxConfig
152 // class and it's file (any platform) and registry (Win)
153 // based implementations
2bda0e17
KB
154/*
155 * Finer detail
156 *
157 */
158
47d67540 159#define wxUSE_APPLE_IEEE 1
cf447356
GL
160 // if enabled, the float codec written by Apple
161 // will be used to write, in a portable way,
162 // float on the disk
163
2bda0e17
KB
164/*
165 * MS Windows/Windows NT
166 *
167 */
168
169#if defined(__WIN95__)
170#define CTL3D 0
171#else
172#define CTL3D 1
173 // Define 1 to use Microsoft CTL3D library.
174 // See note above about using FAFA and CTL3D.
175#endif
176
47d67540 177#define wxUSE_COMMON_DIALOGS 1
2bda0e17
KB
178 // On rare occasions (e.g. using DJGPP) may want
179 // to omit common dialogs
180 // (e.g. file selector, printer dialog).
181 // Switching this off also switches off
182 // the printing architecture and interactive
183 // wxPrinterDC.
47d67540 184#define wxUSE_ITSY_BITSY 1
2bda0e17 185 // Define 1 to use Microsoft's ItsyBitsy
f7387de5 186 // small title bar library, for wxMiniFrame
47d67540 187#define wxUSE_BITMAP_MESSAGE 1
2bda0e17 188 // Define 1 to use bitmap messages.
47d67540 189#define wxUSE_PORTABLE_FONTS_IN_MSW 0
2bda0e17
KB
190 // Define 1 to use new portable font scheme in Windows
191 // (used by default under X)
192#define FONT_SIZE_COMPATIBILITY 0
193 // Define 1 for font size to be backward compatible
194 // to 1.63 and earlier. 1.64 and later define point
195 // sizes to be compatible with Windows.
47d67540 196#define wxUSE_GENERIC_DIALOGS_IN_MSW 1
2bda0e17
KB
197 // Define 1 to use generic dialogs in Windows, even though
198 // they duplicate native common dialog (e.g. wxColourDialog)
47d67540 199#define wxUSE_PENWINDOWS 0
2bda0e17
KB
200 // Set to 1 to use PenWindows
201
47d67540 202#define wxUSE_OWNER_DRAWN 0
2bda0e17
KB
203 // Owner-drawn menus and listboxes
204
47d67540 205#define wxUSE_NATIVE_STATUSBAR 1
2bda0e17
KB
206 // Set to 0 to use cross-platform wxStatusBar
207
208/*
209 * Any platform
210 *
211 */
212
47d67540 213#define wxUSE_TYPEDEFS 0
2bda0e17
KB
214 // Use typedefs not classes for wxPoint
215 // and others, to reduce overhead and avoid
216 // MS C7 memory bug. Bounds checker
217 // complains about deallocating
218 // arrays of wxPoints if wxPoint is a class.
219
220#if (!defined(WIN32) && !defined(__WIN32__)) || defined(__GNUWIN32__) || defined(__BORLANDC__)
221// Can't use OLE drag and drop in Windows 3.1 because we don't know how
222// to implement UUIDs
223// GnuWin32 doesn't have appropriate headers for e.g. IUnknown.
47d67540
VZ
224#undef wxUSE_DRAG_AND_DROP
225#define wxUSE_DRAG_AND_DROP 0
2bda0e17
KB
226#endif
227
228// Only WIN32 supports wxStatusBar95
47d67540
VZ
229#if !defined(__WIN32__) && wxUSE_NATIVE_STATUSBAR
230#undef wxUSE_NATIVE_STATUSBAR
231#define wxUSE_NATIVE_STATUSBAR 0
2bda0e17
KB
232#endif
233
234// Minimal setup e.g. for compiling small utilities
235#define MINIMAL_WXWINDOWS_SETUP 0
236
237#if MINIMAL_WXWINDOWS_SETUP
47d67540
VZ
238#undef wxUSE_POSTSCRIPT
239# define wxUSE_POSTSCRIPT 0
240#undef wxUSE_PRINTING_ARCHITECTURE
241# define wxUSE_PRINTING_ARCHITECTURE 0
242#undef wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW
243# define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 0
244#undef wxUSE_METAFILE
245# define wxUSE_METAFILE 0
246#undef wxUSE_FORM
247# define wxUSE_FORM 0
248#undef wxUSE_SPLINES
249# define wxUSE_SPLINES 0
250#undef wxUSE_SCROLLBAR
251# define wxUSE_SCROLLBAR 0
252#undef wxUSE_COMBOBOX
253# define wxUSE_COMBOBOX 0
254#undef wxUSE_RADIOBUTTON
255# define wxUSE_RADIOBUTTON 0
256#undef wxUSE_XPM_IN_MSW
257# define wxUSE_XPM_IN_MSW 0
258#undef wxUSE_WX_RESOURCES
259# define wxUSE_WX_RESOURCES 0
260#undef wxUSE_DOC_VIEW_ARCHITECTURE
261# define wxUSE_DOC_VIEW_ARCHITECTURE 0
262#undef wxUSE_GNU_WXSTRING
263# define wxUSE_GNU_WXSTRING 0
264#undef wxUSE_ODBC
265# define wxUSE_ODBC 0
266#undef wxUSE_TIMEDATE
267# define wxUSE_TIMEDATE 0
2bda0e17
KB
268#undef CTL3D
269# define CTL3D 0
47d67540
VZ
270#undef wxUSE_ITSY_BITSY
271# define wxUSE_ITSY_BITSY 0
272#undef wxUSE_IMAGE_LOADING_IN_MSW
273# define wxUSE_IMAGE_LOADING_IN_MSW 0
274#undef wxUSE_GAUGE
275# define wxUSE_GAUGE 0
276#undef wxUSE_RESOURCE_LOADING_IN_MSW
277# define wxUSE_RESOURCE_LOADING_IN_MSW 0
278#undef wxUSE_DRAG_AND_DROP
279# define wxUSE_DRAG_AND_DROP 0
2bda0e17
KB
280#endif
281
282#endif
bbcdf8bc 283 // _WX_SETUP_H_