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