1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Definitions and stuff
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
14 // Globally turn on the autodoc feature
15 %feature("autodoc", "1"); // 0 == no param types, 1 == show param types
18 //---------------------------------------------------------------------------
19 // some type definitions to simplify things for SWIG
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;
30 #define wxWindowID 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
40 //----------------------------------------------------------------------
41 // Various SWIG macros and such
43 #define %addtofunc %feature("addtofunc")
44 #define %kwargs %feature("kwargs")
45 #define %nokwargs %feature("nokwargs")
48 #define %shadow %insert("shadow")
52 #define %pythoncode %insert("python")
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); %}
63 %name(strname) const wxString wxPy##strname;
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));";
75 // Macros for the docstring and autodoc features of SWIG.
77 // Set the docsring for the given full or partial declaration
78 #define DocStr(decl, docstr) %feature("docstring") decl docstr
80 // Set the autodoc string for a full or partial declaration
81 #define DocA(decl, astr) %feature("autodoc") decl astr
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
89 // Set the detailed reference docs for full or partial declaration
90 #define DocRef(decl, str) %feature("docref") decl str
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;
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
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;
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
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;
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
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;
149 // As above, but also give the decl a new %name
150 %define DocCtorStrName(decl, docstr, newname)
151 %feature("docstring") decl docstr;
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;
163 // As above, but also give the decl a new %name
164 %define DocCtorAname(decl, astr, newname)
165 %feature("autodoc") decl astr;
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;
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;
190 %#---------------------------------------------------------------------------
194 //---------------------------------------------------------------------------
196 // General numeric #define's and etc. Making them all enums makes SWIG use the
197 // real macro when making the Python Int
215 wxTRANSPARENT_WINDOW,
236 wxTINY_CAPTION_HORIZ,
243 wxDEFAULT_FRAME_STYLE,
244 wxDEFAULT_DIALOG_STYLE,
247 wxFRAME_FLOAT_ON_PARENT,
248 wxFRAME_NO_WINDOW_MENU,
340 wxSIZE_ALLOW_MINUS_ONE,
343 wxPRINT_QUALITY_HIGH,
344 wxPRINT_QUALITY_MEDIUM,
346 wxPRINT_QUALITY_DRAFT,
368 wxID_HELP_PROCEDURES,
387 wxID_VIEW_LARGEICONS,
388 wxID_VIEW_SMALLICONS,
451 wxNO_FULL_REPAINT_ON_RESIZE,
456 wxWS_EX_VALIDATE_RECURSIVELY,
457 wxWS_EX_BLOCK_EVENTS,
460 wxWS_EX_THEMED_BACKGROUND,
461 wxWS_EX_PROCESS_IDLE,
462 wxWS_EX_PROCESS_UI_UPDATES,
465 // Mapping modes (as per Windows)
478 // It looks like wxTabCtrl may rise from the dead. Uncomment these if
479 // it gets an implementation for all platforms...
480 // wxTC_RIGHTJUSTIFY,
493 enum wxGeometryCentre
528 wxALIGN_CENTER_HORIZONTAL,
529 wxALIGN_CENTRE_HORIZONTAL,
534 wxALIGN_CENTER_VERTICAL,
535 wxALIGN_CENTRE_VERTICAL,
607 wxXOR, // src XOR dst
609 wxOR_REVERSE, // src OR (NOT dst)
610 wxAND_REVERSE,// src AND (NOT dst)
612 wxAND, // src AND dst
613 wxAND_INVERT, // (NOT src) AND dst
615 wxNOR, // (NOT src) AND (NOT dst)
616 wxEQUIV, // (NOT src) XOR dst
617 wxSRC_INVERT, // (NOT src)
618 wxOR_INVERT, // (NOT src) OR dst
619 wxNAND, // (NOT src) OR (NOT dst)
622 // wxSRC_OR, // source _bitmap_ OR destination
623 // wxSRC_AND // source _bitmap_ AND destination
646 WXK_PRIOR, /* Page up */
647 WXK_NEXT, /* Page down */
728 WXK_NUMPAD_SEPARATOR,
742 wxPAPER_NONE, // Use specific dimensions
743 wxPAPER_LETTER, // Letter, 8 1/2 by 11 inches
744 wxPAPER_LEGAL, // Legal, 8 1/2 by 14 inches
745 wxPAPER_A4, // A4 Sheet, 210 by 297 millimeters
746 wxPAPER_CSHEET, // C Sheet, 17 by 22 inches
747 wxPAPER_DSHEET, // D Sheet, 22 by 34 inches
748 wxPAPER_ESHEET, // E Sheet, 34 by 44 inches
749 wxPAPER_LETTERSMALL, // Letter Small, 8 1/2 by 11 inches
750 wxPAPER_TABLOID, // Tabloid, 11 by 17 inches
751 wxPAPER_LEDGER, // Ledger, 17 by 11 inches
752 wxPAPER_STATEMENT, // Statement, 5 1/2 by 8 1/2 inches
753 wxPAPER_EXECUTIVE, // Executive, 7 1/4 by 10 1/2 inches
754 wxPAPER_A3, // A3 sheet, 297 by 420 millimeters
755 wxPAPER_A4SMALL, // A4 small sheet, 210 by 297 millimeters
756 wxPAPER_A5, // A5 sheet, 148 by 210 millimeters
757 wxPAPER_B4, // B4 sheet, 250 by 354 millimeters
758 wxPAPER_B5, // B5 sheet, 182-by-257-millimeter paper
759 wxPAPER_FOLIO, // Folio, 8-1/2-by-13-inch paper
760 wxPAPER_QUARTO, // Quarto, 215-by-275-millimeter paper
761 wxPAPER_10X14, // 10-by-14-inch sheet
762 wxPAPER_11X17, // 11-by-17-inch sheet
763 wxPAPER_NOTE, // Note, 8 1/2 by 11 inches
764 wxPAPER_ENV_9, // #9 Envelope, 3 7/8 by 8 7/8 inches
765 wxPAPER_ENV_10, // #10 Envelope, 4 1/8 by 9 1/2 inches
766 wxPAPER_ENV_11, // #11 Envelope, 4 1/2 by 10 3/8 inches
767 wxPAPER_ENV_12, // #12 Envelope, 4 3/4 by 11 inches
768 wxPAPER_ENV_14, // #14 Envelope, 5 by 11 1/2 inches
769 wxPAPER_ENV_DL, // DL Envelope, 110 by 220 millimeters
770 wxPAPER_ENV_C5, // C5 Envelope, 162 by 229 millimeters
771 wxPAPER_ENV_C3, // C3 Envelope, 324 by 458 millimeters
772 wxPAPER_ENV_C4, // C4 Envelope, 229 by 324 millimeters
773 wxPAPER_ENV_C6, // C6 Envelope, 114 by 162 millimeters
774 wxPAPER_ENV_C65, // C65 Envelope, 114 by 229 millimeters
775 wxPAPER_ENV_B4, // B4 Envelope, 250 by 353 millimeters
776 wxPAPER_ENV_B5, // B5 Envelope, 176 by 250 millimeters
777 wxPAPER_ENV_B6, // B6 Envelope, 176 by 125 millimeters
778 wxPAPER_ENV_ITALY, // Italy Envelope, 110 by 230 millimeters
779 wxPAPER_ENV_MONARCH, // Monarch Envelope, 3 7/8 by 7 1/2 inches
780 wxPAPER_ENV_PERSONAL, // 6 3/4 Envelope, 3 5/8 by 6 1/2 inches
781 wxPAPER_FANFOLD_US, // US Std Fanfold, 14 7/8 by 11 inches
782 wxPAPER_FANFOLD_STD_GERMAN, // German Std Fanfold, 8 1/2 by 12 inches
783 wxPAPER_FANFOLD_LGL_GERMAN, // German Legal Fanfold, 8 1/2 by 13 inches
785 wxPAPER_ISO_B4, // B4 (ISO) 250 x 353 mm
786 wxPAPER_JAPANESE_POSTCARD, // Japanese Postcard 100 x 148 mm
787 wxPAPER_9X11, // 9 x 11 in
788 wxPAPER_10X11, // 10 x 11 in
789 wxPAPER_15X11, // 15 x 11 in
790 wxPAPER_ENV_INVITE, // Envelope Invite 220 x 220 mm
791 wxPAPER_LETTER_EXTRA, // Letter Extra 9 \275 x 12 in
792 wxPAPER_LEGAL_EXTRA, // Legal Extra 9 \275 x 15 in
793 wxPAPER_TABLOID_EXTRA, // Tabloid Extra 11.69 x 18 in
794 wxPAPER_A4_EXTRA, // A4 Extra 9.27 x 12.69 in
795 wxPAPER_LETTER_TRANSVERSE, // Letter Transverse 8 \275 x 11 in
796 wxPAPER_A4_TRANSVERSE, // A4 Transverse 210 x 297 mm
797 wxPAPER_LETTER_EXTRA_TRANSVERSE, // Letter Extra Transverse 9\275 x 12 in
798 wxPAPER_A_PLUS, // SuperA/SuperA/A4 227 x 356 mm
799 wxPAPER_B_PLUS, // SuperB/SuperB/A3 305 x 487 mm
800 wxPAPER_LETTER_PLUS, // Letter Plus 8.5 x 12.69 in
801 wxPAPER_A4_PLUS, // A4 Plus 210 x 330 mm
802 wxPAPER_A5_TRANSVERSE, // A5 Transverse 148 x 210 mm
803 wxPAPER_B5_TRANSVERSE, // B5 (JIS) Transverse 182 x 257 mm
804 wxPAPER_A3_EXTRA, // A3 Extra 322 x 445 mm
805 wxPAPER_A5_EXTRA, // A5 Extra 174 x 235 mm
806 wxPAPER_B5_EXTRA, // B5 (ISO) Extra 201 x 276 mm
807 wxPAPER_A2, // A2 420 x 594 mm
808 wxPAPER_A3_TRANSVERSE, // A3 Transverse 297 x 420 mm
809 wxPAPER_A3_EXTRA_TRANSVERSE // A3 Extra Transverse 322 x 445 mm
814 wxDUPLEX_SIMPLEX, // Non-duplex
821 // menu and toolbar item kinds
824 wxITEM_SEPARATOR = -1,
836 wxHT_SCROLLBAR_FIRST = wxHT_NOWHERE,
837 wxHT_SCROLLBAR_ARROW_LINE_1, // left or upper arrow to scroll by line
838 wxHT_SCROLLBAR_ARROW_LINE_2, // right or down
839 wxHT_SCROLLBAR_ARROW_PAGE_1, // left or upper arrow to scroll by page
840 wxHT_SCROLLBAR_ARROW_PAGE_2, // right or down
841 wxHT_SCROLLBAR_THUMB, // on the thumb
842 wxHT_SCROLLBAR_BAR_1, // bar to the left/above the thumb
843 wxHT_SCROLLBAR_BAR_2, // bar to the right/below the thumb
847 wxHT_WINDOW_OUTSIDE, // not in this window at all
848 wxHT_WINDOW_INSIDE, // in the client area
849 wxHT_WINDOW_VERT_SCROLLBAR, // on the vertical scrollbar
850 wxHT_WINDOW_HORZ_SCROLLBAR, // on the horizontal scrollbar
851 wxHT_WINDOW_CORNER, // on the corner between 2 scrollbars
859 enum wxHotkeyModifier
867 #define wxEVT_HOTKEY 9999
871 enum wxHotkeyModifier
883 wxUPDATE_UI_NONE = 0x0000,
884 wxUPDATE_UI_RECURSE = 0x0001,
885 wxUPDATE_UI_FROMIDLE = 0x0002 // Invoked from On(Internal)Idle
890 //---------------------------------------------------------------------------