]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/_defs.i
reSWIGged
[wxWidgets.git] / wxPython / src / _defs.i
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: _defs.i
3 // Purpose: Definitions and stuff
4 //
5 // Author: Robin Dunn
6 //
7 // Created: 6/24/97
8 // RCS-ID: $Id$
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
12
13
14 // Globally turn on the autodoc feature
15 %feature("autodoc", "1"); // 0 == no param types, 1 == show param types
16
17
18 //---------------------------------------------------------------------------
19 // some type definitions to simplify things for SWIG
20
21 // typedef int wxWindowID;
22 // typedef int wxCoord;
23 // typedef int wxInt32;
24 // typedef unsigned int wxUint32;
25 typedef int wxEventType;
26 typedef unsigned int size_t;
27 typedef unsigned int time_t;
28 typedef unsigned char byte;
29
30 #define wxWindowID int
31 #define wxCoord int
32 #define wxInt32 int
33 #define wxUint32 unsigned int
34 //#define wxEventType int
35 //#define size_t unsigned int
36 //#define time_t unsigned int
37 //#define byte unsigned char
38
39
40 //----------------------------------------------------------------------
41 // Various SWIG macros and such
42
43 #define %addtofunc %feature("addtofunc")
44 #define %kwargs %feature("kwargs")
45 #define %nokwargs %feature("nokwargs")
46
47 #ifndef %shadow
48 #define %shadow %insert("shadow")
49 #endif
50
51 #ifndef %pythoncode
52 #define %pythoncode %insert("python")
53 #endif
54
55 #define WXUNUSED(x) x
56
57
58 // Given the name of a wxChar (or wxString) constant in C++, make
59 // a static wxString for wxPython, and also let SWIG wrap it.
60 %define MAKE_CONST_WXSTRING(strname)
61 %{ static const wxString wxPy##strname(wx##strname); %}
62 %immutable;
63 %name(strname) const wxString wxPy##strname;
64 %mutable;
65 %enddef
66
67
68 // Generate code in the module init for the event types, since they may not be
69 // initialized yet when they are used in the static swig_const_table.
70 %typemap(consttab) wxEventType; // TODO: how to prevent code inserted into the consttab?
71 %typemap(constcode) wxEventType "PyDict_SetItemString(d, \"$symname\", PyInt_FromLong($value));";
72
73
74
75 // Macros for the docstring and autodoc features of SWIG.
76
77 // Set the docsring for the given full or partial declaration
78 #define DocStr(decl, docstr) %feature("docstring") decl docstr
79
80 // Set the autodoc string for a full or partial declaration
81 #define DocA(decl, astr) %feature("autodoc") decl astr
82
83 // Set both the autodoc and docstring for a full or partial declaration
84 %define DocAStr(decl, astr, docstr)
85 %feature("autodoc") decl astr;
86 %feature("docstring") decl docstr
87 %enddef
88
89 // Set the detailed reference docs for full or partial declaration
90 #define DocRef(decl, str) %feature("docref") decl str
91
92
93
94
95 // Set the docstring for a decl and then define the decl too. Must use the
96 // full declaration of the item.
97 %define DocDeclStr(type, decl, docstr)
98 %feature("docstring") decl docstr;
99 type decl
100 %enddef
101
102 // As above, but also give the decl a new %name
103 %define DocDeclStrName(type, decl, docstr, newname)
104 %feature("docstring") decl docstr;
105 %name(newname) type decl
106 %enddef
107
108
109 // Set the autodoc string for a decl and then define the decl too. Must use the
110 // full declaration of the item.
111 %define DocDeclA(type, decl, astr)
112 %feature("autodoc") decl astr;
113 type decl
114 %enddef
115
116 // As above, but also give the decl a new %name
117 %define DocDeclAName(type, decl, astr, newname)
118 %feature("autodoc") decl astr;
119 %name(newname) type decl
120 %enddef
121
122
123
124 // Set the autodoc and the docstring for a decl and then define the decl too.
125 // Must use the full declaration of the item.
126 %define DocDeclAStr(type, decl, astr, docstr)
127 %feature("autodoc") decl astr;
128 %feature("docstring") decl docstr;
129 type decl
130 %enddef
131
132 // As above, but also give the decl a new %name
133 %define DocDeclAStrName(type, decl, astr, docstr, newname)
134 %feature("autodoc") decl astr;
135 %feature("docstring") decl docstr;
136 %name(newname) type decl
137 %enddef
138
139
140
141
142 // Set the docstring for a constructor decl and then define the decl too.
143 // Must use the full declaration of the item.
144 %define DocCtorStr(decl, docstr)
145 %feature("docstring") decl docstr;
146 decl
147 %enddef
148
149 // As above, but also give the decl a new %name
150 %define DocCtorStrName(decl, docstr, newname)
151 %feature("docstring") decl docstr;
152 %name(newname) decl
153 %enddef
154
155
156 // Set the autodoc string for a decl and then define the decl too. Must use the
157 // full declaration of the item.
158 %define DocCtorA(decl, astr)
159 %feature("autodoc") decl astr;
160 decl
161 %enddef
162
163 // As above, but also give the decl a new %name
164 %define DocCtorAname(decl, astr, newname)
165 %feature("autodoc") decl astr;
166 %name(newname) decl
167 %enddef
168
169
170
171 // Set the autodoc and the docstring for a decl and then define the decl too.
172 // Must use the full declaration of the item.
173 %define DocCtorAStr(decl, astr, docstr)
174 %feature("autodoc") decl astr;
175 %feature("docstring") decl docstr;
176 decl
177 %enddef
178
179 // As above, but also give the decl a new %name
180 %define DocCtorAStrName(decl, astr, docstr, newname)
181 %feature("autodoc") decl astr;
182 %feature("docstring") decl docstr;
183 %name(newname) decl
184 %enddef
185
186
187 // A placeholder for the detailed reference docs.
188 %define RefDoc(decl, docstr)
189 %enddef
190
191
192 %define %newgroup
193 %pythoncode {
194 %#---------------------------------------------------------------------------
195 }
196 %enddef
197
198 //---------------------------------------------------------------------------
199 // Forward declarations and %renames for some classes, so the autodoc strings
200 // will be able to use the right types even when the real class declaration is
201 // not in the module being processed.
202
203 #ifdef BUILDING_RENAMERS
204 #define FORWARD_DECLARE(wxName, Name)
205 #else
206 %define FORWARD_DECLARE(wxName, Name)
207 %rename(Name) wxName;
208 class wxName;
209 %enddef
210 #endif
211
212 FORWARD_DECLARE(wxString, String);
213 FORWARD_DECLARE(wxBitmap, Bitmap);
214 FORWARD_DECLARE(wxDateTime, DateTime);
215 FORWARD_DECLARE(wxInputStream, InputStream);
216 FORWARD_DECLARE(wxDC, DC);
217 FORWARD_DECLARE(wxCursor, Cursor);
218 FORWARD_DECLARE(wxRegion, Region);
219 FORWARD_DECLARE(wxColour, Colour);
220 FORWARD_DECLARE(wxFont, Font);
221 FORWARD_DECLARE(wxCaret, Caret);
222 FORWARD_DECLARE(wxToolTip, ToolTip);
223 FORWARD_DECLARE(wxPyDropTarget, PyDropTarget);
224
225 //---------------------------------------------------------------------------
226
227 // General numeric #define's and etc. Making them all enums makes SWIG use the
228 // real macro when making the Python Int
229
230 enum {
231 // wxMAJOR_VERSION,
232 // wxMINOR_VERSION,
233 // wxRELEASE_NUMBER,
234
235 wxNOT_FOUND,
236
237 wxVSCROLL,
238 wxHSCROLL,
239 wxCAPTION,
240 wxDOUBLE_BORDER,
241 wxSUNKEN_BORDER,
242 wxRAISED_BORDER,
243 wxBORDER,
244 wxSIMPLE_BORDER,
245 wxSTATIC_BORDER,
246 wxTRANSPARENT_WINDOW,
247 wxNO_BORDER,
248 wxUSER_COLOURS,
249 wxNO_3D,
250
251 wxTAB_TRAVERSAL,
252 wxWANTS_CHARS,
253 wxPOPUP_WINDOW,
254 wxCENTER_FRAME,
255 wxCENTRE_ON_SCREEN,
256 wxCENTER_ON_SCREEN,
257
258 wxSTAY_ON_TOP,
259 wxICONIZE,
260 wxMINIMIZE,
261 wxMAXIMIZE,
262 wxCLOSE_BOX,
263 wxTHICK_FRAME,
264 wxSYSTEM_MENU,
265 wxMINIMIZE_BOX,
266 wxMAXIMIZE_BOX,
267 wxTINY_CAPTION_HORIZ,
268 wxTINY_CAPTION_VERT,
269 wxRESIZE_BOX,
270 wxRESIZE_BORDER,
271 wxDIALOG_MODAL,
272 wxDIALOG_MODELESS,
273 wxDIALOG_NO_PARENT,
274 wxDEFAULT_FRAME_STYLE,
275 wxDEFAULT_DIALOG_STYLE,
276
277 wxFRAME_TOOL_WINDOW,
278 wxFRAME_FLOAT_ON_PARENT,
279 wxFRAME_NO_WINDOW_MENU,
280 wxFRAME_NO_TASKBAR,
281 wxFRAME_SHAPED,
282
283 wxED_CLIENT_MARGIN,
284 wxED_BUTTONS_BOTTOM,
285 wxED_BUTTONS_RIGHT,
286 wxED_STATIC_LINE,
287 wxEXT_DIALOG_STYLE,
288
289 wxCLIP_CHILDREN,
290 wxCLIP_SIBLINGS,
291
292 wxRETAINED,
293 wxBACKINGSTORE,
294
295 wxCOLOURED,
296 wxFIXED_LENGTH,
297
298 wxLB_NEEDED_SB,
299 wxLB_ALWAYS_SB,
300 wxLB_SORT,
301 wxLB_SINGLE,
302 wxLB_MULTIPLE,
303 wxLB_EXTENDED,
304 wxLB_OWNERDRAW,
305 wxLB_HSCROLL,
306 wxPROCESS_ENTER,
307 wxPASSWORD,
308
309 wxCB_SIMPLE,
310 wxCB_DROPDOWN,
311 wxCB_SORT,
312 wxCB_READONLY,
313 wxRA_HORIZONTAL,
314 wxRA_VERTICAL,
315 wxRA_SPECIFY_ROWS,
316 wxRA_SPECIFY_COLS,
317 wxRB_GROUP,
318 wxRB_SINGLE,
319 wxSL_HORIZONTAL,
320 wxSL_VERTICAL,
321 wxSL_AUTOTICKS,
322 wxSL_LABELS,
323 wxSL_LEFT,
324 wxSL_TOP,
325 wxSL_RIGHT,
326 wxSL_BOTTOM,
327 wxSL_BOTH,
328 wxSL_SELRANGE,
329 wxSB_HORIZONTAL,
330 wxSB_VERTICAL,
331 wxST_SIZEGRIP,
332 wxST_NO_AUTORESIZE,
333
334 wxFLOOD_SURFACE,
335 wxFLOOD_BORDER,
336 wxODDEVEN_RULE,
337 wxWINDING_RULE,
338 wxTOOL_TOP,
339 wxTOOL_BOTTOM,
340 wxTOOL_LEFT,
341 wxTOOL_RIGHT,
342 wxOK,
343 wxYES_NO,
344 wxCANCEL,
345 wxYES,
346 wxNO,
347 wxNO_DEFAULT,
348 wxYES_DEFAULT,
349 wxICON_EXCLAMATION,
350 wxICON_HAND,
351 wxICON_QUESTION,
352 wxICON_INFORMATION,
353 wxICON_STOP,
354 wxICON_ASTERISK,
355 wxICON_MASK,
356 wxICON_WARNING,
357 wxICON_ERROR,
358
359 wxFORWARD,
360 wxBACKWARD,
361 wxRESET,
362 wxHELP,
363 wxMORE,
364 wxSETUP,
365
366
367 wxSIZE_AUTO_WIDTH,
368 wxSIZE_AUTO_HEIGHT,
369 wxSIZE_AUTO,
370 wxSIZE_USE_EXISTING,
371 wxSIZE_ALLOW_MINUS_ONE,
372 wxPORTRAIT,
373 wxLANDSCAPE,
374 wxPRINT_QUALITY_HIGH,
375 wxPRINT_QUALITY_MEDIUM,
376 wxPRINT_QUALITY_LOW,
377 wxPRINT_QUALITY_DRAFT,
378
379 wxID_ANY,
380 wxID_SEPARATOR,
381
382 wxID_LOWEST,
383 wxID_OPEN,
384 wxID_CLOSE,
385 wxID_NEW,
386 wxID_SAVE,
387 wxID_SAVEAS,
388 wxID_REVERT,
389 wxID_EXIT,
390 wxID_UNDO,
391 wxID_REDO,
392 wxID_HELP,
393 wxID_PRINT,
394 wxID_PRINT_SETUP,
395 wxID_PREVIEW,
396 wxID_ABOUT,
397 wxID_HELP_CONTENTS,
398 wxID_HELP_COMMANDS,
399 wxID_HELP_PROCEDURES,
400 wxID_HELP_CONTEXT,
401 wxID_CLOSE_ALL,
402 wxID_PREFERENCES,
403
404 wxID_CUT,
405 wxID_COPY,
406 wxID_PASTE,
407 wxID_CLEAR,
408 wxID_FIND,
409 wxID_DUPLICATE,
410 wxID_SELECTALL,
411
412 wxID_DELETE,
413 wxID_REPLACE,
414 wxID_REPLACE_ALL,
415 wxID_PROPERTIES,
416
417 wxID_VIEW_DETAILS,
418 wxID_VIEW_LARGEICONS,
419 wxID_VIEW_SMALLICONS,
420 wxID_VIEW_LIST,
421 wxID_VIEW_SORTDATE,
422 wxID_VIEW_SORTNAME,
423 wxID_VIEW_SORTSIZE,
424 wxID_VIEW_SORTTYPE,
425
426 wxID_FILE1,
427 wxID_FILE2,
428 wxID_FILE3,
429 wxID_FILE4,
430 wxID_FILE5,
431 wxID_FILE6,
432 wxID_FILE7,
433 wxID_FILE8,
434 wxID_FILE9,
435
436 wxID_OK,
437 wxID_CANCEL,
438 wxID_APPLY,
439 wxID_YES,
440 wxID_NO,
441 wxID_STATIC,
442 wxID_FORWARD,
443 wxID_BACKWARD,
444 wxID_DEFAULT,
445 wxID_MORE,
446 wxID_SETUP,
447 wxID_RESET,
448 wxID_CONTEXT_HELP,
449 wxID_YESTOALL,
450 wxID_NOTOALL,
451 wxID_ABORT,
452 wxID_RETRY,
453 wxID_IGNORE,
454
455 wxID_HIGHEST,
456
457 wxOPEN,
458 wxSAVE,
459 wxHIDE_READONLY,
460 wxOVERWRITE_PROMPT,
461 wxFILE_MUST_EXIST,
462 wxMULTIPLE,
463 wxCHANGE_DIR,
464
465 wxACCEL_ALT,
466 wxACCEL_CTRL,
467 wxACCEL_SHIFT,
468 wxACCEL_NORMAL,
469
470 wxPD_AUTO_HIDE,
471 wxPD_APP_MODAL,
472 wxPD_CAN_ABORT,
473 wxPD_ELAPSED_TIME,
474 wxPD_ESTIMATED_TIME,
475 wxPD_REMAINING_TIME,
476
477 wxDD_NEW_DIR_BUTTON,
478 wxDD_DEFAULT_STYLE,
479
480 wxMENU_TEAROFF,
481 wxMB_DOCKABLE,
482 wxNO_FULL_REPAINT_ON_RESIZE,
483 wxFULL_REPAINT_ON_RESIZE,
484
485 wxLI_HORIZONTAL,
486 wxLI_VERTICAL,
487
488 wxWS_EX_VALIDATE_RECURSIVELY,
489 wxWS_EX_BLOCK_EVENTS,
490 wxWS_EX_TRANSIENT,
491
492 wxWS_EX_THEMED_BACKGROUND,
493 wxWS_EX_PROCESS_IDLE,
494 wxWS_EX_PROCESS_UI_UPDATES,
495
496
497 // Mapping modes (as per Windows)
498 wxMM_TEXT,
499 wxMM_LOMETRIC,
500 wxMM_HIMETRIC,
501 wxMM_LOENGLISH,
502 wxMM_HIENGLISH,
503 wxMM_TWIPS,
504 wxMM_ISOTROPIC,
505 wxMM_ANISOTROPIC,
506 wxMM_POINTS,
507 wxMM_METRIC,
508
509
510 // It looks like wxTabCtrl may rise from the dead. Uncomment these if
511 // it gets an implementation for all platforms...
512 // wxTC_RIGHTJUSTIFY,
513 // wxTC_FIXEDWIDTH,
514 // wxTC_TOP,
515 // wxTC_LEFT,
516 // wxTC_RIGHT,
517 // wxTC_BOTTOM,
518 // wxTC_MULTILINE,
519 // wxTC_OWNERDRAW,
520
521 };
522
523
524
525 enum wxGeometryCentre
526 {
527 wxCENTRE = 0x0001,
528 wxCENTER = wxCENTRE
529 };
530
531
532 enum wxOrientation
533 {
534 wxHORIZONTAL,
535 wxVERTICAL,
536 wxBOTH
537 };
538
539 enum wxDirection
540 {
541 wxLEFT,
542 wxRIGHT,
543 wxUP,
544 wxDOWN,
545
546 wxTOP,
547 wxBOTTOM,
548
549 wxNORTH,
550 wxSOUTH,
551 wxWEST,
552 wxEAST,
553
554 wxALL
555 };
556
557 enum wxAlignment
558 {
559 wxALIGN_NOT,
560 wxALIGN_CENTER_HORIZONTAL,
561 wxALIGN_CENTRE_HORIZONTAL,
562 wxALIGN_LEFT,
563 wxALIGN_TOP,
564 wxALIGN_RIGHT,
565 wxALIGN_BOTTOM,
566 wxALIGN_CENTER_VERTICAL,
567 wxALIGN_CENTRE_VERTICAL,
568
569 wxALIGN_CENTER,
570 wxALIGN_CENTRE,
571
572 wxALIGN_MASK,
573 };
574
575 enum wxStretch
576 {
577 wxSTRETCH_NOT,
578 wxSHRINK,
579 wxGROW,
580 wxEXPAND,
581 wxSHAPED,
582 wxADJUST_MINSIZE,
583 wxTILE,
584 };
585
586
587 enum wxBorder
588 {
589 wxBORDER_DEFAULT,
590 wxBORDER_NONE,
591 wxBORDER_STATIC,
592 wxBORDER_SIMPLE,
593 wxBORDER_RAISED,
594 wxBORDER_SUNKEN,
595 wxBORDER_DOUBLE,
596 wxBORDER_MASK,
597 };
598
599
600 enum {
601 wxDEFAULT ,
602 wxDECORATIVE,
603 wxROMAN,
604 wxSCRIPT,
605 wxSWISS,
606 wxMODERN,
607 wxTELETYPE,
608 wxVARIABLE,
609 wxFIXED,
610 wxNORMAL,
611 wxLIGHT,
612 wxBOLD,
613 wxITALIC,
614 wxSLANT,
615 wxSOLID,
616 wxDOT,
617 wxLONG_DASH,
618 wxSHORT_DASH,
619 wxDOT_DASH,
620 wxUSER_DASH,
621 wxTRANSPARENT,
622 wxSTIPPLE,
623 wxBDIAGONAL_HATCH,
624 wxCROSSDIAG_HATCH,
625 wxFDIAGONAL_HATCH,
626 wxCROSS_HATCH,
627 wxHORIZONTAL_HATCH,
628 wxVERTICAL_HATCH,
629 wxJOIN_BEVEL,
630 wxJOIN_MITER,
631 wxJOIN_ROUND,
632 wxCAP_ROUND,
633 wxCAP_PROJECTING,
634 wxCAP_BUTT
635 };
636
637 typedef enum {
638 wxCLEAR, // 0
639 wxXOR, // src XOR dst
640 wxINVERT, // NOT dst
641 wxOR_REVERSE, // src OR (NOT dst)
642 wxAND_REVERSE,// src AND (NOT dst)
643 wxCOPY, // src
644 wxAND, // src AND dst
645 wxAND_INVERT, // (NOT src) AND dst
646 wxNO_OP, // dst
647 wxNOR, // (NOT src) AND (NOT dst)
648 wxEQUIV, // (NOT src) XOR dst
649 wxSRC_INVERT, // (NOT src)
650 wxOR_INVERT, // (NOT src) OR dst
651 wxNAND, // (NOT src) OR (NOT dst)
652 wxOR, // src OR dst
653 wxSET, // 1
654 // wxSRC_OR, // source _bitmap_ OR destination
655 // wxSRC_AND // source _bitmap_ AND destination
656 } form_ops_t;
657
658 enum wxKeyCode {
659 WXK_BACK = 8,
660 WXK_TAB = 9,
661 WXK_RETURN = 13,
662 WXK_ESCAPE = 27,
663 WXK_SPACE = 32,
664 WXK_DELETE = 127,
665
666 WXK_START = 300,
667 WXK_LBUTTON,
668 WXK_RBUTTON,
669 WXK_CANCEL,
670 WXK_MBUTTON,
671 WXK_CLEAR,
672 WXK_SHIFT,
673 WXK_ALT,
674 WXK_CONTROL,
675 WXK_MENU,
676 WXK_PAUSE,
677 WXK_CAPITAL,
678 WXK_PRIOR, /* Page up */
679 WXK_NEXT, /* Page down */
680 WXK_END,
681 WXK_HOME,
682 WXK_LEFT,
683 WXK_UP,
684 WXK_RIGHT,
685 WXK_DOWN,
686 WXK_SELECT,
687 WXK_PRINT,
688 WXK_EXECUTE,
689 WXK_SNAPSHOT,
690 WXK_INSERT,
691 WXK_HELP,
692 WXK_NUMPAD0,
693 WXK_NUMPAD1,
694 WXK_NUMPAD2,
695 WXK_NUMPAD3,
696 WXK_NUMPAD4,
697 WXK_NUMPAD5,
698 WXK_NUMPAD6,
699 WXK_NUMPAD7,
700 WXK_NUMPAD8,
701 WXK_NUMPAD9,
702 WXK_MULTIPLY,
703 WXK_ADD,
704 WXK_SEPARATOR,
705 WXK_SUBTRACT,
706 WXK_DECIMAL,
707 WXK_DIVIDE,
708 WXK_F1,
709 WXK_F2,
710 WXK_F3,
711 WXK_F4,
712 WXK_F5,
713 WXK_F6,
714 WXK_F7,
715 WXK_F8,
716 WXK_F9,
717 WXK_F10,
718 WXK_F11,
719 WXK_F12,
720 WXK_F13,
721 WXK_F14,
722 WXK_F15,
723 WXK_F16,
724 WXK_F17,
725 WXK_F18,
726 WXK_F19,
727 WXK_F20,
728 WXK_F21,
729 WXK_F22,
730 WXK_F23,
731 WXK_F24,
732 WXK_NUMLOCK,
733 WXK_SCROLL,
734 WXK_PAGEUP,
735 WXK_PAGEDOWN,
736
737 WXK_NUMPAD_SPACE,
738 WXK_NUMPAD_TAB,
739 WXK_NUMPAD_ENTER,
740 WXK_NUMPAD_F1,
741 WXK_NUMPAD_F2,
742 WXK_NUMPAD_F3,
743 WXK_NUMPAD_F4,
744 WXK_NUMPAD_HOME,
745 WXK_NUMPAD_LEFT,
746 WXK_NUMPAD_UP,
747 WXK_NUMPAD_RIGHT,
748 WXK_NUMPAD_DOWN,
749 WXK_NUMPAD_PRIOR,
750 WXK_NUMPAD_PAGEUP,
751 WXK_NUMPAD_NEXT,
752 WXK_NUMPAD_PAGEDOWN,
753 WXK_NUMPAD_END,
754 WXK_NUMPAD_BEGIN,
755 WXK_NUMPAD_INSERT,
756 WXK_NUMPAD_DELETE,
757 WXK_NUMPAD_EQUAL,
758 WXK_NUMPAD_MULTIPLY,
759 WXK_NUMPAD_ADD,
760 WXK_NUMPAD_SEPARATOR,
761 WXK_NUMPAD_SUBTRACT,
762 WXK_NUMPAD_DECIMAL,
763 WXK_NUMPAD_DIVIDE,
764
765 WXK_WINDOWS_LEFT,
766 WXK_WINDOWS_RIGHT,
767 WXK_WINDOWS_MENU
768
769 };
770
771
772
773 typedef enum {
774 wxPAPER_NONE, // Use specific dimensions
775 wxPAPER_LETTER, // Letter, 8 1/2 by 11 inches
776 wxPAPER_LEGAL, // Legal, 8 1/2 by 14 inches
777 wxPAPER_A4, // A4 Sheet, 210 by 297 millimeters
778 wxPAPER_CSHEET, // C Sheet, 17 by 22 inches
779 wxPAPER_DSHEET, // D Sheet, 22 by 34 inches
780 wxPAPER_ESHEET, // E Sheet, 34 by 44 inches
781 wxPAPER_LETTERSMALL, // Letter Small, 8 1/2 by 11 inches
782 wxPAPER_TABLOID, // Tabloid, 11 by 17 inches
783 wxPAPER_LEDGER, // Ledger, 17 by 11 inches
784 wxPAPER_STATEMENT, // Statement, 5 1/2 by 8 1/2 inches
785 wxPAPER_EXECUTIVE, // Executive, 7 1/4 by 10 1/2 inches
786 wxPAPER_A3, // A3 sheet, 297 by 420 millimeters
787 wxPAPER_A4SMALL, // A4 small sheet, 210 by 297 millimeters
788 wxPAPER_A5, // A5 sheet, 148 by 210 millimeters
789 wxPAPER_B4, // B4 sheet, 250 by 354 millimeters
790 wxPAPER_B5, // B5 sheet, 182-by-257-millimeter paper
791 wxPAPER_FOLIO, // Folio, 8-1/2-by-13-inch paper
792 wxPAPER_QUARTO, // Quarto, 215-by-275-millimeter paper
793 wxPAPER_10X14, // 10-by-14-inch sheet
794 wxPAPER_11X17, // 11-by-17-inch sheet
795 wxPAPER_NOTE, // Note, 8 1/2 by 11 inches
796 wxPAPER_ENV_9, // #9 Envelope, 3 7/8 by 8 7/8 inches
797 wxPAPER_ENV_10, // #10 Envelope, 4 1/8 by 9 1/2 inches
798 wxPAPER_ENV_11, // #11 Envelope, 4 1/2 by 10 3/8 inches
799 wxPAPER_ENV_12, // #12 Envelope, 4 3/4 by 11 inches
800 wxPAPER_ENV_14, // #14 Envelope, 5 by 11 1/2 inches
801 wxPAPER_ENV_DL, // DL Envelope, 110 by 220 millimeters
802 wxPAPER_ENV_C5, // C5 Envelope, 162 by 229 millimeters
803 wxPAPER_ENV_C3, // C3 Envelope, 324 by 458 millimeters
804 wxPAPER_ENV_C4, // C4 Envelope, 229 by 324 millimeters
805 wxPAPER_ENV_C6, // C6 Envelope, 114 by 162 millimeters
806 wxPAPER_ENV_C65, // C65 Envelope, 114 by 229 millimeters
807 wxPAPER_ENV_B4, // B4 Envelope, 250 by 353 millimeters
808 wxPAPER_ENV_B5, // B5 Envelope, 176 by 250 millimeters
809 wxPAPER_ENV_B6, // B6 Envelope, 176 by 125 millimeters
810 wxPAPER_ENV_ITALY, // Italy Envelope, 110 by 230 millimeters
811 wxPAPER_ENV_MONARCH, // Monarch Envelope, 3 7/8 by 7 1/2 inches
812 wxPAPER_ENV_PERSONAL, // 6 3/4 Envelope, 3 5/8 by 6 1/2 inches
813 wxPAPER_FANFOLD_US, // US Std Fanfold, 14 7/8 by 11 inches
814 wxPAPER_FANFOLD_STD_GERMAN, // German Std Fanfold, 8 1/2 by 12 inches
815 wxPAPER_FANFOLD_LGL_GERMAN, // German Legal Fanfold, 8 1/2 by 13 inches
816
817 wxPAPER_ISO_B4, // B4 (ISO) 250 x 353 mm
818 wxPAPER_JAPANESE_POSTCARD, // Japanese Postcard 100 x 148 mm
819 wxPAPER_9X11, // 9 x 11 in
820 wxPAPER_10X11, // 10 x 11 in
821 wxPAPER_15X11, // 15 x 11 in
822 wxPAPER_ENV_INVITE, // Envelope Invite 220 x 220 mm
823 wxPAPER_LETTER_EXTRA, // Letter Extra 9 \275 x 12 in
824 wxPAPER_LEGAL_EXTRA, // Legal Extra 9 \275 x 15 in
825 wxPAPER_TABLOID_EXTRA, // Tabloid Extra 11.69 x 18 in
826 wxPAPER_A4_EXTRA, // A4 Extra 9.27 x 12.69 in
827 wxPAPER_LETTER_TRANSVERSE, // Letter Transverse 8 \275 x 11 in
828 wxPAPER_A4_TRANSVERSE, // A4 Transverse 210 x 297 mm
829 wxPAPER_LETTER_EXTRA_TRANSVERSE, // Letter Extra Transverse 9\275 x 12 in
830 wxPAPER_A_PLUS, // SuperA/SuperA/A4 227 x 356 mm
831 wxPAPER_B_PLUS, // SuperB/SuperB/A3 305 x 487 mm
832 wxPAPER_LETTER_PLUS, // Letter Plus 8.5 x 12.69 in
833 wxPAPER_A4_PLUS, // A4 Plus 210 x 330 mm
834 wxPAPER_A5_TRANSVERSE, // A5 Transverse 148 x 210 mm
835 wxPAPER_B5_TRANSVERSE, // B5 (JIS) Transverse 182 x 257 mm
836 wxPAPER_A3_EXTRA, // A3 Extra 322 x 445 mm
837 wxPAPER_A5_EXTRA, // A5 Extra 174 x 235 mm
838 wxPAPER_B5_EXTRA, // B5 (ISO) Extra 201 x 276 mm
839 wxPAPER_A2, // A2 420 x 594 mm
840 wxPAPER_A3_TRANSVERSE, // A3 Transverse 297 x 420 mm
841 wxPAPER_A3_EXTRA_TRANSVERSE // A3 Extra Transverse 322 x 445 mm
842
843 } wxPaperSize ;
844
845 typedef enum {
846 wxDUPLEX_SIMPLEX, // Non-duplex
847 wxDUPLEX_HORIZONTAL,
848 wxDUPLEX_VERTICAL
849 } wxDuplexMode;
850
851
852
853 // menu and toolbar item kinds
854 enum wxItemKind
855 {
856 wxITEM_SEPARATOR = -1,
857 wxITEM_NORMAL,
858 wxITEM_CHECK,
859 wxITEM_RADIO,
860 wxITEM_MAX
861 };
862
863
864 enum wxHitTest
865 {
866 wxHT_NOWHERE,
867
868 // scrollbar
869 wxHT_SCROLLBAR_FIRST = wxHT_NOWHERE,
870 wxHT_SCROLLBAR_ARROW_LINE_1, // left or upper arrow to scroll by line
871 wxHT_SCROLLBAR_ARROW_LINE_2, // right or down
872 wxHT_SCROLLBAR_ARROW_PAGE_1, // left or upper arrow to scroll by page
873 wxHT_SCROLLBAR_ARROW_PAGE_2, // right or down
874 wxHT_SCROLLBAR_THUMB, // on the thumb
875 wxHT_SCROLLBAR_BAR_1, // bar to the left/above the thumb
876 wxHT_SCROLLBAR_BAR_2, // bar to the right/below the thumb
877 wxHT_SCROLLBAR_LAST,
878
879 // window
880 wxHT_WINDOW_OUTSIDE, // not in this window at all
881 wxHT_WINDOW_INSIDE, // in the client area
882 wxHT_WINDOW_VERT_SCROLLBAR, // on the vertical scrollbar
883 wxHT_WINDOW_HORZ_SCROLLBAR, // on the horizontal scrollbar
884 wxHT_WINDOW_CORNER, // on the corner between 2 scrollbars
885
886 wxHT_MAX
887 };
888
889
890 %{
891 #if ! wxUSE_HOTKEY
892 enum wxHotkeyModifier
893 {
894 wxMOD_NONE = 0,
895 wxMOD_ALT = 1,
896 wxMOD_CONTROL = 2,
897 wxMOD_SHIFT = 4,
898 wxMOD_WIN = 8
899 };
900 #define wxEVT_HOTKEY 9999
901 #endif
902 %}
903
904 enum wxHotkeyModifier
905 {
906 wxMOD_NONE = 0,
907 wxMOD_ALT = 1,
908 wxMOD_CONTROL = 2,
909 wxMOD_SHIFT = 4,
910 wxMOD_WIN = 8
911 };
912
913
914 enum wxUpdateUI
915 {
916 wxUPDATE_UI_NONE = 0x0000,
917 wxUPDATE_UI_RECURSE = 0x0001,
918 wxUPDATE_UI_FROMIDLE = 0x0002 // Invoked from On(Internal)Idle
919 };
920
921
922
923 //---------------------------------------------------------------------------
924