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