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