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