]>
Commit | Line | Data |
---|---|---|
d14a1e28 RD |
1 | /* ---------------------------------------------------------------------------- |
2 | * This file was automatically generated by SWIG (http://www.swig.org). | |
2dbef272 | 3 | * Version 1.3.22 |
d14a1e28 RD |
4 | * |
5 | * This file is not intended to be easily readable and contains a number of | |
6 | * coding conventions designed to improve portability and efficiency. Do not make | |
7 | * changes to this file unless you know what you are doing--modify the SWIG | |
8 | * interface file instead. | |
9 | * ----------------------------------------------------------------------------- */ | |
10 | ||
11 | #define SWIGPYTHON | |
12 | #define SWIG_NOINCLUDE | |
13 | ||
14 | #ifdef __cplusplus | |
15 | template<class T> class SwigValueWrapper { | |
16 | T *tt; | |
17 | public: | |
18 | SwigValueWrapper() : tt(0) { } | |
19 | SwigValueWrapper(const SwigValueWrapper<T>& rhs) : tt(new T(*rhs.tt)) { } | |
20 | SwigValueWrapper(const T& t) : tt(new T(t)) { } | |
21 | ~SwigValueWrapper() { delete tt; } | |
22 | SwigValueWrapper& operator=(const T& t) { delete tt; tt = new T(t); return *this; } | |
23 | operator T&() const { return *tt; } | |
24 | T *operator&() { return tt; } | |
25 | private: | |
26 | SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs); | |
27 | }; | |
28 | #endif | |
29 | ||
30 | ||
31 | #include "Python.h" | |
32 | ||
33 | /*************************************************************** -*- c -*- | |
34 | * python/precommon.swg | |
35 | * | |
36 | * Rename all exported symbols from common.swg, to avoid symbol | |
37 | * clashes if multiple interpreters are included | |
38 | * | |
39 | ************************************************************************/ | |
40 | ||
41 | #define SWIG_TypeRegister SWIG_Python_TypeRegister | |
42 | #define SWIG_TypeCheck SWIG_Python_TypeCheck | |
43 | #define SWIG_TypeCast SWIG_Python_TypeCast | |
44 | #define SWIG_TypeDynamicCast SWIG_Python_TypeDynamicCast | |
45 | #define SWIG_TypeName SWIG_Python_TypeName | |
46 | #define SWIG_TypeQuery SWIG_Python_TypeQuery | |
47 | #define SWIG_TypeClientData SWIG_Python_TypeClientData | |
9fd4be55 RD |
48 | #define SWIG_PackData SWIG_Python_PackData |
49 | #define SWIG_UnpackData SWIG_Python_UnpackData | |
50 | ||
d14a1e28 RD |
51 | |
52 | /*********************************************************************** | |
53 | * common.swg for wxPython | |
54 | * | |
55 | * Include only the function prototypes and such from SWIG's common.swg, | |
56 | * but not the runtime functions themselves. This helps keep the | |
57 | * wrapper files clean of unnecessary stuff that is in the libpy.c file | |
58 | * anyway. | |
59 | * | |
60 | ************************************************************************/ | |
61 | ||
62 | #include <string.h> | |
63 | ||
0f774bef RD |
64 | #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) |
65 | # if defined(_MSC_VER) || defined(__GNUC__) | |
66 | # if defined(STATIC_LINKED) | |
67 | # define SWIGEXPORT(a) a | |
68 | # define SWIGIMPORT(a) extern a | |
69 | # else | |
70 | # define SWIGEXPORT(a) __declspec(dllexport) a | |
71 | # define SWIGIMPORT(a) extern a | |
72 | # endif | |
73 | # else | |
74 | # if defined(__BORLANDC__) | |
75 | # define SWIGEXPORT(a) a _export | |
76 | # define SWIGIMPORT(a) a _export | |
77 | # else | |
78 | # define SWIGEXPORT(a) a | |
79 | # define SWIGIMPORT(a) a | |
80 | # endif | |
81 | # endif | |
d14a1e28 | 82 | #else |
0f774bef RD |
83 | # define SWIGEXPORT(a) a |
84 | # define SWIGIMPORT(a) a | |
d14a1e28 RD |
85 | #endif |
86 | ||
87 | #ifdef SWIG_GLOBAL | |
0f774bef | 88 | # define SWIGRUNTIME(a) SWIGEXPORT(a) |
d14a1e28 | 89 | #else |
0f774bef | 90 | # define SWIGRUNTIME(a) static a |
d14a1e28 RD |
91 | #endif |
92 | ||
d14a1e28 RD |
93 | #ifdef __cplusplus |
94 | extern "C" { | |
95 | #endif | |
96 | ||
97 | typedef void *(*swig_converter_func)(void *); | |
98 | typedef struct swig_type_info *(*swig_dycast_func)(void **); | |
99 | ||
100 | typedef struct swig_type_info { | |
0f774bef | 101 | const char *name; |
d14a1e28 RD |
102 | swig_converter_func converter; |
103 | const char *str; | |
0f774bef | 104 | void *clientdata; |
d14a1e28 RD |
105 | swig_dycast_func dcast; |
106 | struct swig_type_info *next; | |
107 | struct swig_type_info *prev; | |
108 | } swig_type_info; | |
109 | ||
110 | ||
111 | SWIGIMPORT(swig_type_info *) SWIG_TypeRegister(swig_type_info *); | |
112 | SWIGIMPORT(swig_type_info *) SWIG_TypeCheck(char *c, swig_type_info *); | |
113 | SWIGIMPORT(void *) SWIG_TypeCast(swig_type_info *, void *); | |
114 | SWIGIMPORT(swig_type_info *) SWIG_TypeDynamicCast(swig_type_info *, void **); | |
115 | SWIGIMPORT(const char *) SWIG_TypeName(const swig_type_info *); | |
116 | SWIGIMPORT(swig_type_info *) SWIG_TypeQuery(const char *); | |
117 | SWIGIMPORT(void) SWIG_TypeClientData(swig_type_info *, void *); | |
0f774bef RD |
118 | SWIGIMPORT(char *) SWIG_PackData(char *, void *, int); |
119 | SWIGIMPORT(char *) SWIG_UnpackData(char *, void *, int); | |
d14a1e28 RD |
120 | |
121 | ||
122 | #ifdef __cplusplus | |
123 | } | |
124 | #endif | |
125 | ||
126 | /*********************************************************************** | |
127 | * pyrun.swg for wxPython | |
128 | * | |
129 | * Include only the function prototypes and such from SWIG's pyrun.swg, | |
130 | * but not the runtime functions themselves. This helps keep the | |
131 | * wrapper files clean of unnecessary stuff that is in the libpy.c file | |
132 | * anyway. | |
133 | * | |
134 | ************************************************************************/ | |
135 | ||
d14a1e28 RD |
136 | #include "Python.h" |
137 | ||
138 | #ifdef __cplusplus | |
139 | extern "C" { | |
140 | #endif | |
141 | ||
142 | #define SWIG_PY_INT 1 | |
143 | #define SWIG_PY_FLOAT 2 | |
144 | #define SWIG_PY_STRING 3 | |
145 | #define SWIG_PY_POINTER 4 | |
146 | #define SWIG_PY_BINARY 5 | |
147 | ||
148 | /* Flags for pointer conversion */ | |
149 | ||
150 | #define SWIG_POINTER_EXCEPTION 0x1 | |
151 | #define SWIG_POINTER_DISOWN 0x2 | |
152 | ||
153 | /* Exception handling in wrappers */ | |
154 | #define SWIG_fail goto fail | |
155 | ||
156 | /* Constant information structure */ | |
157 | typedef struct swig_const_info { | |
158 | int type; | |
159 | char *name; | |
160 | long lvalue; | |
161 | double dvalue; | |
162 | void *pvalue; | |
163 | swig_type_info **ptype; | |
164 | } swig_const_info; | |
165 | ||
d14a1e28 RD |
166 | /* Common SWIG API */ |
167 | #define SWIG_ConvertPtr(obj, pp, type, flags) \ | |
168 | SWIG_Python_ConvertPtr(obj, pp, type, flags) | |
169 | #define SWIG_NewPointerObj(p, type, flags) \ | |
170 | SWIG_Python_NewPointerObj(p, type, flags) | |
171 | #define SWIG_MustGetPtr(p, type, argnum, flags) \ | |
172 | SWIG_Python_MustGetPtr(p, type, argnum, flags) | |
2dbef272 | 173 | |
d14a1e28 RD |
174 | /* Python-specific SWIG API */ |
175 | #define SWIG_newvarlink() \ | |
176 | SWIG_Python_newvarlink() | |
177 | #define SWIG_addvarlink(p, name, get_attr, set_attr) \ | |
178 | SWIG_Python_addvarlink(p, name, get_attr, set_attr) | |
179 | #define SWIG_ConvertPacked(obj, ptr, sz, ty, flags) \ | |
180 | SWIG_Python_ConvertPacked(obj, ptr, sz, ty, flags) | |
d14a1e28 RD |
181 | #define SWIG_NewPackedObj(ptr, sz, type) \ |
182 | SWIG_Python_NewPackedObj(ptr, sz, type) | |
183 | #define SWIG_InstallConstants(d, constants) \ | |
184 | SWIG_Python_InstallConstants(d, constants) | |
185 | ||
8edf1c75 | 186 | typedef double (*py_objasdbl_conv)(PyObject *obj); |
d14a1e28 | 187 | |
0f774bef RD |
188 | SWIGIMPORT(int) SWIG_Python_ConvertPtr(PyObject *, void **, swig_type_info *, int); |
189 | SWIGIMPORT(PyObject *) SWIG_Python_NewPointerObj(void *, swig_type_info *,int own); | |
190 | SWIGIMPORT(void *) SWIG_Python_MustGetPtr(PyObject *, swig_type_info *, int, int); | |
191 | SWIGIMPORT(PyObject *) SWIG_Python_newvarlink(void); | |
192 | SWIGIMPORT(void) SWIG_Python_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *)); | |
193 | SWIGIMPORT(int) SWIG_Python_ConvertPacked(PyObject *, void *, int sz, swig_type_info *, int); | |
194 | SWIGIMPORT(PyObject *) SWIG_Python_NewPackedObj(void *, int sz, swig_type_info *); | |
195 | SWIGIMPORT(void) SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]); | |
d14a1e28 | 196 | |
d14a1e28 RD |
197 | |
198 | /* Contract support */ | |
199 | ||
423f194a | 200 | #define SWIG_contract_assert(expr, msg) if (!(expr)) { PyErr_SetString(PyExc_RuntimeError, (char *) msg ); goto fail; } else |
d14a1e28 | 201 | |
d14a1e28 RD |
202 | #ifdef __cplusplus |
203 | } | |
204 | #endif | |
205 | ||
206 | ||
d14a1e28 RD |
207 | /* -------- TYPES TABLE (BEGIN) -------- */ |
208 | ||
209 | #define SWIGTYPE_p_wxObject swig_types[0] | |
210 | #define SWIGTYPE_p_wxDialog swig_types[1] | |
211 | #define SWIGTYPE_p_wxWizardPageSimple swig_types[2] | |
212 | #define SWIGTYPE_p_wxWizardPage swig_types[3] | |
213 | #define SWIGTYPE_p_wxTopLevelWindow swig_types[4] | |
214 | #define SWIGTYPE_p_wxWindow swig_types[5] | |
215 | #define SWIGTYPE_p_wxPyWizardPage swig_types[6] | |
216 | #define SWIGTYPE_p_wxWizardEvent swig_types[7] | |
217 | #define SWIGTYPE_p_wxCommandEvent swig_types[8] | |
218 | #define SWIGTYPE_p_wxBitmap swig_types[9] | |
219 | #define SWIGTYPE_p_wxWizard swig_types[10] | |
8edf1c75 | 220 | #define SWIGTYPE_p_char swig_types[11] |
d14a1e28 | 221 | #define SWIGTYPE_p_wxEvtHandler swig_types[12] |
8edf1c75 RD |
222 | #define SWIGTYPE_p_wxString swig_types[13] |
223 | #define SWIGTYPE_p_wxNotifyEvent swig_types[14] | |
224 | #define SWIGTYPE_p_wxPanel swig_types[15] | |
225 | #define SWIGTYPE_p_wxEvent swig_types[16] | |
226 | #define SWIGTYPE_p_wxSize swig_types[17] | |
227 | #define SWIGTYPE_p_wxChar swig_types[18] | |
228 | #define SWIGTYPE_p_int swig_types[19] | |
229 | static swig_type_info *swig_types[21]; | |
d14a1e28 RD |
230 | |
231 | /* -------- TYPES TABLE (END) -------- */ | |
232 | ||
233 | ||
234 | /*----------------------------------------------- | |
235 | @(target):= _wizard.so | |
236 | ------------------------------------------------*/ | |
237 | #define SWIG_init init_wizard | |
238 | ||
239 | #define SWIG_name "_wizard" | |
240 | ||
2f4c0a16 | 241 | /* Auxiliar swig macros */ |
8edf1c75 | 242 | |
8edf1c75 | 243 | #ifdef __cplusplus |
2f4c0a16 | 244 | #define SWIGSTATICINLINE(a) static inline a |
8edf1c75 | 245 | #define SWIGSTATIC(a) static a |
2f4c0a16 RD |
246 | #define swig_new_array(type, size) (new type[(size)]) |
247 | #define swig_delete_array(cptr) delete[] cptr | |
248 | #define swig_const_cast(type,a) const_cast<type>(a) | |
249 | #define swig_static_cast(type,a) static_cast<type>(a) | |
250 | #define swig_reinterpret_cast(type,a) reinterpret_cast<type>(a) | |
8edf1c75 | 251 | |
8edf1c75 | 252 | #ifdef HAVE_NUMERIC_CAST |
2f4c0a16 | 253 | #define swig_numeric_cast(type,a) numeric_cast<type>(a) |
8edf1c75 | 254 | #else |
2f4c0a16 | 255 | #define swig_numeric_cast(type,a) static_cast<type>(a) |
8edf1c75 RD |
256 | #endif |
257 | ||
2f4c0a16 RD |
258 | #else /* C case */ |
259 | ||
260 | #define SWIGSTATICINLINE(a) static a | |
261 | #define SWIGSTATIC(a) static a | |
262 | #define swig_new_array(type, size) ((type*) malloc((size)*sizeof(type))) | |
263 | #define swig_delete_array(cptr) free((char*)cptr) | |
264 | #define swig_const_cast(type,a) (type)(a) | |
265 | #define swig_static_cast(type,a) (type)(a) | |
266 | #define swig_reinterpret_cast(type,a) (type)(a) | |
267 | #define swig_numeric_cast(type,a) (type)(a) | |
268 | ||
269 | #endif /* __cplusplus */ | |
8edf1c75 RD |
270 | |
271 | ||
2f4c0a16 RD |
272 | #define SWIG_FromSignedChar PyInt_FromLong |
273 | #define SWIG_FromUnsignedChar PyInt_FromLong | |
274 | #define SWIG_FromShort PyInt_FromLong | |
275 | #define SWIG_FromUnsignedShort PyInt_FromLong | |
276 | #define SWIG_FromInt PyInt_FromLong | |
277 | #define SWIG_FromLong PyInt_FromLong | |
278 | #define SWIG_FromFloat PyFloat_FromDouble | |
279 | #define SWIG_FromDouble PyFloat_FromDouble | |
280 | #define SWIG_FromFloat PyFloat_FromDouble | |
281 | #define SWIG_FromDouble PyFloat_FromDouble | |
8edf1c75 RD |
282 | |
283 | ||
d14a1e28 RD |
284 | #include "wx/wxPython/wxPython.h" |
285 | #include "wx/wxPython/pyclasses.h" | |
286 | #include "wx/wxPython/printfw.h" | |
287 | ||
288 | #include <wx/wizard.h> | |
289 | ||
d14a1e28 | 290 | |
cbd72d4f | 291 | static const wxString wxPyEmptyString(wxEmptyString); |
8edf1c75 | 292 | |
2f4c0a16 RD |
293 | #include <limits.h> |
294 | ||
295 | ||
296 | SWIGSTATICINLINE(long) | |
297 | SWIG_CheckLongInRange(long value, const char* type, | |
298 | long min_value, long max_value) | |
299 | { | |
300 | if (!PyErr_Occurred()) { | |
301 | if (value < min_value) { | |
302 | PyObject *err = | |
303 | PyString_FromFormat("value %ld is less than '%s' minimum %ld", | |
304 | value, type, min_value); | |
305 | ||
306 | PyErr_SetObject(PyExc_OverflowError, err); | |
307 | Py_DECREF(err); | |
308 | } else if (value > max_value) { | |
309 | PyObject *err = | |
310 | PyString_FromFormat("value %ld is greater than '%s' maximum %ld", | |
311 | value, type, max_value); | |
312 | PyErr_SetObject(PyExc_OverflowError, err); | |
313 | Py_DECREF(err); | |
314 | } | |
315 | } | |
316 | return value; | |
317 | } | |
318 | ||
319 | ||
320 | SWIGSTATICINLINE(long) | |
321 | SWIG_AsLong(PyObject * obj) | |
322 | { | |
323 | return PyInt_Check(obj) ? PyInt_AsLong(obj) : PyLong_AsLong(obj); | |
324 | } | |
325 | ||
326 | ||
327 | #if INT_MAX != LONG_MAX | |
328 | SWIGSTATICINLINE(int) | |
329 | SWIG_AsInt(PyObject *obj) | |
8edf1c75 | 330 | { |
2f4c0a16 RD |
331 | return swig_numeric_cast(int, |
332 | SWIG_CheckLongInRange(SWIG_AsLong(obj), | |
333 | "int", INT_MIN, INT_MAX)); | |
8edf1c75 | 334 | } |
2f4c0a16 RD |
335 | #else |
336 | #define SWIG_AsInt SWIG_AsLong | |
337 | #endif | |
8edf1c75 RD |
338 | |
339 | ||
2f4c0a16 RD |
340 | SWIGSTATICINLINE(bool) |
341 | SWIG_AsBool(PyObject *obj) | |
8edf1c75 RD |
342 | { |
343 | return PyObject_IsTrue(obj) ? true : false; | |
344 | } | |
345 | ||
2f4c0a16 RD |
346 | |
347 | SWIGSTATICINLINE(int) | |
348 | SWIG_CheckInt(PyObject* obj) | |
349 | { | |
350 | SWIG_AsInt(obj); | |
351 | if (PyErr_Occurred()) { | |
352 | PyErr_Clear(); | |
353 | return 0; | |
354 | } else { | |
355 | return 1; | |
356 | } | |
357 | } | |
358 | ||
359 | ||
360 | SWIGSTATICINLINE(int) | |
361 | SWIG_CheckBool(PyObject* obj) | |
362 | { | |
363 | SWIG_AsBool(obj); | |
364 | if (PyErr_Occurred()) { | |
365 | PyErr_Clear(); | |
366 | return 0; | |
367 | } else { | |
368 | return 1; | |
369 | } | |
370 | } | |
371 | ||
d14a1e28 RD |
372 | bool wxWizardPage_Create(wxWizardPage *self,wxWizard *parent,wxBitmap const &bitmap,wxString const &resource){ |
373 | wxChar* res = NULL; | |
374 | if (resource.Length()) | |
375 | res = (wxChar*)resource.c_str(); | |
376 | return self->Create(parent, bitmap, res); | |
377 | } | |
378 | // C++ Version of a Python aware class | |
379 | class wxPyWizardPage : public wxWizardPage { | |
380 | DECLARE_ABSTRACT_CLASS(wxPyWizardPage); | |
381 | public: | |
382 | wxPyWizardPage() : wxWizardPage() {} | |
383 | wxPyWizardPage(wxWizard *parent, | |
384 | const wxBitmap& bitmap = wxNullBitmap, | |
385 | const wxChar* resource = NULL) | |
386 | : wxWizardPage(parent, bitmap, resource) {} | |
387 | ||
388 | DEC_PYCALLBACK_WIZPG__pure(GetPrev); | |
389 | DEC_PYCALLBACK_WIZPG__pure(GetNext); | |
390 | DEC_PYCALLBACK_BITMAP__pure(GetBitmap); | |
391 | ||
392 | DEC_PYCALLBACK_VOID_INT4(DoMoveWindow); | |
393 | DEC_PYCALLBACK_VOID_INT5(DoSetSize); | |
394 | DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize); | |
395 | DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize); | |
396 | ||
397 | DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize); | |
398 | DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize); | |
399 | DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition); | |
400 | ||
401 | DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize); | |
402 | DEC_PYCALLBACK_SIZE_const(DoGetBestSize); | |
403 | ||
404 | DEC_PYCALLBACK__(InitDialog); | |
405 | DEC_PYCALLBACK_BOOL_(TransferDataFromWindow); | |
406 | DEC_PYCALLBACK_BOOL_(TransferDataToWindow); | |
407 | DEC_PYCALLBACK_BOOL_(Validate); | |
408 | ||
409 | DEC_PYCALLBACK_BOOL_const(AcceptsFocus); | |
410 | DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard); | |
411 | DEC_PYCALLBACK_SIZE_const(GetMaxSize); | |
412 | ||
413 | DEC_PYCALLBACK_VOID_WXWINBASE(AddChild); | |
414 | DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild); | |
415 | ||
416 | PYPRIVATE; | |
417 | }; | |
418 | ||
419 | ||
420 | IMPLEMENT_ABSTRACT_CLASS(wxPyWizardPage, wxWizardPage); | |
421 | ||
422 | IMP_PYCALLBACK_WIZPG__pure(wxPyWizardPage, wxWizardPage, GetPrev); | |
423 | IMP_PYCALLBACK_WIZPG__pure(wxPyWizardPage, wxWizardPage, GetNext); | |
424 | IMP_PYCALLBACK_BITMAP__pure(wxPyWizardPage, wxWizardPage, GetBitmap); | |
425 | ||
426 | IMP_PYCALLBACK_VOID_INT4(wxPyWizardPage, wxWizardPage, DoMoveWindow); | |
427 | IMP_PYCALLBACK_VOID_INT5(wxPyWizardPage, wxWizardPage, DoSetSize); | |
428 | IMP_PYCALLBACK_VOID_INTINT(wxPyWizardPage, wxWizardPage, DoSetClientSize); | |
429 | IMP_PYCALLBACK_VOID_INTINT(wxPyWizardPage, wxWizardPage, DoSetVirtualSize); | |
430 | ||
431 | IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWizardPage, wxWizardPage, DoGetSize); | |
432 | IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWizardPage, wxWizardPage, DoGetClientSize); | |
433 | IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWizardPage, wxWizardPage, DoGetPosition); | |
434 | ||
435 | IMP_PYCALLBACK_SIZE_const(wxPyWizardPage, wxWizardPage, DoGetVirtualSize); | |
436 | IMP_PYCALLBACK_SIZE_const(wxPyWizardPage, wxWizardPage, DoGetBestSize); | |
437 | ||
438 | IMP_PYCALLBACK__(wxPyWizardPage, wxWizardPage, InitDialog); | |
439 | IMP_PYCALLBACK_BOOL_(wxPyWizardPage, wxWizardPage, TransferDataFromWindow); | |
440 | IMP_PYCALLBACK_BOOL_(wxPyWizardPage, wxWizardPage, TransferDataToWindow); | |
441 | IMP_PYCALLBACK_BOOL_(wxPyWizardPage, wxWizardPage, Validate); | |
442 | ||
443 | IMP_PYCALLBACK_BOOL_const(wxPyWizardPage, wxWizardPage, AcceptsFocus); | |
444 | IMP_PYCALLBACK_BOOL_const(wxPyWizardPage, wxWizardPage, AcceptsFocusFromKeyboard); | |
445 | IMP_PYCALLBACK_SIZE_const(wxPyWizardPage, wxWizardPage, GetMaxSize); | |
446 | ||
447 | IMP_PYCALLBACK_VOID_WXWINBASE(wxPyWizardPage, wxWizardPage, AddChild); | |
448 | IMP_PYCALLBACK_VOID_WXWINBASE(wxPyWizardPage, wxWizardPage, RemoveChild); | |
449 | ||
450 | ||
451 | wxPyWizardPage *new_wxPyWizardPage(wxWizard *parent,wxBitmap const *bitmap,wxString const *resource){ | |
452 | wxChar* res = NULL; | |
453 | if (resource->Length()) | |
454 | res = (wxChar*)resource->c_str(); | |
455 | return new wxPyWizardPage(parent, *bitmap, res); | |
456 | } | |
457 | bool wxPyWizardPage_Create(wxPyWizardPage *self,wxWizard *parent,wxBitmap const &bitmap,wxString const &resource){ | |
458 | wxChar* res = NULL; | |
459 | if (resource.Length()) | |
460 | res = (wxChar*)resource.c_str(); | |
461 | return self->Create(parent, bitmap, res); | |
462 | } | |
463 | ||
464 | static PyObject* t_output_helper(PyObject* target, PyObject* o) { | |
465 | PyObject* o2; | |
466 | PyObject* o3; | |
467 | ||
468 | if (!target) { | |
469 | target = o; | |
470 | } else if (target == Py_None) { | |
471 | Py_DECREF(Py_None); | |
472 | target = o; | |
473 | } else { | |
474 | if (!PyTuple_Check(target)) { | |
475 | o2 = target; | |
476 | target = PyTuple_New(1); | |
477 | PyTuple_SetItem(target, 0, o2); | |
478 | } | |
479 | o3 = PyTuple_New(1); | |
480 | PyTuple_SetItem(o3, 0, o); | |
481 | ||
482 | o2 = target; | |
483 | target = PySequence_Concat(o2, o3); | |
484 | Py_DECREF(o2); | |
485 | Py_DECREF(o3); | |
486 | } | |
487 | return target; | |
488 | } | |
489 | ||
8edf1c75 | 490 | |
2f4c0a16 RD |
491 | SWIGSTATICINLINE(int) |
492 | SWIG_CheckLong(PyObject* obj) | |
8edf1c75 | 493 | { |
2f4c0a16 RD |
494 | SWIG_AsLong(obj); |
495 | if (PyErr_Occurred()) { | |
496 | PyErr_Clear(); | |
497 | return 0; | |
498 | } else { | |
499 | return 1; | |
500 | } | |
8edf1c75 RD |
501 | } |
502 | ||
d14a1e28 RD |
503 | #ifdef __cplusplus |
504 | extern "C" { | |
505 | #endif | |
2f4c0a16 | 506 | static PyObject *_wrap_new_WizardEvent(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
507 | PyObject *resultobj; |
508 | wxEventType arg1 = (wxEventType) wxEVT_NULL ; | |
509 | int arg2 = (int) -1 ; | |
423f194a | 510 | bool arg3 = (bool) True ; |
d14a1e28 RD |
511 | wxWizardPage *arg4 = (wxWizardPage *) NULL ; |
512 | wxWizardEvent *result; | |
8edf1c75 RD |
513 | PyObject * obj0 = 0 ; |
514 | PyObject * obj1 = 0 ; | |
d14a1e28 RD |
515 | PyObject * obj2 = 0 ; |
516 | PyObject * obj3 = 0 ; | |
517 | char *kwnames[] = { | |
518 | (char *) "type",(char *) "id",(char *) "direction",(char *) "page", NULL | |
519 | }; | |
520 | ||
8edf1c75 RD |
521 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|OOOO:new_WizardEvent",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail; |
522 | if (obj0) { | |
2f4c0a16 RD |
523 | arg1 = (wxEventType) SWIG_AsInt(obj0); |
524 | if (PyErr_Occurred()) SWIG_fail; | |
8edf1c75 RD |
525 | } |
526 | if (obj1) { | |
2f4c0a16 RD |
527 | arg2 = (int) SWIG_AsInt(obj1); |
528 | if (PyErr_Occurred()) SWIG_fail; | |
8edf1c75 | 529 | } |
d14a1e28 | 530 | if (obj2) { |
2f4c0a16 RD |
531 | arg3 = (bool) SWIG_AsBool(obj2); |
532 | if (PyErr_Occurred()) SWIG_fail; | |
d14a1e28 RD |
533 | } |
534 | if (obj3) { | |
2f4c0a16 RD |
535 | if ((SWIG_ConvertPtr(obj3,(void **)(&arg4),SWIGTYPE_p_wxWizardPage, |
536 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
537 | } |
538 | { | |
539 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
540 | result = (wxWizardEvent *)new wxWizardEvent(arg1,arg2,arg3,arg4); | |
541 | ||
542 | wxPyEndAllowThreads(__tstate); | |
543 | if (PyErr_Occurred()) SWIG_fail; | |
544 | } | |
2f4c0a16 | 545 | resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxWizardEvent, 1); |
d14a1e28 RD |
546 | return resultobj; |
547 | fail: | |
548 | return NULL; | |
549 | } | |
550 | ||
551 | ||
2f4c0a16 | 552 | static PyObject *_wrap_WizardEvent_GetDirection(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
553 | PyObject *resultobj; |
554 | wxWizardEvent *arg1 = (wxWizardEvent *) 0 ; | |
555 | bool result; | |
556 | PyObject * obj0 = 0 ; | |
557 | char *kwnames[] = { | |
558 | (char *) "self", NULL | |
559 | }; | |
560 | ||
561 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:WizardEvent_GetDirection",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
562 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizardEvent, |
563 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
564 | { |
565 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
566 | result = (bool)((wxWizardEvent const *)arg1)->GetDirection(); | |
567 | ||
568 | wxPyEndAllowThreads(__tstate); | |
569 | if (PyErr_Occurred()) SWIG_fail; | |
570 | } | |
fbc46b20 RD |
571 | { |
572 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
573 | } | |
d14a1e28 RD |
574 | return resultobj; |
575 | fail: | |
576 | return NULL; | |
577 | } | |
578 | ||
579 | ||
2f4c0a16 | 580 | static PyObject *_wrap_WizardEvent_GetPage(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
581 | PyObject *resultobj; |
582 | wxWizardEvent *arg1 = (wxWizardEvent *) 0 ; | |
583 | wxWizardPage *result; | |
584 | PyObject * obj0 = 0 ; | |
585 | char *kwnames[] = { | |
586 | (char *) "self", NULL | |
587 | }; | |
588 | ||
589 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:WizardEvent_GetPage",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
590 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizardEvent, |
591 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
592 | { |
593 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
594 | result = (wxWizardPage *)((wxWizardEvent const *)arg1)->GetPage(); | |
595 | ||
596 | wxPyEndAllowThreads(__tstate); | |
597 | if (PyErr_Occurred()) SWIG_fail; | |
598 | } | |
599 | { | |
600 | resultobj = wxPyMake_wxObject(result); | |
601 | } | |
602 | return resultobj; | |
603 | fail: | |
604 | return NULL; | |
605 | } | |
606 | ||
607 | ||
2f4c0a16 | 608 | static PyObject * WizardEvent_swigregister(PyObject *, PyObject *args) { |
d14a1e28 RD |
609 | PyObject *obj; |
610 | if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; | |
611 | SWIG_TypeClientData(SWIGTYPE_p_wxWizardEvent, obj); | |
612 | Py_INCREF(obj); | |
613 | return Py_BuildValue((char *)""); | |
614 | } | |
2f4c0a16 | 615 | static PyObject *_wrap_WizardPage_Create(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
616 | PyObject *resultobj; |
617 | wxWizardPage *arg1 = (wxWizardPage *) 0 ; | |
618 | wxWizard *arg2 = (wxWizard *) 0 ; | |
619 | wxBitmap const &arg3_defvalue = wxNullBitmap ; | |
620 | wxBitmap *arg3 = (wxBitmap *) &arg3_defvalue ; | |
621 | wxString const &arg4_defvalue = wxPyEmptyString ; | |
622 | wxString *arg4 = (wxString *) &arg4_defvalue ; | |
623 | bool result; | |
423f194a | 624 | bool temp4 = False ; |
d14a1e28 RD |
625 | PyObject * obj0 = 0 ; |
626 | PyObject * obj1 = 0 ; | |
627 | PyObject * obj2 = 0 ; | |
628 | PyObject * obj3 = 0 ; | |
629 | char *kwnames[] = { | |
630 | (char *) "self",(char *) "parent",(char *) "bitmap",(char *) "resource", NULL | |
631 | }; | |
632 | ||
633 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OO:WizardPage_Create",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail; | |
2f4c0a16 RD |
634 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizardPage, |
635 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
636 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWizard, | |
637 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 | 638 | if (obj2) { |
2f4c0a16 RD |
639 | if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxBitmap, |
640 | SWIG_POINTER_EXCEPTION | 0)) == -1) | |
641 | SWIG_fail; | |
d14a1e28 | 642 | if (arg3 == NULL) { |
2f4c0a16 RD |
643 | PyErr_SetString(PyExc_TypeError,"null reference"); |
644 | SWIG_fail; | |
d14a1e28 RD |
645 | } |
646 | } | |
647 | if (obj3) { | |
648 | { | |
649 | arg4 = wxString_in_helper(obj3); | |
650 | if (arg4 == NULL) SWIG_fail; | |
423f194a | 651 | temp4 = True; |
d14a1e28 RD |
652 | } |
653 | } | |
654 | { | |
655 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
656 | result = (bool)wxWizardPage_Create(arg1,arg2,(wxBitmap const &)*arg3,(wxString const &)*arg4); | |
657 | ||
658 | wxPyEndAllowThreads(__tstate); | |
659 | if (PyErr_Occurred()) SWIG_fail; | |
660 | } | |
fbc46b20 RD |
661 | { |
662 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
663 | } | |
d14a1e28 RD |
664 | { |
665 | if (temp4) | |
666 | delete arg4; | |
667 | } | |
668 | return resultobj; | |
669 | fail: | |
670 | { | |
671 | if (temp4) | |
672 | delete arg4; | |
673 | } | |
674 | return NULL; | |
675 | } | |
676 | ||
677 | ||
2f4c0a16 | 678 | static PyObject *_wrap_WizardPage_GetPrev(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
679 | PyObject *resultobj; |
680 | wxWizardPage *arg1 = (wxWizardPage *) 0 ; | |
681 | wxWizardPage *result; | |
682 | PyObject * obj0 = 0 ; | |
683 | char *kwnames[] = { | |
684 | (char *) "self", NULL | |
685 | }; | |
686 | ||
687 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:WizardPage_GetPrev",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
688 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizardPage, |
689 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
690 | { |
691 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
692 | result = (wxWizardPage *)((wxWizardPage const *)arg1)->GetPrev(); | |
693 | ||
694 | wxPyEndAllowThreads(__tstate); | |
695 | if (PyErr_Occurred()) SWIG_fail; | |
696 | } | |
697 | { | |
698 | resultobj = wxPyMake_wxObject(result); | |
699 | } | |
700 | return resultobj; | |
701 | fail: | |
702 | return NULL; | |
703 | } | |
704 | ||
705 | ||
2f4c0a16 | 706 | static PyObject *_wrap_WizardPage_GetNext(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
707 | PyObject *resultobj; |
708 | wxWizardPage *arg1 = (wxWizardPage *) 0 ; | |
709 | wxWizardPage *result; | |
710 | PyObject * obj0 = 0 ; | |
711 | char *kwnames[] = { | |
712 | (char *) "self", NULL | |
713 | }; | |
714 | ||
715 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:WizardPage_GetNext",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
716 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizardPage, |
717 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
718 | { |
719 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
720 | result = (wxWizardPage *)((wxWizardPage const *)arg1)->GetNext(); | |
721 | ||
722 | wxPyEndAllowThreads(__tstate); | |
723 | if (PyErr_Occurred()) SWIG_fail; | |
724 | } | |
725 | { | |
726 | resultobj = wxPyMake_wxObject(result); | |
727 | } | |
728 | return resultobj; | |
729 | fail: | |
730 | return NULL; | |
731 | } | |
732 | ||
733 | ||
2f4c0a16 | 734 | static PyObject *_wrap_WizardPage_GetBitmap(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
735 | PyObject *resultobj; |
736 | wxWizardPage *arg1 = (wxWizardPage *) 0 ; | |
737 | wxBitmap result; | |
738 | PyObject * obj0 = 0 ; | |
739 | char *kwnames[] = { | |
740 | (char *) "self", NULL | |
741 | }; | |
742 | ||
743 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:WizardPage_GetBitmap",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
744 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizardPage, |
745 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
746 | { |
747 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
748 | result = ((wxWizardPage const *)arg1)->GetBitmap(); | |
749 | ||
750 | wxPyEndAllowThreads(__tstate); | |
751 | if (PyErr_Occurred()) SWIG_fail; | |
752 | } | |
753 | { | |
754 | wxBitmap * resultptr; | |
755 | resultptr = new wxBitmap((wxBitmap &) result); | |
2f4c0a16 | 756 | resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxBitmap, 1); |
d14a1e28 RD |
757 | } |
758 | return resultobj; | |
759 | fail: | |
760 | return NULL; | |
761 | } | |
762 | ||
763 | ||
2f4c0a16 | 764 | static PyObject * WizardPage_swigregister(PyObject *, PyObject *args) { |
d14a1e28 RD |
765 | PyObject *obj; |
766 | if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; | |
767 | SWIG_TypeClientData(SWIGTYPE_p_wxWizardPage, obj); | |
768 | Py_INCREF(obj); | |
769 | return Py_BuildValue((char *)""); | |
770 | } | |
2f4c0a16 | 771 | static PyObject *_wrap_new_PyWizardPage(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
772 | PyObject *resultobj; |
773 | wxWizard *arg1 = (wxWizard *) 0 ; | |
774 | wxBitmap *arg2 = (wxBitmap *) &wxNullBitmap ; | |
775 | wxString *arg3 = (wxString *) &wxPyEmptyString ; | |
776 | wxPyWizardPage *result; | |
dae0faa6 | 777 | bool temp3 = False ; |
d14a1e28 RD |
778 | PyObject * obj0 = 0 ; |
779 | PyObject * obj1 = 0 ; | |
780 | PyObject * obj2 = 0 ; | |
781 | char *kwnames[] = { | |
782 | (char *) "parent",(char *) "bitmap",(char *) "resource", NULL | |
783 | }; | |
784 | ||
785 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OO:new_PyWizardPage",kwnames,&obj0,&obj1,&obj2)) goto fail; | |
2f4c0a16 RD |
786 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
787 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 | 788 | if (obj1) { |
2f4c0a16 RD |
789 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxBitmap, |
790 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
791 | } |
792 | if (obj2) { | |
dae0faa6 RD |
793 | { |
794 | arg3 = wxString_in_helper(obj2); | |
795 | if (arg3 == NULL) SWIG_fail; | |
796 | temp3 = True; | |
797 | } | |
d14a1e28 RD |
798 | } |
799 | { | |
800 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
801 | result = (wxPyWizardPage *)new_wxPyWizardPage(arg1,(wxBitmap const *)arg2,(wxString const *)arg3); | |
802 | ||
803 | wxPyEndAllowThreads(__tstate); | |
804 | if (PyErr_Occurred()) SWIG_fail; | |
805 | } | |
2f4c0a16 | 806 | resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxPyWizardPage, 1); |
dae0faa6 RD |
807 | { |
808 | if (temp3) | |
809 | delete arg3; | |
810 | } | |
d14a1e28 RD |
811 | return resultobj; |
812 | fail: | |
dae0faa6 RD |
813 | { |
814 | if (temp3) | |
815 | delete arg3; | |
816 | } | |
d14a1e28 RD |
817 | return NULL; |
818 | } | |
819 | ||
820 | ||
2f4c0a16 | 821 | static PyObject *_wrap_new_PrePyWizardPage(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
822 | PyObject *resultobj; |
823 | wxPyWizardPage *result; | |
824 | char *kwnames[] = { | |
825 | NULL | |
826 | }; | |
827 | ||
828 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PrePyWizardPage",kwnames)) goto fail; | |
829 | { | |
830 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
831 | result = (wxPyWizardPage *)new wxPyWizardPage(); | |
832 | ||
833 | wxPyEndAllowThreads(__tstate); | |
834 | if (PyErr_Occurred()) SWIG_fail; | |
835 | } | |
2f4c0a16 | 836 | resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxPyWizardPage, 1); |
d14a1e28 RD |
837 | return resultobj; |
838 | fail: | |
839 | return NULL; | |
840 | } | |
841 | ||
842 | ||
2f4c0a16 | 843 | static PyObject *_wrap_PyWizardPage_Create(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
844 | PyObject *resultobj; |
845 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
846 | wxWizard *arg2 = (wxWizard *) 0 ; | |
847 | wxBitmap const &arg3_defvalue = wxNullBitmap ; | |
848 | wxBitmap *arg3 = (wxBitmap *) &arg3_defvalue ; | |
849 | wxString const &arg4_defvalue = wxPyEmptyString ; | |
850 | wxString *arg4 = (wxString *) &arg4_defvalue ; | |
851 | bool result; | |
423f194a | 852 | bool temp4 = False ; |
d14a1e28 RD |
853 | PyObject * obj0 = 0 ; |
854 | PyObject * obj1 = 0 ; | |
855 | PyObject * obj2 = 0 ; | |
856 | PyObject * obj3 = 0 ; | |
857 | char *kwnames[] = { | |
858 | (char *) "self",(char *) "parent",(char *) "bitmap",(char *) "resource", NULL | |
859 | }; | |
860 | ||
861 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OO:PyWizardPage_Create",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail; | |
2f4c0a16 RD |
862 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
863 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
864 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWizard, | |
865 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 | 866 | if (obj2) { |
2f4c0a16 RD |
867 | if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxBitmap, |
868 | SWIG_POINTER_EXCEPTION | 0)) == -1) | |
869 | SWIG_fail; | |
d14a1e28 | 870 | if (arg3 == NULL) { |
2f4c0a16 RD |
871 | PyErr_SetString(PyExc_TypeError,"null reference"); |
872 | SWIG_fail; | |
d14a1e28 RD |
873 | } |
874 | } | |
875 | if (obj3) { | |
876 | { | |
877 | arg4 = wxString_in_helper(obj3); | |
878 | if (arg4 == NULL) SWIG_fail; | |
423f194a | 879 | temp4 = True; |
d14a1e28 RD |
880 | } |
881 | } | |
882 | { | |
883 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
884 | result = (bool)wxPyWizardPage_Create(arg1,arg2,(wxBitmap const &)*arg3,(wxString const &)*arg4); | |
885 | ||
886 | wxPyEndAllowThreads(__tstate); | |
887 | if (PyErr_Occurred()) SWIG_fail; | |
888 | } | |
fbc46b20 RD |
889 | { |
890 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
891 | } | |
d14a1e28 RD |
892 | { |
893 | if (temp4) | |
894 | delete arg4; | |
895 | } | |
896 | return resultobj; | |
897 | fail: | |
898 | { | |
899 | if (temp4) | |
900 | delete arg4; | |
901 | } | |
902 | return NULL; | |
903 | } | |
904 | ||
905 | ||
2f4c0a16 | 906 | static PyObject *_wrap_PyWizardPage__setCallbackInfo(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
907 | PyObject *resultobj; |
908 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
909 | PyObject *arg2 = (PyObject *) 0 ; | |
910 | PyObject *arg3 = (PyObject *) 0 ; | |
911 | PyObject * obj0 = 0 ; | |
912 | PyObject * obj1 = 0 ; | |
913 | PyObject * obj2 = 0 ; | |
914 | char *kwnames[] = { | |
915 | (char *) "self",(char *) "self",(char *) "_class", NULL | |
916 | }; | |
917 | ||
918 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:PyWizardPage__setCallbackInfo",kwnames,&obj0,&obj1,&obj2)) goto fail; | |
2f4c0a16 RD |
919 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
920 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
921 | arg2 = obj1; |
922 | arg3 = obj2; | |
923 | { | |
924 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
925 | (arg1)->_setCallbackInfo(arg2,arg3); | |
926 | ||
927 | wxPyEndAllowThreads(__tstate); | |
928 | if (PyErr_Occurred()) SWIG_fail; | |
929 | } | |
930 | Py_INCREF(Py_None); resultobj = Py_None; | |
931 | return resultobj; | |
932 | fail: | |
933 | return NULL; | |
934 | } | |
935 | ||
936 | ||
2f4c0a16 | 937 | static PyObject *_wrap_PyWizardPage_base_DoMoveWindow(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
938 | PyObject *resultobj; |
939 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
940 | int arg2 ; | |
941 | int arg3 ; | |
942 | int arg4 ; | |
943 | int arg5 ; | |
944 | PyObject * obj0 = 0 ; | |
8edf1c75 RD |
945 | PyObject * obj1 = 0 ; |
946 | PyObject * obj2 = 0 ; | |
947 | PyObject * obj3 = 0 ; | |
948 | PyObject * obj4 = 0 ; | |
d14a1e28 RD |
949 | char *kwnames[] = { |
950 | (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL | |
951 | }; | |
952 | ||
8edf1c75 | 953 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO:PyWizardPage_base_DoMoveWindow",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail; |
2f4c0a16 RD |
954 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
955 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
956 | arg2 = (int) SWIG_AsInt(obj1); | |
957 | if (PyErr_Occurred()) SWIG_fail; | |
958 | arg3 = (int) SWIG_AsInt(obj2); | |
959 | if (PyErr_Occurred()) SWIG_fail; | |
960 | arg4 = (int) SWIG_AsInt(obj3); | |
961 | if (PyErr_Occurred()) SWIG_fail; | |
962 | arg5 = (int) SWIG_AsInt(obj4); | |
963 | if (PyErr_Occurred()) SWIG_fail; | |
d14a1e28 RD |
964 | { |
965 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
966 | (arg1)->base_DoMoveWindow(arg2,arg3,arg4,arg5); | |
967 | ||
968 | wxPyEndAllowThreads(__tstate); | |
969 | if (PyErr_Occurred()) SWIG_fail; | |
970 | } | |
971 | Py_INCREF(Py_None); resultobj = Py_None; | |
972 | return resultobj; | |
973 | fail: | |
974 | return NULL; | |
975 | } | |
976 | ||
977 | ||
2f4c0a16 | 978 | static PyObject *_wrap_PyWizardPage_base_DoSetSize(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
979 | PyObject *resultobj; |
980 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
981 | int arg2 ; | |
982 | int arg3 ; | |
983 | int arg4 ; | |
984 | int arg5 ; | |
985 | int arg6 = (int) wxSIZE_AUTO ; | |
986 | PyObject * obj0 = 0 ; | |
8edf1c75 RD |
987 | PyObject * obj1 = 0 ; |
988 | PyObject * obj2 = 0 ; | |
989 | PyObject * obj3 = 0 ; | |
990 | PyObject * obj4 = 0 ; | |
991 | PyObject * obj5 = 0 ; | |
d14a1e28 RD |
992 | char *kwnames[] = { |
993 | (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "sizeFlags", NULL | |
994 | }; | |
995 | ||
8edf1c75 | 996 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO|O:PyWizardPage_base_DoSetSize",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail; |
2f4c0a16 RD |
997 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
998 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
999 | arg2 = (int) SWIG_AsInt(obj1); | |
1000 | if (PyErr_Occurred()) SWIG_fail; | |
1001 | arg3 = (int) SWIG_AsInt(obj2); | |
1002 | if (PyErr_Occurred()) SWIG_fail; | |
1003 | arg4 = (int) SWIG_AsInt(obj3); | |
1004 | if (PyErr_Occurred()) SWIG_fail; | |
1005 | arg5 = (int) SWIG_AsInt(obj4); | |
1006 | if (PyErr_Occurred()) SWIG_fail; | |
8edf1c75 | 1007 | if (obj5) { |
2f4c0a16 RD |
1008 | arg6 = (int) SWIG_AsInt(obj5); |
1009 | if (PyErr_Occurred()) SWIG_fail; | |
8edf1c75 | 1010 | } |
d14a1e28 RD |
1011 | { |
1012 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1013 | (arg1)->base_DoSetSize(arg2,arg3,arg4,arg5,arg6); | |
1014 | ||
1015 | wxPyEndAllowThreads(__tstate); | |
1016 | if (PyErr_Occurred()) SWIG_fail; | |
1017 | } | |
1018 | Py_INCREF(Py_None); resultobj = Py_None; | |
1019 | return resultobj; | |
1020 | fail: | |
1021 | return NULL; | |
1022 | } | |
1023 | ||
1024 | ||
2f4c0a16 | 1025 | static PyObject *_wrap_PyWizardPage_base_DoSetClientSize(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1026 | PyObject *resultobj; |
1027 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1028 | int arg2 ; | |
1029 | int arg3 ; | |
1030 | PyObject * obj0 = 0 ; | |
8edf1c75 RD |
1031 | PyObject * obj1 = 0 ; |
1032 | PyObject * obj2 = 0 ; | |
d14a1e28 RD |
1033 | char *kwnames[] = { |
1034 | (char *) "self",(char *) "width",(char *) "height", NULL | |
1035 | }; | |
1036 | ||
8edf1c75 | 1037 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:PyWizardPage_base_DoSetClientSize",kwnames,&obj0,&obj1,&obj2)) goto fail; |
2f4c0a16 RD |
1038 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1039 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
1040 | arg2 = (int) SWIG_AsInt(obj1); | |
1041 | if (PyErr_Occurred()) SWIG_fail; | |
1042 | arg3 = (int) SWIG_AsInt(obj2); | |
1043 | if (PyErr_Occurred()) SWIG_fail; | |
d14a1e28 RD |
1044 | { |
1045 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1046 | (arg1)->base_DoSetClientSize(arg2,arg3); | |
1047 | ||
1048 | wxPyEndAllowThreads(__tstate); | |
1049 | if (PyErr_Occurred()) SWIG_fail; | |
1050 | } | |
1051 | Py_INCREF(Py_None); resultobj = Py_None; | |
1052 | return resultobj; | |
1053 | fail: | |
1054 | return NULL; | |
1055 | } | |
1056 | ||
1057 | ||
2f4c0a16 | 1058 | static PyObject *_wrap_PyWizardPage_base_DoSetVirtualSize(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1059 | PyObject *resultobj; |
1060 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1061 | int arg2 ; | |
1062 | int arg3 ; | |
1063 | PyObject * obj0 = 0 ; | |
8edf1c75 RD |
1064 | PyObject * obj1 = 0 ; |
1065 | PyObject * obj2 = 0 ; | |
d14a1e28 RD |
1066 | char *kwnames[] = { |
1067 | (char *) "self",(char *) "x",(char *) "y", NULL | |
1068 | }; | |
1069 | ||
8edf1c75 | 1070 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:PyWizardPage_base_DoSetVirtualSize",kwnames,&obj0,&obj1,&obj2)) goto fail; |
2f4c0a16 RD |
1071 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1072 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
1073 | arg2 = (int) SWIG_AsInt(obj1); | |
1074 | if (PyErr_Occurred()) SWIG_fail; | |
1075 | arg3 = (int) SWIG_AsInt(obj2); | |
1076 | if (PyErr_Occurred()) SWIG_fail; | |
d14a1e28 RD |
1077 | { |
1078 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1079 | (arg1)->base_DoSetVirtualSize(arg2,arg3); | |
1080 | ||
1081 | wxPyEndAllowThreads(__tstate); | |
1082 | if (PyErr_Occurred()) SWIG_fail; | |
1083 | } | |
1084 | Py_INCREF(Py_None); resultobj = Py_None; | |
1085 | return resultobj; | |
1086 | fail: | |
1087 | return NULL; | |
1088 | } | |
1089 | ||
1090 | ||
2f4c0a16 | 1091 | static PyObject *_wrap_PyWizardPage_base_DoGetSize(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1092 | PyObject *resultobj; |
1093 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1094 | int *arg2 = (int *) 0 ; | |
1095 | int *arg3 = (int *) 0 ; | |
1096 | int temp2 ; | |
1097 | int temp3 ; | |
1098 | PyObject * obj0 = 0 ; | |
1099 | char *kwnames[] = { | |
1100 | (char *) "self", NULL | |
1101 | }; | |
1102 | ||
1103 | arg2 = &temp2; | |
1104 | arg3 = &temp3; | |
1105 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyWizardPage_base_DoGetSize",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
1106 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1107 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1108 | { |
1109 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1110 | ((wxPyWizardPage const *)arg1)->base_DoGetSize(arg2,arg3); | |
1111 | ||
1112 | wxPyEndAllowThreads(__tstate); | |
1113 | if (PyErr_Occurred()) SWIG_fail; | |
1114 | } | |
1115 | Py_INCREF(Py_None); resultobj = Py_None; | |
1116 | { | |
1117 | PyObject *o = PyInt_FromLong((long) (*arg2)); | |
1118 | resultobj = t_output_helper(resultobj,o); | |
1119 | } | |
1120 | { | |
1121 | PyObject *o = PyInt_FromLong((long) (*arg3)); | |
1122 | resultobj = t_output_helper(resultobj,o); | |
1123 | } | |
1124 | return resultobj; | |
1125 | fail: | |
1126 | return NULL; | |
1127 | } | |
1128 | ||
1129 | ||
2f4c0a16 | 1130 | static PyObject *_wrap_PyWizardPage_base_DoGetClientSize(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1131 | PyObject *resultobj; |
1132 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1133 | int *arg2 = (int *) 0 ; | |
1134 | int *arg3 = (int *) 0 ; | |
1135 | int temp2 ; | |
1136 | int temp3 ; | |
1137 | PyObject * obj0 = 0 ; | |
1138 | char *kwnames[] = { | |
1139 | (char *) "self", NULL | |
1140 | }; | |
1141 | ||
1142 | arg2 = &temp2; | |
1143 | arg3 = &temp3; | |
1144 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyWizardPage_base_DoGetClientSize",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
1145 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1146 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1147 | { |
1148 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1149 | ((wxPyWizardPage const *)arg1)->base_DoGetClientSize(arg2,arg3); | |
1150 | ||
1151 | wxPyEndAllowThreads(__tstate); | |
1152 | if (PyErr_Occurred()) SWIG_fail; | |
1153 | } | |
1154 | Py_INCREF(Py_None); resultobj = Py_None; | |
1155 | { | |
1156 | PyObject *o = PyInt_FromLong((long) (*arg2)); | |
1157 | resultobj = t_output_helper(resultobj,o); | |
1158 | } | |
1159 | { | |
1160 | PyObject *o = PyInt_FromLong((long) (*arg3)); | |
1161 | resultobj = t_output_helper(resultobj,o); | |
1162 | } | |
1163 | return resultobj; | |
1164 | fail: | |
1165 | return NULL; | |
1166 | } | |
1167 | ||
1168 | ||
2f4c0a16 | 1169 | static PyObject *_wrap_PyWizardPage_base_DoGetPosition(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1170 | PyObject *resultobj; |
1171 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1172 | int *arg2 = (int *) 0 ; | |
1173 | int *arg3 = (int *) 0 ; | |
1174 | int temp2 ; | |
1175 | int temp3 ; | |
1176 | PyObject * obj0 = 0 ; | |
1177 | char *kwnames[] = { | |
1178 | (char *) "self", NULL | |
1179 | }; | |
1180 | ||
1181 | arg2 = &temp2; | |
1182 | arg3 = &temp3; | |
1183 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyWizardPage_base_DoGetPosition",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
1184 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1185 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1186 | { |
1187 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1188 | ((wxPyWizardPage const *)arg1)->base_DoGetPosition(arg2,arg3); | |
1189 | ||
1190 | wxPyEndAllowThreads(__tstate); | |
1191 | if (PyErr_Occurred()) SWIG_fail; | |
1192 | } | |
1193 | Py_INCREF(Py_None); resultobj = Py_None; | |
1194 | { | |
1195 | PyObject *o = PyInt_FromLong((long) (*arg2)); | |
1196 | resultobj = t_output_helper(resultobj,o); | |
1197 | } | |
1198 | { | |
1199 | PyObject *o = PyInt_FromLong((long) (*arg3)); | |
1200 | resultobj = t_output_helper(resultobj,o); | |
1201 | } | |
1202 | return resultobj; | |
1203 | fail: | |
1204 | return NULL; | |
1205 | } | |
1206 | ||
1207 | ||
2f4c0a16 | 1208 | static PyObject *_wrap_PyWizardPage_base_DoGetVirtualSize(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1209 | PyObject *resultobj; |
1210 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1211 | wxSize result; | |
1212 | PyObject * obj0 = 0 ; | |
1213 | char *kwnames[] = { | |
1214 | (char *) "self", NULL | |
1215 | }; | |
1216 | ||
1217 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyWizardPage_base_DoGetVirtualSize",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
1218 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1219 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1220 | { |
1221 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1222 | result = ((wxPyWizardPage const *)arg1)->base_DoGetVirtualSize(); | |
1223 | ||
1224 | wxPyEndAllowThreads(__tstate); | |
1225 | if (PyErr_Occurred()) SWIG_fail; | |
1226 | } | |
1227 | { | |
1228 | wxSize * resultptr; | |
1229 | resultptr = new wxSize((wxSize &) result); | |
2f4c0a16 | 1230 | resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1); |
d14a1e28 RD |
1231 | } |
1232 | return resultobj; | |
1233 | fail: | |
1234 | return NULL; | |
1235 | } | |
1236 | ||
1237 | ||
2f4c0a16 | 1238 | static PyObject *_wrap_PyWizardPage_base_DoGetBestSize(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1239 | PyObject *resultobj; |
1240 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1241 | wxSize result; | |
1242 | PyObject * obj0 = 0 ; | |
1243 | char *kwnames[] = { | |
1244 | (char *) "self", NULL | |
1245 | }; | |
1246 | ||
1247 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyWizardPage_base_DoGetBestSize",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
1248 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1249 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1250 | { |
1251 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1252 | result = ((wxPyWizardPage const *)arg1)->base_DoGetBestSize(); | |
1253 | ||
1254 | wxPyEndAllowThreads(__tstate); | |
1255 | if (PyErr_Occurred()) SWIG_fail; | |
1256 | } | |
1257 | { | |
1258 | wxSize * resultptr; | |
1259 | resultptr = new wxSize((wxSize &) result); | |
2f4c0a16 | 1260 | resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1); |
d14a1e28 RD |
1261 | } |
1262 | return resultobj; | |
1263 | fail: | |
1264 | return NULL; | |
1265 | } | |
1266 | ||
1267 | ||
2f4c0a16 | 1268 | static PyObject *_wrap_PyWizardPage_base_InitDialog(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1269 | PyObject *resultobj; |
1270 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1271 | PyObject * obj0 = 0 ; | |
1272 | char *kwnames[] = { | |
1273 | (char *) "self", NULL | |
1274 | }; | |
1275 | ||
1276 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyWizardPage_base_InitDialog",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
1277 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1278 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1279 | { |
1280 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1281 | (arg1)->base_InitDialog(); | |
1282 | ||
1283 | wxPyEndAllowThreads(__tstate); | |
1284 | if (PyErr_Occurred()) SWIG_fail; | |
1285 | } | |
1286 | Py_INCREF(Py_None); resultobj = Py_None; | |
1287 | return resultobj; | |
1288 | fail: | |
1289 | return NULL; | |
1290 | } | |
1291 | ||
1292 | ||
2f4c0a16 | 1293 | static PyObject *_wrap_PyWizardPage_base_TransferDataToWindow(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1294 | PyObject *resultobj; |
1295 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1296 | bool result; | |
1297 | PyObject * obj0 = 0 ; | |
1298 | char *kwnames[] = { | |
1299 | (char *) "self", NULL | |
1300 | }; | |
1301 | ||
1302 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyWizardPage_base_TransferDataToWindow",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
1303 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1304 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1305 | { |
1306 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1307 | result = (bool)(arg1)->base_TransferDataToWindow(); | |
1308 | ||
1309 | wxPyEndAllowThreads(__tstate); | |
1310 | if (PyErr_Occurred()) SWIG_fail; | |
1311 | } | |
fbc46b20 RD |
1312 | { |
1313 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
1314 | } | |
d14a1e28 RD |
1315 | return resultobj; |
1316 | fail: | |
1317 | return NULL; | |
1318 | } | |
1319 | ||
1320 | ||
2f4c0a16 | 1321 | static PyObject *_wrap_PyWizardPage_base_TransferDataFromWindow(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1322 | PyObject *resultobj; |
1323 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1324 | bool result; | |
1325 | PyObject * obj0 = 0 ; | |
1326 | char *kwnames[] = { | |
1327 | (char *) "self", NULL | |
1328 | }; | |
1329 | ||
1330 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyWizardPage_base_TransferDataFromWindow",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
1331 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1332 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1333 | { |
1334 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1335 | result = (bool)(arg1)->base_TransferDataFromWindow(); | |
1336 | ||
1337 | wxPyEndAllowThreads(__tstate); | |
1338 | if (PyErr_Occurred()) SWIG_fail; | |
1339 | } | |
fbc46b20 RD |
1340 | { |
1341 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
1342 | } | |
d14a1e28 RD |
1343 | return resultobj; |
1344 | fail: | |
1345 | return NULL; | |
1346 | } | |
1347 | ||
1348 | ||
2f4c0a16 | 1349 | static PyObject *_wrap_PyWizardPage_base_Validate(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1350 | PyObject *resultobj; |
1351 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1352 | bool result; | |
1353 | PyObject * obj0 = 0 ; | |
1354 | char *kwnames[] = { | |
1355 | (char *) "self", NULL | |
1356 | }; | |
1357 | ||
1358 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyWizardPage_base_Validate",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
1359 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1360 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1361 | { |
1362 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1363 | result = (bool)(arg1)->base_Validate(); | |
1364 | ||
1365 | wxPyEndAllowThreads(__tstate); | |
1366 | if (PyErr_Occurred()) SWIG_fail; | |
1367 | } | |
fbc46b20 RD |
1368 | { |
1369 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
1370 | } | |
d14a1e28 RD |
1371 | return resultobj; |
1372 | fail: | |
1373 | return NULL; | |
1374 | } | |
1375 | ||
1376 | ||
2f4c0a16 | 1377 | static PyObject *_wrap_PyWizardPage_base_AcceptsFocus(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1378 | PyObject *resultobj; |
1379 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1380 | bool result; | |
1381 | PyObject * obj0 = 0 ; | |
1382 | char *kwnames[] = { | |
1383 | (char *) "self", NULL | |
1384 | }; | |
1385 | ||
1386 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyWizardPage_base_AcceptsFocus",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
1387 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1388 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1389 | { |
1390 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1391 | result = (bool)((wxPyWizardPage const *)arg1)->base_AcceptsFocus(); | |
1392 | ||
1393 | wxPyEndAllowThreads(__tstate); | |
1394 | if (PyErr_Occurred()) SWIG_fail; | |
1395 | } | |
fbc46b20 RD |
1396 | { |
1397 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
1398 | } | |
d14a1e28 RD |
1399 | return resultobj; |
1400 | fail: | |
1401 | return NULL; | |
1402 | } | |
1403 | ||
1404 | ||
2f4c0a16 | 1405 | static PyObject *_wrap_PyWizardPage_base_AcceptsFocusFromKeyboard(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1406 | PyObject *resultobj; |
1407 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1408 | bool result; | |
1409 | PyObject * obj0 = 0 ; | |
1410 | char *kwnames[] = { | |
1411 | (char *) "self", NULL | |
1412 | }; | |
1413 | ||
1414 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyWizardPage_base_AcceptsFocusFromKeyboard",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
1415 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1416 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1417 | { |
1418 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1419 | result = (bool)((wxPyWizardPage const *)arg1)->base_AcceptsFocusFromKeyboard(); | |
1420 | ||
1421 | wxPyEndAllowThreads(__tstate); | |
1422 | if (PyErr_Occurred()) SWIG_fail; | |
1423 | } | |
fbc46b20 RD |
1424 | { |
1425 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
1426 | } | |
d14a1e28 RD |
1427 | return resultobj; |
1428 | fail: | |
1429 | return NULL; | |
1430 | } | |
1431 | ||
1432 | ||
2f4c0a16 | 1433 | static PyObject *_wrap_PyWizardPage_base_GetMaxSize(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1434 | PyObject *resultobj; |
1435 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1436 | wxSize result; | |
1437 | PyObject * obj0 = 0 ; | |
1438 | char *kwnames[] = { | |
1439 | (char *) "self", NULL | |
1440 | }; | |
1441 | ||
1442 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyWizardPage_base_GetMaxSize",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
1443 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1444 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1445 | { |
1446 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1447 | result = ((wxPyWizardPage const *)arg1)->base_GetMaxSize(); | |
1448 | ||
1449 | wxPyEndAllowThreads(__tstate); | |
1450 | if (PyErr_Occurred()) SWIG_fail; | |
1451 | } | |
1452 | { | |
1453 | wxSize * resultptr; | |
1454 | resultptr = new wxSize((wxSize &) result); | |
2f4c0a16 | 1455 | resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1); |
d14a1e28 RD |
1456 | } |
1457 | return resultobj; | |
1458 | fail: | |
1459 | return NULL; | |
1460 | } | |
1461 | ||
1462 | ||
2f4c0a16 | 1463 | static PyObject *_wrap_PyWizardPage_base_AddChild(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1464 | PyObject *resultobj; |
1465 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1466 | wxWindow *arg2 = (wxWindow *) 0 ; | |
1467 | PyObject * obj0 = 0 ; | |
1468 | PyObject * obj1 = 0 ; | |
1469 | char *kwnames[] = { | |
1470 | (char *) "self",(char *) "child", NULL | |
1471 | }; | |
1472 | ||
1473 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:PyWizardPage_base_AddChild",kwnames,&obj0,&obj1)) goto fail; | |
2f4c0a16 RD |
1474 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1475 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
1476 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow, | |
1477 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1478 | { |
1479 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1480 | (arg1)->base_AddChild(arg2); | |
1481 | ||
1482 | wxPyEndAllowThreads(__tstate); | |
1483 | if (PyErr_Occurred()) SWIG_fail; | |
1484 | } | |
1485 | Py_INCREF(Py_None); resultobj = Py_None; | |
1486 | return resultobj; | |
1487 | fail: | |
1488 | return NULL; | |
1489 | } | |
1490 | ||
1491 | ||
2f4c0a16 | 1492 | static PyObject *_wrap_PyWizardPage_base_RemoveChild(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1493 | PyObject *resultobj; |
1494 | wxPyWizardPage *arg1 = (wxPyWizardPage *) 0 ; | |
1495 | wxWindow *arg2 = (wxWindow *) 0 ; | |
1496 | PyObject * obj0 = 0 ; | |
1497 | PyObject * obj1 = 0 ; | |
1498 | char *kwnames[] = { | |
1499 | (char *) "self",(char *) "child", NULL | |
1500 | }; | |
1501 | ||
1502 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:PyWizardPage_base_RemoveChild",kwnames,&obj0,&obj1)) goto fail; | |
2f4c0a16 RD |
1503 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyWizardPage, |
1504 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
1505 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow, | |
1506 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1507 | { |
1508 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1509 | (arg1)->base_RemoveChild(arg2); | |
1510 | ||
1511 | wxPyEndAllowThreads(__tstate); | |
1512 | if (PyErr_Occurred()) SWIG_fail; | |
1513 | } | |
1514 | Py_INCREF(Py_None); resultobj = Py_None; | |
1515 | return resultobj; | |
1516 | fail: | |
1517 | return NULL; | |
1518 | } | |
1519 | ||
1520 | ||
2f4c0a16 | 1521 | static PyObject * PyWizardPage_swigregister(PyObject *, PyObject *args) { |
d14a1e28 RD |
1522 | PyObject *obj; |
1523 | if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; | |
1524 | SWIG_TypeClientData(SWIGTYPE_p_wxPyWizardPage, obj); | |
1525 | Py_INCREF(obj); | |
1526 | return Py_BuildValue((char *)""); | |
1527 | } | |
2f4c0a16 | 1528 | static PyObject *_wrap_new_WizardPageSimple(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1529 | PyObject *resultobj; |
1530 | wxWizard *arg1 = (wxWizard *) 0 ; | |
1531 | wxWizardPage *arg2 = (wxWizardPage *) NULL ; | |
1532 | wxWizardPage *arg3 = (wxWizardPage *) NULL ; | |
1533 | wxBitmap const &arg4_defvalue = wxNullBitmap ; | |
1534 | wxBitmap *arg4 = (wxBitmap *) &arg4_defvalue ; | |
1535 | wxChar *arg5 = (wxChar *) NULL ; | |
1536 | wxWizardPageSimple *result; | |
1537 | PyObject * obj0 = 0 ; | |
1538 | PyObject * obj1 = 0 ; | |
1539 | PyObject * obj2 = 0 ; | |
1540 | PyObject * obj3 = 0 ; | |
1541 | PyObject * obj4 = 0 ; | |
1542 | char *kwnames[] = { | |
1543 | (char *) "parent",(char *) "prev",(char *) "next",(char *) "bitmap",(char *) "resource", NULL | |
1544 | }; | |
1545 | ||
1546 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOO:new_WizardPageSimple",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail; | |
2f4c0a16 RD |
1547 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
1548 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 | 1549 | if (obj1) { |
2f4c0a16 RD |
1550 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWizardPage, |
1551 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1552 | } |
1553 | if (obj2) { | |
2f4c0a16 RD |
1554 | if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxWizardPage, |
1555 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1556 | } |
1557 | if (obj3) { | |
2f4c0a16 RD |
1558 | if ((SWIG_ConvertPtr(obj3,(void **)(&arg4),SWIGTYPE_p_wxBitmap, |
1559 | SWIG_POINTER_EXCEPTION | 0)) == -1) | |
1560 | SWIG_fail; | |
d14a1e28 | 1561 | if (arg4 == NULL) { |
2f4c0a16 RD |
1562 | PyErr_SetString(PyExc_TypeError,"null reference"); |
1563 | SWIG_fail; | |
d14a1e28 RD |
1564 | } |
1565 | } | |
1566 | if (obj4) { | |
2f4c0a16 RD |
1567 | if ((SWIG_ConvertPtr(obj4,(void **)(&arg5),SWIGTYPE_p_wxChar, |
1568 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1569 | } |
1570 | { | |
1571 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1572 | result = (wxWizardPageSimple *)new wxWizardPageSimple(arg1,arg2,arg3,(wxBitmap const &)*arg4,(wxChar const *)arg5); | |
1573 | ||
1574 | wxPyEndAllowThreads(__tstate); | |
1575 | if (PyErr_Occurred()) SWIG_fail; | |
1576 | } | |
2f4c0a16 | 1577 | resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxWizardPageSimple, 1); |
d14a1e28 RD |
1578 | return resultobj; |
1579 | fail: | |
1580 | return NULL; | |
1581 | } | |
1582 | ||
1583 | ||
2f4c0a16 | 1584 | static PyObject *_wrap_new_PreWizardPageSimple(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1585 | PyObject *resultobj; |
1586 | wxWizardPageSimple *result; | |
1587 | char *kwnames[] = { | |
1588 | NULL | |
1589 | }; | |
1590 | ||
1591 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreWizardPageSimple",kwnames)) goto fail; | |
1592 | { | |
1593 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1594 | result = (wxWizardPageSimple *)new wxWizardPageSimple(); | |
1595 | ||
1596 | wxPyEndAllowThreads(__tstate); | |
1597 | if (PyErr_Occurred()) SWIG_fail; | |
1598 | } | |
2f4c0a16 | 1599 | resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxWizardPageSimple, 1); |
d14a1e28 RD |
1600 | return resultobj; |
1601 | fail: | |
1602 | return NULL; | |
1603 | } | |
1604 | ||
1605 | ||
2f4c0a16 | 1606 | static PyObject *_wrap_WizardPageSimple_Create(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1607 | PyObject *resultobj; |
1608 | wxWizardPageSimple *arg1 = (wxWizardPageSimple *) 0 ; | |
1609 | wxWizard *arg2 = (wxWizard *) NULL ; | |
1610 | wxWizardPage *arg3 = (wxWizardPage *) NULL ; | |
1611 | wxWizardPage *arg4 = (wxWizardPage *) NULL ; | |
1612 | wxBitmap const &arg5_defvalue = wxNullBitmap ; | |
1613 | wxBitmap *arg5 = (wxBitmap *) &arg5_defvalue ; | |
1614 | wxChar *arg6 = (wxChar *) NULL ; | |
1615 | bool result; | |
1616 | PyObject * obj0 = 0 ; | |
1617 | PyObject * obj1 = 0 ; | |
1618 | PyObject * obj2 = 0 ; | |
1619 | PyObject * obj3 = 0 ; | |
1620 | PyObject * obj4 = 0 ; | |
1621 | PyObject * obj5 = 0 ; | |
1622 | char *kwnames[] = { | |
1623 | (char *) "self",(char *) "parent",(char *) "prev",(char *) "next",(char *) "bitmap",(char *) "resource", NULL | |
1624 | }; | |
1625 | ||
1626 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOO:WizardPageSimple_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail; | |
2f4c0a16 RD |
1627 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizardPageSimple, |
1628 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 | 1629 | if (obj1) { |
2f4c0a16 RD |
1630 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWizard, |
1631 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1632 | } |
1633 | if (obj2) { | |
2f4c0a16 RD |
1634 | if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxWizardPage, |
1635 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1636 | } |
1637 | if (obj3) { | |
2f4c0a16 RD |
1638 | if ((SWIG_ConvertPtr(obj3,(void **)(&arg4),SWIGTYPE_p_wxWizardPage, |
1639 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1640 | } |
1641 | if (obj4) { | |
2f4c0a16 RD |
1642 | if ((SWIG_ConvertPtr(obj4,(void **)(&arg5),SWIGTYPE_p_wxBitmap, |
1643 | SWIG_POINTER_EXCEPTION | 0)) == -1) | |
1644 | SWIG_fail; | |
d14a1e28 | 1645 | if (arg5 == NULL) { |
2f4c0a16 RD |
1646 | PyErr_SetString(PyExc_TypeError,"null reference"); |
1647 | SWIG_fail; | |
d14a1e28 RD |
1648 | } |
1649 | } | |
1650 | if (obj5) { | |
2f4c0a16 RD |
1651 | if ((SWIG_ConvertPtr(obj5,(void **)(&arg6),SWIGTYPE_p_wxChar, |
1652 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1653 | } |
1654 | { | |
1655 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1656 | result = (bool)(arg1)->Create(arg2,arg3,arg4,(wxBitmap const &)*arg5,(wxChar const *)arg6); | |
1657 | ||
1658 | wxPyEndAllowThreads(__tstate); | |
1659 | if (PyErr_Occurred()) SWIG_fail; | |
1660 | } | |
fbc46b20 RD |
1661 | { |
1662 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
1663 | } | |
d14a1e28 RD |
1664 | return resultobj; |
1665 | fail: | |
1666 | return NULL; | |
1667 | } | |
1668 | ||
1669 | ||
2f4c0a16 | 1670 | static PyObject *_wrap_WizardPageSimple_SetPrev(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1671 | PyObject *resultobj; |
1672 | wxWizardPageSimple *arg1 = (wxWizardPageSimple *) 0 ; | |
1673 | wxWizardPage *arg2 = (wxWizardPage *) 0 ; | |
1674 | PyObject * obj0 = 0 ; | |
1675 | PyObject * obj1 = 0 ; | |
1676 | char *kwnames[] = { | |
1677 | (char *) "self",(char *) "prev", NULL | |
1678 | }; | |
1679 | ||
1680 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:WizardPageSimple_SetPrev",kwnames,&obj0,&obj1)) goto fail; | |
2f4c0a16 RD |
1681 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizardPageSimple, |
1682 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
1683 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWizardPage, | |
1684 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1685 | { |
1686 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1687 | (arg1)->SetPrev(arg2); | |
1688 | ||
1689 | wxPyEndAllowThreads(__tstate); | |
1690 | if (PyErr_Occurred()) SWIG_fail; | |
1691 | } | |
1692 | Py_INCREF(Py_None); resultobj = Py_None; | |
1693 | return resultobj; | |
1694 | fail: | |
1695 | return NULL; | |
1696 | } | |
1697 | ||
1698 | ||
2f4c0a16 | 1699 | static PyObject *_wrap_WizardPageSimple_SetNext(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1700 | PyObject *resultobj; |
1701 | wxWizardPageSimple *arg1 = (wxWizardPageSimple *) 0 ; | |
1702 | wxWizardPage *arg2 = (wxWizardPage *) 0 ; | |
1703 | PyObject * obj0 = 0 ; | |
1704 | PyObject * obj1 = 0 ; | |
1705 | char *kwnames[] = { | |
1706 | (char *) "self",(char *) "next", NULL | |
1707 | }; | |
1708 | ||
1709 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:WizardPageSimple_SetNext",kwnames,&obj0,&obj1)) goto fail; | |
2f4c0a16 RD |
1710 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizardPageSimple, |
1711 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
1712 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWizardPage, | |
1713 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1714 | { |
1715 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1716 | (arg1)->SetNext(arg2); | |
1717 | ||
1718 | wxPyEndAllowThreads(__tstate); | |
1719 | if (PyErr_Occurred()) SWIG_fail; | |
1720 | } | |
1721 | Py_INCREF(Py_None); resultobj = Py_None; | |
1722 | return resultobj; | |
1723 | fail: | |
1724 | return NULL; | |
1725 | } | |
1726 | ||
1727 | ||
2f4c0a16 | 1728 | static PyObject *_wrap_WizardPageSimple_Chain(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1729 | PyObject *resultobj; |
1730 | wxWizardPageSimple *arg1 = (wxWizardPageSimple *) 0 ; | |
1731 | wxWizardPageSimple *arg2 = (wxWizardPageSimple *) 0 ; | |
1732 | PyObject * obj0 = 0 ; | |
1733 | PyObject * obj1 = 0 ; | |
1734 | char *kwnames[] = { | |
1735 | (char *) "first",(char *) "second", NULL | |
1736 | }; | |
1737 | ||
1738 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:WizardPageSimple_Chain",kwnames,&obj0,&obj1)) goto fail; | |
2f4c0a16 RD |
1739 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizardPageSimple, |
1740 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
1741 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWizardPageSimple, | |
1742 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1743 | { |
1744 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1745 | wxWizardPageSimple::Chain(arg1,arg2); | |
1746 | ||
1747 | wxPyEndAllowThreads(__tstate); | |
1748 | if (PyErr_Occurred()) SWIG_fail; | |
1749 | } | |
1750 | Py_INCREF(Py_None); resultobj = Py_None; | |
1751 | return resultobj; | |
1752 | fail: | |
1753 | return NULL; | |
1754 | } | |
1755 | ||
1756 | ||
2f4c0a16 | 1757 | static PyObject * WizardPageSimple_swigregister(PyObject *, PyObject *args) { |
d14a1e28 RD |
1758 | PyObject *obj; |
1759 | if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; | |
1760 | SWIG_TypeClientData(SWIGTYPE_p_wxWizardPageSimple, obj); | |
1761 | Py_INCREF(obj); | |
1762 | return Py_BuildValue((char *)""); | |
1763 | } | |
2f4c0a16 | 1764 | static PyObject *_wrap_new_Wizard(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1765 | PyObject *resultobj; |
1766 | wxWindow *arg1 = (wxWindow *) 0 ; | |
1767 | int arg2 = (int) -1 ; | |
cbd72d4f | 1768 | wxString const &arg3_defvalue = wxPyEmptyString ; |
d14a1e28 RD |
1769 | wxString *arg3 = (wxString *) &arg3_defvalue ; |
1770 | wxBitmap const &arg4_defvalue = wxNullBitmap ; | |
1771 | wxBitmap *arg4 = (wxBitmap *) &arg4_defvalue ; | |
1772 | wxPoint const &arg5_defvalue = wxDefaultPosition ; | |
1773 | wxPoint *arg5 = (wxPoint *) &arg5_defvalue ; | |
1774 | long arg6 = (long) wxDEFAULT_DIALOG_STYLE ; | |
1775 | wxWizard *result; | |
423f194a | 1776 | bool temp3 = False ; |
d14a1e28 RD |
1777 | wxPoint temp5 ; |
1778 | PyObject * obj0 = 0 ; | |
8edf1c75 | 1779 | PyObject * obj1 = 0 ; |
d14a1e28 RD |
1780 | PyObject * obj2 = 0 ; |
1781 | PyObject * obj3 = 0 ; | |
1782 | PyObject * obj4 = 0 ; | |
8edf1c75 | 1783 | PyObject * obj5 = 0 ; |
d14a1e28 RD |
1784 | char *kwnames[] = { |
1785 | (char *) "parent",(char *) "id",(char *) "title",(char *) "bitmap",(char *) "pos",(char *) "style", NULL | |
1786 | }; | |
1787 | ||
8edf1c75 | 1788 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOO:new_Wizard",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail; |
2f4c0a16 RD |
1789 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow, |
1790 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
8edf1c75 | 1791 | if (obj1) { |
2f4c0a16 RD |
1792 | arg2 = (int) SWIG_AsInt(obj1); |
1793 | if (PyErr_Occurred()) SWIG_fail; | |
8edf1c75 | 1794 | } |
d14a1e28 RD |
1795 | if (obj2) { |
1796 | { | |
1797 | arg3 = wxString_in_helper(obj2); | |
1798 | if (arg3 == NULL) SWIG_fail; | |
423f194a | 1799 | temp3 = True; |
d14a1e28 RD |
1800 | } |
1801 | } | |
1802 | if (obj3) { | |
2f4c0a16 RD |
1803 | if ((SWIG_ConvertPtr(obj3,(void **)(&arg4),SWIGTYPE_p_wxBitmap, |
1804 | SWIG_POINTER_EXCEPTION | 0)) == -1) | |
1805 | SWIG_fail; | |
d14a1e28 | 1806 | if (arg4 == NULL) { |
2f4c0a16 RD |
1807 | PyErr_SetString(PyExc_TypeError,"null reference"); |
1808 | SWIG_fail; | |
d14a1e28 RD |
1809 | } |
1810 | } | |
1811 | if (obj4) { | |
1812 | { | |
1813 | arg5 = &temp5; | |
1814 | if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail; | |
1815 | } | |
1816 | } | |
8edf1c75 | 1817 | if (obj5) { |
2f4c0a16 RD |
1818 | arg6 = (long) SWIG_AsLong(obj5); |
1819 | if (PyErr_Occurred()) SWIG_fail; | |
8edf1c75 | 1820 | } |
d14a1e28 RD |
1821 | { |
1822 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1823 | result = (wxWizard *)new wxWizard(arg1,arg2,(wxString const &)*arg3,(wxBitmap const &)*arg4,(wxPoint const &)*arg5,arg6); | |
1824 | ||
1825 | wxPyEndAllowThreads(__tstate); | |
1826 | if (PyErr_Occurred()) SWIG_fail; | |
1827 | } | |
2f4c0a16 | 1828 | resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxWizard, 1); |
d14a1e28 RD |
1829 | { |
1830 | if (temp3) | |
1831 | delete arg3; | |
1832 | } | |
1833 | return resultobj; | |
1834 | fail: | |
1835 | { | |
1836 | if (temp3) | |
1837 | delete arg3; | |
1838 | } | |
1839 | return NULL; | |
1840 | } | |
1841 | ||
1842 | ||
2f4c0a16 | 1843 | static PyObject *_wrap_new_PreWizard(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1844 | PyObject *resultobj; |
1845 | wxWizard *result; | |
1846 | char *kwnames[] = { | |
1847 | NULL | |
1848 | }; | |
1849 | ||
1850 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreWizard",kwnames)) goto fail; | |
1851 | { | |
1852 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1853 | result = (wxWizard *)new wxWizard(); | |
1854 | ||
1855 | wxPyEndAllowThreads(__tstate); | |
1856 | if (PyErr_Occurred()) SWIG_fail; | |
1857 | } | |
2f4c0a16 | 1858 | resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxWizard, 1); |
d14a1e28 RD |
1859 | return resultobj; |
1860 | fail: | |
1861 | return NULL; | |
1862 | } | |
1863 | ||
1864 | ||
2f4c0a16 | 1865 | static PyObject *_wrap_Wizard_Create(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1866 | PyObject *resultobj; |
1867 | wxWizard *arg1 = (wxWizard *) 0 ; | |
1868 | wxWindow *arg2 = (wxWindow *) 0 ; | |
1869 | int arg3 = (int) -1 ; | |
cbd72d4f | 1870 | wxString const &arg4_defvalue = wxPyEmptyString ; |
d14a1e28 RD |
1871 | wxString *arg4 = (wxString *) &arg4_defvalue ; |
1872 | wxBitmap const &arg5_defvalue = wxNullBitmap ; | |
1873 | wxBitmap *arg5 = (wxBitmap *) &arg5_defvalue ; | |
1874 | wxPoint const &arg6_defvalue = wxDefaultPosition ; | |
1875 | wxPoint *arg6 = (wxPoint *) &arg6_defvalue ; | |
1876 | bool result; | |
423f194a | 1877 | bool temp4 = False ; |
d14a1e28 RD |
1878 | wxPoint temp6 ; |
1879 | PyObject * obj0 = 0 ; | |
1880 | PyObject * obj1 = 0 ; | |
8edf1c75 | 1881 | PyObject * obj2 = 0 ; |
d14a1e28 RD |
1882 | PyObject * obj3 = 0 ; |
1883 | PyObject * obj4 = 0 ; | |
1884 | PyObject * obj5 = 0 ; | |
1885 | char *kwnames[] = { | |
1886 | (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "bitmap",(char *) "pos", NULL | |
1887 | }; | |
1888 | ||
8edf1c75 | 1889 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOO:Wizard_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail; |
2f4c0a16 RD |
1890 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
1891 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
1892 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow, | |
1893 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
8edf1c75 | 1894 | if (obj2) { |
2f4c0a16 RD |
1895 | arg3 = (int) SWIG_AsInt(obj2); |
1896 | if (PyErr_Occurred()) SWIG_fail; | |
8edf1c75 | 1897 | } |
d14a1e28 RD |
1898 | if (obj3) { |
1899 | { | |
1900 | arg4 = wxString_in_helper(obj3); | |
1901 | if (arg4 == NULL) SWIG_fail; | |
423f194a | 1902 | temp4 = True; |
d14a1e28 RD |
1903 | } |
1904 | } | |
1905 | if (obj4) { | |
2f4c0a16 RD |
1906 | if ((SWIG_ConvertPtr(obj4,(void **)(&arg5),SWIGTYPE_p_wxBitmap, |
1907 | SWIG_POINTER_EXCEPTION | 0)) == -1) | |
1908 | SWIG_fail; | |
d14a1e28 | 1909 | if (arg5 == NULL) { |
2f4c0a16 RD |
1910 | PyErr_SetString(PyExc_TypeError,"null reference"); |
1911 | SWIG_fail; | |
d14a1e28 RD |
1912 | } |
1913 | } | |
1914 | if (obj5) { | |
1915 | { | |
1916 | arg6 = &temp6; | |
1917 | if ( ! wxPoint_helper(obj5, &arg6)) SWIG_fail; | |
1918 | } | |
1919 | } | |
1920 | { | |
1921 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1922 | result = (bool)(arg1)->Create(arg2,arg3,(wxString const &)*arg4,(wxBitmap const &)*arg5,(wxPoint const &)*arg6); | |
1923 | ||
1924 | wxPyEndAllowThreads(__tstate); | |
1925 | if (PyErr_Occurred()) SWIG_fail; | |
1926 | } | |
fbc46b20 RD |
1927 | { |
1928 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
1929 | } | |
d14a1e28 RD |
1930 | { |
1931 | if (temp4) | |
1932 | delete arg4; | |
1933 | } | |
1934 | return resultobj; | |
1935 | fail: | |
1936 | { | |
1937 | if (temp4) | |
1938 | delete arg4; | |
1939 | } | |
1940 | return NULL; | |
1941 | } | |
1942 | ||
1943 | ||
2f4c0a16 | 1944 | static PyObject *_wrap_Wizard_Init(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1945 | PyObject *resultobj; |
1946 | wxWizard *arg1 = (wxWizard *) 0 ; | |
1947 | PyObject * obj0 = 0 ; | |
1948 | char *kwnames[] = { | |
1949 | (char *) "self", NULL | |
1950 | }; | |
1951 | ||
1952 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Wizard_Init",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
1953 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
1954 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1955 | { |
1956 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1957 | (arg1)->Init(); | |
1958 | ||
1959 | wxPyEndAllowThreads(__tstate); | |
1960 | if (PyErr_Occurred()) SWIG_fail; | |
1961 | } | |
1962 | Py_INCREF(Py_None); resultobj = Py_None; | |
1963 | return resultobj; | |
1964 | fail: | |
1965 | return NULL; | |
1966 | } | |
1967 | ||
1968 | ||
2f4c0a16 | 1969 | static PyObject *_wrap_Wizard_RunWizard(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
1970 | PyObject *resultobj; |
1971 | wxWizard *arg1 = (wxWizard *) 0 ; | |
1972 | wxWizardPage *arg2 = (wxWizardPage *) 0 ; | |
1973 | bool result; | |
1974 | PyObject * obj0 = 0 ; | |
1975 | PyObject * obj1 = 0 ; | |
1976 | char *kwnames[] = { | |
1977 | (char *) "self",(char *) "firstPage", NULL | |
1978 | }; | |
1979 | ||
1980 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Wizard_RunWizard",kwnames,&obj0,&obj1)) goto fail; | |
2f4c0a16 RD |
1981 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
1982 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
1983 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWizardPage, | |
1984 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
1985 | { |
1986 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1987 | result = (bool)(arg1)->RunWizard(arg2); | |
1988 | ||
1989 | wxPyEndAllowThreads(__tstate); | |
1990 | if (PyErr_Occurred()) SWIG_fail; | |
1991 | } | |
fbc46b20 RD |
1992 | { |
1993 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
1994 | } | |
d14a1e28 RD |
1995 | return resultobj; |
1996 | fail: | |
1997 | return NULL; | |
1998 | } | |
1999 | ||
2000 | ||
2f4c0a16 | 2001 | static PyObject *_wrap_Wizard_GetCurrentPage(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
2002 | PyObject *resultobj; |
2003 | wxWizard *arg1 = (wxWizard *) 0 ; | |
2004 | wxWizardPage *result; | |
2005 | PyObject * obj0 = 0 ; | |
2006 | char *kwnames[] = { | |
2007 | (char *) "self", NULL | |
2008 | }; | |
2009 | ||
2010 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Wizard_GetCurrentPage",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
2011 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
2012 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
2013 | { |
2014 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2015 | result = (wxWizardPage *)((wxWizard const *)arg1)->GetCurrentPage(); | |
2016 | ||
2017 | wxPyEndAllowThreads(__tstate); | |
2018 | if (PyErr_Occurred()) SWIG_fail; | |
2019 | } | |
2020 | { | |
2021 | resultobj = wxPyMake_wxObject(result); | |
2022 | } | |
2023 | return resultobj; | |
2024 | fail: | |
2025 | return NULL; | |
2026 | } | |
2027 | ||
2028 | ||
2f4c0a16 | 2029 | static PyObject *_wrap_Wizard_SetPageSize(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
2030 | PyObject *resultobj; |
2031 | wxWizard *arg1 = (wxWizard *) 0 ; | |
2032 | wxSize *arg2 = 0 ; | |
2033 | wxSize temp2 ; | |
2034 | PyObject * obj0 = 0 ; | |
2035 | PyObject * obj1 = 0 ; | |
2036 | char *kwnames[] = { | |
2037 | (char *) "self",(char *) "size", NULL | |
2038 | }; | |
2039 | ||
2040 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Wizard_SetPageSize",kwnames,&obj0,&obj1)) goto fail; | |
2f4c0a16 RD |
2041 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
2042 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
2043 | { |
2044 | arg2 = &temp2; | |
2045 | if ( ! wxSize_helper(obj1, &arg2)) SWIG_fail; | |
2046 | } | |
2047 | { | |
2048 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2049 | (arg1)->SetPageSize((wxSize const &)*arg2); | |
2050 | ||
2051 | wxPyEndAllowThreads(__tstate); | |
2052 | if (PyErr_Occurred()) SWIG_fail; | |
2053 | } | |
2054 | Py_INCREF(Py_None); resultobj = Py_None; | |
2055 | return resultobj; | |
2056 | fail: | |
2057 | return NULL; | |
2058 | } | |
2059 | ||
2060 | ||
2f4c0a16 | 2061 | static PyObject *_wrap_Wizard_GetPageSize(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
2062 | PyObject *resultobj; |
2063 | wxWizard *arg1 = (wxWizard *) 0 ; | |
2064 | wxSize result; | |
2065 | PyObject * obj0 = 0 ; | |
2066 | char *kwnames[] = { | |
2067 | (char *) "self", NULL | |
2068 | }; | |
2069 | ||
2070 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Wizard_GetPageSize",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
2071 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
2072 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
2073 | { |
2074 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2075 | result = ((wxWizard const *)arg1)->GetPageSize(); | |
2076 | ||
2077 | wxPyEndAllowThreads(__tstate); | |
2078 | if (PyErr_Occurred()) SWIG_fail; | |
2079 | } | |
2080 | { | |
2081 | wxSize * resultptr; | |
2082 | resultptr = new wxSize((wxSize &) result); | |
2f4c0a16 | 2083 | resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1); |
d14a1e28 RD |
2084 | } |
2085 | return resultobj; | |
2086 | fail: | |
2087 | return NULL; | |
2088 | } | |
2089 | ||
2090 | ||
2f4c0a16 | 2091 | static PyObject *_wrap_Wizard_FitToPage(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
2092 | PyObject *resultobj; |
2093 | wxWizard *arg1 = (wxWizard *) 0 ; | |
2094 | wxWizardPage *arg2 = (wxWizardPage *) 0 ; | |
2095 | PyObject * obj0 = 0 ; | |
2096 | PyObject * obj1 = 0 ; | |
2097 | char *kwnames[] = { | |
2098 | (char *) "self",(char *) "firstPage", NULL | |
2099 | }; | |
2100 | ||
2101 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Wizard_FitToPage",kwnames,&obj0,&obj1)) goto fail; | |
2f4c0a16 RD |
2102 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
2103 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
2104 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWizardPage, | |
2105 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
2106 | { |
2107 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2108 | (arg1)->FitToPage((wxWizardPage const *)arg2); | |
2109 | ||
2110 | wxPyEndAllowThreads(__tstate); | |
2111 | if (PyErr_Occurred()) SWIG_fail; | |
2112 | } | |
2113 | Py_INCREF(Py_None); resultobj = Py_None; | |
2114 | return resultobj; | |
2115 | fail: | |
2116 | return NULL; | |
2117 | } | |
2118 | ||
2119 | ||
2f4c0a16 | 2120 | static PyObject *_wrap_Wizard_GetPageAreaSizer(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
2121 | PyObject *resultobj; |
2122 | wxWizard *arg1 = (wxWizard *) 0 ; | |
2123 | wxSizer *result; | |
2124 | PyObject * obj0 = 0 ; | |
2125 | char *kwnames[] = { | |
2126 | (char *) "self", NULL | |
2127 | }; | |
2128 | ||
2129 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Wizard_GetPageAreaSizer",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
2130 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
2131 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
2132 | { |
2133 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2134 | result = (wxSizer *)((wxWizard const *)arg1)->GetPageAreaSizer(); | |
2135 | ||
2136 | wxPyEndAllowThreads(__tstate); | |
2137 | if (PyErr_Occurred()) SWIG_fail; | |
2138 | } | |
2139 | { | |
2140 | resultobj = wxPyMake_wxSizer(result); | |
2141 | } | |
2142 | return resultobj; | |
2143 | fail: | |
2144 | return NULL; | |
2145 | } | |
2146 | ||
2147 | ||
2f4c0a16 | 2148 | static PyObject *_wrap_Wizard_SetBorder(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
2149 | PyObject *resultobj; |
2150 | wxWizard *arg1 = (wxWizard *) 0 ; | |
2151 | int arg2 ; | |
2152 | PyObject * obj0 = 0 ; | |
8edf1c75 | 2153 | PyObject * obj1 = 0 ; |
d14a1e28 RD |
2154 | char *kwnames[] = { |
2155 | (char *) "self",(char *) "border", NULL | |
2156 | }; | |
2157 | ||
8edf1c75 | 2158 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Wizard_SetBorder",kwnames,&obj0,&obj1)) goto fail; |
2f4c0a16 RD |
2159 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
2160 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
2161 | arg2 = (int) SWIG_AsInt(obj1); | |
2162 | if (PyErr_Occurred()) SWIG_fail; | |
d14a1e28 RD |
2163 | { |
2164 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2165 | (arg1)->SetBorder(arg2); | |
2166 | ||
2167 | wxPyEndAllowThreads(__tstate); | |
2168 | if (PyErr_Occurred()) SWIG_fail; | |
2169 | } | |
2170 | Py_INCREF(Py_None); resultobj = Py_None; | |
2171 | return resultobj; | |
2172 | fail: | |
2173 | return NULL; | |
2174 | } | |
2175 | ||
2176 | ||
2f4c0a16 | 2177 | static PyObject *_wrap_Wizard_IsRunning(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
2178 | PyObject *resultobj; |
2179 | wxWizard *arg1 = (wxWizard *) 0 ; | |
2180 | bool result; | |
2181 | PyObject * obj0 = 0 ; | |
2182 | char *kwnames[] = { | |
2183 | (char *) "self", NULL | |
2184 | }; | |
2185 | ||
2186 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Wizard_IsRunning",kwnames,&obj0)) goto fail; | |
2f4c0a16 RD |
2187 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
2188 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
2189 | { |
2190 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2191 | result = (bool)((wxWizard const *)arg1)->IsRunning(); | |
2192 | ||
2193 | wxPyEndAllowThreads(__tstate); | |
2194 | if (PyErr_Occurred()) SWIG_fail; | |
2195 | } | |
fbc46b20 RD |
2196 | { |
2197 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
2198 | } | |
d14a1e28 RD |
2199 | return resultobj; |
2200 | fail: | |
2201 | return NULL; | |
2202 | } | |
2203 | ||
2204 | ||
2f4c0a16 | 2205 | static PyObject *_wrap_Wizard_ShowPage(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
2206 | PyObject *resultobj; |
2207 | wxWizard *arg1 = (wxWizard *) 0 ; | |
2208 | wxWizardPage *arg2 = (wxWizardPage *) 0 ; | |
423f194a | 2209 | bool arg3 = (bool) True ; |
d14a1e28 RD |
2210 | bool result; |
2211 | PyObject * obj0 = 0 ; | |
2212 | PyObject * obj1 = 0 ; | |
2213 | PyObject * obj2 = 0 ; | |
2214 | char *kwnames[] = { | |
2215 | (char *) "self",(char *) "page",(char *) "goingForward", NULL | |
2216 | }; | |
2217 | ||
2218 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:Wizard_ShowPage",kwnames,&obj0,&obj1,&obj2)) goto fail; | |
2f4c0a16 RD |
2219 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
2220 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
2221 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWizardPage, | |
2222 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 | 2223 | if (obj2) { |
2f4c0a16 RD |
2224 | arg3 = (bool) SWIG_AsBool(obj2); |
2225 | if (PyErr_Occurred()) SWIG_fail; | |
d14a1e28 RD |
2226 | } |
2227 | { | |
2228 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2229 | result = (bool)(arg1)->ShowPage(arg2,arg3); | |
2230 | ||
2231 | wxPyEndAllowThreads(__tstate); | |
2232 | if (PyErr_Occurred()) SWIG_fail; | |
2233 | } | |
fbc46b20 RD |
2234 | { |
2235 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
2236 | } | |
d14a1e28 RD |
2237 | return resultobj; |
2238 | fail: | |
2239 | return NULL; | |
2240 | } | |
2241 | ||
2242 | ||
2f4c0a16 | 2243 | static PyObject *_wrap_Wizard_HasNextPage(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
2244 | PyObject *resultobj; |
2245 | wxWizard *arg1 = (wxWizard *) 0 ; | |
2246 | wxWizardPage *arg2 = (wxWizardPage *) 0 ; | |
2247 | bool result; | |
2248 | PyObject * obj0 = 0 ; | |
2249 | PyObject * obj1 = 0 ; | |
2250 | char *kwnames[] = { | |
2251 | (char *) "self",(char *) "page", NULL | |
2252 | }; | |
2253 | ||
2254 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Wizard_HasNextPage",kwnames,&obj0,&obj1)) goto fail; | |
2f4c0a16 RD |
2255 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
2256 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
2257 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWizardPage, | |
2258 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
2259 | { |
2260 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2261 | result = (bool)(arg1)->HasNextPage(arg2); | |
2262 | ||
2263 | wxPyEndAllowThreads(__tstate); | |
2264 | if (PyErr_Occurred()) SWIG_fail; | |
2265 | } | |
fbc46b20 RD |
2266 | { |
2267 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
2268 | } | |
d14a1e28 RD |
2269 | return resultobj; |
2270 | fail: | |
2271 | return NULL; | |
2272 | } | |
2273 | ||
2274 | ||
2f4c0a16 | 2275 | static PyObject *_wrap_Wizard_HasPrevPage(PyObject *, PyObject *args, PyObject *kwargs) { |
d14a1e28 RD |
2276 | PyObject *resultobj; |
2277 | wxWizard *arg1 = (wxWizard *) 0 ; | |
2278 | wxWizardPage *arg2 = (wxWizardPage *) 0 ; | |
2279 | bool result; | |
2280 | PyObject * obj0 = 0 ; | |
2281 | PyObject * obj1 = 0 ; | |
2282 | char *kwnames[] = { | |
2283 | (char *) "self",(char *) "page", NULL | |
2284 | }; | |
2285 | ||
2286 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Wizard_HasPrevPage",kwnames,&obj0,&obj1)) goto fail; | |
2f4c0a16 RD |
2287 | if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWizard, |
2288 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
2289 | if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWizardPage, | |
2290 | SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; | |
d14a1e28 RD |
2291 | { |
2292 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2293 | result = (bool)(arg1)->HasPrevPage(arg2); | |
2294 | ||
2295 | wxPyEndAllowThreads(__tstate); | |
2296 | if (PyErr_Occurred()) SWIG_fail; | |
2297 | } | |
fbc46b20 RD |
2298 | { |
2299 | resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj); | |
2300 | } | |
d14a1e28 RD |
2301 | return resultobj; |
2302 | fail: | |
2303 | return NULL; | |
2304 | } | |
2305 | ||
2306 | ||
2f4c0a16 | 2307 | static PyObject * Wizard_swigregister(PyObject *, PyObject *args) { |
d14a1e28 RD |
2308 | PyObject *obj; |
2309 | if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; | |
2310 | SWIG_TypeClientData(SWIGTYPE_p_wxWizard, obj); | |
2311 | Py_INCREF(obj); | |
2312 | return Py_BuildValue((char *)""); | |
2313 | } | |
2314 | static PyMethodDef SwigMethods[] = { | |
2f4c0a16 RD |
2315 | { (char *)"new_WizardEvent", (PyCFunction) _wrap_new_WizardEvent, METH_VARARGS | METH_KEYWORDS, NULL }, |
2316 | { (char *)"WizardEvent_GetDirection", (PyCFunction) _wrap_WizardEvent_GetDirection, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2317 | { (char *)"WizardEvent_GetPage", (PyCFunction) _wrap_WizardEvent_GetPage, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2318 | { (char *)"WizardEvent_swigregister", WizardEvent_swigregister, METH_VARARGS, NULL }, | |
2319 | { (char *)"WizardPage_Create", (PyCFunction) _wrap_WizardPage_Create, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2320 | { (char *)"WizardPage_GetPrev", (PyCFunction) _wrap_WizardPage_GetPrev, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2321 | { (char *)"WizardPage_GetNext", (PyCFunction) _wrap_WizardPage_GetNext, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2322 | { (char *)"WizardPage_GetBitmap", (PyCFunction) _wrap_WizardPage_GetBitmap, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2323 | { (char *)"WizardPage_swigregister", WizardPage_swigregister, METH_VARARGS, NULL }, | |
2324 | { (char *)"new_PyWizardPage", (PyCFunction) _wrap_new_PyWizardPage, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2325 | { (char *)"new_PrePyWizardPage", (PyCFunction) _wrap_new_PrePyWizardPage, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2326 | { (char *)"PyWizardPage_Create", (PyCFunction) _wrap_PyWizardPage_Create, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2327 | { (char *)"PyWizardPage__setCallbackInfo", (PyCFunction) _wrap_PyWizardPage__setCallbackInfo, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2328 | { (char *)"PyWizardPage_base_DoMoveWindow", (PyCFunction) _wrap_PyWizardPage_base_DoMoveWindow, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2329 | { (char *)"PyWizardPage_base_DoSetSize", (PyCFunction) _wrap_PyWizardPage_base_DoSetSize, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2330 | { (char *)"PyWizardPage_base_DoSetClientSize", (PyCFunction) _wrap_PyWizardPage_base_DoSetClientSize, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2331 | { (char *)"PyWizardPage_base_DoSetVirtualSize", (PyCFunction) _wrap_PyWizardPage_base_DoSetVirtualSize, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2332 | { (char *)"PyWizardPage_base_DoGetSize", (PyCFunction) _wrap_PyWizardPage_base_DoGetSize, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2333 | { (char *)"PyWizardPage_base_DoGetClientSize", (PyCFunction) _wrap_PyWizardPage_base_DoGetClientSize, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2334 | { (char *)"PyWizardPage_base_DoGetPosition", (PyCFunction) _wrap_PyWizardPage_base_DoGetPosition, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2335 | { (char *)"PyWizardPage_base_DoGetVirtualSize", (PyCFunction) _wrap_PyWizardPage_base_DoGetVirtualSize, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2336 | { (char *)"PyWizardPage_base_DoGetBestSize", (PyCFunction) _wrap_PyWizardPage_base_DoGetBestSize, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2337 | { (char *)"PyWizardPage_base_InitDialog", (PyCFunction) _wrap_PyWizardPage_base_InitDialog, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2338 | { (char *)"PyWizardPage_base_TransferDataToWindow", (PyCFunction) _wrap_PyWizardPage_base_TransferDataToWindow, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2339 | { (char *)"PyWizardPage_base_TransferDataFromWindow", (PyCFunction) _wrap_PyWizardPage_base_TransferDataFromWindow, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2340 | { (char *)"PyWizardPage_base_Validate", (PyCFunction) _wrap_PyWizardPage_base_Validate, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2341 | { (char *)"PyWizardPage_base_AcceptsFocus", (PyCFunction) _wrap_PyWizardPage_base_AcceptsFocus, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2342 | { (char *)"PyWizardPage_base_AcceptsFocusFromKeyboard", (PyCFunction) _wrap_PyWizardPage_base_AcceptsFocusFromKeyboard, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2343 | { (char *)"PyWizardPage_base_GetMaxSize", (PyCFunction) _wrap_PyWizardPage_base_GetMaxSize, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2344 | { (char *)"PyWizardPage_base_AddChild", (PyCFunction) _wrap_PyWizardPage_base_AddChild, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2345 | { (char *)"PyWizardPage_base_RemoveChild", (PyCFunction) _wrap_PyWizardPage_base_RemoveChild, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2346 | { (char *)"PyWizardPage_swigregister", PyWizardPage_swigregister, METH_VARARGS, NULL }, | |
2347 | { (char *)"new_WizardPageSimple", (PyCFunction) _wrap_new_WizardPageSimple, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2348 | { (char *)"new_PreWizardPageSimple", (PyCFunction) _wrap_new_PreWizardPageSimple, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2349 | { (char *)"WizardPageSimple_Create", (PyCFunction) _wrap_WizardPageSimple_Create, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2350 | { (char *)"WizardPageSimple_SetPrev", (PyCFunction) _wrap_WizardPageSimple_SetPrev, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2351 | { (char *)"WizardPageSimple_SetNext", (PyCFunction) _wrap_WizardPageSimple_SetNext, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2352 | { (char *)"WizardPageSimple_Chain", (PyCFunction) _wrap_WizardPageSimple_Chain, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2353 | { (char *)"WizardPageSimple_swigregister", WizardPageSimple_swigregister, METH_VARARGS, NULL }, | |
2354 | { (char *)"new_Wizard", (PyCFunction) _wrap_new_Wizard, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2355 | { (char *)"new_PreWizard", (PyCFunction) _wrap_new_PreWizard, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2356 | { (char *)"Wizard_Create", (PyCFunction) _wrap_Wizard_Create, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2357 | { (char *)"Wizard_Init", (PyCFunction) _wrap_Wizard_Init, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2358 | { (char *)"Wizard_RunWizard", (PyCFunction) _wrap_Wizard_RunWizard, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2359 | { (char *)"Wizard_GetCurrentPage", (PyCFunction) _wrap_Wizard_GetCurrentPage, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2360 | { (char *)"Wizard_SetPageSize", (PyCFunction) _wrap_Wizard_SetPageSize, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2361 | { (char *)"Wizard_GetPageSize", (PyCFunction) _wrap_Wizard_GetPageSize, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2362 | { (char *)"Wizard_FitToPage", (PyCFunction) _wrap_Wizard_FitToPage, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2363 | { (char *)"Wizard_GetPageAreaSizer", (PyCFunction) _wrap_Wizard_GetPageAreaSizer, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2364 | { (char *)"Wizard_SetBorder", (PyCFunction) _wrap_Wizard_SetBorder, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2365 | { (char *)"Wizard_IsRunning", (PyCFunction) _wrap_Wizard_IsRunning, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2366 | { (char *)"Wizard_ShowPage", (PyCFunction) _wrap_Wizard_ShowPage, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2367 | { (char *)"Wizard_HasNextPage", (PyCFunction) _wrap_Wizard_HasNextPage, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2368 | { (char *)"Wizard_HasPrevPage", (PyCFunction) _wrap_Wizard_HasPrevPage, METH_VARARGS | METH_KEYWORDS, NULL }, | |
2369 | { (char *)"Wizard_swigregister", Wizard_swigregister, METH_VARARGS, NULL }, | |
2370 | { NULL, NULL, 0, NULL } | |
d14a1e28 RD |
2371 | }; |
2372 | ||
2373 | ||
2374 | /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ | |
2375 | ||
2376 | static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x) { | |
2377 | return (void *)((wxObject *) ((wxLayoutConstraints *) x)); | |
2378 | } | |
2379 | static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x) { | |
2380 | return (void *)((wxObject *) (wxEvent *) ((wxQueryLayoutInfoEvent *) x)); | |
2381 | } | |
2382 | static void *_p_wxPreviewFrameTo_p_wxObject(void *x) { | |
2383 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxFrame *) ((wxPreviewFrame *) x)); | |
2384 | } | |
2385 | static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x) { | |
2386 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxFrame *)(wxPreviewFrame *) ((wxPyPreviewFrame *) x)); | |
2387 | } | |
2388 | static void *_p_wxGBSizerItemTo_p_wxObject(void *x) { | |
2389 | return (void *)((wxObject *) (wxSizerItem *) ((wxGBSizerItem *) x)); | |
2390 | } | |
2391 | static void *_p_wxSizerItemTo_p_wxObject(void *x) { | |
2392 | return (void *)((wxObject *) ((wxSizerItem *) x)); | |
2393 | } | |
2394 | static void *_p_wxScrollEventTo_p_wxObject(void *x) { | |
2395 | return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxScrollEvent *) x)); | |
2396 | } | |
2397 | static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x) { | |
2398 | return (void *)((wxObject *) ((wxIndividualLayoutConstraint *) x)); | |
2399 | } | |
2400 | static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x) { | |
2401 | return (void *)((wxObject *) (wxSizer *)(wxBoxSizer *) ((wxStaticBoxSizer *) x)); | |
2402 | } | |
2403 | static void *_p_wxBoxSizerTo_p_wxObject(void *x) { | |
2404 | return (void *)((wxObject *) (wxSizer *) ((wxBoxSizer *) x)); | |
2405 | } | |
2406 | static void *_p_wxSizerTo_p_wxObject(void *x) { | |
2407 | return (void *)((wxObject *) ((wxSizer *) x)); | |
2408 | } | |
2409 | static void *_p_wxGridBagSizerTo_p_wxObject(void *x) { | |
2410 | return (void *)((wxObject *) (wxSizer *)(wxGridSizer *)(wxFlexGridSizer *) ((wxGridBagSizer *) x)); | |
2411 | } | |
2412 | static void *_p_wxWizardPageTo_p_wxObject(void *x) { | |
2413 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxPanel *) ((wxWizardPage *) x)); | |
2414 | } | |
2415 | static void *_p_wxPyWizardPageTo_p_wxObject(void *x) { | |
2416 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxPanel *)(wxWizardPage *) ((wxPyWizardPage *) x)); | |
2417 | } | |
2418 | static void *_p_wxUpdateUIEventTo_p_wxObject(void *x) { | |
2419 | return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxUpdateUIEvent *) x)); | |
2420 | } | |
2421 | static void *_p_wxPyPanelTo_p_wxObject(void *x) { | |
2422 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxPanel *) ((wxPyPanel *) x)); | |
2423 | } | |
2424 | static void *_p_wxEventTo_p_wxObject(void *x) { | |
2425 | return (void *)((wxObject *) ((wxEvent *) x)); | |
2426 | } | |
2427 | static void *_p_wxFontDataTo_p_wxObject(void *x) { | |
2428 | return (void *)((wxObject *) ((wxFontData *) x)); | |
2429 | } | |
2430 | static void *_p_wxPrintDataTo_p_wxObject(void *x) { | |
2431 | return (void *)((wxObject *) ((wxPrintData *) x)); | |
2432 | } | |
2433 | static void *_p_wxFlexGridSizerTo_p_wxObject(void *x) { | |
2434 | return (void *)((wxObject *) (wxSizer *)(wxGridSizer *) ((wxFlexGridSizer *) x)); | |
2435 | } | |
2436 | static void *_p_wxGridSizerTo_p_wxObject(void *x) { | |
2437 | return (void *)((wxObject *) (wxSizer *) ((wxGridSizer *) x)); | |
2438 | } | |
2439 | static void *_p_wxInitDialogEventTo_p_wxObject(void *x) { | |
2440 | return (void *)((wxObject *) (wxEvent *) ((wxInitDialogEvent *) x)); | |
2441 | } | |
2442 | static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x) { | |
2443 | return (void *)((wxObject *) ((wxLayoutAlgorithm *) x)); | |
2444 | } | |
2445 | static void *_p_wxTaskBarIconTo_p_wxObject(void *x) { | |
2446 | return (void *)((wxObject *) (wxEvtHandler *) ((wxTaskBarIcon *) x)); | |
2447 | } | |
2448 | static void *_p_wxFindDialogEventTo_p_wxObject(void *x) { | |
2449 | return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxFindDialogEvent *) x)); | |
2450 | } | |
2451 | static void *_p_wxWizardPageSimpleTo_p_wxObject(void *x) { | |
2452 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxPanel *)(wxWizardPage *) ((wxWizardPageSimple *) x)); | |
2453 | } | |
2454 | static void *_p_wxPaintEventTo_p_wxObject(void *x) { | |
2455 | return (void *)((wxObject *) (wxEvent *) ((wxPaintEvent *) x)); | |
2456 | } | |
2457 | static void *_p_wxNcPaintEventTo_p_wxObject(void *x) { | |
2458 | return (void *)((wxObject *) (wxEvent *) ((wxNcPaintEvent *) x)); | |
2459 | } | |
2460 | static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x) { | |
2461 | return (void *)((wxObject *) (wxEvent *) ((wxPaletteChangedEvent *) x)); | |
2462 | } | |
2463 | static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x) { | |
2464 | return (void *)((wxObject *) (wxEvent *) ((wxDisplayChangedEvent *) x)); | |
2465 | } | |
2466 | static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x) { | |
2467 | return (void *)((wxObject *) (wxEvent *) ((wxMouseCaptureChangedEvent *) x)); | |
2468 | } | |
2469 | static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x) { | |
2470 | return (void *)((wxObject *) (wxEvent *) ((wxSysColourChangedEvent *) x)); | |
2471 | } | |
2472 | static void *_p_wxPreviewCanvasTo_p_wxObject(void *x) { | |
2473 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxPanel *)(wxScrolledWindow *) ((wxPreviewCanvas *) x)); | |
2474 | } | |
2475 | static void *_p_wxControlTo_p_wxObject(void *x) { | |
2476 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxControl *) x)); | |
2477 | } | |
2478 | static void *_p_wxSetCursorEventTo_p_wxObject(void *x) { | |
2479 | return (void *)((wxObject *) (wxEvent *) ((wxSetCursorEvent *) x)); | |
2480 | } | |
2481 | static void *_p_wxSplitterEventTo_p_wxObject(void *x) { | |
2482 | return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *)(wxNotifyEvent *) ((wxSplitterEvent *) x)); | |
2483 | } | |
2484 | static void *_p_wxFSFileTo_p_wxObject(void *x) { | |
2485 | return (void *)((wxObject *) ((wxFSFile *) x)); | |
2486 | } | |
2487 | static void *_p_wxWizardTo_p_wxObject(void *x) { | |
2488 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxWizard *) x)); | |
2489 | } | |
2490 | static void *_p_wxFindReplaceDataTo_p_wxObject(void *x) { | |
2491 | return (void *)((wxObject *) ((wxFindReplaceData *) x)); | |
2492 | } | |
2493 | static void *_p_wxPySizerTo_p_wxObject(void *x) { | |
2494 | return (void *)((wxObject *) (wxSizer *) ((wxPySizer *) x)); | |
2495 | } | |
2496 | static void *_p_wxMDIChildFrameTo_p_wxObject(void *x) { | |
2497 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxFrame *) ((wxMDIChildFrame *) x)); | |
2498 | } | |
2499 | static void *_p_wxColourDataTo_p_wxObject(void *x) { | |
2500 | return (void *)((wxObject *) ((wxColourData *) x)); | |
2501 | } | |
2502 | static void *_p_wxPyEventTo_p_wxObject(void *x) { | |
2503 | return (void *)((wxObject *) (wxEvent *) ((wxPyEvent *) x)); | |
2504 | } | |
2505 | static void *_p_wxNotifyEventTo_p_wxObject(void *x) { | |
2506 | return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxNotifyEvent *) x)); | |
2507 | } | |
2508 | static void *_p_wxPyWindowTo_p_wxObject(void *x) { | |
2509 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxPyWindow *) x)); | |
2510 | } | |
2511 | static void *_p_wxSplashScreenTo_p_wxObject(void *x) { | |
2512 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxFrame *) ((wxSplashScreen *) x)); | |
2513 | } | |
2514 | static void *_p_wxFileDialogTo_p_wxObject(void *x) { | |
2515 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxFileDialog *) x)); | |
2516 | } | |
2517 | static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x) { | |
2518 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxMultiChoiceDialog *) x)); | |
2519 | } | |
2520 | static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x) { | |
2521 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxSingleChoiceDialog *) x)); | |
2522 | } | |
2523 | static void *_p_wxTextEntryDialogTo_p_wxObject(void *x) { | |
2524 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxTextEntryDialog *) x)); | |
2525 | } | |
2526 | static void *_p_wxMessageDialogTo_p_wxObject(void *x) { | |
2527 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxMessageDialog *) x)); | |
2528 | } | |
2529 | static void *_p_wxProgressDialogTo_p_wxObject(void *x) { | |
2530 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxFrame *) ((wxProgressDialog *) x)); | |
2531 | } | |
2532 | static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x) { | |
2533 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxFindReplaceDialog *) x)); | |
2534 | } | |
2535 | static void *_p_wxShowEventTo_p_wxObject(void *x) { | |
2536 | return (void *)((wxObject *) (wxEvent *) ((wxShowEvent *) x)); | |
2537 | } | |
2538 | static void *_p_wxPrinterTo_p_wxObject(void *x) { | |
2539 | return (void *)((wxObject *) ((wxPrinter *) x)); | |
2540 | } | |
2541 | static void *_p_wxMenuItemTo_p_wxObject(void *x) { | |
2542 | return (void *)((wxObject *) ((wxMenuItem *) x)); | |
2543 | } | |
2544 | static void *_p_wxIdleEventTo_p_wxObject(void *x) { | |
2545 | return (void *)((wxObject *) (wxEvent *) ((wxIdleEvent *) x)); | |
2546 | } | |
2547 | static void *_p_wxWindowCreateEventTo_p_wxObject(void *x) { | |
2548 | return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxWindowCreateEvent *) x)); | |
2549 | } | |
2550 | static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x) { | |
2551 | return (void *)((wxObject *) (wxEvent *) ((wxQueryNewPaletteEvent *) x)); | |
2552 | } | |
2553 | static void *_p_wxMaximizeEventTo_p_wxObject(void *x) { | |
2554 | return (void *)((wxObject *) (wxEvent *) ((wxMaximizeEvent *) x)); | |
2555 | } | |
2556 | static void *_p_wxIconizeEventTo_p_wxObject(void *x) { | |
2557 | return (void *)((wxObject *) (wxEvent *) ((wxIconizeEvent *) x)); | |
2558 | } | |
2559 | static void *_p_wxSizeEventTo_p_wxObject(void *x) { | |
2560 | return (void *)((wxObject *) (wxEvent *) ((wxSizeEvent *) x)); | |
2561 | } | |
2562 | static void *_p_wxMoveEventTo_p_wxObject(void *x) { | |
2563 | return (void *)((wxObject *) (wxEvent *) ((wxMoveEvent *) x)); | |
2564 | } | |
2565 | static void *_p_wxActivateEventTo_p_wxObject(void *x) { | |
2566 | return (void *)((wxObject *) (wxEvent *) ((wxActivateEvent *) x)); | |
2567 | } | |
2568 | static void *_p_wxXPMHandlerTo_p_wxObject(void *x) { | |
2569 | return (void *)((wxObject *) (wxImageHandler *) ((wxXPMHandler *) x)); | |
2570 | } | |
2571 | static void *_p_wxPNMHandlerTo_p_wxObject(void *x) { | |
2572 | return (void *)((wxObject *) (wxImageHandler *) ((wxPNMHandler *) x)); | |
2573 | } | |
2574 | static void *_p_wxJPEGHandlerTo_p_wxObject(void *x) { | |
2575 | return (void *)((wxObject *) (wxImageHandler *) ((wxJPEGHandler *) x)); | |
2576 | } | |
2577 | static void *_p_wxPCXHandlerTo_p_wxObject(void *x) { | |
2578 | return (void *)((wxObject *) (wxImageHandler *) ((wxPCXHandler *) x)); | |
2579 | } | |
2580 | static void *_p_wxGIFHandlerTo_p_wxObject(void *x) { | |
2581 | return (void *)((wxObject *) (wxImageHandler *) ((wxGIFHandler *) x)); | |
2582 | } | |
2583 | static void *_p_wxPNGHandlerTo_p_wxObject(void *x) { | |
2584 | return (void *)((wxObject *) (wxImageHandler *) ((wxPNGHandler *) x)); | |
2585 | } | |
2586 | static void *_p_wxANIHandlerTo_p_wxObject(void *x) { | |
2587 | return (void *)((wxObject *) (wxImageHandler *)(wxBMPHandler *)(wxICOHandler *)(wxCURHandler *) ((wxANIHandler *) x)); | |
2588 | } | |
2589 | static void *_p_wxCURHandlerTo_p_wxObject(void *x) { | |
2590 | return (void *)((wxObject *) (wxImageHandler *)(wxBMPHandler *)(wxICOHandler *) ((wxCURHandler *) x)); | |
2591 | } | |
2592 | static void *_p_wxICOHandlerTo_p_wxObject(void *x) { | |
2593 | return (void *)((wxObject *) (wxImageHandler *)(wxBMPHandler *) ((wxICOHandler *) x)); | |
2594 | } | |
2595 | static void *_p_wxBMPHandlerTo_p_wxObject(void *x) { | |
2596 | return (void *)((wxObject *) (wxImageHandler *) ((wxBMPHandler *) x)); | |
2597 | } | |
2598 | static void *_p_wxImageHandlerTo_p_wxObject(void *x) { | |
2599 | return (void *)((wxObject *) ((wxImageHandler *) x)); | |
2600 | } | |
2601 | static void *_p_wxTIFFHandlerTo_p_wxObject(void *x) { | |
2602 | return (void *)((wxObject *) (wxImageHandler *) ((wxTIFFHandler *) x)); | |
2603 | } | |
2604 | static void *_p_wxEvtHandlerTo_p_wxObject(void *x) { | |
2605 | return (void *)((wxObject *) ((wxEvtHandler *) x)); | |
2606 | } | |
2607 | static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x) { | |
2608 | return (void *)((wxObject *) (wxEvent *) ((wxCalculateLayoutEvent *) x)); | |
2609 | } | |
2610 | static void *_p_wxPyVListBoxTo_p_wxObject(void *x) { | |
2611 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxPanel *)(wxPyVScrolledWindow *) ((wxPyVListBox *) x)); | |
2612 | } | |
2613 | static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x) { | |
2614 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxPanel *)(wxPyVScrolledWindow *)(wxPyVListBox *) ((wxPyHtmlListBox *) x)); | |
2615 | } | |
2616 | static void *_p_wxAcceleratorTableTo_p_wxObject(void *x) { | |
2617 | return (void *)((wxObject *) ((wxAcceleratorTable *) x)); | |
2618 | } | |
2619 | static void *_p_wxMiniFrameTo_p_wxObject(void *x) { | |
2620 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxFrame *) ((wxMiniFrame *) x)); | |
2621 | } | |
2622 | static void *_p_wxImageTo_p_wxObject(void *x) { | |
2623 | return (void *)((wxObject *) ((wxImage *) x)); | |
2624 | } | |
2625 | static void *_p_wxFrameTo_p_wxObject(void *x) { | |
2626 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *) ((wxFrame *) x)); | |
2627 | } | |
2628 | static void *_p_wxPyPrintoutTo_p_wxObject(void *x) { | |
2629 | return (void *)((wxObject *) ((wxPyPrintout *) x)); | |
2630 | } | |
2631 | static void *_p_wxScrollWinEventTo_p_wxObject(void *x) { | |
2632 | return (void *)((wxObject *) (wxEvent *) ((wxScrollWinEvent *) x)); | |
2633 | } | |
2634 | static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x) { | |
2635 | return (void *)((wxObject *) (wxEvent *) ((wxTaskBarIconEvent *) x)); | |
2636 | } | |
2637 | static void *_p_wxStatusBarTo_p_wxObject(void *x) { | |
2638 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxStatusBar *) x)); | |
2639 | } | |
2640 | static void *_p_wxMDIParentFrameTo_p_wxObject(void *x) { | |
2641 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxFrame *) ((wxMDIParentFrame *) x)); | |
2642 | } | |
2643 | static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x) { | |
2644 | return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxWindowDestroyEvent *) x)); | |
2645 | } | |
2646 | static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x) { | |
2647 | return (void *)((wxObject *) (wxEvent *) ((wxNavigationKeyEvent *) x)); | |
2648 | } | |
2649 | static void *_p_wxKeyEventTo_p_wxObject(void *x) { | |
2650 | return (void *)((wxObject *) (wxEvent *) ((wxKeyEvent *) x)); | |
2651 | } | |
d14a1e28 RD |
2652 | static void *_p_wxWindowTo_p_wxObject(void *x) { |
2653 | return (void *)((wxObject *) (wxEvtHandler *) ((wxWindow *) x)); | |
2654 | } | |
2655 | static void *_p_wxMenuTo_p_wxObject(void *x) { | |
2656 | return (void *)((wxObject *) (wxEvtHandler *) ((wxMenu *) x)); | |
2657 | } | |
2658 | static void *_p_wxMenuBarTo_p_wxObject(void *x) { | |
2659 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxMenuBar *) x)); | |
2660 | } | |
41f1cec7 RD |
2661 | static void *_p_wxScrolledWindowTo_p_wxObject(void *x) { |
2662 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxPanel *) ((wxScrolledWindow *) x)); | |
2663 | } | |
d14a1e28 RD |
2664 | static void *_p_wxTopLevelWindowTo_p_wxObject(void *x) { |
2665 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxTopLevelWindow *) x)); | |
2666 | } | |
2667 | static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x) { | |
2668 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxSplashScreenWindow *) x)); | |
2669 | } | |
2670 | static void *_p_wxSplitterWindowTo_p_wxObject(void *x) { | |
2671 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxSplitterWindow *) x)); | |
2672 | } | |
2673 | static void *_p_wxSashWindowTo_p_wxObject(void *x) { | |
2674 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxSashWindow *) x)); | |
2675 | } | |
2676 | static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x) { | |
2677 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxSashWindow *) ((wxSashLayoutWindow *) x)); | |
2678 | } | |
2679 | static void *_p_wxPopupWindowTo_p_wxObject(void *x) { | |
2680 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxPopupWindow *) x)); | |
2681 | } | |
2682 | static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x) { | |
2683 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxPopupWindow *) ((wxPyPopupTransientWindow *) x)); | |
2684 | } | |
2685 | static void *_p_wxTipWindowTo_p_wxObject(void *x) { | |
2686 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxFrame *) ((wxTipWindow *) x)); | |
2687 | } | |
2688 | static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x) { | |
2689 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxPanel *) ((wxPyVScrolledWindow *) x)); | |
2690 | } | |
2691 | static void *_p_wxMDIClientWindowTo_p_wxObject(void *x) { | |
2692 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxMDIClientWindow *) x)); | |
2693 | } | |
a2482628 RD |
2694 | static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x) { |
2695 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxPanel *)(wxScrolledWindow *) ((wxPyScrolledWindow *) x)); | |
2696 | } | |
d14a1e28 RD |
2697 | static void *_p_wxSashEventTo_p_wxObject(void *x) { |
2698 | return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxSashEvent *) x)); | |
2699 | } | |
2700 | static void *_p_wxPrintPreviewTo_p_wxObject(void *x) { | |
2701 | return (void *)((wxObject *) ((wxPrintPreview *) x)); | |
2702 | } | |
2703 | static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x) { | |
2704 | return (void *)((wxObject *) (wxPrintPreview *) ((wxPyPrintPreview *) x)); | |
2705 | } | |
2706 | static void *_p_wxPanelTo_p_wxObject(void *x) { | |
2707 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxPanel *) x)); | |
2708 | } | |
2709 | static void *_p_wxDialogTo_p_wxObject(void *x) { | |
2710 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *) ((wxDialog *) x)); | |
2711 | } | |
2712 | static void *_p_wxColourDialogTo_p_wxObject(void *x) { | |
2713 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxColourDialog *) x)); | |
2714 | } | |
2715 | static void *_p_wxDirDialogTo_p_wxObject(void *x) { | |
2716 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxDirDialog *) x)); | |
2717 | } | |
2718 | static void *_p_wxFontDialogTo_p_wxObject(void *x) { | |
2719 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxFontDialog *) x)); | |
2720 | } | |
2721 | static void *_p_wxPageSetupDialogTo_p_wxObject(void *x) { | |
2722 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxPageSetupDialog *) x)); | |
2723 | } | |
2724 | static void *_p_wxPrintDialogTo_p_wxObject(void *x) { | |
2725 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxPrintDialog *) x)); | |
2726 | } | |
2727 | static void *_p_wxFileSystemTo_p_wxObject(void *x) { | |
2728 | return (void *)((wxObject *) ((wxFileSystem *) x)); | |
2729 | } | |
2730 | static void *_p_wxContextMenuEventTo_p_wxObject(void *x) { | |
2731 | return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxContextMenuEvent *) x)); | |
2732 | } | |
2733 | static void *_p_wxMenuEventTo_p_wxObject(void *x) { | |
2734 | return (void *)((wxObject *) (wxEvent *) ((wxMenuEvent *) x)); | |
2735 | } | |
2736 | static void *_p_wxPyAppTo_p_wxObject(void *x) { | |
2737 | return (void *)((wxObject *) (wxEvtHandler *) ((wxPyApp *) x)); | |
2738 | } | |
2739 | static void *_p_wxCloseEventTo_p_wxObject(void *x) { | |
2740 | return (void *)((wxObject *) (wxEvent *) ((wxCloseEvent *) x)); | |
2741 | } | |
2742 | static void *_p_wxMouseEventTo_p_wxObject(void *x) { | |
2743 | return (void *)((wxObject *) (wxEvent *) ((wxMouseEvent *) x)); | |
2744 | } | |
2745 | static void *_p_wxEraseEventTo_p_wxObject(void *x) { | |
2746 | return (void *)((wxObject *) (wxEvent *) ((wxEraseEvent *) x)); | |
2747 | } | |
2748 | static void *_p_wxPyCommandEventTo_p_wxObject(void *x) { | |
2749 | return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxPyCommandEvent *) x)); | |
2750 | } | |
2751 | static void *_p_wxCommandEventTo_p_wxObject(void *x) { | |
2752 | return (void *)((wxObject *) (wxEvent *) ((wxCommandEvent *) x)); | |
2753 | } | |
2754 | static void *_p_wxWizardEventTo_p_wxObject(void *x) { | |
2755 | return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *)(wxNotifyEvent *) ((wxWizardEvent *) x)); | |
2756 | } | |
2757 | static void *_p_wxPreviewControlBarTo_p_wxObject(void *x) { | |
2758 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxPanel *) ((wxPreviewControlBar *) x)); | |
2759 | } | |
2760 | static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x) { | |
2761 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxPanel *)(wxPreviewControlBar *) ((wxPyPreviewControlBar *) x)); | |
2762 | } | |
2763 | static void *_p_wxDropFilesEventTo_p_wxObject(void *x) { | |
2764 | return (void *)((wxObject *) (wxEvent *) ((wxDropFilesEvent *) x)); | |
2765 | } | |
2766 | static void *_p_wxFocusEventTo_p_wxObject(void *x) { | |
2767 | return (void *)((wxObject *) (wxEvent *) ((wxFocusEvent *) x)); | |
2768 | } | |
2769 | static void *_p_wxChildFocusEventTo_p_wxObject(void *x) { | |
2770 | return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxChildFocusEvent *) x)); | |
2771 | } | |
2772 | static void *_p_wxControlWithItemsTo_p_wxObject(void *x) { | |
2773 | return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxControlWithItems *) x)); | |
2774 | } | |
2775 | static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x) { | |
2776 | return (void *)((wxObject *) ((wxPageSetupDialogData *) x)); | |
2777 | } | |
2778 | static void *_p_wxPrintDialogDataTo_p_wxObject(void *x) { | |
2779 | return (void *)((wxObject *) ((wxPrintDialogData *) x)); | |
2780 | } | |
2781 | static void *_p_wxPyValidatorTo_p_wxObject(void *x) { | |
2782 | return (void *)((wxObject *) (wxEvtHandler *)(wxValidator *) ((wxPyValidator *) x)); | |
2783 | } | |
2784 | static void *_p_wxValidatorTo_p_wxObject(void *x) { | |
2785 | return (void *)((wxObject *) (wxEvtHandler *) ((wxValidator *) x)); | |
2786 | } | |
2787 | static void *_p_wxColourDialogTo_p_wxDialog(void *x) { | |
2788 | return (void *)((wxDialog *) ((wxColourDialog *) x)); | |
2789 | } | |
2790 | static void *_p_wxDirDialogTo_p_wxDialog(void *x) { | |
2791 | return (void *)((wxDialog *) ((wxDirDialog *) x)); | |
2792 | } | |
2793 | static void *_p_wxFontDialogTo_p_wxDialog(void *x) { | |
2794 | return (void *)((wxDialog *) ((wxFontDialog *) x)); | |
2795 | } | |
2796 | static void *_p_wxPageSetupDialogTo_p_wxDialog(void *x) { | |
2797 | return (void *)((wxDialog *) ((wxPageSetupDialog *) x)); | |
2798 | } | |
2799 | static void *_p_wxPrintDialogTo_p_wxDialog(void *x) { | |
2800 | return (void *)((wxDialog *) ((wxPrintDialog *) x)); | |
2801 | } | |
2802 | static void *_p_wxFileDialogTo_p_wxDialog(void *x) { | |
2803 | return (void *)((wxDialog *) ((wxFileDialog *) x)); | |
2804 | } | |
2805 | static void *_p_wxMultiChoiceDialogTo_p_wxDialog(void *x) { | |
2806 | return (void *)((wxDialog *) ((wxMultiChoiceDialog *) x)); | |
2807 | } | |
2808 | static void *_p_wxSingleChoiceDialogTo_p_wxDialog(void *x) { | |
2809 | return (void *)((wxDialog *) ((wxSingleChoiceDialog *) x)); | |
2810 | } | |
2811 | static void *_p_wxTextEntryDialogTo_p_wxDialog(void *x) { | |
2812 | return (void *)((wxDialog *) ((wxTextEntryDialog *) x)); | |
2813 | } | |
2814 | static void *_p_wxMessageDialogTo_p_wxDialog(void *x) { | |
2815 | return (void *)((wxDialog *) ((wxMessageDialog *) x)); | |
2816 | } | |
2817 | static void *_p_wxFindReplaceDialogTo_p_wxDialog(void *x) { | |
2818 | return (void *)((wxDialog *) ((wxFindReplaceDialog *) x)); | |
2819 | } | |
2820 | static void *_p_wxWizardTo_p_wxDialog(void *x) { | |
2821 | return (void *)((wxDialog *) ((wxWizard *) x)); | |
2822 | } | |
2823 | static void *_p_wxWizardPageSimpleTo_p_wxWizardPage(void *x) { | |
2824 | return (void *)((wxWizardPage *) ((wxWizardPageSimple *) x)); | |
2825 | } | |
2826 | static void *_p_wxPyWizardPageTo_p_wxWizardPage(void *x) { | |
2827 | return (void *)((wxWizardPage *) ((wxPyWizardPage *) x)); | |
2828 | } | |
2829 | static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x) { | |
2830 | return (void *)((wxTopLevelWindow *) ((wxFrame *) x)); | |
2831 | } | |
2832 | static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x) { | |
2833 | return (void *)((wxTopLevelWindow *) (wxFrame *) ((wxMiniFrame *) x)); | |
2834 | } | |
2835 | static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x) { | |
2836 | return (void *)((wxTopLevelWindow *) (wxDialog *) ((wxFontDialog *) x)); | |
2837 | } | |
2838 | static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x) { | |
2839 | return (void *)((wxTopLevelWindow *) (wxDialog *) ((wxDirDialog *) x)); | |
2840 | } | |
2841 | static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x) { | |
2842 | return (void *)((wxTopLevelWindow *) (wxDialog *) ((wxColourDialog *) x)); | |
2843 | } | |
2844 | static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x) { | |
2845 | return (void *)((wxTopLevelWindow *) ((wxDialog *) x)); | |
2846 | } | |
2847 | static void *_p_wxPageSetupDialogTo_p_wxTopLevelWindow(void *x) { | |
2848 | return (void *)((wxTopLevelWindow *) (wxDialog *) ((wxPageSetupDialog *) x)); | |
2849 | } | |
2850 | static void *_p_wxPrintDialogTo_p_wxTopLevelWindow(void *x) { | |
2851 | return (void *)((wxTopLevelWindow *) (wxDialog *) ((wxPrintDialog *) x)); | |
2852 | } | |
2853 | static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x) { | |
2854 | return (void *)((wxTopLevelWindow *) (wxFrame *) ((wxSplashScreen *) x)); | |
2855 | } | |
2856 | static void *_p_wxTipWindowTo_p_wxTopLevelWindow(void *x) { | |
2857 | return (void *)((wxTopLevelWindow *) (wxFrame *) ((wxTipWindow *) x)); | |
2858 | } | |
2859 | static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x) { | |
2860 | return (void *)((wxTopLevelWindow *) (wxFrame *) ((wxMDIParentFrame *) x)); | |
2861 | } | |
2862 | static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x) { | |
2863 | return (void *)((wxTopLevelWindow *) (wxFrame *) ((wxMDIChildFrame *) x)); | |
2864 | } | |
2865 | static void *_p_wxWizardTo_p_wxTopLevelWindow(void *x) { | |
2866 | return (void *)((wxTopLevelWindow *) (wxDialog *) ((wxWizard *) x)); | |
2867 | } | |
2868 | static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x) { | |
2869 | return (void *)((wxTopLevelWindow *) (wxFrame *) ((wxProgressDialog *) x)); | |
2870 | } | |
2871 | static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x) { | |
2872 | return (void *)((wxTopLevelWindow *) (wxDialog *) ((wxMessageDialog *) x)); | |
2873 | } | |
2874 | static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x) { | |
2875 | return (void *)((wxTopLevelWindow *) (wxDialog *) ((wxTextEntryDialog *) x)); | |
2876 | } | |
2877 | static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x) { | |
2878 | return (void *)((wxTopLevelWindow *) (wxDialog *) ((wxSingleChoiceDialog *) x)); | |
2879 | } | |
2880 | static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x) { | |
2881 | return (void *)((wxTopLevelWindow *) (wxDialog *) ((wxMultiChoiceDialog *) x)); | |
2882 | } | |
2883 | static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x) { | |
2884 | return (void *)((wxTopLevelWindow *) (wxDialog *) ((wxFileDialog *) x)); | |
2885 | } | |
2886 | static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x) { | |
2887 | return (void *)((wxTopLevelWindow *) (wxDialog *) ((wxFindReplaceDialog *) x)); | |
2888 | } | |
2889 | static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x) { | |
2890 | return (void *)((wxTopLevelWindow *) (wxFrame *) ((wxPreviewFrame *) x)); | |
2891 | } | |
2892 | static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x) { | |
2893 | return (void *)((wxTopLevelWindow *) (wxFrame *)(wxPreviewFrame *) ((wxPyPreviewFrame *) x)); | |
2894 | } | |
2895 | static void *_p_wxSplashScreenTo_p_wxWindow(void *x) { | |
2896 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxFrame *) ((wxSplashScreen *) x)); | |
2897 | } | |
2898 | static void *_p_wxMiniFrameTo_p_wxWindow(void *x) { | |
2899 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxFrame *) ((wxMiniFrame *) x)); | |
2900 | } | |
2901 | static void *_p_wxWizardPageTo_p_wxWindow(void *x) { | |
2902 | return (void *)((wxWindow *) (wxPanel *) ((wxWizardPage *) x)); | |
2903 | } | |
2904 | static void *_p_wxPyWizardPageTo_p_wxWindow(void *x) { | |
2905 | return (void *)((wxWindow *) (wxPanel *)(wxWizardPage *) ((wxPyWizardPage *) x)); | |
2906 | } | |
2907 | static void *_p_wxPyPanelTo_p_wxWindow(void *x) { | |
2908 | return (void *)((wxWindow *) (wxPanel *) ((wxPyPanel *) x)); | |
2909 | } | |
2910 | static void *_p_wxMenuBarTo_p_wxWindow(void *x) { | |
2911 | return (void *)((wxWindow *) ((wxMenuBar *) x)); | |
2912 | } | |
2913 | static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x) { | |
2914 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxDialog *) ((wxFindReplaceDialog *) x)); | |
2915 | } | |
2916 | static void *_p_wxProgressDialogTo_p_wxWindow(void *x) { | |
2917 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxFrame *) ((wxProgressDialog *) x)); | |
2918 | } | |
2919 | static void *_p_wxMessageDialogTo_p_wxWindow(void *x) { | |
2920 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxDialog *) ((wxMessageDialog *) x)); | |
2921 | } | |
2922 | static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x) { | |
2923 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxDialog *) ((wxTextEntryDialog *) x)); | |
2924 | } | |
2925 | static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x) { | |
2926 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxDialog *) ((wxSingleChoiceDialog *) x)); | |
2927 | } | |
2928 | static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x) { | |
2929 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxDialog *) ((wxMultiChoiceDialog *) x)); | |
2930 | } | |
2931 | static void *_p_wxFileDialogTo_p_wxWindow(void *x) { | |
2932 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxDialog *) ((wxFileDialog *) x)); | |
2933 | } | |
2934 | static void *_p_wxPanelTo_p_wxWindow(void *x) { | |
2935 | return (void *)((wxWindow *) ((wxPanel *) x)); | |
2936 | } | |
2937 | static void *_p_wxStatusBarTo_p_wxWindow(void *x) { | |
2938 | return (void *)((wxWindow *) ((wxStatusBar *) x)); | |
2939 | } | |
2940 | static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x) { | |
2941 | return (void *)((wxWindow *) ((wxMDIClientWindow *) x)); | |
2942 | } | |
2943 | static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x) { | |
2944 | return (void *)((wxWindow *) (wxPanel *) ((wxPyVScrolledWindow *) x)); | |
2945 | } | |
2946 | static void *_p_wxTipWindowTo_p_wxWindow(void *x) { | |
2947 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxFrame *) ((wxTipWindow *) x)); | |
2948 | } | |
2949 | static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x) { | |
2950 | return (void *)((wxWindow *) (wxPopupWindow *) ((wxPyPopupTransientWindow *) x)); | |
2951 | } | |
2952 | static void *_p_wxPopupWindowTo_p_wxWindow(void *x) { | |
2953 | return (void *)((wxWindow *) ((wxPopupWindow *) x)); | |
2954 | } | |
2955 | static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x) { | |
2956 | return (void *)((wxWindow *) (wxSashWindow *) ((wxSashLayoutWindow *) x)); | |
2957 | } | |
2958 | static void *_p_wxScrolledWindowTo_p_wxWindow(void *x) { | |
2959 | return (void *)((wxWindow *) (wxPanel *) ((wxScrolledWindow *) x)); | |
2960 | } | |
2961 | static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x) { | |
2962 | return (void *)((wxWindow *) ((wxTopLevelWindow *) x)); | |
2963 | } | |
2964 | static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x) { | |
2965 | return (void *)((wxWindow *) ((wxSplashScreenWindow *) x)); | |
2966 | } | |
2967 | static void *_p_wxSplitterWindowTo_p_wxWindow(void *x) { | |
2968 | return (void *)((wxWindow *) ((wxSplitterWindow *) x)); | |
2969 | } | |
2970 | static void *_p_wxSashWindowTo_p_wxWindow(void *x) { | |
2971 | return (void *)((wxWindow *) ((wxSashWindow *) x)); | |
2972 | } | |
a2482628 RD |
2973 | static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x) { |
2974 | return (void *)((wxWindow *) (wxPanel *)(wxScrolledWindow *) ((wxPyScrolledWindow *) x)); | |
2975 | } | |
d14a1e28 RD |
2976 | static void *_p_wxControlTo_p_wxWindow(void *x) { |
2977 | return (void *)((wxWindow *) ((wxControl *) x)); | |
2978 | } | |
2979 | static void *_p_wxPreviewFrameTo_p_wxWindow(void *x) { | |
2980 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxFrame *) ((wxPreviewFrame *) x)); | |
2981 | } | |
2982 | static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x) { | |
2983 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxFrame *)(wxPreviewFrame *) ((wxPyPreviewFrame *) x)); | |
2984 | } | |
2985 | static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x) { | |
2986 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxFrame *) ((wxMDIChildFrame *) x)); | |
2987 | } | |
2988 | static void *_p_wxControlWithItemsTo_p_wxWindow(void *x) { | |
2989 | return (void *)((wxWindow *) (wxControl *) ((wxControlWithItems *) x)); | |
2990 | } | |
2991 | static void *_p_wxPyWindowTo_p_wxWindow(void *x) { | |
2992 | return (void *)((wxWindow *) ((wxPyWindow *) x)); | |
2993 | } | |
2994 | static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x) { | |
2995 | return (void *)((wxWindow *) (wxPanel *)(wxScrolledWindow *) ((wxPreviewCanvas *) x)); | |
2996 | } | |
2997 | static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x) { | |
2998 | return (void *)((wxWindow *) (wxPanel *)(wxPyVScrolledWindow *)(wxPyVListBox *) ((wxPyHtmlListBox *) x)); | |
2999 | } | |
3000 | static void *_p_wxPyVListBoxTo_p_wxWindow(void *x) { | |
3001 | return (void *)((wxWindow *) (wxPanel *)(wxPyVScrolledWindow *) ((wxPyVListBox *) x)); | |
3002 | } | |
3003 | static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x) { | |
3004 | return (void *)((wxWindow *) (wxPanel *) ((wxPreviewControlBar *) x)); | |
3005 | } | |
3006 | static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x) { | |
3007 | return (void *)((wxWindow *) (wxPanel *)(wxPreviewControlBar *) ((wxPyPreviewControlBar *) x)); | |
3008 | } | |
3009 | static void *_p_wxWizardTo_p_wxWindow(void *x) { | |
3010 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxDialog *) ((wxWizard *) x)); | |
3011 | } | |
3012 | static void *_p_wxWizardPageSimpleTo_p_wxWindow(void *x) { | |
3013 | return (void *)((wxWindow *) (wxPanel *)(wxWizardPage *) ((wxWizardPageSimple *) x)); | |
3014 | } | |
3015 | static void *_p_wxFrameTo_p_wxWindow(void *x) { | |
3016 | return (void *)((wxWindow *) (wxTopLevelWindow *) ((wxFrame *) x)); | |
3017 | } | |
3018 | static void *_p_wxFontDialogTo_p_wxWindow(void *x) { | |
3019 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxDialog *) ((wxFontDialog *) x)); | |
3020 | } | |
3021 | static void *_p_wxDirDialogTo_p_wxWindow(void *x) { | |
3022 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxDialog *) ((wxDirDialog *) x)); | |
3023 | } | |
3024 | static void *_p_wxColourDialogTo_p_wxWindow(void *x) { | |
3025 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxDialog *) ((wxColourDialog *) x)); | |
3026 | } | |
3027 | static void *_p_wxDialogTo_p_wxWindow(void *x) { | |
3028 | return (void *)((wxWindow *) (wxTopLevelWindow *) ((wxDialog *) x)); | |
3029 | } | |
3030 | static void *_p_wxPageSetupDialogTo_p_wxWindow(void *x) { | |
3031 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxDialog *) ((wxPageSetupDialog *) x)); | |
3032 | } | |
3033 | static void *_p_wxPrintDialogTo_p_wxWindow(void *x) { | |
3034 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxDialog *) ((wxPrintDialog *) x)); | |
3035 | } | |
3036 | static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x) { | |
3037 | return (void *)((wxWindow *) (wxTopLevelWindow *)(wxFrame *) ((wxMDIParentFrame *) x)); | |
3038 | } | |
3039 | static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x) { | |
3040 | return (void *)((wxCommandEvent *) ((wxChildFocusEvent *) x)); | |
3041 | } | |
3042 | static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x) { | |
3043 | return (void *)((wxCommandEvent *) ((wxScrollEvent *) x)); | |
3044 | } | |
3045 | static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x) { | |
3046 | return (void *)((wxCommandEvent *) ((wxWindowCreateEvent *) x)); | |
3047 | } | |
3048 | static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x) { | |
3049 | return (void *)((wxCommandEvent *) ((wxUpdateUIEvent *) x)); | |
3050 | } | |
3051 | static void *_p_wxFindDialogEventTo_p_wxCommandEvent(void *x) { | |
3052 | return (void *)((wxCommandEvent *) ((wxFindDialogEvent *) x)); | |
3053 | } | |
3054 | static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x) { | |
3055 | return (void *)((wxCommandEvent *) ((wxWindowDestroyEvent *) x)); | |
3056 | } | |
3057 | static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x) { | |
3058 | return (void *)((wxCommandEvent *) ((wxContextMenuEvent *) x)); | |
3059 | } | |
3060 | static void *_p_wxSplitterEventTo_p_wxCommandEvent(void *x) { | |
3061 | return (void *)((wxCommandEvent *) (wxNotifyEvent *) ((wxSplitterEvent *) x)); | |
3062 | } | |
3063 | static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x) { | |
3064 | return (void *)((wxCommandEvent *) ((wxNotifyEvent *) x)); | |
3065 | } | |
3066 | static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x) { | |
3067 | return (void *)((wxCommandEvent *) ((wxPyCommandEvent *) x)); | |
3068 | } | |
3069 | static void *_p_wxSashEventTo_p_wxCommandEvent(void *x) { | |
3070 | return (void *)((wxCommandEvent *) ((wxSashEvent *) x)); | |
3071 | } | |
3072 | static void *_p_wxWizardEventTo_p_wxCommandEvent(void *x) { | |
3073 | return (void *)((wxCommandEvent *) (wxNotifyEvent *) ((wxWizardEvent *) x)); | |
3074 | } | |
3075 | static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x) { | |
3076 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxFrame *) ((wxSplashScreen *) x)); | |
3077 | } | |
3078 | static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x) { | |
3079 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxFrame *) ((wxMiniFrame *) x)); | |
3080 | } | |
3081 | static void *_p_wxWizardPageTo_p_wxEvtHandler(void *x) { | |
3082 | return (void *)((wxEvtHandler *) (wxWindow *)(wxPanel *) ((wxWizardPage *) x)); | |
3083 | } | |
3084 | static void *_p_wxPyWizardPageTo_p_wxEvtHandler(void *x) { | |
3085 | return (void *)((wxEvtHandler *) (wxWindow *)(wxPanel *)(wxWizardPage *) ((wxPyWizardPage *) x)); | |
3086 | } | |
3087 | static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x) { | |
3088 | return (void *)((wxEvtHandler *) (wxWindow *)(wxPanel *) ((wxPyPanel *) x)); | |
3089 | } | |
3090 | static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x) { | |
3091 | return (void *)((wxEvtHandler *) (wxWindow *) ((wxMenuBar *) x)); | |
3092 | } | |
3093 | static void *_p_wxValidatorTo_p_wxEvtHandler(void *x) { | |
3094 | return (void *)((wxEvtHandler *) ((wxValidator *) x)); | |
3095 | } | |
3096 | static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x) { | |
3097 | return (void *)((wxEvtHandler *) (wxValidator *) ((wxPyValidator *) x)); | |
3098 | } | |
3099 | static void *_p_wxMenuTo_p_wxEvtHandler(void *x) { | |
3100 | return (void *)((wxEvtHandler *) ((wxMenu *) x)); | |
3101 | } | |
3102 | static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x) { | |
3103 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxTextEntryDialog *) x)); | |
3104 | } | |
3105 | static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x) { | |
3106 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxSingleChoiceDialog *) x)); | |
3107 | } | |
3108 | static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x) { | |
3109 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxMultiChoiceDialog *) x)); | |
3110 | } | |
3111 | static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x) { | |
3112 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxFileDialog *) x)); | |
3113 | } | |
3114 | static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x) { | |
3115 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxMessageDialog *) x)); | |
3116 | } | |
3117 | static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x) { | |
3118 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxFrame *) ((wxProgressDialog *) x)); | |
3119 | } | |
3120 | static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x) { | |
3121 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxFindReplaceDialog *) x)); | |
3122 | } | |
3123 | static void *_p_wxPanelTo_p_wxEvtHandler(void *x) { | |
3124 | return (void *)((wxEvtHandler *) (wxWindow *) ((wxPanel *) x)); | |
3125 | } | |
3126 | static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x) { | |
3127 | return (void *)((wxEvtHandler *) (wxWindow *) ((wxStatusBar *) x)); | |
3128 | } | |
3129 | static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x) { | |
3130 | return (void *)((wxEvtHandler *) (wxWindow *)(wxPanel *) ((wxPyVScrolledWindow *) x)); | |
3131 | } | |
3132 | static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x) { | |
3133 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxFrame *) ((wxTipWindow *) x)); | |
3134 | } | |
3135 | static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x) { | |
3136 | return (void *)((wxEvtHandler *) (wxWindow *)(wxPopupWindow *) ((wxPyPopupTransientWindow *) x)); | |
3137 | } | |
3138 | static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x) { | |
3139 | return (void *)((wxEvtHandler *) (wxWindow *) ((wxPopupWindow *) x)); | |
3140 | } | |
3141 | static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x) { | |
3142 | return (void *)((wxEvtHandler *) (wxWindow *)(wxSashWindow *) ((wxSashLayoutWindow *) x)); | |
3143 | } | |
3144 | static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x) { | |
3145 | return (void *)((wxEvtHandler *) (wxWindow *) ((wxSashWindow *) x)); | |
3146 | } | |
3147 | static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x) { | |
3148 | return (void *)((wxEvtHandler *) (wxWindow *) ((wxSplitterWindow *) x)); | |
3149 | } | |
3150 | static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x) { | |
3151 | return (void *)((wxEvtHandler *) (wxWindow *) ((wxSplashScreenWindow *) x)); | |
3152 | } | |
3153 | static void *_p_wxWindowTo_p_wxEvtHandler(void *x) { | |
3154 | return (void *)((wxEvtHandler *) ((wxWindow *) x)); | |
3155 | } | |
3156 | static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x) { | |
3157 | return (void *)((wxEvtHandler *) (wxWindow *)(wxPanel *) ((wxScrolledWindow *) x)); | |
3158 | } | |
3159 | static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x) { | |
3160 | return (void *)((wxEvtHandler *) (wxWindow *) ((wxTopLevelWindow *) x)); | |
3161 | } | |
3162 | static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x) { | |
3163 | return (void *)((wxEvtHandler *) (wxWindow *) ((wxMDIClientWindow *) x)); | |
3164 | } | |
a2482628 RD |
3165 | static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x) { |
3166 | return (void *)((wxEvtHandler *) (wxWindow *)(wxPanel *)(wxScrolledWindow *) ((wxPyScrolledWindow *) x)); | |
3167 | } | |
d14a1e28 RD |
3168 | static void *_p_wxControlTo_p_wxEvtHandler(void *x) { |
3169 | return (void *)((wxEvtHandler *) (wxWindow *) ((wxControl *) x)); | |
3170 | } | |
3171 | static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x) { | |
3172 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxFrame *) ((wxPreviewFrame *) x)); | |
3173 | } | |
3174 | static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x) { | |
3175 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxFrame *)(wxPreviewFrame *) ((wxPyPreviewFrame *) x)); | |
3176 | } | |
3177 | static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x) { | |
3178 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxFrame *) ((wxMDIChildFrame *) x)); | |
3179 | } | |
3180 | static void *_p_wxPyAppTo_p_wxEvtHandler(void *x) { | |
3181 | return (void *)((wxEvtHandler *) ((wxPyApp *) x)); | |
3182 | } | |
3183 | static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x) { | |
3184 | return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxControlWithItems *) x)); | |
3185 | } | |
3186 | static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x) { | |
3187 | return (void *)((wxEvtHandler *) (wxWindow *) ((wxPyWindow *) x)); | |
3188 | } | |
3189 | static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x) { | |
3190 | return (void *)((wxEvtHandler *) (wxWindow *)(wxPanel *)(wxScrolledWindow *) ((wxPreviewCanvas *) x)); | |
3191 | } | |
3192 | static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x) { | |
3193 | return (void *)((wxEvtHandler *) (wxWindow *)(wxPanel *)(wxPyVScrolledWindow *)(wxPyVListBox *) ((wxPyHtmlListBox *) x)); | |
3194 | } | |
3195 | static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x) { | |
3196 | return (void *)((wxEvtHandler *) (wxWindow *)(wxPanel *)(wxPyVScrolledWindow *) ((wxPyVListBox *) x)); | |
3197 | } | |
3198 | static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x) { | |
3199 | return (void *)((wxEvtHandler *) (wxWindow *)(wxPanel *) ((wxPreviewControlBar *) x)); | |
3200 | } | |
3201 | static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x) { | |
3202 | return (void *)((wxEvtHandler *) (wxWindow *)(wxPanel *)(wxPreviewControlBar *) ((wxPyPreviewControlBar *) x)); | |
3203 | } | |
3204 | static void *_p_wxTaskBarIconTo_p_wxEvtHandler(void *x) { | |
3205 | return (void *)((wxEvtHandler *) ((wxTaskBarIcon *) x)); | |
3206 | } | |
3207 | static void *_p_wxWizardTo_p_wxEvtHandler(void *x) { | |
3208 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxWizard *) x)); | |
3209 | } | |
3210 | static void *_p_wxWizardPageSimpleTo_p_wxEvtHandler(void *x) { | |
3211 | return (void *)((wxEvtHandler *) (wxWindow *)(wxPanel *)(wxWizardPage *) ((wxWizardPageSimple *) x)); | |
3212 | } | |
3213 | static void *_p_wxFrameTo_p_wxEvtHandler(void *x) { | |
3214 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *) ((wxFrame *) x)); | |
3215 | } | |
3216 | static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x) { | |
3217 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxFontDialog *) x)); | |
3218 | } | |
3219 | static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x) { | |
3220 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxDirDialog *) x)); | |
3221 | } | |
3222 | static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x) { | |
3223 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxColourDialog *) x)); | |
3224 | } | |
3225 | static void *_p_wxDialogTo_p_wxEvtHandler(void *x) { | |
3226 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *) ((wxDialog *) x)); | |
3227 | } | |
3228 | static void *_p_wxPageSetupDialogTo_p_wxEvtHandler(void *x) { | |
3229 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxPageSetupDialog *) x)); | |
3230 | } | |
3231 | static void *_p_wxPrintDialogTo_p_wxEvtHandler(void *x) { | |
3232 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxDialog *) ((wxPrintDialog *) x)); | |
3233 | } | |
3234 | static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x) { | |
3235 | return (void *)((wxEvtHandler *) (wxWindow *)(wxTopLevelWindow *)(wxFrame *) ((wxMDIParentFrame *) x)); | |
3236 | } | |
3237 | static void *_p_wxSplitterEventTo_p_wxNotifyEvent(void *x) { | |
3238 | return (void *)((wxNotifyEvent *) ((wxSplitterEvent *) x)); | |
3239 | } | |
3240 | static void *_p_wxWizardEventTo_p_wxNotifyEvent(void *x) { | |
3241 | return (void *)((wxNotifyEvent *) ((wxWizardEvent *) x)); | |
3242 | } | |
3243 | static void *_p_wxScrolledWindowTo_p_wxPanel(void *x) { | |
3244 | return (void *)((wxPanel *) ((wxScrolledWindow *) x)); | |
3245 | } | |
3246 | static void *_p_wxPyVScrolledWindowTo_p_wxPanel(void *x) { | |
3247 | return (void *)((wxPanel *) ((wxPyVScrolledWindow *) x)); | |
3248 | } | |
a2482628 RD |
3249 | static void *_p_wxPyScrolledWindowTo_p_wxPanel(void *x) { |
3250 | return (void *)((wxPanel *) (wxScrolledWindow *) ((wxPyScrolledWindow *) x)); | |
3251 | } | |
d14a1e28 RD |
3252 | static void *_p_wxWizardPageSimpleTo_p_wxPanel(void *x) { |
3253 | return (void *)((wxPanel *) (wxWizardPage *) ((wxWizardPageSimple *) x)); | |
3254 | } | |
3255 | static void *_p_wxPyVListBoxTo_p_wxPanel(void *x) { | |
3256 | return (void *)((wxPanel *) (wxPyVScrolledWindow *) ((wxPyVListBox *) x)); | |
3257 | } | |
3258 | static void *_p_wxPyHtmlListBoxTo_p_wxPanel(void *x) { | |
3259 | return (void *)((wxPanel *) (wxPyVScrolledWindow *)(wxPyVListBox *) ((wxPyHtmlListBox *) x)); | |
3260 | } | |
3261 | static void *_p_wxPyPanelTo_p_wxPanel(void *x) { | |
3262 | return (void *)((wxPanel *) ((wxPyPanel *) x)); | |
3263 | } | |
3264 | static void *_p_wxPreviewCanvasTo_p_wxPanel(void *x) { | |
3265 | return (void *)((wxPanel *) (wxScrolledWindow *) ((wxPreviewCanvas *) x)); | |
3266 | } | |
3267 | static void *_p_wxPreviewControlBarTo_p_wxPanel(void *x) { | |
3268 | return (void *)((wxPanel *) ((wxPreviewControlBar *) x)); | |
3269 | } | |
3270 | static void *_p_wxPyPreviewControlBarTo_p_wxPanel(void *x) { | |
3271 | return (void *)((wxPanel *) (wxPreviewControlBar *) ((wxPyPreviewControlBar *) x)); | |
3272 | } | |
3273 | static void *_p_wxWizardPageTo_p_wxPanel(void *x) { | |
3274 | return (void *)((wxPanel *) ((wxWizardPage *) x)); | |
3275 | } | |
3276 | static void *_p_wxPyWizardPageTo_p_wxPanel(void *x) { | |
3277 | return (void *)((wxPanel *) (wxWizardPage *) ((wxPyWizardPage *) x)); | |
3278 | } | |
3279 | static void *_p_wxContextMenuEventTo_p_wxEvent(void *x) { | |
3280 | return (void *)((wxEvent *) (wxCommandEvent *) ((wxContextMenuEvent *) x)); | |
3281 | } | |
3282 | static void *_p_wxMenuEventTo_p_wxEvent(void *x) { | |
3283 | return (void *)((wxEvent *) ((wxMenuEvent *) x)); | |
3284 | } | |
3285 | static void *_p_wxCloseEventTo_p_wxEvent(void *x) { | |
3286 | return (void *)((wxEvent *) ((wxCloseEvent *) x)); | |
3287 | } | |
3288 | static void *_p_wxMouseEventTo_p_wxEvent(void *x) { | |
3289 | return (void *)((wxEvent *) ((wxMouseEvent *) x)); | |
3290 | } | |
3291 | static void *_p_wxEraseEventTo_p_wxEvent(void *x) { | |
3292 | return (void *)((wxEvent *) ((wxEraseEvent *) x)); | |
3293 | } | |
3294 | static void *_p_wxSetCursorEventTo_p_wxEvent(void *x) { | |
3295 | return (void *)((wxEvent *) ((wxSetCursorEvent *) x)); | |
3296 | } | |
3297 | static void *_p_wxSplitterEventTo_p_wxEvent(void *x) { | |
3298 | return (void *)((wxEvent *) (wxCommandEvent *)(wxNotifyEvent *) ((wxSplitterEvent *) x)); | |
3299 | } | |
3300 | static void *_p_wxInitDialogEventTo_p_wxEvent(void *x) { | |
3301 | return (void *)((wxEvent *) ((wxInitDialogEvent *) x)); | |
3302 | } | |
3303 | static void *_p_wxScrollEventTo_p_wxEvent(void *x) { | |
3304 | return (void *)((wxEvent *) (wxCommandEvent *) ((wxScrollEvent *) x)); | |
3305 | } | |
3306 | static void *_p_wxFindDialogEventTo_p_wxEvent(void *x) { | |
3307 | return (void *)((wxEvent *) (wxCommandEvent *) ((wxFindDialogEvent *) x)); | |
3308 | } | |
3309 | static void *_p_wxPyEventTo_p_wxEvent(void *x) { | |
3310 | return (void *)((wxEvent *) ((wxPyEvent *) x)); | |
3311 | } | |
3312 | static void *_p_wxNotifyEventTo_p_wxEvent(void *x) { | |
3313 | return (void *)((wxEvent *) (wxCommandEvent *) ((wxNotifyEvent *) x)); | |
3314 | } | |
3315 | static void *_p_wxCalculateLayoutEventTo_p_wxEvent(void *x) { | |
3316 | return (void *)((wxEvent *) ((wxCalculateLayoutEvent *) x)); | |
3317 | } | |
3318 | static void *_p_wxIdleEventTo_p_wxEvent(void *x) { | |
3319 | return (void *)((wxEvent *) ((wxIdleEvent *) x)); | |
3320 | } | |
3321 | static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x) { | |
3322 | return (void *)((wxEvent *) (wxCommandEvent *) ((wxWindowCreateEvent *) x)); | |
3323 | } | |
3324 | static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x) { | |
3325 | return (void *)((wxEvent *) ((wxQueryNewPaletteEvent *) x)); | |
3326 | } | |
3327 | static void *_p_wxMaximizeEventTo_p_wxEvent(void *x) { | |
3328 | return (void *)((wxEvent *) ((wxMaximizeEvent *) x)); | |
3329 | } | |
3330 | static void *_p_wxIconizeEventTo_p_wxEvent(void *x) { | |
3331 | return (void *)((wxEvent *) ((wxIconizeEvent *) x)); | |
3332 | } | |
3333 | static void *_p_wxActivateEventTo_p_wxEvent(void *x) { | |
3334 | return (void *)((wxEvent *) ((wxActivateEvent *) x)); | |
3335 | } | |
3336 | static void *_p_wxSizeEventTo_p_wxEvent(void *x) { | |
3337 | return (void *)((wxEvent *) ((wxSizeEvent *) x)); | |
3338 | } | |
3339 | static void *_p_wxMoveEventTo_p_wxEvent(void *x) { | |
3340 | return (void *)((wxEvent *) ((wxMoveEvent *) x)); | |
3341 | } | |
3342 | static void *_p_wxPaintEventTo_p_wxEvent(void *x) { | |
3343 | return (void *)((wxEvent *) ((wxPaintEvent *) x)); | |
3344 | } | |
3345 | static void *_p_wxNcPaintEventTo_p_wxEvent(void *x) { | |
3346 | return (void *)((wxEvent *) ((wxNcPaintEvent *) x)); | |
3347 | } | |
3348 | static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x) { | |
3349 | return (void *)((wxEvent *) (wxCommandEvent *) ((wxUpdateUIEvent *) x)); | |
3350 | } | |
3351 | static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x) { | |
3352 | return (void *)((wxEvent *) ((wxPaletteChangedEvent *) x)); | |
3353 | } | |
3354 | static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x) { | |
3355 | return (void *)((wxEvent *) ((wxDisplayChangedEvent *) x)); | |
3356 | } | |
3357 | static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x) { | |
3358 | return (void *)((wxEvent *) ((wxMouseCaptureChangedEvent *) x)); | |
3359 | } | |
3360 | static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x) { | |
3361 | return (void *)((wxEvent *) ((wxSysColourChangedEvent *) x)); | |
3362 | } | |
3363 | static void *_p_wxDropFilesEventTo_p_wxEvent(void *x) { | |
3364 | return (void *)((wxEvent *) ((wxDropFilesEvent *) x)); | |
3365 | } | |
3366 | static void *_p_wxFocusEventTo_p_wxEvent(void *x) { | |
3367 | return (void *)((wxEvent *) ((wxFocusEvent *) x)); | |
3368 | } | |
3369 | static void *_p_wxChildFocusEventTo_p_wxEvent(void *x) { | |
3370 | return (void *)((wxEvent *) (wxCommandEvent *) ((wxChildFocusEvent *) x)); | |
3371 | } | |
3372 | static void *_p_wxSashEventTo_p_wxEvent(void *x) { | |
3373 | return (void *)((wxEvent *) (wxCommandEvent *) ((wxSashEvent *) x)); | |
3374 | } | |
3375 | static void *_p_wxQueryLayoutInfoEventTo_p_wxEvent(void *x) { | |
3376 | return (void *)((wxEvent *) ((wxQueryLayoutInfoEvent *) x)); | |
3377 | } | |
3378 | static void *_p_wxShowEventTo_p_wxEvent(void *x) { | |
3379 | return (void *)((wxEvent *) ((wxShowEvent *) x)); | |
3380 | } | |
3381 | static void *_p_wxCommandEventTo_p_wxEvent(void *x) { | |
3382 | return (void *)((wxEvent *) ((wxCommandEvent *) x)); | |
3383 | } | |
3384 | static void *_p_wxPyCommandEventTo_p_wxEvent(void *x) { | |
3385 | return (void *)((wxEvent *) (wxCommandEvent *) ((wxPyCommandEvent *) x)); | |
3386 | } | |
3387 | static void *_p_wxWizardEventTo_p_wxEvent(void *x) { | |
3388 | return (void *)((wxEvent *) (wxCommandEvent *)(wxNotifyEvent *) ((wxWizardEvent *) x)); | |
3389 | } | |
3390 | static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x) { | |
3391 | return (void *)((wxEvent *) (wxCommandEvent *) ((wxWindowDestroyEvent *) x)); | |
3392 | } | |
3393 | static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x) { | |
3394 | return (void *)((wxEvent *) ((wxNavigationKeyEvent *) x)); | |
3395 | } | |
3396 | static void *_p_wxKeyEventTo_p_wxEvent(void *x) { | |
3397 | return (void *)((wxEvent *) ((wxKeyEvent *) x)); | |
3398 | } | |
3399 | static void *_p_wxScrollWinEventTo_p_wxEvent(void *x) { | |
3400 | return (void *)((wxEvent *) ((wxScrollWinEvent *) x)); | |
3401 | } | |
3402 | static void *_p_wxTaskBarIconEventTo_p_wxEvent(void *x) { | |
3403 | return (void *)((wxEvent *) ((wxTaskBarIconEvent *) x)); | |
3404 | } | |
a2482628 | 3405 | static swig_type_info _swigt__p_wxObject[] = {{"_p_wxObject", 0, "wxObject *", 0, 0, 0, 0},{"_p_wxQueryLayoutInfoEvent", _p_wxQueryLayoutInfoEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxLayoutConstraints", _p_wxLayoutConstraintsTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPreviewFrame", _p_wxPreviewFrameTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyPreviewFrame", _p_wxPyPreviewFrameTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGBSizerItem", _p_wxGBSizerItemTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSizerItem", _p_wxSizerItemTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxIndividualLayoutConstraint", _p_wxIndividualLayoutConstraintTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxStaticBoxSizer", _p_wxStaticBoxSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxBoxSizer", _p_wxBoxSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSizer", _p_wxSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGridBagSizer", _p_wxGridBagSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxWizardPage", _p_wxWizardPageTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyWizardPage", _p_wxPyWizardPageTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyPanel", _p_wxPyPanelTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMenu", _p_wxMenuTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFontData", _p_wxFontDataTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPrintData", _p_wxPrintDataTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxEvent", _p_wxEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGridSizer", _p_wxGridSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFlexGridSizer", _p_wxFlexGridSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxTaskBarIcon", _p_wxTaskBarIconTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxLayoutAlgorithm", _p_wxLayoutAlgorithmTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxInitDialogEvent", _p_wxInitDialogEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFindDialogEvent", _p_wxFindDialogEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxWizardPageSimple", _p_wxWizardPageSimpleTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPaintEvent", _p_wxPaintEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxNcPaintEvent", _p_wxNcPaintEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPaletteChangedEvent", _p_wxPaletteChangedEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxDisplayChangedEvent", _p_wxDisplayChangedEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMouseCaptureChangedEvent", _p_wxMouseCaptureChangedEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSysColourChangedEvent", _p_wxSysColourChangedEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPreviewCanvas", _p_wxPreviewCanvasTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSetCursorEvent", _p_wxSetCursorEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSplitterEvent", _p_wxSplitterEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFSFile", _p_wxFSFileTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxWizard", _p_wxWizardTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFindReplaceData", _p_wxFindReplaceDataTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPySizer", _p_wxPySizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMDIChildFrame", _p_wxMDIChildFrameTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxColourData", _p_wxColourDataTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyEvent", _p_wxPyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyWindow", _p_wxPyWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSplashScreen", _p_wxSplashScreenTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFindReplaceDialog", _p_wxFindReplaceDialogTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxProgressDialog", _p_wxProgressDialogTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMessageDialog", _p_wxMessageDialogTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxTextEntryDialog", _p_wxTextEntryDialogTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSingleChoiceDialog", _p_wxSingleChoiceDialogTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMultiChoiceDialog", _p_wxMultiChoiceDialogTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFileDialog", _p_wxFileDialogTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxShowEvent", _p_wxShowEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPrinter", _p_wxPrinterTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxIdleEvent", _p_wxIdleEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxQueryNewPaletteEvent", _p_wxQueryNewPaletteEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMaximizeEvent", _p_wxMaximizeEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxIconizeEvent", _p_wxIconizeEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxActivateEvent", _p_wxActivateEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSizeEvent", _p_wxSizeEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMoveEvent", _p_wxMoveEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMenuItem", _p_wxMenuItemTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxCalculateLayoutEvent", _p_wxCalculateLayoutEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxICOHandler", _p_wxICOHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxCURHandler", _p_wxCURHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxANIHandler", _p_wxANIHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPNGHandler", _p_wxPNGHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGIFHandler", _p_wxGIFHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPCXHandler", _p_wxPCXHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxJPEGHandler", _p_wxJPEGHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPNMHandler", _p_wxPNMHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxXPMHandler", _p_wxXPMHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxBMPHandler", _p_wxBMPHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxImageHandler", _p_wxImageHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxTIFFHandler", _p_wxTIFFHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxEvtHandler", _p_wxEvtHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyVListBox", _p_wxPyVListBoxTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyHtmlListBox", _p_wxPyHtmlListBoxTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxAcceleratorTable", _p_wxAcceleratorTableTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMiniFrame", _p_wxMiniFrameTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxImage", _p_wxImageTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFrame", _p_wxFrameTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyPrintout", _p_wxPyPrintoutTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxTaskBarIconEvent", _p_wxTaskBarIconEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxScrollWinEvent", _p_wxScrollWinEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxStatusBar", _p_wxStatusBarTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMDIParentFrame", _p_wxMDIParentFrameTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxObject", 0, 0, 0, 0, 0, 0},{"_p_wxKeyEvent", _p_wxKeyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxNavigationKeyEvent", _p_wxNavigationKeyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxScrolledWindow", _p_wxScrolledWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyVScrolledWindow", _p_wxPyVScrolledWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyScrolledWindow", _p_wxPyScrolledWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMDIClientWindow", _p_wxMDIClientWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxTopLevelWindow", _p_wxTopLevelWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxTipWindow", _p_wxTipWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxWindow", _p_wxWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSashWindow", _p_wxSashWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSplitterWindow", _p_wxSplitterWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSplashScreenWindow", _p_wxSplashScreenWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSashLayoutWindow", _p_wxSashLayoutWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPopupWindow", _p_wxPopupWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyPopupTransientWindow", _p_wxPyPopupTransientWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSashEvent", _p_wxSashEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPrintPreview", _p_wxPrintPreviewTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyPrintPreview", _p_wxPyPrintPreviewTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPanel", _p_wxPanelTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPrintDialog", _p_wxPrintDialogTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPageSetupDialog", _p_wxPageSetupDialogTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxDialog", _p_wxDialogTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxColourDialog", _p_wxColourDialogTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxDirDialog", _p_wxDirDialogTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFontDialog", _p_wxFontDialogTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFileSystem", _p_wxFileSystemTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMenuEvent", _p_wxMenuEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxCloseEvent", _p_wxCloseEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMouseEvent", _p_wxMouseEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxEraseEvent", _p_wxEraseEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyApp", _p_wxPyAppTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", _p_wxCommandEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxWizardEvent", _p_wxWizardEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPreviewControlBar", _p_wxPreviewControlBarTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyPreviewControlBar", _p_wxPyPreviewControlBarTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxDropFilesEvent", _p_wxDropFilesEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFocusEvent", _p_wxFocusEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPageSetupDialogData", _p_wxPageSetupDialogDataTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPrintDialogData", _p_wxPrintDialogDataTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxValidator", _p_wxValidatorTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxObject, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; |
2f4c0a16 RD |
3406 | static swig_type_info _swigt__p_wxDialog[] = {{"_p_wxDialog", 0, "wxDialog *", 0, 0, 0, 0},{"_p_wxDialog", 0, 0, 0, 0, 0, 0},{"_p_wxColourDialog", _p_wxColourDialogTo_p_wxDialog, 0, 0, 0, 0, 0},{"_p_wxDirDialog", _p_wxDirDialogTo_p_wxDialog, 0, 0, 0, 0, 0},{"_p_wxFontDialog", _p_wxFontDialogTo_p_wxDialog, 0, 0, 0, 0, 0},{"_p_wxPageSetupDialog", _p_wxPageSetupDialogTo_p_wxDialog, 0, 0, 0, 0, 0},{"_p_wxPrintDialog", _p_wxPrintDialogTo_p_wxDialog, 0, 0, 0, 0, 0},{"_p_wxFileDialog", _p_wxFileDialogTo_p_wxDialog, 0, 0, 0, 0, 0},{"_p_wxMultiChoiceDialog", _p_wxMultiChoiceDialogTo_p_wxDialog, 0, 0, 0, 0, 0},{"_p_wxSingleChoiceDialog", _p_wxSingleChoiceDialogTo_p_wxDialog, 0, 0, 0, 0, 0},{"_p_wxTextEntryDialog", _p_wxTextEntryDialogTo_p_wxDialog, 0, 0, 0, 0, 0},{"_p_wxMessageDialog", _p_wxMessageDialogTo_p_wxDialog, 0, 0, 0, 0, 0},{"_p_wxFindReplaceDialog", _p_wxFindReplaceDialogTo_p_wxDialog, 0, 0, 0, 0, 0},{"_p_wxWizard", _p_wxWizardTo_p_wxDialog, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; |
3407 | static swig_type_info _swigt__p_wxWizardPageSimple[] = {{"_p_wxWizardPageSimple", 0, "wxWizardPageSimple *", 0, 0, 0, 0},{"_p_wxWizardPageSimple", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; | |
3408 | static swig_type_info _swigt__p_wxWizardPage[] = {{"_p_wxWizardPage", 0, "wxWizardPage *", 0, 0, 0, 0},{"_p_wxWizardPageSimple", _p_wxWizardPageSimpleTo_p_wxWizardPage, 0, 0, 0, 0, 0},{"_p_wxWizardPage", 0, 0, 0, 0, 0, 0},{"_p_wxPyWizardPage", _p_wxPyWizardPageTo_p_wxWizardPage, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; | |
3409 | static swig_type_info _swigt__p_wxTopLevelWindow[] = {{"_p_wxTopLevelWindow", 0, "wxTopLevelWindow *", 0, 0, 0, 0},{"_p_wxFrame", _p_wxFrameTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxMiniFrame", _p_wxMiniFrameTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxFontDialog", _p_wxFontDialogTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxDirDialog", _p_wxDirDialogTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxColourDialog", _p_wxColourDialogTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxDialog", _p_wxDialogTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxPageSetupDialog", _p_wxPageSetupDialogTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxPrintDialog", _p_wxPrintDialogTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxSplashScreen", _p_wxSplashScreenTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxTopLevelWindow", 0, 0, 0, 0, 0, 0},{"_p_wxTipWindow", _p_wxTipWindowTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxMDIParentFrame", _p_wxMDIParentFrameTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxWizard", _p_wxWizardTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxMDIChildFrame", _p_wxMDIChildFrameTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxMessageDialog", _p_wxMessageDialogTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxTextEntryDialog", _p_wxTextEntryDialogTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxSingleChoiceDialog", _p_wxSingleChoiceDialogTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxMultiChoiceDialog", _p_wxMultiChoiceDialogTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxFileDialog", _p_wxFileDialogTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxFindReplaceDialog", _p_wxFindReplaceDialogTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxProgressDialog", _p_wxProgressDialogTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxPreviewFrame", _p_wxPreviewFrameTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{"_p_wxPyPreviewFrame", _p_wxPyPreviewFrameTo_p_wxTopLevelWindow, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; | |
a2482628 | 3410 | static swig_type_info _swigt__p_wxWindow[] = {{"_p_wxWindow", 0, "wxWindow *", 0, 0, 0, 0},{"_p_wxWizardPage", _p_wxWizardPageTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPyWizardPage", _p_wxPyWizardPageTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxSplashScreen", _p_wxSplashScreenTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxMiniFrame", _p_wxMiniFrameTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPyPanel", _p_wxPyPanelTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxFileDialog", _p_wxFileDialogTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxFindReplaceDialog", _p_wxFindReplaceDialogTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxProgressDialog", _p_wxProgressDialogTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxMessageDialog", _p_wxMessageDialogTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxTextEntryDialog", _p_wxTextEntryDialogTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxSingleChoiceDialog", _p_wxSingleChoiceDialogTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxMultiChoiceDialog", _p_wxMultiChoiceDialogTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPanel", _p_wxPanelTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxStatusBar", _p_wxStatusBarTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxTopLevelWindow", _p_wxTopLevelWindowTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxSplashScreenWindow", _p_wxSplashScreenWindowTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxSplitterWindow", _p_wxSplitterWindowTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxSashWindow", _p_wxSashWindowTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPyScrolledWindow", _p_wxPyScrolledWindowTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPyVScrolledWindow", _p_wxPyVScrolledWindowTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxScrolledWindow", _p_wxScrolledWindowTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxWindow", 0, 0, 0, 0, 0, 0},{"_p_wxTipWindow", _p_wxTipWindowTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxSashLayoutWindow", _p_wxSashLayoutWindowTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPopupWindow", _p_wxPopupWindowTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPyPopupTransientWindow", _p_wxPyPopupTransientWindowTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxMDIClientWindow", _p_wxMDIClientWindowTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPreviewFrame", _p_wxPreviewFrameTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPyPreviewFrame", _p_wxPyPreviewFrameTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxMDIChildFrame", _p_wxMDIChildFrameTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPreviewCanvas", _p_wxPreviewCanvasTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPyWindow", _p_wxPyWindowTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPyHtmlListBox", _p_wxPyHtmlListBoxTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPyVListBox", _p_wxPyVListBoxTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPyPreviewControlBar", _p_wxPyPreviewControlBarTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPreviewControlBar", _p_wxPreviewControlBarTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxWizard", _p_wxWizardTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxWizardPageSimple", _p_wxWizardPageSimpleTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxFrame", _p_wxFrameTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxColourDialog", _p_wxColourDialogTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxDialog", _p_wxDialogTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPageSetupDialog", _p_wxPageSetupDialogTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPrintDialog", _p_wxPrintDialogTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxDirDialog", _p_wxDirDialogTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxFontDialog", _p_wxFontDialogTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxMDIParentFrame", _p_wxMDIParentFrameTo_p_wxWindow, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; |
2f4c0a16 RD |
3411 | static swig_type_info _swigt__p_wxPyWizardPage[] = {{"_p_wxPyWizardPage", 0, "wxPyWizardPage *", 0, 0, 0, 0},{"_p_wxPyWizardPage", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; |
3412 | static swig_type_info _swigt__p_wxWizardEvent[] = {{"_p_wxWizardEvent", 0, "wxWizardEvent *", 0, 0, 0, 0},{"_p_wxWizardEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; | |
3413 | static swig_type_info _swigt__p_wxCommandEvent[] = {{"_p_wxCommandEvent", 0, "wxCommandEvent *", 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxFindDialogEvent", _p_wxFindDialogEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxSplitterEvent", _p_wxSplitterEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", 0, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxWizardEvent", _p_wxWizardEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxSashEvent", _p_wxSashEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; | |
3414 | static swig_type_info _swigt__p_wxBitmap[] = {{"_p_wxBitmap", 0, "wxBitmap *", 0, 0, 0, 0},{"_p_wxBitmap", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; | |
3415 | static swig_type_info _swigt__p_wxWizard[] = {{"_p_wxWizard", 0, "wxWizard *", 0, 0, 0, 0},{"_p_wxWizard", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; | |
3416 | static swig_type_info _swigt__p_char[] = {{"_p_char", 0, "char *", 0, 0, 0, 0},{"_p_char", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; | |
a2482628 | 3417 | static swig_type_info _swigt__p_wxEvtHandler[] = {{"_p_wxEvtHandler", 0, "wxEvtHandler *", 0, 0, 0, 0},{"_p_wxWizardPage", _p_wxWizardPageTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyWizardPage", _p_wxPyWizardPageTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxSplashScreen", _p_wxSplashScreenTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxMiniFrame", _p_wxMiniFrameTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyPanel", _p_wxPyPanelTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxValidator", _p_wxValidatorTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxFileDialog", _p_wxFileDialogTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxMultiChoiceDialog", _p_wxMultiChoiceDialogTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxSingleChoiceDialog", _p_wxSingleChoiceDialogTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxFindReplaceDialog", _p_wxFindReplaceDialogTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxProgressDialog", _p_wxProgressDialogTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxMessageDialog", _p_wxMessageDialogTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxTextEntryDialog", _p_wxTextEntryDialogTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPanel", _p_wxPanelTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxStatusBar", _p_wxStatusBarTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxTopLevelWindow", _p_wxTopLevelWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxMDIClientWindow", _p_wxMDIClientWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyScrolledWindow", _p_wxPyScrolledWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyVScrolledWindow", _p_wxPyVScrolledWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxScrolledWindow", _p_wxScrolledWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxTipWindow", _p_wxTipWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxWindow", _p_wxWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxSashWindow", _p_wxSashWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxSplitterWindow", _p_wxSplitterWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxSplashScreenWindow", _p_wxSplashScreenWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxSashLayoutWindow", _p_wxSashLayoutWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPopupWindow", _p_wxPopupWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyPopupTransientWindow", _p_wxPyPopupTransientWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPreviewFrame", _p_wxPreviewFrameTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyPreviewFrame", _p_wxPyPreviewFrameTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxMDIChildFrame", _p_wxMDIChildFrameTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyApp", _p_wxPyAppTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxEvtHandler", 0, 0, 0, 0, 0, 0},{"_p_wxPreviewCanvas", _p_wxPreviewCanvasTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyWindow", _p_wxPyWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyHtmlListBox", _p_wxPyHtmlListBoxTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyVListBox", _p_wxPyVListBoxTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyPreviewControlBar", _p_wxPyPreviewControlBarTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPreviewControlBar", _p_wxPreviewControlBarTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxWizard", _p_wxWizardTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxTaskBarIcon", _p_wxTaskBarIconTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxWizardPageSimple", _p_wxWizardPageSimpleTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxFrame", _p_wxFrameTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxColourDialog", _p_wxColourDialogTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxDialog", _p_wxDialogTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPageSetupDialog", _p_wxPageSetupDialogTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPrintDialog", _p_wxPrintDialogTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxDirDialog", _p_wxDirDialogTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxFontDialog", _p_wxFontDialogTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxMenu", _p_wxMenuTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxMDIParentFrame", _p_wxMDIParentFrameTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; |
2f4c0a16 RD |
3418 | static swig_type_info _swigt__p_wxString[] = {{"_p_wxString", 0, "wxString *", 0, 0, 0, 0},{"_p_wxString", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; |
3419 | static swig_type_info _swigt__p_wxNotifyEvent[] = {{"_p_wxNotifyEvent", 0, "wxNotifyEvent *", 0, 0, 0, 0},{"_p_wxSplitterEvent", _p_wxSplitterEventTo_p_wxNotifyEvent, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", 0, 0, 0, 0, 0, 0},{"_p_wxWizardEvent", _p_wxWizardEventTo_p_wxNotifyEvent, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; | |
a2482628 | 3420 | static swig_type_info _swigt__p_wxPanel[] = {{"_p_wxPanel", 0, "wxPanel *", 0, 0, 0, 0},{"_p_wxPanel", 0, 0, 0, 0, 0, 0},{"_p_wxScrolledWindow", _p_wxScrolledWindowTo_p_wxPanel, 0, 0, 0, 0, 0},{"_p_wxPyVScrolledWindow", _p_wxPyVScrolledWindowTo_p_wxPanel, 0, 0, 0, 0, 0},{"_p_wxPyScrolledWindow", _p_wxPyScrolledWindowTo_p_wxPanel, 0, 0, 0, 0, 0},{"_p_wxWizardPageSimple", _p_wxWizardPageSimpleTo_p_wxPanel, 0, 0, 0, 0, 0},{"_p_wxPyVListBox", _p_wxPyVListBoxTo_p_wxPanel, 0, 0, 0, 0, 0},{"_p_wxPyHtmlListBox", _p_wxPyHtmlListBoxTo_p_wxPanel, 0, 0, 0, 0, 0},{"_p_wxPyPanel", _p_wxPyPanelTo_p_wxPanel, 0, 0, 0, 0, 0},{"_p_wxPreviewCanvas", _p_wxPreviewCanvasTo_p_wxPanel, 0, 0, 0, 0, 0},{"_p_wxPreviewControlBar", _p_wxPreviewControlBarTo_p_wxPanel, 0, 0, 0, 0, 0},{"_p_wxPyPreviewControlBar", _p_wxPyPreviewControlBarTo_p_wxPanel, 0, 0, 0, 0, 0},{"_p_wxWizardPage", _p_wxWizardPageTo_p_wxPanel, 0, 0, 0, 0, 0},{"_p_wxPyWizardPage", _p_wxPyWizardPageTo_p_wxPanel, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; |
2f4c0a16 RD |
3421 | static swig_type_info _swigt__p_wxEvent[] = {{"_p_wxEvent", 0, "wxEvent *", 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMenuEvent", _p_wxMenuEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxCloseEvent", _p_wxCloseEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMouseEvent", _p_wxMouseEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxEraseEvent", _p_wxEraseEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxSetCursorEvent", _p_wxSetCursorEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxSplitterEvent", _p_wxSplitterEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxInitDialogEvent", _p_wxInitDialogEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxFindDialogEvent", _p_wxFindDialogEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxPyEvent", _p_wxPyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxCalculateLayoutEvent", _p_wxCalculateLayoutEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxEvent", 0, 0, 0, 0, 0, 0},{"_p_wxIdleEvent", _p_wxIdleEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxQueryNewPaletteEvent", _p_wxQueryNewPaletteEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMaximizeEvent", _p_wxMaximizeEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxIconizeEvent", _p_wxIconizeEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxActivateEvent", _p_wxActivateEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxSizeEvent", _p_wxSizeEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMoveEvent", _p_wxMoveEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxPaintEvent", _p_wxPaintEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxNcPaintEvent", _p_wxNcPaintEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxPaletteChangedEvent", _p_wxPaletteChangedEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxDisplayChangedEvent", _p_wxDisplayChangedEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMouseCaptureChangedEvent", _p_wxMouseCaptureChangedEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxSysColourChangedEvent", _p_wxSysColourChangedEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxDropFilesEvent", _p_wxDropFilesEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxFocusEvent", _p_wxFocusEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxSashEvent", _p_wxSashEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxQueryLayoutInfoEvent", _p_wxQueryLayoutInfoEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxShowEvent", _p_wxShowEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxWizardEvent", _p_wxWizardEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", _p_wxCommandEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxNavigationKeyEvent", _p_wxNavigationKeyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxKeyEvent", _p_wxKeyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxScrollWinEvent", _p_wxScrollWinEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxTaskBarIconEvent", _p_wxTaskBarIconEventTo_p_wxEvent, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; |
3422 | static swig_type_info _swigt__p_wxSize[] = {{"_p_wxSize", 0, "wxSize *", 0, 0, 0, 0},{"_p_wxSize", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; | |
3423 | static swig_type_info _swigt__p_wxChar[] = {{"_p_wxChar", 0, "wxChar *", 0, 0, 0, 0},{"_p_wxChar", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; | |
3424 | static swig_type_info _swigt__p_int[] = {{"_p_int", 0, "int *", 0, 0, 0, 0},{"_p_int", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; | |
d14a1e28 RD |
3425 | |
3426 | static swig_type_info *swig_types_initial[] = { | |
3427 | _swigt__p_wxObject, | |
3428 | _swigt__p_wxDialog, | |
3429 | _swigt__p_wxWizardPageSimple, | |
3430 | _swigt__p_wxWizardPage, | |
3431 | _swigt__p_wxTopLevelWindow, | |
3432 | _swigt__p_wxWindow, | |
3433 | _swigt__p_wxPyWizardPage, | |
3434 | _swigt__p_wxWizardEvent, | |
3435 | _swigt__p_wxCommandEvent, | |
3436 | _swigt__p_wxBitmap, | |
3437 | _swigt__p_wxWizard, | |
8edf1c75 | 3438 | _swigt__p_char, |
d14a1e28 | 3439 | _swigt__p_wxEvtHandler, |
8edf1c75 | 3440 | _swigt__p_wxString, |
d14a1e28 RD |
3441 | _swigt__p_wxNotifyEvent, |
3442 | _swigt__p_wxPanel, | |
3443 | _swigt__p_wxEvent, | |
3444 | _swigt__p_wxSize, | |
3445 | _swigt__p_wxChar, | |
3446 | _swigt__p_int, | |
3447 | 0 | |
3448 | }; | |
3449 | ||
3450 | ||
3451 | /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ | |
3452 | ||
3453 | static swig_const_info swig_const_table[] = { | |
2f4c0a16 | 3454 | {0, 0, 0, 0.0, 0, 0}}; |
d14a1e28 RD |
3455 | |
3456 | #ifdef __cplusplus | |
3457 | } | |
3458 | #endif | |
3459 | ||
3460 | #ifdef __cplusplus | |
3461 | extern "C" | |
3462 | #endif | |
3463 | SWIGEXPORT(void) SWIG_init(void) { | |
3464 | static PyObject *SWIG_globals = 0; | |
3465 | static int typeinit = 0; | |
3466 | PyObject *m, *d; | |
3467 | int i; | |
3468 | if (!SWIG_globals) SWIG_globals = SWIG_newvarlink(); | |
3469 | m = Py_InitModule((char *) SWIG_name, SwigMethods); | |
3470 | d = PyModule_GetDict(m); | |
3471 | ||
3472 | if (!typeinit) { | |
3473 | for (i = 0; swig_types_initial[i]; i++) { | |
3474 | swig_types[i] = SWIG_TypeRegister(swig_types_initial[i]); | |
3475 | } | |
3476 | typeinit = 1; | |
3477 | } | |
3478 | SWIG_InstallConstants(d,swig_const_table); | |
3479 | ||
2f4c0a16 | 3480 | PyDict_SetItemString(d,"WIZARD_EX_HELPBUTTON", SWIG_FromInt((int)wxWIZARD_EX_HELPBUTTON)); |
d14a1e28 RD |
3481 | PyDict_SetItemString(d, "wxEVT_WIZARD_PAGE_CHANGED", PyInt_FromLong(wxEVT_WIZARD_PAGE_CHANGED)); |
3482 | PyDict_SetItemString(d, "wxEVT_WIZARD_PAGE_CHANGING", PyInt_FromLong(wxEVT_WIZARD_PAGE_CHANGING)); | |
3483 | PyDict_SetItemString(d, "wxEVT_WIZARD_CANCEL", PyInt_FromLong(wxEVT_WIZARD_CANCEL)); | |
3484 | PyDict_SetItemString(d, "wxEVT_WIZARD_HELP", PyInt_FromLong(wxEVT_WIZARD_HELP)); | |
3485 | PyDict_SetItemString(d, "wxEVT_WIZARD_FINISHED", PyInt_FromLong(wxEVT_WIZARD_FINISHED)); | |
3486 | ||
3487 | ||
3488 | } | |
3489 |