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