1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Declarations/definitions common to all wx source files
4 // Author: Julian Smart and others
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "defs.h"
22 #include "wx/version.h"
24 // ----------------------------------------------------------------------------
25 // compiler and OS identification
26 // ----------------------------------------------------------------------------
29 #if defined(__unix) || defined(__unix__) || defined(____SVR4____) || \
30 defined(__LINUX__) || defined(__sgi ) || \
31 defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX)
37 // Helps SGI compilation, apparently
40 #define __need_wchar_t
42 // Note I use the term __SGI_CC__ for both cc and CC, its not a good
43 // idea to mix gcc and cc/CC, the name mangling is different
48 #if defined(sun) || defined(__SUN__)
60 #elif defined(applec) || defined(THINK_C) || ( defined( __MWERKS__ ) && !defined(__INTEL__) )
67 // define another standard symbol for Microsoft Visual C++: the standard one
68 // (_MSC_VER) is also defined by Metrowerks compiler
69 #if defined(_MSC_VER) && !defined(__MWERKS__)
70 #define __VISUALC__ _MSC_VER
71 #elif defined(__BCPLUSPLUS__) && !defined(__BORLANDC__)
73 #elif defined(__WATCOMC__)
80 // suppress some Visual C++ warnings
82 # pragma warning(disable:4244) // conversion from double to float
83 # pragma warning(disable:4100) // unreferenced formal parameter
84 # pragma warning(disable:4511) // copy ctor couldn't be generated
85 # pragma warning(disable:4512) // operator=() couldn't be generated
88 // suppress some Salford C++ warnings
90 # pragma suppress 353 // Possible nested comments
91 # pragma suppress 593 // Define not used
92 # pragma suppress 61 // enum has no name (doesn't suppress!)
93 # pragma suppress 106 // unnamed, unused parameter
94 # pragma suppress 571 // Virtual function hiding
95 #endif // __SALFORDC__
97 // Digital Unix C++ compiler only defines this symbol for .cxx and .hxx files,
98 // so define it ourselves
103 // Resolves linking problems under HP-UX
104 #if defined(__HPUX__) && defined(__GNUG__)
105 #define va_list __gnuc_va_list
108 //////////////////////////////////////////////////////////////////////////////////
109 // Currently Only MS-Windows/NT, XView and Motif are supported
111 #if defined(__HPUX__) && !defined(__WXMOTIF__)
114 #if defined(__WXMOTIF__)
119 // wxWindows checks for WIN32, not __WIN32__
120 #if ((defined(WIN32) || defined(__NT__)) && !defined(__WIN32__) && !defined(__WXSTUBS__))
128 #if !defined(__WIN95__) && (WINVER >= 0x0400)
132 #if defined(TWIN32) && !defined(__TWIN32__)
138 // Make sure the environment is set correctly
139 #if defined(__WXMSW__) && defined(__X__)
140 #error "Target can't be both X and Windows"
141 #elif !defined(__WXMOTIF__) && !defined(__WXMSW__) && !defined(__WXGTK__) && \
142 !defined(__WXMAC__) && !defined(__X__) && !defined(__WXQT__) && !defined(__WXSTUBS__)
143 #error "No Target! Use -D[__WXMOTIF__|__WXGTK__|__WXMSW__|__WXMAC__|__WXQT__|__WXSTUBS__]"
146 // ============================================================================
147 // non portable C++ features
148 // ============================================================================
150 // ----------------------------------------------------------------------------
151 // check for native bool type and TRUE/FALSE constants
152 // ----------------------------------------------------------------------------
154 #if defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXQT__) || defined(__WXSTUBS__)
155 // Bool is now obsolete, use bool instead
163 #elif defined(__WXMSW__)
170 // Add more tests here for Windows compilers that already define bool
171 // (under Unix, configure tests for this)
173 #if defined( __MWERKS__ )
174 #if (__MWERKS__ >= 0x1000) && !__option(bool)
177 #elif defined(__VISUALC__) && (__VISUALC__ == 1020)
178 // in VC++ 4.2 the bool keyword is reserved (hence can't be typedefed)
179 // but not implemented, so we must #define it
180 #define bool unsigned int
181 #elif defined(__VISUALC__) && (__VISUALC__ > 1020)
182 // VC++ supports bool since 4.2
184 #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x500)
185 // Borland 5.0+ supports bool
187 #elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100)
188 // Watcom 11+ supports bool
190 #elif defined(__GNUWIN32__)
191 // Cygwin supports bool
196 #if !defined(HAVE_BOOL) && !defined(bool)
197 // NB: of course, this doesn't replace the standard type, because, for
198 // example, overloading based on bool/int parameter doesn't work and
199 // so should be avoided in portable programs
200 typedef unsigned int bool;
203 typedef unsigned char wxByte
;
204 typedef short int WXTYPE
;
205 typedef int wxWindowID
;
207 // Macro to cut down on compiler warnings.
208 #if REMOVE_UNUSED_ARG
209 #define WXUNUSED(identifier) /* identifier */
210 #else // stupid, broken compiler
211 #define WXUNUSED(identifier) identifier
215 * Making or using wxWindows as a Windows DLL
220 // _declspec works in BC++ 5 and later, as well as VC++
221 #if defined(__VISUALC__) || defined(__BORLANDC__)
224 # define WXDLLEXPORT _declspec( dllexport )
225 # define WXDLLEXPORT_DATA(type) _declspec( dllexport ) type
226 # define WXDLLEXPORT_CTORFN
227 # elif defined(WXUSINGDLL)
228 # define WXDLLEXPORT _declspec( dllimport )
229 # define WXDLLEXPORT_DATA(type) _declspec( dllimport ) type
230 # define WXDLLEXPORT_CTORFN
233 # define WXDLLEXPORT_DATA(type) type
234 # define WXDLLEXPORT_CTORFN
239 # define WXDLLEXPORT_DATA(type) type
240 # define WXDLLEXPORT_CTORFN
245 # define WXDLLEXPORT_DATA(type) type
246 # define WXDLLEXPORT_CTORFN
249 // For ostream, istream ofstream
250 #if defined(__BORLANDC__) && defined( _RTLDLL )
251 # define WXDLLIMPORT __import
256 class WXDLLEXPORT wxObject
;
257 class WXDLLEXPORT wxEvent
;
259 /** symbolic constant used by all Find()-like functions returning positive
260 integer on success as failure indicator */
261 #define wxNOT_FOUND (-1)
263 // ----------------------------------------------------------------------------
264 /** @name Very common macros */
265 // ----------------------------------------------------------------------------
267 /// delete pointer if it is not NULL and NULL it afterwards
268 // (checking that it's !NULL before passing it to delete is just a
269 // a question of style, because delete will do it itself anyhow, but it might
270 // be considered as an error by some overzealous debugging implementations of
271 // the library, so we do it ourselves)
272 #if defined(__SGI_CC__)
273 // Okay this is bad styling, but the native SGI compiler is very picky, it
274 // wont let you compare/assign between a NULL (void *) and another pointer
275 // type. To be really clean we'd need to pass in another argument, the type
277 // Also note the use of 0L, this would allow future possible 64bit support
278 // (as yet untested) by ensuring that we zero all the bits in a pointer
279 // (which is always the same length as a long (at least with the LP64 standard)
281 #define wxDELETE(p) if ( (p) ) { delete (p); p = 0L; }
283 #define wxDELETE(p) if ( (p) != NULL ) { delete p; p = NULL; }
284 #endif /* __SGI__CC__ */
286 // delete an array and NULL it (see comments above)
287 #if defined(__SGI_CC__)
288 // see above comment.
289 #define wxDELETEA(p) if ( (p) ) { delete [] (p); p = 0L; }
291 #define wxDELETEA(p) if ( ((void *) (p)) != NULL ) { delete [] p; p = NULL; }
292 #endif /* __SGI__CC__ */
294 /// size of statically declared array
295 #define WXSIZEOF(array) (sizeof(array)/sizeof(array[0]))
297 // Use of these suppresses some compiler warnings
298 WXDLLEXPORT_DATA(extern const bool) wxTrue
;
299 WXDLLEXPORT_DATA(extern const bool) wxFalse
;
301 // ----------------------------------------------------------------------------
302 // compiler specific settings
303 // ----------------------------------------------------------------------------
305 // to allow compiling with warning level 4 under Microsoft Visual C++ some
306 // warnings just must be disabled
308 #pragma warning(disable: 4514) // unreferenced inline func has been removed
310 you might be tempted to disable this one also: triggered by CHECK and FAIL
311 macros in debug.h, but it's, overall, a rather useful one, so I leave it and
312 will try to find some way to disable this warning just for CHECK/FAIL. Anyone?
314 #pragma warning(disable: 4127) // conditional expression is constant
317 #if defined(__MWERKS__)
321 #define except(x) catch(...)
324 // where should i put this? we need to make sure of this as it breaks
325 // the <iostream> code.
326 #if !wxUSE_IOSTREAMH && defined(__WXDEBUG__)
332 // Callback function type definition
333 typedef void (*wxFunction
) (wxObject
&, wxEvent
&);
336 * Window style flags.
337 * Values are chosen so they can be |'ed in a bit list.
338 * Some styles are used across more than one group,
339 * so the values mustn't clash with others in the group.
340 * Otherwise, numbers can be reused across groups.
343 * Window (cross-group) styles now take up the first half
344 * of the flag, and control-specific styles the
350 * Window (Frame/dialog/subwindow/panel item) style flags
352 #define wxVSCROLL 0x80000000
353 #define wxHSCROLL 0x40000000
354 #define wxCAPTION 0x20000000
357 #define wxDOUBLE_BORDER 0x10000000
358 #define wxSUNKEN_BORDER 0x08000000
359 #define wxRAISED_BORDER 0x04000000
360 #define wxBORDER 0x02000000
361 #define wxSIMPLE_BORDER 0x02000000
362 #define wxSTATIC_BORDER 0x01000000
363 #define wxTRANSPARENT_WINDOW 0x00100000
364 #define wxNO_BORDER 0x00200000
366 #define wxUSER_COLOURS 0x00800000
367 // Override CTL3D etc. control colour processing to
368 // allow own background colour
369 // OBSOLETE - use wxNO_3D instead
370 #define wxNO_3D 0x00800000
371 // Override CTL3D or native 3D styles for children
372 #define wxCLIP_CHILDREN 0x00400000
373 // Clip children when painting, which reduces flicker in
374 // e.g. frames and splitter windows, but can't be used in
375 // a panel where a static box must be 'transparent' (panel
376 // paints the background for it)
378 // Add this style to a panel to get tab traversal working
379 // outside of dialogs.
380 #define wxTAB_TRAVERSAL 0x00080000
383 #define wxHORIZONTAL 0x01
384 #define wxVERTICAL 0x02
385 #define wxBOTH (wxVERTICAL|wxHORIZONTAL)
386 #define wxCENTER_FRAME 0x04 /* centering into frame rather than screen */
389 * Frame/dialog style flags
391 #define wxSTAY_ON_TOP 0x8000
392 #define wxICONIZE 0x4000
393 #define wxMINIMIZE wxICONIZE
394 #define wxMAXIMIZE 0x2000
395 #define wxTHICK_FRAME 0x1000
396 #define wxSYSTEM_MENU 0x0800
397 #define wxMINIMIZE_BOX 0x0400
398 #define wxMAXIMIZE_BOX 0x0200
399 #define wxTINY_CAPTION_HORIZ 0x0100
400 #define wxTINY_CAPTION_VERT 0x0080
401 #define wxRESIZE_BOX wxMAXIMIZE_BOX
402 #define wxRESIZE_BORDER 0x0040
403 #define wxDIALOG_MODAL 0x0020
404 #define wxDIALOG_MODELESS 0x0000
405 /* Add for normal Windows frame behaviour */
406 #define wxFRAME_FLOAT_ON_PARENT 0x0020
409 #if WXWIN_COMPATIBILITY
410 #define wxDEFAULT_FRAME wxDEFAULT_FRAME_STYLE
413 #define wxDEFAULT_FRAME_STYLE (wxSYSTEM_MENU|wxRESIZE_BORDER | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxTHICK_FRAME | wxSYSTEM_MENU | wxCAPTION | wxCLIP_CHILDREN)
416 # define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU|wxCAPTION|wxTHICK_FRAME)
418 // Under Unix, the dialogs don't have a system menu. Specifying
419 // wxSYSTEM_MENU here, will make a close button appear.
420 # define wxDEFAULT_DIALOG_STYLE (wxCAPTION)
425 * Subwindow style flags
427 #define wxRETAINED 0x0001
428 #define wxBACKINGSTORE wxRETAINED
429 // wxCanvas or wxPanel can optionally have a thick frame under MS Windows.
430 // #define wxTHICK_FRAME 0x1000
433 * wxToolBar style flags
435 #define wxTB_3DBUTTONS 0x8000
436 #define wxTB_HORIZONTAL 0x0002
437 #define wxTB_VERTICAL 0x0004
438 // Flatbar/Coolbar under Win98/ GTK 1.2
439 #define wxTB_FLAT 0x0008
440 // use native docking under GTK
441 #define wxTB_DOCKABLE 0x0010
444 * wxMenuBar style flags
446 // use native docking
447 #define wxMB_DOCKABLE 0x0001
451 * Apply to all panel items
453 #define wxCOLOURED 0x0800
454 // Alignment for panel item labels: replaces characters with zeros
455 // when creating label, so spaces can be included in string for alignment.
456 #define wxFIXED_LENGTH 0x0400
457 #define wxALIGN_LEFT 0x0000
458 #define wxALIGN_CENTER 0x0100
459 #define wxALIGN_CENTRE 0x0100
460 #define wxALIGN_RIGHT 0x0200
463 * Styles for wxListBox
465 #define wxLB_SORT 0x0010
466 #define wxLB_SINGLE 0x0020
467 #define wxLB_MULTIPLE 0x0040
468 #define wxLB_EXTENDED 0x0080
469 // wxLB_OWNERDRAW is Windows-only
470 #define wxLB_OWNERDRAW 0x0100
471 #define wxLB_NEEDED_SB 0x0200
472 #define wxLB_ALWAYS_SB 0x0400
473 #define wxLB_HSCROLL wxHSCROLL
476 * wxTextCtrl style flags
478 #define wxPROCESS_ENTER 0x0004
479 #define wxPASSWORD 0x0008
480 #define wxTE_PROCESS_ENTER wxPROCESS_ENTER
481 #define wxTE_PASSWORD wxPASSWORD
482 #define wxTE_READONLY 0x0010
483 #define wxTE_MULTILINE 0x0020
484 #define wxTE_PROCESS_TAB 0x0040
487 * wxComboBox style flags
489 #define wxCB_SIMPLE 0x0004
490 #define wxCB_SORT 0x0008
491 #define wxCB_READONLY 0x0010
492 #define wxCB_DROPDOWN 0x0020
495 * wxRadioBox/wxRadioButton style flags
498 // New, more intuitive names to specify majorDim argument
500 // Same as wxRA_HORIZONTAL
501 #define wxRA_SPECIFY_COLS 0x0001
502 // Same as wxRA_VERTICAL
503 #define wxRA_SPECIFY_ROWS 0x0002
505 // Old names for compatibility
506 #define wxRA_HORIZONTAL wxHORIZONTAL
507 #define wxRA_VERTICAL wxVERTICAL
508 #define wxRB_GROUP 0x0004
513 #define wxGA_PROGRESSBAR 0x0004
514 #define wxGA_HORIZONTAL wxHORIZONTAL
515 #define wxGA_VERTICAL wxVERTICAL
517 #define wxGA_SMOOTH 0x0008
522 #define wxSL_HORIZONTAL wxHORIZONTAL
523 #define wxSL_VERTICAL wxVERTICAL
524 // The next one is obsolete - use scroll events instead
525 #define wxSL_NOTIFY_DRAG 0x0000
526 #define wxSL_AUTOTICKS 0x0008
527 // #define wxSL_MANUALTICKS 0x0010
528 #define wxSL_LABELS 0x0020
529 #define wxSL_LEFT 0x0040
530 #define wxSL_TOP 0x0080
531 #define wxSL_RIGHT 0x0100
532 #define wxSL_BOTTOM 0x0200
533 #define wxSL_BOTH 0x0400
534 #define wxSL_SELRANGE 0x0800
539 #define wxSB_HORIZONTAL wxHORIZONTAL
540 #define wxSB_VERTICAL wxVERTICAL
543 * wxButton flags (Win32 only)
545 #define wxBU_AUTODRAW 0x0004
546 #define wxBU_NOAUTODRAW 0x0000
551 #define wxTR_HAS_BUTTONS 0x0004
552 #define wxTR_EDIT_LABELS 0x0008
553 #define wxTR_LINES_AT_ROOT 0x0010
558 #define wxLC_ICON 0x0004
559 #define wxLC_SMALL_ICON 0x0008
560 #define wxLC_LIST 0x0010
561 #define wxLC_REPORT 0x0020
562 #define wxLC_ALIGN_TOP 0x0040
563 #define wxLC_ALIGN_LEFT 0x0080
564 #define wxLC_AUTOARRANGE 0x0100
565 #define wxLC_USER_TEXT 0x0200
566 #define wxLC_EDIT_LABELS 0x0400
567 #define wxLC_NO_HEADER 0x0800
568 #define wxLC_NO_SORT_HEADER 0x1000
569 #define wxLC_SINGLE_SEL 0x2000
570 #define wxLC_SORT_ASCENDING 0x4000
571 #define wxLC_SORT_DESCENDING 0x8000
573 #define wxLC_MASK_TYPE (wxLC_ICON | wxLC_SMALL_ICON | wxLC_LIST | wxLC_REPORT)
574 #define wxLC_MASK_ALIGN (wxLC_ALIGN_TOP | wxLC_ALIGN_LEFT)
575 #define wxLC_MASK_SORT (wxLC_SORT_ASCENDING | wxLC_SORT_DESCENDING)
577 // Omitted because (a) too much detail (b) not enough style flags
578 // #define wxLC_NO_SCROLL
579 // #define wxLC_NO_LABEL_WRAP
580 // #define wxLC_OWNERDRAW_FIXED
581 // #define wxLC_SHOW_SEL_ALWAYS
587 #define wxSP_VERTICAL 0x0004
588 #define wxSP_HORIZONTAL 0x0008
589 #define wxSP_ARROW_KEYS 0x0010
590 #define wxSP_WRAP 0x0020
593 * wxSplitterWindow flags
596 #define wxSP_NOBORDER 0x0000
597 #define wxSP_3D 0x0004
598 #define wxSP_BORDER 0x0008
601 * wxFrame extra flags
604 // No title on taskbar
605 #define wxFRAME_TOOL_WINDOW 0x0004
611 #define wxTC_MULTILINE 0x0000
612 #define wxTC_RIGHTJUSTIFY 0x0004
613 #define wxTC_FIXEDWIDTH 0x0008
614 #define wxTC_OWNERDRAW 0x0010
619 #define wxNB_FIXEDWIDTH 0x0008
622 * wxStatusBar95 flags
625 #define wxST_SIZEGRIP 0x0002
630 #define wxLI_HORIZONTAL wxHORIZONTAL
631 #define wxLI_VERTICAL wxVERTICAL
640 // Text font families
647 wxTELETYPE
, /* @@@@ */
649 // Proportional or Fixed width fonts (not yet used)
656 // Also wxNORMAL for normal (non-italic text)
670 // Brush & Pen Stippling. Note that a stippled pen cannot be dashed!!
671 // Note also that stippling a Pen IS meaningfull, because a Line is
672 // drawn with a Pen, and without any Brush -- and it can be stippled.
680 #define IS_HATCH(s) ((s)>=wxBDIAGONAL_HATCH && (s)<=wxVERTICAL_HATCH)
696 wxXOR
, // src XOR dst
698 wxOR_REVERSE
, // src OR (NOT dst)
699 wxAND_REVERSE
,// src AND (NOT dst)
701 wxAND
, // src AND dst
702 wxAND_INVERT
, // (NOT src) AND dst
704 wxNOR
, // (NOT src) AND (NOT dst)
705 wxEQUIV
, // (NOT src) XOR dst
706 wxSRC_INVERT
, // (NOT src)
707 wxOR_INVERT
, // (NOT src) OR dst
708 wxNAND
, // (NOT src) OR (NOT dst)
711 wxSRC_OR
, // source _bitmap_ OR destination
712 wxSRC_AND
// source _bitmap_ AND destination
716 #define wxFLOOD_SURFACE 1
717 #define wxFLOOD_BORDER 2
719 // Polygon filling mode
720 #define wxODDEVEN_RULE 1
721 #define wxWINDING_RULE 2
723 // ToolPanel in wxFrame
725 #define wxTOOL_BOTTOM 2
726 #define wxTOOL_LEFT 3
727 #define wxTOOL_RIGHT 4
729 // Dialog specifiers/return values
732 #define wxYES_NO 0x0002
733 #define wxCANCEL 0x0004
737 #define wxICON_EXCLAMATION 0x0020
738 #define wxICON_HAND 0x0040
739 #define wxICON_QUESTION 0x0080
740 #define wxICON_INFORMATION 0x0100
742 #define wxICON_STOP wxICON_HAND
743 #define wxICON_ASTERISK wxICON_INFORMATION
744 #define wxICON_MASK (0x0020|0x0040|0x0080|0x0100)
746 #define wxCENTRE 0x0200
747 #define wxCENTER wxCENTRE
749 // Possible SetSize flags
751 // Use internally-calculated width if -1
752 #define wxSIZE_AUTO_WIDTH 0x0001
753 // Use internally-calculated height if -1
754 #define wxSIZE_AUTO_HEIGHT 0x0002
755 // Use internally-calculated width and height if each is -1
756 #define wxSIZE_AUTO (wxSIZE_AUTO_WIDTH|wxSIZE_AUTO_HEIGHT)
757 // Ignore missing (-1) dimensions (use existing).
758 // For readability only: test for wxSIZE_AUTO_WIDTH/HEIGHT in code.
759 #define wxSIZE_USE_EXISTING 0x0000
760 // Allow -1 as a valid position
761 #define wxSIZE_ALLOW_MINUS_ONE 0x0004
762 // Don't do parent client adjustments (for implementation only)
763 #define wxSIZE_NO_ADJUSTMENTS 0x0008
770 wxDF_TEXT
= 1, /* CF_TEXT */
771 wxDF_BITMAP
= 2, /* CF_BITMAP */
772 wxDF_METAFILE
= 3, /* CF_METAFILEPICT */
776 wxDF_OEMTEXT
= 7, /* CF_OEMTEXT */
777 wxDF_DIB
= 8, /* CF_DIB */
782 wxDF_UNICODETEXT
= 13,
783 wxDF_ENHMETAFILE
= 14,
784 wxDF_FILENAME
= 15, /* CF_HDROP */
791 /* Virtual keycodes */
813 WXK_PRIOR
, /* Page up */
814 WXK_NEXT
, /* Page down */
873 /* OS mnemonics -- Identify the running OS (useful for Windows)
874 * [Not all platforms are currently available or supported] */
878 wxCURSES
, // Text-only CURSES
879 wxXVIEW_X
, // Sun's XView OpenLOOK toolkit
880 wxMOTIF_X
, // OSF Motif 1.x.x
881 wxCOSE_X
, // OSF Common Desktop Environment
882 wxNEXTSTEP
, // NeXTStep
883 wxMACINTOSH
, // Apple System 7
887 wxOS2_PM
, // OS/2 Workplace
888 wxWINDOWS
, // Windows or WfW
889 wxPENWINDOWS
, // Windows for Pen Computing
890 wxWINDOWS_NT
, // Windows NT
891 wxWIN32S
, // Windows 32S API
892 wxWIN95
, // Windows 95
893 wxWIN386
// Watcom 32-bit supervisor modus
896 /* Standard menu identifiers */
897 #define wxID_LOWEST 4999
899 #define wxID_OPEN 5000
900 #define wxID_CLOSE 5001
901 #define wxID_NEW 5002
902 #define wxID_SAVE 5003
903 #define wxID_SAVEAS 5004
904 #define wxID_REVERT 5005
905 #define wxID_EXIT 5006
906 #define wxID_UNDO 5007
907 #define wxID_REDO 5008
908 #define wxID_HELP 5009
909 #define wxID_PRINT 5010
910 #define wxID_PRINT_SETUP 5011
911 #define wxID_PREVIEW 5012
912 #define wxID_ABOUT 5013
913 #define wxID_HELP_CONTENTS 5014
914 #define wxID_HELP_COMMANDS 5015
915 #define wxID_HELP_PROCEDURES 5016
916 #define wxID_HELP_CONTEXT 5017
918 #define wxID_CUT 5030
919 #define wxID_COPY 5031
920 #define wxID_PASTE 5032
921 #define wxID_CLEAR 5033
922 #define wxID_FIND 5034
923 #define wxID_DUPLICATE 5035
924 #define wxID_SELECTALL 5036
926 #define wxID_FILE1 5050
927 #define wxID_FILE2 5051
928 #define wxID_FILE3 5052
929 #define wxID_FILE4 5053
930 #define wxID_FILE5 5054
931 #define wxID_FILE6 5055
932 #define wxID_FILE7 5056
933 #define wxID_FILE8 5057
934 #define wxID_FILE9 5058
937 #define wxID_CANCEL 5101
938 #define wxID_APPLY 5102
939 #define wxID_YES 5103
941 #define wxID_STATIC 5105
943 #define wxID_HIGHEST 5999
945 // Mapping modes (as per Windows)
947 #define wxMM_LOMETRIC 2
948 #define wxMM_HIMETRIC 3
949 #define wxMM_LOENGLISH 4
950 #define wxMM_HIENGLISH 5
952 #define wxMM_ISOTROPIC 7
953 #define wxMM_ANISOTROPIC 8
955 #define wxMM_POINTS 9
956 #define wxMM_METRIC 10
958 /* Shortcut for easier dialog-unit-to-pixel conversion */
959 #define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt)
963 wxPAPER_NONE
, // Use specific dimensions
964 wxPAPER_LETTER
, // Letter, 8 1/2 by 11 inches
965 wxPAPER_LEGAL
, // Legal, 8 1/2 by 14 inches
966 wxPAPER_A4
, // A4 Sheet, 210 by 297 millimeters
967 wxPAPER_CSHEET
, // C Sheet, 17 by 22 inches
968 wxPAPER_DSHEET
, // D Sheet, 22 by 34 inches
969 wxPAPER_ESHEET
, // E Sheet, 34 by 44 inches
970 wxPAPER_LETTERSMALL
, // Letter Small, 8 1/2 by 11 inches
971 wxPAPER_TABLOID
, // Tabloid, 11 by 17 inches
972 wxPAPER_LEDGER
, // Ledger, 17 by 11 inches
973 wxPAPER_STATEMENT
, // Statement, 5 1/2 by 8 1/2 inches
974 wxPAPER_EXECUTIVE
, // Executive, 7 1/4 by 10 1/2 inches
975 wxPAPER_A3
, // A3 sheet, 297 by 420 millimeters
976 wxPAPER_A4SMALL
, // A4 small sheet, 210 by 297 millimeters
977 wxPAPER_A5
, // A5 sheet, 148 by 210 millimeters
978 wxPAPER_B4
, // B4 sheet, 250 by 354 millimeters
979 wxPAPER_B5
, // B5 sheet, 182-by-257-millimeter paper
980 wxPAPER_FOLIO
, // Folio, 8-1/2-by-13-inch paper
981 wxPAPER_QUARTO
, // Quarto, 215-by-275-millimeter paper
982 wxPAPER_10X14
, // 10-by-14-inch sheet
983 wxPAPER_11X17
, // 11-by-17-inch sheet
984 wxPAPER_NOTE
, // Note, 8 1/2 by 11 inches
985 wxPAPER_ENV_9
, // #9 Envelope, 3 7/8 by 8 7/8 inches
986 wxPAPER_ENV_10
, // #10 Envelope, 4 1/8 by 9 1/2 inches
987 wxPAPER_ENV_11
, // #11 Envelope, 4 1/2 by 10 3/8 inches
988 wxPAPER_ENV_12
, // #12 Envelope, 4 3/4 by 11 inches
989 wxPAPER_ENV_14
, // #14 Envelope, 5 by 11 1/2 inches
990 wxPAPER_ENV_DL
, // DL Envelope, 110 by 220 millimeters
991 wxPAPER_ENV_C5
, // C5 Envelope, 162 by 229 millimeters
992 wxPAPER_ENV_C3
, // C3 Envelope, 324 by 458 millimeters
993 wxPAPER_ENV_C4
, // C4 Envelope, 229 by 324 millimeters
994 wxPAPER_ENV_C6
, // C6 Envelope, 114 by 162 millimeters
995 wxPAPER_ENV_C65
, // C65 Envelope, 114 by 229 millimeters
996 wxPAPER_ENV_B4
, // B4 Envelope, 250 by 353 millimeters
997 wxPAPER_ENV_B5
, // B5 Envelope, 176 by 250 millimeters
998 wxPAPER_ENV_B6
, // B6 Envelope, 176 by 125 millimeters
999 wxPAPER_ENV_ITALY
, // Italy Envelope, 110 by 230 millimeters
1000 wxPAPER_ENV_MONARCH
, // Monarch Envelope, 3 7/8 by 7 1/2 inches
1001 wxPAPER_ENV_PERSONAL
, // 6 3/4 Envelope, 3 5/8 by 6 1/2 inches
1002 wxPAPER_FANFOLD_US
, // US Std Fanfold, 14 7/8 by 11 inches
1003 wxPAPER_FANFOLD_STD_GERMAN
, // German Std Fanfold, 8 1/2 by 12 inches
1004 wxPAPER_FANFOLD_LGL_GERMAN
, // German Legal Fanfold, 8 1/2 by 13 inches
1006 wxPAPER_ISO_B4
, // B4 (ISO) 250 x 353 mm
1007 wxPAPER_JAPANESE_POSTCARD
, // Japanese Postcard 100 x 148 mm
1008 wxPAPER_9X11
, // 9 x 11 in
1009 wxPAPER_10X11
, // 10 x 11 in
1010 wxPAPER_15X11
, // 15 x 11 in
1011 wxPAPER_ENV_INVITE
, // Envelope Invite 220 x 220 mm
1012 wxPAPER_LETTER_EXTRA
, // Letter Extra 9 \275 x 12 in
1013 wxPAPER_LEGAL_EXTRA
, // Legal Extra 9 \275 x 15 in
1014 wxPAPER_TABLOID_EXTRA
, // Tabloid Extra 11.69 x 18 in
1015 wxPAPER_A4_EXTRA
, // A4 Extra 9.27 x 12.69 in
1016 wxPAPER_LETTER_TRANSVERSE
, // Letter Transverse 8 \275 x 11 in
1017 wxPAPER_A4_TRANSVERSE
, // A4 Transverse 210 x 297 mm
1018 wxPAPER_LETTER_EXTRA_TRANSVERSE
, // Letter Extra Transverse 9\275 x 12 in
1019 wxPAPER_A_PLUS
, // SuperA/SuperA/A4 227 x 356 mm
1020 wxPAPER_B_PLUS
, // SuperB/SuperB/A3 305 x 487 mm
1021 wxPAPER_LETTER_PLUS
, // Letter Plus 8.5 x 12.69 in
1022 wxPAPER_A4_PLUS
, // A4 Plus 210 x 330 mm
1023 wxPAPER_A5_TRANSVERSE
, // A5 Transverse 148 x 210 mm
1024 wxPAPER_B5_TRANSVERSE
, // B5 (JIS) Transverse 182 x 257 mm
1025 wxPAPER_A3_EXTRA
, // A3 Extra 322 x 445 mm
1026 wxPAPER_A5_EXTRA
, // A5 Extra 174 x 235 mm
1027 wxPAPER_B5_EXTRA
, // B5 (ISO) Extra 201 x 276 mm
1028 wxPAPER_A2
, // A2 420 x 594 mm
1029 wxPAPER_A3_TRANSVERSE
, // A3 Transverse 297 x 420 mm
1030 wxPAPER_A3_EXTRA_TRANSVERSE
// A3 Extra Transverse 322 x 445 mm
1034 /* Printing orientation */
1036 #define wxPORTRAIT 1
1037 #define wxLANDSCAPE 2
1040 /* Duplex printing modes
1044 wxDUPLEX_SIMPLEX
, // Non-duplex
1045 wxDUPLEX_HORIZONTAL
,
1052 #define wxPRINT_QUALITY_HIGH -1
1053 #define wxPRINT_QUALITY_MEDIUM -2
1054 #define wxPRINT_QUALITY_LOW -3
1055 #define wxPRINT_QUALITY_DRAFT -4
1057 typedef int wxPrintQuality
;
1059 /* Print mode (currently PostScript only)
1063 wxPRINT_MODE_NONE
= 0,
1064 wxPRINT_MODE_PREVIEW
= 1, // Preview in external application
1065 wxPRINT_MODE_FILE
= 2, // Print to file
1066 wxPRINT_MODE_PRINTER
= 3 // Send to printer
1071 // Stand-ins for Windows types, to avoid #including all of windows.h
1072 typedef unsigned long WXHWND
;
1073 typedef unsigned long WXHANDLE
;
1074 typedef unsigned long WXHICON
;
1075 typedef unsigned long WXHFONT
;
1076 typedef unsigned long WXHMENU
;
1077 typedef unsigned long WXHPEN
;
1078 typedef unsigned long WXHBRUSH
;
1079 typedef unsigned long WXHPALETTE
;
1080 typedef unsigned long WXHCURSOR
;
1081 typedef unsigned long WXHRGN
;
1082 typedef unsigned long WXHACCEL
;
1083 typedef unsigned long WXHINSTANCE
;
1084 typedef unsigned long WXHBITMAP
;
1085 typedef unsigned long WXHIMAGELIST
;
1086 typedef unsigned long WXHGLOBAL
;
1087 typedef unsigned long WXHDC
;
1088 typedef unsigned int WXUINT
;
1089 typedef unsigned long WXDWORD
;
1090 typedef unsigned short WXWORD
;
1091 typedef unsigned int WXWPARAM
;
1092 typedef long WXLPARAM
;
1093 typedef unsigned long WXCOLORREF
;
1094 typedef void * WXRGNDATA
;
1095 typedef void * WXMSG
;
1096 typedef unsigned long WXHCONV
;
1097 typedef unsigned long WXHKEY
;
1098 typedef unsigned long WXHTREEITEM
;
1100 typedef void * WXDRAWITEMSTRUCT
;
1101 typedef void * WXMEASUREITEMSTRUCT
;
1102 typedef void * WXLPCREATESTRUCT
;
1105 typedef int (*WXFARPROC
)();
1106 #elif defined(__WIN32__)
1107 typedef int (__stdcall
*WXFARPROC
)();
1109 typedef int (*WXFARPROC
)();
1112 typedef WXHWND WXWidget
;
1116 /* Stand-ins for X/Xt/Motif types */
1117 typedef void* WXWindow
;
1118 typedef void* WXWidget
;
1119 typedef void* WXAppContext
;
1120 typedef void* WXColormap
;
1121 typedef void WXDisplay
;
1122 typedef void WXEvent
;
1123 typedef void* WXCursor
;
1124 typedef void* WXPixmap
;
1125 typedef void* WXFontStructPtr
;
1127 typedef void* WXRegion
;
1128 typedef void* WXFont
;
1129 typedef void* WXImage
;
1130 typedef void* WXCursor
;
1131 typedef void* WXFontList
;
1135 /* Stand-ins for GLIB types */
1137 typedef unsigned guint
;
1138 typedef unsigned long gulong
;
1139 typedef void* gpointer
;
1141 /* Stand-ins for GDK types */
1142 typedef gulong GdkAtom
;
1143 typedef struct _GdkColor GdkColor
;
1144 typedef struct _GdkColormap GdkColormap
;
1145 typedef struct _GdkFont GdkFont
;
1146 typedef struct _GdkGC GdkGC
;
1147 typedef struct _GdkWindow GdkWindow
;
1148 typedef struct _GdkWindow GdkBitmap
;
1149 typedef struct _GdkWindow GdkPixmap
;
1150 typedef struct _GdkCursor GdkCursor
;
1151 typedef struct _GdkRegion GdkRegion
;
1152 typedef struct _GdkDragContext GdkDragContext
;
1154 /* Stand-ins for GTK types */
1155 typedef struct _GtkWidget GtkWidget
;
1156 typedef struct _GtkStyle GtkStyle
;
1157 typedef struct _GtkAdjustment GtkAdjustment
;
1158 typedef struct _GtkList GtkList
;
1159 typedef struct _GtkToolbar GtkToolbar
;
1160 typedef struct _GtkTooltips GtkTooltips
;
1161 typedef struct _GtkNotebook GtkNotebook
;
1162 typedef struct _GtkNotebookPage GtkNotebookPage
;
1163 typedef struct _GtkAccelGroup GtkAccelGroup
;
1164 typedef struct _GtkItemFactory GtkItemFactory
;
1165 typedef struct _GtkSelectionData GtkSelectionData
;
1167 typedef GtkWidget
*WXWidget
;
1170 // This is required because of clashing macros in windows.h, which may be
1171 // included before or after wxWindows classes, and therefore must be
1172 // disabled here before any significant wxWindows headers are included.
1204 // ---------------------------------------------------------------------------
1205 // macro to define a class without copy ctor nor assignment operator
1206 // ---------------------------------------------------------------------------
1208 #define DECLARE_NO_COPY_CLASS(classname) \
1210 classname(const classname&); \
1211 classname& operator=(const classname&)