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