]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/mac/setup.h
changed port handling
[wxWidgets.git] / include / wx / mac / setup.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: setup.h
3// Purpose: Configuration for the library
4// Author: Stefan Csomor
5// Modified by: Stefan Csomor
6// Created: ??/??/98
7// RCS-ID: $Id$
8// Copyright: (c) AUTHOR
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_SETUP_H_
13#define _WX_SETUP_H_
14
15/*
16 * General features
17 *
18 */
19
20#define wxUSE_GEOMETRY 1
21#define WORDS_BIGENDIAN 1
22
23#define wxUSE_CONFIG 1
24 // Use wxConfig, with CreateConfig in wxApp
25
26#define WXWIN_COMPATIBILITY 0
27 // Compatibility with 1.66 API.
28 // Level 0: no backward compatibility, all new features
29 // Level 1: wxDC, OnSize (etc.) compatibility, but
30 // some new features such as event tables
31#define wxUSE_POSTSCRIPT 0
32 // 0 for no PostScript device context
33#define wxUSE_AFM_FOR_POSTSCRIPT 0
34 // 1 to use font metric files in GetTextExtent
35#define wxUSE_METAFILE 1
36 // 0 for no Metafile and metafile device context
37#define wxUSE_IPC 0
38 // 0 for no interprocess comms
39#define wxUSE_HELP 1
40 // 0 for no help facility
41#define wxUSE_RESOURCES 1
42 // 0 for no wxGetResource/wxWriteResource
43#define wxUSE_CONSTRAINTS 1
44 // Use constraints mechanism
45#define wxUSE_TIMEDATE 1
46 // 0 for no wxTime/wxDate classes
47
48#define wxUSE_CLIPBOARD 1
49 // 0 for no clipboard functions
50
51#define wxUSE_SPLINES 1
52 // 0 for no splines
53
54#define wxUSE_DRAG_AND_DROP 0
55 // 0 for no drag and drop
56
57#define wxUSE_TOOLBAR 1
58#define wxUSE_TOOLBAR_NATIVE 1
59 // Define 1 to use toolbar classes
60#define wxUSE_BUTTONBAR 1
61 // Define 1 to use buttonbar classes (enhanced toolbar
62 // for MS Windows)
63#define wxUSE_GAUGE 1
64 // Define 1 to use Microsoft's gauge (Windows)
65 // or Bull's gauge (Motif) library (both in contrib).
66#define wxUSE_COMBOBOX 1
67 // Define 1 to use COMBOXBOX control (Windows)
68 // or FWW's ComboBox widget (Motif).
69#define wxUSE_CHOICE 1
70 // Define 1 to use CHOICE
71
72#define wxUSE_RADIOBUTTON 1
73 // Define 1 to use radio button control
74#define wxUSE_RADIOBTN 1
75 // Unfortunately someone introduced this one, too
76
77#define wxUSE_SCROLLBAR 1
78 // Define 1 to compile contributed wxScrollBar class
79
80#define wxUSE_CHECKBOX 1
81 // Define 1 to compile checkbox
82
83#define wxUSE_LISTBOX 1
84 // Define 1 to compile listbox
85
86#define wxUSE_SPINBTN 1
87
88#define wxUSE_SPINCTRL 1
89
90#define wxUSE_NOTEBOOK 1
91 // Define 1 to compile spin button
92
93// use wxStaticLine class (separator line in the dialog)?
94#define wxUSE_STATLINE 1
95
96#define wxUSE_CHECKLISTBOX 1
97 // Define 1 to compile check listbox
98
99#define wxUSE_CHOICE 1
100 // Define 1 to compile choice
101
102#define wxUSE_CARET 1
103 // Define 1 to use wxCaret class
104#define wxUSE_XPM_IN_MSW 1
105 // Define 1 to support the XPM package in wxBitmap.
106#define wxUSE_IMAGE_LOADING_IN_MSW 1
107 // Use dynamic DIB loading/saving code in utils/dib under MSW.
108#define wxUSE_RESOURCE_LOADING_IN_MSW 1
109 // Use dynamic icon/cursor loading/saving code
110 // under MSW.
111#define wxUSE_WX_RESOURCES 1
112 // Use .wxr resource mechanism (requires PrologIO library)
113
114// support for startup tips (wxShowTip &c)
115#define wxUSE_STARTUP_TIPS 1
116
117// BC++/Win16 can't cope with the amount of data in resource.cpp
118#if defined(__WIN16__) && defined(__BORLANDC__)
119#undef wxUSE_WX_RESOURCES
120#define wxUSE_WX_RESOURCES 0
121#endif
122
123#define wxUSE_DOC_VIEW_ARCHITECTURE 1
124 // Set to 0 to disable document/view architecture
125#define wxUSE_MDI_ARCHITECTURE 1
126 // Set to 0 to disable MDI document/view architecture
127#define wxUSE_PRINTING_ARCHITECTURE 1
128 // Set to 0 to disable print/preview architecture code
129#define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 1
130 // Set to 0 to disable PostScript print/preview architecture code
131 // under Windows (just use Windows printing).
132#define wxUSE_DYNAMIC_CLASSES 1
133 // If 1, enables provision of run-time type information.
134 // NOW MANDATORY: don't change.
135#define wxUSE_MEMORY_TRACING 1
136 // If 1, enables debugging versions of wxObject::new and
137 // wxObject::delete *IF* __WXDEBUG__ is also defined.
138 // WARNING: this code may not work with all architectures, especially
139 // if alignment is an issue.
140#ifndef __MWERKS__
141#define wxUSE_DEBUG_CONTEXT 0
142#else
143#define wxUSE_DEBUG_CONTEXT 1
144#endif
145 // If 1, enables wxDebugContext, for
146 // writing error messages to file, etc.
147 // If __WXDEBUG__ is not defined, will still use
148 // normal memory operators.
149 // It's recommended to set this to 1,
150 // since you may well need to output
151 // an error log in a production
152 // version (or non-debugging beta)
153#define wxUSE_GLOBAL_MEMORY_OPERATORS 0
154 // In debug mode, cause new and delete to be redefined globally.
155 // If this causes problems (e.g. link errors), set this to 0.
156
157#define wxUSE_DEBUG_NEW_ALWAYS 1
158 // In debug mode, causes new to be defined to
159 // be WXDEBUG_NEW (see object.h).
160 // If this causes problems (e.g. link errors), set this to 0.
161 // You may need to set this to 0 if using templates (at least
162 // for VC++).
163
164#define REMOVE_UNUSED_ARG 1
165 // Set this to 0 if your compiler can't cope
166 // with omission of prototype parameters.
167
168#define wxUSE_ODBC 1
169 // Define 1 to use ODBC classes
170
171
172#define wxODBC_FWD_ONLY_CURSORS 1
173 // Some databases/ODBC drivers only allow forward scrolling cursors.
174 // Unless you specifically want to use backward scrolling
175 // cursors, and you know that all of the databases/ODBC drivers
176 // that you will use these odbc classes with allow backward
177 // scrolling cursors, this setting should remain set to 1
178 // for maximum database/driver compatibilty
179
180
181
182#ifndef __MWERKS__
183#define wxUSE_IOSTREAMH 0
184#else
185#define wxUSE_IOSTREAMH 1
186#endif
187 // VC++ 4.2 and above allows <iostream> and <iostream.h>
188 // but you can't mix them. Set to 1 for <iostream.h>,
189 // 0 for <iostream>
190
191#define wxUSE_STREAMS 1
192 // If enabled (1), compiles wxWindows streams classes
193
194#ifndef __MWERKS__
195#define wxUSE_STD_IOSTREAM 0
196#else
197#define wxUSE_STD_IOSTREAM 1
198 // Use standard C++ streams if 1. If 0, use wxWin
199 // streams implementation.
200#endif
201
202#define wxUSE_WXCONFIG 1
203 // if enabled, compiles built-in OS independent wxConfig
204 // class and it's file (any platform) and registry (Win)
205 // based implementations
206#define wxUSE_THREADS 1
207 // support for multithreaded applications: if
208 // 1, compile in thread classes (thread.h)
209 // and make the library thread safe
210#define wxUSE_ZLIB 1
211 // Use zlib for compression in streams and PNG code
212
213// ----------------------------------------------------------------------------
214// image format support
215// ----------------------------------------------------------------------------
216
217// wxImage supports many different image formats which can be configured at
218// compile-time. BMP is always supported, others are optional and can be safely
219// disabled if you don't plan to use images in such format sometimes saving
220// substantial amount of code in the final library.
221//
222// Some formats require an extra library which is included in wxWin sources
223// which is mentioned if it is the case.
224
225// Set to 1 for wxImage support (recommended).
226#define wxUSE_IMAGE 1
227
228#define wxUSE_LIBPNG 1
229 // Use PNG bitmap code
230#define wxUSE_LIBJPEG 1
231 // Use JPEG bitmap code
232#define wxUSE_LIBTIFF 1
233 // Use TIFF bitmap code
234#define wxUSE_GIF 1
235 // Use GIF bitmap code
236
237// Set to 1 for PNM format support
238#define wxUSE_PNM 1
239
240// Set to 1 for PCX format support
241#define wxUSE_PCX 1
242
243// Set to 1 for XPM format support
244#define wxUSE_XPM 1
245
246#define wxUSE_SERIAL 0
247 // Use serialization (requires utils/serialize)
248#define wxUSE_DYNLIB_CLASS 0
249 // Compile in wxLibrary class for run-time
250 // DLL loading and function calling
251#define wxUSE_TOOLTIPS 1
252 // Define to use wxToolTip class and
253 // wxWindow::SetToolTip() method
254#define wxUSE_SOCKETS 1 // 0
255 // Set to 1 to use socket classes
256#define wxUSE_HTML 1 // 0
257 // Set to 1 to use wxHTML sub-library
258#define wxUSE_FILESYSTEM 1
259
260#define wxUSE_FS_ZIP 1 // 0
261#define wxUSE_FS_INET 1 // 0 // Set to 1 to enable virtual file systems
262
263#define wxUSE_BUSYINFO 1 // 0
264 // wxBusyInfo displays window with message
265 // when app is busy. Works in same way as
266 // wxBusyCursor
267#define wxUSE_ZIPSTREAM 1 // 0
268 // input stream for reading from zip archives
269
270// OpenGL canvas
271#define wxUSE_GLCANVAS 1
272/*
273 * Finer detail
274 *
275 */
276
277#define wxUSE_APPLE_IEEE 1
278 // if enabled, the float codec written by Apple
279 // will be used to write, in a portable way,
280 // float on the disk
281
282// use wxFile class - required by i18n code, wxConfig and others - recommended
283#define wxUSE_FILE 1
284
285// use wxTextFile class: requires wxFile, required by wxConfig
286#define wxUSE_TEXTFILE 1
287
288// i18n support: _() macro, wxLocale class. Requires wxTextFile.
289#define wxUSE_INTL 1
290
291// wxLogXXX functions - highly recommended
292#define wxUSE_LOG 1
293
294// wxValidator class
295#define wxUSE_VALIDATORS 1
296
297// wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar)
298#define wxUSE_ACCEL 1
299
300// wxSashWindow class
301#define wxUSE_SASH 1
302
303// text entry dialog and wxGetTextFromUser function
304#define wxUSE_TEXTDLG 1
305
306// wxStatusBar class
307#define wxUSE_STATUSBAR 1
308
309// progress dialog class for lengthy operations
310#define wxUSE_PROGRESSDLG 1
311
312// wxDirDlg class for getting a directory name from user
313#define wxUSE_DIRDLG 1
314
315/*
316 * MS Windows/Windows NT
317 *
318 */
319
320#define wxUSE_OLE 1
321 // drag-and-drop, clipboard, OLE Automation
322
323#if defined(__WIN95__)
324#define wxUSE_CTL3D 0
325#else
326#define wxUSE_CTL3D 1
327 // Define 1 to use Microsoft CTL3D library.
328 // See note above about using FAFA and CTL3D.
329#endif
330
331#define wxUSE_COMMON_DIALOGS 1
332 // On rare occasions (e.g. using DJGPP) may want
333 // to omit common dialogs
334 // (e.g. file selector, printer dialog).
335 // Switching this off also switches off
336 // the printing architecture and interactive
337 // wxPrinterDC.
338#define wxUSE_ITSY_BITSY 1
339 // Define 1 to use Microsoft's ItsyBitsy
340 // small title bar library, for wxMiniFrame
341#define wxUSE_BITMAP_MESSAGE 1
342 // Define 1 to use bitmap messages.
343#define wxUSE_PORTABLE_FONTS_IN_MSW 0
344 // Define 1 to use new portable font scheme in Windows
345 // (used by default under X)
346#define wxFONT_SIZE_COMPATIBILITY 0
347 // Define 1 for font size to be backward compatible
348 // to 1.63 and earlier. 1.64 and later define point
349 // sizes to be compatible with Windows.
350#define wxUSE_GENERIC_DIALOGS_IN_MSW 1
351 // Define 1 to use generic dialogs in Windows, even though
352 // they duplicate native common dialog (e.g. wxColourDialog)
353#define wxUSE_PENWINDOWS 0
354 // Set to 1 to use PenWindows
355
356#define wxUSE_OWNER_DRAWN 0
357 // Owner-drawn menus and listboxes
358
359#define wxUSE_NATIVE_STATUSBAR 1
360 // Set to 0 to use cross-platform wxStatusBar
361#define wxUSE_DBWIN32 1
362 // Use Andrew Tucker's OutputDebugString implementation
363 // (required on Win95 only). See utils.cpp.
364
365/*
366 * Any platform
367 *
368 */
369
370#define wxUSE_TYPEDEFS 1
371 // Use typedefs not classes for wxPoint
372 // and others, to reduce overhead and avoid
373 // MS C7 memory bug. Bounds checker
374 // complains about deallocating
375 // arrays of wxPoints if wxPoint is a class.
376
377
378#endif
379 // _WX_SETUP_H_