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