]>
Commit | Line | Data |
---|---|---|
8ab979d7 | 1 | /* |
c368d904 | 2 | * FILE : src/msw/windows.cpp |
8ab979d7 RD |
3 | * |
4 | * This file was automatically generated by : | |
5 | * Simplified Wrapper and Interface Generator (SWIG) | |
dbbb98cd | 6 | * Version 1.1 (Build 883) |
8ab979d7 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) | |
1d99702e | 27 | # define SWIGEXPORT(a) __declspec(dllexport) a |
8ab979d7 RD |
28 | # else |
29 | # if defined(__BORLANDC__) | |
c368d904 | 30 | # define SWIGEXPORT(a) a _export |
8ab979d7 | 31 | # else |
c368d904 | 32 | # define SWIGEXPORT(a) a |
8ab979d7 RD |
33 | # endif |
34 | # endif | |
35 | #else | |
c368d904 | 36 | # define SWIGEXPORT(a) a |
8ab979d7 RD |
37 | #endif |
38 | ||
c368d904 RD |
39 | #include "Python.h" |
40 | ||
8ab979d7 RD |
41 | #ifdef __cplusplus |
42 | extern "C" { | |
43 | #endif | |
dbbb98cd | 44 | |
8ab979d7 RD |
45 | extern void SWIG_MakePtr(char *, void *, char *); |
46 | extern void SWIG_RegisterMapping(char *, char *, void *(*)(void *)); | |
47 | extern char *SWIG_GetPtr(char *, void **, char *); | |
1d99702e | 48 | extern char *SWIG_GetPtrObj(PyObject *, void **, char *); |
8ab979d7 RD |
49 | extern void SWIG_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *)); |
50 | extern PyObject *SWIG_newvarlink(void); | |
51 | #ifdef __cplusplus | |
52 | } | |
53 | #endif | |
8ab979d7 RD |
54 | #define SWIG_init initwindowsc |
55 | ||
56 | #define SWIG_name "windowsc" | |
57 | ||
58 | #include "helpers.h" | |
8ab979d7 | 59 | #include <wx/menuitem.h> |
9416aa89 | 60 | #include <wx/tooltip.h> |
8ab979d7 | 61 | |
8ab979d7 RD |
62 | |
63 | static PyObject* t_output_helper(PyObject* target, PyObject* o) { | |
64 | PyObject* o2; | |
65 | PyObject* o3; | |
66 | ||
f3d9dc1d | 67 | if (!target) { |
8ab979d7 | 68 | target = o; |
f3d9dc1d | 69 | } else if (target == Py_None) { |
8ab979d7 RD |
70 | Py_DECREF(Py_None); |
71 | target = o; | |
f3d9dc1d | 72 | } else { |
8ab979d7 RD |
73 | if (!PyTuple_Check(target)) { |
74 | o2 = target; | |
75 | target = PyTuple_New(1); | |
76 | PyTuple_SetItem(target, 0, o2); | |
77 | } | |
f3d9dc1d RD |
78 | o3 = PyTuple_New(1); |
79 | PyTuple_SetItem(o3, 0, o); | |
8ab979d7 RD |
80 | |
81 | o2 = target; | |
f3d9dc1d RD |
82 | target = PySequence_Concat(o2, o3); |
83 | Py_DECREF(o2); | |
8ab979d7 RD |
84 | Py_DECREF(o3); |
85 | } | |
86 | return target; | |
87 | } | |
88 | ||
794c5cb1 RD |
89 | #if PYTHON_API_VERSION >= 1009 |
90 | static char* wxStringErrorMsg = "String or Unicode type required"; | |
91 | #else | |
92 | static char* wxStringErrorMsg = "string type is required for parameter"; | |
93 | #endif | |
2f90df85 | 94 | |
e508a2b6 RD |
95 | static wxString wxPyEmptyStr(""); |
96 | ||
2f90df85 RD |
97 | class wxPyValidator : public wxValidator { |
98 | DECLARE_DYNAMIC_CLASS(wxPyValidator); | |
99 | public: | |
100 | wxPyValidator() { | |
101 | } | |
2f90df85 RD |
102 | |
103 | ~wxPyValidator() { | |
104 | } | |
105 | ||
106 | wxObject* wxPyValidator::Clone() const { | |
694759cf RD |
107 | wxPyValidator* ptr = NULL; |
108 | wxPyValidator* self = (wxPyValidator*)this; | |
2f90df85 | 109 | |
694759cf RD |
110 | bool doSave = wxPyRestoreThread(); |
111 | if (self->m_myInst.findCallback("Clone")) { | |
112 | PyObject* ro; | |
113 | ro = self->m_myInst.callCallbackObj(Py_BuildValue("()")); | |
f6bcfd97 BP |
114 | if (ro) { |
115 | SWIG_GetPtrObj(ro, (void **)&ptr, "_wxPyValidator_p"); | |
116 | Py_DECREF(ro); | |
117 | } | |
694759cf RD |
118 | } |
119 | // This is very dangerous!!! But is the only way I could find | |
120 | // to squash a memory leak. Currently it is okay, but if the | |
121 | // validator architecture in wxWindows ever changes, problems | |
122 | // could arise. | |
123 | delete self; | |
2f90df85 | 124 | |
694759cf RD |
125 | wxPySaveThread(doSave); |
126 | return ptr; | |
127 | } | |
2f90df85 | 128 | |
9416aa89 | 129 | |
2f90df85 RD |
130 | DEC_PYCALLBACK_BOOL_WXWIN(Validate); |
131 | DEC_PYCALLBACK_BOOL_(TransferToWindow); | |
132 | DEC_PYCALLBACK_BOOL_(TransferFromWindow); | |
133 | ||
134 | PYPRIVATE; | |
2f90df85 RD |
135 | }; |
136 | ||
137 | IMP_PYCALLBACK_BOOL_WXWIN(wxPyValidator, wxValidator, Validate); | |
138 | IMP_PYCALLBACK_BOOL_(wxPyValidator, wxValidator, TransferToWindow); | |
139 | IMP_PYCALLBACK_BOOL_(wxPyValidator, wxValidator, TransferFromWindow); | |
140 | ||
141 | IMPLEMENT_DYNAMIC_CLASS(wxPyValidator, wxValidator); | |
8ab979d7 | 142 | |
8ab979d7 RD |
143 | |
144 | wxWindow* wxWindow_FindFocus() { | |
145 | return wxWindow::FindFocus(); | |
146 | } | |
2f90df85 RD |
147 | |
148 | wxWindow* wxWindow_FromHWND(unsigned long hWnd) { | |
149 | wxWindow* win = new wxWindow; | |
150 | win->SetHWND(hWnd); | |
151 | win->SubclassWin(hWnd); | |
152 | return win; | |
153 | } | |
a1df7a95 RD |
154 | |
155 | int wxWindow_NewControlId() { | |
156 | return wxWindow::NewControlId(); | |
157 | } | |
158 | int wxWindow_NextControlId(int id) { | |
159 | return wxWindow::NextControlId(id); | |
160 | } | |
161 | int wxWindow_PrevControlId(int id) { | |
162 | return wxWindow::PrevControlId(id); | |
163 | } | |
2f90df85 RD |
164 | #ifdef __cplusplus |
165 | extern "C" { | |
166 | #endif | |
2f90df85 RD |
167 | static PyObject *_wrap_wxWindow_FindFocus(PyObject *self, PyObject *args, PyObject *kwargs) { |
168 | PyObject * _resultobj; | |
169 | wxWindow * _result; | |
170 | char *_kwnames[] = { NULL }; | |
2f90df85 RD |
171 | |
172 | self = self; | |
173 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxWindow_FindFocus",_kwnames)) | |
174 | return NULL; | |
175 | { | |
176 | wxPy_BEGIN_ALLOW_THREADS; | |
177 | _result = (wxWindow *)wxWindow_FindFocus(); | |
178 | ||
179 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 180 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 181 | }{ _resultobj = wxPyMake_wxObject(_result); } |
2f90df85 RD |
182 | return _resultobj; |
183 | } | |
184 | ||
185 | static PyObject *_wrap_wxWindow_FromHWND(PyObject *self, PyObject *args, PyObject *kwargs) { | |
186 | PyObject * _resultobj; | |
187 | wxWindow * _result; | |
188 | unsigned long _arg0; | |
189 | char *_kwnames[] = { "hWnd", NULL }; | |
2f90df85 RD |
190 | |
191 | self = self; | |
192 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"l:wxWindow_FromHWND",_kwnames,&_arg0)) | |
193 | return NULL; | |
194 | { | |
195 | wxPy_BEGIN_ALLOW_THREADS; | |
196 | _result = (wxWindow *)wxWindow_FromHWND(_arg0); | |
197 | ||
198 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 199 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 200 | }{ _resultobj = wxPyMake_wxObject(_result); } |
2f90df85 RD |
201 | return _resultobj; |
202 | } | |
203 | ||
a1df7a95 RD |
204 | static PyObject *_wrap_wxWindow_NewControlId(PyObject *self, PyObject *args, PyObject *kwargs) { |
205 | PyObject * _resultobj; | |
206 | int _result; | |
207 | char *_kwnames[] = { NULL }; | |
208 | ||
209 | self = self; | |
210 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxWindow_NewControlId",_kwnames)) | |
211 | return NULL; | |
212 | { | |
213 | wxPy_BEGIN_ALLOW_THREADS; | |
214 | _result = (int )wxWindow_NewControlId(); | |
215 | ||
216 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 217 | if (PyErr_Occurred()) return NULL; |
a1df7a95 RD |
218 | } _resultobj = Py_BuildValue("i",_result); |
219 | return _resultobj; | |
220 | } | |
221 | ||
222 | static PyObject *_wrap_wxWindow_NextControlId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
223 | PyObject * _resultobj; | |
224 | int _result; | |
225 | int _arg0; | |
226 | char *_kwnames[] = { "id", NULL }; | |
227 | ||
228 | self = self; | |
229 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"i:wxWindow_NextControlId",_kwnames,&_arg0)) | |
230 | return NULL; | |
231 | { | |
232 | wxPy_BEGIN_ALLOW_THREADS; | |
233 | _result = (int )wxWindow_NextControlId(_arg0); | |
234 | ||
235 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 236 | if (PyErr_Occurred()) return NULL; |
a1df7a95 RD |
237 | } _resultobj = Py_BuildValue("i",_result); |
238 | return _resultobj; | |
239 | } | |
240 | ||
241 | static PyObject *_wrap_wxWindow_PrevControlId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
242 | PyObject * _resultobj; | |
243 | int _result; | |
244 | int _arg0; | |
245 | char *_kwnames[] = { "id", NULL }; | |
246 | ||
247 | self = self; | |
248 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"i:wxWindow_PrevControlId",_kwnames,&_arg0)) | |
249 | return NULL; | |
250 | { | |
251 | wxPy_BEGIN_ALLOW_THREADS; | |
252 | _result = (int )wxWindow_PrevControlId(_arg0); | |
253 | ||
254 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 255 | if (PyErr_Occurred()) return NULL; |
a1df7a95 RD |
256 | } _resultobj = Py_BuildValue("i",_result); |
257 | return _resultobj; | |
258 | } | |
259 | ||
9416aa89 RD |
260 | static void *SwigwxEvtHandlerTowxObject(void *ptr) { |
261 | wxEvtHandler *src; | |
262 | wxObject *dest; | |
263 | src = (wxEvtHandler *) ptr; | |
264 | dest = (wxObject *) src; | |
265 | return (void *) dest; | |
266 | } | |
267 | ||
c368d904 RD |
268 | #define new_wxEvtHandler() (new wxEvtHandler()) |
269 | static PyObject *_wrap_new_wxEvtHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
270 | PyObject * _resultobj; | |
271 | wxEvtHandler * _result; | |
272 | char *_kwnames[] = { NULL }; | |
273 | char _ptemp[128]; | |
274 | ||
275 | self = self; | |
276 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxEvtHandler",_kwnames)) | |
277 | return NULL; | |
278 | { | |
279 | wxPy_BEGIN_ALLOW_THREADS; | |
280 | _result = (wxEvtHandler *)new_wxEvtHandler(); | |
281 | ||
282 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 283 | if (PyErr_Occurred()) return NULL; |
c368d904 RD |
284 | } if (_result) { |
285 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxEvtHandler_p"); | |
286 | _resultobj = Py_BuildValue("s",_ptemp); | |
287 | } else { | |
288 | Py_INCREF(Py_None); | |
289 | _resultobj = Py_None; | |
290 | } | |
291 | return _resultobj; | |
292 | } | |
293 | ||
2f90df85 RD |
294 | #define wxEvtHandler_ProcessEvent(_swigobj,_swigarg0) (_swigobj->ProcessEvent(_swigarg0)) |
295 | static PyObject *_wrap_wxEvtHandler_ProcessEvent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
296 | PyObject * _resultobj; | |
297 | bool _result; | |
298 | wxEvtHandler * _arg0; | |
299 | wxEvent * _arg1; | |
300 | PyObject * _argo0 = 0; | |
301 | PyObject * _argo1 = 0; | |
302 | char *_kwnames[] = { "self","event", NULL }; | |
303 | ||
304 | self = self; | |
305 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxEvtHandler_ProcessEvent",_kwnames,&_argo0,&_argo1)) | |
306 | return NULL; | |
307 | if (_argo0) { | |
308 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
309 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
310 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_ProcessEvent. Expected _wxEvtHandler_p."); | |
311 | return NULL; | |
312 | } | |
313 | } | |
314 | if (_argo1) { | |
315 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
316 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvent_p")) { | |
317 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxEvtHandler_ProcessEvent. Expected _wxEvent_p."); | |
318 | return NULL; | |
319 | } | |
320 | } | |
321 | { | |
322 | wxPy_BEGIN_ALLOW_THREADS; | |
323 | _result = (bool )wxEvtHandler_ProcessEvent(_arg0,*_arg1); | |
324 | ||
325 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 326 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
327 | } _resultobj = Py_BuildValue("i",_result); |
328 | return _resultobj; | |
329 | } | |
330 | ||
f6bcfd97 BP |
331 | #define wxEvtHandler_AddPendingEvent(_swigobj,_swigarg0) (_swigobj->AddPendingEvent(_swigarg0)) |
332 | static PyObject *_wrap_wxEvtHandler_AddPendingEvent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
333 | PyObject * _resultobj; | |
334 | wxEvtHandler * _arg0; | |
335 | wxEvent * _arg1; | |
336 | PyObject * _argo0 = 0; | |
337 | PyObject * _argo1 = 0; | |
338 | char *_kwnames[] = { "self","event", NULL }; | |
339 | ||
340 | self = self; | |
341 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxEvtHandler_AddPendingEvent",_kwnames,&_argo0,&_argo1)) | |
342 | return NULL; | |
343 | if (_argo0) { | |
344 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
345 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
346 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_AddPendingEvent. Expected _wxEvtHandler_p."); | |
347 | return NULL; | |
348 | } | |
349 | } | |
350 | if (_argo1) { | |
351 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
352 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvent_p")) { | |
353 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxEvtHandler_AddPendingEvent. Expected _wxEvent_p."); | |
354 | return NULL; | |
355 | } | |
356 | } | |
357 | { | |
358 | wxPy_BEGIN_ALLOW_THREADS; | |
359 | wxEvtHandler_AddPendingEvent(_arg0,*_arg1); | |
360 | ||
361 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 362 | if (PyErr_Occurred()) return NULL; |
f6bcfd97 BP |
363 | } Py_INCREF(Py_None); |
364 | _resultobj = Py_None; | |
365 | return _resultobj; | |
366 | } | |
367 | ||
2f90df85 RD |
368 | #define wxEvtHandler_GetEvtHandlerEnabled(_swigobj) (_swigobj->GetEvtHandlerEnabled()) |
369 | static PyObject *_wrap_wxEvtHandler_GetEvtHandlerEnabled(PyObject *self, PyObject *args, PyObject *kwargs) { | |
370 | PyObject * _resultobj; | |
371 | bool _result; | |
372 | wxEvtHandler * _arg0; | |
373 | PyObject * _argo0 = 0; | |
374 | char *_kwnames[] = { "self", NULL }; | |
375 | ||
376 | self = self; | |
377 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxEvtHandler_GetEvtHandlerEnabled",_kwnames,&_argo0)) | |
378 | return NULL; | |
379 | if (_argo0) { | |
380 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
381 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
382 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_GetEvtHandlerEnabled. Expected _wxEvtHandler_p."); | |
383 | return NULL; | |
384 | } | |
385 | } | |
386 | { | |
387 | wxPy_BEGIN_ALLOW_THREADS; | |
388 | _result = (bool )wxEvtHandler_GetEvtHandlerEnabled(_arg0); | |
389 | ||
390 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 391 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
392 | } _resultobj = Py_BuildValue("i",_result); |
393 | return _resultobj; | |
394 | } | |
395 | ||
396 | #define wxEvtHandler_SetEvtHandlerEnabled(_swigobj,_swigarg0) (_swigobj->SetEvtHandlerEnabled(_swigarg0)) | |
397 | static PyObject *_wrap_wxEvtHandler_SetEvtHandlerEnabled(PyObject *self, PyObject *args, PyObject *kwargs) { | |
398 | PyObject * _resultobj; | |
399 | wxEvtHandler * _arg0; | |
400 | bool _arg1; | |
401 | PyObject * _argo0 = 0; | |
402 | int tempbool1; | |
403 | char *_kwnames[] = { "self","enabled", NULL }; | |
404 | ||
405 | self = self; | |
406 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxEvtHandler_SetEvtHandlerEnabled",_kwnames,&_argo0,&tempbool1)) | |
407 | return NULL; | |
408 | if (_argo0) { | |
409 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
410 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
411 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_SetEvtHandlerEnabled. Expected _wxEvtHandler_p."); | |
412 | return NULL; | |
413 | } | |
414 | } | |
415 | _arg1 = (bool ) tempbool1; | |
416 | { | |
417 | wxPy_BEGIN_ALLOW_THREADS; | |
418 | wxEvtHandler_SetEvtHandlerEnabled(_arg0,_arg1); | |
419 | ||
420 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 421 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
422 | } Py_INCREF(Py_None); |
423 | _resultobj = Py_None; | |
424 | return _resultobj; | |
425 | } | |
426 | ||
427 | #define wxEvtHandler_GetNextHandler(_swigobj) (_swigobj->GetNextHandler()) | |
428 | static PyObject *_wrap_wxEvtHandler_GetNextHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
429 | PyObject * _resultobj; | |
430 | wxEvtHandler * _result; | |
431 | wxEvtHandler * _arg0; | |
432 | PyObject * _argo0 = 0; | |
433 | char *_kwnames[] = { "self", NULL }; | |
2f90df85 RD |
434 | |
435 | self = self; | |
436 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxEvtHandler_GetNextHandler",_kwnames,&_argo0)) | |
437 | return NULL; | |
438 | if (_argo0) { | |
439 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
440 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
441 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_GetNextHandler. Expected _wxEvtHandler_p."); | |
442 | return NULL; | |
443 | } | |
444 | } | |
445 | { | |
446 | wxPy_BEGIN_ALLOW_THREADS; | |
447 | _result = (wxEvtHandler *)wxEvtHandler_GetNextHandler(_arg0); | |
448 | ||
449 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 450 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 451 | }{ _resultobj = wxPyMake_wxObject(_result); } |
2f90df85 RD |
452 | return _resultobj; |
453 | } | |
454 | ||
455 | #define wxEvtHandler_GetPreviousHandler(_swigobj) (_swigobj->GetPreviousHandler()) | |
456 | static PyObject *_wrap_wxEvtHandler_GetPreviousHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
457 | PyObject * _resultobj; | |
458 | wxEvtHandler * _result; | |
459 | wxEvtHandler * _arg0; | |
460 | PyObject * _argo0 = 0; | |
461 | char *_kwnames[] = { "self", NULL }; | |
2f90df85 RD |
462 | |
463 | self = self; | |
464 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxEvtHandler_GetPreviousHandler",_kwnames,&_argo0)) | |
465 | return NULL; | |
466 | if (_argo0) { | |
467 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
468 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
469 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_GetPreviousHandler. Expected _wxEvtHandler_p."); | |
470 | return NULL; | |
471 | } | |
472 | } | |
473 | { | |
474 | wxPy_BEGIN_ALLOW_THREADS; | |
475 | _result = (wxEvtHandler *)wxEvtHandler_GetPreviousHandler(_arg0); | |
476 | ||
477 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 478 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 479 | }{ _resultobj = wxPyMake_wxObject(_result); } |
2f90df85 RD |
480 | return _resultobj; |
481 | } | |
482 | ||
483 | #define wxEvtHandler_SetNextHandler(_swigobj,_swigarg0) (_swigobj->SetNextHandler(_swigarg0)) | |
484 | static PyObject *_wrap_wxEvtHandler_SetNextHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
485 | PyObject * _resultobj; | |
486 | wxEvtHandler * _arg0; | |
487 | wxEvtHandler * _arg1; | |
488 | PyObject * _argo0 = 0; | |
489 | PyObject * _argo1 = 0; | |
490 | char *_kwnames[] = { "self","handler", NULL }; | |
491 | ||
492 | self = self; | |
493 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxEvtHandler_SetNextHandler",_kwnames,&_argo0,&_argo1)) | |
494 | return NULL; | |
495 | if (_argo0) { | |
496 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
497 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
498 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_SetNextHandler. Expected _wxEvtHandler_p."); | |
499 | return NULL; | |
500 | } | |
501 | } | |
502 | if (_argo1) { | |
503 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
504 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvtHandler_p")) { | |
505 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxEvtHandler_SetNextHandler. Expected _wxEvtHandler_p."); | |
506 | return NULL; | |
507 | } | |
508 | } | |
509 | { | |
510 | wxPy_BEGIN_ALLOW_THREADS; | |
511 | wxEvtHandler_SetNextHandler(_arg0,_arg1); | |
512 | ||
513 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 514 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
515 | } Py_INCREF(Py_None); |
516 | _resultobj = Py_None; | |
517 | return _resultobj; | |
518 | } | |
519 | ||
520 | #define wxEvtHandler_SetPreviousHandler(_swigobj,_swigarg0) (_swigobj->SetPreviousHandler(_swigarg0)) | |
521 | static PyObject *_wrap_wxEvtHandler_SetPreviousHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
522 | PyObject * _resultobj; | |
523 | wxEvtHandler * _arg0; | |
524 | wxEvtHandler * _arg1; | |
525 | PyObject * _argo0 = 0; | |
526 | PyObject * _argo1 = 0; | |
527 | char *_kwnames[] = { "self","handler", NULL }; | |
528 | ||
529 | self = self; | |
530 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxEvtHandler_SetPreviousHandler",_kwnames,&_argo0,&_argo1)) | |
531 | return NULL; | |
532 | if (_argo0) { | |
533 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
534 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
535 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_SetPreviousHandler. Expected _wxEvtHandler_p."); | |
536 | return NULL; | |
537 | } | |
538 | } | |
539 | if (_argo1) { | |
540 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
541 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvtHandler_p")) { | |
542 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxEvtHandler_SetPreviousHandler. Expected _wxEvtHandler_p."); | |
543 | return NULL; | |
544 | } | |
545 | } | |
546 | { | |
547 | wxPy_BEGIN_ALLOW_THREADS; | |
548 | wxEvtHandler_SetPreviousHandler(_arg0,_arg1); | |
549 | ||
550 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 551 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
552 | } Py_INCREF(Py_None); |
553 | _resultobj = Py_None; | |
554 | return _resultobj; | |
555 | } | |
556 | ||
557 | static void wxEvtHandler_Connect(wxEvtHandler *self,int id,int lastId,int eventType,PyObject * func) { | |
558 | if (PyCallable_Check(func)) { | |
559 | self->Connect(id, lastId, eventType, | |
560 | (wxObjectEventFunction) &wxPyCallback::EventThunker, | |
561 | new wxPyCallback(func)); | |
562 | } | |
563 | } | |
564 | static PyObject *_wrap_wxEvtHandler_Connect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
565 | PyObject * _resultobj; | |
566 | wxEvtHandler * _arg0; | |
567 | int _arg1; | |
568 | int _arg2; | |
569 | int _arg3; | |
570 | PyObject * _arg4; | |
571 | PyObject * _argo0 = 0; | |
572 | PyObject * _obj4 = 0; | |
573 | char *_kwnames[] = { "self","id","lastId","eventType","func", NULL }; | |
574 | ||
575 | self = self; | |
576 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiiiO:wxEvtHandler_Connect",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_obj4)) | |
577 | return NULL; | |
578 | if (_argo0) { | |
579 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
580 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
581 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_Connect. Expected _wxEvtHandler_p."); | |
582 | return NULL; | |
583 | } | |
584 | } | |
585 | { | |
586 | _arg4 = _obj4; | |
587 | } | |
588 | { | |
589 | wxPy_BEGIN_ALLOW_THREADS; | |
590 | wxEvtHandler_Connect(_arg0,_arg1,_arg2,_arg3,_arg4); | |
591 | ||
592 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 593 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
594 | } Py_INCREF(Py_None); |
595 | _resultobj = Py_None; | |
596 | return _resultobj; | |
597 | } | |
598 | ||
6999b0d8 RD |
599 | static bool wxEvtHandler_Disconnect(wxEvtHandler *self,int id,int lastId,wxEventType eventType) { |
600 | return self->Disconnect(id, lastId, eventType, | |
601 | (wxObjectEventFunction) | |
602 | &wxPyCallback::EventThunker); | |
603 | } | |
604 | static PyObject *_wrap_wxEvtHandler_Disconnect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
605 | PyObject * _resultobj; | |
606 | bool _result; | |
607 | wxEvtHandler * _arg0; | |
608 | int _arg1; | |
609 | int _arg2 = (int ) -1; | |
610 | wxEventType _arg3 = (wxEventType ) wxEVT_NULL; | |
611 | PyObject * _argo0 = 0; | |
612 | char *_kwnames[] = { "self","id","lastId","eventType", NULL }; | |
613 | ||
614 | self = self; | |
615 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi|ii:wxEvtHandler_Disconnect",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3)) | |
616 | return NULL; | |
617 | if (_argo0) { | |
618 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
619 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
620 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_Disconnect. Expected _wxEvtHandler_p."); | |
621 | return NULL; | |
622 | } | |
623 | } | |
624 | { | |
625 | wxPy_BEGIN_ALLOW_THREADS; | |
626 | _result = (bool )wxEvtHandler_Disconnect(_arg0,_arg1,_arg2,_arg3); | |
627 | ||
628 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 629 | if (PyErr_Occurred()) return NULL; |
6999b0d8 RD |
630 | } _resultobj = Py_BuildValue("i",_result); |
631 | return _resultobj; | |
632 | } | |
633 | ||
2f90df85 RD |
634 | static void *SwigwxValidatorTowxEvtHandler(void *ptr) { |
635 | wxValidator *src; | |
636 | wxEvtHandler *dest; | |
637 | src = (wxValidator *) ptr; | |
638 | dest = (wxEvtHandler *) src; | |
639 | return (void *) dest; | |
640 | } | |
641 | ||
9416aa89 RD |
642 | static void *SwigwxValidatorTowxObject(void *ptr) { |
643 | wxValidator *src; | |
644 | wxObject *dest; | |
645 | src = (wxValidator *) ptr; | |
646 | dest = (wxObject *) src; | |
647 | return (void *) dest; | |
648 | } | |
649 | ||
2f90df85 RD |
650 | #define new_wxValidator() (new wxValidator()) |
651 | static PyObject *_wrap_new_wxValidator(PyObject *self, PyObject *args, PyObject *kwargs) { | |
652 | PyObject * _resultobj; | |
653 | wxValidator * _result; | |
654 | char *_kwnames[] = { NULL }; | |
655 | char _ptemp[128]; | |
656 | ||
657 | self = self; | |
658 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxValidator",_kwnames)) | |
659 | return NULL; | |
660 | { | |
661 | wxPy_BEGIN_ALLOW_THREADS; | |
662 | _result = (wxValidator *)new_wxValidator(); | |
663 | ||
664 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 665 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
666 | } if (_result) { |
667 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxValidator_p"); | |
668 | _resultobj = Py_BuildValue("s",_ptemp); | |
669 | } else { | |
670 | Py_INCREF(Py_None); | |
671 | _resultobj = Py_None; | |
672 | } | |
673 | return _resultobj; | |
af309447 | 674 | } |
2f90df85 RD |
675 | |
676 | #define wxValidator_Clone(_swigobj) (_swigobj->Clone()) | |
677 | static PyObject *_wrap_wxValidator_Clone(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 678 | PyObject * _resultobj; |
2f90df85 RD |
679 | wxValidator * _result; |
680 | wxValidator * _arg0; | |
681 | PyObject * _argo0 = 0; | |
682 | char *_kwnames[] = { "self", NULL }; | |
8ab979d7 RD |
683 | |
684 | self = self; | |
2f90df85 RD |
685 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxValidator_Clone",_kwnames,&_argo0)) |
686 | return NULL; | |
687 | if (_argo0) { | |
688 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
689 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxValidator_p")) { | |
690 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxValidator_Clone. Expected _wxValidator_p."); | |
8ab979d7 | 691 | return NULL; |
2f90df85 RD |
692 | } |
693 | } | |
cf694132 RD |
694 | { |
695 | wxPy_BEGIN_ALLOW_THREADS; | |
2f90df85 | 696 | _result = (wxValidator *)wxValidator_Clone(_arg0); |
cf694132 RD |
697 | |
698 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 699 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 700 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
701 | return _resultobj; |
702 | } | |
703 | ||
2f90df85 RD |
704 | #define wxValidator_GetWindow(_swigobj) (_swigobj->GetWindow()) |
705 | static PyObject *_wrap_wxValidator_GetWindow(PyObject *self, PyObject *args, PyObject *kwargs) { | |
af309447 RD |
706 | PyObject * _resultobj; |
707 | wxWindow * _result; | |
2f90df85 RD |
708 | wxValidator * _arg0; |
709 | PyObject * _argo0 = 0; | |
710 | char *_kwnames[] = { "self", NULL }; | |
af309447 RD |
711 | |
712 | self = self; | |
2f90df85 RD |
713 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxValidator_GetWindow",_kwnames,&_argo0)) |
714 | return NULL; | |
715 | if (_argo0) { | |
716 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
717 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxValidator_p")) { | |
718 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxValidator_GetWindow. Expected _wxValidator_p."); | |
af309447 | 719 | return NULL; |
2f90df85 RD |
720 | } |
721 | } | |
cf694132 RD |
722 | { |
723 | wxPy_BEGIN_ALLOW_THREADS; | |
2f90df85 | 724 | _result = (wxWindow *)wxValidator_GetWindow(_arg0); |
cf694132 RD |
725 | |
726 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 727 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 728 | }{ _resultobj = wxPyMake_wxObject(_result); } |
af309447 RD |
729 | return _resultobj; |
730 | } | |
731 | ||
2f90df85 RD |
732 | #define wxValidator_SetWindow(_swigobj,_swigarg0) (_swigobj->SetWindow(_swigarg0)) |
733 | static PyObject *_wrap_wxValidator_SetWindow(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 734 | PyObject * _resultobj; |
2f90df85 RD |
735 | wxValidator * _arg0; |
736 | wxWindow * _arg1; | |
1d99702e RD |
737 | PyObject * _argo0 = 0; |
738 | PyObject * _argo1 = 0; | |
2f90df85 | 739 | char *_kwnames[] = { "self","window", NULL }; |
cf694132 RD |
740 | |
741 | self = self; | |
2f90df85 | 742 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxValidator_SetWindow",_kwnames,&_argo0,&_argo1)) |
cf694132 | 743 | return NULL; |
1d99702e RD |
744 | if (_argo0) { |
745 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2f90df85 RD |
746 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxValidator_p")) { |
747 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxValidator_SetWindow. Expected _wxValidator_p."); | |
cf694132 RD |
748 | return NULL; |
749 | } | |
750 | } | |
1d99702e RD |
751 | if (_argo1) { |
752 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
2f90df85 RD |
753 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { |
754 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxValidator_SetWindow. Expected _wxWindow_p."); | |
cf694132 RD |
755 | return NULL; |
756 | } | |
757 | } | |
758 | { | |
759 | wxPy_BEGIN_ALLOW_THREADS; | |
2f90df85 | 760 | wxValidator_SetWindow(_arg0,_arg1); |
cf694132 RD |
761 | |
762 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 763 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
764 | } Py_INCREF(Py_None); |
765 | _resultobj = Py_None; | |
cf694132 RD |
766 | return _resultobj; |
767 | } | |
768 | ||
9416aa89 RD |
769 | static PyObject *_wrap_wxValidator_IsSilent(PyObject *self, PyObject *args, PyObject *kwargs) { |
770 | PyObject * _resultobj; | |
771 | bool _result; | |
772 | char *_kwnames[] = { NULL }; | |
773 | ||
774 | self = self; | |
775 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxValidator_IsSilent",_kwnames)) | |
776 | return NULL; | |
777 | { | |
778 | wxPy_BEGIN_ALLOW_THREADS; | |
779 | _result = (bool )wxValidator::IsSilent(); | |
780 | ||
781 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 782 | if (PyErr_Occurred()) return NULL; |
9416aa89 RD |
783 | } _resultobj = Py_BuildValue("i",_result); |
784 | return _resultobj; | |
785 | } | |
786 | ||
787 | static PyObject *_wrap_wxValidator_SetBellOnError(PyObject *self, PyObject *args, PyObject *kwargs) { | |
788 | PyObject * _resultobj; | |
789 | int _arg0 = (int ) TRUE; | |
790 | char *_kwnames[] = { "doIt", NULL }; | |
791 | ||
792 | self = self; | |
793 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|i:wxValidator_SetBellOnError",_kwnames,&_arg0)) | |
794 | return NULL; | |
795 | { | |
796 | wxPy_BEGIN_ALLOW_THREADS; | |
797 | wxValidator::SetBellOnError(_arg0); | |
798 | ||
799 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 800 | if (PyErr_Occurred()) return NULL; |
9416aa89 RD |
801 | } Py_INCREF(Py_None); |
802 | _resultobj = Py_None; | |
803 | return _resultobj; | |
804 | } | |
805 | ||
2f90df85 RD |
806 | static void *SwigwxPyValidatorTowxValidator(void *ptr) { |
807 | wxPyValidator *src; | |
808 | wxValidator *dest; | |
809 | src = (wxPyValidator *) ptr; | |
810 | dest = (wxValidator *) src; | |
811 | return (void *) dest; | |
812 | } | |
813 | ||
814 | static void *SwigwxPyValidatorTowxEvtHandler(void *ptr) { | |
815 | wxPyValidator *src; | |
816 | wxEvtHandler *dest; | |
817 | src = (wxPyValidator *) ptr; | |
818 | dest = (wxEvtHandler *) src; | |
819 | return (void *) dest; | |
820 | } | |
821 | ||
9416aa89 RD |
822 | static void *SwigwxPyValidatorTowxObject(void *ptr) { |
823 | wxPyValidator *src; | |
824 | wxObject *dest; | |
825 | src = (wxPyValidator *) ptr; | |
826 | dest = (wxObject *) src; | |
827 | return (void *) dest; | |
828 | } | |
829 | ||
2f90df85 RD |
830 | #define new_wxPyValidator() (new wxPyValidator()) |
831 | static PyObject *_wrap_new_wxPyValidator(PyObject *self, PyObject *args, PyObject *kwargs) { | |
832 | PyObject * _resultobj; | |
833 | wxPyValidator * _result; | |
834 | char *_kwnames[] = { NULL }; | |
835 | char _ptemp[128]; | |
836 | ||
837 | self = self; | |
838 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPyValidator",_kwnames)) | |
839 | return NULL; | |
840 | { | |
841 | wxPy_BEGIN_ALLOW_THREADS; | |
842 | _result = (wxPyValidator *)new_wxPyValidator(); | |
843 | ||
844 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 845 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
846 | } if (_result) { |
847 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyValidator_p"); | |
848 | _resultobj = Py_BuildValue("s",_ptemp); | |
849 | } else { | |
850 | Py_INCREF(Py_None); | |
851 | _resultobj = Py_None; | |
852 | } | |
853 | return _resultobj; | |
854 | } | |
855 | ||
f6bcfd97 | 856 | #define wxPyValidator__setSelf(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->_setSelf(_swigarg0,_swigarg1,_swigarg2)) |
2f90df85 | 857 | static PyObject *_wrap_wxPyValidator__setSelf(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 | 858 | PyObject * _resultobj; |
2f90df85 RD |
859 | wxPyValidator * _arg0; |
860 | PyObject * _arg1; | |
f6bcfd97 BP |
861 | PyObject * _arg2; |
862 | int _arg3 = (int ) TRUE; | |
1d99702e | 863 | PyObject * _argo0 = 0; |
2f90df85 | 864 | PyObject * _obj1 = 0; |
f6bcfd97 BP |
865 | PyObject * _obj2 = 0; |
866 | char *_kwnames[] = { "self","self","_class","incref", NULL }; | |
8ab979d7 RD |
867 | |
868 | self = self; | |
f6bcfd97 | 869 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO|i:wxPyValidator__setSelf",_kwnames,&_argo0,&_obj1,&_obj2,&_arg3)) |
8ab979d7 | 870 | return NULL; |
1d99702e RD |
871 | if (_argo0) { |
872 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2f90df85 RD |
873 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyValidator_p")) { |
874 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyValidator__setSelf. Expected _wxPyValidator_p."); | |
8ab979d7 RD |
875 | return NULL; |
876 | } | |
877 | } | |
878 | { | |
2f90df85 | 879 | _arg1 = _obj1; |
8ab979d7 | 880 | } |
f6bcfd97 BP |
881 | { |
882 | _arg2 = _obj2; | |
883 | } | |
cf694132 RD |
884 | { |
885 | wxPy_BEGIN_ALLOW_THREADS; | |
f6bcfd97 | 886 | wxPyValidator__setSelf(_arg0,_arg1,_arg2,_arg3); |
cf694132 RD |
887 | |
888 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 889 | if (PyErr_Occurred()) return NULL; |
cf694132 | 890 | } Py_INCREF(Py_None); |
8ab979d7 RD |
891 | _resultobj = Py_None; |
892 | return _resultobj; | |
893 | } | |
894 | ||
895 | static void *SwigwxWindowTowxEvtHandler(void *ptr) { | |
896 | wxWindow *src; | |
897 | wxEvtHandler *dest; | |
898 | src = (wxWindow *) ptr; | |
899 | dest = (wxEvtHandler *) src; | |
900 | return (void *) dest; | |
901 | } | |
902 | ||
9416aa89 RD |
903 | static void *SwigwxWindowTowxObject(void *ptr) { |
904 | wxWindow *src; | |
905 | wxObject *dest; | |
906 | src = (wxWindow *) ptr; | |
907 | dest = (wxObject *) src; | |
908 | return (void *) dest; | |
909 | } | |
910 | ||
8ab979d7 | 911 | #define new_wxWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (new wxWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) |
efc5f224 | 912 | static PyObject *_wrap_new_wxWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
913 | PyObject * _resultobj; |
914 | wxWindow * _result; | |
915 | wxWindow * _arg0; | |
916 | wxWindowID _arg1; | |
e508a2b6 RD |
917 | wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition; |
918 | wxSize * _arg3 = (wxSize *) &wxDefaultSize; | |
1d99702e RD |
919 | long _arg4 = (long ) 0; |
920 | char * _arg5 = (char *) "panel"; | |
921 | PyObject * _argo0 = 0; | |
2f90df85 RD |
922 | wxPoint temp; |
923 | PyObject * _obj2 = 0; | |
924 | wxSize temp0; | |
925 | PyObject * _obj3 = 0; | |
efc5f224 | 926 | char *_kwnames[] = { "parent","id","pos","size","style","name", NULL }; |
8ab979d7 RD |
927 | char _ptemp[128]; |
928 | ||
929 | self = self; | |
2f90df85 | 930 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi|OOls:new_wxWindow",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4,&_arg5)) |
8ab979d7 | 931 | return NULL; |
1d99702e RD |
932 | if (_argo0) { |
933 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
934 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
935 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxWindow. Expected _wxWindow_p."); |
936 | return NULL; | |
937 | } | |
938 | } | |
2f90df85 RD |
939 | if (_obj2) |
940 | { | |
941 | _arg2 = &temp; | |
942 | if (! wxPoint_helper(_obj2, &_arg2)) | |
8ab979d7 | 943 | return NULL; |
2f90df85 RD |
944 | } |
945 | if (_obj3) | |
946 | { | |
947 | _arg3 = &temp0; | |
948 | if (! wxSize_helper(_obj3, &_arg3)) | |
8ab979d7 | 949 | return NULL; |
2f90df85 | 950 | } |
cf694132 RD |
951 | { |
952 | wxPy_BEGIN_ALLOW_THREADS; | |
953 | _result = (wxWindow *)new_wxWindow(_arg0,_arg1,*_arg2,*_arg3,_arg4,_arg5); | |
954 | ||
955 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 956 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
957 | } if (_result) { |
958 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxWindow_p"); | |
959 | _resultobj = Py_BuildValue("s",_ptemp); | |
960 | } else { | |
961 | Py_INCREF(Py_None); | |
962 | _resultobj = Py_None; | |
963 | } | |
8ab979d7 RD |
964 | return _resultobj; |
965 | } | |
966 | ||
967 | #define wxWindow_CaptureMouse(_swigobj) (_swigobj->CaptureMouse()) | |
efc5f224 | 968 | static PyObject *_wrap_wxWindow_CaptureMouse(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
969 | PyObject * _resultobj; |
970 | wxWindow * _arg0; | |
1d99702e | 971 | PyObject * _argo0 = 0; |
efc5f224 | 972 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
973 | |
974 | self = self; | |
efc5f224 | 975 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_CaptureMouse",_kwnames,&_argo0)) |
8ab979d7 | 976 | return NULL; |
1d99702e RD |
977 | if (_argo0) { |
978 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
979 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
980 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_CaptureMouse. Expected _wxWindow_p."); |
981 | return NULL; | |
982 | } | |
983 | } | |
cf694132 RD |
984 | { |
985 | wxPy_BEGIN_ALLOW_THREADS; | |
986 | wxWindow_CaptureMouse(_arg0); | |
987 | ||
988 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 989 | if (PyErr_Occurred()) return NULL; |
cf694132 | 990 | } Py_INCREF(Py_None); |
8ab979d7 RD |
991 | _resultobj = Py_None; |
992 | return _resultobj; | |
993 | } | |
994 | ||
995 | #define wxWindow_Center(_swigobj,_swigarg0) (_swigobj->Center(_swigarg0)) | |
efc5f224 | 996 | static PyObject *_wrap_wxWindow_Center(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
997 | PyObject * _resultobj; |
998 | wxWindow * _arg0; | |
1d99702e RD |
999 | int _arg1 = (int ) wxBOTH; |
1000 | PyObject * _argo0 = 0; | |
efc5f224 | 1001 | char *_kwnames[] = { "self","direction", NULL }; |
8ab979d7 RD |
1002 | |
1003 | self = self; | |
efc5f224 | 1004 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_Center",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 1005 | return NULL; |
1d99702e RD |
1006 | if (_argo0) { |
1007 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1008 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1009 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Center. Expected _wxWindow_p."); |
1010 | return NULL; | |
1011 | } | |
1012 | } | |
cf694132 RD |
1013 | { |
1014 | wxPy_BEGIN_ALLOW_THREADS; | |
1015 | wxWindow_Center(_arg0,_arg1); | |
1016 | ||
1017 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1018 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1019 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1020 | _resultobj = Py_None; |
1021 | return _resultobj; | |
1022 | } | |
1023 | ||
1024 | #define wxWindow_Centre(_swigobj,_swigarg0) (_swigobj->Centre(_swigarg0)) | |
efc5f224 | 1025 | static PyObject *_wrap_wxWindow_Centre(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1026 | PyObject * _resultobj; |
1027 | wxWindow * _arg0; | |
1d99702e RD |
1028 | int _arg1 = (int ) wxBOTH; |
1029 | PyObject * _argo0 = 0; | |
efc5f224 | 1030 | char *_kwnames[] = { "self","direction", NULL }; |
8ab979d7 RD |
1031 | |
1032 | self = self; | |
efc5f224 | 1033 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_Centre",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 1034 | return NULL; |
1d99702e RD |
1035 | if (_argo0) { |
1036 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1037 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1038 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Centre. Expected _wxWindow_p."); |
1039 | return NULL; | |
1040 | } | |
1041 | } | |
cf694132 RD |
1042 | { |
1043 | wxPy_BEGIN_ALLOW_THREADS; | |
1044 | wxWindow_Centre(_arg0,_arg1); | |
1045 | ||
1046 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1047 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1048 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1049 | _resultobj = Py_None; |
1050 | return _resultobj; | |
1051 | } | |
1052 | ||
bb0054cd | 1053 | #define wxWindow_CentreOnParent(_swigobj,_swigarg0) (_swigobj->CentreOnParent(_swigarg0)) |
efc5f224 | 1054 | static PyObject *_wrap_wxWindow_CentreOnParent(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
1055 | PyObject * _resultobj; |
1056 | wxWindow * _arg0; | |
1d99702e RD |
1057 | int _arg1 = (int ) wxBOTH; |
1058 | PyObject * _argo0 = 0; | |
efc5f224 | 1059 | char *_kwnames[] = { "self","direction", NULL }; |
bb0054cd RD |
1060 | |
1061 | self = self; | |
efc5f224 | 1062 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_CentreOnParent",_kwnames,&_argo0,&_arg1)) |
bb0054cd | 1063 | return NULL; |
1d99702e RD |
1064 | if (_argo0) { |
1065 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1066 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
bb0054cd RD |
1067 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_CentreOnParent. Expected _wxWindow_p."); |
1068 | return NULL; | |
1069 | } | |
1070 | } | |
1071 | { | |
1072 | wxPy_BEGIN_ALLOW_THREADS; | |
1073 | wxWindow_CentreOnParent(_arg0,_arg1); | |
1074 | ||
1075 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1076 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
1077 | } Py_INCREF(Py_None); |
1078 | _resultobj = Py_None; | |
1079 | return _resultobj; | |
1080 | } | |
1081 | ||
1082 | #define wxWindow_CenterOnParent(_swigobj,_swigarg0) (_swigobj->CenterOnParent(_swigarg0)) | |
efc5f224 | 1083 | static PyObject *_wrap_wxWindow_CenterOnParent(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
1084 | PyObject * _resultobj; |
1085 | wxWindow * _arg0; | |
1d99702e RD |
1086 | int _arg1 = (int ) wxBOTH; |
1087 | PyObject * _argo0 = 0; | |
efc5f224 | 1088 | char *_kwnames[] = { "self","direction", NULL }; |
bb0054cd RD |
1089 | |
1090 | self = self; | |
efc5f224 | 1091 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_CenterOnParent",_kwnames,&_argo0,&_arg1)) |
bb0054cd | 1092 | return NULL; |
1d99702e RD |
1093 | if (_argo0) { |
1094 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1095 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
bb0054cd RD |
1096 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_CenterOnParent. Expected _wxWindow_p."); |
1097 | return NULL; | |
1098 | } | |
1099 | } | |
1100 | { | |
1101 | wxPy_BEGIN_ALLOW_THREADS; | |
1102 | wxWindow_CenterOnParent(_arg0,_arg1); | |
1103 | ||
1104 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1105 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
1106 | } Py_INCREF(Py_None); |
1107 | _resultobj = Py_None; | |
1108 | return _resultobj; | |
1109 | } | |
1110 | ||
3ca6a5f0 BP |
1111 | #define wxWindow_CentreOnScreen(_swigobj,_swigarg0) (_swigobj->CentreOnScreen(_swigarg0)) |
1112 | static PyObject *_wrap_wxWindow_CentreOnScreen(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1113 | PyObject * _resultobj; | |
1114 | wxWindow * _arg0; | |
1115 | int _arg1 = (int ) wxBOTH; | |
1116 | PyObject * _argo0 = 0; | |
1117 | char *_kwnames[] = { "self","direction", NULL }; | |
1118 | ||
1119 | self = self; | |
1120 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_CentreOnScreen",_kwnames,&_argo0,&_arg1)) | |
1121 | return NULL; | |
1122 | if (_argo0) { | |
1123 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1124 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1125 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_CentreOnScreen. Expected _wxWindow_p."); | |
1126 | return NULL; | |
1127 | } | |
1128 | } | |
1129 | { | |
1130 | wxPy_BEGIN_ALLOW_THREADS; | |
1131 | wxWindow_CentreOnScreen(_arg0,_arg1); | |
1132 | ||
1133 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1134 | if (PyErr_Occurred()) return NULL; |
3ca6a5f0 BP |
1135 | } Py_INCREF(Py_None); |
1136 | _resultobj = Py_None; | |
1137 | return _resultobj; | |
1138 | } | |
1139 | ||
1140 | #define wxWindow_CenterOnScreen(_swigobj,_swigarg0) (_swigobj->CenterOnScreen(_swigarg0)) | |
1141 | static PyObject *_wrap_wxWindow_CenterOnScreen(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1142 | PyObject * _resultobj; | |
1143 | wxWindow * _arg0; | |
1144 | int _arg1 = (int ) wxBOTH; | |
1145 | PyObject * _argo0 = 0; | |
1146 | char *_kwnames[] = { "self","direction", NULL }; | |
1147 | ||
1148 | self = self; | |
1149 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_CenterOnScreen",_kwnames,&_argo0,&_arg1)) | |
1150 | return NULL; | |
1151 | if (_argo0) { | |
1152 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1153 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1154 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_CenterOnScreen. Expected _wxWindow_p."); | |
1155 | return NULL; | |
1156 | } | |
1157 | } | |
1158 | { | |
1159 | wxPy_BEGIN_ALLOW_THREADS; | |
1160 | wxWindow_CenterOnScreen(_arg0,_arg1); | |
1161 | ||
1162 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1163 | if (PyErr_Occurred()) return NULL; |
3ca6a5f0 BP |
1164 | } Py_INCREF(Py_None); |
1165 | _resultobj = Py_None; | |
1166 | return _resultobj; | |
1167 | } | |
1168 | ||
d56cebe7 RD |
1169 | #define wxWindow_Clear(_swigobj) (_swigobj->Clear()) |
1170 | static PyObject *_wrap_wxWindow_Clear(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1171 | PyObject * _resultobj; | |
1172 | wxWindow * _arg0; | |
1173 | PyObject * _argo0 = 0; | |
1174 | char *_kwnames[] = { "self", NULL }; | |
1175 | ||
1176 | self = self; | |
1177 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Clear",_kwnames,&_argo0)) | |
1178 | return NULL; | |
1179 | if (_argo0) { | |
1180 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1181 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1182 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Clear. Expected _wxWindow_p."); | |
1183 | return NULL; | |
1184 | } | |
1185 | } | |
1186 | { | |
1187 | wxPy_BEGIN_ALLOW_THREADS; | |
1188 | wxWindow_Clear(_arg0); | |
1189 | ||
1190 | wxPy_END_ALLOW_THREADS; | |
1191 | if (PyErr_Occurred()) return NULL; | |
1192 | } Py_INCREF(Py_None); | |
1193 | _resultobj = Py_None; | |
1194 | return _resultobj; | |
1195 | } | |
1196 | ||
af309447 | 1197 | #define wxWindow_ClientToScreenXY(_swigobj,_swigarg0,_swigarg1) (_swigobj->ClientToScreen(_swigarg0,_swigarg1)) |
efc5f224 | 1198 | static PyObject *_wrap_wxWindow_ClientToScreenXY(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1199 | PyObject * _resultobj; |
1200 | wxWindow * _arg0; | |
1201 | int * _arg1; | |
1202 | int * _arg2; | |
1d99702e | 1203 | PyObject * _argo0 = 0; |
8ab979d7 RD |
1204 | int temp; |
1205 | PyObject * _obj1 = 0; | |
1206 | int temp0; | |
1207 | PyObject * _obj2 = 0; | |
efc5f224 | 1208 | char *_kwnames[] = { "self","x","y", NULL }; |
8ab979d7 RD |
1209 | |
1210 | self = self; | |
efc5f224 | 1211 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxWindow_ClientToScreenXY",_kwnames,&_argo0,&_obj1,&_obj2)) |
8ab979d7 | 1212 | return NULL; |
1d99702e RD |
1213 | if (_argo0) { |
1214 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1215 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 | 1216 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ClientToScreenXY. Expected _wxWindow_p."); |
8ab979d7 RD |
1217 | return NULL; |
1218 | } | |
1219 | } | |
1220 | { | |
1221 | temp = (int) PyInt_AsLong(_obj1); | |
1222 | _arg1 = &temp; | |
1223 | } | |
1224 | { | |
1225 | temp0 = (int) PyInt_AsLong(_obj2); | |
1226 | _arg2 = &temp0; | |
1227 | } | |
cf694132 RD |
1228 | { |
1229 | wxPy_BEGIN_ALLOW_THREADS; | |
1230 | wxWindow_ClientToScreenXY(_arg0,_arg1,_arg2); | |
1231 | ||
1232 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1233 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1234 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1235 | _resultobj = Py_None; |
1236 | { | |
1237 | PyObject *o; | |
1238 | o = PyInt_FromLong((long) (*_arg1)); | |
1239 | _resultobj = t_output_helper(_resultobj, o); | |
1240 | } | |
1241 | { | |
1242 | PyObject *o; | |
1243 | o = PyInt_FromLong((long) (*_arg2)); | |
1244 | _resultobj = t_output_helper(_resultobj, o); | |
1245 | } | |
1246 | return _resultobj; | |
1247 | } | |
1248 | ||
af309447 | 1249 | #define wxWindow_ClientToScreen(_swigobj,_swigarg0) (_swigobj->ClientToScreen(_swigarg0)) |
efc5f224 | 1250 | static PyObject *_wrap_wxWindow_ClientToScreen(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
1251 | PyObject * _resultobj; |
1252 | wxPoint * _result; | |
1253 | wxWindow * _arg0; | |
1254 | wxPoint * _arg1; | |
1d99702e | 1255 | PyObject * _argo0 = 0; |
2f90df85 RD |
1256 | wxPoint temp; |
1257 | PyObject * _obj1 = 0; | |
efc5f224 | 1258 | char *_kwnames[] = { "self","pt", NULL }; |
af309447 RD |
1259 | char _ptemp[128]; |
1260 | ||
1261 | self = self; | |
2f90df85 | 1262 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_ClientToScreen",_kwnames,&_argo0,&_obj1)) |
af309447 | 1263 | return NULL; |
1d99702e RD |
1264 | if (_argo0) { |
1265 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1266 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
1267 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ClientToScreen. Expected _wxWindow_p."); |
1268 | return NULL; | |
1269 | } | |
1270 | } | |
2f90df85 RD |
1271 | { |
1272 | _arg1 = &temp; | |
1273 | if (! wxPoint_helper(_obj1, &_arg1)) | |
af309447 | 1274 | return NULL; |
2f90df85 | 1275 | } |
cf694132 RD |
1276 | { |
1277 | wxPy_BEGIN_ALLOW_THREADS; | |
1278 | _result = new wxPoint (wxWindow_ClientToScreen(_arg0,*_arg1)); | |
1279 | ||
1280 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1281 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1282 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); |
af309447 RD |
1283 | _resultobj = Py_BuildValue("s",_ptemp); |
1284 | return _resultobj; | |
1285 | } | |
1286 | ||
8ab979d7 | 1287 | #define wxWindow_Close(_swigobj,_swigarg0) (_swigobj->Close(_swigarg0)) |
efc5f224 | 1288 | static PyObject *_wrap_wxWindow_Close(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1289 | PyObject * _resultobj; |
1290 | bool _result; | |
1291 | wxWindow * _arg0; | |
1d99702e RD |
1292 | int _arg1 = (int ) FALSE; |
1293 | PyObject * _argo0 = 0; | |
efc5f224 | 1294 | char *_kwnames[] = { "self","force", NULL }; |
8ab979d7 RD |
1295 | |
1296 | self = self; | |
efc5f224 | 1297 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_Close",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 1298 | return NULL; |
1d99702e RD |
1299 | if (_argo0) { |
1300 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1301 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1302 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Close. Expected _wxWindow_p."); |
1303 | return NULL; | |
1304 | } | |
1305 | } | |
cf694132 RD |
1306 | { |
1307 | wxPy_BEGIN_ALLOW_THREADS; | |
1308 | _result = (bool )wxWindow_Close(_arg0,_arg1); | |
1309 | ||
1310 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1311 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1312 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
1313 | return _resultobj; |
1314 | } | |
1315 | ||
1316 | #define wxWindow_Destroy(_swigobj) (_swigobj->Destroy()) | |
efc5f224 | 1317 | static PyObject *_wrap_wxWindow_Destroy(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1318 | PyObject * _resultobj; |
1319 | bool _result; | |
1320 | wxWindow * _arg0; | |
1d99702e | 1321 | PyObject * _argo0 = 0; |
efc5f224 | 1322 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1323 | |
1324 | self = self; | |
efc5f224 | 1325 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Destroy",_kwnames,&_argo0)) |
8ab979d7 | 1326 | return NULL; |
1d99702e RD |
1327 | if (_argo0) { |
1328 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1329 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1330 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Destroy. Expected _wxWindow_p."); |
1331 | return NULL; | |
1332 | } | |
1333 | } | |
cf694132 RD |
1334 | { |
1335 | wxPy_BEGIN_ALLOW_THREADS; | |
1336 | _result = (bool )wxWindow_Destroy(_arg0); | |
1337 | ||
1338 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1339 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1340 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
1341 | return _resultobj; |
1342 | } | |
1343 | ||
1344 | #define wxWindow_DestroyChildren(_swigobj) (_swigobj->DestroyChildren()) | |
efc5f224 | 1345 | static PyObject *_wrap_wxWindow_DestroyChildren(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1346 | PyObject * _resultobj; |
1347 | wxWindow * _arg0; | |
1d99702e | 1348 | PyObject * _argo0 = 0; |
efc5f224 | 1349 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1350 | |
1351 | self = self; | |
efc5f224 | 1352 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_DestroyChildren",_kwnames,&_argo0)) |
8ab979d7 | 1353 | return NULL; |
1d99702e RD |
1354 | if (_argo0) { |
1355 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1356 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1357 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_DestroyChildren. Expected _wxWindow_p."); |
1358 | return NULL; | |
1359 | } | |
1360 | } | |
cf694132 RD |
1361 | { |
1362 | wxPy_BEGIN_ALLOW_THREADS; | |
1363 | wxWindow_DestroyChildren(_arg0); | |
1364 | ||
1365 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1366 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1367 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1368 | _resultobj = Py_None; |
1369 | return _resultobj; | |
1370 | } | |
1371 | ||
ac346f50 RD |
1372 | #define wxWindow_IsBeingDeleted(_swigobj) (_swigobj->IsBeingDeleted()) |
1373 | static PyObject *_wrap_wxWindow_IsBeingDeleted(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1374 | PyObject * _resultobj; | |
1375 | bool _result; | |
1376 | wxWindow * _arg0; | |
1377 | PyObject * _argo0 = 0; | |
1378 | char *_kwnames[] = { "self", NULL }; | |
1379 | ||
1380 | self = self; | |
1381 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_IsBeingDeleted",_kwnames,&_argo0)) | |
1382 | return NULL; | |
1383 | if (_argo0) { | |
1384 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1385 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1386 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsBeingDeleted. Expected _wxWindow_p."); | |
1387 | return NULL; | |
1388 | } | |
1389 | } | |
1390 | { | |
1391 | wxPy_BEGIN_ALLOW_THREADS; | |
1392 | _result = (bool )wxWindow_IsBeingDeleted(_arg0); | |
1393 | ||
1394 | wxPy_END_ALLOW_THREADS; | |
1395 | if (PyErr_Occurred()) return NULL; | |
1396 | } _resultobj = Py_BuildValue("i",_result); | |
1397 | return _resultobj; | |
1398 | } | |
1399 | ||
8ab979d7 | 1400 | #define wxWindow_DragAcceptFiles(_swigobj,_swigarg0) (_swigobj->DragAcceptFiles(_swigarg0)) |
efc5f224 | 1401 | static PyObject *_wrap_wxWindow_DragAcceptFiles(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1402 | PyObject * _resultobj; |
1403 | wxWindow * _arg0; | |
1404 | bool _arg1; | |
1d99702e | 1405 | PyObject * _argo0 = 0; |
8ab979d7 | 1406 | int tempbool1; |
efc5f224 | 1407 | char *_kwnames[] = { "self","accept", NULL }; |
8ab979d7 RD |
1408 | |
1409 | self = self; | |
efc5f224 | 1410 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_DragAcceptFiles",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 1411 | return NULL; |
1d99702e RD |
1412 | if (_argo0) { |
1413 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1414 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1415 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_DragAcceptFiles. Expected _wxWindow_p."); |
1416 | return NULL; | |
1417 | } | |
1418 | } | |
1419 | _arg1 = (bool ) tempbool1; | |
cf694132 RD |
1420 | { |
1421 | wxPy_BEGIN_ALLOW_THREADS; | |
1422 | wxWindow_DragAcceptFiles(_arg0,_arg1); | |
1423 | ||
1424 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1425 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1426 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1427 | _resultobj = Py_None; |
1428 | return _resultobj; | |
1429 | } | |
1430 | ||
1431 | #define wxWindow_Enable(_swigobj,_swigarg0) (_swigobj->Enable(_swigarg0)) | |
efc5f224 | 1432 | static PyObject *_wrap_wxWindow_Enable(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1433 | PyObject * _resultobj; |
1434 | wxWindow * _arg0; | |
1435 | bool _arg1; | |
1d99702e | 1436 | PyObject * _argo0 = 0; |
8ab979d7 | 1437 | int tempbool1; |
efc5f224 | 1438 | char *_kwnames[] = { "self","enable", NULL }; |
8ab979d7 RD |
1439 | |
1440 | self = self; | |
efc5f224 | 1441 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_Enable",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 1442 | return NULL; |
1d99702e RD |
1443 | if (_argo0) { |
1444 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1445 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1446 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Enable. Expected _wxWindow_p."); |
1447 | return NULL; | |
1448 | } | |
1449 | } | |
1450 | _arg1 = (bool ) tempbool1; | |
cf694132 RD |
1451 | { |
1452 | wxPy_BEGIN_ALLOW_THREADS; | |
1453 | wxWindow_Enable(_arg0,_arg1); | |
1454 | ||
1455 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1456 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1457 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1458 | _resultobj = Py_None; |
1459 | return _resultobj; | |
1460 | } | |
1461 | ||
af309447 | 1462 | #define wxWindow_FindWindowById(_swigobj,_swigarg0) (_swigobj->FindWindow(_swigarg0)) |
efc5f224 | 1463 | static PyObject *_wrap_wxWindow_FindWindowById(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1464 | PyObject * _resultobj; |
1465 | wxWindow * _result; | |
1466 | wxWindow * _arg0; | |
1467 | long _arg1; | |
1d99702e | 1468 | PyObject * _argo0 = 0; |
efc5f224 | 1469 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
1470 | |
1471 | self = self; | |
efc5f224 | 1472 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxWindow_FindWindowById",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 1473 | return NULL; |
1d99702e RD |
1474 | if (_argo0) { |
1475 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1476 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 | 1477 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_FindWindowById. Expected _wxWindow_p."); |
8ab979d7 RD |
1478 | return NULL; |
1479 | } | |
1480 | } | |
cf694132 RD |
1481 | { |
1482 | wxPy_BEGIN_ALLOW_THREADS; | |
1483 | _result = (wxWindow *)wxWindow_FindWindowById(_arg0,_arg1); | |
1484 | ||
1485 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1486 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 1487 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
1488 | return _resultobj; |
1489 | } | |
1490 | ||
1491 | #define wxWindow_FindWindowByName(_swigobj,_swigarg0) (_swigobj->FindWindow(_swigarg0)) | |
efc5f224 | 1492 | static PyObject *_wrap_wxWindow_FindWindowByName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1493 | PyObject * _resultobj; |
1494 | wxWindow * _result; | |
1495 | wxWindow * _arg0; | |
1496 | wxString * _arg1; | |
1d99702e | 1497 | PyObject * _argo0 = 0; |
8ab979d7 | 1498 | PyObject * _obj1 = 0; |
efc5f224 | 1499 | char *_kwnames[] = { "self","name", NULL }; |
8ab979d7 RD |
1500 | |
1501 | self = self; | |
efc5f224 | 1502 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_FindWindowByName",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 1503 | return NULL; |
1d99702e RD |
1504 | if (_argo0) { |
1505 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1506 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1507 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_FindWindowByName. Expected _wxWindow_p."); |
1508 | return NULL; | |
1509 | } | |
1510 | } | |
1511 | { | |
185d7c3e RD |
1512 | #if PYTHON_API_VERSION >= 1009 |
1513 | char* tmpPtr; int tmpSize; | |
1514 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 1515 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
1516 | return NULL; |
1517 | } | |
1518 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
1519 | return NULL; | |
1520 | _arg1 = new wxString(tmpPtr, tmpSize); | |
1521 | #else | |
8ab979d7 RD |
1522 | if (!PyString_Check(_obj1)) { |
1523 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1524 | return NULL; | |
1525 | } | |
185d7c3e RD |
1526 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
1527 | #endif | |
8ab979d7 | 1528 | } |
cf694132 RD |
1529 | { |
1530 | wxPy_BEGIN_ALLOW_THREADS; | |
1531 | _result = (wxWindow *)wxWindow_FindWindowByName(_arg0,*_arg1); | |
1532 | ||
1533 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1534 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 1535 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
1536 | { |
1537 | if (_obj1) | |
1538 | delete _arg1; | |
1539 | } | |
1540 | return _resultobj; | |
1541 | } | |
1542 | ||
1543 | #define wxWindow_Fit(_swigobj) (_swigobj->Fit()) | |
efc5f224 | 1544 | static PyObject *_wrap_wxWindow_Fit(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1545 | PyObject * _resultobj; |
1546 | wxWindow * _arg0; | |
1d99702e | 1547 | PyObject * _argo0 = 0; |
efc5f224 | 1548 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1549 | |
1550 | self = self; | |
efc5f224 | 1551 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Fit",_kwnames,&_argo0)) |
8ab979d7 | 1552 | return NULL; |
1d99702e RD |
1553 | if (_argo0) { |
1554 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1555 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1556 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Fit. Expected _wxWindow_p."); |
1557 | return NULL; | |
1558 | } | |
1559 | } | |
cf694132 RD |
1560 | { |
1561 | wxPy_BEGIN_ALLOW_THREADS; | |
1562 | wxWindow_Fit(_arg0); | |
1563 | ||
1564 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1565 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1566 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1567 | _resultobj = Py_None; |
1568 | return _resultobj; | |
1569 | } | |
1570 | ||
1571 | #define wxWindow_GetBackgroundColour(_swigobj) (_swigobj->GetBackgroundColour()) | |
efc5f224 | 1572 | static PyObject *_wrap_wxWindow_GetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1573 | PyObject * _resultobj; |
1574 | wxColour * _result; | |
1575 | wxWindow * _arg0; | |
1d99702e | 1576 | PyObject * _argo0 = 0; |
efc5f224 | 1577 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1578 | char _ptemp[128]; |
1579 | ||
1580 | self = self; | |
efc5f224 | 1581 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetBackgroundColour",_kwnames,&_argo0)) |
8ab979d7 | 1582 | return NULL; |
1d99702e RD |
1583 | if (_argo0) { |
1584 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1585 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1586 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetBackgroundColour. Expected _wxWindow_p."); |
1587 | return NULL; | |
1588 | } | |
1589 | } | |
cf694132 RD |
1590 | { |
1591 | wxPy_BEGIN_ALLOW_THREADS; | |
1592 | _result = new wxColour (wxWindow_GetBackgroundColour(_arg0)); | |
1593 | ||
1594 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1595 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1596 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); |
8ab979d7 RD |
1597 | _resultobj = Py_BuildValue("s",_ptemp); |
1598 | return _resultobj; | |
1599 | } | |
1600 | ||
d426c97e RD |
1601 | static PyObject * wxWindow_GetChildren(wxWindow *self) { |
1602 | wxWindowList& list = self->GetChildren(); | |
1603 | return wxPy_ConvertList(&list, "wxWindow"); | |
1604 | } | |
1605 | static PyObject *_wrap_wxWindow_GetChildren(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1606 | PyObject * _resultobj; | |
1607 | PyObject * _result; | |
1608 | wxWindow * _arg0; | |
1609 | PyObject * _argo0 = 0; | |
1610 | char *_kwnames[] = { "self", NULL }; | |
1611 | ||
1612 | self = self; | |
1613 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetChildren",_kwnames,&_argo0)) | |
1614 | return NULL; | |
1615 | if (_argo0) { | |
1616 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1617 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1618 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetChildren. Expected _wxWindow_p."); | |
1619 | return NULL; | |
1620 | } | |
1621 | } | |
1622 | { | |
1623 | wxPy_BEGIN_ALLOW_THREADS; | |
1624 | _result = (PyObject *)wxWindow_GetChildren(_arg0); | |
1625 | ||
1626 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1627 | if (PyErr_Occurred()) return NULL; |
d426c97e RD |
1628 | }{ |
1629 | _resultobj = _result; | |
1630 | } | |
1631 | return _resultobj; | |
1632 | } | |
1633 | ||
8ab979d7 | 1634 | #define wxWindow_GetCharHeight(_swigobj) (_swigobj->GetCharHeight()) |
efc5f224 | 1635 | static PyObject *_wrap_wxWindow_GetCharHeight(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1636 | PyObject * _resultobj; |
1637 | int _result; | |
1638 | wxWindow * _arg0; | |
1d99702e | 1639 | PyObject * _argo0 = 0; |
efc5f224 | 1640 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1641 | |
1642 | self = self; | |
efc5f224 | 1643 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetCharHeight",_kwnames,&_argo0)) |
8ab979d7 | 1644 | return NULL; |
1d99702e RD |
1645 | if (_argo0) { |
1646 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1647 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1648 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetCharHeight. Expected _wxWindow_p."); |
1649 | return NULL; | |
1650 | } | |
1651 | } | |
cf694132 RD |
1652 | { |
1653 | wxPy_BEGIN_ALLOW_THREADS; | |
1654 | _result = (int )wxWindow_GetCharHeight(_arg0); | |
1655 | ||
1656 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1657 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1658 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
1659 | return _resultobj; |
1660 | } | |
1661 | ||
1662 | #define wxWindow_GetCharWidth(_swigobj) (_swigobj->GetCharWidth()) | |
efc5f224 | 1663 | static PyObject *_wrap_wxWindow_GetCharWidth(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1664 | PyObject * _resultobj; |
1665 | int _result; | |
1666 | wxWindow * _arg0; | |
1d99702e | 1667 | PyObject * _argo0 = 0; |
efc5f224 | 1668 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1669 | |
1670 | self = self; | |
efc5f224 | 1671 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetCharWidth",_kwnames,&_argo0)) |
8ab979d7 | 1672 | return NULL; |
1d99702e RD |
1673 | if (_argo0) { |
1674 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1675 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1676 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetCharWidth. Expected _wxWindow_p."); |
1677 | return NULL; | |
1678 | } | |
1679 | } | |
cf694132 RD |
1680 | { |
1681 | wxPy_BEGIN_ALLOW_THREADS; | |
1682 | _result = (int )wxWindow_GetCharWidth(_arg0); | |
1683 | ||
1684 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1685 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1686 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
1687 | return _resultobj; |
1688 | } | |
1689 | ||
b8b8dda7 | 1690 | #define wxWindow_GetClientSizeTuple(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetClientSize(_swigarg0,_swigarg1)) |
efc5f224 | 1691 | static PyObject *_wrap_wxWindow_GetClientSizeTuple(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1692 | PyObject * _resultobj; |
1693 | wxWindow * _arg0; | |
1694 | int * _arg1; | |
1695 | int temp; | |
1696 | int * _arg2; | |
1697 | int temp0; | |
1d99702e | 1698 | PyObject * _argo0 = 0; |
efc5f224 | 1699 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1700 | |
1701 | self = self; | |
1702 | { | |
1703 | _arg1 = &temp; | |
1704 | } | |
1705 | { | |
1706 | _arg2 = &temp0; | |
1707 | } | |
efc5f224 | 1708 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetClientSizeTuple",_kwnames,&_argo0)) |
8ab979d7 | 1709 | return NULL; |
1d99702e RD |
1710 | if (_argo0) { |
1711 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1712 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 | 1713 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetClientSizeTuple. Expected _wxWindow_p."); |
8ab979d7 RD |
1714 | return NULL; |
1715 | } | |
1716 | } | |
cf694132 RD |
1717 | { |
1718 | wxPy_BEGIN_ALLOW_THREADS; | |
1719 | wxWindow_GetClientSizeTuple(_arg0,_arg1,_arg2); | |
1720 | ||
1721 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1722 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1723 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1724 | _resultobj = Py_None; |
1725 | { | |
1726 | PyObject *o; | |
1727 | o = PyInt_FromLong((long) (*_arg1)); | |
1728 | _resultobj = t_output_helper(_resultobj, o); | |
1729 | } | |
1730 | { | |
1731 | PyObject *o; | |
1732 | o = PyInt_FromLong((long) (*_arg2)); | |
1733 | _resultobj = t_output_helper(_resultobj, o); | |
1734 | } | |
1735 | return _resultobj; | |
1736 | } | |
1737 | ||
b8b8dda7 | 1738 | #define wxWindow_GetClientSize(_swigobj) (_swigobj->GetClientSize()) |
efc5f224 | 1739 | static PyObject *_wrap_wxWindow_GetClientSize(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
1740 | PyObject * _resultobj; |
1741 | wxSize * _result; | |
1742 | wxWindow * _arg0; | |
1d99702e | 1743 | PyObject * _argo0 = 0; |
efc5f224 | 1744 | char *_kwnames[] = { "self", NULL }; |
b8b8dda7 RD |
1745 | char _ptemp[128]; |
1746 | ||
1747 | self = self; | |
efc5f224 | 1748 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetClientSize",_kwnames,&_argo0)) |
b8b8dda7 | 1749 | return NULL; |
1d99702e RD |
1750 | if (_argo0) { |
1751 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1752 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
1753 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetClientSize. Expected _wxWindow_p."); |
1754 | return NULL; | |
1755 | } | |
1756 | } | |
cf694132 RD |
1757 | { |
1758 | wxPy_BEGIN_ALLOW_THREADS; | |
1759 | _result = new wxSize (wxWindow_GetClientSize(_arg0)); | |
1760 | ||
1761 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1762 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1763 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxSize_p"); |
b8b8dda7 RD |
1764 | _resultobj = Py_BuildValue("s",_ptemp); |
1765 | return _resultobj; | |
1766 | } | |
1767 | ||
8ab979d7 | 1768 | #define wxWindow_GetConstraints(_swigobj) (_swigobj->GetConstraints()) |
efc5f224 | 1769 | static PyObject *_wrap_wxWindow_GetConstraints(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1770 | PyObject * _resultobj; |
1771 | wxLayoutConstraints * _result; | |
1772 | wxWindow * _arg0; | |
1d99702e | 1773 | PyObject * _argo0 = 0; |
efc5f224 | 1774 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1775 | char _ptemp[128]; |
1776 | ||
1777 | self = self; | |
efc5f224 | 1778 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetConstraints",_kwnames,&_argo0)) |
8ab979d7 | 1779 | return NULL; |
1d99702e RD |
1780 | if (_argo0) { |
1781 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1782 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1783 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetConstraints. Expected _wxWindow_p."); |
1784 | return NULL; | |
1785 | } | |
1786 | } | |
cf694132 RD |
1787 | { |
1788 | wxPy_BEGIN_ALLOW_THREADS; | |
1789 | _result = (wxLayoutConstraints *)wxWindow_GetConstraints(_arg0); | |
1790 | ||
1791 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1792 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
1793 | } if (_result) { |
1794 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxLayoutConstraints_p"); | |
1795 | _resultobj = Py_BuildValue("s",_ptemp); | |
1796 | } else { | |
1797 | Py_INCREF(Py_None); | |
1798 | _resultobj = Py_None; | |
1799 | } | |
8ab979d7 RD |
1800 | return _resultobj; |
1801 | } | |
1802 | ||
1afc06c2 RD |
1803 | #define wxWindow_GetEventHandler(_swigobj) (_swigobj->GetEventHandler()) |
1804 | static PyObject *_wrap_wxWindow_GetEventHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1805 | PyObject * _resultobj; | |
1806 | wxEvtHandler * _result; | |
1807 | wxWindow * _arg0; | |
1808 | PyObject * _argo0 = 0; | |
1809 | char *_kwnames[] = { "self", NULL }; | |
1afc06c2 RD |
1810 | |
1811 | self = self; | |
1812 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetEventHandler",_kwnames,&_argo0)) | |
1813 | return NULL; | |
1814 | if (_argo0) { | |
1815 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1816 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1817 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetEventHandler. Expected _wxWindow_p."); | |
1818 | return NULL; | |
1819 | } | |
1820 | } | |
1821 | { | |
1822 | wxPy_BEGIN_ALLOW_THREADS; | |
1823 | _result = (wxEvtHandler *)wxWindow_GetEventHandler(_arg0); | |
1824 | ||
1825 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1826 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 1827 | }{ _resultobj = wxPyMake_wxObject(_result); } |
1afc06c2 RD |
1828 | return _resultobj; |
1829 | } | |
1830 | ||
8ab979d7 | 1831 | #define wxWindow_GetFont(_swigobj) (_swigobj->GetFont()) |
efc5f224 | 1832 | static PyObject *_wrap_wxWindow_GetFont(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1833 | PyObject * _resultobj; |
1834 | wxFont * _result; | |
1835 | wxWindow * _arg0; | |
1d99702e | 1836 | PyObject * _argo0 = 0; |
efc5f224 | 1837 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1838 | char _ptemp[128]; |
1839 | ||
1840 | self = self; | |
efc5f224 | 1841 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetFont",_kwnames,&_argo0)) |
8ab979d7 | 1842 | return NULL; |
1d99702e RD |
1843 | if (_argo0) { |
1844 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1845 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1846 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetFont. Expected _wxWindow_p."); |
1847 | return NULL; | |
1848 | } | |
1849 | } | |
cf694132 RD |
1850 | { |
1851 | wxPy_BEGIN_ALLOW_THREADS; | |
1852 | wxFont & _result_ref = wxWindow_GetFont(_arg0); | |
b8b8dda7 | 1853 | _result = (wxFont *) &_result_ref; |
cf694132 RD |
1854 | |
1855 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1856 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
1857 | } if (_result) { |
1858 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxFont_p"); | |
1859 | _resultobj = Py_BuildValue("s",_ptemp); | |
1860 | } else { | |
1861 | Py_INCREF(Py_None); | |
1862 | _resultobj = Py_None; | |
1863 | } | |
8ab979d7 RD |
1864 | return _resultobj; |
1865 | } | |
1866 | ||
1867 | #define wxWindow_GetForegroundColour(_swigobj) (_swigobj->GetForegroundColour()) | |
efc5f224 | 1868 | static PyObject *_wrap_wxWindow_GetForegroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1869 | PyObject * _resultobj; |
1870 | wxColour * _result; | |
1871 | wxWindow * _arg0; | |
1d99702e | 1872 | PyObject * _argo0 = 0; |
efc5f224 | 1873 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1874 | char _ptemp[128]; |
1875 | ||
1876 | self = self; | |
efc5f224 | 1877 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetForegroundColour",_kwnames,&_argo0)) |
8ab979d7 | 1878 | return NULL; |
1d99702e RD |
1879 | if (_argo0) { |
1880 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1881 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1882 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetForegroundColour. Expected _wxWindow_p."); |
1883 | return NULL; | |
1884 | } | |
1885 | } | |
cf694132 RD |
1886 | { |
1887 | wxPy_BEGIN_ALLOW_THREADS; | |
1888 | _result = new wxColour (wxWindow_GetForegroundColour(_arg0)); | |
1889 | ||
1890 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1891 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1892 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); |
8ab979d7 RD |
1893 | _resultobj = Py_BuildValue("s",_ptemp); |
1894 | return _resultobj; | |
1895 | } | |
1896 | ||
1897 | #define wxWindow_GetGrandParent(_swigobj) (_swigobj->GetGrandParent()) | |
efc5f224 | 1898 | static PyObject *_wrap_wxWindow_GetGrandParent(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1899 | PyObject * _resultobj; |
1900 | wxWindow * _result; | |
1901 | wxWindow * _arg0; | |
1d99702e | 1902 | PyObject * _argo0 = 0; |
efc5f224 | 1903 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1904 | |
1905 | self = self; | |
efc5f224 | 1906 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetGrandParent",_kwnames,&_argo0)) |
8ab979d7 | 1907 | return NULL; |
1d99702e RD |
1908 | if (_argo0) { |
1909 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1910 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1911 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetGrandParent. Expected _wxWindow_p."); |
1912 | return NULL; | |
1913 | } | |
1914 | } | |
cf694132 RD |
1915 | { |
1916 | wxPy_BEGIN_ALLOW_THREADS; | |
1917 | _result = (wxWindow *)wxWindow_GetGrandParent(_arg0); | |
1918 | ||
1919 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1920 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 1921 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
1922 | return _resultobj; |
1923 | } | |
1924 | ||
2abc0a0f | 1925 | static long wxWindow_GetHandle(wxWindow *self) { |
1b55cabf | 1926 | return wxPyGetWinHandle(self); //(long)self->GetHandle(); |
2abc0a0f RD |
1927 | } |
1928 | static PyObject *_wrap_wxWindow_GetHandle(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1929 | PyObject * _resultobj; | |
1930 | long _result; | |
1931 | wxWindow * _arg0; | |
1932 | PyObject * _argo0 = 0; | |
1933 | char *_kwnames[] = { "self", NULL }; | |
1934 | ||
1935 | self = self; | |
1936 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetHandle",_kwnames,&_argo0)) | |
1937 | return NULL; | |
1938 | if (_argo0) { | |
1939 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1940 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1941 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetHandle. Expected _wxWindow_p."); | |
1942 | return NULL; | |
1943 | } | |
1944 | } | |
1945 | { | |
1946 | wxPy_BEGIN_ALLOW_THREADS; | |
1947 | _result = (long )wxWindow_GetHandle(_arg0); | |
1948 | ||
1949 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1950 | if (PyErr_Occurred()) return NULL; |
2abc0a0f RD |
1951 | } _resultobj = Py_BuildValue("l",_result); |
1952 | return _resultobj; | |
1953 | } | |
1954 | ||
8ab979d7 | 1955 | #define wxWindow_GetId(_swigobj) (_swigobj->GetId()) |
efc5f224 | 1956 | static PyObject *_wrap_wxWindow_GetId(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1957 | PyObject * _resultobj; |
1958 | int _result; | |
1959 | wxWindow * _arg0; | |
1d99702e | 1960 | PyObject * _argo0 = 0; |
efc5f224 | 1961 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1962 | |
1963 | self = self; | |
efc5f224 | 1964 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetId",_kwnames,&_argo0)) |
8ab979d7 | 1965 | return NULL; |
1d99702e RD |
1966 | if (_argo0) { |
1967 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1968 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1969 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetId. Expected _wxWindow_p."); |
1970 | return NULL; | |
1971 | } | |
1972 | } | |
cf694132 RD |
1973 | { |
1974 | wxPy_BEGIN_ALLOW_THREADS; | |
1975 | _result = (int )wxWindow_GetId(_arg0); | |
1976 | ||
1977 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 1978 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1979 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
1980 | return _resultobj; |
1981 | } | |
1982 | ||
8ab979d7 | 1983 | #define wxWindow_GetLabel(_swigobj) (_swigobj->GetLabel()) |
efc5f224 | 1984 | static PyObject *_wrap_wxWindow_GetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1985 | PyObject * _resultobj; |
1986 | wxString * _result; | |
1987 | wxWindow * _arg0; | |
1d99702e | 1988 | PyObject * _argo0 = 0; |
efc5f224 | 1989 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1990 | |
1991 | self = self; | |
efc5f224 | 1992 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetLabel",_kwnames,&_argo0)) |
8ab979d7 | 1993 | return NULL; |
1d99702e RD |
1994 | if (_argo0) { |
1995 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1996 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1997 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetLabel. Expected _wxWindow_p."); |
1998 | return NULL; | |
1999 | } | |
2000 | } | |
8ab979d7 | 2001 | { |
cf694132 RD |
2002 | wxPy_BEGIN_ALLOW_THREADS; |
2003 | _result = new wxString (wxWindow_GetLabel(_arg0)); | |
2004 | ||
2005 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2006 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2007 | }{ |
eec92d76 | 2008 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
2009 | } |
2010 | { | |
2011 | delete _result; | |
2012 | } | |
2013 | return _resultobj; | |
2014 | } | |
2015 | ||
bb0054cd | 2016 | #define wxWindow_SetLabel(_swigobj,_swigarg0) (_swigobj->SetLabel(_swigarg0)) |
efc5f224 | 2017 | static PyObject *_wrap_wxWindow_SetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
2018 | PyObject * _resultobj; |
2019 | wxWindow * _arg0; | |
2020 | wxString * _arg1; | |
1d99702e | 2021 | PyObject * _argo0 = 0; |
bb0054cd | 2022 | PyObject * _obj1 = 0; |
efc5f224 | 2023 | char *_kwnames[] = { "self","label", NULL }; |
bb0054cd RD |
2024 | |
2025 | self = self; | |
efc5f224 | 2026 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetLabel",_kwnames,&_argo0,&_obj1)) |
bb0054cd | 2027 | return NULL; |
1d99702e RD |
2028 | if (_argo0) { |
2029 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2030 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
bb0054cd RD |
2031 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetLabel. Expected _wxWindow_p."); |
2032 | return NULL; | |
2033 | } | |
2034 | } | |
2035 | { | |
185d7c3e RD |
2036 | #if PYTHON_API_VERSION >= 1009 |
2037 | char* tmpPtr; int tmpSize; | |
2038 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 2039 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
2040 | return NULL; |
2041 | } | |
2042 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
2043 | return NULL; | |
2044 | _arg1 = new wxString(tmpPtr, tmpSize); | |
2045 | #else | |
bb0054cd RD |
2046 | if (!PyString_Check(_obj1)) { |
2047 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2048 | return NULL; | |
2049 | } | |
185d7c3e RD |
2050 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
2051 | #endif | |
bb0054cd RD |
2052 | } |
2053 | { | |
2054 | wxPy_BEGIN_ALLOW_THREADS; | |
2055 | wxWindow_SetLabel(_arg0,*_arg1); | |
2056 | ||
2057 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2058 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
2059 | } Py_INCREF(Py_None); |
2060 | _resultobj = Py_None; | |
2061 | { | |
2062 | if (_obj1) | |
2063 | delete _arg1; | |
2064 | } | |
2065 | return _resultobj; | |
2066 | } | |
2067 | ||
8ab979d7 | 2068 | #define wxWindow_GetName(_swigobj) (_swigobj->GetName()) |
efc5f224 | 2069 | static PyObject *_wrap_wxWindow_GetName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2070 | PyObject * _resultobj; |
2071 | wxString * _result; | |
2072 | wxWindow * _arg0; | |
1d99702e | 2073 | PyObject * _argo0 = 0; |
efc5f224 | 2074 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2075 | |
2076 | self = self; | |
efc5f224 | 2077 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetName",_kwnames,&_argo0)) |
8ab979d7 | 2078 | return NULL; |
1d99702e RD |
2079 | if (_argo0) { |
2080 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2081 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2082 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetName. Expected _wxWindow_p."); |
2083 | return NULL; | |
2084 | } | |
2085 | } | |
8ab979d7 | 2086 | { |
cf694132 RD |
2087 | wxPy_BEGIN_ALLOW_THREADS; |
2088 | _result = new wxString (wxWindow_GetName(_arg0)); | |
2089 | ||
2090 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2091 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2092 | }{ |
eec92d76 | 2093 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
2094 | } |
2095 | { | |
2096 | delete _result; | |
2097 | } | |
2098 | return _resultobj; | |
2099 | } | |
2100 | ||
2101 | #define wxWindow_GetParent(_swigobj) (_swigobj->GetParent()) | |
efc5f224 | 2102 | static PyObject *_wrap_wxWindow_GetParent(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2103 | PyObject * _resultobj; |
2104 | wxWindow * _result; | |
2105 | wxWindow * _arg0; | |
1d99702e | 2106 | PyObject * _argo0 = 0; |
efc5f224 | 2107 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2108 | |
2109 | self = self; | |
efc5f224 | 2110 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetParent",_kwnames,&_argo0)) |
8ab979d7 | 2111 | return NULL; |
1d99702e RD |
2112 | if (_argo0) { |
2113 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2114 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2115 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetParent. Expected _wxWindow_p."); |
2116 | return NULL; | |
2117 | } | |
2118 | } | |
cf694132 RD |
2119 | { |
2120 | wxPy_BEGIN_ALLOW_THREADS; | |
2121 | _result = (wxWindow *)wxWindow_GetParent(_arg0); | |
2122 | ||
2123 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2124 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 2125 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
2126 | return _resultobj; |
2127 | } | |
2128 | ||
b8b8dda7 | 2129 | #define wxWindow_GetPositionTuple(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetPosition(_swigarg0,_swigarg1)) |
efc5f224 | 2130 | static PyObject *_wrap_wxWindow_GetPositionTuple(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
2131 | PyObject * _resultobj; |
2132 | wxWindow * _arg0; | |
2133 | int * _arg1; | |
2134 | int temp; | |
2135 | int * _arg2; | |
2136 | int temp0; | |
1d99702e | 2137 | PyObject * _argo0 = 0; |
efc5f224 | 2138 | char *_kwnames[] = { "self", NULL }; |
b8b8dda7 RD |
2139 | |
2140 | self = self; | |
2141 | { | |
2142 | _arg1 = &temp; | |
2143 | } | |
2144 | { | |
2145 | _arg2 = &temp0; | |
2146 | } | |
efc5f224 | 2147 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetPositionTuple",_kwnames,&_argo0)) |
b8b8dda7 | 2148 | return NULL; |
1d99702e RD |
2149 | if (_argo0) { |
2150 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2151 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
2152 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetPositionTuple. Expected _wxWindow_p."); |
2153 | return NULL; | |
2154 | } | |
2155 | } | |
cf694132 RD |
2156 | { |
2157 | wxPy_BEGIN_ALLOW_THREADS; | |
2158 | wxWindow_GetPositionTuple(_arg0,_arg1,_arg2); | |
2159 | ||
2160 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2161 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2162 | } Py_INCREF(Py_None); |
b8b8dda7 RD |
2163 | _resultobj = Py_None; |
2164 | { | |
2165 | PyObject *o; | |
2166 | o = PyInt_FromLong((long) (*_arg1)); | |
2167 | _resultobj = t_output_helper(_resultobj, o); | |
2168 | } | |
2169 | { | |
2170 | PyObject *o; | |
2171 | o = PyInt_FromLong((long) (*_arg2)); | |
2172 | _resultobj = t_output_helper(_resultobj, o); | |
2173 | } | |
2174 | return _resultobj; | |
2175 | } | |
2176 | ||
2177 | #define wxWindow_GetPosition(_swigobj) (_swigobj->GetPosition()) | |
efc5f224 | 2178 | static PyObject *_wrap_wxWindow_GetPosition(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
2179 | PyObject * _resultobj; |
2180 | wxPoint * _result; | |
2181 | wxWindow * _arg0; | |
1d99702e | 2182 | PyObject * _argo0 = 0; |
efc5f224 | 2183 | char *_kwnames[] = { "self", NULL }; |
b8b8dda7 RD |
2184 | char _ptemp[128]; |
2185 | ||
2186 | self = self; | |
efc5f224 | 2187 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetPosition",_kwnames,&_argo0)) |
b8b8dda7 | 2188 | return NULL; |
1d99702e RD |
2189 | if (_argo0) { |
2190 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2191 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
2192 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetPosition. Expected _wxWindow_p."); |
2193 | return NULL; | |
2194 | } | |
2195 | } | |
cf694132 RD |
2196 | { |
2197 | wxPy_BEGIN_ALLOW_THREADS; | |
2198 | _result = new wxPoint (wxWindow_GetPosition(_arg0)); | |
2199 | ||
2200 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2201 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2202 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); |
b8b8dda7 RD |
2203 | _resultobj = Py_BuildValue("s",_ptemp); |
2204 | return _resultobj; | |
2205 | } | |
2206 | ||
2207 | #define wxWindow_GetRect(_swigobj) (_swigobj->GetRect()) | |
efc5f224 | 2208 | static PyObject *_wrap_wxWindow_GetRect(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
2209 | PyObject * _resultobj; |
2210 | wxRect * _result; | |
2211 | wxWindow * _arg0; | |
1d99702e | 2212 | PyObject * _argo0 = 0; |
efc5f224 | 2213 | char *_kwnames[] = { "self", NULL }; |
b8b8dda7 RD |
2214 | char _ptemp[128]; |
2215 | ||
2216 | self = self; | |
efc5f224 | 2217 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetRect",_kwnames,&_argo0)) |
b8b8dda7 | 2218 | return NULL; |
1d99702e RD |
2219 | if (_argo0) { |
2220 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2221 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
2222 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetRect. Expected _wxWindow_p."); |
2223 | return NULL; | |
2224 | } | |
2225 | } | |
cf694132 RD |
2226 | { |
2227 | wxPy_BEGIN_ALLOW_THREADS; | |
2228 | _result = new wxRect (wxWindow_GetRect(_arg0)); | |
2229 | ||
2230 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2231 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2232 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxRect_p"); |
b8b8dda7 RD |
2233 | _resultobj = Py_BuildValue("s",_ptemp); |
2234 | return _resultobj; | |
2235 | } | |
2236 | ||
8ab979d7 | 2237 | #define wxWindow_GetScrollThumb(_swigobj,_swigarg0) (_swigobj->GetScrollThumb(_swigarg0)) |
efc5f224 | 2238 | static PyObject *_wrap_wxWindow_GetScrollThumb(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2239 | PyObject * _resultobj; |
2240 | int _result; | |
2241 | wxWindow * _arg0; | |
2242 | int _arg1; | |
1d99702e | 2243 | PyObject * _argo0 = 0; |
efc5f224 | 2244 | char *_kwnames[] = { "self","orientation", NULL }; |
8ab979d7 RD |
2245 | |
2246 | self = self; | |
efc5f224 | 2247 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_GetScrollThumb",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 2248 | return NULL; |
1d99702e RD |
2249 | if (_argo0) { |
2250 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2251 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2252 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetScrollThumb. Expected _wxWindow_p."); |
2253 | return NULL; | |
2254 | } | |
2255 | } | |
cf694132 RD |
2256 | { |
2257 | wxPy_BEGIN_ALLOW_THREADS; | |
2258 | _result = (int )wxWindow_GetScrollThumb(_arg0,_arg1); | |
2259 | ||
2260 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2261 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2262 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
2263 | return _resultobj; |
2264 | } | |
2265 | ||
2266 | #define wxWindow_GetScrollPos(_swigobj,_swigarg0) (_swigobj->GetScrollPos(_swigarg0)) | |
efc5f224 | 2267 | static PyObject *_wrap_wxWindow_GetScrollPos(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2268 | PyObject * _resultobj; |
2269 | int _result; | |
2270 | wxWindow * _arg0; | |
2271 | int _arg1; | |
1d99702e | 2272 | PyObject * _argo0 = 0; |
efc5f224 | 2273 | char *_kwnames[] = { "self","orientation", NULL }; |
8ab979d7 RD |
2274 | |
2275 | self = self; | |
efc5f224 | 2276 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_GetScrollPos",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 2277 | return NULL; |
1d99702e RD |
2278 | if (_argo0) { |
2279 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2280 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2281 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetScrollPos. Expected _wxWindow_p."); |
2282 | return NULL; | |
2283 | } | |
2284 | } | |
cf694132 RD |
2285 | { |
2286 | wxPy_BEGIN_ALLOW_THREADS; | |
2287 | _result = (int )wxWindow_GetScrollPos(_arg0,_arg1); | |
2288 | ||
2289 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2290 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2291 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
2292 | return _resultobj; |
2293 | } | |
2294 | ||
2295 | #define wxWindow_GetScrollRange(_swigobj,_swigarg0) (_swigobj->GetScrollRange(_swigarg0)) | |
efc5f224 | 2296 | static PyObject *_wrap_wxWindow_GetScrollRange(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2297 | PyObject * _resultobj; |
2298 | int _result; | |
2299 | wxWindow * _arg0; | |
2300 | int _arg1; | |
1d99702e | 2301 | PyObject * _argo0 = 0; |
efc5f224 | 2302 | char *_kwnames[] = { "self","orientation", NULL }; |
8ab979d7 RD |
2303 | |
2304 | self = self; | |
efc5f224 | 2305 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_GetScrollRange",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 2306 | return NULL; |
1d99702e RD |
2307 | if (_argo0) { |
2308 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2309 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2310 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetScrollRange. Expected _wxWindow_p."); |
2311 | return NULL; | |
2312 | } | |
2313 | } | |
cf694132 RD |
2314 | { |
2315 | wxPy_BEGIN_ALLOW_THREADS; | |
2316 | _result = (int )wxWindow_GetScrollRange(_arg0,_arg1); | |
2317 | ||
2318 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2319 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2320 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
2321 | return _resultobj; |
2322 | } | |
2323 | ||
b8b8dda7 | 2324 | #define wxWindow_GetSizeTuple(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetSize(_swigarg0,_swigarg1)) |
efc5f224 | 2325 | static PyObject *_wrap_wxWindow_GetSizeTuple(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2326 | PyObject * _resultobj; |
2327 | wxWindow * _arg0; | |
2328 | int * _arg1; | |
2329 | int temp; | |
2330 | int * _arg2; | |
2331 | int temp0; | |
1d99702e | 2332 | PyObject * _argo0 = 0; |
efc5f224 | 2333 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2334 | |
2335 | self = self; | |
2336 | { | |
2337 | _arg1 = &temp; | |
2338 | } | |
2339 | { | |
2340 | _arg2 = &temp0; | |
2341 | } | |
efc5f224 | 2342 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetSizeTuple",_kwnames,&_argo0)) |
8ab979d7 | 2343 | return NULL; |
1d99702e RD |
2344 | if (_argo0) { |
2345 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2346 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 | 2347 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetSizeTuple. Expected _wxWindow_p."); |
8ab979d7 RD |
2348 | return NULL; |
2349 | } | |
2350 | } | |
cf694132 RD |
2351 | { |
2352 | wxPy_BEGIN_ALLOW_THREADS; | |
2353 | wxWindow_GetSizeTuple(_arg0,_arg1,_arg2); | |
2354 | ||
2355 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2356 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2357 | } Py_INCREF(Py_None); |
8ab979d7 RD |
2358 | _resultobj = Py_None; |
2359 | { | |
2360 | PyObject *o; | |
2361 | o = PyInt_FromLong((long) (*_arg1)); | |
2362 | _resultobj = t_output_helper(_resultobj, o); | |
2363 | } | |
2364 | { | |
2365 | PyObject *o; | |
2366 | o = PyInt_FromLong((long) (*_arg2)); | |
2367 | _resultobj = t_output_helper(_resultobj, o); | |
2368 | } | |
2369 | return _resultobj; | |
2370 | } | |
2371 | ||
b8b8dda7 | 2372 | #define wxWindow_GetSize(_swigobj) (_swigobj->GetSize()) |
efc5f224 | 2373 | static PyObject *_wrap_wxWindow_GetSize(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
2374 | PyObject * _resultobj; |
2375 | wxSize * _result; | |
2376 | wxWindow * _arg0; | |
1d99702e | 2377 | PyObject * _argo0 = 0; |
efc5f224 | 2378 | char *_kwnames[] = { "self", NULL }; |
b8b8dda7 RD |
2379 | char _ptemp[128]; |
2380 | ||
2381 | self = self; | |
efc5f224 | 2382 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetSize",_kwnames,&_argo0)) |
b8b8dda7 | 2383 | return NULL; |
1d99702e RD |
2384 | if (_argo0) { |
2385 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2386 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
2387 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetSize. Expected _wxWindow_p."); |
2388 | return NULL; | |
2389 | } | |
2390 | } | |
cf694132 RD |
2391 | { |
2392 | wxPy_BEGIN_ALLOW_THREADS; | |
2393 | _result = new wxSize (wxWindow_GetSize(_arg0)); | |
2394 | ||
2395 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2396 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2397 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxSize_p"); |
b8b8dda7 RD |
2398 | _resultobj = Py_BuildValue("s",_ptemp); |
2399 | return _resultobj; | |
2400 | } | |
2401 | ||
8ab979d7 | 2402 | #define wxWindow_GetTextExtent(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->GetTextExtent(_swigarg0,_swigarg1,_swigarg2)) |
efc5f224 | 2403 | static PyObject *_wrap_wxWindow_GetTextExtent(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2404 | PyObject * _resultobj; |
2405 | wxWindow * _arg0; | |
2406 | wxString * _arg1; | |
2407 | int * _arg2; | |
2408 | int temp; | |
2409 | int * _arg3; | |
2410 | int temp0; | |
1d99702e | 2411 | PyObject * _argo0 = 0; |
8ab979d7 | 2412 | PyObject * _obj1 = 0; |
efc5f224 | 2413 | char *_kwnames[] = { "self","string", NULL }; |
8ab979d7 RD |
2414 | |
2415 | self = self; | |
2416 | { | |
2417 | _arg2 = &temp; | |
2418 | } | |
2419 | { | |
2420 | _arg3 = &temp0; | |
2421 | } | |
efc5f224 | 2422 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_GetTextExtent",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 2423 | return NULL; |
1d99702e RD |
2424 | if (_argo0) { |
2425 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2426 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2427 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetTextExtent. Expected _wxWindow_p."); |
2428 | return NULL; | |
2429 | } | |
2430 | } | |
2431 | { | |
185d7c3e RD |
2432 | #if PYTHON_API_VERSION >= 1009 |
2433 | char* tmpPtr; int tmpSize; | |
2434 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 2435 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
2436 | return NULL; |
2437 | } | |
2438 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
2439 | return NULL; | |
2440 | _arg1 = new wxString(tmpPtr, tmpSize); | |
2441 | #else | |
8ab979d7 RD |
2442 | if (!PyString_Check(_obj1)) { |
2443 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2444 | return NULL; | |
2445 | } | |
185d7c3e RD |
2446 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
2447 | #endif | |
8ab979d7 | 2448 | } |
cf694132 RD |
2449 | { |
2450 | wxPy_BEGIN_ALLOW_THREADS; | |
2451 | wxWindow_GetTextExtent(_arg0,*_arg1,_arg2,_arg3); | |
2452 | ||
2453 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2454 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2455 | } Py_INCREF(Py_None); |
8ab979d7 RD |
2456 | _resultobj = Py_None; |
2457 | { | |
2458 | PyObject *o; | |
2459 | o = PyInt_FromLong((long) (*_arg2)); | |
2460 | _resultobj = t_output_helper(_resultobj, o); | |
2461 | } | |
2462 | { | |
2463 | PyObject *o; | |
2464 | o = PyInt_FromLong((long) (*_arg3)); | |
2465 | _resultobj = t_output_helper(_resultobj, o); | |
2466 | } | |
2467 | { | |
2468 | if (_obj1) | |
2469 | delete _arg1; | |
2470 | } | |
2471 | return _resultobj; | |
2472 | } | |
2473 | ||
af309447 | 2474 | #define wxWindow_GetFullTextExtent(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (_swigobj->GetTextExtent(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) |
efc5f224 | 2475 | static PyObject *_wrap_wxWindow_GetFullTextExtent(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
2476 | PyObject * _resultobj; |
2477 | wxWindow * _arg0; | |
2478 | wxString * _arg1; | |
2479 | int * _arg2; | |
2480 | int temp; | |
2481 | int * _arg3; | |
2482 | int temp0; | |
2483 | int * _arg4; | |
2484 | int temp1; | |
2485 | int * _arg5; | |
2486 | int temp2; | |
1d99702e RD |
2487 | wxFont * _arg6 = (wxFont *) NULL; |
2488 | PyObject * _argo0 = 0; | |
af309447 | 2489 | PyObject * _obj1 = 0; |
1d99702e | 2490 | PyObject * _argo6 = 0; |
efc5f224 | 2491 | char *_kwnames[] = { "self","string","font", NULL }; |
af309447 RD |
2492 | |
2493 | self = self; | |
2494 | { | |
2495 | _arg2 = &temp; | |
2496 | } | |
2497 | { | |
2498 | _arg3 = &temp0; | |
2499 | } | |
2500 | { | |
2501 | _arg4 = &temp1; | |
2502 | } | |
2503 | { | |
2504 | _arg5 = &temp2; | |
2505 | } | |
efc5f224 | 2506 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|O:wxWindow_GetFullTextExtent",_kwnames,&_argo0,&_obj1,&_argo6)) |
af309447 | 2507 | return NULL; |
1d99702e RD |
2508 | if (_argo0) { |
2509 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2510 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
2511 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetFullTextExtent. Expected _wxWindow_p."); |
2512 | return NULL; | |
2513 | } | |
2514 | } | |
2515 | { | |
185d7c3e RD |
2516 | #if PYTHON_API_VERSION >= 1009 |
2517 | char* tmpPtr; int tmpSize; | |
2518 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 2519 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
2520 | return NULL; |
2521 | } | |
2522 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
2523 | return NULL; | |
2524 | _arg1 = new wxString(tmpPtr, tmpSize); | |
2525 | #else | |
af309447 RD |
2526 | if (!PyString_Check(_obj1)) { |
2527 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2528 | return NULL; | |
2529 | } | |
185d7c3e RD |
2530 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
2531 | #endif | |
af309447 | 2532 | } |
1d99702e RD |
2533 | if (_argo6) { |
2534 | if (_argo6 == Py_None) { _arg6 = NULL; } | |
2535 | else if (SWIG_GetPtrObj(_argo6,(void **) &_arg6,"_wxFont_p")) { | |
af309447 RD |
2536 | PyErr_SetString(PyExc_TypeError,"Type error in argument 7 of wxWindow_GetFullTextExtent. Expected _wxFont_p."); |
2537 | return NULL; | |
2538 | } | |
2539 | } | |
cf694132 RD |
2540 | { |
2541 | wxPy_BEGIN_ALLOW_THREADS; | |
2542 | wxWindow_GetFullTextExtent(_arg0,*_arg1,_arg2,_arg3,_arg4,_arg5,_arg6); | |
2543 | ||
2544 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2545 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2546 | } Py_INCREF(Py_None); |
af309447 RD |
2547 | _resultobj = Py_None; |
2548 | { | |
2549 | PyObject *o; | |
2550 | o = PyInt_FromLong((long) (*_arg2)); | |
2551 | _resultobj = t_output_helper(_resultobj, o); | |
2552 | } | |
2553 | { | |
2554 | PyObject *o; | |
2555 | o = PyInt_FromLong((long) (*_arg3)); | |
2556 | _resultobj = t_output_helper(_resultobj, o); | |
2557 | } | |
2558 | { | |
2559 | PyObject *o; | |
2560 | o = PyInt_FromLong((long) (*_arg4)); | |
2561 | _resultobj = t_output_helper(_resultobj, o); | |
2562 | } | |
2563 | { | |
2564 | PyObject *o; | |
2565 | o = PyInt_FromLong((long) (*_arg5)); | |
2566 | _resultobj = t_output_helper(_resultobj, o); | |
2567 | } | |
2568 | { | |
2569 | if (_obj1) | |
2570 | delete _arg1; | |
2571 | } | |
2572 | return _resultobj; | |
2573 | } | |
2574 | ||
8ab979d7 | 2575 | #define wxWindow_GetTitle(_swigobj) (_swigobj->GetTitle()) |
efc5f224 | 2576 | static PyObject *_wrap_wxWindow_GetTitle(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2577 | PyObject * _resultobj; |
2578 | wxString * _result; | |
2579 | wxWindow * _arg0; | |
1d99702e | 2580 | PyObject * _argo0 = 0; |
efc5f224 | 2581 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2582 | |
2583 | self = self; | |
efc5f224 | 2584 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetTitle",_kwnames,&_argo0)) |
8ab979d7 | 2585 | return NULL; |
1d99702e RD |
2586 | if (_argo0) { |
2587 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2588 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2589 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetTitle. Expected _wxWindow_p."); |
2590 | return NULL; | |
2591 | } | |
2592 | } | |
8ab979d7 | 2593 | { |
cf694132 RD |
2594 | wxPy_BEGIN_ALLOW_THREADS; |
2595 | _result = new wxString (wxWindow_GetTitle(_arg0)); | |
2596 | ||
2597 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2598 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2599 | }{ |
eec92d76 | 2600 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
2601 | } |
2602 | { | |
2603 | delete _result; | |
2604 | } | |
2605 | return _resultobj; | |
2606 | } | |
2607 | ||
8bf5d46e | 2608 | #define wxWindow_GetUpdateRegion(_swigobj) (_swigobj->GetUpdateRegion()) |
efc5f224 | 2609 | static PyObject *_wrap_wxWindow_GetUpdateRegion(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
2610 | PyObject * _resultobj; |
2611 | wxRegion * _result; | |
2612 | wxWindow * _arg0; | |
1d99702e | 2613 | PyObject * _argo0 = 0; |
efc5f224 | 2614 | char *_kwnames[] = { "self", NULL }; |
8bf5d46e RD |
2615 | char _ptemp[128]; |
2616 | ||
2617 | self = self; | |
efc5f224 | 2618 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetUpdateRegion",_kwnames,&_argo0)) |
8bf5d46e | 2619 | return NULL; |
1d99702e RD |
2620 | if (_argo0) { |
2621 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2622 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8bf5d46e RD |
2623 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetUpdateRegion. Expected _wxWindow_p."); |
2624 | return NULL; | |
2625 | } | |
2626 | } | |
2627 | { | |
2628 | wxPy_BEGIN_ALLOW_THREADS; | |
2629 | _result = new wxRegion (wxWindow_GetUpdateRegion(_arg0)); | |
2630 | ||
2631 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2632 | if (PyErr_Occurred()) return NULL; |
8bf5d46e RD |
2633 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxRegion_p"); |
2634 | _resultobj = Py_BuildValue("s",_ptemp); | |
2635 | return _resultobj; | |
2636 | } | |
2637 | ||
8ab979d7 | 2638 | #define wxWindow_GetWindowStyleFlag(_swigobj) (_swigobj->GetWindowStyleFlag()) |
efc5f224 | 2639 | static PyObject *_wrap_wxWindow_GetWindowStyleFlag(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2640 | PyObject * _resultobj; |
2641 | long _result; | |
2642 | wxWindow * _arg0; | |
1d99702e | 2643 | PyObject * _argo0 = 0; |
efc5f224 | 2644 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2645 | |
2646 | self = self; | |
efc5f224 | 2647 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetWindowStyleFlag",_kwnames,&_argo0)) |
8ab979d7 | 2648 | return NULL; |
1d99702e RD |
2649 | if (_argo0) { |
2650 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2651 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2652 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetWindowStyleFlag. Expected _wxWindow_p."); |
2653 | return NULL; | |
2654 | } | |
2655 | } | |
cf694132 RD |
2656 | { |
2657 | wxPy_BEGIN_ALLOW_THREADS; | |
2658 | _result = (long )wxWindow_GetWindowStyleFlag(_arg0); | |
2659 | ||
2660 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2661 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2662 | } _resultobj = Py_BuildValue("l",_result); |
8ab979d7 RD |
2663 | return _resultobj; |
2664 | } | |
2665 | ||
f6bcfd97 BP |
2666 | #define wxWindow_SetWindowStyleFlag(_swigobj,_swigarg0) (_swigobj->SetWindowStyleFlag(_swigarg0)) |
2667 | static PyObject *_wrap_wxWindow_SetWindowStyleFlag(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2668 | PyObject * _resultobj; | |
2669 | wxWindow * _arg0; | |
2670 | long _arg1; | |
2671 | PyObject * _argo0 = 0; | |
2672 | char *_kwnames[] = { "self","style", NULL }; | |
2673 | ||
2674 | self = self; | |
2675 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxWindow_SetWindowStyleFlag",_kwnames,&_argo0,&_arg1)) | |
2676 | return NULL; | |
2677 | if (_argo0) { | |
2678 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2679 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
2680 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetWindowStyleFlag. Expected _wxWindow_p."); | |
2681 | return NULL; | |
2682 | } | |
2683 | } | |
2684 | { | |
2685 | wxPy_BEGIN_ALLOW_THREADS; | |
2686 | wxWindow_SetWindowStyleFlag(_arg0,_arg1); | |
2687 | ||
2688 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2689 | if (PyErr_Occurred()) return NULL; |
f6bcfd97 BP |
2690 | } Py_INCREF(Py_None); |
2691 | _resultobj = Py_None; | |
2692 | return _resultobj; | |
2693 | } | |
2694 | ||
2695 | #define wxWindow_SetWindowStyle(_swigobj,_swigarg0) (_swigobj->SetWindowStyle(_swigarg0)) | |
2696 | static PyObject *_wrap_wxWindow_SetWindowStyle(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2697 | PyObject * _resultobj; | |
2698 | wxWindow * _arg0; | |
2699 | long _arg1; | |
2700 | PyObject * _argo0 = 0; | |
2701 | char *_kwnames[] = { "self","style", NULL }; | |
2702 | ||
2703 | self = self; | |
2704 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxWindow_SetWindowStyle",_kwnames,&_argo0,&_arg1)) | |
2705 | return NULL; | |
2706 | if (_argo0) { | |
2707 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2708 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
2709 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetWindowStyle. Expected _wxWindow_p."); | |
2710 | return NULL; | |
2711 | } | |
2712 | } | |
2713 | { | |
2714 | wxPy_BEGIN_ALLOW_THREADS; | |
2715 | wxWindow_SetWindowStyle(_arg0,_arg1); | |
2716 | ||
2717 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2718 | if (PyErr_Occurred()) return NULL; |
f6bcfd97 BP |
2719 | } Py_INCREF(Py_None); |
2720 | _resultobj = Py_None; | |
2721 | return _resultobj; | |
2722 | } | |
2723 | ||
bb0054cd | 2724 | #define wxWindow_Hide(_swigobj) (_swigobj->Hide()) |
efc5f224 | 2725 | static PyObject *_wrap_wxWindow_Hide(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
2726 | PyObject * _resultobj; |
2727 | bool _result; | |
2728 | wxWindow * _arg0; | |
1d99702e | 2729 | PyObject * _argo0 = 0; |
efc5f224 | 2730 | char *_kwnames[] = { "self", NULL }; |
bb0054cd RD |
2731 | |
2732 | self = self; | |
efc5f224 | 2733 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Hide",_kwnames,&_argo0)) |
bb0054cd | 2734 | return NULL; |
1d99702e RD |
2735 | if (_argo0) { |
2736 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2737 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
bb0054cd RD |
2738 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Hide. Expected _wxWindow_p."); |
2739 | return NULL; | |
2740 | } | |
2741 | } | |
2742 | { | |
2743 | wxPy_BEGIN_ALLOW_THREADS; | |
2744 | _result = (bool )wxWindow_Hide(_arg0); | |
2745 | ||
2746 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2747 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
2748 | } _resultobj = Py_BuildValue("i",_result); |
2749 | return _resultobj; | |
2750 | } | |
2751 | ||
8ab979d7 | 2752 | #define wxWindow_InitDialog(_swigobj) (_swigobj->InitDialog()) |
efc5f224 | 2753 | static PyObject *_wrap_wxWindow_InitDialog(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2754 | PyObject * _resultobj; |
2755 | wxWindow * _arg0; | |
1d99702e | 2756 | PyObject * _argo0 = 0; |
efc5f224 | 2757 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2758 | |
2759 | self = self; | |
efc5f224 | 2760 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_InitDialog",_kwnames,&_argo0)) |
8ab979d7 | 2761 | return NULL; |
1d99702e RD |
2762 | if (_argo0) { |
2763 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2764 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2765 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_InitDialog. Expected _wxWindow_p."); |
2766 | return NULL; | |
2767 | } | |
2768 | } | |
cf694132 RD |
2769 | { |
2770 | wxPy_BEGIN_ALLOW_THREADS; | |
2771 | wxWindow_InitDialog(_arg0); | |
2772 | ||
2773 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2774 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2775 | } Py_INCREF(Py_None); |
8ab979d7 RD |
2776 | _resultobj = Py_None; |
2777 | return _resultobj; | |
2778 | } | |
2779 | ||
2780 | #define wxWindow_IsEnabled(_swigobj) (_swigobj->IsEnabled()) | |
efc5f224 | 2781 | static PyObject *_wrap_wxWindow_IsEnabled(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2782 | PyObject * _resultobj; |
2783 | bool _result; | |
2784 | wxWindow * _arg0; | |
1d99702e | 2785 | PyObject * _argo0 = 0; |
efc5f224 | 2786 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2787 | |
2788 | self = self; | |
efc5f224 | 2789 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_IsEnabled",_kwnames,&_argo0)) |
8ab979d7 | 2790 | return NULL; |
1d99702e RD |
2791 | if (_argo0) { |
2792 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2793 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2794 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsEnabled. Expected _wxWindow_p."); |
2795 | return NULL; | |
2796 | } | |
2797 | } | |
cf694132 RD |
2798 | { |
2799 | wxPy_BEGIN_ALLOW_THREADS; | |
2800 | _result = (bool )wxWindow_IsEnabled(_arg0); | |
2801 | ||
2802 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2803 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2804 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
2805 | return _resultobj; |
2806 | } | |
2807 | ||
1b55cabf RD |
2808 | #define wxWindow_IsExposed(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->IsExposed(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) |
2809 | static PyObject *_wrap_wxWindow_IsExposed(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2810 | PyObject * _resultobj; | |
2811 | bool _result; | |
2812 | wxWindow * _arg0; | |
2813 | int _arg1; | |
2814 | int _arg2; | |
2815 | int _arg3 = (int ) 0; | |
2816 | int _arg4 = (int ) 0; | |
2817 | PyObject * _argo0 = 0; | |
2818 | char *_kwnames[] = { "self","x","y","w","h", NULL }; | |
2819 | ||
2820 | self = self; | |
2821 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii|ii:wxWindow_IsExposed",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_arg4)) | |
2822 | return NULL; | |
2823 | if (_argo0) { | |
2824 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2825 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
2826 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsExposed. Expected _wxWindow_p."); | |
2827 | return NULL; | |
2828 | } | |
2829 | } | |
2830 | { | |
2831 | wxPy_BEGIN_ALLOW_THREADS; | |
2832 | _result = (bool )wxWindow_IsExposed(_arg0,_arg1,_arg2,_arg3,_arg4); | |
2833 | ||
2834 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2835 | if (PyErr_Occurred()) return NULL; |
1b55cabf RD |
2836 | } _resultobj = Py_BuildValue("i",_result); |
2837 | return _resultobj; | |
2838 | } | |
2839 | ||
2840 | #define wxWindow_IsExposedPoint(_swigobj,_swigarg0) (_swigobj->IsExposed(_swigarg0)) | |
2841 | static PyObject *_wrap_wxWindow_IsExposedPoint(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2842 | PyObject * _resultobj; | |
2843 | bool _result; | |
2844 | wxWindow * _arg0; | |
2845 | wxPoint * _arg1; | |
2846 | PyObject * _argo0 = 0; | |
2847 | wxPoint temp; | |
2848 | PyObject * _obj1 = 0; | |
2849 | char *_kwnames[] = { "self","pt", NULL }; | |
2850 | ||
2851 | self = self; | |
2852 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_IsExposedPoint",_kwnames,&_argo0,&_obj1)) | |
2853 | return NULL; | |
2854 | if (_argo0) { | |
2855 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2856 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
2857 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsExposedPoint. Expected _wxWindow_p."); | |
2858 | return NULL; | |
2859 | } | |
2860 | } | |
2861 | { | |
2862 | _arg1 = &temp; | |
2863 | if (! wxPoint_helper(_obj1, &_arg1)) | |
2864 | return NULL; | |
2865 | } | |
2866 | { | |
2867 | wxPy_BEGIN_ALLOW_THREADS; | |
2868 | _result = (bool )wxWindow_IsExposedPoint(_arg0,*_arg1); | |
2869 | ||
2870 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2871 | if (PyErr_Occurred()) return NULL; |
1b55cabf RD |
2872 | } _resultobj = Py_BuildValue("i",_result); |
2873 | return _resultobj; | |
2874 | } | |
2875 | ||
2876 | #define wxWindow_IsExposedRect(_swigobj,_swigarg0) (_swigobj->IsExposed(_swigarg0)) | |
2877 | static PyObject *_wrap_wxWindow_IsExposedRect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2878 | PyObject * _resultobj; | |
2879 | bool _result; | |
2880 | wxWindow * _arg0; | |
2881 | wxRect * _arg1; | |
2882 | PyObject * _argo0 = 0; | |
2883 | wxRect temp; | |
2884 | PyObject * _obj1 = 0; | |
2885 | char *_kwnames[] = { "self","rect", NULL }; | |
2886 | ||
2887 | self = self; | |
2888 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_IsExposedRect",_kwnames,&_argo0,&_obj1)) | |
2889 | return NULL; | |
2890 | if (_argo0) { | |
2891 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2892 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
2893 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsExposedRect. Expected _wxWindow_p."); | |
2894 | return NULL; | |
2895 | } | |
2896 | } | |
2897 | { | |
2898 | _arg1 = &temp; | |
2899 | if (! wxRect_helper(_obj1, &_arg1)) | |
2900 | return NULL; | |
2901 | } | |
2902 | { | |
2903 | wxPy_BEGIN_ALLOW_THREADS; | |
2904 | _result = (bool )wxWindow_IsExposedRect(_arg0,*_arg1); | |
2905 | ||
2906 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2907 | if (PyErr_Occurred()) return NULL; |
1b55cabf RD |
2908 | } _resultobj = Py_BuildValue("i",_result); |
2909 | return _resultobj; | |
2910 | } | |
2911 | ||
8ab979d7 | 2912 | #define wxWindow_IsRetained(_swigobj) (_swigobj->IsRetained()) |
efc5f224 | 2913 | static PyObject *_wrap_wxWindow_IsRetained(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2914 | PyObject * _resultobj; |
2915 | bool _result; | |
2916 | wxWindow * _arg0; | |
1d99702e | 2917 | PyObject * _argo0 = 0; |
efc5f224 | 2918 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2919 | |
2920 | self = self; | |
efc5f224 | 2921 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_IsRetained",_kwnames,&_argo0)) |
8ab979d7 | 2922 | return NULL; |
1d99702e RD |
2923 | if (_argo0) { |
2924 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2925 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2926 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsRetained. Expected _wxWindow_p."); |
2927 | return NULL; | |
2928 | } | |
2929 | } | |
cf694132 RD |
2930 | { |
2931 | wxPy_BEGIN_ALLOW_THREADS; | |
2932 | _result = (bool )wxWindow_IsRetained(_arg0); | |
2933 | ||
2934 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2935 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2936 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
2937 | return _resultobj; |
2938 | } | |
2939 | ||
2940 | #define wxWindow_IsShown(_swigobj) (_swigobj->IsShown()) | |
efc5f224 | 2941 | static PyObject *_wrap_wxWindow_IsShown(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2942 | PyObject * _resultobj; |
2943 | bool _result; | |
2944 | wxWindow * _arg0; | |
1d99702e | 2945 | PyObject * _argo0 = 0; |
efc5f224 | 2946 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2947 | |
2948 | self = self; | |
efc5f224 | 2949 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_IsShown",_kwnames,&_argo0)) |
8ab979d7 | 2950 | return NULL; |
1d99702e RD |
2951 | if (_argo0) { |
2952 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2953 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2954 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsShown. Expected _wxWindow_p."); |
2955 | return NULL; | |
2956 | } | |
2957 | } | |
cf694132 RD |
2958 | { |
2959 | wxPy_BEGIN_ALLOW_THREADS; | |
2960 | _result = (bool )wxWindow_IsShown(_arg0); | |
2961 | ||
2962 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2963 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2964 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
2965 | return _resultobj; |
2966 | } | |
2967 | ||
bb0054cd | 2968 | #define wxWindow_IsTopLevel(_swigobj) (_swigobj->IsTopLevel()) |
efc5f224 | 2969 | static PyObject *_wrap_wxWindow_IsTopLevel(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
2970 | PyObject * _resultobj; |
2971 | bool _result; | |
2972 | wxWindow * _arg0; | |
1d99702e | 2973 | PyObject * _argo0 = 0; |
efc5f224 | 2974 | char *_kwnames[] = { "self", NULL }; |
bb0054cd RD |
2975 | |
2976 | self = self; | |
efc5f224 | 2977 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_IsTopLevel",_kwnames,&_argo0)) |
bb0054cd | 2978 | return NULL; |
1d99702e RD |
2979 | if (_argo0) { |
2980 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2981 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
bb0054cd RD |
2982 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsTopLevel. Expected _wxWindow_p."); |
2983 | return NULL; | |
2984 | } | |
2985 | } | |
2986 | { | |
2987 | wxPy_BEGIN_ALLOW_THREADS; | |
2988 | _result = (bool )wxWindow_IsTopLevel(_arg0); | |
2989 | ||
2990 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 2991 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
2992 | } _resultobj = Py_BuildValue("i",_result); |
2993 | return _resultobj; | |
2994 | } | |
2995 | ||
8ab979d7 | 2996 | #define wxWindow_Layout(_swigobj) (_swigobj->Layout()) |
efc5f224 | 2997 | static PyObject *_wrap_wxWindow_Layout(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2998 | PyObject * _resultobj; |
2999 | wxWindow * _arg0; | |
1d99702e | 3000 | PyObject * _argo0 = 0; |
efc5f224 | 3001 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
3002 | |
3003 | self = self; | |
efc5f224 | 3004 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Layout",_kwnames,&_argo0)) |
8ab979d7 | 3005 | return NULL; |
1d99702e RD |
3006 | if (_argo0) { |
3007 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3008 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3009 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Layout. Expected _wxWindow_p."); |
3010 | return NULL; | |
3011 | } | |
3012 | } | |
cf694132 RD |
3013 | { |
3014 | wxPy_BEGIN_ALLOW_THREADS; | |
3015 | wxWindow_Layout(_arg0); | |
3016 | ||
3017 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3018 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3019 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3020 | _resultobj = Py_None; |
3021 | return _resultobj; | |
3022 | } | |
3023 | ||
3024 | #define wxWindow_LoadFromResource(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->LoadFromResource(_swigarg0,_swigarg1,_swigarg2)) | |
efc5f224 | 3025 | static PyObject *_wrap_wxWindow_LoadFromResource(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3026 | PyObject * _resultobj; |
3027 | bool _result; | |
3028 | wxWindow * _arg0; | |
3029 | wxWindow * _arg1; | |
3030 | wxString * _arg2; | |
1d99702e RD |
3031 | wxResourceTable * _arg3 = (wxResourceTable *) NULL; |
3032 | PyObject * _argo0 = 0; | |
3033 | PyObject * _argo1 = 0; | |
8ab979d7 | 3034 | PyObject * _obj2 = 0; |
1d99702e | 3035 | PyObject * _argo3 = 0; |
efc5f224 | 3036 | char *_kwnames[] = { "self","parent","resourceName","resourceTable", NULL }; |
8ab979d7 RD |
3037 | |
3038 | self = self; | |
efc5f224 | 3039 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO|O:wxWindow_LoadFromResource",_kwnames,&_argo0,&_argo1,&_obj2,&_argo3)) |
8ab979d7 | 3040 | return NULL; |
1d99702e RD |
3041 | if (_argo0) { |
3042 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3043 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3044 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_LoadFromResource. Expected _wxWindow_p."); |
3045 | return NULL; | |
3046 | } | |
3047 | } | |
1d99702e RD |
3048 | if (_argo1) { |
3049 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3050 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
8ab979d7 RD |
3051 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_LoadFromResource. Expected _wxWindow_p."); |
3052 | return NULL; | |
3053 | } | |
3054 | } | |
3055 | { | |
185d7c3e RD |
3056 | #if PYTHON_API_VERSION >= 1009 |
3057 | char* tmpPtr; int tmpSize; | |
3058 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 3059 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
3060 | return NULL; |
3061 | } | |
3062 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
3063 | return NULL; | |
3064 | _arg2 = new wxString(tmpPtr, tmpSize); | |
3065 | #else | |
8ab979d7 RD |
3066 | if (!PyString_Check(_obj2)) { |
3067 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
3068 | return NULL; | |
3069 | } | |
185d7c3e RD |
3070 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
3071 | #endif | |
8ab979d7 | 3072 | } |
1d99702e RD |
3073 | if (_argo3) { |
3074 | if (_argo3 == Py_None) { _arg3 = NULL; } | |
3075 | else if (SWIG_GetPtrObj(_argo3,(void **) &_arg3,"_wxResourceTable_p")) { | |
8ab979d7 RD |
3076 | PyErr_SetString(PyExc_TypeError,"Type error in argument 4 of wxWindow_LoadFromResource. Expected _wxResourceTable_p."); |
3077 | return NULL; | |
3078 | } | |
3079 | } | |
cf694132 RD |
3080 | { |
3081 | wxPy_BEGIN_ALLOW_THREADS; | |
3082 | _result = (bool )wxWindow_LoadFromResource(_arg0,_arg1,*_arg2,_arg3); | |
3083 | ||
3084 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3085 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3086 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
3087 | { |
3088 | if (_obj2) | |
3089 | delete _arg2; | |
3090 | } | |
3091 | return _resultobj; | |
3092 | } | |
3093 | ||
3094 | #define wxWindow_Lower(_swigobj) (_swigobj->Lower()) | |
efc5f224 | 3095 | static PyObject *_wrap_wxWindow_Lower(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3096 | PyObject * _resultobj; |
3097 | wxWindow * _arg0; | |
1d99702e | 3098 | PyObject * _argo0 = 0; |
efc5f224 | 3099 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
3100 | |
3101 | self = self; | |
efc5f224 | 3102 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Lower",_kwnames,&_argo0)) |
8ab979d7 | 3103 | return NULL; |
1d99702e RD |
3104 | if (_argo0) { |
3105 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3106 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3107 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Lower. Expected _wxWindow_p."); |
3108 | return NULL; | |
3109 | } | |
3110 | } | |
cf694132 RD |
3111 | { |
3112 | wxPy_BEGIN_ALLOW_THREADS; | |
3113 | wxWindow_Lower(_arg0); | |
3114 | ||
3115 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3116 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3117 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3118 | _resultobj = Py_None; |
3119 | return _resultobj; | |
3120 | } | |
3121 | ||
3122 | #define wxWindow_MakeModal(_swigobj,_swigarg0) (_swigobj->MakeModal(_swigarg0)) | |
efc5f224 | 3123 | static PyObject *_wrap_wxWindow_MakeModal(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3124 | PyObject * _resultobj; |
3125 | wxWindow * _arg0; | |
3126 | bool _arg1; | |
1d99702e | 3127 | PyObject * _argo0 = 0; |
8ab979d7 | 3128 | int tempbool1; |
efc5f224 | 3129 | char *_kwnames[] = { "self","flag", NULL }; |
8ab979d7 RD |
3130 | |
3131 | self = self; | |
efc5f224 | 3132 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_MakeModal",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 3133 | return NULL; |
1d99702e RD |
3134 | if (_argo0) { |
3135 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3136 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3137 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_MakeModal. Expected _wxWindow_p."); |
3138 | return NULL; | |
3139 | } | |
3140 | } | |
3141 | _arg1 = (bool ) tempbool1; | |
cf694132 RD |
3142 | { |
3143 | wxPy_BEGIN_ALLOW_THREADS; | |
3144 | wxWindow_MakeModal(_arg0,_arg1); | |
3145 | ||
3146 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3147 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3148 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3149 | _resultobj = Py_None; |
3150 | return _resultobj; | |
3151 | } | |
3152 | ||
af309447 | 3153 | #define wxWindow_MoveXY(_swigobj,_swigarg0,_swigarg1) (_swigobj->Move(_swigarg0,_swigarg1)) |
efc5f224 | 3154 | static PyObject *_wrap_wxWindow_MoveXY(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3155 | PyObject * _resultobj; |
3156 | wxWindow * _arg0; | |
3157 | int _arg1; | |
3158 | int _arg2; | |
1d99702e | 3159 | PyObject * _argo0 = 0; |
efc5f224 | 3160 | char *_kwnames[] = { "self","x","y", NULL }; |
8ab979d7 RD |
3161 | |
3162 | self = self; | |
efc5f224 | 3163 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxWindow_MoveXY",_kwnames,&_argo0,&_arg1,&_arg2)) |
af309447 | 3164 | return NULL; |
1d99702e RD |
3165 | if (_argo0) { |
3166 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3167 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
3168 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_MoveXY. Expected _wxWindow_p."); |
3169 | return NULL; | |
3170 | } | |
3171 | } | |
cf694132 RD |
3172 | { |
3173 | wxPy_BEGIN_ALLOW_THREADS; | |
3174 | wxWindow_MoveXY(_arg0,_arg1,_arg2); | |
3175 | ||
3176 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3177 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3178 | } Py_INCREF(Py_None); |
af309447 RD |
3179 | _resultobj = Py_None; |
3180 | return _resultobj; | |
3181 | } | |
3182 | ||
3183 | #define wxWindow_Move(_swigobj,_swigarg0) (_swigobj->Move(_swigarg0)) | |
efc5f224 | 3184 | static PyObject *_wrap_wxWindow_Move(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
3185 | PyObject * _resultobj; |
3186 | wxWindow * _arg0; | |
3187 | wxPoint * _arg1; | |
1d99702e | 3188 | PyObject * _argo0 = 0; |
2f90df85 RD |
3189 | wxPoint temp; |
3190 | PyObject * _obj1 = 0; | |
efc5f224 | 3191 | char *_kwnames[] = { "self","point", NULL }; |
af309447 RD |
3192 | |
3193 | self = self; | |
2f90df85 | 3194 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_Move",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 3195 | return NULL; |
1d99702e RD |
3196 | if (_argo0) { |
3197 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3198 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3199 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Move. Expected _wxWindow_p."); |
3200 | return NULL; | |
3201 | } | |
3202 | } | |
2f90df85 RD |
3203 | { |
3204 | _arg1 = &temp; | |
3205 | if (! wxPoint_helper(_obj1, &_arg1)) | |
af309447 | 3206 | return NULL; |
2f90df85 | 3207 | } |
cf694132 RD |
3208 | { |
3209 | wxPy_BEGIN_ALLOW_THREADS; | |
3210 | wxWindow_Move(_arg0,*_arg1); | |
3211 | ||
3212 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3213 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3214 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3215 | _resultobj = Py_None; |
3216 | return _resultobj; | |
3217 | } | |
3218 | ||
1afc06c2 RD |
3219 | #define wxWindow_PopEventHandler(_swigobj,_swigarg0) (_swigobj->PopEventHandler(_swigarg0)) |
3220 | static PyObject *_wrap_wxWindow_PopEventHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3221 | PyObject * _resultobj; | |
3222 | wxEvtHandler * _result; | |
3223 | wxWindow * _arg0; | |
3224 | bool _arg1 = (bool ) FALSE; | |
3225 | PyObject * _argo0 = 0; | |
3226 | int tempbool1 = (int) FALSE; | |
3227 | char *_kwnames[] = { "self","deleteHandler", NULL }; | |
1afc06c2 RD |
3228 | |
3229 | self = self; | |
3230 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_PopEventHandler",_kwnames,&_argo0,&tempbool1)) | |
3231 | return NULL; | |
3232 | if (_argo0) { | |
3233 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3234 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3235 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_PopEventHandler. Expected _wxWindow_p."); | |
3236 | return NULL; | |
3237 | } | |
3238 | } | |
3239 | _arg1 = (bool ) tempbool1; | |
3240 | { | |
3241 | wxPy_BEGIN_ALLOW_THREADS; | |
3242 | _result = (wxEvtHandler *)wxWindow_PopEventHandler(_arg0,_arg1); | |
3243 | ||
3244 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3245 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 3246 | }{ _resultobj = wxPyMake_wxObject(_result); } |
1afc06c2 RD |
3247 | return _resultobj; |
3248 | } | |
3249 | ||
3250 | #define wxWindow_PushEventHandler(_swigobj,_swigarg0) (_swigobj->PushEventHandler(_swigarg0)) | |
3251 | static PyObject *_wrap_wxWindow_PushEventHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3252 | PyObject * _resultobj; | |
3253 | wxWindow * _arg0; | |
3254 | wxEvtHandler * _arg1; | |
3255 | PyObject * _argo0 = 0; | |
3256 | PyObject * _argo1 = 0; | |
3257 | char *_kwnames[] = { "self","handler", NULL }; | |
3258 | ||
3259 | self = self; | |
3260 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_PushEventHandler",_kwnames,&_argo0,&_argo1)) | |
3261 | return NULL; | |
3262 | if (_argo0) { | |
3263 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3264 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3265 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_PushEventHandler. Expected _wxWindow_p."); | |
3266 | return NULL; | |
3267 | } | |
3268 | } | |
3269 | if (_argo1) { | |
3270 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3271 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvtHandler_p")) { | |
3272 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_PushEventHandler. Expected _wxEvtHandler_p."); | |
3273 | return NULL; | |
3274 | } | |
3275 | } | |
3276 | { | |
3277 | wxPy_BEGIN_ALLOW_THREADS; | |
3278 | wxWindow_PushEventHandler(_arg0,_arg1); | |
3279 | ||
3280 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3281 | if (PyErr_Occurred()) return NULL; |
1afc06c2 RD |
3282 | } Py_INCREF(Py_None); |
3283 | _resultobj = Py_None; | |
3284 | return _resultobj; | |
3285 | } | |
3286 | ||
8bf5d46e | 3287 | #define wxWindow_PopupMenuXY(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->PopupMenu(_swigarg0,_swigarg1,_swigarg2)) |
efc5f224 | 3288 | static PyObject *_wrap_wxWindow_PopupMenuXY(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3289 | PyObject * _resultobj; |
3290 | bool _result; | |
3291 | wxWindow * _arg0; | |
3292 | wxMenu * _arg1; | |
3293 | int _arg2; | |
3294 | int _arg3; | |
1d99702e RD |
3295 | PyObject * _argo0 = 0; |
3296 | PyObject * _argo1 = 0; | |
efc5f224 | 3297 | char *_kwnames[] = { "self","menu","x","y", NULL }; |
8ab979d7 RD |
3298 | |
3299 | self = self; | |
efc5f224 | 3300 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOii:wxWindow_PopupMenuXY",_kwnames,&_argo0,&_argo1,&_arg2,&_arg3)) |
8bf5d46e | 3301 | return NULL; |
1d99702e RD |
3302 | if (_argo0) { |
3303 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3304 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8bf5d46e RD |
3305 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_PopupMenuXY. Expected _wxWindow_p."); |
3306 | return NULL; | |
3307 | } | |
3308 | } | |
1d99702e RD |
3309 | if (_argo1) { |
3310 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3311 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenu_p")) { | |
8bf5d46e RD |
3312 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_PopupMenuXY. Expected _wxMenu_p."); |
3313 | return NULL; | |
3314 | } | |
3315 | } | |
3316 | { | |
3317 | wxPy_BEGIN_ALLOW_THREADS; | |
3318 | _result = (bool )wxWindow_PopupMenuXY(_arg0,_arg1,_arg2,_arg3); | |
3319 | ||
3320 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3321 | if (PyErr_Occurred()) return NULL; |
8bf5d46e RD |
3322 | } _resultobj = Py_BuildValue("i",_result); |
3323 | return _resultobj; | |
3324 | } | |
3325 | ||
3326 | #define wxWindow_PopupMenu(_swigobj,_swigarg0,_swigarg1) (_swigobj->PopupMenu(_swigarg0,_swigarg1)) | |
efc5f224 | 3327 | static PyObject *_wrap_wxWindow_PopupMenu(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
3328 | PyObject * _resultobj; |
3329 | bool _result; | |
3330 | wxWindow * _arg0; | |
3331 | wxMenu * _arg1; | |
3332 | wxPoint * _arg2; | |
1d99702e RD |
3333 | PyObject * _argo0 = 0; |
3334 | PyObject * _argo1 = 0; | |
2f90df85 RD |
3335 | wxPoint temp; |
3336 | PyObject * _obj2 = 0; | |
efc5f224 | 3337 | char *_kwnames[] = { "self","menu","pos", NULL }; |
8bf5d46e RD |
3338 | |
3339 | self = self; | |
2f90df85 | 3340 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxWindow_PopupMenu",_kwnames,&_argo0,&_argo1,&_obj2)) |
8ab979d7 | 3341 | return NULL; |
1d99702e RD |
3342 | if (_argo0) { |
3343 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3344 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3345 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_PopupMenu. Expected _wxWindow_p."); |
3346 | return NULL; | |
3347 | } | |
3348 | } | |
1d99702e RD |
3349 | if (_argo1) { |
3350 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3351 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenu_p")) { | |
8ab979d7 RD |
3352 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_PopupMenu. Expected _wxMenu_p."); |
3353 | return NULL; | |
3354 | } | |
3355 | } | |
2f90df85 RD |
3356 | { |
3357 | _arg2 = &temp; | |
3358 | if (! wxPoint_helper(_obj2, &_arg2)) | |
8bf5d46e | 3359 | return NULL; |
2f90df85 | 3360 | } |
cf694132 RD |
3361 | { |
3362 | wxPy_BEGIN_ALLOW_THREADS; | |
8bf5d46e | 3363 | _result = (bool )wxWindow_PopupMenu(_arg0,_arg1,*_arg2); |
cf694132 RD |
3364 | |
3365 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3366 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3367 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
3368 | return _resultobj; |
3369 | } | |
3370 | ||
3371 | #define wxWindow_Raise(_swigobj) (_swigobj->Raise()) | |
efc5f224 | 3372 | static PyObject *_wrap_wxWindow_Raise(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3373 | PyObject * _resultobj; |
3374 | wxWindow * _arg0; | |
1d99702e | 3375 | PyObject * _argo0 = 0; |
efc5f224 | 3376 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
3377 | |
3378 | self = self; | |
efc5f224 | 3379 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Raise",_kwnames,&_argo0)) |
8ab979d7 | 3380 | return NULL; |
1d99702e RD |
3381 | if (_argo0) { |
3382 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3383 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3384 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Raise. Expected _wxWindow_p."); |
3385 | return NULL; | |
3386 | } | |
3387 | } | |
cf694132 RD |
3388 | { |
3389 | wxPy_BEGIN_ALLOW_THREADS; | |
3390 | wxWindow_Raise(_arg0); | |
3391 | ||
3392 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3393 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3394 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3395 | _resultobj = Py_None; |
3396 | return _resultobj; | |
3397 | } | |
3398 | ||
3399 | #define wxWindow_Refresh(_swigobj,_swigarg0,_swigarg1) (_swigobj->Refresh(_swigarg0,_swigarg1)) | |
efc5f224 | 3400 | static PyObject *_wrap_wxWindow_Refresh(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3401 | PyObject * _resultobj; |
3402 | wxWindow * _arg0; | |
1d99702e RD |
3403 | bool _arg1 = (bool ) TRUE; |
3404 | wxRect * _arg2 = (wxRect *) NULL; | |
3405 | PyObject * _argo0 = 0; | |
3406 | int tempbool1 = (int) TRUE; | |
2f90df85 RD |
3407 | wxRect temp; |
3408 | PyObject * _obj2 = 0; | |
efc5f224 | 3409 | char *_kwnames[] = { "self","eraseBackground","rect", NULL }; |
8ab979d7 RD |
3410 | |
3411 | self = self; | |
2f90df85 | 3412 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iO:wxWindow_Refresh",_kwnames,&_argo0,&tempbool1,&_obj2)) |
8ab979d7 | 3413 | return NULL; |
1d99702e RD |
3414 | if (_argo0) { |
3415 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3416 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3417 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Refresh. Expected _wxWindow_p."); |
3418 | return NULL; | |
3419 | } | |
3420 | } | |
3421 | _arg1 = (bool ) tempbool1; | |
2f90df85 RD |
3422 | if (_obj2) |
3423 | { | |
3424 | _arg2 = &temp; | |
3425 | if (! wxRect_helper(_obj2, &_arg2)) | |
8ab979d7 | 3426 | return NULL; |
2f90df85 | 3427 | } |
cf694132 RD |
3428 | { |
3429 | wxPy_BEGIN_ALLOW_THREADS; | |
3430 | wxWindow_Refresh(_arg0,_arg1,_arg2); | |
3431 | ||
3432 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3433 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3434 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3435 | _resultobj = Py_None; |
3436 | return _resultobj; | |
3437 | } | |
3438 | ||
3439 | #define wxWindow_ReleaseMouse(_swigobj) (_swigobj->ReleaseMouse()) | |
efc5f224 | 3440 | static PyObject *_wrap_wxWindow_ReleaseMouse(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3441 | PyObject * _resultobj; |
3442 | wxWindow * _arg0; | |
1d99702e | 3443 | PyObject * _argo0 = 0; |
efc5f224 | 3444 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
3445 | |
3446 | self = self; | |
efc5f224 | 3447 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_ReleaseMouse",_kwnames,&_argo0)) |
8ab979d7 | 3448 | return NULL; |
1d99702e RD |
3449 | if (_argo0) { |
3450 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3451 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3452 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ReleaseMouse. Expected _wxWindow_p."); |
3453 | return NULL; | |
3454 | } | |
3455 | } | |
cf694132 RD |
3456 | { |
3457 | wxPy_BEGIN_ALLOW_THREADS; | |
3458 | wxWindow_ReleaseMouse(_arg0); | |
3459 | ||
3460 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3461 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3462 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3463 | _resultobj = Py_None; |
3464 | return _resultobj; | |
3465 | } | |
3466 | ||
b7e72427 RD |
3467 | #define wxWindow_RemoveChild(_swigobj,_swigarg0) (_swigobj->RemoveChild(_swigarg0)) |
3468 | static PyObject *_wrap_wxWindow_RemoveChild(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3469 | PyObject * _resultobj; | |
3470 | wxWindow * _arg0; | |
3471 | wxWindow * _arg1; | |
3472 | PyObject * _argo0 = 0; | |
3473 | PyObject * _argo1 = 0; | |
3474 | char *_kwnames[] = { "self","child", NULL }; | |
3475 | ||
3476 | self = self; | |
3477 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_RemoveChild",_kwnames,&_argo0,&_argo1)) | |
3478 | return NULL; | |
3479 | if (_argo0) { | |
3480 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3481 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3482 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_RemoveChild. Expected _wxWindow_p."); | |
3483 | return NULL; | |
3484 | } | |
3485 | } | |
3486 | if (_argo1) { | |
3487 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3488 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
3489 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_RemoveChild. Expected _wxWindow_p."); | |
3490 | return NULL; | |
3491 | } | |
3492 | } | |
3493 | { | |
3494 | wxPy_BEGIN_ALLOW_THREADS; | |
3495 | wxWindow_RemoveChild(_arg0,_arg1); | |
3496 | ||
3497 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3498 | if (PyErr_Occurred()) return NULL; |
b7e72427 RD |
3499 | } Py_INCREF(Py_None); |
3500 | _resultobj = Py_None; | |
3501 | return _resultobj; | |
3502 | } | |
3503 | ||
bb0054cd | 3504 | #define wxWindow_Reparent(_swigobj,_swigarg0) (_swigobj->Reparent(_swigarg0)) |
efc5f224 | 3505 | static PyObject *_wrap_wxWindow_Reparent(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
3506 | PyObject * _resultobj; |
3507 | bool _result; | |
3508 | wxWindow * _arg0; | |
3509 | wxWindow * _arg1; | |
1d99702e RD |
3510 | PyObject * _argo0 = 0; |
3511 | PyObject * _argo1 = 0; | |
efc5f224 | 3512 | char *_kwnames[] = { "self","newParent", NULL }; |
bb0054cd RD |
3513 | |
3514 | self = self; | |
efc5f224 | 3515 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_Reparent",_kwnames,&_argo0,&_argo1)) |
bb0054cd | 3516 | return NULL; |
1d99702e RD |
3517 | if (_argo0) { |
3518 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3519 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
bb0054cd RD |
3520 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Reparent. Expected _wxWindow_p."); |
3521 | return NULL; | |
3522 | } | |
3523 | } | |
1d99702e RD |
3524 | if (_argo1) { |
3525 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3526 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
bb0054cd RD |
3527 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_Reparent. Expected _wxWindow_p."); |
3528 | return NULL; | |
3529 | } | |
3530 | } | |
3531 | { | |
3532 | wxPy_BEGIN_ALLOW_THREADS; | |
3533 | _result = (bool )wxWindow_Reparent(_arg0,_arg1); | |
3534 | ||
3535 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3536 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
3537 | } _resultobj = Py_BuildValue("i",_result); |
3538 | return _resultobj; | |
3539 | } | |
3540 | ||
af309447 | 3541 | #define wxWindow_ScreenToClientXY(_swigobj,_swigarg0,_swigarg1) (_swigobj->ScreenToClient(_swigarg0,_swigarg1)) |
efc5f224 | 3542 | static PyObject *_wrap_wxWindow_ScreenToClientXY(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3543 | PyObject * _resultobj; |
3544 | wxWindow * _arg0; | |
3545 | int * _arg1; | |
3546 | int * _arg2; | |
1d99702e | 3547 | PyObject * _argo0 = 0; |
8ab979d7 RD |
3548 | int temp; |
3549 | PyObject * _obj1 = 0; | |
3550 | int temp0; | |
3551 | PyObject * _obj2 = 0; | |
efc5f224 | 3552 | char *_kwnames[] = { "self","x","y", NULL }; |
8ab979d7 RD |
3553 | |
3554 | self = self; | |
efc5f224 | 3555 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxWindow_ScreenToClientXY",_kwnames,&_argo0,&_obj1,&_obj2)) |
8ab979d7 | 3556 | return NULL; |
1d99702e RD |
3557 | if (_argo0) { |
3558 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3559 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 | 3560 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ScreenToClientXY. Expected _wxWindow_p."); |
8ab979d7 RD |
3561 | return NULL; |
3562 | } | |
3563 | } | |
3564 | { | |
3565 | temp = (int) PyInt_AsLong(_obj1); | |
3566 | _arg1 = &temp; | |
3567 | } | |
3568 | { | |
3569 | temp0 = (int) PyInt_AsLong(_obj2); | |
3570 | _arg2 = &temp0; | |
3571 | } | |
cf694132 RD |
3572 | { |
3573 | wxPy_BEGIN_ALLOW_THREADS; | |
3574 | wxWindow_ScreenToClientXY(_arg0,_arg1,_arg2); | |
3575 | ||
3576 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3577 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3578 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3579 | _resultobj = Py_None; |
3580 | { | |
3581 | PyObject *o; | |
3582 | o = PyInt_FromLong((long) (*_arg1)); | |
3583 | _resultobj = t_output_helper(_resultobj, o); | |
3584 | } | |
3585 | { | |
3586 | PyObject *o; | |
3587 | o = PyInt_FromLong((long) (*_arg2)); | |
3588 | _resultobj = t_output_helper(_resultobj, o); | |
3589 | } | |
3590 | return _resultobj; | |
3591 | } | |
3592 | ||
af309447 | 3593 | #define wxWindow_ScreenToClient(_swigobj,_swigarg0) (_swigobj->ScreenToClient(_swigarg0)) |
efc5f224 | 3594 | static PyObject *_wrap_wxWindow_ScreenToClient(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
3595 | PyObject * _resultobj; |
3596 | wxPoint * _result; | |
3597 | wxWindow * _arg0; | |
3598 | wxPoint * _arg1; | |
1d99702e | 3599 | PyObject * _argo0 = 0; |
2f90df85 RD |
3600 | wxPoint temp; |
3601 | PyObject * _obj1 = 0; | |
efc5f224 | 3602 | char *_kwnames[] = { "self","pt", NULL }; |
af309447 RD |
3603 | char _ptemp[128]; |
3604 | ||
3605 | self = self; | |
2f90df85 | 3606 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_ScreenToClient",_kwnames,&_argo0,&_obj1)) |
af309447 | 3607 | return NULL; |
1d99702e RD |
3608 | if (_argo0) { |
3609 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3610 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
3611 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ScreenToClient. Expected _wxWindow_p."); |
3612 | return NULL; | |
3613 | } | |
3614 | } | |
2f90df85 RD |
3615 | { |
3616 | _arg1 = &temp; | |
3617 | if (! wxPoint_helper(_obj1, &_arg1)) | |
af309447 | 3618 | return NULL; |
2f90df85 | 3619 | } |
cf694132 RD |
3620 | { |
3621 | wxPy_BEGIN_ALLOW_THREADS; | |
3622 | _result = new wxPoint (wxWindow_ScreenToClient(_arg0,*_arg1)); | |
3623 | ||
3624 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3625 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3626 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); |
af309447 RD |
3627 | _resultobj = Py_BuildValue("s",_ptemp); |
3628 | return _resultobj; | |
3629 | } | |
3630 | ||
8ab979d7 | 3631 | #define wxWindow_ScrollWindow(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->ScrollWindow(_swigarg0,_swigarg1,_swigarg2)) |
efc5f224 | 3632 | static PyObject *_wrap_wxWindow_ScrollWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3633 | PyObject * _resultobj; |
3634 | wxWindow * _arg0; | |
3635 | int _arg1; | |
3636 | int _arg2; | |
1d99702e RD |
3637 | wxRect * _arg3 = (wxRect *) NULL; |
3638 | PyObject * _argo0 = 0; | |
2f90df85 RD |
3639 | wxRect temp; |
3640 | PyObject * _obj3 = 0; | |
efc5f224 | 3641 | char *_kwnames[] = { "self","dx","dy","rect", NULL }; |
8ab979d7 RD |
3642 | |
3643 | self = self; | |
2f90df85 | 3644 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii|O:wxWindow_ScrollWindow",_kwnames,&_argo0,&_arg1,&_arg2,&_obj3)) |
8ab979d7 | 3645 | return NULL; |
1d99702e RD |
3646 | if (_argo0) { |
3647 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3648 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3649 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ScrollWindow. Expected _wxWindow_p."); |
3650 | return NULL; | |
3651 | } | |
3652 | } | |
2f90df85 RD |
3653 | if (_obj3) |
3654 | { | |
3655 | _arg3 = &temp; | |
3656 | if (! wxRect_helper(_obj3, &_arg3)) | |
8ab979d7 | 3657 | return NULL; |
2f90df85 | 3658 | } |
cf694132 RD |
3659 | { |
3660 | wxPy_BEGIN_ALLOW_THREADS; | |
3661 | wxWindow_ScrollWindow(_arg0,_arg1,_arg2,_arg3); | |
3662 | ||
3663 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3664 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3665 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3666 | _resultobj = Py_None; |
3667 | return _resultobj; | |
3668 | } | |
3669 | ||
b8b8dda7 | 3670 | #define wxWindow_SetAcceleratorTable(_swigobj,_swigarg0) (_swigobj->SetAcceleratorTable(_swigarg0)) |
efc5f224 | 3671 | static PyObject *_wrap_wxWindow_SetAcceleratorTable(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
3672 | PyObject * _resultobj; |
3673 | wxWindow * _arg0; | |
3674 | wxAcceleratorTable * _arg1; | |
1d99702e RD |
3675 | PyObject * _argo0 = 0; |
3676 | PyObject * _argo1 = 0; | |
efc5f224 | 3677 | char *_kwnames[] = { "self","accel", NULL }; |
b8b8dda7 RD |
3678 | |
3679 | self = self; | |
efc5f224 | 3680 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetAcceleratorTable",_kwnames,&_argo0,&_argo1)) |
b8b8dda7 | 3681 | return NULL; |
1d99702e RD |
3682 | if (_argo0) { |
3683 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3684 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
3685 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetAcceleratorTable. Expected _wxWindow_p."); |
3686 | return NULL; | |
3687 | } | |
3688 | } | |
1d99702e RD |
3689 | if (_argo1) { |
3690 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3691 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxAcceleratorTable_p")) { | |
b8b8dda7 RD |
3692 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetAcceleratorTable. Expected _wxAcceleratorTable_p."); |
3693 | return NULL; | |
3694 | } | |
3695 | } | |
cf694132 RD |
3696 | { |
3697 | wxPy_BEGIN_ALLOW_THREADS; | |
3698 | wxWindow_SetAcceleratorTable(_arg0,*_arg1); | |
3699 | ||
3700 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3701 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3702 | } Py_INCREF(Py_None); |
b8b8dda7 RD |
3703 | _resultobj = Py_None; |
3704 | return _resultobj; | |
3705 | } | |
3706 | ||
8ab979d7 | 3707 | #define wxWindow_SetAutoLayout(_swigobj,_swigarg0) (_swigobj->SetAutoLayout(_swigarg0)) |
efc5f224 | 3708 | static PyObject *_wrap_wxWindow_SetAutoLayout(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3709 | PyObject * _resultobj; |
3710 | wxWindow * _arg0; | |
3711 | bool _arg1; | |
1d99702e | 3712 | PyObject * _argo0 = 0; |
8ab979d7 | 3713 | int tempbool1; |
efc5f224 | 3714 | char *_kwnames[] = { "self","autoLayout", NULL }; |
8ab979d7 RD |
3715 | |
3716 | self = self; | |
efc5f224 | 3717 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_SetAutoLayout",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 3718 | return NULL; |
1d99702e RD |
3719 | if (_argo0) { |
3720 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3721 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3722 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetAutoLayout. Expected _wxWindow_p."); |
3723 | return NULL; | |
3724 | } | |
3725 | } | |
3726 | _arg1 = (bool ) tempbool1; | |
cf694132 RD |
3727 | { |
3728 | wxPy_BEGIN_ALLOW_THREADS; | |
3729 | wxWindow_SetAutoLayout(_arg0,_arg1); | |
3730 | ||
3731 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3732 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3733 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3734 | _resultobj = Py_None; |
3735 | return _resultobj; | |
3736 | } | |
3737 | ||
9d8bd15f RD |
3738 | #define wxWindow_GetAutoLayout(_swigobj) (_swigobj->GetAutoLayout()) |
3739 | static PyObject *_wrap_wxWindow_GetAutoLayout(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3740 | PyObject * _resultobj; | |
3741 | bool _result; | |
3742 | wxWindow * _arg0; | |
3743 | PyObject * _argo0 = 0; | |
3744 | char *_kwnames[] = { "self", NULL }; | |
3745 | ||
3746 | self = self; | |
3747 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetAutoLayout",_kwnames,&_argo0)) | |
3748 | return NULL; | |
3749 | if (_argo0) { | |
3750 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3751 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3752 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetAutoLayout. Expected _wxWindow_p."); | |
3753 | return NULL; | |
3754 | } | |
3755 | } | |
3756 | { | |
3757 | wxPy_BEGIN_ALLOW_THREADS; | |
3758 | _result = (bool )wxWindow_GetAutoLayout(_arg0); | |
3759 | ||
3760 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3761 | if (PyErr_Occurred()) return NULL; |
9d8bd15f RD |
3762 | } _resultobj = Py_BuildValue("i",_result); |
3763 | return _resultobj; | |
3764 | } | |
3765 | ||
8ab979d7 | 3766 | #define wxWindow_SetBackgroundColour(_swigobj,_swigarg0) (_swigobj->SetBackgroundColour(_swigarg0)) |
efc5f224 | 3767 | static PyObject *_wrap_wxWindow_SetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3768 | PyObject * _resultobj; |
3769 | wxWindow * _arg0; | |
3770 | wxColour * _arg1; | |
1d99702e | 3771 | PyObject * _argo0 = 0; |
f6bcfd97 BP |
3772 | wxColour temp; |
3773 | PyObject * _obj1 = 0; | |
efc5f224 | 3774 | char *_kwnames[] = { "self","colour", NULL }; |
8ab979d7 RD |
3775 | |
3776 | self = self; | |
f6bcfd97 | 3777 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetBackgroundColour",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 3778 | return NULL; |
1d99702e RD |
3779 | if (_argo0) { |
3780 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3781 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3782 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetBackgroundColour. Expected _wxWindow_p."); |
3783 | return NULL; | |
3784 | } | |
3785 | } | |
f6bcfd97 BP |
3786 | { |
3787 | _arg1 = &temp; | |
3788 | if (! wxColour_helper(_obj1, &_arg1)) | |
8ab979d7 | 3789 | return NULL; |
f6bcfd97 | 3790 | } |
cf694132 RD |
3791 | { |
3792 | wxPy_BEGIN_ALLOW_THREADS; | |
3793 | wxWindow_SetBackgroundColour(_arg0,*_arg1); | |
3794 | ||
3795 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3796 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3797 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3798 | _resultobj = Py_None; |
3799 | return _resultobj; | |
3800 | } | |
3801 | ||
3802 | #define wxWindow_SetConstraints(_swigobj,_swigarg0) (_swigobj->SetConstraints(_swigarg0)) | |
efc5f224 | 3803 | static PyObject *_wrap_wxWindow_SetConstraints(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3804 | PyObject * _resultobj; |
3805 | wxWindow * _arg0; | |
3806 | wxLayoutConstraints * _arg1; | |
1d99702e RD |
3807 | PyObject * _argo0 = 0; |
3808 | PyObject * _argo1 = 0; | |
efc5f224 | 3809 | char *_kwnames[] = { "self","constraints", NULL }; |
8ab979d7 RD |
3810 | |
3811 | self = self; | |
efc5f224 | 3812 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetConstraints",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 3813 | return NULL; |
1d99702e RD |
3814 | if (_argo0) { |
3815 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3816 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3817 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetConstraints. Expected _wxWindow_p."); |
3818 | return NULL; | |
3819 | } | |
3820 | } | |
1d99702e RD |
3821 | if (_argo1) { |
3822 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3823 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxLayoutConstraints_p")) { | |
8ab979d7 RD |
3824 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetConstraints. Expected _wxLayoutConstraints_p."); |
3825 | return NULL; | |
3826 | } | |
3827 | } | |
cf694132 RD |
3828 | { |
3829 | wxPy_BEGIN_ALLOW_THREADS; | |
3830 | wxWindow_SetConstraints(_arg0,_arg1); | |
3831 | ||
3832 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3833 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3834 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3835 | _resultobj = Py_None; |
3836 | return _resultobj; | |
3837 | } | |
3838 | ||
2f90df85 RD |
3839 | #define wxWindow_UnsetConstraints(_swigobj,_swigarg0) (_swigobj->UnsetConstraints(_swigarg0)) |
3840 | static PyObject *_wrap_wxWindow_UnsetConstraints(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3841 | PyObject * _resultobj; | |
3842 | wxWindow * _arg0; | |
3843 | wxLayoutConstraints * _arg1; | |
3844 | PyObject * _argo0 = 0; | |
3845 | PyObject * _argo1 = 0; | |
3846 | char *_kwnames[] = { "self","constraints", NULL }; | |
3847 | ||
3848 | self = self; | |
3849 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_UnsetConstraints",_kwnames,&_argo0,&_argo1)) | |
3850 | return NULL; | |
3851 | if (_argo0) { | |
3852 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3853 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3854 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_UnsetConstraints. Expected _wxWindow_p."); | |
3855 | return NULL; | |
3856 | } | |
3857 | } | |
3858 | if (_argo1) { | |
3859 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3860 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxLayoutConstraints_p")) { | |
3861 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_UnsetConstraints. Expected _wxLayoutConstraints_p."); | |
3862 | return NULL; | |
3863 | } | |
3864 | } | |
3865 | { | |
3866 | wxPy_BEGIN_ALLOW_THREADS; | |
3867 | wxWindow_UnsetConstraints(_arg0,_arg1); | |
3868 | ||
3869 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3870 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
3871 | } Py_INCREF(Py_None); |
3872 | _resultobj = Py_None; | |
3873 | return _resultobj; | |
3874 | } | |
3875 | ||
8ab979d7 | 3876 | #define wxWindow_SetFocus(_swigobj) (_swigobj->SetFocus()) |
efc5f224 | 3877 | static PyObject *_wrap_wxWindow_SetFocus(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3878 | PyObject * _resultobj; |
3879 | wxWindow * _arg0; | |
1d99702e | 3880 | PyObject * _argo0 = 0; |
efc5f224 | 3881 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
3882 | |
3883 | self = self; | |
efc5f224 | 3884 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_SetFocus",_kwnames,&_argo0)) |
8ab979d7 | 3885 | return NULL; |
1d99702e RD |
3886 | if (_argo0) { |
3887 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3888 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3889 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetFocus. Expected _wxWindow_p."); |
3890 | return NULL; | |
3891 | } | |
3892 | } | |
cf694132 RD |
3893 | { |
3894 | wxPy_BEGIN_ALLOW_THREADS; | |
3895 | wxWindow_SetFocus(_arg0); | |
3896 | ||
3897 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3898 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3899 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3900 | _resultobj = Py_None; |
3901 | return _resultobj; | |
3902 | } | |
3903 | ||
2f90df85 RD |
3904 | #define wxWindow_AcceptsFocus(_swigobj) (_swigobj->AcceptsFocus()) |
3905 | static PyObject *_wrap_wxWindow_AcceptsFocus(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3906 | PyObject * _resultobj; | |
3907 | bool _result; | |
3908 | wxWindow * _arg0; | |
3909 | PyObject * _argo0 = 0; | |
3910 | char *_kwnames[] = { "self", NULL }; | |
3911 | ||
3912 | self = self; | |
3913 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_AcceptsFocus",_kwnames,&_argo0)) | |
3914 | return NULL; | |
3915 | if (_argo0) { | |
3916 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3917 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3918 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_AcceptsFocus. Expected _wxWindow_p."); | |
3919 | return NULL; | |
3920 | } | |
3921 | } | |
3922 | { | |
3923 | wxPy_BEGIN_ALLOW_THREADS; | |
3924 | _result = (bool )wxWindow_AcceptsFocus(_arg0); | |
3925 | ||
3926 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3927 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
3928 | } _resultobj = Py_BuildValue("i",_result); |
3929 | return _resultobj; | |
3930 | } | |
3931 | ||
8ab979d7 | 3932 | #define wxWindow_SetFont(_swigobj,_swigarg0) (_swigobj->SetFont(_swigarg0)) |
efc5f224 | 3933 | static PyObject *_wrap_wxWindow_SetFont(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3934 | PyObject * _resultobj; |
3935 | wxWindow * _arg0; | |
3936 | wxFont * _arg1; | |
1d99702e RD |
3937 | PyObject * _argo0 = 0; |
3938 | PyObject * _argo1 = 0; | |
efc5f224 | 3939 | char *_kwnames[] = { "self","font", NULL }; |
8ab979d7 RD |
3940 | |
3941 | self = self; | |
efc5f224 | 3942 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetFont",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 3943 | return NULL; |
1d99702e RD |
3944 | if (_argo0) { |
3945 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3946 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3947 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetFont. Expected _wxWindow_p."); |
3948 | return NULL; | |
3949 | } | |
3950 | } | |
1d99702e RD |
3951 | if (_argo1) { |
3952 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3953 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxFont_p")) { | |
8ab979d7 RD |
3954 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetFont. Expected _wxFont_p."); |
3955 | return NULL; | |
3956 | } | |
3957 | } | |
cf694132 RD |
3958 | { |
3959 | wxPy_BEGIN_ALLOW_THREADS; | |
3960 | wxWindow_SetFont(_arg0,*_arg1); | |
3961 | ||
3962 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3963 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3964 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3965 | _resultobj = Py_None; |
3966 | return _resultobj; | |
3967 | } | |
3968 | ||
3969 | #define wxWindow_SetForegroundColour(_swigobj,_swigarg0) (_swigobj->SetForegroundColour(_swigarg0)) | |
efc5f224 | 3970 | static PyObject *_wrap_wxWindow_SetForegroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3971 | PyObject * _resultobj; |
3972 | wxWindow * _arg0; | |
3973 | wxColour * _arg1; | |
1d99702e | 3974 | PyObject * _argo0 = 0; |
f6bcfd97 BP |
3975 | wxColour temp; |
3976 | PyObject * _obj1 = 0; | |
efc5f224 | 3977 | char *_kwnames[] = { "self","colour", NULL }; |
8ab979d7 RD |
3978 | |
3979 | self = self; | |
f6bcfd97 | 3980 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetForegroundColour",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 3981 | return NULL; |
1d99702e RD |
3982 | if (_argo0) { |
3983 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3984 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3985 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetForegroundColour. Expected _wxWindow_p."); |
3986 | return NULL; | |
3987 | } | |
3988 | } | |
f6bcfd97 BP |
3989 | { |
3990 | _arg1 = &temp; | |
3991 | if (! wxColour_helper(_obj1, &_arg1)) | |
8ab979d7 | 3992 | return NULL; |
f6bcfd97 | 3993 | } |
cf694132 RD |
3994 | { |
3995 | wxPy_BEGIN_ALLOW_THREADS; | |
3996 | wxWindow_SetForegroundColour(_arg0,*_arg1); | |
3997 | ||
3998 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 3999 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4000 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4001 | _resultobj = Py_None; |
4002 | return _resultobj; | |
4003 | } | |
4004 | ||
4005 | #define wxWindow_SetId(_swigobj,_swigarg0) (_swigobj->SetId(_swigarg0)) | |
efc5f224 | 4006 | static PyObject *_wrap_wxWindow_SetId(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4007 | PyObject * _resultobj; |
4008 | wxWindow * _arg0; | |
4009 | int _arg1; | |
1d99702e | 4010 | PyObject * _argo0 = 0; |
efc5f224 | 4011 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
4012 | |
4013 | self = self; | |
efc5f224 | 4014 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_SetId",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 4015 | return NULL; |
1d99702e RD |
4016 | if (_argo0) { |
4017 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4018 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4019 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetId. Expected _wxWindow_p."); |
4020 | return NULL; | |
4021 | } | |
4022 | } | |
cf694132 RD |
4023 | { |
4024 | wxPy_BEGIN_ALLOW_THREADS; | |
4025 | wxWindow_SetId(_arg0,_arg1); | |
4026 | ||
4027 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4028 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4029 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4030 | _resultobj = Py_None; |
4031 | return _resultobj; | |
4032 | } | |
4033 | ||
4034 | #define wxWindow_SetName(_swigobj,_swigarg0) (_swigobj->SetName(_swigarg0)) | |
efc5f224 | 4035 | static PyObject *_wrap_wxWindow_SetName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4036 | PyObject * _resultobj; |
4037 | wxWindow * _arg0; | |
4038 | wxString * _arg1; | |
1d99702e | 4039 | PyObject * _argo0 = 0; |
8ab979d7 | 4040 | PyObject * _obj1 = 0; |
efc5f224 | 4041 | char *_kwnames[] = { "self","name", NULL }; |
8ab979d7 RD |
4042 | |
4043 | self = self; | |
efc5f224 | 4044 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetName",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 4045 | return NULL; |
1d99702e RD |
4046 | if (_argo0) { |
4047 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4048 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4049 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetName. Expected _wxWindow_p."); |
4050 | return NULL; | |
4051 | } | |
4052 | } | |
4053 | { | |
185d7c3e RD |
4054 | #if PYTHON_API_VERSION >= 1009 |
4055 | char* tmpPtr; int tmpSize; | |
4056 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 4057 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
4058 | return NULL; |
4059 | } | |
4060 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
4061 | return NULL; | |
4062 | _arg1 = new wxString(tmpPtr, tmpSize); | |
4063 | #else | |
8ab979d7 RD |
4064 | if (!PyString_Check(_obj1)) { |
4065 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4066 | return NULL; | |
4067 | } | |
185d7c3e RD |
4068 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
4069 | #endif | |
8ab979d7 | 4070 | } |
cf694132 RD |
4071 | { |
4072 | wxPy_BEGIN_ALLOW_THREADS; | |
4073 | wxWindow_SetName(_arg0,*_arg1); | |
4074 | ||
4075 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4076 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4077 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4078 | _resultobj = Py_None; |
4079 | { | |
4080 | if (_obj1) | |
4081 | delete _arg1; | |
4082 | } | |
4083 | return _resultobj; | |
4084 | } | |
4085 | ||
8ab979d7 | 4086 | #define wxWindow_SetScrollbar(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->SetScrollbar(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4)) |
efc5f224 | 4087 | static PyObject *_wrap_wxWindow_SetScrollbar(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4088 | PyObject * _resultobj; |
4089 | wxWindow * _arg0; | |
4090 | int _arg1; | |
4091 | int _arg2; | |
4092 | int _arg3; | |
4093 | int _arg4; | |
eb715945 | 4094 | int _arg5 = (int ) TRUE; |
1d99702e | 4095 | PyObject * _argo0 = 0; |
efc5f224 | 4096 | char *_kwnames[] = { "self","orientation","position","thumbSize","range","refresh", NULL }; |
8ab979d7 RD |
4097 | |
4098 | self = self; | |
eb715945 | 4099 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oiiii|i:wxWindow_SetScrollbar",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_arg4,&_arg5)) |
8ab979d7 | 4100 | return NULL; |
1d99702e RD |
4101 | if (_argo0) { |
4102 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4103 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4104 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetScrollbar. Expected _wxWindow_p."); |
4105 | return NULL; | |
4106 | } | |
4107 | } | |
cf694132 RD |
4108 | { |
4109 | wxPy_BEGIN_ALLOW_THREADS; | |
4110 | wxWindow_SetScrollbar(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5); | |
4111 | ||
4112 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4113 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4114 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4115 | _resultobj = Py_None; |
4116 | return _resultobj; | |
4117 | } | |
4118 | ||
4119 | #define wxWindow_SetScrollPos(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->SetScrollPos(_swigarg0,_swigarg1,_swigarg2)) | |
efc5f224 | 4120 | static PyObject *_wrap_wxWindow_SetScrollPos(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4121 | PyObject * _resultobj; |
4122 | wxWindow * _arg0; | |
4123 | int _arg1; | |
4124 | int _arg2; | |
1d99702e RD |
4125 | bool _arg3 = (bool ) TRUE; |
4126 | PyObject * _argo0 = 0; | |
4127 | int tempbool3 = (int) TRUE; | |
efc5f224 | 4128 | char *_kwnames[] = { "self","orientation","pos","refresh", NULL }; |
8ab979d7 RD |
4129 | |
4130 | self = self; | |
efc5f224 | 4131 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii|i:wxWindow_SetScrollPos",_kwnames,&_argo0,&_arg1,&_arg2,&tempbool3)) |
8ab979d7 | 4132 | return NULL; |
1d99702e RD |
4133 | if (_argo0) { |
4134 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4135 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4136 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetScrollPos. Expected _wxWindow_p."); |
4137 | return NULL; | |
4138 | } | |
4139 | } | |
4140 | _arg3 = (bool ) tempbool3; | |
cf694132 RD |
4141 | { |
4142 | wxPy_BEGIN_ALLOW_THREADS; | |
4143 | wxWindow_SetScrollPos(_arg0,_arg1,_arg2,_arg3); | |
4144 | ||
4145 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4146 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4147 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4148 | _resultobj = Py_None; |
4149 | return _resultobj; | |
4150 | } | |
4151 | ||
4152 | #define wxWindow_SetDimensions(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->SetSize(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4)) | |
efc5f224 | 4153 | static PyObject *_wrap_wxWindow_SetDimensions(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4154 | PyObject * _resultobj; |
4155 | wxWindow * _arg0; | |
4156 | int _arg1; | |
4157 | int _arg2; | |
4158 | int _arg3; | |
4159 | int _arg4; | |
1d99702e RD |
4160 | int _arg5 = (int ) wxSIZE_AUTO; |
4161 | PyObject * _argo0 = 0; | |
efc5f224 | 4162 | char *_kwnames[] = { "self","x","y","width","height","sizeFlags", NULL }; |
8ab979d7 RD |
4163 | |
4164 | self = self; | |
efc5f224 | 4165 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oiiii|i:wxWindow_SetDimensions",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_arg4,&_arg5)) |
8ab979d7 | 4166 | return NULL; |
1d99702e RD |
4167 | if (_argo0) { |
4168 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4169 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4170 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetDimensions. Expected _wxWindow_p."); |
4171 | return NULL; | |
4172 | } | |
4173 | } | |
cf694132 RD |
4174 | { |
4175 | wxPy_BEGIN_ALLOW_THREADS; | |
4176 | wxWindow_SetDimensions(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5); | |
4177 | ||
4178 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4179 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4180 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4181 | _resultobj = Py_None; |
4182 | return _resultobj; | |
4183 | } | |
4184 | ||
4185 | static void wxWindow_SetSize(wxWindow *self,const wxSize & size) { | |
a1df7a95 | 4186 | self->SetSize(size); |
8ab979d7 | 4187 | } |
efc5f224 | 4188 | static PyObject *_wrap_wxWindow_SetSize(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4189 | PyObject * _resultobj; |
4190 | wxWindow * _arg0; | |
4191 | wxSize * _arg1; | |
1d99702e | 4192 | PyObject * _argo0 = 0; |
2f90df85 RD |
4193 | wxSize temp; |
4194 | PyObject * _obj1 = 0; | |
efc5f224 | 4195 | char *_kwnames[] = { "self","size", NULL }; |
8ab979d7 RD |
4196 | |
4197 | self = self; | |
2f90df85 | 4198 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetSize",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 4199 | return NULL; |
1d99702e RD |
4200 | if (_argo0) { |
4201 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4202 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4203 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetSize. Expected _wxWindow_p."); |
4204 | return NULL; | |
4205 | } | |
4206 | } | |
2f90df85 RD |
4207 | { |
4208 | _arg1 = &temp; | |
4209 | if (! wxSize_helper(_obj1, &_arg1)) | |
8ab979d7 | 4210 | return NULL; |
2f90df85 | 4211 | } |
cf694132 RD |
4212 | { |
4213 | wxPy_BEGIN_ALLOW_THREADS; | |
4214 | wxWindow_SetSize(_arg0,*_arg1); | |
4215 | ||
4216 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4217 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4218 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4219 | _resultobj = Py_None; |
4220 | return _resultobj; | |
4221 | } | |
4222 | ||
4223 | static void wxWindow_SetPosition(wxWindow *self,const wxPoint & pos) { | |
b7e72427 | 4224 | self->Move(pos); |
8ab979d7 | 4225 | } |
efc5f224 | 4226 | static PyObject *_wrap_wxWindow_SetPosition(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4227 | PyObject * _resultobj; |
4228 | wxWindow * _arg0; | |
4229 | wxPoint * _arg1; | |
1d99702e | 4230 | PyObject * _argo0 = 0; |
2f90df85 RD |
4231 | wxPoint temp; |
4232 | PyObject * _obj1 = 0; | |
efc5f224 | 4233 | char *_kwnames[] = { "self","pos", NULL }; |
8ab979d7 RD |
4234 | |
4235 | self = self; | |
2f90df85 | 4236 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetPosition",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 4237 | return NULL; |
1d99702e RD |
4238 | if (_argo0) { |
4239 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4240 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4241 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetPosition. Expected _wxWindow_p."); |
4242 | return NULL; | |
4243 | } | |
4244 | } | |
2f90df85 RD |
4245 | { |
4246 | _arg1 = &temp; | |
4247 | if (! wxPoint_helper(_obj1, &_arg1)) | |
8ab979d7 | 4248 | return NULL; |
2f90df85 | 4249 | } |
cf694132 RD |
4250 | { |
4251 | wxPy_BEGIN_ALLOW_THREADS; | |
4252 | wxWindow_SetPosition(_arg0,*_arg1); | |
4253 | ||
4254 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4255 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4256 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4257 | _resultobj = Py_None; |
4258 | return _resultobj; | |
4259 | } | |
4260 | ||
dbbb98cd RD |
4261 | static void wxWindow_SetRect(wxWindow *self,const wxRect & rect,int sizeFlags) { |
4262 | self->SetSize(rect, sizeFlags); | |
4263 | } | |
4264 | static PyObject *_wrap_wxWindow_SetRect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4265 | PyObject * _resultobj; | |
4266 | wxWindow * _arg0; | |
4267 | wxRect * _arg1; | |
4268 | int _arg2 = (int ) wxSIZE_AUTO; | |
4269 | PyObject * _argo0 = 0; | |
4270 | wxRect temp; | |
4271 | PyObject * _obj1 = 0; | |
4272 | char *_kwnames[] = { "self","rect","sizeFlags", NULL }; | |
4273 | ||
4274 | self = self; | |
4275 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxWindow_SetRect",_kwnames,&_argo0,&_obj1,&_arg2)) | |
4276 | return NULL; | |
4277 | if (_argo0) { | |
4278 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4279 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
4280 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetRect. Expected _wxWindow_p."); | |
4281 | return NULL; | |
4282 | } | |
4283 | } | |
4284 | { | |
4285 | _arg1 = &temp; | |
4286 | if (! wxRect_helper(_obj1, &_arg1)) | |
4287 | return NULL; | |
4288 | } | |
4289 | { | |
4290 | wxPy_BEGIN_ALLOW_THREADS; | |
4291 | wxWindow_SetRect(_arg0,*_arg1,_arg2); | |
4292 | ||
4293 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4294 | if (PyErr_Occurred()) return NULL; |
dbbb98cd RD |
4295 | } Py_INCREF(Py_None); |
4296 | _resultobj = Py_None; | |
4297 | return _resultobj; | |
4298 | } | |
4299 | ||
8ab979d7 | 4300 | #define wxWindow_SetSizeHints(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (_swigobj->SetSizeHints(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) |
efc5f224 | 4301 | static PyObject *_wrap_wxWindow_SetSizeHints(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4302 | PyObject * _resultobj; |
4303 | wxWindow * _arg0; | |
1d99702e RD |
4304 | int _arg1 = (int ) -1; |
4305 | int _arg2 = (int ) -1; | |
4306 | int _arg3 = (int ) -1; | |
4307 | int _arg4 = (int ) -1; | |
4308 | int _arg5 = (int ) -1; | |
4309 | int _arg6 = (int ) -1; | |
4310 | PyObject * _argo0 = 0; | |
efc5f224 | 4311 | char *_kwnames[] = { "self","minW","minH","maxW","maxH","incW","incH", NULL }; |
8ab979d7 RD |
4312 | |
4313 | self = self; | |
efc5f224 | 4314 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iiiiii:wxWindow_SetSizeHints",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_arg4,&_arg5,&_arg6)) |
8ab979d7 | 4315 | return NULL; |
1d99702e RD |
4316 | if (_argo0) { |
4317 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4318 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4319 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetSizeHints. Expected _wxWindow_p."); |
4320 | return NULL; | |
4321 | } | |
4322 | } | |
cf694132 RD |
4323 | { |
4324 | wxPy_BEGIN_ALLOW_THREADS; | |
4325 | wxWindow_SetSizeHints(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5,_arg6); | |
4326 | ||
4327 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4328 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4329 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4330 | _resultobj = Py_None; |
4331 | return _resultobj; | |
4332 | } | |
4333 | ||
af309447 | 4334 | #define wxWindow_SetClientSizeWH(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetClientSize(_swigarg0,_swigarg1)) |
efc5f224 | 4335 | static PyObject *_wrap_wxWindow_SetClientSizeWH(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4336 | PyObject * _resultobj; |
4337 | wxWindow * _arg0; | |
4338 | int _arg1; | |
4339 | int _arg2; | |
1d99702e | 4340 | PyObject * _argo0 = 0; |
efc5f224 | 4341 | char *_kwnames[] = { "self","width","height", NULL }; |
8ab979d7 RD |
4342 | |
4343 | self = self; | |
efc5f224 | 4344 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxWindow_SetClientSizeWH",_kwnames,&_argo0,&_arg1,&_arg2)) |
af309447 | 4345 | return NULL; |
1d99702e RD |
4346 | if (_argo0) { |
4347 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4348 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
4349 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetClientSizeWH. Expected _wxWindow_p."); |
4350 | return NULL; | |
4351 | } | |
4352 | } | |
cf694132 RD |
4353 | { |
4354 | wxPy_BEGIN_ALLOW_THREADS; | |
4355 | wxWindow_SetClientSizeWH(_arg0,_arg1,_arg2); | |
4356 | ||
4357 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4358 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4359 | } Py_INCREF(Py_None); |
af309447 RD |
4360 | _resultobj = Py_None; |
4361 | return _resultobj; | |
4362 | } | |
4363 | ||
4364 | #define wxWindow_SetClientSize(_swigobj,_swigarg0) (_swigobj->SetClientSize(_swigarg0)) | |
efc5f224 | 4365 | static PyObject *_wrap_wxWindow_SetClientSize(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
4366 | PyObject * _resultobj; |
4367 | wxWindow * _arg0; | |
4368 | wxSize * _arg1; | |
1d99702e | 4369 | PyObject * _argo0 = 0; |
2f90df85 RD |
4370 | wxSize temp; |
4371 | PyObject * _obj1 = 0; | |
efc5f224 | 4372 | char *_kwnames[] = { "self","size", NULL }; |
af309447 RD |
4373 | |
4374 | self = self; | |
2f90df85 | 4375 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetClientSize",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 4376 | return NULL; |
1d99702e RD |
4377 | if (_argo0) { |
4378 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4379 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4380 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetClientSize. Expected _wxWindow_p."); |
4381 | return NULL; | |
4382 | } | |
4383 | } | |
2f90df85 RD |
4384 | { |
4385 | _arg1 = &temp; | |
4386 | if (! wxSize_helper(_obj1, &_arg1)) | |
af309447 | 4387 | return NULL; |
2f90df85 | 4388 | } |
cf694132 RD |
4389 | { |
4390 | wxPy_BEGIN_ALLOW_THREADS; | |
4391 | wxWindow_SetClientSize(_arg0,*_arg1); | |
4392 | ||
4393 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4394 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4395 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4396 | _resultobj = Py_None; |
4397 | return _resultobj; | |
4398 | } | |
4399 | ||
4400 | #define wxWindow_SetCursor(_swigobj,_swigarg0) (_swigobj->SetCursor(_swigarg0)) | |
efc5f224 | 4401 | static PyObject *_wrap_wxWindow_SetCursor(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4402 | PyObject * _resultobj; |
4403 | wxWindow * _arg0; | |
4404 | wxCursor * _arg1; | |
1d99702e RD |
4405 | PyObject * _argo0 = 0; |
4406 | PyObject * _argo1 = 0; | |
efc5f224 | 4407 | char *_kwnames[] = { "self","cursor", NULL }; |
8ab979d7 RD |
4408 | |
4409 | self = self; | |
efc5f224 | 4410 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetCursor",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 4411 | return NULL; |
1d99702e RD |
4412 | if (_argo0) { |
4413 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4414 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4415 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetCursor. Expected _wxWindow_p."); |
4416 | return NULL; | |
4417 | } | |
4418 | } | |
1d99702e RD |
4419 | if (_argo1) { |
4420 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4421 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxCursor_p")) { | |
8ab979d7 RD |
4422 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetCursor. Expected _wxCursor_p."); |
4423 | return NULL; | |
4424 | } | |
4425 | } | |
cf694132 RD |
4426 | { |
4427 | wxPy_BEGIN_ALLOW_THREADS; | |
4428 | wxWindow_SetCursor(_arg0,*_arg1); | |
4429 | ||
4430 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4431 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4432 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4433 | _resultobj = Py_None; |
4434 | return _resultobj; | |
4435 | } | |
4436 | ||
1afc06c2 RD |
4437 | #define wxWindow_SetEventHandler(_swigobj,_swigarg0) (_swigobj->SetEventHandler(_swigarg0)) |
4438 | static PyObject *_wrap_wxWindow_SetEventHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4439 | PyObject * _resultobj; | |
4440 | wxWindow * _arg0; | |
4441 | wxEvtHandler * _arg1; | |
4442 | PyObject * _argo0 = 0; | |
4443 | PyObject * _argo1 = 0; | |
4444 | char *_kwnames[] = { "self","handler", NULL }; | |
4445 | ||
4446 | self = self; | |
4447 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetEventHandler",_kwnames,&_argo0,&_argo1)) | |
4448 | return NULL; | |
4449 | if (_argo0) { | |
4450 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4451 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
4452 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetEventHandler. Expected _wxWindow_p."); | |
4453 | return NULL; | |
4454 | } | |
4455 | } | |
4456 | if (_argo1) { | |
4457 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4458 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvtHandler_p")) { | |
4459 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetEventHandler. Expected _wxEvtHandler_p."); | |
4460 | return NULL; | |
4461 | } | |
4462 | } | |
4463 | { | |
4464 | wxPy_BEGIN_ALLOW_THREADS; | |
4465 | wxWindow_SetEventHandler(_arg0,_arg1); | |
4466 | ||
4467 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4468 | if (PyErr_Occurred()) return NULL; |
1afc06c2 RD |
4469 | } Py_INCREF(Py_None); |
4470 | _resultobj = Py_None; | |
4471 | return _resultobj; | |
4472 | } | |
4473 | ||
83b18bab RD |
4474 | #define wxWindow_SetExtraStyle(_swigobj,_swigarg0) (_swigobj->SetExtraStyle(_swigarg0)) |
4475 | static PyObject *_wrap_wxWindow_SetExtraStyle(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4476 | PyObject * _resultobj; | |
4477 | wxWindow * _arg0; | |
4478 | long _arg1; | |
4479 | PyObject * _argo0 = 0; | |
4480 | char *_kwnames[] = { "self","exStyle", NULL }; | |
4481 | ||
4482 | self = self; | |
4483 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxWindow_SetExtraStyle",_kwnames,&_argo0,&_arg1)) | |
4484 | return NULL; | |
4485 | if (_argo0) { | |
4486 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4487 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
4488 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetExtraStyle. Expected _wxWindow_p."); | |
4489 | return NULL; | |
4490 | } | |
4491 | } | |
4492 | { | |
4493 | wxPy_BEGIN_ALLOW_THREADS; | |
4494 | wxWindow_SetExtraStyle(_arg0,_arg1); | |
4495 | ||
4496 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4497 | if (PyErr_Occurred()) return NULL; |
83b18bab RD |
4498 | } Py_INCREF(Py_None); |
4499 | _resultobj = Py_None; | |
4500 | return _resultobj; | |
4501 | } | |
4502 | ||
8ab979d7 | 4503 | #define wxWindow_SetTitle(_swigobj,_swigarg0) (_swigobj->SetTitle(_swigarg0)) |
efc5f224 | 4504 | static PyObject *_wrap_wxWindow_SetTitle(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4505 | PyObject * _resultobj; |
4506 | wxWindow * _arg0; | |
4507 | wxString * _arg1; | |
1d99702e | 4508 | PyObject * _argo0 = 0; |
8ab979d7 | 4509 | PyObject * _obj1 = 0; |
efc5f224 | 4510 | char *_kwnames[] = { "self","title", NULL }; |
8ab979d7 RD |
4511 | |
4512 | self = self; | |
efc5f224 | 4513 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetTitle",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 4514 | return NULL; |
1d99702e RD |
4515 | if (_argo0) { |
4516 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4517 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4518 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetTitle. Expected _wxWindow_p."); |
4519 | return NULL; | |
4520 | } | |
4521 | } | |
4522 | { | |
185d7c3e RD |
4523 | #if PYTHON_API_VERSION >= 1009 |
4524 | char* tmpPtr; int tmpSize; | |
4525 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 4526 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
4527 | return NULL; |
4528 | } | |
4529 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
4530 | return NULL; | |
4531 | _arg1 = new wxString(tmpPtr, tmpSize); | |
4532 | #else | |
8ab979d7 RD |
4533 | if (!PyString_Check(_obj1)) { |
4534 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4535 | return NULL; | |
4536 | } | |
185d7c3e RD |
4537 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
4538 | #endif | |
8ab979d7 | 4539 | } |
cf694132 RD |
4540 | { |
4541 | wxPy_BEGIN_ALLOW_THREADS; | |
4542 | wxWindow_SetTitle(_arg0,*_arg1); | |
4543 | ||
4544 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4545 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4546 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4547 | _resultobj = Py_None; |
4548 | { | |
4549 | if (_obj1) | |
4550 | delete _arg1; | |
4551 | } | |
4552 | return _resultobj; | |
4553 | } | |
4554 | ||
4555 | #define wxWindow_Show(_swigobj,_swigarg0) (_swigobj->Show(_swigarg0)) | |
efc5f224 | 4556 | static PyObject *_wrap_wxWindow_Show(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4557 | PyObject * _resultobj; |
4558 | bool _result; | |
4559 | wxWindow * _arg0; | |
4560 | bool _arg1; | |
1d99702e | 4561 | PyObject * _argo0 = 0; |
8ab979d7 | 4562 | int tempbool1; |
efc5f224 | 4563 | char *_kwnames[] = { "self","show", NULL }; |
8ab979d7 RD |
4564 | |
4565 | self = self; | |
efc5f224 | 4566 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_Show",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 4567 | return NULL; |
1d99702e RD |
4568 | if (_argo0) { |
4569 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4570 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4571 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Show. Expected _wxWindow_p."); |
4572 | return NULL; | |
4573 | } | |
4574 | } | |
4575 | _arg1 = (bool ) tempbool1; | |
cf694132 RD |
4576 | { |
4577 | wxPy_BEGIN_ALLOW_THREADS; | |
4578 | _result = (bool )wxWindow_Show(_arg0,_arg1); | |
4579 | ||
4580 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4581 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4582 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
4583 | return _resultobj; |
4584 | } | |
4585 | ||
4586 | #define wxWindow_TransferDataFromWindow(_swigobj) (_swigobj->TransferDataFromWindow()) | |
efc5f224 | 4587 | static PyObject *_wrap_wxWindow_TransferDataFromWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4588 | PyObject * _resultobj; |
4589 | bool _result; | |
4590 | wxWindow * _arg0; | |
1d99702e | 4591 | PyObject * _argo0 = 0; |
efc5f224 | 4592 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
4593 | |
4594 | self = self; | |
efc5f224 | 4595 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_TransferDataFromWindow",_kwnames,&_argo0)) |
8ab979d7 | 4596 | return NULL; |
1d99702e RD |
4597 | if (_argo0) { |
4598 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4599 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4600 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_TransferDataFromWindow. Expected _wxWindow_p."); |
4601 | return NULL; | |
4602 | } | |
4603 | } | |
cf694132 RD |
4604 | { |
4605 | wxPy_BEGIN_ALLOW_THREADS; | |
4606 | _result = (bool )wxWindow_TransferDataFromWindow(_arg0); | |
4607 | ||
4608 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4609 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4610 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
4611 | return _resultobj; |
4612 | } | |
4613 | ||
4614 | #define wxWindow_TransferDataToWindow(_swigobj) (_swigobj->TransferDataToWindow()) | |
efc5f224 | 4615 | static PyObject *_wrap_wxWindow_TransferDataToWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4616 | PyObject * _resultobj; |
4617 | bool _result; | |
4618 | wxWindow * _arg0; | |
1d99702e | 4619 | PyObject * _argo0 = 0; |
efc5f224 | 4620 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
4621 | |
4622 | self = self; | |
efc5f224 | 4623 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_TransferDataToWindow",_kwnames,&_argo0)) |
8ab979d7 | 4624 | return NULL; |
1d99702e RD |
4625 | if (_argo0) { |
4626 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4627 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4628 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_TransferDataToWindow. Expected _wxWindow_p."); |
4629 | return NULL; | |
4630 | } | |
4631 | } | |
cf694132 RD |
4632 | { |
4633 | wxPy_BEGIN_ALLOW_THREADS; | |
4634 | _result = (bool )wxWindow_TransferDataToWindow(_arg0); | |
4635 | ||
4636 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4637 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4638 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
4639 | return _resultobj; |
4640 | } | |
4641 | ||
4642 | #define wxWindow_Validate(_swigobj) (_swigobj->Validate()) | |
efc5f224 | 4643 | static PyObject *_wrap_wxWindow_Validate(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4644 | PyObject * _resultobj; |
4645 | bool _result; | |
4646 | wxWindow * _arg0; | |
1d99702e | 4647 | PyObject * _argo0 = 0; |
efc5f224 | 4648 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
4649 | |
4650 | self = self; | |
efc5f224 | 4651 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Validate",_kwnames,&_argo0)) |
8ab979d7 | 4652 | return NULL; |
1d99702e RD |
4653 | if (_argo0) { |
4654 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4655 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4656 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Validate. Expected _wxWindow_p."); |
4657 | return NULL; | |
4658 | } | |
4659 | } | |
cf694132 RD |
4660 | { |
4661 | wxPy_BEGIN_ALLOW_THREADS; | |
4662 | _result = (bool )wxWindow_Validate(_arg0); | |
4663 | ||
4664 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4665 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4666 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
4667 | return _resultobj; |
4668 | } | |
4669 | ||
4670 | #define wxWindow_WarpPointer(_swigobj,_swigarg0,_swigarg1) (_swigobj->WarpPointer(_swigarg0,_swigarg1)) | |
efc5f224 | 4671 | static PyObject *_wrap_wxWindow_WarpPointer(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4672 | PyObject * _resultobj; |
4673 | wxWindow * _arg0; | |
4674 | int _arg1; | |
4675 | int _arg2; | |
1d99702e | 4676 | PyObject * _argo0 = 0; |
efc5f224 | 4677 | char *_kwnames[] = { "self","x","y", NULL }; |
8ab979d7 RD |
4678 | |
4679 | self = self; | |
efc5f224 | 4680 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxWindow_WarpPointer",_kwnames,&_argo0,&_arg1,&_arg2)) |
8ab979d7 | 4681 | return NULL; |
1d99702e RD |
4682 | if (_argo0) { |
4683 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4684 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4685 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_WarpPointer. Expected _wxWindow_p."); |
4686 | return NULL; | |
4687 | } | |
4688 | } | |
cf694132 RD |
4689 | { |
4690 | wxPy_BEGIN_ALLOW_THREADS; | |
4691 | wxWindow_WarpPointer(_arg0,_arg1,_arg2); | |
4692 | ||
4693 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4694 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4695 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4696 | _resultobj = Py_None; |
4697 | return _resultobj; | |
4698 | } | |
4699 | ||
b8b8dda7 | 4700 | #define wxWindow_ConvertDialogPointToPixels(_swigobj,_swigarg0) (_swigobj->ConvertDialogToPixels(_swigarg0)) |
efc5f224 | 4701 | static PyObject *_wrap_wxWindow_ConvertDialogPointToPixels(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
4702 | PyObject * _resultobj; |
4703 | wxPoint * _result; | |
4704 | wxWindow * _arg0; | |
4705 | wxPoint * _arg1; | |
1d99702e | 4706 | PyObject * _argo0 = 0; |
2f90df85 RD |
4707 | wxPoint temp; |
4708 | PyObject * _obj1 = 0; | |
efc5f224 | 4709 | char *_kwnames[] = { "self","pt", NULL }; |
b8b8dda7 RD |
4710 | char _ptemp[128]; |
4711 | ||
4712 | self = self; | |
2f90df85 | 4713 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_ConvertDialogPointToPixels",_kwnames,&_argo0,&_obj1)) |
b8b8dda7 | 4714 | return NULL; |
1d99702e RD |
4715 | if (_argo0) { |
4716 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4717 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
4718 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ConvertDialogPointToPixels. Expected _wxWindow_p."); |
4719 | return NULL; | |
4720 | } | |
4721 | } | |
2f90df85 RD |
4722 | { |
4723 | _arg1 = &temp; | |
4724 | if (! wxPoint_helper(_obj1, &_arg1)) | |
b8b8dda7 | 4725 | return NULL; |
2f90df85 | 4726 | } |
cf694132 RD |
4727 | { |
4728 | wxPy_BEGIN_ALLOW_THREADS; | |
4729 | _result = new wxPoint (wxWindow_ConvertDialogPointToPixels(_arg0,*_arg1)); | |
4730 | ||
4731 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4732 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4733 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); |
b8b8dda7 RD |
4734 | _resultobj = Py_BuildValue("s",_ptemp); |
4735 | return _resultobj; | |
4736 | } | |
4737 | ||
4738 | #define wxWindow_ConvertDialogSizeToPixels(_swigobj,_swigarg0) (_swigobj->ConvertDialogToPixels(_swigarg0)) | |
efc5f224 | 4739 | static PyObject *_wrap_wxWindow_ConvertDialogSizeToPixels(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
4740 | PyObject * _resultobj; |
4741 | wxSize * _result; | |
4742 | wxWindow * _arg0; | |
4743 | wxSize * _arg1; | |
1d99702e | 4744 | PyObject * _argo0 = 0; |
2f90df85 RD |
4745 | wxSize temp; |
4746 | PyObject * _obj1 = 0; | |
efc5f224 | 4747 | char *_kwnames[] = { "self","sz", NULL }; |
b8b8dda7 RD |
4748 | char _ptemp[128]; |
4749 | ||
4750 | self = self; | |
2f90df85 | 4751 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_ConvertDialogSizeToPixels",_kwnames,&_argo0,&_obj1)) |
b8b8dda7 | 4752 | return NULL; |
1d99702e RD |
4753 | if (_argo0) { |
4754 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4755 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
4756 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ConvertDialogSizeToPixels. Expected _wxWindow_p."); |
4757 | return NULL; | |
4758 | } | |
4759 | } | |
2f90df85 RD |
4760 | { |
4761 | _arg1 = &temp; | |
4762 | if (! wxSize_helper(_obj1, &_arg1)) | |
b8b8dda7 | 4763 | return NULL; |
2f90df85 | 4764 | } |
cf694132 RD |
4765 | { |
4766 | wxPy_BEGIN_ALLOW_THREADS; | |
4767 | _result = new wxSize (wxWindow_ConvertDialogSizeToPixels(_arg0,*_arg1)); | |
4768 | ||
4769 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4770 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4771 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxSize_p"); |
b8b8dda7 RD |
4772 | _resultobj = Py_BuildValue("s",_ptemp); |
4773 | return _resultobj; | |
4774 | } | |
4775 | ||
4776 | #define wxWindow_ConvertPixelPointToDialog(_swigobj,_swigarg0) (_swigobj->ConvertPixelsToDialog(_swigarg0)) | |
efc5f224 | 4777 | static PyObject *_wrap_wxWindow_ConvertPixelPointToDialog(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
4778 | PyObject * _resultobj; |
4779 | wxPoint * _result; | |
4780 | wxWindow * _arg0; | |
4781 | wxPoint * _arg1; | |
1d99702e | 4782 | PyObject * _argo0 = 0; |
2f90df85 RD |
4783 | wxPoint temp; |
4784 | PyObject * _obj1 = 0; | |
efc5f224 | 4785 | char *_kwnames[] = { "self","pt", NULL }; |
b8b8dda7 RD |
4786 | char _ptemp[128]; |
4787 | ||
4788 | self = self; | |
2f90df85 | 4789 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_ConvertPixelPointToDialog",_kwnames,&_argo0,&_obj1)) |
b8b8dda7 | 4790 | return NULL; |
1d99702e RD |
4791 | if (_argo0) { |
4792 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4793 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
4794 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ConvertPixelPointToDialog. Expected _wxWindow_p."); |
4795 | return NULL; | |
4796 | } | |
4797 | } | |
2f90df85 RD |
4798 | { |
4799 | _arg1 = &temp; | |
4800 | if (! wxPoint_helper(_obj1, &_arg1)) | |
b8b8dda7 | 4801 | return NULL; |
2f90df85 | 4802 | } |
cf694132 RD |
4803 | { |
4804 | wxPy_BEGIN_ALLOW_THREADS; | |
4805 | _result = new wxPoint (wxWindow_ConvertPixelPointToDialog(_arg0,*_arg1)); | |
4806 | ||
4807 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4808 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4809 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); |
b8b8dda7 RD |
4810 | _resultobj = Py_BuildValue("s",_ptemp); |
4811 | return _resultobj; | |
4812 | } | |
4813 | ||
4814 | #define wxWindow_ConvertPixelSizeToDialog(_swigobj,_swigarg0) (_swigobj->ConvertPixelsToDialog(_swigarg0)) | |
efc5f224 | 4815 | static PyObject *_wrap_wxWindow_ConvertPixelSizeToDialog(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
4816 | PyObject * _resultobj; |
4817 | wxSize * _result; | |
4818 | wxWindow * _arg0; | |
4819 | wxSize * _arg1; | |
1d99702e | 4820 | PyObject * _argo0 = 0; |
2f90df85 RD |
4821 | wxSize temp; |
4822 | PyObject * _obj1 = 0; | |
efc5f224 | 4823 | char *_kwnames[] = { "self","sz", NULL }; |
b8b8dda7 RD |
4824 | char _ptemp[128]; |
4825 | ||
4826 | self = self; | |
2f90df85 | 4827 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_ConvertPixelSizeToDialog",_kwnames,&_argo0,&_obj1)) |
b8b8dda7 | 4828 | return NULL; |
1d99702e RD |
4829 | if (_argo0) { |
4830 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4831 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
4832 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ConvertPixelSizeToDialog. Expected _wxWindow_p."); |
4833 | return NULL; | |
4834 | } | |
4835 | } | |
2f90df85 RD |
4836 | { |
4837 | _arg1 = &temp; | |
4838 | if (! wxSize_helper(_obj1, &_arg1)) | |
b8b8dda7 | 4839 | return NULL; |
2f90df85 | 4840 | } |
cf694132 RD |
4841 | { |
4842 | wxPy_BEGIN_ALLOW_THREADS; | |
4843 | _result = new wxSize (wxWindow_ConvertPixelSizeToDialog(_arg0,*_arg1)); | |
4844 | ||
4845 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4846 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4847 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxSize_p"); |
b8b8dda7 RD |
4848 | _resultobj = Py_BuildValue("s",_ptemp); |
4849 | return _resultobj; | |
4850 | } | |
4851 | ||
af309447 | 4852 | #define wxWindow_SetToolTipString(_swigobj,_swigarg0) (_swigobj->SetToolTip(_swigarg0)) |
efc5f224 | 4853 | static PyObject *_wrap_wxWindow_SetToolTipString(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
4854 | PyObject * _resultobj; |
4855 | wxWindow * _arg0; | |
4856 | wxString * _arg1; | |
1d99702e | 4857 | PyObject * _argo0 = 0; |
af309447 | 4858 | PyObject * _obj1 = 0; |
efc5f224 | 4859 | char *_kwnames[] = { "self","tip", NULL }; |
af309447 RD |
4860 | |
4861 | self = self; | |
efc5f224 | 4862 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetToolTipString",_kwnames,&_argo0,&_obj1)) |
af309447 | 4863 | return NULL; |
1d99702e RD |
4864 | if (_argo0) { |
4865 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4866 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
4867 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetToolTipString. Expected _wxWindow_p."); |
4868 | return NULL; | |
4869 | } | |
4870 | } | |
4871 | { | |
185d7c3e RD |
4872 | #if PYTHON_API_VERSION >= 1009 |
4873 | char* tmpPtr; int tmpSize; | |
4874 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 4875 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
4876 | return NULL; |
4877 | } | |
4878 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
4879 | return NULL; | |
4880 | _arg1 = new wxString(tmpPtr, tmpSize); | |
4881 | #else | |
af309447 RD |
4882 | if (!PyString_Check(_obj1)) { |
4883 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4884 | return NULL; | |
4885 | } | |
185d7c3e RD |
4886 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
4887 | #endif | |
af309447 | 4888 | } |
cf694132 RD |
4889 | { |
4890 | wxPy_BEGIN_ALLOW_THREADS; | |
4891 | wxWindow_SetToolTipString(_arg0,*_arg1); | |
4892 | ||
4893 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4894 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4895 | } Py_INCREF(Py_None); |
af309447 RD |
4896 | _resultobj = Py_None; |
4897 | { | |
4898 | if (_obj1) | |
4899 | delete _arg1; | |
4900 | } | |
4901 | return _resultobj; | |
4902 | } | |
4903 | ||
4904 | #define wxWindow_SetToolTip(_swigobj,_swigarg0) (_swigobj->SetToolTip(_swigarg0)) | |
efc5f224 | 4905 | static PyObject *_wrap_wxWindow_SetToolTip(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
4906 | PyObject * _resultobj; |
4907 | wxWindow * _arg0; | |
4908 | wxToolTip * _arg1; | |
1d99702e RD |
4909 | PyObject * _argo0 = 0; |
4910 | PyObject * _argo1 = 0; | |
efc5f224 | 4911 | char *_kwnames[] = { "self","tooltip", NULL }; |
af309447 RD |
4912 | |
4913 | self = self; | |
efc5f224 | 4914 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetToolTip",_kwnames,&_argo0,&_argo1)) |
af309447 | 4915 | return NULL; |
1d99702e RD |
4916 | if (_argo0) { |
4917 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4918 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
4919 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetToolTip. Expected _wxWindow_p."); |
4920 | return NULL; | |
4921 | } | |
4922 | } | |
1d99702e RD |
4923 | if (_argo1) { |
4924 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4925 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxToolTip_p")) { | |
af309447 RD |
4926 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetToolTip. Expected _wxToolTip_p."); |
4927 | return NULL; | |
4928 | } | |
4929 | } | |
cf694132 RD |
4930 | { |
4931 | wxPy_BEGIN_ALLOW_THREADS; | |
4932 | wxWindow_SetToolTip(_arg0,_arg1); | |
4933 | ||
4934 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4935 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4936 | } Py_INCREF(Py_None); |
af309447 RD |
4937 | _resultobj = Py_None; |
4938 | return _resultobj; | |
4939 | } | |
4940 | ||
4941 | #define wxWindow_GetToolTip(_swigobj) (_swigobj->GetToolTip()) | |
efc5f224 | 4942 | static PyObject *_wrap_wxWindow_GetToolTip(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
4943 | PyObject * _resultobj; |
4944 | wxToolTip * _result; | |
4945 | wxWindow * _arg0; | |
1d99702e | 4946 | PyObject * _argo0 = 0; |
efc5f224 | 4947 | char *_kwnames[] = { "self", NULL }; |
af309447 RD |
4948 | |
4949 | self = self; | |
efc5f224 | 4950 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetToolTip",_kwnames,&_argo0)) |
af309447 | 4951 | return NULL; |
1d99702e RD |
4952 | if (_argo0) { |
4953 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4954 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
4955 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetToolTip. Expected _wxWindow_p."); |
4956 | return NULL; | |
4957 | } | |
4958 | } | |
cf694132 RD |
4959 | { |
4960 | wxPy_BEGIN_ALLOW_THREADS; | |
4961 | _result = (wxToolTip *)wxWindow_GetToolTip(_arg0); | |
4962 | ||
4963 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 4964 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 4965 | }{ _resultobj = wxPyMake_wxObject(_result); } |
af309447 RD |
4966 | return _resultobj; |
4967 | } | |
4968 | ||
2f90df85 RD |
4969 | #define wxWindow_SetSizer(_swigobj,_swigarg0) (_swigobj->SetSizer(_swigarg0)) |
4970 | static PyObject *_wrap_wxWindow_SetSizer(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4971 | PyObject * _resultobj; | |
4972 | wxWindow * _arg0; | |
4973 | wxSizer * _arg1; | |
4974 | PyObject * _argo0 = 0; | |
4975 | PyObject * _argo1 = 0; | |
4976 | char *_kwnames[] = { "self","sizer", NULL }; | |
4977 | ||
4978 | self = self; | |
4979 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetSizer",_kwnames,&_argo0,&_argo1)) | |
4980 | return NULL; | |
4981 | if (_argo0) { | |
4982 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4983 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
4984 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetSizer. Expected _wxWindow_p."); | |
4985 | return NULL; | |
4986 | } | |
4987 | } | |
4988 | if (_argo1) { | |
4989 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4990 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxSizer_p")) { | |
4991 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetSizer. Expected _wxSizer_p."); | |
4992 | return NULL; | |
4993 | } | |
4994 | } | |
4995 | { | |
4996 | wxPy_BEGIN_ALLOW_THREADS; | |
4997 | wxWindow_SetSizer(_arg0,_arg1); | |
4998 | ||
4999 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5000 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
5001 | } Py_INCREF(Py_None); |
5002 | _resultobj = Py_None; | |
5003 | return _resultobj; | |
5004 | } | |
5005 | ||
f6bcfd97 BP |
5006 | #define wxWindow_GetSizer(_swigobj) (_swigobj->GetSizer()) |
5007 | static PyObject *_wrap_wxWindow_GetSizer(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5008 | PyObject * _resultobj; | |
5009 | wxSizer * _result; | |
5010 | wxWindow * _arg0; | |
5011 | PyObject * _argo0 = 0; | |
5012 | char *_kwnames[] = { "self", NULL }; | |
f6bcfd97 BP |
5013 | |
5014 | self = self; | |
5015 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetSizer",_kwnames,&_argo0)) | |
5016 | return NULL; | |
5017 | if (_argo0) { | |
5018 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5019 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5020 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetSizer. Expected _wxWindow_p."); | |
5021 | return NULL; | |
5022 | } | |
5023 | } | |
5024 | { | |
5025 | wxPy_BEGIN_ALLOW_THREADS; | |
5026 | _result = (wxSizer *)wxWindow_GetSizer(_arg0); | |
5027 | ||
5028 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5029 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 5030 | }{ _resultobj = wxPyMake_wxObject(_result); } |
f6bcfd97 BP |
5031 | return _resultobj; |
5032 | } | |
5033 | ||
2f90df85 RD |
5034 | #define wxWindow_GetValidator(_swigobj) (_swigobj->GetValidator()) |
5035 | static PyObject *_wrap_wxWindow_GetValidator(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5036 | PyObject * _resultobj; | |
5037 | wxValidator * _result; | |
5038 | wxWindow * _arg0; | |
5039 | PyObject * _argo0 = 0; | |
5040 | char *_kwnames[] = { "self", NULL }; | |
2f90df85 RD |
5041 | |
5042 | self = self; | |
5043 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetValidator",_kwnames,&_argo0)) | |
5044 | return NULL; | |
5045 | if (_argo0) { | |
5046 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5047 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5048 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetValidator. Expected _wxWindow_p."); | |
5049 | return NULL; | |
5050 | } | |
5051 | } | |
5052 | { | |
5053 | wxPy_BEGIN_ALLOW_THREADS; | |
5054 | _result = (wxValidator *)wxWindow_GetValidator(_arg0); | |
5055 | ||
5056 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5057 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 5058 | }{ _resultobj = wxPyMake_wxObject(_result); } |
2f90df85 RD |
5059 | return _resultobj; |
5060 | } | |
5061 | ||
5062 | #define wxWindow_SetValidator(_swigobj,_swigarg0) (_swigobj->SetValidator(_swigarg0)) | |
5063 | static PyObject *_wrap_wxWindow_SetValidator(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5064 | PyObject * _resultobj; | |
5065 | wxWindow * _arg0; | |
5066 | wxValidator * _arg1; | |
5067 | PyObject * _argo0 = 0; | |
5068 | PyObject * _argo1 = 0; | |
5069 | char *_kwnames[] = { "self","validator", NULL }; | |
5070 | ||
5071 | self = self; | |
5072 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetValidator",_kwnames,&_argo0,&_argo1)) | |
5073 | return NULL; | |
5074 | if (_argo0) { | |
5075 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5076 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5077 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetValidator. Expected _wxWindow_p."); | |
5078 | return NULL; | |
5079 | } | |
5080 | } | |
5081 | if (_argo1) { | |
5082 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5083 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxValidator_p")) { | |
5084 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetValidator. Expected _wxValidator_p."); | |
5085 | return NULL; | |
5086 | } | |
5087 | } | |
5088 | { | |
5089 | wxPy_BEGIN_ALLOW_THREADS; | |
5090 | wxWindow_SetValidator(_arg0,*_arg1); | |
5091 | ||
5092 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5093 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
5094 | } Py_INCREF(Py_None); |
5095 | _resultobj = Py_None; | |
5096 | return _resultobj; | |
5097 | } | |
5098 | ||
b1462dfa RD |
5099 | #define wxWindow_SetDropTarget(_swigobj,_swigarg0) (_swigobj->SetDropTarget(_swigarg0)) |
5100 | static PyObject *_wrap_wxWindow_SetDropTarget(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5101 | PyObject * _resultobj; | |
5102 | wxWindow * _arg0; | |
5103 | wxDropTarget * _arg1; | |
5104 | PyObject * _argo0 = 0; | |
5105 | PyObject * _argo1 = 0; | |
5106 | char *_kwnames[] = { "self","target", NULL }; | |
5107 | ||
5108 | self = self; | |
5109 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetDropTarget",_kwnames,&_argo0,&_argo1)) | |
5110 | return NULL; | |
5111 | if (_argo0) { | |
5112 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5113 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5114 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetDropTarget. Expected _wxWindow_p."); | |
5115 | return NULL; | |
5116 | } | |
5117 | } | |
5118 | if (_argo1) { | |
5119 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5120 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxDropTarget_p")) { | |
5121 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetDropTarget. Expected _wxDropTarget_p."); | |
5122 | return NULL; | |
5123 | } | |
5124 | } | |
5125 | { | |
5126 | wxPy_BEGIN_ALLOW_THREADS; | |
5127 | wxWindow_SetDropTarget(_arg0,_arg1); | |
5128 | ||
5129 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5130 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
5131 | } Py_INCREF(Py_None); |
5132 | _resultobj = Py_None; | |
5133 | return _resultobj; | |
5134 | } | |
5135 | ||
5136 | #define wxWindow_GetDropTarget(_swigobj) (_swigobj->GetDropTarget()) | |
5137 | static PyObject *_wrap_wxWindow_GetDropTarget(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5138 | PyObject * _resultobj; | |
5139 | wxDropTarget * _result; | |
5140 | wxWindow * _arg0; | |
5141 | PyObject * _argo0 = 0; | |
5142 | char *_kwnames[] = { "self", NULL }; | |
5143 | char _ptemp[128]; | |
5144 | ||
5145 | self = self; | |
5146 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetDropTarget",_kwnames,&_argo0)) | |
5147 | return NULL; | |
5148 | if (_argo0) { | |
5149 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5150 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5151 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetDropTarget. Expected _wxWindow_p."); | |
5152 | return NULL; | |
5153 | } | |
5154 | } | |
5155 | { | |
5156 | wxPy_BEGIN_ALLOW_THREADS; | |
5157 | _result = (wxDropTarget *)wxWindow_GetDropTarget(_arg0); | |
5158 | ||
5159 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5160 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
5161 | } if (_result) { |
5162 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxDropTarget_p"); | |
5163 | _resultobj = Py_BuildValue("s",_ptemp); | |
5164 | } else { | |
5165 | Py_INCREF(Py_None); | |
5166 | _resultobj = Py_None; | |
5167 | } | |
5168 | return _resultobj; | |
5169 | } | |
5170 | ||
694759cf RD |
5171 | #define wxWindow_GetBestSize(_swigobj) (_swigobj->GetBestSize()) |
5172 | static PyObject *_wrap_wxWindow_GetBestSize(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5173 | PyObject * _resultobj; | |
5174 | wxSize * _result; | |
5175 | wxWindow * _arg0; | |
5176 | PyObject * _argo0 = 0; | |
5177 | char *_kwnames[] = { "self", NULL }; | |
5178 | char _ptemp[128]; | |
5179 | ||
5180 | self = self; | |
5181 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetBestSize",_kwnames,&_argo0)) | |
5182 | return NULL; | |
5183 | if (_argo0) { | |
5184 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5185 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5186 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetBestSize. Expected _wxWindow_p."); | |
5187 | return NULL; | |
5188 | } | |
5189 | } | |
5190 | { | |
5191 | wxPy_BEGIN_ALLOW_THREADS; | |
5192 | _result = new wxSize (wxWindow_GetBestSize(_arg0)); | |
5193 | ||
5194 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5195 | if (PyErr_Occurred()) return NULL; |
694759cf RD |
5196 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxSize_p"); |
5197 | _resultobj = Py_BuildValue("s",_ptemp); | |
5198 | return _resultobj; | |
5199 | } | |
5200 | ||
a1df7a95 RD |
5201 | #define wxWindow_SetCaret(_swigobj,_swigarg0) (_swigobj->SetCaret(_swigarg0)) |
5202 | static PyObject *_wrap_wxWindow_SetCaret(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5203 | PyObject * _resultobj; | |
5204 | wxWindow * _arg0; | |
5205 | wxCaret * _arg1; | |
5206 | PyObject * _argo0 = 0; | |
5207 | PyObject * _argo1 = 0; | |
5208 | char *_kwnames[] = { "self","caret", NULL }; | |
5209 | ||
5210 | self = self; | |
5211 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetCaret",_kwnames,&_argo0,&_argo1)) | |
5212 | return NULL; | |
5213 | if (_argo0) { | |
5214 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5215 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5216 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetCaret. Expected _wxWindow_p."); | |
5217 | return NULL; | |
5218 | } | |
5219 | } | |
5220 | if (_argo1) { | |
5221 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5222 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxCaret_p")) { | |
5223 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetCaret. Expected _wxCaret_p."); | |
5224 | return NULL; | |
5225 | } | |
5226 | } | |
5227 | { | |
5228 | wxPy_BEGIN_ALLOW_THREADS; | |
5229 | wxWindow_SetCaret(_arg0,_arg1); | |
5230 | ||
5231 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5232 | if (PyErr_Occurred()) return NULL; |
a1df7a95 RD |
5233 | } Py_INCREF(Py_None); |
5234 | _resultobj = Py_None; | |
5235 | return _resultobj; | |
5236 | } | |
5237 | ||
5238 | #define wxWindow_GetCaret(_swigobj) (_swigobj->GetCaret()) | |
5239 | static PyObject *_wrap_wxWindow_GetCaret(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5240 | PyObject * _resultobj; | |
5241 | wxCaret * _result; | |
5242 | wxWindow * _arg0; | |
5243 | PyObject * _argo0 = 0; | |
5244 | char *_kwnames[] = { "self", NULL }; | |
5245 | char _ptemp[128]; | |
5246 | ||
5247 | self = self; | |
5248 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetCaret",_kwnames,&_argo0)) | |
5249 | return NULL; | |
5250 | if (_argo0) { | |
5251 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5252 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5253 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetCaret. Expected _wxWindow_p."); | |
5254 | return NULL; | |
5255 | } | |
5256 | } | |
5257 | { | |
5258 | wxPy_BEGIN_ALLOW_THREADS; | |
5259 | _result = (wxCaret *)wxWindow_GetCaret(_arg0); | |
5260 | ||
5261 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5262 | if (PyErr_Occurred()) return NULL; |
a1df7a95 RD |
5263 | } if (_result) { |
5264 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxCaret_p"); | |
5265 | _resultobj = Py_BuildValue("s",_ptemp); | |
5266 | } else { | |
5267 | Py_INCREF(Py_None); | |
5268 | _resultobj = Py_None; | |
5269 | } | |
5270 | return _resultobj; | |
5271 | } | |
5272 | ||
3a0958b1 RD |
5273 | #define wxWindow_Freeze(_swigobj) (_swigobj->Freeze()) |
5274 | static PyObject *_wrap_wxWindow_Freeze(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5275 | PyObject * _resultobj; | |
5276 | wxWindow * _arg0; | |
5277 | PyObject * _argo0 = 0; | |
5278 | char *_kwnames[] = { "self", NULL }; | |
5279 | ||
5280 | self = self; | |
5281 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Freeze",_kwnames,&_argo0)) | |
5282 | return NULL; | |
5283 | if (_argo0) { | |
5284 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5285 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5286 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Freeze. Expected _wxWindow_p."); | |
5287 | return NULL; | |
5288 | } | |
5289 | } | |
5290 | { | |
5291 | wxPy_BEGIN_ALLOW_THREADS; | |
5292 | wxWindow_Freeze(_arg0); | |
5293 | ||
5294 | wxPy_END_ALLOW_THREADS; | |
5295 | if (PyErr_Occurred()) return NULL; | |
5296 | } Py_INCREF(Py_None); | |
5297 | _resultobj = Py_None; | |
5298 | return _resultobj; | |
5299 | } | |
5300 | ||
5301 | #define wxWindow_Thaw(_swigobj) (_swigobj->Thaw()) | |
5302 | static PyObject *_wrap_wxWindow_Thaw(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5303 | PyObject * _resultobj; | |
5304 | wxWindow * _arg0; | |
5305 | PyObject * _argo0 = 0; | |
5306 | char *_kwnames[] = { "self", NULL }; | |
5307 | ||
5308 | self = self; | |
5309 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Thaw",_kwnames,&_argo0)) | |
5310 | return NULL; | |
5311 | if (_argo0) { | |
5312 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5313 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5314 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Thaw. Expected _wxWindow_p."); | |
5315 | return NULL; | |
5316 | } | |
5317 | } | |
5318 | { | |
5319 | wxPy_BEGIN_ALLOW_THREADS; | |
5320 | wxWindow_Thaw(_arg0); | |
5321 | ||
5322 | wxPy_END_ALLOW_THREADS; | |
5323 | if (PyErr_Occurred()) return NULL; | |
5324 | } Py_INCREF(Py_None); | |
5325 | _resultobj = Py_None; | |
5326 | return _resultobj; | |
5327 | } | |
5328 | ||
4f3449b4 RD |
5329 | #define wxWindow_GetHelpText(_swigobj) (_swigobj->GetHelpText()) |
5330 | static PyObject *_wrap_wxWindow_GetHelpText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5331 | PyObject * _resultobj; | |
5332 | wxString * _result; | |
5333 | wxWindow * _arg0; | |
5334 | PyObject * _argo0 = 0; | |
5335 | char *_kwnames[] = { "self", NULL }; | |
5336 | ||
5337 | self = self; | |
5338 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetHelpText",_kwnames,&_argo0)) | |
5339 | return NULL; | |
5340 | if (_argo0) { | |
5341 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5342 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5343 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetHelpText. Expected _wxWindow_p."); | |
5344 | return NULL; | |
5345 | } | |
5346 | } | |
5347 | { | |
5348 | wxPy_BEGIN_ALLOW_THREADS; | |
5349 | _result = new wxString (wxWindow_GetHelpText(_arg0)); | |
5350 | ||
5351 | wxPy_END_ALLOW_THREADS; | |
5352 | if (PyErr_Occurred()) return NULL; | |
5353 | }{ | |
5354 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); | |
5355 | } | |
5356 | { | |
5357 | delete _result; | |
5358 | } | |
5359 | return _resultobj; | |
5360 | } | |
5361 | ||
5362 | #define wxWindow_SetHelpText(_swigobj,_swigarg0) (_swigobj->SetHelpText(_swigarg0)) | |
5363 | static PyObject *_wrap_wxWindow_SetHelpText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5364 | PyObject * _resultobj; | |
5365 | wxWindow * _arg0; | |
5366 | wxString * _arg1; | |
5367 | PyObject * _argo0 = 0; | |
5368 | PyObject * _obj1 = 0; | |
5369 | char *_kwnames[] = { "self","helpText", NULL }; | |
5370 | ||
5371 | self = self; | |
5372 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetHelpText",_kwnames,&_argo0,&_obj1)) | |
5373 | return NULL; | |
5374 | if (_argo0) { | |
5375 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5376 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5377 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetHelpText. Expected _wxWindow_p."); | |
5378 | return NULL; | |
5379 | } | |
5380 | } | |
5381 | { | |
5382 | #if PYTHON_API_VERSION >= 1009 | |
5383 | char* tmpPtr; int tmpSize; | |
5384 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
5385 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5386 | return NULL; | |
5387 | } | |
5388 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
5389 | return NULL; | |
5390 | _arg1 = new wxString(tmpPtr, tmpSize); | |
5391 | #else | |
5392 | if (!PyString_Check(_obj1)) { | |
5393 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5394 | return NULL; | |
5395 | } | |
5396 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); | |
5397 | #endif | |
5398 | } | |
5399 | { | |
5400 | wxPy_BEGIN_ALLOW_THREADS; | |
5401 | wxWindow_SetHelpText(_arg0,*_arg1); | |
5402 | ||
5403 | wxPy_END_ALLOW_THREADS; | |
5404 | if (PyErr_Occurred()) return NULL; | |
5405 | } Py_INCREF(Py_None); | |
5406 | _resultobj = Py_None; | |
5407 | { | |
5408 | if (_obj1) | |
5409 | delete _arg1; | |
5410 | } | |
5411 | return _resultobj; | |
5412 | } | |
5413 | ||
8ab979d7 RD |
5414 | static void *SwigwxPanelTowxWindow(void *ptr) { |
5415 | wxPanel *src; | |
5416 | wxWindow *dest; | |
5417 | src = (wxPanel *) ptr; | |
5418 | dest = (wxWindow *) src; | |
5419 | return (void *) dest; | |
5420 | } | |
5421 | ||
5422 | static void *SwigwxPanelTowxEvtHandler(void *ptr) { | |
5423 | wxPanel *src; | |
5424 | wxEvtHandler *dest; | |
5425 | src = (wxPanel *) ptr; | |
5426 | dest = (wxEvtHandler *) src; | |
5427 | return (void *) dest; | |
5428 | } | |
5429 | ||
9416aa89 RD |
5430 | static void *SwigwxPanelTowxObject(void *ptr) { |
5431 | wxPanel *src; | |
5432 | wxObject *dest; | |
5433 | src = (wxPanel *) ptr; | |
5434 | dest = (wxObject *) src; | |
5435 | return (void *) dest; | |
5436 | } | |
5437 | ||
8ab979d7 | 5438 | #define new_wxPanel(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (new wxPanel(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) |
efc5f224 | 5439 | static PyObject *_wrap_new_wxPanel(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
5440 | PyObject * _resultobj; |
5441 | wxPanel * _result; | |
5442 | wxWindow * _arg0; | |
5443 | wxWindowID _arg1; | |
e508a2b6 RD |
5444 | wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition; |
5445 | wxSize * _arg3 = (wxSize *) &wxDefaultSize; | |
1d99702e RD |
5446 | long _arg4 = (long ) wxTAB_TRAVERSAL; |
5447 | char * _arg5 = (char *) "panel"; | |
5448 | PyObject * _argo0 = 0; | |
2f90df85 RD |
5449 | wxPoint temp; |
5450 | PyObject * _obj2 = 0; | |
5451 | wxSize temp0; | |
5452 | PyObject * _obj3 = 0; | |
efc5f224 | 5453 | char *_kwnames[] = { "parent","id","pos","size","style","name", NULL }; |
8ab979d7 RD |
5454 | char _ptemp[128]; |
5455 | ||
5456 | self = self; | |
2f90df85 | 5457 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi|OOls:new_wxPanel",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4,&_arg5)) |
8ab979d7 | 5458 | return NULL; |
1d99702e RD |
5459 | if (_argo0) { |
5460 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5461 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
5462 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxPanel. Expected _wxWindow_p."); |
5463 | return NULL; | |
5464 | } | |
5465 | } | |
2f90df85 RD |
5466 | if (_obj2) |
5467 | { | |
5468 | _arg2 = &temp; | |
5469 | if (! wxPoint_helper(_obj2, &_arg2)) | |
8ab979d7 | 5470 | return NULL; |
2f90df85 RD |
5471 | } |
5472 | if (_obj3) | |
5473 | { | |
5474 | _arg3 = &temp0; | |
5475 | if (! wxSize_helper(_obj3, &_arg3)) | |
8ab979d7 | 5476 | return NULL; |
2f90df85 | 5477 | } |
cf694132 RD |
5478 | { |
5479 | wxPy_BEGIN_ALLOW_THREADS; | |
5480 | _result = (wxPanel *)new_wxPanel(_arg0,_arg1,*_arg2,*_arg3,_arg4,_arg5); | |
5481 | ||
5482 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5483 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
5484 | } if (_result) { |
5485 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPanel_p"); | |
5486 | _resultobj = Py_BuildValue("s",_ptemp); | |
5487 | } else { | |
5488 | Py_INCREF(Py_None); | |
5489 | _resultobj = Py_None; | |
5490 | } | |
8ab979d7 RD |
5491 | return _resultobj; |
5492 | } | |
5493 | ||
5494 | #define wxPanel_InitDialog(_swigobj) (_swigobj->InitDialog()) | |
efc5f224 | 5495 | static PyObject *_wrap_wxPanel_InitDialog(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
5496 | PyObject * _resultobj; |
5497 | wxPanel * _arg0; | |
1d99702e | 5498 | PyObject * _argo0 = 0; |
efc5f224 | 5499 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
5500 | |
5501 | self = self; | |
efc5f224 | 5502 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPanel_InitDialog",_kwnames,&_argo0)) |
8ab979d7 | 5503 | return NULL; |
1d99702e RD |
5504 | if (_argo0) { |
5505 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5506 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPanel_p")) { | |
8ab979d7 RD |
5507 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPanel_InitDialog. Expected _wxPanel_p."); |
5508 | return NULL; | |
5509 | } | |
5510 | } | |
cf694132 RD |
5511 | { |
5512 | wxPy_BEGIN_ALLOW_THREADS; | |
5513 | wxPanel_InitDialog(_arg0); | |
5514 | ||
5515 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5516 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5517 | } Py_INCREF(Py_None); |
8ab979d7 RD |
5518 | _resultobj = Py_None; |
5519 | return _resultobj; | |
5520 | } | |
5521 | ||
bb0054cd | 5522 | #define wxPanel_GetDefaultItem(_swigobj) (_swigobj->GetDefaultItem()) |
efc5f224 | 5523 | static PyObject *_wrap_wxPanel_GetDefaultItem(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
5524 | PyObject * _resultobj; |
5525 | wxButton * _result; | |
5526 | wxPanel * _arg0; | |
1d99702e | 5527 | PyObject * _argo0 = 0; |
efc5f224 | 5528 | char *_kwnames[] = { "self", NULL }; |
bb0054cd RD |
5529 | |
5530 | self = self; | |
efc5f224 | 5531 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPanel_GetDefaultItem",_kwnames,&_argo0)) |
bb0054cd | 5532 | return NULL; |
1d99702e RD |
5533 | if (_argo0) { |
5534 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5535 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPanel_p")) { | |
bb0054cd RD |
5536 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPanel_GetDefaultItem. Expected _wxPanel_p."); |
5537 | return NULL; | |
5538 | } | |
5539 | } | |
5540 | { | |
5541 | wxPy_BEGIN_ALLOW_THREADS; | |
5542 | _result = (wxButton *)wxPanel_GetDefaultItem(_arg0); | |
5543 | ||
5544 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5545 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 5546 | }{ _resultobj = wxPyMake_wxObject(_result); } |
bb0054cd RD |
5547 | return _resultobj; |
5548 | } | |
5549 | ||
5550 | #define wxPanel_SetDefaultItem(_swigobj,_swigarg0) (_swigobj->SetDefaultItem(_swigarg0)) | |
efc5f224 | 5551 | static PyObject *_wrap_wxPanel_SetDefaultItem(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
5552 | PyObject * _resultobj; |
5553 | wxPanel * _arg0; | |
5554 | wxButton * _arg1; | |
1d99702e RD |
5555 | PyObject * _argo0 = 0; |
5556 | PyObject * _argo1 = 0; | |
efc5f224 | 5557 | char *_kwnames[] = { "self","btn", NULL }; |
bb0054cd RD |
5558 | |
5559 | self = self; | |
efc5f224 | 5560 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPanel_SetDefaultItem",_kwnames,&_argo0,&_argo1)) |
bb0054cd | 5561 | return NULL; |
1d99702e RD |
5562 | if (_argo0) { |
5563 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5564 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPanel_p")) { | |
bb0054cd RD |
5565 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPanel_SetDefaultItem. Expected _wxPanel_p."); |
5566 | return NULL; | |
5567 | } | |
5568 | } | |
1d99702e RD |
5569 | if (_argo1) { |
5570 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5571 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxButton_p")) { | |
bb0054cd RD |
5572 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPanel_SetDefaultItem. Expected _wxButton_p."); |
5573 | return NULL; | |
5574 | } | |
5575 | } | |
5576 | { | |
5577 | wxPy_BEGIN_ALLOW_THREADS; | |
5578 | wxPanel_SetDefaultItem(_arg0,_arg1); | |
5579 | ||
5580 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5581 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
5582 | } Py_INCREF(Py_None); |
5583 | _resultobj = Py_None; | |
5584 | return _resultobj; | |
5585 | } | |
5586 | ||
8ab979d7 RD |
5587 | static void *SwigwxDialogTowxPanel(void *ptr) { |
5588 | wxDialog *src; | |
5589 | wxPanel *dest; | |
5590 | src = (wxDialog *) ptr; | |
5591 | dest = (wxPanel *) src; | |
5592 | return (void *) dest; | |
5593 | } | |
5594 | ||
5595 | static void *SwigwxDialogTowxWindow(void *ptr) { | |
5596 | wxDialog *src; | |
5597 | wxWindow *dest; | |
5598 | src = (wxDialog *) ptr; | |
5599 | dest = (wxWindow *) src; | |
5600 | return (void *) dest; | |
5601 | } | |
5602 | ||
5603 | static void *SwigwxDialogTowxEvtHandler(void *ptr) { | |
5604 | wxDialog *src; | |
5605 | wxEvtHandler *dest; | |
5606 | src = (wxDialog *) ptr; | |
5607 | dest = (wxEvtHandler *) src; | |
5608 | return (void *) dest; | |
5609 | } | |
5610 | ||
9416aa89 RD |
5611 | static void *SwigwxDialogTowxObject(void *ptr) { |
5612 | wxDialog *src; | |
5613 | wxObject *dest; | |
5614 | src = (wxDialog *) ptr; | |
5615 | dest = (wxObject *) src; | |
5616 | return (void *) dest; | |
5617 | } | |
5618 | ||
8ab979d7 | 5619 | #define new_wxDialog(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (new wxDialog(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6)) |
efc5f224 | 5620 | static PyObject *_wrap_new_wxDialog(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
5621 | PyObject * _resultobj; |
5622 | wxDialog * _result; | |
5623 | wxWindow * _arg0; | |
5624 | wxWindowID _arg1; | |
5625 | wxString * _arg2; | |
e508a2b6 RD |
5626 | wxPoint * _arg3 = (wxPoint *) &wxDefaultPosition; |
5627 | wxSize * _arg4 = (wxSize *) &wxDefaultSize; | |
1d99702e RD |
5628 | long _arg5 = (long ) wxDEFAULT_DIALOG_STYLE; |
5629 | char * _arg6 = (char *) "dialogBox"; | |
5630 | PyObject * _argo0 = 0; | |
8ab979d7 | 5631 | PyObject * _obj2 = 0; |
2f90df85 RD |
5632 | wxPoint temp; |
5633 | PyObject * _obj3 = 0; | |
5634 | wxSize temp0; | |
5635 | PyObject * _obj4 = 0; | |
efc5f224 | 5636 | char *_kwnames[] = { "parent","id","title","pos","size","style","name", NULL }; |
8ab979d7 RD |
5637 | char _ptemp[128]; |
5638 | ||
5639 | self = self; | |
2f90df85 | 5640 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO|OOls:new_wxDialog",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_obj4,&_arg5,&_arg6)) |
8ab979d7 | 5641 | return NULL; |
1d99702e RD |
5642 | if (_argo0) { |
5643 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5644 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
5645 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxDialog. Expected _wxWindow_p."); |
5646 | return NULL; | |
5647 | } | |
5648 | } | |
5649 | { | |
185d7c3e RD |
5650 | #if PYTHON_API_VERSION >= 1009 |
5651 | char* tmpPtr; int tmpSize; | |
5652 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 5653 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
5654 | return NULL; |
5655 | } | |
5656 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
5657 | return NULL; | |
5658 | _arg2 = new wxString(tmpPtr, tmpSize); | |
5659 | #else | |
8ab979d7 RD |
5660 | if (!PyString_Check(_obj2)) { |
5661 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5662 | return NULL; | |
5663 | } | |
185d7c3e RD |
5664 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
5665 | #endif | |
8ab979d7 | 5666 | } |
2f90df85 RD |
5667 | if (_obj3) |
5668 | { | |
5669 | _arg3 = &temp; | |
5670 | if (! wxPoint_helper(_obj3, &_arg3)) | |
8ab979d7 | 5671 | return NULL; |
2f90df85 RD |
5672 | } |
5673 | if (_obj4) | |
5674 | { | |
5675 | _arg4 = &temp0; | |
5676 | if (! wxSize_helper(_obj4, &_arg4)) | |
8ab979d7 | 5677 | return NULL; |
2f90df85 | 5678 | } |
cf694132 RD |
5679 | { |
5680 | wxPy_BEGIN_ALLOW_THREADS; | |
5681 | _result = (wxDialog *)new_wxDialog(_arg0,_arg1,*_arg2,*_arg3,*_arg4,_arg5,_arg6); | |
5682 | ||
5683 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5684 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
5685 | } if (_result) { |
5686 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxDialog_p"); | |
5687 | _resultobj = Py_BuildValue("s",_ptemp); | |
5688 | } else { | |
5689 | Py_INCREF(Py_None); | |
5690 | _resultobj = Py_None; | |
5691 | } | |
8ab979d7 RD |
5692 | { |
5693 | if (_obj2) | |
5694 | delete _arg2; | |
5695 | } | |
5696 | return _resultobj; | |
5697 | } | |
5698 | ||
5699 | #define wxDialog_Centre(_swigobj,_swigarg0) (_swigobj->Centre(_swigarg0)) | |
efc5f224 | 5700 | static PyObject *_wrap_wxDialog_Centre(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
5701 | PyObject * _resultobj; |
5702 | wxDialog * _arg0; | |
1d99702e RD |
5703 | int _arg1 = (int ) wxBOTH; |
5704 | PyObject * _argo0 = 0; | |
efc5f224 | 5705 | char *_kwnames[] = { "self","direction", NULL }; |
8ab979d7 RD |
5706 | |
5707 | self = self; | |
efc5f224 | 5708 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxDialog_Centre",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 5709 | return NULL; |
1d99702e RD |
5710 | if (_argo0) { |
5711 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5712 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDialog_p")) { | |
8ab979d7 RD |
5713 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_Centre. Expected _wxDialog_p."); |
5714 | return NULL; | |
5715 | } | |
5716 | } | |
cf694132 RD |
5717 | { |
5718 | wxPy_BEGIN_ALLOW_THREADS; | |
5719 | wxDialog_Centre(_arg0,_arg1); | |
5720 | ||
5721 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5722 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5723 | } Py_INCREF(Py_None); |
8ab979d7 RD |
5724 | _resultobj = Py_None; |
5725 | return _resultobj; | |
5726 | } | |
5727 | ||
5728 | #define wxDialog_EndModal(_swigobj,_swigarg0) (_swigobj->EndModal(_swigarg0)) | |
efc5f224 | 5729 | static PyObject *_wrap_wxDialog_EndModal(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
5730 | PyObject * _resultobj; |
5731 | wxDialog * _arg0; | |
5732 | int _arg1; | |
1d99702e | 5733 | PyObject * _argo0 = 0; |
efc5f224 | 5734 | char *_kwnames[] = { "self","retCode", NULL }; |
8ab979d7 RD |
5735 | |
5736 | self = self; | |
efc5f224 | 5737 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxDialog_EndModal",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 5738 | return NULL; |
1d99702e RD |
5739 | if (_argo0) { |
5740 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5741 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDialog_p")) { | |
8ab979d7 RD |
5742 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_EndModal. Expected _wxDialog_p."); |
5743 | return NULL; | |
5744 | } | |
5745 | } | |
cf694132 RD |
5746 | { |
5747 | wxPy_BEGIN_ALLOW_THREADS; | |
5748 | wxDialog_EndModal(_arg0,_arg1); | |
5749 | ||
5750 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5751 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5752 | } Py_INCREF(Py_None); |
8ab979d7 RD |
5753 | _resultobj = Py_None; |
5754 | return _resultobj; | |
5755 | } | |
5756 | ||
5757 | #define wxDialog_GetTitle(_swigobj) (_swigobj->GetTitle()) | |
efc5f224 | 5758 | static PyObject *_wrap_wxDialog_GetTitle(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
5759 | PyObject * _resultobj; |
5760 | wxString * _result; | |
5761 | wxDialog * _arg0; | |
1d99702e | 5762 | PyObject * _argo0 = 0; |
efc5f224 | 5763 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
5764 | |
5765 | self = self; | |
efc5f224 | 5766 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxDialog_GetTitle",_kwnames,&_argo0)) |
8ab979d7 | 5767 | return NULL; |
1d99702e RD |
5768 | if (_argo0) { |
5769 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5770 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDialog_p")) { | |
8ab979d7 RD |
5771 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_GetTitle. Expected _wxDialog_p."); |
5772 | return NULL; | |
5773 | } | |
5774 | } | |
8ab979d7 | 5775 | { |
cf694132 RD |
5776 | wxPy_BEGIN_ALLOW_THREADS; |
5777 | _result = new wxString (wxDialog_GetTitle(_arg0)); | |
5778 | ||
5779 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5780 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5781 | }{ |
eec92d76 | 5782 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
5783 | } |
5784 | { | |
5785 | delete _result; | |
5786 | } | |
5787 | return _resultobj; | |
5788 | } | |
5789 | ||
5790 | #define wxDialog_Iconize(_swigobj,_swigarg0) (_swigobj->Iconize(_swigarg0)) | |
efc5f224 | 5791 | static PyObject *_wrap_wxDialog_Iconize(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
5792 | PyObject * _resultobj; |
5793 | wxDialog * _arg0; | |
5794 | bool _arg1; | |
1d99702e | 5795 | PyObject * _argo0 = 0; |
8ab979d7 | 5796 | int tempbool1; |
efc5f224 | 5797 | char *_kwnames[] = { "self","iconize", NULL }; |
8ab979d7 RD |
5798 | |
5799 | self = self; | |
efc5f224 | 5800 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxDialog_Iconize",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 5801 | return NULL; |
1d99702e RD |
5802 | if (_argo0) { |
5803 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5804 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDialog_p")) { | |
8ab979d7 RD |
5805 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_Iconize. Expected _wxDialog_p."); |
5806 | return NULL; | |
5807 | } | |
5808 | } | |
5809 | _arg1 = (bool ) tempbool1; | |
cf694132 RD |
5810 | { |
5811 | wxPy_BEGIN_ALLOW_THREADS; | |
5812 | wxDialog_Iconize(_arg0,_arg1); | |
5813 | ||
5814 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5815 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5816 | } Py_INCREF(Py_None); |
8ab979d7 RD |
5817 | _resultobj = Py_None; |
5818 | return _resultobj; | |
5819 | } | |
5820 | ||
5821 | #define wxDialog_IsIconized(_swigobj) (_swigobj->IsIconized()) | |
efc5f224 | 5822 | static PyObject *_wrap_wxDialog_IsIconized(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
5823 | PyObject * _resultobj; |
5824 | bool _result; | |
5825 | wxDialog * _arg0; | |
1d99702e | 5826 | PyObject * _argo0 = 0; |
efc5f224 | 5827 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
5828 | |
5829 | self = self; | |
efc5f224 | 5830 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxDialog_IsIconized",_kwnames,&_argo0)) |
8ab979d7 | 5831 | return NULL; |
1d99702e RD |
5832 | if (_argo0) { |
5833 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5834 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDialog_p")) { | |
8ab979d7 RD |
5835 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_IsIconized. Expected _wxDialog_p."); |
5836 | return NULL; | |
5837 | } | |
5838 | } | |
cf694132 RD |
5839 | { |
5840 | wxPy_BEGIN_ALLOW_THREADS; | |
5841 | _result = (bool )wxDialog_IsIconized(_arg0); | |
5842 | ||
5843 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5844 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5845 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
5846 | return _resultobj; |
5847 | } | |
5848 | ||
5849 | #define wxDialog_SetModal(_swigobj,_swigarg0) (_swigobj->SetModal(_swigarg0)) | |
efc5f224 | 5850 | static PyObject *_wrap_wxDialog_SetModal(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
5851 | PyObject * _resultobj; |
5852 | wxDialog * _arg0; | |
5853 | bool _arg1; | |
1d99702e | 5854 | PyObject * _argo0 = 0; |
8ab979d7 | 5855 | int tempbool1; |
efc5f224 | 5856 | char *_kwnames[] = { "self","flag", NULL }; |
8ab979d7 RD |
5857 | |
5858 | self = self; | |
efc5f224 | 5859 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxDialog_SetModal",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 5860 | return NULL; |
1d99702e RD |
5861 | if (_argo0) { |
5862 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5863 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDialog_p")) { | |
8ab979d7 RD |
5864 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_SetModal. Expected _wxDialog_p."); |
5865 | return NULL; | |
5866 | } | |
5867 | } | |
5868 | _arg1 = (bool ) tempbool1; | |
cf694132 RD |
5869 | { |
5870 | wxPy_BEGIN_ALLOW_THREADS; | |
5871 | wxDialog_SetModal(_arg0,_arg1); | |
5872 | ||
5873 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5874 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5875 | } Py_INCREF(Py_None); |
8ab979d7 RD |
5876 | _resultobj = Py_None; |
5877 | return _resultobj; | |
5878 | } | |
5879 | ||
5880 | #define wxDialog_IsModal(_swigobj) (_swigobj->IsModal()) | |
efc5f224 | 5881 | static PyObject *_wrap_wxDialog_IsModal(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
5882 | PyObject * _resultobj; |
5883 | bool _result; | |
5884 | wxDialog * _arg0; | |
1d99702e | 5885 | PyObject * _argo0 = 0; |
efc5f224 | 5886 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
5887 | |
5888 | self = self; | |
efc5f224 | 5889 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxDialog_IsModal",_kwnames,&_argo0)) |
8ab979d7 | 5890 | return NULL; |
1d99702e RD |
5891 | if (_argo0) { |
5892 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5893 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDialog_p")) { | |
8ab979d7 RD |
5894 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_IsModal. Expected _wxDialog_p."); |
5895 | return NULL; | |
5896 | } | |
5897 | } | |
cf694132 RD |
5898 | { |
5899 | wxPy_BEGIN_ALLOW_THREADS; | |
5900 | _result = (bool )wxDialog_IsModal(_arg0); | |
5901 | ||
5902 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5903 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5904 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
5905 | return _resultobj; |
5906 | } | |
5907 | ||
5908 | #define wxDialog_SetTitle(_swigobj,_swigarg0) (_swigobj->SetTitle(_swigarg0)) | |
efc5f224 | 5909 | static PyObject *_wrap_wxDialog_SetTitle(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
5910 | PyObject * _resultobj; |
5911 | wxDialog * _arg0; | |
5912 | wxString * _arg1; | |
1d99702e | 5913 | PyObject * _argo0 = 0; |
8ab979d7 | 5914 | PyObject * _obj1 = 0; |
efc5f224 | 5915 | char *_kwnames[] = { "self","title", NULL }; |
8ab979d7 RD |
5916 | |
5917 | self = self; | |
efc5f224 | 5918 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxDialog_SetTitle",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 5919 | return NULL; |
1d99702e RD |
5920 | if (_argo0) { |
5921 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5922 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDialog_p")) { | |
8ab979d7 RD |
5923 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_SetTitle. Expected _wxDialog_p."); |
5924 | return NULL; | |
5925 | } | |
5926 | } | |
5927 | { | |
185d7c3e RD |
5928 | #if PYTHON_API_VERSION >= 1009 |
5929 | char* tmpPtr; int tmpSize; | |
5930 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 5931 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
5932 | return NULL; |
5933 | } | |
5934 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
5935 | return NULL; | |
5936 | _arg1 = new wxString(tmpPtr, tmpSize); | |
5937 | #else | |
8ab979d7 RD |
5938 | if (!PyString_Check(_obj1)) { |
5939 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5940 | return NULL; | |
5941 | } | |
185d7c3e RD |
5942 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
5943 | #endif | |
8ab979d7 | 5944 | } |
cf694132 RD |
5945 | { |
5946 | wxPy_BEGIN_ALLOW_THREADS; | |
5947 | wxDialog_SetTitle(_arg0,*_arg1); | |
5948 | ||
5949 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5950 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5951 | } Py_INCREF(Py_None); |
8ab979d7 RD |
5952 | _resultobj = Py_None; |
5953 | { | |
5954 | if (_obj1) | |
5955 | delete _arg1; | |
5956 | } | |
5957 | return _resultobj; | |
5958 | } | |
5959 | ||
5960 | #define wxDialog_Show(_swigobj,_swigarg0) (_swigobj->Show(_swigarg0)) | |
efc5f224 | 5961 | static PyObject *_wrap_wxDialog_Show(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
5962 | PyObject * _resultobj; |
5963 | bool _result; | |
5964 | wxDialog * _arg0; | |
5965 | bool _arg1; | |
1d99702e | 5966 | PyObject * _argo0 = 0; |
8ab979d7 | 5967 | int tempbool1; |
efc5f224 | 5968 | char *_kwnames[] = { "self","show", NULL }; |
8ab979d7 RD |
5969 | |
5970 | self = self; | |
efc5f224 | 5971 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxDialog_Show",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 5972 | return NULL; |
1d99702e RD |
5973 | if (_argo0) { |
5974 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5975 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDialog_p")) { | |
8ab979d7 RD |
5976 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_Show. Expected _wxDialog_p."); |
5977 | return NULL; | |
5978 | } | |
5979 | } | |
5980 | _arg1 = (bool ) tempbool1; | |
cf694132 RD |
5981 | { |
5982 | wxPy_BEGIN_ALLOW_THREADS; | |
5983 | _result = (bool )wxDialog_Show(_arg0,_arg1); | |
5984 | ||
5985 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 5986 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5987 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
5988 | return _resultobj; |
5989 | } | |
5990 | ||
5991 | #define wxDialog_ShowModal(_swigobj) (_swigobj->ShowModal()) | |
efc5f224 | 5992 | static PyObject *_wrap_wxDialog_ShowModal(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
5993 | PyObject * _resultobj; |
5994 | int _result; | |
5995 | wxDialog * _arg0; | |
1d99702e | 5996 | PyObject * _argo0 = 0; |
efc5f224 | 5997 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
5998 | |
5999 | self = self; | |
efc5f224 | 6000 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxDialog_ShowModal",_kwnames,&_argo0)) |
8ab979d7 | 6001 | return NULL; |
1d99702e RD |
6002 | if (_argo0) { |
6003 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6004 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDialog_p")) { | |
8ab979d7 RD |
6005 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_ShowModal. Expected _wxDialog_p."); |
6006 | return NULL; | |
6007 | } | |
6008 | } | |
cf694132 RD |
6009 | { |
6010 | wxPy_BEGIN_ALLOW_THREADS; | |
6011 | _result = (int )wxDialog_ShowModal(_arg0); | |
6012 | ||
6013 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6014 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6015 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
6016 | return _resultobj; |
6017 | } | |
6018 | ||
bb0054cd | 6019 | #define wxDialog_GetReturnCode(_swigobj) (_swigobj->GetReturnCode()) |
efc5f224 | 6020 | static PyObject *_wrap_wxDialog_GetReturnCode(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
6021 | PyObject * _resultobj; |
6022 | int _result; | |
6023 | wxDialog * _arg0; | |
1d99702e | 6024 | PyObject * _argo0 = 0; |
efc5f224 | 6025 | char *_kwnames[] = { "self", NULL }; |
bb0054cd RD |
6026 | |
6027 | self = self; | |
efc5f224 | 6028 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxDialog_GetReturnCode",_kwnames,&_argo0)) |
bb0054cd | 6029 | return NULL; |
1d99702e RD |
6030 | if (_argo0) { |
6031 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6032 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDialog_p")) { | |
bb0054cd RD |
6033 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_GetReturnCode. Expected _wxDialog_p."); |
6034 | return NULL; | |
6035 | } | |
6036 | } | |
6037 | { | |
6038 | wxPy_BEGIN_ALLOW_THREADS; | |
6039 | _result = (int )wxDialog_GetReturnCode(_arg0); | |
6040 | ||
6041 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6042 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
6043 | } _resultobj = Py_BuildValue("i",_result); |
6044 | return _resultobj; | |
6045 | } | |
6046 | ||
6047 | #define wxDialog_SetReturnCode(_swigobj,_swigarg0) (_swigobj->SetReturnCode(_swigarg0)) | |
efc5f224 | 6048 | static PyObject *_wrap_wxDialog_SetReturnCode(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
6049 | PyObject * _resultobj; |
6050 | wxDialog * _arg0; | |
6051 | int _arg1; | |
1d99702e | 6052 | PyObject * _argo0 = 0; |
efc5f224 | 6053 | char *_kwnames[] = { "self","retCode", NULL }; |
bb0054cd RD |
6054 | |
6055 | self = self; | |
efc5f224 | 6056 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxDialog_SetReturnCode",_kwnames,&_argo0,&_arg1)) |
bb0054cd | 6057 | return NULL; |
1d99702e RD |
6058 | if (_argo0) { |
6059 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6060 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDialog_p")) { | |
bb0054cd RD |
6061 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_SetReturnCode. Expected _wxDialog_p."); |
6062 | return NULL; | |
6063 | } | |
6064 | } | |
6065 | { | |
6066 | wxPy_BEGIN_ALLOW_THREADS; | |
6067 | wxDialog_SetReturnCode(_arg0,_arg1); | |
6068 | ||
6069 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6070 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
6071 | } Py_INCREF(Py_None); |
6072 | _resultobj = Py_None; | |
6073 | return _resultobj; | |
6074 | } | |
6075 | ||
f3d9dc1d RD |
6076 | #define wxDialog_CreateTextSizer(_swigobj,_swigarg0) (_swigobj->CreateTextSizer(_swigarg0)) |
6077 | static PyObject *_wrap_wxDialog_CreateTextSizer(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6078 | PyObject * _resultobj; | |
6079 | wxSizer * _result; | |
6080 | wxDialog * _arg0; | |
6081 | wxString * _arg1; | |
6082 | PyObject * _argo0 = 0; | |
6083 | PyObject * _obj1 = 0; | |
6084 | char *_kwnames[] = { "self","message", NULL }; | |
f3d9dc1d RD |
6085 | |
6086 | self = self; | |
6087 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxDialog_CreateTextSizer",_kwnames,&_argo0,&_obj1)) | |
6088 | return NULL; | |
6089 | if (_argo0) { | |
6090 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6091 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDialog_p")) { | |
6092 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_CreateTextSizer. Expected _wxDialog_p."); | |
6093 | return NULL; | |
6094 | } | |
6095 | } | |
6096 | { | |
6097 | #if PYTHON_API_VERSION >= 1009 | |
6098 | char* tmpPtr; int tmpSize; | |
6099 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 6100 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
f3d9dc1d RD |
6101 | return NULL; |
6102 | } | |
6103 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
6104 | return NULL; | |
6105 | _arg1 = new wxString(tmpPtr, tmpSize); | |
6106 | #else | |
6107 | if (!PyString_Check(_obj1)) { | |
6108 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
6109 | return NULL; | |
6110 | } | |
6111 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); | |
6112 | #endif | |
6113 | } | |
6114 | { | |
6115 | wxPy_BEGIN_ALLOW_THREADS; | |
6116 | _result = (wxSizer *)wxDialog_CreateTextSizer(_arg0,*_arg1); | |
6117 | ||
6118 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6119 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 6120 | }{ _resultobj = wxPyMake_wxObject(_result); } |
f3d9dc1d RD |
6121 | { |
6122 | if (_obj1) | |
6123 | delete _arg1; | |
6124 | } | |
6125 | return _resultobj; | |
6126 | } | |
6127 | ||
6128 | #define wxDialog_CreateButtonSizer(_swigobj,_swigarg0) (_swigobj->CreateButtonSizer(_swigarg0)) | |
6129 | static PyObject *_wrap_wxDialog_CreateButtonSizer(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6130 | PyObject * _resultobj; | |
6131 | wxSizer * _result; | |
6132 | wxDialog * _arg0; | |
6133 | long _arg1; | |
6134 | PyObject * _argo0 = 0; | |
6135 | char *_kwnames[] = { "self","flags", NULL }; | |
f3d9dc1d RD |
6136 | |
6137 | self = self; | |
6138 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxDialog_CreateButtonSizer",_kwnames,&_argo0,&_arg1)) | |
6139 | return NULL; | |
6140 | if (_argo0) { | |
6141 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6142 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDialog_p")) { | |
6143 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_CreateButtonSizer. Expected _wxDialog_p."); | |
6144 | return NULL; | |
6145 | } | |
6146 | } | |
6147 | { | |
6148 | wxPy_BEGIN_ALLOW_THREADS; | |
6149 | _result = (wxSizer *)wxDialog_CreateButtonSizer(_arg0,_arg1); | |
6150 | ||
6151 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6152 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 6153 | }{ _resultobj = wxPyMake_wxObject(_result); } |
f3d9dc1d RD |
6154 | return _resultobj; |
6155 | } | |
6156 | ||
bb0054cd RD |
6157 | static void *SwigwxScrolledWindowTowxPanel(void *ptr) { |
6158 | wxScrolledWindow *src; | |
6159 | wxPanel *dest; | |
6160 | src = (wxScrolledWindow *) ptr; | |
6161 | dest = (wxPanel *) src; | |
6162 | return (void *) dest; | |
6163 | } | |
6164 | ||
8ab979d7 RD |
6165 | static void *SwigwxScrolledWindowTowxWindow(void *ptr) { |
6166 | wxScrolledWindow *src; | |
6167 | wxWindow *dest; | |
6168 | src = (wxScrolledWindow *) ptr; | |
6169 | dest = (wxWindow *) src; | |
6170 | return (void *) dest; | |
6171 | } | |
6172 | ||
6173 | static void *SwigwxScrolledWindowTowxEvtHandler(void *ptr) { | |
6174 | wxScrolledWindow *src; | |
6175 | wxEvtHandler *dest; | |
6176 | src = (wxScrolledWindow *) ptr; | |
6177 | dest = (wxEvtHandler *) src; | |
6178 | return (void *) dest; | |
6179 | } | |
6180 | ||
9416aa89 RD |
6181 | static void *SwigwxScrolledWindowTowxObject(void *ptr) { |
6182 | wxScrolledWindow *src; | |
6183 | wxObject *dest; | |
6184 | src = (wxScrolledWindow *) ptr; | |
6185 | dest = (wxObject *) src; | |
6186 | return (void *) dest; | |
6187 | } | |
6188 | ||
8ab979d7 | 6189 | #define new_wxScrolledWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (new wxScrolledWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) |
efc5f224 | 6190 | static PyObject *_wrap_new_wxScrolledWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6191 | PyObject * _resultobj; |
6192 | wxScrolledWindow * _result; | |
6193 | wxWindow * _arg0; | |
1d99702e | 6194 | wxWindowID _arg1 = (wxWindowID ) -1; |
e508a2b6 RD |
6195 | wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition; |
6196 | wxSize * _arg3 = (wxSize *) &wxDefaultSize; | |
1d99702e RD |
6197 | long _arg4 = (long ) wxHSCROLL|wxVSCROLL; |
6198 | char * _arg5 = (char *) "scrolledWindow"; | |
6199 | PyObject * _argo0 = 0; | |
2f90df85 RD |
6200 | wxPoint temp; |
6201 | PyObject * _obj2 = 0; | |
6202 | wxSize temp0; | |
6203 | PyObject * _obj3 = 0; | |
efc5f224 | 6204 | char *_kwnames[] = { "parent","id","pos","size","style","name", NULL }; |
8ab979d7 RD |
6205 | char _ptemp[128]; |
6206 | ||
6207 | self = self; | |
2f90df85 | 6208 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iOOls:new_wxScrolledWindow",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4,&_arg5)) |
8ab979d7 | 6209 | return NULL; |
1d99702e RD |
6210 | if (_argo0) { |
6211 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6212 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
6213 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxScrolledWindow. Expected _wxWindow_p."); |
6214 | return NULL; | |
6215 | } | |
6216 | } | |
2f90df85 RD |
6217 | if (_obj2) |
6218 | { | |
6219 | _arg2 = &temp; | |
6220 | if (! wxPoint_helper(_obj2, &_arg2)) | |
8ab979d7 | 6221 | return NULL; |
2f90df85 RD |
6222 | } |
6223 | if (_obj3) | |
6224 | { | |
6225 | _arg3 = &temp0; | |
6226 | if (! wxSize_helper(_obj3, &_arg3)) | |
8ab979d7 | 6227 | return NULL; |
2f90df85 | 6228 | } |
cf694132 RD |
6229 | { |
6230 | wxPy_BEGIN_ALLOW_THREADS; | |
6231 | _result = (wxScrolledWindow *)new_wxScrolledWindow(_arg0,_arg1,*_arg2,*_arg3,_arg4,_arg5); | |
6232 | ||
6233 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6234 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
6235 | } if (_result) { |
6236 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxScrolledWindow_p"); | |
6237 | _resultobj = Py_BuildValue("s",_ptemp); | |
6238 | } else { | |
6239 | Py_INCREF(Py_None); | |
6240 | _resultobj = Py_None; | |
6241 | } | |
8ab979d7 RD |
6242 | return _resultobj; |
6243 | } | |
6244 | ||
6245 | #define wxScrolledWindow_EnableScrolling(_swigobj,_swigarg0,_swigarg1) (_swigobj->EnableScrolling(_swigarg0,_swigarg1)) | |
efc5f224 | 6246 | static PyObject *_wrap_wxScrolledWindow_EnableScrolling(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6247 | PyObject * _resultobj; |
6248 | wxScrolledWindow * _arg0; | |
6249 | bool _arg1; | |
6250 | bool _arg2; | |
1d99702e | 6251 | PyObject * _argo0 = 0; |
8ab979d7 RD |
6252 | int tempbool1; |
6253 | int tempbool2; | |
efc5f224 | 6254 | char *_kwnames[] = { "self","xScrolling","yScrolling", NULL }; |
8ab979d7 RD |
6255 | |
6256 | self = self; | |
efc5f224 | 6257 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxScrolledWindow_EnableScrolling",_kwnames,&_argo0,&tempbool1,&tempbool2)) |
8ab979d7 | 6258 | return NULL; |
1d99702e RD |
6259 | if (_argo0) { |
6260 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6261 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
8ab979d7 RD |
6262 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_EnableScrolling. Expected _wxScrolledWindow_p."); |
6263 | return NULL; | |
6264 | } | |
6265 | } | |
6266 | _arg1 = (bool ) tempbool1; | |
6267 | _arg2 = (bool ) tempbool2; | |
cf694132 RD |
6268 | { |
6269 | wxPy_BEGIN_ALLOW_THREADS; | |
6270 | wxScrolledWindow_EnableScrolling(_arg0,_arg1,_arg2); | |
6271 | ||
6272 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6273 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6274 | } Py_INCREF(Py_None); |
8ab979d7 RD |
6275 | _resultobj = Py_None; |
6276 | return _resultobj; | |
6277 | } | |
6278 | ||
b7e72427 RD |
6279 | #define wxScrolledWindow_GetScrollPageSize(_swigobj,_swigarg0) (_swigobj->GetScrollPageSize(_swigarg0)) |
6280 | static PyObject *_wrap_wxScrolledWindow_GetScrollPageSize(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6281 | PyObject * _resultobj; | |
6282 | int _result; | |
6283 | wxScrolledWindow * _arg0; | |
6284 | int _arg1; | |
6285 | PyObject * _argo0 = 0; | |
6286 | char *_kwnames[] = { "self","orient", NULL }; | |
6287 | ||
6288 | self = self; | |
6289 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxScrolledWindow_GetScrollPageSize",_kwnames,&_argo0,&_arg1)) | |
6290 | return NULL; | |
6291 | if (_argo0) { | |
6292 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6293 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6294 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetScrollPageSize. Expected _wxScrolledWindow_p."); | |
6295 | return NULL; | |
6296 | } | |
6297 | } | |
6298 | { | |
6299 | wxPy_BEGIN_ALLOW_THREADS; | |
6300 | _result = (int )wxScrolledWindow_GetScrollPageSize(_arg0,_arg1); | |
6301 | ||
6302 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6303 | if (PyErr_Occurred()) return NULL; |
b7e72427 RD |
6304 | } _resultobj = Py_BuildValue("i",_result); |
6305 | return _resultobj; | |
6306 | } | |
6307 | ||
8ab979d7 | 6308 | #define wxScrolledWindow_GetScrollPixelsPerUnit(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetScrollPixelsPerUnit(_swigarg0,_swigarg1)) |
efc5f224 | 6309 | static PyObject *_wrap_wxScrolledWindow_GetScrollPixelsPerUnit(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6310 | PyObject * _resultobj; |
6311 | wxScrolledWindow * _arg0; | |
6312 | int * _arg1; | |
6313 | int temp; | |
6314 | int * _arg2; | |
6315 | int temp0; | |
1d99702e | 6316 | PyObject * _argo0 = 0; |
efc5f224 | 6317 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
6318 | |
6319 | self = self; | |
6320 | { | |
6321 | _arg1 = &temp; | |
6322 | } | |
6323 | { | |
6324 | _arg2 = &temp0; | |
6325 | } | |
efc5f224 | 6326 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_GetScrollPixelsPerUnit",_kwnames,&_argo0)) |
8ab979d7 | 6327 | return NULL; |
1d99702e RD |
6328 | if (_argo0) { |
6329 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6330 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
8ab979d7 RD |
6331 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetScrollPixelsPerUnit. Expected _wxScrolledWindow_p."); |
6332 | return NULL; | |
6333 | } | |
6334 | } | |
cf694132 RD |
6335 | { |
6336 | wxPy_BEGIN_ALLOW_THREADS; | |
6337 | wxScrolledWindow_GetScrollPixelsPerUnit(_arg0,_arg1,_arg2); | |
6338 | ||
6339 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6340 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6341 | } Py_INCREF(Py_None); |
8ab979d7 RD |
6342 | _resultobj = Py_None; |
6343 | { | |
6344 | PyObject *o; | |
6345 | o = PyInt_FromLong((long) (*_arg1)); | |
6346 | _resultobj = t_output_helper(_resultobj, o); | |
6347 | } | |
6348 | { | |
6349 | PyObject *o; | |
6350 | o = PyInt_FromLong((long) (*_arg2)); | |
6351 | _resultobj = t_output_helper(_resultobj, o); | |
6352 | } | |
6353 | return _resultobj; | |
6354 | } | |
6355 | ||
b7e72427 RD |
6356 | #define wxScrolledWindow_GetTargetWindow(_swigobj) (_swigobj->GetTargetWindow()) |
6357 | static PyObject *_wrap_wxScrolledWindow_GetTargetWindow(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6358 | PyObject * _resultobj; | |
6359 | wxWindow * _result; | |
6360 | wxScrolledWindow * _arg0; | |
6361 | PyObject * _argo0 = 0; | |
6362 | char *_kwnames[] = { "self", NULL }; | |
b7e72427 RD |
6363 | |
6364 | self = self; | |
6365 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_GetTargetWindow",_kwnames,&_argo0)) | |
6366 | return NULL; | |
6367 | if (_argo0) { | |
6368 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6369 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6370 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetTargetWindow. Expected _wxScrolledWindow_p."); | |
6371 | return NULL; | |
6372 | } | |
6373 | } | |
6374 | { | |
6375 | wxPy_BEGIN_ALLOW_THREADS; | |
6376 | _result = (wxWindow *)wxScrolledWindow_GetTargetWindow(_arg0); | |
6377 | ||
6378 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6379 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 6380 | }{ _resultobj = wxPyMake_wxObject(_result); } |
b7e72427 RD |
6381 | return _resultobj; |
6382 | } | |
6383 | ||
8ab979d7 | 6384 | #define wxScrolledWindow_GetVirtualSize(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetVirtualSize(_swigarg0,_swigarg1)) |
efc5f224 | 6385 | static PyObject *_wrap_wxScrolledWindow_GetVirtualSize(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6386 | PyObject * _resultobj; |
6387 | wxScrolledWindow * _arg0; | |
6388 | int * _arg1; | |
6389 | int temp; | |
6390 | int * _arg2; | |
6391 | int temp0; | |
1d99702e | 6392 | PyObject * _argo0 = 0; |
efc5f224 | 6393 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
6394 | |
6395 | self = self; | |
6396 | { | |
6397 | _arg1 = &temp; | |
6398 | } | |
6399 | { | |
6400 | _arg2 = &temp0; | |
6401 | } | |
efc5f224 | 6402 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_GetVirtualSize",_kwnames,&_argo0)) |
8ab979d7 | 6403 | return NULL; |
1d99702e RD |
6404 | if (_argo0) { |
6405 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6406 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
8ab979d7 RD |
6407 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetVirtualSize. Expected _wxScrolledWindow_p."); |
6408 | return NULL; | |
6409 | } | |
6410 | } | |
cf694132 RD |
6411 | { |
6412 | wxPy_BEGIN_ALLOW_THREADS; | |
6413 | wxScrolledWindow_GetVirtualSize(_arg0,_arg1,_arg2); | |
6414 | ||
6415 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6416 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6417 | } Py_INCREF(Py_None); |
8ab979d7 RD |
6418 | _resultobj = Py_None; |
6419 | { | |
6420 | PyObject *o; | |
6421 | o = PyInt_FromLong((long) (*_arg1)); | |
6422 | _resultobj = t_output_helper(_resultobj, o); | |
6423 | } | |
6424 | { | |
6425 | PyObject *o; | |
6426 | o = PyInt_FromLong((long) (*_arg2)); | |
6427 | _resultobj = t_output_helper(_resultobj, o); | |
6428 | } | |
6429 | return _resultobj; | |
6430 | } | |
6431 | ||
6432 | #define wxScrolledWindow_IsRetained(_swigobj) (_swigobj->IsRetained()) | |
efc5f224 | 6433 | static PyObject *_wrap_wxScrolledWindow_IsRetained(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6434 | PyObject * _resultobj; |
6435 | bool _result; | |
6436 | wxScrolledWindow * _arg0; | |
1d99702e | 6437 | PyObject * _argo0 = 0; |
efc5f224 | 6438 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
6439 | |
6440 | self = self; | |
efc5f224 | 6441 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_IsRetained",_kwnames,&_argo0)) |
8ab979d7 | 6442 | return NULL; |
1d99702e RD |
6443 | if (_argo0) { |
6444 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6445 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
8ab979d7 RD |
6446 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_IsRetained. Expected _wxScrolledWindow_p."); |
6447 | return NULL; | |
6448 | } | |
6449 | } | |
cf694132 RD |
6450 | { |
6451 | wxPy_BEGIN_ALLOW_THREADS; | |
6452 | _result = (bool )wxScrolledWindow_IsRetained(_arg0); | |
6453 | ||
6454 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6455 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6456 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
6457 | return _resultobj; |
6458 | } | |
6459 | ||
6460 | #define wxScrolledWindow_PrepareDC(_swigobj,_swigarg0) (_swigobj->PrepareDC(_swigarg0)) | |
efc5f224 | 6461 | static PyObject *_wrap_wxScrolledWindow_PrepareDC(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6462 | PyObject * _resultobj; |
6463 | wxScrolledWindow * _arg0; | |
6464 | wxDC * _arg1; | |
1d99702e RD |
6465 | PyObject * _argo0 = 0; |
6466 | PyObject * _argo1 = 0; | |
efc5f224 | 6467 | char *_kwnames[] = { "self","dc", NULL }; |
8ab979d7 RD |
6468 | |
6469 | self = self; | |
efc5f224 | 6470 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxScrolledWindow_PrepareDC",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 6471 | return NULL; |
1d99702e RD |
6472 | if (_argo0) { |
6473 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6474 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
8ab979d7 RD |
6475 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_PrepareDC. Expected _wxScrolledWindow_p."); |
6476 | return NULL; | |
6477 | } | |
6478 | } | |
1d99702e RD |
6479 | if (_argo1) { |
6480 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6481 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxDC_p")) { | |
8ab979d7 RD |
6482 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxScrolledWindow_PrepareDC. Expected _wxDC_p."); |
6483 | return NULL; | |
6484 | } | |
6485 | } | |
cf694132 RD |
6486 | { |
6487 | wxPy_BEGIN_ALLOW_THREADS; | |
6488 | wxScrolledWindow_PrepareDC(_arg0,*_arg1); | |
6489 | ||
6490 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6491 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6492 | } Py_INCREF(Py_None); |
8ab979d7 RD |
6493 | _resultobj = Py_None; |
6494 | return _resultobj; | |
6495 | } | |
6496 | ||
6497 | #define wxScrolledWindow_Scroll(_swigobj,_swigarg0,_swigarg1) (_swigobj->Scroll(_swigarg0,_swigarg1)) | |
efc5f224 | 6498 | static PyObject *_wrap_wxScrolledWindow_Scroll(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6499 | PyObject * _resultobj; |
6500 | wxScrolledWindow * _arg0; | |
6501 | int _arg1; | |
6502 | int _arg2; | |
1d99702e | 6503 | PyObject * _argo0 = 0; |
efc5f224 | 6504 | char *_kwnames[] = { "self","x","y", NULL }; |
8ab979d7 RD |
6505 | |
6506 | self = self; | |
efc5f224 | 6507 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxScrolledWindow_Scroll",_kwnames,&_argo0,&_arg1,&_arg2)) |
8ab979d7 | 6508 | return NULL; |
1d99702e RD |
6509 | if (_argo0) { |
6510 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6511 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
8ab979d7 RD |
6512 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_Scroll. Expected _wxScrolledWindow_p."); |
6513 | return NULL; | |
6514 | } | |
6515 | } | |
cf694132 RD |
6516 | { |
6517 | wxPy_BEGIN_ALLOW_THREADS; | |
6518 | wxScrolledWindow_Scroll(_arg0,_arg1,_arg2); | |
6519 | ||
6520 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6521 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6522 | } Py_INCREF(Py_None); |
8ab979d7 RD |
6523 | _resultobj = Py_None; |
6524 | return _resultobj; | |
6525 | } | |
6526 | ||
f6bcfd97 | 6527 | #define wxScrolledWindow_SetScrollbars(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (_swigobj->SetScrollbars(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6)) |
efc5f224 | 6528 | static PyObject *_wrap_wxScrolledWindow_SetScrollbars(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6529 | PyObject * _resultobj; |
6530 | wxScrolledWindow * _arg0; | |
6531 | int _arg1; | |
6532 | int _arg2; | |
6533 | int _arg3; | |
6534 | int _arg4; | |
1d99702e RD |
6535 | int _arg5 = (int ) 0; |
6536 | int _arg6 = (int ) 0; | |
f6bcfd97 | 6537 | int _arg7 = (int ) FALSE; |
1d99702e | 6538 | PyObject * _argo0 = 0; |
f6bcfd97 | 6539 | char *_kwnames[] = { "self","pixelsPerUnitX","pixelsPerUnitY","noUnitsX","noUnitsY","xPos","yPos","noRefresh", NULL }; |
8ab979d7 RD |
6540 | |
6541 | self = self; | |
f6bcfd97 | 6542 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oiiii|iii:wxScrolledWindow_SetScrollbars",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_arg4,&_arg5,&_arg6,&_arg7)) |
8ab979d7 | 6543 | return NULL; |
1d99702e RD |
6544 | if (_argo0) { |
6545 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6546 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
8ab979d7 RD |
6547 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_SetScrollbars. Expected _wxScrolledWindow_p."); |
6548 | return NULL; | |
6549 | } | |
6550 | } | |
cf694132 RD |
6551 | { |
6552 | wxPy_BEGIN_ALLOW_THREADS; | |
f6bcfd97 | 6553 | wxScrolledWindow_SetScrollbars(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5,_arg6,_arg7); |
cf694132 RD |
6554 | |
6555 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6556 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6557 | } Py_INCREF(Py_None); |
8ab979d7 RD |
6558 | _resultobj = Py_None; |
6559 | return _resultobj; | |
6560 | } | |
6561 | ||
b7e72427 RD |
6562 | #define wxScrolledWindow_SetScrollPageSize(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetScrollPageSize(_swigarg0,_swigarg1)) |
6563 | static PyObject *_wrap_wxScrolledWindow_SetScrollPageSize(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6564 | PyObject * _resultobj; | |
6565 | wxScrolledWindow * _arg0; | |
6566 | int _arg1; | |
6567 | int _arg2; | |
6568 | PyObject * _argo0 = 0; | |
6569 | char *_kwnames[] = { "self","orient","pageSize", NULL }; | |
6570 | ||
6571 | self = self; | |
6572 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxScrolledWindow_SetScrollPageSize",_kwnames,&_argo0,&_arg1,&_arg2)) | |
6573 | return NULL; | |
6574 | if (_argo0) { | |
6575 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6576 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6577 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_SetScrollPageSize. Expected _wxScrolledWindow_p."); | |
6578 | return NULL; | |
6579 | } | |
6580 | } | |
6581 | { | |
6582 | wxPy_BEGIN_ALLOW_THREADS; | |
6583 | wxScrolledWindow_SetScrollPageSize(_arg0,_arg1,_arg2); | |
6584 | ||
6585 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6586 | if (PyErr_Occurred()) return NULL; |
b7e72427 RD |
6587 | } Py_INCREF(Py_None); |
6588 | _resultobj = Py_None; | |
6589 | return _resultobj; | |
6590 | } | |
6591 | ||
eb715945 RD |
6592 | #define wxScrolledWindow_SetTargetWindow(_swigobj,_swigarg0) (_swigobj->SetTargetWindow(_swigarg0)) |
6593 | static PyObject *_wrap_wxScrolledWindow_SetTargetWindow(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6594 | PyObject * _resultobj; | |
6595 | wxScrolledWindow * _arg0; | |
6596 | wxWindow * _arg1; | |
6597 | PyObject * _argo0 = 0; | |
6598 | PyObject * _argo1 = 0; | |
6599 | char *_kwnames[] = { "self","window", NULL }; | |
6600 | ||
6601 | self = self; | |
6602 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxScrolledWindow_SetTargetWindow",_kwnames,&_argo0,&_argo1)) | |
6603 | return NULL; | |
6604 | if (_argo0) { | |
6605 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6606 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6607 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_SetTargetWindow. Expected _wxScrolledWindow_p."); | |
6608 | return NULL; | |
6609 | } | |
6610 | } | |
6611 | if (_argo1) { | |
6612 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6613 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
6614 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxScrolledWindow_SetTargetWindow. Expected _wxWindow_p."); | |
6615 | return NULL; | |
6616 | } | |
6617 | } | |
6618 | { | |
6619 | wxPy_BEGIN_ALLOW_THREADS; | |
6620 | wxScrolledWindow_SetTargetWindow(_arg0,_arg1); | |
6621 | ||
6622 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6623 | if (PyErr_Occurred()) return NULL; |
eb715945 RD |
6624 | } Py_INCREF(Py_None); |
6625 | _resultobj = Py_None; | |
6626 | return _resultobj; | |
6627 | } | |
6628 | ||
4c9993c3 RD |
6629 | #define wxScrolledWindow_GetViewStart(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetViewStart(_swigarg0,_swigarg1)) |
6630 | static PyObject *_wrap_wxScrolledWindow_GetViewStart(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6631 | PyObject * _resultobj; | |
6632 | wxScrolledWindow * _arg0; | |
6633 | int * _arg1; | |
6634 | int temp; | |
6635 | int * _arg2; | |
6636 | int temp0; | |
6637 | PyObject * _argo0 = 0; | |
6638 | char *_kwnames[] = { "self", NULL }; | |
6639 | ||
6640 | self = self; | |
6641 | { | |
6642 | _arg1 = &temp; | |
6643 | } | |
6644 | { | |
6645 | _arg2 = &temp0; | |
6646 | } | |
6647 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_GetViewStart",_kwnames,&_argo0)) | |
6648 | return NULL; | |
6649 | if (_argo0) { | |
6650 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6651 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6652 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetViewStart. Expected _wxScrolledWindow_p."); | |
6653 | return NULL; | |
6654 | } | |
6655 | } | |
6656 | { | |
6657 | wxPy_BEGIN_ALLOW_THREADS; | |
6658 | wxScrolledWindow_GetViewStart(_arg0,_arg1,_arg2); | |
6659 | ||
6660 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6661 | if (PyErr_Occurred()) return NULL; |
4c9993c3 RD |
6662 | } Py_INCREF(Py_None); |
6663 | _resultobj = Py_None; | |
6664 | { | |
6665 | PyObject *o; | |
6666 | o = PyInt_FromLong((long) (*_arg1)); | |
6667 | _resultobj = t_output_helper(_resultobj, o); | |
6668 | } | |
6669 | { | |
6670 | PyObject *o; | |
6671 | o = PyInt_FromLong((long) (*_arg2)); | |
6672 | _resultobj = t_output_helper(_resultobj, o); | |
6673 | } | |
6674 | return _resultobj; | |
6675 | } | |
6676 | ||
9d8bd15f RD |
6677 | #define wxScrolledWindow_CalcScrolledPosition(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->CalcScrolledPosition(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) |
6678 | static PyObject *_wrap_wxScrolledWindow_CalcScrolledPosition(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6679 | PyObject * _resultobj; | |
6680 | wxScrolledWindow * _arg0; | |
6681 | int _arg1; | |
6682 | int _arg2; | |
6683 | int * _arg3; | |
6684 | int temp; | |
6685 | int * _arg4; | |
6686 | int temp0; | |
6687 | PyObject * _argo0 = 0; | |
6688 | char *_kwnames[] = { "self","x","y", NULL }; | |
6689 | ||
6690 | self = self; | |
6691 | { | |
6692 | _arg3 = &temp; | |
6693 | } | |
6694 | { | |
6695 | _arg4 = &temp0; | |
6696 | } | |
6697 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxScrolledWindow_CalcScrolledPosition",_kwnames,&_argo0,&_arg1,&_arg2)) | |
6698 | return NULL; | |
6699 | if (_argo0) { | |
6700 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6701 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6702 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_CalcScrolledPosition. Expected _wxScrolledWindow_p."); | |
6703 | return NULL; | |
6704 | } | |
6705 | } | |
6706 | { | |
6707 | wxPy_BEGIN_ALLOW_THREADS; | |
6708 | wxScrolledWindow_CalcScrolledPosition(_arg0,_arg1,_arg2,_arg3,_arg4); | |
6709 | ||
6710 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6711 | if (PyErr_Occurred()) return NULL; |
9d8bd15f RD |
6712 | } Py_INCREF(Py_None); |
6713 | _resultobj = Py_None; | |
6714 | { | |
6715 | PyObject *o; | |
6716 | o = PyInt_FromLong((long) (*_arg3)); | |
6717 | _resultobj = t_output_helper(_resultobj, o); | |
6718 | } | |
6719 | { | |
6720 | PyObject *o; | |
6721 | o = PyInt_FromLong((long) (*_arg4)); | |
6722 | _resultobj = t_output_helper(_resultobj, o); | |
6723 | } | |
6724 | return _resultobj; | |
6725 | } | |
6726 | ||
6727 | #define wxScrolledWindow_CalcUnscrolledPosition(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->CalcUnscrolledPosition(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) | |
6728 | static PyObject *_wrap_wxScrolledWindow_CalcUnscrolledPosition(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6729 | PyObject * _resultobj; | |
6730 | wxScrolledWindow * _arg0; | |
6731 | int _arg1; | |
6732 | int _arg2; | |
6733 | int * _arg3; | |
6734 | int temp; | |
6735 | int * _arg4; | |
6736 | int temp0; | |
6737 | PyObject * _argo0 = 0; | |
6738 | char *_kwnames[] = { "self","x","y", NULL }; | |
6739 | ||
6740 | self = self; | |
6741 | { | |
6742 | _arg3 = &temp; | |
6743 | } | |
6744 | { | |
6745 | _arg4 = &temp0; | |
6746 | } | |
6747 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxScrolledWindow_CalcUnscrolledPosition",_kwnames,&_argo0,&_arg1,&_arg2)) | |
6748 | return NULL; | |
6749 | if (_argo0) { | |
6750 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6751 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6752 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_CalcUnscrolledPosition. Expected _wxScrolledWindow_p."); | |
6753 | return NULL; | |
6754 | } | |
6755 | } | |
6756 | { | |
6757 | wxPy_BEGIN_ALLOW_THREADS; | |
6758 | wxScrolledWindow_CalcUnscrolledPosition(_arg0,_arg1,_arg2,_arg3,_arg4); | |
6759 | ||
6760 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6761 | if (PyErr_Occurred()) return NULL; |
9d8bd15f RD |
6762 | } Py_INCREF(Py_None); |
6763 | _resultobj = Py_None; | |
6764 | { | |
6765 | PyObject *o; | |
6766 | o = PyInt_FromLong((long) (*_arg3)); | |
6767 | _resultobj = t_output_helper(_resultobj, o); | |
6768 | } | |
6769 | { | |
6770 | PyObject *o; | |
6771 | o = PyInt_FromLong((long) (*_arg4)); | |
6772 | _resultobj = t_output_helper(_resultobj, o); | |
6773 | } | |
6774 | return _resultobj; | |
6775 | } | |
6776 | ||
d1679124 RD |
6777 | #define wxScrolledWindow_SetScale(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetScale(_swigarg0,_swigarg1)) |
6778 | static PyObject *_wrap_wxScrolledWindow_SetScale(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6779 | PyObject * _resultobj; | |
6780 | wxScrolledWindow * _arg0; | |
6781 | double _arg1; | |
6782 | double _arg2; | |
6783 | PyObject * _argo0 = 0; | |
6784 | char *_kwnames[] = { "self","xs","ys", NULL }; | |
6785 | ||
6786 | self = self; | |
6787 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Odd:wxScrolledWindow_SetScale",_kwnames,&_argo0,&_arg1,&_arg2)) | |
6788 | return NULL; | |
6789 | if (_argo0) { | |
6790 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6791 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6792 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_SetScale. Expected _wxScrolledWindow_p."); | |
6793 | return NULL; | |
6794 | } | |
6795 | } | |
6796 | { | |
6797 | wxPy_BEGIN_ALLOW_THREADS; | |
6798 | wxScrolledWindow_SetScale(_arg0,_arg1,_arg2); | |
6799 | ||
6800 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6801 | if (PyErr_Occurred()) return NULL; |
d1679124 RD |
6802 | } Py_INCREF(Py_None); |
6803 | _resultobj = Py_None; | |
6804 | return _resultobj; | |
6805 | } | |
6806 | ||
6807 | #define wxScrolledWindow_GetScaleX(_swigobj) (_swigobj->GetScaleX()) | |
6808 | static PyObject *_wrap_wxScrolledWindow_GetScaleX(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6809 | PyObject * _resultobj; | |
6810 | double _result; | |
6811 | wxScrolledWindow * _arg0; | |
6812 | PyObject * _argo0 = 0; | |
6813 | char *_kwnames[] = { "self", NULL }; | |
6814 | ||
6815 | self = self; | |
6816 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_GetScaleX",_kwnames,&_argo0)) | |
6817 | return NULL; | |
6818 | if (_argo0) { | |
6819 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6820 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6821 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetScaleX. Expected _wxScrolledWindow_p."); | |
6822 | return NULL; | |
6823 | } | |
6824 | } | |
6825 | { | |
6826 | wxPy_BEGIN_ALLOW_THREADS; | |
6827 | _result = (double )wxScrolledWindow_GetScaleX(_arg0); | |
6828 | ||
6829 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6830 | if (PyErr_Occurred()) return NULL; |
d1679124 RD |
6831 | } _resultobj = Py_BuildValue("d",_result); |
6832 | return _resultobj; | |
6833 | } | |
6834 | ||
6835 | #define wxScrolledWindow_GetScaleY(_swigobj) (_swigobj->GetScaleY()) | |
6836 | static PyObject *_wrap_wxScrolledWindow_GetScaleY(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6837 | PyObject * _resultobj; | |
6838 | double _result; | |
6839 | wxScrolledWindow * _arg0; | |
6840 | PyObject * _argo0 = 0; | |
6841 | char *_kwnames[] = { "self", NULL }; | |
6842 | ||
6843 | self = self; | |
6844 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_GetScaleY",_kwnames,&_argo0)) | |
6845 | return NULL; | |
6846 | if (_argo0) { | |
6847 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6848 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6849 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetScaleY. Expected _wxScrolledWindow_p."); | |
6850 | return NULL; | |
6851 | } | |
6852 | } | |
6853 | { | |
6854 | wxPy_BEGIN_ALLOW_THREADS; | |
6855 | _result = (double )wxScrolledWindow_GetScaleY(_arg0); | |
6856 | ||
6857 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6858 | if (PyErr_Occurred()) return NULL; |
d1679124 RD |
6859 | } _resultobj = Py_BuildValue("d",_result); |
6860 | return _resultobj; | |
6861 | } | |
6862 | ||
6863 | #define wxScrolledWindow_AdjustScrollbars(_swigobj) (_swigobj->AdjustScrollbars()) | |
6864 | static PyObject *_wrap_wxScrolledWindow_AdjustScrollbars(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6865 | PyObject * _resultobj; | |
6866 | wxScrolledWindow * _arg0; | |
6867 | PyObject * _argo0 = 0; | |
6868 | char *_kwnames[] = { "self", NULL }; | |
6869 | ||
6870 | self = self; | |
6871 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_AdjustScrollbars",_kwnames,&_argo0)) | |
6872 | return NULL; | |
6873 | if (_argo0) { | |
6874 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6875 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6876 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_AdjustScrollbars. Expected _wxScrolledWindow_p."); | |
6877 | return NULL; | |
6878 | } | |
6879 | } | |
6880 | { | |
6881 | wxPy_BEGIN_ALLOW_THREADS; | |
6882 | wxScrolledWindow_AdjustScrollbars(_arg0); | |
6883 | ||
6884 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6885 | if (PyErr_Occurred()) return NULL; |
d1679124 RD |
6886 | } Py_INCREF(Py_None); |
6887 | _resultobj = Py_None; | |
6888 | return _resultobj; | |
6889 | } | |
6890 | ||
8ab979d7 RD |
6891 | static void *SwigwxMenuTowxEvtHandler(void *ptr) { |
6892 | wxMenu *src; | |
6893 | wxEvtHandler *dest; | |
6894 | src = (wxMenu *) ptr; | |
6895 | dest = (wxEvtHandler *) src; | |
6896 | return (void *) dest; | |
6897 | } | |
6898 | ||
9416aa89 RD |
6899 | static void *SwigwxMenuTowxObject(void *ptr) { |
6900 | wxMenu *src; | |
6901 | wxObject *dest; | |
6902 | src = (wxMenu *) ptr; | |
6903 | dest = (wxObject *) src; | |
6904 | return (void *) dest; | |
6905 | } | |
6906 | ||
8bf5d46e | 6907 | #define new_wxMenu(_swigarg0,_swigarg1) (new wxMenu(_swigarg0,_swigarg1)) |
efc5f224 | 6908 | static PyObject *_wrap_new_wxMenu(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6909 | PyObject * _resultobj; |
6910 | wxMenu * _result; | |
1d99702e RD |
6911 | wxString * _arg0 = (wxString *) &wxPyEmptyStr; |
6912 | long _arg1 = (long ) 0; | |
8ab979d7 | 6913 | PyObject * _obj0 = 0; |
efc5f224 | 6914 | char *_kwnames[] = { "title","style", NULL }; |
8ab979d7 RD |
6915 | char _ptemp[128]; |
6916 | ||
6917 | self = self; | |
efc5f224 | 6918 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|Ol:new_wxMenu",_kwnames,&_obj0,&_arg1)) |
8ab979d7 RD |
6919 | return NULL; |
6920 | if (_obj0) | |
6921 | { | |
185d7c3e RD |
6922 | #if PYTHON_API_VERSION >= 1009 |
6923 | char* tmpPtr; int tmpSize; | |
6924 | if (!PyString_Check(_obj0) && !PyUnicode_Check(_obj0)) { | |
794c5cb1 | 6925 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
6926 | return NULL; |
6927 | } | |
6928 | if (PyString_AsStringAndSize(_obj0, &tmpPtr, &tmpSize) == -1) | |
6929 | return NULL; | |
6930 | _arg0 = new wxString(tmpPtr, tmpSize); | |
6931 | #else | |
8ab979d7 RD |
6932 | if (!PyString_Check(_obj0)) { |
6933 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
6934 | return NULL; | |
6935 | } | |
185d7c3e RD |
6936 | _arg0 = new wxString(PyString_AS_STRING(_obj0), PyString_GET_SIZE(_obj0)); |
6937 | #endif | |
8ab979d7 | 6938 | } |
cf694132 RD |
6939 | { |
6940 | wxPy_BEGIN_ALLOW_THREADS; | |
8bf5d46e | 6941 | _result = (wxMenu *)new_wxMenu(*_arg0,_arg1); |
cf694132 RD |
6942 | |
6943 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 6944 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
6945 | } if (_result) { |
6946 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxMenu_p"); | |
6947 | _resultobj = Py_BuildValue("s",_ptemp); | |
6948 | } else { | |
6949 | Py_INCREF(Py_None); | |
6950 | _resultobj = Py_None; | |
6951 | } | |
8ab979d7 RD |
6952 | { |
6953 | if (_obj0) | |
6954 | delete _arg0; | |
6955 | } | |
6956 | return _resultobj; | |
6957 | } | |
6958 | ||
6959 | #define wxMenu_Append(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->Append(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) | |
efc5f224 | 6960 | static PyObject *_wrap_wxMenu_Append(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6961 | PyObject * _resultobj; |
6962 | wxMenu * _arg0; | |
6963 | int _arg1; | |
6964 | wxString * _arg2; | |
1d99702e | 6965 | wxString * _arg3 = (wxString *) &wxPyEmptyStr; |
926bb76c | 6966 | int _arg4 = (int ) FALSE; |
1d99702e | 6967 | PyObject * _argo0 = 0; |
8ab979d7 RD |
6968 | PyObject * _obj2 = 0; |
6969 | PyObject * _obj3 = 0; | |
efc5f224 | 6970 | char *_kwnames[] = { "self","id","item","helpString","checkable", NULL }; |
8ab979d7 RD |
6971 | |
6972 | self = self; | |
926bb76c | 6973 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO|Oi:wxMenu_Append",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4)) |
8ab979d7 | 6974 | return NULL; |
1d99702e RD |
6975 | if (_argo0) { |
6976 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6977 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
6978 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Append. Expected _wxMenu_p."); |
6979 | return NULL; | |
6980 | } | |
6981 | } | |
6982 | { | |
185d7c3e RD |
6983 | #if PYTHON_API_VERSION >= 1009 |
6984 | char* tmpPtr; int tmpSize; | |
6985 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 6986 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
6987 | return NULL; |
6988 | } | |
6989 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
6990 | return NULL; | |
6991 | _arg2 = new wxString(tmpPtr, tmpSize); | |
6992 | #else | |
8ab979d7 RD |
6993 | if (!PyString_Check(_obj2)) { |
6994 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
6995 | return NULL; | |
6996 | } | |
185d7c3e RD |
6997 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
6998 | #endif | |
8ab979d7 RD |
6999 | } |
7000 | if (_obj3) | |
7001 | { | |
185d7c3e RD |
7002 | #if PYTHON_API_VERSION >= 1009 |
7003 | char* tmpPtr; int tmpSize; | |
7004 | if (!PyString_Check(_obj3) && !PyUnicode_Check(_obj3)) { | |
794c5cb1 | 7005 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7006 | return NULL; |
7007 | } | |
7008 | if (PyString_AsStringAndSize(_obj3, &tmpPtr, &tmpSize) == -1) | |
7009 | return NULL; | |
7010 | _arg3 = new wxString(tmpPtr, tmpSize); | |
7011 | #else | |
8ab979d7 RD |
7012 | if (!PyString_Check(_obj3)) { |
7013 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7014 | return NULL; | |
7015 | } | |
185d7c3e RD |
7016 | _arg3 = new wxString(PyString_AS_STRING(_obj3), PyString_GET_SIZE(_obj3)); |
7017 | #endif | |
8ab979d7 | 7018 | } |
cf694132 RD |
7019 | { |
7020 | wxPy_BEGIN_ALLOW_THREADS; | |
7021 | wxMenu_Append(_arg0,_arg1,*_arg2,*_arg3,_arg4); | |
7022 | ||
7023 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7024 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7025 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7026 | _resultobj = Py_None; |
7027 | { | |
7028 | if (_obj2) | |
7029 | delete _arg2; | |
7030 | } | |
7031 | { | |
7032 | if (_obj3) | |
7033 | delete _arg3; | |
7034 | } | |
7035 | return _resultobj; | |
7036 | } | |
7037 | ||
7038 | #define wxMenu_AppendMenu(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->Append(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) | |
efc5f224 | 7039 | static PyObject *_wrap_wxMenu_AppendMenu(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7040 | PyObject * _resultobj; |
7041 | wxMenu * _arg0; | |
7042 | int _arg1; | |
7043 | wxString * _arg2; | |
7044 | wxMenu * _arg3; | |
1d99702e RD |
7045 | wxString * _arg4 = (wxString *) &wxPyEmptyStr; |
7046 | PyObject * _argo0 = 0; | |
8ab979d7 | 7047 | PyObject * _obj2 = 0; |
1d99702e | 7048 | PyObject * _argo3 = 0; |
8ab979d7 | 7049 | PyObject * _obj4 = 0; |
efc5f224 | 7050 | char *_kwnames[] = { "self","id","item","subMenu","helpString", NULL }; |
8ab979d7 RD |
7051 | |
7052 | self = self; | |
efc5f224 | 7053 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiOO|O:wxMenu_AppendMenu",_kwnames,&_argo0,&_arg1,&_obj2,&_argo3,&_obj4)) |
8ab979d7 | 7054 | return NULL; |
1d99702e RD |
7055 | if (_argo0) { |
7056 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7057 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7058 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_AppendMenu. Expected _wxMenu_p."); |
7059 | return NULL; | |
7060 | } | |
7061 | } | |
7062 | { | |
185d7c3e RD |
7063 | #if PYTHON_API_VERSION >= 1009 |
7064 | char* tmpPtr; int tmpSize; | |
7065 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 7066 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7067 | return NULL; |
7068 | } | |
7069 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
7070 | return NULL; | |
7071 | _arg2 = new wxString(tmpPtr, tmpSize); | |
7072 | #else | |
8ab979d7 RD |
7073 | if (!PyString_Check(_obj2)) { |
7074 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7075 | return NULL; | |
7076 | } | |
185d7c3e RD |
7077 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
7078 | #endif | |
8ab979d7 | 7079 | } |
1d99702e RD |
7080 | if (_argo3) { |
7081 | if (_argo3 == Py_None) { _arg3 = NULL; } | |
7082 | else if (SWIG_GetPtrObj(_argo3,(void **) &_arg3,"_wxMenu_p")) { | |
8ab979d7 RD |
7083 | PyErr_SetString(PyExc_TypeError,"Type error in argument 4 of wxMenu_AppendMenu. Expected _wxMenu_p."); |
7084 | return NULL; | |
7085 | } | |
7086 | } | |
7087 | if (_obj4) | |
7088 | { | |
185d7c3e RD |
7089 | #if PYTHON_API_VERSION >= 1009 |
7090 | char* tmpPtr; int tmpSize; | |
7091 | if (!PyString_Check(_obj4) && !PyUnicode_Check(_obj4)) { | |
794c5cb1 | 7092 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7093 | return NULL; |
7094 | } | |
7095 | if (PyString_AsStringAndSize(_obj4, &tmpPtr, &tmpSize) == -1) | |
7096 | return NULL; | |
7097 | _arg4 = new wxString(tmpPtr, tmpSize); | |
7098 | #else | |
8ab979d7 RD |
7099 | if (!PyString_Check(_obj4)) { |
7100 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7101 | return NULL; | |
7102 | } | |
185d7c3e RD |
7103 | _arg4 = new wxString(PyString_AS_STRING(_obj4), PyString_GET_SIZE(_obj4)); |
7104 | #endif | |
8ab979d7 | 7105 | } |
cf694132 RD |
7106 | { |
7107 | wxPy_BEGIN_ALLOW_THREADS; | |
7108 | wxMenu_AppendMenu(_arg0,_arg1,*_arg2,_arg3,*_arg4); | |
7109 | ||
7110 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7111 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7112 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7113 | _resultobj = Py_None; |
7114 | { | |
7115 | if (_obj2) | |
7116 | delete _arg2; | |
7117 | } | |
7118 | { | |
7119 | if (_obj4) | |
7120 | delete _arg4; | |
7121 | } | |
7122 | return _resultobj; | |
7123 | } | |
7124 | ||
af309447 | 7125 | #define wxMenu_AppendItem(_swigobj,_swigarg0) (_swigobj->Append(_swigarg0)) |
efc5f224 | 7126 | static PyObject *_wrap_wxMenu_AppendItem(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
7127 | PyObject * _resultobj; |
7128 | wxMenu * _arg0; | |
7129 | wxMenuItem * _arg1; | |
1d99702e RD |
7130 | PyObject * _argo0 = 0; |
7131 | PyObject * _argo1 = 0; | |
efc5f224 | 7132 | char *_kwnames[] = { "self","item", NULL }; |
af309447 RD |
7133 | |
7134 | self = self; | |
efc5f224 | 7135 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_AppendItem",_kwnames,&_argo0,&_argo1)) |
af309447 | 7136 | return NULL; |
1d99702e RD |
7137 | if (_argo0) { |
7138 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7139 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
af309447 RD |
7140 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_AppendItem. Expected _wxMenu_p."); |
7141 | return NULL; | |
7142 | } | |
7143 | } | |
1d99702e RD |
7144 | if (_argo1) { |
7145 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7146 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenuItem_p")) { | |
af309447 RD |
7147 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_AppendItem. Expected _wxMenuItem_p."); |
7148 | return NULL; | |
7149 | } | |
7150 | } | |
cf694132 RD |
7151 | { |
7152 | wxPy_BEGIN_ALLOW_THREADS; | |
7153 | wxMenu_AppendItem(_arg0,_arg1); | |
7154 | ||
7155 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7156 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7157 | } Py_INCREF(Py_None); |
af309447 RD |
7158 | _resultobj = Py_None; |
7159 | return _resultobj; | |
7160 | } | |
7161 | ||
8ab979d7 | 7162 | #define wxMenu_AppendSeparator(_swigobj) (_swigobj->AppendSeparator()) |
efc5f224 | 7163 | static PyObject *_wrap_wxMenu_AppendSeparator(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7164 | PyObject * _resultobj; |
7165 | wxMenu * _arg0; | |
1d99702e | 7166 | PyObject * _argo0 = 0; |
efc5f224 | 7167 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
7168 | |
7169 | self = self; | |
efc5f224 | 7170 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_AppendSeparator",_kwnames,&_argo0)) |
8ab979d7 | 7171 | return NULL; |
1d99702e RD |
7172 | if (_argo0) { |
7173 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7174 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7175 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_AppendSeparator. Expected _wxMenu_p."); |
7176 | return NULL; | |
7177 | } | |
7178 | } | |
cf694132 RD |
7179 | { |
7180 | wxPy_BEGIN_ALLOW_THREADS; | |
7181 | wxMenu_AppendSeparator(_arg0); | |
7182 | ||
7183 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7184 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7185 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7186 | _resultobj = Py_None; |
7187 | return _resultobj; | |
7188 | } | |
7189 | ||
7190 | #define wxMenu_Break(_swigobj) (_swigobj->Break()) | |
efc5f224 | 7191 | static PyObject *_wrap_wxMenu_Break(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7192 | PyObject * _resultobj; |
7193 | wxMenu * _arg0; | |
1d99702e | 7194 | PyObject * _argo0 = 0; |
efc5f224 | 7195 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
7196 | |
7197 | self = self; | |
efc5f224 | 7198 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_Break",_kwnames,&_argo0)) |
8ab979d7 | 7199 | return NULL; |
1d99702e RD |
7200 | if (_argo0) { |
7201 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7202 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7203 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Break. Expected _wxMenu_p."); |
7204 | return NULL; | |
7205 | } | |
7206 | } | |
cf694132 RD |
7207 | { |
7208 | wxPy_BEGIN_ALLOW_THREADS; | |
7209 | wxMenu_Break(_arg0); | |
7210 | ||
7211 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7212 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7213 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7214 | _resultobj = Py_None; |
7215 | return _resultobj; | |
7216 | } | |
7217 | ||
7218 | #define wxMenu_Check(_swigobj,_swigarg0,_swigarg1) (_swigobj->Check(_swigarg0,_swigarg1)) | |
efc5f224 | 7219 | static PyObject *_wrap_wxMenu_Check(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7220 | PyObject * _resultobj; |
7221 | wxMenu * _arg0; | |
7222 | int _arg1; | |
7223 | bool _arg2; | |
1d99702e | 7224 | PyObject * _argo0 = 0; |
8ab979d7 | 7225 | int tempbool2; |
efc5f224 | 7226 | char *_kwnames[] = { "self","id","flag", NULL }; |
8ab979d7 RD |
7227 | |
7228 | self = self; | |
efc5f224 | 7229 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxMenu_Check",_kwnames,&_argo0,&_arg1,&tempbool2)) |
8ab979d7 | 7230 | return NULL; |
1d99702e RD |
7231 | if (_argo0) { |
7232 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7233 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7234 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Check. Expected _wxMenu_p."); |
7235 | return NULL; | |
7236 | } | |
7237 | } | |
7238 | _arg2 = (bool ) tempbool2; | |
cf694132 RD |
7239 | { |
7240 | wxPy_BEGIN_ALLOW_THREADS; | |
7241 | wxMenu_Check(_arg0,_arg1,_arg2); | |
7242 | ||
7243 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7244 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7245 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7246 | _resultobj = Py_None; |
7247 | return _resultobj; | |
7248 | } | |
7249 | ||
b1462dfa RD |
7250 | #define wxMenu_IsChecked(_swigobj,_swigarg0) (_swigobj->IsChecked(_swigarg0)) |
7251 | static PyObject *_wrap_wxMenu_IsChecked(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7252 | PyObject * _resultobj; | |
7253 | bool _result; | |
7254 | wxMenu * _arg0; | |
7255 | int _arg1; | |
7256 | PyObject * _argo0 = 0; | |
7257 | char *_kwnames[] = { "self","id", NULL }; | |
7258 | ||
7259 | self = self; | |
7260 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_IsChecked",_kwnames,&_argo0,&_arg1)) | |
7261 | return NULL; | |
7262 | if (_argo0) { | |
7263 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7264 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
7265 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_IsChecked. Expected _wxMenu_p."); | |
7266 | return NULL; | |
7267 | } | |
7268 | } | |
7269 | { | |
7270 | wxPy_BEGIN_ALLOW_THREADS; | |
7271 | _result = (bool )wxMenu_IsChecked(_arg0,_arg1); | |
7272 | ||
7273 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7274 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
7275 | } _resultobj = Py_BuildValue("i",_result); |
7276 | return _resultobj; | |
7277 | } | |
7278 | ||
8ab979d7 | 7279 | #define wxMenu_Enable(_swigobj,_swigarg0,_swigarg1) (_swigobj->Enable(_swigarg0,_swigarg1)) |
efc5f224 | 7280 | static PyObject *_wrap_wxMenu_Enable(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7281 | PyObject * _resultobj; |
7282 | wxMenu * _arg0; | |
7283 | int _arg1; | |
7284 | bool _arg2; | |
1d99702e | 7285 | PyObject * _argo0 = 0; |
8ab979d7 | 7286 | int tempbool2; |
efc5f224 | 7287 | char *_kwnames[] = { "self","id","enable", NULL }; |
8ab979d7 RD |
7288 | |
7289 | self = self; | |
efc5f224 | 7290 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxMenu_Enable",_kwnames,&_argo0,&_arg1,&tempbool2)) |
8ab979d7 | 7291 | return NULL; |
1d99702e RD |
7292 | if (_argo0) { |
7293 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7294 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7295 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Enable. Expected _wxMenu_p."); |
7296 | return NULL; | |
7297 | } | |
7298 | } | |
7299 | _arg2 = (bool ) tempbool2; | |
cf694132 RD |
7300 | { |
7301 | wxPy_BEGIN_ALLOW_THREADS; | |
7302 | wxMenu_Enable(_arg0,_arg1,_arg2); | |
7303 | ||
7304 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7305 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7306 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7307 | _resultobj = Py_None; |
7308 | return _resultobj; | |
7309 | } | |
7310 | ||
b1462dfa RD |
7311 | #define wxMenu_IsEnabled(_swigobj,_swigarg0) (_swigobj->IsEnabled(_swigarg0)) |
7312 | static PyObject *_wrap_wxMenu_IsEnabled(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7313 | PyObject * _resultobj; | |
7314 | bool _result; | |
7315 | wxMenu * _arg0; | |
7316 | int _arg1; | |
7317 | PyObject * _argo0 = 0; | |
7318 | char *_kwnames[] = { "self","id", NULL }; | |
7319 | ||
7320 | self = self; | |
7321 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_IsEnabled",_kwnames,&_argo0,&_arg1)) | |
7322 | return NULL; | |
7323 | if (_argo0) { | |
7324 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7325 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
7326 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_IsEnabled. Expected _wxMenu_p."); | |
7327 | return NULL; | |
7328 | } | |
7329 | } | |
7330 | { | |
7331 | wxPy_BEGIN_ALLOW_THREADS; | |
7332 | _result = (bool )wxMenu_IsEnabled(_arg0,_arg1); | |
7333 | ||
7334 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7335 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
7336 | } _resultobj = Py_BuildValue("i",_result); |
7337 | return _resultobj; | |
7338 | } | |
7339 | ||
8ab979d7 | 7340 | #define wxMenu_FindItem(_swigobj,_swigarg0) (_swigobj->FindItem(_swigarg0)) |
efc5f224 | 7341 | static PyObject *_wrap_wxMenu_FindItem(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7342 | PyObject * _resultobj; |
7343 | int _result; | |
7344 | wxMenu * _arg0; | |
7345 | wxString * _arg1; | |
1d99702e | 7346 | PyObject * _argo0 = 0; |
8ab979d7 | 7347 | PyObject * _obj1 = 0; |
efc5f224 | 7348 | char *_kwnames[] = { "self","itemString", NULL }; |
8ab979d7 RD |
7349 | |
7350 | self = self; | |
efc5f224 | 7351 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_FindItem",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 7352 | return NULL; |
1d99702e RD |
7353 | if (_argo0) { |
7354 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7355 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7356 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_FindItem. Expected _wxMenu_p."); |
7357 | return NULL; | |
7358 | } | |
7359 | } | |
7360 | { | |
185d7c3e RD |
7361 | #if PYTHON_API_VERSION >= 1009 |
7362 | char* tmpPtr; int tmpSize; | |
7363 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 7364 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7365 | return NULL; |
7366 | } | |
7367 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
7368 | return NULL; | |
7369 | _arg1 = new wxString(tmpPtr, tmpSize); | |
7370 | #else | |
8ab979d7 RD |
7371 | if (!PyString_Check(_obj1)) { |
7372 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7373 | return NULL; | |
7374 | } | |
185d7c3e RD |
7375 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
7376 | #endif | |
8ab979d7 | 7377 | } |
cf694132 RD |
7378 | { |
7379 | wxPy_BEGIN_ALLOW_THREADS; | |
7380 | _result = (int )wxMenu_FindItem(_arg0,*_arg1); | |
7381 | ||
7382 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7383 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7384 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
7385 | { |
7386 | if (_obj1) | |
7387 | delete _arg1; | |
7388 | } | |
7389 | return _resultobj; | |
7390 | } | |
7391 | ||
b1462dfa RD |
7392 | #define wxMenu_FindItemById(_swigobj,_swigarg0) (_swigobj->FindItem(_swigarg0)) |
7393 | static PyObject *_wrap_wxMenu_FindItemById(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7394 | PyObject * _resultobj; | |
7395 | wxMenuItem * _result; | |
7396 | wxMenu * _arg0; | |
7397 | int _arg1; | |
7398 | PyObject * _argo0 = 0; | |
7399 | char *_kwnames[] = { "self","id", NULL }; | |
b1462dfa RD |
7400 | |
7401 | self = self; | |
7402 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_FindItemById",_kwnames,&_argo0,&_arg1)) | |
7403 | return NULL; | |
7404 | if (_argo0) { | |
7405 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7406 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
7407 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_FindItemById. Expected _wxMenu_p."); | |
7408 | return NULL; | |
7409 | } | |
7410 | } | |
7411 | { | |
7412 | wxPy_BEGIN_ALLOW_THREADS; | |
7413 | _result = (wxMenuItem *)wxMenu_FindItemById(_arg0,_arg1); | |
7414 | ||
7415 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7416 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 7417 | }{ _resultobj = wxPyMake_wxObject(_result); } |
b1462dfa RD |
7418 | return _resultobj; |
7419 | } | |
7420 | ||
8ab979d7 | 7421 | #define wxMenu_GetTitle(_swigobj) (_swigobj->GetTitle()) |
efc5f224 | 7422 | static PyObject *_wrap_wxMenu_GetTitle(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7423 | PyObject * _resultobj; |
7424 | wxString * _result; | |
7425 | wxMenu * _arg0; | |
1d99702e | 7426 | PyObject * _argo0 = 0; |
efc5f224 | 7427 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
7428 | |
7429 | self = self; | |
efc5f224 | 7430 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_GetTitle",_kwnames,&_argo0)) |
8ab979d7 | 7431 | return NULL; |
1d99702e RD |
7432 | if (_argo0) { |
7433 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7434 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7435 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetTitle. Expected _wxMenu_p."); |
7436 | return NULL; | |
7437 | } | |
7438 | } | |
8ab979d7 | 7439 | { |
cf694132 RD |
7440 | wxPy_BEGIN_ALLOW_THREADS; |
7441 | _result = new wxString (wxMenu_GetTitle(_arg0)); | |
7442 | ||
7443 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7444 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7445 | }{ |
eec92d76 | 7446 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
7447 | } |
7448 | { | |
7449 | delete _result; | |
7450 | } | |
7451 | return _resultobj; | |
7452 | } | |
7453 | ||
7454 | #define wxMenu_SetTitle(_swigobj,_swigarg0) (_swigobj->SetTitle(_swigarg0)) | |
efc5f224 | 7455 | static PyObject *_wrap_wxMenu_SetTitle(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7456 | PyObject * _resultobj; |
7457 | wxMenu * _arg0; | |
7458 | wxString * _arg1; | |
1d99702e | 7459 | PyObject * _argo0 = 0; |
8ab979d7 | 7460 | PyObject * _obj1 = 0; |
efc5f224 | 7461 | char *_kwnames[] = { "self","title", NULL }; |
8ab979d7 RD |
7462 | |
7463 | self = self; | |
efc5f224 | 7464 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_SetTitle",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 7465 | return NULL; |
1d99702e RD |
7466 | if (_argo0) { |
7467 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7468 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7469 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetTitle. Expected _wxMenu_p."); |
7470 | return NULL; | |
7471 | } | |
7472 | } | |
7473 | { | |
185d7c3e RD |
7474 | #if PYTHON_API_VERSION >= 1009 |
7475 | char* tmpPtr; int tmpSize; | |
7476 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 7477 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7478 | return NULL; |
7479 | } | |
7480 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
7481 | return NULL; | |
7482 | _arg1 = new wxString(tmpPtr, tmpSize); | |
7483 | #else | |
8ab979d7 RD |
7484 | if (!PyString_Check(_obj1)) { |
7485 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7486 | return NULL; | |
7487 | } | |
185d7c3e RD |
7488 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
7489 | #endif | |
8ab979d7 | 7490 | } |
cf694132 RD |
7491 | { |
7492 | wxPy_BEGIN_ALLOW_THREADS; | |
7493 | wxMenu_SetTitle(_arg0,*_arg1); | |
7494 | ||
7495 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7496 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7497 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7498 | _resultobj = Py_None; |
7499 | { | |
7500 | if (_obj1) | |
7501 | delete _arg1; | |
7502 | } | |
7503 | return _resultobj; | |
7504 | } | |
7505 | ||
b1462dfa RD |
7506 | #define wxMenu_GetLabel(_swigobj,_swigarg0) (_swigobj->GetLabel(_swigarg0)) |
7507 | static PyObject *_wrap_wxMenu_GetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 7508 | PyObject * _resultobj; |
b1462dfa | 7509 | wxString * _result; |
8ab979d7 RD |
7510 | wxMenu * _arg0; |
7511 | int _arg1; | |
1d99702e | 7512 | PyObject * _argo0 = 0; |
efc5f224 | 7513 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
7514 | |
7515 | self = self; | |
b1462dfa | 7516 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_GetLabel",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 7517 | return NULL; |
1d99702e RD |
7518 | if (_argo0) { |
7519 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7520 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa | 7521 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetLabel. Expected _wxMenu_p."); |
8ab979d7 RD |
7522 | return NULL; |
7523 | } | |
7524 | } | |
cf694132 RD |
7525 | { |
7526 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 7527 | _result = new wxString (wxMenu_GetLabel(_arg0,_arg1)); |
cf694132 RD |
7528 | |
7529 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7530 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 7531 | }{ |
eec92d76 | 7532 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
b1462dfa RD |
7533 | } |
7534 | { | |
7535 | delete _result; | |
7536 | } | |
8ab979d7 RD |
7537 | return _resultobj; |
7538 | } | |
7539 | ||
b1462dfa RD |
7540 | #define wxMenu_SetLabel(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetLabel(_swigarg0,_swigarg1)) |
7541 | static PyObject *_wrap_wxMenu_SetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 7542 | PyObject * _resultobj; |
8ab979d7 RD |
7543 | wxMenu * _arg0; |
7544 | int _arg1; | |
b1462dfa | 7545 | wxString * _arg2; |
1d99702e | 7546 | PyObject * _argo0 = 0; |
b1462dfa RD |
7547 | PyObject * _obj2 = 0; |
7548 | char *_kwnames[] = { "self","id","label", NULL }; | |
8ab979d7 RD |
7549 | |
7550 | self = self; | |
b1462dfa | 7551 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxMenu_SetLabel",_kwnames,&_argo0,&_arg1,&_obj2)) |
8ab979d7 | 7552 | return NULL; |
1d99702e RD |
7553 | if (_argo0) { |
7554 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7555 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa | 7556 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetLabel. Expected _wxMenu_p."); |
8ab979d7 RD |
7557 | return NULL; |
7558 | } | |
7559 | } | |
b1462dfa | 7560 | { |
185d7c3e RD |
7561 | #if PYTHON_API_VERSION >= 1009 |
7562 | char* tmpPtr; int tmpSize; | |
7563 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 7564 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7565 | return NULL; |
7566 | } | |
7567 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
7568 | return NULL; | |
7569 | _arg2 = new wxString(tmpPtr, tmpSize); | |
7570 | #else | |
b1462dfa RD |
7571 | if (!PyString_Check(_obj2)) { |
7572 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7573 | return NULL; | |
7574 | } | |
185d7c3e RD |
7575 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
7576 | #endif | |
b1462dfa | 7577 | } |
8ab979d7 | 7578 | { |
cf694132 | 7579 | wxPy_BEGIN_ALLOW_THREADS; |
b1462dfa | 7580 | wxMenu_SetLabel(_arg0,_arg1,*_arg2); |
cf694132 RD |
7581 | |
7582 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7583 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
7584 | } Py_INCREF(Py_None); |
7585 | _resultobj = Py_None; | |
8ab979d7 | 7586 | { |
b1462dfa RD |
7587 | if (_obj2) |
7588 | delete _arg2; | |
8ab979d7 RD |
7589 | } |
7590 | return _resultobj; | |
7591 | } | |
7592 | ||
b1462dfa RD |
7593 | #define wxMenu_GetHelpString(_swigobj,_swigarg0) (_swigobj->GetHelpString(_swigarg0)) |
7594 | static PyObject *_wrap_wxMenu_GetHelpString(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 RD |
7595 | PyObject * _resultobj; |
7596 | wxString * _result; | |
7597 | wxMenu * _arg0; | |
7598 | int _arg1; | |
1d99702e | 7599 | PyObject * _argo0 = 0; |
efc5f224 | 7600 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
7601 | |
7602 | self = self; | |
b1462dfa | 7603 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_GetHelpString",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 7604 | return NULL; |
1d99702e RD |
7605 | if (_argo0) { |
7606 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7607 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa | 7608 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetHelpString. Expected _wxMenu_p."); |
8ab979d7 RD |
7609 | return NULL; |
7610 | } | |
7611 | } | |
8ab979d7 | 7612 | { |
cf694132 | 7613 | wxPy_BEGIN_ALLOW_THREADS; |
b1462dfa | 7614 | _result = new wxString (wxMenu_GetHelpString(_arg0,_arg1)); |
cf694132 RD |
7615 | |
7616 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7617 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7618 | }{ |
eec92d76 | 7619 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
7620 | } |
7621 | { | |
7622 | delete _result; | |
7623 | } | |
7624 | return _resultobj; | |
7625 | } | |
7626 | ||
7627 | #define wxMenu_SetHelpString(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetHelpString(_swigarg0,_swigarg1)) | |
efc5f224 | 7628 | static PyObject *_wrap_wxMenu_SetHelpString(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7629 | PyObject * _resultobj; |
7630 | wxMenu * _arg0; | |
7631 | int _arg1; | |
7632 | wxString * _arg2; | |
1d99702e | 7633 | PyObject * _argo0 = 0; |
8ab979d7 | 7634 | PyObject * _obj2 = 0; |
efc5f224 | 7635 | char *_kwnames[] = { "self","id","helpString", NULL }; |
8ab979d7 RD |
7636 | |
7637 | self = self; | |
efc5f224 | 7638 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxMenu_SetHelpString",_kwnames,&_argo0,&_arg1,&_obj2)) |
8ab979d7 | 7639 | return NULL; |
1d99702e RD |
7640 | if (_argo0) { |
7641 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7642 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7643 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetHelpString. Expected _wxMenu_p."); |
7644 | return NULL; | |
7645 | } | |
7646 | } | |
7647 | { | |
185d7c3e RD |
7648 | #if PYTHON_API_VERSION >= 1009 |
7649 | char* tmpPtr; int tmpSize; | |
7650 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 7651 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7652 | return NULL; |
7653 | } | |
7654 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
7655 | return NULL; | |
7656 | _arg2 = new wxString(tmpPtr, tmpSize); | |
7657 | #else | |
8ab979d7 RD |
7658 | if (!PyString_Check(_obj2)) { |
7659 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7660 | return NULL; | |
7661 | } | |
185d7c3e RD |
7662 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
7663 | #endif | |
8ab979d7 | 7664 | } |
cf694132 RD |
7665 | { |
7666 | wxPy_BEGIN_ALLOW_THREADS; | |
7667 | wxMenu_SetHelpString(_arg0,_arg1,*_arg2); | |
7668 | ||
7669 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7670 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7671 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7672 | _resultobj = Py_None; |
7673 | { | |
7674 | if (_obj2) | |
7675 | delete _arg2; | |
7676 | } | |
7677 | return _resultobj; | |
7678 | } | |
7679 | ||
b1462dfa RD |
7680 | #define wxMenu_UpdateUI(_swigobj,_swigarg0) (_swigobj->UpdateUI(_swigarg0)) |
7681 | static PyObject *_wrap_wxMenu_UpdateUI(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 7682 | PyObject * _resultobj; |
8ab979d7 | 7683 | wxMenu * _arg0; |
b1462dfa | 7684 | wxEvtHandler * _arg1 = (wxEvtHandler *) NULL; |
1d99702e | 7685 | PyObject * _argo0 = 0; |
b1462dfa RD |
7686 | PyObject * _argo1 = 0; |
7687 | char *_kwnames[] = { "self","source", NULL }; | |
8ab979d7 RD |
7688 | |
7689 | self = self; | |
b1462dfa | 7690 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|O:wxMenu_UpdateUI",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 7691 | return NULL; |
1d99702e RD |
7692 | if (_argo0) { |
7693 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7694 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa RD |
7695 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_UpdateUI. Expected _wxMenu_p."); |
7696 | return NULL; | |
7697 | } | |
7698 | } | |
7699 | if (_argo1) { | |
7700 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7701 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvtHandler_p")) { | |
7702 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_UpdateUI. Expected _wxEvtHandler_p."); | |
8ab979d7 RD |
7703 | return NULL; |
7704 | } | |
7705 | } | |
cf694132 RD |
7706 | { |
7707 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 7708 | wxMenu_UpdateUI(_arg0,_arg1); |
cf694132 RD |
7709 | |
7710 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7711 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
7712 | } Py_INCREF(Py_None); |
7713 | _resultobj = Py_None; | |
8ab979d7 RD |
7714 | return _resultobj; |
7715 | } | |
7716 | ||
b1462dfa RD |
7717 | #define wxMenu_Delete(_swigobj,_swigarg0) (_swigobj->Delete(_swigarg0)) |
7718 | static PyObject *_wrap_wxMenu_Delete(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 RD |
7719 | PyObject * _resultobj; |
7720 | bool _result; | |
7721 | wxMenu * _arg0; | |
7722 | int _arg1; | |
1d99702e | 7723 | PyObject * _argo0 = 0; |
efc5f224 | 7724 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
7725 | |
7726 | self = self; | |
b1462dfa | 7727 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_Delete",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 7728 | return NULL; |
1d99702e RD |
7729 | if (_argo0) { |
7730 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7731 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa | 7732 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Delete. Expected _wxMenu_p."); |
8ab979d7 RD |
7733 | return NULL; |
7734 | } | |
7735 | } | |
cf694132 RD |
7736 | { |
7737 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 7738 | _result = (bool )wxMenu_Delete(_arg0,_arg1); |
cf694132 RD |
7739 | |
7740 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7741 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7742 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
7743 | return _resultobj; |
7744 | } | |
7745 | ||
b1462dfa RD |
7746 | #define wxMenu_DeleteItem(_swigobj,_swigarg0) (_swigobj->Delete(_swigarg0)) |
7747 | static PyObject *_wrap_wxMenu_DeleteItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 7748 | PyObject * _resultobj; |
b1462dfa | 7749 | bool _result; |
8ab979d7 | 7750 | wxMenu * _arg0; |
b1462dfa | 7751 | wxMenuItem * _arg1; |
1d99702e | 7752 | PyObject * _argo0 = 0; |
b1462dfa RD |
7753 | PyObject * _argo1 = 0; |
7754 | char *_kwnames[] = { "self","item", NULL }; | |
8ab979d7 RD |
7755 | |
7756 | self = self; | |
b1462dfa | 7757 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_DeleteItem",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 7758 | return NULL; |
1d99702e RD |
7759 | if (_argo0) { |
7760 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7761 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa | 7762 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_DeleteItem. Expected _wxMenu_p."); |
8ab979d7 RD |
7763 | return NULL; |
7764 | } | |
7765 | } | |
b1462dfa RD |
7766 | if (_argo1) { |
7767 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7768 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenuItem_p")) { | |
7769 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_DeleteItem. Expected _wxMenuItem_p."); | |
8ab979d7 | 7770 | return NULL; |
b1462dfa | 7771 | } |
8ab979d7 | 7772 | } |
cf694132 RD |
7773 | { |
7774 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 7775 | _result = (bool )wxMenu_DeleteItem(_arg0,_arg1); |
cf694132 RD |
7776 | |
7777 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7778 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 7779 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
7780 | return _resultobj; |
7781 | } | |
7782 | ||
b1462dfa RD |
7783 | #define wxMenu_Insert(_swigobj,_swigarg0,_swigarg1) (_swigobj->Insert(_swigarg0,_swigarg1)) |
7784 | static PyObject *_wrap_wxMenu_Insert(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 7785 | PyObject * _resultobj; |
b1462dfa | 7786 | bool _result; |
8bf5d46e | 7787 | wxMenu * _arg0; |
b1462dfa RD |
7788 | size_t _arg1; |
7789 | wxMenuItem * _arg2; | |
1d99702e | 7790 | PyObject * _argo0 = 0; |
b1462dfa RD |
7791 | PyObject * _argo2 = 0; |
7792 | char *_kwnames[] = { "self","pos","item", NULL }; | |
8ab979d7 RD |
7793 | |
7794 | self = self; | |
b1462dfa | 7795 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxMenu_Insert",_kwnames,&_argo0,&_arg1,&_argo2)) |
8ab979d7 | 7796 | return NULL; |
1d99702e RD |
7797 | if (_argo0) { |
7798 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7799 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa | 7800 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Insert. Expected _wxMenu_p."); |
8bf5d46e RD |
7801 | return NULL; |
7802 | } | |
7803 | } | |
b1462dfa RD |
7804 | if (_argo2) { |
7805 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
7806 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxMenuItem_p")) { | |
7807 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxMenu_Insert. Expected _wxMenuItem_p."); | |
8ab979d7 RD |
7808 | return NULL; |
7809 | } | |
7810 | } | |
cf694132 RD |
7811 | { |
7812 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 7813 | _result = (bool )wxMenu_Insert(_arg0,_arg1,_arg2); |
cf694132 RD |
7814 | |
7815 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7816 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 7817 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
7818 | return _resultobj; |
7819 | } | |
7820 | ||
b1462dfa RD |
7821 | #define wxMenu_Remove(_swigobj,_swigarg0) (_swigobj->Remove(_swigarg0)) |
7822 | static PyObject *_wrap_wxMenu_Remove(PyObject *self, PyObject *args, PyObject *kwargs) { | |
efc5f224 | 7823 | PyObject * _resultobj; |
b1462dfa | 7824 | wxMenuItem * _result; |
efc5f224 | 7825 | wxMenu * _arg0; |
b1462dfa | 7826 | int _arg1; |
efc5f224 | 7827 | PyObject * _argo0 = 0; |
b1462dfa | 7828 | char *_kwnames[] = { "self","id", NULL }; |
efc5f224 RD |
7829 | |
7830 | self = self; | |
b1462dfa | 7831 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_Remove",_kwnames,&_argo0,&_arg1)) |
efc5f224 RD |
7832 | return NULL; |
7833 | if (_argo0) { | |
7834 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7835 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa | 7836 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Remove. Expected _wxMenu_p."); |
efc5f224 RD |
7837 | return NULL; |
7838 | } | |
7839 | } | |
7840 | { | |
7841 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 7842 | _result = (wxMenuItem *)wxMenu_Remove(_arg0,_arg1); |
efc5f224 RD |
7843 | |
7844 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7845 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 7846 | }{ _resultobj = wxPyMake_wxObject(_result); } |
efc5f224 RD |
7847 | return _resultobj; |
7848 | } | |
7849 | ||
b1462dfa RD |
7850 | #define wxMenu_RemoveItem(_swigobj,_swigarg0) (_swigobj->Remove(_swigarg0)) |
7851 | static PyObject *_wrap_wxMenu_RemoveItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 7852 | PyObject * _resultobj; |
b1462dfa RD |
7853 | wxMenuItem * _result; |
7854 | wxMenu * _arg0; | |
7855 | wxMenuItem * _arg1; | |
7856 | PyObject * _argo0 = 0; | |
7857 | PyObject * _argo1 = 0; | |
7858 | char *_kwnames[] = { "self","item", NULL }; | |
8ab979d7 RD |
7859 | |
7860 | self = self; | |
b1462dfa RD |
7861 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_RemoveItem",_kwnames,&_argo0,&_argo1)) |
7862 | return NULL; | |
7863 | if (_argo0) { | |
7864 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7865 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
7866 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_RemoveItem. Expected _wxMenu_p."); | |
7867 | return NULL; | |
7868 | } | |
7869 | } | |
7870 | if (_argo1) { | |
7871 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7872 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenuItem_p")) { | |
7873 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_RemoveItem. Expected _wxMenuItem_p."); | |
8ab979d7 | 7874 | return NULL; |
b1462dfa RD |
7875 | } |
7876 | } | |
cf694132 RD |
7877 | { |
7878 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 7879 | _result = (wxMenuItem *)wxMenu_RemoveItem(_arg0,_arg1); |
cf694132 RD |
7880 | |
7881 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7882 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 7883 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
7884 | return _resultobj; |
7885 | } | |
7886 | ||
eb715945 | 7887 | static void wxMenu_Destroy(wxMenu *self) { delete self; } |
b1462dfa | 7888 | static PyObject *_wrap_wxMenu_Destroy(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 | 7889 | PyObject * _resultobj; |
b1462dfa | 7890 | wxMenu * _arg0; |
1d99702e | 7891 | PyObject * _argo0 = 0; |
b1462dfa | 7892 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
7893 | |
7894 | self = self; | |
b1462dfa | 7895 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_Destroy",_kwnames,&_argo0)) |
8ab979d7 | 7896 | return NULL; |
1d99702e RD |
7897 | if (_argo0) { |
7898 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
7899 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
7900 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Destroy. Expected _wxMenu_p."); | |
8ab979d7 RD |
7901 | return NULL; |
7902 | } | |
7903 | } | |
cf694132 RD |
7904 | { |
7905 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 7906 | wxMenu_Destroy(_arg0); |
cf694132 RD |
7907 | |
7908 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7909 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7910 | } Py_INCREF(Py_None); |
8ab979d7 | 7911 | _resultobj = Py_None; |
8ab979d7 RD |
7912 | return _resultobj; |
7913 | } | |
7914 | ||
b1462dfa RD |
7915 | #define wxMenu_DestroyId(_swigobj,_swigarg0) (_swigobj->Destroy(_swigarg0)) |
7916 | static PyObject *_wrap_wxMenu_DestroyId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 7917 | PyObject * _resultobj; |
b1462dfa RD |
7918 | bool _result; |
7919 | wxMenu * _arg0; | |
8ab979d7 | 7920 | int _arg1; |
1d99702e | 7921 | PyObject * _argo0 = 0; |
b1462dfa | 7922 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
7923 | |
7924 | self = self; | |
b1462dfa | 7925 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_DestroyId",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 7926 | return NULL; |
1d99702e RD |
7927 | if (_argo0) { |
7928 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
7929 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
7930 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_DestroyId. Expected _wxMenu_p."); | |
8ab979d7 RD |
7931 | return NULL; |
7932 | } | |
7933 | } | |
cf694132 RD |
7934 | { |
7935 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 7936 | _result = (bool )wxMenu_DestroyId(_arg0,_arg1); |
cf694132 RD |
7937 | |
7938 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7939 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 7940 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
7941 | return _resultobj; |
7942 | } | |
7943 | ||
b1462dfa RD |
7944 | #define wxMenu_DestroyItem(_swigobj,_swigarg0) (_swigobj->Destroy(_swigarg0)) |
7945 | static PyObject *_wrap_wxMenu_DestroyItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 7946 | PyObject * _resultobj; |
b1462dfa RD |
7947 | bool _result; |
7948 | wxMenu * _arg0; | |
7949 | wxMenuItem * _arg1; | |
1d99702e | 7950 | PyObject * _argo0 = 0; |
b1462dfa RD |
7951 | PyObject * _argo1 = 0; |
7952 | char *_kwnames[] = { "self","item", NULL }; | |
8ab979d7 RD |
7953 | |
7954 | self = self; | |
b1462dfa | 7955 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_DestroyItem",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 7956 | return NULL; |
1d99702e RD |
7957 | if (_argo0) { |
7958 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
7959 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
7960 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_DestroyItem. Expected _wxMenu_p."); | |
7961 | return NULL; | |
7962 | } | |
7963 | } | |
7964 | if (_argo1) { | |
7965 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7966 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenuItem_p")) { | |
7967 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_DestroyItem. Expected _wxMenuItem_p."); | |
8ab979d7 RD |
7968 | return NULL; |
7969 | } | |
7970 | } | |
cf694132 RD |
7971 | { |
7972 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 7973 | _result = (bool )wxMenu_DestroyItem(_arg0,_arg1); |
cf694132 RD |
7974 | |
7975 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 7976 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 7977 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
7978 | return _resultobj; |
7979 | } | |
7980 | ||
b1462dfa RD |
7981 | #define wxMenu_GetMenuItemCount(_swigobj) (_swigobj->GetMenuItemCount()) |
7982 | static PyObject *_wrap_wxMenu_GetMenuItemCount(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 7983 | PyObject * _resultobj; |
b1462dfa RD |
7984 | size_t _result; |
7985 | wxMenu * _arg0; | |
1d99702e | 7986 | PyObject * _argo0 = 0; |
b1462dfa | 7987 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
7988 | |
7989 | self = self; | |
b1462dfa | 7990 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_GetMenuItemCount",_kwnames,&_argo0)) |
8ab979d7 | 7991 | return NULL; |
1d99702e RD |
7992 | if (_argo0) { |
7993 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
7994 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
7995 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetMenuItemCount. Expected _wxMenu_p."); | |
8ab979d7 RD |
7996 | return NULL; |
7997 | } | |
7998 | } | |
cf694132 RD |
7999 | { |
8000 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 8001 | _result = (size_t )wxMenu_GetMenuItemCount(_arg0); |
cf694132 RD |
8002 | |
8003 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8004 | if (PyErr_Occurred()) return NULL; |
2abc0a0f | 8005 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
8006 | return _resultobj; |
8007 | } | |
8008 | ||
b1462dfa RD |
8009 | static PyObject * wxMenu_GetMenuItems(wxMenu *self) { |
8010 | wxMenuItemList& list = self->GetMenuItems(); | |
8011 | return wxPy_ConvertList(&list, "wxMenuItem"); | |
8012 | } | |
8013 | static PyObject *_wrap_wxMenu_GetMenuItems(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8014 | PyObject * _resultobj; |
b1462dfa RD |
8015 | PyObject * _result; |
8016 | wxMenu * _arg0; | |
1d99702e | 8017 | PyObject * _argo0 = 0; |
b1462dfa | 8018 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8019 | |
8020 | self = self; | |
b1462dfa | 8021 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_GetMenuItems",_kwnames,&_argo0)) |
8ab979d7 | 8022 | return NULL; |
1d99702e RD |
8023 | if (_argo0) { |
8024 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8025 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8026 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetMenuItems. Expected _wxMenu_p."); | |
8ab979d7 RD |
8027 | return NULL; |
8028 | } | |
8029 | } | |
cf694132 RD |
8030 | { |
8031 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 8032 | _result = (PyObject *)wxMenu_GetMenuItems(_arg0); |
cf694132 RD |
8033 | |
8034 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8035 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
8036 | }{ |
8037 | _resultobj = _result; | |
8038 | } | |
8ab979d7 RD |
8039 | return _resultobj; |
8040 | } | |
8041 | ||
b1462dfa RD |
8042 | #define wxMenu_SetEventHandler(_swigobj,_swigarg0) (_swigobj->SetEventHandler(_swigarg0)) |
8043 | static PyObject *_wrap_wxMenu_SetEventHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8044 | PyObject * _resultobj; |
b1462dfa RD |
8045 | wxMenu * _arg0; |
8046 | wxEvtHandler * _arg1; | |
1d99702e | 8047 | PyObject * _argo0 = 0; |
b1462dfa RD |
8048 | PyObject * _argo1 = 0; |
8049 | char *_kwnames[] = { "self","handler", NULL }; | |
8ab979d7 RD |
8050 | |
8051 | self = self; | |
b1462dfa | 8052 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_SetEventHandler",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 8053 | return NULL; |
1d99702e RD |
8054 | if (_argo0) { |
8055 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8056 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8057 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetEventHandler. Expected _wxMenu_p."); | |
8ab979d7 RD |
8058 | return NULL; |
8059 | } | |
8060 | } | |
b1462dfa RD |
8061 | if (_argo1) { |
8062 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8063 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvtHandler_p")) { | |
8064 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_SetEventHandler. Expected _wxEvtHandler_p."); | |
8ab979d7 | 8065 | return NULL; |
b1462dfa | 8066 | } |
8ab979d7 | 8067 | } |
cf694132 RD |
8068 | { |
8069 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 8070 | wxMenu_SetEventHandler(_arg0,_arg1); |
cf694132 RD |
8071 | |
8072 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8073 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
8074 | } Py_INCREF(Py_None); |
8075 | _resultobj = Py_None; | |
8ab979d7 RD |
8076 | return _resultobj; |
8077 | } | |
8078 | ||
b1462dfa RD |
8079 | #define wxMenu_GetEventHandler(_swigobj) (_swigobj->GetEventHandler()) |
8080 | static PyObject *_wrap_wxMenu_GetEventHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8081 | PyObject * _resultobj; |
b1462dfa RD |
8082 | wxEvtHandler * _result; |
8083 | wxMenu * _arg0; | |
1d99702e | 8084 | PyObject * _argo0 = 0; |
b1462dfa | 8085 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8086 | |
8087 | self = self; | |
b1462dfa | 8088 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_GetEventHandler",_kwnames,&_argo0)) |
8ab979d7 | 8089 | return NULL; |
1d99702e RD |
8090 | if (_argo0) { |
8091 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8092 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8093 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetEventHandler. Expected _wxMenu_p."); | |
8ab979d7 RD |
8094 | return NULL; |
8095 | } | |
8096 | } | |
cf694132 RD |
8097 | { |
8098 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 8099 | _result = (wxEvtHandler *)wxMenu_GetEventHandler(_arg0); |
cf694132 RD |
8100 | |
8101 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8102 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8103 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
8104 | return _resultobj; |
8105 | } | |
8106 | ||
b1462dfa RD |
8107 | #define wxMenu_SetInvokingWindow(_swigobj,_swigarg0) (_swigobj->SetInvokingWindow(_swigarg0)) |
8108 | static PyObject *_wrap_wxMenu_SetInvokingWindow(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2f90df85 | 8109 | PyObject * _resultobj; |
b1462dfa RD |
8110 | wxMenu * _arg0; |
8111 | wxWindow * _arg1; | |
2f90df85 | 8112 | PyObject * _argo0 = 0; |
b1462dfa RD |
8113 | PyObject * _argo1 = 0; |
8114 | char *_kwnames[] = { "self","win", NULL }; | |
2f90df85 RD |
8115 | |
8116 | self = self; | |
b1462dfa | 8117 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_SetInvokingWindow",_kwnames,&_argo0,&_argo1)) |
2f90df85 RD |
8118 | return NULL; |
8119 | if (_argo0) { | |
8120 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8121 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8122 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetInvokingWindow. Expected _wxMenu_p."); | |
2f90df85 RD |
8123 | return NULL; |
8124 | } | |
8125 | } | |
b1462dfa RD |
8126 | if (_argo1) { |
8127 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8128 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
8129 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_SetInvokingWindow. Expected _wxWindow_p."); | |
2f90df85 | 8130 | return NULL; |
b1462dfa | 8131 | } |
2f90df85 | 8132 | } |
2f90df85 RD |
8133 | { |
8134 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 8135 | wxMenu_SetInvokingWindow(_arg0,_arg1); |
2f90df85 RD |
8136 | |
8137 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8138 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
8139 | } Py_INCREF(Py_None); |
8140 | _resultobj = Py_None; | |
2f90df85 RD |
8141 | return _resultobj; |
8142 | } | |
8143 | ||
b1462dfa RD |
8144 | #define wxMenu_GetInvokingWindow(_swigobj) (_swigobj->GetInvokingWindow()) |
8145 | static PyObject *_wrap_wxMenu_GetInvokingWindow(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8146 | PyObject * _resultobj; |
b1462dfa RD |
8147 | wxWindow * _result; |
8148 | wxMenu * _arg0; | |
1d99702e | 8149 | PyObject * _argo0 = 0; |
b1462dfa | 8150 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8151 | |
8152 | self = self; | |
b1462dfa | 8153 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_GetInvokingWindow",_kwnames,&_argo0)) |
8ab979d7 | 8154 | return NULL; |
1d99702e RD |
8155 | if (_argo0) { |
8156 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8157 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8158 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetInvokingWindow. Expected _wxMenu_p."); | |
8ab979d7 RD |
8159 | return NULL; |
8160 | } | |
8161 | } | |
cf694132 RD |
8162 | { |
8163 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 8164 | _result = (wxWindow *)wxMenu_GetInvokingWindow(_arg0); |
cf694132 RD |
8165 | |
8166 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8167 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8168 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
8169 | return _resultobj; |
8170 | } | |
8171 | ||
b1462dfa RD |
8172 | #define wxMenu_GetStyle(_swigobj) (_swigobj->GetStyle()) |
8173 | static PyObject *_wrap_wxMenu_GetStyle(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8174 | PyObject * _resultobj; |
b1462dfa RD |
8175 | long _result; |
8176 | wxMenu * _arg0; | |
1d99702e | 8177 | PyObject * _argo0 = 0; |
b1462dfa | 8178 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8179 | |
8180 | self = self; | |
b1462dfa | 8181 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_GetStyle",_kwnames,&_argo0)) |
8ab979d7 | 8182 | return NULL; |
1d99702e RD |
8183 | if (_argo0) { |
8184 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8185 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8186 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetStyle. Expected _wxMenu_p."); | |
8ab979d7 RD |
8187 | return NULL; |
8188 | } | |
8189 | } | |
8ab979d7 | 8190 | { |
cf694132 | 8191 | wxPy_BEGIN_ALLOW_THREADS; |
b1462dfa | 8192 | _result = (long )wxMenu_GetStyle(_arg0); |
cf694132 RD |
8193 | |
8194 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8195 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 8196 | } _resultobj = Py_BuildValue("l",_result); |
8ab979d7 RD |
8197 | return _resultobj; |
8198 | } | |
8199 | ||
b1462dfa RD |
8200 | #define wxMenu_IsAttached(_swigobj) (_swigobj->IsAttached()) |
8201 | static PyObject *_wrap_wxMenu_IsAttached(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8202 | PyObject * _resultobj; |
b1462dfa RD |
8203 | bool _result; |
8204 | wxMenu * _arg0; | |
1d99702e | 8205 | PyObject * _argo0 = 0; |
b1462dfa | 8206 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8207 | |
8208 | self = self; | |
b1462dfa | 8209 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_IsAttached",_kwnames,&_argo0)) |
8ab979d7 | 8210 | return NULL; |
1d99702e RD |
8211 | if (_argo0) { |
8212 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8213 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8214 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_IsAttached. Expected _wxMenu_p."); | |
8ab979d7 RD |
8215 | return NULL; |
8216 | } | |
8217 | } | |
8ab979d7 | 8218 | { |
cf694132 | 8219 | wxPy_BEGIN_ALLOW_THREADS; |
b1462dfa | 8220 | _result = (bool )wxMenu_IsAttached(_arg0); |
cf694132 RD |
8221 | |
8222 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8223 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 8224 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
8225 | return _resultobj; |
8226 | } | |
8227 | ||
b1462dfa RD |
8228 | #define wxMenu_SetParent(_swigobj,_swigarg0) (_swigobj->SetParent(_swigarg0)) |
8229 | static PyObject *_wrap_wxMenu_SetParent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8230 | PyObject * _resultobj; |
b1462dfa RD |
8231 | wxMenu * _arg0; |
8232 | wxMenu * _arg1; | |
1d99702e | 8233 | PyObject * _argo0 = 0; |
b1462dfa RD |
8234 | PyObject * _argo1 = 0; |
8235 | char *_kwnames[] = { "self","parent", NULL }; | |
8ab979d7 RD |
8236 | |
8237 | self = self; | |
b1462dfa | 8238 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_SetParent",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 8239 | return NULL; |
1d99702e RD |
8240 | if (_argo0) { |
8241 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8242 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8243 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetParent. Expected _wxMenu_p."); | |
8ab979d7 RD |
8244 | return NULL; |
8245 | } | |
8246 | } | |
b1462dfa RD |
8247 | if (_argo1) { |
8248 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8249 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenu_p")) { | |
8250 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_SetParent. Expected _wxMenu_p."); | |
8ab979d7 | 8251 | return NULL; |
b1462dfa | 8252 | } |
8ab979d7 | 8253 | } |
cf694132 RD |
8254 | { |
8255 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 8256 | wxMenu_SetParent(_arg0,_arg1); |
cf694132 RD |
8257 | |
8258 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8259 | if (PyErr_Occurred()) return NULL; |
cf694132 | 8260 | } Py_INCREF(Py_None); |
8ab979d7 | 8261 | _resultobj = Py_None; |
8ab979d7 RD |
8262 | return _resultobj; |
8263 | } | |
8264 | ||
b1462dfa RD |
8265 | #define wxMenu_GetParent(_swigobj) (_swigobj->GetParent()) |
8266 | static PyObject *_wrap_wxMenu_GetParent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8267 | PyObject * _resultobj; |
b1462dfa RD |
8268 | wxMenu * _result; |
8269 | wxMenu * _arg0; | |
1d99702e | 8270 | PyObject * _argo0 = 0; |
b1462dfa | 8271 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8272 | |
8273 | self = self; | |
b1462dfa | 8274 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_GetParent",_kwnames,&_argo0)) |
8ab979d7 | 8275 | return NULL; |
1d99702e RD |
8276 | if (_argo0) { |
8277 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8278 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8279 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetParent. Expected _wxMenu_p."); | |
8ab979d7 RD |
8280 | return NULL; |
8281 | } | |
8282 | } | |
8ab979d7 | 8283 | { |
cf694132 | 8284 | wxPy_BEGIN_ALLOW_THREADS; |
b1462dfa | 8285 | _result = (wxMenu *)wxMenu_GetParent(_arg0); |
cf694132 RD |
8286 | |
8287 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8288 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8289 | }{ _resultobj = wxPyMake_wxObject(_result); } |
b1462dfa | 8290 | return _resultobj; |
8ab979d7 | 8291 | } |
b1462dfa RD |
8292 | |
8293 | static void *SwigwxMenuBarTowxWindow(void *ptr) { | |
8294 | wxMenuBar *src; | |
8295 | wxWindow *dest; | |
8296 | src = (wxMenuBar *) ptr; | |
8297 | dest = (wxWindow *) src; | |
8298 | return (void *) dest; | |
8299 | } | |
8300 | ||
8301 | static void *SwigwxMenuBarTowxEvtHandler(void *ptr) { | |
8302 | wxMenuBar *src; | |
8303 | wxEvtHandler *dest; | |
8304 | src = (wxMenuBar *) ptr; | |
8305 | dest = (wxEvtHandler *) src; | |
8306 | return (void *) dest; | |
8ab979d7 | 8307 | } |
b1462dfa | 8308 | |
9416aa89 RD |
8309 | static void *SwigwxMenuBarTowxObject(void *ptr) { |
8310 | wxMenuBar *src; | |
8311 | wxObject *dest; | |
8312 | src = (wxMenuBar *) ptr; | |
8313 | dest = (wxObject *) src; | |
8314 | return (void *) dest; | |
8315 | } | |
8316 | ||
c368d904 | 8317 | #define new_wxMenuBar(_swigarg0) (new wxMenuBar(_swigarg0)) |
b1462dfa RD |
8318 | static PyObject *_wrap_new_wxMenuBar(PyObject *self, PyObject *args, PyObject *kwargs) { |
8319 | PyObject * _resultobj; | |
8320 | wxMenuBar * _result; | |
c368d904 RD |
8321 | long _arg0 = (long ) 0; |
8322 | char *_kwnames[] = { "style", NULL }; | |
b1462dfa RD |
8323 | char _ptemp[128]; |
8324 | ||
8325 | self = self; | |
c368d904 | 8326 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|l:new_wxMenuBar",_kwnames,&_arg0)) |
b1462dfa RD |
8327 | return NULL; |
8328 | { | |
8329 | wxPy_BEGIN_ALLOW_THREADS; | |
c368d904 | 8330 | _result = (wxMenuBar *)new_wxMenuBar(_arg0); |
b1462dfa RD |
8331 | |
8332 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8333 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
8334 | } if (_result) { |
8335 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxMenuBar_p"); | |
8336 | _resultobj = Py_BuildValue("s",_ptemp); | |
8337 | } else { | |
8338 | Py_INCREF(Py_None); | |
8339 | _resultobj = Py_None; | |
8340 | } | |
8ab979d7 RD |
8341 | return _resultobj; |
8342 | } | |
8343 | ||
b1462dfa RD |
8344 | #define wxMenuBar_Append(_swigobj,_swigarg0,_swigarg1) (_swigobj->Append(_swigarg0,_swigarg1)) |
8345 | static PyObject *_wrap_wxMenuBar_Append(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8346 | PyObject * _resultobj; |
b1462dfa | 8347 | bool _result; |
8ab979d7 | 8348 | wxMenuBar * _arg0; |
b1462dfa | 8349 | wxMenu * _arg1; |
8ab979d7 | 8350 | wxString * _arg2; |
1d99702e | 8351 | PyObject * _argo0 = 0; |
b1462dfa | 8352 | PyObject * _argo1 = 0; |
8ab979d7 | 8353 | PyObject * _obj2 = 0; |
b1462dfa | 8354 | char *_kwnames[] = { "self","menu","title", NULL }; |
8ab979d7 RD |
8355 | |
8356 | self = self; | |
b1462dfa | 8357 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxMenuBar_Append",_kwnames,&_argo0,&_argo1,&_obj2)) |
8ab979d7 | 8358 | return NULL; |
1d99702e RD |
8359 | if (_argo0) { |
8360 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8361 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
b1462dfa RD |
8362 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Append. Expected _wxMenuBar_p."); |
8363 | return NULL; | |
8364 | } | |
8365 | } | |
8366 | if (_argo1) { | |
8367 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8368 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenu_p")) { | |
8369 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenuBar_Append. Expected _wxMenu_p."); | |
8ab979d7 RD |
8370 | return NULL; |
8371 | } | |
8372 | } | |
8373 | { | |
185d7c3e RD |
8374 | #if PYTHON_API_VERSION >= 1009 |
8375 | char* tmpPtr; int tmpSize; | |
8376 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 8377 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
8378 | return NULL; |
8379 | } | |
8380 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
8381 | return NULL; | |
8382 | _arg2 = new wxString(tmpPtr, tmpSize); | |
8383 | #else | |
8ab979d7 RD |
8384 | if (!PyString_Check(_obj2)) { |
8385 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8386 | return NULL; | |
8387 | } | |
185d7c3e RD |
8388 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
8389 | #endif | |
8ab979d7 | 8390 | } |
cf694132 RD |
8391 | { |
8392 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 8393 | _result = (bool )wxMenuBar_Append(_arg0,_arg1,*_arg2); |
cf694132 RD |
8394 | |
8395 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8396 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 8397 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
8398 | { |
8399 | if (_obj2) | |
8400 | delete _arg2; | |
8401 | } | |
8402 | return _resultobj; | |
8403 | } | |
8404 | ||
b1462dfa RD |
8405 | #define wxMenuBar_Insert(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->Insert(_swigarg0,_swigarg1,_swigarg2)) |
8406 | static PyObject *_wrap_wxMenuBar_Insert(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8407 | PyObject * _resultobj; |
b1462dfa | 8408 | bool _result; |
8ab979d7 | 8409 | wxMenuBar * _arg0; |
b1462dfa RD |
8410 | size_t _arg1; |
8411 | wxMenu * _arg2; | |
8412 | wxString * _arg3; | |
1d99702e | 8413 | PyObject * _argo0 = 0; |
b1462dfa RD |
8414 | PyObject * _argo2 = 0; |
8415 | PyObject * _obj3 = 0; | |
8416 | char *_kwnames[] = { "self","pos","menu","title", NULL }; | |
8ab979d7 RD |
8417 | |
8418 | self = self; | |
b1462dfa | 8419 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiOO:wxMenuBar_Insert",_kwnames,&_argo0,&_arg1,&_argo2,&_obj3)) |
8ab979d7 | 8420 | return NULL; |
1d99702e RD |
8421 | if (_argo0) { |
8422 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8423 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
b1462dfa RD |
8424 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Insert. Expected _wxMenuBar_p."); |
8425 | return NULL; | |
8426 | } | |
8427 | } | |
8428 | if (_argo2) { | |
8429 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
8430 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxMenu_p")) { | |
8431 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxMenuBar_Insert. Expected _wxMenu_p."); | |
8ab979d7 RD |
8432 | return NULL; |
8433 | } | |
8434 | } | |
b1462dfa | 8435 | { |
185d7c3e RD |
8436 | #if PYTHON_API_VERSION >= 1009 |
8437 | char* tmpPtr; int tmpSize; | |
8438 | if (!PyString_Check(_obj3) && !PyUnicode_Check(_obj3)) { | |
794c5cb1 | 8439 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
8440 | return NULL; |
8441 | } | |
8442 | if (PyString_AsStringAndSize(_obj3, &tmpPtr, &tmpSize) == -1) | |
8443 | return NULL; | |
8444 | _arg3 = new wxString(tmpPtr, tmpSize); | |
8445 | #else | |
b1462dfa RD |
8446 | if (!PyString_Check(_obj3)) { |
8447 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8448 | return NULL; | |
8449 | } | |
185d7c3e RD |
8450 | _arg3 = new wxString(PyString_AS_STRING(_obj3), PyString_GET_SIZE(_obj3)); |
8451 | #endif | |
b1462dfa | 8452 | } |
cf694132 RD |
8453 | { |
8454 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 8455 | _result = (bool )wxMenuBar_Insert(_arg0,_arg1,_arg2,*_arg3); |
cf694132 RD |
8456 | |
8457 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8458 | if (PyErr_Occurred()) return NULL; |
cf694132 | 8459 | } _resultobj = Py_BuildValue("i",_result); |
b1462dfa RD |
8460 | { |
8461 | if (_obj3) | |
8462 | delete _arg3; | |
8463 | } | |
8ab979d7 RD |
8464 | return _resultobj; |
8465 | } | |
8466 | ||
b1462dfa RD |
8467 | #define wxMenuBar_GetMenuCount(_swigobj) (_swigobj->GetMenuCount()) |
8468 | static PyObject *_wrap_wxMenuBar_GetMenuCount(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8469 | PyObject * _resultobj; |
b1462dfa | 8470 | size_t _result; |
8ab979d7 | 8471 | wxMenuBar * _arg0; |
1d99702e | 8472 | PyObject * _argo0 = 0; |
b1462dfa | 8473 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8474 | |
8475 | self = self; | |
b1462dfa | 8476 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuBar_GetMenuCount",_kwnames,&_argo0)) |
8ab979d7 | 8477 | return NULL; |
1d99702e RD |
8478 | if (_argo0) { |
8479 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8480 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
b1462dfa | 8481 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetMenuCount. Expected _wxMenuBar_p."); |
8ab979d7 RD |
8482 | return NULL; |
8483 | } | |
8484 | } | |
cf694132 RD |
8485 | { |
8486 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 8487 | _result = (size_t )wxMenuBar_GetMenuCount(_arg0); |
cf694132 RD |
8488 | |
8489 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8490 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 8491 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
8492 | return _resultobj; |
8493 | } | |
8494 | ||
b1462dfa RD |
8495 | #define wxMenuBar_GetMenu(_swigobj,_swigarg0) (_swigobj->GetMenu(_swigarg0)) |
8496 | static PyObject *_wrap_wxMenuBar_GetMenu(PyObject *self, PyObject *args, PyObject *kwargs) { | |
06c0fba4 | 8497 | PyObject * _resultobj; |
b1462dfa | 8498 | wxMenu * _result; |
06c0fba4 | 8499 | wxMenuBar * _arg0; |
b1462dfa | 8500 | size_t _arg1; |
06c0fba4 | 8501 | PyObject * _argo0 = 0; |
b1462dfa | 8502 | char *_kwnames[] = { "self","pos", NULL }; |
06c0fba4 RD |
8503 | |
8504 | self = self; | |
b1462dfa | 8505 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_GetMenu",_kwnames,&_argo0,&_arg1)) |
06c0fba4 RD |
8506 | return NULL; |
8507 | if (_argo0) { | |
8508 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8509 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
b1462dfa | 8510 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetMenu. Expected _wxMenuBar_p."); |
06c0fba4 RD |
8511 | return NULL; |
8512 | } | |
8513 | } | |
8514 | { | |
8515 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 8516 | _result = (wxMenu *)wxMenuBar_GetMenu(_arg0,_arg1); |
06c0fba4 RD |
8517 | |
8518 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8519 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8520 | }{ _resultobj = wxPyMake_wxObject(_result); } |
06c0fba4 RD |
8521 | return _resultobj; |
8522 | } | |
8523 | ||
2abc0a0f RD |
8524 | #define wxMenuBar_Replace(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->Replace(_swigarg0,_swigarg1,_swigarg2)) |
8525 | static PyObject *_wrap_wxMenuBar_Replace(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8526 | PyObject * _resultobj; | |
8527 | wxMenu * _result; | |
8528 | wxMenuBar * _arg0; | |
8529 | size_t _arg1; | |
8530 | wxMenu * _arg2; | |
8531 | wxString * _arg3; | |
8532 | PyObject * _argo0 = 0; | |
8533 | PyObject * _argo2 = 0; | |
8534 | PyObject * _obj3 = 0; | |
8535 | char *_kwnames[] = { "self","pos","menu","title", NULL }; | |
2abc0a0f RD |
8536 | |
8537 | self = self; | |
8538 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiOO:wxMenuBar_Replace",_kwnames,&_argo0,&_arg1,&_argo2,&_obj3)) | |
8539 | return NULL; | |
8540 | if (_argo0) { | |
8541 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8542 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
8543 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Replace. Expected _wxMenuBar_p."); | |
8544 | return NULL; | |
8545 | } | |
8546 | } | |
8547 | if (_argo2) { | |
8548 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
8549 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxMenu_p")) { | |
8550 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxMenuBar_Replace. Expected _wxMenu_p."); | |
8551 | return NULL; | |
8552 | } | |
8553 | } | |
8554 | { | |
185d7c3e RD |
8555 | #if PYTHON_API_VERSION >= 1009 |
8556 | char* tmpPtr; int tmpSize; | |
8557 | if (!PyString_Check(_obj3) && !PyUnicode_Check(_obj3)) { | |
794c5cb1 | 8558 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
8559 | return NULL; |
8560 | } | |
8561 | if (PyString_AsStringAndSize(_obj3, &tmpPtr, &tmpSize) == -1) | |
8562 | return NULL; | |
8563 | _arg3 = new wxString(tmpPtr, tmpSize); | |
8564 | #else | |
2abc0a0f RD |
8565 | if (!PyString_Check(_obj3)) { |
8566 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8567 | return NULL; | |
8568 | } | |
185d7c3e RD |
8569 | _arg3 = new wxString(PyString_AS_STRING(_obj3), PyString_GET_SIZE(_obj3)); |
8570 | #endif | |
2abc0a0f RD |
8571 | } |
8572 | { | |
8573 | wxPy_BEGIN_ALLOW_THREADS; | |
8574 | _result = (wxMenu *)wxMenuBar_Replace(_arg0,_arg1,_arg2,*_arg3); | |
8575 | ||
8576 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8577 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8578 | }{ _resultobj = wxPyMake_wxObject(_result); } |
2abc0a0f RD |
8579 | { |
8580 | if (_obj3) | |
8581 | delete _arg3; | |
8582 | } | |
8583 | return _resultobj; | |
8584 | } | |
8585 | ||
8586 | #define wxMenuBar_Remove(_swigobj,_swigarg0) (_swigobj->Remove(_swigarg0)) | |
8587 | static PyObject *_wrap_wxMenuBar_Remove(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8588 | PyObject * _resultobj; | |
8589 | wxMenu * _result; | |
8590 | wxMenuBar * _arg0; | |
8591 | size_t _arg1; | |
8592 | PyObject * _argo0 = 0; | |
8593 | char *_kwnames[] = { "self","pos", NULL }; | |
2abc0a0f RD |
8594 | |
8595 | self = self; | |
8596 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_Remove",_kwnames,&_argo0,&_arg1)) | |
8597 | return NULL; | |
8598 | if (_argo0) { | |
8599 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8600 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
8601 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Remove. Expected _wxMenuBar_p."); | |
8602 | return NULL; | |
8603 | } | |
8604 | } | |
8605 | { | |
8606 | wxPy_BEGIN_ALLOW_THREADS; | |
8607 | _result = (wxMenu *)wxMenuBar_Remove(_arg0,_arg1); | |
8608 | ||
8609 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8610 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8611 | }{ _resultobj = wxPyMake_wxObject(_result); } |
2abc0a0f RD |
8612 | return _resultobj; |
8613 | } | |
8614 | ||
b1462dfa RD |
8615 | #define wxMenuBar_EnableTop(_swigobj,_swigarg0,_swigarg1) (_swigobj->EnableTop(_swigarg0,_swigarg1)) |
8616 | static PyObject *_wrap_wxMenuBar_EnableTop(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 8617 | PyObject * _resultobj; |
b1462dfa RD |
8618 | wxMenuBar * _arg0; |
8619 | size_t _arg1; | |
8620 | bool _arg2; | |
8621 | PyObject * _argo0 = 0; | |
8622 | int tempbool2; | |
8623 | char *_kwnames[] = { "self","pos","enable", NULL }; | |
8624 | ||
8625 | self = self; | |
8626 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxMenuBar_EnableTop",_kwnames,&_argo0,&_arg1,&tempbool2)) | |
8627 | return NULL; | |
8628 | if (_argo0) { | |
8629 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8630 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
8631 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_EnableTop. Expected _wxMenuBar_p."); | |
8632 | return NULL; | |
8633 | } | |
8634 | } | |
8635 | _arg2 = (bool ) tempbool2; | |
8636 | { | |
8637 | wxPy_BEGIN_ALLOW_THREADS; | |
8638 | wxMenuBar_EnableTop(_arg0,_arg1,_arg2); | |
8639 | ||
8640 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8641 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
8642 | } Py_INCREF(Py_None); |
8643 | _resultobj = Py_None; | |
8644 | return _resultobj; | |
8645 | } | |
8646 | ||
8647 | #define wxMenuBar_SetLabelTop(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetLabelTop(_swigarg0,_swigarg1)) | |
8648 | static PyObject *_wrap_wxMenuBar_SetLabelTop(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8649 | PyObject * _resultobj; | |
8650 | wxMenuBar * _arg0; | |
8651 | size_t _arg1; | |
8652 | wxString * _arg2; | |
1d99702e | 8653 | PyObject * _argo0 = 0; |
cf694132 | 8654 | PyObject * _obj2 = 0; |
b1462dfa | 8655 | char *_kwnames[] = { "self","pos","label", NULL }; |
cf694132 RD |
8656 | |
8657 | self = self; | |
b1462dfa | 8658 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxMenuBar_SetLabelTop",_kwnames,&_argo0,&_arg1,&_obj2)) |
cf694132 | 8659 | return NULL; |
1d99702e RD |
8660 | if (_argo0) { |
8661 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8662 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { |
8663 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_SetLabelTop. Expected _wxMenuBar_p."); | |
cf694132 RD |
8664 | return NULL; |
8665 | } | |
8666 | } | |
cf694132 | 8667 | { |
185d7c3e RD |
8668 | #if PYTHON_API_VERSION >= 1009 |
8669 | char* tmpPtr; int tmpSize; | |
8670 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 8671 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
8672 | return NULL; |
8673 | } | |
8674 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
8675 | return NULL; | |
8676 | _arg2 = new wxString(tmpPtr, tmpSize); | |
8677 | #else | |
cf694132 RD |
8678 | if (!PyString_Check(_obj2)) { |
8679 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8680 | return NULL; | |
8681 | } | |
185d7c3e RD |
8682 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
8683 | #endif | |
cf694132 | 8684 | } |
cf694132 | 8685 | { |
b1462dfa RD |
8686 | wxPy_BEGIN_ALLOW_THREADS; |
8687 | wxMenuBar_SetLabelTop(_arg0,_arg1,*_arg2); | |
8688 | ||
8689 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8690 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
8691 | } Py_INCREF(Py_None); |
8692 | _resultobj = Py_None; | |
8693 | { | |
8694 | if (_obj2) | |
8695 | delete _arg2; | |
8696 | } | |
8697 | return _resultobj; | |
8698 | } | |
8699 | ||
8700 | #define wxMenuBar_GetLabelTop(_swigobj,_swigarg0) (_swigobj->GetLabelTop(_swigarg0)) | |
8701 | static PyObject *_wrap_wxMenuBar_GetLabelTop(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8702 | PyObject * _resultobj; | |
8703 | wxString * _result; | |
8704 | wxMenuBar * _arg0; | |
8705 | size_t _arg1; | |
8706 | PyObject * _argo0 = 0; | |
8707 | char *_kwnames[] = { "self","pos", NULL }; | |
8708 | ||
8709 | self = self; | |
8710 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_GetLabelTop",_kwnames,&_argo0,&_arg1)) | |
8711 | return NULL; | |
8712 | if (_argo0) { | |
8713 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8714 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
8715 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetLabelTop. Expected _wxMenuBar_p."); | |
8716 | return NULL; | |
8717 | } | |
8718 | } | |
8719 | { | |
8720 | wxPy_BEGIN_ALLOW_THREADS; | |
8721 | _result = new wxString (wxMenuBar_GetLabelTop(_arg0,_arg1)); | |
8722 | ||
8723 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8724 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 8725 | }{ |
eec92d76 | 8726 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
b1462dfa RD |
8727 | } |
8728 | { | |
8729 | delete _result; | |
8730 | } | |
8731 | return _resultobj; | |
8732 | } | |
8733 | ||
3a0958b1 RD |
8734 | #define wxMenuBar_FindMenu(_swigobj,_swigarg0) (_swigobj->FindMenu(_swigarg0)) |
8735 | static PyObject *_wrap_wxMenuBar_FindMenu(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8736 | PyObject * _resultobj; | |
8737 | int _result; | |
8738 | wxMenuBar * _arg0; | |
8739 | wxString * _arg1; | |
8740 | PyObject * _argo0 = 0; | |
8741 | PyObject * _obj1 = 0; | |
8742 | char *_kwnames[] = { "self","title", NULL }; | |
8743 | ||
8744 | self = self; | |
8745 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuBar_FindMenu",_kwnames,&_argo0,&_obj1)) | |
8746 | return NULL; | |
8747 | if (_argo0) { | |
8748 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8749 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
8750 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_FindMenu. Expected _wxMenuBar_p."); | |
8751 | return NULL; | |
8752 | } | |
8753 | } | |
8754 | { | |
8755 | #if PYTHON_API_VERSION >= 1009 | |
8756 | char* tmpPtr; int tmpSize; | |
8757 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
8758 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8759 | return NULL; | |
8760 | } | |
8761 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
8762 | return NULL; | |
8763 | _arg1 = new wxString(tmpPtr, tmpSize); | |
8764 | #else | |
8765 | if (!PyString_Check(_obj1)) { | |
8766 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8767 | return NULL; | |
8768 | } | |
8769 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); | |
8770 | #endif | |
8771 | } | |
8772 | { | |
8773 | wxPy_BEGIN_ALLOW_THREADS; | |
8774 | _result = (int )wxMenuBar_FindMenu(_arg0,*_arg1); | |
8775 | ||
8776 | wxPy_END_ALLOW_THREADS; | |
8777 | if (PyErr_Occurred()) return NULL; | |
8778 | } _resultobj = Py_BuildValue("i",_result); | |
8779 | { | |
8780 | if (_obj1) | |
8781 | delete _arg1; | |
8782 | } | |
8783 | return _resultobj; | |
8784 | } | |
8785 | ||
b1462dfa RD |
8786 | #define wxMenuBar_FindMenuItem(_swigobj,_swigarg0,_swigarg1) (_swigobj->FindMenuItem(_swigarg0,_swigarg1)) |
8787 | static PyObject *_wrap_wxMenuBar_FindMenuItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8788 | PyObject * _resultobj; | |
8789 | int _result; | |
8790 | wxMenuBar * _arg0; | |
8791 | wxString * _arg1; | |
8792 | wxString * _arg2; | |
8793 | PyObject * _argo0 = 0; | |
8794 | PyObject * _obj1 = 0; | |
8795 | PyObject * _obj2 = 0; | |
8796 | char *_kwnames[] = { "self","menuString","itemString", NULL }; | |
8797 | ||
8798 | self = self; | |
8799 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxMenuBar_FindMenuItem",_kwnames,&_argo0,&_obj1,&_obj2)) | |
8800 | return NULL; | |
8801 | if (_argo0) { | |
8802 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8803 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
8804 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_FindMenuItem. Expected _wxMenuBar_p."); | |
8805 | return NULL; | |
8806 | } | |
8807 | } | |
8808 | { | |
185d7c3e RD |
8809 | #if PYTHON_API_VERSION >= 1009 |
8810 | char* tmpPtr; int tmpSize; | |
8811 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 8812 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
8813 | return NULL; |
8814 | } | |
8815 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
8816 | return NULL; | |
8817 | _arg1 = new wxString(tmpPtr, tmpSize); | |
8818 | #else | |
b1462dfa | 8819 | if (!PyString_Check(_obj1)) { |
cf694132 RD |
8820 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
8821 | return NULL; | |
8822 | } | |
185d7c3e RD |
8823 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
8824 | #endif | |
cf694132 | 8825 | } |
b1462dfa | 8826 | { |
185d7c3e RD |
8827 | #if PYTHON_API_VERSION >= 1009 |
8828 | char* tmpPtr; int tmpSize; | |
8829 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 8830 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
8831 | return NULL; |
8832 | } | |
8833 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
8834 | return NULL; | |
8835 | _arg2 = new wxString(tmpPtr, tmpSize); | |
8836 | #else | |
b1462dfa RD |
8837 | if (!PyString_Check(_obj2)) { |
8838 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8839 | return NULL; | |
8840 | } | |
185d7c3e RD |
8841 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
8842 | #endif | |
b1462dfa RD |
8843 | } |
8844 | { | |
8845 | wxPy_BEGIN_ALLOW_THREADS; | |
8846 | _result = (int )wxMenuBar_FindMenuItem(_arg0,*_arg1,*_arg2); | |
8847 | ||
8848 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8849 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
8850 | } _resultobj = Py_BuildValue("i",_result); |
8851 | { | |
8852 | if (_obj1) | |
8853 | delete _arg1; | |
8854 | } | |
8855 | { | |
8856 | if (_obj2) | |
8857 | delete _arg2; | |
8858 | } | |
8859 | return _resultobj; | |
8860 | } | |
8861 | ||
8862 | #define wxMenuBar_FindItemById(_swigobj,_swigarg0) (_swigobj->FindItem(_swigarg0)) | |
8863 | static PyObject *_wrap_wxMenuBar_FindItemById(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8864 | PyObject * _resultobj; | |
8865 | wxMenuItem * _result; | |
8866 | wxMenuBar * _arg0; | |
8867 | int _arg1; | |
8868 | PyObject * _argo0 = 0; | |
8869 | char *_kwnames[] = { "self","id", NULL }; | |
b1462dfa RD |
8870 | |
8871 | self = self; | |
8872 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_FindItemById",_kwnames,&_argo0,&_arg1)) | |
8873 | return NULL; | |
8874 | if (_argo0) { | |
8875 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8876 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
8877 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_FindItemById. Expected _wxMenuBar_p."); | |
cf694132 RD |
8878 | return NULL; |
8879 | } | |
8880 | } | |
8881 | { | |
8882 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 8883 | _result = (wxMenuItem *)wxMenuBar_FindItemById(_arg0,_arg1); |
cf694132 RD |
8884 | |
8885 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8886 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8887 | }{ _resultobj = wxPyMake_wxObject(_result); } |
b1462dfa | 8888 | return _resultobj; |
cf694132 | 8889 | } |
b1462dfa RD |
8890 | |
8891 | #define wxMenuBar_Enable(_swigobj,_swigarg0,_swigarg1) (_swigobj->Enable(_swigarg0,_swigarg1)) | |
8892 | static PyObject *_wrap_wxMenuBar_Enable(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8893 | PyObject * _resultobj; | |
8894 | wxMenuBar * _arg0; | |
8895 | int _arg1; | |
8896 | bool _arg2; | |
8897 | PyObject * _argo0 = 0; | |
8898 | int tempbool2; | |
8899 | char *_kwnames[] = { "self","id","enable", NULL }; | |
8900 | ||
8901 | self = self; | |
8902 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxMenuBar_Enable",_kwnames,&_argo0,&_arg1,&tempbool2)) | |
8903 | return NULL; | |
8904 | if (_argo0) { | |
8905 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8906 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
8907 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Enable. Expected _wxMenuBar_p."); | |
8908 | return NULL; | |
8909 | } | |
8910 | } | |
8911 | _arg2 = (bool ) tempbool2; | |
cf694132 | 8912 | { |
b1462dfa RD |
8913 | wxPy_BEGIN_ALLOW_THREADS; |
8914 | wxMenuBar_Enable(_arg0,_arg1,_arg2); | |
8915 | ||
8916 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8917 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
8918 | } Py_INCREF(Py_None); |
8919 | _resultobj = Py_None; | |
8920 | return _resultobj; | |
cf694132 | 8921 | } |
b1462dfa RD |
8922 | |
8923 | #define wxMenuBar_Check(_swigobj,_swigarg0,_swigarg1) (_swigobj->Check(_swigarg0,_swigarg1)) | |
8924 | static PyObject *_wrap_wxMenuBar_Check(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8925 | PyObject * _resultobj; | |
8926 | wxMenuBar * _arg0; | |
8927 | int _arg1; | |
8928 | bool _arg2; | |
8929 | PyObject * _argo0 = 0; | |
8930 | int tempbool2; | |
8931 | char *_kwnames[] = { "self","id","check", NULL }; | |
8932 | ||
8933 | self = self; | |
8934 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxMenuBar_Check",_kwnames,&_argo0,&_arg1,&tempbool2)) | |
8935 | return NULL; | |
8936 | if (_argo0) { | |
8937 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8938 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
8939 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Check. Expected _wxMenuBar_p."); | |
8940 | return NULL; | |
8941 | } | |
8942 | } | |
8943 | _arg2 = (bool ) tempbool2; | |
8944 | { | |
8945 | wxPy_BEGIN_ALLOW_THREADS; | |
8946 | wxMenuBar_Check(_arg0,_arg1,_arg2); | |
8947 | ||
8948 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8949 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
8950 | } Py_INCREF(Py_None); |
8951 | _resultobj = Py_None; | |
cf694132 RD |
8952 | return _resultobj; |
8953 | } | |
8954 | ||
b1462dfa RD |
8955 | #define wxMenuBar_IsChecked(_swigobj,_swigarg0) (_swigobj->IsChecked(_swigarg0)) |
8956 | static PyObject *_wrap_wxMenuBar_IsChecked(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 RD |
8957 | PyObject * _resultobj; |
8958 | bool _result; | |
b1462dfa RD |
8959 | wxMenuBar * _arg0; |
8960 | int _arg1; | |
1d99702e | 8961 | PyObject * _argo0 = 0; |
b1462dfa | 8962 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
8963 | |
8964 | self = self; | |
b1462dfa | 8965 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_IsChecked",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 8966 | return NULL; |
1d99702e RD |
8967 | if (_argo0) { |
8968 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8969 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { |
8970 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_IsChecked. Expected _wxMenuBar_p."); | |
8ab979d7 RD |
8971 | return NULL; |
8972 | } | |
8973 | } | |
cf694132 RD |
8974 | { |
8975 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 8976 | _result = (bool )wxMenuBar_IsChecked(_arg0,_arg1); |
cf694132 RD |
8977 | |
8978 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 8979 | if (PyErr_Occurred()) return NULL; |
cf694132 | 8980 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
8981 | return _resultobj; |
8982 | } | |
8983 | ||
b1462dfa RD |
8984 | #define wxMenuBar_IsEnabled(_swigobj,_swigarg0) (_swigobj->IsEnabled(_swigarg0)) |
8985 | static PyObject *_wrap_wxMenuBar_IsEnabled(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 RD |
8986 | PyObject * _resultobj; |
8987 | bool _result; | |
b1462dfa RD |
8988 | wxMenuBar * _arg0; |
8989 | int _arg1; | |
1d99702e | 8990 | PyObject * _argo0 = 0; |
b1462dfa | 8991 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
8992 | |
8993 | self = self; | |
b1462dfa | 8994 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_IsEnabled",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 8995 | return NULL; |
1d99702e RD |
8996 | if (_argo0) { |
8997 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8998 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { |
8999 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_IsEnabled. Expected _wxMenuBar_p."); | |
8ab979d7 RD |
9000 | return NULL; |
9001 | } | |
9002 | } | |
cf694132 RD |
9003 | { |
9004 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9005 | _result = (bool )wxMenuBar_IsEnabled(_arg0,_arg1); |
cf694132 RD |
9006 | |
9007 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9008 | if (PyErr_Occurred()) return NULL; |
cf694132 | 9009 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
9010 | return _resultobj; |
9011 | } | |
9012 | ||
b1462dfa RD |
9013 | #define wxMenuBar_SetLabel(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetLabel(_swigarg0,_swigarg1)) |
9014 | static PyObject *_wrap_wxMenuBar_SetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 9015 | PyObject * _resultobj; |
b1462dfa RD |
9016 | wxMenuBar * _arg0; |
9017 | int _arg1; | |
9018 | wxString * _arg2; | |
1d99702e | 9019 | PyObject * _argo0 = 0; |
b1462dfa RD |
9020 | PyObject * _obj2 = 0; |
9021 | char *_kwnames[] = { "self","id","label", NULL }; | |
8ab979d7 RD |
9022 | |
9023 | self = self; | |
b1462dfa | 9024 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxMenuBar_SetLabel",_kwnames,&_argo0,&_arg1,&_obj2)) |
8ab979d7 | 9025 | return NULL; |
1d99702e RD |
9026 | if (_argo0) { |
9027 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
9028 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { |
9029 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_SetLabel. Expected _wxMenuBar_p."); | |
8ab979d7 RD |
9030 | return NULL; |
9031 | } | |
9032 | } | |
b1462dfa | 9033 | { |
185d7c3e RD |
9034 | #if PYTHON_API_VERSION >= 1009 |
9035 | char* tmpPtr; int tmpSize; | |
9036 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 9037 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
9038 | return NULL; |
9039 | } | |
9040 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
9041 | return NULL; | |
9042 | _arg2 = new wxString(tmpPtr, tmpSize); | |
9043 | #else | |
b1462dfa RD |
9044 | if (!PyString_Check(_obj2)) { |
9045 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9046 | return NULL; | |
9047 | } | |
185d7c3e RD |
9048 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
9049 | #endif | |
b1462dfa | 9050 | } |
cf694132 RD |
9051 | { |
9052 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9053 | wxMenuBar_SetLabel(_arg0,_arg1,*_arg2); |
cf694132 RD |
9054 | |
9055 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9056 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
9057 | } Py_INCREF(Py_None); |
9058 | _resultobj = Py_None; | |
9059 | { | |
9060 | if (_obj2) | |
9061 | delete _arg2; | |
9062 | } | |
8ab979d7 RD |
9063 | return _resultobj; |
9064 | } | |
9065 | ||
b1462dfa RD |
9066 | #define wxMenuBar_GetLabel(_swigobj,_swigarg0) (_swigobj->GetLabel(_swigarg0)) |
9067 | static PyObject *_wrap_wxMenuBar_GetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 9068 | PyObject * _resultobj; |
b1462dfa RD |
9069 | wxString * _result; |
9070 | wxMenuBar * _arg0; | |
9071 | int _arg1; | |
1d99702e | 9072 | PyObject * _argo0 = 0; |
b1462dfa | 9073 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
9074 | |
9075 | self = self; | |
b1462dfa | 9076 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_GetLabel",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 9077 | return NULL; |
1d99702e RD |
9078 | if (_argo0) { |
9079 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
9080 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { |
9081 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetLabel. Expected _wxMenuBar_p."); | |
9082 | return NULL; | |
9083 | } | |
9084 | } | |
9085 | { | |
9086 | wxPy_BEGIN_ALLOW_THREADS; | |
9087 | _result = new wxString (wxMenuBar_GetLabel(_arg0,_arg1)); | |
9088 | ||
9089 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9090 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9091 | }{ |
eec92d76 | 9092 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
b1462dfa RD |
9093 | } |
9094 | { | |
9095 | delete _result; | |
9096 | } | |
9097 | return _resultobj; | |
9098 | } | |
9099 | ||
9100 | #define wxMenuBar_SetHelpString(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetHelpString(_swigarg0,_swigarg1)) | |
9101 | static PyObject *_wrap_wxMenuBar_SetHelpString(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9102 | PyObject * _resultobj; | |
9103 | wxMenuBar * _arg0; | |
9104 | int _arg1; | |
9105 | wxString * _arg2; | |
9106 | PyObject * _argo0 = 0; | |
9107 | PyObject * _obj2 = 0; | |
9108 | char *_kwnames[] = { "self","id","helpString", NULL }; | |
9109 | ||
9110 | self = self; | |
9111 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxMenuBar_SetHelpString",_kwnames,&_argo0,&_arg1,&_obj2)) | |
9112 | return NULL; | |
9113 | if (_argo0) { | |
9114 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9115 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
9116 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_SetHelpString. Expected _wxMenuBar_p."); | |
9117 | return NULL; | |
9118 | } | |
9119 | } | |
9120 | { | |
185d7c3e RD |
9121 | #if PYTHON_API_VERSION >= 1009 |
9122 | char* tmpPtr; int tmpSize; | |
9123 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 9124 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
9125 | return NULL; |
9126 | } | |
9127 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
9128 | return NULL; | |
9129 | _arg2 = new wxString(tmpPtr, tmpSize); | |
9130 | #else | |
b1462dfa RD |
9131 | if (!PyString_Check(_obj2)) { |
9132 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9133 | return NULL; | |
9134 | } | |
185d7c3e RD |
9135 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
9136 | #endif | |
b1462dfa RD |
9137 | } |
9138 | { | |
9139 | wxPy_BEGIN_ALLOW_THREADS; | |
9140 | wxMenuBar_SetHelpString(_arg0,_arg1,*_arg2); | |
9141 | ||
9142 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9143 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
9144 | } Py_INCREF(Py_None); |
9145 | _resultobj = Py_None; | |
9146 | { | |
9147 | if (_obj2) | |
9148 | delete _arg2; | |
9149 | } | |
9150 | return _resultobj; | |
9151 | } | |
9152 | ||
9153 | #define wxMenuBar_GetHelpString(_swigobj,_swigarg0) (_swigobj->GetHelpString(_swigarg0)) | |
9154 | static PyObject *_wrap_wxMenuBar_GetHelpString(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9155 | PyObject * _resultobj; | |
9156 | wxString * _result; | |
9157 | wxMenuBar * _arg0; | |
9158 | int _arg1; | |
9159 | PyObject * _argo0 = 0; | |
9160 | char *_kwnames[] = { "self","id", NULL }; | |
9161 | ||
9162 | self = self; | |
9163 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_GetHelpString",_kwnames,&_argo0,&_arg1)) | |
9164 | return NULL; | |
9165 | if (_argo0) { | |
9166 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9167 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
9168 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetHelpString. Expected _wxMenuBar_p."); | |
8ab979d7 RD |
9169 | return NULL; |
9170 | } | |
9171 | } | |
cf694132 RD |
9172 | { |
9173 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9174 | _result = new wxString (wxMenuBar_GetHelpString(_arg0,_arg1)); |
cf694132 RD |
9175 | |
9176 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9177 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9178 | }{ |
eec92d76 | 9179 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
b1462dfa RD |
9180 | } |
9181 | { | |
9182 | delete _result; | |
9183 | } | |
8ab979d7 RD |
9184 | return _resultobj; |
9185 | } | |
9186 | ||
9416aa89 RD |
9187 | static void *SwigwxMenuItemTowxObject(void *ptr) { |
9188 | wxMenuItem *src; | |
9189 | wxObject *dest; | |
9190 | src = (wxMenuItem *) ptr; | |
9191 | dest = (wxObject *) src; | |
9192 | return (void *) dest; | |
9193 | } | |
9194 | ||
b1462dfa RD |
9195 | #define new_wxMenuItem(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (new wxMenuItem(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) |
9196 | static PyObject *_wrap_new_wxMenuItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 9197 | PyObject * _resultobj; |
b1462dfa RD |
9198 | wxMenuItem * _result; |
9199 | wxMenu * _arg0 = (wxMenu *) NULL; | |
4c9993c3 | 9200 | int _arg1 = (int ) wxID_SEPARATOR; |
b1462dfa RD |
9201 | wxString * _arg2 = (wxString *) &wxPyEmptyStr; |
9202 | wxString * _arg3 = (wxString *) &wxPyEmptyStr; | |
9203 | bool _arg4 = (bool ) FALSE; | |
9204 | wxMenu * _arg5 = (wxMenu *) NULL; | |
1d99702e | 9205 | PyObject * _argo0 = 0; |
b1462dfa RD |
9206 | PyObject * _obj2 = 0; |
9207 | PyObject * _obj3 = 0; | |
9208 | int tempbool4 = (int) FALSE; | |
9209 | PyObject * _argo5 = 0; | |
9210 | char *_kwnames[] = { "parentMenu","id","text","help","isCheckable","subMenu", NULL }; | |
9211 | char _ptemp[128]; | |
8ab979d7 RD |
9212 | |
9213 | self = self; | |
b1462dfa | 9214 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|OiOOiO:new_wxMenuItem",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&tempbool4,&_argo5)) |
8ab979d7 | 9215 | return NULL; |
1d99702e RD |
9216 | if (_argo0) { |
9217 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
9218 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
9219 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxMenuItem. Expected _wxMenu_p."); | |
9220 | return NULL; | |
9221 | } | |
9222 | } | |
9223 | if (_obj2) | |
9224 | { | |
185d7c3e RD |
9225 | #if PYTHON_API_VERSION >= 1009 |
9226 | char* tmpPtr; int tmpSize; | |
9227 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 9228 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
9229 | return NULL; |
9230 | } | |
9231 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
9232 | return NULL; | |
9233 | _arg2 = new wxString(tmpPtr, tmpSize); | |
9234 | #else | |
b1462dfa RD |
9235 | if (!PyString_Check(_obj2)) { |
9236 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9237 | return NULL; | |
9238 | } | |
185d7c3e RD |
9239 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
9240 | #endif | |
b1462dfa RD |
9241 | } |
9242 | if (_obj3) | |
9243 | { | |
185d7c3e RD |
9244 | #if PYTHON_API_VERSION >= 1009 |
9245 | char* tmpPtr; int tmpSize; | |
9246 | if (!PyString_Check(_obj3) && !PyUnicode_Check(_obj3)) { | |
794c5cb1 | 9247 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
9248 | return NULL; |
9249 | } | |
9250 | if (PyString_AsStringAndSize(_obj3, &tmpPtr, &tmpSize) == -1) | |
9251 | return NULL; | |
9252 | _arg3 = new wxString(tmpPtr, tmpSize); | |
9253 | #else | |
b1462dfa RD |
9254 | if (!PyString_Check(_obj3)) { |
9255 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9256 | return NULL; | |
9257 | } | |
185d7c3e RD |
9258 | _arg3 = new wxString(PyString_AS_STRING(_obj3), PyString_GET_SIZE(_obj3)); |
9259 | #endif | |
b1462dfa RD |
9260 | } |
9261 | _arg4 = (bool ) tempbool4; | |
9262 | if (_argo5) { | |
9263 | if (_argo5 == Py_None) { _arg5 = NULL; } | |
9264 | else if (SWIG_GetPtrObj(_argo5,(void **) &_arg5,"_wxMenu_p")) { | |
9265 | PyErr_SetString(PyExc_TypeError,"Type error in argument 6 of new_wxMenuItem. Expected _wxMenu_p."); | |
8ab979d7 RD |
9266 | return NULL; |
9267 | } | |
9268 | } | |
cf694132 RD |
9269 | { |
9270 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9271 | _result = (wxMenuItem *)new_wxMenuItem(_arg0,_arg1,*_arg2,*_arg3,_arg4,_arg5); |
cf694132 RD |
9272 | |
9273 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9274 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
9275 | } if (_result) { |
9276 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxMenuItem_p"); | |
9277 | _resultobj = Py_BuildValue("s",_ptemp); | |
9278 | } else { | |
9279 | Py_INCREF(Py_None); | |
9280 | _resultobj = Py_None; | |
9281 | } | |
9282 | { | |
9283 | if (_obj2) | |
9284 | delete _arg2; | |
9285 | } | |
9286 | { | |
9287 | if (_obj3) | |
9288 | delete _arg3; | |
9289 | } | |
8ab979d7 RD |
9290 | return _resultobj; |
9291 | } | |
9292 | ||
b1462dfa RD |
9293 | #define wxMenuItem_GetMenu(_swigobj) (_swigobj->GetMenu()) |
9294 | static PyObject *_wrap_wxMenuItem_GetMenu(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 9295 | PyObject * _resultobj; |
b1462dfa | 9296 | wxMenu * _result; |
8ab979d7 | 9297 | wxMenuItem * _arg0; |
1d99702e | 9298 | PyObject * _argo0 = 0; |
efc5f224 | 9299 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
9300 | |
9301 | self = self; | |
b1462dfa | 9302 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetMenu",_kwnames,&_argo0)) |
8ab979d7 | 9303 | return NULL; |
1d99702e RD |
9304 | if (_argo0) { |
9305 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9306 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9307 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetMenu. Expected _wxMenuItem_p."); |
8ab979d7 RD |
9308 | return NULL; |
9309 | } | |
9310 | } | |
cf694132 RD |
9311 | { |
9312 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9313 | _result = (wxMenu *)wxMenuItem_GetMenu(_arg0); |
cf694132 RD |
9314 | |
9315 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9316 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 9317 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
9318 | return _resultobj; |
9319 | } | |
9320 | ||
2abc0a0f RD |
9321 | #define wxMenuItem_SetId(_swigobj,_swigarg0) (_swigobj->SetId(_swigarg0)) |
9322 | static PyObject *_wrap_wxMenuItem_SetId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 RD |
9323 | PyObject * _resultobj; |
9324 | wxMenuItem * _arg0; | |
2abc0a0f | 9325 | int _arg1; |
1d99702e | 9326 | PyObject * _argo0 = 0; |
2abc0a0f | 9327 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
9328 | |
9329 | self = self; | |
2abc0a0f | 9330 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuItem_SetId",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 9331 | return NULL; |
1d99702e RD |
9332 | if (_argo0) { |
9333 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9334 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
2abc0a0f | 9335 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetId. Expected _wxMenuItem_p."); |
8ab979d7 RD |
9336 | return NULL; |
9337 | } | |
9338 | } | |
cf694132 RD |
9339 | { |
9340 | wxPy_BEGIN_ALLOW_THREADS; | |
2abc0a0f | 9341 | wxMenuItem_SetId(_arg0,_arg1); |
cf694132 RD |
9342 | |
9343 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9344 | if (PyErr_Occurred()) return NULL; |
cf694132 | 9345 | } Py_INCREF(Py_None); |
8ab979d7 | 9346 | _resultobj = Py_None; |
8ab979d7 RD |
9347 | return _resultobj; |
9348 | } | |
9349 | ||
b1462dfa RD |
9350 | #define wxMenuItem_GetId(_swigobj) (_swigobj->GetId()) |
9351 | static PyObject *_wrap_wxMenuItem_GetId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 9352 | PyObject * _resultobj; |
b1462dfa | 9353 | int _result; |
8ab979d7 | 9354 | wxMenuItem * _arg0; |
1d99702e | 9355 | PyObject * _argo0 = 0; |
efc5f224 | 9356 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
9357 | |
9358 | self = self; | |
b1462dfa | 9359 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetId",_kwnames,&_argo0)) |
8ab979d7 | 9360 | return NULL; |
1d99702e RD |
9361 | if (_argo0) { |
9362 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9363 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9364 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetId. Expected _wxMenuItem_p."); |
8ab979d7 RD |
9365 | return NULL; |
9366 | } | |
9367 | } | |
8ab979d7 | 9368 | { |
cf694132 | 9369 | wxPy_BEGIN_ALLOW_THREADS; |
b1462dfa | 9370 | _result = (int )wxMenuItem_GetId(_arg0); |
cf694132 RD |
9371 | |
9372 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9373 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9374 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
9375 | return _resultobj; |
9376 | } | |
9377 | ||
b1462dfa RD |
9378 | #define wxMenuItem_IsSeparator(_swigobj) (_swigobj->IsSeparator()) |
9379 | static PyObject *_wrap_wxMenuItem_IsSeparator(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 9380 | PyObject * _resultobj; |
b1462dfa | 9381 | bool _result; |
8ab979d7 | 9382 | wxMenuItem * _arg0; |
1d99702e | 9383 | PyObject * _argo0 = 0; |
efc5f224 | 9384 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
9385 | |
9386 | self = self; | |
b1462dfa | 9387 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_IsSeparator",_kwnames,&_argo0)) |
8ab979d7 | 9388 | return NULL; |
1d99702e RD |
9389 | if (_argo0) { |
9390 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9391 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9392 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsSeparator. Expected _wxMenuItem_p."); |
8ab979d7 RD |
9393 | return NULL; |
9394 | } | |
9395 | } | |
8ab979d7 | 9396 | { |
cf694132 | 9397 | wxPy_BEGIN_ALLOW_THREADS; |
b1462dfa | 9398 | _result = (bool )wxMenuItem_IsSeparator(_arg0); |
cf694132 RD |
9399 | |
9400 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9401 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9402 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
9403 | return _resultobj; |
9404 | } | |
9405 | ||
b1462dfa RD |
9406 | #define wxMenuItem_SetText(_swigobj,_swigarg0) (_swigobj->SetText(_swigarg0)) |
9407 | static PyObject *_wrap_wxMenuItem_SetText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 RD |
9408 | PyObject * _resultobj; |
9409 | wxMenuItem * _arg0; | |
9410 | wxString * _arg1; | |
1d99702e | 9411 | PyObject * _argo0 = 0; |
8ab979d7 | 9412 | PyObject * _obj1 = 0; |
b1462dfa | 9413 | char *_kwnames[] = { "self","str", NULL }; |
8ab979d7 RD |
9414 | |
9415 | self = self; | |
b1462dfa | 9416 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetText",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 9417 | return NULL; |
1d99702e RD |
9418 | if (_argo0) { |
9419 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9420 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9421 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetText. Expected _wxMenuItem_p."); |
8ab979d7 RD |
9422 | return NULL; |
9423 | } | |
9424 | } | |
9425 | { | |
185d7c3e RD |
9426 | #if PYTHON_API_VERSION >= 1009 |
9427 | char* tmpPtr; int tmpSize; | |
9428 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 9429 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
9430 | return NULL; |
9431 | } | |
9432 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
9433 | return NULL; | |
9434 | _arg1 = new wxString(tmpPtr, tmpSize); | |
9435 | #else | |
8ab979d7 RD |
9436 | if (!PyString_Check(_obj1)) { |
9437 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9438 | return NULL; | |
9439 | } | |
185d7c3e RD |
9440 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
9441 | #endif | |
8ab979d7 | 9442 | } |
cf694132 RD |
9443 | { |
9444 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9445 | wxMenuItem_SetText(_arg0,*_arg1); |
cf694132 RD |
9446 | |
9447 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9448 | if (PyErr_Occurred()) return NULL; |
cf694132 | 9449 | } Py_INCREF(Py_None); |
8ab979d7 RD |
9450 | _resultobj = Py_None; |
9451 | { | |
9452 | if (_obj1) | |
9453 | delete _arg1; | |
9454 | } | |
9455 | return _resultobj; | |
9456 | } | |
9457 | ||
b1462dfa RD |
9458 | #define wxMenuItem_GetLabel(_swigobj) (_swigobj->GetLabel()) |
9459 | static PyObject *_wrap_wxMenuItem_GetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 9460 | PyObject * _resultobj; |
b1462dfa | 9461 | wxString * _result; |
8ab979d7 | 9462 | wxMenuItem * _arg0; |
1d99702e | 9463 | PyObject * _argo0 = 0; |
b1462dfa | 9464 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
9465 | |
9466 | self = self; | |
b1462dfa | 9467 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetLabel",_kwnames,&_argo0)) |
8ab979d7 | 9468 | return NULL; |
1d99702e RD |
9469 | if (_argo0) { |
9470 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9471 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9472 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetLabel. Expected _wxMenuItem_p."); |
8ab979d7 RD |
9473 | return NULL; |
9474 | } | |
9475 | } | |
cf694132 RD |
9476 | { |
9477 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9478 | _result = new wxString (wxMenuItem_GetLabel(_arg0)); |
cf694132 RD |
9479 | |
9480 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9481 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9482 | }{ |
eec92d76 | 9483 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 | 9484 | } |
cf694132 | 9485 | { |
b1462dfa RD |
9486 | delete _result; |
9487 | } | |
cf694132 RD |
9488 | return _resultobj; |
9489 | } | |
9490 | ||
b1462dfa RD |
9491 | #define wxMenuItem_GetText(_swigobj) (_swigobj->GetText()) |
9492 | static PyObject *_wrap_wxMenuItem_GetText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 9493 | PyObject * _resultobj; |
b1462dfa | 9494 | wxString * _result; |
cf694132 | 9495 | wxMenuItem * _arg0; |
1d99702e | 9496 | PyObject * _argo0 = 0; |
efc5f224 | 9497 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
9498 | |
9499 | self = self; | |
b1462dfa | 9500 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetText",_kwnames,&_argo0)) |
cf694132 | 9501 | return NULL; |
1d99702e RD |
9502 | if (_argo0) { |
9503 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9504 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9505 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetText. Expected _wxMenuItem_p."); |
cf694132 RD |
9506 | return NULL; |
9507 | } | |
9508 | } | |
9509 | { | |
9510 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa RD |
9511 | const wxString & _result_ref = wxMenuItem_GetText(_arg0); |
9512 | _result = (wxString *) &_result_ref; | |
cf694132 RD |
9513 | |
9514 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9515 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9516 | }{ |
eec92d76 | 9517 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
cf694132 | 9518 | } |
cf694132 RD |
9519 | return _resultobj; |
9520 | } | |
9521 | ||
b1462dfa RD |
9522 | #define wxMenuItem_SetCheckable(_swigobj,_swigarg0) (_swigobj->SetCheckable(_swigarg0)) |
9523 | static PyObject *_wrap_wxMenuItem_SetCheckable(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 9524 | PyObject * _resultobj; |
cf694132 | 9525 | wxMenuItem * _arg0; |
b1462dfa | 9526 | bool _arg1; |
1d99702e | 9527 | PyObject * _argo0 = 0; |
b1462dfa RD |
9528 | int tempbool1; |
9529 | char *_kwnames[] = { "self","checkable", NULL }; | |
cf694132 RD |
9530 | |
9531 | self = self; | |
b1462dfa | 9532 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuItem_SetCheckable",_kwnames,&_argo0,&tempbool1)) |
cf694132 | 9533 | return NULL; |
1d99702e RD |
9534 | if (_argo0) { |
9535 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9536 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9537 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetCheckable. Expected _wxMenuItem_p."); |
cf694132 RD |
9538 | return NULL; |
9539 | } | |
9540 | } | |
b1462dfa | 9541 | _arg1 = (bool ) tempbool1; |
cf694132 RD |
9542 | { |
9543 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9544 | wxMenuItem_SetCheckable(_arg0,_arg1); |
cf694132 RD |
9545 | |
9546 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9547 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
9548 | } Py_INCREF(Py_None); |
9549 | _resultobj = Py_None; | |
cf694132 RD |
9550 | return _resultobj; |
9551 | } | |
9552 | ||
b1462dfa RD |
9553 | #define wxMenuItem_IsCheckable(_swigobj) (_swigobj->IsCheckable()) |
9554 | static PyObject *_wrap_wxMenuItem_IsCheckable(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 9555 | PyObject * _resultobj; |
b1462dfa | 9556 | bool _result; |
cf694132 | 9557 | wxMenuItem * _arg0; |
1d99702e | 9558 | PyObject * _argo0 = 0; |
efc5f224 | 9559 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
9560 | |
9561 | self = self; | |
b1462dfa | 9562 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_IsCheckable",_kwnames,&_argo0)) |
cf694132 | 9563 | return NULL; |
1d99702e RD |
9564 | if (_argo0) { |
9565 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9566 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9567 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsCheckable. Expected _wxMenuItem_p."); |
cf694132 RD |
9568 | return NULL; |
9569 | } | |
9570 | } | |
9571 | { | |
9572 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9573 | _result = (bool )wxMenuItem_IsCheckable(_arg0); |
cf694132 RD |
9574 | |
9575 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9576 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
9577 | } _resultobj = Py_BuildValue("i",_result); |
9578 | return _resultobj; | |
9579 | } | |
9580 | ||
b1462dfa RD |
9581 | #define wxMenuItem_IsSubMenu(_swigobj) (_swigobj->IsSubMenu()) |
9582 | static PyObject *_wrap_wxMenuItem_IsSubMenu(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 9583 | PyObject * _resultobj; |
b1462dfa | 9584 | bool _result; |
cf694132 | 9585 | wxMenuItem * _arg0; |
1d99702e | 9586 | PyObject * _argo0 = 0; |
efc5f224 | 9587 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
9588 | |
9589 | self = self; | |
b1462dfa | 9590 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_IsSubMenu",_kwnames,&_argo0)) |
cf694132 | 9591 | return NULL; |
1d99702e RD |
9592 | if (_argo0) { |
9593 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9594 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9595 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsSubMenu. Expected _wxMenuItem_p."); |
cf694132 RD |
9596 | return NULL; |
9597 | } | |
9598 | } | |
9599 | { | |
9600 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9601 | _result = (bool )wxMenuItem_IsSubMenu(_arg0); |
cf694132 RD |
9602 | |
9603 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9604 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9605 | } _resultobj = Py_BuildValue("i",_result); |
cf694132 RD |
9606 | return _resultobj; |
9607 | } | |
9608 | ||
b1462dfa RD |
9609 | #define wxMenuItem_SetSubMenu(_swigobj,_swigarg0) (_swigobj->SetSubMenu(_swigarg0)) |
9610 | static PyObject *_wrap_wxMenuItem_SetSubMenu(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 RD |
9611 | PyObject * _resultobj; |
9612 | wxMenuItem * _arg0; | |
b1462dfa | 9613 | wxMenu * _arg1; |
1d99702e RD |
9614 | PyObject * _argo0 = 0; |
9615 | PyObject * _argo1 = 0; | |
b1462dfa | 9616 | char *_kwnames[] = { "self","menu", NULL }; |
cf694132 RD |
9617 | |
9618 | self = self; | |
b1462dfa | 9619 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetSubMenu",_kwnames,&_argo0,&_argo1)) |
cf694132 | 9620 | return NULL; |
1d99702e RD |
9621 | if (_argo0) { |
9622 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9623 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9624 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetSubMenu. Expected _wxMenuItem_p."); |
cf694132 RD |
9625 | return NULL; |
9626 | } | |
9627 | } | |
1d99702e RD |
9628 | if (_argo1) { |
9629 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
b1462dfa RD |
9630 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenu_p")) { |
9631 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenuItem_SetSubMenu. Expected _wxMenu_p."); | |
cf694132 RD |
9632 | return NULL; |
9633 | } | |
9634 | } | |
9635 | { | |
9636 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9637 | wxMenuItem_SetSubMenu(_arg0,_arg1); |
cf694132 RD |
9638 | |
9639 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9640 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
9641 | } Py_INCREF(Py_None); |
9642 | _resultobj = Py_None; | |
9643 | return _resultobj; | |
9644 | } | |
9645 | ||
b1462dfa RD |
9646 | #define wxMenuItem_GetSubMenu(_swigobj) (_swigobj->GetSubMenu()) |
9647 | static PyObject *_wrap_wxMenuItem_GetSubMenu(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 9648 | PyObject * _resultobj; |
b1462dfa | 9649 | wxMenu * _result; |
cf694132 | 9650 | wxMenuItem * _arg0; |
1d99702e | 9651 | PyObject * _argo0 = 0; |
b1462dfa | 9652 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
9653 | |
9654 | self = self; | |
b1462dfa | 9655 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetSubMenu",_kwnames,&_argo0)) |
cf694132 | 9656 | return NULL; |
1d99702e RD |
9657 | if (_argo0) { |
9658 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9659 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9660 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetSubMenu. Expected _wxMenuItem_p."); |
cf694132 RD |
9661 | return NULL; |
9662 | } | |
9663 | } | |
b1462dfa RD |
9664 | { |
9665 | wxPy_BEGIN_ALLOW_THREADS; | |
9666 | _result = (wxMenu *)wxMenuItem_GetSubMenu(_arg0); | |
9667 | ||
9668 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9669 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 9670 | }{ _resultobj = wxPyMake_wxObject(_result); } |
b1462dfa RD |
9671 | return _resultobj; |
9672 | } | |
9673 | ||
9674 | #define wxMenuItem_Enable(_swigobj,_swigarg0) (_swigobj->Enable(_swigarg0)) | |
9675 | static PyObject *_wrap_wxMenuItem_Enable(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9676 | PyObject * _resultobj; | |
9677 | wxMenuItem * _arg0; | |
9678 | bool _arg1 = (bool ) TRUE; | |
9679 | PyObject * _argo0 = 0; | |
9680 | int tempbool1 = (int) TRUE; | |
9681 | char *_kwnames[] = { "self","enable", NULL }; | |
9682 | ||
9683 | self = self; | |
9684 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxMenuItem_Enable",_kwnames,&_argo0,&tempbool1)) | |
9685 | return NULL; | |
9686 | if (_argo0) { | |
9687 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9688 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
9689 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_Enable. Expected _wxMenuItem_p."); | |
cf694132 RD |
9690 | return NULL; |
9691 | } | |
9692 | } | |
b1462dfa | 9693 | _arg1 = (bool ) tempbool1; |
cf694132 RD |
9694 | { |
9695 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9696 | wxMenuItem_Enable(_arg0,_arg1); |
cf694132 RD |
9697 | |
9698 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9699 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
9700 | } Py_INCREF(Py_None); |
9701 | _resultobj = Py_None; | |
9702 | return _resultobj; | |
9703 | } | |
9704 | ||
b1462dfa RD |
9705 | #define wxMenuItem_IsEnabled(_swigobj) (_swigobj->IsEnabled()) |
9706 | static PyObject *_wrap_wxMenuItem_IsEnabled(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 9707 | PyObject * _resultobj; |
b1462dfa | 9708 | bool _result; |
cf694132 | 9709 | wxMenuItem * _arg0; |
1d99702e | 9710 | PyObject * _argo0 = 0; |
b1462dfa | 9711 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
9712 | |
9713 | self = self; | |
b1462dfa | 9714 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_IsEnabled",_kwnames,&_argo0)) |
cf694132 | 9715 | return NULL; |
1d99702e RD |
9716 | if (_argo0) { |
9717 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9718 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9719 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsEnabled. Expected _wxMenuItem_p."); |
cf694132 RD |
9720 | return NULL; |
9721 | } | |
9722 | } | |
9723 | { | |
9724 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9725 | _result = (bool )wxMenuItem_IsEnabled(_arg0); |
cf694132 RD |
9726 | |
9727 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9728 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9729 | } _resultobj = Py_BuildValue("i",_result); |
cf694132 RD |
9730 | return _resultobj; |
9731 | } | |
9732 | ||
b1462dfa RD |
9733 | #define wxMenuItem_Check(_swigobj,_swigarg0) (_swigobj->Check(_swigarg0)) |
9734 | static PyObject *_wrap_wxMenuItem_Check(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 RD |
9735 | PyObject * _resultobj; |
9736 | wxMenuItem * _arg0; | |
b1462dfa | 9737 | bool _arg1 = (bool ) TRUE; |
1d99702e | 9738 | PyObject * _argo0 = 0; |
b1462dfa RD |
9739 | int tempbool1 = (int) TRUE; |
9740 | char *_kwnames[] = { "self","check", NULL }; | |
cf694132 RD |
9741 | |
9742 | self = self; | |
b1462dfa | 9743 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxMenuItem_Check",_kwnames,&_argo0,&tempbool1)) |
cf694132 | 9744 | return NULL; |
1d99702e RD |
9745 | if (_argo0) { |
9746 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9747 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9748 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_Check. Expected _wxMenuItem_p."); |
cf694132 RD |
9749 | return NULL; |
9750 | } | |
9751 | } | |
b1462dfa | 9752 | _arg1 = (bool ) tempbool1; |
cf694132 RD |
9753 | { |
9754 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9755 | wxMenuItem_Check(_arg0,_arg1); |
cf694132 RD |
9756 | |
9757 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9758 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
9759 | } Py_INCREF(Py_None); |
9760 | _resultobj = Py_None; | |
9761 | return _resultobj; | |
9762 | } | |
9763 | ||
b1462dfa RD |
9764 | #define wxMenuItem_IsChecked(_swigobj) (_swigobj->IsChecked()) |
9765 | static PyObject *_wrap_wxMenuItem_IsChecked(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2abc0a0f | 9766 | PyObject * _resultobj; |
b1462dfa | 9767 | bool _result; |
2abc0a0f | 9768 | wxMenuItem * _arg0; |
2abc0a0f | 9769 | PyObject * _argo0 = 0; |
b1462dfa | 9770 | char *_kwnames[] = { "self", NULL }; |
2abc0a0f RD |
9771 | |
9772 | self = self; | |
b1462dfa | 9773 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_IsChecked",_kwnames,&_argo0)) |
2abc0a0f RD |
9774 | return NULL; |
9775 | if (_argo0) { | |
9776 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9777 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9778 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsChecked. Expected _wxMenuItem_p."); |
2abc0a0f RD |
9779 | return NULL; |
9780 | } | |
9781 | } | |
2abc0a0f RD |
9782 | { |
9783 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9784 | _result = (bool )wxMenuItem_IsChecked(_arg0); |
2abc0a0f RD |
9785 | |
9786 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9787 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9788 | } _resultobj = Py_BuildValue("i",_result); |
2abc0a0f RD |
9789 | return _resultobj; |
9790 | } | |
9791 | ||
b1462dfa RD |
9792 | #define wxMenuItem_Toggle(_swigobj) (_swigobj->Toggle()) |
9793 | static PyObject *_wrap_wxMenuItem_Toggle(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2abc0a0f | 9794 | PyObject * _resultobj; |
2abc0a0f RD |
9795 | wxMenuItem * _arg0; |
9796 | PyObject * _argo0 = 0; | |
9797 | char *_kwnames[] = { "self", NULL }; | |
9798 | ||
9799 | self = self; | |
b1462dfa | 9800 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_Toggle",_kwnames,&_argo0)) |
2abc0a0f RD |
9801 | return NULL; |
9802 | if (_argo0) { | |
9803 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9804 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9805 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_Toggle. Expected _wxMenuItem_p."); |
2abc0a0f RD |
9806 | return NULL; |
9807 | } | |
9808 | } | |
9809 | { | |
9810 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9811 | wxMenuItem_Toggle(_arg0); |
2abc0a0f RD |
9812 | |
9813 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9814 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
9815 | } Py_INCREF(Py_None); |
9816 | _resultobj = Py_None; | |
2abc0a0f RD |
9817 | return _resultobj; |
9818 | } | |
9819 | ||
b1462dfa RD |
9820 | #define wxMenuItem_SetHelp(_swigobj,_swigarg0) (_swigobj->SetHelp(_swigarg0)) |
9821 | static PyObject *_wrap_wxMenuItem_SetHelp(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 RD |
9822 | PyObject * _resultobj; |
9823 | wxMenuItem * _arg0; | |
b1462dfa | 9824 | wxString * _arg1; |
1d99702e | 9825 | PyObject * _argo0 = 0; |
b1462dfa RD |
9826 | PyObject * _obj1 = 0; |
9827 | char *_kwnames[] = { "self","str", NULL }; | |
cf694132 RD |
9828 | |
9829 | self = self; | |
b1462dfa | 9830 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetHelp",_kwnames,&_argo0,&_obj1)) |
cf694132 | 9831 | return NULL; |
1d99702e RD |
9832 | if (_argo0) { |
9833 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9834 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9835 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetHelp. Expected _wxMenuItem_p."); |
cf694132 RD |
9836 | return NULL; |
9837 | } | |
9838 | } | |
b1462dfa | 9839 | { |
185d7c3e RD |
9840 | #if PYTHON_API_VERSION >= 1009 |
9841 | char* tmpPtr; int tmpSize; | |
9842 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 9843 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
9844 | return NULL; |
9845 | } | |
9846 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
9847 | return NULL; | |
9848 | _arg1 = new wxString(tmpPtr, tmpSize); | |
9849 | #else | |
b1462dfa RD |
9850 | if (!PyString_Check(_obj1)) { |
9851 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
cf694132 | 9852 | return NULL; |
cf694132 | 9853 | } |
185d7c3e RD |
9854 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
9855 | #endif | |
b1462dfa | 9856 | } |
cf694132 RD |
9857 | { |
9858 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9859 | wxMenuItem_SetHelp(_arg0,*_arg1); |
cf694132 RD |
9860 | |
9861 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9862 | if (PyErr_Occurred()) return NULL; |
cf694132 | 9863 | } Py_INCREF(Py_None); |
8ab979d7 | 9864 | _resultobj = Py_None; |
b1462dfa RD |
9865 | { |
9866 | if (_obj1) | |
9867 | delete _arg1; | |
9868 | } | |
8ab979d7 RD |
9869 | return _resultobj; |
9870 | } | |
9871 | ||
b1462dfa RD |
9872 | #define wxMenuItem_GetHelp(_swigobj) (_swigobj->GetHelp()) |
9873 | static PyObject *_wrap_wxMenuItem_GetHelp(PyObject *self, PyObject *args, PyObject *kwargs) { | |
be4d9c1f | 9874 | PyObject * _resultobj; |
b1462dfa | 9875 | wxString * _result; |
be4d9c1f | 9876 | wxMenuItem * _arg0; |
1d99702e | 9877 | PyObject * _argo0 = 0; |
efc5f224 | 9878 | char *_kwnames[] = { "self", NULL }; |
be4d9c1f RD |
9879 | |
9880 | self = self; | |
b1462dfa | 9881 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetHelp",_kwnames,&_argo0)) |
be4d9c1f | 9882 | return NULL; |
1d99702e RD |
9883 | if (_argo0) { |
9884 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9885 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9886 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetHelp. Expected _wxMenuItem_p."); |
be4d9c1f RD |
9887 | return NULL; |
9888 | } | |
9889 | } | |
cf694132 RD |
9890 | { |
9891 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa RD |
9892 | const wxString & _result_ref = wxMenuItem_GetHelp(_arg0); |
9893 | _result = (wxString *) &_result_ref; | |
cf694132 RD |
9894 | |
9895 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9896 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9897 | }{ |
eec92d76 | 9898 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
b1462dfa | 9899 | } |
be4d9c1f RD |
9900 | return _resultobj; |
9901 | } | |
9902 | ||
b1462dfa RD |
9903 | #define wxMenuItem_GetAccel(_swigobj) (_swigobj->GetAccel()) |
9904 | static PyObject *_wrap_wxMenuItem_GetAccel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2abc0a0f | 9905 | PyObject * _resultobj; |
b1462dfa | 9906 | wxAcceleratorEntry * _result; |
2abc0a0f | 9907 | wxMenuItem * _arg0; |
2abc0a0f | 9908 | PyObject * _argo0 = 0; |
b1462dfa RD |
9909 | char *_kwnames[] = { "self", NULL }; |
9910 | char _ptemp[128]; | |
2abc0a0f RD |
9911 | |
9912 | self = self; | |
b1462dfa | 9913 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetAccel",_kwnames,&_argo0)) |
2abc0a0f RD |
9914 | return NULL; |
9915 | if (_argo0) { | |
9916 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9917 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9918 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetAccel. Expected _wxMenuItem_p."); |
2abc0a0f RD |
9919 | return NULL; |
9920 | } | |
9921 | } | |
2abc0a0f RD |
9922 | { |
9923 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9924 | _result = (wxAcceleratorEntry *)wxMenuItem_GetAccel(_arg0); |
2abc0a0f RD |
9925 | |
9926 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9927 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
9928 | } if (_result) { |
9929 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxAcceleratorEntry_p"); | |
9930 | _resultobj = Py_BuildValue("s",_ptemp); | |
9931 | } else { | |
9932 | Py_INCREF(Py_None); | |
9933 | _resultobj = Py_None; | |
9934 | } | |
2abc0a0f RD |
9935 | return _resultobj; |
9936 | } | |
9937 | ||
b1462dfa RD |
9938 | #define wxMenuItem_SetAccel(_swigobj,_swigarg0) (_swigobj->SetAccel(_swigarg0)) |
9939 | static PyObject *_wrap_wxMenuItem_SetAccel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2abc0a0f RD |
9940 | PyObject * _resultobj; |
9941 | wxMenuItem * _arg0; | |
b1462dfa | 9942 | wxAcceleratorEntry * _arg1; |
2abc0a0f RD |
9943 | PyObject * _argo0 = 0; |
9944 | PyObject * _argo1 = 0; | |
b1462dfa | 9945 | char *_kwnames[] = { "self","accel", NULL }; |
2abc0a0f RD |
9946 | |
9947 | self = self; | |
b1462dfa | 9948 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetAccel",_kwnames,&_argo0,&_argo1)) |
2abc0a0f RD |
9949 | return NULL; |
9950 | if (_argo0) { | |
9951 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9952 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9953 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetAccel. Expected _wxMenuItem_p."); |
2abc0a0f RD |
9954 | return NULL; |
9955 | } | |
9956 | } | |
9957 | if (_argo1) { | |
9958 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
b1462dfa RD |
9959 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxAcceleratorEntry_p")) { |
9960 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenuItem_SetAccel. Expected _wxAcceleratorEntry_p."); | |
2abc0a0f RD |
9961 | return NULL; |
9962 | } | |
9963 | } | |
9964 | { | |
9965 | wxPy_BEGIN_ALLOW_THREADS; | |
b1462dfa | 9966 | wxMenuItem_SetAccel(_arg0,_arg1); |
2abc0a0f RD |
9967 | |
9968 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 9969 | if (PyErr_Occurred()) return NULL; |
2abc0a0f RD |
9970 | } Py_INCREF(Py_None); |
9971 | _resultobj = Py_None; | |
9972 | return _resultobj; | |
9973 | } | |
9974 | ||
1b62f00d RD |
9975 | static PyObject *_wrap_wxMenuItem_GetLabelFromText(PyObject *self, PyObject *args, PyObject *kwargs) { |
9976 | PyObject * _resultobj; | |
9977 | wxString * _result; | |
9978 | wxString * _arg0; | |
9979 | PyObject * _obj0 = 0; | |
9980 | char *_kwnames[] = { "text", NULL }; | |
9981 | ||
9982 | self = self; | |
9983 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetLabelFromText",_kwnames,&_obj0)) | |
9984 | return NULL; | |
9985 | { | |
9986 | #if PYTHON_API_VERSION >= 1009 | |
9987 | char* tmpPtr; int tmpSize; | |
9988 | if (!PyString_Check(_obj0) && !PyUnicode_Check(_obj0)) { | |
794c5cb1 | 9989 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
1b62f00d RD |
9990 | return NULL; |
9991 | } | |
9992 | if (PyString_AsStringAndSize(_obj0, &tmpPtr, &tmpSize) == -1) | |
9993 | return NULL; | |
9994 | _arg0 = new wxString(tmpPtr, tmpSize); | |
9995 | #else | |
9996 | if (!PyString_Check(_obj0)) { | |
9997 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9998 | return NULL; | |
9999 | } | |
10000 | _arg0 = new wxString(PyString_AS_STRING(_obj0), PyString_GET_SIZE(_obj0)); | |
10001 | #endif | |
10002 | } | |
10003 | { | |
10004 | wxPy_BEGIN_ALLOW_THREADS; | |
10005 | _result = new wxString (wxMenuItem::GetLabelFromText(*_arg0)); | |
10006 | ||
10007 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10008 | if (PyErr_Occurred()) return NULL; |
1b62f00d RD |
10009 | }{ |
10010 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); | |
10011 | } | |
10012 | { | |
10013 | if (_obj0) | |
10014 | delete _arg0; | |
10015 | } | |
10016 | { | |
10017 | delete _result; | |
10018 | } | |
10019 | return _resultobj; | |
10020 | } | |
10021 | ||
f3d9dc1d RD |
10022 | #define wxMenuItem_SetFont(_swigobj,_swigarg0) (_swigobj->SetFont(_swigarg0)) |
10023 | static PyObject *_wrap_wxMenuItem_SetFont(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10024 | PyObject * _resultobj; | |
10025 | wxMenuItem * _arg0; | |
10026 | wxFont * _arg1; | |
10027 | PyObject * _argo0 = 0; | |
10028 | PyObject * _argo1 = 0; | |
10029 | char *_kwnames[] = { "self","font", NULL }; | |
10030 | ||
10031 | self = self; | |
10032 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetFont",_kwnames,&_argo0,&_argo1)) | |
10033 | return NULL; | |
10034 | if (_argo0) { | |
10035 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10036 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10037 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetFont. Expected _wxMenuItem_p."); | |
10038 | return NULL; | |
10039 | } | |
10040 | } | |
10041 | if (_argo1) { | |
10042 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
10043 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxFont_p")) { | |
10044 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenuItem_SetFont. Expected _wxFont_p."); | |
10045 | return NULL; | |
10046 | } | |
10047 | } | |
10048 | { | |
10049 | wxPy_BEGIN_ALLOW_THREADS; | |
10050 | wxMenuItem_SetFont(_arg0,*_arg1); | |
10051 | ||
10052 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10053 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10054 | } Py_INCREF(Py_None); |
10055 | _resultobj = Py_None; | |
10056 | return _resultobj; | |
10057 | } | |
10058 | ||
10059 | #define wxMenuItem_GetFont(_swigobj) (_swigobj->GetFont()) | |
10060 | static PyObject *_wrap_wxMenuItem_GetFont(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10061 | PyObject * _resultobj; | |
10062 | wxFont * _result; | |
10063 | wxMenuItem * _arg0; | |
10064 | PyObject * _argo0 = 0; | |
10065 | char *_kwnames[] = { "self", NULL }; | |
10066 | char _ptemp[128]; | |
10067 | ||
10068 | self = self; | |
10069 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetFont",_kwnames,&_argo0)) | |
10070 | return NULL; | |
10071 | if (_argo0) { | |
10072 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10073 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10074 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetFont. Expected _wxMenuItem_p."); | |
10075 | return NULL; | |
10076 | } | |
10077 | } | |
10078 | { | |
10079 | wxPy_BEGIN_ALLOW_THREADS; | |
10080 | wxFont & _result_ref = wxMenuItem_GetFont(_arg0); | |
10081 | _result = (wxFont *) &_result_ref; | |
10082 | ||
10083 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10084 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10085 | } if (_result) { |
10086 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxFont_p"); | |
10087 | _resultobj = Py_BuildValue("s",_ptemp); | |
10088 | } else { | |
10089 | Py_INCREF(Py_None); | |
10090 | _resultobj = Py_None; | |
10091 | } | |
10092 | return _resultobj; | |
10093 | } | |
10094 | ||
10095 | #define wxMenuItem_SetTextColour(_swigobj,_swigarg0) (_swigobj->SetTextColour(_swigarg0)) | |
10096 | static PyObject *_wrap_wxMenuItem_SetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10097 | PyObject * _resultobj; | |
10098 | wxMenuItem * _arg0; | |
10099 | wxColour * _arg1; | |
10100 | PyObject * _argo0 = 0; | |
10101 | wxColour temp; | |
10102 | PyObject * _obj1 = 0; | |
10103 | char *_kwnames[] = { "self","colText", NULL }; | |
10104 | ||
10105 | self = self; | |
10106 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetTextColour",_kwnames,&_argo0,&_obj1)) | |
10107 | return NULL; | |
10108 | if (_argo0) { | |
10109 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10110 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10111 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetTextColour. Expected _wxMenuItem_p."); | |
10112 | return NULL; | |
10113 | } | |
10114 | } | |
10115 | { | |
10116 | _arg1 = &temp; | |
10117 | if (! wxColour_helper(_obj1, &_arg1)) | |
10118 | return NULL; | |
10119 | } | |
10120 | { | |
10121 | wxPy_BEGIN_ALLOW_THREADS; | |
10122 | wxMenuItem_SetTextColour(_arg0,*_arg1); | |
10123 | ||
10124 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10125 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10126 | } Py_INCREF(Py_None); |
10127 | _resultobj = Py_None; | |
10128 | return _resultobj; | |
10129 | } | |
10130 | ||
10131 | #define wxMenuItem_GetTextColour(_swigobj) (_swigobj->GetTextColour()) | |
10132 | static PyObject *_wrap_wxMenuItem_GetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10133 | PyObject * _resultobj; | |
10134 | wxColour * _result; | |
10135 | wxMenuItem * _arg0; | |
10136 | PyObject * _argo0 = 0; | |
10137 | char *_kwnames[] = { "self", NULL }; | |
10138 | char _ptemp[128]; | |
10139 | ||
10140 | self = self; | |
10141 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetTextColour",_kwnames,&_argo0)) | |
10142 | return NULL; | |
10143 | if (_argo0) { | |
10144 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10145 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10146 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetTextColour. Expected _wxMenuItem_p."); | |
10147 | return NULL; | |
10148 | } | |
10149 | } | |
10150 | { | |
10151 | wxPy_BEGIN_ALLOW_THREADS; | |
25832b3f | 10152 | _result = new wxColour (wxMenuItem_GetTextColour(_arg0)); |
f3d9dc1d RD |
10153 | |
10154 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10155 | if (PyErr_Occurred()) return NULL; |
25832b3f RD |
10156 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); |
10157 | _resultobj = Py_BuildValue("s",_ptemp); | |
f3d9dc1d RD |
10158 | return _resultobj; |
10159 | } | |
10160 | ||
10161 | #define wxMenuItem_SetBackgroundColour(_swigobj,_swigarg0) (_swigobj->SetBackgroundColour(_swigarg0)) | |
10162 | static PyObject *_wrap_wxMenuItem_SetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10163 | PyObject * _resultobj; | |
10164 | wxMenuItem * _arg0; | |
10165 | wxColour * _arg1; | |
10166 | PyObject * _argo0 = 0; | |
10167 | wxColour temp; | |
10168 | PyObject * _obj1 = 0; | |
10169 | char *_kwnames[] = { "self","colBack", NULL }; | |
10170 | ||
10171 | self = self; | |
10172 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetBackgroundColour",_kwnames,&_argo0,&_obj1)) | |
10173 | return NULL; | |
10174 | if (_argo0) { | |
10175 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10176 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10177 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetBackgroundColour. Expected _wxMenuItem_p."); | |
10178 | return NULL; | |
10179 | } | |
10180 | } | |
10181 | { | |
10182 | _arg1 = &temp; | |
10183 | if (! wxColour_helper(_obj1, &_arg1)) | |
10184 | return NULL; | |
10185 | } | |
10186 | { | |
10187 | wxPy_BEGIN_ALLOW_THREADS; | |
10188 | wxMenuItem_SetBackgroundColour(_arg0,*_arg1); | |
10189 | ||
10190 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10191 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10192 | } Py_INCREF(Py_None); |
10193 | _resultobj = Py_None; | |
10194 | return _resultobj; | |
10195 | } | |
10196 | ||
10197 | #define wxMenuItem_GetBackgroundColour(_swigobj) (_swigobj->GetBackgroundColour()) | |
10198 | static PyObject *_wrap_wxMenuItem_GetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10199 | PyObject * _resultobj; | |
10200 | wxColour * _result; | |
10201 | wxMenuItem * _arg0; | |
10202 | PyObject * _argo0 = 0; | |
10203 | char *_kwnames[] = { "self", NULL }; | |
10204 | char _ptemp[128]; | |
10205 | ||
10206 | self = self; | |
10207 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetBackgroundColour",_kwnames,&_argo0)) | |
10208 | return NULL; | |
10209 | if (_argo0) { | |
10210 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10211 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10212 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetBackgroundColour. Expected _wxMenuItem_p."); | |
10213 | return NULL; | |
10214 | } | |
10215 | } | |
10216 | { | |
10217 | wxPy_BEGIN_ALLOW_THREADS; | |
25832b3f | 10218 | _result = new wxColour (wxMenuItem_GetBackgroundColour(_arg0)); |
f3d9dc1d RD |
10219 | |
10220 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10221 | if (PyErr_Occurred()) return NULL; |
25832b3f RD |
10222 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); |
10223 | _resultobj = Py_BuildValue("s",_ptemp); | |
f3d9dc1d RD |
10224 | return _resultobj; |
10225 | } | |
10226 | ||
10227 | #define wxMenuItem_SetBitmaps(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetBitmaps(_swigarg0,_swigarg1)) | |
10228 | static PyObject *_wrap_wxMenuItem_SetBitmaps(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10229 | PyObject * _resultobj; | |
10230 | wxMenuItem * _arg0; | |
10231 | wxBitmap * _arg1; | |
10232 | wxBitmap * _arg2 = (wxBitmap *) &wxNullBitmap; | |
10233 | PyObject * _argo0 = 0; | |
10234 | PyObject * _argo1 = 0; | |
10235 | PyObject * _argo2 = 0; | |
10236 | char *_kwnames[] = { "self","bmpChecked","bmpUnchecked", NULL }; | |
10237 | ||
10238 | self = self; | |
10239 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|O:wxMenuItem_SetBitmaps",_kwnames,&_argo0,&_argo1,&_argo2)) | |
10240 | return NULL; | |
10241 | if (_argo0) { | |
10242 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10243 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10244 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetBitmaps. Expected _wxMenuItem_p."); | |
10245 | return NULL; | |
10246 | } | |
10247 | } | |
10248 | if (_argo1) { | |
10249 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
10250 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxBitmap_p")) { | |
10251 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenuItem_SetBitmaps. Expected _wxBitmap_p."); | |
10252 | return NULL; | |
10253 | } | |
10254 | } | |
10255 | if (_argo2) { | |
10256 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
10257 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxBitmap_p")) { | |
10258 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxMenuItem_SetBitmaps. Expected _wxBitmap_p."); | |
10259 | return NULL; | |
10260 | } | |
10261 | } | |
10262 | { | |
10263 | wxPy_BEGIN_ALLOW_THREADS; | |
10264 | wxMenuItem_SetBitmaps(_arg0,*_arg1,*_arg2); | |
10265 | ||
10266 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10267 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10268 | } Py_INCREF(Py_None); |
10269 | _resultobj = Py_None; | |
10270 | return _resultobj; | |
10271 | } | |
10272 | ||
10273 | #define wxMenuItem_SetBitmap(_swigobj,_swigarg0) (_swigobj->SetBitmap(_swigarg0)) | |
10274 | static PyObject *_wrap_wxMenuItem_SetBitmap(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10275 | PyObject * _resultobj; | |
10276 | wxMenuItem * _arg0; | |
10277 | wxBitmap * _arg1; | |
10278 | PyObject * _argo0 = 0; | |
10279 | PyObject * _argo1 = 0; | |
10280 | char *_kwnames[] = { "self","bmpChecked", NULL }; | |
10281 | ||
10282 | self = self; | |
10283 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetBitmap",_kwnames,&_argo0,&_argo1)) | |
10284 | return NULL; | |
10285 | if (_argo0) { | |
10286 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10287 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10288 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetBitmap. Expected _wxMenuItem_p."); | |
10289 | return NULL; | |
10290 | } | |
10291 | } | |
10292 | if (_argo1) { | |
10293 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
10294 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxBitmap_p")) { | |
10295 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenuItem_SetBitmap. Expected _wxBitmap_p."); | |
10296 | return NULL; | |
10297 | } | |
10298 | } | |
10299 | { | |
10300 | wxPy_BEGIN_ALLOW_THREADS; | |
10301 | wxMenuItem_SetBitmap(_arg0,*_arg1); | |
10302 | ||
10303 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10304 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10305 | } Py_INCREF(Py_None); |
10306 | _resultobj = Py_None; | |
10307 | return _resultobj; | |
10308 | } | |
10309 | ||
10310 | #define wxMenuItem_GetBitmap(_swigobj,_swigarg0) (_swigobj->GetBitmap(_swigarg0)) | |
10311 | static PyObject *_wrap_wxMenuItem_GetBitmap(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10312 | PyObject * _resultobj; | |
10313 | wxBitmap * _result; | |
10314 | wxMenuItem * _arg0; | |
10315 | bool _arg1 = (bool ) TRUE; | |
10316 | PyObject * _argo0 = 0; | |
10317 | int tempbool1 = (int) TRUE; | |
10318 | char *_kwnames[] = { "self","bChecked", NULL }; | |
10319 | char _ptemp[128]; | |
10320 | ||
10321 | self = self; | |
10322 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxMenuItem_GetBitmap",_kwnames,&_argo0,&tempbool1)) | |
10323 | return NULL; | |
10324 | if (_argo0) { | |
10325 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10326 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10327 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetBitmap. Expected _wxMenuItem_p."); | |
10328 | return NULL; | |
10329 | } | |
10330 | } | |
10331 | _arg1 = (bool ) tempbool1; | |
10332 | { | |
10333 | wxPy_BEGIN_ALLOW_THREADS; | |
10334 | const wxBitmap & _result_ref = wxMenuItem_GetBitmap(_arg0,_arg1); | |
10335 | _result = (wxBitmap *) &_result_ref; | |
10336 | ||
10337 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10338 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10339 | } if (_result) { |
10340 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxBitmap_p"); | |
10341 | _resultobj = Py_BuildValue("s",_ptemp); | |
10342 | } else { | |
10343 | Py_INCREF(Py_None); | |
10344 | _resultobj = Py_None; | |
10345 | } | |
10346 | return _resultobj; | |
10347 | } | |
10348 | ||
10349 | #define wxMenuItem_SetMarginWidth(_swigobj,_swigarg0) (_swigobj->SetMarginWidth(_swigarg0)) | |
10350 | static PyObject *_wrap_wxMenuItem_SetMarginWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10351 | PyObject * _resultobj; | |
10352 | wxMenuItem * _arg0; | |
10353 | int _arg1; | |
10354 | PyObject * _argo0 = 0; | |
10355 | char *_kwnames[] = { "self","nWidth", NULL }; | |
10356 | ||
10357 | self = self; | |
10358 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuItem_SetMarginWidth",_kwnames,&_argo0,&_arg1)) | |
10359 | return NULL; | |
10360 | if (_argo0) { | |
10361 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10362 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10363 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetMarginWidth. Expected _wxMenuItem_p."); | |
10364 | return NULL; | |
10365 | } | |
10366 | } | |
10367 | { | |
10368 | wxPy_BEGIN_ALLOW_THREADS; | |
10369 | wxMenuItem_SetMarginWidth(_arg0,_arg1); | |
10370 | ||
10371 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10372 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10373 | } Py_INCREF(Py_None); |
10374 | _resultobj = Py_None; | |
10375 | return _resultobj; | |
10376 | } | |
10377 | ||
10378 | #define wxMenuItem_GetMarginWidth(_swigobj) (_swigobj->GetMarginWidth()) | |
10379 | static PyObject *_wrap_wxMenuItem_GetMarginWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10380 | PyObject * _resultobj; | |
10381 | int _result; | |
10382 | wxMenuItem * _arg0; | |
10383 | PyObject * _argo0 = 0; | |
10384 | char *_kwnames[] = { "self", NULL }; | |
10385 | ||
10386 | self = self; | |
10387 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetMarginWidth",_kwnames,&_argo0)) | |
10388 | return NULL; | |
10389 | if (_argo0) { | |
10390 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10391 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10392 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetMarginWidth. Expected _wxMenuItem_p."); | |
10393 | return NULL; | |
10394 | } | |
10395 | } | |
10396 | { | |
10397 | wxPy_BEGIN_ALLOW_THREADS; | |
10398 | _result = (int )wxMenuItem_GetMarginWidth(_arg0); | |
10399 | ||
10400 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10401 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10402 | } _resultobj = Py_BuildValue("i",_result); |
10403 | return _resultobj; | |
10404 | } | |
10405 | ||
10406 | static PyObject *_wrap_wxMenuItem_GetDefaultMarginWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10407 | PyObject * _resultobj; | |
10408 | int _result; | |
10409 | char *_kwnames[] = { NULL }; | |
10410 | ||
10411 | self = self; | |
10412 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxMenuItem_GetDefaultMarginWidth",_kwnames)) | |
10413 | return NULL; | |
10414 | { | |
10415 | wxPy_BEGIN_ALLOW_THREADS; | |
10416 | _result = (int )wxMenuItem::GetDefaultMarginWidth(); | |
10417 | ||
10418 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10419 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10420 | } _resultobj = Py_BuildValue("i",_result); |
10421 | return _resultobj; | |
10422 | } | |
10423 | ||
10424 | #define wxMenuItem_IsOwnerDrawn(_swigobj) (_swigobj->IsOwnerDrawn()) | |
10425 | static PyObject *_wrap_wxMenuItem_IsOwnerDrawn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10426 | PyObject * _resultobj; | |
10427 | bool _result; | |
10428 | wxMenuItem * _arg0; | |
10429 | PyObject * _argo0 = 0; | |
10430 | char *_kwnames[] = { "self", NULL }; | |
10431 | ||
10432 | self = self; | |
10433 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_IsOwnerDrawn",_kwnames,&_argo0)) | |
10434 | return NULL; | |
10435 | if (_argo0) { | |
10436 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10437 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10438 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsOwnerDrawn. Expected _wxMenuItem_p."); | |
10439 | return NULL; | |
10440 | } | |
10441 | } | |
10442 | { | |
10443 | wxPy_BEGIN_ALLOW_THREADS; | |
10444 | _result = (bool )wxMenuItem_IsOwnerDrawn(_arg0); | |
10445 | ||
10446 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10447 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10448 | } _resultobj = Py_BuildValue("i",_result); |
10449 | return _resultobj; | |
10450 | } | |
10451 | ||
10452 | #define wxMenuItem_ResetOwnerDrawn(_swigobj) (_swigobj->ResetOwnerDrawn()) | |
10453 | static PyObject *_wrap_wxMenuItem_ResetOwnerDrawn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10454 | PyObject * _resultobj; | |
10455 | wxMenuItem * _arg0; | |
10456 | PyObject * _argo0 = 0; | |
10457 | char *_kwnames[] = { "self", NULL }; | |
10458 | ||
10459 | self = self; | |
10460 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_ResetOwnerDrawn",_kwnames,&_argo0)) | |
10461 | return NULL; | |
10462 | if (_argo0) { | |
10463 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10464 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10465 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_ResetOwnerDrawn. Expected _wxMenuItem_p."); | |
10466 | return NULL; | |
10467 | } | |
10468 | } | |
10469 | { | |
10470 | wxPy_BEGIN_ALLOW_THREADS; | |
10471 | wxMenuItem_ResetOwnerDrawn(_arg0); | |
10472 | ||
10473 | wxPy_END_ALLOW_THREADS; | |
493f1553 | 10474 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10475 | } Py_INCREF(Py_None); |
10476 | _resultobj = Py_None; | |
10477 | return _resultobj; | |
10478 | } | |
10479 | ||
8ab979d7 | 10480 | static PyMethodDef windowscMethods[] = { |
f3d9dc1d RD |
10481 | { "wxMenuItem_ResetOwnerDrawn", (PyCFunction) _wrap_wxMenuItem_ResetOwnerDrawn, METH_VARARGS | METH_KEYWORDS }, |
10482 | { "wxMenuItem_IsOwnerDrawn", (PyCFunction) _wrap_wxMenuItem_IsOwnerDrawn, METH_VARARGS | METH_KEYWORDS }, | |
10483 | { "wxMenuItem_GetDefaultMarginWidth", (PyCFunction) _wrap_wxMenuItem_GetDefaultMarginWidth, METH_VARARGS | METH_KEYWORDS }, | |
10484 | { "wxMenuItem_GetMarginWidth", (PyCFunction) _wrap_wxMenuItem_GetMarginWidth, METH_VARARGS | METH_KEYWORDS }, | |
10485 | { "wxMenuItem_SetMarginWidth", (PyCFunction) _wrap_wxMenuItem_SetMarginWidth, METH_VARARGS | METH_KEYWORDS }, | |
10486 | { "wxMenuItem_GetBitmap", (PyCFunction) _wrap_wxMenuItem_GetBitmap, METH_VARARGS | METH_KEYWORDS }, | |
10487 | { "wxMenuItem_SetBitmap", (PyCFunction) _wrap_wxMenuItem_SetBitmap, METH_VARARGS | METH_KEYWORDS }, | |
10488 | { "wxMenuItem_SetBitmaps", (PyCFunction) _wrap_wxMenuItem_SetBitmaps, METH_VARARGS | METH_KEYWORDS }, | |
10489 | { "wxMenuItem_GetBackgroundColour", (PyCFunction) _wrap_wxMenuItem_GetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
10490 | { "wxMenuItem_SetBackgroundColour", (PyCFunction) _wrap_wxMenuItem_SetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
10491 | { "wxMenuItem_GetTextColour", (PyCFunction) _wrap_wxMenuItem_GetTextColour, METH_VARARGS | METH_KEYWORDS }, | |
10492 | { "wxMenuItem_SetTextColour", (PyCFunction) _wrap_wxMenuItem_SetTextColour, METH_VARARGS | METH_KEYWORDS }, | |
10493 | { "wxMenuItem_GetFont", (PyCFunction) _wrap_wxMenuItem_GetFont, METH_VARARGS | METH_KEYWORDS }, | |
10494 | { "wxMenuItem_SetFont", (PyCFunction) _wrap_wxMenuItem_SetFont, METH_VARARGS | METH_KEYWORDS }, | |
1b62f00d | 10495 | { "wxMenuItem_GetLabelFromText", (PyCFunction) _wrap_wxMenuItem_GetLabelFromText, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10496 | { "wxMenuItem_SetAccel", (PyCFunction) _wrap_wxMenuItem_SetAccel, METH_VARARGS | METH_KEYWORDS }, |
10497 | { "wxMenuItem_GetAccel", (PyCFunction) _wrap_wxMenuItem_GetAccel, METH_VARARGS | METH_KEYWORDS }, | |
10498 | { "wxMenuItem_GetHelp", (PyCFunction) _wrap_wxMenuItem_GetHelp, METH_VARARGS | METH_KEYWORDS }, | |
10499 | { "wxMenuItem_SetHelp", (PyCFunction) _wrap_wxMenuItem_SetHelp, METH_VARARGS | METH_KEYWORDS }, | |
10500 | { "wxMenuItem_Toggle", (PyCFunction) _wrap_wxMenuItem_Toggle, METH_VARARGS | METH_KEYWORDS }, | |
10501 | { "wxMenuItem_IsChecked", (PyCFunction) _wrap_wxMenuItem_IsChecked, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 10502 | { "wxMenuItem_Check", (PyCFunction) _wrap_wxMenuItem_Check, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa | 10503 | { "wxMenuItem_IsEnabled", (PyCFunction) _wrap_wxMenuItem_IsEnabled, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10504 | { "wxMenuItem_Enable", (PyCFunction) _wrap_wxMenuItem_Enable, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10505 | { "wxMenuItem_GetSubMenu", (PyCFunction) _wrap_wxMenuItem_GetSubMenu, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa | 10506 | { "wxMenuItem_SetSubMenu", (PyCFunction) _wrap_wxMenuItem_SetSubMenu, METH_VARARGS | METH_KEYWORDS }, |
2abc0a0f | 10507 | { "wxMenuItem_IsSubMenu", (PyCFunction) _wrap_wxMenuItem_IsSubMenu, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10508 | { "wxMenuItem_IsCheckable", (PyCFunction) _wrap_wxMenuItem_IsCheckable, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10509 | { "wxMenuItem_SetCheckable", (PyCFunction) _wrap_wxMenuItem_SetCheckable, METH_VARARGS | METH_KEYWORDS }, |
10510 | { "wxMenuItem_GetText", (PyCFunction) _wrap_wxMenuItem_GetText, METH_VARARGS | METH_KEYWORDS }, | |
10511 | { "wxMenuItem_GetLabel", (PyCFunction) _wrap_wxMenuItem_GetLabel, METH_VARARGS | METH_KEYWORDS }, | |
10512 | { "wxMenuItem_SetText", (PyCFunction) _wrap_wxMenuItem_SetText, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 10513 | { "wxMenuItem_IsSeparator", (PyCFunction) _wrap_wxMenuItem_IsSeparator, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10514 | { "wxMenuItem_GetId", (PyCFunction) _wrap_wxMenuItem_GetId, METH_VARARGS | METH_KEYWORDS }, |
10515 | { "wxMenuItem_SetId", (PyCFunction) _wrap_wxMenuItem_SetId, METH_VARARGS | METH_KEYWORDS }, | |
10516 | { "wxMenuItem_GetMenu", (PyCFunction) _wrap_wxMenuItem_GetMenu, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 10517 | { "new_wxMenuItem", (PyCFunction) _wrap_new_wxMenuItem, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa | 10518 | { "wxMenuBar_GetHelpString", (PyCFunction) _wrap_wxMenuBar_GetHelpString, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10519 | { "wxMenuBar_SetHelpString", (PyCFunction) _wrap_wxMenuBar_SetHelpString, METH_VARARGS | METH_KEYWORDS }, |
10520 | { "wxMenuBar_GetLabel", (PyCFunction) _wrap_wxMenuBar_GetLabel, METH_VARARGS | METH_KEYWORDS }, | |
2f90df85 | 10521 | { "wxMenuBar_SetLabel", (PyCFunction) _wrap_wxMenuBar_SetLabel, METH_VARARGS | METH_KEYWORDS }, |
2abc0a0f RD |
10522 | { "wxMenuBar_IsEnabled", (PyCFunction) _wrap_wxMenuBar_IsEnabled, METH_VARARGS | METH_KEYWORDS }, |
10523 | { "wxMenuBar_IsChecked", (PyCFunction) _wrap_wxMenuBar_IsChecked, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 10524 | { "wxMenuBar_Check", (PyCFunction) _wrap_wxMenuBar_Check, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10525 | { "wxMenuBar_Enable", (PyCFunction) _wrap_wxMenuBar_Enable, METH_VARARGS | METH_KEYWORDS }, |
10526 | { "wxMenuBar_FindItemById", (PyCFunction) _wrap_wxMenuBar_FindItemById, METH_VARARGS | METH_KEYWORDS }, | |
10527 | { "wxMenuBar_FindMenuItem", (PyCFunction) _wrap_wxMenuBar_FindMenuItem, METH_VARARGS | METH_KEYWORDS }, | |
3a0958b1 | 10528 | { "wxMenuBar_FindMenu", (PyCFunction) _wrap_wxMenuBar_FindMenu, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10529 | { "wxMenuBar_GetLabelTop", (PyCFunction) _wrap_wxMenuBar_GetLabelTop, METH_VARARGS | METH_KEYWORDS }, |
10530 | { "wxMenuBar_SetLabelTop", (PyCFunction) _wrap_wxMenuBar_SetLabelTop, METH_VARARGS | METH_KEYWORDS }, | |
10531 | { "wxMenuBar_EnableTop", (PyCFunction) _wrap_wxMenuBar_EnableTop, METH_VARARGS | METH_KEYWORDS }, | |
10532 | { "wxMenuBar_Remove", (PyCFunction) _wrap_wxMenuBar_Remove, METH_VARARGS | METH_KEYWORDS }, | |
10533 | { "wxMenuBar_Replace", (PyCFunction) _wrap_wxMenuBar_Replace, METH_VARARGS | METH_KEYWORDS }, | |
10534 | { "wxMenuBar_GetMenu", (PyCFunction) _wrap_wxMenuBar_GetMenu, METH_VARARGS | METH_KEYWORDS }, | |
10535 | { "wxMenuBar_GetMenuCount", (PyCFunction) _wrap_wxMenuBar_GetMenuCount, METH_VARARGS | METH_KEYWORDS }, | |
10536 | { "wxMenuBar_Insert", (PyCFunction) _wrap_wxMenuBar_Insert, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
10537 | { "wxMenuBar_Append", (PyCFunction) _wrap_wxMenuBar_Append, METH_VARARGS | METH_KEYWORDS }, |
10538 | { "new_wxMenuBar", (PyCFunction) _wrap_new_wxMenuBar, METH_VARARGS | METH_KEYWORDS }, | |
b1462dfa RD |
10539 | { "wxMenu_GetParent", (PyCFunction) _wrap_wxMenu_GetParent, METH_VARARGS | METH_KEYWORDS }, |
10540 | { "wxMenu_SetParent", (PyCFunction) _wrap_wxMenu_SetParent, METH_VARARGS | METH_KEYWORDS }, | |
10541 | { "wxMenu_IsAttached", (PyCFunction) _wrap_wxMenu_IsAttached, METH_VARARGS | METH_KEYWORDS }, | |
10542 | { "wxMenu_GetStyle", (PyCFunction) _wrap_wxMenu_GetStyle, METH_VARARGS | METH_KEYWORDS }, | |
10543 | { "wxMenu_GetInvokingWindow", (PyCFunction) _wrap_wxMenu_GetInvokingWindow, METH_VARARGS | METH_KEYWORDS }, | |
10544 | { "wxMenu_SetInvokingWindow", (PyCFunction) _wrap_wxMenu_SetInvokingWindow, METH_VARARGS | METH_KEYWORDS }, | |
10545 | { "wxMenu_GetEventHandler", (PyCFunction) _wrap_wxMenu_GetEventHandler, METH_VARARGS | METH_KEYWORDS }, | |
10546 | { "wxMenu_SetEventHandler", (PyCFunction) _wrap_wxMenu_SetEventHandler, METH_VARARGS | METH_KEYWORDS }, | |
10547 | { "wxMenu_GetMenuItems", (PyCFunction) _wrap_wxMenu_GetMenuItems, METH_VARARGS | METH_KEYWORDS }, | |
10548 | { "wxMenu_GetMenuItemCount", (PyCFunction) _wrap_wxMenu_GetMenuItemCount, METH_VARARGS | METH_KEYWORDS }, | |
10549 | { "wxMenu_DestroyItem", (PyCFunction) _wrap_wxMenu_DestroyItem, METH_VARARGS | METH_KEYWORDS }, | |
10550 | { "wxMenu_DestroyId", (PyCFunction) _wrap_wxMenu_DestroyId, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 10551 | { "wxMenu_Destroy", (PyCFunction) _wrap_wxMenu_Destroy, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10552 | { "wxMenu_RemoveItem", (PyCFunction) _wrap_wxMenu_RemoveItem, METH_VARARGS | METH_KEYWORDS }, |
10553 | { "wxMenu_Remove", (PyCFunction) _wrap_wxMenu_Remove, METH_VARARGS | METH_KEYWORDS }, | |
10554 | { "wxMenu_Insert", (PyCFunction) _wrap_wxMenu_Insert, METH_VARARGS | METH_KEYWORDS }, | |
10555 | { "wxMenu_DeleteItem", (PyCFunction) _wrap_wxMenu_DeleteItem, METH_VARARGS | METH_KEYWORDS }, | |
10556 | { "wxMenu_Delete", (PyCFunction) _wrap_wxMenu_Delete, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 10557 | { "wxMenu_UpdateUI", (PyCFunction) _wrap_wxMenu_UpdateUI, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10558 | { "wxMenu_SetHelpString", (PyCFunction) _wrap_wxMenu_SetHelpString, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10559 | { "wxMenu_GetHelpString", (PyCFunction) _wrap_wxMenu_GetHelpString, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10560 | { "wxMenu_SetLabel", (PyCFunction) _wrap_wxMenu_SetLabel, METH_VARARGS | METH_KEYWORDS }, |
10561 | { "wxMenu_GetLabel", (PyCFunction) _wrap_wxMenu_GetLabel, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
10562 | { "wxMenu_SetTitle", (PyCFunction) _wrap_wxMenu_SetTitle, METH_VARARGS | METH_KEYWORDS }, |
10563 | { "wxMenu_GetTitle", (PyCFunction) _wrap_wxMenu_GetTitle, METH_VARARGS | METH_KEYWORDS }, | |
b1462dfa | 10564 | { "wxMenu_FindItemById", (PyCFunction) _wrap_wxMenu_FindItemById, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10565 | { "wxMenu_FindItem", (PyCFunction) _wrap_wxMenu_FindItem, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa | 10566 | { "wxMenu_IsEnabled", (PyCFunction) _wrap_wxMenu_IsEnabled, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10567 | { "wxMenu_Enable", (PyCFunction) _wrap_wxMenu_Enable, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa | 10568 | { "wxMenu_IsChecked", (PyCFunction) _wrap_wxMenu_IsChecked, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10569 | { "wxMenu_Check", (PyCFunction) _wrap_wxMenu_Check, METH_VARARGS | METH_KEYWORDS }, |
10570 | { "wxMenu_Break", (PyCFunction) _wrap_wxMenu_Break, METH_VARARGS | METH_KEYWORDS }, | |
10571 | { "wxMenu_AppendSeparator", (PyCFunction) _wrap_wxMenu_AppendSeparator, METH_VARARGS | METH_KEYWORDS }, | |
10572 | { "wxMenu_AppendItem", (PyCFunction) _wrap_wxMenu_AppendItem, METH_VARARGS | METH_KEYWORDS }, | |
10573 | { "wxMenu_AppendMenu", (PyCFunction) _wrap_wxMenu_AppendMenu, METH_VARARGS | METH_KEYWORDS }, | |
10574 | { "wxMenu_Append", (PyCFunction) _wrap_wxMenu_Append, METH_VARARGS | METH_KEYWORDS }, | |
10575 | { "new_wxMenu", (PyCFunction) _wrap_new_wxMenu, METH_VARARGS | METH_KEYWORDS }, | |
d1679124 RD |
10576 | { "wxScrolledWindow_AdjustScrollbars", (PyCFunction) _wrap_wxScrolledWindow_AdjustScrollbars, METH_VARARGS | METH_KEYWORDS }, |
10577 | { "wxScrolledWindow_GetScaleY", (PyCFunction) _wrap_wxScrolledWindow_GetScaleY, METH_VARARGS | METH_KEYWORDS }, | |
10578 | { "wxScrolledWindow_GetScaleX", (PyCFunction) _wrap_wxScrolledWindow_GetScaleX, METH_VARARGS | METH_KEYWORDS }, | |
10579 | { "wxScrolledWindow_SetScale", (PyCFunction) _wrap_wxScrolledWindow_SetScale, METH_VARARGS | METH_KEYWORDS }, | |
9d8bd15f RD |
10580 | { "wxScrolledWindow_CalcUnscrolledPosition", (PyCFunction) _wrap_wxScrolledWindow_CalcUnscrolledPosition, METH_VARARGS | METH_KEYWORDS }, |
10581 | { "wxScrolledWindow_CalcScrolledPosition", (PyCFunction) _wrap_wxScrolledWindow_CalcScrolledPosition, METH_VARARGS | METH_KEYWORDS }, | |
4c9993c3 | 10582 | { "wxScrolledWindow_GetViewStart", (PyCFunction) _wrap_wxScrolledWindow_GetViewStart, METH_VARARGS | METH_KEYWORDS }, |
eb715945 | 10583 | { "wxScrolledWindow_SetTargetWindow", (PyCFunction) _wrap_wxScrolledWindow_SetTargetWindow, METH_VARARGS | METH_KEYWORDS }, |
b7e72427 | 10584 | { "wxScrolledWindow_SetScrollPageSize", (PyCFunction) _wrap_wxScrolledWindow_SetScrollPageSize, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10585 | { "wxScrolledWindow_SetScrollbars", (PyCFunction) _wrap_wxScrolledWindow_SetScrollbars, METH_VARARGS | METH_KEYWORDS }, |
10586 | { "wxScrolledWindow_Scroll", (PyCFunction) _wrap_wxScrolledWindow_Scroll, METH_VARARGS | METH_KEYWORDS }, | |
10587 | { "wxScrolledWindow_PrepareDC", (PyCFunction) _wrap_wxScrolledWindow_PrepareDC, METH_VARARGS | METH_KEYWORDS }, | |
10588 | { "wxScrolledWindow_IsRetained", (PyCFunction) _wrap_wxScrolledWindow_IsRetained, METH_VARARGS | METH_KEYWORDS }, | |
10589 | { "wxScrolledWindow_GetVirtualSize", (PyCFunction) _wrap_wxScrolledWindow_GetVirtualSize, METH_VARARGS | METH_KEYWORDS }, | |
b7e72427 | 10590 | { "wxScrolledWindow_GetTargetWindow", (PyCFunction) _wrap_wxScrolledWindow_GetTargetWindow, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10591 | { "wxScrolledWindow_GetScrollPixelsPerUnit", (PyCFunction) _wrap_wxScrolledWindow_GetScrollPixelsPerUnit, METH_VARARGS | METH_KEYWORDS }, |
b7e72427 | 10592 | { "wxScrolledWindow_GetScrollPageSize", (PyCFunction) _wrap_wxScrolledWindow_GetScrollPageSize, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10593 | { "wxScrolledWindow_EnableScrolling", (PyCFunction) _wrap_wxScrolledWindow_EnableScrolling, METH_VARARGS | METH_KEYWORDS }, |
10594 | { "new_wxScrolledWindow", (PyCFunction) _wrap_new_wxScrolledWindow, METH_VARARGS | METH_KEYWORDS }, | |
f3d9dc1d RD |
10595 | { "wxDialog_CreateButtonSizer", (PyCFunction) _wrap_wxDialog_CreateButtonSizer, METH_VARARGS | METH_KEYWORDS }, |
10596 | { "wxDialog_CreateTextSizer", (PyCFunction) _wrap_wxDialog_CreateTextSizer, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
10597 | { "wxDialog_SetReturnCode", (PyCFunction) _wrap_wxDialog_SetReturnCode, METH_VARARGS | METH_KEYWORDS }, |
10598 | { "wxDialog_GetReturnCode", (PyCFunction) _wrap_wxDialog_GetReturnCode, METH_VARARGS | METH_KEYWORDS }, | |
10599 | { "wxDialog_ShowModal", (PyCFunction) _wrap_wxDialog_ShowModal, METH_VARARGS | METH_KEYWORDS }, | |
10600 | { "wxDialog_Show", (PyCFunction) _wrap_wxDialog_Show, METH_VARARGS | METH_KEYWORDS }, | |
10601 | { "wxDialog_SetTitle", (PyCFunction) _wrap_wxDialog_SetTitle, METH_VARARGS | METH_KEYWORDS }, | |
10602 | { "wxDialog_IsModal", (PyCFunction) _wrap_wxDialog_IsModal, METH_VARARGS | METH_KEYWORDS }, | |
10603 | { "wxDialog_SetModal", (PyCFunction) _wrap_wxDialog_SetModal, METH_VARARGS | METH_KEYWORDS }, | |
10604 | { "wxDialog_IsIconized", (PyCFunction) _wrap_wxDialog_IsIconized, METH_VARARGS | METH_KEYWORDS }, | |
10605 | { "wxDialog_Iconize", (PyCFunction) _wrap_wxDialog_Iconize, METH_VARARGS | METH_KEYWORDS }, | |
10606 | { "wxDialog_GetTitle", (PyCFunction) _wrap_wxDialog_GetTitle, METH_VARARGS | METH_KEYWORDS }, | |
10607 | { "wxDialog_EndModal", (PyCFunction) _wrap_wxDialog_EndModal, METH_VARARGS | METH_KEYWORDS }, | |
10608 | { "wxDialog_Centre", (PyCFunction) _wrap_wxDialog_Centre, METH_VARARGS | METH_KEYWORDS }, | |
10609 | { "new_wxDialog", (PyCFunction) _wrap_new_wxDialog, METH_VARARGS | METH_KEYWORDS }, | |
10610 | { "wxPanel_SetDefaultItem", (PyCFunction) _wrap_wxPanel_SetDefaultItem, METH_VARARGS | METH_KEYWORDS }, | |
10611 | { "wxPanel_GetDefaultItem", (PyCFunction) _wrap_wxPanel_GetDefaultItem, METH_VARARGS | METH_KEYWORDS }, | |
10612 | { "wxPanel_InitDialog", (PyCFunction) _wrap_wxPanel_InitDialog, METH_VARARGS | METH_KEYWORDS }, | |
10613 | { "new_wxPanel", (PyCFunction) _wrap_new_wxPanel, METH_VARARGS | METH_KEYWORDS }, | |
4f3449b4 RD |
10614 | { "wxWindow_SetHelpText", (PyCFunction) _wrap_wxWindow_SetHelpText, METH_VARARGS | METH_KEYWORDS }, |
10615 | { "wxWindow_GetHelpText", (PyCFunction) _wrap_wxWindow_GetHelpText, METH_VARARGS | METH_KEYWORDS }, | |
3a0958b1 RD |
10616 | { "wxWindow_Thaw", (PyCFunction) _wrap_wxWindow_Thaw, METH_VARARGS | METH_KEYWORDS }, |
10617 | { "wxWindow_Freeze", (PyCFunction) _wrap_wxWindow_Freeze, METH_VARARGS | METH_KEYWORDS }, | |
a1df7a95 RD |
10618 | { "wxWindow_GetCaret", (PyCFunction) _wrap_wxWindow_GetCaret, METH_VARARGS | METH_KEYWORDS }, |
10619 | { "wxWindow_SetCaret", (PyCFunction) _wrap_wxWindow_SetCaret, METH_VARARGS | METH_KEYWORDS }, | |
694759cf | 10620 | { "wxWindow_GetBestSize", (PyCFunction) _wrap_wxWindow_GetBestSize, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10621 | { "wxWindow_GetDropTarget", (PyCFunction) _wrap_wxWindow_GetDropTarget, METH_VARARGS | METH_KEYWORDS }, |
10622 | { "wxWindow_SetDropTarget", (PyCFunction) _wrap_wxWindow_SetDropTarget, METH_VARARGS | METH_KEYWORDS }, | |
2f90df85 RD |
10623 | { "wxWindow_SetValidator", (PyCFunction) _wrap_wxWindow_SetValidator, METH_VARARGS | METH_KEYWORDS }, |
10624 | { "wxWindow_GetValidator", (PyCFunction) _wrap_wxWindow_GetValidator, METH_VARARGS | METH_KEYWORDS }, | |
f6bcfd97 | 10625 | { "wxWindow_GetSizer", (PyCFunction) _wrap_wxWindow_GetSizer, METH_VARARGS | METH_KEYWORDS }, |
2f90df85 | 10626 | { "wxWindow_SetSizer", (PyCFunction) _wrap_wxWindow_SetSizer, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10627 | { "wxWindow_GetToolTip", (PyCFunction) _wrap_wxWindow_GetToolTip, METH_VARARGS | METH_KEYWORDS }, |
10628 | { "wxWindow_SetToolTip", (PyCFunction) _wrap_wxWindow_SetToolTip, METH_VARARGS | METH_KEYWORDS }, | |
10629 | { "wxWindow_SetToolTipString", (PyCFunction) _wrap_wxWindow_SetToolTipString, METH_VARARGS | METH_KEYWORDS }, | |
10630 | { "wxWindow_ConvertPixelSizeToDialog", (PyCFunction) _wrap_wxWindow_ConvertPixelSizeToDialog, METH_VARARGS | METH_KEYWORDS }, | |
10631 | { "wxWindow_ConvertPixelPointToDialog", (PyCFunction) _wrap_wxWindow_ConvertPixelPointToDialog, METH_VARARGS | METH_KEYWORDS }, | |
10632 | { "wxWindow_DLG_SZE", (PyCFunction) _wrap_wxWindow_ConvertDialogSizeToPixels, METH_VARARGS | METH_KEYWORDS }, | |
10633 | { "wxWindow_DLG_PNT", (PyCFunction) _wrap_wxWindow_ConvertDialogPointToPixels, METH_VARARGS | METH_KEYWORDS }, | |
10634 | { "wxWindow_ConvertDialogSizeToPixels", (PyCFunction) _wrap_wxWindow_ConvertDialogSizeToPixels, METH_VARARGS | METH_KEYWORDS }, | |
10635 | { "wxWindow_ConvertDialogPointToPixels", (PyCFunction) _wrap_wxWindow_ConvertDialogPointToPixels, METH_VARARGS | METH_KEYWORDS }, | |
10636 | { "wxWindow_WarpPointer", (PyCFunction) _wrap_wxWindow_WarpPointer, METH_VARARGS | METH_KEYWORDS }, | |
10637 | { "wxWindow_Validate", (PyCFunction) _wrap_wxWindow_Validate, METH_VARARGS | METH_KEYWORDS }, | |
10638 | { "wxWindow_TransferDataToWindow", (PyCFunction) _wrap_wxWindow_TransferDataToWindow, METH_VARARGS | METH_KEYWORDS }, | |
10639 | { "wxWindow_TransferDataFromWindow", (PyCFunction) _wrap_wxWindow_TransferDataFromWindow, METH_VARARGS | METH_KEYWORDS }, | |
10640 | { "wxWindow_Show", (PyCFunction) _wrap_wxWindow_Show, METH_VARARGS | METH_KEYWORDS }, | |
10641 | { "wxWindow_SetTitle", (PyCFunction) _wrap_wxWindow_SetTitle, METH_VARARGS | METH_KEYWORDS }, | |
83b18bab | 10642 | { "wxWindow_SetExtraStyle", (PyCFunction) _wrap_wxWindow_SetExtraStyle, METH_VARARGS | METH_KEYWORDS }, |
1afc06c2 | 10643 | { "wxWindow_SetEventHandler", (PyCFunction) _wrap_wxWindow_SetEventHandler, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10644 | { "wxWindow_SetCursor", (PyCFunction) _wrap_wxWindow_SetCursor, METH_VARARGS | METH_KEYWORDS }, |
10645 | { "wxWindow_SetClientSize", (PyCFunction) _wrap_wxWindow_SetClientSize, METH_VARARGS | METH_KEYWORDS }, | |
10646 | { "wxWindow_SetClientSizeWH", (PyCFunction) _wrap_wxWindow_SetClientSizeWH, METH_VARARGS | METH_KEYWORDS }, | |
10647 | { "wxWindow_SetSizeHints", (PyCFunction) _wrap_wxWindow_SetSizeHints, METH_VARARGS | METH_KEYWORDS }, | |
dbbb98cd | 10648 | { "wxWindow_SetRect", (PyCFunction) _wrap_wxWindow_SetRect, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10649 | { "wxWindow_SetPosition", (PyCFunction) _wrap_wxWindow_SetPosition, METH_VARARGS | METH_KEYWORDS }, |
10650 | { "wxWindow_SetSize", (PyCFunction) _wrap_wxWindow_SetSize, METH_VARARGS | METH_KEYWORDS }, | |
10651 | { "wxWindow_SetDimensions", (PyCFunction) _wrap_wxWindow_SetDimensions, METH_VARARGS | METH_KEYWORDS }, | |
10652 | { "wxWindow_SetScrollPos", (PyCFunction) _wrap_wxWindow_SetScrollPos, METH_VARARGS | METH_KEYWORDS }, | |
10653 | { "wxWindow_SetScrollbar", (PyCFunction) _wrap_wxWindow_SetScrollbar, METH_VARARGS | METH_KEYWORDS }, | |
10654 | { "wxWindow_SetName", (PyCFunction) _wrap_wxWindow_SetName, METH_VARARGS | METH_KEYWORDS }, | |
10655 | { "wxWindow_SetId", (PyCFunction) _wrap_wxWindow_SetId, METH_VARARGS | METH_KEYWORDS }, | |
10656 | { "wxWindow_SetForegroundColour", (PyCFunction) _wrap_wxWindow_SetForegroundColour, METH_VARARGS | METH_KEYWORDS }, | |
10657 | { "wxWindow_SetFont", (PyCFunction) _wrap_wxWindow_SetFont, METH_VARARGS | METH_KEYWORDS }, | |
2f90df85 | 10658 | { "wxWindow_AcceptsFocus", (PyCFunction) _wrap_wxWindow_AcceptsFocus, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10659 | { "wxWindow_SetFocus", (PyCFunction) _wrap_wxWindow_SetFocus, METH_VARARGS | METH_KEYWORDS }, |
2f90df85 | 10660 | { "wxWindow_UnsetConstraints", (PyCFunction) _wrap_wxWindow_UnsetConstraints, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10661 | { "wxWindow_SetConstraints", (PyCFunction) _wrap_wxWindow_SetConstraints, METH_VARARGS | METH_KEYWORDS }, |
10662 | { "wxWindow_SetBackgroundColour", (PyCFunction) _wrap_wxWindow_SetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
9d8bd15f | 10663 | { "wxWindow_GetAutoLayout", (PyCFunction) _wrap_wxWindow_GetAutoLayout, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10664 | { "wxWindow_SetAutoLayout", (PyCFunction) _wrap_wxWindow_SetAutoLayout, METH_VARARGS | METH_KEYWORDS }, |
10665 | { "wxWindow_SetAcceleratorTable", (PyCFunction) _wrap_wxWindow_SetAcceleratorTable, METH_VARARGS | METH_KEYWORDS }, | |
10666 | { "wxWindow_ScrollWindow", (PyCFunction) _wrap_wxWindow_ScrollWindow, METH_VARARGS | METH_KEYWORDS }, | |
10667 | { "wxWindow_ScreenToClient", (PyCFunction) _wrap_wxWindow_ScreenToClient, METH_VARARGS | METH_KEYWORDS }, | |
10668 | { "wxWindow_ScreenToClientXY", (PyCFunction) _wrap_wxWindow_ScreenToClientXY, METH_VARARGS | METH_KEYWORDS }, | |
10669 | { "wxWindow_Reparent", (PyCFunction) _wrap_wxWindow_Reparent, METH_VARARGS | METH_KEYWORDS }, | |
b7e72427 | 10670 | { "wxWindow_RemoveChild", (PyCFunction) _wrap_wxWindow_RemoveChild, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10671 | { "wxWindow_ReleaseMouse", (PyCFunction) _wrap_wxWindow_ReleaseMouse, METH_VARARGS | METH_KEYWORDS }, |
10672 | { "wxWindow_Refresh", (PyCFunction) _wrap_wxWindow_Refresh, METH_VARARGS | METH_KEYWORDS }, | |
10673 | { "wxWindow_Raise", (PyCFunction) _wrap_wxWindow_Raise, METH_VARARGS | METH_KEYWORDS }, | |
10674 | { "wxWindow_PopupMenu", (PyCFunction) _wrap_wxWindow_PopupMenu, METH_VARARGS | METH_KEYWORDS }, | |
10675 | { "wxWindow_PopupMenuXY", (PyCFunction) _wrap_wxWindow_PopupMenuXY, METH_VARARGS | METH_KEYWORDS }, | |
1afc06c2 RD |
10676 | { "wxWindow_PushEventHandler", (PyCFunction) _wrap_wxWindow_PushEventHandler, METH_VARARGS | METH_KEYWORDS }, |
10677 | { "wxWindow_PopEventHandler", (PyCFunction) _wrap_wxWindow_PopEventHandler, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
10678 | { "wxWindow_Move", (PyCFunction) _wrap_wxWindow_Move, METH_VARARGS | METH_KEYWORDS }, |
10679 | { "wxWindow_MoveXY", (PyCFunction) _wrap_wxWindow_MoveXY, METH_VARARGS | METH_KEYWORDS }, | |
10680 | { "wxWindow_MakeModal", (PyCFunction) _wrap_wxWindow_MakeModal, METH_VARARGS | METH_KEYWORDS }, | |
10681 | { "wxWindow_Lower", (PyCFunction) _wrap_wxWindow_Lower, METH_VARARGS | METH_KEYWORDS }, | |
10682 | { "wxWindow_LoadFromResource", (PyCFunction) _wrap_wxWindow_LoadFromResource, METH_VARARGS | METH_KEYWORDS }, | |
10683 | { "wxWindow_Layout", (PyCFunction) _wrap_wxWindow_Layout, METH_VARARGS | METH_KEYWORDS }, | |
10684 | { "wxWindow_IsTopLevel", (PyCFunction) _wrap_wxWindow_IsTopLevel, METH_VARARGS | METH_KEYWORDS }, | |
10685 | { "wxWindow_IsShown", (PyCFunction) _wrap_wxWindow_IsShown, METH_VARARGS | METH_KEYWORDS }, | |
10686 | { "wxWindow_IsRetained", (PyCFunction) _wrap_wxWindow_IsRetained, METH_VARARGS | METH_KEYWORDS }, | |
1b55cabf RD |
10687 | { "wxWindow_IsExposedRect", (PyCFunction) _wrap_wxWindow_IsExposedRect, METH_VARARGS | METH_KEYWORDS }, |
10688 | { "wxWindow_IsExposedPoint", (PyCFunction) _wrap_wxWindow_IsExposedPoint, METH_VARARGS | METH_KEYWORDS }, | |
10689 | { "wxWindow_IsExposed", (PyCFunction) _wrap_wxWindow_IsExposed, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
10690 | { "wxWindow_IsEnabled", (PyCFunction) _wrap_wxWindow_IsEnabled, METH_VARARGS | METH_KEYWORDS }, |
10691 | { "wxWindow_InitDialog", (PyCFunction) _wrap_wxWindow_InitDialog, METH_VARARGS | METH_KEYWORDS }, | |
10692 | { "wxWindow_Hide", (PyCFunction) _wrap_wxWindow_Hide, METH_VARARGS | METH_KEYWORDS }, | |
f6bcfd97 BP |
10693 | { "wxWindow_SetWindowStyle", (PyCFunction) _wrap_wxWindow_SetWindowStyle, METH_VARARGS | METH_KEYWORDS }, |
10694 | { "wxWindow_SetWindowStyleFlag", (PyCFunction) _wrap_wxWindow_SetWindowStyleFlag, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
10695 | { "wxWindow_GetWindowStyleFlag", (PyCFunction) _wrap_wxWindow_GetWindowStyleFlag, METH_VARARGS | METH_KEYWORDS }, |
10696 | { "wxWindow_GetUpdateRegion", (PyCFunction) _wrap_wxWindow_GetUpdateRegion, METH_VARARGS | METH_KEYWORDS }, | |
10697 | { "wxWindow_GetTitle", (PyCFunction) _wrap_wxWindow_GetTitle, METH_VARARGS | METH_KEYWORDS }, | |
10698 | { "wxWindow_GetFullTextExtent", (PyCFunction) _wrap_wxWindow_GetFullTextExtent, METH_VARARGS | METH_KEYWORDS }, | |
10699 | { "wxWindow_GetTextExtent", (PyCFunction) _wrap_wxWindow_GetTextExtent, METH_VARARGS | METH_KEYWORDS }, | |
10700 | { "wxWindow_GetSize", (PyCFunction) _wrap_wxWindow_GetSize, METH_VARARGS | METH_KEYWORDS }, | |
10701 | { "wxWindow_GetSizeTuple", (PyCFunction) _wrap_wxWindow_GetSizeTuple, METH_VARARGS | METH_KEYWORDS }, | |
10702 | { "wxWindow_GetScrollRange", (PyCFunction) _wrap_wxWindow_GetScrollRange, METH_VARARGS | METH_KEYWORDS }, | |
10703 | { "wxWindow_GetScrollPos", (PyCFunction) _wrap_wxWindow_GetScrollPos, METH_VARARGS | METH_KEYWORDS }, | |
10704 | { "wxWindow_GetScrollThumb", (PyCFunction) _wrap_wxWindow_GetScrollThumb, METH_VARARGS | METH_KEYWORDS }, | |
10705 | { "wxWindow_GetRect", (PyCFunction) _wrap_wxWindow_GetRect, METH_VARARGS | METH_KEYWORDS }, | |
10706 | { "wxWindow_GetPosition", (PyCFunction) _wrap_wxWindow_GetPosition, METH_VARARGS | METH_KEYWORDS }, | |
10707 | { "wxWindow_GetPositionTuple", (PyCFunction) _wrap_wxWindow_GetPositionTuple, METH_VARARGS | METH_KEYWORDS }, | |
10708 | { "wxWindow_GetParent", (PyCFunction) _wrap_wxWindow_GetParent, METH_VARARGS | METH_KEYWORDS }, | |
10709 | { "wxWindow_GetName", (PyCFunction) _wrap_wxWindow_GetName, METH_VARARGS | METH_KEYWORDS }, | |
10710 | { "wxWindow_SetLabel", (PyCFunction) _wrap_wxWindow_SetLabel, METH_VARARGS | METH_KEYWORDS }, | |
10711 | { "wxWindow_GetLabel", (PyCFunction) _wrap_wxWindow_GetLabel, METH_VARARGS | METH_KEYWORDS }, | |
10712 | { "wxWindow_GetId", (PyCFunction) _wrap_wxWindow_GetId, METH_VARARGS | METH_KEYWORDS }, | |
2abc0a0f | 10713 | { "wxWindow_GetHandle", (PyCFunction) _wrap_wxWindow_GetHandle, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10714 | { "wxWindow_GetGrandParent", (PyCFunction) _wrap_wxWindow_GetGrandParent, METH_VARARGS | METH_KEYWORDS }, |
10715 | { "wxWindow_GetForegroundColour", (PyCFunction) _wrap_wxWindow_GetForegroundColour, METH_VARARGS | METH_KEYWORDS }, | |
10716 | { "wxWindow_GetFont", (PyCFunction) _wrap_wxWindow_GetFont, METH_VARARGS | METH_KEYWORDS }, | |
1afc06c2 | 10717 | { "wxWindow_GetEventHandler", (PyCFunction) _wrap_wxWindow_GetEventHandler, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10718 | { "wxWindow_GetConstraints", (PyCFunction) _wrap_wxWindow_GetConstraints, METH_VARARGS | METH_KEYWORDS }, |
10719 | { "wxWindow_GetClientSize", (PyCFunction) _wrap_wxWindow_GetClientSize, METH_VARARGS | METH_KEYWORDS }, | |
10720 | { "wxWindow_GetClientSizeTuple", (PyCFunction) _wrap_wxWindow_GetClientSizeTuple, METH_VARARGS | METH_KEYWORDS }, | |
10721 | { "wxWindow_GetCharWidth", (PyCFunction) _wrap_wxWindow_GetCharWidth, METH_VARARGS | METH_KEYWORDS }, | |
10722 | { "wxWindow_GetCharHeight", (PyCFunction) _wrap_wxWindow_GetCharHeight, METH_VARARGS | METH_KEYWORDS }, | |
d426c97e | 10723 | { "wxWindow_GetChildren", (PyCFunction) _wrap_wxWindow_GetChildren, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10724 | { "wxWindow_GetBackgroundColour", (PyCFunction) _wrap_wxWindow_GetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, |
10725 | { "wxWindow_Fit", (PyCFunction) _wrap_wxWindow_Fit, METH_VARARGS | METH_KEYWORDS }, | |
10726 | { "wxWindow_FindWindowByName", (PyCFunction) _wrap_wxWindow_FindWindowByName, METH_VARARGS | METH_KEYWORDS }, | |
10727 | { "wxWindow_FindWindowById", (PyCFunction) _wrap_wxWindow_FindWindowById, METH_VARARGS | METH_KEYWORDS }, | |
10728 | { "wxWindow_Enable", (PyCFunction) _wrap_wxWindow_Enable, METH_VARARGS | METH_KEYWORDS }, | |
10729 | { "wxWindow_DragAcceptFiles", (PyCFunction) _wrap_wxWindow_DragAcceptFiles, METH_VARARGS | METH_KEYWORDS }, | |
ac346f50 | 10730 | { "wxWindow_IsBeingDeleted", (PyCFunction) _wrap_wxWindow_IsBeingDeleted, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10731 | { "wxWindow_DestroyChildren", (PyCFunction) _wrap_wxWindow_DestroyChildren, METH_VARARGS | METH_KEYWORDS }, |
10732 | { "wxWindow_Destroy", (PyCFunction) _wrap_wxWindow_Destroy, METH_VARARGS | METH_KEYWORDS }, | |
10733 | { "wxWindow_Close", (PyCFunction) _wrap_wxWindow_Close, METH_VARARGS | METH_KEYWORDS }, | |
10734 | { "wxWindow_ClientToScreen", (PyCFunction) _wrap_wxWindow_ClientToScreen, METH_VARARGS | METH_KEYWORDS }, | |
10735 | { "wxWindow_ClientToScreenXY", (PyCFunction) _wrap_wxWindow_ClientToScreenXY, METH_VARARGS | METH_KEYWORDS }, | |
d56cebe7 | 10736 | { "wxWindow_Clear", (PyCFunction) _wrap_wxWindow_Clear, METH_VARARGS | METH_KEYWORDS }, |
3ca6a5f0 BP |
10737 | { "wxWindow_CenterOnScreen", (PyCFunction) _wrap_wxWindow_CenterOnScreen, METH_VARARGS | METH_KEYWORDS }, |
10738 | { "wxWindow_CentreOnScreen", (PyCFunction) _wrap_wxWindow_CentreOnScreen, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
10739 | { "wxWindow_CenterOnParent", (PyCFunction) _wrap_wxWindow_CenterOnParent, METH_VARARGS | METH_KEYWORDS }, |
10740 | { "wxWindow_CentreOnParent", (PyCFunction) _wrap_wxWindow_CentreOnParent, METH_VARARGS | METH_KEYWORDS }, | |
10741 | { "wxWindow_Centre", (PyCFunction) _wrap_wxWindow_Centre, METH_VARARGS | METH_KEYWORDS }, | |
10742 | { "wxWindow_Center", (PyCFunction) _wrap_wxWindow_Center, METH_VARARGS | METH_KEYWORDS }, | |
10743 | { "wxWindow_CaptureMouse", (PyCFunction) _wrap_wxWindow_CaptureMouse, METH_VARARGS | METH_KEYWORDS }, | |
10744 | { "new_wxWindow", (PyCFunction) _wrap_new_wxWindow, METH_VARARGS | METH_KEYWORDS }, | |
2f90df85 | 10745 | { "wxPyValidator__setSelf", (PyCFunction) _wrap_wxPyValidator__setSelf, METH_VARARGS | METH_KEYWORDS }, |
2f90df85 | 10746 | { "new_wxPyValidator", (PyCFunction) _wrap_new_wxPyValidator, METH_VARARGS | METH_KEYWORDS }, |
9416aa89 RD |
10747 | { "wxValidator_SetBellOnError", (PyCFunction) _wrap_wxValidator_SetBellOnError, METH_VARARGS | METH_KEYWORDS }, |
10748 | { "wxValidator_IsSilent", (PyCFunction) _wrap_wxValidator_IsSilent, METH_VARARGS | METH_KEYWORDS }, | |
2f90df85 RD |
10749 | { "wxValidator_SetWindow", (PyCFunction) _wrap_wxValidator_SetWindow, METH_VARARGS | METH_KEYWORDS }, |
10750 | { "wxValidator_GetWindow", (PyCFunction) _wrap_wxValidator_GetWindow, METH_VARARGS | METH_KEYWORDS }, | |
10751 | { "wxValidator_Clone", (PyCFunction) _wrap_wxValidator_Clone, METH_VARARGS | METH_KEYWORDS }, | |
10752 | { "new_wxValidator", (PyCFunction) _wrap_new_wxValidator, METH_VARARGS | METH_KEYWORDS }, | |
6999b0d8 | 10753 | { "wxEvtHandler_Disconnect", (PyCFunction) _wrap_wxEvtHandler_Disconnect, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10754 | { "wxEvtHandler_Connect", (PyCFunction) _wrap_wxEvtHandler_Connect, METH_VARARGS | METH_KEYWORDS }, |
2f90df85 RD |
10755 | { "wxEvtHandler_SetPreviousHandler", (PyCFunction) _wrap_wxEvtHandler_SetPreviousHandler, METH_VARARGS | METH_KEYWORDS }, |
10756 | { "wxEvtHandler_SetNextHandler", (PyCFunction) _wrap_wxEvtHandler_SetNextHandler, METH_VARARGS | METH_KEYWORDS }, | |
10757 | { "wxEvtHandler_GetPreviousHandler", (PyCFunction) _wrap_wxEvtHandler_GetPreviousHandler, METH_VARARGS | METH_KEYWORDS }, | |
10758 | { "wxEvtHandler_GetNextHandler", (PyCFunction) _wrap_wxEvtHandler_GetNextHandler, METH_VARARGS | METH_KEYWORDS }, | |
10759 | { "wxEvtHandler_SetEvtHandlerEnabled", (PyCFunction) _wrap_wxEvtHandler_SetEvtHandlerEnabled, METH_VARARGS | METH_KEYWORDS }, | |
10760 | { "wxEvtHandler_GetEvtHandlerEnabled", (PyCFunction) _wrap_wxEvtHandler_GetEvtHandlerEnabled, METH_VARARGS | METH_KEYWORDS }, | |
f6bcfd97 | 10761 | { "wxEvtHandler_AddPendingEvent", (PyCFunction) _wrap_wxEvtHandler_AddPendingEvent, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10762 | { "wxEvtHandler_ProcessEvent", (PyCFunction) _wrap_wxEvtHandler_ProcessEvent, METH_VARARGS | METH_KEYWORDS }, |
c368d904 | 10763 | { "new_wxEvtHandler", (PyCFunction) _wrap_new_wxEvtHandler, METH_VARARGS | METH_KEYWORDS }, |
a1df7a95 RD |
10764 | { "wxWindow_PrevControlId", (PyCFunction) _wrap_wxWindow_PrevControlId, METH_VARARGS | METH_KEYWORDS }, |
10765 | { "wxWindow_NextControlId", (PyCFunction) _wrap_wxWindow_NextControlId, METH_VARARGS | METH_KEYWORDS }, | |
10766 | { "wxWindow_NewControlId", (PyCFunction) _wrap_wxWindow_NewControlId, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
10767 | { "wxWindow_FromHWND", (PyCFunction) _wrap_wxWindow_FromHWND, METH_VARARGS | METH_KEYWORDS }, |
10768 | { "wxWindow_FindFocus", (PyCFunction) _wrap_wxWindow_FindFocus, METH_VARARGS | METH_KEYWORDS }, | |
8ab979d7 RD |
10769 | { NULL, NULL } |
10770 | }; | |
1d99702e RD |
10771 | #ifdef __cplusplus |
10772 | } | |
10773 | #endif | |
10774 | /* | |
10775 | * This table is used by the pointer type-checker | |
10776 | */ | |
10777 | static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = { | |
1d99702e | 10778 | { "_signed_long","_long",0}, |
b1462dfa | 10779 | { "_wxPrintQuality","_wxCoord",0}, |
1d99702e RD |
10780 | { "_wxPrintQuality","_int",0}, |
10781 | { "_wxPrintQuality","_signed_int",0}, | |
10782 | { "_wxPrintQuality","_unsigned_int",0}, | |
10783 | { "_wxPrintQuality","_wxWindowID",0}, | |
10784 | { "_wxPrintQuality","_uint",0}, | |
10785 | { "_wxPrintQuality","_EBool",0}, | |
10786 | { "_wxPrintQuality","_size_t",0}, | |
c368d904 | 10787 | { "_wxPrintQuality","_time_t",0}, |
1d99702e | 10788 | { "_byte","_unsigned_char",0}, |
1d99702e RD |
10789 | { "_long","_unsigned_long",0}, |
10790 | { "_long","_signed_long",0}, | |
b1462dfa | 10791 | { "_size_t","_wxCoord",0}, |
1d99702e | 10792 | { "_size_t","_wxPrintQuality",0}, |
c368d904 | 10793 | { "_size_t","_time_t",0}, |
1d99702e RD |
10794 | { "_size_t","_unsigned_int",0}, |
10795 | { "_size_t","_int",0}, | |
10796 | { "_size_t","_wxWindowID",0}, | |
10797 | { "_size_t","_uint",0}, | |
1d99702e | 10798 | { "_wxPanel","_wxScrolledWindow",SwigwxScrolledWindowTowxPanel}, |
1d99702e | 10799 | { "_wxPanel","_wxDialog",SwigwxDialogTowxPanel}, |
b1462dfa | 10800 | { "_uint","_wxCoord",0}, |
1d99702e | 10801 | { "_uint","_wxPrintQuality",0}, |
c368d904 | 10802 | { "_uint","_time_t",0}, |
1d99702e RD |
10803 | { "_uint","_size_t",0}, |
10804 | { "_uint","_unsigned_int",0}, | |
10805 | { "_uint","_int",0}, | |
10806 | { "_uint","_wxWindowID",0}, | |
f6bcfd97 | 10807 | { "_wxChar","_char",0}, |
f6bcfd97 | 10808 | { "_char","_wxChar",0}, |
b1462dfa | 10809 | { "_EBool","_wxCoord",0}, |
1d99702e RD |
10810 | { "_EBool","_wxPrintQuality",0}, |
10811 | { "_EBool","_signed_int",0}, | |
10812 | { "_EBool","_int",0}, | |
10813 | { "_EBool","_wxWindowID",0}, | |
1d99702e | 10814 | { "_unsigned_long","_long",0}, |
b1462dfa | 10815 | { "_signed_int","_wxCoord",0}, |
1d99702e RD |
10816 | { "_signed_int","_wxPrintQuality",0}, |
10817 | { "_signed_int","_EBool",0}, | |
10818 | { "_signed_int","_wxWindowID",0}, | |
10819 | { "_signed_int","_int",0}, | |
1d99702e RD |
10820 | { "_WXTYPE","_short",0}, |
10821 | { "_WXTYPE","_signed_short",0}, | |
10822 | { "_WXTYPE","_unsigned_short",0}, | |
1d99702e RD |
10823 | { "_unsigned_short","_WXTYPE",0}, |
10824 | { "_unsigned_short","_short",0}, | |
9416aa89 | 10825 | { "_wxObject","_wxMenuItem",SwigwxMenuItemTowxObject}, |
9416aa89 | 10826 | { "_wxObject","_wxMenuBar",SwigwxMenuBarTowxObject}, |
9416aa89 | 10827 | { "_wxObject","_wxMenu",SwigwxMenuTowxObject}, |
9416aa89 | 10828 | { "_wxObject","_wxScrolledWindow",SwigwxScrolledWindowTowxObject}, |
9416aa89 | 10829 | { "_wxObject","_wxDialog",SwigwxDialogTowxObject}, |
9416aa89 | 10830 | { "_wxObject","_wxPanel",SwigwxPanelTowxObject}, |
9416aa89 | 10831 | { "_wxObject","_wxWindow",SwigwxWindowTowxObject}, |
9416aa89 | 10832 | { "_wxObject","_wxPyValidator",SwigwxPyValidatorTowxObject}, |
9416aa89 | 10833 | { "_wxObject","_wxValidator",SwigwxValidatorTowxObject}, |
9416aa89 | 10834 | { "_wxObject","_wxEvtHandler",SwigwxEvtHandlerTowxObject}, |
1d99702e RD |
10835 | { "_signed_short","_WXTYPE",0}, |
10836 | { "_signed_short","_short",0}, | |
1d99702e | 10837 | { "_unsigned_char","_byte",0}, |
b1462dfa | 10838 | { "_unsigned_int","_wxCoord",0}, |
1d99702e | 10839 | { "_unsigned_int","_wxPrintQuality",0}, |
c368d904 | 10840 | { "_unsigned_int","_time_t",0}, |
1d99702e RD |
10841 | { "_unsigned_int","_size_t",0}, |
10842 | { "_unsigned_int","_uint",0}, | |
10843 | { "_unsigned_int","_wxWindowID",0}, | |
10844 | { "_unsigned_int","_int",0}, | |
1d99702e RD |
10845 | { "_short","_WXTYPE",0}, |
10846 | { "_short","_unsigned_short",0}, | |
10847 | { "_short","_signed_short",0}, | |
b1462dfa | 10848 | { "_wxWindowID","_wxCoord",0}, |
1d99702e | 10849 | { "_wxWindowID","_wxPrintQuality",0}, |
c368d904 | 10850 | { "_wxWindowID","_time_t",0}, |
1d99702e RD |
10851 | { "_wxWindowID","_size_t",0}, |
10852 | { "_wxWindowID","_EBool",0}, | |
10853 | { "_wxWindowID","_uint",0}, | |
10854 | { "_wxWindowID","_int",0}, | |
10855 | { "_wxWindowID","_signed_int",0}, | |
10856 | { "_wxWindowID","_unsigned_int",0}, | |
b1462dfa | 10857 | { "_int","_wxCoord",0}, |
1d99702e | 10858 | { "_int","_wxPrintQuality",0}, |
c368d904 | 10859 | { "_int","_time_t",0}, |
1d99702e RD |
10860 | { "_int","_size_t",0}, |
10861 | { "_int","_EBool",0}, | |
10862 | { "_int","_uint",0}, | |
10863 | { "_int","_wxWindowID",0}, | |
10864 | { "_int","_unsigned_int",0}, | |
10865 | { "_int","_signed_int",0}, | |
c368d904 RD |
10866 | { "_time_t","_wxCoord",0}, |
10867 | { "_time_t","_wxPrintQuality",0}, | |
10868 | { "_time_t","_unsigned_int",0}, | |
10869 | { "_time_t","_int",0}, | |
10870 | { "_time_t","_wxWindowID",0}, | |
10871 | { "_time_t","_uint",0}, | |
10872 | { "_time_t","_size_t",0}, | |
2f90df85 | 10873 | { "_wxValidator","_wxPyValidator",SwigwxPyValidatorTowxValidator}, |
b1462dfa RD |
10874 | { "_wxCoord","_int",0}, |
10875 | { "_wxCoord","_signed_int",0}, | |
10876 | { "_wxCoord","_unsigned_int",0}, | |
10877 | { "_wxCoord","_wxWindowID",0}, | |
10878 | { "_wxCoord","_uint",0}, | |
10879 | { "_wxCoord","_EBool",0}, | |
10880 | { "_wxCoord","_size_t",0}, | |
c368d904 | 10881 | { "_wxCoord","_time_t",0}, |
b1462dfa | 10882 | { "_wxCoord","_wxPrintQuality",0}, |
1d99702e | 10883 | { "_wxEvtHandler","_wxMenuBar",SwigwxMenuBarTowxEvtHandler}, |
1d99702e | 10884 | { "_wxEvtHandler","_wxMenu",SwigwxMenuTowxEvtHandler}, |
1d99702e | 10885 | { "_wxEvtHandler","_wxScrolledWindow",SwigwxScrolledWindowTowxEvtHandler}, |
1d99702e | 10886 | { "_wxEvtHandler","_wxDialog",SwigwxDialogTowxEvtHandler}, |
1d99702e | 10887 | { "_wxEvtHandler","_wxPanel",SwigwxPanelTowxEvtHandler}, |
1d99702e | 10888 | { "_wxEvtHandler","_wxWindow",SwigwxWindowTowxEvtHandler}, |
2f90df85 | 10889 | { "_wxEvtHandler","_wxPyValidator",SwigwxPyValidatorTowxEvtHandler}, |
2f90df85 | 10890 | { "_wxEvtHandler","_wxValidator",SwigwxValidatorTowxEvtHandler}, |
b1462dfa | 10891 | { "_wxWindow","_wxMenuBar",SwigwxMenuBarTowxWindow}, |
1d99702e | 10892 | { "_wxWindow","_wxScrolledWindow",SwigwxScrolledWindowTowxWindow}, |
1d99702e | 10893 | { "_wxWindow","_wxDialog",SwigwxDialogTowxWindow}, |
1d99702e | 10894 | { "_wxWindow","_wxPanel",SwigwxPanelTowxWindow}, |
1d99702e RD |
10895 | {0,0,0}}; |
10896 | ||
8ab979d7 RD |
10897 | static PyObject *SWIG_globals; |
10898 | #ifdef __cplusplus | |
10899 | extern "C" | |
10900 | #endif | |
1d99702e | 10901 | SWIGEXPORT(void) initwindowsc() { |
8ab979d7 RD |
10902 | PyObject *m, *d; |
10903 | SWIG_globals = SWIG_newvarlink(); | |
10904 | m = Py_InitModule("windowsc", windowscMethods); | |
10905 | d = PyModule_GetDict(m); | |
1d99702e RD |
10906 | { |
10907 | int i; | |
10908 | for (i = 0; _swig_mapping[i].n1; i++) | |
10909 | SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv); | |
10910 | } | |
8ab979d7 | 10911 | } |