]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: defs.h | |
3 | // Purpose: Declarations/definitions common to all wx source files | |
4 | // Author: Julian Smart and others | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) | |
3f4a0c5b | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _WX_DEFS_H_ |
13 | #define _WX_DEFS_H_ | |
c801d85f KB |
14 | |
15 | #ifdef __GNUG__ | |
d22699b5 | 16 | #pragma interface "defs.h" |
c801d85f KB |
17 | #endif |
18 | ||
2c41c440 KB |
19 | |
20 | // needed to handle strings with xgettext: | |
21 | #ifndef gettext_noop | |
22 | # define gettext_noop(x) x | |
23 | #endif | |
24 | ||
3f4a0c5b VZ |
25 | // ---------------------------------------------------------------------------- |
26 | // compiler and OS identification | |
27 | // ---------------------------------------------------------------------------- | |
c801d85f | 28 | |
3f4a0c5b | 29 | // OS |
5b34447b VZ |
30 | #if defined(__unix) || defined(__unix__) || defined(____SVR4____) || \ |
31 | defined(__LINUX__) || defined(__sgi ) || \ | |
91b8de8d RR |
32 | defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) || \ |
33 | defined(__EMX__) | |
5b34447b | 34 | |
3fb98ddf | 35 | #define __UNIX_LIKE__ |
3f4a0c5b VZ |
36 | |
37 | // Helps SGI compilation, apparently | |
38 | #ifdef __SGI__ | |
39 | #ifdef __GNUG__ | |
40 | #define __need_wchar_t | |
41 | #else // !gcc | |
42 | // Note I use the term __SGI_CC__ for both cc and CC, its not a good | |
43 | // idea to mix gcc and cc/CC, the name mangling is different | |
44 | #define __SGI_CC__ | |
45 | #endif // gcc/!gcc | |
46 | #endif // SGI | |
47 | ||
48 | #if defined(sun) || defined(__SUN__) | |
49 | #ifndef __GNUG__ | |
50 | #ifndef __SUNCC__ | |
51 | #define __SUNCC__ | |
52 | #endif // Sun CC | |
53 | #endif | |
54 | #endif // Sun | |
5b34447b | 55 | |
8be97d65 | 56 | #elif defined(applec) || defined(THINK_C) || ( defined( __MWERKS__ ) && !defined(__INTEL__) ) |
5b34447b | 57 | // MacOS |
1777b9bb DW |
58 | #elif defined(__OS2__) |
59 | #if defined(__IBMCPP__) | |
60 | #define __VISAGEAVER__ __IBMCPP__ | |
61 | #endif | |
62 | #ifndef __WXOS2__ | |
63 | #define __WXOS2__ | |
64 | #endif | |
65 | #ifndef __WXPM__ | |
66 | #define __WXPM__ | |
67 | #endif | |
d5d63453 | 68 | |
1777b9bb | 69 | // Place other OS/2 compiler environment defines here |
d5d63453 | 70 | #define LINKAGEMODE _Optlink |
3f4a0c5b VZ |
71 | #else // Windows |
72 | #ifndef __WINDOWS__ | |
73 | #define __WINDOWS__ | |
74 | #endif // Windows | |
75 | ||
76 | // define another standard symbol for Microsoft Visual C++: the standard one | |
77 | // (_MSC_VER) is also defined by Metrowerks compiler | |
78 | #if defined(_MSC_VER) && !defined(__MWERKS__) | |
858f7d66 | 79 | #define __VISUALC__ _MSC_VER |
3f4a0c5b VZ |
80 | #elif defined(__BCPLUSPLUS__) && !defined(__BORLANDC__) |
81 | #define __BORLANDC__ | |
82 | #elif defined(__WATCOMC__) | |
83 | //#define __WATCOMC__ | |
84 | #elif defined(__SC__) | |
85 | #define __SYMANTECC__ | |
86 | #endif // compiler | |
87 | #endif // OS | |
5dcf05ae | 88 | |
d5d63453 VZ |
89 | // LINKAGEMODE mode is empty for everyting except OS/2 |
90 | #ifndef LINKAGEMODE | |
91 | #define LINKAGEMODE | |
92 | #endif // LINKAGEMODE | |
93 | ||
fd3f686c | 94 | // suppress some Visual C++ warnings |
3f4a0c5b | 95 | #ifdef __VISUALC__ |
197dd9af | 96 | # pragma warning(disable:4201) // nonstandard extension used: nameless struct/union |
539dae52 | 97 | # pragma warning(disable:4244) // conversion from double to float |
fd3f686c | 98 | # pragma warning(disable:4100) // unreferenced formal parameter |
a23fd0e1 VZ |
99 | # pragma warning(disable:4511) // copy ctor couldn't be generated |
100 | # pragma warning(disable:4512) // operator=() couldn't be generated | |
197dd9af | 101 | # pragma warning(disable:4699) // Using precompiled header |
27a9bd48 | 102 | # pragma warning(disable:4134) // conversion between pointers to members of same class |
197dd9af | 103 | #ifndef WIN32 |
27a9bd48 PA |
104 | # pragma warning(disable:4135) // conversion between different integral types |
105 | # pragma warning(disable:4769) // assignment of near pointer to long integer | |
197dd9af PA |
106 | // This one is really annoying, since it occurs for each cast to (HANDLE)... |
107 | # pragma warning(disable:4305) // truncation of long to near ptr | |
27a9bd48 | 108 | #endif |
539dae52 | 109 | #endif // __VISUALC__ |
c801d85f | 110 | |
a3ef5bf5 JS |
111 | // suppress some Salford C++ warnings |
112 | #ifdef __SALFORDC__ | |
113 | # pragma suppress 353 // Possible nested comments | |
114 | # pragma suppress 593 // Define not used | |
115 | # pragma suppress 61 // enum has no name (doesn't suppress!) | |
116 | # pragma suppress 106 // unnamed, unused parameter | |
117 | # pragma suppress 571 // Virtual function hiding | |
539dae52 VZ |
118 | #endif // __SALFORDC__ |
119 | ||
e90c1d2a VZ |
120 | #if defined(__VISUALC__) && !defined(WIN32) |
121 | // VC1.5 does not have LPTSTR type | |
122 | #define LPTSTR LPSTR | |
123 | #define LPCTSTR LPCSTR | |
124 | #endif // VC++ 1.5 | |
cc985fac | 125 | |
539dae52 | 126 | // Digital Unix C++ compiler only defines this symbol for .cxx and .hxx files, |
e3f39499 | 127 | // so define it ourselves |
539dae52 VZ |
128 | #ifdef __DECCXX |
129 | #define __cplusplus | |
130 | #endif // __DECCXX | |
a3ef5bf5 | 131 | |
e3f39499 | 132 | // Resolves linking problems under HP-UX |
5b34447b | 133 | #if defined(__HPUX__) && defined(__GNUG__) |
e3f39499 VZ |
134 | #define va_list __gnuc_va_list |
135 | #endif // HP-UX | |
2f78bd2c | 136 | |
65fd5cb0 RS |
137 | // Mingw32 gcc-2.95 uses new windows headers which are more ms-like |
138 | // we are setting this define because of the complex check | |
139 | // using NORLANDER as Cygwin may follow. (header author is Anders Norlander) | |
4b6f0b91 | 140 | #if defined(__MINGW32__) && ((__GNUC__>2) ||((__GNUC__==2) && (__GNUC_MINOR__>=95))) |
65fd5cb0 RS |
141 | # define wxUSE_NORLANDER_HEADERS 1 |
142 | #endif | |
143 | ||
e3f39499 | 144 | |
c801d85f KB |
145 | ////////////////////////////////////////////////////////////////////////////////// |
146 | // Currently Only MS-Windows/NT, XView and Motif are supported | |
147 | // | |
508203b0 | 148 | #if defined(__HPUX__) && !defined(__WXGTK__) |
3f480da3 | 149 | #ifndef __WXMOTIF__ |
508203b0 VZ |
150 | #define __WXMOTIF__ |
151 | #endif // __WXMOTIF__ | |
c801d85f | 152 | #endif |
508203b0 | 153 | |
2049ba38 | 154 | #if defined(__WXMOTIF__) |
508203b0 | 155 | #define __X__ |
c801d85f KB |
156 | #endif |
157 | ||
16ee7f42 | 158 | #ifdef __WXMSW__ |
c801d85f | 159 | // wxWindows checks for WIN32, not __WIN32__ |
34138703 | 160 | #if ((defined(WIN32) || defined(__NT__)) && !defined(__WIN32__) && !defined(__WXSTUBS__)) |
c801d85f KB |
161 | #define __WIN32__ |
162 | #endif | |
163 | ||
5ea105e0 RR |
164 | #ifdef __WXWINE__ |
165 | #ifndef __WIN32__ | |
166 | #define __WIN32__ | |
167 | #endif | |
168 | #ifndef __WIN95__ | |
169 | #define __WIN95__ | |
170 | #endif | |
171 | #ifndef STRICT | |
172 | #define STRICT | |
173 | #endif | |
174 | #endif | |
175 | ||
c801d85f KB |
176 | #ifndef __WIN32__ |
177 | #define __WIN16__ | |
178 | #endif | |
179 | ||
180 | #if !defined(__WIN95__) && (WINVER >= 0x0400) | |
181 | #define __WIN95__ | |
182 | #endif | |
183 | ||
57c208c5 JS |
184 | #if defined(TWIN32) && !defined(__TWIN32__) |
185 | #define __TWIN32__ | |
186 | #endif | |
187 | ||
16ee7f42 VZ |
188 | #endif // wxMSW |
189 | ||
c801d85f | 190 | // Make sure the environment is set correctly |
2049ba38 | 191 | #if defined(__WXMSW__) && defined(__X__) |
ba6f401d | 192 | #error "Target can't be both X and Windows" |
e90c1d2a VZ |
193 | #elif !defined(__WXMOTIF__) && !defined(__WXMSW__) && !defined(__WXGTK__) && \ |
194 | !defined(__WXPM__) && !defined(__WXMAC__) && !defined(__X__) && \ | |
195 | !defined(__WXQT__) && !defined(__WXSTUBS__) && wxUSE_GUI | |
1777b9bb | 196 | #error "No Target! Use -D[__WXMOTIF__|__WXGTK__|__WXMSW__|__WXMAC__|__WXQT__|__WXPM__|__WXSTUBS__]" |
c801d85f KB |
197 | #endif |
198 | ||
d22699b5 VZ |
199 | // ---------------------------------------------------------------------------- |
200 | // wxWindows options | |
201 | // ---------------------------------------------------------------------------- | |
202 | ||
203 | #include <stddef.h> | |
204 | ||
205 | #include "wx/setup.h" | |
206 | ||
207 | // just in case they were defined in setup.h | |
208 | #undef PACKAGE | |
209 | #undef VERSION | |
210 | ||
e115e771 RR |
211 | // this has to be done after including setup.h which might |
212 | // define __HPUX__ 1 itself | |
213 | #if defined(__hpux) && !defined(__HPUX__) | |
214 | #define __HPUX__ | |
215 | #endif // HP-UX | |
216 | ||
3fb98ddf VZ |
217 | // if we're on a Unixsystem but didn't use configure (so that setup.h didn't |
218 | // define __UNIX__), do define __UNIX__ now | |
219 | #if !defined(__UNIX__) && defined(__UNIX_LIKE__) | |
220 | #define __UNIX__ | |
221 | #endif // Unix | |
222 | ||
d22699b5 VZ |
223 | #include "wx/version.h" |
224 | ||
e90c1d2a VZ |
225 | // ---------------------------------------------------------------------------- |
226 | // compatibility defines | |
227 | // ---------------------------------------------------------------------------- | |
228 | ||
229 | // possibility to build non GUI apps is new, so don't burden ourselves with | |
230 | // compatibility code | |
231 | #if !wxUSE_GUI | |
232 | #undef WXWIN_COMPATIBILITY_2 | |
233 | #define WXWIN_COMPATIBILITY_2 0 | |
234 | #endif // !GUI | |
235 | ||
57493f9f VZ |
236 | // ============================================================================ |
237 | // non portable C++ features | |
238 | // ============================================================================ | |
239 | ||
240 | // ---------------------------------------------------------------------------- | |
241 | // check for native bool type and TRUE/FALSE constants | |
242 | // ---------------------------------------------------------------------------- | |
243 | ||
e90c1d2a VZ |
244 | // define boolean constants if not done yet |
245 | #ifndef TRUE | |
246 | #define TRUE 1 | |
247 | #endif | |
c801d85f | 248 | |
e90c1d2a VZ |
249 | #ifndef FALSE |
250 | #define FALSE 0 | |
251 | #endif | |
c801d85f | 252 | |
57493f9f VZ |
253 | // Add more tests here for Windows compilers that already define bool |
254 | // (under Unix, configure tests for this) | |
255 | #ifndef HAVE_BOOL | |
256 | #if defined( __MWERKS__ ) | |
585ae8cb | 257 | #if (__MWERKS__ >= 0x1000) && __option(bool) |
57493f9f VZ |
258 | #define HAVE_BOOL |
259 | #endif | |
260 | #elif defined(__VISUALC__) && (__VISUALC__ == 1020) | |
261 | // in VC++ 4.2 the bool keyword is reserved (hence can't be typedefed) | |
262 | // but not implemented, so we must #define it | |
263 | #define bool unsigned int | |
794005c0 JS |
264 | #elif defined(__VISUALC__) && (__VISUALC__ == 1010) |
265 | // For VisualC++ 4.1, we need to define | |
266 | // bool as something between 4.0 & 5.0... | |
267 | typedef unsigned int wxbool; | |
268 | #define bool wxbool | |
269 | #define HAVE_BOOL | |
57493f9f VZ |
270 | #elif defined(__VISUALC__) && (__VISUALC__ > 1020) |
271 | // VC++ supports bool since 4.2 | |
272 | #define HAVE_BOOL | |
273 | #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x500) | |
274 | // Borland 5.0+ supports bool | |
275 | #define HAVE_BOOL | |
276 | #elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100) | |
277 | // Watcom 11+ supports bool | |
278 | #define HAVE_BOOL | |
6776a0b2 JS |
279 | #elif defined(__GNUWIN32__) |
280 | // Cygwin supports bool | |
281 | #define HAVE_BOOL | |
1777b9bb | 282 | #elif defined(__VISAGECPP__) |
51d7e4e7 DW |
283 | #if __IBMCPP__ < 400 |
284 | typedef unsigned long bool; | |
285 | #endif | |
1777b9bb | 286 | #define HAVE_BOOL |
57493f9f VZ |
287 | #endif // compilers |
288 | #endif // HAVE_BOOL | |
289 | ||
290 | #if !defined(HAVE_BOOL) && !defined(bool) | |
291 | // NB: of course, this doesn't replace the standard type, because, for | |
292 | // example, overloading based on bool/int parameter doesn't work and | |
293 | // so should be avoided in portable programs | |
dc9e1e56 | 294 | typedef unsigned int bool; |
57493f9f | 295 | #endif // bool |
c801d85f KB |
296 | |
297 | typedef short int WXTYPE; | |
42e69d6b VZ |
298 | |
299 | // special care should be taken with this type under Windows where the real | |
300 | // window id is unsigned, so we must always do the cast before comparing them | |
301 | // (or else they would be always different!). Usign wxGetWindowId() which does | |
302 | // the cast itself is recommended. Note that this type can't be unsigned | |
303 | // because -1 is a valid (and largely used) value for window id. | |
c801d85f KB |
304 | typedef int wxWindowID; |
305 | ||
306 | // Macro to cut down on compiler warnings. | |
307 | #if REMOVE_UNUSED_ARG | |
57493f9f | 308 | #define WXUNUSED(identifier) /* identifier */ |
c801d85f | 309 | #else // stupid, broken compiler |
57493f9f | 310 | #define WXUNUSED(identifier) identifier |
c801d85f KB |
311 | #endif |
312 | ||
0661ec39 VZ |
313 | // ---------------------------------------------------------------------------- |
314 | // portable calling conventions macros | |
315 | // ---------------------------------------------------------------------------- | |
316 | ||
317 | // wxCALLBACK should be used for the functions which are called back by | |
318 | // Windows (such as compare function for wxListCtrl) | |
319 | #if defined(__WXMSW__) | |
f3ef286f | 320 | #if defined(__MINGW32__) || defined(__GNUWIN32__) |
0661ec39 VZ |
321 | #define wxCALLBACK __attribute__((stdcall)) |
322 | #else | |
323 | // both VC++ and Borland understand this | |
324 | #define wxCALLBACK _stdcall | |
325 | #endif | |
326 | #else | |
327 | // no stdcall under Unix | |
328 | #define wxCALLBACK | |
329 | #endif // platform | |
330 | ||
331 | // callling convention for the qsort(3) callback | |
332 | ||
333 | #if defined(__VISUALC__) | |
334 | #define wxCMPFUNC_CONV _cdecl | |
335 | #elif defined(__VISAGECPP__) | |
336 | #define wxCMPFUNC_CONV _Optlink | |
337 | #else // !Visual C++ | |
338 | #define wxCMPFUNC_CONV | |
339 | #endif // compiler | |
340 | ||
341 | // compatibility :-( | |
342 | #define CMPFUNC_CONV wxCMPFUNC_CONV | |
343 | ||
344 | // ---------------------------------------------------------------------------- | |
345 | // Making or using wxWindows as a Windows DLL | |
346 | // ---------------------------------------------------------------------------- | |
c801d85f | 347 | |
1777b9bb | 348 | #if defined(__WXMSW__) |
c801d85f | 349 | |
aed0ed3c JS |
350 | // _declspec works in BC++ 5 and later, as well as VC++ |
351 | #if defined(__VISUALC__) || defined(__BORLANDC__) | |
c801d85f KB |
352 | |
353 | # ifdef WXMAKINGDLL | |
aed0ed3c JS |
354 | # define WXDLLEXPORT _declspec( dllexport ) |
355 | # define WXDLLEXPORT_DATA(type) _declspec( dllexport ) type | |
356 | # define WXDLLEXPORT_CTORFN | |
c801d85f | 357 | # elif defined(WXUSINGDLL) |
aed0ed3c JS |
358 | # define WXDLLEXPORT _declspec( dllimport ) |
359 | # define WXDLLEXPORT_DATA(type) _declspec( dllimport ) type | |
c801d85f KB |
360 | # define WXDLLEXPORT_CTORFN |
361 | # else | |
362 | # define WXDLLEXPORT | |
363 | # define WXDLLEXPORT_DATA(type) type | |
364 | # define WXDLLEXPORT_CTORFN | |
365 | # endif | |
366 | ||
1777b9bb DW |
367 | #elif defined(__WXPM__) |
368 | ||
369 | # ifdef WXMAKINGDLL | |
370 | # define WXDLLEXPORT _Export | |
371 | # define WXDLLEXPORT_DATA(type) _Export type | |
372 | # define WXDLLEXPORT_CTORFN | |
373 | # elif defined(WXUSINGDLL) | |
374 | # define WXDLLEXPORT _Export | |
375 | # define WXDLLEXPORT_DATA(type) _Export type | |
376 | # define WXDLLEXPORT_CTORFN | |
377 | # else | |
378 | # define WXDLLEXPORT | |
379 | # define WXDLLEXPORT_DATA(type) type | |
380 | # define WXDLLEXPORT_CTORFN | |
381 | # endif | |
382 | ||
aed0ed3c JS |
383 | #else |
384 | # define WXDLLEXPORT | |
385 | # define WXDLLEXPORT_DATA(type) type | |
386 | # define WXDLLEXPORT_CTORFN | |
c801d85f KB |
387 | #endif |
388 | ||
57493f9f | 389 | #else // !Windows |
c801d85f KB |
390 | # define WXDLLEXPORT |
391 | # define WXDLLEXPORT_DATA(type) type | |
392 | # define WXDLLEXPORT_CTORFN | |
57493f9f | 393 | #endif // Win/!Win |
c801d85f KB |
394 | |
395 | // For ostream, istream ofstream | |
396 | #if defined(__BORLANDC__) && defined( _RTLDLL ) | |
397 | # define WXDLLIMPORT __import | |
398 | #else | |
399 | # define WXDLLIMPORT | |
400 | #endif | |
401 | ||
402 | class WXDLLEXPORT wxObject; | |
403 | class WXDLLEXPORT wxEvent; | |
404 | ||
c86f1403 | 405 | /** symbolic constant used by all Find()-like functions returning positive |
c801d85f | 406 | integer on success as failure indicator */ |
3c67202d | 407 | #define wxNOT_FOUND (-1) |
c801d85f | 408 | |
c801d85f KB |
409 | // ---------------------------------------------------------------------------- |
410 | /** @name Very common macros */ | |
411 | // ---------------------------------------------------------------------------- | |
412 | //@{ | |
a3622daa VZ |
413 | /// delete pointer if it is not NULL and NULL it afterwards |
414 | // (checking that it's !NULL before passing it to delete is just a | |
415 | // a question of style, because delete will do it itself anyhow, but it might | |
416 | // be considered as an error by some overzealous debugging implementations of | |
417 | // the library, so we do it ourselves) | |
c67daf87 | 418 | #if defined(__SGI_CC__) |
d4b67f95 | 419 | // Okay this is bad styling, but the native SGI compiler is very picky, it |
c67daf87 | 420 | // wont let you compare/assign between a NULL (void *) and another pointer |
d4b67f95 RD |
421 | // type. To be really clean we'd need to pass in another argument, the type |
422 | // of p. | |
423 | // Also note the use of 0L, this would allow future possible 64bit support | |
424 | // (as yet untested) by ensuring that we zero all the bits in a pointer | |
425 | // (which is always the same length as a long (at least with the LP64 standard) | |
c67daf87 | 426 | // --- offer aug 98 |
d8260b2f | 427 | #define wxDELETE(p) if ( (p) ) { delete (p); p = 0L; } |
c67daf87 | 428 | #else |
d8260b2f | 429 | #define wxDELETE(p) if ( (p) != NULL ) { delete p; p = NULL; } |
c67daf87 | 430 | #endif /* __SGI__CC__ */ |
a3622daa VZ |
431 | |
432 | // delete an array and NULL it (see comments above) | |
c67daf87 UR |
433 | #if defined(__SGI_CC__) |
434 | // see above comment. | |
435 | #define wxDELETEA(p) if ( (p) ) { delete [] (p); p = 0L; } | |
436 | #else | |
d8260b2f | 437 | #define wxDELETEA(p) if ( ((void *) (p)) != NULL ) { delete [] p; p = NULL; } |
c67daf87 | 438 | #endif /* __SGI__CC__ */ |
c801d85f KB |
439 | |
440 | /// size of statically declared array | |
441 | #define WXSIZEOF(array) (sizeof(array)/sizeof(array[0])) | |
442 | ||
8cb50e4b JS |
443 | // Use of these suppresses some compiler warnings |
444 | WXDLLEXPORT_DATA(extern const bool) wxTrue; | |
445 | WXDLLEXPORT_DATA(extern const bool) wxFalse; | |
446 | ||
c801d85f KB |
447 | // ---------------------------------------------------------------------------- |
448 | // compiler specific settings | |
449 | // ---------------------------------------------------------------------------- | |
450 | ||
451 | // to allow compiling with warning level 4 under Microsoft Visual C++ some | |
452 | // warnings just must be disabled | |
453 | #ifdef __VISUALC__ | |
454 | #pragma warning(disable: 4514) // unreferenced inline func has been removed | |
d4b67f95 | 455 | /* |
c801d85f | 456 | you might be tempted to disable this one also: triggered by CHECK and FAIL |
3f4a0c5b VZ |
457 | macros in debug.h, but it's, overall, a rather useful one, so I leave it and |
458 | will try to find some way to disable this warning just for CHECK/FAIL. Anyone? | |
c801d85f KB |
459 | */ |
460 | #pragma warning(disable: 4127) // conditional expression is constant | |
c801d85f KB |
461 | #endif // VC++ |
462 | ||
3f4a0c5b VZ |
463 | #if defined(__MWERKS__) |
464 | #undef try | |
465 | #undef except | |
466 | #undef finally | |
467 | #define except(x) catch(...) | |
468 | #endif // Metrowerks | |
8a60ae88 | 469 | |
85ee3474 UU |
470 | // where should i put this? we need to make sure of this as it breaks |
471 | // the <iostream> code. | |
ea57084d | 472 | #if !wxUSE_IOSTREAMH && defined(__WXDEBUG__) |
518f33a4 | 473 | #ifndef __MWERKS__ |
ea57084d | 474 | #undef __WXDEBUG__ |
85ee3474 | 475 | #endif |
518f33a4 | 476 | #endif |
85ee3474 | 477 | |
c801d85f KB |
478 | // Callback function type definition |
479 | typedef void (*wxFunction) (wxObject&, wxEvent&); | |
480 | ||
329e86bf RR |
481 | // ---------------------------------------------------------------------------- |
482 | // OS mnemonics -- Identify the running OS (useful for Windows) | |
483 | // ---------------------------------------------------------------------------- | |
484 | ||
485 | // Not all platforms are currently available or supported | |
486 | enum | |
487 | { | |
488 | wxUNKNOWN_PLATFORM, | |
489 | wxCURSES, // Text-only CURSES | |
490 | wxXVIEW_X, // Sun's XView OpenLOOK toolkit | |
491 | wxMOTIF_X, // OSF Motif 1.x.x | |
492 | wxCOSE_X, // OSF Common Desktop Environment | |
493 | wxNEXTSTEP, // NeXTStep | |
d597fcb7 RR |
494 | wxMACINTOSH, // Apple System 7 and 8 |
495 | wxBEOS, // BeOS | |
329e86bf RR |
496 | wxGTK, // GTK on X |
497 | wxGTK_WIN32, // GTK on Win32 | |
498 | wxGTK_OS2, // GTK on OS/2 | |
499 | wxGTK_BEOS, // GTK on BeOS | |
500 | wxQT, // Qt | |
501 | wxGEOS, // GEOS | |
502 | wxOS2_PM, // OS/2 Workplace | |
503 | wxWINDOWS, // Windows or WfW | |
504 | wxPENWINDOWS, // Windows for Pen Computing | |
505 | wxWINDOWS_NT, // Windows NT | |
506 | wxWIN32S, // Windows 32S API | |
507 | wxWIN95, // Windows 95 | |
508 | wxWIN386, // Watcom 32-bit supervisor modus | |
509 | wxMGL_UNIX, // MGL with direct hardware access | |
bac507e0 | 510 | wxMGL_X, // MGL on X |
329e86bf | 511 | wxMGL_WIN32, // MGL on Win32 |
45fcbf3b DW |
512 | wxMGL_OS2, // MGL on OS/2 |
513 | wxWINDOWS_OS2 // Native OS/2 PM | |
329e86bf RR |
514 | }; |
515 | ||
d716d967 | 516 | // ---------------------------------------------------------------------------- |
72cdf4c9 | 517 | // standard wxWindows types |
d716d967 RR |
518 | // ---------------------------------------------------------------------------- |
519 | ||
72cdf4c9 VZ |
520 | // the type for screen and DC coordinates |
521 | ||
522 | #if wxUSE_COMPATIBLE_COORD_TYPES | |
523 | // to ensure compatibility with 2.0, we must use long | |
524 | #define wxCoord long | |
525 | #else // !wxUSE_COMPATIBLE_COORD_TYPES | |
526 | #ifdef __WIN16__ | |
527 | // under Win16, int is too small, so use long to allow for bigger | |
528 | // virtual canvases | |
529 | typedef long wxCoord; | |
530 | #else // !Win16 | |
531 | // other platforms we support have at least 32bit int - quite enough | |
532 | typedef int wxCoord; | |
533 | #endif // Win16/!Win16 | |
534 | #endif // wxUSE_COMPATIBLE_COORD_TYPES/!wxUSE_COMPATIBLE_COORD_TYPES | |
535 | ||
d716d967 RR |
536 | // fixed length types |
537 | ||
56d7679d | 538 | #define wxInt8 char signed |
bac507e0 | 539 | #define wxUint8 char unsigned |
d716d967 RR |
540 | |
541 | #ifdef __WIN16__ | |
bac507e0 DW |
542 | #define wxInt16 int signed |
543 | #define wxUint16 int unsigned | |
544 | #define wxInt32 long signed | |
545 | #define wxUint32 long unsigned | |
d716d967 RR |
546 | #endif |
547 | ||
548 | #ifdef __WIN32__ | |
bac507e0 DW |
549 | #define wxInt16 short signed |
550 | #define wxUint16 short unsigned | |
551 | #define wxInt32 int signed | |
552 | #define wxUint32 int unsigned | |
d716d967 RR |
553 | #endif |
554 | ||
555 | #ifdef __WXMAC__ | |
bac507e0 DW |
556 | #define wxInt16 short signed |
557 | #define wxUint16 short unsigned | |
558 | #define wxInt32 int signed | |
559 | #define wxUint32 int unsigned | |
d716d967 RR |
560 | #endif |
561 | ||
562 | #ifdef __WXOS2__ | |
bac507e0 DW |
563 | #define wxInt16 short signed |
564 | #define wxUint16 short unsigned | |
565 | #define wxInt32 int signed | |
566 | #define wxUint32 int unsigned | |
d716d967 RR |
567 | #endif |
568 | ||
569 | #if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXOS2__) | |
570 | #if defined(SIZEOF_INT) | |
329e86bf | 571 | /* well, this shouldn't happen... */ |
bac507e0 DW |
572 | #define wxInt16 short signed |
573 | #define wxUint16 short unsigned | |
574 | #define wxInt32 int signed | |
575 | #define wxUint32 int unsigned | |
d716d967 | 576 | #else |
bac507e0 DW |
577 | #define wxInt16 short signed |
578 | #define wxUint16 short unsigned | |
579 | #define wxInt32 int signed | |
580 | #define wxUint32 int unsigned | |
d716d967 RR |
581 | #endif |
582 | #endif | |
583 | ||
56d7679d | 584 | #define wxByte wxUint8 |
bac507e0 | 585 | #define wxWord wxUint16 |
d716d967 | 586 | |
72cdf4c9 VZ |
587 | // ---------------------------------------------------------------------------- |
588 | // byte ordering related definition and macros | |
589 | // ---------------------------------------------------------------------------- | |
590 | ||
d716d967 RR |
591 | // byte sex |
592 | ||
593 | #define wxBIG_ENDIAN 4321 | |
594 | #define wxLITTLE_ENDIAN 1234 | |
595 | #define wxPDP_ENDIAN 3412 | |
596 | ||
597 | #ifdef WORDS_BIGENDIAN | |
598 | #define wxBYTE_ORDER wxBIG_ENDIAN | |
599 | #else | |
600 | #define wxBYTE_ORDER wxLITTLE_ENDIAN | |
601 | #endif | |
602 | ||
603 | // byte swapping | |
604 | ||
605 | #define wxUINT16_SWAP_ALWAYS(val) \ | |
606 | ((wxUint16) ( \ | |
607 | (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \ | |
608 | (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8))) | |
bac507e0 | 609 | |
d716d967 RR |
610 | #define wxINT16_SWAP_ALWAYS(val) \ |
611 | ((wxInt16) ( \ | |
7e2c43b8 RR |
612 | (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \ |
613 | (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8))) | |
bac507e0 | 614 | |
d716d967 RR |
615 | #define wxUINT32_SWAP_ALWAYS(val) \ |
616 | ((wxUint32) ( \ | |
617 | (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \ | |
618 | (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \ | |
619 | (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \ | |
620 | (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24))) | |
621 | ||
622 | #define wxINT32_SWAP_ALWAYS(val) \ | |
623 | ((wxInt32) ( \ | |
7e2c43b8 RR |
624 | (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \ |
625 | (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \ | |
626 | (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \ | |
627 | (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24))) | |
d716d967 RR |
628 | |
629 | // machine specific byte swapping | |
630 | ||
631 | #ifdef WORDS_BIGENDIAN | |
7e2c43b8 RR |
632 | #define wxUINT16_SWAP_ON_BE(val) wxUINT16_SWAP_ALWAYS(val) |
633 | #define wxINT16_SWAP_ON_BE(val) wxINT16_SWAP_ALWAYS(val) | |
634 | #define wxUINT16_SWAP_ON_LE(val) (val) | |
635 | #define wxINT16_SWAP_ON_LE(val) (val) | |
636 | #define wxUINT32_SWAP_ON_BE(val) wxUINT32_SWAP_ALWAYS(val) | |
637 | #define wxINT32_SWAP_ON_BE(val) wxINT32_SWAP_ALWAYS(val) | |
638 | #define wxUINT32_SWAP_ON_LE(val) (val) | |
639 | #define wxINT32_SWAP_ON_LE(val) (val) | |
d716d967 | 640 | #else |
7e2c43b8 RR |
641 | #define wxUINT16_SWAP_ON_LE(val) wxUINT16_SWAP_ALWAYS(val) |
642 | #define wxINT16_SWAP_ON_LE(val) wxINT16_SWAP_ALWAYS(val) | |
643 | #define wxUINT16_SWAP_ON_BE(val) (val) | |
644 | #define wxINT16_SWAP_ON_BE(val) (val) | |
645 | #define wxUINT32_SWAP_ON_LE(val) wxUINT32_SWAP_ALWAYS(val) | |
646 | #define wxINT32_SWAP_ON_LE(val) wxINT32_SWAP_ALWAYS(val) | |
647 | #define wxUINT32_SWAP_ON_BE(val) (val) | |
648 | #define wxINT32_SWAP_ON_BE(val) (val) | |
d716d967 RR |
649 | #endif |
650 | ||
d597fcb7 RR |
651 | // ---------------------------------------------------------------------------- |
652 | // Geometric flags | |
653 | // ---------------------------------------------------------------------------- | |
654 | ||
655 | enum wxGeometryCentre | |
656 | { | |
657 | wxCENTRE = 0x0001, | |
658 | wxCENTER = wxCENTRE | |
659 | }; | |
660 | ||
661 | // centering into frame rather than screen (obsolete) | |
662 | #define wxCENTER_FRAME 0x0000 | |
663 | // centre on screen rather than parent | |
664 | #define wxCENTRE_ON_SCREEN 0x0002 | |
665 | #define wxCENTER_ON_SCREEN wxCENTRE_ON_SCREEN | |
666 | ||
667 | enum wxOrientation | |
668 | { | |
669 | wxHORIZONTAL = 0x0004, | |
670 | wxVERTICAL = 0x0008, | |
2f78bd2c | 671 | |
d597fcb7 RR |
672 | wxBOTH = (wxVERTICAL | wxHORIZONTAL) |
673 | }; | |
674 | ||
675 | enum wxDirection | |
676 | { | |
677 | wxLEFT = 0x0010, | |
678 | wxRIGHT = 0x0020, | |
679 | wxUP = 0x0040, | |
680 | wxDOWN = 0x0080, | |
2f78bd2c | 681 | |
d597fcb7 RR |
682 | wxTOP = wxUP, |
683 | wxBOTTOM = wxDOWN, | |
2f78bd2c | 684 | |
d597fcb7 RR |
685 | wxNORTH = wxUP, |
686 | wxSOUTH = wxDOWN, | |
687 | wxWEST = wxLEFT, | |
688 | wxEAST = wxRIGHT, | |
2f78bd2c | 689 | |
d597fcb7 RR |
690 | wxALL = (wxUP | wxDOWN | wxRIGHT | wxLEFT) |
691 | }; | |
692 | ||
693 | enum wxAlignment | |
694 | { | |
695 | wxALIGN_NOT = 0x0000, | |
696 | wxALIGN_CENTER = 0x0100, | |
697 | wxALIGN_CENTRE = wxALIGN_CENTER, | |
698 | wxALIGN_LEFT = wxALIGN_NOT, | |
699 | wxALIGN_TOP = wxALIGN_NOT, | |
700 | wxALIGN_RIGHT = 0x0200, | |
701 | wxALIGN_BOTTOM = 0x0400 | |
702 | }; | |
703 | ||
704 | enum wxStretch | |
705 | { | |
706 | wxSTRETCH_NOT = 0x0000, | |
707 | wxSHRINK = 0x1000, | |
708 | wxGROW = 0x2000, | |
709 | wxEXPAND = wxGROW | |
710 | }; | |
711 | ||
d716d967 RR |
712 | // ---------------------------------------------------------------------------- |
713 | // Window style flags | |
714 | // ---------------------------------------------------------------------------- | |
715 | ||
c801d85f | 716 | /* |
c801d85f KB |
717 | * Values are chosen so they can be |'ed in a bit list. |
718 | * Some styles are used across more than one group, | |
719 | * so the values mustn't clash with others in the group. | |
720 | * Otherwise, numbers can be reused across groups. | |
721 | * | |
722 | * From version 1.66: | |
723 | * Window (cross-group) styles now take up the first half | |
724 | * of the flag, and control-specific styles the | |
725 | * second half. | |
d4b67f95 | 726 | * |
c801d85f KB |
727 | */ |
728 | ||
729 | /* | |
730 | * Window (Frame/dialog/subwindow/panel item) style flags | |
731 | */ | |
329e86bf RR |
732 | #define wxVSCROLL 0x80000000 |
733 | #define wxHSCROLL 0x40000000 | |
734 | #define wxCAPTION 0x20000000 | |
c801d85f KB |
735 | |
736 | // New styles | |
329e86bf RR |
737 | #define wxDOUBLE_BORDER 0x10000000 |
738 | #define wxSUNKEN_BORDER 0x08000000 | |
739 | #define wxRAISED_BORDER 0x04000000 | |
740 | #define wxBORDER 0x02000000 | |
741 | #define wxSIMPLE_BORDER wxBORDER | |
742 | #define wxSTATIC_BORDER 0x01000000 | |
743 | #define wxTRANSPARENT_WINDOW 0x00100000 | |
744 | #define wxNO_BORDER 0x00200000 | |
745 | ||
746 | #define wxUSER_COLOURS 0x00800000 | |
c801d85f KB |
747 | // Override CTL3D etc. control colour processing to |
748 | // allow own background colour | |
64693098 | 749 | // OBSOLETE - use wxNO_3D instead |
329e86bf | 750 | #define wxNO_3D 0x00800000 |
c801d85f | 751 | // Override CTL3D or native 3D styles for children |
329e86bf | 752 | #define wxCLIP_CHILDREN 0x00400000 |
565215b2 JS |
753 | // Clip children when painting, which reduces flicker in |
754 | // e.g. frames and splitter windows, but can't be used in | |
755 | // a panel where a static box must be 'transparent' (panel | |
756 | // paints the background for it) | |
c801d85f KB |
757 | |
758 | // Add this style to a panel to get tab traversal working | |
759 | // outside of dialogs. | |
329e86bf | 760 | #define wxTAB_TRAVERSAL 0x00080000 |
c801d85f | 761 | |
9bf84618 VZ |
762 | // Add this style if the control wants to get all keyboard messages (under |
763 | // Windows, it won't normally get the dialog navigation key events) | |
329e86bf | 764 | #define wxWANTS_CHARS 0x00040000 |
9bf84618 | 765 | |
329e86bf | 766 | // Make window retained (mostly Motif, I think) |
d9ea011f | 767 | #define wxRETAINED 0x00020000 |
329e86bf | 768 | #define wxBACKINGSTORE wxRETAINED |
c801d85f | 769 | |
d9ea011f VZ |
770 | // don't invalidate the whole window (resulting in a PAINT event) when the |
771 | // window is resized (currently, makes sense for wxMSW only) | |
193fe989 | 772 | #define wxNO_FULL_REPAINT_ON_RESIZE 0x00010000 |
c801d85f | 773 | /* |
329e86bf | 774 | * wxFrame/wxDialog style flags |
c801d85f | 775 | */ |
3f4a0c5b VZ |
776 | #define wxSTAY_ON_TOP 0x8000 |
777 | #define wxICONIZE 0x4000 | |
778 | #define wxMINIMIZE wxICONIZE | |
779 | #define wxMAXIMIZE 0x2000 | |
780 | #define wxTHICK_FRAME 0x1000 | |
3f480da3 | 781 | #define wxSYSTEM_MENU 0x0800 |
3f4a0c5b VZ |
782 | #define wxMINIMIZE_BOX 0x0400 |
783 | #define wxMAXIMIZE_BOX 0x0200 | |
784 | #define wxTINY_CAPTION_HORIZ 0x0100 | |
785 | #define wxTINY_CAPTION_VERT 0x0080 | |
786 | #define wxRESIZE_BOX wxMAXIMIZE_BOX | |
787 | #define wxRESIZE_BORDER 0x0040 | |
788 | #define wxDIALOG_MODAL 0x0020 | |
789 | #define wxDIALOG_MODELESS 0x0000 | |
329e86bf | 790 | // Add for normal Windows frame behaviour |
aeab10d0 | 791 | #define wxFRAME_FLOAT_ON_PARENT 0x0020 |
c801d85f | 792 | |
c801d85f KB |
793 | |
794 | #if WXWIN_COMPATIBILITY | |
795 | #define wxDEFAULT_FRAME wxDEFAULT_FRAME_STYLE | |
796 | #endif | |
797 | ||
329e86bf RR |
798 | #define wxDEFAULT_FRAME_STYLE \ |
799 | (wxSYSTEM_MENU | wxRESIZE_BORDER | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxTHICK_FRAME | wxSYSTEM_MENU | wxCAPTION | wxCLIP_CHILDREN) | |
aa64626e KB |
800 | |
801 | #ifdef __WXMSW__ | |
802 | # define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU|wxCAPTION|wxTHICK_FRAME) | |
803 | #else | |
804 | // Under Unix, the dialogs don't have a system menu. Specifying | |
805 | // wxSYSTEM_MENU here, will make a close button appear. | |
3f480da3 | 806 | # define wxDEFAULT_DIALOG_STYLE (wxCAPTION) |
aa64626e KB |
807 | #endif |
808 | ||
c801d85f | 809 | /* |
329e86bf | 810 | * wxExtDialog style flags |
c801d85f | 811 | */ |
329e86bf RR |
812 | #define wxED_CLIENT_MARGIN 0x0004 |
813 | #define wxED_BUTTONS_BOTTOM 0x0000 // has no effect | |
814 | #define wxED_BUTTONS_RIGHT 0x0002 | |
815 | #define wxED_STATIC_LINE 0x0001 | |
816 | ||
817 | #if defined(__WXMSW__) || defined(__WXMAC__) | |
818 | # define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN) | |
819 | #else | |
820 | # define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN|wxED_STATIC_LINE) | |
821 | #endif | |
c801d85f KB |
822 | |
823 | /* | |
824 | * wxToolBar style flags | |
825 | */ | |
329e86bf RR |
826 | #define wxTB_3DBUTTONS 0x8000 |
827 | #define wxTB_HORIZONTAL 0x0002 | |
828 | #define wxTB_VERTICAL 0x0004 | |
858b5bdd | 829 | // Flatbar/Coolbar under Win98/ GTK 1.2 |
329e86bf | 830 | #define wxTB_FLAT 0x0008 |
858b5bdd | 831 | // use native docking under GTK |
329e86bf | 832 | #define wxTB_DOCKABLE 0x0010 |
c801d85f KB |
833 | |
834 | /* | |
3502e687 | 835 | * wxMenuBar style flags |
c801d85f | 836 | */ |
3502e687 RR |
837 | // use native docking |
838 | #define wxMB_DOCKABLE 0x0001 | |
839 | ||
ae53c98c KB |
840 | /* |
841 | * wxMenu style flags | |
842 | */ | |
843 | #define wxMENU_TEAROFF 0x0001 | |
d4b67f95 | 844 | |
3502e687 RR |
845 | /* |
846 | * Apply to all panel items | |
847 | */ | |
c801d85f | 848 | #define wxCOLOURED 0x0800 |
c801d85f | 849 | #define wxFIXED_LENGTH 0x0400 |
c801d85f KB |
850 | |
851 | /* | |
852 | * Styles for wxListBox | |
853 | */ | |
c801d85f | 854 | #define wxLB_SORT 0x0010 |
9c331ded | 855 | #define wxLB_SINGLE 0x0020 |
c801d85f KB |
856 | #define wxLB_MULTIPLE 0x0040 |
857 | #define wxLB_EXTENDED 0x0080 | |
858 | // wxLB_OWNERDRAW is Windows-only | |
859 | #define wxLB_OWNERDRAW 0x0100 | |
9c331ded JS |
860 | #define wxLB_NEEDED_SB 0x0200 |
861 | #define wxLB_ALWAYS_SB 0x0400 | |
c801d85f KB |
862 | #define wxLB_HSCROLL wxHSCROLL |
863 | ||
864 | /* | |
865 | * wxTextCtrl style flags | |
866 | */ | |
867 | #define wxPROCESS_ENTER 0x0004 | |
868 | #define wxPASSWORD 0x0008 | |
869 | #define wxTE_PROCESS_ENTER wxPROCESS_ENTER | |
870 | #define wxTE_PASSWORD wxPASSWORD | |
871 | #define wxTE_READONLY 0x0010 | |
872 | #define wxTE_MULTILINE 0x0020 | |
2004484f | 873 | #define wxTE_PROCESS_TAB 0x0040 |
c49245f8 VZ |
874 | // this style means to use RICHEDIT control and does something only under wxMSW |
875 | // and Win32 and is silently ignored under all other platforms | |
876 | #define wxTE_RICH 0x0080 | |
b70ababc | 877 | #define wxTE_NO_VSCROLL 0x0100 |
7682a175 | 878 | #define wxTE_AUTO_SCROLL 0x0200 |
c801d85f KB |
879 | |
880 | /* | |
881 | * wxComboBox style flags | |
882 | */ | |
883 | #define wxCB_SIMPLE 0x0004 | |
c801d85f | 884 | #define wxCB_SORT 0x0008 |
9c331ded JS |
885 | #define wxCB_READONLY 0x0010 |
886 | #define wxCB_DROPDOWN 0x0020 | |
c801d85f KB |
887 | |
888 | /* | |
0544bc0a | 889 | * wxRadioBox style flags |
c801d85f | 890 | */ |
fa18b757 | 891 | // New, more intuitive names to specify majorDim argument |
0544bc0a RR |
892 | #define wxRA_SPECIFY_COLS wxHORIZONTAL |
893 | #define wxRA_SPECIFY_ROWS wxVERTICAL | |
fa18b757 | 894 | // Old names for compatibility |
c801d85f KB |
895 | #define wxRA_HORIZONTAL wxHORIZONTAL |
896 | #define wxRA_VERTICAL wxVERTICAL | |
0544bc0a RR |
897 | |
898 | /* | |
899 | * wxRadioButton style flag | |
900 | */ | |
c801d85f KB |
901 | #define wxRB_GROUP 0x0004 |
902 | ||
903 | /* | |
904 | * wxGauge flags | |
905 | */ | |
c801d85f KB |
906 | #define wxGA_HORIZONTAL wxHORIZONTAL |
907 | #define wxGA_VERTICAL wxVERTICAL | |
e115e771 | 908 | #define wxGA_PROGRESSBAR 0x0010 |
329e86bf | 909 | // Windows only |
e115e771 | 910 | #define wxGA_SMOOTH 0x0020 |
c801d85f KB |
911 | |
912 | /* | |
913 | * wxSlider flags | |
914 | */ | |
2f78bd2c RD |
915 | #define wxSL_HORIZONTAL wxHORIZONTAL // 4 |
916 | #define wxSL_VERTICAL wxVERTICAL // 8 | |
c801d85f KB |
917 | // The next one is obsolete - use scroll events instead |
918 | #define wxSL_NOTIFY_DRAG 0x0000 | |
2f78bd2c | 919 | #define wxSL_AUTOTICKS 0x0010 |
c801d85f KB |
920 | // #define wxSL_MANUALTICKS 0x0010 |
921 | #define wxSL_LABELS 0x0020 | |
922 | #define wxSL_LEFT 0x0040 | |
923 | #define wxSL_TOP 0x0080 | |
924 | #define wxSL_RIGHT 0x0100 | |
925 | #define wxSL_BOTTOM 0x0200 | |
926 | #define wxSL_BOTH 0x0400 | |
927 | #define wxSL_SELRANGE 0x0800 | |
928 | ||
929 | /* | |
930 | * wxScrollBar flags | |
931 | */ | |
c801d85f KB |
932 | #define wxSB_HORIZONTAL wxHORIZONTAL |
933 | #define wxSB_VERTICAL wxVERTICAL | |
934 | ||
935 | /* | |
b0351fc9 | 936 | * wxButton flags (Win32 only) |
c801d85f | 937 | */ |
c801d85f KB |
938 | #define wxBU_AUTODRAW 0x0004 |
939 | #define wxBU_NOAUTODRAW 0x0000 | |
940 | ||
941 | /* | |
942 | * wxTreeCtrl flags | |
943 | */ | |
c801d85f KB |
944 | #define wxTR_HAS_BUTTONS 0x0004 |
945 | #define wxTR_EDIT_LABELS 0x0008 | |
64693098 | 946 | #define wxTR_LINES_AT_ROOT 0x0010 |
c801d85f | 947 | |
c25ccf85 RR |
948 | #define wxTR_SINGLE 0x0000 |
949 | #define wxTR_MULTIPLE 0x0020 | |
950 | #define wxTR_EXTENDED 0x0040 | |
5ea47806 | 951 | #define wxTR_HAS_VARIABLE_ROW_HEIGHT 0x0080 |
c25ccf85 | 952 | |
c801d85f KB |
953 | /* |
954 | * wxListCtrl flags | |
955 | */ | |
c801d85f KB |
956 | #define wxLC_ICON 0x0004 |
957 | #define wxLC_SMALL_ICON 0x0008 | |
958 | #define wxLC_LIST 0x0010 | |
959 | #define wxLC_REPORT 0x0020 | |
960 | #define wxLC_ALIGN_TOP 0x0040 | |
961 | #define wxLC_ALIGN_LEFT 0x0080 | |
962 | #define wxLC_AUTOARRANGE 0x0100 | |
963 | #define wxLC_USER_TEXT 0x0200 | |
964 | #define wxLC_EDIT_LABELS 0x0400 | |
965 | #define wxLC_NO_HEADER 0x0800 | |
966 | #define wxLC_NO_SORT_HEADER 0x1000 | |
967 | #define wxLC_SINGLE_SEL 0x2000 | |
968 | #define wxLC_SORT_ASCENDING 0x4000 | |
969 | #define wxLC_SORT_DESCENDING 0x8000 | |
970 | ||
971 | #define wxLC_MASK_TYPE (wxLC_ICON | wxLC_SMALL_ICON | wxLC_LIST | wxLC_REPORT) | |
972 | #define wxLC_MASK_ALIGN (wxLC_ALIGN_TOP | wxLC_ALIGN_LEFT) | |
973 | #define wxLC_MASK_SORT (wxLC_SORT_ASCENDING | wxLC_SORT_DESCENDING) | |
974 | ||
975 | // Omitted because (a) too much detail (b) not enough style flags | |
976 | // #define wxLC_NO_SCROLL | |
977 | // #define wxLC_NO_LABEL_WRAP | |
978 | // #define wxLC_OWNERDRAW_FIXED | |
979 | // #define wxLC_SHOW_SEL_ALWAYS | |
980 | ||
981 | /* | |
982 | * wxSpinButton flags | |
983 | */ | |
a3e7d24d RR |
984 | #define wxSP_HORIZONTAL wxHORIZONTAL // 4 |
985 | #define wxSP_VERTICAL wxVERTICAL // 8 | |
986 | #define wxSP_ARROW_KEYS 0x0010 | |
987 | #define wxSP_WRAP 0x0020 | |
c801d85f KB |
988 | |
989 | /* | |
cd2df130 | 990 | * wxSplitterWindow flags |
c801d85f | 991 | */ |
a3e7d24d RR |
992 | #define wxSP_NOBORDER 0x0000 |
993 | #define wxSP_3D 0x0010 | |
994 | #define wxSP_BORDER 0x0020 | |
995 | #define wxSP_PERMIT_UNSPLIT 0x0040 | |
996 | #define wxSP_LIVE_UPDATE 0x0080 | |
c801d85f | 997 | |
cd2df130 JS |
998 | /* |
999 | * wxFrame extra flags | |
1000 | */ | |
cd2df130 JS |
1001 | // No title on taskbar |
1002 | #define wxFRAME_TOOL_WINDOW 0x0004 | |
1003 | ||
c801d85f KB |
1004 | /* |
1005 | * wxTabCtrl flags | |
1006 | */ | |
329e86bf | 1007 | #define wxTC_MULTILINE 0x0000 |
a3e7d24d RR |
1008 | #define wxTC_RIGHTJUSTIFY 0x0010 |
1009 | #define wxTC_FIXEDWIDTH 0x0020 | |
1010 | #define wxTC_OWNERDRAW 0x0040 | |
10b959e3 | 1011 | |
58a8ab88 JS |
1012 | /* |
1013 | * wxNotebook flags | |
1014 | */ | |
a3e7d24d | 1015 | #define wxNB_FIXEDWIDTH 0x0010 |
4a0253b8 RS |
1016 | #define wxNB_LEFT 0x0020 |
1017 | #define wxNB_RIGHT 0x0040 | |
1018 | #define wxNB_BOTTOM 0x0080 | |
58a8ab88 | 1019 | |
c801d85f KB |
1020 | /* |
1021 | * wxStatusBar95 flags | |
1022 | */ | |
a3e7d24d | 1023 | #define wxST_SIZEGRIP 0x0010 |
c801d85f | 1024 | |
b0351fc9 RR |
1025 | /* |
1026 | * wxStaticLine flags | |
1027 | */ | |
329e86bf RR |
1028 | #define wxLI_HORIZONTAL wxHORIZONTAL |
1029 | #define wxLI_VERTICAL wxVERTICAL | |
b0351fc9 | 1030 | |
9726da4f VZ |
1031 | /* |
1032 | * wxProgressDialog flags | |
1033 | */ | |
329e86bf RR |
1034 | #define wxPD_CAN_ABORT 0x0001 |
1035 | #define wxPD_APP_MODAL 0x0002 | |
1036 | #define wxPD_AUTO_HIDE 0x0004 | |
1037 | #define wxPD_ELAPSED_TIME 0x0008 | |
1038 | #define wxPD_ESTIMATED_TIME 0x0010 | |
1039 | #define wxPD_REMAINING_TIME 0x0020 | |
b0351fc9 | 1040 | |
ea8fe90e VS |
1041 | /* |
1042 | * wxHtmlWindow flags | |
1043 | */ | |
1044 | #define wxHW_SCROLLBAR_NEVER 0x0002 | |
1045 | #define wxHW_SCROLLBAR_AUTO 0x0004 | |
1046 | ||
c801d85f | 1047 | /* |
bac507e0 | 1048 | * extended dialog specifiers. these values are stored in a different |
329e86bf RR |
1049 | * flag and thus do not overlap with other style flags. note that these |
1050 | * values do not correspond to the return values of the dialogs (for | |
bac507e0 | 1051 | * those values, look at the wxID_XXX defines). |
c801d85f | 1052 | */ |
d597fcb7 RR |
1053 | |
1054 | // wxCENTRE already defined as 0x00000001 | |
1055 | #define wxOK 0x00000004 | |
1056 | #define wxYES_NO 0x00000008 | |
1057 | #define wxCANCEL 0x00000010 | |
1058 | #define wxYES 0x00000020 | |
1059 | #define wxNO 0x00000040 | |
1060 | #define wxNO_DEFAULT 0x00000080 | |
329e86bf RR |
1061 | #define wxYES_DEFAULT 0x00000000 // has no effect |
1062 | ||
d597fcb7 RR |
1063 | #define wxICON_EXCLAMATION 0x00000100 |
1064 | #define wxICON_HAND 0x00000200 | |
ebea0891 KB |
1065 | #define wxICON_WARNING wxICON_EXCLAMATION |
1066 | #define wxICON_ERROR wxICON_HAND | |
d597fcb7 RR |
1067 | #define wxICON_QUESTION 0x00000400 |
1068 | #define wxICON_INFORMATION 0x00000800 | |
329e86bf RR |
1069 | #define wxICON_STOP wxICON_HAND |
1070 | #define wxICON_ASTERISK wxICON_INFORMATION | |
d597fcb7 | 1071 | #define wxICON_MASK (0x00000100|0x00000200|0x00000400|0x00000800) |
329e86bf | 1072 | |
d597fcb7 RR |
1073 | #define wxFORWARD 0x00001000 |
1074 | #define wxBACKWARD 0x00002000 | |
1075 | #define wxRESET 0x00004000 | |
1076 | #define wxHELP 0x00008000 | |
1077 | #define wxMORE 0x00010000 | |
1078 | #define wxSETUP 0x00020000 | |
329e86bf RR |
1079 | |
1080 | // ---------------------------------------------------------------------------- | |
1081 | // standard IDs | |
1082 | // ---------------------------------------------------------------------------- | |
1083 | ||
1084 | // Standard menu IDs | |
1085 | #define wxID_LOWEST 4999 | |
1086 | ||
1087 | #define wxID_OPEN 5000 | |
1088 | #define wxID_CLOSE 5001 | |
1089 | #define wxID_NEW 5002 | |
1090 | #define wxID_SAVE 5003 | |
1091 | #define wxID_SAVEAS 5004 | |
1092 | #define wxID_REVERT 5005 | |
1093 | #define wxID_EXIT 5006 | |
1094 | #define wxID_UNDO 5007 | |
1095 | #define wxID_REDO 5008 | |
1096 | #define wxID_HELP 5009 | |
1097 | #define wxID_PRINT 5010 | |
1098 | #define wxID_PRINT_SETUP 5011 | |
1099 | #define wxID_PREVIEW 5012 | |
1100 | #define wxID_ABOUT 5013 | |
1101 | #define wxID_HELP_CONTENTS 5014 | |
1102 | #define wxID_HELP_COMMANDS 5015 | |
1103 | #define wxID_HELP_PROCEDURES 5016 | |
1104 | #define wxID_HELP_CONTEXT 5017 | |
1105 | ||
1106 | #define wxID_CUT 5030 | |
1107 | #define wxID_COPY 5031 | |
1108 | #define wxID_PASTE 5032 | |
1109 | #define wxID_CLEAR 5033 | |
1110 | #define wxID_FIND 5034 | |
1111 | #define wxID_DUPLICATE 5035 | |
1112 | #define wxID_SELECTALL 5036 | |
1113 | ||
1114 | #define wxID_FILE1 5050 | |
1115 | #define wxID_FILE2 5051 | |
1116 | #define wxID_FILE3 5052 | |
1117 | #define wxID_FILE4 5053 | |
1118 | #define wxID_FILE5 5054 | |
1119 | #define wxID_FILE6 5055 | |
1120 | #define wxID_FILE7 5056 | |
1121 | #define wxID_FILE8 5057 | |
1122 | #define wxID_FILE9 5058 | |
1123 | ||
1124 | // Standard button IDs | |
1125 | #define wxID_OK 5100 | |
1126 | #define wxID_CANCEL 5101 | |
1127 | #define wxID_APPLY 5102 | |
1128 | #define wxID_YES 5103 | |
1129 | #define wxID_NO 5104 | |
1130 | #define wxID_STATIC 5105 | |
1131 | #define wxID_FORWARD 5106 | |
1132 | #define wxID_BACKWARD 5107 | |
1133 | #define wxID_DEFAULT 5108 | |
1134 | #define wxID_MORE 5109 | |
1135 | #define wxID_SETUP 5110 | |
1136 | #define wxID_RESET 5111 | |
1137 | ||
a16d3c04 KB |
1138 | // IDs used by generic file dialog (11 consecutive starting from this value) |
1139 | #define wxID_FILEDLGG 5900 | |
329e86bf RR |
1140 | #define wxID_HIGHEST 5999 |
1141 | ||
329e86bf RR |
1142 | // ---------------------------------------------------------------------------- |
1143 | // Possible SetSize flags | |
1144 | // ---------------------------------------------------------------------------- | |
1145 | ||
1146 | // Use internally-calculated width if -1 | |
1147 | #define wxSIZE_AUTO_WIDTH 0x0001 | |
1148 | // Use internally-calculated height if -1 | |
1149 | #define wxSIZE_AUTO_HEIGHT 0x0002 | |
1150 | // Use internally-calculated width and height if each is -1 | |
1151 | #define wxSIZE_AUTO (wxSIZE_AUTO_WIDTH|wxSIZE_AUTO_HEIGHT) | |
1152 | // Ignore missing (-1) dimensions (use existing). | |
1153 | // For readability only: test for wxSIZE_AUTO_WIDTH/HEIGHT in code. | |
1154 | #define wxSIZE_USE_EXISTING 0x0000 | |
1155 | // Allow -1 as a valid position | |
1156 | #define wxSIZE_ALLOW_MINUS_ONE 0x0004 | |
1157 | // Don't do parent client adjustments (for implementation only) | |
1158 | #define wxSIZE_NO_ADJUSTMENTS 0x0008 | |
1159 | ||
1160 | // ---------------------------------------------------------------------------- | |
1161 | // GDI descriptions | |
1162 | // ---------------------------------------------------------------------------- | |
c801d85f KB |
1163 | |
1164 | enum { | |
1165 | // Text font families | |
1166 | wxDEFAULT = 70, | |
1167 | wxDECORATIVE, | |
1168 | wxROMAN, | |
1169 | wxSCRIPT, | |
1170 | wxSWISS, | |
1171 | wxMODERN, | |
1172 | wxTELETYPE, /* @@@@ */ | |
1173 | ||
1174 | // Proportional or Fixed width fonts (not yet used) | |
1175 | wxVARIABLE = 80, | |
1176 | wxFIXED, | |
1177 | ||
1178 | wxNORMAL = 90, | |
1179 | wxLIGHT, | |
1180 | wxBOLD, | |
1181 | // Also wxNORMAL for normal (non-italic text) | |
1182 | wxITALIC, | |
1183 | wxSLANT, | |
1184 | ||
1185 | // Pen styles | |
1186 | wxSOLID = 100, | |
1187 | wxDOT, | |
1188 | wxLONG_DASH, | |
1189 | wxSHORT_DASH, | |
1190 | wxDOT_DASH, | |
1191 | wxUSER_DASH, | |
1192 | ||
1193 | wxTRANSPARENT, | |
1194 | ||
1195 | // Brush & Pen Stippling. Note that a stippled pen cannot be dashed!! | |
1196 | // Note also that stippling a Pen IS meaningfull, because a Line is | |
1197 | // drawn with a Pen, and without any Brush -- and it can be stippled. | |
1198 | wxSTIPPLE = 110, | |
1199 | wxBDIAGONAL_HATCH, | |
1200 | wxCROSSDIAG_HATCH, | |
1201 | wxFDIAGONAL_HATCH, | |
1202 | wxCROSS_HATCH, | |
1203 | wxHORIZONTAL_HATCH, | |
1204 | wxVERTICAL_HATCH, | |
3f4a0c5b | 1205 | #define IS_HATCH(s) ((s)>=wxBDIAGONAL_HATCH && (s)<=wxVERTICAL_HATCH) |
c801d85f KB |
1206 | |
1207 | wxJOIN_BEVEL = 120, | |
1208 | wxJOIN_MITER, | |
1209 | wxJOIN_ROUND, | |
1210 | ||
1211 | wxCAP_ROUND = 130, | |
1212 | wxCAP_PROJECTING, | |
1213 | wxCAP_BUTT | |
1214 | }; | |
1215 | ||
1216 | ||
1217 | // Logical ops | |
3f4a0c5b | 1218 | typedef enum |
83624f79 | 1219 | { |
c801d85f KB |
1220 | wxCLEAR, // 0 |
1221 | wxXOR, // src XOR dst | |
1222 | wxINVERT, // NOT dst | |
1223 | wxOR_REVERSE, // src OR (NOT dst) | |
1224 | wxAND_REVERSE,// src AND (NOT dst) | |
1225 | wxCOPY, // src | |
1226 | wxAND, // src AND dst | |
1227 | wxAND_INVERT, // (NOT src) AND dst | |
1228 | wxNO_OP, // dst | |
1229 | wxNOR, // (NOT src) AND (NOT dst) | |
1230 | wxEQUIV, // (NOT src) XOR dst | |
1231 | wxSRC_INVERT, // (NOT src) | |
1232 | wxOR_INVERT, // (NOT src) OR dst | |
1233 | wxNAND, // (NOT src) OR (NOT dst) | |
1234 | wxOR, // src OR dst | |
1235 | wxSET, // 1 | |
1236 | wxSRC_OR, // source _bitmap_ OR destination | |
1237 | wxSRC_AND // source _bitmap_ AND destination | |
1238 | } form_ops_t; | |
1239 | ||
329e86bf | 1240 | /* Flood styles */ |
c801d85f KB |
1241 | #define wxFLOOD_SURFACE 1 |
1242 | #define wxFLOOD_BORDER 2 | |
1243 | ||
329e86bf | 1244 | /* Polygon filling mode */ |
c801d85f KB |
1245 | #define wxODDEVEN_RULE 1 |
1246 | #define wxWINDING_RULE 2 | |
1247 | ||
329e86bf | 1248 | /* ToolPanel in wxFrame */ |
3f4a0c5b VZ |
1249 | #define wxTOOL_TOP 1 |
1250 | #define wxTOOL_BOTTOM 2 | |
1251 | #define wxTOOL_LEFT 3 | |
1252 | #define wxTOOL_RIGHT 4 | |
c801d85f | 1253 | |
9e2896e5 VZ |
1254 | // the values of the format constants should be the same as correspondign |
1255 | // CF_XXX constants in Windows API | |
3f480da3 | 1256 | enum wxDataFormatId |
e3e65dac | 1257 | { |
9e2896e5 VZ |
1258 | wxDF_INVALID = 0, |
1259 | wxDF_TEXT = 1, /* CF_TEXT */ | |
1260 | wxDF_BITMAP = 2, /* CF_BITMAP */ | |
1261 | wxDF_METAFILE = 3, /* CF_METAFILEPICT */ | |
1262 | wxDF_SYLK = 4, | |
1263 | wxDF_DIF = 5, | |
1264 | wxDF_TIFF = 6, | |
1265 | wxDF_OEMTEXT = 7, /* CF_OEMTEXT */ | |
1266 | wxDF_DIB = 8, /* CF_DIB */ | |
1267 | wxDF_PALETTE = 9, | |
1268 | wxDF_PENDATA = 10, | |
1269 | wxDF_RIFF = 11, | |
1270 | wxDF_WAVE = 12, | |
1271 | wxDF_UNICODETEXT = 13, | |
1272 | wxDF_ENHMETAFILE = 14, | |
1273 | wxDF_FILENAME = 15, /* CF_HDROP */ | |
1274 | wxDF_LOCALE = 16, | |
1275 | wxDF_PRIVATE = 20, | |
1276 | wxDF_MAX | |
e3e65dac | 1277 | }; |
c801d85f | 1278 | |
83624f79 | 1279 | /* Virtual keycodes */ |
e3e65dac | 1280 | |
3f4a0c5b | 1281 | enum wxKeyCode |
83624f79 | 1282 | { |
adde8c98 RR |
1283 | WXK_BACK = 8, |
1284 | WXK_TAB = 9, | |
1285 | WXK_RETURN = 13, | |
1286 | WXK_ESCAPE = 27, | |
1287 | WXK_SPACE = 32, | |
1288 | WXK_DELETE = 127, | |
1289 | ||
1290 | WXK_START = 300, | |
1291 | WXK_LBUTTON, | |
1292 | WXK_RBUTTON, | |
1293 | WXK_CANCEL, | |
1294 | WXK_MBUTTON, | |
1295 | WXK_CLEAR, | |
1296 | WXK_SHIFT, | |
861ccde4 | 1297 | WXK_ALT, |
adde8c98 RR |
1298 | WXK_CONTROL, |
1299 | WXK_MENU, | |
1300 | WXK_PAUSE, | |
1301 | WXK_CAPITAL, | |
1302 | WXK_PRIOR, /* Page up */ | |
1303 | WXK_NEXT, /* Page down */ | |
1304 | WXK_END, | |
1305 | WXK_HOME, | |
1306 | WXK_LEFT, | |
1307 | WXK_UP, | |
1308 | WXK_RIGHT, | |
1309 | WXK_DOWN, | |
1310 | WXK_SELECT, | |
1311 | WXK_PRINT, | |
1312 | WXK_EXECUTE, | |
1313 | WXK_SNAPSHOT, | |
1314 | WXK_INSERT, | |
1315 | WXK_HELP, | |
1316 | WXK_NUMPAD0, | |
1317 | WXK_NUMPAD1, | |
1318 | WXK_NUMPAD2, | |
1319 | WXK_NUMPAD3, | |
1320 | WXK_NUMPAD4, | |
1321 | WXK_NUMPAD5, | |
1322 | WXK_NUMPAD6, | |
1323 | WXK_NUMPAD7, | |
1324 | WXK_NUMPAD8, | |
1325 | WXK_NUMPAD9, | |
1326 | WXK_MULTIPLY, | |
1327 | WXK_ADD, | |
1328 | WXK_SEPARATOR, | |
1329 | WXK_SUBTRACT, | |
1330 | WXK_DECIMAL, | |
1331 | WXK_DIVIDE, | |
1332 | WXK_F1, | |
1333 | WXK_F2, | |
1334 | WXK_F3, | |
1335 | WXK_F4, | |
1336 | WXK_F5, | |
1337 | WXK_F6, | |
1338 | WXK_F7, | |
1339 | WXK_F8, | |
1340 | WXK_F9, | |
1341 | WXK_F10, | |
1342 | WXK_F11, | |
1343 | WXK_F12, | |
1344 | WXK_F13, | |
1345 | WXK_F14, | |
1346 | WXK_F15, | |
1347 | WXK_F16, | |
1348 | WXK_F17, | |
1349 | WXK_F18, | |
1350 | WXK_F19, | |
1351 | WXK_F20, | |
1352 | WXK_F21, | |
1353 | WXK_F22, | |
1354 | WXK_F23, | |
1355 | WXK_F24, | |
1356 | WXK_NUMLOCK, | |
1357 | WXK_SCROLL, | |
1358 | WXK_PAGEUP, | |
1359 | WXK_PAGEDOWN, | |
3f480da3 | 1360 | |
adde8c98 RR |
1361 | WXK_NUMPAD_SPACE, |
1362 | WXK_NUMPAD_TAB, | |
1363 | WXK_NUMPAD_ENTER, | |
1364 | WXK_NUMPAD_F1, | |
1365 | WXK_NUMPAD_F2, | |
1366 | WXK_NUMPAD_F3, | |
1367 | WXK_NUMPAD_F4, | |
1368 | WXK_NUMPAD_HOME, | |
1369 | WXK_NUMPAD_LEFT, | |
1370 | WXK_NUMPAD_UP, | |
1371 | WXK_NUMPAD_RIGHT, | |
1372 | WXK_NUMPAD_DOWN, | |
1373 | WXK_NUMPAD_PRIOR, | |
1374 | WXK_NUMPAD_PAGEUP, | |
b78cd60d | 1375 | WXK_NUMPAD_NEXT, |
adde8c98 RR |
1376 | WXK_NUMPAD_PAGEDOWN, |
1377 | WXK_NUMPAD_END, | |
1378 | WXK_NUMPAD_BEGIN, | |
1379 | WXK_NUMPAD_INSERT, | |
1380 | WXK_NUMPAD_DELETE, | |
1381 | WXK_NUMPAD_EQUAL, | |
1382 | WXK_NUMPAD_MULTIPLY, | |
1383 | WXK_NUMPAD_ADD, | |
1384 | WXK_NUMPAD_SEPARATOR, | |
1385 | WXK_NUMPAD_SUBTRACT, | |
1386 | WXK_NUMPAD_DECIMAL, | |
1387 | WXK_NUMPAD_DIVIDE | |
c801d85f KB |
1388 | }; |
1389 | ||
e3065973 JS |
1390 | // Mapping modes (as per Windows) |
1391 | #define wxMM_TEXT 1 | |
1392 | #define wxMM_LOMETRIC 2 | |
1393 | #define wxMM_HIMETRIC 3 | |
1394 | #define wxMM_LOENGLISH 4 | |
1395 | #define wxMM_HIENGLISH 5 | |
1396 | #define wxMM_TWIPS 6 | |
1397 | #define wxMM_ISOTROPIC 7 | |
1398 | #define wxMM_ANISOTROPIC 8 | |
1399 | ||
1400 | #define wxMM_POINTS 9 | |
1401 | #define wxMM_METRIC 10 | |
1402 | ||
83624f79 | 1403 | /* Shortcut for easier dialog-unit-to-pixel conversion */ |
387a3b02 | 1404 | #define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt) |
fd71308f | 1405 | |
7bcb11d3 JS |
1406 | /* Paper types */ |
1407 | typedef enum { | |
1408 | wxPAPER_NONE, // Use specific dimensions | |
1409 | wxPAPER_LETTER, // Letter, 8 1/2 by 11 inches | |
1410 | wxPAPER_LEGAL, // Legal, 8 1/2 by 14 inches | |
1411 | wxPAPER_A4, // A4 Sheet, 210 by 297 millimeters | |
1412 | wxPAPER_CSHEET, // C Sheet, 17 by 22 inches | |
1413 | wxPAPER_DSHEET, // D Sheet, 22 by 34 inches | |
1414 | wxPAPER_ESHEET, // E Sheet, 34 by 44 inches | |
1415 | wxPAPER_LETTERSMALL, // Letter Small, 8 1/2 by 11 inches | |
1416 | wxPAPER_TABLOID, // Tabloid, 11 by 17 inches | |
1417 | wxPAPER_LEDGER, // Ledger, 17 by 11 inches | |
1418 | wxPAPER_STATEMENT, // Statement, 5 1/2 by 8 1/2 inches | |
1419 | wxPAPER_EXECUTIVE, // Executive, 7 1/4 by 10 1/2 inches | |
1420 | wxPAPER_A3, // A3 sheet, 297 by 420 millimeters | |
1421 | wxPAPER_A4SMALL, // A4 small sheet, 210 by 297 millimeters | |
1422 | wxPAPER_A5, // A5 sheet, 148 by 210 millimeters | |
1423 | wxPAPER_B4, // B4 sheet, 250 by 354 millimeters | |
1424 | wxPAPER_B5, // B5 sheet, 182-by-257-millimeter paper | |
1425 | wxPAPER_FOLIO, // Folio, 8-1/2-by-13-inch paper | |
1426 | wxPAPER_QUARTO, // Quarto, 215-by-275-millimeter paper | |
1427 | wxPAPER_10X14, // 10-by-14-inch sheet | |
1428 | wxPAPER_11X17, // 11-by-17-inch sheet | |
1429 | wxPAPER_NOTE, // Note, 8 1/2 by 11 inches | |
1430 | wxPAPER_ENV_9, // #9 Envelope, 3 7/8 by 8 7/8 inches | |
1431 | wxPAPER_ENV_10, // #10 Envelope, 4 1/8 by 9 1/2 inches | |
1432 | wxPAPER_ENV_11, // #11 Envelope, 4 1/2 by 10 3/8 inches | |
1433 | wxPAPER_ENV_12, // #12 Envelope, 4 3/4 by 11 inches | |
1434 | wxPAPER_ENV_14, // #14 Envelope, 5 by 11 1/2 inches | |
1435 | wxPAPER_ENV_DL, // DL Envelope, 110 by 220 millimeters | |
1436 | wxPAPER_ENV_C5, // C5 Envelope, 162 by 229 millimeters | |
1437 | wxPAPER_ENV_C3, // C3 Envelope, 324 by 458 millimeters | |
1438 | wxPAPER_ENV_C4, // C4 Envelope, 229 by 324 millimeters | |
1439 | wxPAPER_ENV_C6, // C6 Envelope, 114 by 162 millimeters | |
1440 | wxPAPER_ENV_C65, // C65 Envelope, 114 by 229 millimeters | |
1441 | wxPAPER_ENV_B4, // B4 Envelope, 250 by 353 millimeters | |
1442 | wxPAPER_ENV_B5, // B5 Envelope, 176 by 250 millimeters | |
1443 | wxPAPER_ENV_B6, // B6 Envelope, 176 by 125 millimeters | |
1444 | wxPAPER_ENV_ITALY, // Italy Envelope, 110 by 230 millimeters | |
1445 | wxPAPER_ENV_MONARCH, // Monarch Envelope, 3 7/8 by 7 1/2 inches | |
1446 | wxPAPER_ENV_PERSONAL, // 6 3/4 Envelope, 3 5/8 by 6 1/2 inches | |
1447 | wxPAPER_FANFOLD_US, // US Std Fanfold, 14 7/8 by 11 inches | |
1448 | wxPAPER_FANFOLD_STD_GERMAN, // German Std Fanfold, 8 1/2 by 12 inches | |
1449 | wxPAPER_FANFOLD_LGL_GERMAN, // German Legal Fanfold, 8 1/2 by 13 inches | |
1450 | ||
1451 | wxPAPER_ISO_B4, // B4 (ISO) 250 x 353 mm | |
1452 | wxPAPER_JAPANESE_POSTCARD, // Japanese Postcard 100 x 148 mm | |
1453 | wxPAPER_9X11, // 9 x 11 in | |
1454 | wxPAPER_10X11, // 10 x 11 in | |
1455 | wxPAPER_15X11, // 15 x 11 in | |
1456 | wxPAPER_ENV_INVITE, // Envelope Invite 220 x 220 mm | |
1457 | wxPAPER_LETTER_EXTRA, // Letter Extra 9 \275 x 12 in | |
1458 | wxPAPER_LEGAL_EXTRA, // Legal Extra 9 \275 x 15 in | |
1459 | wxPAPER_TABLOID_EXTRA, // Tabloid Extra 11.69 x 18 in | |
1460 | wxPAPER_A4_EXTRA, // A4 Extra 9.27 x 12.69 in | |
1461 | wxPAPER_LETTER_TRANSVERSE, // Letter Transverse 8 \275 x 11 in | |
1462 | wxPAPER_A4_TRANSVERSE, // A4 Transverse 210 x 297 mm | |
1463 | wxPAPER_LETTER_EXTRA_TRANSVERSE, // Letter Extra Transverse 9\275 x 12 in | |
1464 | wxPAPER_A_PLUS, // SuperA/SuperA/A4 227 x 356 mm | |
1465 | wxPAPER_B_PLUS, // SuperB/SuperB/A3 305 x 487 mm | |
1466 | wxPAPER_LETTER_PLUS, // Letter Plus 8.5 x 12.69 in | |
1467 | wxPAPER_A4_PLUS, // A4 Plus 210 x 330 mm | |
1468 | wxPAPER_A5_TRANSVERSE, // A5 Transverse 148 x 210 mm | |
1469 | wxPAPER_B5_TRANSVERSE, // B5 (JIS) Transverse 182 x 257 mm | |
1470 | wxPAPER_A3_EXTRA, // A3 Extra 322 x 445 mm | |
1471 | wxPAPER_A5_EXTRA, // A5 Extra 174 x 235 mm | |
1472 | wxPAPER_B5_EXTRA, // B5 (ISO) Extra 201 x 276 mm | |
1473 | wxPAPER_A2, // A2 420 x 594 mm | |
1474 | wxPAPER_A3_TRANSVERSE, // A3 Transverse 297 x 420 mm | |
1475 | wxPAPER_A3_EXTRA_TRANSVERSE // A3 Extra Transverse 322 x 445 mm | |
1476 | ||
1477 | } wxPaperSize ; | |
1478 | ||
1479 | /* Printing orientation */ | |
1480 | #ifndef wxPORTRAIT | |
1481 | #define wxPORTRAIT 1 | |
1482 | #define wxLANDSCAPE 2 | |
1483 | #endif | |
1484 | ||
1485 | /* Duplex printing modes | |
1486 | */ | |
1487 | ||
1488 | typedef enum { | |
1489 | wxDUPLEX_SIMPLEX, // Non-duplex | |
1490 | wxDUPLEX_HORIZONTAL, | |
1491 | wxDUPLEX_VERTICAL | |
1492 | } wxDuplexMode; | |
1493 | ||
1494 | /* Print quality. | |
1495 | */ | |
1496 | ||
1497 | #define wxPRINT_QUALITY_HIGH -1 | |
1498 | #define wxPRINT_QUALITY_MEDIUM -2 | |
1499 | #define wxPRINT_QUALITY_LOW -3 | |
1500 | #define wxPRINT_QUALITY_DRAFT -4 | |
1501 | ||
1502 | typedef int wxPrintQuality; | |
1503 | ||
1504 | /* Print mode (currently PostScript only) | |
1505 | */ | |
1506 | ||
1507 | typedef enum { | |
1508 | wxPRINT_MODE_NONE = 0, | |
1509 | wxPRINT_MODE_PREVIEW = 1, // Preview in external application | |
1510 | wxPRINT_MODE_FILE = 2, // Print to file | |
1511 | wxPRINT_MODE_PRINTER = 3 // Send to printer | |
1512 | } wxPrintMode; | |
1513 | ||
2c41c440 KB |
1514 | // --------------------------------------------------------------------------- |
1515 | // Macro to specify "All Files" on different platforms | |
1516 | // --------------------------------------------------------------------------- | |
1517 | #if defined(__WXMSW__) | |
1518 | # define wxALL_FILES_PATTERN "*.*" | |
1519 | # define wxALL_FILES gettext_noop("All files (*.*)|*.*") | |
1520 | #else | |
1521 | # define wxALL_FILES_PATTERN "*" | |
1522 | # define wxALL_FILES gettext_noop("All files (*)|*") | |
1523 | #endif | |
329e86bf RR |
1524 | // --------------------------------------------------------------------------- |
1525 | // macros that enable wxWindows apps to be compiled in absence of the | |
1526 | // sytem headers, although some platform specific types are used in the | |
1527 | // platform specific (implementation) parts of the headers | |
1528 | // --------------------------------------------------------------------------- | |
7bcb11d3 | 1529 | |
bac507e0 DW |
1530 | #if defined(__WXMSW__) || defined(__WXPM__) |
1531 | // Stand-ins for Windows types or OS/2, to avoid #including all of windows.h or os2.h | |
c801d85f KB |
1532 | typedef unsigned long WXHWND; |
1533 | typedef unsigned long WXHANDLE; | |
1534 | typedef unsigned long WXHICON; | |
1535 | typedef unsigned long WXHFONT; | |
1536 | typedef unsigned long WXHMENU; | |
1537 | typedef unsigned long WXHPEN; | |
1538 | typedef unsigned long WXHBRUSH; | |
1539 | typedef unsigned long WXHPALETTE; | |
1540 | typedef unsigned long WXHCURSOR; | |
1541 | typedef unsigned long WXHRGN; | |
57a7b7c1 | 1542 | typedef unsigned long WXHACCEL; |
c801d85f KB |
1543 | typedef unsigned long WXHINSTANCE; |
1544 | typedef unsigned long WXHBITMAP; | |
1545 | typedef unsigned long WXHIMAGELIST; | |
1546 | typedef unsigned long WXHGLOBAL; | |
1547 | typedef unsigned long WXHDC; | |
1548 | typedef unsigned int WXUINT; | |
1549 | typedef unsigned long WXDWORD; | |
1550 | typedef unsigned short WXWORD; | |
45fcbf3b | 1551 | #ifdef __WXMSW__ |
c801d85f KB |
1552 | typedef unsigned int WXWPARAM; |
1553 | typedef long WXLPARAM; | |
45fcbf3b DW |
1554 | #else |
1555 | # define WXWPARAM MPARAM | |
1556 | # define WXLPARAM MPARAM | |
86de7616 DW |
1557 | # define RECT RECTL |
1558 | # define LOGFONT FATTRS | |
11e59d47 DW |
1559 | # define LOWORD SHORT1FROMMP |
1560 | # define HIWORD SHORT2FROMMP | |
45fcbf3b | 1561 | #endif |
c801d85f | 1562 | typedef unsigned long WXCOLORREF; |
c801d85f KB |
1563 | typedef void * WXRGNDATA; |
1564 | typedef void * WXMSG; | |
1565 | typedef unsigned long WXHCONV; | |
0d8d91a9 | 1566 | typedef unsigned long WXHKEY; |
ef366d32 | 1567 | typedef unsigned long WXHTREEITEM; |
a23fd0e1 | 1568 | |
c801d85f KB |
1569 | typedef void * WXDRAWITEMSTRUCT; |
1570 | typedef void * WXMEASUREITEMSTRUCT; | |
1571 | typedef void * WXLPCREATESTRUCT; | |
a23fd0e1 | 1572 | |
54da4255 DW |
1573 | #if defined(__WXPM__) |
1574 | typedef unsigned long WXMPARAM; | |
1575 | typedef unsigned long WXMSGID; | |
1576 | typedef void* WXRESULT; | |
1577 | typedef int (*WXFARPROC)(); | |
1578 | // some windows handles not defined by PM | |
1579 | typedef unsigned long HANDLE; | |
1580 | typedef unsigned long HICON; | |
1581 | typedef unsigned long HFONT; | |
1582 | typedef unsigned long HMENU; | |
1583 | typedef unsigned long HPEN; | |
1584 | typedef unsigned long HBRUSH; | |
1585 | typedef unsigned long HPALETTE; | |
1586 | typedef unsigned long HCURSOR; | |
1587 | typedef unsigned long HINSTANCE; | |
1588 | typedef unsigned long HIMAGELIST; | |
1589 | typedef unsigned long HGLOBAL; | |
1590 | typedef unsigned long DWORD; | |
1591 | typedef unsigned short WORD; | |
1592 | #endif | |
1593 | ||
5ea105e0 | 1594 | #if defined(__GNUWIN32__) || defined(__WXWINE__) |
a23fd0e1 | 1595 | typedef int (*WXFARPROC)(); |
1e6d9499 | 1596 | #elif defined(__WIN32__) |
a23fd0e1 | 1597 | typedef int (__stdcall *WXFARPROC)(); |
1e6d9499 | 1598 | #else |
a23fd0e1 | 1599 | typedef int (*WXFARPROC)(); |
14b72bf5 | 1600 | #endif |
c801d85f | 1601 | |
f03fc89f VZ |
1602 | typedef WXHWND WXWidget; |
1603 | #endif // MSW | |
c801d85f | 1604 | |
589f0e3e | 1605 | #ifdef __WXMOTIF__ |
83624f79 | 1606 | /* Stand-ins for X/Xt/Motif types */ |
589f0e3e JS |
1607 | typedef void* WXWindow; |
1608 | typedef void* WXWidget; | |
1609 | typedef void* WXAppContext; | |
46ccb510 | 1610 | typedef void* WXColormap; |
589f0e3e JS |
1611 | typedef void WXDisplay; |
1612 | typedef void WXEvent; | |
46ccb510 | 1613 | typedef void* WXCursor; |
50414e24 | 1614 | typedef void* WXPixmap; |
dfc54541 JS |
1615 | typedef void* WXFontStructPtr; |
1616 | typedef void* WXGC; | |
1617 | typedef void* WXRegion; | |
e97f20a0 | 1618 | typedef void* WXFont; |
f97c9854 JS |
1619 | typedef void* WXImage; |
1620 | typedef void* WXCursor; | |
1621 | typedef void* WXFontList; | |
da175b2c RR |
1622 | |
1623 | typedef unsigned long Atom; /* this might fail on a few architectures */ | |
1624 | ||
f03fc89f | 1625 | #endif // Motif |
589f0e3e | 1626 | |
83624f79 RR |
1627 | #ifdef __WXGTK__ |
1628 | /* Stand-ins for GLIB types */ | |
1629 | typedef int gint; | |
1630 | typedef unsigned guint; | |
1631 | typedef unsigned long gulong; | |
1632 | typedef void* gpointer; | |
953704c1 | 1633 | typedef struct _GSList GSList; |
83624f79 RR |
1634 | |
1635 | /* Stand-ins for GDK types */ | |
1636 | typedef gulong GdkAtom; | |
1637 | typedef struct _GdkColor GdkColor; | |
1638 | typedef struct _GdkColormap GdkColormap; | |
1639 | typedef struct _GdkFont GdkFont; | |
1640 | typedef struct _GdkGC GdkGC; | |
1641 | typedef struct _GdkWindow GdkWindow; | |
1642 | typedef struct _GdkWindow GdkBitmap; | |
1643 | typedef struct _GdkWindow GdkPixmap; | |
1644 | typedef struct _GdkCursor GdkCursor; | |
1645 | typedef struct _GdkRegion GdkRegion; | |
8a126fcc | 1646 | typedef struct _GdkDragContext GdkDragContext; |
83624f79 RR |
1647 | |
1648 | /* Stand-ins for GTK types */ | |
8a126fcc RR |
1649 | typedef struct _GtkWidget GtkWidget; |
1650 | typedef struct _GtkStyle GtkStyle; | |
1651 | typedef struct _GtkAdjustment GtkAdjustment; | |
1652 | typedef struct _GtkList GtkList; | |
1653 | typedef struct _GtkToolbar GtkToolbar; | |
1654 | typedef struct _GtkTooltips GtkTooltips; | |
1655 | typedef struct _GtkNotebook GtkNotebook; | |
1656 | typedef struct _GtkNotebookPage GtkNotebookPage; | |
1657 | typedef struct _GtkAccelGroup GtkAccelGroup; | |
1658 | typedef struct _GtkItemFactory GtkItemFactory; | |
1659 | typedef struct _GtkSelectionData GtkSelectionData; | |
ad5c34f3 | 1660 | |
f03fc89f VZ |
1661 | typedef GtkWidget *WXWidget; |
1662 | #endif // GTK | |
ad5c34f3 JS |
1663 | |
1664 | // This is required because of clashing macros in windows.h, which may be | |
1665 | // included before or after wxWindows classes, and therefore must be | |
1666 | // disabled here before any significant wxWindows headers are included. | |
1667 | #ifdef __WXMSW__ | |
1668 | #ifdef GetClassInfo | |
1669 | #undef GetClassInfo | |
1670 | #endif | |
1671 | ||
1672 | #ifdef GetClassName | |
1673 | #undef GetClassName | |
1674 | #endif | |
1675 | ||
1676 | #ifdef DrawText | |
1677 | #undef DrawText | |
1678 | #endif | |
1679 | ||
1680 | #ifdef GetCharWidth | |
1681 | #undef GetCharWidth | |
1682 | #endif | |
1683 | ||
1684 | #ifdef StartDoc | |
1685 | #undef StartDoc | |
1686 | #endif | |
1687 | ||
1688 | #ifdef FindWindow | |
1689 | #undef FindWindow | |
1690 | #endif | |
1691 | ||
1692 | #ifdef FindResource | |
1693 | #undef FindResource | |
1694 | #endif | |
83624f79 | 1695 | #endif |
ad5c34f3 | 1696 | // __WXMSW__ |
83624f79 | 1697 | |
a23fd0e1 VZ |
1698 | // --------------------------------------------------------------------------- |
1699 | // macro to define a class without copy ctor nor assignment operator | |
1700 | // --------------------------------------------------------------------------- | |
1701 | ||
1702 | #define DECLARE_NO_COPY_CLASS(classname) \ | |
1703 | private: \ | |
1704 | classname(const classname&); \ | |
1705 | classname& operator=(const classname&) | |
1706 | ||
c801d85f | 1707 | #endif |
34138703 | 1708 | // _WX_DEFS_H_ |