]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/wx.i
Added ability to use xml resource files. Still need to add ability to
[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
RD
14
15
16%{
7bf85405
RD
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
8bf5d46e
RD
28%include pointer.i
29
7bf85405 30%import misc.i
bb0054cd 31%import misc2.i
7bf85405
RD
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
9c039d08
RD
40%import stattool.i
41%import frames.i
08127323 42%import windows3.i
cf694132 43%import image.i
bb0054cd 44%import printfw.i
2f90df85 45%import sizers.i
c368d904
RD
46%import streams.i
47%import filesys.i
7bf85405
RD
48
49%native(_wxStart) __wxStart;
50%native(_wxSetDictionary) __wxSetDictionary;
51
52//---------------------------------------------------------------------------
53
2f90df85 54
de20db99 55#define __version__ "0.0.0" // The real value is now in setup.py...
7bf85405 56
35d60de2 57%readonly
b68dc582
RD
58wxPoint wxDefaultPosition;
59wxSize wxDefaultSize;
35d60de2 60%readwrite
7bf85405
RD
61
62//---------------------------------------------------------------------------
63//---------------------------------------------------------------------------
64
65class wxPyApp : public wxEvtHandler {
66public:
67 %addmethods {
68 wxPyApp() {
69 wxPythonApp = new wxPyApp();
70 return wxPythonApp;
71 }
72 }
73
8bf5d46e 74 ~wxPyApp();
7bf85405
RD
75
76 wxString GetAppName();
853b255a 77#ifdef __WXMSW__
7bf85405 78 bool GetAuto3D();
853b255a 79#endif
7bf85405
RD
80 wxString GetClassName();
81 bool GetExitOnFrameDelete();
82 int GetPrintMode();
83 wxWindow * GetTopWindow();
84 wxString GetVendorName();
f6bcfd97 85 bool GetUseBestVisual();
7bf85405
RD
86
87 void Dispatch();
88 void ExitMainLoop();
89 bool Initialized();
90 int MainLoop();
91 bool Pending();
8bf5d46e 92 bool ProcessIdle();
7bf85405
RD
93
94 void SetAppName(const wxString& name);
853b255a 95#ifdef __WXMSW__
7bf85405 96 void SetAuto3D(bool auto3D);
853b255a 97#endif
7bf85405
RD
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);
f6bcfd97 103 void SetUseBestVisual(bool flag);
8bf5d46e
RD
104 wxIcon GetStdIcon(int which);
105
106
107};
108
c368d904
RD
109%inline %{
110 wxPyApp* wxGetApp() {
111 return wxPythonApp;
112 }
113%}
8bf5d46e
RD
114
115//----------------------------------------------------------------------
b1462dfa 116// this is used to cleanup after wxWindows when Python shuts down.
8bf5d46e 117
b1462dfa
RD
118%inline %{
119 void wxApp_CleanUp() {
7ff49f0c 120 __wxCleanup();
b1462dfa 121 }
8bf5d46e
RD
122%}
123
7bf85405
RD
124//----------------------------------------------------------------------
125// This code gets added to the module initialization function
126//----------------------------------------------------------------------
127
128%{
1e7ecb7b
RD
129
130
1d99702e
RD
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();
2f90df85 146extern "C" SWIGEXPORT(void) initsizersc();
b1462dfa 147extern "C" SWIGEXPORT(void) initclip_dndc();
c368d904
RD
148extern "C" SWIGEXPORT(void) initstreamsc();
149extern "C" SWIGEXPORT(void) initfilesysc();
150
1e7ecb7b
RD
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 wxPySaveThread,
165 wxPyRestoreThread,
166 wxPyConstructObject,
167 wxPy_ConvertList,
168
169 byte_LIST_helper,
170 int_LIST_helper,
171 long_LIST_helper,
172 string_LIST_helper,
173 wxPoint_LIST_helper,
174 wxBitmap_LIST_helper,
175 wxString_LIST_helper,
176 wxAcceleratorEntry_LIST_helper,
177
178 wxSize_helper,
179 wxPoint_helper,
180 wxRealPoint_helper,
181 wxRect_helper,
182 wxColour_helper,
183
184 wxPyCBH_setSelf,
185 wxPyCBH_findCallback,
186 wxPyCBH_callCallback,
187 wxPyCBH_callCallbackObj,
188 wxPyCBH_delete,
9416aa89
RD
189
190 wxPyClassExists,
191 wxPyMake_wxObject,
192 wxPyPtrTypeMap_Add,
1e7ecb7b
RD
193};
194
9416aa89 195
0699c864 196%}
08127323 197
7bf85405 198
7bf85405
RD
199
200%init %{
1e7ecb7b
RD
201 // Make our API structure a CObject so other modules can import it
202 // from this module.
203 PyObject* v = PyCObject_FromVoidPtr(&API, NULL);
204 PyDict_SetItemString(d,"wxPyCoreAPI", v);
205 Py_XDECREF(v);
206
7bf85405 207
0d6f9504 208 __wxPreStart(); // initialize the GUI toolkit, if needed.
7bf85405 209
7bf85405
RD
210
211 // Since these modules are all linked together, initialize them now
f6bcfd97 212 // because Python won't be able to find their shared library files,
7bf85405
RD
213 // (since there isn't any.)
214 initwindowsc();
215 initwindows2c();
216 initeventsc();
217 initmiscc();
bb0054cd 218 initmisc2c();
7bf85405
RD
219 initgdic();
220 initmdic();
221 initcontrolsc();
222 initcontrols2c();
223 initcmndlgsc();
9c039d08
RD
224 initstattoolc();
225 initframesc();
08127323 226 initwindows3c();
cf694132 227 initimagec();
bb0054cd 228 initprintfwc();
2f90df85 229 initsizersc();
b1462dfa 230 initclip_dndc();
c368d904
RD
231 initstreamsc();
232 initfilesysc();
f6bcfd97 233
7bf85405
RD
234%}
235
236//----------------------------------------------------------------------
237// And this gets appended to the shadow class file.
238//----------------------------------------------------------------------
239
240%pragma(python) include="_extras.py";
241
242