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