]>
Commit | Line | Data |
---|---|---|
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 | ||
15 | /* | |
16 | * General features | |
17 | * | |
18 | */ | |
19 | ||
20 | #define wxUSE_CONFIG 1 | |
21 | // Use wxConfig, with CreateConfig in wxApp | |
22 | ||
23 | #define WXWIN_COMPATIBILITY 0 | |
24 | // Compatibility with 1.68 API. | |
25 | // Level 0: no backward compatibility, all new features | |
26 | // Level 1: Some compatibility. In fact | |
27 | // the compatibility code is now very minimal so there | |
28 | // is little advantage to setting it to 1. | |
29 | ||
30 | #define wxUSE_POSTSCRIPT 1 | |
31 | // 0 for no PostScript device context | |
32 | #define wxUSE_AFM_FOR_POSTSCRIPT 1 | |
33 | // 1 to use font metric files in GetTextExtent | |
34 | #define wxUSE_METAFILE 1 | |
35 | // 0 for no Metafile and metafile device context | |
36 | #define wxUSE_IPC 1 | |
37 | // 0 for no interprocess comms | |
38 | // Note: wxHELP uses IPC under X so these are interdependent! | |
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 | // 0 for no window layout constraint system | |
45 | ||
46 | #define wxUSE_TIMEDATE 1 | |
47 | // 0 for no wxTime/wxDate classes | |
48 | ||
49 | #define wxUSE_CLIPBOARD 1 | |
50 | // 0 for no clipboard functions | |
51 | ||
52 | #define wxUSE_SPLINES 1 | |
53 | // 0 for no splines | |
54 | ||
55 | #define wxUSE_DRAG_AND_DROP 1 | |
56 | // 0 for no drag and drop | |
57 | ||
58 | #define wxUSE_TOOLBAR 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 | // Define 1 to compile spin button | |
88 | ||
89 | // use wxStaticLine class (separator line in the dialog)? | |
90 | #define wxUSE_STATLINE 1 | |
91 | ||
92 | #define wxUSE_CHECKLISTBOX 1 | |
93 | // Define 1 to compile check listbox | |
94 | ||
95 | #define wxUSE_CHOICE 1 | |
96 | // Define 1 to compile choice | |
97 | ||
98 | #define wxUSE_CARET 1 | |
99 | // Define 1 to use wxCaret class | |
100 | #define wxUSE_XPM_IN_MSW 1 | |
101 | // Define 1 to support the XPM package in wxBitmap. | |
102 | #define wxUSE_WX_RESOURCES 1 | |
103 | // Use .wxr resource mechanism (requires PrologIO library) | |
104 | ||
105 | // support for startup tips (wxShowTip &c) | |
106 | #define wxUSE_STARTUP_TIPS 1 | |
107 | ||
108 | #define wxUSE_DOC_VIEW_ARCHITECTURE 1 | |
109 | // Set to 0 to disable document/view architecture | |
110 | #define wxUSE_MDI_ARCHITECTURE 1 | |
111 | // Set to 0 to disable MDI document/view architecture | |
112 | #define wxUSE_PRINTING_ARCHITECTURE 1 | |
113 | // Set to 0 to disable print/preview architecture code | |
114 | #define wxUSE_DYNAMIC_CLASSES 1 | |
115 | // If 1, enables provision of run-time type information. | |
116 | // NOW MANDATORY: don't change. | |
117 | #define wxUSE_MEMORY_TRACING 1 | |
118 | // If 1, enables debugging versions of wxObject::new and | |
119 | // wxObject::delete *IF* __WXDEBUG__ is also defined. | |
120 | // WARNING: this code may not work with all architectures, especially | |
121 | // if alignment is an issue. | |
122 | #define wxUSE_DEBUG_CONTEXT 1 | |
123 | // If 1, enables wxDebugContext, for | |
124 | // writing error messages to file, etc. | |
125 | // If __WXDEBUG__ is not defined, will still use | |
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) | |
131 | #define wxUSE_GLOBAL_MEMORY_OPERATORS 1 | |
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 wxUSE_DEBUG_NEW_ALWAYS 1 | |
136 | // In debug mode, causes new to be defined to | |
137 | // be WXDEBUG_NEW (see object.h). | |
138 | // If this causes problems (e.g. link errors), set this to 0. | |
139 | // You may need to set this to 0 if using templates (at least | |
140 | // for VC++). | |
141 | ||
142 | #define REMOVE_UNUSED_ARG 1 | |
143 | // Set this to 0 if your compiler can't cope | |
144 | // with omission of prototype parameters. | |
145 | ||
146 | #define wxUSE_ODBC 0 | |
147 | // Define 1 to use ODBC classes | |
148 | ||
149 | #define wxUSE_IOSTREAMH 1 | |
150 | // VC++ 4.2 and above allows <iostream> and <iostream.h> | |
151 | // but you can't mix them. Set to 1 for <iostream.h>, | |
152 | // 0 for <iostream> | |
153 | ||
154 | #define wxUSE_STREAMS 1 | |
155 | // If enabled (1), compiles wxWindows streams classes | |
156 | ||
157 | #define wxUSE_STD_IOSTREAM 1 | |
158 | // Use standard C++ streams if 1. If 0, use wxWin | |
159 | // streams implementation. | |
160 | ||
161 | #define wxUSE_WXCONFIG 1 | |
162 | // if enabled, compiles built-in OS independent wxConfig | |
163 | // class and it's file (any platform) and registry (Win) | |
164 | // based implementations | |
165 | #define wxUSE_THREADS 1 | |
166 | // support for multithreaded applications: if | |
167 | // 1, compile in thread classes (thread.h) | |
168 | // and make the library thread safe | |
169 | #define wxUSE_ZLIB 1 | |
170 | // Use zlib for compression in streams and PNG code | |
171 | #define wxUSE_LIBPNG 1 | |
172 | // Use PNG bitmap code | |
173 | #define wxUSE_LIBJPEG 1 | |
174 | // Use JPEG bitmap code | |
175 | #define wxUSE_SERIAL 1 | |
176 | // Use serialization (requires utils/serialize) | |
177 | #define wxUSE_DYNLIB_CLASS 1 | |
178 | // Compile in wxLibrary class for run-time | |
179 | // DLL loading and function calling | |
180 | #define wxUSE_TOOLTIPS 1 | |
181 | // Define to use wxToolTip class and | |
182 | // wxWindow::SetToolTip() method | |
183 | #define wxUSE_SOCKETS 1 | |
184 | // Set to 1 to use socket classes | |
185 | #define wxUSE_HTML 1 | |
186 | // Set to 1 to use wxHTML sub-library | |
187 | #define wxUSE_FS_ZIP 1 | |
188 | #define wxUSE_FS_INET 1 // Set to 1 to enable virtual file systems | |
189 | ||
190 | #define wxUSE_BUSYINFO 1 | |
191 | // wxBusyInfo displays window with message | |
192 | // when app is busy. Works in same way as | |
193 | // wxBusyCursor | |
194 | #define wxUSE_ZIPSTREAM 1 | |
195 | // input stream for reading from zip archives | |
196 | ||
197 | /* | |
198 | * Finer detail | |
199 | * | |
200 | */ | |
201 | ||
202 | #define wxUSE_APPLE_IEEE 1 | |
203 | // if enabled, the float codec written by Apple | |
204 | // will be used to write, in a portable way, | |
205 | // float on the disk | |
206 | ||
207 | // use wxFile class - required by i18n code, wxConfig and others - recommended | |
208 | #define wxUSE_FILE 1 | |
209 | ||
210 | // use wxTextFile class: requires wxFile, required by wxConfig | |
211 | #define wxUSE_TEXTFILE 1 | |
212 | ||
213 | // i18n support: _() macro, wxLocale class. Requires wxFile | |
214 | #define wxUSE_INTL 1 | |
215 | ||
216 | // wxLogXXX functions - highly recommended | |
217 | #define wxUSE_LOG 1 | |
218 | ||
219 | // wxValidator class | |
220 | #define wxUSE_VALIDATORS 1 | |
221 | ||
222 | // wxAcceleratorTable/Entry classes and support for them in wxMenu(Bar) | |
223 | #define wxUSE_ACCEL 1 | |
224 | ||
225 | // wxSashWindow class | |
226 | #define wxUSE_SASH 1 | |
227 | ||
228 | // text entry dialog and wxGetTextFromUser function | |
229 | #define wxUSE_TEXTDLG 1 | |
230 | ||
231 | // wxToolBar class | |
232 | #define wxUSE_TOOLBAR 1 | |
233 | ||
234 | // wxStatusBar class | |
235 | #define wxUSE_STATUSBAR 1 | |
236 | ||
237 | // progress dialog class for lengthy operations | |
238 | #define wxUSE_PROGRESSDLG 1 | |
239 | ||
240 | // wxDirDlg class for getting a directory name from user | |
241 | #define wxUSE_DIRDLG 1 | |
242 | ||
243 | #define wxUSE_OWNER_DRAWN 1 | |
244 | // Owner-drawn menus and listboxes | |
245 | ||
246 | /* | |
247 | * Any platform | |
248 | * | |
249 | */ | |
250 | ||
251 | #define wxUSE_TYPEDEFS 0 | |
252 | // Use typedefs not classes for wxPoint | |
253 | // and others, to reduce overhead and avoid | |
254 | // MS C7 memory bug. Bounds checker | |
255 | // complains about deallocating | |
256 | // arrays of wxPoints if wxPoint is a class. | |
257 | ||
258 | #define wxUSE_DRAG_AND_DROP 1 | |
259 | ||
260 | #endif | |
261 | // _WX_SETUP_H_ |