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