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