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