]> git.saurik.com Git - wxWidgets.git/blame - include/wx/defs.h
1. suppressed some messages from HasEntry()/HasKeys()
[wxWidgets.git] / include / wx / defs.h
CommitLineData
c801d85f
KB
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
34138703
JS
12#ifndef _WX_DEFS_H_
13#define _WX_DEFS_H_
c801d85f
KB
14
15#ifdef __GNUG__
16#pragma interface "defs.h"
17#endif
18
2049ba38 19#ifdef __WXGTK__
c801d85f
KB
20
21#include "glib.h"
22#include "gdk/gdk.h"
23#include "gtk/gtk.h"
6ca41e57 24#include "wx/gtk/win_gtk.h"
c801d85f
KB
25
26#endif
27
28#include <stddef.h>
29
30#include "wx/setup.h"
31#include "wx/version.h"
32
33// Helps SGI compilation, apparently
d4b67f95 34#if defined(__SGI__)
c67daf87 35#if defined(__GNUG__)
c801d85f 36#define __need_wchar_t
c67daf87 37#else
d4b67f95 38/* Note I use the term __SGI_CC__ for both cc and CC, its not a good idea to
c67daf87
UR
39 * mix gcc and cc/CC, the name mangling is different */
40#define __SGI_CC__
41#endif
c801d85f
KB
42#endif
43
fd3f686c 44// suppress some Visual C++ warnings
c801d85f 45#ifdef _MSC_VER
fd3f686c
VZ
46# pragma warning(disable:4244) // cobversion from double to float
47# pragma warning(disable:4100) // unreferenced formal parameter
c801d85f
KB
48#endif
49
c801d85f
KB
50//////////////////////////////////////////////////////////////////////////////////
51// Currently Only MS-Windows/NT, XView and Motif are supported
52//
2049ba38
KB
53#if defined(__HPUX__) && !defined(__WXMOTIF__)
54# define __WXMOTIF__
c801d85f 55#endif
2049ba38 56#if defined(__WXMOTIF__)
c801d85f 57# define __X__
c801d85f
KB
58#endif
59
16ee7f42 60#ifdef __WXMSW__
c801d85f 61// wxWindows checks for WIN32, not __WIN32__
34138703 62#if ((defined(WIN32) || defined(__NT__)) && !defined(__WIN32__) && !defined(__WXSTUBS__))
c801d85f
KB
63#define __WIN32__
64#endif
65
66#ifndef __WIN32__
67#define __WIN16__
68#endif
69
70#if !defined(__WIN95__) && (WINVER >= 0x0400)
71#define __WIN95__
72#endif
73
16ee7f42
VZ
74#endif // wxMSW
75
c801d85f 76// Make sure the environment is set correctly
2049ba38 77#if defined(__WXMSW__) && defined(__X__)
c801d85f 78# error "Target can't be both X and Windows"
b4e76e0d 79#elif !defined(__WXMOTIF__) && !defined(__WXMSW__) && !defined(__WXGTK__) && \
34138703
JS
80 !defined(__WXMAC__) && !defined(__X__) && !defined(__WXQT__) && !defined(__WXSTUBS__)
81#error "No Target! Use -D[__WXMOTIF__|__WXGTK__|__WXMSW__|__WXMAC__|__WXQT__|__WXSTUBS__]"
c801d85f
KB
82#endif
83
34138703 84#if defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXQT__) || defined(__WXSTUBS__)
c801d85f
KB
85
86// Bool is now obsolete, use bool instead
87// typedef int Bool;
88
89#ifndef TRUE
90# define TRUE 1
91# define FALSE 0
92# define Bool_DEFINED
93#endif
94
2049ba38 95#elif defined(__WXMSW__)
c801d85f
KB
96
97#ifndef TRUE
98# define TRUE 1
99# define FALSE 0
100#endif
101
102#endif
103
104// VC++ 4.0 is 1000.
105
106// Add more tests here for compilers that don't already define bool.
107#if ( defined(_MSC_VER) && (_MSC_VER <= 1000) ) || (defined(__BORLANDC__) && (__BORLANDC__ < 0x500))
108typedef unsigned int bool;
109#endif
110
16c1f7f3
JS
111#if defined(_MSC_VER) && (_MSC_VER == 1020)
112#define bool unsigned int
113#endif
114
c801d85f
KB
115#if ( defined(_MSC_VER) && (_MSC_VER <= 800) ) || defined(__GNUWIN32__)
116#define byte unsigned char
117#endif
118
119typedef short int WXTYPE;
120typedef int wxWindowID;
121
122// Macro to cut down on compiler warnings.
123#if REMOVE_UNUSED_ARG
124#define WXUNUSED(identifier) /* identifier */
125#else // stupid, broken compiler
126#define WXUNUSED(identifier) identifier
127#endif
128
129/*
130 * Making or using wxWindows as a Windows DLL
131 */
132
2049ba38 133#ifdef __WXMSW__
c801d85f
KB
134
135#ifdef __BORLANDC__
136
137# ifdef WXMAKINGDLL
138# define WXDLLEXPORT __export
139# define WXDLLEXPORT_DATA(type) type __export
140# define WXDLLEXPORT_CTORFN __export
141# elif defined(WXUSINGDLL)
142# define WXDLLEXPORT __import
143# define WXDLLEXPORT_DATA(type) type __import
144# define WXDLLEXPORT_CTORFN
145# else
146# define WXDLLEXPORT
147# define WXDLLEXPORT_DATA(type) type
148# define WXDLLEXPORT_CTORFN
149# endif
150
151#else
152
153# ifdef WXMAKINGDLL
154# define WXDLLEXPORT __declspec( dllexport )
155# define WXDLLEXPORT_DATA(type) __declspec( dllexport ) type
184b5d99 156# define WXDLLEXPORT_CTORFN // __declspec( dllexport )
c801d85f
KB
157# elif defined(WXUSINGDLL)
158# define WXDLLEXPORT __declspec( dllimport )
159# define WXDLLEXPORT_DATA(type) __declspec( dllimport ) type
160# define WXDLLEXPORT_CTORFN
161# else
162# define WXDLLEXPORT
163# define WXDLLEXPORT_DATA(type) type
164# define WXDLLEXPORT_CTORFN
165# endif
166
167#endif
168
169#else
170// Non-Windows
171# define WXDLLEXPORT
172# define WXDLLEXPORT_DATA(type) type
173# define WXDLLEXPORT_CTORFN
174#endif
175
176// For ostream, istream ofstream
177#if defined(__BORLANDC__) && defined( _RTLDLL )
178# define WXDLLIMPORT __import
179#else
180# define WXDLLIMPORT
181#endif
182
183class WXDLLEXPORT wxObject;
184class WXDLLEXPORT wxEvent;
185
c86f1403 186 /** symbolic constant used by all Find()-like functions returning positive
c801d85f
KB
187 integer on success as failure indicator */
188#define NOT_FOUND (-1)
c801d85f
KB
189
190// ----------------------------------------------------------------------------
191// Error codes
192// ----------------------------------------------------------------------------
193
194/// Standard error codes
195enum ErrCode
196{
197 /// invalid parameter (in broad sense)
198 ERR_PARAM = (-4000),
199 /// no more data (iteration functions usually return this)
200 ERR_NODATA,
201 /// user cancelled the operation
202 ERR_CANCEL,
203 /// no error (the only non negative error code)
204 ERR_SUCCESS = 0
205};
206
207// ----------------------------------------------------------------------------
208/** @name Very common macros */
209// ----------------------------------------------------------------------------
210//@{
a3622daa
VZ
211/// delete pointer if it is not NULL and NULL it afterwards
212// (checking that it's !NULL before passing it to delete is just a
213// a question of style, because delete will do it itself anyhow, but it might
214// be considered as an error by some overzealous debugging implementations of
215// the library, so we do it ourselves)
c67daf87 216#if defined(__SGI_CC__)
d4b67f95 217// Okay this is bad styling, but the native SGI compiler is very picky, it
c67daf87 218// wont let you compare/assign between a NULL (void *) and another pointer
d4b67f95
RD
219// type. To be really clean we'd need to pass in another argument, the type
220// of p.
221// Also note the use of 0L, this would allow future possible 64bit support
222// (as yet untested) by ensuring that we zero all the bits in a pointer
223// (which is always the same length as a long (at least with the LP64 standard)
c67daf87 224// --- offer aug 98
d8260b2f 225#define wxDELETE(p) if ( (p) ) { delete (p); p = 0L; }
c67daf87 226#else
d8260b2f 227#define wxDELETE(p) if ( (p) != NULL ) { delete p; p = NULL; }
c67daf87 228#endif /* __SGI__CC__ */
a3622daa
VZ
229
230// delete an array and NULL it (see comments above)
c67daf87
UR
231#if defined(__SGI_CC__)
232// see above comment.
233#define wxDELETEA(p) if ( (p) ) { delete [] (p); p = 0L; }
234#else
d8260b2f 235#define wxDELETEA(p) if ( ((void *) (p)) != NULL ) { delete [] p; p = NULL; }
c67daf87 236#endif /* __SGI__CC__ */
c801d85f
KB
237
238/// size of statically declared array
239#define WXSIZEOF(array) (sizeof(array)/sizeof(array[0]))
240
8cb50e4b
JS
241// Use of these suppresses some compiler warnings
242WXDLLEXPORT_DATA(extern const bool) wxTrue;
243WXDLLEXPORT_DATA(extern const bool) wxFalse;
244
c801d85f
KB
245// ----------------------------------------------------------------------------
246// compiler and OS identification
247// ----------------------------------------------------------------------------
248
249// OS
d4b67f95 250#if defined(__HPUX__) || defined(____SVR4____) || defined(__LINUX__) || defined(__sgi ) || defined(__unix__)
c801d85f
KB
251 #ifndef __UNIX__
252 #define __UNIX__
253 #endif
254#endif
255
256#ifndef __UNIX__ // Windows
c801d85f
KB
257 #if defined(_MSC_VER)
258 #define __VISUALC__
259 #elif defined(__BCPLUSPLUS__) && !defined(__BORLANDC__)
260 #define __BORLANDC__
261 #elif defined(__WATCOMC__)
262 //#define __WATCOMC__
263 #elif defined(__SC__)
264 #define __SYMANTECC__
265 #endif // compiler
266
267#endif // OS
268
c801d85f
KB
269// ----------------------------------------------------------------------------
270// compiler specific settings
271// ----------------------------------------------------------------------------
272
273// to allow compiling with warning level 4 under Microsoft Visual C++ some
274// warnings just must be disabled
275#ifdef __VISUALC__
276 #pragma warning(disable: 4514) // unreferenced inline func has been removed
d4b67f95 277/*
c801d85f
KB
278 you might be tempted to disable this one also: triggered by CHECK and FAIL
279 macros in debug.h, but it's, overall, is a rather useful one, so I leave it
280 and will try to find some way to disable this warning just for CHECK/FAIL.
281 Anyone?
282*/
283 #pragma warning(disable: 4127) // conditional expression is constant
284
285#endif // VC++
286
8a60ae88
UU
287#if _MSC_VER > 1010
288#undef try
289#undef except
290#undef finally
291#define except(x) catch(...)
292#endif
293
85ee3474
UU
294// where should i put this? we need to make sure of this as it breaks
295// the <iostream> code.
ea57084d
JS
296#if !wxUSE_IOSTREAMH && defined(__WXDEBUG__)
297#undef __WXDEBUG__
85ee3474
UU
298#endif
299
c801d85f
KB
300// Callback function type definition
301typedef void (*wxFunction) (wxObject&, wxEvent&);
302
303/*
304 * Window style flags.
305 * Values are chosen so they can be |'ed in a bit list.
306 * Some styles are used across more than one group,
307 * so the values mustn't clash with others in the group.
308 * Otherwise, numbers can be reused across groups.
309 *
310 * From version 1.66:
311 * Window (cross-group) styles now take up the first half
312 * of the flag, and control-specific styles the
313 * second half.
d4b67f95 314 *
c801d85f
KB
315 */
316
317/*
318 * Window (Frame/dialog/subwindow/panel item) style flags
319 */
320#define wxVSCROLL 0x80000000
321#define wxHSCROLL 0x40000000
322#define wxCAPTION 0x20000000
323
324// New styles
325#define wxDOUBLE_BORDER 0x10000000
326#define wxSUNKEN_BORDER 0x08000000
327#define wxRAISED_BORDER 0x04000000
328#define wxBORDER 0x02000000
329#define wxSIMPLE_BORDER 0x02000000
330#define wxSTATIC_BORDER 0x01000000
331#define wxTRANSPARENT_WINDOW 0x00100000
332#define wxNO_BORDER 0x00200000
333
334#define wxUSER_COLOURS 0x00800000
335 // Override CTL3D etc. control colour processing to
336 // allow own background colour
64693098 337 // OBSOLETE - use wxNO_3D instead
c801d85f
KB
338#define wxNO_3D 0x00800000
339 // Override CTL3D or native 3D styles for children
565215b2
JS
340#define wxCLIP_CHILDREN 0x00400000
341 // Clip children when painting, which reduces flicker in
342 // e.g. frames and splitter windows, but can't be used in
343 // a panel where a static box must be 'transparent' (panel
344 // paints the background for it)
c801d85f
KB
345
346// Add this style to a panel to get tab traversal working
347// outside of dialogs.
348#define wxTAB_TRAVERSAL 0x00080000
349
350// Orientations
351#define wxHORIZONTAL 0x01
352#define wxVERTICAL 0x02
353#define wxBOTH (wxVERTICAL|wxHORIZONTAL)
354#define wxCENTER_FRAME 0x04 /* centering into frame rather than screen */
355
356/*
357 * Frame/dialog style flags
358 */
359#define wxSTAY_ON_TOP 0x8000
360#define wxICONIZE 0x4000
361#define wxMINIMIZE wxICONIZE
362#define wxMAXIMIZE 0x2000
363#define wxTHICK_FRAME 0x1000
364#define wxSYSTEM_MENU 0x0800
365#define wxMINIMIZE_BOX 0x0400
366#define wxMAXIMIZE_BOX 0x0200
367#define wxTINY_CAPTION_HORIZ 0x0100
368#define wxTINY_CAPTION_VERT 0x0080
369#define wxRESIZE_BOX wxMAXIMIZE_BOX
370#define wxRESIZE_BORDER 0x0040
371#define wxDIALOG_MODAL 0x0020
372#define wxDIALOG_MODELESS 0x0000
373
565215b2 374#define wxDEFAULT_FRAME_STYLE (wxRESIZE_BORDER | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxTHICK_FRAME | wxSYSTEM_MENU | wxCAPTION | wxCLIP_CHILDREN)
c801d85f
KB
375
376#if WXWIN_COMPATIBILITY
377#define wxDEFAULT_FRAME wxDEFAULT_FRAME_STYLE
378#endif
379
380#define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU|wxCAPTION|wxTHICK_FRAME)
381
382/*
383 * Subwindow style flags
384 */
385#define wxRETAINED 0x0001
386#define wxBACKINGSTORE wxRETAINED
387// wxCanvas or wxPanel can optionally have a thick frame under MS Windows.
388// #define wxTHICK_FRAME 0x1000
389
390/*
391 * wxToolBar style flags
392 */
d4b67f95 393
c801d85f 394#define wxTB_3DBUTTONS 0x8000
81d66cf3
JS
395#define wxTB_HORIZONTAL 0x0002
396#define wxTB_VERTICAL 0x0004
bb6290e3 397// Flatbar/Coolbar under Win98
81d66cf3 398#define wxTB_FLAT 0x0008
c801d85f
KB
399
400/*
401 * Apply to all panel items
402 */
d4b67f95 403
c801d85f
KB
404#define wxCOLOURED 0x0800
405// Alignment for panel item labels: replaces characters with zeros
406// when creating label, so spaces can be included in string for alignment.
407#define wxFIXED_LENGTH 0x0400
408#define wxALIGN_LEFT 0x0000
409#define wxALIGN_CENTER 0x0100
410#define wxALIGN_CENTRE 0x0100
411#define wxALIGN_RIGHT 0x0200
412
413/*
414 * Styles for wxListBox
415 */
416
c801d85f 417#define wxLB_SORT 0x0010
9c331ded 418#define wxLB_SINGLE 0x0020
c801d85f
KB
419#define wxLB_MULTIPLE 0x0040
420#define wxLB_EXTENDED 0x0080
421// wxLB_OWNERDRAW is Windows-only
422#define wxLB_OWNERDRAW 0x0100
9c331ded
JS
423#define wxLB_NEEDED_SB 0x0200
424#define wxLB_ALWAYS_SB 0x0400
c801d85f
KB
425#define wxLB_HSCROLL wxHSCROLL
426
427/*
428 * wxTextCtrl style flags
429 */
430#define wxPROCESS_ENTER 0x0004
431#define wxPASSWORD 0x0008
432#define wxTE_PROCESS_ENTER wxPROCESS_ENTER
433#define wxTE_PASSWORD wxPASSWORD
434#define wxTE_READONLY 0x0010
435#define wxTE_MULTILINE 0x0020
436
b039c367
VZ
437// MSW-only
438#define wxTE_RICHTEXT 0x0020
c801d85f
KB
439
440/*
441 * wxComboBox style flags
442 */
443#define wxCB_SIMPLE 0x0004
c801d85f 444#define wxCB_SORT 0x0008
9c331ded
JS
445#define wxCB_READONLY 0x0010
446#define wxCB_DROPDOWN 0x0020
c801d85f
KB
447
448/*
449 * wxRadioBox/wxRadioButton style flags
450 */
451#define wxRA_HORIZONTAL wxHORIZONTAL
452#define wxRA_VERTICAL wxVERTICAL
453#define wxRB_GROUP 0x0004
454
455/*
456 * wxGauge flags
457 */
458#define wxGA_PROGRESSBAR 0x0004
459#define wxGA_HORIZONTAL wxHORIZONTAL
460#define wxGA_VERTICAL wxVERTICAL
461
462/*
463 * wxSlider flags
464 */
d4b67f95 465
c801d85f
KB
466#define wxSL_HORIZONTAL wxHORIZONTAL
467#define wxSL_VERTICAL wxVERTICAL
468// The next one is obsolete - use scroll events instead
469#define wxSL_NOTIFY_DRAG 0x0000
470#define wxSL_AUTOTICKS 0x0008
471// #define wxSL_MANUALTICKS 0x0010
472#define wxSL_LABELS 0x0020
473#define wxSL_LEFT 0x0040
474#define wxSL_TOP 0x0080
475#define wxSL_RIGHT 0x0100
476#define wxSL_BOTTOM 0x0200
477#define wxSL_BOTH 0x0400
478#define wxSL_SELRANGE 0x0800
479
480/*
481 * wxScrollBar flags
482 */
d4b67f95 483
c801d85f
KB
484#define wxSB_HORIZONTAL wxHORIZONTAL
485#define wxSB_VERTICAL wxVERTICAL
486
487/*
488 * wxButton flags
489 */
490
491#define wxBU_AUTODRAW 0x0004
492#define wxBU_NOAUTODRAW 0x0000
493
494/*
495 * wxTreeCtrl flags
496 */
497
498#define wxTR_HAS_BUTTONS 0x0004
499#define wxTR_EDIT_LABELS 0x0008
64693098 500#define wxTR_LINES_AT_ROOT 0x0010
c801d85f
KB
501
502/*
503 * wxListCtrl flags
504 */
505
506#define wxLC_ICON 0x0004
507#define wxLC_SMALL_ICON 0x0008
508#define wxLC_LIST 0x0010
509#define wxLC_REPORT 0x0020
510#define wxLC_ALIGN_TOP 0x0040
511#define wxLC_ALIGN_LEFT 0x0080
512#define wxLC_AUTOARRANGE 0x0100
513#define wxLC_USER_TEXT 0x0200
514#define wxLC_EDIT_LABELS 0x0400
515#define wxLC_NO_HEADER 0x0800
516#define wxLC_NO_SORT_HEADER 0x1000
517#define wxLC_SINGLE_SEL 0x2000
518#define wxLC_SORT_ASCENDING 0x4000
519#define wxLC_SORT_DESCENDING 0x8000
520
521#define wxLC_MASK_TYPE (wxLC_ICON | wxLC_SMALL_ICON | wxLC_LIST | wxLC_REPORT)
522#define wxLC_MASK_ALIGN (wxLC_ALIGN_TOP | wxLC_ALIGN_LEFT)
523#define wxLC_MASK_SORT (wxLC_SORT_ASCENDING | wxLC_SORT_DESCENDING)
524
525// Omitted because (a) too much detail (b) not enough style flags
526// #define wxLC_NO_SCROLL
527// #define wxLC_NO_LABEL_WRAP
528// #define wxLC_OWNERDRAW_FIXED
529// #define wxLC_SHOW_SEL_ALWAYS
530
531/*
532 * wxSpinButton flags
533 */
534
535#define wxSP_VERTICAL 0x0004
536#define wxSP_HORIZONTAL 0x0008
537#define wxSP_ARROW_KEYS 0x0010
538#define wxSP_WRAP 0x0020
539
540/*
541 * wxSplitterWnd flags
542 */
543
544#define wxSP_NOBORDER 0x0000
545#define wxSP_3D 0x0004
546#define wxSP_BORDER 0x0008
547
548/*
549 * wxTabCtrl flags
550 */
551
552#define wxTAB_MULTILINE 0x0000
553#define wxTAB_RIGHTJUSTIFY 0x0004
554#define wxTAB_FIXEDWIDTH 0x0008
555#define wxTAB_OWNERDRAW 0x0010
556
10b959e3
JS
557// Sorry, I changed my mind about these names...
558#define wxTC_MULTILINE 0x0000
559#define wxTC_RIGHTJUSTIFY 0x0004
560#define wxTC_FIXEDWIDTH 0x0008
561#define wxTC_OWNERDRAW 0x0010
562
c801d85f
KB
563/*
564 * wxStatusBar95 flags
565 */
566
565215b2 567#define wxST_SIZEGRIP 0x0002
c801d85f
KB
568
569/*
570 * GDI descriptions
571 */
572
573enum {
574// Text font families
575 wxDEFAULT = 70,
576 wxDECORATIVE,
577 wxROMAN,
578 wxSCRIPT,
579 wxSWISS,
580 wxMODERN,
581 wxTELETYPE, /* @@@@ */
582
583// Proportional or Fixed width fonts (not yet used)
584 wxVARIABLE = 80,
585 wxFIXED,
586
587 wxNORMAL = 90,
588 wxLIGHT,
589 wxBOLD,
590// Also wxNORMAL for normal (non-italic text)
591 wxITALIC,
592 wxSLANT,
593
594// Pen styles
595 wxSOLID = 100,
596 wxDOT,
597 wxLONG_DASH,
598 wxSHORT_DASH,
599 wxDOT_DASH,
600 wxUSER_DASH,
601
602 wxTRANSPARENT,
603
604// Brush & Pen Stippling. Note that a stippled pen cannot be dashed!!
605// Note also that stippling a Pen IS meaningfull, because a Line is
606// drawn with a Pen, and without any Brush -- and it can be stippled.
607 wxSTIPPLE = 110,
608 wxBDIAGONAL_HATCH,
609 wxCROSSDIAG_HATCH,
610 wxFDIAGONAL_HATCH,
611 wxCROSS_HATCH,
612 wxHORIZONTAL_HATCH,
613 wxVERTICAL_HATCH,
614#define IS_HATCH(s) ((s)>=wxBDIAGONAL_HATCH && (s)<=wxVERTICAL_HATCH)
615
616 wxJOIN_BEVEL = 120,
617 wxJOIN_MITER,
618 wxJOIN_ROUND,
619
620 wxCAP_ROUND = 130,
621 wxCAP_PROJECTING,
622 wxCAP_BUTT
623};
624
625
626// Logical ops
627typedef enum {
628 wxCLEAR, // 0
629 wxXOR, // src XOR dst
630 wxINVERT, // NOT dst
631 wxOR_REVERSE, // src OR (NOT dst)
632 wxAND_REVERSE,// src AND (NOT dst)
633 wxCOPY, // src
634 wxAND, // src AND dst
635 wxAND_INVERT, // (NOT src) AND dst
636 wxNO_OP, // dst
637 wxNOR, // (NOT src) AND (NOT dst)
638 wxEQUIV, // (NOT src) XOR dst
639 wxSRC_INVERT, // (NOT src)
640 wxOR_INVERT, // (NOT src) OR dst
641 wxNAND, // (NOT src) OR (NOT dst)
642 wxOR, // src OR dst
643 wxSET, // 1
644 wxSRC_OR, // source _bitmap_ OR destination
645 wxSRC_AND // source _bitmap_ AND destination
646} form_ops_t;
647
648// Flood styles
649#define wxFLOOD_SURFACE 1
650#define wxFLOOD_BORDER 2
651
652// Polygon filling mode
653#define wxODDEVEN_RULE 1
654#define wxWINDING_RULE 2
655
656// ToolPanel in wxFrame
657#define wxTOOL_TOP 1
658#define wxTOOL_BOTTOM 2
659#define wxTOOL_LEFT 3
660#define wxTOOL_RIGHT 4
661
662// Dialog specifiers/return values
663
664#define wxOK 0x0001
665#define wxYES_NO 0x0002
666#define wxCANCEL 0x0004
667#define wxYES 0x0008
668#define wxNO 0x0010
669
670#define wxICON_EXCLAMATION 0x0020
671#define wxICON_HAND 0x0040
672#define wxICON_QUESTION 0x0080
673#define wxICON_INFORMATION 0x0100
674
675#define wxICON_STOP wxICON_HAND
676#define wxICON_ASTERISK wxICON_INFORMATION
677#define wxICON_MASK (0x0020|0x0040|0x0080|0x0100)
678
679#define wxCENTRE 0x0200
680#define wxCENTER wxCENTRE
681
682// Possible SetSize flags
683
684// Use internally-calculated width if -1
81d66cf3 685#define wxSIZE_AUTO_WIDTH 0x0001
c801d85f 686// Use internally-calculated height if -1
81d66cf3 687#define wxSIZE_AUTO_HEIGHT 0x0002
c801d85f 688// Use internally-calculated width and height if each is -1
81d66cf3 689#define wxSIZE_AUTO (wxSIZE_AUTO_WIDTH|wxSIZE_AUTO_HEIGHT)
c801d85f
KB
690// Ignore missing (-1) dimensions (use existing).
691// For readability only: test for wxSIZE_AUTO_WIDTH/HEIGHT in code.
81d66cf3 692#define wxSIZE_USE_EXISTING 0x0000
c801d85f 693// Allow -1 as a valid position
81d66cf3
JS
694#define wxSIZE_ALLOW_MINUS_ONE 0x0004
695// Don't do parent client adjustments (for implementation only)
696#define wxSIZE_NO_ADJUSTMENTS 0x0008
c801d85f 697
e3e65dac
RR
698
699// Data format for drag & drop and clipboard operations
700// numbers as per winuser.h
701
702enum wxDataFormat
703{
704 wxDF_TEXT = 1, /* CF_TEXT */
705 wxDF_BITMAP = 2, /* CF_BITMAP */
706 wxDF_METAFILE = 3, /* CF_METAFILEPICT */
707 wxDF_DIB = 8, /* CF_DIB */
708 wxDF_OEMTEXT = 7, /* CF_OEMTEXT */
709 wxDF_FILENAME = 15 /* CF_HDROP */
710};
c801d85f
KB
711
712// Virtual keycodes
e3e65dac 713
72212c28 714enum wxKeyCode {
c801d85f
KB
715 WXK_BACK = 8,
716 WXK_TAB = 9,
717 WXK_RETURN = 13,
718 WXK_ESCAPE = 27,
719 WXK_SPACE = 32,
720 WXK_DELETE = 127,
721
722 WXK_START = 300,
723 WXK_LBUTTON,
724 WXK_RBUTTON,
725 WXK_CANCEL,
726 WXK_MBUTTON,
727 WXK_CLEAR,
728 WXK_SHIFT,
729 WXK_CONTROL,
730 WXK_MENU,
731 WXK_PAUSE,
732 WXK_CAPITAL,
733 WXK_PRIOR, // Page up
734 WXK_NEXT, // Page down
735 WXK_END,
736 WXK_HOME,
737 WXK_LEFT,
738 WXK_UP,
739 WXK_RIGHT,
740 WXK_DOWN,
741 WXK_SELECT,
742 WXK_PRINT,
743 WXK_EXECUTE,
744 WXK_SNAPSHOT,
745 WXK_INSERT,
746 WXK_HELP,
747 WXK_NUMPAD0,
748 WXK_NUMPAD1,
749 WXK_NUMPAD2,
750 WXK_NUMPAD3,
751 WXK_NUMPAD4,
752 WXK_NUMPAD5,
753 WXK_NUMPAD6,
754 WXK_NUMPAD7,
755 WXK_NUMPAD8,
756 WXK_NUMPAD9,
757 WXK_MULTIPLY,
758 WXK_ADD,
759 WXK_SEPARATOR,
760 WXK_SUBTRACT,
761 WXK_DECIMAL,
762 WXK_DIVIDE,
763 WXK_F1,
764 WXK_F2,
765 WXK_F3,
766 WXK_F4,
767 WXK_F5,
768 WXK_F6,
769 WXK_F7,
770 WXK_F8,
771 WXK_F9,
772 WXK_F10,
773 WXK_F11,
774 WXK_F12,
775 WXK_F13,
776 WXK_F14,
777 WXK_F15,
778 WXK_F16,
779 WXK_F17,
780 WXK_F18,
781 WXK_F19,
782 WXK_F20,
783 WXK_F21,
784 WXK_F22,
785 WXK_F23,
786 WXK_F24,
787 WXK_NUMLOCK,
788 WXK_SCROLL,
789 WXK_PAGEUP,
790 WXK_PAGEDOWN
791};
792
793// Colours - see wx_gdi.cc for database
794
795// OS mnemonics -- Identify the running OS (useful for Windows)
796// [Not all platforms are currently available or supported]
797enum {
34138703
JS
798 wxUNKNOWN_PLATFORM,
799 wxCURSES, // Text-only CURSES
c801d85f
KB
800 wxXVIEW_X, // Sun's XView OpenLOOK toolkit
801 wxMOTIF_X, // OSF Motif 1.x.x
34138703 802 wxCOSE_X, // OSF Common Desktop Environment
c801d85f
KB
803 wxNEXTSTEP, // NeXTStep
804 wxMACINTOSH, // Apple System 7
34138703
JS
805 wxGTK, // GTK
806 wxQT, // Qt
807 wxGEOS, // GEOS
808 wxOS2_PM, // OS/2 Workplace
c801d85f
KB
809 wxWINDOWS, // Windows or WfW
810 wxPENWINDOWS, // Windows for Pen Computing
811 wxWINDOWS_NT, // Windows NT
34138703
JS
812 wxWIN32S, // Windows 32S API
813 wxWIN95, // Windows 95
814 wxWIN386 // Watcom 32-bit supervisor modus
c801d85f
KB
815};
816
817// Printing
818#ifndef wxPORTRAIT
819#define wxPORTRAIT 1
820#define wxLANDSCAPE 2
821#endif
822
823// Standard menu identifiers
824#define wxID_OPEN 5000
825#define wxID_CLOSE 5001
826#define wxID_NEW 5002
827#define wxID_SAVE 5003
828#define wxID_SAVEAS 5004
829#define wxID_REVERT 5005
830#define wxID_EXIT 5006
831#define wxID_UNDO 5007
832#define wxID_REDO 5008
833#define wxID_HELP 5009
834#define wxID_PRINT 5010
835#define wxID_PRINT_SETUP 5011
836#define wxID_PREVIEW 5012
837#define wxID_ABOUT 5013
838#define wxID_HELP_CONTENTS 5014
839#define wxID_HELP_COMMANDS 5015
840#define wxID_HELP_PROCEDURES 5016
841#define wxID_HELP_CONTEXT 5017
842
843#define wxID_CUT 5030
844#define wxID_COPY 5031
845#define wxID_PASTE 5032
846#define wxID_CLEAR 5033
847#define wxID_FIND 5034
7f555861 848#define wxID_DUPLICATE 5035
77e3eac5 849#define wxID_SELECTALL 5036
c801d85f
KB
850
851#define wxID_FILE1 5050
852#define wxID_FILE2 5051
853#define wxID_FILE3 5052
854#define wxID_FILE4 5053
855#define wxID_FILE5 5054
856#define wxID_FILE6 5055
857#define wxID_FILE7 5056
858#define wxID_FILE8 5057
859#define wxID_FILE9 5058
860
861#define wxID_OK 5100
862#define wxID_CANCEL 5101
863#define wxID_APPLY 5102
864#define wxID_YES 5103
865#define wxID_NO 5104
5de76427 866#define wxID_STATIC 5105
c801d85f 867
dfad0599
JS
868#define wxID_HIGHEST 5999
869
fd71308f 870// Shortcut for easier dialog-unit-to-pixel conversion
387a3b02 871#define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt)
fd71308f 872
2049ba38 873#ifdef __WXMSW__
c801d85f
KB
874// Stand-ins for Windows types, to avoid
875// #including all of windows.h
876
877typedef unsigned long WXHWND;
878typedef unsigned long WXHANDLE;
879typedef unsigned long WXHICON;
880typedef unsigned long WXHFONT;
881typedef unsigned long WXHMENU;
882typedef unsigned long WXHPEN;
883typedef unsigned long WXHBRUSH;
884typedef unsigned long WXHPALETTE;
885typedef unsigned long WXHCURSOR;
886typedef unsigned long WXHRGN;
57a7b7c1 887typedef unsigned long WXHACCEL;
c801d85f
KB
888typedef unsigned long WXHINSTANCE;
889typedef unsigned long WXHBITMAP;
890typedef unsigned long WXHIMAGELIST;
891typedef unsigned long WXHGLOBAL;
892typedef unsigned long WXHDC;
893typedef unsigned int WXUINT;
894typedef unsigned long WXDWORD;
895typedef unsigned short WXWORD;
896typedef unsigned int WXWPARAM;
897typedef long WXLPARAM;
898typedef unsigned long WXCOLORREF;
c801d85f
KB
899typedef void * WXRGNDATA;
900typedef void * WXMSG;
901typedef unsigned long WXHCONV;
0d8d91a9 902typedef unsigned long WXHKEY;
ef366d32 903typedef unsigned long WXHTREEITEM;
c801d85f
KB
904typedef void * WXDRAWITEMSTRUCT;
905typedef void * WXMEASUREITEMSTRUCT;
906typedef void * WXLPCREATESTRUCT;
14b72bf5
JS
907#ifdef __GNUWIN32__
908typedef int (*WXFARPROC)();
909#else
b039c367 910typedef int (__stdcall *WXFARPROC)();
14b72bf5 911#endif
c801d85f
KB
912
913#endif
914
589f0e3e
JS
915#ifdef __WXMOTIF__
916// Stand-ins for X/Xt/Motif types
917typedef void* WXWindow;
918typedef void* WXWidget;
919typedef void* WXAppContext;
46ccb510 920typedef void* WXColormap;
589f0e3e
JS
921typedef void WXDisplay;
922typedef void WXEvent;
46ccb510 923typedef void* WXCursor;
50414e24 924typedef void* WXPixmap;
dfc54541
JS
925typedef void* WXFontStructPtr;
926typedef void* WXGC;
927typedef void* WXRegion;
e97f20a0 928typedef void* WXFont;
f97c9854
JS
929typedef void* WXImage;
930typedef void* WXCursor;
931typedef void* WXFontList;
589f0e3e
JS
932#endif
933
c801d85f 934#endif
34138703 935 // _WX_DEFS_H_