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