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