]>
Commit | Line | Data |
---|---|---|
70551f47 RD |
1 | /* |
2 | * FILE : gtk/mdi.cpp | |
3 | * | |
4 | * This file was automatically generated by : | |
5 | * Simplified Wrapper and Interface Generator (SWIG) | |
9cce9de1 | 6 | * Version 1.1 (Build 810) |
70551f47 RD |
7 | * |
8 | * Portions Copyright (c) 1995-1998 | |
9 | * The University of Utah and The Regents of the University of California. | |
10 | * Permission is granted to distribute this file in any manner provided | |
11 | * this notice remains intact. | |
12 | * | |
13 | * Do not make changes to this file--changes will be lost! | |
14 | * | |
15 | */ | |
16 | ||
17 | ||
18 | #define SWIGCODE | |
19 | /* Implementation : PYTHON */ | |
20 | ||
21 | #define SWIGPYTHON | |
22 | #include <string.h> | |
23 | #include <stdlib.h> | |
24 | /* Definitions for Windows/Unix exporting */ | |
25 | #if defined(__WIN32__) | |
26 | # if defined(_MSC_VER) | |
2d091820 | 27 | # define SWIGEXPORT(a) __declspec(dllexport) a |
70551f47 RD |
28 | # else |
29 | # if defined(__BORLANDC__) | |
c368d904 | 30 | # define SWIGEXPORT(a) a _export |
70551f47 | 31 | # else |
c368d904 | 32 | # define SWIGEXPORT(a) a |
70551f47 RD |
33 | # endif |
34 | # endif | |
35 | #else | |
c368d904 | 36 | # define SWIGEXPORT(a) a |
70551f47 RD |
37 | #endif |
38 | ||
c368d904 RD |
39 | #include "Python.h" |
40 | ||
70551f47 RD |
41 | #ifdef __cplusplus |
42 | extern "C" { | |
43 | #endif | |
70551f47 RD |
44 | extern void SWIG_MakePtr(char *, void *, char *); |
45 | extern void SWIG_RegisterMapping(char *, char *, void *(*)(void *)); | |
46 | extern char *SWIG_GetPtr(char *, void **, char *); | |
2d091820 | 47 | extern char *SWIG_GetPtrObj(PyObject *, void **, char *); |
70551f47 RD |
48 | extern void SWIG_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *)); |
49 | extern PyObject *SWIG_newvarlink(void); | |
50 | #ifdef __cplusplus | |
51 | } | |
52 | #endif | |
70551f47 RD |
53 | #define SWIG_init initmdic |
54 | ||
55 | #define SWIG_name "mdic" | |
56 | ||
57 | #include "helpers.h" | |
58 | ||
59 | static PyObject* l_output_helper(PyObject* target, PyObject* o) { | |
60 | PyObject* o2; | |
c368d904 | 61 | if (!target) { |
70551f47 | 62 | target = o; |
c368d904 | 63 | } else if (target == Py_None) { |
70551f47 RD |
64 | Py_DECREF(Py_None); |
65 | target = o; | |
c368d904 | 66 | } else { |
70551f47 RD |
67 | if (!PyList_Check(target)) { |
68 | o2 = target; | |
69 | target = PyList_New(0); | |
70 | PyList_Append(target, o2); | |
71 | Py_XDECREF(o2); | |
72 | } | |
73 | PyList_Append(target,o); | |
74 | Py_XDECREF(o); | |
75 | } | |
76 | return target; | |
77 | } | |
78 | ||
79 | static PyObject* t_output_helper(PyObject* target, PyObject* o) { | |
80 | PyObject* o2; | |
81 | PyObject* o3; | |
82 | ||
c368d904 | 83 | if (!target) { |
70551f47 | 84 | target = o; |
c368d904 | 85 | } else if (target == Py_None) { |
70551f47 RD |
86 | Py_DECREF(Py_None); |
87 | target = o; | |
c368d904 | 88 | } else { |
70551f47 RD |
89 | if (!PyTuple_Check(target)) { |
90 | o2 = target; | |
91 | target = PyTuple_New(1); | |
92 | PyTuple_SetItem(target, 0, o2); | |
93 | } | |
c368d904 RD |
94 | o3 = PyTuple_New(1); |
95 | PyTuple_SetItem(o3, 0, o); | |
70551f47 RD |
96 | |
97 | o2 = target; | |
c368d904 RD |
98 | target = PySequence_Concat(o2, o3); |
99 | Py_DECREF(o2); | |
70551f47 RD |
100 | Py_DECREF(o3); |
101 | } | |
102 | return target; | |
103 | } | |
104 | ||
70551f47 | 105 | static char* wxStringErrorMsg = "string type is required for parameter"; |
2d091820 RD |
106 | #ifdef __cplusplus |
107 | extern "C" { | |
108 | #endif | |
70551f47 RD |
109 | static void *SwigwxMDIParentFrameTowxFrame(void *ptr) { |
110 | wxMDIParentFrame *src; | |
111 | wxFrame *dest; | |
112 | src = (wxMDIParentFrame *) ptr; | |
113 | dest = (wxFrame *) src; | |
114 | return (void *) dest; | |
115 | } | |
116 | ||
117 | static void *SwigwxMDIParentFrameTowxWindow(void *ptr) { | |
118 | wxMDIParentFrame *src; | |
119 | wxWindow *dest; | |
120 | src = (wxMDIParentFrame *) ptr; | |
121 | dest = (wxWindow *) src; | |
122 | return (void *) dest; | |
123 | } | |
124 | ||
125 | static void *SwigwxMDIParentFrameTowxEvtHandler(void *ptr) { | |
126 | wxMDIParentFrame *src; | |
127 | wxEvtHandler *dest; | |
128 | src = (wxMDIParentFrame *) ptr; | |
129 | dest = (wxEvtHandler *) src; | |
130 | return (void *) dest; | |
131 | } | |
132 | ||
133 | #define new_wxMDIParentFrame(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (new wxMDIParentFrame(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6)) | |
107e4716 | 134 | static PyObject *_wrap_new_wxMDIParentFrame(PyObject *self, PyObject *args, PyObject *kwargs) { |
70551f47 RD |
135 | PyObject * _resultobj; |
136 | wxMDIParentFrame * _result; | |
137 | wxWindow * _arg0; | |
138 | wxWindowID _arg1; | |
139 | wxString * _arg2; | |
2d091820 RD |
140 | wxPoint * _arg3 = (wxPoint *) &wxPyDefaultPosition; |
141 | wxSize * _arg4 = (wxSize *) &wxPyDefaultSize; | |
142 | long _arg5 = (long ) wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL; | |
143 | char * _arg6 = (char *) "frame"; | |
144 | PyObject * _argo0 = 0; | |
70551f47 | 145 | PyObject * _obj2 = 0; |
37f6a977 RD |
146 | wxPoint temp; |
147 | PyObject * _obj3 = 0; | |
148 | wxSize temp0; | |
149 | PyObject * _obj4 = 0; | |
107e4716 | 150 | char *_kwnames[] = { "parent","id","title","pos","size","style","name", NULL }; |
70551f47 RD |
151 | char _ptemp[128]; |
152 | ||
153 | self = self; | |
37f6a977 | 154 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO|OOls:new_wxMDIParentFrame",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_obj4,&_arg5,&_arg6)) |
70551f47 | 155 | return NULL; |
2d091820 RD |
156 | if (_argo0) { |
157 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
158 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
70551f47 RD |
159 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxMDIParentFrame. Expected _wxWindow_p."); |
160 | return NULL; | |
161 | } | |
162 | } | |
163 | { | |
164 | if (!PyString_Check(_obj2)) { | |
165 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
166 | return NULL; | |
167 | } | |
ab9bc19b | 168 | _arg2 = new wxString(PyString_AsString(_obj2), PyString_Size(_obj2)); |
70551f47 | 169 | } |
37f6a977 RD |
170 | if (_obj3) |
171 | { | |
172 | _arg3 = &temp; | |
173 | if (! wxPoint_helper(_obj3, &_arg3)) | |
70551f47 | 174 | return NULL; |
37f6a977 RD |
175 | } |
176 | if (_obj4) | |
177 | { | |
178 | _arg4 = &temp0; | |
179 | if (! wxSize_helper(_obj4, &_arg4)) | |
70551f47 | 180 | return NULL; |
37f6a977 | 181 | } |
ab9bc19b RD |
182 | { |
183 | wxPy_BEGIN_ALLOW_THREADS; | |
184 | _result = (wxMDIParentFrame *)new_wxMDIParentFrame(_arg0,_arg1,*_arg2,*_arg3,*_arg4,_arg5,_arg6); | |
185 | ||
186 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
187 | } if (_result) { |
188 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxMDIParentFrame_p"); | |
189 | _resultobj = Py_BuildValue("s",_ptemp); | |
190 | } else { | |
191 | Py_INCREF(Py_None); | |
192 | _resultobj = Py_None; | |
193 | } | |
70551f47 RD |
194 | { |
195 | if (_obj2) | |
196 | delete _arg2; | |
197 | } | |
198 | return _resultobj; | |
199 | } | |
200 | ||
201 | #define wxMDIParentFrame_ActivateNext(_swigobj) (_swigobj->ActivateNext()) | |
107e4716 | 202 | static PyObject *_wrap_wxMDIParentFrame_ActivateNext(PyObject *self, PyObject *args, PyObject *kwargs) { |
70551f47 RD |
203 | PyObject * _resultobj; |
204 | wxMDIParentFrame * _arg0; | |
2d091820 | 205 | PyObject * _argo0 = 0; |
107e4716 | 206 | char *_kwnames[] = { "self", NULL }; |
70551f47 RD |
207 | |
208 | self = self; | |
107e4716 | 209 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMDIParentFrame_ActivateNext",_kwnames,&_argo0)) |
70551f47 | 210 | return NULL; |
2d091820 RD |
211 | if (_argo0) { |
212 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
213 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMDIParentFrame_p")) { | |
70551f47 RD |
214 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMDIParentFrame_ActivateNext. Expected _wxMDIParentFrame_p."); |
215 | return NULL; | |
216 | } | |
217 | } | |
ab9bc19b RD |
218 | { |
219 | wxPy_BEGIN_ALLOW_THREADS; | |
220 | wxMDIParentFrame_ActivateNext(_arg0); | |
221 | ||
222 | wxPy_END_ALLOW_THREADS; | |
223 | } Py_INCREF(Py_None); | |
70551f47 RD |
224 | _resultobj = Py_None; |
225 | return _resultobj; | |
226 | } | |
227 | ||
228 | #define wxMDIParentFrame_ActivatePrevious(_swigobj) (_swigobj->ActivatePrevious()) | |
107e4716 | 229 | static PyObject *_wrap_wxMDIParentFrame_ActivatePrevious(PyObject *self, PyObject *args, PyObject *kwargs) { |
70551f47 RD |
230 | PyObject * _resultobj; |
231 | wxMDIParentFrame * _arg0; | |
2d091820 | 232 | PyObject * _argo0 = 0; |
107e4716 | 233 | char *_kwnames[] = { "self", NULL }; |
70551f47 RD |
234 | |
235 | self = self; | |
107e4716 | 236 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMDIParentFrame_ActivatePrevious",_kwnames,&_argo0)) |
70551f47 | 237 | return NULL; |
2d091820 RD |
238 | if (_argo0) { |
239 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
240 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMDIParentFrame_p")) { | |
70551f47 RD |
241 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMDIParentFrame_ActivatePrevious. Expected _wxMDIParentFrame_p."); |
242 | return NULL; | |
243 | } | |
244 | } | |
ab9bc19b RD |
245 | { |
246 | wxPy_BEGIN_ALLOW_THREADS; | |
247 | wxMDIParentFrame_ActivatePrevious(_arg0); | |
248 | ||
249 | wxPy_END_ALLOW_THREADS; | |
250 | } Py_INCREF(Py_None); | |
70551f47 RD |
251 | _resultobj = Py_None; |
252 | return _resultobj; | |
253 | } | |
254 | ||
255 | #define wxMDIParentFrame_ArrangeIcons(_swigobj) (_swigobj->ArrangeIcons()) | |
107e4716 | 256 | static PyObject *_wrap_wxMDIParentFrame_ArrangeIcons(PyObject *self, PyObject *args, PyObject *kwargs) { |
70551f47 RD |
257 | PyObject * _resultobj; |
258 | wxMDIParentFrame * _arg0; | |
2d091820 | 259 | PyObject * _argo0 = 0; |
107e4716 | 260 | char *_kwnames[] = { "self", NULL }; |
70551f47 RD |
261 | |
262 | self = self; | |
107e4716 | 263 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMDIParentFrame_ArrangeIcons",_kwnames,&_argo0)) |
70551f47 | 264 | return NULL; |
2d091820 RD |
265 | if (_argo0) { |
266 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
267 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMDIParentFrame_p")) { | |
70551f47 RD |
268 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMDIParentFrame_ArrangeIcons. Expected _wxMDIParentFrame_p."); |
269 | return NULL; | |
270 | } | |
271 | } | |
ab9bc19b RD |
272 | { |
273 | wxPy_BEGIN_ALLOW_THREADS; | |
274 | wxMDIParentFrame_ArrangeIcons(_arg0); | |
275 | ||
276 | wxPy_END_ALLOW_THREADS; | |
277 | } Py_INCREF(Py_None); | |
70551f47 RD |
278 | _resultobj = Py_None; |
279 | return _resultobj; | |
280 | } | |
281 | ||
282 | #define wxMDIParentFrame_Cascade(_swigobj) (_swigobj->Cascade()) | |
107e4716 | 283 | static PyObject *_wrap_wxMDIParentFrame_Cascade(PyObject *self, PyObject *args, PyObject *kwargs) { |
70551f47 RD |
284 | PyObject * _resultobj; |
285 | wxMDIParentFrame * _arg0; | |
2d091820 | 286 | PyObject * _argo0 = 0; |
107e4716 | 287 | char *_kwnames[] = { "self", NULL }; |
70551f47 RD |
288 | |
289 | self = self; | |
107e4716 | 290 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMDIParentFrame_Cascade",_kwnames,&_argo0)) |
70551f47 | 291 | return NULL; |
2d091820 RD |
292 | if (_argo0) { |
293 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
294 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMDIParentFrame_p")) { | |
70551f47 RD |
295 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMDIParentFrame_Cascade. Expected _wxMDIParentFrame_p."); |
296 | return NULL; | |
297 | } | |
298 | } | |
ab9bc19b RD |
299 | { |
300 | wxPy_BEGIN_ALLOW_THREADS; | |
301 | wxMDIParentFrame_Cascade(_arg0); | |
302 | ||
303 | wxPy_END_ALLOW_THREADS; | |
304 | } Py_INCREF(Py_None); | |
70551f47 RD |
305 | _resultobj = Py_None; |
306 | return _resultobj; | |
307 | } | |
308 | ||
70551f47 | 309 | #define wxMDIParentFrame_GetActiveChild(_swigobj) (_swigobj->GetActiveChild()) |
107e4716 | 310 | static PyObject *_wrap_wxMDIParentFrame_GetActiveChild(PyObject *self, PyObject *args, PyObject *kwargs) { |
70551f47 RD |
311 | PyObject * _resultobj; |
312 | wxMDIChildFrame * _result; | |
313 | wxMDIParentFrame * _arg0; | |
2d091820 | 314 | PyObject * _argo0 = 0; |
107e4716 | 315 | char *_kwnames[] = { "self", NULL }; |
70551f47 RD |
316 | char _ptemp[128]; |
317 | ||
318 | self = self; | |
107e4716 | 319 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMDIParentFrame_GetActiveChild",_kwnames,&_argo0)) |
70551f47 | 320 | return NULL; |
2d091820 RD |
321 | if (_argo0) { |
322 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
323 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMDIParentFrame_p")) { | |
70551f47 RD |
324 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMDIParentFrame_GetActiveChild. Expected _wxMDIParentFrame_p."); |
325 | return NULL; | |
326 | } | |
327 | } | |
ab9bc19b RD |
328 | { |
329 | wxPy_BEGIN_ALLOW_THREADS; | |
330 | _result = (wxMDIChildFrame *)wxMDIParentFrame_GetActiveChild(_arg0); | |
331 | ||
332 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
333 | } if (_result) { |
334 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxMDIChildFrame_p"); | |
335 | _resultobj = Py_BuildValue("s",_ptemp); | |
336 | } else { | |
337 | Py_INCREF(Py_None); | |
338 | _resultobj = Py_None; | |
339 | } | |
70551f47 RD |
340 | return _resultobj; |
341 | } | |
342 | ||
343 | #define wxMDIParentFrame_GetClientWindow(_swigobj) (_swigobj->GetClientWindow()) | |
107e4716 | 344 | static PyObject *_wrap_wxMDIParentFrame_GetClientWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
70551f47 RD |
345 | PyObject * _resultobj; |
346 | wxMDIClientWindow * _result; | |
347 | wxMDIParentFrame * _arg0; | |
2d091820 | 348 | PyObject * _argo0 = 0; |
107e4716 | 349 | char *_kwnames[] = { "self", NULL }; |
70551f47 RD |
350 | char _ptemp[128]; |
351 | ||
352 | self = self; | |
107e4716 | 353 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMDIParentFrame_GetClientWindow",_kwnames,&_argo0)) |
70551f47 | 354 | return NULL; |
2d091820 RD |
355 | if (_argo0) { |
356 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
357 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMDIParentFrame_p")) { | |
70551f47 RD |
358 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMDIParentFrame_GetClientWindow. Expected _wxMDIParentFrame_p."); |
359 | return NULL; | |
360 | } | |
361 | } | |
ab9bc19b RD |
362 | { |
363 | wxPy_BEGIN_ALLOW_THREADS; | |
364 | _result = (wxMDIClientWindow *)wxMDIParentFrame_GetClientWindow(_arg0); | |
365 | ||
366 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
367 | } if (_result) { |
368 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxMDIClientWindow_p"); | |
369 | _resultobj = Py_BuildValue("s",_ptemp); | |
370 | } else { | |
371 | Py_INCREF(Py_None); | |
372 | _resultobj = Py_None; | |
373 | } | |
70551f47 RD |
374 | return _resultobj; |
375 | } | |
376 | ||
377 | #define wxMDIParentFrame_GetToolBar(_swigobj) (_swigobj->GetToolBar()) | |
107e4716 | 378 | static PyObject *_wrap_wxMDIParentFrame_GetToolBar(PyObject *self, PyObject *args, PyObject *kwargs) { |
70551f47 RD |
379 | PyObject * _resultobj; |
380 | wxWindow * _result; | |
381 | wxMDIParentFrame * _arg0; | |
2d091820 | 382 | PyObject * _argo0 = 0; |
107e4716 | 383 | char *_kwnames[] = { "self", NULL }; |
70551f47 RD |
384 | char _ptemp[128]; |
385 | ||
386 | self = self; | |
107e4716 | 387 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMDIParentFrame_GetToolBar",_kwnames,&_argo0)) |
70551f47 | 388 | return NULL; |
2d091820 RD |
389 | if (_argo0) { |
390 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
391 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMDIParentFrame_p")) { | |
70551f47 RD |
392 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMDIParentFrame_GetToolBar. Expected _wxMDIParentFrame_p."); |
393 | return NULL; | |
394 | } | |
395 | } | |
ab9bc19b RD |
396 | { |
397 | wxPy_BEGIN_ALLOW_THREADS; | |
398 | _result = (wxWindow *)wxMDIParentFrame_GetToolBar(_arg0); | |
399 | ||
400 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
401 | } if (_result) { |
402 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxWindow_p"); | |
403 | _resultobj = Py_BuildValue("s",_ptemp); | |
404 | } else { | |
405 | Py_INCREF(Py_None); | |
406 | _resultobj = Py_None; | |
407 | } | |
70551f47 RD |
408 | return _resultobj; |
409 | } | |
410 | ||
411 | #define wxMDIParentFrame_Tile(_swigobj) (_swigobj->Tile()) | |
107e4716 | 412 | static PyObject *_wrap_wxMDIParentFrame_Tile(PyObject *self, PyObject *args, PyObject *kwargs) { |
70551f47 RD |
413 | PyObject * _resultobj; |
414 | wxMDIParentFrame * _arg0; | |
2d091820 | 415 | PyObject * _argo0 = 0; |
107e4716 | 416 | char *_kwnames[] = { "self", NULL }; |
70551f47 RD |
417 | |
418 | self = self; | |
107e4716 | 419 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMDIParentFrame_Tile",_kwnames,&_argo0)) |
70551f47 | 420 | return NULL; |
2d091820 RD |
421 | if (_argo0) { |
422 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
423 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMDIParentFrame_p")) { | |
70551f47 RD |
424 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMDIParentFrame_Tile. Expected _wxMDIParentFrame_p."); |
425 | return NULL; | |
426 | } | |
427 | } | |
ab9bc19b RD |
428 | { |
429 | wxPy_BEGIN_ALLOW_THREADS; | |
430 | wxMDIParentFrame_Tile(_arg0); | |
431 | ||
432 | wxPy_END_ALLOW_THREADS; | |
433 | } Py_INCREF(Py_None); | |
70551f47 RD |
434 | _resultobj = Py_None; |
435 | return _resultobj; | |
436 | } | |
437 | ||
438 | static void *SwigwxMDIChildFrameTowxFrame(void *ptr) { | |
439 | wxMDIChildFrame *src; | |
440 | wxFrame *dest; | |
441 | src = (wxMDIChildFrame *) ptr; | |
442 | dest = (wxFrame *) src; | |
443 | return (void *) dest; | |
444 | } | |
445 | ||
446 | static void *SwigwxMDIChildFrameTowxWindow(void *ptr) { | |
447 | wxMDIChildFrame *src; | |
448 | wxWindow *dest; | |
449 | src = (wxMDIChildFrame *) ptr; | |
450 | dest = (wxWindow *) src; | |
451 | return (void *) dest; | |
452 | } | |
453 | ||
454 | static void *SwigwxMDIChildFrameTowxEvtHandler(void *ptr) { | |
455 | wxMDIChildFrame *src; | |
456 | wxEvtHandler *dest; | |
457 | src = (wxMDIChildFrame *) ptr; | |
458 | dest = (wxEvtHandler *) src; | |
459 | return (void *) dest; | |
460 | } | |
461 | ||
462 | #define new_wxMDIChildFrame(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (new wxMDIChildFrame(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6)) | |
107e4716 | 463 | static PyObject *_wrap_new_wxMDIChildFrame(PyObject *self, PyObject *args, PyObject *kwargs) { |
70551f47 RD |
464 | PyObject * _resultobj; |
465 | wxMDIChildFrame * _result; | |
466 | wxMDIParentFrame * _arg0; | |
467 | wxWindowID _arg1; | |
468 | wxString * _arg2; | |
2d091820 RD |
469 | wxPoint * _arg3 = (wxPoint *) &wxPyDefaultPosition; |
470 | wxSize * _arg4 = (wxSize *) &wxPyDefaultSize; | |
471 | long _arg5 = (long ) wxDEFAULT_FRAME_STYLE; | |
472 | char * _arg6 = (char *) "frame"; | |
473 | PyObject * _argo0 = 0; | |
70551f47 | 474 | PyObject * _obj2 = 0; |
37f6a977 RD |
475 | wxPoint temp; |
476 | PyObject * _obj3 = 0; | |
477 | wxSize temp0; | |
478 | PyObject * _obj4 = 0; | |
107e4716 | 479 | char *_kwnames[] = { "parent","id","title","pos","size","style","name", NULL }; |
70551f47 RD |
480 | char _ptemp[128]; |
481 | ||
482 | self = self; | |
37f6a977 | 483 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO|OOls:new_wxMDIChildFrame",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_obj4,&_arg5,&_arg6)) |
70551f47 | 484 | return NULL; |
2d091820 RD |
485 | if (_argo0) { |
486 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
487 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMDIParentFrame_p")) { | |
70551f47 RD |
488 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxMDIChildFrame. Expected _wxMDIParentFrame_p."); |
489 | return NULL; | |
490 | } | |
491 | } | |
492 | { | |
493 | if (!PyString_Check(_obj2)) { | |
494 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
495 | return NULL; | |
496 | } | |
ab9bc19b | 497 | _arg2 = new wxString(PyString_AsString(_obj2), PyString_Size(_obj2)); |
70551f47 | 498 | } |
37f6a977 RD |
499 | if (_obj3) |
500 | { | |
501 | _arg3 = &temp; | |
502 | if (! wxPoint_helper(_obj3, &_arg3)) | |
70551f47 | 503 | return NULL; |
37f6a977 RD |
504 | } |
505 | if (_obj4) | |
506 | { | |
507 | _arg4 = &temp0; | |
508 | if (! wxSize_helper(_obj4, &_arg4)) | |
70551f47 | 509 | return NULL; |
37f6a977 | 510 | } |
ab9bc19b RD |
511 | { |
512 | wxPy_BEGIN_ALLOW_THREADS; | |
513 | _result = (wxMDIChildFrame *)new_wxMDIChildFrame(_arg0,_arg1,*_arg2,*_arg3,*_arg4,_arg5,_arg6); | |
514 | ||
515 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
516 | } if (_result) { |
517 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxMDIChildFrame_p"); | |
518 | _resultobj = Py_BuildValue("s",_ptemp); | |
519 | } else { | |
520 | Py_INCREF(Py_None); | |
521 | _resultobj = Py_None; | |
522 | } | |
70551f47 RD |
523 | { |
524 | if (_obj2) | |
525 | delete _arg2; | |
526 | } | |
527 | return _resultobj; | |
528 | } | |
529 | ||
530 | #define wxMDIChildFrame_Activate(_swigobj) (_swigobj->Activate()) | |
107e4716 | 531 | static PyObject *_wrap_wxMDIChildFrame_Activate(PyObject *self, PyObject *args, PyObject *kwargs) { |
70551f47 RD |
532 | PyObject * _resultobj; |
533 | wxMDIChildFrame * _arg0; | |
2d091820 | 534 | PyObject * _argo0 = 0; |
107e4716 | 535 | char *_kwnames[] = { "self", NULL }; |
70551f47 RD |
536 | |
537 | self = self; | |
107e4716 | 538 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMDIChildFrame_Activate",_kwnames,&_argo0)) |
70551f47 | 539 | return NULL; |
2d091820 RD |
540 | if (_argo0) { |
541 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
542 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMDIChildFrame_p")) { | |
70551f47 RD |
543 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMDIChildFrame_Activate. Expected _wxMDIChildFrame_p."); |
544 | return NULL; | |
545 | } | |
546 | } | |
ab9bc19b RD |
547 | { |
548 | wxPy_BEGIN_ALLOW_THREADS; | |
549 | wxMDIChildFrame_Activate(_arg0); | |
550 | ||
551 | wxPy_END_ALLOW_THREADS; | |
552 | } Py_INCREF(Py_None); | |
70551f47 RD |
553 | _resultobj = Py_None; |
554 | return _resultobj; | |
555 | } | |
556 | ||
ab9bc19b | 557 | #define wxMDIChildFrame_Maximize(_swigobj,_swigarg0) (_swigobj->Maximize(_swigarg0)) |
107e4716 | 558 | static PyObject *_wrap_wxMDIChildFrame_Maximize(PyObject *self, PyObject *args, PyObject *kwargs) { |
70551f47 RD |
559 | PyObject * _resultobj; |
560 | wxMDIChildFrame * _arg0; | |
ab9bc19b | 561 | bool _arg1; |
2d091820 | 562 | PyObject * _argo0 = 0; |
ab9bc19b | 563 | int tempbool1; |
107e4716 | 564 | char *_kwnames[] = { "self","maximize", NULL }; |
70551f47 RD |
565 | |
566 | self = self; | |
107e4716 | 567 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMDIChildFrame_Maximize",_kwnames,&_argo0,&tempbool1)) |
70551f47 | 568 | return NULL; |
2d091820 RD |
569 | if (_argo0) { |
570 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
571 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMDIChildFrame_p")) { | |
70551f47 RD |
572 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMDIChildFrame_Maximize. Expected _wxMDIChildFrame_p."); |
573 | return NULL; | |
574 | } | |
575 | } | |
ab9bc19b RD |
576 | _arg1 = (bool ) tempbool1; |
577 | { | |
578 | wxPy_BEGIN_ALLOW_THREADS; | |
579 | wxMDIChildFrame_Maximize(_arg0,_arg1); | |
580 | ||
581 | wxPy_END_ALLOW_THREADS; | |
582 | } Py_INCREF(Py_None); | |
70551f47 RD |
583 | _resultobj = Py_None; |
584 | return _resultobj; | |
585 | } | |
586 | ||
587 | #define wxMDIChildFrame_Restore(_swigobj) (_swigobj->Restore()) | |
107e4716 | 588 | static PyObject *_wrap_wxMDIChildFrame_Restore(PyObject *self, PyObject *args, PyObject *kwargs) { |
70551f47 RD |
589 | PyObject * _resultobj; |
590 | wxMDIChildFrame * _arg0; | |
2d091820 | 591 | PyObject * _argo0 = 0; |
107e4716 | 592 | char *_kwnames[] = { "self", NULL }; |
70551f47 RD |
593 | |
594 | self = self; | |
107e4716 | 595 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMDIChildFrame_Restore",_kwnames,&_argo0)) |
70551f47 | 596 | return NULL; |
2d091820 RD |
597 | if (_argo0) { |
598 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
599 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMDIChildFrame_p")) { | |
70551f47 RD |
600 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMDIChildFrame_Restore. Expected _wxMDIChildFrame_p."); |
601 | return NULL; | |
602 | } | |
603 | } | |
ab9bc19b RD |
604 | { |
605 | wxPy_BEGIN_ALLOW_THREADS; | |
606 | wxMDIChildFrame_Restore(_arg0); | |
607 | ||
608 | wxPy_END_ALLOW_THREADS; | |
609 | } Py_INCREF(Py_None); | |
70551f47 RD |
610 | _resultobj = Py_None; |
611 | return _resultobj; | |
612 | } | |
613 | ||
70551f47 RD |
614 | static void *SwigwxMDIClientWindowTowxWindow(void *ptr) { |
615 | wxMDIClientWindow *src; | |
616 | wxWindow *dest; | |
617 | src = (wxMDIClientWindow *) ptr; | |
618 | dest = (wxWindow *) src; | |
619 | return (void *) dest; | |
620 | } | |
621 | ||
622 | static void *SwigwxMDIClientWindowTowxEvtHandler(void *ptr) { | |
623 | wxMDIClientWindow *src; | |
624 | wxEvtHandler *dest; | |
625 | src = (wxMDIClientWindow *) ptr; | |
626 | dest = (wxEvtHandler *) src; | |
627 | return (void *) dest; | |
628 | } | |
629 | ||
630 | #define new_wxMDIClientWindow(_swigarg0,_swigarg1) (new wxMDIClientWindow(_swigarg0,_swigarg1)) | |
107e4716 | 631 | static PyObject *_wrap_new_wxMDIClientWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
70551f47 RD |
632 | PyObject * _resultobj; |
633 | wxMDIClientWindow * _result; | |
634 | wxMDIParentFrame * _arg0; | |
2d091820 RD |
635 | long _arg1 = (long ) 0; |
636 | PyObject * _argo0 = 0; | |
107e4716 | 637 | char *_kwnames[] = { "parent","style", NULL }; |
70551f47 RD |
638 | char _ptemp[128]; |
639 | ||
640 | self = self; | |
107e4716 | 641 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|l:new_wxMDIClientWindow",_kwnames,&_argo0,&_arg1)) |
70551f47 | 642 | return NULL; |
2d091820 RD |
643 | if (_argo0) { |
644 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
645 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMDIParentFrame_p")) { | |
70551f47 RD |
646 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxMDIClientWindow. Expected _wxMDIParentFrame_p."); |
647 | return NULL; | |
648 | } | |
649 | } | |
ab9bc19b RD |
650 | { |
651 | wxPy_BEGIN_ALLOW_THREADS; | |
652 | _result = (wxMDIClientWindow *)new_wxMDIClientWindow(_arg0,_arg1); | |
653 | ||
654 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
655 | } if (_result) { |
656 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxMDIClientWindow_p"); | |
657 | _resultobj = Py_BuildValue("s",_ptemp); | |
658 | } else { | |
659 | Py_INCREF(Py_None); | |
660 | _resultobj = Py_None; | |
661 | } | |
70551f47 RD |
662 | return _resultobj; |
663 | } | |
664 | ||
665 | static PyMethodDef mdicMethods[] = { | |
107e4716 RD |
666 | { "new_wxMDIClientWindow", (PyCFunction) _wrap_new_wxMDIClientWindow, METH_VARARGS | METH_KEYWORDS }, |
667 | { "wxMDIChildFrame_Restore", (PyCFunction) _wrap_wxMDIChildFrame_Restore, METH_VARARGS | METH_KEYWORDS }, | |
668 | { "wxMDIChildFrame_Maximize", (PyCFunction) _wrap_wxMDIChildFrame_Maximize, METH_VARARGS | METH_KEYWORDS }, | |
669 | { "wxMDIChildFrame_Activate", (PyCFunction) _wrap_wxMDIChildFrame_Activate, METH_VARARGS | METH_KEYWORDS }, | |
670 | { "new_wxMDIChildFrame", (PyCFunction) _wrap_new_wxMDIChildFrame, METH_VARARGS | METH_KEYWORDS }, | |
671 | { "wxMDIParentFrame_Tile", (PyCFunction) _wrap_wxMDIParentFrame_Tile, METH_VARARGS | METH_KEYWORDS }, | |
672 | { "wxMDIParentFrame_GetToolBar", (PyCFunction) _wrap_wxMDIParentFrame_GetToolBar, METH_VARARGS | METH_KEYWORDS }, | |
673 | { "wxMDIParentFrame_GetClientWindow", (PyCFunction) _wrap_wxMDIParentFrame_GetClientWindow, METH_VARARGS | METH_KEYWORDS }, | |
674 | { "wxMDIParentFrame_GetActiveChild", (PyCFunction) _wrap_wxMDIParentFrame_GetActiveChild, METH_VARARGS | METH_KEYWORDS }, | |
675 | { "wxMDIParentFrame_Cascade", (PyCFunction) _wrap_wxMDIParentFrame_Cascade, METH_VARARGS | METH_KEYWORDS }, | |
676 | { "wxMDIParentFrame_ArrangeIcons", (PyCFunction) _wrap_wxMDIParentFrame_ArrangeIcons, METH_VARARGS | METH_KEYWORDS }, | |
677 | { "wxMDIParentFrame_ActivatePrevious", (PyCFunction) _wrap_wxMDIParentFrame_ActivatePrevious, METH_VARARGS | METH_KEYWORDS }, | |
678 | { "wxMDIParentFrame_ActivateNext", (PyCFunction) _wrap_wxMDIParentFrame_ActivateNext, METH_VARARGS | METH_KEYWORDS }, | |
679 | { "new_wxMDIParentFrame", (PyCFunction) _wrap_new_wxMDIParentFrame, METH_VARARGS | METH_KEYWORDS }, | |
70551f47 RD |
680 | { NULL, NULL } |
681 | }; | |
2d091820 RD |
682 | #ifdef __cplusplus |
683 | } | |
684 | #endif | |
685 | /* | |
686 | * This table is used by the pointer type-checker | |
687 | */ | |
688 | static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = { | |
689 | { "_wxAcceleratorTable","_class_wxAcceleratorTable",0}, | |
690 | { "_wxEvent","_class_wxEvent",0}, | |
691 | { "_class_wxActivateEvent","_wxActivateEvent",0}, | |
692 | { "_signed_long","_long",0}, | |
693 | { "_wxMenuEvent","_class_wxMenuEvent",0}, | |
4120ef2b RD |
694 | { "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0}, |
695 | { "_wxBitmapDataObject","_class_wxBitmapDataObject",0}, | |
37f6a977 | 696 | { "_class_wxPyCommandEvent","_wxPyCommandEvent",0}, |
4120ef2b | 697 | { "_wxPrintQuality","_wxCoord",0}, |
2d091820 RD |
698 | { "_wxPrintQuality","_int",0}, |
699 | { "_wxPrintQuality","_signed_int",0}, | |
700 | { "_wxPrintQuality","_unsigned_int",0}, | |
701 | { "_wxPrintQuality","_wxWindowID",0}, | |
702 | { "_wxPrintQuality","_uint",0}, | |
703 | { "_wxPrintQuality","_EBool",0}, | |
704 | { "_wxPrintQuality","_size_t",0}, | |
c368d904 | 705 | { "_wxPrintQuality","_time_t",0}, |
4120ef2b | 706 | { "_class_wxCustomDataObject","_wxCustomDataObject",0}, |
3ca6a5f0 | 707 | { "_wxSpinCtrl","_class_wxSpinCtrl",0}, |
2d091820 | 708 | { "_class_wxRegionIterator","_wxRegionIterator",0}, |
4120ef2b | 709 | { "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0}, |
2d091820 RD |
710 | { "_class_wxMenuBar","_wxMenuBar",0}, |
711 | { "_class_wxEvtHandler","_class_wxMDIClientWindow",SwigwxMDIClientWindowTowxEvtHandler}, | |
712 | { "_class_wxEvtHandler","_wxMDIClientWindow",SwigwxMDIClientWindowTowxEvtHandler}, | |
713 | { "_class_wxEvtHandler","_class_wxMDIChildFrame",SwigwxMDIChildFrameTowxEvtHandler}, | |
714 | { "_class_wxEvtHandler","_wxMDIChildFrame",SwigwxMDIChildFrameTowxEvtHandler}, | |
715 | { "_class_wxEvtHandler","_class_wxMDIParentFrame",SwigwxMDIParentFrameTowxEvtHandler}, | |
716 | { "_class_wxEvtHandler","_wxMDIParentFrame",SwigwxMDIParentFrameTowxEvtHandler}, | |
717 | { "_class_wxEvtHandler","_wxEvtHandler",0}, | |
718 | { "_wxPaintEvent","_class_wxPaintEvent",0}, | |
719 | { "_wxIndividualLayoutConstraint","_class_wxIndividualLayoutConstraint",0}, | |
720 | { "_wxCursor","_class_wxCursor",0}, | |
721 | { "_wxNotifyEvent","_class_wxNotifyEvent",0}, | |
ab2208b5 | 722 | { "_class_wxToolBarBase","_wxToolBarBase",0}, |
2d091820 RD |
723 | { "_wxMask","_class_wxMask",0}, |
724 | { "_wxPen","_class_wxPen",0}, | |
725 | { "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0}, | |
726 | { "_byte","_unsigned_char",0}, | |
4120ef2b | 727 | { "_wxDataObject","_class_wxDataObject",0}, |
2d091820 | 728 | { "_wxStaticBox","_class_wxStaticBox",0}, |
4120ef2b RD |
729 | { "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0}, |
730 | { "_wxPyDropSource","_class_wxPyDropSource",0}, | |
2d091820 RD |
731 | { "_wxChoice","_class_wxChoice",0}, |
732 | { "_wxSlider","_class_wxSlider",0}, | |
2d091820 RD |
733 | { "_long","_unsigned_long",0}, |
734 | { "_long","_signed_long",0}, | |
735 | { "_wxImageList","_class_wxImageList",0}, | |
4120ef2b | 736 | { "_wxDataObjectSimple","_class_wxDataObjectSimple",0}, |
2d091820 RD |
737 | { "_wxDropFilesEvent","_class_wxDropFilesEvent",0}, |
738 | { "_wxBitmapButton","_class_wxBitmapButton",0}, | |
739 | { "_class_wxAcceleratorTable","_wxAcceleratorTable",0}, | |
4120ef2b | 740 | { "_class_wxClipboard","_wxClipboard",0}, |
2d091820 RD |
741 | { "_class_wxGauge","_wxGauge",0}, |
742 | { "_wxDC","_class_wxDC",0}, | |
4120ef2b | 743 | { "_class_wxBitmapDataObject","_wxBitmapDataObject",0}, |
2d091820 | 744 | { "_wxSpinEvent","_class_wxSpinEvent",0}, |
4120ef2b | 745 | { "_size_t","_wxCoord",0}, |
2d091820 | 746 | { "_size_t","_wxPrintQuality",0}, |
c368d904 | 747 | { "_size_t","_time_t",0}, |
2d091820 RD |
748 | { "_size_t","_unsigned_int",0}, |
749 | { "_size_t","_int",0}, | |
750 | { "_size_t","_wxWindowID",0}, | |
751 | { "_size_t","_uint",0}, | |
752 | { "_class_wxRealPoint","_wxRealPoint",0}, | |
167b96c2 RD |
753 | { "_wxNavigationKeyEvent","_class_wxNavigationKeyEvent",0}, |
754 | { "_wxWindowCreateEvent","_class_wxWindowCreateEvent",0}, | |
2d091820 RD |
755 | { "_class_wxMenuItem","_wxMenuItem",0}, |
756 | { "_class_wxPaintEvent","_wxPaintEvent",0}, | |
757 | { "_wxSysColourChangedEvent","_class_wxSysColourChangedEvent",0}, | |
758 | { "_class_wxStatusBar","_wxStatusBar",0}, | |
759 | { "_class_wxPostScriptDC","_wxPostScriptDC",0}, | |
760 | { "_wxPanel","_class_wxPanel",0}, | |
761 | { "_wxInitDialogEvent","_class_wxInitDialogEvent",0}, | |
762 | { "_wxCheckBox","_class_wxCheckBox",0}, | |
763 | { "_wxPyEvent","_class_wxPyEvent",0}, | |
764 | { "_wxTextCtrl","_class_wxTextCtrl",0}, | |
765 | { "_class_wxMask","_wxMask",0}, | |
4120ef2b | 766 | { "_wxTextDataObject","_class_wxTextDataObject",0}, |
2d091820 RD |
767 | { "_class_wxKeyEvent","_wxKeyEvent",0}, |
768 | { "_wxColour","_class_wxColour",0}, | |
769 | { "_class_wxDialog","_wxDialog",0}, | |
4120ef2b | 770 | { "_class_wxFileDataObject","_wxFileDataObject",0}, |
2d091820 RD |
771 | { "_wxIdleEvent","_class_wxIdleEvent",0}, |
772 | { "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0}, | |
773 | { "_wxToolBar","_class_wxToolBar",0}, | |
4120ef2b | 774 | { "_class_wxDataObject","_wxDataObject",0}, |
2d091820 RD |
775 | { "_wxStaticLine","_class_wxStaticLine",0}, |
776 | { "_wxBrush","_class_wxBrush",0}, | |
777 | { "_wxMiniFrame","_class_wxMiniFrame",0}, | |
4120ef2b RD |
778 | { "_wxDataFormat","_class_wxDataFormat",0}, |
779 | { "_class_wxDataObjectSimple","_wxDataObjectSimple",0}, | |
2d091820 | 780 | { "_wxShowEvent","_class_wxShowEvent",0}, |
4120ef2b | 781 | { "_uint","_wxCoord",0}, |
2d091820 | 782 | { "_uint","_wxPrintQuality",0}, |
c368d904 | 783 | { "_uint","_time_t",0}, |
2d091820 RD |
784 | { "_uint","_size_t",0}, |
785 | { "_uint","_unsigned_int",0}, | |
786 | { "_uint","_int",0}, | |
787 | { "_uint","_wxWindowID",0}, | |
f6bcfd97 | 788 | { "_wxChar","_char",0}, |
37f6a977 | 789 | { "_wxPyValidator","_class_wxPyValidator",0}, |
2d091820 RD |
790 | { "_class_wxEvent","_wxEvent",0}, |
791 | { "_wxCheckListBox","_class_wxCheckListBox",0}, | |
792 | { "_wxRect","_class_wxRect",0}, | |
793 | { "_wxCommandEvent","_class_wxCommandEvent",0}, | |
794 | { "_wxSizeEvent","_class_wxSizeEvent",0}, | |
795 | { "_wxPoint","_class_wxPoint",0}, | |
796 | { "_class_wxButton","_wxButton",0}, | |
797 | { "_wxRadioBox","_class_wxRadioBox",0}, | |
3ca6a5f0 | 798 | { "_class_wxSpinCtrl","_wxSpinCtrl",0}, |
f6bcfd97 | 799 | { "_char","_wxChar",0}, |
2d091820 | 800 | { "_wxBitmap","_class_wxBitmap",0}, |
2d091820 | 801 | { "_wxWindowDC","_class_wxWindowDC",0}, |
f6bcfd97 | 802 | { "_wxTimerEvent","_class_wxTimerEvent",0}, |
2d091820 RD |
803 | { "_wxScrollBar","_class_wxScrollBar",0}, |
804 | { "_wxSpinButton","_class_wxSpinButton",0}, | |
2d091820 RD |
805 | { "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0}, |
806 | { "_class_wxNotifyEvent","_wxNotifyEvent",0}, | |
37f6a977 | 807 | { "_class_wxValidator","_wxValidator",0}, |
2d091820 RD |
808 | { "_class_wxPyEvent","_wxPyEvent",0}, |
809 | { "_class_wxIconizeEvent","_wxIconizeEvent",0}, | |
810 | { "_class_wxStaticBitmap","_wxStaticBitmap",0}, | |
ab2208b5 | 811 | { "_wxToolBarSimple","_class_wxToolBarSimple",0}, |
2d091820 RD |
812 | { "_wxMDIChildFrame","_class_wxMDIChildFrame",0}, |
813 | { "_class_wxToolBar","_wxToolBar",0}, | |
4120ef2b | 814 | { "_wxDropTarget","_class_wxDropTarget",0}, |
2d091820 RD |
815 | { "_class_wxStaticLine","_wxStaticLine",0}, |
816 | { "_wxScrollEvent","_class_wxScrollEvent",0}, | |
ab2208b5 | 817 | { "_wxToolBarToolBase","_class_wxToolBarToolBase",0}, |
4120ef2b | 818 | { "_EBool","_wxCoord",0}, |
2d091820 RD |
819 | { "_EBool","_wxPrintQuality",0}, |
820 | { "_EBool","_signed_int",0}, | |
821 | { "_EBool","_int",0}, | |
822 | { "_EBool","_wxWindowID",0}, | |
823 | { "_class_wxRegion","_wxRegion",0}, | |
4120ef2b | 824 | { "_class_wxDataFormat","_wxDataFormat",0}, |
2d091820 | 825 | { "_class_wxDropFilesEvent","_wxDropFilesEvent",0}, |
167b96c2 | 826 | { "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0}, |
2d091820 RD |
827 | { "_wxStaticText","_class_wxStaticText",0}, |
828 | { "_wxFont","_class_wxFont",0}, | |
4120ef2b | 829 | { "_class_wxPyDropTarget","_wxPyDropTarget",0}, |
2d091820 | 830 | { "_wxCloseEvent","_class_wxCloseEvent",0}, |
2d091820 RD |
831 | { "_unsigned_long","_long",0}, |
832 | { "_class_wxRect","_wxRect",0}, | |
833 | { "_class_wxDC","_wxDC",0}, | |
9cce9de1 | 834 | { "_wxScrollWinEvent","_class_wxScrollWinEvent",0}, |
167b96c2 RD |
835 | { "_wxQueryNewPaletteEvent","_class_wxQueryNewPaletteEvent",0}, |
836 | { "_class_wxWindowCreateEvent","_wxWindowCreateEvent",0}, | |
2d091820 | 837 | { "_wxMDIParentFrame","_class_wxMDIParentFrame",0}, |
2d091820 RD |
838 | { "_wxFocusEvent","_class_wxFocusEvent",0}, |
839 | { "_wxMaximizeEvent","_class_wxMaximizeEvent",0}, | |
f6bcfd97 | 840 | { "_class_wxTimerEvent","_wxTimerEvent",0}, |
2d091820 RD |
841 | { "_class_wxSpinButton","_wxSpinButton",0}, |
842 | { "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0}, | |
843 | { "_class_wxPanel","_wxPanel",0}, | |
844 | { "_class_wxCheckBox","_wxCheckBox",0}, | |
845 | { "_wxComboBox","_class_wxComboBox",0}, | |
846 | { "_wxRadioButton","_class_wxRadioButton",0}, | |
4120ef2b | 847 | { "_signed_int","_wxCoord",0}, |
2d091820 RD |
848 | { "_signed_int","_wxPrintQuality",0}, |
849 | { "_signed_int","_EBool",0}, | |
850 | { "_signed_int","_wxWindowID",0}, | |
851 | { "_signed_int","_int",0}, | |
852 | { "_class_wxTextCtrl","_wxTextCtrl",0}, | |
853 | { "_wxLayoutConstraints","_class_wxLayoutConstraints",0}, | |
4120ef2b | 854 | { "_class_wxTextDataObject","_wxTextDataObject",0}, |
2d091820 RD |
855 | { "_wxMenu","_class_wxMenu",0}, |
856 | { "_class_wxMoveEvent","_wxMoveEvent",0}, | |
857 | { "_wxListBox","_class_wxListBox",0}, | |
858 | { "_wxScreenDC","_class_wxScreenDC",0}, | |
ab2208b5 | 859 | { "_class_wxToolBarSimple","_wxToolBarSimple",0}, |
2d091820 RD |
860 | { "_class_wxMDIChildFrame","_wxMDIChildFrame",0}, |
861 | { "_WXTYPE","_short",0}, | |
862 | { "_WXTYPE","_signed_short",0}, | |
863 | { "_WXTYPE","_unsigned_short",0}, | |
4120ef2b | 864 | { "_class_wxDropTarget","_wxDropTarget",0}, |
2d091820 RD |
865 | { "_class_wxMDIClientWindow","_wxMDIClientWindow",0}, |
866 | { "_class_wxBrush","_wxBrush",0}, | |
867 | { "_unsigned_short","_WXTYPE",0}, | |
868 | { "_unsigned_short","_short",0}, | |
869 | { "_class_wxWindow","_class_wxMDIClientWindow",SwigwxMDIClientWindowTowxWindow}, | |
870 | { "_class_wxWindow","_wxMDIClientWindow",SwigwxMDIClientWindowTowxWindow}, | |
871 | { "_class_wxWindow","_class_wxMDIChildFrame",SwigwxMDIChildFrameTowxWindow}, | |
872 | { "_class_wxWindow","_wxMDIChildFrame",SwigwxMDIChildFrameTowxWindow}, | |
873 | { "_class_wxWindow","_class_wxMDIParentFrame",SwigwxMDIParentFrameTowxWindow}, | |
874 | { "_class_wxWindow","_wxMDIParentFrame",SwigwxMDIParentFrameTowxWindow}, | |
875 | { "_class_wxWindow","_wxWindow",0}, | |
876 | { "_class_wxStaticText","_wxStaticText",0}, | |
877 | { "_class_wxFont","_wxFont",0}, | |
4120ef2b | 878 | { "_wxClipboard","_class_wxClipboard",0}, |
37f6a977 | 879 | { "_class_wxPyValidator","_wxPyValidator",0}, |
2d091820 | 880 | { "_class_wxCloseEvent","_wxCloseEvent",0}, |
4120ef2b | 881 | { "_wxBusyInfo","_class_wxBusyInfo",0}, |
2d091820 | 882 | { "_class_wxMenuEvent","_wxMenuEvent",0}, |
167b96c2 | 883 | { "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0}, |
4120ef2b | 884 | { "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0}, |
2d091820 RD |
885 | { "_wxClientDC","_class_wxClientDC",0}, |
886 | { "_wxMouseEvent","_class_wxMouseEvent",0}, | |
887 | { "_class_wxPoint","_wxPoint",0}, | |
888 | { "_wxRealPoint","_class_wxRealPoint",0}, | |
889 | { "_class_wxRadioBox","_wxRadioBox",0}, | |
890 | { "_signed_short","_WXTYPE",0}, | |
891 | { "_signed_short","_short",0}, | |
892 | { "_wxMemoryDC","_class_wxMemoryDC",0}, | |
4120ef2b | 893 | { "_wxPyTextDataObject","_class_wxPyTextDataObject",0}, |
2d091820 RD |
894 | { "_wxPaintDC","_class_wxPaintDC",0}, |
895 | { "_class_wxWindowDC","_wxWindowDC",0}, | |
896 | { "_class_wxFocusEvent","_wxFocusEvent",0}, | |
897 | { "_class_wxMaximizeEvent","_wxMaximizeEvent",0}, | |
898 | { "_wxStatusBar","_class_wxStatusBar",0}, | |
2d091820 RD |
899 | { "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0}, |
900 | { "_class_wxCursor","_wxCursor",0}, | |
901 | { "_wxPostScriptDC","_class_wxPostScriptDC",0}, | |
4120ef2b | 902 | { "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0}, |
2d091820 RD |
903 | { "_wxScrolledWindow","_class_wxScrolledWindow",0}, |
904 | { "_unsigned_char","_byte",0}, | |
905 | { "_class_wxMenu","_wxMenu",0}, | |
906 | { "_wxControl","_class_wxControl",0}, | |
907 | { "_class_wxListBox","_wxListBox",0}, | |
4120ef2b | 908 | { "_unsigned_int","_wxCoord",0}, |
2d091820 | 909 | { "_unsigned_int","_wxPrintQuality",0}, |
c368d904 | 910 | { "_unsigned_int","_time_t",0}, |
2d091820 RD |
911 | { "_unsigned_int","_size_t",0}, |
912 | { "_unsigned_int","_uint",0}, | |
913 | { "_unsigned_int","_wxWindowID",0}, | |
914 | { "_unsigned_int","_int",0}, | |
915 | { "_wxIcon","_class_wxIcon",0}, | |
916 | { "_wxDialog","_class_wxDialog",0}, | |
917 | { "_class_wxPen","_wxPen",0}, | |
918 | { "_short","_WXTYPE",0}, | |
919 | { "_short","_unsigned_short",0}, | |
920 | { "_short","_signed_short",0}, | |
921 | { "_class_wxStaticBox","_wxStaticBox",0}, | |
4120ef2b RD |
922 | { "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0}, |
923 | { "_class_wxPyDropSource","_wxPyDropSource",0}, | |
2d091820 RD |
924 | { "_class_wxScrollEvent","_wxScrollEvent",0}, |
925 | { "_wxJoystickEvent","_class_wxJoystickEvent",0}, | |
926 | { "_class_wxChoice","_wxChoice",0}, | |
927 | { "_class_wxSlider","_wxSlider",0}, | |
928 | { "_class_wxImageList","_wxImageList",0}, | |
929 | { "_class_wxBitmapButton","_wxBitmapButton",0}, | |
930 | { "_wxFrame","_class_wxMDIChildFrame",SwigwxMDIChildFrameTowxFrame}, | |
931 | { "_wxFrame","_wxMDIChildFrame",SwigwxMDIChildFrameTowxFrame}, | |
932 | { "_wxFrame","_class_wxMDIParentFrame",SwigwxMDIParentFrameTowxFrame}, | |
933 | { "_wxFrame","_wxMDIParentFrame",SwigwxMDIParentFrameTowxFrame}, | |
934 | { "_wxFrame","_class_wxFrame",0}, | |
167b96c2 | 935 | { "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0}, |
4120ef2b | 936 | { "_wxWindowID","_wxCoord",0}, |
2d091820 | 937 | { "_wxWindowID","_wxPrintQuality",0}, |
c368d904 | 938 | { "_wxWindowID","_time_t",0}, |
2d091820 RD |
939 | { "_wxWindowID","_size_t",0}, |
940 | { "_wxWindowID","_EBool",0}, | |
941 | { "_wxWindowID","_uint",0}, | |
942 | { "_wxWindowID","_int",0}, | |
943 | { "_wxWindowID","_signed_int",0}, | |
944 | { "_wxWindowID","_unsigned_int",0}, | |
9cce9de1 | 945 | { "_class_wxScrollWinEvent","_wxScrollWinEvent",0}, |
4120ef2b | 946 | { "_int","_wxCoord",0}, |
2d091820 | 947 | { "_int","_wxPrintQuality",0}, |
c368d904 | 948 | { "_int","_time_t",0}, |
2d091820 RD |
949 | { "_int","_size_t",0}, |
950 | { "_int","_EBool",0}, | |
951 | { "_int","_uint",0}, | |
952 | { "_int","_wxWindowID",0}, | |
953 | { "_int","_unsigned_int",0}, | |
954 | { "_int","_signed_int",0}, | |
955 | { "_class_wxMouseEvent","_wxMouseEvent",0}, | |
37f6a977 | 956 | { "_wxPyCommandEvent","_class_wxPyCommandEvent",0}, |
2d091820 | 957 | { "_class_wxSpinEvent","_wxSpinEvent",0}, |
167b96c2 | 958 | { "_class_wxQueryNewPaletteEvent","_wxQueryNewPaletteEvent",0}, |
c368d904 RD |
959 | { "_time_t","_wxCoord",0}, |
960 | { "_time_t","_wxPrintQuality",0}, | |
961 | { "_time_t","_unsigned_int",0}, | |
962 | { "_time_t","_int",0}, | |
963 | { "_time_t","_wxWindowID",0}, | |
964 | { "_time_t","_uint",0}, | |
965 | { "_time_t","_size_t",0}, | |
167b96c2 | 966 | { "_class_wxNavigationKeyEvent","_wxNavigationKeyEvent",0}, |
2d091820 RD |
967 | { "_wxButton","_class_wxButton",0}, |
968 | { "_wxSize","_class_wxSize",0}, | |
969 | { "_wxRegionIterator","_class_wxRegionIterator",0}, | |
4120ef2b | 970 | { "_class_wxPyTextDataObject","_wxPyTextDataObject",0}, |
2d091820 RD |
971 | { "_class_wxMDIParentFrame","_wxMDIParentFrame",0}, |
972 | { "_class_wxPaintDC","_wxPaintDC",0}, | |
973 | { "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0}, | |
4120ef2b | 974 | { "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0}, |
2d091820 RD |
975 | { "_class_wxInitDialogEvent","_wxInitDialogEvent",0}, |
976 | { "_class_wxComboBox","_wxComboBox",0}, | |
977 | { "_class_wxRadioButton","_wxRadioButton",0}, | |
37f6a977 | 978 | { "_wxValidator","_class_wxValidator",0}, |
ab2208b5 | 979 | { "_wxToolBarBase","_class_wxToolBarBase",0}, |
2d091820 RD |
980 | { "_class_wxLayoutConstraints","_wxLayoutConstraints",0}, |
981 | { "_wxIconizeEvent","_class_wxIconizeEvent",0}, | |
982 | { "_class_wxControl","_wxControl",0}, | |
983 | { "_wxStaticBitmap","_class_wxStaticBitmap",0}, | |
984 | { "_class_wxIcon","_wxIcon",0}, | |
985 | { "_class_wxColour","_wxColour",0}, | |
986 | { "_class_wxScreenDC","_wxScreenDC",0}, | |
987 | { "_wxPalette","_class_wxPalette",0}, | |
988 | { "_class_wxIdleEvent","_wxIdleEvent",0}, | |
4120ef2b RD |
989 | { "_wxCoord","_int",0}, |
990 | { "_wxCoord","_signed_int",0}, | |
991 | { "_wxCoord","_unsigned_int",0}, | |
992 | { "_wxCoord","_wxWindowID",0}, | |
993 | { "_wxCoord","_uint",0}, | |
994 | { "_wxCoord","_EBool",0}, | |
995 | { "_wxCoord","_size_t",0}, | |
c368d904 | 996 | { "_wxCoord","_time_t",0}, |
4120ef2b | 997 | { "_wxCoord","_wxPrintQuality",0}, |
2d091820 | 998 | { "_wxEraseEvent","_class_wxEraseEvent",0}, |
4120ef2b | 999 | { "_wxDataObjectComposite","_class_wxDataObjectComposite",0}, |
2d091820 RD |
1000 | { "_class_wxJoystickEvent","_wxJoystickEvent",0}, |
1001 | { "_class_wxMiniFrame","_wxMiniFrame",0}, | |
1002 | { "_wxRegion","_class_wxRegion",0}, | |
1003 | { "_class_wxShowEvent","_wxShowEvent",0}, | |
4120ef2b | 1004 | { "_wxPyDropTarget","_class_wxPyDropTarget",0}, |
2d091820 RD |
1005 | { "_wxActivateEvent","_class_wxActivateEvent",0}, |
1006 | { "_wxGauge","_class_wxGauge",0}, | |
1007 | { "_class_wxCheckListBox","_wxCheckListBox",0}, | |
4120ef2b | 1008 | { "_class_wxBusyInfo","_wxBusyInfo",0}, |
2d091820 RD |
1009 | { "_class_wxCommandEvent","_wxCommandEvent",0}, |
1010 | { "_class_wxClientDC","_wxClientDC",0}, | |
1011 | { "_class_wxSizeEvent","_wxSizeEvent",0}, | |
4120ef2b | 1012 | { "_wxCustomDataObject","_class_wxCustomDataObject",0}, |
2d091820 RD |
1013 | { "_class_wxSize","_wxSize",0}, |
1014 | { "_class_wxBitmap","_wxBitmap",0}, | |
1015 | { "_class_wxMemoryDC","_wxMemoryDC",0}, | |
4120ef2b | 1016 | { "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0}, |
2d091820 RD |
1017 | { "_wxMenuBar","_class_wxMenuBar",0}, |
1018 | { "_wxEvtHandler","_class_wxMDIClientWindow",SwigwxMDIClientWindowTowxEvtHandler}, | |
1019 | { "_wxEvtHandler","_wxMDIClientWindow",SwigwxMDIClientWindowTowxEvtHandler}, | |
1020 | { "_wxEvtHandler","_class_wxMDIChildFrame",SwigwxMDIChildFrameTowxEvtHandler}, | |
1021 | { "_wxEvtHandler","_wxMDIChildFrame",SwigwxMDIChildFrameTowxEvtHandler}, | |
1022 | { "_wxEvtHandler","_class_wxMDIParentFrame",SwigwxMDIParentFrameTowxEvtHandler}, | |
1023 | { "_wxEvtHandler","_wxMDIParentFrame",SwigwxMDIParentFrameTowxEvtHandler}, | |
1024 | { "_wxEvtHandler","_class_wxEvtHandler",0}, | |
1025 | { "_wxMenuItem","_class_wxMenuItem",0}, | |
1026 | { "_class_wxScrollBar","_wxScrollBar",0}, | |
2d091820 RD |
1027 | { "_class_wxScrolledWindow","_wxScrolledWindow",0}, |
1028 | { "_wxKeyEvent","_class_wxKeyEvent",0}, | |
1029 | { "_wxMoveEvent","_class_wxMoveEvent",0}, | |
1030 | { "_class_wxPalette","_wxPalette",0}, | |
4120ef2b | 1031 | { "_wxFileDataObject","_class_wxFileDataObject",0}, |
2d091820 RD |
1032 | { "_class_wxEraseEvent","_wxEraseEvent",0}, |
1033 | { "_wxMDIClientWindow","_class_wxMDIClientWindow",0}, | |
4120ef2b | 1034 | { "_class_wxDataObjectComposite","_wxDataObjectComposite",0}, |
ab2208b5 | 1035 | { "_class_wxToolBarToolBase","_wxToolBarToolBase",0}, |
2d091820 RD |
1036 | { "_wxWindow","_class_wxMDIClientWindow",SwigwxMDIClientWindowTowxWindow}, |
1037 | { "_wxWindow","_wxMDIClientWindow",SwigwxMDIClientWindowTowxWindow}, | |
1038 | { "_wxWindow","_class_wxMDIChildFrame",SwigwxMDIChildFrameTowxWindow}, | |
1039 | { "_wxWindow","_wxMDIChildFrame",SwigwxMDIChildFrameTowxWindow}, | |
1040 | { "_wxWindow","_class_wxMDIParentFrame",SwigwxMDIParentFrameTowxWindow}, | |
1041 | { "_wxWindow","_wxMDIParentFrame",SwigwxMDIParentFrameTowxWindow}, | |
1042 | { "_wxWindow","_class_wxWindow",0}, | |
167b96c2 | 1043 | { "_class_wxWindowDestroyEvent","_wxWindowDestroyEvent",0}, |
2d091820 RD |
1044 | { "_class_wxFrame","_class_wxMDIChildFrame",SwigwxMDIChildFrameTowxFrame}, |
1045 | { "_class_wxFrame","_wxMDIChildFrame",SwigwxMDIChildFrameTowxFrame}, | |
1046 | { "_class_wxFrame","_class_wxMDIParentFrame",SwigwxMDIParentFrameTowxFrame}, | |
1047 | { "_class_wxFrame","_wxMDIParentFrame",SwigwxMDIParentFrameTowxFrame}, | |
1048 | { "_class_wxFrame","_wxFrame",0}, | |
1049 | {0,0,0}}; | |
1050 | ||
70551f47 RD |
1051 | static PyObject *SWIG_globals; |
1052 | #ifdef __cplusplus | |
1053 | extern "C" | |
1054 | #endif | |
2d091820 | 1055 | SWIGEXPORT(void) initmdic() { |
70551f47 RD |
1056 | PyObject *m, *d; |
1057 | SWIG_globals = SWIG_newvarlink(); | |
1058 | m = Py_InitModule("mdic", mdicMethods); | |
1059 | d = PyModule_GetDict(m); | |
2d091820 RD |
1060 | { |
1061 | int i; | |
1062 | for (i = 0; _swig_mapping[i].n1; i++) | |
1063 | SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv); | |
1064 | } | |
70551f47 | 1065 | } |