]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/wx.i
Added dialog tabbing to wxX11.
[wxWidgets.git] / wxPython / src / wx.i
CommitLineData
7bf85405
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: wxp.i
3// Purpose: SWIG interface file for a python wxWindows module
4//
5// Author: Robin Dunn
6//
7// Created: 5/22/98
8// RCS-ID: $Id$
9// Copyright: (c) 1998 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
b8b8dda7 13%module wx
03e9bead 14
03e9bead 15%{
7bf85405
RD
16#include "helpers.h"
17%}
18
c5943253
RD
19// %pragma(python) code="
20// # This gives this module's dictionary to the C++ extension code...
21// wxc._wxSetDictionary(vars())
22// "
23
7bf85405
RD
24//----------------------------------------------------------------------
25// This is where we include the other wrapper definition files for SWIG
26//----------------------------------------------------------------------
27
28%include typemaps.i
29%include my_typemaps.i
30%include _defs.i
31
8bf5d46e
RD
32%include pointer.i
33
7bf85405 34%import misc.i
bb0054cd 35%import misc2.i
7bf85405
RD
36%import windows.i
37%import events.i
38%import gdi.i
39%import mdi.i
40%import controls.i
41%import controls2.i
42%import windows2.i
43%import cmndlgs.i
9c039d08
RD
44%import stattool.i
45%import frames.i
08127323 46%import windows3.i
cf694132 47%import image.i
bb0054cd 48%import printfw.i
2f90df85 49%import sizers.i
c368d904
RD
50%import streams.i
51%import filesys.i
96e5ef76 52%import utils.i
7bf85405
RD
53
54%native(_wxStart) __wxStart;
55%native(_wxSetDictionary) __wxSetDictionary;
56
57//---------------------------------------------------------------------------
58
2f90df85 59
de20db99 60#define __version__ "0.0.0" // The real value is now in setup.py...
7bf85405 61
35d60de2 62%readonly
b68dc582
RD
63wxPoint wxDefaultPosition;
64wxSize wxDefaultSize;
35d60de2 65%readwrite
7bf85405
RD
66
67//---------------------------------------------------------------------------
68//---------------------------------------------------------------------------
69
70class wxPyApp : public wxEvtHandler {
71public:
72 %addmethods {
73 wxPyApp() {
74 wxPythonApp = new wxPyApp();
75 return wxPythonApp;
76 }
77 }
78
8bf5d46e 79 ~wxPyApp();
7bf85405
RD
80
81 wxString GetAppName();
853b255a 82#ifdef __WXMSW__
7bf85405 83 bool GetAuto3D();
853b255a 84#endif
7bf85405
RD
85 wxString GetClassName();
86 bool GetExitOnFrameDelete();
87 int GetPrintMode();
88 wxWindow * GetTopWindow();
89 wxString GetVendorName();
f6bcfd97 90 bool GetUseBestVisual();
7bf85405
RD
91
92 void Dispatch();
93 void ExitMainLoop();
94 bool Initialized();
95 int MainLoop();
96 bool Pending();
8bf5d46e 97 bool ProcessIdle();
7bf85405
RD
98
99 void SetAppName(const wxString& name);
853b255a 100#ifdef __WXMSW__
7bf85405 101 void SetAuto3D(bool auto3D);
853b255a 102#endif
7bf85405
RD
103 void SetClassName(const wxString& name);
104 void SetExitOnFrameDelete(bool flag);
105 void SetPrintMode(int mode);
106 void SetTopWindow(wxWindow* window);
107 void SetVendorName(const wxString& name);
f6bcfd97 108 void SetUseBestVisual(bool flag);
8bf5d46e 109 wxIcon GetStdIcon(int which);
8bf5d46e
RD
110};
111
c368d904
RD
112%inline %{
113 wxPyApp* wxGetApp() {
114 return wxPythonApp;
115 }
116%}
8bf5d46e 117
c5943253
RD
118
119
8bf5d46e 120//----------------------------------------------------------------------
b1462dfa 121// this is used to cleanup after wxWindows when Python shuts down.
8bf5d46e 122
b1462dfa
RD
123%inline %{
124 void wxApp_CleanUp() {
7ff49f0c 125 __wxCleanup();
b1462dfa 126 }
8bf5d46e
RD
127%}
128
7bf85405
RD
129//----------------------------------------------------------------------
130// This code gets added to the module initialization function
131//----------------------------------------------------------------------
132
133%{
1e7ecb7b
RD
134
135
1d99702e
RD
136extern "C" SWIGEXPORT(void) initwindowsc();
137extern "C" SWIGEXPORT(void) initwindows2c();
138extern "C" SWIGEXPORT(void) initeventsc();
139extern "C" SWIGEXPORT(void) initmiscc();
140extern "C" SWIGEXPORT(void) initmisc2c();
141extern "C" SWIGEXPORT(void) initgdic();
142extern "C" SWIGEXPORT(void) initmdic();
143extern "C" SWIGEXPORT(void) initcontrolsc();
144extern "C" SWIGEXPORT(void) initcontrols2c();
145extern "C" SWIGEXPORT(void) initcmndlgsc();
146extern "C" SWIGEXPORT(void) initstattoolc();
147extern "C" SWIGEXPORT(void) initframesc();
148extern "C" SWIGEXPORT(void) initwindows3c();
149extern "C" SWIGEXPORT(void) initimagec();
150extern "C" SWIGEXPORT(void) initprintfwc();
2f90df85 151extern "C" SWIGEXPORT(void) initsizersc();
b1462dfa 152extern "C" SWIGEXPORT(void) initclip_dndc();
c368d904
RD
153extern "C" SWIGEXPORT(void) initstreamsc();
154extern "C" SWIGEXPORT(void) initfilesysc();
96e5ef76 155extern "C" SWIGEXPORT(void) initutilsc();
c368d904 156
1e7ecb7b
RD
157
158
159// Export a C API in a struct. Other modules will be able to load this from
160// the wxc module and will then have safe access to these functions, even if
161// in another shared library.
162static wxPyCoreAPI API = {
163 SWIG_MakePtr,
164 SWIG_GetPtr,
165 SWIG_GetPtrObj,
166 SWIG_RegisterMapping,
167 SWIG_addvarlink,
168 SWIG_newvarlink,
169
4268f798
RD
170 wxPyBeginAllowThreads,
171 wxPyEndAllowThreads,
19a97bd6
RD
172 wxPyBeginBlockThreads,
173 wxPyEndBlockThreads,
174
1e7ecb7b
RD
175 wxPyConstructObject,
176 wxPy_ConvertList,
177
c8bc7bb8 178 wxString_in_helper,
1e7ecb7b
RD
179 byte_LIST_helper,
180 int_LIST_helper,
181 long_LIST_helper,
182 string_LIST_helper,
183 wxPoint_LIST_helper,
184 wxBitmap_LIST_helper,
185 wxString_LIST_helper,
186 wxAcceleratorEntry_LIST_helper,
187
188 wxSize_helper,
189 wxPoint_helper,
190 wxRealPoint_helper,
191 wxRect_helper,
192 wxColour_helper,
193
0122b7e3 194 wxPyCBH_setCallbackInfo,
1e7ecb7b
RD
195 wxPyCBH_findCallback,
196 wxPyCBH_callCallback,
197 wxPyCBH_callCallbackObj,
198 wxPyCBH_delete,
9416aa89
RD
199
200 wxPyClassExists,
201 wxPyMake_wxObject,
2f4e9287 202 wxPyMake_wxSizer,
9416aa89 203 wxPyPtrTypeMap_Add,
293a0a86
RD
204 wxArrayString2PyList_helper,
205 wxArrayInt2PyList_helper
1e7ecb7b
RD
206};
207
9416aa89 208
0699c864 209%}
08127323 210
7bf85405 211
7bf85405
RD
212
213%init %{
1e7ecb7b
RD
214 // Make our API structure a CObject so other modules can import it
215 // from this module.
216 PyObject* v = PyCObject_FromVoidPtr(&API, NULL);
217 PyDict_SetItemString(d,"wxPyCoreAPI", v);
218 Py_XDECREF(v);
219
7bf85405 220
0d6f9504 221 __wxPreStart(); // initialize the GUI toolkit, if needed.
7bf85405 222
7bf85405
RD
223
224 // Since these modules are all linked together, initialize them now
f6bcfd97 225 // because Python won't be able to find their shared library files,
7bf85405
RD
226 // (since there isn't any.)
227 initwindowsc();
228 initwindows2c();
229 initeventsc();
230 initmiscc();
bb0054cd 231 initmisc2c();
7bf85405
RD
232 initgdic();
233 initmdic();
234 initcontrolsc();
235 initcontrols2c();
236 initcmndlgsc();
9c039d08
RD
237 initstattoolc();
238 initframesc();
08127323 239 initwindows3c();
cf694132 240 initimagec();
bb0054cd 241 initprintfwc();
2f90df85 242 initsizersc();
b1462dfa 243 initclip_dndc();
c368d904
RD
244 initstreamsc();
245 initfilesysc();
96e5ef76 246 initutilsc();
f6bcfd97 247
a3fbed81
RD
248
249 PyDict_SetItemString(d,"wxMAJOR_VERSION", PyInt_FromLong((long)wxMAJOR_VERSION ));
250 PyDict_SetItemString(d,"wxMINOR_VERSION", PyInt_FromLong((long)wxMINOR_VERSION ));
251 PyDict_SetItemString(d,"wxRELEASE_NUMBER", PyInt_FromLong((long)wxRELEASE_NUMBER ));
252 PyDict_SetItemString(d,"wxVERSION_NUMBER", PyInt_FromLong((long)wxVERSION_NUMBER ));
c8bc7bb8
RD
253#if wxUSE_UNICODE
254 wxString tempStr(wxVERSION_STRING);
255 PyDict_SetItemString(d,"wxVERSION_STRING", PyUnicode_FromUnicode(tempStr.c_str(), tempStr.Len()));
256#else
a3fbed81 257 PyDict_SetItemString(d,"wxVERSION_STRING", PyString_FromString(wxVERSION_STRING));
c8bc7bb8 258#endif
a3fbed81
RD
259
260
7bf85405
RD
261%}
262
263//----------------------------------------------------------------------
264// And this gets appended to the shadow class file.
265//----------------------------------------------------------------------
266
267%pragma(python) include="_extras.py";
268
269