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