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