]>
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 | |
0122b7e3 | 92 | static char* wxStringErrorMsg = "String type required"; |
794c5cb1 | 93 | #endif |
2f90df85 | 94 | |
2f90df85 RD |
95 | class wxPyValidator : public wxValidator { |
96 | DECLARE_DYNAMIC_CLASS(wxPyValidator); | |
97 | public: | |
98 | wxPyValidator() { | |
99 | } | |
2f90df85 RD |
100 | |
101 | ~wxPyValidator() { | |
102 | } | |
103 | ||
19a97bd6 | 104 | wxObject* Clone() const { |
694759cf RD |
105 | wxPyValidator* ptr = NULL; |
106 | wxPyValidator* self = (wxPyValidator*)this; | |
2f90df85 | 107 | |
4268f798 | 108 | wxPyBeginBlockThreads(); |
694759cf RD |
109 | if (self->m_myInst.findCallback("Clone")) { |
110 | PyObject* ro; | |
111 | ro = self->m_myInst.callCallbackObj(Py_BuildValue("()")); | |
f6bcfd97 BP |
112 | if (ro) { |
113 | SWIG_GetPtrObj(ro, (void **)&ptr, "_wxPyValidator_p"); | |
114 | Py_DECREF(ro); | |
115 | } | |
694759cf | 116 | } |
4268f798 | 117 | wxPyEndBlockThreads(); |
19a97bd6 | 118 | |
694759cf RD |
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; | |
694759cf RD |
124 | return ptr; |
125 | } | |
2f90df85 | 126 | |
9416aa89 | 127 | |
2f90df85 RD |
128 | DEC_PYCALLBACK_BOOL_WXWIN(Validate); |
129 | DEC_PYCALLBACK_BOOL_(TransferToWindow); | |
130 | DEC_PYCALLBACK_BOOL_(TransferFromWindow); | |
131 | ||
132 | PYPRIVATE; | |
2f90df85 RD |
133 | }; |
134 | ||
135 | IMP_PYCALLBACK_BOOL_WXWIN(wxPyValidator, wxValidator, Validate); | |
136 | IMP_PYCALLBACK_BOOL_(wxPyValidator, wxValidator, TransferToWindow); | |
137 | IMP_PYCALLBACK_BOOL_(wxPyValidator, wxValidator, TransferFromWindow); | |
138 | ||
139 | IMPLEMENT_DYNAMIC_CLASS(wxPyValidator, wxValidator); | |
8ab979d7 | 140 | |
8ab979d7 | 141 | |
2f90df85 RD |
142 | wxWindow* wxWindow_FromHWND(unsigned long hWnd) { |
143 | wxWindow* win = new wxWindow; | |
144 | win->SetHWND(hWnd); | |
145 | win->SubclassWin(hWnd); | |
146 | return win; | |
147 | } | |
148 | #ifdef __cplusplus | |
149 | extern "C" { | |
150 | #endif | |
2f90df85 RD |
151 | static PyObject *_wrap_wxWindow_FromHWND(PyObject *self, PyObject *args, PyObject *kwargs) { |
152 | PyObject * _resultobj; | |
153 | wxWindow * _result; | |
154 | unsigned long _arg0; | |
155 | char *_kwnames[] = { "hWnd", NULL }; | |
2f90df85 RD |
156 | |
157 | self = self; | |
158 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"l:wxWindow_FromHWND",_kwnames,&_arg0)) | |
159 | return NULL; | |
160 | { | |
4268f798 | 161 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
162 | _result = (wxWindow *)wxWindow_FromHWND(_arg0); |
163 | ||
4268f798 | 164 | wxPyEndAllowThreads(__tstate); |
493f1553 | 165 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 166 | }{ _resultobj = wxPyMake_wxObject(_result); } |
2f90df85 RD |
167 | return _resultobj; |
168 | } | |
169 | ||
9416aa89 RD |
170 | static void *SwigwxEvtHandlerTowxObject(void *ptr) { |
171 | wxEvtHandler *src; | |
172 | wxObject *dest; | |
173 | src = (wxEvtHandler *) ptr; | |
174 | dest = (wxObject *) src; | |
175 | return (void *) dest; | |
176 | } | |
177 | ||
c368d904 RD |
178 | #define new_wxEvtHandler() (new wxEvtHandler()) |
179 | static PyObject *_wrap_new_wxEvtHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
180 | PyObject * _resultobj; | |
181 | wxEvtHandler * _result; | |
182 | char *_kwnames[] = { NULL }; | |
183 | char _ptemp[128]; | |
184 | ||
185 | self = self; | |
186 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxEvtHandler",_kwnames)) | |
187 | return NULL; | |
188 | { | |
4268f798 | 189 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
c368d904 RD |
190 | _result = (wxEvtHandler *)new_wxEvtHandler(); |
191 | ||
4268f798 | 192 | wxPyEndAllowThreads(__tstate); |
493f1553 | 193 | if (PyErr_Occurred()) return NULL; |
c368d904 RD |
194 | } if (_result) { |
195 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxEvtHandler_p"); | |
196 | _resultobj = Py_BuildValue("s",_ptemp); | |
197 | } else { | |
198 | Py_INCREF(Py_None); | |
199 | _resultobj = Py_None; | |
200 | } | |
201 | return _resultobj; | |
202 | } | |
203 | ||
2f90df85 RD |
204 | #define wxEvtHandler_ProcessEvent(_swigobj,_swigarg0) (_swigobj->ProcessEvent(_swigarg0)) |
205 | static PyObject *_wrap_wxEvtHandler_ProcessEvent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
206 | PyObject * _resultobj; | |
207 | bool _result; | |
208 | wxEvtHandler * _arg0; | |
209 | wxEvent * _arg1; | |
210 | PyObject * _argo0 = 0; | |
211 | PyObject * _argo1 = 0; | |
212 | char *_kwnames[] = { "self","event", NULL }; | |
213 | ||
214 | self = self; | |
215 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxEvtHandler_ProcessEvent",_kwnames,&_argo0,&_argo1)) | |
216 | return NULL; | |
217 | if (_argo0) { | |
218 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
219 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
220 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_ProcessEvent. Expected _wxEvtHandler_p."); | |
221 | return NULL; | |
222 | } | |
223 | } | |
224 | if (_argo1) { | |
225 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
226 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvent_p")) { | |
227 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxEvtHandler_ProcessEvent. Expected _wxEvent_p."); | |
228 | return NULL; | |
229 | } | |
230 | } | |
231 | { | |
4268f798 | 232 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
233 | _result = (bool )wxEvtHandler_ProcessEvent(_arg0,*_arg1); |
234 | ||
4268f798 | 235 | wxPyEndAllowThreads(__tstate); |
493f1553 | 236 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
237 | } _resultobj = Py_BuildValue("i",_result); |
238 | return _resultobj; | |
239 | } | |
240 | ||
f6bcfd97 BP |
241 | #define wxEvtHandler_AddPendingEvent(_swigobj,_swigarg0) (_swigobj->AddPendingEvent(_swigarg0)) |
242 | static PyObject *_wrap_wxEvtHandler_AddPendingEvent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
243 | PyObject * _resultobj; | |
244 | wxEvtHandler * _arg0; | |
245 | wxEvent * _arg1; | |
246 | PyObject * _argo0 = 0; | |
247 | PyObject * _argo1 = 0; | |
248 | char *_kwnames[] = { "self","event", NULL }; | |
249 | ||
250 | self = self; | |
251 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxEvtHandler_AddPendingEvent",_kwnames,&_argo0,&_argo1)) | |
252 | return NULL; | |
253 | if (_argo0) { | |
254 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
255 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
256 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_AddPendingEvent. Expected _wxEvtHandler_p."); | |
257 | return NULL; | |
258 | } | |
259 | } | |
260 | if (_argo1) { | |
261 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
262 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvent_p")) { | |
263 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxEvtHandler_AddPendingEvent. Expected _wxEvent_p."); | |
264 | return NULL; | |
265 | } | |
266 | } | |
267 | { | |
4268f798 | 268 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f6bcfd97 BP |
269 | wxEvtHandler_AddPendingEvent(_arg0,*_arg1); |
270 | ||
4268f798 | 271 | wxPyEndAllowThreads(__tstate); |
493f1553 | 272 | if (PyErr_Occurred()) return NULL; |
f6bcfd97 BP |
273 | } Py_INCREF(Py_None); |
274 | _resultobj = Py_None; | |
275 | return _resultobj; | |
276 | } | |
277 | ||
2f90df85 RD |
278 | #define wxEvtHandler_GetEvtHandlerEnabled(_swigobj) (_swigobj->GetEvtHandlerEnabled()) |
279 | static PyObject *_wrap_wxEvtHandler_GetEvtHandlerEnabled(PyObject *self, PyObject *args, PyObject *kwargs) { | |
280 | PyObject * _resultobj; | |
281 | bool _result; | |
282 | wxEvtHandler * _arg0; | |
283 | PyObject * _argo0 = 0; | |
284 | char *_kwnames[] = { "self", NULL }; | |
285 | ||
286 | self = self; | |
287 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxEvtHandler_GetEvtHandlerEnabled",_kwnames,&_argo0)) | |
288 | return NULL; | |
289 | if (_argo0) { | |
290 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
291 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
292 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_GetEvtHandlerEnabled. Expected _wxEvtHandler_p."); | |
293 | return NULL; | |
294 | } | |
295 | } | |
296 | { | |
4268f798 | 297 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
298 | _result = (bool )wxEvtHandler_GetEvtHandlerEnabled(_arg0); |
299 | ||
4268f798 | 300 | wxPyEndAllowThreads(__tstate); |
493f1553 | 301 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
302 | } _resultobj = Py_BuildValue("i",_result); |
303 | return _resultobj; | |
304 | } | |
305 | ||
306 | #define wxEvtHandler_SetEvtHandlerEnabled(_swigobj,_swigarg0) (_swigobj->SetEvtHandlerEnabled(_swigarg0)) | |
307 | static PyObject *_wrap_wxEvtHandler_SetEvtHandlerEnabled(PyObject *self, PyObject *args, PyObject *kwargs) { | |
308 | PyObject * _resultobj; | |
309 | wxEvtHandler * _arg0; | |
310 | bool _arg1; | |
311 | PyObject * _argo0 = 0; | |
312 | int tempbool1; | |
313 | char *_kwnames[] = { "self","enabled", NULL }; | |
314 | ||
315 | self = self; | |
316 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxEvtHandler_SetEvtHandlerEnabled",_kwnames,&_argo0,&tempbool1)) | |
317 | return NULL; | |
318 | if (_argo0) { | |
319 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
320 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
321 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_SetEvtHandlerEnabled. Expected _wxEvtHandler_p."); | |
322 | return NULL; | |
323 | } | |
324 | } | |
325 | _arg1 = (bool ) tempbool1; | |
326 | { | |
4268f798 | 327 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
328 | wxEvtHandler_SetEvtHandlerEnabled(_arg0,_arg1); |
329 | ||
4268f798 | 330 | wxPyEndAllowThreads(__tstate); |
493f1553 | 331 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
332 | } Py_INCREF(Py_None); |
333 | _resultobj = Py_None; | |
334 | return _resultobj; | |
335 | } | |
336 | ||
337 | #define wxEvtHandler_GetNextHandler(_swigobj) (_swigobj->GetNextHandler()) | |
338 | static PyObject *_wrap_wxEvtHandler_GetNextHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
339 | PyObject * _resultobj; | |
340 | wxEvtHandler * _result; | |
341 | wxEvtHandler * _arg0; | |
342 | PyObject * _argo0 = 0; | |
343 | char *_kwnames[] = { "self", NULL }; | |
2f90df85 RD |
344 | |
345 | self = self; | |
346 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxEvtHandler_GetNextHandler",_kwnames,&_argo0)) | |
347 | return NULL; | |
348 | if (_argo0) { | |
349 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
350 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
351 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_GetNextHandler. Expected _wxEvtHandler_p."); | |
352 | return NULL; | |
353 | } | |
354 | } | |
355 | { | |
4268f798 | 356 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
357 | _result = (wxEvtHandler *)wxEvtHandler_GetNextHandler(_arg0); |
358 | ||
4268f798 | 359 | wxPyEndAllowThreads(__tstate); |
493f1553 | 360 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 361 | }{ _resultobj = wxPyMake_wxObject(_result); } |
2f90df85 RD |
362 | return _resultobj; |
363 | } | |
364 | ||
365 | #define wxEvtHandler_GetPreviousHandler(_swigobj) (_swigobj->GetPreviousHandler()) | |
366 | static PyObject *_wrap_wxEvtHandler_GetPreviousHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
367 | PyObject * _resultobj; | |
368 | wxEvtHandler * _result; | |
369 | wxEvtHandler * _arg0; | |
370 | PyObject * _argo0 = 0; | |
371 | char *_kwnames[] = { "self", NULL }; | |
2f90df85 RD |
372 | |
373 | self = self; | |
374 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxEvtHandler_GetPreviousHandler",_kwnames,&_argo0)) | |
375 | return NULL; | |
376 | if (_argo0) { | |
377 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
378 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
379 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_GetPreviousHandler. Expected _wxEvtHandler_p."); | |
380 | return NULL; | |
381 | } | |
382 | } | |
383 | { | |
4268f798 | 384 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
385 | _result = (wxEvtHandler *)wxEvtHandler_GetPreviousHandler(_arg0); |
386 | ||
4268f798 | 387 | wxPyEndAllowThreads(__tstate); |
493f1553 | 388 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 389 | }{ _resultobj = wxPyMake_wxObject(_result); } |
2f90df85 RD |
390 | return _resultobj; |
391 | } | |
392 | ||
393 | #define wxEvtHandler_SetNextHandler(_swigobj,_swigarg0) (_swigobj->SetNextHandler(_swigarg0)) | |
394 | static PyObject *_wrap_wxEvtHandler_SetNextHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
395 | PyObject * _resultobj; | |
396 | wxEvtHandler * _arg0; | |
397 | wxEvtHandler * _arg1; | |
398 | PyObject * _argo0 = 0; | |
399 | PyObject * _argo1 = 0; | |
400 | char *_kwnames[] = { "self","handler", NULL }; | |
401 | ||
402 | self = self; | |
403 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxEvtHandler_SetNextHandler",_kwnames,&_argo0,&_argo1)) | |
404 | return NULL; | |
405 | if (_argo0) { | |
406 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
407 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
408 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_SetNextHandler. Expected _wxEvtHandler_p."); | |
409 | return NULL; | |
410 | } | |
411 | } | |
412 | if (_argo1) { | |
413 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
414 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvtHandler_p")) { | |
415 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxEvtHandler_SetNextHandler. Expected _wxEvtHandler_p."); | |
416 | return NULL; | |
417 | } | |
418 | } | |
419 | { | |
4268f798 | 420 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
421 | wxEvtHandler_SetNextHandler(_arg0,_arg1); |
422 | ||
4268f798 | 423 | wxPyEndAllowThreads(__tstate); |
493f1553 | 424 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
425 | } Py_INCREF(Py_None); |
426 | _resultobj = Py_None; | |
427 | return _resultobj; | |
428 | } | |
429 | ||
430 | #define wxEvtHandler_SetPreviousHandler(_swigobj,_swigarg0) (_swigobj->SetPreviousHandler(_swigarg0)) | |
431 | static PyObject *_wrap_wxEvtHandler_SetPreviousHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
432 | PyObject * _resultobj; | |
433 | wxEvtHandler * _arg0; | |
434 | wxEvtHandler * _arg1; | |
435 | PyObject * _argo0 = 0; | |
436 | PyObject * _argo1 = 0; | |
437 | char *_kwnames[] = { "self","handler", NULL }; | |
438 | ||
439 | self = self; | |
440 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxEvtHandler_SetPreviousHandler",_kwnames,&_argo0,&_argo1)) | |
441 | return NULL; | |
442 | if (_argo0) { | |
443 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
444 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
445 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_SetPreviousHandler. Expected _wxEvtHandler_p."); | |
446 | return NULL; | |
447 | } | |
448 | } | |
449 | if (_argo1) { | |
450 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
451 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvtHandler_p")) { | |
452 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxEvtHandler_SetPreviousHandler. Expected _wxEvtHandler_p."); | |
453 | return NULL; | |
454 | } | |
455 | } | |
456 | { | |
4268f798 | 457 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
458 | wxEvtHandler_SetPreviousHandler(_arg0,_arg1); |
459 | ||
4268f798 | 460 | wxPyEndAllowThreads(__tstate); |
493f1553 | 461 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
462 | } Py_INCREF(Py_None); |
463 | _resultobj = Py_None; | |
464 | return _resultobj; | |
465 | } | |
466 | ||
467 | static void wxEvtHandler_Connect(wxEvtHandler *self,int id,int lastId,int eventType,PyObject * func) { | |
468 | if (PyCallable_Check(func)) { | |
469 | self->Connect(id, lastId, eventType, | |
470 | (wxObjectEventFunction) &wxPyCallback::EventThunker, | |
471 | new wxPyCallback(func)); | |
472 | } | |
25b00b4e RD |
473 | else if (func == Py_None) { |
474 | self->Disconnect(id, lastId, eventType, | |
475 | (wxObjectEventFunction) | |
476 | &wxPyCallback::EventThunker); | |
477 | } | |
478 | else { | |
479 | PyErr_SetString(PyExc_TypeError, "Expected callable object or None."); | |
480 | } | |
2f90df85 RD |
481 | } |
482 | static PyObject *_wrap_wxEvtHandler_Connect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
483 | PyObject * _resultobj; | |
484 | wxEvtHandler * _arg0; | |
485 | int _arg1; | |
486 | int _arg2; | |
487 | int _arg3; | |
488 | PyObject * _arg4; | |
489 | PyObject * _argo0 = 0; | |
490 | PyObject * _obj4 = 0; | |
491 | char *_kwnames[] = { "self","id","lastId","eventType","func", NULL }; | |
492 | ||
493 | self = self; | |
494 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiiiO:wxEvtHandler_Connect",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_obj4)) | |
495 | return NULL; | |
496 | if (_argo0) { | |
497 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
498 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
499 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_Connect. Expected _wxEvtHandler_p."); | |
500 | return NULL; | |
501 | } | |
502 | } | |
503 | { | |
504 | _arg4 = _obj4; | |
505 | } | |
506 | { | |
4268f798 | 507 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
508 | wxEvtHandler_Connect(_arg0,_arg1,_arg2,_arg3,_arg4); |
509 | ||
4268f798 | 510 | wxPyEndAllowThreads(__tstate); |
493f1553 | 511 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
512 | } Py_INCREF(Py_None); |
513 | _resultobj = Py_None; | |
514 | return _resultobj; | |
515 | } | |
516 | ||
6999b0d8 RD |
517 | static bool wxEvtHandler_Disconnect(wxEvtHandler *self,int id,int lastId,wxEventType eventType) { |
518 | return self->Disconnect(id, lastId, eventType, | |
519 | (wxObjectEventFunction) | |
520 | &wxPyCallback::EventThunker); | |
521 | } | |
522 | static PyObject *_wrap_wxEvtHandler_Disconnect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
523 | PyObject * _resultobj; | |
524 | bool _result; | |
525 | wxEvtHandler * _arg0; | |
526 | int _arg1; | |
527 | int _arg2 = (int ) -1; | |
528 | wxEventType _arg3 = (wxEventType ) wxEVT_NULL; | |
529 | PyObject * _argo0 = 0; | |
530 | char *_kwnames[] = { "self","id","lastId","eventType", NULL }; | |
531 | ||
532 | self = self; | |
533 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi|ii:wxEvtHandler_Disconnect",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3)) | |
534 | return NULL; | |
535 | if (_argo0) { | |
536 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
537 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
538 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_Disconnect. Expected _wxEvtHandler_p."); | |
539 | return NULL; | |
540 | } | |
541 | } | |
542 | { | |
4268f798 | 543 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
6999b0d8 RD |
544 | _result = (bool )wxEvtHandler_Disconnect(_arg0,_arg1,_arg2,_arg3); |
545 | ||
4268f798 | 546 | wxPyEndAllowThreads(__tstate); |
493f1553 | 547 | if (PyErr_Occurred()) return NULL; |
6999b0d8 RD |
548 | } _resultobj = Py_BuildValue("i",_result); |
549 | return _resultobj; | |
550 | } | |
551 | ||
0122b7e3 RD |
552 | static void wxEvtHandler__setOORInfo(wxEvtHandler *self,PyObject * _self) { |
553 | self->SetClientObject(new wxPyClientData(_self)); | |
554 | } | |
555 | static PyObject *_wrap_wxEvtHandler__setOORInfo(PyObject *self, PyObject *args, PyObject *kwargs) { | |
556 | PyObject * _resultobj; | |
557 | wxEvtHandler * _arg0; | |
558 | PyObject * _arg1; | |
559 | PyObject * _argo0 = 0; | |
560 | PyObject * _obj1 = 0; | |
561 | char *_kwnames[] = { "self","_self", NULL }; | |
562 | ||
563 | self = self; | |
564 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxEvtHandler__setOORInfo",_kwnames,&_argo0,&_obj1)) | |
565 | return NULL; | |
566 | if (_argo0) { | |
567 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
568 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) { | |
569 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler__setOORInfo. Expected _wxEvtHandler_p."); | |
570 | return NULL; | |
571 | } | |
572 | } | |
573 | { | |
574 | _arg1 = _obj1; | |
575 | } | |
576 | { | |
4268f798 | 577 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
0122b7e3 RD |
578 | wxEvtHandler__setOORInfo(_arg0,_arg1); |
579 | ||
4268f798 | 580 | wxPyEndAllowThreads(__tstate); |
0122b7e3 RD |
581 | if (PyErr_Occurred()) return NULL; |
582 | } Py_INCREF(Py_None); | |
583 | _resultobj = Py_None; | |
584 | return _resultobj; | |
585 | } | |
586 | ||
2f90df85 RD |
587 | static void *SwigwxValidatorTowxEvtHandler(void *ptr) { |
588 | wxValidator *src; | |
589 | wxEvtHandler *dest; | |
590 | src = (wxValidator *) ptr; | |
591 | dest = (wxEvtHandler *) src; | |
592 | return (void *) dest; | |
593 | } | |
594 | ||
9416aa89 RD |
595 | static void *SwigwxValidatorTowxObject(void *ptr) { |
596 | wxValidator *src; | |
597 | wxObject *dest; | |
598 | src = (wxValidator *) ptr; | |
599 | dest = (wxObject *) src; | |
600 | return (void *) dest; | |
601 | } | |
602 | ||
2f90df85 RD |
603 | #define new_wxValidator() (new wxValidator()) |
604 | static PyObject *_wrap_new_wxValidator(PyObject *self, PyObject *args, PyObject *kwargs) { | |
605 | PyObject * _resultobj; | |
606 | wxValidator * _result; | |
607 | char *_kwnames[] = { NULL }; | |
608 | char _ptemp[128]; | |
609 | ||
610 | self = self; | |
611 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxValidator",_kwnames)) | |
612 | return NULL; | |
613 | { | |
4268f798 | 614 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
615 | _result = (wxValidator *)new_wxValidator(); |
616 | ||
4268f798 | 617 | wxPyEndAllowThreads(__tstate); |
493f1553 | 618 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
619 | } if (_result) { |
620 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxValidator_p"); | |
621 | _resultobj = Py_BuildValue("s",_ptemp); | |
622 | } else { | |
623 | Py_INCREF(Py_None); | |
624 | _resultobj = Py_None; | |
625 | } | |
626 | return _resultobj; | |
af309447 | 627 | } |
2f90df85 RD |
628 | |
629 | #define wxValidator_Clone(_swigobj) (_swigobj->Clone()) | |
630 | static PyObject *_wrap_wxValidator_Clone(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 631 | PyObject * _resultobj; |
2f90df85 RD |
632 | wxValidator * _result; |
633 | wxValidator * _arg0; | |
634 | PyObject * _argo0 = 0; | |
635 | char *_kwnames[] = { "self", NULL }; | |
8ab979d7 RD |
636 | |
637 | self = self; | |
2f90df85 RD |
638 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxValidator_Clone",_kwnames,&_argo0)) |
639 | return NULL; | |
640 | if (_argo0) { | |
641 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
642 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxValidator_p")) { | |
643 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxValidator_Clone. Expected _wxValidator_p."); | |
8ab979d7 | 644 | return NULL; |
2f90df85 RD |
645 | } |
646 | } | |
cf694132 | 647 | { |
4268f798 | 648 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 | 649 | _result = (wxValidator *)wxValidator_Clone(_arg0); |
cf694132 | 650 | |
4268f798 | 651 | wxPyEndAllowThreads(__tstate); |
493f1553 | 652 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 653 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
654 | return _resultobj; |
655 | } | |
656 | ||
2f90df85 RD |
657 | #define wxValidator_GetWindow(_swigobj) (_swigobj->GetWindow()) |
658 | static PyObject *_wrap_wxValidator_GetWindow(PyObject *self, PyObject *args, PyObject *kwargs) { | |
af309447 RD |
659 | PyObject * _resultobj; |
660 | wxWindow * _result; | |
2f90df85 RD |
661 | wxValidator * _arg0; |
662 | PyObject * _argo0 = 0; | |
663 | char *_kwnames[] = { "self", NULL }; | |
af309447 RD |
664 | |
665 | self = self; | |
2f90df85 RD |
666 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxValidator_GetWindow",_kwnames,&_argo0)) |
667 | return NULL; | |
668 | if (_argo0) { | |
669 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
670 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxValidator_p")) { | |
671 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxValidator_GetWindow. Expected _wxValidator_p."); | |
af309447 | 672 | return NULL; |
2f90df85 RD |
673 | } |
674 | } | |
cf694132 | 675 | { |
4268f798 | 676 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 | 677 | _result = (wxWindow *)wxValidator_GetWindow(_arg0); |
cf694132 | 678 | |
4268f798 | 679 | wxPyEndAllowThreads(__tstate); |
493f1553 | 680 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 681 | }{ _resultobj = wxPyMake_wxObject(_result); } |
af309447 RD |
682 | return _resultobj; |
683 | } | |
684 | ||
2f90df85 RD |
685 | #define wxValidator_SetWindow(_swigobj,_swigarg0) (_swigobj->SetWindow(_swigarg0)) |
686 | static PyObject *_wrap_wxValidator_SetWindow(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 687 | PyObject * _resultobj; |
2f90df85 RD |
688 | wxValidator * _arg0; |
689 | wxWindow * _arg1; | |
1d99702e RD |
690 | PyObject * _argo0 = 0; |
691 | PyObject * _argo1 = 0; | |
2f90df85 | 692 | char *_kwnames[] = { "self","window", NULL }; |
cf694132 RD |
693 | |
694 | self = self; | |
2f90df85 | 695 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxValidator_SetWindow",_kwnames,&_argo0,&_argo1)) |
cf694132 | 696 | return NULL; |
1d99702e RD |
697 | if (_argo0) { |
698 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2f90df85 RD |
699 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxValidator_p")) { |
700 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxValidator_SetWindow. Expected _wxValidator_p."); | |
cf694132 RD |
701 | return NULL; |
702 | } | |
703 | } | |
1d99702e RD |
704 | if (_argo1) { |
705 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
2f90df85 RD |
706 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { |
707 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxValidator_SetWindow. Expected _wxWindow_p."); | |
cf694132 RD |
708 | return NULL; |
709 | } | |
710 | } | |
711 | { | |
4268f798 | 712 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 | 713 | wxValidator_SetWindow(_arg0,_arg1); |
cf694132 | 714 | |
4268f798 | 715 | wxPyEndAllowThreads(__tstate); |
493f1553 | 716 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
717 | } Py_INCREF(Py_None); |
718 | _resultobj = Py_None; | |
cf694132 RD |
719 | return _resultobj; |
720 | } | |
721 | ||
9416aa89 RD |
722 | static PyObject *_wrap_wxValidator_IsSilent(PyObject *self, PyObject *args, PyObject *kwargs) { |
723 | PyObject * _resultobj; | |
724 | bool _result; | |
725 | char *_kwnames[] = { NULL }; | |
726 | ||
727 | self = self; | |
728 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxValidator_IsSilent",_kwnames)) | |
729 | return NULL; | |
730 | { | |
4268f798 | 731 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
9416aa89 RD |
732 | _result = (bool )wxValidator::IsSilent(); |
733 | ||
4268f798 | 734 | wxPyEndAllowThreads(__tstate); |
493f1553 | 735 | if (PyErr_Occurred()) return NULL; |
9416aa89 RD |
736 | } _resultobj = Py_BuildValue("i",_result); |
737 | return _resultobj; | |
738 | } | |
739 | ||
740 | static PyObject *_wrap_wxValidator_SetBellOnError(PyObject *self, PyObject *args, PyObject *kwargs) { | |
741 | PyObject * _resultobj; | |
742 | int _arg0 = (int ) TRUE; | |
743 | char *_kwnames[] = { "doIt", NULL }; | |
744 | ||
745 | self = self; | |
746 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|i:wxValidator_SetBellOnError",_kwnames,&_arg0)) | |
747 | return NULL; | |
748 | { | |
4268f798 | 749 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
9416aa89 RD |
750 | wxValidator::SetBellOnError(_arg0); |
751 | ||
4268f798 | 752 | wxPyEndAllowThreads(__tstate); |
493f1553 | 753 | if (PyErr_Occurred()) return NULL; |
9416aa89 RD |
754 | } Py_INCREF(Py_None); |
755 | _resultobj = Py_None; | |
756 | return _resultobj; | |
757 | } | |
758 | ||
2f90df85 RD |
759 | static void *SwigwxPyValidatorTowxValidator(void *ptr) { |
760 | wxPyValidator *src; | |
761 | wxValidator *dest; | |
762 | src = (wxPyValidator *) ptr; | |
763 | dest = (wxValidator *) src; | |
764 | return (void *) dest; | |
765 | } | |
766 | ||
767 | static void *SwigwxPyValidatorTowxEvtHandler(void *ptr) { | |
768 | wxPyValidator *src; | |
769 | wxEvtHandler *dest; | |
770 | src = (wxPyValidator *) ptr; | |
771 | dest = (wxEvtHandler *) src; | |
772 | return (void *) dest; | |
773 | } | |
774 | ||
9416aa89 RD |
775 | static void *SwigwxPyValidatorTowxObject(void *ptr) { |
776 | wxPyValidator *src; | |
777 | wxObject *dest; | |
778 | src = (wxPyValidator *) ptr; | |
779 | dest = (wxObject *) src; | |
780 | return (void *) dest; | |
781 | } | |
782 | ||
2f90df85 RD |
783 | #define new_wxPyValidator() (new wxPyValidator()) |
784 | static PyObject *_wrap_new_wxPyValidator(PyObject *self, PyObject *args, PyObject *kwargs) { | |
785 | PyObject * _resultobj; | |
786 | wxPyValidator * _result; | |
787 | char *_kwnames[] = { NULL }; | |
788 | char _ptemp[128]; | |
789 | ||
790 | self = self; | |
791 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPyValidator",_kwnames)) | |
792 | return NULL; | |
793 | { | |
4268f798 | 794 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
795 | _result = (wxPyValidator *)new_wxPyValidator(); |
796 | ||
4268f798 | 797 | wxPyEndAllowThreads(__tstate); |
493f1553 | 798 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
799 | } if (_result) { |
800 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyValidator_p"); | |
801 | _resultobj = Py_BuildValue("s",_ptemp); | |
802 | } else { | |
803 | Py_INCREF(Py_None); | |
804 | _resultobj = Py_None; | |
805 | } | |
806 | return _resultobj; | |
807 | } | |
808 | ||
0122b7e3 RD |
809 | #define wxPyValidator__setCallbackInfo(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->_setCallbackInfo(_swigarg0,_swigarg1,_swigarg2)) |
810 | static PyObject *_wrap_wxPyValidator__setCallbackInfo(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 811 | PyObject * _resultobj; |
2f90df85 RD |
812 | wxPyValidator * _arg0; |
813 | PyObject * _arg1; | |
f6bcfd97 BP |
814 | PyObject * _arg2; |
815 | int _arg3 = (int ) TRUE; | |
1d99702e | 816 | PyObject * _argo0 = 0; |
2f90df85 | 817 | PyObject * _obj1 = 0; |
f6bcfd97 BP |
818 | PyObject * _obj2 = 0; |
819 | char *_kwnames[] = { "self","self","_class","incref", NULL }; | |
8ab979d7 RD |
820 | |
821 | self = self; | |
0122b7e3 | 822 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO|i:wxPyValidator__setCallbackInfo",_kwnames,&_argo0,&_obj1,&_obj2,&_arg3)) |
8ab979d7 | 823 | return NULL; |
1d99702e RD |
824 | if (_argo0) { |
825 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2f90df85 | 826 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyValidator_p")) { |
0122b7e3 | 827 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyValidator__setCallbackInfo. Expected _wxPyValidator_p."); |
8ab979d7 RD |
828 | return NULL; |
829 | } | |
830 | } | |
831 | { | |
2f90df85 | 832 | _arg1 = _obj1; |
8ab979d7 | 833 | } |
f6bcfd97 BP |
834 | { |
835 | _arg2 = _obj2; | |
836 | } | |
cf694132 | 837 | { |
4268f798 | 838 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
0122b7e3 | 839 | wxPyValidator__setCallbackInfo(_arg0,_arg1,_arg2,_arg3); |
cf694132 | 840 | |
4268f798 | 841 | wxPyEndAllowThreads(__tstate); |
493f1553 | 842 | if (PyErr_Occurred()) return NULL; |
cf694132 | 843 | } Py_INCREF(Py_None); |
8ab979d7 RD |
844 | _resultobj = Py_None; |
845 | return _resultobj; | |
846 | } | |
847 | ||
848 | static void *SwigwxWindowTowxEvtHandler(void *ptr) { | |
849 | wxWindow *src; | |
850 | wxEvtHandler *dest; | |
851 | src = (wxWindow *) ptr; | |
852 | dest = (wxEvtHandler *) src; | |
853 | return (void *) dest; | |
854 | } | |
855 | ||
9416aa89 RD |
856 | static void *SwigwxWindowTowxObject(void *ptr) { |
857 | wxWindow *src; | |
858 | wxObject *dest; | |
859 | src = (wxWindow *) ptr; | |
860 | dest = (wxObject *) src; | |
861 | return (void *) dest; | |
862 | } | |
863 | ||
8ab979d7 | 864 | #define new_wxWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (new wxWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) |
efc5f224 | 865 | static PyObject *_wrap_new_wxWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
866 | PyObject * _resultobj; |
867 | wxWindow * _result; | |
868 | wxWindow * _arg0; | |
869 | wxWindowID _arg1; | |
e508a2b6 RD |
870 | wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition; |
871 | wxSize * _arg3 = (wxSize *) &wxDefaultSize; | |
1d99702e RD |
872 | long _arg4 = (long ) 0; |
873 | char * _arg5 = (char *) "panel"; | |
874 | PyObject * _argo0 = 0; | |
2f90df85 RD |
875 | wxPoint temp; |
876 | PyObject * _obj2 = 0; | |
877 | wxSize temp0; | |
878 | PyObject * _obj3 = 0; | |
efc5f224 | 879 | char *_kwnames[] = { "parent","id","pos","size","style","name", NULL }; |
8ab979d7 RD |
880 | char _ptemp[128]; |
881 | ||
882 | self = self; | |
2f90df85 | 883 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi|OOls:new_wxWindow",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4,&_arg5)) |
8ab979d7 | 884 | return NULL; |
1d99702e RD |
885 | if (_argo0) { |
886 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
887 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
888 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxWindow. Expected _wxWindow_p."); |
889 | return NULL; | |
890 | } | |
891 | } | |
2f90df85 RD |
892 | if (_obj2) |
893 | { | |
894 | _arg2 = &temp; | |
895 | if (! wxPoint_helper(_obj2, &_arg2)) | |
8ab979d7 | 896 | return NULL; |
2f90df85 RD |
897 | } |
898 | if (_obj3) | |
899 | { | |
900 | _arg3 = &temp0; | |
901 | if (! wxSize_helper(_obj3, &_arg3)) | |
8ab979d7 | 902 | return NULL; |
2f90df85 | 903 | } |
cf694132 | 904 | { |
4268f798 | 905 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
906 | _result = (wxWindow *)new_wxWindow(_arg0,_arg1,*_arg2,*_arg3,_arg4,_arg5); |
907 | ||
4268f798 | 908 | wxPyEndAllowThreads(__tstate); |
493f1553 | 909 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
910 | } if (_result) { |
911 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxWindow_p"); | |
912 | _resultobj = Py_BuildValue("s",_ptemp); | |
913 | } else { | |
914 | Py_INCREF(Py_None); | |
915 | _resultobj = Py_None; | |
916 | } | |
8ab979d7 RD |
917 | return _resultobj; |
918 | } | |
919 | ||
09f3d4e6 RD |
920 | #define new_wxPreWindow() (new wxWindow()) |
921 | static PyObject *_wrap_new_wxPreWindow(PyObject *self, PyObject *args, PyObject *kwargs) { | |
922 | PyObject * _resultobj; | |
923 | wxWindow * _result; | |
924 | char *_kwnames[] = { NULL }; | |
925 | char _ptemp[128]; | |
926 | ||
927 | self = self; | |
928 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPreWindow",_kwnames)) | |
929 | return NULL; | |
930 | { | |
4268f798 | 931 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
09f3d4e6 RD |
932 | _result = (wxWindow *)new_wxPreWindow(); |
933 | ||
4268f798 | 934 | wxPyEndAllowThreads(__tstate); |
09f3d4e6 RD |
935 | if (PyErr_Occurred()) return NULL; |
936 | } if (_result) { | |
937 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxWindow_p"); | |
938 | _resultobj = Py_BuildValue("s",_ptemp); | |
939 | } else { | |
940 | Py_INCREF(Py_None); | |
941 | _resultobj = Py_None; | |
942 | } | |
943 | return _resultobj; | |
944 | } | |
945 | ||
946 | #define wxWindow_Create(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (_swigobj->Create(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) | |
947 | static PyObject *_wrap_wxWindow_Create(PyObject *self, PyObject *args, PyObject *kwargs) { | |
948 | PyObject * _resultobj; | |
949 | bool _result; | |
950 | wxWindow * _arg0; | |
951 | wxWindow * _arg1; | |
952 | wxWindowID _arg2; | |
953 | wxPoint * _arg3 = (wxPoint *) &wxDefaultPosition; | |
954 | wxSize * _arg4 = (wxSize *) &wxDefaultSize; | |
955 | long _arg5 = (long ) 0; | |
956 | char * _arg6 = (char *) "panel"; | |
957 | PyObject * _argo0 = 0; | |
958 | PyObject * _argo1 = 0; | |
959 | wxPoint temp; | |
960 | PyObject * _obj3 = 0; | |
961 | wxSize temp0; | |
962 | PyObject * _obj4 = 0; | |
963 | char *_kwnames[] = { "self","parent","id","pos","size","style","name", NULL }; | |
964 | ||
965 | self = self; | |
966 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi|OOls:wxWindow_Create",_kwnames,&_argo0,&_argo1,&_arg2,&_obj3,&_obj4,&_arg5,&_arg6)) | |
967 | return NULL; | |
968 | if (_argo0) { | |
969 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
970 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
971 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Create. Expected _wxWindow_p."); | |
972 | return NULL; | |
973 | } | |
974 | } | |
975 | if (_argo1) { | |
976 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
977 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
978 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_Create. Expected _wxWindow_p."); | |
979 | return NULL; | |
980 | } | |
981 | } | |
982 | if (_obj3) | |
983 | { | |
984 | _arg3 = &temp; | |
985 | if (! wxPoint_helper(_obj3, &_arg3)) | |
986 | return NULL; | |
987 | } | |
988 | if (_obj4) | |
989 | { | |
990 | _arg4 = &temp0; | |
991 | if (! wxSize_helper(_obj4, &_arg4)) | |
992 | return NULL; | |
993 | } | |
994 | { | |
4268f798 | 995 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
09f3d4e6 RD |
996 | _result = (bool )wxWindow_Create(_arg0,_arg1,_arg2,*_arg3,*_arg4,_arg5,_arg6); |
997 | ||
4268f798 | 998 | wxPyEndAllowThreads(__tstate); |
09f3d4e6 RD |
999 | if (PyErr_Occurred()) return NULL; |
1000 | } _resultobj = Py_BuildValue("i",_result); | |
1001 | return _resultobj; | |
1002 | } | |
1003 | ||
8ab979d7 | 1004 | #define wxWindow_CaptureMouse(_swigobj) (_swigobj->CaptureMouse()) |
efc5f224 | 1005 | static PyObject *_wrap_wxWindow_CaptureMouse(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1006 | PyObject * _resultobj; |
1007 | wxWindow * _arg0; | |
1d99702e | 1008 | PyObject * _argo0 = 0; |
efc5f224 | 1009 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1010 | |
1011 | self = self; | |
efc5f224 | 1012 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_CaptureMouse",_kwnames,&_argo0)) |
8ab979d7 | 1013 | return NULL; |
1d99702e RD |
1014 | if (_argo0) { |
1015 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1016 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1017 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_CaptureMouse. Expected _wxWindow_p."); |
1018 | return NULL; | |
1019 | } | |
1020 | } | |
cf694132 | 1021 | { |
4268f798 | 1022 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1023 | wxWindow_CaptureMouse(_arg0); |
1024 | ||
4268f798 | 1025 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1026 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1027 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1028 | _resultobj = Py_None; |
1029 | return _resultobj; | |
1030 | } | |
1031 | ||
1032 | #define wxWindow_Center(_swigobj,_swigarg0) (_swigobj->Center(_swigarg0)) | |
efc5f224 | 1033 | static PyObject *_wrap_wxWindow_Center(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1034 | PyObject * _resultobj; |
1035 | wxWindow * _arg0; | |
1d99702e RD |
1036 | int _arg1 = (int ) wxBOTH; |
1037 | PyObject * _argo0 = 0; | |
efc5f224 | 1038 | char *_kwnames[] = { "self","direction", NULL }; |
8ab979d7 RD |
1039 | |
1040 | self = self; | |
efc5f224 | 1041 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_Center",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 1042 | return NULL; |
1d99702e RD |
1043 | if (_argo0) { |
1044 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1045 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1046 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Center. Expected _wxWindow_p."); |
1047 | return NULL; | |
1048 | } | |
1049 | } | |
cf694132 | 1050 | { |
4268f798 | 1051 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1052 | wxWindow_Center(_arg0,_arg1); |
1053 | ||
4268f798 | 1054 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1055 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1056 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1057 | _resultobj = Py_None; |
1058 | return _resultobj; | |
1059 | } | |
1060 | ||
1061 | #define wxWindow_Centre(_swigobj,_swigarg0) (_swigobj->Centre(_swigarg0)) | |
efc5f224 | 1062 | static PyObject *_wrap_wxWindow_Centre(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1063 | PyObject * _resultobj; |
1064 | wxWindow * _arg0; | |
1d99702e RD |
1065 | int _arg1 = (int ) wxBOTH; |
1066 | PyObject * _argo0 = 0; | |
efc5f224 | 1067 | char *_kwnames[] = { "self","direction", NULL }; |
8ab979d7 RD |
1068 | |
1069 | self = self; | |
efc5f224 | 1070 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_Centre",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 1071 | return NULL; |
1d99702e RD |
1072 | if (_argo0) { |
1073 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1074 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1075 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Centre. Expected _wxWindow_p."); |
1076 | return NULL; | |
1077 | } | |
1078 | } | |
cf694132 | 1079 | { |
4268f798 | 1080 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1081 | wxWindow_Centre(_arg0,_arg1); |
1082 | ||
4268f798 | 1083 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1084 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1085 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1086 | _resultobj = Py_None; |
1087 | return _resultobj; | |
1088 | } | |
1089 | ||
bb0054cd | 1090 | #define wxWindow_CentreOnParent(_swigobj,_swigarg0) (_swigobj->CentreOnParent(_swigarg0)) |
efc5f224 | 1091 | static PyObject *_wrap_wxWindow_CentreOnParent(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
1092 | PyObject * _resultobj; |
1093 | wxWindow * _arg0; | |
1d99702e RD |
1094 | int _arg1 = (int ) wxBOTH; |
1095 | PyObject * _argo0 = 0; | |
efc5f224 | 1096 | char *_kwnames[] = { "self","direction", NULL }; |
bb0054cd RD |
1097 | |
1098 | self = self; | |
efc5f224 | 1099 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_CentreOnParent",_kwnames,&_argo0,&_arg1)) |
bb0054cd | 1100 | return NULL; |
1d99702e RD |
1101 | if (_argo0) { |
1102 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1103 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
bb0054cd RD |
1104 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_CentreOnParent. Expected _wxWindow_p."); |
1105 | return NULL; | |
1106 | } | |
1107 | } | |
1108 | { | |
4268f798 | 1109 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
bb0054cd RD |
1110 | wxWindow_CentreOnParent(_arg0,_arg1); |
1111 | ||
4268f798 | 1112 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1113 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
1114 | } Py_INCREF(Py_None); |
1115 | _resultobj = Py_None; | |
1116 | return _resultobj; | |
1117 | } | |
1118 | ||
1119 | #define wxWindow_CenterOnParent(_swigobj,_swigarg0) (_swigobj->CenterOnParent(_swigarg0)) | |
efc5f224 | 1120 | static PyObject *_wrap_wxWindow_CenterOnParent(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
1121 | PyObject * _resultobj; |
1122 | wxWindow * _arg0; | |
1d99702e RD |
1123 | int _arg1 = (int ) wxBOTH; |
1124 | PyObject * _argo0 = 0; | |
efc5f224 | 1125 | char *_kwnames[] = { "self","direction", NULL }; |
bb0054cd RD |
1126 | |
1127 | self = self; | |
efc5f224 | 1128 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_CenterOnParent",_kwnames,&_argo0,&_arg1)) |
bb0054cd | 1129 | return NULL; |
1d99702e RD |
1130 | if (_argo0) { |
1131 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1132 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
bb0054cd RD |
1133 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_CenterOnParent. Expected _wxWindow_p."); |
1134 | return NULL; | |
1135 | } | |
1136 | } | |
1137 | { | |
4268f798 | 1138 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
bb0054cd RD |
1139 | wxWindow_CenterOnParent(_arg0,_arg1); |
1140 | ||
4268f798 | 1141 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1142 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
1143 | } Py_INCREF(Py_None); |
1144 | _resultobj = Py_None; | |
1145 | return _resultobj; | |
1146 | } | |
1147 | ||
3ca6a5f0 BP |
1148 | #define wxWindow_CentreOnScreen(_swigobj,_swigarg0) (_swigobj->CentreOnScreen(_swigarg0)) |
1149 | static PyObject *_wrap_wxWindow_CentreOnScreen(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1150 | PyObject * _resultobj; | |
1151 | wxWindow * _arg0; | |
1152 | int _arg1 = (int ) wxBOTH; | |
1153 | PyObject * _argo0 = 0; | |
1154 | char *_kwnames[] = { "self","direction", NULL }; | |
1155 | ||
1156 | self = self; | |
1157 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_CentreOnScreen",_kwnames,&_argo0,&_arg1)) | |
1158 | return NULL; | |
1159 | if (_argo0) { | |
1160 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1161 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1162 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_CentreOnScreen. Expected _wxWindow_p."); | |
1163 | return NULL; | |
1164 | } | |
1165 | } | |
1166 | { | |
4268f798 | 1167 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
3ca6a5f0 BP |
1168 | wxWindow_CentreOnScreen(_arg0,_arg1); |
1169 | ||
4268f798 | 1170 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1171 | if (PyErr_Occurred()) return NULL; |
3ca6a5f0 BP |
1172 | } Py_INCREF(Py_None); |
1173 | _resultobj = Py_None; | |
1174 | return _resultobj; | |
1175 | } | |
1176 | ||
1177 | #define wxWindow_CenterOnScreen(_swigobj,_swigarg0) (_swigobj->CenterOnScreen(_swigarg0)) | |
1178 | static PyObject *_wrap_wxWindow_CenterOnScreen(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1179 | PyObject * _resultobj; | |
1180 | wxWindow * _arg0; | |
1181 | int _arg1 = (int ) wxBOTH; | |
1182 | PyObject * _argo0 = 0; | |
1183 | char *_kwnames[] = { "self","direction", NULL }; | |
1184 | ||
1185 | self = self; | |
1186 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_CenterOnScreen",_kwnames,&_argo0,&_arg1)) | |
1187 | return NULL; | |
1188 | if (_argo0) { | |
1189 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1190 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1191 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_CenterOnScreen. Expected _wxWindow_p."); | |
1192 | return NULL; | |
1193 | } | |
1194 | } | |
1195 | { | |
4268f798 | 1196 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
3ca6a5f0 BP |
1197 | wxWindow_CenterOnScreen(_arg0,_arg1); |
1198 | ||
4268f798 | 1199 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1200 | if (PyErr_Occurred()) return NULL; |
3ca6a5f0 BP |
1201 | } Py_INCREF(Py_None); |
1202 | _resultobj = Py_None; | |
1203 | return _resultobj; | |
1204 | } | |
1205 | ||
d56cebe7 RD |
1206 | #define wxWindow_Clear(_swigobj) (_swigobj->Clear()) |
1207 | static PyObject *_wrap_wxWindow_Clear(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1208 | PyObject * _resultobj; | |
1209 | wxWindow * _arg0; | |
1210 | PyObject * _argo0 = 0; | |
1211 | char *_kwnames[] = { "self", NULL }; | |
1212 | ||
1213 | self = self; | |
1214 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Clear",_kwnames,&_argo0)) | |
1215 | return NULL; | |
1216 | if (_argo0) { | |
1217 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1218 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1219 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Clear. Expected _wxWindow_p."); | |
1220 | return NULL; | |
1221 | } | |
1222 | } | |
1223 | { | |
4268f798 | 1224 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
d56cebe7 RD |
1225 | wxWindow_Clear(_arg0); |
1226 | ||
4268f798 | 1227 | wxPyEndAllowThreads(__tstate); |
d56cebe7 RD |
1228 | if (PyErr_Occurred()) return NULL; |
1229 | } Py_INCREF(Py_None); | |
1230 | _resultobj = Py_None; | |
1231 | return _resultobj; | |
1232 | } | |
1233 | ||
af309447 | 1234 | #define wxWindow_ClientToScreenXY(_swigobj,_swigarg0,_swigarg1) (_swigobj->ClientToScreen(_swigarg0,_swigarg1)) |
efc5f224 | 1235 | static PyObject *_wrap_wxWindow_ClientToScreenXY(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1236 | PyObject * _resultobj; |
1237 | wxWindow * _arg0; | |
1238 | int * _arg1; | |
1239 | int * _arg2; | |
1d99702e | 1240 | PyObject * _argo0 = 0; |
8ab979d7 RD |
1241 | int temp; |
1242 | PyObject * _obj1 = 0; | |
1243 | int temp0; | |
1244 | PyObject * _obj2 = 0; | |
efc5f224 | 1245 | char *_kwnames[] = { "self","x","y", NULL }; |
8ab979d7 RD |
1246 | |
1247 | self = self; | |
efc5f224 | 1248 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxWindow_ClientToScreenXY",_kwnames,&_argo0,&_obj1,&_obj2)) |
8ab979d7 | 1249 | return NULL; |
1d99702e RD |
1250 | if (_argo0) { |
1251 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1252 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 | 1253 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ClientToScreenXY. Expected _wxWindow_p."); |
8ab979d7 RD |
1254 | return NULL; |
1255 | } | |
1256 | } | |
1257 | { | |
1258 | temp = (int) PyInt_AsLong(_obj1); | |
1259 | _arg1 = &temp; | |
1260 | } | |
1261 | { | |
1262 | temp0 = (int) PyInt_AsLong(_obj2); | |
1263 | _arg2 = &temp0; | |
1264 | } | |
cf694132 | 1265 | { |
4268f798 | 1266 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1267 | wxWindow_ClientToScreenXY(_arg0,_arg1,_arg2); |
1268 | ||
4268f798 | 1269 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1270 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1271 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1272 | _resultobj = Py_None; |
1273 | { | |
1274 | PyObject *o; | |
1275 | o = PyInt_FromLong((long) (*_arg1)); | |
1276 | _resultobj = t_output_helper(_resultobj, o); | |
1277 | } | |
1278 | { | |
1279 | PyObject *o; | |
1280 | o = PyInt_FromLong((long) (*_arg2)); | |
1281 | _resultobj = t_output_helper(_resultobj, o); | |
1282 | } | |
1283 | return _resultobj; | |
1284 | } | |
1285 | ||
af309447 | 1286 | #define wxWindow_ClientToScreen(_swigobj,_swigarg0) (_swigobj->ClientToScreen(_swigarg0)) |
efc5f224 | 1287 | static PyObject *_wrap_wxWindow_ClientToScreen(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
1288 | PyObject * _resultobj; |
1289 | wxPoint * _result; | |
1290 | wxWindow * _arg0; | |
1291 | wxPoint * _arg1; | |
1d99702e | 1292 | PyObject * _argo0 = 0; |
2f90df85 RD |
1293 | wxPoint temp; |
1294 | PyObject * _obj1 = 0; | |
efc5f224 | 1295 | char *_kwnames[] = { "self","pt", NULL }; |
af309447 RD |
1296 | char _ptemp[128]; |
1297 | ||
1298 | self = self; | |
2f90df85 | 1299 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_ClientToScreen",_kwnames,&_argo0,&_obj1)) |
af309447 | 1300 | return NULL; |
1d99702e RD |
1301 | if (_argo0) { |
1302 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1303 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
1304 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ClientToScreen. Expected _wxWindow_p."); |
1305 | return NULL; | |
1306 | } | |
1307 | } | |
2f90df85 RD |
1308 | { |
1309 | _arg1 = &temp; | |
1310 | if (! wxPoint_helper(_obj1, &_arg1)) | |
af309447 | 1311 | return NULL; |
2f90df85 | 1312 | } |
cf694132 | 1313 | { |
4268f798 | 1314 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1315 | _result = new wxPoint (wxWindow_ClientToScreen(_arg0,*_arg1)); |
1316 | ||
4268f798 | 1317 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1318 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1319 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); |
af309447 RD |
1320 | _resultobj = Py_BuildValue("s",_ptemp); |
1321 | return _resultobj; | |
1322 | } | |
1323 | ||
8ab979d7 | 1324 | #define wxWindow_Close(_swigobj,_swigarg0) (_swigobj->Close(_swigarg0)) |
efc5f224 | 1325 | static PyObject *_wrap_wxWindow_Close(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1326 | PyObject * _resultobj; |
1327 | bool _result; | |
1328 | wxWindow * _arg0; | |
1d99702e RD |
1329 | int _arg1 = (int ) FALSE; |
1330 | PyObject * _argo0 = 0; | |
efc5f224 | 1331 | char *_kwnames[] = { "self","force", NULL }; |
8ab979d7 RD |
1332 | |
1333 | self = self; | |
efc5f224 | 1334 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_Close",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 1335 | return NULL; |
1d99702e RD |
1336 | if (_argo0) { |
1337 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1338 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1339 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Close. Expected _wxWindow_p."); |
1340 | return NULL; | |
1341 | } | |
1342 | } | |
cf694132 | 1343 | { |
4268f798 | 1344 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1345 | _result = (bool )wxWindow_Close(_arg0,_arg1); |
1346 | ||
4268f798 | 1347 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1348 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1349 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
1350 | return _resultobj; |
1351 | } | |
1352 | ||
1353 | #define wxWindow_Destroy(_swigobj) (_swigobj->Destroy()) | |
efc5f224 | 1354 | static PyObject *_wrap_wxWindow_Destroy(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1355 | PyObject * _resultobj; |
1356 | bool _result; | |
1357 | wxWindow * _arg0; | |
1d99702e | 1358 | PyObject * _argo0 = 0; |
efc5f224 | 1359 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1360 | |
1361 | self = self; | |
efc5f224 | 1362 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Destroy",_kwnames,&_argo0)) |
8ab979d7 | 1363 | return NULL; |
1d99702e RD |
1364 | if (_argo0) { |
1365 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1366 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1367 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Destroy. Expected _wxWindow_p."); |
1368 | return NULL; | |
1369 | } | |
1370 | } | |
cf694132 | 1371 | { |
4268f798 | 1372 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1373 | _result = (bool )wxWindow_Destroy(_arg0); |
1374 | ||
4268f798 | 1375 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1376 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1377 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
1378 | return _resultobj; |
1379 | } | |
1380 | ||
1381 | #define wxWindow_DestroyChildren(_swigobj) (_swigobj->DestroyChildren()) | |
efc5f224 | 1382 | static PyObject *_wrap_wxWindow_DestroyChildren(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1383 | PyObject * _resultobj; |
1384 | wxWindow * _arg0; | |
1d99702e | 1385 | PyObject * _argo0 = 0; |
efc5f224 | 1386 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1387 | |
1388 | self = self; | |
efc5f224 | 1389 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_DestroyChildren",_kwnames,&_argo0)) |
8ab979d7 | 1390 | return NULL; |
1d99702e RD |
1391 | if (_argo0) { |
1392 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1393 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1394 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_DestroyChildren. Expected _wxWindow_p."); |
1395 | return NULL; | |
1396 | } | |
1397 | } | |
cf694132 | 1398 | { |
4268f798 | 1399 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1400 | wxWindow_DestroyChildren(_arg0); |
1401 | ||
4268f798 | 1402 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1403 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1404 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1405 | _resultobj = Py_None; |
1406 | return _resultobj; | |
1407 | } | |
1408 | ||
ac346f50 RD |
1409 | #define wxWindow_IsBeingDeleted(_swigobj) (_swigobj->IsBeingDeleted()) |
1410 | static PyObject *_wrap_wxWindow_IsBeingDeleted(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1411 | PyObject * _resultobj; | |
1412 | bool _result; | |
1413 | wxWindow * _arg0; | |
1414 | PyObject * _argo0 = 0; | |
1415 | char *_kwnames[] = { "self", NULL }; | |
1416 | ||
1417 | self = self; | |
1418 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_IsBeingDeleted",_kwnames,&_argo0)) | |
1419 | return NULL; | |
1420 | if (_argo0) { | |
1421 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1422 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1423 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsBeingDeleted. Expected _wxWindow_p."); | |
1424 | return NULL; | |
1425 | } | |
1426 | } | |
1427 | { | |
4268f798 | 1428 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
ac346f50 RD |
1429 | _result = (bool )wxWindow_IsBeingDeleted(_arg0); |
1430 | ||
4268f798 | 1431 | wxPyEndAllowThreads(__tstate); |
ac346f50 RD |
1432 | if (PyErr_Occurred()) return NULL; |
1433 | } _resultobj = Py_BuildValue("i",_result); | |
1434 | return _resultobj; | |
1435 | } | |
1436 | ||
8ab979d7 | 1437 | #define wxWindow_DragAcceptFiles(_swigobj,_swigarg0) (_swigobj->DragAcceptFiles(_swigarg0)) |
efc5f224 | 1438 | static PyObject *_wrap_wxWindow_DragAcceptFiles(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1439 | PyObject * _resultobj; |
1440 | wxWindow * _arg0; | |
1441 | bool _arg1; | |
1d99702e | 1442 | PyObject * _argo0 = 0; |
8ab979d7 | 1443 | int tempbool1; |
efc5f224 | 1444 | char *_kwnames[] = { "self","accept", NULL }; |
8ab979d7 RD |
1445 | |
1446 | self = self; | |
efc5f224 | 1447 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_DragAcceptFiles",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 1448 | return NULL; |
1d99702e RD |
1449 | if (_argo0) { |
1450 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1451 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1452 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_DragAcceptFiles. Expected _wxWindow_p."); |
1453 | return NULL; | |
1454 | } | |
1455 | } | |
1456 | _arg1 = (bool ) tempbool1; | |
cf694132 | 1457 | { |
4268f798 | 1458 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1459 | wxWindow_DragAcceptFiles(_arg0,_arg1); |
1460 | ||
4268f798 | 1461 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1462 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1463 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1464 | _resultobj = Py_None; |
1465 | return _resultobj; | |
1466 | } | |
1467 | ||
1468 | #define wxWindow_Enable(_swigobj,_swigarg0) (_swigobj->Enable(_swigarg0)) | |
efc5f224 | 1469 | static PyObject *_wrap_wxWindow_Enable(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1470 | PyObject * _resultobj; |
1471 | wxWindow * _arg0; | |
1472 | bool _arg1; | |
1d99702e | 1473 | PyObject * _argo0 = 0; |
8ab979d7 | 1474 | int tempbool1; |
efc5f224 | 1475 | char *_kwnames[] = { "self","enable", NULL }; |
8ab979d7 RD |
1476 | |
1477 | self = self; | |
efc5f224 | 1478 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_Enable",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 1479 | return NULL; |
1d99702e RD |
1480 | if (_argo0) { |
1481 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1482 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1483 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Enable. Expected _wxWindow_p."); |
1484 | return NULL; | |
1485 | } | |
1486 | } | |
1487 | _arg1 = (bool ) tempbool1; | |
cf694132 | 1488 | { |
4268f798 | 1489 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1490 | wxWindow_Enable(_arg0,_arg1); |
1491 | ||
4268f798 | 1492 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1493 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1494 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1495 | _resultobj = Py_None; |
1496 | return _resultobj; | |
1497 | } | |
1498 | ||
af309447 | 1499 | #define wxWindow_FindWindowById(_swigobj,_swigarg0) (_swigobj->FindWindow(_swigarg0)) |
efc5f224 | 1500 | static PyObject *_wrap_wxWindow_FindWindowById(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1501 | PyObject * _resultobj; |
1502 | wxWindow * _result; | |
1503 | wxWindow * _arg0; | |
1504 | long _arg1; | |
1d99702e | 1505 | PyObject * _argo0 = 0; |
efc5f224 | 1506 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
1507 | |
1508 | self = self; | |
efc5f224 | 1509 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxWindow_FindWindowById",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 1510 | return NULL; |
1d99702e RD |
1511 | if (_argo0) { |
1512 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1513 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 | 1514 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_FindWindowById. Expected _wxWindow_p."); |
8ab979d7 RD |
1515 | return NULL; |
1516 | } | |
1517 | } | |
cf694132 | 1518 | { |
4268f798 | 1519 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1520 | _result = (wxWindow *)wxWindow_FindWindowById(_arg0,_arg1); |
1521 | ||
4268f798 | 1522 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1523 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 1524 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
1525 | return _resultobj; |
1526 | } | |
1527 | ||
1528 | #define wxWindow_FindWindowByName(_swigobj,_swigarg0) (_swigobj->FindWindow(_swigarg0)) | |
efc5f224 | 1529 | static PyObject *_wrap_wxWindow_FindWindowByName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1530 | PyObject * _resultobj; |
1531 | wxWindow * _result; | |
1532 | wxWindow * _arg0; | |
1533 | wxString * _arg1; | |
1d99702e | 1534 | PyObject * _argo0 = 0; |
8ab979d7 | 1535 | PyObject * _obj1 = 0; |
efc5f224 | 1536 | char *_kwnames[] = { "self","name", NULL }; |
8ab979d7 RD |
1537 | |
1538 | self = self; | |
efc5f224 | 1539 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_FindWindowByName",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 1540 | return NULL; |
1d99702e RD |
1541 | if (_argo0) { |
1542 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1543 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1544 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_FindWindowByName. Expected _wxWindow_p."); |
1545 | return NULL; | |
1546 | } | |
1547 | } | |
1548 | { | |
185d7c3e RD |
1549 | #if PYTHON_API_VERSION >= 1009 |
1550 | char* tmpPtr; int tmpSize; | |
1551 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 1552 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
1553 | return NULL; |
1554 | } | |
1555 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
1556 | return NULL; | |
1557 | _arg1 = new wxString(tmpPtr, tmpSize); | |
1558 | #else | |
8ab979d7 RD |
1559 | if (!PyString_Check(_obj1)) { |
1560 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1561 | return NULL; | |
1562 | } | |
185d7c3e RD |
1563 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
1564 | #endif | |
8ab979d7 | 1565 | } |
cf694132 | 1566 | { |
4268f798 | 1567 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1568 | _result = (wxWindow *)wxWindow_FindWindowByName(_arg0,*_arg1); |
1569 | ||
4268f798 | 1570 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1571 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 1572 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
1573 | { |
1574 | if (_obj1) | |
1575 | delete _arg1; | |
1576 | } | |
1577 | return _resultobj; | |
1578 | } | |
1579 | ||
1580 | #define wxWindow_Fit(_swigobj) (_swigobj->Fit()) | |
efc5f224 | 1581 | static PyObject *_wrap_wxWindow_Fit(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1582 | PyObject * _resultobj; |
1583 | wxWindow * _arg0; | |
1d99702e | 1584 | PyObject * _argo0 = 0; |
efc5f224 | 1585 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1586 | |
1587 | self = self; | |
efc5f224 | 1588 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Fit",_kwnames,&_argo0)) |
8ab979d7 | 1589 | return NULL; |
1d99702e RD |
1590 | if (_argo0) { |
1591 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1592 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1593 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Fit. Expected _wxWindow_p."); |
1594 | return NULL; | |
1595 | } | |
1596 | } | |
cf694132 | 1597 | { |
4268f798 | 1598 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1599 | wxWindow_Fit(_arg0); |
1600 | ||
4268f798 | 1601 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1602 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1603 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1604 | _resultobj = Py_None; |
1605 | return _resultobj; | |
1606 | } | |
1607 | ||
1608 | #define wxWindow_GetBackgroundColour(_swigobj) (_swigobj->GetBackgroundColour()) | |
efc5f224 | 1609 | static PyObject *_wrap_wxWindow_GetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1610 | PyObject * _resultobj; |
1611 | wxColour * _result; | |
1612 | wxWindow * _arg0; | |
1d99702e | 1613 | PyObject * _argo0 = 0; |
efc5f224 | 1614 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1615 | char _ptemp[128]; |
1616 | ||
1617 | self = self; | |
efc5f224 | 1618 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetBackgroundColour",_kwnames,&_argo0)) |
8ab979d7 | 1619 | return NULL; |
1d99702e RD |
1620 | if (_argo0) { |
1621 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1622 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1623 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetBackgroundColour. Expected _wxWindow_p."); |
1624 | return NULL; | |
1625 | } | |
1626 | } | |
cf694132 | 1627 | { |
4268f798 | 1628 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1629 | _result = new wxColour (wxWindow_GetBackgroundColour(_arg0)); |
1630 | ||
4268f798 | 1631 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1632 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1633 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); |
8ab979d7 RD |
1634 | _resultobj = Py_BuildValue("s",_ptemp); |
1635 | return _resultobj; | |
1636 | } | |
1637 | ||
23bed520 RD |
1638 | #define wxWindow_GetBorder(_swigobj) (_swigobj->GetBorder()) |
1639 | static PyObject *_wrap_wxWindow_GetBorder(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1640 | PyObject * _resultobj; | |
1641 | wxBorder _result; | |
1642 | wxWindow * _arg0; | |
1643 | PyObject * _argo0 = 0; | |
1644 | char *_kwnames[] = { "self", NULL }; | |
1645 | ||
1646 | self = self; | |
1647 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetBorder",_kwnames,&_argo0)) | |
1648 | return NULL; | |
1649 | if (_argo0) { | |
1650 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1651 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1652 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetBorder. Expected _wxWindow_p."); | |
1653 | return NULL; | |
1654 | } | |
1655 | } | |
1656 | { | |
1657 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1658 | _result = (wxBorder )wxWindow_GetBorder(_arg0); | |
1659 | ||
1660 | wxPyEndAllowThreads(__tstate); | |
1661 | if (PyErr_Occurred()) return NULL; | |
1662 | } _resultobj = Py_BuildValue("i",_result); | |
1663 | return _resultobj; | |
1664 | } | |
1665 | ||
d426c97e RD |
1666 | static PyObject * wxWindow_GetChildren(wxWindow *self) { |
1667 | wxWindowList& list = self->GetChildren(); | |
1668 | return wxPy_ConvertList(&list, "wxWindow"); | |
1669 | } | |
1670 | static PyObject *_wrap_wxWindow_GetChildren(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1671 | PyObject * _resultobj; | |
1672 | PyObject * _result; | |
1673 | wxWindow * _arg0; | |
1674 | PyObject * _argo0 = 0; | |
1675 | char *_kwnames[] = { "self", NULL }; | |
1676 | ||
1677 | self = self; | |
1678 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetChildren",_kwnames,&_argo0)) | |
1679 | return NULL; | |
1680 | if (_argo0) { | |
1681 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1682 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1683 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetChildren. Expected _wxWindow_p."); | |
1684 | return NULL; | |
1685 | } | |
1686 | } | |
1687 | { | |
4268f798 | 1688 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
d426c97e RD |
1689 | _result = (PyObject *)wxWindow_GetChildren(_arg0); |
1690 | ||
4268f798 | 1691 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1692 | if (PyErr_Occurred()) return NULL; |
d426c97e RD |
1693 | }{ |
1694 | _resultobj = _result; | |
1695 | } | |
1696 | return _resultobj; | |
1697 | } | |
1698 | ||
8ab979d7 | 1699 | #define wxWindow_GetCharHeight(_swigobj) (_swigobj->GetCharHeight()) |
efc5f224 | 1700 | static PyObject *_wrap_wxWindow_GetCharHeight(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1701 | PyObject * _resultobj; |
1702 | int _result; | |
1703 | wxWindow * _arg0; | |
1d99702e | 1704 | PyObject * _argo0 = 0; |
efc5f224 | 1705 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1706 | |
1707 | self = self; | |
efc5f224 | 1708 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetCharHeight",_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")) { | |
8ab979d7 RD |
1713 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetCharHeight. Expected _wxWindow_p."); |
1714 | return NULL; | |
1715 | } | |
1716 | } | |
cf694132 | 1717 | { |
4268f798 | 1718 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1719 | _result = (int )wxWindow_GetCharHeight(_arg0); |
1720 | ||
4268f798 | 1721 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1722 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1723 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
1724 | return _resultobj; |
1725 | } | |
1726 | ||
1727 | #define wxWindow_GetCharWidth(_swigobj) (_swigobj->GetCharWidth()) | |
efc5f224 | 1728 | static PyObject *_wrap_wxWindow_GetCharWidth(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1729 | PyObject * _resultobj; |
1730 | int _result; | |
1731 | wxWindow * _arg0; | |
1d99702e | 1732 | PyObject * _argo0 = 0; |
efc5f224 | 1733 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1734 | |
1735 | self = self; | |
efc5f224 | 1736 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetCharWidth",_kwnames,&_argo0)) |
8ab979d7 | 1737 | return NULL; |
1d99702e RD |
1738 | if (_argo0) { |
1739 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1740 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1741 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetCharWidth. Expected _wxWindow_p."); |
1742 | return NULL; | |
1743 | } | |
1744 | } | |
cf694132 | 1745 | { |
4268f798 | 1746 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1747 | _result = (int )wxWindow_GetCharWidth(_arg0); |
1748 | ||
4268f798 | 1749 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1750 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1751 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
1752 | return _resultobj; |
1753 | } | |
1754 | ||
b8b8dda7 | 1755 | #define wxWindow_GetClientSizeTuple(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetClientSize(_swigarg0,_swigarg1)) |
efc5f224 | 1756 | static PyObject *_wrap_wxWindow_GetClientSizeTuple(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1757 | PyObject * _resultobj; |
1758 | wxWindow * _arg0; | |
1759 | int * _arg1; | |
1760 | int temp; | |
1761 | int * _arg2; | |
1762 | int temp0; | |
1d99702e | 1763 | PyObject * _argo0 = 0; |
efc5f224 | 1764 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1765 | |
1766 | self = self; | |
1767 | { | |
1768 | _arg1 = &temp; | |
1769 | } | |
1770 | { | |
1771 | _arg2 = &temp0; | |
1772 | } | |
efc5f224 | 1773 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetClientSizeTuple",_kwnames,&_argo0)) |
8ab979d7 | 1774 | return NULL; |
1d99702e RD |
1775 | if (_argo0) { |
1776 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1777 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 | 1778 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetClientSizeTuple. Expected _wxWindow_p."); |
8ab979d7 RD |
1779 | return NULL; |
1780 | } | |
1781 | } | |
cf694132 | 1782 | { |
4268f798 | 1783 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1784 | wxWindow_GetClientSizeTuple(_arg0,_arg1,_arg2); |
1785 | ||
4268f798 | 1786 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1787 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1788 | } Py_INCREF(Py_None); |
8ab979d7 RD |
1789 | _resultobj = Py_None; |
1790 | { | |
1791 | PyObject *o; | |
1792 | o = PyInt_FromLong((long) (*_arg1)); | |
1793 | _resultobj = t_output_helper(_resultobj, o); | |
1794 | } | |
1795 | { | |
1796 | PyObject *o; | |
1797 | o = PyInt_FromLong((long) (*_arg2)); | |
1798 | _resultobj = t_output_helper(_resultobj, o); | |
1799 | } | |
1800 | return _resultobj; | |
1801 | } | |
1802 | ||
b8b8dda7 | 1803 | #define wxWindow_GetClientSize(_swigobj) (_swigobj->GetClientSize()) |
efc5f224 | 1804 | static PyObject *_wrap_wxWindow_GetClientSize(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
1805 | PyObject * _resultobj; |
1806 | wxSize * _result; | |
1807 | wxWindow * _arg0; | |
1d99702e | 1808 | PyObject * _argo0 = 0; |
efc5f224 | 1809 | char *_kwnames[] = { "self", NULL }; |
b8b8dda7 RD |
1810 | char _ptemp[128]; |
1811 | ||
1812 | self = self; | |
efc5f224 | 1813 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetClientSize",_kwnames,&_argo0)) |
b8b8dda7 | 1814 | return NULL; |
1d99702e RD |
1815 | if (_argo0) { |
1816 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1817 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
1818 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetClientSize. Expected _wxWindow_p."); |
1819 | return NULL; | |
1820 | } | |
1821 | } | |
cf694132 | 1822 | { |
4268f798 | 1823 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1824 | _result = new wxSize (wxWindow_GetClientSize(_arg0)); |
1825 | ||
4268f798 | 1826 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1827 | if (PyErr_Occurred()) return NULL; |
cf694132 | 1828 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxSize_p"); |
b8b8dda7 RD |
1829 | _resultobj = Py_BuildValue("s",_ptemp); |
1830 | return _resultobj; | |
1831 | } | |
1832 | ||
23bed520 RD |
1833 | #define wxWindow_GetClientAreaOrigin(_swigobj) (_swigobj->GetClientAreaOrigin()) |
1834 | static PyObject *_wrap_wxWindow_GetClientAreaOrigin(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1835 | PyObject * _resultobj; | |
1836 | wxPoint * _result; | |
1837 | wxWindow * _arg0; | |
1838 | PyObject * _argo0 = 0; | |
1839 | char *_kwnames[] = { "self", NULL }; | |
1840 | char _ptemp[128]; | |
1841 | ||
1842 | self = self; | |
1843 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetClientAreaOrigin",_kwnames,&_argo0)) | |
1844 | return NULL; | |
1845 | if (_argo0) { | |
1846 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1847 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1848 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetClientAreaOrigin. Expected _wxWindow_p."); | |
1849 | return NULL; | |
1850 | } | |
1851 | } | |
1852 | { | |
1853 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1854 | _result = new wxPoint (wxWindow_GetClientAreaOrigin(_arg0)); | |
1855 | ||
1856 | wxPyEndAllowThreads(__tstate); | |
1857 | if (PyErr_Occurred()) return NULL; | |
1858 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); | |
1859 | _resultobj = Py_BuildValue("s",_ptemp); | |
1860 | return _resultobj; | |
1861 | } | |
1862 | ||
1863 | #define wxWindow_GetClientRect(_swigobj) (_swigobj->GetClientRect()) | |
1864 | static PyObject *_wrap_wxWindow_GetClientRect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1865 | PyObject * _resultobj; | |
1866 | wxRect * _result; | |
1867 | wxWindow * _arg0; | |
1868 | PyObject * _argo0 = 0; | |
1869 | char *_kwnames[] = { "self", NULL }; | |
1870 | char _ptemp[128]; | |
1871 | ||
1872 | self = self; | |
1873 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetClientRect",_kwnames,&_argo0)) | |
1874 | return NULL; | |
1875 | if (_argo0) { | |
1876 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1877 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1878 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetClientRect. Expected _wxWindow_p."); | |
1879 | return NULL; | |
1880 | } | |
1881 | } | |
1882 | { | |
1883 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1884 | _result = new wxRect (wxWindow_GetClientRect(_arg0)); | |
1885 | ||
1886 | wxPyEndAllowThreads(__tstate); | |
1887 | if (PyErr_Occurred()) return NULL; | |
1888 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxRect_p"); | |
1889 | _resultobj = Py_BuildValue("s",_ptemp); | |
1890 | return _resultobj; | |
1891 | } | |
1892 | ||
8ab979d7 | 1893 | #define wxWindow_GetConstraints(_swigobj) (_swigobj->GetConstraints()) |
efc5f224 | 1894 | static PyObject *_wrap_wxWindow_GetConstraints(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1895 | PyObject * _resultobj; |
1896 | wxLayoutConstraints * _result; | |
1897 | wxWindow * _arg0; | |
1d99702e | 1898 | PyObject * _argo0 = 0; |
efc5f224 | 1899 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1900 | char _ptemp[128]; |
1901 | ||
1902 | self = self; | |
efc5f224 | 1903 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetConstraints",_kwnames,&_argo0)) |
8ab979d7 | 1904 | return NULL; |
1d99702e RD |
1905 | if (_argo0) { |
1906 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1907 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1908 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetConstraints. Expected _wxWindow_p."); |
1909 | return NULL; | |
1910 | } | |
1911 | } | |
cf694132 | 1912 | { |
4268f798 | 1913 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1914 | _result = (wxLayoutConstraints *)wxWindow_GetConstraints(_arg0); |
1915 | ||
4268f798 | 1916 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1917 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
1918 | } if (_result) { |
1919 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxLayoutConstraints_p"); | |
1920 | _resultobj = Py_BuildValue("s",_ptemp); | |
1921 | } else { | |
1922 | Py_INCREF(Py_None); | |
1923 | _resultobj = Py_None; | |
1924 | } | |
8ab979d7 RD |
1925 | return _resultobj; |
1926 | } | |
1927 | ||
1afc06c2 RD |
1928 | #define wxWindow_GetEventHandler(_swigobj) (_swigobj->GetEventHandler()) |
1929 | static PyObject *_wrap_wxWindow_GetEventHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1930 | PyObject * _resultobj; | |
1931 | wxEvtHandler * _result; | |
1932 | wxWindow * _arg0; | |
1933 | PyObject * _argo0 = 0; | |
1934 | char *_kwnames[] = { "self", NULL }; | |
1afc06c2 RD |
1935 | |
1936 | self = self; | |
1937 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetEventHandler",_kwnames,&_argo0)) | |
1938 | return NULL; | |
1939 | if (_argo0) { | |
1940 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1941 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1942 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetEventHandler. Expected _wxWindow_p."); | |
1943 | return NULL; | |
1944 | } | |
1945 | } | |
1946 | { | |
4268f798 | 1947 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
1afc06c2 RD |
1948 | _result = (wxEvtHandler *)wxWindow_GetEventHandler(_arg0); |
1949 | ||
4268f798 | 1950 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1951 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 1952 | }{ _resultobj = wxPyMake_wxObject(_result); } |
1afc06c2 RD |
1953 | return _resultobj; |
1954 | } | |
1955 | ||
8ab979d7 | 1956 | #define wxWindow_GetFont(_swigobj) (_swigobj->GetFont()) |
efc5f224 | 1957 | static PyObject *_wrap_wxWindow_GetFont(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1958 | PyObject * _resultobj; |
1959 | wxFont * _result; | |
1960 | wxWindow * _arg0; | |
1d99702e | 1961 | PyObject * _argo0 = 0; |
efc5f224 | 1962 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1963 | char _ptemp[128]; |
1964 | ||
1965 | self = self; | |
efc5f224 | 1966 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetFont",_kwnames,&_argo0)) |
8ab979d7 | 1967 | return NULL; |
1d99702e RD |
1968 | if (_argo0) { |
1969 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1970 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
1971 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetFont. Expected _wxWindow_p."); |
1972 | return NULL; | |
1973 | } | |
1974 | } | |
cf694132 | 1975 | { |
4268f798 | 1976 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
c5943253 | 1977 | _result = new wxFont (wxWindow_GetFont(_arg0)); |
cf694132 | 1978 | |
4268f798 | 1979 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1980 | if (PyErr_Occurred()) return NULL; |
c5943253 RD |
1981 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxFont_p"); |
1982 | _resultobj = Py_BuildValue("s",_ptemp); | |
8ab979d7 RD |
1983 | return _resultobj; |
1984 | } | |
1985 | ||
1986 | #define wxWindow_GetForegroundColour(_swigobj) (_swigobj->GetForegroundColour()) | |
efc5f224 | 1987 | static PyObject *_wrap_wxWindow_GetForegroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1988 | PyObject * _resultobj; |
1989 | wxColour * _result; | |
1990 | wxWindow * _arg0; | |
1d99702e | 1991 | PyObject * _argo0 = 0; |
efc5f224 | 1992 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1993 | char _ptemp[128]; |
1994 | ||
1995 | self = self; | |
efc5f224 | 1996 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetForegroundColour",_kwnames,&_argo0)) |
8ab979d7 | 1997 | return NULL; |
1d99702e RD |
1998 | if (_argo0) { |
1999 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2000 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2001 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetForegroundColour. Expected _wxWindow_p."); |
2002 | return NULL; | |
2003 | } | |
2004 | } | |
cf694132 | 2005 | { |
4268f798 | 2006 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2007 | _result = new wxColour (wxWindow_GetForegroundColour(_arg0)); |
2008 | ||
4268f798 | 2009 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2010 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2011 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); |
8ab979d7 RD |
2012 | _resultobj = Py_BuildValue("s",_ptemp); |
2013 | return _resultobj; | |
2014 | } | |
2015 | ||
2016 | #define wxWindow_GetGrandParent(_swigobj) (_swigobj->GetGrandParent()) | |
efc5f224 | 2017 | static PyObject *_wrap_wxWindow_GetGrandParent(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2018 | PyObject * _resultobj; |
2019 | wxWindow * _result; | |
2020 | wxWindow * _arg0; | |
1d99702e | 2021 | PyObject * _argo0 = 0; |
efc5f224 | 2022 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2023 | |
2024 | self = self; | |
efc5f224 | 2025 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetGrandParent",_kwnames,&_argo0)) |
8ab979d7 | 2026 | return NULL; |
1d99702e RD |
2027 | if (_argo0) { |
2028 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2029 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2030 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetGrandParent. Expected _wxWindow_p."); |
2031 | return NULL; | |
2032 | } | |
2033 | } | |
cf694132 | 2034 | { |
4268f798 | 2035 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2036 | _result = (wxWindow *)wxWindow_GetGrandParent(_arg0); |
2037 | ||
4268f798 | 2038 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2039 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 2040 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
2041 | return _resultobj; |
2042 | } | |
2043 | ||
2abc0a0f | 2044 | static long wxWindow_GetHandle(wxWindow *self) { |
1b55cabf | 2045 | return wxPyGetWinHandle(self); //(long)self->GetHandle(); |
2abc0a0f RD |
2046 | } |
2047 | static PyObject *_wrap_wxWindow_GetHandle(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2048 | PyObject * _resultobj; | |
2049 | long _result; | |
2050 | wxWindow * _arg0; | |
2051 | PyObject * _argo0 = 0; | |
2052 | char *_kwnames[] = { "self", NULL }; | |
2053 | ||
2054 | self = self; | |
2055 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetHandle",_kwnames,&_argo0)) | |
2056 | return NULL; | |
2057 | if (_argo0) { | |
2058 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2059 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
2060 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetHandle. Expected _wxWindow_p."); | |
2061 | return NULL; | |
2062 | } | |
2063 | } | |
2064 | { | |
4268f798 | 2065 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2abc0a0f RD |
2066 | _result = (long )wxWindow_GetHandle(_arg0); |
2067 | ||
4268f798 | 2068 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2069 | if (PyErr_Occurred()) return NULL; |
2abc0a0f RD |
2070 | } _resultobj = Py_BuildValue("l",_result); |
2071 | return _resultobj; | |
2072 | } | |
2073 | ||
8ab979d7 | 2074 | #define wxWindow_GetId(_swigobj) (_swigobj->GetId()) |
efc5f224 | 2075 | static PyObject *_wrap_wxWindow_GetId(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2076 | PyObject * _resultobj; |
2077 | int _result; | |
2078 | wxWindow * _arg0; | |
1d99702e | 2079 | PyObject * _argo0 = 0; |
efc5f224 | 2080 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2081 | |
2082 | self = self; | |
efc5f224 | 2083 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetId",_kwnames,&_argo0)) |
8ab979d7 | 2084 | return NULL; |
1d99702e RD |
2085 | if (_argo0) { |
2086 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2087 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2088 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetId. Expected _wxWindow_p."); |
2089 | return NULL; | |
2090 | } | |
2091 | } | |
cf694132 | 2092 | { |
4268f798 | 2093 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2094 | _result = (int )wxWindow_GetId(_arg0); |
2095 | ||
4268f798 | 2096 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2097 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2098 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
2099 | return _resultobj; |
2100 | } | |
2101 | ||
8ab979d7 | 2102 | #define wxWindow_GetLabel(_swigobj) (_swigobj->GetLabel()) |
efc5f224 | 2103 | static PyObject *_wrap_wxWindow_GetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2104 | PyObject * _resultobj; |
2105 | wxString * _result; | |
2106 | wxWindow * _arg0; | |
1d99702e | 2107 | PyObject * _argo0 = 0; |
efc5f224 | 2108 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2109 | |
2110 | self = self; | |
efc5f224 | 2111 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetLabel",_kwnames,&_argo0)) |
8ab979d7 | 2112 | return NULL; |
1d99702e RD |
2113 | if (_argo0) { |
2114 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2115 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2116 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetLabel. Expected _wxWindow_p."); |
2117 | return NULL; | |
2118 | } | |
2119 | } | |
8ab979d7 | 2120 | { |
4268f798 | 2121 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2122 | _result = new wxString (wxWindow_GetLabel(_arg0)); |
2123 | ||
4268f798 | 2124 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2125 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2126 | }{ |
eec92d76 | 2127 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
2128 | } |
2129 | { | |
2130 | delete _result; | |
2131 | } | |
2132 | return _resultobj; | |
2133 | } | |
2134 | ||
bb0054cd | 2135 | #define wxWindow_SetLabel(_swigobj,_swigarg0) (_swigobj->SetLabel(_swigarg0)) |
efc5f224 | 2136 | static PyObject *_wrap_wxWindow_SetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
2137 | PyObject * _resultobj; |
2138 | wxWindow * _arg0; | |
2139 | wxString * _arg1; | |
1d99702e | 2140 | PyObject * _argo0 = 0; |
bb0054cd | 2141 | PyObject * _obj1 = 0; |
efc5f224 | 2142 | char *_kwnames[] = { "self","label", NULL }; |
bb0054cd RD |
2143 | |
2144 | self = self; | |
efc5f224 | 2145 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetLabel",_kwnames,&_argo0,&_obj1)) |
bb0054cd | 2146 | return NULL; |
1d99702e RD |
2147 | if (_argo0) { |
2148 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2149 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
bb0054cd RD |
2150 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetLabel. Expected _wxWindow_p."); |
2151 | return NULL; | |
2152 | } | |
2153 | } | |
2154 | { | |
185d7c3e RD |
2155 | #if PYTHON_API_VERSION >= 1009 |
2156 | char* tmpPtr; int tmpSize; | |
2157 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 2158 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
2159 | return NULL; |
2160 | } | |
2161 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
2162 | return NULL; | |
2163 | _arg1 = new wxString(tmpPtr, tmpSize); | |
2164 | #else | |
bb0054cd RD |
2165 | if (!PyString_Check(_obj1)) { |
2166 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2167 | return NULL; | |
2168 | } | |
185d7c3e RD |
2169 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
2170 | #endif | |
bb0054cd RD |
2171 | } |
2172 | { | |
4268f798 | 2173 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
bb0054cd RD |
2174 | wxWindow_SetLabel(_arg0,*_arg1); |
2175 | ||
4268f798 | 2176 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2177 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
2178 | } Py_INCREF(Py_None); |
2179 | _resultobj = Py_None; | |
2180 | { | |
2181 | if (_obj1) | |
2182 | delete _arg1; | |
2183 | } | |
2184 | return _resultobj; | |
2185 | } | |
2186 | ||
8ab979d7 | 2187 | #define wxWindow_GetName(_swigobj) (_swigobj->GetName()) |
efc5f224 | 2188 | static PyObject *_wrap_wxWindow_GetName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2189 | PyObject * _resultobj; |
2190 | wxString * _result; | |
2191 | wxWindow * _arg0; | |
1d99702e | 2192 | PyObject * _argo0 = 0; |
efc5f224 | 2193 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2194 | |
2195 | self = self; | |
efc5f224 | 2196 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetName",_kwnames,&_argo0)) |
8ab979d7 | 2197 | return NULL; |
1d99702e RD |
2198 | if (_argo0) { |
2199 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2200 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2201 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetName. Expected _wxWindow_p."); |
2202 | return NULL; | |
2203 | } | |
2204 | } | |
8ab979d7 | 2205 | { |
4268f798 | 2206 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2207 | _result = new wxString (wxWindow_GetName(_arg0)); |
2208 | ||
4268f798 | 2209 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2210 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2211 | }{ |
eec92d76 | 2212 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
2213 | } |
2214 | { | |
2215 | delete _result; | |
2216 | } | |
2217 | return _resultobj; | |
2218 | } | |
2219 | ||
2220 | #define wxWindow_GetParent(_swigobj) (_swigobj->GetParent()) | |
efc5f224 | 2221 | static PyObject *_wrap_wxWindow_GetParent(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2222 | PyObject * _resultobj; |
2223 | wxWindow * _result; | |
2224 | wxWindow * _arg0; | |
1d99702e | 2225 | PyObject * _argo0 = 0; |
efc5f224 | 2226 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2227 | |
2228 | self = self; | |
efc5f224 | 2229 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetParent",_kwnames,&_argo0)) |
8ab979d7 | 2230 | return NULL; |
1d99702e RD |
2231 | if (_argo0) { |
2232 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2233 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2234 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetParent. Expected _wxWindow_p."); |
2235 | return NULL; | |
2236 | } | |
2237 | } | |
cf694132 | 2238 | { |
4268f798 | 2239 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2240 | _result = (wxWindow *)wxWindow_GetParent(_arg0); |
2241 | ||
4268f798 | 2242 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2243 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 2244 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
2245 | return _resultobj; |
2246 | } | |
2247 | ||
b8b8dda7 | 2248 | #define wxWindow_GetPositionTuple(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetPosition(_swigarg0,_swigarg1)) |
efc5f224 | 2249 | static PyObject *_wrap_wxWindow_GetPositionTuple(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
2250 | PyObject * _resultobj; |
2251 | wxWindow * _arg0; | |
2252 | int * _arg1; | |
2253 | int temp; | |
2254 | int * _arg2; | |
2255 | int temp0; | |
1d99702e | 2256 | PyObject * _argo0 = 0; |
efc5f224 | 2257 | char *_kwnames[] = { "self", NULL }; |
b8b8dda7 RD |
2258 | |
2259 | self = self; | |
2260 | { | |
2261 | _arg1 = &temp; | |
2262 | } | |
2263 | { | |
2264 | _arg2 = &temp0; | |
2265 | } | |
efc5f224 | 2266 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetPositionTuple",_kwnames,&_argo0)) |
b8b8dda7 | 2267 | return NULL; |
1d99702e RD |
2268 | if (_argo0) { |
2269 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2270 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
2271 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetPositionTuple. Expected _wxWindow_p."); |
2272 | return NULL; | |
2273 | } | |
2274 | } | |
cf694132 | 2275 | { |
4268f798 | 2276 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2277 | wxWindow_GetPositionTuple(_arg0,_arg1,_arg2); |
2278 | ||
4268f798 | 2279 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2280 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2281 | } Py_INCREF(Py_None); |
b8b8dda7 RD |
2282 | _resultobj = Py_None; |
2283 | { | |
2284 | PyObject *o; | |
2285 | o = PyInt_FromLong((long) (*_arg1)); | |
2286 | _resultobj = t_output_helper(_resultobj, o); | |
2287 | } | |
2288 | { | |
2289 | PyObject *o; | |
2290 | o = PyInt_FromLong((long) (*_arg2)); | |
2291 | _resultobj = t_output_helper(_resultobj, o); | |
2292 | } | |
2293 | return _resultobj; | |
2294 | } | |
2295 | ||
2296 | #define wxWindow_GetPosition(_swigobj) (_swigobj->GetPosition()) | |
efc5f224 | 2297 | static PyObject *_wrap_wxWindow_GetPosition(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
2298 | PyObject * _resultobj; |
2299 | wxPoint * _result; | |
2300 | wxWindow * _arg0; | |
1d99702e | 2301 | PyObject * _argo0 = 0; |
efc5f224 | 2302 | char *_kwnames[] = { "self", NULL }; |
b8b8dda7 RD |
2303 | char _ptemp[128]; |
2304 | ||
2305 | self = self; | |
efc5f224 | 2306 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetPosition",_kwnames,&_argo0)) |
b8b8dda7 | 2307 | return NULL; |
1d99702e RD |
2308 | if (_argo0) { |
2309 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2310 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
2311 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetPosition. Expected _wxWindow_p."); |
2312 | return NULL; | |
2313 | } | |
2314 | } | |
cf694132 | 2315 | { |
4268f798 | 2316 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2317 | _result = new wxPoint (wxWindow_GetPosition(_arg0)); |
2318 | ||
4268f798 | 2319 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2320 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2321 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); |
b8b8dda7 RD |
2322 | _resultobj = Py_BuildValue("s",_ptemp); |
2323 | return _resultobj; | |
2324 | } | |
2325 | ||
2326 | #define wxWindow_GetRect(_swigobj) (_swigobj->GetRect()) | |
efc5f224 | 2327 | static PyObject *_wrap_wxWindow_GetRect(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
2328 | PyObject * _resultobj; |
2329 | wxRect * _result; | |
2330 | wxWindow * _arg0; | |
1d99702e | 2331 | PyObject * _argo0 = 0; |
efc5f224 | 2332 | char *_kwnames[] = { "self", NULL }; |
b8b8dda7 RD |
2333 | char _ptemp[128]; |
2334 | ||
2335 | self = self; | |
efc5f224 | 2336 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetRect",_kwnames,&_argo0)) |
b8b8dda7 | 2337 | return NULL; |
1d99702e RD |
2338 | if (_argo0) { |
2339 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2340 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
2341 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetRect. Expected _wxWindow_p."); |
2342 | return NULL; | |
2343 | } | |
2344 | } | |
cf694132 | 2345 | { |
4268f798 | 2346 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2347 | _result = new wxRect (wxWindow_GetRect(_arg0)); |
2348 | ||
4268f798 | 2349 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2350 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2351 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxRect_p"); |
b8b8dda7 RD |
2352 | _resultobj = Py_BuildValue("s",_ptemp); |
2353 | return _resultobj; | |
2354 | } | |
2355 | ||
8ab979d7 | 2356 | #define wxWindow_GetScrollThumb(_swigobj,_swigarg0) (_swigobj->GetScrollThumb(_swigarg0)) |
efc5f224 | 2357 | static PyObject *_wrap_wxWindow_GetScrollThumb(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2358 | PyObject * _resultobj; |
2359 | int _result; | |
2360 | wxWindow * _arg0; | |
2361 | int _arg1; | |
1d99702e | 2362 | PyObject * _argo0 = 0; |
efc5f224 | 2363 | char *_kwnames[] = { "self","orientation", NULL }; |
8ab979d7 RD |
2364 | |
2365 | self = self; | |
efc5f224 | 2366 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_GetScrollThumb",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 2367 | return NULL; |
1d99702e RD |
2368 | if (_argo0) { |
2369 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2370 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2371 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetScrollThumb. Expected _wxWindow_p."); |
2372 | return NULL; | |
2373 | } | |
2374 | } | |
cf694132 | 2375 | { |
4268f798 | 2376 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2377 | _result = (int )wxWindow_GetScrollThumb(_arg0,_arg1); |
2378 | ||
4268f798 | 2379 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2380 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2381 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
2382 | return _resultobj; |
2383 | } | |
2384 | ||
2385 | #define wxWindow_GetScrollPos(_swigobj,_swigarg0) (_swigobj->GetScrollPos(_swigarg0)) | |
efc5f224 | 2386 | static PyObject *_wrap_wxWindow_GetScrollPos(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2387 | PyObject * _resultobj; |
2388 | int _result; | |
2389 | wxWindow * _arg0; | |
2390 | int _arg1; | |
1d99702e | 2391 | PyObject * _argo0 = 0; |
efc5f224 | 2392 | char *_kwnames[] = { "self","orientation", NULL }; |
8ab979d7 RD |
2393 | |
2394 | self = self; | |
efc5f224 | 2395 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_GetScrollPos",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 2396 | return NULL; |
1d99702e RD |
2397 | if (_argo0) { |
2398 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2399 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2400 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetScrollPos. Expected _wxWindow_p."); |
2401 | return NULL; | |
2402 | } | |
2403 | } | |
cf694132 | 2404 | { |
4268f798 | 2405 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2406 | _result = (int )wxWindow_GetScrollPos(_arg0,_arg1); |
2407 | ||
4268f798 | 2408 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2409 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2410 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
2411 | return _resultobj; |
2412 | } | |
2413 | ||
2414 | #define wxWindow_GetScrollRange(_swigobj,_swigarg0) (_swigobj->GetScrollRange(_swigarg0)) | |
efc5f224 | 2415 | static PyObject *_wrap_wxWindow_GetScrollRange(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2416 | PyObject * _resultobj; |
2417 | int _result; | |
2418 | wxWindow * _arg0; | |
2419 | int _arg1; | |
1d99702e | 2420 | PyObject * _argo0 = 0; |
efc5f224 | 2421 | char *_kwnames[] = { "self","orientation", NULL }; |
8ab979d7 RD |
2422 | |
2423 | self = self; | |
efc5f224 | 2424 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_GetScrollRange",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 2425 | return NULL; |
1d99702e RD |
2426 | if (_argo0) { |
2427 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2428 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2429 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetScrollRange. Expected _wxWindow_p."); |
2430 | return NULL; | |
2431 | } | |
2432 | } | |
cf694132 | 2433 | { |
4268f798 | 2434 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2435 | _result = (int )wxWindow_GetScrollRange(_arg0,_arg1); |
2436 | ||
4268f798 | 2437 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2438 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2439 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
2440 | return _resultobj; |
2441 | } | |
2442 | ||
b8b8dda7 | 2443 | #define wxWindow_GetSizeTuple(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetSize(_swigarg0,_swigarg1)) |
efc5f224 | 2444 | static PyObject *_wrap_wxWindow_GetSizeTuple(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2445 | PyObject * _resultobj; |
2446 | wxWindow * _arg0; | |
2447 | int * _arg1; | |
2448 | int temp; | |
2449 | int * _arg2; | |
2450 | int temp0; | |
1d99702e | 2451 | PyObject * _argo0 = 0; |
efc5f224 | 2452 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2453 | |
2454 | self = self; | |
2455 | { | |
2456 | _arg1 = &temp; | |
2457 | } | |
2458 | { | |
2459 | _arg2 = &temp0; | |
2460 | } | |
efc5f224 | 2461 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetSizeTuple",_kwnames,&_argo0)) |
8ab979d7 | 2462 | return NULL; |
1d99702e RD |
2463 | if (_argo0) { |
2464 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2465 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 | 2466 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetSizeTuple. Expected _wxWindow_p."); |
8ab979d7 RD |
2467 | return NULL; |
2468 | } | |
2469 | } | |
cf694132 | 2470 | { |
4268f798 | 2471 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2472 | wxWindow_GetSizeTuple(_arg0,_arg1,_arg2); |
2473 | ||
4268f798 | 2474 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2475 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2476 | } Py_INCREF(Py_None); |
8ab979d7 RD |
2477 | _resultobj = Py_None; |
2478 | { | |
2479 | PyObject *o; | |
2480 | o = PyInt_FromLong((long) (*_arg1)); | |
2481 | _resultobj = t_output_helper(_resultobj, o); | |
2482 | } | |
2483 | { | |
2484 | PyObject *o; | |
2485 | o = PyInt_FromLong((long) (*_arg2)); | |
2486 | _resultobj = t_output_helper(_resultobj, o); | |
2487 | } | |
2488 | return _resultobj; | |
2489 | } | |
2490 | ||
b8b8dda7 | 2491 | #define wxWindow_GetSize(_swigobj) (_swigobj->GetSize()) |
efc5f224 | 2492 | static PyObject *_wrap_wxWindow_GetSize(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
2493 | PyObject * _resultobj; |
2494 | wxSize * _result; | |
2495 | wxWindow * _arg0; | |
1d99702e | 2496 | PyObject * _argo0 = 0; |
efc5f224 | 2497 | char *_kwnames[] = { "self", NULL }; |
b8b8dda7 RD |
2498 | char _ptemp[128]; |
2499 | ||
2500 | self = self; | |
efc5f224 | 2501 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetSize",_kwnames,&_argo0)) |
b8b8dda7 | 2502 | return NULL; |
1d99702e RD |
2503 | if (_argo0) { |
2504 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2505 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
2506 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetSize. Expected _wxWindow_p."); |
2507 | return NULL; | |
2508 | } | |
2509 | } | |
cf694132 | 2510 | { |
4268f798 | 2511 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2512 | _result = new wxSize (wxWindow_GetSize(_arg0)); |
2513 | ||
4268f798 | 2514 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2515 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2516 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxSize_p"); |
b8b8dda7 RD |
2517 | _resultobj = Py_BuildValue("s",_ptemp); |
2518 | return _resultobj; | |
2519 | } | |
2520 | ||
8ab979d7 | 2521 | #define wxWindow_GetTextExtent(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->GetTextExtent(_swigarg0,_swigarg1,_swigarg2)) |
efc5f224 | 2522 | static PyObject *_wrap_wxWindow_GetTextExtent(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2523 | PyObject * _resultobj; |
2524 | wxWindow * _arg0; | |
2525 | wxString * _arg1; | |
2526 | int * _arg2; | |
2527 | int temp; | |
2528 | int * _arg3; | |
2529 | int temp0; | |
1d99702e | 2530 | PyObject * _argo0 = 0; |
8ab979d7 | 2531 | PyObject * _obj1 = 0; |
efc5f224 | 2532 | char *_kwnames[] = { "self","string", NULL }; |
8ab979d7 RD |
2533 | |
2534 | self = self; | |
2535 | { | |
2536 | _arg2 = &temp; | |
2537 | } | |
2538 | { | |
2539 | _arg3 = &temp0; | |
2540 | } | |
efc5f224 | 2541 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_GetTextExtent",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 2542 | return NULL; |
1d99702e RD |
2543 | if (_argo0) { |
2544 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2545 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2546 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetTextExtent. Expected _wxWindow_p."); |
2547 | return NULL; | |
2548 | } | |
2549 | } | |
2550 | { | |
185d7c3e RD |
2551 | #if PYTHON_API_VERSION >= 1009 |
2552 | char* tmpPtr; int tmpSize; | |
2553 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 2554 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
2555 | return NULL; |
2556 | } | |
2557 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
2558 | return NULL; | |
2559 | _arg1 = new wxString(tmpPtr, tmpSize); | |
2560 | #else | |
8ab979d7 RD |
2561 | if (!PyString_Check(_obj1)) { |
2562 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2563 | return NULL; | |
2564 | } | |
185d7c3e RD |
2565 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
2566 | #endif | |
8ab979d7 | 2567 | } |
cf694132 | 2568 | { |
4268f798 | 2569 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2570 | wxWindow_GetTextExtent(_arg0,*_arg1,_arg2,_arg3); |
2571 | ||
4268f798 | 2572 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2573 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2574 | } Py_INCREF(Py_None); |
8ab979d7 RD |
2575 | _resultobj = Py_None; |
2576 | { | |
2577 | PyObject *o; | |
2578 | o = PyInt_FromLong((long) (*_arg2)); | |
2579 | _resultobj = t_output_helper(_resultobj, o); | |
2580 | } | |
2581 | { | |
2582 | PyObject *o; | |
2583 | o = PyInt_FromLong((long) (*_arg3)); | |
2584 | _resultobj = t_output_helper(_resultobj, o); | |
2585 | } | |
2586 | { | |
2587 | if (_obj1) | |
2588 | delete _arg1; | |
2589 | } | |
2590 | return _resultobj; | |
2591 | } | |
2592 | ||
af309447 | 2593 | #define wxWindow_GetFullTextExtent(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (_swigobj->GetTextExtent(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) |
efc5f224 | 2594 | static PyObject *_wrap_wxWindow_GetFullTextExtent(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
2595 | PyObject * _resultobj; |
2596 | wxWindow * _arg0; | |
2597 | wxString * _arg1; | |
2598 | int * _arg2; | |
2599 | int temp; | |
2600 | int * _arg3; | |
2601 | int temp0; | |
2602 | int * _arg4; | |
2603 | int temp1; | |
2604 | int * _arg5; | |
2605 | int temp2; | |
1d99702e RD |
2606 | wxFont * _arg6 = (wxFont *) NULL; |
2607 | PyObject * _argo0 = 0; | |
af309447 | 2608 | PyObject * _obj1 = 0; |
1d99702e | 2609 | PyObject * _argo6 = 0; |
efc5f224 | 2610 | char *_kwnames[] = { "self","string","font", NULL }; |
af309447 RD |
2611 | |
2612 | self = self; | |
2613 | { | |
2614 | _arg2 = &temp; | |
2615 | } | |
2616 | { | |
2617 | _arg3 = &temp0; | |
2618 | } | |
2619 | { | |
2620 | _arg4 = &temp1; | |
2621 | } | |
2622 | { | |
2623 | _arg5 = &temp2; | |
2624 | } | |
efc5f224 | 2625 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|O:wxWindow_GetFullTextExtent",_kwnames,&_argo0,&_obj1,&_argo6)) |
af309447 | 2626 | return NULL; |
1d99702e RD |
2627 | if (_argo0) { |
2628 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2629 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
2630 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetFullTextExtent. Expected _wxWindow_p."); |
2631 | return NULL; | |
2632 | } | |
2633 | } | |
2634 | { | |
185d7c3e RD |
2635 | #if PYTHON_API_VERSION >= 1009 |
2636 | char* tmpPtr; int tmpSize; | |
2637 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 2638 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
2639 | return NULL; |
2640 | } | |
2641 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
2642 | return NULL; | |
2643 | _arg1 = new wxString(tmpPtr, tmpSize); | |
2644 | #else | |
af309447 RD |
2645 | if (!PyString_Check(_obj1)) { |
2646 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2647 | return NULL; | |
2648 | } | |
185d7c3e RD |
2649 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
2650 | #endif | |
af309447 | 2651 | } |
1d99702e RD |
2652 | if (_argo6) { |
2653 | if (_argo6 == Py_None) { _arg6 = NULL; } | |
2654 | else if (SWIG_GetPtrObj(_argo6,(void **) &_arg6,"_wxFont_p")) { | |
af309447 RD |
2655 | PyErr_SetString(PyExc_TypeError,"Type error in argument 7 of wxWindow_GetFullTextExtent. Expected _wxFont_p."); |
2656 | return NULL; | |
2657 | } | |
2658 | } | |
cf694132 | 2659 | { |
4268f798 | 2660 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2661 | wxWindow_GetFullTextExtent(_arg0,*_arg1,_arg2,_arg3,_arg4,_arg5,_arg6); |
2662 | ||
4268f798 | 2663 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2664 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2665 | } Py_INCREF(Py_None); |
af309447 RD |
2666 | _resultobj = Py_None; |
2667 | { | |
2668 | PyObject *o; | |
2669 | o = PyInt_FromLong((long) (*_arg2)); | |
2670 | _resultobj = t_output_helper(_resultobj, o); | |
2671 | } | |
2672 | { | |
2673 | PyObject *o; | |
2674 | o = PyInt_FromLong((long) (*_arg3)); | |
2675 | _resultobj = t_output_helper(_resultobj, o); | |
2676 | } | |
2677 | { | |
2678 | PyObject *o; | |
2679 | o = PyInt_FromLong((long) (*_arg4)); | |
2680 | _resultobj = t_output_helper(_resultobj, o); | |
2681 | } | |
2682 | { | |
2683 | PyObject *o; | |
2684 | o = PyInt_FromLong((long) (*_arg5)); | |
2685 | _resultobj = t_output_helper(_resultobj, o); | |
2686 | } | |
2687 | { | |
2688 | if (_obj1) | |
2689 | delete _arg1; | |
2690 | } | |
2691 | return _resultobj; | |
2692 | } | |
2693 | ||
8ab979d7 | 2694 | #define wxWindow_GetTitle(_swigobj) (_swigobj->GetTitle()) |
efc5f224 | 2695 | static PyObject *_wrap_wxWindow_GetTitle(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2696 | PyObject * _resultobj; |
2697 | wxString * _result; | |
2698 | wxWindow * _arg0; | |
1d99702e | 2699 | PyObject * _argo0 = 0; |
efc5f224 | 2700 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2701 | |
2702 | self = self; | |
efc5f224 | 2703 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetTitle",_kwnames,&_argo0)) |
8ab979d7 | 2704 | return NULL; |
1d99702e RD |
2705 | if (_argo0) { |
2706 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2707 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2708 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetTitle. Expected _wxWindow_p."); |
2709 | return NULL; | |
2710 | } | |
2711 | } | |
8ab979d7 | 2712 | { |
4268f798 | 2713 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2714 | _result = new wxString (wxWindow_GetTitle(_arg0)); |
2715 | ||
4268f798 | 2716 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2717 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2718 | }{ |
eec92d76 | 2719 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
2720 | } |
2721 | { | |
2722 | delete _result; | |
2723 | } | |
2724 | return _resultobj; | |
2725 | } | |
2726 | ||
8bf5d46e | 2727 | #define wxWindow_GetUpdateRegion(_swigobj) (_swigobj->GetUpdateRegion()) |
efc5f224 | 2728 | static PyObject *_wrap_wxWindow_GetUpdateRegion(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
2729 | PyObject * _resultobj; |
2730 | wxRegion * _result; | |
2731 | wxWindow * _arg0; | |
1d99702e | 2732 | PyObject * _argo0 = 0; |
efc5f224 | 2733 | char *_kwnames[] = { "self", NULL }; |
8bf5d46e RD |
2734 | char _ptemp[128]; |
2735 | ||
2736 | self = self; | |
efc5f224 | 2737 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetUpdateRegion",_kwnames,&_argo0)) |
8bf5d46e | 2738 | return NULL; |
1d99702e RD |
2739 | if (_argo0) { |
2740 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2741 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8bf5d46e RD |
2742 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetUpdateRegion. Expected _wxWindow_p."); |
2743 | return NULL; | |
2744 | } | |
2745 | } | |
2746 | { | |
4268f798 | 2747 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
8bf5d46e RD |
2748 | _result = new wxRegion (wxWindow_GetUpdateRegion(_arg0)); |
2749 | ||
4268f798 | 2750 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2751 | if (PyErr_Occurred()) return NULL; |
8bf5d46e RD |
2752 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxRegion_p"); |
2753 | _resultobj = Py_BuildValue("s",_ptemp); | |
2754 | return _resultobj; | |
2755 | } | |
2756 | ||
8ab979d7 | 2757 | #define wxWindow_GetWindowStyleFlag(_swigobj) (_swigobj->GetWindowStyleFlag()) |
efc5f224 | 2758 | static PyObject *_wrap_wxWindow_GetWindowStyleFlag(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2759 | PyObject * _resultobj; |
2760 | long _result; | |
2761 | wxWindow * _arg0; | |
1d99702e | 2762 | PyObject * _argo0 = 0; |
efc5f224 | 2763 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2764 | |
2765 | self = self; | |
efc5f224 | 2766 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetWindowStyleFlag",_kwnames,&_argo0)) |
8ab979d7 | 2767 | return NULL; |
1d99702e RD |
2768 | if (_argo0) { |
2769 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2770 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2771 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetWindowStyleFlag. Expected _wxWindow_p."); |
2772 | return NULL; | |
2773 | } | |
2774 | } | |
cf694132 | 2775 | { |
4268f798 | 2776 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2777 | _result = (long )wxWindow_GetWindowStyleFlag(_arg0); |
2778 | ||
4268f798 | 2779 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2780 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2781 | } _resultobj = Py_BuildValue("l",_result); |
8ab979d7 RD |
2782 | return _resultobj; |
2783 | } | |
2784 | ||
f6bcfd97 BP |
2785 | #define wxWindow_SetWindowStyleFlag(_swigobj,_swigarg0) (_swigobj->SetWindowStyleFlag(_swigarg0)) |
2786 | static PyObject *_wrap_wxWindow_SetWindowStyleFlag(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2787 | PyObject * _resultobj; | |
2788 | wxWindow * _arg0; | |
2789 | long _arg1; | |
2790 | PyObject * _argo0 = 0; | |
2791 | char *_kwnames[] = { "self","style", NULL }; | |
2792 | ||
2793 | self = self; | |
2794 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxWindow_SetWindowStyleFlag",_kwnames,&_argo0,&_arg1)) | |
2795 | return NULL; | |
2796 | if (_argo0) { | |
2797 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2798 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
2799 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetWindowStyleFlag. Expected _wxWindow_p."); | |
2800 | return NULL; | |
2801 | } | |
2802 | } | |
2803 | { | |
4268f798 | 2804 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f6bcfd97 BP |
2805 | wxWindow_SetWindowStyleFlag(_arg0,_arg1); |
2806 | ||
4268f798 | 2807 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2808 | if (PyErr_Occurred()) return NULL; |
f6bcfd97 BP |
2809 | } Py_INCREF(Py_None); |
2810 | _resultobj = Py_None; | |
2811 | return _resultobj; | |
2812 | } | |
2813 | ||
2814 | #define wxWindow_SetWindowStyle(_swigobj,_swigarg0) (_swigobj->SetWindowStyle(_swigarg0)) | |
2815 | static PyObject *_wrap_wxWindow_SetWindowStyle(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2816 | PyObject * _resultobj; | |
2817 | wxWindow * _arg0; | |
2818 | long _arg1; | |
2819 | PyObject * _argo0 = 0; | |
2820 | char *_kwnames[] = { "self","style", NULL }; | |
2821 | ||
2822 | self = self; | |
2823 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxWindow_SetWindowStyle",_kwnames,&_argo0,&_arg1)) | |
2824 | return NULL; | |
2825 | if (_argo0) { | |
2826 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2827 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
2828 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetWindowStyle. Expected _wxWindow_p."); | |
2829 | return NULL; | |
2830 | } | |
2831 | } | |
2832 | { | |
4268f798 | 2833 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f6bcfd97 BP |
2834 | wxWindow_SetWindowStyle(_arg0,_arg1); |
2835 | ||
4268f798 | 2836 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2837 | if (PyErr_Occurred()) return NULL; |
f6bcfd97 BP |
2838 | } Py_INCREF(Py_None); |
2839 | _resultobj = Py_None; | |
2840 | return _resultobj; | |
2841 | } | |
2842 | ||
23bed520 RD |
2843 | #define wxWindow_HasScrollbar(_swigobj,_swigarg0) (_swigobj->HasScrollbar(_swigarg0)) |
2844 | static PyObject *_wrap_wxWindow_HasScrollbar(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2845 | PyObject * _resultobj; | |
2846 | bool _result; | |
2847 | wxWindow * _arg0; | |
2848 | int _arg1; | |
2849 | PyObject * _argo0 = 0; | |
2850 | char *_kwnames[] = { "self","orient", NULL }; | |
2851 | ||
2852 | self = self; | |
2853 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_HasScrollbar",_kwnames,&_argo0,&_arg1)) | |
2854 | return NULL; | |
2855 | if (_argo0) { | |
2856 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2857 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
2858 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_HasScrollbar. Expected _wxWindow_p."); | |
2859 | return NULL; | |
2860 | } | |
2861 | } | |
2862 | { | |
2863 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2864 | _result = (bool )wxWindow_HasScrollbar(_arg0,_arg1); | |
2865 | ||
2866 | wxPyEndAllowThreads(__tstate); | |
2867 | if (PyErr_Occurred()) return NULL; | |
2868 | } _resultobj = Py_BuildValue("i",_result); | |
2869 | return _resultobj; | |
2870 | } | |
2871 | ||
bb0054cd | 2872 | #define wxWindow_Hide(_swigobj) (_swigobj->Hide()) |
efc5f224 | 2873 | static PyObject *_wrap_wxWindow_Hide(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
2874 | PyObject * _resultobj; |
2875 | bool _result; | |
2876 | wxWindow * _arg0; | |
1d99702e | 2877 | PyObject * _argo0 = 0; |
efc5f224 | 2878 | char *_kwnames[] = { "self", NULL }; |
bb0054cd RD |
2879 | |
2880 | self = self; | |
efc5f224 | 2881 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Hide",_kwnames,&_argo0)) |
bb0054cd | 2882 | return NULL; |
1d99702e RD |
2883 | if (_argo0) { |
2884 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2885 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
bb0054cd RD |
2886 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Hide. Expected _wxWindow_p."); |
2887 | return NULL; | |
2888 | } | |
2889 | } | |
2890 | { | |
4268f798 | 2891 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
bb0054cd RD |
2892 | _result = (bool )wxWindow_Hide(_arg0); |
2893 | ||
4268f798 | 2894 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2895 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
2896 | } _resultobj = Py_BuildValue("i",_result); |
2897 | return _resultobj; | |
2898 | } | |
2899 | ||
23bed520 RD |
2900 | #define wxWindow_HitTest(_swigobj,_swigarg0) (_swigobj->HitTest(_swigarg0)) |
2901 | static PyObject *_wrap_wxWindow_HitTest(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2902 | PyObject * _resultobj; | |
2903 | wxHitTest _result; | |
2904 | wxWindow * _arg0; | |
2905 | wxPoint * _arg1; | |
2906 | PyObject * _argo0 = 0; | |
2907 | wxPoint temp; | |
2908 | PyObject * _obj1 = 0; | |
2909 | char *_kwnames[] = { "self","pt", NULL }; | |
2910 | ||
2911 | self = self; | |
2912 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_HitTest",_kwnames,&_argo0,&_obj1)) | |
2913 | return NULL; | |
2914 | if (_argo0) { | |
2915 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2916 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
2917 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_HitTest. Expected _wxWindow_p."); | |
2918 | return NULL; | |
2919 | } | |
2920 | } | |
2921 | { | |
2922 | _arg1 = &temp; | |
2923 | if (! wxPoint_helper(_obj1, &_arg1)) | |
2924 | return NULL; | |
2925 | } | |
2926 | { | |
2927 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2928 | _result = (wxHitTest )wxWindow_HitTest(_arg0,*_arg1); | |
2929 | ||
2930 | wxPyEndAllowThreads(__tstate); | |
2931 | if (PyErr_Occurred()) return NULL; | |
2932 | } _resultobj = Py_BuildValue("i",_result); | |
2933 | return _resultobj; | |
2934 | } | |
2935 | ||
8ab979d7 | 2936 | #define wxWindow_InitDialog(_swigobj) (_swigobj->InitDialog()) |
efc5f224 | 2937 | static PyObject *_wrap_wxWindow_InitDialog(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2938 | PyObject * _resultobj; |
2939 | wxWindow * _arg0; | |
1d99702e | 2940 | PyObject * _argo0 = 0; |
efc5f224 | 2941 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2942 | |
2943 | self = self; | |
efc5f224 | 2944 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_InitDialog",_kwnames,&_argo0)) |
8ab979d7 | 2945 | return NULL; |
1d99702e RD |
2946 | if (_argo0) { |
2947 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2948 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2949 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_InitDialog. Expected _wxWindow_p."); |
2950 | return NULL; | |
2951 | } | |
2952 | } | |
cf694132 | 2953 | { |
4268f798 | 2954 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2955 | wxWindow_InitDialog(_arg0); |
2956 | ||
4268f798 | 2957 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2958 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2959 | } Py_INCREF(Py_None); |
8ab979d7 RD |
2960 | _resultobj = Py_None; |
2961 | return _resultobj; | |
2962 | } | |
2963 | ||
2964 | #define wxWindow_IsEnabled(_swigobj) (_swigobj->IsEnabled()) | |
efc5f224 | 2965 | static PyObject *_wrap_wxWindow_IsEnabled(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
2966 | PyObject * _resultobj; |
2967 | bool _result; | |
2968 | wxWindow * _arg0; | |
1d99702e | 2969 | PyObject * _argo0 = 0; |
efc5f224 | 2970 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
2971 | |
2972 | self = self; | |
efc5f224 | 2973 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_IsEnabled",_kwnames,&_argo0)) |
8ab979d7 | 2974 | return NULL; |
1d99702e RD |
2975 | if (_argo0) { |
2976 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2977 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
2978 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsEnabled. Expected _wxWindow_p."); |
2979 | return NULL; | |
2980 | } | |
2981 | } | |
cf694132 | 2982 | { |
4268f798 | 2983 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2984 | _result = (bool )wxWindow_IsEnabled(_arg0); |
2985 | ||
4268f798 | 2986 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2987 | if (PyErr_Occurred()) return NULL; |
cf694132 | 2988 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
2989 | return _resultobj; |
2990 | } | |
2991 | ||
1b55cabf RD |
2992 | #define wxWindow_IsExposed(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->IsExposed(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) |
2993 | static PyObject *_wrap_wxWindow_IsExposed(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2994 | PyObject * _resultobj; | |
2995 | bool _result; | |
2996 | wxWindow * _arg0; | |
2997 | int _arg1; | |
2998 | int _arg2; | |
2999 | int _arg3 = (int ) 0; | |
3000 | int _arg4 = (int ) 0; | |
3001 | PyObject * _argo0 = 0; | |
3002 | char *_kwnames[] = { "self","x","y","w","h", NULL }; | |
3003 | ||
3004 | self = self; | |
3005 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii|ii:wxWindow_IsExposed",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_arg4)) | |
3006 | return NULL; | |
3007 | if (_argo0) { | |
3008 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3009 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3010 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsExposed. Expected _wxWindow_p."); | |
3011 | return NULL; | |
3012 | } | |
3013 | } | |
3014 | { | |
4268f798 | 3015 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
1b55cabf RD |
3016 | _result = (bool )wxWindow_IsExposed(_arg0,_arg1,_arg2,_arg3,_arg4); |
3017 | ||
4268f798 | 3018 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3019 | if (PyErr_Occurred()) return NULL; |
1b55cabf RD |
3020 | } _resultobj = Py_BuildValue("i",_result); |
3021 | return _resultobj; | |
3022 | } | |
3023 | ||
3024 | #define wxWindow_IsExposedPoint(_swigobj,_swigarg0) (_swigobj->IsExposed(_swigarg0)) | |
3025 | static PyObject *_wrap_wxWindow_IsExposedPoint(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3026 | PyObject * _resultobj; | |
3027 | bool _result; | |
3028 | wxWindow * _arg0; | |
3029 | wxPoint * _arg1; | |
3030 | PyObject * _argo0 = 0; | |
3031 | wxPoint temp; | |
3032 | PyObject * _obj1 = 0; | |
3033 | char *_kwnames[] = { "self","pt", NULL }; | |
3034 | ||
3035 | self = self; | |
3036 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_IsExposedPoint",_kwnames,&_argo0,&_obj1)) | |
3037 | return NULL; | |
3038 | if (_argo0) { | |
3039 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3040 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3041 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsExposedPoint. Expected _wxWindow_p."); | |
3042 | return NULL; | |
3043 | } | |
3044 | } | |
3045 | { | |
3046 | _arg1 = &temp; | |
3047 | if (! wxPoint_helper(_obj1, &_arg1)) | |
3048 | return NULL; | |
3049 | } | |
3050 | { | |
4268f798 | 3051 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
1b55cabf RD |
3052 | _result = (bool )wxWindow_IsExposedPoint(_arg0,*_arg1); |
3053 | ||
4268f798 | 3054 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3055 | if (PyErr_Occurred()) return NULL; |
1b55cabf RD |
3056 | } _resultobj = Py_BuildValue("i",_result); |
3057 | return _resultobj; | |
3058 | } | |
3059 | ||
3060 | #define wxWindow_IsExposedRect(_swigobj,_swigarg0) (_swigobj->IsExposed(_swigarg0)) | |
3061 | static PyObject *_wrap_wxWindow_IsExposedRect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3062 | PyObject * _resultobj; | |
3063 | bool _result; | |
3064 | wxWindow * _arg0; | |
3065 | wxRect * _arg1; | |
3066 | PyObject * _argo0 = 0; | |
3067 | wxRect temp; | |
3068 | PyObject * _obj1 = 0; | |
3069 | char *_kwnames[] = { "self","rect", NULL }; | |
3070 | ||
3071 | self = self; | |
3072 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_IsExposedRect",_kwnames,&_argo0,&_obj1)) | |
3073 | return NULL; | |
3074 | if (_argo0) { | |
3075 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3076 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3077 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsExposedRect. Expected _wxWindow_p."); | |
3078 | return NULL; | |
3079 | } | |
3080 | } | |
3081 | { | |
3082 | _arg1 = &temp; | |
3083 | if (! wxRect_helper(_obj1, &_arg1)) | |
3084 | return NULL; | |
3085 | } | |
3086 | { | |
4268f798 | 3087 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
1b55cabf RD |
3088 | _result = (bool )wxWindow_IsExposedRect(_arg0,*_arg1); |
3089 | ||
4268f798 | 3090 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3091 | if (PyErr_Occurred()) return NULL; |
1b55cabf RD |
3092 | } _resultobj = Py_BuildValue("i",_result); |
3093 | return _resultobj; | |
3094 | } | |
3095 | ||
8ab979d7 | 3096 | #define wxWindow_IsRetained(_swigobj) (_swigobj->IsRetained()) |
efc5f224 | 3097 | static PyObject *_wrap_wxWindow_IsRetained(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3098 | PyObject * _resultobj; |
3099 | bool _result; | |
3100 | wxWindow * _arg0; | |
1d99702e | 3101 | PyObject * _argo0 = 0; |
efc5f224 | 3102 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
3103 | |
3104 | self = self; | |
efc5f224 | 3105 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_IsRetained",_kwnames,&_argo0)) |
8ab979d7 | 3106 | return NULL; |
1d99702e RD |
3107 | if (_argo0) { |
3108 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3109 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3110 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsRetained. Expected _wxWindow_p."); |
3111 | return NULL; | |
3112 | } | |
3113 | } | |
cf694132 | 3114 | { |
4268f798 | 3115 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
3116 | _result = (bool )wxWindow_IsRetained(_arg0); |
3117 | ||
4268f798 | 3118 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3119 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3120 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
3121 | return _resultobj; |
3122 | } | |
3123 | ||
3124 | #define wxWindow_IsShown(_swigobj) (_swigobj->IsShown()) | |
efc5f224 | 3125 | static PyObject *_wrap_wxWindow_IsShown(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3126 | PyObject * _resultobj; |
3127 | bool _result; | |
3128 | wxWindow * _arg0; | |
1d99702e | 3129 | PyObject * _argo0 = 0; |
efc5f224 | 3130 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
3131 | |
3132 | self = self; | |
efc5f224 | 3133 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_IsShown",_kwnames,&_argo0)) |
8ab979d7 | 3134 | return NULL; |
1d99702e RD |
3135 | if (_argo0) { |
3136 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3137 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3138 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsShown. Expected _wxWindow_p."); |
3139 | return NULL; | |
3140 | } | |
3141 | } | |
cf694132 | 3142 | { |
4268f798 | 3143 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
3144 | _result = (bool )wxWindow_IsShown(_arg0); |
3145 | ||
4268f798 | 3146 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3147 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3148 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
3149 | return _resultobj; |
3150 | } | |
3151 | ||
bb0054cd | 3152 | #define wxWindow_IsTopLevel(_swigobj) (_swigobj->IsTopLevel()) |
efc5f224 | 3153 | static PyObject *_wrap_wxWindow_IsTopLevel(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
3154 | PyObject * _resultobj; |
3155 | bool _result; | |
3156 | wxWindow * _arg0; | |
1d99702e | 3157 | PyObject * _argo0 = 0; |
efc5f224 | 3158 | char *_kwnames[] = { "self", NULL }; |
bb0054cd RD |
3159 | |
3160 | self = self; | |
efc5f224 | 3161 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_IsTopLevel",_kwnames,&_argo0)) |
bb0054cd | 3162 | return NULL; |
1d99702e RD |
3163 | if (_argo0) { |
3164 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3165 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
bb0054cd RD |
3166 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsTopLevel. Expected _wxWindow_p."); |
3167 | return NULL; | |
3168 | } | |
3169 | } | |
3170 | { | |
4268f798 | 3171 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
bb0054cd RD |
3172 | _result = (bool )wxWindow_IsTopLevel(_arg0); |
3173 | ||
4268f798 | 3174 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3175 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
3176 | } _resultobj = Py_BuildValue("i",_result); |
3177 | return _resultobj; | |
3178 | } | |
3179 | ||
8ab979d7 | 3180 | #define wxWindow_Layout(_swigobj) (_swigobj->Layout()) |
efc5f224 | 3181 | static PyObject *_wrap_wxWindow_Layout(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3182 | PyObject * _resultobj; |
3183 | wxWindow * _arg0; | |
1d99702e | 3184 | PyObject * _argo0 = 0; |
efc5f224 | 3185 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
3186 | |
3187 | self = self; | |
efc5f224 | 3188 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Layout",_kwnames,&_argo0)) |
8ab979d7 | 3189 | return NULL; |
1d99702e RD |
3190 | if (_argo0) { |
3191 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3192 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3193 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Layout. Expected _wxWindow_p."); |
3194 | return NULL; | |
3195 | } | |
3196 | } | |
cf694132 | 3197 | { |
4268f798 | 3198 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
3199 | wxWindow_Layout(_arg0); |
3200 | ||
4268f798 | 3201 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3202 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3203 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3204 | _resultobj = Py_None; |
3205 | return _resultobj; | |
3206 | } | |
3207 | ||
3208 | #define wxWindow_LoadFromResource(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->LoadFromResource(_swigarg0,_swigarg1,_swigarg2)) | |
efc5f224 | 3209 | static PyObject *_wrap_wxWindow_LoadFromResource(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3210 | PyObject * _resultobj; |
3211 | bool _result; | |
3212 | wxWindow * _arg0; | |
3213 | wxWindow * _arg1; | |
3214 | wxString * _arg2; | |
1d99702e RD |
3215 | wxResourceTable * _arg3 = (wxResourceTable *) NULL; |
3216 | PyObject * _argo0 = 0; | |
3217 | PyObject * _argo1 = 0; | |
8ab979d7 | 3218 | PyObject * _obj2 = 0; |
1d99702e | 3219 | PyObject * _argo3 = 0; |
efc5f224 | 3220 | char *_kwnames[] = { "self","parent","resourceName","resourceTable", NULL }; |
8ab979d7 RD |
3221 | |
3222 | self = self; | |
efc5f224 | 3223 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO|O:wxWindow_LoadFromResource",_kwnames,&_argo0,&_argo1,&_obj2,&_argo3)) |
8ab979d7 | 3224 | return NULL; |
1d99702e RD |
3225 | if (_argo0) { |
3226 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3227 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3228 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_LoadFromResource. Expected _wxWindow_p."); |
3229 | return NULL; | |
3230 | } | |
3231 | } | |
1d99702e RD |
3232 | if (_argo1) { |
3233 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3234 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
8ab979d7 RD |
3235 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_LoadFromResource. Expected _wxWindow_p."); |
3236 | return NULL; | |
3237 | } | |
3238 | } | |
3239 | { | |
185d7c3e RD |
3240 | #if PYTHON_API_VERSION >= 1009 |
3241 | char* tmpPtr; int tmpSize; | |
3242 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 3243 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
3244 | return NULL; |
3245 | } | |
3246 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
3247 | return NULL; | |
3248 | _arg2 = new wxString(tmpPtr, tmpSize); | |
3249 | #else | |
8ab979d7 RD |
3250 | if (!PyString_Check(_obj2)) { |
3251 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
3252 | return NULL; | |
3253 | } | |
185d7c3e RD |
3254 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
3255 | #endif | |
8ab979d7 | 3256 | } |
1d99702e RD |
3257 | if (_argo3) { |
3258 | if (_argo3 == Py_None) { _arg3 = NULL; } | |
3259 | else if (SWIG_GetPtrObj(_argo3,(void **) &_arg3,"_wxResourceTable_p")) { | |
8ab979d7 RD |
3260 | PyErr_SetString(PyExc_TypeError,"Type error in argument 4 of wxWindow_LoadFromResource. Expected _wxResourceTable_p."); |
3261 | return NULL; | |
3262 | } | |
3263 | } | |
cf694132 | 3264 | { |
4268f798 | 3265 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
3266 | _result = (bool )wxWindow_LoadFromResource(_arg0,_arg1,*_arg2,_arg3); |
3267 | ||
4268f798 | 3268 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3269 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3270 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
3271 | { |
3272 | if (_obj2) | |
3273 | delete _arg2; | |
3274 | } | |
3275 | return _resultobj; | |
3276 | } | |
3277 | ||
3278 | #define wxWindow_Lower(_swigobj) (_swigobj->Lower()) | |
efc5f224 | 3279 | static PyObject *_wrap_wxWindow_Lower(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3280 | PyObject * _resultobj; |
3281 | wxWindow * _arg0; | |
1d99702e | 3282 | PyObject * _argo0 = 0; |
efc5f224 | 3283 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
3284 | |
3285 | self = self; | |
efc5f224 | 3286 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Lower",_kwnames,&_argo0)) |
8ab979d7 | 3287 | return NULL; |
1d99702e RD |
3288 | if (_argo0) { |
3289 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3290 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3291 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Lower. Expected _wxWindow_p."); |
3292 | return NULL; | |
3293 | } | |
3294 | } | |
cf694132 | 3295 | { |
4268f798 | 3296 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
3297 | wxWindow_Lower(_arg0); |
3298 | ||
4268f798 | 3299 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3300 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3301 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3302 | _resultobj = Py_None; |
3303 | return _resultobj; | |
3304 | } | |
3305 | ||
3306 | #define wxWindow_MakeModal(_swigobj,_swigarg0) (_swigobj->MakeModal(_swigarg0)) | |
efc5f224 | 3307 | static PyObject *_wrap_wxWindow_MakeModal(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3308 | PyObject * _resultobj; |
3309 | wxWindow * _arg0; | |
900d9886 | 3310 | bool _arg1 = (bool ) TRUE; |
1d99702e | 3311 | PyObject * _argo0 = 0; |
900d9886 | 3312 | int tempbool1 = (int) TRUE; |
efc5f224 | 3313 | char *_kwnames[] = { "self","flag", NULL }; |
8ab979d7 RD |
3314 | |
3315 | self = self; | |
900d9886 | 3316 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_MakeModal",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 3317 | return NULL; |
1d99702e RD |
3318 | if (_argo0) { |
3319 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3320 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3321 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_MakeModal. Expected _wxWindow_p."); |
3322 | return NULL; | |
3323 | } | |
3324 | } | |
3325 | _arg1 = (bool ) tempbool1; | |
cf694132 | 3326 | { |
4268f798 | 3327 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
3328 | wxWindow_MakeModal(_arg0,_arg1); |
3329 | ||
4268f798 | 3330 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3331 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3332 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3333 | _resultobj = Py_None; |
3334 | return _resultobj; | |
3335 | } | |
3336 | ||
23bed520 | 3337 | #define wxWindow_MoveXY(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->Move(_swigarg0,_swigarg1,_swigarg2)) |
efc5f224 | 3338 | static PyObject *_wrap_wxWindow_MoveXY(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3339 | PyObject * _resultobj; |
3340 | wxWindow * _arg0; | |
3341 | int _arg1; | |
3342 | int _arg2; | |
23bed520 | 3343 | int _arg3 = (int ) wxSIZE_USE_EXISTING; |
1d99702e | 3344 | PyObject * _argo0 = 0; |
23bed520 | 3345 | char *_kwnames[] = { "self","x","y","flags", NULL }; |
8ab979d7 RD |
3346 | |
3347 | self = self; | |
23bed520 | 3348 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii|i:wxWindow_MoveXY",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3)) |
af309447 | 3349 | return NULL; |
1d99702e RD |
3350 | if (_argo0) { |
3351 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3352 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
3353 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_MoveXY. Expected _wxWindow_p."); |
3354 | return NULL; | |
3355 | } | |
3356 | } | |
cf694132 | 3357 | { |
4268f798 | 3358 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
23bed520 | 3359 | wxWindow_MoveXY(_arg0,_arg1,_arg2,_arg3); |
cf694132 | 3360 | |
4268f798 | 3361 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3362 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3363 | } Py_INCREF(Py_None); |
af309447 RD |
3364 | _resultobj = Py_None; |
3365 | return _resultobj; | |
3366 | } | |
3367 | ||
23bed520 | 3368 | #define wxWindow_Move(_swigobj,_swigarg0,_swigarg1) (_swigobj->Move(_swigarg0,_swigarg1)) |
efc5f224 | 3369 | static PyObject *_wrap_wxWindow_Move(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
3370 | PyObject * _resultobj; |
3371 | wxWindow * _arg0; | |
3372 | wxPoint * _arg1; | |
23bed520 | 3373 | int _arg2 = (int ) wxSIZE_USE_EXISTING; |
1d99702e | 3374 | PyObject * _argo0 = 0; |
2f90df85 RD |
3375 | wxPoint temp; |
3376 | PyObject * _obj1 = 0; | |
23bed520 | 3377 | char *_kwnames[] = { "self","point","flags", NULL }; |
af309447 RD |
3378 | |
3379 | self = self; | |
23bed520 | 3380 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxWindow_Move",_kwnames,&_argo0,&_obj1,&_arg2)) |
8ab979d7 | 3381 | return NULL; |
1d99702e RD |
3382 | if (_argo0) { |
3383 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3384 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3385 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Move. Expected _wxWindow_p."); |
3386 | return NULL; | |
3387 | } | |
3388 | } | |
2f90df85 RD |
3389 | { |
3390 | _arg1 = &temp; | |
3391 | if (! wxPoint_helper(_obj1, &_arg1)) | |
af309447 | 3392 | return NULL; |
2f90df85 | 3393 | } |
cf694132 | 3394 | { |
4268f798 | 3395 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
23bed520 | 3396 | wxWindow_Move(_arg0,*_arg1,_arg2); |
cf694132 | 3397 | |
4268f798 | 3398 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3399 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3400 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3401 | _resultobj = Py_None; |
3402 | return _resultobj; | |
3403 | } | |
3404 | ||
1afc06c2 RD |
3405 | #define wxWindow_PopEventHandler(_swigobj,_swigarg0) (_swigobj->PopEventHandler(_swigarg0)) |
3406 | static PyObject *_wrap_wxWindow_PopEventHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3407 | PyObject * _resultobj; | |
3408 | wxEvtHandler * _result; | |
3409 | wxWindow * _arg0; | |
3410 | bool _arg1 = (bool ) FALSE; | |
3411 | PyObject * _argo0 = 0; | |
3412 | int tempbool1 = (int) FALSE; | |
3413 | char *_kwnames[] = { "self","deleteHandler", NULL }; | |
1afc06c2 RD |
3414 | |
3415 | self = self; | |
3416 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_PopEventHandler",_kwnames,&_argo0,&tempbool1)) | |
3417 | return NULL; | |
3418 | if (_argo0) { | |
3419 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3420 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3421 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_PopEventHandler. Expected _wxWindow_p."); | |
3422 | return NULL; | |
3423 | } | |
3424 | } | |
3425 | _arg1 = (bool ) tempbool1; | |
3426 | { | |
4268f798 | 3427 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
1afc06c2 RD |
3428 | _result = (wxEvtHandler *)wxWindow_PopEventHandler(_arg0,_arg1); |
3429 | ||
4268f798 | 3430 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3431 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 3432 | }{ _resultobj = wxPyMake_wxObject(_result); } |
1afc06c2 RD |
3433 | return _resultobj; |
3434 | } | |
3435 | ||
3436 | #define wxWindow_PushEventHandler(_swigobj,_swigarg0) (_swigobj->PushEventHandler(_swigarg0)) | |
3437 | static PyObject *_wrap_wxWindow_PushEventHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3438 | PyObject * _resultobj; | |
3439 | wxWindow * _arg0; | |
3440 | wxEvtHandler * _arg1; | |
3441 | PyObject * _argo0 = 0; | |
3442 | PyObject * _argo1 = 0; | |
3443 | char *_kwnames[] = { "self","handler", NULL }; | |
3444 | ||
3445 | self = self; | |
3446 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_PushEventHandler",_kwnames,&_argo0,&_argo1)) | |
3447 | return NULL; | |
3448 | if (_argo0) { | |
3449 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3450 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3451 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_PushEventHandler. Expected _wxWindow_p."); | |
3452 | return NULL; | |
3453 | } | |
3454 | } | |
3455 | if (_argo1) { | |
3456 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3457 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvtHandler_p")) { | |
3458 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_PushEventHandler. Expected _wxEvtHandler_p."); | |
3459 | return NULL; | |
3460 | } | |
3461 | } | |
3462 | { | |
4268f798 | 3463 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
1afc06c2 RD |
3464 | wxWindow_PushEventHandler(_arg0,_arg1); |
3465 | ||
4268f798 | 3466 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3467 | if (PyErr_Occurred()) return NULL; |
1afc06c2 RD |
3468 | } Py_INCREF(Py_None); |
3469 | _resultobj = Py_None; | |
3470 | return _resultobj; | |
3471 | } | |
3472 | ||
c6c593e8 RD |
3473 | #define wxWindow_RemoveEventHandler(_swigobj,_swigarg0) (_swigobj->RemoveEventHandler(_swigarg0)) |
3474 | static PyObject *_wrap_wxWindow_RemoveEventHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3475 | PyObject * _resultobj; | |
3476 | bool _result; | |
3477 | wxWindow * _arg0; | |
3478 | wxEvtHandler * _arg1; | |
3479 | PyObject * _argo0 = 0; | |
3480 | PyObject * _argo1 = 0; | |
3481 | char *_kwnames[] = { "self","handler", NULL }; | |
3482 | ||
3483 | self = self; | |
3484 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_RemoveEventHandler",_kwnames,&_argo0,&_argo1)) | |
3485 | return NULL; | |
3486 | if (_argo0) { | |
3487 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3488 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3489 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_RemoveEventHandler. Expected _wxWindow_p."); | |
3490 | return NULL; | |
3491 | } | |
3492 | } | |
3493 | if (_argo1) { | |
3494 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3495 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvtHandler_p")) { | |
3496 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_RemoveEventHandler. Expected _wxEvtHandler_p."); | |
3497 | return NULL; | |
3498 | } | |
3499 | } | |
3500 | { | |
3501 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3502 | _result = (bool )wxWindow_RemoveEventHandler(_arg0,_arg1); | |
3503 | ||
3504 | wxPyEndAllowThreads(__tstate); | |
3505 | if (PyErr_Occurred()) return NULL; | |
3506 | } _resultobj = Py_BuildValue("i",_result); | |
3507 | return _resultobj; | |
3508 | } | |
3509 | ||
8bf5d46e | 3510 | #define wxWindow_PopupMenuXY(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->PopupMenu(_swigarg0,_swigarg1,_swigarg2)) |
efc5f224 | 3511 | static PyObject *_wrap_wxWindow_PopupMenuXY(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3512 | PyObject * _resultobj; |
3513 | bool _result; | |
3514 | wxWindow * _arg0; | |
3515 | wxMenu * _arg1; | |
3516 | int _arg2; | |
3517 | int _arg3; | |
1d99702e RD |
3518 | PyObject * _argo0 = 0; |
3519 | PyObject * _argo1 = 0; | |
efc5f224 | 3520 | char *_kwnames[] = { "self","menu","x","y", NULL }; |
8ab979d7 RD |
3521 | |
3522 | self = self; | |
efc5f224 | 3523 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOii:wxWindow_PopupMenuXY",_kwnames,&_argo0,&_argo1,&_arg2,&_arg3)) |
8bf5d46e | 3524 | return NULL; |
1d99702e RD |
3525 | if (_argo0) { |
3526 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3527 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8bf5d46e RD |
3528 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_PopupMenuXY. Expected _wxWindow_p."); |
3529 | return NULL; | |
3530 | } | |
3531 | } | |
1d99702e RD |
3532 | if (_argo1) { |
3533 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3534 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenu_p")) { | |
8bf5d46e RD |
3535 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_PopupMenuXY. Expected _wxMenu_p."); |
3536 | return NULL; | |
3537 | } | |
3538 | } | |
3539 | { | |
4268f798 | 3540 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
8bf5d46e RD |
3541 | _result = (bool )wxWindow_PopupMenuXY(_arg0,_arg1,_arg2,_arg3); |
3542 | ||
4268f798 | 3543 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3544 | if (PyErr_Occurred()) return NULL; |
8bf5d46e RD |
3545 | } _resultobj = Py_BuildValue("i",_result); |
3546 | return _resultobj; | |
3547 | } | |
3548 | ||
3549 | #define wxWindow_PopupMenu(_swigobj,_swigarg0,_swigarg1) (_swigobj->PopupMenu(_swigarg0,_swigarg1)) | |
efc5f224 | 3550 | static PyObject *_wrap_wxWindow_PopupMenu(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
3551 | PyObject * _resultobj; |
3552 | bool _result; | |
3553 | wxWindow * _arg0; | |
3554 | wxMenu * _arg1; | |
3555 | wxPoint * _arg2; | |
1d99702e RD |
3556 | PyObject * _argo0 = 0; |
3557 | PyObject * _argo1 = 0; | |
2f90df85 RD |
3558 | wxPoint temp; |
3559 | PyObject * _obj2 = 0; | |
efc5f224 | 3560 | char *_kwnames[] = { "self","menu","pos", NULL }; |
8bf5d46e RD |
3561 | |
3562 | self = self; | |
2f90df85 | 3563 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxWindow_PopupMenu",_kwnames,&_argo0,&_argo1,&_obj2)) |
8ab979d7 | 3564 | return NULL; |
1d99702e RD |
3565 | if (_argo0) { |
3566 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3567 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3568 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_PopupMenu. Expected _wxWindow_p."); |
3569 | return NULL; | |
3570 | } | |
3571 | } | |
1d99702e RD |
3572 | if (_argo1) { |
3573 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3574 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenu_p")) { | |
8ab979d7 RD |
3575 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_PopupMenu. Expected _wxMenu_p."); |
3576 | return NULL; | |
3577 | } | |
3578 | } | |
2f90df85 RD |
3579 | { |
3580 | _arg2 = &temp; | |
3581 | if (! wxPoint_helper(_obj2, &_arg2)) | |
8bf5d46e | 3582 | return NULL; |
2f90df85 | 3583 | } |
cf694132 | 3584 | { |
4268f798 | 3585 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
8bf5d46e | 3586 | _result = (bool )wxWindow_PopupMenu(_arg0,_arg1,*_arg2); |
cf694132 | 3587 | |
4268f798 | 3588 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3589 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3590 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
3591 | return _resultobj; |
3592 | } | |
3593 | ||
3594 | #define wxWindow_Raise(_swigobj) (_swigobj->Raise()) | |
efc5f224 | 3595 | static PyObject *_wrap_wxWindow_Raise(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3596 | PyObject * _resultobj; |
3597 | wxWindow * _arg0; | |
1d99702e | 3598 | PyObject * _argo0 = 0; |
efc5f224 | 3599 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
3600 | |
3601 | self = self; | |
efc5f224 | 3602 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Raise",_kwnames,&_argo0)) |
8ab979d7 | 3603 | return NULL; |
1d99702e RD |
3604 | if (_argo0) { |
3605 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3606 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3607 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Raise. Expected _wxWindow_p."); |
3608 | return NULL; | |
3609 | } | |
3610 | } | |
cf694132 | 3611 | { |
4268f798 | 3612 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
3613 | wxWindow_Raise(_arg0); |
3614 | ||
4268f798 | 3615 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3616 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3617 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3618 | _resultobj = Py_None; |
3619 | return _resultobj; | |
3620 | } | |
3621 | ||
3622 | #define wxWindow_Refresh(_swigobj,_swigarg0,_swigarg1) (_swigobj->Refresh(_swigarg0,_swigarg1)) | |
efc5f224 | 3623 | static PyObject *_wrap_wxWindow_Refresh(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3624 | PyObject * _resultobj; |
3625 | wxWindow * _arg0; | |
1d99702e RD |
3626 | bool _arg1 = (bool ) TRUE; |
3627 | wxRect * _arg2 = (wxRect *) NULL; | |
3628 | PyObject * _argo0 = 0; | |
3629 | int tempbool1 = (int) TRUE; | |
2f90df85 RD |
3630 | wxRect temp; |
3631 | PyObject * _obj2 = 0; | |
efc5f224 | 3632 | char *_kwnames[] = { "self","eraseBackground","rect", NULL }; |
8ab979d7 RD |
3633 | |
3634 | self = self; | |
2f90df85 | 3635 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iO:wxWindow_Refresh",_kwnames,&_argo0,&tempbool1,&_obj2)) |
8ab979d7 | 3636 | return NULL; |
1d99702e RD |
3637 | if (_argo0) { |
3638 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3639 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3640 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Refresh. Expected _wxWindow_p."); |
3641 | return NULL; | |
3642 | } | |
3643 | } | |
3644 | _arg1 = (bool ) tempbool1; | |
2f90df85 RD |
3645 | if (_obj2) |
3646 | { | |
3647 | _arg2 = &temp; | |
3648 | if (! wxRect_helper(_obj2, &_arg2)) | |
8ab979d7 | 3649 | return NULL; |
2f90df85 | 3650 | } |
cf694132 | 3651 | { |
4268f798 | 3652 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
3653 | wxWindow_Refresh(_arg0,_arg1,_arg2); |
3654 | ||
4268f798 | 3655 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3656 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3657 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3658 | _resultobj = Py_None; |
3659 | return _resultobj; | |
3660 | } | |
3661 | ||
09f3d4e6 RD |
3662 | #define wxWindow_RefreshRect(_swigobj,_swigarg0) (_swigobj->RefreshRect(_swigarg0)) |
3663 | static PyObject *_wrap_wxWindow_RefreshRect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3664 | PyObject * _resultobj; | |
3665 | wxWindow * _arg0; | |
3666 | wxRect * _arg1; | |
3667 | PyObject * _argo0 = 0; | |
3668 | wxRect temp; | |
3669 | PyObject * _obj1 = 0; | |
3670 | char *_kwnames[] = { "self","rect", NULL }; | |
3671 | ||
3672 | self = self; | |
3673 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_RefreshRect",_kwnames,&_argo0,&_obj1)) | |
3674 | return NULL; | |
3675 | if (_argo0) { | |
3676 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3677 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3678 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_RefreshRect. Expected _wxWindow_p."); | |
3679 | return NULL; | |
3680 | } | |
3681 | } | |
3682 | { | |
3683 | _arg1 = &temp; | |
3684 | if (! wxRect_helper(_obj1, &_arg1)) | |
3685 | return NULL; | |
3686 | } | |
3687 | { | |
4268f798 | 3688 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
09f3d4e6 RD |
3689 | wxWindow_RefreshRect(_arg0,*_arg1); |
3690 | ||
4268f798 | 3691 | wxPyEndAllowThreads(__tstate); |
09f3d4e6 RD |
3692 | if (PyErr_Occurred()) return NULL; |
3693 | } Py_INCREF(Py_None); | |
3694 | _resultobj = Py_None; | |
3695 | return _resultobj; | |
3696 | } | |
3697 | ||
8ab979d7 | 3698 | #define wxWindow_ReleaseMouse(_swigobj) (_swigobj->ReleaseMouse()) |
efc5f224 | 3699 | static PyObject *_wrap_wxWindow_ReleaseMouse(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3700 | PyObject * _resultobj; |
3701 | wxWindow * _arg0; | |
1d99702e | 3702 | PyObject * _argo0 = 0; |
efc5f224 | 3703 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
3704 | |
3705 | self = self; | |
efc5f224 | 3706 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_ReleaseMouse",_kwnames,&_argo0)) |
8ab979d7 | 3707 | return NULL; |
1d99702e RD |
3708 | if (_argo0) { |
3709 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3710 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3711 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ReleaseMouse. Expected _wxWindow_p."); |
3712 | return NULL; | |
3713 | } | |
3714 | } | |
cf694132 | 3715 | { |
4268f798 | 3716 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
3717 | wxWindow_ReleaseMouse(_arg0); |
3718 | ||
4268f798 | 3719 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3720 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3721 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3722 | _resultobj = Py_None; |
3723 | return _resultobj; | |
3724 | } | |
3725 | ||
b7e72427 RD |
3726 | #define wxWindow_RemoveChild(_swigobj,_swigarg0) (_swigobj->RemoveChild(_swigarg0)) |
3727 | static PyObject *_wrap_wxWindow_RemoveChild(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3728 | PyObject * _resultobj; | |
3729 | wxWindow * _arg0; | |
3730 | wxWindow * _arg1; | |
3731 | PyObject * _argo0 = 0; | |
3732 | PyObject * _argo1 = 0; | |
3733 | char *_kwnames[] = { "self","child", NULL }; | |
3734 | ||
3735 | self = self; | |
3736 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_RemoveChild",_kwnames,&_argo0,&_argo1)) | |
3737 | return NULL; | |
3738 | if (_argo0) { | |
3739 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3740 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3741 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_RemoveChild. Expected _wxWindow_p."); | |
3742 | return NULL; | |
3743 | } | |
3744 | } | |
3745 | if (_argo1) { | |
3746 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3747 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
3748 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_RemoveChild. Expected _wxWindow_p."); | |
3749 | return NULL; | |
3750 | } | |
3751 | } | |
3752 | { | |
4268f798 | 3753 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b7e72427 RD |
3754 | wxWindow_RemoveChild(_arg0,_arg1); |
3755 | ||
4268f798 | 3756 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3757 | if (PyErr_Occurred()) return NULL; |
b7e72427 RD |
3758 | } Py_INCREF(Py_None); |
3759 | _resultobj = Py_None; | |
3760 | return _resultobj; | |
3761 | } | |
3762 | ||
bb0054cd | 3763 | #define wxWindow_Reparent(_swigobj,_swigarg0) (_swigobj->Reparent(_swigarg0)) |
efc5f224 | 3764 | static PyObject *_wrap_wxWindow_Reparent(PyObject *self, PyObject *args, PyObject *kwargs) { |
bb0054cd RD |
3765 | PyObject * _resultobj; |
3766 | bool _result; | |
3767 | wxWindow * _arg0; | |
3768 | wxWindow * _arg1; | |
1d99702e RD |
3769 | PyObject * _argo0 = 0; |
3770 | PyObject * _argo1 = 0; | |
efc5f224 | 3771 | char *_kwnames[] = { "self","newParent", NULL }; |
bb0054cd RD |
3772 | |
3773 | self = self; | |
efc5f224 | 3774 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_Reparent",_kwnames,&_argo0,&_argo1)) |
bb0054cd | 3775 | return NULL; |
1d99702e RD |
3776 | if (_argo0) { |
3777 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3778 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
bb0054cd RD |
3779 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Reparent. Expected _wxWindow_p."); |
3780 | return NULL; | |
3781 | } | |
3782 | } | |
1d99702e RD |
3783 | if (_argo1) { |
3784 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3785 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
bb0054cd RD |
3786 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_Reparent. Expected _wxWindow_p."); |
3787 | return NULL; | |
3788 | } | |
3789 | } | |
3790 | { | |
4268f798 | 3791 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
bb0054cd RD |
3792 | _result = (bool )wxWindow_Reparent(_arg0,_arg1); |
3793 | ||
4268f798 | 3794 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3795 | if (PyErr_Occurred()) return NULL; |
bb0054cd RD |
3796 | } _resultobj = Py_BuildValue("i",_result); |
3797 | return _resultobj; | |
3798 | } | |
3799 | ||
af309447 | 3800 | #define wxWindow_ScreenToClientXY(_swigobj,_swigarg0,_swigarg1) (_swigobj->ScreenToClient(_swigarg0,_swigarg1)) |
efc5f224 | 3801 | static PyObject *_wrap_wxWindow_ScreenToClientXY(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3802 | PyObject * _resultobj; |
3803 | wxWindow * _arg0; | |
3804 | int * _arg1; | |
3805 | int * _arg2; | |
1d99702e | 3806 | PyObject * _argo0 = 0; |
8ab979d7 RD |
3807 | int temp; |
3808 | PyObject * _obj1 = 0; | |
3809 | int temp0; | |
3810 | PyObject * _obj2 = 0; | |
efc5f224 | 3811 | char *_kwnames[] = { "self","x","y", NULL }; |
8ab979d7 RD |
3812 | |
3813 | self = self; | |
efc5f224 | 3814 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxWindow_ScreenToClientXY",_kwnames,&_argo0,&_obj1,&_obj2)) |
8ab979d7 | 3815 | return NULL; |
1d99702e RD |
3816 | if (_argo0) { |
3817 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3818 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 | 3819 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ScreenToClientXY. Expected _wxWindow_p."); |
8ab979d7 RD |
3820 | return NULL; |
3821 | } | |
3822 | } | |
3823 | { | |
3824 | temp = (int) PyInt_AsLong(_obj1); | |
3825 | _arg1 = &temp; | |
3826 | } | |
3827 | { | |
3828 | temp0 = (int) PyInt_AsLong(_obj2); | |
3829 | _arg2 = &temp0; | |
3830 | } | |
cf694132 | 3831 | { |
4268f798 | 3832 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
3833 | wxWindow_ScreenToClientXY(_arg0,_arg1,_arg2); |
3834 | ||
4268f798 | 3835 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3836 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3837 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3838 | _resultobj = Py_None; |
3839 | { | |
3840 | PyObject *o; | |
3841 | o = PyInt_FromLong((long) (*_arg1)); | |
3842 | _resultobj = t_output_helper(_resultobj, o); | |
3843 | } | |
3844 | { | |
3845 | PyObject *o; | |
3846 | o = PyInt_FromLong((long) (*_arg2)); | |
3847 | _resultobj = t_output_helper(_resultobj, o); | |
3848 | } | |
3849 | return _resultobj; | |
3850 | } | |
3851 | ||
af309447 | 3852 | #define wxWindow_ScreenToClient(_swigobj,_swigarg0) (_swigobj->ScreenToClient(_swigarg0)) |
efc5f224 | 3853 | static PyObject *_wrap_wxWindow_ScreenToClient(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
3854 | PyObject * _resultobj; |
3855 | wxPoint * _result; | |
3856 | wxWindow * _arg0; | |
3857 | wxPoint * _arg1; | |
1d99702e | 3858 | PyObject * _argo0 = 0; |
2f90df85 RD |
3859 | wxPoint temp; |
3860 | PyObject * _obj1 = 0; | |
efc5f224 | 3861 | char *_kwnames[] = { "self","pt", NULL }; |
af309447 RD |
3862 | char _ptemp[128]; |
3863 | ||
3864 | self = self; | |
2f90df85 | 3865 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_ScreenToClient",_kwnames,&_argo0,&_obj1)) |
af309447 | 3866 | return NULL; |
1d99702e RD |
3867 | if (_argo0) { |
3868 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3869 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
3870 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ScreenToClient. Expected _wxWindow_p."); |
3871 | return NULL; | |
3872 | } | |
3873 | } | |
2f90df85 RD |
3874 | { |
3875 | _arg1 = &temp; | |
3876 | if (! wxPoint_helper(_obj1, &_arg1)) | |
af309447 | 3877 | return NULL; |
2f90df85 | 3878 | } |
cf694132 | 3879 | { |
4268f798 | 3880 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
3881 | _result = new wxPoint (wxWindow_ScreenToClient(_arg0,*_arg1)); |
3882 | ||
4268f798 | 3883 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3884 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3885 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); |
af309447 RD |
3886 | _resultobj = Py_BuildValue("s",_ptemp); |
3887 | return _resultobj; | |
3888 | } | |
3889 | ||
8ab979d7 | 3890 | #define wxWindow_ScrollWindow(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->ScrollWindow(_swigarg0,_swigarg1,_swigarg2)) |
efc5f224 | 3891 | static PyObject *_wrap_wxWindow_ScrollWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3892 | PyObject * _resultobj; |
3893 | wxWindow * _arg0; | |
3894 | int _arg1; | |
3895 | int _arg2; | |
1d99702e RD |
3896 | wxRect * _arg3 = (wxRect *) NULL; |
3897 | PyObject * _argo0 = 0; | |
2f90df85 RD |
3898 | wxRect temp; |
3899 | PyObject * _obj3 = 0; | |
efc5f224 | 3900 | char *_kwnames[] = { "self","dx","dy","rect", NULL }; |
8ab979d7 RD |
3901 | |
3902 | self = self; | |
2f90df85 | 3903 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii|O:wxWindow_ScrollWindow",_kwnames,&_argo0,&_arg1,&_arg2,&_obj3)) |
8ab979d7 | 3904 | return NULL; |
1d99702e RD |
3905 | if (_argo0) { |
3906 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3907 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3908 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ScrollWindow. Expected _wxWindow_p."); |
3909 | return NULL; | |
3910 | } | |
3911 | } | |
2f90df85 RD |
3912 | if (_obj3) |
3913 | { | |
3914 | _arg3 = &temp; | |
3915 | if (! wxRect_helper(_obj3, &_arg3)) | |
8ab979d7 | 3916 | return NULL; |
2f90df85 | 3917 | } |
cf694132 | 3918 | { |
4268f798 | 3919 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
3920 | wxWindow_ScrollWindow(_arg0,_arg1,_arg2,_arg3); |
3921 | ||
4268f798 | 3922 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3923 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3924 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3925 | _resultobj = Py_None; |
3926 | return _resultobj; | |
3927 | } | |
3928 | ||
3929 | #define wxWindow_SetAutoLayout(_swigobj,_swigarg0) (_swigobj->SetAutoLayout(_swigarg0)) | |
efc5f224 | 3930 | static PyObject *_wrap_wxWindow_SetAutoLayout(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3931 | PyObject * _resultobj; |
3932 | wxWindow * _arg0; | |
3933 | bool _arg1; | |
1d99702e | 3934 | PyObject * _argo0 = 0; |
8ab979d7 | 3935 | int tempbool1; |
efc5f224 | 3936 | char *_kwnames[] = { "self","autoLayout", NULL }; |
8ab979d7 RD |
3937 | |
3938 | self = self; | |
efc5f224 | 3939 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_SetAutoLayout",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 3940 | return NULL; |
1d99702e RD |
3941 | if (_argo0) { |
3942 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3943 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
3944 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetAutoLayout. Expected _wxWindow_p."); |
3945 | return NULL; | |
3946 | } | |
3947 | } | |
3948 | _arg1 = (bool ) tempbool1; | |
cf694132 | 3949 | { |
4268f798 | 3950 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
3951 | wxWindow_SetAutoLayout(_arg0,_arg1); |
3952 | ||
4268f798 | 3953 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3954 | if (PyErr_Occurred()) return NULL; |
cf694132 | 3955 | } Py_INCREF(Py_None); |
8ab979d7 RD |
3956 | _resultobj = Py_None; |
3957 | return _resultobj; | |
3958 | } | |
3959 | ||
9d8bd15f RD |
3960 | #define wxWindow_GetAutoLayout(_swigobj) (_swigobj->GetAutoLayout()) |
3961 | static PyObject *_wrap_wxWindow_GetAutoLayout(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3962 | PyObject * _resultobj; | |
3963 | bool _result; | |
3964 | wxWindow * _arg0; | |
3965 | PyObject * _argo0 = 0; | |
3966 | char *_kwnames[] = { "self", NULL }; | |
3967 | ||
3968 | self = self; | |
3969 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetAutoLayout",_kwnames,&_argo0)) | |
3970 | return NULL; | |
3971 | if (_argo0) { | |
3972 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3973 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3974 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetAutoLayout. Expected _wxWindow_p."); | |
3975 | return NULL; | |
3976 | } | |
3977 | } | |
3978 | { | |
4268f798 | 3979 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
9d8bd15f RD |
3980 | _result = (bool )wxWindow_GetAutoLayout(_arg0); |
3981 | ||
4268f798 | 3982 | wxPyEndAllowThreads(__tstate); |
493f1553 | 3983 | if (PyErr_Occurred()) return NULL; |
9d8bd15f RD |
3984 | } _resultobj = Py_BuildValue("i",_result); |
3985 | return _resultobj; | |
3986 | } | |
3987 | ||
8ab979d7 | 3988 | #define wxWindow_SetBackgroundColour(_swigobj,_swigarg0) (_swigobj->SetBackgroundColour(_swigarg0)) |
efc5f224 | 3989 | static PyObject *_wrap_wxWindow_SetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
3990 | PyObject * _resultobj; |
3991 | wxWindow * _arg0; | |
3992 | wxColour * _arg1; | |
1d99702e | 3993 | PyObject * _argo0 = 0; |
f6bcfd97 BP |
3994 | wxColour temp; |
3995 | PyObject * _obj1 = 0; | |
efc5f224 | 3996 | char *_kwnames[] = { "self","colour", NULL }; |
8ab979d7 RD |
3997 | |
3998 | self = self; | |
f6bcfd97 | 3999 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetBackgroundColour",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 4000 | return NULL; |
1d99702e RD |
4001 | if (_argo0) { |
4002 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4003 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4004 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetBackgroundColour. Expected _wxWindow_p."); |
4005 | return NULL; | |
4006 | } | |
4007 | } | |
f6bcfd97 BP |
4008 | { |
4009 | _arg1 = &temp; | |
4010 | if (! wxColour_helper(_obj1, &_arg1)) | |
8ab979d7 | 4011 | return NULL; |
f6bcfd97 | 4012 | } |
cf694132 | 4013 | { |
4268f798 | 4014 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4015 | wxWindow_SetBackgroundColour(_arg0,*_arg1); |
4016 | ||
4268f798 | 4017 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4018 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4019 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4020 | _resultobj = Py_None; |
4021 | return _resultobj; | |
4022 | } | |
4023 | ||
4024 | #define wxWindow_SetConstraints(_swigobj,_swigarg0) (_swigobj->SetConstraints(_swigarg0)) | |
efc5f224 | 4025 | static PyObject *_wrap_wxWindow_SetConstraints(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4026 | PyObject * _resultobj; |
4027 | wxWindow * _arg0; | |
4028 | wxLayoutConstraints * _arg1; | |
1d99702e RD |
4029 | PyObject * _argo0 = 0; |
4030 | PyObject * _argo1 = 0; | |
efc5f224 | 4031 | char *_kwnames[] = { "self","constraints", NULL }; |
8ab979d7 RD |
4032 | |
4033 | self = self; | |
efc5f224 | 4034 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetConstraints",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 4035 | return NULL; |
1d99702e RD |
4036 | if (_argo0) { |
4037 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4038 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4039 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetConstraints. Expected _wxWindow_p."); |
4040 | return NULL; | |
4041 | } | |
4042 | } | |
1d99702e RD |
4043 | if (_argo1) { |
4044 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4045 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxLayoutConstraints_p")) { | |
8ab979d7 RD |
4046 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetConstraints. Expected _wxLayoutConstraints_p."); |
4047 | return NULL; | |
4048 | } | |
4049 | } | |
cf694132 | 4050 | { |
4268f798 | 4051 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4052 | wxWindow_SetConstraints(_arg0,_arg1); |
4053 | ||
4268f798 | 4054 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4055 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4056 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4057 | _resultobj = Py_None; |
4058 | return _resultobj; | |
4059 | } | |
4060 | ||
2f90df85 RD |
4061 | #define wxWindow_UnsetConstraints(_swigobj,_swigarg0) (_swigobj->UnsetConstraints(_swigarg0)) |
4062 | static PyObject *_wrap_wxWindow_UnsetConstraints(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4063 | PyObject * _resultobj; | |
4064 | wxWindow * _arg0; | |
4065 | wxLayoutConstraints * _arg1; | |
4066 | PyObject * _argo0 = 0; | |
4067 | PyObject * _argo1 = 0; | |
4068 | char *_kwnames[] = { "self","constraints", NULL }; | |
4069 | ||
4070 | self = self; | |
4071 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_UnsetConstraints",_kwnames,&_argo0,&_argo1)) | |
4072 | return NULL; | |
4073 | if (_argo0) { | |
4074 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4075 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
4076 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_UnsetConstraints. Expected _wxWindow_p."); | |
4077 | return NULL; | |
4078 | } | |
4079 | } | |
4080 | if (_argo1) { | |
4081 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4082 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxLayoutConstraints_p")) { | |
4083 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_UnsetConstraints. Expected _wxLayoutConstraints_p."); | |
4084 | return NULL; | |
4085 | } | |
4086 | } | |
4087 | { | |
4268f798 | 4088 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
4089 | wxWindow_UnsetConstraints(_arg0,_arg1); |
4090 | ||
4268f798 | 4091 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4092 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
4093 | } Py_INCREF(Py_None); |
4094 | _resultobj = Py_None; | |
4095 | return _resultobj; | |
4096 | } | |
4097 | ||
8ab979d7 | 4098 | #define wxWindow_SetFocus(_swigobj) (_swigobj->SetFocus()) |
efc5f224 | 4099 | static PyObject *_wrap_wxWindow_SetFocus(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4100 | PyObject * _resultobj; |
4101 | wxWindow * _arg0; | |
1d99702e | 4102 | PyObject * _argo0 = 0; |
efc5f224 | 4103 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
4104 | |
4105 | self = self; | |
efc5f224 | 4106 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_SetFocus",_kwnames,&_argo0)) |
8ab979d7 | 4107 | return NULL; |
1d99702e RD |
4108 | if (_argo0) { |
4109 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4110 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4111 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetFocus. Expected _wxWindow_p."); |
4112 | return NULL; | |
4113 | } | |
4114 | } | |
cf694132 | 4115 | { |
4268f798 | 4116 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4117 | wxWindow_SetFocus(_arg0); |
4118 | ||
4268f798 | 4119 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4120 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4121 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4122 | _resultobj = Py_None; |
4123 | return _resultobj; | |
4124 | } | |
4125 | ||
2f90df85 RD |
4126 | #define wxWindow_AcceptsFocus(_swigobj) (_swigobj->AcceptsFocus()) |
4127 | static PyObject *_wrap_wxWindow_AcceptsFocus(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4128 | PyObject * _resultobj; | |
4129 | bool _result; | |
4130 | wxWindow * _arg0; | |
4131 | PyObject * _argo0 = 0; | |
4132 | char *_kwnames[] = { "self", NULL }; | |
4133 | ||
4134 | self = self; | |
4135 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_AcceptsFocus",_kwnames,&_argo0)) | |
4136 | return NULL; | |
4137 | if (_argo0) { | |
4138 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4139 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
4140 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_AcceptsFocus. Expected _wxWindow_p."); | |
4141 | return NULL; | |
4142 | } | |
4143 | } | |
4144 | { | |
4268f798 | 4145 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
4146 | _result = (bool )wxWindow_AcceptsFocus(_arg0); |
4147 | ||
4268f798 | 4148 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4149 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
4150 | } _resultobj = Py_BuildValue("i",_result); |
4151 | return _resultobj; | |
4152 | } | |
4153 | ||
8ab979d7 | 4154 | #define wxWindow_SetFont(_swigobj,_swigarg0) (_swigobj->SetFont(_swigarg0)) |
efc5f224 | 4155 | static PyObject *_wrap_wxWindow_SetFont(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4156 | PyObject * _resultobj; |
4157 | wxWindow * _arg0; | |
4158 | wxFont * _arg1; | |
1d99702e RD |
4159 | PyObject * _argo0 = 0; |
4160 | PyObject * _argo1 = 0; | |
efc5f224 | 4161 | char *_kwnames[] = { "self","font", NULL }; |
8ab979d7 RD |
4162 | |
4163 | self = self; | |
efc5f224 | 4164 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetFont",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 4165 | return NULL; |
1d99702e RD |
4166 | if (_argo0) { |
4167 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4168 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4169 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetFont. Expected _wxWindow_p."); |
4170 | return NULL; | |
4171 | } | |
4172 | } | |
1d99702e RD |
4173 | if (_argo1) { |
4174 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4175 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxFont_p")) { | |
8ab979d7 RD |
4176 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetFont. Expected _wxFont_p."); |
4177 | return NULL; | |
4178 | } | |
4179 | } | |
cf694132 | 4180 | { |
4268f798 | 4181 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4182 | wxWindow_SetFont(_arg0,*_arg1); |
4183 | ||
4268f798 | 4184 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4185 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4186 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4187 | _resultobj = Py_None; |
4188 | return _resultobj; | |
4189 | } | |
4190 | ||
4191 | #define wxWindow_SetForegroundColour(_swigobj,_swigarg0) (_swigobj->SetForegroundColour(_swigarg0)) | |
efc5f224 | 4192 | static PyObject *_wrap_wxWindow_SetForegroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4193 | PyObject * _resultobj; |
4194 | wxWindow * _arg0; | |
4195 | wxColour * _arg1; | |
1d99702e | 4196 | PyObject * _argo0 = 0; |
f6bcfd97 BP |
4197 | wxColour temp; |
4198 | PyObject * _obj1 = 0; | |
efc5f224 | 4199 | char *_kwnames[] = { "self","colour", NULL }; |
8ab979d7 RD |
4200 | |
4201 | self = self; | |
f6bcfd97 | 4202 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetForegroundColour",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 4203 | return NULL; |
1d99702e RD |
4204 | if (_argo0) { |
4205 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4206 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4207 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetForegroundColour. Expected _wxWindow_p."); |
4208 | return NULL; | |
4209 | } | |
4210 | } | |
f6bcfd97 BP |
4211 | { |
4212 | _arg1 = &temp; | |
4213 | if (! wxColour_helper(_obj1, &_arg1)) | |
8ab979d7 | 4214 | return NULL; |
f6bcfd97 | 4215 | } |
cf694132 | 4216 | { |
4268f798 | 4217 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4218 | wxWindow_SetForegroundColour(_arg0,*_arg1); |
4219 | ||
4268f798 | 4220 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4221 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4222 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4223 | _resultobj = Py_None; |
4224 | return _resultobj; | |
4225 | } | |
4226 | ||
4227 | #define wxWindow_SetId(_swigobj,_swigarg0) (_swigobj->SetId(_swigarg0)) | |
efc5f224 | 4228 | static PyObject *_wrap_wxWindow_SetId(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4229 | PyObject * _resultobj; |
4230 | wxWindow * _arg0; | |
4231 | int _arg1; | |
1d99702e | 4232 | PyObject * _argo0 = 0; |
efc5f224 | 4233 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
4234 | |
4235 | self = self; | |
efc5f224 | 4236 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_SetId",_kwnames,&_argo0,&_arg1)) |
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_SetId. Expected _wxWindow_p."); |
4242 | return NULL; | |
4243 | } | |
4244 | } | |
cf694132 | 4245 | { |
4268f798 | 4246 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4247 | wxWindow_SetId(_arg0,_arg1); |
4248 | ||
4268f798 | 4249 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4250 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4251 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4252 | _resultobj = Py_None; |
4253 | return _resultobj; | |
4254 | } | |
4255 | ||
4256 | #define wxWindow_SetName(_swigobj,_swigarg0) (_swigobj->SetName(_swigarg0)) | |
efc5f224 | 4257 | static PyObject *_wrap_wxWindow_SetName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4258 | PyObject * _resultobj; |
4259 | wxWindow * _arg0; | |
4260 | wxString * _arg1; | |
1d99702e | 4261 | PyObject * _argo0 = 0; |
8ab979d7 | 4262 | PyObject * _obj1 = 0; |
efc5f224 | 4263 | char *_kwnames[] = { "self","name", NULL }; |
8ab979d7 RD |
4264 | |
4265 | self = self; | |
efc5f224 | 4266 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetName",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 4267 | return NULL; |
1d99702e RD |
4268 | if (_argo0) { |
4269 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4270 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4271 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetName. Expected _wxWindow_p."); |
4272 | return NULL; | |
4273 | } | |
4274 | } | |
4275 | { | |
185d7c3e RD |
4276 | #if PYTHON_API_VERSION >= 1009 |
4277 | char* tmpPtr; int tmpSize; | |
4278 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 4279 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
4280 | return NULL; |
4281 | } | |
4282 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
4283 | return NULL; | |
4284 | _arg1 = new wxString(tmpPtr, tmpSize); | |
4285 | #else | |
8ab979d7 RD |
4286 | if (!PyString_Check(_obj1)) { |
4287 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4288 | return NULL; | |
4289 | } | |
185d7c3e RD |
4290 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
4291 | #endif | |
8ab979d7 | 4292 | } |
cf694132 | 4293 | { |
4268f798 | 4294 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4295 | wxWindow_SetName(_arg0,*_arg1); |
4296 | ||
4268f798 | 4297 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4298 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4299 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4300 | _resultobj = Py_None; |
4301 | { | |
4302 | if (_obj1) | |
4303 | delete _arg1; | |
4304 | } | |
4305 | return _resultobj; | |
4306 | } | |
4307 | ||
8ab979d7 | 4308 | #define wxWindow_SetScrollbar(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->SetScrollbar(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4)) |
efc5f224 | 4309 | static PyObject *_wrap_wxWindow_SetScrollbar(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4310 | PyObject * _resultobj; |
4311 | wxWindow * _arg0; | |
4312 | int _arg1; | |
4313 | int _arg2; | |
4314 | int _arg3; | |
4315 | int _arg4; | |
eb715945 | 4316 | int _arg5 = (int ) TRUE; |
1d99702e | 4317 | PyObject * _argo0 = 0; |
efc5f224 | 4318 | char *_kwnames[] = { "self","orientation","position","thumbSize","range","refresh", NULL }; |
8ab979d7 RD |
4319 | |
4320 | self = self; | |
eb715945 | 4321 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oiiii|i:wxWindow_SetScrollbar",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_arg4,&_arg5)) |
8ab979d7 | 4322 | return NULL; |
1d99702e RD |
4323 | if (_argo0) { |
4324 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4325 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4326 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetScrollbar. Expected _wxWindow_p."); |
4327 | return NULL; | |
4328 | } | |
4329 | } | |
cf694132 | 4330 | { |
4268f798 | 4331 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4332 | wxWindow_SetScrollbar(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5); |
4333 | ||
4268f798 | 4334 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4335 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4336 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4337 | _resultobj = Py_None; |
4338 | return _resultobj; | |
4339 | } | |
4340 | ||
4341 | #define wxWindow_SetScrollPos(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->SetScrollPos(_swigarg0,_swigarg1,_swigarg2)) | |
efc5f224 | 4342 | static PyObject *_wrap_wxWindow_SetScrollPos(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4343 | PyObject * _resultobj; |
4344 | wxWindow * _arg0; | |
4345 | int _arg1; | |
4346 | int _arg2; | |
1d99702e RD |
4347 | bool _arg3 = (bool ) TRUE; |
4348 | PyObject * _argo0 = 0; | |
4349 | int tempbool3 = (int) TRUE; | |
efc5f224 | 4350 | char *_kwnames[] = { "self","orientation","pos","refresh", NULL }; |
8ab979d7 RD |
4351 | |
4352 | self = self; | |
efc5f224 | 4353 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii|i:wxWindow_SetScrollPos",_kwnames,&_argo0,&_arg1,&_arg2,&tempbool3)) |
8ab979d7 | 4354 | return NULL; |
1d99702e RD |
4355 | if (_argo0) { |
4356 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4357 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4358 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetScrollPos. Expected _wxWindow_p."); |
4359 | return NULL; | |
4360 | } | |
4361 | } | |
4362 | _arg3 = (bool ) tempbool3; | |
cf694132 | 4363 | { |
4268f798 | 4364 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4365 | wxWindow_SetScrollPos(_arg0,_arg1,_arg2,_arg3); |
4366 | ||
4268f798 | 4367 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4368 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4369 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4370 | _resultobj = Py_None; |
4371 | return _resultobj; | |
4372 | } | |
4373 | ||
4374 | #define wxWindow_SetDimensions(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->SetSize(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4)) | |
efc5f224 | 4375 | static PyObject *_wrap_wxWindow_SetDimensions(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4376 | PyObject * _resultobj; |
4377 | wxWindow * _arg0; | |
4378 | int _arg1; | |
4379 | int _arg2; | |
4380 | int _arg3; | |
4381 | int _arg4; | |
1d99702e RD |
4382 | int _arg5 = (int ) wxSIZE_AUTO; |
4383 | PyObject * _argo0 = 0; | |
efc5f224 | 4384 | char *_kwnames[] = { "self","x","y","width","height","sizeFlags", NULL }; |
8ab979d7 RD |
4385 | |
4386 | self = self; | |
efc5f224 | 4387 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oiiii|i:wxWindow_SetDimensions",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_arg4,&_arg5)) |
8ab979d7 | 4388 | return NULL; |
1d99702e RD |
4389 | if (_argo0) { |
4390 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4391 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4392 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetDimensions. Expected _wxWindow_p."); |
4393 | return NULL; | |
4394 | } | |
4395 | } | |
cf694132 | 4396 | { |
4268f798 | 4397 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4398 | wxWindow_SetDimensions(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5); |
4399 | ||
4268f798 | 4400 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4401 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4402 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4403 | _resultobj = Py_None; |
4404 | return _resultobj; | |
4405 | } | |
4406 | ||
4407 | static void wxWindow_SetSize(wxWindow *self,const wxSize & size) { | |
a1df7a95 | 4408 | self->SetSize(size); |
8ab979d7 | 4409 | } |
efc5f224 | 4410 | static PyObject *_wrap_wxWindow_SetSize(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4411 | PyObject * _resultobj; |
4412 | wxWindow * _arg0; | |
4413 | wxSize * _arg1; | |
1d99702e | 4414 | PyObject * _argo0 = 0; |
2f90df85 RD |
4415 | wxSize temp; |
4416 | PyObject * _obj1 = 0; | |
efc5f224 | 4417 | char *_kwnames[] = { "self","size", NULL }; |
8ab979d7 RD |
4418 | |
4419 | self = self; | |
2f90df85 | 4420 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetSize",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 4421 | return NULL; |
1d99702e RD |
4422 | if (_argo0) { |
4423 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4424 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4425 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetSize. Expected _wxWindow_p."); |
4426 | return NULL; | |
4427 | } | |
4428 | } | |
2f90df85 RD |
4429 | { |
4430 | _arg1 = &temp; | |
4431 | if (! wxSize_helper(_obj1, &_arg1)) | |
8ab979d7 | 4432 | return NULL; |
2f90df85 | 4433 | } |
cf694132 | 4434 | { |
4268f798 | 4435 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4436 | wxWindow_SetSize(_arg0,*_arg1); |
4437 | ||
4268f798 | 4438 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4439 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4440 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4441 | _resultobj = Py_None; |
4442 | return _resultobj; | |
4443 | } | |
4444 | ||
23bed520 RD |
4445 | static void wxWindow_SetPosition(wxWindow *self,const wxPoint & pos,int flags) { |
4446 | self->Move(pos, flags); | |
8ab979d7 | 4447 | } |
efc5f224 | 4448 | static PyObject *_wrap_wxWindow_SetPosition(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4449 | PyObject * _resultobj; |
4450 | wxWindow * _arg0; | |
4451 | wxPoint * _arg1; | |
23bed520 | 4452 | int _arg2 = (int ) wxSIZE_USE_EXISTING; |
1d99702e | 4453 | PyObject * _argo0 = 0; |
2f90df85 RD |
4454 | wxPoint temp; |
4455 | PyObject * _obj1 = 0; | |
23bed520 | 4456 | char *_kwnames[] = { "self","pos","flags", NULL }; |
8ab979d7 RD |
4457 | |
4458 | self = self; | |
23bed520 | 4459 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxWindow_SetPosition",_kwnames,&_argo0,&_obj1,&_arg2)) |
8ab979d7 | 4460 | return NULL; |
1d99702e RD |
4461 | if (_argo0) { |
4462 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4463 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4464 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetPosition. Expected _wxWindow_p."); |
4465 | return NULL; | |
4466 | } | |
4467 | } | |
2f90df85 RD |
4468 | { |
4469 | _arg1 = &temp; | |
4470 | if (! wxPoint_helper(_obj1, &_arg1)) | |
8ab979d7 | 4471 | return NULL; |
2f90df85 | 4472 | } |
cf694132 | 4473 | { |
4268f798 | 4474 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
23bed520 | 4475 | wxWindow_SetPosition(_arg0,*_arg1,_arg2); |
cf694132 | 4476 | |
4268f798 | 4477 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4478 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4479 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4480 | _resultobj = Py_None; |
4481 | return _resultobj; | |
4482 | } | |
4483 | ||
dbbb98cd RD |
4484 | static void wxWindow_SetRect(wxWindow *self,const wxRect & rect,int sizeFlags) { |
4485 | self->SetSize(rect, sizeFlags); | |
4486 | } | |
4487 | static PyObject *_wrap_wxWindow_SetRect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4488 | PyObject * _resultobj; | |
4489 | wxWindow * _arg0; | |
4490 | wxRect * _arg1; | |
4491 | int _arg2 = (int ) wxSIZE_AUTO; | |
4492 | PyObject * _argo0 = 0; | |
4493 | wxRect temp; | |
4494 | PyObject * _obj1 = 0; | |
4495 | char *_kwnames[] = { "self","rect","sizeFlags", NULL }; | |
4496 | ||
4497 | self = self; | |
4498 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxWindow_SetRect",_kwnames,&_argo0,&_obj1,&_arg2)) | |
4499 | return NULL; | |
4500 | if (_argo0) { | |
4501 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4502 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
4503 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetRect. Expected _wxWindow_p."); | |
4504 | return NULL; | |
4505 | } | |
4506 | } | |
4507 | { | |
4508 | _arg1 = &temp; | |
4509 | if (! wxRect_helper(_obj1, &_arg1)) | |
4510 | return NULL; | |
4511 | } | |
4512 | { | |
4268f798 | 4513 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
dbbb98cd RD |
4514 | wxWindow_SetRect(_arg0,*_arg1,_arg2); |
4515 | ||
4268f798 | 4516 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4517 | if (PyErr_Occurred()) return NULL; |
dbbb98cd RD |
4518 | } Py_INCREF(Py_None); |
4519 | _resultobj = Py_None; | |
4520 | return _resultobj; | |
4521 | } | |
4522 | ||
8ab979d7 | 4523 | #define wxWindow_SetSizeHints(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (_swigobj->SetSizeHints(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) |
efc5f224 | 4524 | static PyObject *_wrap_wxWindow_SetSizeHints(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4525 | PyObject * _resultobj; |
4526 | wxWindow * _arg0; | |
1d99702e RD |
4527 | int _arg1 = (int ) -1; |
4528 | int _arg2 = (int ) -1; | |
4529 | int _arg3 = (int ) -1; | |
4530 | int _arg4 = (int ) -1; | |
4531 | int _arg5 = (int ) -1; | |
4532 | int _arg6 = (int ) -1; | |
4533 | PyObject * _argo0 = 0; | |
efc5f224 | 4534 | char *_kwnames[] = { "self","minW","minH","maxW","maxH","incW","incH", NULL }; |
8ab979d7 RD |
4535 | |
4536 | self = self; | |
efc5f224 | 4537 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iiiiii:wxWindow_SetSizeHints",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_arg4,&_arg5,&_arg6)) |
8ab979d7 | 4538 | return NULL; |
1d99702e RD |
4539 | if (_argo0) { |
4540 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4541 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4542 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetSizeHints. Expected _wxWindow_p."); |
4543 | return NULL; | |
4544 | } | |
4545 | } | |
cf694132 | 4546 | { |
4268f798 | 4547 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4548 | wxWindow_SetSizeHints(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5,_arg6); |
4549 | ||
4268f798 | 4550 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4551 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4552 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4553 | _resultobj = Py_None; |
4554 | return _resultobj; | |
4555 | } | |
4556 | ||
af309447 | 4557 | #define wxWindow_SetClientSizeWH(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetClientSize(_swigarg0,_swigarg1)) |
efc5f224 | 4558 | static PyObject *_wrap_wxWindow_SetClientSizeWH(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4559 | PyObject * _resultobj; |
4560 | wxWindow * _arg0; | |
4561 | int _arg1; | |
4562 | int _arg2; | |
1d99702e | 4563 | PyObject * _argo0 = 0; |
efc5f224 | 4564 | char *_kwnames[] = { "self","width","height", NULL }; |
8ab979d7 RD |
4565 | |
4566 | self = self; | |
efc5f224 | 4567 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxWindow_SetClientSizeWH",_kwnames,&_argo0,&_arg1,&_arg2)) |
af309447 | 4568 | return NULL; |
1d99702e RD |
4569 | if (_argo0) { |
4570 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4571 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
4572 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetClientSizeWH. Expected _wxWindow_p."); |
4573 | return NULL; | |
4574 | } | |
4575 | } | |
cf694132 | 4576 | { |
4268f798 | 4577 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4578 | wxWindow_SetClientSizeWH(_arg0,_arg1,_arg2); |
4579 | ||
4268f798 | 4580 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4581 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4582 | } Py_INCREF(Py_None); |
af309447 RD |
4583 | _resultobj = Py_None; |
4584 | return _resultobj; | |
4585 | } | |
4586 | ||
4587 | #define wxWindow_SetClientSize(_swigobj,_swigarg0) (_swigobj->SetClientSize(_swigarg0)) | |
efc5f224 | 4588 | static PyObject *_wrap_wxWindow_SetClientSize(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
4589 | PyObject * _resultobj; |
4590 | wxWindow * _arg0; | |
4591 | wxSize * _arg1; | |
1d99702e | 4592 | PyObject * _argo0 = 0; |
2f90df85 RD |
4593 | wxSize temp; |
4594 | PyObject * _obj1 = 0; | |
efc5f224 | 4595 | char *_kwnames[] = { "self","size", NULL }; |
af309447 RD |
4596 | |
4597 | self = self; | |
2f90df85 | 4598 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetClientSize",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 4599 | return NULL; |
1d99702e RD |
4600 | if (_argo0) { |
4601 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4602 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4603 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetClientSize. Expected _wxWindow_p."); |
4604 | return NULL; | |
4605 | } | |
4606 | } | |
2f90df85 RD |
4607 | { |
4608 | _arg1 = &temp; | |
4609 | if (! wxSize_helper(_obj1, &_arg1)) | |
af309447 | 4610 | return NULL; |
2f90df85 | 4611 | } |
cf694132 | 4612 | { |
4268f798 | 4613 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4614 | wxWindow_SetClientSize(_arg0,*_arg1); |
4615 | ||
4268f798 | 4616 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4617 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4618 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4619 | _resultobj = Py_None; |
4620 | return _resultobj; | |
4621 | } | |
4622 | ||
4623 | #define wxWindow_SetCursor(_swigobj,_swigarg0) (_swigobj->SetCursor(_swigarg0)) | |
efc5f224 | 4624 | static PyObject *_wrap_wxWindow_SetCursor(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4625 | PyObject * _resultobj; |
4626 | wxWindow * _arg0; | |
4627 | wxCursor * _arg1; | |
1d99702e RD |
4628 | PyObject * _argo0 = 0; |
4629 | PyObject * _argo1 = 0; | |
efc5f224 | 4630 | char *_kwnames[] = { "self","cursor", NULL }; |
8ab979d7 RD |
4631 | |
4632 | self = self; | |
efc5f224 | 4633 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetCursor",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 4634 | return NULL; |
1d99702e RD |
4635 | if (_argo0) { |
4636 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4637 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4638 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetCursor. Expected _wxWindow_p."); |
4639 | return NULL; | |
4640 | } | |
4641 | } | |
1d99702e RD |
4642 | if (_argo1) { |
4643 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4644 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxCursor_p")) { | |
8ab979d7 RD |
4645 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetCursor. Expected _wxCursor_p."); |
4646 | return NULL; | |
4647 | } | |
4648 | } | |
cf694132 | 4649 | { |
4268f798 | 4650 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4651 | wxWindow_SetCursor(_arg0,*_arg1); |
4652 | ||
4268f798 | 4653 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4654 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4655 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4656 | _resultobj = Py_None; |
4657 | return _resultobj; | |
4658 | } | |
4659 | ||
1afc06c2 RD |
4660 | #define wxWindow_SetEventHandler(_swigobj,_swigarg0) (_swigobj->SetEventHandler(_swigarg0)) |
4661 | static PyObject *_wrap_wxWindow_SetEventHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4662 | PyObject * _resultobj; | |
4663 | wxWindow * _arg0; | |
4664 | wxEvtHandler * _arg1; | |
4665 | PyObject * _argo0 = 0; | |
4666 | PyObject * _argo1 = 0; | |
4667 | char *_kwnames[] = { "self","handler", NULL }; | |
4668 | ||
4669 | self = self; | |
4670 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetEventHandler",_kwnames,&_argo0,&_argo1)) | |
4671 | return NULL; | |
4672 | if (_argo0) { | |
4673 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4674 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
4675 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetEventHandler. Expected _wxWindow_p."); | |
4676 | return NULL; | |
4677 | } | |
4678 | } | |
4679 | if (_argo1) { | |
4680 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4681 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvtHandler_p")) { | |
4682 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetEventHandler. Expected _wxEvtHandler_p."); | |
4683 | return NULL; | |
4684 | } | |
4685 | } | |
4686 | { | |
4268f798 | 4687 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
1afc06c2 RD |
4688 | wxWindow_SetEventHandler(_arg0,_arg1); |
4689 | ||
4268f798 | 4690 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4691 | if (PyErr_Occurred()) return NULL; |
1afc06c2 RD |
4692 | } Py_INCREF(Py_None); |
4693 | _resultobj = Py_None; | |
4694 | return _resultobj; | |
4695 | } | |
4696 | ||
83b18bab RD |
4697 | #define wxWindow_SetExtraStyle(_swigobj,_swigarg0) (_swigobj->SetExtraStyle(_swigarg0)) |
4698 | static PyObject *_wrap_wxWindow_SetExtraStyle(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4699 | PyObject * _resultobj; | |
4700 | wxWindow * _arg0; | |
4701 | long _arg1; | |
4702 | PyObject * _argo0 = 0; | |
4703 | char *_kwnames[] = { "self","exStyle", NULL }; | |
4704 | ||
4705 | self = self; | |
4706 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxWindow_SetExtraStyle",_kwnames,&_argo0,&_arg1)) | |
4707 | return NULL; | |
4708 | if (_argo0) { | |
4709 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4710 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
4711 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetExtraStyle. Expected _wxWindow_p."); | |
4712 | return NULL; | |
4713 | } | |
4714 | } | |
4715 | { | |
4268f798 | 4716 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
83b18bab RD |
4717 | wxWindow_SetExtraStyle(_arg0,_arg1); |
4718 | ||
4268f798 | 4719 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4720 | if (PyErr_Occurred()) return NULL; |
83b18bab RD |
4721 | } Py_INCREF(Py_None); |
4722 | _resultobj = Py_None; | |
4723 | return _resultobj; | |
4724 | } | |
4725 | ||
8ab979d7 | 4726 | #define wxWindow_SetTitle(_swigobj,_swigarg0) (_swigobj->SetTitle(_swigarg0)) |
efc5f224 | 4727 | static PyObject *_wrap_wxWindow_SetTitle(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4728 | PyObject * _resultobj; |
4729 | wxWindow * _arg0; | |
4730 | wxString * _arg1; | |
1d99702e | 4731 | PyObject * _argo0 = 0; |
8ab979d7 | 4732 | PyObject * _obj1 = 0; |
efc5f224 | 4733 | char *_kwnames[] = { "self","title", NULL }; |
8ab979d7 RD |
4734 | |
4735 | self = self; | |
efc5f224 | 4736 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetTitle",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 4737 | return NULL; |
1d99702e RD |
4738 | if (_argo0) { |
4739 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4740 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4741 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetTitle. Expected _wxWindow_p."); |
4742 | return NULL; | |
4743 | } | |
4744 | } | |
4745 | { | |
185d7c3e RD |
4746 | #if PYTHON_API_VERSION >= 1009 |
4747 | char* tmpPtr; int tmpSize; | |
4748 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 4749 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
4750 | return NULL; |
4751 | } | |
4752 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
4753 | return NULL; | |
4754 | _arg1 = new wxString(tmpPtr, tmpSize); | |
4755 | #else | |
8ab979d7 RD |
4756 | if (!PyString_Check(_obj1)) { |
4757 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4758 | return NULL; | |
4759 | } | |
185d7c3e RD |
4760 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
4761 | #endif | |
8ab979d7 | 4762 | } |
cf694132 | 4763 | { |
4268f798 | 4764 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4765 | wxWindow_SetTitle(_arg0,*_arg1); |
4766 | ||
4268f798 | 4767 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4768 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4769 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4770 | _resultobj = Py_None; |
4771 | { | |
4772 | if (_obj1) | |
4773 | delete _arg1; | |
4774 | } | |
4775 | return _resultobj; | |
4776 | } | |
4777 | ||
4778 | #define wxWindow_Show(_swigobj,_swigarg0) (_swigobj->Show(_swigarg0)) | |
efc5f224 | 4779 | static PyObject *_wrap_wxWindow_Show(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4780 | PyObject * _resultobj; |
4781 | bool _result; | |
4782 | wxWindow * _arg0; | |
7b7ac0ab | 4783 | bool _arg1 = (bool ) TRUE; |
1d99702e | 4784 | PyObject * _argo0 = 0; |
7b7ac0ab | 4785 | int tempbool1 = (int) TRUE; |
efc5f224 | 4786 | char *_kwnames[] = { "self","show", NULL }; |
8ab979d7 RD |
4787 | |
4788 | self = self; | |
7b7ac0ab | 4789 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxWindow_Show",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 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")) { | |
8ab979d7 RD |
4794 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Show. Expected _wxWindow_p."); |
4795 | return NULL; | |
4796 | } | |
4797 | } | |
4798 | _arg1 = (bool ) tempbool1; | |
cf694132 | 4799 | { |
4268f798 | 4800 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4801 | _result = (bool )wxWindow_Show(_arg0,_arg1); |
4802 | ||
4268f798 | 4803 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4804 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4805 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
4806 | return _resultobj; |
4807 | } | |
4808 | ||
4809 | #define wxWindow_TransferDataFromWindow(_swigobj) (_swigobj->TransferDataFromWindow()) | |
efc5f224 | 4810 | static PyObject *_wrap_wxWindow_TransferDataFromWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4811 | PyObject * _resultobj; |
4812 | bool _result; | |
4813 | wxWindow * _arg0; | |
1d99702e | 4814 | PyObject * _argo0 = 0; |
efc5f224 | 4815 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
4816 | |
4817 | self = self; | |
efc5f224 | 4818 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_TransferDataFromWindow",_kwnames,&_argo0)) |
8ab979d7 | 4819 | return NULL; |
1d99702e RD |
4820 | if (_argo0) { |
4821 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4822 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4823 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_TransferDataFromWindow. Expected _wxWindow_p."); |
4824 | return NULL; | |
4825 | } | |
4826 | } | |
cf694132 | 4827 | { |
4268f798 | 4828 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4829 | _result = (bool )wxWindow_TransferDataFromWindow(_arg0); |
4830 | ||
4268f798 | 4831 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4832 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4833 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
4834 | return _resultobj; |
4835 | } | |
4836 | ||
4837 | #define wxWindow_TransferDataToWindow(_swigobj) (_swigobj->TransferDataToWindow()) | |
efc5f224 | 4838 | static PyObject *_wrap_wxWindow_TransferDataToWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4839 | PyObject * _resultobj; |
4840 | bool _result; | |
4841 | wxWindow * _arg0; | |
1d99702e | 4842 | PyObject * _argo0 = 0; |
efc5f224 | 4843 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
4844 | |
4845 | self = self; | |
efc5f224 | 4846 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_TransferDataToWindow",_kwnames,&_argo0)) |
8ab979d7 | 4847 | return NULL; |
1d99702e RD |
4848 | if (_argo0) { |
4849 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4850 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4851 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_TransferDataToWindow. Expected _wxWindow_p."); |
4852 | return NULL; | |
4853 | } | |
4854 | } | |
cf694132 | 4855 | { |
4268f798 | 4856 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4857 | _result = (bool )wxWindow_TransferDataToWindow(_arg0); |
4858 | ||
4268f798 | 4859 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4860 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4861 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
4862 | return _resultobj; |
4863 | } | |
4864 | ||
23bed520 RD |
4865 | #define wxWindow_UpdateWindowUI(_swigobj) (_swigobj->UpdateWindowUI()) |
4866 | static PyObject *_wrap_wxWindow_UpdateWindowUI(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4867 | PyObject * _resultobj; | |
4868 | wxWindow * _arg0; | |
4869 | PyObject * _argo0 = 0; | |
4870 | char *_kwnames[] = { "self", NULL }; | |
4871 | ||
4872 | self = self; | |
4873 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_UpdateWindowUI",_kwnames,&_argo0)) | |
4874 | return NULL; | |
4875 | if (_argo0) { | |
4876 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4877 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
4878 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_UpdateWindowUI. Expected _wxWindow_p."); | |
4879 | return NULL; | |
4880 | } | |
4881 | } | |
4882 | { | |
4883 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4884 | wxWindow_UpdateWindowUI(_arg0); | |
4885 | ||
4886 | wxPyEndAllowThreads(__tstate); | |
4887 | if (PyErr_Occurred()) return NULL; | |
4888 | } Py_INCREF(Py_None); | |
4889 | _resultobj = Py_None; | |
4890 | return _resultobj; | |
4891 | } | |
4892 | ||
8ab979d7 | 4893 | #define wxWindow_Validate(_swigobj) (_swigobj->Validate()) |
efc5f224 | 4894 | static PyObject *_wrap_wxWindow_Validate(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4895 | PyObject * _resultobj; |
4896 | bool _result; | |
4897 | wxWindow * _arg0; | |
1d99702e | 4898 | PyObject * _argo0 = 0; |
efc5f224 | 4899 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
4900 | |
4901 | self = self; | |
efc5f224 | 4902 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Validate",_kwnames,&_argo0)) |
8ab979d7 | 4903 | return NULL; |
1d99702e RD |
4904 | if (_argo0) { |
4905 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4906 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4907 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Validate. Expected _wxWindow_p."); |
4908 | return NULL; | |
4909 | } | |
4910 | } | |
cf694132 | 4911 | { |
4268f798 | 4912 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4913 | _result = (bool )wxWindow_Validate(_arg0); |
4914 | ||
4268f798 | 4915 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4916 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4917 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
4918 | return _resultobj; |
4919 | } | |
4920 | ||
4921 | #define wxWindow_WarpPointer(_swigobj,_swigarg0,_swigarg1) (_swigobj->WarpPointer(_swigarg0,_swigarg1)) | |
efc5f224 | 4922 | static PyObject *_wrap_wxWindow_WarpPointer(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
4923 | PyObject * _resultobj; |
4924 | wxWindow * _arg0; | |
4925 | int _arg1; | |
4926 | int _arg2; | |
1d99702e | 4927 | PyObject * _argo0 = 0; |
efc5f224 | 4928 | char *_kwnames[] = { "self","x","y", NULL }; |
8ab979d7 RD |
4929 | |
4930 | self = self; | |
efc5f224 | 4931 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxWindow_WarpPointer",_kwnames,&_argo0,&_arg1,&_arg2)) |
8ab979d7 | 4932 | return NULL; |
1d99702e RD |
4933 | if (_argo0) { |
4934 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4935 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
4936 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_WarpPointer. Expected _wxWindow_p."); |
4937 | return NULL; | |
4938 | } | |
4939 | } | |
cf694132 | 4940 | { |
4268f798 | 4941 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4942 | wxWindow_WarpPointer(_arg0,_arg1,_arg2); |
4943 | ||
4268f798 | 4944 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4945 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4946 | } Py_INCREF(Py_None); |
8ab979d7 RD |
4947 | _resultobj = Py_None; |
4948 | return _resultobj; | |
4949 | } | |
4950 | ||
b8b8dda7 | 4951 | #define wxWindow_ConvertDialogPointToPixels(_swigobj,_swigarg0) (_swigobj->ConvertDialogToPixels(_swigarg0)) |
efc5f224 | 4952 | static PyObject *_wrap_wxWindow_ConvertDialogPointToPixels(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
4953 | PyObject * _resultobj; |
4954 | wxPoint * _result; | |
4955 | wxWindow * _arg0; | |
4956 | wxPoint * _arg1; | |
1d99702e | 4957 | PyObject * _argo0 = 0; |
2f90df85 RD |
4958 | wxPoint temp; |
4959 | PyObject * _obj1 = 0; | |
efc5f224 | 4960 | char *_kwnames[] = { "self","pt", NULL }; |
b8b8dda7 RD |
4961 | char _ptemp[128]; |
4962 | ||
4963 | self = self; | |
2f90df85 | 4964 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_ConvertDialogPointToPixels",_kwnames,&_argo0,&_obj1)) |
b8b8dda7 | 4965 | return NULL; |
1d99702e RD |
4966 | if (_argo0) { |
4967 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4968 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
4969 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ConvertDialogPointToPixels. Expected _wxWindow_p."); |
4970 | return NULL; | |
4971 | } | |
4972 | } | |
2f90df85 RD |
4973 | { |
4974 | _arg1 = &temp; | |
4975 | if (! wxPoint_helper(_obj1, &_arg1)) | |
b8b8dda7 | 4976 | return NULL; |
2f90df85 | 4977 | } |
cf694132 | 4978 | { |
4268f798 | 4979 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
4980 | _result = new wxPoint (wxWindow_ConvertDialogPointToPixels(_arg0,*_arg1)); |
4981 | ||
4268f798 | 4982 | wxPyEndAllowThreads(__tstate); |
493f1553 | 4983 | if (PyErr_Occurred()) return NULL; |
cf694132 | 4984 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); |
b8b8dda7 RD |
4985 | _resultobj = Py_BuildValue("s",_ptemp); |
4986 | return _resultobj; | |
4987 | } | |
4988 | ||
4989 | #define wxWindow_ConvertDialogSizeToPixels(_swigobj,_swigarg0) (_swigobj->ConvertDialogToPixels(_swigarg0)) | |
efc5f224 | 4990 | static PyObject *_wrap_wxWindow_ConvertDialogSizeToPixels(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
4991 | PyObject * _resultobj; |
4992 | wxSize * _result; | |
4993 | wxWindow * _arg0; | |
4994 | wxSize * _arg1; | |
1d99702e | 4995 | PyObject * _argo0 = 0; |
2f90df85 RD |
4996 | wxSize temp; |
4997 | PyObject * _obj1 = 0; | |
efc5f224 | 4998 | char *_kwnames[] = { "self","sz", NULL }; |
b8b8dda7 RD |
4999 | char _ptemp[128]; |
5000 | ||
5001 | self = self; | |
2f90df85 | 5002 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_ConvertDialogSizeToPixels",_kwnames,&_argo0,&_obj1)) |
b8b8dda7 | 5003 | return NULL; |
1d99702e RD |
5004 | if (_argo0) { |
5005 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5006 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
5007 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ConvertDialogSizeToPixels. Expected _wxWindow_p."); |
5008 | return NULL; | |
5009 | } | |
5010 | } | |
2f90df85 RD |
5011 | { |
5012 | _arg1 = &temp; | |
5013 | if (! wxSize_helper(_obj1, &_arg1)) | |
b8b8dda7 | 5014 | return NULL; |
2f90df85 | 5015 | } |
cf694132 | 5016 | { |
4268f798 | 5017 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
5018 | _result = new wxSize (wxWindow_ConvertDialogSizeToPixels(_arg0,*_arg1)); |
5019 | ||
4268f798 | 5020 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5021 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5022 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxSize_p"); |
b8b8dda7 RD |
5023 | _resultobj = Py_BuildValue("s",_ptemp); |
5024 | return _resultobj; | |
5025 | } | |
5026 | ||
5027 | #define wxWindow_ConvertPixelPointToDialog(_swigobj,_swigarg0) (_swigobj->ConvertPixelsToDialog(_swigarg0)) | |
efc5f224 | 5028 | static PyObject *_wrap_wxWindow_ConvertPixelPointToDialog(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
5029 | PyObject * _resultobj; |
5030 | wxPoint * _result; | |
5031 | wxWindow * _arg0; | |
5032 | wxPoint * _arg1; | |
1d99702e | 5033 | PyObject * _argo0 = 0; |
2f90df85 RD |
5034 | wxPoint temp; |
5035 | PyObject * _obj1 = 0; | |
efc5f224 | 5036 | char *_kwnames[] = { "self","pt", NULL }; |
b8b8dda7 RD |
5037 | char _ptemp[128]; |
5038 | ||
5039 | self = self; | |
2f90df85 | 5040 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_ConvertPixelPointToDialog",_kwnames,&_argo0,&_obj1)) |
b8b8dda7 | 5041 | return NULL; |
1d99702e RD |
5042 | if (_argo0) { |
5043 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5044 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
5045 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ConvertPixelPointToDialog. Expected _wxWindow_p."); |
5046 | return NULL; | |
5047 | } | |
5048 | } | |
2f90df85 RD |
5049 | { |
5050 | _arg1 = &temp; | |
5051 | if (! wxPoint_helper(_obj1, &_arg1)) | |
b8b8dda7 | 5052 | return NULL; |
2f90df85 | 5053 | } |
cf694132 | 5054 | { |
4268f798 | 5055 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
5056 | _result = new wxPoint (wxWindow_ConvertPixelPointToDialog(_arg0,*_arg1)); |
5057 | ||
4268f798 | 5058 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5059 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5060 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); |
b8b8dda7 RD |
5061 | _resultobj = Py_BuildValue("s",_ptemp); |
5062 | return _resultobj; | |
5063 | } | |
5064 | ||
5065 | #define wxWindow_ConvertPixelSizeToDialog(_swigobj,_swigarg0) (_swigobj->ConvertPixelsToDialog(_swigarg0)) | |
efc5f224 | 5066 | static PyObject *_wrap_wxWindow_ConvertPixelSizeToDialog(PyObject *self, PyObject *args, PyObject *kwargs) { |
b8b8dda7 RD |
5067 | PyObject * _resultobj; |
5068 | wxSize * _result; | |
5069 | wxWindow * _arg0; | |
5070 | wxSize * _arg1; | |
1d99702e | 5071 | PyObject * _argo0 = 0; |
2f90df85 RD |
5072 | wxSize temp; |
5073 | PyObject * _obj1 = 0; | |
efc5f224 | 5074 | char *_kwnames[] = { "self","sz", NULL }; |
b8b8dda7 RD |
5075 | char _ptemp[128]; |
5076 | ||
5077 | self = self; | |
2f90df85 | 5078 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_ConvertPixelSizeToDialog",_kwnames,&_argo0,&_obj1)) |
b8b8dda7 | 5079 | return NULL; |
1d99702e RD |
5080 | if (_argo0) { |
5081 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5082 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
b8b8dda7 RD |
5083 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ConvertPixelSizeToDialog. Expected _wxWindow_p."); |
5084 | return NULL; | |
5085 | } | |
5086 | } | |
2f90df85 RD |
5087 | { |
5088 | _arg1 = &temp; | |
5089 | if (! wxSize_helper(_obj1, &_arg1)) | |
b8b8dda7 | 5090 | return NULL; |
2f90df85 | 5091 | } |
cf694132 | 5092 | { |
4268f798 | 5093 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
5094 | _result = new wxSize (wxWindow_ConvertPixelSizeToDialog(_arg0,*_arg1)); |
5095 | ||
4268f798 | 5096 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5097 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5098 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxSize_p"); |
b8b8dda7 RD |
5099 | _resultobj = Py_BuildValue("s",_ptemp); |
5100 | return _resultobj; | |
5101 | } | |
5102 | ||
af309447 | 5103 | #define wxWindow_SetToolTipString(_swigobj,_swigarg0) (_swigobj->SetToolTip(_swigarg0)) |
efc5f224 | 5104 | static PyObject *_wrap_wxWindow_SetToolTipString(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
5105 | PyObject * _resultobj; |
5106 | wxWindow * _arg0; | |
5107 | wxString * _arg1; | |
1d99702e | 5108 | PyObject * _argo0 = 0; |
af309447 | 5109 | PyObject * _obj1 = 0; |
efc5f224 | 5110 | char *_kwnames[] = { "self","tip", NULL }; |
af309447 RD |
5111 | |
5112 | self = self; | |
efc5f224 | 5113 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetToolTipString",_kwnames,&_argo0,&_obj1)) |
af309447 | 5114 | return NULL; |
1d99702e RD |
5115 | if (_argo0) { |
5116 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5117 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
5118 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetToolTipString. Expected _wxWindow_p."); |
5119 | return NULL; | |
5120 | } | |
5121 | } | |
5122 | { | |
185d7c3e RD |
5123 | #if PYTHON_API_VERSION >= 1009 |
5124 | char* tmpPtr; int tmpSize; | |
5125 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 5126 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
5127 | return NULL; |
5128 | } | |
5129 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
5130 | return NULL; | |
5131 | _arg1 = new wxString(tmpPtr, tmpSize); | |
5132 | #else | |
af309447 RD |
5133 | if (!PyString_Check(_obj1)) { |
5134 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5135 | return NULL; | |
5136 | } | |
185d7c3e RD |
5137 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
5138 | #endif | |
af309447 | 5139 | } |
cf694132 | 5140 | { |
4268f798 | 5141 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
5142 | wxWindow_SetToolTipString(_arg0,*_arg1); |
5143 | ||
4268f798 | 5144 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5145 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5146 | } Py_INCREF(Py_None); |
af309447 RD |
5147 | _resultobj = Py_None; |
5148 | { | |
5149 | if (_obj1) | |
5150 | delete _arg1; | |
5151 | } | |
5152 | return _resultobj; | |
5153 | } | |
5154 | ||
5155 | #define wxWindow_SetToolTip(_swigobj,_swigarg0) (_swigobj->SetToolTip(_swigarg0)) | |
efc5f224 | 5156 | static PyObject *_wrap_wxWindow_SetToolTip(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
5157 | PyObject * _resultobj; |
5158 | wxWindow * _arg0; | |
5159 | wxToolTip * _arg1; | |
1d99702e RD |
5160 | PyObject * _argo0 = 0; |
5161 | PyObject * _argo1 = 0; | |
efc5f224 | 5162 | char *_kwnames[] = { "self","tooltip", NULL }; |
af309447 RD |
5163 | |
5164 | self = self; | |
efc5f224 | 5165 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetToolTip",_kwnames,&_argo0,&_argo1)) |
af309447 | 5166 | return NULL; |
1d99702e RD |
5167 | if (_argo0) { |
5168 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5169 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
5170 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetToolTip. Expected _wxWindow_p."); |
5171 | return NULL; | |
5172 | } | |
5173 | } | |
1d99702e RD |
5174 | if (_argo1) { |
5175 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5176 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxToolTip_p")) { | |
af309447 RD |
5177 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetToolTip. Expected _wxToolTip_p."); |
5178 | return NULL; | |
5179 | } | |
5180 | } | |
cf694132 | 5181 | { |
4268f798 | 5182 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
5183 | wxWindow_SetToolTip(_arg0,_arg1); |
5184 | ||
4268f798 | 5185 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5186 | if (PyErr_Occurred()) return NULL; |
cf694132 | 5187 | } Py_INCREF(Py_None); |
af309447 RD |
5188 | _resultobj = Py_None; |
5189 | return _resultobj; | |
5190 | } | |
5191 | ||
5192 | #define wxWindow_GetToolTip(_swigobj) (_swigobj->GetToolTip()) | |
efc5f224 | 5193 | static PyObject *_wrap_wxWindow_GetToolTip(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
5194 | PyObject * _resultobj; |
5195 | wxToolTip * _result; | |
5196 | wxWindow * _arg0; | |
1d99702e | 5197 | PyObject * _argo0 = 0; |
efc5f224 | 5198 | char *_kwnames[] = { "self", NULL }; |
af309447 RD |
5199 | |
5200 | self = self; | |
efc5f224 | 5201 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetToolTip",_kwnames,&_argo0)) |
af309447 | 5202 | return NULL; |
1d99702e RD |
5203 | if (_argo0) { |
5204 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5205 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
af309447 RD |
5206 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetToolTip. Expected _wxWindow_p."); |
5207 | return NULL; | |
5208 | } | |
5209 | } | |
cf694132 | 5210 | { |
4268f798 | 5211 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
5212 | _result = (wxToolTip *)wxWindow_GetToolTip(_arg0); |
5213 | ||
4268f798 | 5214 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5215 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 5216 | }{ _resultobj = wxPyMake_wxObject(_result); } |
af309447 RD |
5217 | return _resultobj; |
5218 | } | |
5219 | ||
2f90df85 RD |
5220 | #define wxWindow_SetSizer(_swigobj,_swigarg0) (_swigobj->SetSizer(_swigarg0)) |
5221 | static PyObject *_wrap_wxWindow_SetSizer(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5222 | PyObject * _resultobj; | |
5223 | wxWindow * _arg0; | |
5224 | wxSizer * _arg1; | |
5225 | PyObject * _argo0 = 0; | |
5226 | PyObject * _argo1 = 0; | |
5227 | char *_kwnames[] = { "self","sizer", NULL }; | |
5228 | ||
5229 | self = self; | |
5230 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetSizer",_kwnames,&_argo0,&_argo1)) | |
5231 | return NULL; | |
5232 | if (_argo0) { | |
5233 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5234 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5235 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetSizer. Expected _wxWindow_p."); | |
5236 | return NULL; | |
5237 | } | |
5238 | } | |
5239 | if (_argo1) { | |
5240 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5241 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxSizer_p")) { | |
5242 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetSizer. Expected _wxSizer_p."); | |
5243 | return NULL; | |
5244 | } | |
5245 | } | |
5246 | { | |
4268f798 | 5247 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
5248 | wxWindow_SetSizer(_arg0,_arg1); |
5249 | ||
4268f798 | 5250 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5251 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
5252 | } Py_INCREF(Py_None); |
5253 | _resultobj = Py_None; | |
5254 | return _resultobj; | |
5255 | } | |
5256 | ||
f6bcfd97 BP |
5257 | #define wxWindow_GetSizer(_swigobj) (_swigobj->GetSizer()) |
5258 | static PyObject *_wrap_wxWindow_GetSizer(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5259 | PyObject * _resultobj; | |
5260 | wxSizer * _result; | |
5261 | wxWindow * _arg0; | |
5262 | PyObject * _argo0 = 0; | |
5263 | char *_kwnames[] = { "self", NULL }; | |
f6bcfd97 BP |
5264 | |
5265 | self = self; | |
5266 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetSizer",_kwnames,&_argo0)) | |
5267 | return NULL; | |
5268 | if (_argo0) { | |
5269 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5270 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5271 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetSizer. Expected _wxWindow_p."); | |
5272 | return NULL; | |
5273 | } | |
5274 | } | |
5275 | { | |
4268f798 | 5276 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f6bcfd97 BP |
5277 | _result = (wxSizer *)wxWindow_GetSizer(_arg0); |
5278 | ||
4268f798 | 5279 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5280 | if (PyErr_Occurred()) return NULL; |
2f4e9287 | 5281 | }{ _resultobj = wxPyMake_wxSizer(_result); } |
f6bcfd97 BP |
5282 | return _resultobj; |
5283 | } | |
5284 | ||
be90c029 RD |
5285 | #define wxWindow_SetContainingSizer(_swigobj,_swigarg0) (_swigobj->SetContainingSizer(_swigarg0)) |
5286 | static PyObject *_wrap_wxWindow_SetContainingSizer(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5287 | PyObject * _resultobj; | |
5288 | wxWindow * _arg0; | |
5289 | wxSizer * _arg1; | |
5290 | PyObject * _argo0 = 0; | |
5291 | PyObject * _argo1 = 0; | |
5292 | char *_kwnames[] = { "self","sizer", NULL }; | |
5293 | ||
5294 | self = self; | |
5295 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetContainingSizer",_kwnames,&_argo0,&_argo1)) | |
5296 | return NULL; | |
5297 | if (_argo0) { | |
5298 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5299 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5300 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetContainingSizer. Expected _wxWindow_p."); | |
5301 | return NULL; | |
5302 | } | |
5303 | } | |
5304 | if (_argo1) { | |
5305 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5306 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxSizer_p")) { | |
5307 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetContainingSizer. Expected _wxSizer_p."); | |
5308 | return NULL; | |
5309 | } | |
5310 | } | |
5311 | { | |
5312 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5313 | wxWindow_SetContainingSizer(_arg0,_arg1); | |
5314 | ||
5315 | wxPyEndAllowThreads(__tstate); | |
5316 | if (PyErr_Occurred()) return NULL; | |
5317 | } Py_INCREF(Py_None); | |
5318 | _resultobj = Py_None; | |
5319 | return _resultobj; | |
5320 | } | |
5321 | ||
5322 | #define wxWindow_GetContainingSizer(_swigobj) (_swigobj->GetContainingSizer()) | |
5323 | static PyObject *_wrap_wxWindow_GetContainingSizer(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5324 | PyObject * _resultobj; | |
5325 | wxSizer * _result; | |
5326 | wxWindow * _arg0; | |
5327 | PyObject * _argo0 = 0; | |
5328 | char *_kwnames[] = { "self", NULL }; | |
5329 | ||
5330 | self = self; | |
5331 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetContainingSizer",_kwnames,&_argo0)) | |
5332 | return NULL; | |
5333 | if (_argo0) { | |
5334 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5335 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5336 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetContainingSizer. Expected _wxWindow_p."); | |
5337 | return NULL; | |
5338 | } | |
5339 | } | |
5340 | { | |
5341 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5342 | _result = (wxSizer *)wxWindow_GetContainingSizer(_arg0); | |
5343 | ||
5344 | wxPyEndAllowThreads(__tstate); | |
5345 | if (PyErr_Occurred()) return NULL; | |
5346 | }{ _resultobj = wxPyMake_wxSizer(_result); } | |
5347 | return _resultobj; | |
5348 | } | |
5349 | ||
2f90df85 RD |
5350 | #define wxWindow_GetValidator(_swigobj) (_swigobj->GetValidator()) |
5351 | static PyObject *_wrap_wxWindow_GetValidator(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5352 | PyObject * _resultobj; | |
5353 | wxValidator * _result; | |
5354 | wxWindow * _arg0; | |
5355 | PyObject * _argo0 = 0; | |
5356 | char *_kwnames[] = { "self", NULL }; | |
2f90df85 RD |
5357 | |
5358 | self = self; | |
5359 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetValidator",_kwnames,&_argo0)) | |
5360 | return NULL; | |
5361 | if (_argo0) { | |
5362 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5363 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5364 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetValidator. Expected _wxWindow_p."); | |
5365 | return NULL; | |
5366 | } | |
5367 | } | |
5368 | { | |
4268f798 | 5369 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
5370 | _result = (wxValidator *)wxWindow_GetValidator(_arg0); |
5371 | ||
4268f798 | 5372 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5373 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 5374 | }{ _resultobj = wxPyMake_wxObject(_result); } |
2f90df85 RD |
5375 | return _resultobj; |
5376 | } | |
5377 | ||
5378 | #define wxWindow_SetValidator(_swigobj,_swigarg0) (_swigobj->SetValidator(_swigarg0)) | |
5379 | static PyObject *_wrap_wxWindow_SetValidator(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5380 | PyObject * _resultobj; | |
5381 | wxWindow * _arg0; | |
5382 | wxValidator * _arg1; | |
5383 | PyObject * _argo0 = 0; | |
5384 | PyObject * _argo1 = 0; | |
5385 | char *_kwnames[] = { "self","validator", NULL }; | |
5386 | ||
5387 | self = self; | |
5388 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetValidator",_kwnames,&_argo0,&_argo1)) | |
5389 | return NULL; | |
5390 | if (_argo0) { | |
5391 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5392 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5393 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetValidator. Expected _wxWindow_p."); | |
5394 | return NULL; | |
5395 | } | |
5396 | } | |
5397 | if (_argo1) { | |
5398 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5399 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxValidator_p")) { | |
5400 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetValidator. Expected _wxValidator_p."); | |
5401 | return NULL; | |
5402 | } | |
5403 | } | |
5404 | { | |
4268f798 | 5405 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2f90df85 RD |
5406 | wxWindow_SetValidator(_arg0,*_arg1); |
5407 | ||
4268f798 | 5408 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5409 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
5410 | } Py_INCREF(Py_None); |
5411 | _resultobj = Py_None; | |
5412 | return _resultobj; | |
5413 | } | |
5414 | ||
b1462dfa RD |
5415 | #define wxWindow_SetDropTarget(_swigobj,_swigarg0) (_swigobj->SetDropTarget(_swigarg0)) |
5416 | static PyObject *_wrap_wxWindow_SetDropTarget(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5417 | PyObject * _resultobj; | |
5418 | wxWindow * _arg0; | |
5419 | wxDropTarget * _arg1; | |
5420 | PyObject * _argo0 = 0; | |
5421 | PyObject * _argo1 = 0; | |
5422 | char *_kwnames[] = { "self","target", NULL }; | |
5423 | ||
5424 | self = self; | |
5425 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetDropTarget",_kwnames,&_argo0,&_argo1)) | |
5426 | return NULL; | |
5427 | if (_argo0) { | |
5428 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5429 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5430 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetDropTarget. Expected _wxWindow_p."); | |
5431 | return NULL; | |
5432 | } | |
5433 | } | |
5434 | if (_argo1) { | |
5435 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5436 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxDropTarget_p")) { | |
5437 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetDropTarget. Expected _wxDropTarget_p."); | |
5438 | return NULL; | |
5439 | } | |
5440 | } | |
5441 | { | |
4268f798 | 5442 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
5443 | wxWindow_SetDropTarget(_arg0,_arg1); |
5444 | ||
4268f798 | 5445 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5446 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
5447 | } Py_INCREF(Py_None); |
5448 | _resultobj = Py_None; | |
5449 | return _resultobj; | |
5450 | } | |
5451 | ||
5452 | #define wxWindow_GetDropTarget(_swigobj) (_swigobj->GetDropTarget()) | |
5453 | static PyObject *_wrap_wxWindow_GetDropTarget(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5454 | PyObject * _resultobj; | |
5455 | wxDropTarget * _result; | |
5456 | wxWindow * _arg0; | |
5457 | PyObject * _argo0 = 0; | |
5458 | char *_kwnames[] = { "self", NULL }; | |
5459 | char _ptemp[128]; | |
5460 | ||
5461 | self = self; | |
5462 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetDropTarget",_kwnames,&_argo0)) | |
5463 | return NULL; | |
5464 | if (_argo0) { | |
5465 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5466 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5467 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetDropTarget. Expected _wxWindow_p."); | |
5468 | return NULL; | |
5469 | } | |
5470 | } | |
5471 | { | |
4268f798 | 5472 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
5473 | _result = (wxDropTarget *)wxWindow_GetDropTarget(_arg0); |
5474 | ||
4268f798 | 5475 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5476 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
5477 | } if (_result) { |
5478 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxDropTarget_p"); | |
5479 | _resultobj = Py_BuildValue("s",_ptemp); | |
5480 | } else { | |
5481 | Py_INCREF(Py_None); | |
5482 | _resultobj = Py_None; | |
5483 | } | |
5484 | return _resultobj; | |
5485 | } | |
5486 | ||
694759cf RD |
5487 | #define wxWindow_GetBestSize(_swigobj) (_swigobj->GetBestSize()) |
5488 | static PyObject *_wrap_wxWindow_GetBestSize(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5489 | PyObject * _resultobj; | |
5490 | wxSize * _result; | |
5491 | wxWindow * _arg0; | |
5492 | PyObject * _argo0 = 0; | |
5493 | char *_kwnames[] = { "self", NULL }; | |
5494 | char _ptemp[128]; | |
5495 | ||
5496 | self = self; | |
5497 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetBestSize",_kwnames,&_argo0)) | |
5498 | return NULL; | |
5499 | if (_argo0) { | |
5500 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5501 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5502 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetBestSize. Expected _wxWindow_p."); | |
5503 | return NULL; | |
5504 | } | |
5505 | } | |
5506 | { | |
4268f798 | 5507 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
694759cf RD |
5508 | _result = new wxSize (wxWindow_GetBestSize(_arg0)); |
5509 | ||
4268f798 | 5510 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5511 | if (PyErr_Occurred()) return NULL; |
694759cf RD |
5512 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxSize_p"); |
5513 | _resultobj = Py_BuildValue("s",_ptemp); | |
5514 | return _resultobj; | |
5515 | } | |
5516 | ||
a1df7a95 RD |
5517 | #define wxWindow_SetCaret(_swigobj,_swigarg0) (_swigobj->SetCaret(_swigarg0)) |
5518 | static PyObject *_wrap_wxWindow_SetCaret(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5519 | PyObject * _resultobj; | |
5520 | wxWindow * _arg0; | |
5521 | wxCaret * _arg1; | |
5522 | PyObject * _argo0 = 0; | |
5523 | PyObject * _argo1 = 0; | |
5524 | char *_kwnames[] = { "self","caret", NULL }; | |
5525 | ||
5526 | self = self; | |
5527 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetCaret",_kwnames,&_argo0,&_argo1)) | |
5528 | return NULL; | |
5529 | if (_argo0) { | |
5530 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5531 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5532 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetCaret. Expected _wxWindow_p."); | |
5533 | return NULL; | |
5534 | } | |
5535 | } | |
5536 | if (_argo1) { | |
5537 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5538 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxCaret_p")) { | |
5539 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetCaret. Expected _wxCaret_p."); | |
5540 | return NULL; | |
5541 | } | |
5542 | } | |
5543 | { | |
4268f798 | 5544 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
a1df7a95 RD |
5545 | wxWindow_SetCaret(_arg0,_arg1); |
5546 | ||
4268f798 | 5547 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5548 | if (PyErr_Occurred()) return NULL; |
a1df7a95 RD |
5549 | } Py_INCREF(Py_None); |
5550 | _resultobj = Py_None; | |
5551 | return _resultobj; | |
5552 | } | |
5553 | ||
5554 | #define wxWindow_GetCaret(_swigobj) (_swigobj->GetCaret()) | |
5555 | static PyObject *_wrap_wxWindow_GetCaret(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5556 | PyObject * _resultobj; | |
5557 | wxCaret * _result; | |
5558 | wxWindow * _arg0; | |
5559 | PyObject * _argo0 = 0; | |
5560 | char *_kwnames[] = { "self", NULL }; | |
5561 | char _ptemp[128]; | |
5562 | ||
5563 | self = self; | |
5564 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetCaret",_kwnames,&_argo0)) | |
5565 | return NULL; | |
5566 | if (_argo0) { | |
5567 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5568 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5569 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetCaret. Expected _wxWindow_p."); | |
5570 | return NULL; | |
5571 | } | |
5572 | } | |
5573 | { | |
4268f798 | 5574 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
a1df7a95 RD |
5575 | _result = (wxCaret *)wxWindow_GetCaret(_arg0); |
5576 | ||
4268f798 | 5577 | wxPyEndAllowThreads(__tstate); |
493f1553 | 5578 | if (PyErr_Occurred()) return NULL; |
a1df7a95 RD |
5579 | } if (_result) { |
5580 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxCaret_p"); | |
5581 | _resultobj = Py_BuildValue("s",_ptemp); | |
5582 | } else { | |
5583 | Py_INCREF(Py_None); | |
5584 | _resultobj = Py_None; | |
5585 | } | |
5586 | return _resultobj; | |
5587 | } | |
5588 | ||
3a0958b1 RD |
5589 | #define wxWindow_Freeze(_swigobj) (_swigobj->Freeze()) |
5590 | static PyObject *_wrap_wxWindow_Freeze(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5591 | PyObject * _resultobj; | |
5592 | wxWindow * _arg0; | |
5593 | PyObject * _argo0 = 0; | |
5594 | char *_kwnames[] = { "self", NULL }; | |
5595 | ||
5596 | self = self; | |
5597 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Freeze",_kwnames,&_argo0)) | |
5598 | return NULL; | |
5599 | if (_argo0) { | |
5600 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5601 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5602 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Freeze. Expected _wxWindow_p."); | |
5603 | return NULL; | |
5604 | } | |
5605 | } | |
5606 | { | |
4268f798 | 5607 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
3a0958b1 RD |
5608 | wxWindow_Freeze(_arg0); |
5609 | ||
4268f798 | 5610 | wxPyEndAllowThreads(__tstate); |
3a0958b1 RD |
5611 | if (PyErr_Occurred()) return NULL; |
5612 | } Py_INCREF(Py_None); | |
5613 | _resultobj = Py_None; | |
5614 | return _resultobj; | |
5615 | } | |
5616 | ||
5617 | #define wxWindow_Thaw(_swigobj) (_swigobj->Thaw()) | |
5618 | static PyObject *_wrap_wxWindow_Thaw(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5619 | PyObject * _resultobj; | |
5620 | wxWindow * _arg0; | |
5621 | PyObject * _argo0 = 0; | |
5622 | char *_kwnames[] = { "self", NULL }; | |
5623 | ||
5624 | self = self; | |
5625 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Thaw",_kwnames,&_argo0)) | |
5626 | return NULL; | |
5627 | if (_argo0) { | |
5628 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5629 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5630 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Thaw. Expected _wxWindow_p."); | |
5631 | return NULL; | |
5632 | } | |
5633 | } | |
5634 | { | |
4268f798 | 5635 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
3a0958b1 RD |
5636 | wxWindow_Thaw(_arg0); |
5637 | ||
4268f798 | 5638 | wxPyEndAllowThreads(__tstate); |
3a0958b1 RD |
5639 | if (PyErr_Occurred()) return NULL; |
5640 | } Py_INCREF(Py_None); | |
5641 | _resultobj = Py_None; | |
5642 | return _resultobj; | |
5643 | } | |
5644 | ||
09f3d4e6 RD |
5645 | #define wxWindow_Update(_swigobj) (_swigobj->Update()) |
5646 | static PyObject *_wrap_wxWindow_Update(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5647 | PyObject * _resultobj; | |
5648 | wxWindow * _arg0; | |
5649 | PyObject * _argo0 = 0; | |
5650 | char *_kwnames[] = { "self", NULL }; | |
5651 | ||
5652 | self = self; | |
5653 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_Update",_kwnames,&_argo0)) | |
5654 | return NULL; | |
5655 | if (_argo0) { | |
5656 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5657 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5658 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Update. Expected _wxWindow_p."); | |
5659 | return NULL; | |
5660 | } | |
5661 | } | |
5662 | { | |
4268f798 | 5663 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
09f3d4e6 RD |
5664 | wxWindow_Update(_arg0); |
5665 | ||
4268f798 | 5666 | wxPyEndAllowThreads(__tstate); |
09f3d4e6 RD |
5667 | if (PyErr_Occurred()) return NULL; |
5668 | } Py_INCREF(Py_None); | |
5669 | _resultobj = Py_None; | |
5670 | return _resultobj; | |
5671 | } | |
5672 | ||
4f3449b4 RD |
5673 | #define wxWindow_GetHelpText(_swigobj) (_swigobj->GetHelpText()) |
5674 | static PyObject *_wrap_wxWindow_GetHelpText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5675 | PyObject * _resultobj; | |
5676 | wxString * _result; | |
5677 | wxWindow * _arg0; | |
5678 | PyObject * _argo0 = 0; | |
5679 | char *_kwnames[] = { "self", NULL }; | |
5680 | ||
5681 | self = self; | |
5682 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetHelpText",_kwnames,&_argo0)) | |
5683 | return NULL; | |
5684 | if (_argo0) { | |
5685 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5686 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5687 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetHelpText. Expected _wxWindow_p."); | |
5688 | return NULL; | |
5689 | } | |
5690 | } | |
5691 | { | |
4268f798 | 5692 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
4f3449b4 RD |
5693 | _result = new wxString (wxWindow_GetHelpText(_arg0)); |
5694 | ||
4268f798 | 5695 | wxPyEndAllowThreads(__tstate); |
4f3449b4 RD |
5696 | if (PyErr_Occurred()) return NULL; |
5697 | }{ | |
5698 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); | |
5699 | } | |
5700 | { | |
5701 | delete _result; | |
5702 | } | |
5703 | return _resultobj; | |
5704 | } | |
5705 | ||
5706 | #define wxWindow_SetHelpText(_swigobj,_swigarg0) (_swigobj->SetHelpText(_swigarg0)) | |
5707 | static PyObject *_wrap_wxWindow_SetHelpText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5708 | PyObject * _resultobj; | |
5709 | wxWindow * _arg0; | |
5710 | wxString * _arg1; | |
5711 | PyObject * _argo0 = 0; | |
5712 | PyObject * _obj1 = 0; | |
5713 | char *_kwnames[] = { "self","helpText", NULL }; | |
5714 | ||
5715 | self = self; | |
5716 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetHelpText",_kwnames,&_argo0,&_obj1)) | |
5717 | return NULL; | |
5718 | if (_argo0) { | |
5719 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5720 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5721 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetHelpText. Expected _wxWindow_p."); | |
5722 | return NULL; | |
5723 | } | |
5724 | } | |
5725 | { | |
5726 | #if PYTHON_API_VERSION >= 1009 | |
5727 | char* tmpPtr; int tmpSize; | |
5728 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
5729 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5730 | return NULL; | |
5731 | } | |
5732 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
5733 | return NULL; | |
5734 | _arg1 = new wxString(tmpPtr, tmpSize); | |
5735 | #else | |
5736 | if (!PyString_Check(_obj1)) { | |
5737 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5738 | return NULL; | |
5739 | } | |
5740 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); | |
5741 | #endif | |
5742 | } | |
5743 | { | |
4268f798 | 5744 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
4f3449b4 RD |
5745 | wxWindow_SetHelpText(_arg0,*_arg1); |
5746 | ||
4268f798 | 5747 | wxPyEndAllowThreads(__tstate); |
4f3449b4 RD |
5748 | if (PyErr_Occurred()) return NULL; |
5749 | } Py_INCREF(Py_None); | |
5750 | _resultobj = Py_None; | |
5751 | { | |
5752 | if (_obj1) | |
5753 | delete _arg1; | |
5754 | } | |
5755 | return _resultobj; | |
5756 | } | |
5757 | ||
23bed520 RD |
5758 | #define wxWindow_SetHelpTextForId(_swigobj,_swigarg0) (_swigobj->SetHelpTextForId(_swigarg0)) |
5759 | static PyObject *_wrap_wxWindow_SetHelpTextForId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5760 | PyObject * _resultobj; | |
5761 | wxWindow * _arg0; | |
5762 | wxString * _arg1; | |
5763 | PyObject * _argo0 = 0; | |
5764 | PyObject * _obj1 = 0; | |
5765 | char *_kwnames[] = { "self","text", NULL }; | |
5766 | ||
5767 | self = self; | |
5768 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetHelpTextForId",_kwnames,&_argo0,&_obj1)) | |
5769 | return NULL; | |
5770 | if (_argo0) { | |
5771 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5772 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5773 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetHelpTextForId. Expected _wxWindow_p."); | |
5774 | return NULL; | |
5775 | } | |
5776 | } | |
5777 | { | |
5778 | #if PYTHON_API_VERSION >= 1009 | |
5779 | char* tmpPtr; int tmpSize; | |
5780 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
5781 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5782 | return NULL; | |
5783 | } | |
5784 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
5785 | return NULL; | |
5786 | _arg1 = new wxString(tmpPtr, tmpSize); | |
5787 | #else | |
5788 | if (!PyString_Check(_obj1)) { | |
5789 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5790 | return NULL; | |
5791 | } | |
5792 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); | |
5793 | #endif | |
5794 | } | |
5795 | { | |
5796 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5797 | wxWindow_SetHelpTextForId(_arg0,*_arg1); | |
5798 | ||
5799 | wxPyEndAllowThreads(__tstate); | |
5800 | if (PyErr_Occurred()) return NULL; | |
5801 | } Py_INCREF(Py_None); | |
5802 | _resultobj = Py_None; | |
5803 | { | |
5804 | if (_obj1) | |
5805 | delete _arg1; | |
5806 | } | |
5807 | return _resultobj; | |
5808 | } | |
5809 | ||
c7e7022c RD |
5810 | #define wxWindow_ScrollLines(_swigobj,_swigarg0) (_swigobj->ScrollLines(_swigarg0)) |
5811 | static PyObject *_wrap_wxWindow_ScrollLines(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5812 | PyObject * _resultobj; | |
5813 | bool _result; | |
5814 | wxWindow * _arg0; | |
5815 | int _arg1; | |
5816 | PyObject * _argo0 = 0; | |
5817 | char *_kwnames[] = { "self","lines", NULL }; | |
5818 | ||
5819 | self = self; | |
5820 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_ScrollLines",_kwnames,&_argo0,&_arg1)) | |
5821 | return NULL; | |
5822 | if (_argo0) { | |
5823 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5824 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5825 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ScrollLines. Expected _wxWindow_p."); | |
5826 | return NULL; | |
5827 | } | |
5828 | } | |
5829 | { | |
4268f798 | 5830 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
c7e7022c RD |
5831 | _result = (bool )wxWindow_ScrollLines(_arg0,_arg1); |
5832 | ||
4268f798 | 5833 | wxPyEndAllowThreads(__tstate); |
c7e7022c RD |
5834 | if (PyErr_Occurred()) return NULL; |
5835 | } _resultobj = Py_BuildValue("i",_result); | |
5836 | return _resultobj; | |
5837 | } | |
5838 | ||
5839 | #define wxWindow_ScrollPages(_swigobj,_swigarg0) (_swigobj->ScrollPages(_swigarg0)) | |
5840 | static PyObject *_wrap_wxWindow_ScrollPages(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5841 | PyObject * _resultobj; | |
5842 | bool _result; | |
5843 | wxWindow * _arg0; | |
5844 | int _arg1; | |
5845 | PyObject * _argo0 = 0; | |
5846 | char *_kwnames[] = { "self","pages", NULL }; | |
5847 | ||
5848 | self = self; | |
5849 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxWindow_ScrollPages",_kwnames,&_argo0,&_arg1)) | |
5850 | return NULL; | |
5851 | if (_argo0) { | |
5852 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5853 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5854 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ScrollPages. Expected _wxWindow_p."); | |
5855 | return NULL; | |
5856 | } | |
5857 | } | |
5858 | { | |
4268f798 | 5859 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
c7e7022c RD |
5860 | _result = (bool )wxWindow_ScrollPages(_arg0,_arg1); |
5861 | ||
4268f798 | 5862 | wxPyEndAllowThreads(__tstate); |
c7e7022c RD |
5863 | if (PyErr_Occurred()) return NULL; |
5864 | } _resultobj = Py_BuildValue("i",_result); | |
5865 | return _resultobj; | |
5866 | } | |
5867 | ||
5868 | #define wxWindow_LineUp(_swigobj) (_swigobj->LineUp()) | |
5869 | static PyObject *_wrap_wxWindow_LineUp(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5870 | PyObject * _resultobj; | |
5871 | bool _result; | |
5872 | wxWindow * _arg0; | |
5873 | PyObject * _argo0 = 0; | |
5874 | char *_kwnames[] = { "self", NULL }; | |
5875 | ||
5876 | self = self; | |
5877 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_LineUp",_kwnames,&_argo0)) | |
5878 | return NULL; | |
5879 | if (_argo0) { | |
5880 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5881 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5882 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_LineUp. Expected _wxWindow_p."); | |
5883 | return NULL; | |
5884 | } | |
5885 | } | |
5886 | { | |
4268f798 | 5887 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
c7e7022c RD |
5888 | _result = (bool )wxWindow_LineUp(_arg0); |
5889 | ||
4268f798 | 5890 | wxPyEndAllowThreads(__tstate); |
c7e7022c RD |
5891 | if (PyErr_Occurred()) return NULL; |
5892 | } _resultobj = Py_BuildValue("i",_result); | |
5893 | return _resultobj; | |
5894 | } | |
5895 | ||
5896 | #define wxWindow_LineDown(_swigobj) (_swigobj->LineDown()) | |
5897 | static PyObject *_wrap_wxWindow_LineDown(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5898 | PyObject * _resultobj; | |
5899 | bool _result; | |
5900 | wxWindow * _arg0; | |
5901 | PyObject * _argo0 = 0; | |
5902 | char *_kwnames[] = { "self", NULL }; | |
5903 | ||
5904 | self = self; | |
5905 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_LineDown",_kwnames,&_argo0)) | |
5906 | return NULL; | |
5907 | if (_argo0) { | |
5908 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5909 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5910 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_LineDown. Expected _wxWindow_p."); | |
5911 | return NULL; | |
5912 | } | |
5913 | } | |
5914 | { | |
4268f798 | 5915 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
c7e7022c RD |
5916 | _result = (bool )wxWindow_LineDown(_arg0); |
5917 | ||
4268f798 | 5918 | wxPyEndAllowThreads(__tstate); |
c7e7022c RD |
5919 | if (PyErr_Occurred()) return NULL; |
5920 | } _resultobj = Py_BuildValue("i",_result); | |
5921 | return _resultobj; | |
5922 | } | |
5923 | ||
5924 | #define wxWindow_PageUp(_swigobj) (_swigobj->PageUp()) | |
5925 | static PyObject *_wrap_wxWindow_PageUp(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5926 | PyObject * _resultobj; | |
5927 | bool _result; | |
5928 | wxWindow * _arg0; | |
5929 | PyObject * _argo0 = 0; | |
5930 | char *_kwnames[] = { "self", NULL }; | |
5931 | ||
5932 | self = self; | |
5933 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_PageUp",_kwnames,&_argo0)) | |
5934 | return NULL; | |
5935 | if (_argo0) { | |
5936 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5937 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5938 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_PageUp. Expected _wxWindow_p."); | |
5939 | return NULL; | |
5940 | } | |
5941 | } | |
5942 | { | |
4268f798 | 5943 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
c7e7022c RD |
5944 | _result = (bool )wxWindow_PageUp(_arg0); |
5945 | ||
4268f798 | 5946 | wxPyEndAllowThreads(__tstate); |
c7e7022c RD |
5947 | if (PyErr_Occurred()) return NULL; |
5948 | } _resultobj = Py_BuildValue("i",_result); | |
5949 | return _resultobj; | |
5950 | } | |
5951 | ||
5952 | #define wxWindow_PageDown(_swigobj) (_swigobj->PageDown()) | |
5953 | static PyObject *_wrap_wxWindow_PageDown(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5954 | PyObject * _resultobj; | |
5955 | bool _result; | |
5956 | wxWindow * _arg0; | |
5957 | PyObject * _argo0 = 0; | |
5958 | char *_kwnames[] = { "self", NULL }; | |
5959 | ||
5960 | self = self; | |
5961 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_PageDown",_kwnames,&_argo0)) | |
5962 | return NULL; | |
5963 | if (_argo0) { | |
5964 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5965 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5966 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_PageDown. Expected _wxWindow_p."); | |
5967 | return NULL; | |
5968 | } | |
5969 | } | |
5970 | { | |
4268f798 | 5971 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
c7e7022c RD |
5972 | _result = (bool )wxWindow_PageDown(_arg0); |
5973 | ||
4268f798 | 5974 | wxPyEndAllowThreads(__tstate); |
c7e7022c RD |
5975 | if (PyErr_Occurred()) return NULL; |
5976 | } _resultobj = Py_BuildValue("i",_result); | |
5977 | return _resultobj; | |
5978 | } | |
5979 | ||
09f3d4e6 RD |
5980 | static PyObject *_wrap_wxWindow_FindFocus(PyObject *self, PyObject *args, PyObject *kwargs) { |
5981 | PyObject * _resultobj; | |
5982 | wxWindow * _result; | |
5983 | char *_kwnames[] = { NULL }; | |
5984 | ||
5985 | self = self; | |
5986 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxWindow_FindFocus",_kwnames)) | |
5987 | return NULL; | |
5988 | { | |
4268f798 | 5989 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
09f3d4e6 RD |
5990 | _result = (wxWindow *)wxWindow::FindFocus(); |
5991 | ||
4268f798 | 5992 | wxPyEndAllowThreads(__tstate); |
09f3d4e6 RD |
5993 | if (PyErr_Occurred()) return NULL; |
5994 | }{ _resultobj = wxPyMake_wxObject(_result); } | |
5995 | return _resultobj; | |
5996 | } | |
5997 | ||
5998 | static PyObject *_wrap_wxWindow_NewControlId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5999 | PyObject * _resultobj; | |
6000 | int _result; | |
6001 | char *_kwnames[] = { NULL }; | |
6002 | ||
6003 | self = self; | |
6004 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxWindow_NewControlId",_kwnames)) | |
6005 | return NULL; | |
6006 | { | |
4268f798 | 6007 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
09f3d4e6 RD |
6008 | _result = (int )wxWindow::NewControlId(); |
6009 | ||
4268f798 | 6010 | wxPyEndAllowThreads(__tstate); |
09f3d4e6 RD |
6011 | if (PyErr_Occurred()) return NULL; |
6012 | } _resultobj = Py_BuildValue("i",_result); | |
6013 | return _resultobj; | |
6014 | } | |
6015 | ||
6016 | static PyObject *_wrap_wxWindow_NextControlId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6017 | PyObject * _resultobj; | |
6018 | int _result; | |
6019 | int _arg0; | |
6020 | char *_kwnames[] = { "id", NULL }; | |
6021 | ||
6022 | self = self; | |
6023 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"i:wxWindow_NextControlId",_kwnames,&_arg0)) | |
6024 | return NULL; | |
6025 | { | |
4268f798 | 6026 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
09f3d4e6 RD |
6027 | _result = (int )wxWindow::NextControlId(_arg0); |
6028 | ||
4268f798 | 6029 | wxPyEndAllowThreads(__tstate); |
09f3d4e6 RD |
6030 | if (PyErr_Occurred()) return NULL; |
6031 | } _resultobj = Py_BuildValue("i",_result); | |
6032 | return _resultobj; | |
6033 | } | |
6034 | ||
6035 | static PyObject *_wrap_wxWindow_PrevControlId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6036 | PyObject * _resultobj; | |
6037 | int _result; | |
6038 | int _arg0; | |
6039 | char *_kwnames[] = { "id", NULL }; | |
6040 | ||
6041 | self = self; | |
6042 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"i:wxWindow_PrevControlId",_kwnames,&_arg0)) | |
6043 | return NULL; | |
6044 | { | |
4268f798 | 6045 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
09f3d4e6 RD |
6046 | _result = (int )wxWindow::PrevControlId(_arg0); |
6047 | ||
4268f798 | 6048 | wxPyEndAllowThreads(__tstate); |
09f3d4e6 RD |
6049 | if (PyErr_Occurred()) return NULL; |
6050 | } _resultobj = Py_BuildValue("i",_result); | |
6051 | return _resultobj; | |
6052 | } | |
6053 | ||
76bfdc78 RD |
6054 | #define wxWindow_SetAcceleratorTable(_swigobj,_swigarg0) (_swigobj->SetAcceleratorTable(_swigarg0)) |
6055 | static PyObject *_wrap_wxWindow_SetAcceleratorTable(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6056 | PyObject * _resultobj; | |
6057 | wxWindow * _arg0; | |
6058 | wxAcceleratorTable * _arg1; | |
6059 | PyObject * _argo0 = 0; | |
6060 | PyObject * _argo1 = 0; | |
6061 | char *_kwnames[] = { "self","accel", NULL }; | |
6062 | ||
6063 | self = self; | |
6064 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetAcceleratorTable",_kwnames,&_argo0,&_argo1)) | |
6065 | return NULL; | |
6066 | if (_argo0) { | |
6067 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6068 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
6069 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetAcceleratorTable. Expected _wxWindow_p."); | |
6070 | return NULL; | |
6071 | } | |
6072 | } | |
6073 | if (_argo1) { | |
6074 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6075 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxAcceleratorTable_p")) { | |
6076 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetAcceleratorTable. Expected _wxAcceleratorTable_p."); | |
6077 | return NULL; | |
6078 | } | |
6079 | } | |
6080 | { | |
4268f798 | 6081 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
76bfdc78 RD |
6082 | wxWindow_SetAcceleratorTable(_arg0,*_arg1); |
6083 | ||
4268f798 | 6084 | wxPyEndAllowThreads(__tstate); |
76bfdc78 RD |
6085 | if (PyErr_Occurred()) return NULL; |
6086 | } Py_INCREF(Py_None); | |
6087 | _resultobj = Py_None; | |
6088 | return _resultobj; | |
6089 | } | |
6090 | ||
900d9886 RD |
6091 | #define wxWindow_GetAcceleratorTable(_swigobj) (_swigobj->GetAcceleratorTable()) |
6092 | static PyObject *_wrap_wxWindow_GetAcceleratorTable(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6093 | PyObject * _resultobj; | |
6094 | wxAcceleratorTable * _result; | |
6095 | wxWindow * _arg0; | |
6096 | PyObject * _argo0 = 0; | |
6097 | char *_kwnames[] = { "self", NULL }; | |
6098 | char _ptemp[128]; | |
6099 | ||
6100 | self = self; | |
6101 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetAcceleratorTable",_kwnames,&_argo0)) | |
6102 | return NULL; | |
6103 | if (_argo0) { | |
6104 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6105 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
6106 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetAcceleratorTable. Expected _wxWindow_p."); | |
6107 | return NULL; | |
6108 | } | |
6109 | } | |
6110 | { | |
4268f798 | 6111 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
900d9886 RD |
6112 | _result = (wxAcceleratorTable *)wxWindow_GetAcceleratorTable(_arg0); |
6113 | ||
4268f798 | 6114 | wxPyEndAllowThreads(__tstate); |
900d9886 RD |
6115 | if (PyErr_Occurred()) return NULL; |
6116 | } if (_result) { | |
6117 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxAcceleratorTable_p"); | |
6118 | _resultobj = Py_BuildValue("s",_ptemp); | |
6119 | } else { | |
6120 | Py_INCREF(Py_None); | |
6121 | _resultobj = Py_None; | |
6122 | } | |
6123 | return _resultobj; | |
6124 | } | |
6125 | ||
07c99b26 RD |
6126 | #define wxWindow_OnPaint(_swigobj,_swigarg0) (_swigobj->OnPaint(_swigarg0)) |
6127 | static PyObject *_wrap_wxWindow_OnPaint(PyObject *self, PyObject *args, PyObject *kwargs) { | |
78e8819c RD |
6128 | PyObject * _resultobj; |
6129 | wxWindow * _arg0; | |
6130 | wxPaintEvent * _arg1; | |
6131 | PyObject * _argo0 = 0; | |
6132 | PyObject * _argo1 = 0; | |
6133 | char *_kwnames[] = { "self","event", NULL }; | |
6134 | ||
6135 | self = self; | |
07c99b26 | 6136 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_OnPaint",_kwnames,&_argo0,&_argo1)) |
78e8819c RD |
6137 | return NULL; |
6138 | if (_argo0) { | |
6139 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6140 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
07c99b26 | 6141 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_OnPaint. Expected _wxWindow_p."); |
78e8819c RD |
6142 | return NULL; |
6143 | } | |
6144 | } | |
6145 | if (_argo1) { | |
6146 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6147 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxPaintEvent_p")) { | |
07c99b26 | 6148 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_OnPaint. Expected _wxPaintEvent_p."); |
78e8819c RD |
6149 | return NULL; |
6150 | } | |
6151 | } | |
6152 | { | |
4268f798 | 6153 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
07c99b26 | 6154 | wxWindow_OnPaint(_arg0,*_arg1); |
78e8819c | 6155 | |
4268f798 | 6156 | wxPyEndAllowThreads(__tstate); |
78e8819c RD |
6157 | if (PyErr_Occurred()) return NULL; |
6158 | } Py_INCREF(Py_None); | |
6159 | _resultobj = Py_None; | |
6160 | return _resultobj; | |
6161 | } | |
6162 | ||
5a2930ab RD |
6163 | #define wxWindow_GetDefaultItem(_swigobj) (_swigobj->GetDefaultItem()) |
6164 | static PyObject *_wrap_wxWindow_GetDefaultItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6165 | PyObject * _resultobj; | |
6166 | wxButton * _result; | |
6167 | wxWindow * _arg0; | |
6168 | PyObject * _argo0 = 0; | |
6169 | char *_kwnames[] = { "self", NULL }; | |
6170 | ||
6171 | self = self; | |
6172 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxWindow_GetDefaultItem",_kwnames,&_argo0)) | |
6173 | return NULL; | |
6174 | if (_argo0) { | |
6175 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6176 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
6177 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetDefaultItem. Expected _wxWindow_p."); | |
6178 | return NULL; | |
6179 | } | |
6180 | } | |
6181 | { | |
6182 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6183 | _result = (wxButton *)wxWindow_GetDefaultItem(_arg0); | |
6184 | ||
6185 | wxPyEndAllowThreads(__tstate); | |
6186 | if (PyErr_Occurred()) return NULL; | |
6187 | }{ _resultobj = wxPyMake_wxObject(_result); } | |
6188 | return _resultobj; | |
6189 | } | |
6190 | ||
6191 | #define wxWindow_SetDefaultItem(_swigobj,_swigarg0) (_swigobj->SetDefaultItem(_swigarg0)) | |
6192 | static PyObject *_wrap_wxWindow_SetDefaultItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6193 | PyObject * _resultobj; | |
6194 | wxWindow * _arg0; | |
6195 | wxButton * _arg1; | |
6196 | PyObject * _argo0 = 0; | |
6197 | PyObject * _argo1 = 0; | |
6198 | char *_kwnames[] = { "self","btn", NULL }; | |
6199 | ||
6200 | self = self; | |
6201 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxWindow_SetDefaultItem",_kwnames,&_argo0,&_argo1)) | |
6202 | return NULL; | |
6203 | if (_argo0) { | |
6204 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6205 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
6206 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetDefaultItem. Expected _wxWindow_p."); | |
6207 | return NULL; | |
6208 | } | |
6209 | } | |
6210 | if (_argo1) { | |
6211 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6212 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxButton_p")) { | |
6213 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetDefaultItem. Expected _wxButton_p."); | |
6214 | return NULL; | |
6215 | } | |
6216 | } | |
6217 | { | |
6218 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6219 | wxWindow_SetDefaultItem(_arg0,_arg1); | |
6220 | ||
6221 | wxPyEndAllowThreads(__tstate); | |
6222 | if (PyErr_Occurred()) return NULL; | |
6223 | } Py_INCREF(Py_None); | |
6224 | _resultobj = Py_None; | |
6225 | return _resultobj; | |
6226 | } | |
6227 | ||
8ab979d7 RD |
6228 | static void *SwigwxPanelTowxWindow(void *ptr) { |
6229 | wxPanel *src; | |
6230 | wxWindow *dest; | |
6231 | src = (wxPanel *) ptr; | |
6232 | dest = (wxWindow *) src; | |
6233 | return (void *) dest; | |
6234 | } | |
6235 | ||
6236 | static void *SwigwxPanelTowxEvtHandler(void *ptr) { | |
6237 | wxPanel *src; | |
6238 | wxEvtHandler *dest; | |
6239 | src = (wxPanel *) ptr; | |
6240 | dest = (wxEvtHandler *) src; | |
6241 | return (void *) dest; | |
6242 | } | |
6243 | ||
9416aa89 RD |
6244 | static void *SwigwxPanelTowxObject(void *ptr) { |
6245 | wxPanel *src; | |
6246 | wxObject *dest; | |
6247 | src = (wxPanel *) ptr; | |
6248 | dest = (wxObject *) src; | |
6249 | return (void *) dest; | |
6250 | } | |
6251 | ||
8ab979d7 | 6252 | #define new_wxPanel(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (new wxPanel(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) |
efc5f224 | 6253 | static PyObject *_wrap_new_wxPanel(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6254 | PyObject * _resultobj; |
6255 | wxPanel * _result; | |
6256 | wxWindow * _arg0; | |
6257 | wxWindowID _arg1; | |
e508a2b6 RD |
6258 | wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition; |
6259 | wxSize * _arg3 = (wxSize *) &wxDefaultSize; | |
1d99702e RD |
6260 | long _arg4 = (long ) wxTAB_TRAVERSAL; |
6261 | char * _arg5 = (char *) "panel"; | |
6262 | PyObject * _argo0 = 0; | |
2f90df85 RD |
6263 | wxPoint temp; |
6264 | PyObject * _obj2 = 0; | |
6265 | wxSize temp0; | |
6266 | PyObject * _obj3 = 0; | |
efc5f224 | 6267 | char *_kwnames[] = { "parent","id","pos","size","style","name", NULL }; |
8ab979d7 RD |
6268 | char _ptemp[128]; |
6269 | ||
6270 | self = self; | |
2f90df85 | 6271 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi|OOls:new_wxPanel",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4,&_arg5)) |
8ab979d7 | 6272 | return NULL; |
1d99702e RD |
6273 | if (_argo0) { |
6274 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6275 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
6276 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxPanel. Expected _wxWindow_p."); |
6277 | return NULL; | |
6278 | } | |
6279 | } | |
2f90df85 RD |
6280 | if (_obj2) |
6281 | { | |
6282 | _arg2 = &temp; | |
6283 | if (! wxPoint_helper(_obj2, &_arg2)) | |
8ab979d7 | 6284 | return NULL; |
2f90df85 RD |
6285 | } |
6286 | if (_obj3) | |
6287 | { | |
6288 | _arg3 = &temp0; | |
6289 | if (! wxSize_helper(_obj3, &_arg3)) | |
8ab979d7 | 6290 | return NULL; |
2f90df85 | 6291 | } |
cf694132 | 6292 | { |
4268f798 | 6293 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
6294 | _result = (wxPanel *)new_wxPanel(_arg0,_arg1,*_arg2,*_arg3,_arg4,_arg5); |
6295 | ||
4268f798 | 6296 | wxPyEndAllowThreads(__tstate); |
493f1553 | 6297 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
6298 | } if (_result) { |
6299 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPanel_p"); | |
6300 | _resultobj = Py_BuildValue("s",_ptemp); | |
6301 | } else { | |
6302 | Py_INCREF(Py_None); | |
6303 | _resultobj = Py_None; | |
6304 | } | |
8ab979d7 RD |
6305 | return _resultobj; |
6306 | } | |
6307 | ||
09f3d4e6 RD |
6308 | #define new_wxPrePanel() (new wxPanel()) |
6309 | static PyObject *_wrap_new_wxPrePanel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6310 | PyObject * _resultobj; | |
6311 | wxPanel * _result; | |
6312 | char *_kwnames[] = { NULL }; | |
6313 | char _ptemp[128]; | |
6314 | ||
6315 | self = self; | |
6316 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPrePanel",_kwnames)) | |
6317 | return NULL; | |
6318 | { | |
4268f798 | 6319 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
09f3d4e6 RD |
6320 | _result = (wxPanel *)new_wxPrePanel(); |
6321 | ||
4268f798 | 6322 | wxPyEndAllowThreads(__tstate); |
09f3d4e6 RD |
6323 | if (PyErr_Occurred()) return NULL; |
6324 | } if (_result) { | |
6325 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPanel_p"); | |
6326 | _resultobj = Py_BuildValue("s",_ptemp); | |
6327 | } else { | |
6328 | Py_INCREF(Py_None); | |
6329 | _resultobj = Py_None; | |
6330 | } | |
6331 | return _resultobj; | |
6332 | } | |
6333 | ||
6334 | #define wxPanel_Create(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (_swigobj->Create(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) | |
6335 | static PyObject *_wrap_wxPanel_Create(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6336 | PyObject * _resultobj; | |
6337 | bool _result; | |
6338 | wxPanel * _arg0; | |
6339 | wxWindow * _arg1; | |
6340 | wxWindowID _arg2; | |
6341 | wxPoint * _arg3 = (wxPoint *) &wxDefaultPosition; | |
6342 | wxSize * _arg4 = (wxSize *) &wxDefaultSize; | |
6343 | long _arg5 = (long ) wxTAB_TRAVERSAL; | |
6344 | char * _arg6 = (char *) "panel"; | |
6345 | PyObject * _argo0 = 0; | |
6346 | PyObject * _argo1 = 0; | |
6347 | wxPoint temp; | |
6348 | PyObject * _obj3 = 0; | |
6349 | wxSize temp0; | |
6350 | PyObject * _obj4 = 0; | |
6351 | char *_kwnames[] = { "self","parent","id","pos","size","style","name", NULL }; | |
6352 | ||
6353 | self = self; | |
6354 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi|OOls:wxPanel_Create",_kwnames,&_argo0,&_argo1,&_arg2,&_obj3,&_obj4,&_arg5,&_arg6)) | |
6355 | return NULL; | |
6356 | if (_argo0) { | |
6357 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6358 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPanel_p")) { | |
6359 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPanel_Create. Expected _wxPanel_p."); | |
6360 | return NULL; | |
6361 | } | |
6362 | } | |
6363 | if (_argo1) { | |
6364 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6365 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
6366 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPanel_Create. Expected _wxWindow_p."); | |
6367 | return NULL; | |
6368 | } | |
6369 | } | |
6370 | if (_obj3) | |
6371 | { | |
6372 | _arg3 = &temp; | |
6373 | if (! wxPoint_helper(_obj3, &_arg3)) | |
6374 | return NULL; | |
6375 | } | |
6376 | if (_obj4) | |
6377 | { | |
6378 | _arg4 = &temp0; | |
6379 | if (! wxSize_helper(_obj4, &_arg4)) | |
6380 | return NULL; | |
6381 | } | |
6382 | { | |
4268f798 | 6383 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
09f3d4e6 RD |
6384 | _result = (bool )wxPanel_Create(_arg0,_arg1,_arg2,*_arg3,*_arg4,_arg5,_arg6); |
6385 | ||
4268f798 | 6386 | wxPyEndAllowThreads(__tstate); |
09f3d4e6 RD |
6387 | if (PyErr_Occurred()) return NULL; |
6388 | } _resultobj = Py_BuildValue("i",_result); | |
6389 | return _resultobj; | |
6390 | } | |
6391 | ||
8ab979d7 | 6392 | #define wxPanel_InitDialog(_swigobj) (_swigobj->InitDialog()) |
efc5f224 | 6393 | static PyObject *_wrap_wxPanel_InitDialog(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6394 | PyObject * _resultobj; |
6395 | wxPanel * _arg0; | |
1d99702e | 6396 | PyObject * _argo0 = 0; |
efc5f224 | 6397 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
6398 | |
6399 | self = self; | |
efc5f224 | 6400 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPanel_InitDialog",_kwnames,&_argo0)) |
8ab979d7 | 6401 | return NULL; |
1d99702e RD |
6402 | if (_argo0) { |
6403 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6404 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPanel_p")) { | |
8ab979d7 RD |
6405 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPanel_InitDialog. Expected _wxPanel_p."); |
6406 | return NULL; | |
6407 | } | |
6408 | } | |
cf694132 | 6409 | { |
4268f798 | 6410 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
6411 | wxPanel_InitDialog(_arg0); |
6412 | ||
4268f798 | 6413 | wxPyEndAllowThreads(__tstate); |
493f1553 | 6414 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6415 | } Py_INCREF(Py_None); |
8ab979d7 RD |
6416 | _resultobj = Py_None; |
6417 | return _resultobj; | |
6418 | } | |
6419 | ||
bb0054cd RD |
6420 | static void *SwigwxScrolledWindowTowxPanel(void *ptr) { |
6421 | wxScrolledWindow *src; | |
6422 | wxPanel *dest; | |
6423 | src = (wxScrolledWindow *) ptr; | |
6424 | dest = (wxPanel *) src; | |
6425 | return (void *) dest; | |
6426 | } | |
6427 | ||
8ab979d7 RD |
6428 | static void *SwigwxScrolledWindowTowxWindow(void *ptr) { |
6429 | wxScrolledWindow *src; | |
6430 | wxWindow *dest; | |
6431 | src = (wxScrolledWindow *) ptr; | |
6432 | dest = (wxWindow *) src; | |
6433 | return (void *) dest; | |
6434 | } | |
6435 | ||
6436 | static void *SwigwxScrolledWindowTowxEvtHandler(void *ptr) { | |
6437 | wxScrolledWindow *src; | |
6438 | wxEvtHandler *dest; | |
6439 | src = (wxScrolledWindow *) ptr; | |
6440 | dest = (wxEvtHandler *) src; | |
6441 | return (void *) dest; | |
6442 | } | |
6443 | ||
9416aa89 RD |
6444 | static void *SwigwxScrolledWindowTowxObject(void *ptr) { |
6445 | wxScrolledWindow *src; | |
6446 | wxObject *dest; | |
6447 | src = (wxScrolledWindow *) ptr; | |
6448 | dest = (wxObject *) src; | |
6449 | return (void *) dest; | |
6450 | } | |
6451 | ||
8ab979d7 | 6452 | #define new_wxScrolledWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (new wxScrolledWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) |
efc5f224 | 6453 | static PyObject *_wrap_new_wxScrolledWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6454 | PyObject * _resultobj; |
6455 | wxScrolledWindow * _result; | |
6456 | wxWindow * _arg0; | |
1d99702e | 6457 | wxWindowID _arg1 = (wxWindowID ) -1; |
e508a2b6 RD |
6458 | wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition; |
6459 | wxSize * _arg3 = (wxSize *) &wxDefaultSize; | |
1d99702e RD |
6460 | long _arg4 = (long ) wxHSCROLL|wxVSCROLL; |
6461 | char * _arg5 = (char *) "scrolledWindow"; | |
6462 | PyObject * _argo0 = 0; | |
2f90df85 RD |
6463 | wxPoint temp; |
6464 | PyObject * _obj2 = 0; | |
6465 | wxSize temp0; | |
6466 | PyObject * _obj3 = 0; | |
efc5f224 | 6467 | char *_kwnames[] = { "parent","id","pos","size","style","name", NULL }; |
8ab979d7 RD |
6468 | char _ptemp[128]; |
6469 | ||
6470 | self = self; | |
2f90df85 | 6471 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iOOls:new_wxScrolledWindow",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4,&_arg5)) |
8ab979d7 | 6472 | return NULL; |
1d99702e RD |
6473 | if (_argo0) { |
6474 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6475 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
8ab979d7 RD |
6476 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxScrolledWindow. Expected _wxWindow_p."); |
6477 | return NULL; | |
6478 | } | |
6479 | } | |
2f90df85 RD |
6480 | if (_obj2) |
6481 | { | |
6482 | _arg2 = &temp; | |
6483 | if (! wxPoint_helper(_obj2, &_arg2)) | |
8ab979d7 | 6484 | return NULL; |
2f90df85 RD |
6485 | } |
6486 | if (_obj3) | |
6487 | { | |
6488 | _arg3 = &temp0; | |
6489 | if (! wxSize_helper(_obj3, &_arg3)) | |
8ab979d7 | 6490 | return NULL; |
2f90df85 | 6491 | } |
cf694132 | 6492 | { |
4268f798 | 6493 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
6494 | _result = (wxScrolledWindow *)new_wxScrolledWindow(_arg0,_arg1,*_arg2,*_arg3,_arg4,_arg5); |
6495 | ||
4268f798 | 6496 | wxPyEndAllowThreads(__tstate); |
493f1553 | 6497 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
6498 | } if (_result) { |
6499 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxScrolledWindow_p"); | |
6500 | _resultobj = Py_BuildValue("s",_ptemp); | |
6501 | } else { | |
6502 | Py_INCREF(Py_None); | |
6503 | _resultobj = Py_None; | |
6504 | } | |
8ab979d7 RD |
6505 | return _resultobj; |
6506 | } | |
6507 | ||
09f3d4e6 RD |
6508 | #define new_wxPreScrolledWindow() (new wxScrolledWindow()) |
6509 | static PyObject *_wrap_new_wxPreScrolledWindow(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6510 | PyObject * _resultobj; | |
6511 | wxScrolledWindow * _result; | |
6512 | char *_kwnames[] = { NULL }; | |
6513 | char _ptemp[128]; | |
6514 | ||
6515 | self = self; | |
6516 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPreScrolledWindow",_kwnames)) | |
6517 | return NULL; | |
6518 | { | |
4268f798 | 6519 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
09f3d4e6 RD |
6520 | _result = (wxScrolledWindow *)new_wxPreScrolledWindow(); |
6521 | ||
4268f798 | 6522 | wxPyEndAllowThreads(__tstate); |
09f3d4e6 RD |
6523 | if (PyErr_Occurred()) return NULL; |
6524 | } if (_result) { | |
6525 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxScrolledWindow_p"); | |
6526 | _resultobj = Py_BuildValue("s",_ptemp); | |
6527 | } else { | |
6528 | Py_INCREF(Py_None); | |
6529 | _resultobj = Py_None; | |
6530 | } | |
6531 | return _resultobj; | |
6532 | } | |
6533 | ||
6534 | #define wxScrolledWindow_Create(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (_swigobj->Create(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) | |
6535 | static PyObject *_wrap_wxScrolledWindow_Create(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6536 | PyObject * _resultobj; | |
6537 | bool _result; | |
6538 | wxScrolledWindow * _arg0; | |
6539 | wxWindow * _arg1; | |
6540 | wxWindowID _arg2 = (wxWindowID ) -1; | |
6541 | wxPoint * _arg3 = (wxPoint *) &wxDefaultPosition; | |
6542 | wxSize * _arg4 = (wxSize *) &wxDefaultSize; | |
6543 | long _arg5 = (long ) wxHSCROLL|wxVSCROLL; | |
6544 | char * _arg6 = (char *) "scrolledWindow"; | |
6545 | PyObject * _argo0 = 0; | |
6546 | PyObject * _argo1 = 0; | |
6547 | wxPoint temp; | |
6548 | PyObject * _obj3 = 0; | |
6549 | wxSize temp0; | |
6550 | PyObject * _obj4 = 0; | |
6551 | char *_kwnames[] = { "self","parent","id","pos","size","style","name", NULL }; | |
6552 | ||
6553 | self = self; | |
6554 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|iOOls:wxScrolledWindow_Create",_kwnames,&_argo0,&_argo1,&_arg2,&_obj3,&_obj4,&_arg5,&_arg6)) | |
6555 | return NULL; | |
6556 | if (_argo0) { | |
6557 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6558 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6559 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_Create. Expected _wxScrolledWindow_p."); | |
6560 | return NULL; | |
6561 | } | |
6562 | } | |
6563 | if (_argo1) { | |
6564 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6565 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
6566 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxScrolledWindow_Create. Expected _wxWindow_p."); | |
6567 | return NULL; | |
6568 | } | |
6569 | } | |
6570 | if (_obj3) | |
6571 | { | |
6572 | _arg3 = &temp; | |
6573 | if (! wxPoint_helper(_obj3, &_arg3)) | |
6574 | return NULL; | |
6575 | } | |
6576 | if (_obj4) | |
6577 | { | |
6578 | _arg4 = &temp0; | |
6579 | if (! wxSize_helper(_obj4, &_arg4)) | |
6580 | return NULL; | |
6581 | } | |
6582 | { | |
4268f798 | 6583 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
09f3d4e6 RD |
6584 | _result = (bool )wxScrolledWindow_Create(_arg0,_arg1,_arg2,*_arg3,*_arg4,_arg5,_arg6); |
6585 | ||
4268f798 | 6586 | wxPyEndAllowThreads(__tstate); |
09f3d4e6 RD |
6587 | if (PyErr_Occurred()) return NULL; |
6588 | } _resultobj = Py_BuildValue("i",_result); | |
6589 | return _resultobj; | |
6590 | } | |
6591 | ||
8ab979d7 | 6592 | #define wxScrolledWindow_EnableScrolling(_swigobj,_swigarg0,_swigarg1) (_swigobj->EnableScrolling(_swigarg0,_swigarg1)) |
efc5f224 | 6593 | static PyObject *_wrap_wxScrolledWindow_EnableScrolling(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6594 | PyObject * _resultobj; |
6595 | wxScrolledWindow * _arg0; | |
6596 | bool _arg1; | |
6597 | bool _arg2; | |
1d99702e | 6598 | PyObject * _argo0 = 0; |
8ab979d7 RD |
6599 | int tempbool1; |
6600 | int tempbool2; | |
efc5f224 | 6601 | char *_kwnames[] = { "self","xScrolling","yScrolling", NULL }; |
8ab979d7 RD |
6602 | |
6603 | self = self; | |
efc5f224 | 6604 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxScrolledWindow_EnableScrolling",_kwnames,&_argo0,&tempbool1,&tempbool2)) |
8ab979d7 | 6605 | return NULL; |
1d99702e RD |
6606 | if (_argo0) { |
6607 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6608 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
8ab979d7 RD |
6609 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_EnableScrolling. Expected _wxScrolledWindow_p."); |
6610 | return NULL; | |
6611 | } | |
6612 | } | |
6613 | _arg1 = (bool ) tempbool1; | |
6614 | _arg2 = (bool ) tempbool2; | |
cf694132 | 6615 | { |
4268f798 | 6616 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
6617 | wxScrolledWindow_EnableScrolling(_arg0,_arg1,_arg2); |
6618 | ||
4268f798 | 6619 | wxPyEndAllowThreads(__tstate); |
493f1553 | 6620 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6621 | } Py_INCREF(Py_None); |
8ab979d7 RD |
6622 | _resultobj = Py_None; |
6623 | return _resultobj; | |
6624 | } | |
6625 | ||
b7e72427 RD |
6626 | #define wxScrolledWindow_GetScrollPageSize(_swigobj,_swigarg0) (_swigobj->GetScrollPageSize(_swigarg0)) |
6627 | static PyObject *_wrap_wxScrolledWindow_GetScrollPageSize(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6628 | PyObject * _resultobj; | |
6629 | int _result; | |
6630 | wxScrolledWindow * _arg0; | |
6631 | int _arg1; | |
6632 | PyObject * _argo0 = 0; | |
6633 | char *_kwnames[] = { "self","orient", NULL }; | |
6634 | ||
6635 | self = self; | |
6636 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxScrolledWindow_GetScrollPageSize",_kwnames,&_argo0,&_arg1)) | |
6637 | return NULL; | |
6638 | if (_argo0) { | |
6639 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6640 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6641 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetScrollPageSize. Expected _wxScrolledWindow_p."); | |
6642 | return NULL; | |
6643 | } | |
6644 | } | |
6645 | { | |
4268f798 | 6646 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b7e72427 RD |
6647 | _result = (int )wxScrolledWindow_GetScrollPageSize(_arg0,_arg1); |
6648 | ||
4268f798 | 6649 | wxPyEndAllowThreads(__tstate); |
493f1553 | 6650 | if (PyErr_Occurred()) return NULL; |
b7e72427 RD |
6651 | } _resultobj = Py_BuildValue("i",_result); |
6652 | return _resultobj; | |
6653 | } | |
6654 | ||
8ab979d7 | 6655 | #define wxScrolledWindow_GetScrollPixelsPerUnit(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetScrollPixelsPerUnit(_swigarg0,_swigarg1)) |
efc5f224 | 6656 | static PyObject *_wrap_wxScrolledWindow_GetScrollPixelsPerUnit(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6657 | PyObject * _resultobj; |
6658 | wxScrolledWindow * _arg0; | |
6659 | int * _arg1; | |
6660 | int temp; | |
6661 | int * _arg2; | |
6662 | int temp0; | |
1d99702e | 6663 | PyObject * _argo0 = 0; |
efc5f224 | 6664 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
6665 | |
6666 | self = self; | |
6667 | { | |
6668 | _arg1 = &temp; | |
6669 | } | |
6670 | { | |
6671 | _arg2 = &temp0; | |
6672 | } | |
efc5f224 | 6673 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_GetScrollPixelsPerUnit",_kwnames,&_argo0)) |
8ab979d7 | 6674 | return NULL; |
1d99702e RD |
6675 | if (_argo0) { |
6676 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6677 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
8ab979d7 RD |
6678 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetScrollPixelsPerUnit. Expected _wxScrolledWindow_p."); |
6679 | return NULL; | |
6680 | } | |
6681 | } | |
cf694132 | 6682 | { |
4268f798 | 6683 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
6684 | wxScrolledWindow_GetScrollPixelsPerUnit(_arg0,_arg1,_arg2); |
6685 | ||
4268f798 | 6686 | wxPyEndAllowThreads(__tstate); |
493f1553 | 6687 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6688 | } Py_INCREF(Py_None); |
8ab979d7 RD |
6689 | _resultobj = Py_None; |
6690 | { | |
6691 | PyObject *o; | |
6692 | o = PyInt_FromLong((long) (*_arg1)); | |
6693 | _resultobj = t_output_helper(_resultobj, o); | |
6694 | } | |
6695 | { | |
6696 | PyObject *o; | |
6697 | o = PyInt_FromLong((long) (*_arg2)); | |
6698 | _resultobj = t_output_helper(_resultobj, o); | |
6699 | } | |
6700 | return _resultobj; | |
6701 | } | |
6702 | ||
b7e72427 RD |
6703 | #define wxScrolledWindow_GetTargetWindow(_swigobj) (_swigobj->GetTargetWindow()) |
6704 | static PyObject *_wrap_wxScrolledWindow_GetTargetWindow(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6705 | PyObject * _resultobj; | |
6706 | wxWindow * _result; | |
6707 | wxScrolledWindow * _arg0; | |
6708 | PyObject * _argo0 = 0; | |
6709 | char *_kwnames[] = { "self", NULL }; | |
b7e72427 RD |
6710 | |
6711 | self = self; | |
6712 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_GetTargetWindow",_kwnames,&_argo0)) | |
6713 | return NULL; | |
6714 | if (_argo0) { | |
6715 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6716 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6717 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetTargetWindow. Expected _wxScrolledWindow_p."); | |
6718 | return NULL; | |
6719 | } | |
6720 | } | |
6721 | { | |
4268f798 | 6722 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b7e72427 RD |
6723 | _result = (wxWindow *)wxScrolledWindow_GetTargetWindow(_arg0); |
6724 | ||
4268f798 | 6725 | wxPyEndAllowThreads(__tstate); |
493f1553 | 6726 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 6727 | }{ _resultobj = wxPyMake_wxObject(_result); } |
b7e72427 RD |
6728 | return _resultobj; |
6729 | } | |
6730 | ||
8ab979d7 | 6731 | #define wxScrolledWindow_GetVirtualSize(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetVirtualSize(_swigarg0,_swigarg1)) |
efc5f224 | 6732 | static PyObject *_wrap_wxScrolledWindow_GetVirtualSize(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6733 | PyObject * _resultobj; |
6734 | wxScrolledWindow * _arg0; | |
6735 | int * _arg1; | |
6736 | int temp; | |
6737 | int * _arg2; | |
6738 | int temp0; | |
1d99702e | 6739 | PyObject * _argo0 = 0; |
efc5f224 | 6740 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
6741 | |
6742 | self = self; | |
6743 | { | |
6744 | _arg1 = &temp; | |
6745 | } | |
6746 | { | |
6747 | _arg2 = &temp0; | |
6748 | } | |
efc5f224 | 6749 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_GetVirtualSize",_kwnames,&_argo0)) |
8ab979d7 | 6750 | return NULL; |
1d99702e RD |
6751 | if (_argo0) { |
6752 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6753 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
8ab979d7 RD |
6754 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetVirtualSize. Expected _wxScrolledWindow_p."); |
6755 | return NULL; | |
6756 | } | |
6757 | } | |
cf694132 | 6758 | { |
4268f798 | 6759 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
6760 | wxScrolledWindow_GetVirtualSize(_arg0,_arg1,_arg2); |
6761 | ||
4268f798 | 6762 | wxPyEndAllowThreads(__tstate); |
493f1553 | 6763 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6764 | } Py_INCREF(Py_None); |
8ab979d7 RD |
6765 | _resultobj = Py_None; |
6766 | { | |
6767 | PyObject *o; | |
6768 | o = PyInt_FromLong((long) (*_arg1)); | |
6769 | _resultobj = t_output_helper(_resultobj, o); | |
6770 | } | |
6771 | { | |
6772 | PyObject *o; | |
6773 | o = PyInt_FromLong((long) (*_arg2)); | |
6774 | _resultobj = t_output_helper(_resultobj, o); | |
6775 | } | |
6776 | return _resultobj; | |
6777 | } | |
6778 | ||
6779 | #define wxScrolledWindow_IsRetained(_swigobj) (_swigobj->IsRetained()) | |
efc5f224 | 6780 | static PyObject *_wrap_wxScrolledWindow_IsRetained(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6781 | PyObject * _resultobj; |
6782 | bool _result; | |
6783 | wxScrolledWindow * _arg0; | |
1d99702e | 6784 | PyObject * _argo0 = 0; |
efc5f224 | 6785 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
6786 | |
6787 | self = self; | |
efc5f224 | 6788 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_IsRetained",_kwnames,&_argo0)) |
8ab979d7 | 6789 | return NULL; |
1d99702e RD |
6790 | if (_argo0) { |
6791 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6792 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
8ab979d7 RD |
6793 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_IsRetained. Expected _wxScrolledWindow_p."); |
6794 | return NULL; | |
6795 | } | |
6796 | } | |
cf694132 | 6797 | { |
4268f798 | 6798 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
6799 | _result = (bool )wxScrolledWindow_IsRetained(_arg0); |
6800 | ||
4268f798 | 6801 | wxPyEndAllowThreads(__tstate); |
493f1553 | 6802 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6803 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
6804 | return _resultobj; |
6805 | } | |
6806 | ||
6807 | #define wxScrolledWindow_PrepareDC(_swigobj,_swigarg0) (_swigobj->PrepareDC(_swigarg0)) | |
efc5f224 | 6808 | static PyObject *_wrap_wxScrolledWindow_PrepareDC(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6809 | PyObject * _resultobj; |
6810 | wxScrolledWindow * _arg0; | |
6811 | wxDC * _arg1; | |
1d99702e RD |
6812 | PyObject * _argo0 = 0; |
6813 | PyObject * _argo1 = 0; | |
efc5f224 | 6814 | char *_kwnames[] = { "self","dc", NULL }; |
8ab979d7 RD |
6815 | |
6816 | self = self; | |
efc5f224 | 6817 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxScrolledWindow_PrepareDC",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 6818 | return NULL; |
1d99702e RD |
6819 | if (_argo0) { |
6820 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6821 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
8ab979d7 RD |
6822 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_PrepareDC. Expected _wxScrolledWindow_p."); |
6823 | return NULL; | |
6824 | } | |
6825 | } | |
1d99702e RD |
6826 | if (_argo1) { |
6827 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6828 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxDC_p")) { | |
8ab979d7 RD |
6829 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxScrolledWindow_PrepareDC. Expected _wxDC_p."); |
6830 | return NULL; | |
6831 | } | |
6832 | } | |
cf694132 | 6833 | { |
4268f798 | 6834 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
6835 | wxScrolledWindow_PrepareDC(_arg0,*_arg1); |
6836 | ||
4268f798 | 6837 | wxPyEndAllowThreads(__tstate); |
493f1553 | 6838 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6839 | } Py_INCREF(Py_None); |
8ab979d7 RD |
6840 | _resultobj = Py_None; |
6841 | return _resultobj; | |
6842 | } | |
6843 | ||
6844 | #define wxScrolledWindow_Scroll(_swigobj,_swigarg0,_swigarg1) (_swigobj->Scroll(_swigarg0,_swigarg1)) | |
efc5f224 | 6845 | static PyObject *_wrap_wxScrolledWindow_Scroll(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6846 | PyObject * _resultobj; |
6847 | wxScrolledWindow * _arg0; | |
6848 | int _arg1; | |
6849 | int _arg2; | |
1d99702e | 6850 | PyObject * _argo0 = 0; |
efc5f224 | 6851 | char *_kwnames[] = { "self","x","y", NULL }; |
8ab979d7 RD |
6852 | |
6853 | self = self; | |
efc5f224 | 6854 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxScrolledWindow_Scroll",_kwnames,&_argo0,&_arg1,&_arg2)) |
8ab979d7 | 6855 | return NULL; |
1d99702e RD |
6856 | if (_argo0) { |
6857 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6858 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
8ab979d7 RD |
6859 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_Scroll. Expected _wxScrolledWindow_p."); |
6860 | return NULL; | |
6861 | } | |
6862 | } | |
cf694132 | 6863 | { |
4268f798 | 6864 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
6865 | wxScrolledWindow_Scroll(_arg0,_arg1,_arg2); |
6866 | ||
4268f798 | 6867 | wxPyEndAllowThreads(__tstate); |
493f1553 | 6868 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6869 | } Py_INCREF(Py_None); |
8ab979d7 RD |
6870 | _resultobj = Py_None; |
6871 | return _resultobj; | |
6872 | } | |
6873 | ||
f6bcfd97 | 6874 | #define wxScrolledWindow_SetScrollbars(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (_swigobj->SetScrollbars(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6)) |
efc5f224 | 6875 | static PyObject *_wrap_wxScrolledWindow_SetScrollbars(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
6876 | PyObject * _resultobj; |
6877 | wxScrolledWindow * _arg0; | |
6878 | int _arg1; | |
6879 | int _arg2; | |
6880 | int _arg3; | |
6881 | int _arg4; | |
1d99702e RD |
6882 | int _arg5 = (int ) 0; |
6883 | int _arg6 = (int ) 0; | |
f6bcfd97 | 6884 | int _arg7 = (int ) FALSE; |
1d99702e | 6885 | PyObject * _argo0 = 0; |
f6bcfd97 | 6886 | char *_kwnames[] = { "self","pixelsPerUnitX","pixelsPerUnitY","noUnitsX","noUnitsY","xPos","yPos","noRefresh", NULL }; |
8ab979d7 RD |
6887 | |
6888 | self = self; | |
f6bcfd97 | 6889 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oiiii|iii:wxScrolledWindow_SetScrollbars",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_arg4,&_arg5,&_arg6,&_arg7)) |
8ab979d7 | 6890 | return NULL; |
1d99702e RD |
6891 | if (_argo0) { |
6892 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6893 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
8ab979d7 RD |
6894 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_SetScrollbars. Expected _wxScrolledWindow_p."); |
6895 | return NULL; | |
6896 | } | |
6897 | } | |
cf694132 | 6898 | { |
4268f798 | 6899 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f6bcfd97 | 6900 | wxScrolledWindow_SetScrollbars(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5,_arg6,_arg7); |
cf694132 | 6901 | |
4268f798 | 6902 | wxPyEndAllowThreads(__tstate); |
493f1553 | 6903 | if (PyErr_Occurred()) return NULL; |
cf694132 | 6904 | } Py_INCREF(Py_None); |
8ab979d7 RD |
6905 | _resultobj = Py_None; |
6906 | return _resultobj; | |
6907 | } | |
6908 | ||
b7e72427 RD |
6909 | #define wxScrolledWindow_SetScrollPageSize(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetScrollPageSize(_swigarg0,_swigarg1)) |
6910 | static PyObject *_wrap_wxScrolledWindow_SetScrollPageSize(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6911 | PyObject * _resultobj; | |
6912 | wxScrolledWindow * _arg0; | |
6913 | int _arg1; | |
6914 | int _arg2; | |
6915 | PyObject * _argo0 = 0; | |
6916 | char *_kwnames[] = { "self","orient","pageSize", NULL }; | |
6917 | ||
6918 | self = self; | |
6919 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxScrolledWindow_SetScrollPageSize",_kwnames,&_argo0,&_arg1,&_arg2)) | |
6920 | return NULL; | |
6921 | if (_argo0) { | |
6922 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6923 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6924 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_SetScrollPageSize. Expected _wxScrolledWindow_p."); | |
6925 | return NULL; | |
6926 | } | |
6927 | } | |
6928 | { | |
4268f798 | 6929 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b7e72427 RD |
6930 | wxScrolledWindow_SetScrollPageSize(_arg0,_arg1,_arg2); |
6931 | ||
4268f798 | 6932 | wxPyEndAllowThreads(__tstate); |
493f1553 | 6933 | if (PyErr_Occurred()) return NULL; |
b7e72427 RD |
6934 | } Py_INCREF(Py_None); |
6935 | _resultobj = Py_None; | |
6936 | return _resultobj; | |
6937 | } | |
6938 | ||
eb715945 RD |
6939 | #define wxScrolledWindow_SetTargetWindow(_swigobj,_swigarg0) (_swigobj->SetTargetWindow(_swigarg0)) |
6940 | static PyObject *_wrap_wxScrolledWindow_SetTargetWindow(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6941 | PyObject * _resultobj; | |
6942 | wxScrolledWindow * _arg0; | |
6943 | wxWindow * _arg1; | |
6944 | PyObject * _argo0 = 0; | |
6945 | PyObject * _argo1 = 0; | |
6946 | char *_kwnames[] = { "self","window", NULL }; | |
6947 | ||
6948 | self = self; | |
6949 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxScrolledWindow_SetTargetWindow",_kwnames,&_argo0,&_argo1)) | |
6950 | return NULL; | |
6951 | if (_argo0) { | |
6952 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6953 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6954 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_SetTargetWindow. Expected _wxScrolledWindow_p."); | |
6955 | return NULL; | |
6956 | } | |
6957 | } | |
6958 | if (_argo1) { | |
6959 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6960 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
6961 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxScrolledWindow_SetTargetWindow. Expected _wxWindow_p."); | |
6962 | return NULL; | |
6963 | } | |
6964 | } | |
6965 | { | |
4268f798 | 6966 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
eb715945 RD |
6967 | wxScrolledWindow_SetTargetWindow(_arg0,_arg1); |
6968 | ||
4268f798 | 6969 | wxPyEndAllowThreads(__tstate); |
493f1553 | 6970 | if (PyErr_Occurred()) return NULL; |
eb715945 RD |
6971 | } Py_INCREF(Py_None); |
6972 | _resultobj = Py_None; | |
6973 | return _resultobj; | |
6974 | } | |
6975 | ||
4c9993c3 RD |
6976 | #define wxScrolledWindow_GetViewStart(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetViewStart(_swigarg0,_swigarg1)) |
6977 | static PyObject *_wrap_wxScrolledWindow_GetViewStart(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6978 | PyObject * _resultobj; | |
6979 | wxScrolledWindow * _arg0; | |
6980 | int * _arg1; | |
6981 | int temp; | |
6982 | int * _arg2; | |
6983 | int temp0; | |
6984 | PyObject * _argo0 = 0; | |
6985 | char *_kwnames[] = { "self", NULL }; | |
6986 | ||
6987 | self = self; | |
6988 | { | |
6989 | _arg1 = &temp; | |
6990 | } | |
6991 | { | |
6992 | _arg2 = &temp0; | |
6993 | } | |
6994 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_GetViewStart",_kwnames,&_argo0)) | |
6995 | return NULL; | |
6996 | if (_argo0) { | |
6997 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6998 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
6999 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetViewStart. Expected _wxScrolledWindow_p."); | |
7000 | return NULL; | |
7001 | } | |
7002 | } | |
7003 | { | |
4268f798 | 7004 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
4c9993c3 RD |
7005 | wxScrolledWindow_GetViewStart(_arg0,_arg1,_arg2); |
7006 | ||
4268f798 | 7007 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7008 | if (PyErr_Occurred()) return NULL; |
4c9993c3 RD |
7009 | } Py_INCREF(Py_None); |
7010 | _resultobj = Py_None; | |
7011 | { | |
7012 | PyObject *o; | |
7013 | o = PyInt_FromLong((long) (*_arg1)); | |
7014 | _resultobj = t_output_helper(_resultobj, o); | |
7015 | } | |
7016 | { | |
7017 | PyObject *o; | |
7018 | o = PyInt_FromLong((long) (*_arg2)); | |
7019 | _resultobj = t_output_helper(_resultobj, o); | |
7020 | } | |
7021 | return _resultobj; | |
7022 | } | |
7023 | ||
9d8bd15f RD |
7024 | #define wxScrolledWindow_CalcScrolledPosition(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->CalcScrolledPosition(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) |
7025 | static PyObject *_wrap_wxScrolledWindow_CalcScrolledPosition(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7026 | PyObject * _resultobj; | |
7027 | wxScrolledWindow * _arg0; | |
7028 | int _arg1; | |
7029 | int _arg2; | |
7030 | int * _arg3; | |
7031 | int temp; | |
7032 | int * _arg4; | |
7033 | int temp0; | |
7034 | PyObject * _argo0 = 0; | |
7035 | char *_kwnames[] = { "self","x","y", NULL }; | |
7036 | ||
7037 | self = self; | |
7038 | { | |
7039 | _arg3 = &temp; | |
7040 | } | |
7041 | { | |
7042 | _arg4 = &temp0; | |
7043 | } | |
7044 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxScrolledWindow_CalcScrolledPosition",_kwnames,&_argo0,&_arg1,&_arg2)) | |
7045 | return NULL; | |
7046 | if (_argo0) { | |
7047 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7048 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
7049 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_CalcScrolledPosition. Expected _wxScrolledWindow_p."); | |
7050 | return NULL; | |
7051 | } | |
7052 | } | |
7053 | { | |
4268f798 | 7054 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
9d8bd15f RD |
7055 | wxScrolledWindow_CalcScrolledPosition(_arg0,_arg1,_arg2,_arg3,_arg4); |
7056 | ||
4268f798 | 7057 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7058 | if (PyErr_Occurred()) return NULL; |
9d8bd15f RD |
7059 | } Py_INCREF(Py_None); |
7060 | _resultobj = Py_None; | |
7061 | { | |
7062 | PyObject *o; | |
7063 | o = PyInt_FromLong((long) (*_arg3)); | |
7064 | _resultobj = t_output_helper(_resultobj, o); | |
7065 | } | |
7066 | { | |
7067 | PyObject *o; | |
7068 | o = PyInt_FromLong((long) (*_arg4)); | |
7069 | _resultobj = t_output_helper(_resultobj, o); | |
7070 | } | |
7071 | return _resultobj; | |
7072 | } | |
7073 | ||
7074 | #define wxScrolledWindow_CalcUnscrolledPosition(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->CalcUnscrolledPosition(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) | |
7075 | static PyObject *_wrap_wxScrolledWindow_CalcUnscrolledPosition(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7076 | PyObject * _resultobj; | |
7077 | wxScrolledWindow * _arg0; | |
7078 | int _arg1; | |
7079 | int _arg2; | |
7080 | int * _arg3; | |
7081 | int temp; | |
7082 | int * _arg4; | |
7083 | int temp0; | |
7084 | PyObject * _argo0 = 0; | |
7085 | char *_kwnames[] = { "self","x","y", NULL }; | |
7086 | ||
7087 | self = self; | |
7088 | { | |
7089 | _arg3 = &temp; | |
7090 | } | |
7091 | { | |
7092 | _arg4 = &temp0; | |
7093 | } | |
7094 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxScrolledWindow_CalcUnscrolledPosition",_kwnames,&_argo0,&_arg1,&_arg2)) | |
7095 | return NULL; | |
7096 | if (_argo0) { | |
7097 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7098 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
7099 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_CalcUnscrolledPosition. Expected _wxScrolledWindow_p."); | |
7100 | return NULL; | |
7101 | } | |
7102 | } | |
7103 | { | |
4268f798 | 7104 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
9d8bd15f RD |
7105 | wxScrolledWindow_CalcUnscrolledPosition(_arg0,_arg1,_arg2,_arg3,_arg4); |
7106 | ||
4268f798 | 7107 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7108 | if (PyErr_Occurred()) return NULL; |
9d8bd15f RD |
7109 | } Py_INCREF(Py_None); |
7110 | _resultobj = Py_None; | |
7111 | { | |
7112 | PyObject *o; | |
7113 | o = PyInt_FromLong((long) (*_arg3)); | |
7114 | _resultobj = t_output_helper(_resultobj, o); | |
7115 | } | |
7116 | { | |
7117 | PyObject *o; | |
7118 | o = PyInt_FromLong((long) (*_arg4)); | |
7119 | _resultobj = t_output_helper(_resultobj, o); | |
7120 | } | |
7121 | return _resultobj; | |
7122 | } | |
7123 | ||
d1679124 RD |
7124 | #define wxScrolledWindow_SetScale(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetScale(_swigarg0,_swigarg1)) |
7125 | static PyObject *_wrap_wxScrolledWindow_SetScale(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7126 | PyObject * _resultobj; | |
7127 | wxScrolledWindow * _arg0; | |
7128 | double _arg1; | |
7129 | double _arg2; | |
7130 | PyObject * _argo0 = 0; | |
7131 | char *_kwnames[] = { "self","xs","ys", NULL }; | |
7132 | ||
7133 | self = self; | |
7134 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Odd:wxScrolledWindow_SetScale",_kwnames,&_argo0,&_arg1,&_arg2)) | |
7135 | return NULL; | |
7136 | if (_argo0) { | |
7137 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7138 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
7139 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_SetScale. Expected _wxScrolledWindow_p."); | |
7140 | return NULL; | |
7141 | } | |
7142 | } | |
7143 | { | |
4268f798 | 7144 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
d1679124 RD |
7145 | wxScrolledWindow_SetScale(_arg0,_arg1,_arg2); |
7146 | ||
4268f798 | 7147 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7148 | if (PyErr_Occurred()) return NULL; |
d1679124 RD |
7149 | } Py_INCREF(Py_None); |
7150 | _resultobj = Py_None; | |
7151 | return _resultobj; | |
7152 | } | |
7153 | ||
7154 | #define wxScrolledWindow_GetScaleX(_swigobj) (_swigobj->GetScaleX()) | |
7155 | static PyObject *_wrap_wxScrolledWindow_GetScaleX(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7156 | PyObject * _resultobj; | |
7157 | double _result; | |
7158 | wxScrolledWindow * _arg0; | |
7159 | PyObject * _argo0 = 0; | |
7160 | char *_kwnames[] = { "self", NULL }; | |
7161 | ||
7162 | self = self; | |
7163 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_GetScaleX",_kwnames,&_argo0)) | |
7164 | return NULL; | |
7165 | if (_argo0) { | |
7166 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7167 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
7168 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetScaleX. Expected _wxScrolledWindow_p."); | |
7169 | return NULL; | |
7170 | } | |
7171 | } | |
7172 | { | |
4268f798 | 7173 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
d1679124 RD |
7174 | _result = (double )wxScrolledWindow_GetScaleX(_arg0); |
7175 | ||
4268f798 | 7176 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7177 | if (PyErr_Occurred()) return NULL; |
d1679124 RD |
7178 | } _resultobj = Py_BuildValue("d",_result); |
7179 | return _resultobj; | |
7180 | } | |
7181 | ||
7182 | #define wxScrolledWindow_GetScaleY(_swigobj) (_swigobj->GetScaleY()) | |
7183 | static PyObject *_wrap_wxScrolledWindow_GetScaleY(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7184 | PyObject * _resultobj; | |
7185 | double _result; | |
7186 | wxScrolledWindow * _arg0; | |
7187 | PyObject * _argo0 = 0; | |
7188 | char *_kwnames[] = { "self", NULL }; | |
7189 | ||
7190 | self = self; | |
7191 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_GetScaleY",_kwnames,&_argo0)) | |
7192 | return NULL; | |
7193 | if (_argo0) { | |
7194 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7195 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
7196 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetScaleY. Expected _wxScrolledWindow_p."); | |
7197 | return NULL; | |
7198 | } | |
7199 | } | |
7200 | { | |
4268f798 | 7201 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
d1679124 RD |
7202 | _result = (double )wxScrolledWindow_GetScaleY(_arg0); |
7203 | ||
4268f798 | 7204 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7205 | if (PyErr_Occurred()) return NULL; |
d1679124 RD |
7206 | } _resultobj = Py_BuildValue("d",_result); |
7207 | return _resultobj; | |
7208 | } | |
7209 | ||
7210 | #define wxScrolledWindow_AdjustScrollbars(_swigobj) (_swigobj->AdjustScrollbars()) | |
7211 | static PyObject *_wrap_wxScrolledWindow_AdjustScrollbars(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7212 | PyObject * _resultobj; | |
7213 | wxScrolledWindow * _arg0; | |
7214 | PyObject * _argo0 = 0; | |
7215 | char *_kwnames[] = { "self", NULL }; | |
7216 | ||
7217 | self = self; | |
7218 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_AdjustScrollbars",_kwnames,&_argo0)) | |
7219 | return NULL; | |
7220 | if (_argo0) { | |
7221 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7222 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) { | |
7223 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_AdjustScrollbars. Expected _wxScrolledWindow_p."); | |
7224 | return NULL; | |
7225 | } | |
7226 | } | |
7227 | { | |
4268f798 | 7228 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
d1679124 RD |
7229 | wxScrolledWindow_AdjustScrollbars(_arg0); |
7230 | ||
4268f798 | 7231 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7232 | if (PyErr_Occurred()) return NULL; |
d1679124 RD |
7233 | } Py_INCREF(Py_None); |
7234 | _resultobj = Py_None; | |
7235 | return _resultobj; | |
7236 | } | |
7237 | ||
8ab979d7 RD |
7238 | static void *SwigwxMenuTowxEvtHandler(void *ptr) { |
7239 | wxMenu *src; | |
7240 | wxEvtHandler *dest; | |
7241 | src = (wxMenu *) ptr; | |
7242 | dest = (wxEvtHandler *) src; | |
7243 | return (void *) dest; | |
7244 | } | |
7245 | ||
9416aa89 RD |
7246 | static void *SwigwxMenuTowxObject(void *ptr) { |
7247 | wxMenu *src; | |
7248 | wxObject *dest; | |
7249 | src = (wxMenu *) ptr; | |
7250 | dest = (wxObject *) src; | |
7251 | return (void *) dest; | |
7252 | } | |
7253 | ||
8bf5d46e | 7254 | #define new_wxMenu(_swigarg0,_swigarg1) (new wxMenu(_swigarg0,_swigarg1)) |
efc5f224 | 7255 | static PyObject *_wrap_new_wxMenu(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7256 | PyObject * _resultobj; |
7257 | wxMenu * _result; | |
23bed520 | 7258 | wxString * _arg0 = (wxString *) &wxEmptyString; |
1d99702e | 7259 | long _arg1 = (long ) 0; |
8ab979d7 | 7260 | PyObject * _obj0 = 0; |
efc5f224 | 7261 | char *_kwnames[] = { "title","style", NULL }; |
8ab979d7 RD |
7262 | char _ptemp[128]; |
7263 | ||
7264 | self = self; | |
efc5f224 | 7265 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|Ol:new_wxMenu",_kwnames,&_obj0,&_arg1)) |
8ab979d7 RD |
7266 | return NULL; |
7267 | if (_obj0) | |
7268 | { | |
185d7c3e RD |
7269 | #if PYTHON_API_VERSION >= 1009 |
7270 | char* tmpPtr; int tmpSize; | |
7271 | if (!PyString_Check(_obj0) && !PyUnicode_Check(_obj0)) { | |
794c5cb1 | 7272 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7273 | return NULL; |
7274 | } | |
7275 | if (PyString_AsStringAndSize(_obj0, &tmpPtr, &tmpSize) == -1) | |
7276 | return NULL; | |
7277 | _arg0 = new wxString(tmpPtr, tmpSize); | |
7278 | #else | |
8ab979d7 RD |
7279 | if (!PyString_Check(_obj0)) { |
7280 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7281 | return NULL; | |
7282 | } | |
185d7c3e RD |
7283 | _arg0 = new wxString(PyString_AS_STRING(_obj0), PyString_GET_SIZE(_obj0)); |
7284 | #endif | |
8ab979d7 | 7285 | } |
cf694132 | 7286 | { |
4268f798 | 7287 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
8bf5d46e | 7288 | _result = (wxMenu *)new_wxMenu(*_arg0,_arg1); |
cf694132 | 7289 | |
4268f798 | 7290 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7291 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
7292 | } if (_result) { |
7293 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxMenu_p"); | |
7294 | _resultobj = Py_BuildValue("s",_ptemp); | |
7295 | } else { | |
7296 | Py_INCREF(Py_None); | |
7297 | _resultobj = Py_None; | |
7298 | } | |
8ab979d7 RD |
7299 | { |
7300 | if (_obj0) | |
7301 | delete _arg0; | |
7302 | } | |
7303 | return _resultobj; | |
7304 | } | |
7305 | ||
7306 | #define wxMenu_Append(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->Append(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) | |
efc5f224 | 7307 | static PyObject *_wrap_wxMenu_Append(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7308 | PyObject * _resultobj; |
7309 | wxMenu * _arg0; | |
7310 | int _arg1; | |
7311 | wxString * _arg2; | |
23bed520 | 7312 | wxString * _arg3 = (wxString *) &wxEmptyString; |
926bb76c | 7313 | int _arg4 = (int ) FALSE; |
1d99702e | 7314 | PyObject * _argo0 = 0; |
8ab979d7 RD |
7315 | PyObject * _obj2 = 0; |
7316 | PyObject * _obj3 = 0; | |
efc5f224 | 7317 | char *_kwnames[] = { "self","id","item","helpString","checkable", NULL }; |
8ab979d7 RD |
7318 | |
7319 | self = self; | |
926bb76c | 7320 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO|Oi:wxMenu_Append",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4)) |
8ab979d7 | 7321 | return NULL; |
1d99702e RD |
7322 | if (_argo0) { |
7323 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7324 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7325 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Append. Expected _wxMenu_p."); |
7326 | return NULL; | |
7327 | } | |
7328 | } | |
7329 | { | |
185d7c3e RD |
7330 | #if PYTHON_API_VERSION >= 1009 |
7331 | char* tmpPtr; int tmpSize; | |
7332 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 7333 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7334 | return NULL; |
7335 | } | |
7336 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
7337 | return NULL; | |
7338 | _arg2 = new wxString(tmpPtr, tmpSize); | |
7339 | #else | |
8ab979d7 RD |
7340 | if (!PyString_Check(_obj2)) { |
7341 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7342 | return NULL; | |
7343 | } | |
185d7c3e RD |
7344 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
7345 | #endif | |
8ab979d7 RD |
7346 | } |
7347 | if (_obj3) | |
7348 | { | |
185d7c3e RD |
7349 | #if PYTHON_API_VERSION >= 1009 |
7350 | char* tmpPtr; int tmpSize; | |
7351 | if (!PyString_Check(_obj3) && !PyUnicode_Check(_obj3)) { | |
794c5cb1 | 7352 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7353 | return NULL; |
7354 | } | |
7355 | if (PyString_AsStringAndSize(_obj3, &tmpPtr, &tmpSize) == -1) | |
7356 | return NULL; | |
7357 | _arg3 = new wxString(tmpPtr, tmpSize); | |
7358 | #else | |
8ab979d7 RD |
7359 | if (!PyString_Check(_obj3)) { |
7360 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7361 | return NULL; | |
7362 | } | |
185d7c3e RD |
7363 | _arg3 = new wxString(PyString_AS_STRING(_obj3), PyString_GET_SIZE(_obj3)); |
7364 | #endif | |
8ab979d7 | 7365 | } |
cf694132 | 7366 | { |
4268f798 | 7367 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
7368 | wxMenu_Append(_arg0,_arg1,*_arg2,*_arg3,_arg4); |
7369 | ||
4268f798 | 7370 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7371 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7372 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7373 | _resultobj = Py_None; |
7374 | { | |
7375 | if (_obj2) | |
7376 | delete _arg2; | |
7377 | } | |
7378 | { | |
7379 | if (_obj3) | |
7380 | delete _arg3; | |
7381 | } | |
7382 | return _resultobj; | |
7383 | } | |
7384 | ||
7385 | #define wxMenu_AppendMenu(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->Append(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) | |
efc5f224 | 7386 | static PyObject *_wrap_wxMenu_AppendMenu(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7387 | PyObject * _resultobj; |
7388 | wxMenu * _arg0; | |
7389 | int _arg1; | |
7390 | wxString * _arg2; | |
7391 | wxMenu * _arg3; | |
23bed520 | 7392 | wxString * _arg4 = (wxString *) &wxEmptyString; |
1d99702e | 7393 | PyObject * _argo0 = 0; |
8ab979d7 | 7394 | PyObject * _obj2 = 0; |
1d99702e | 7395 | PyObject * _argo3 = 0; |
8ab979d7 | 7396 | PyObject * _obj4 = 0; |
efc5f224 | 7397 | char *_kwnames[] = { "self","id","item","subMenu","helpString", NULL }; |
8ab979d7 RD |
7398 | |
7399 | self = self; | |
efc5f224 | 7400 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiOO|O:wxMenu_AppendMenu",_kwnames,&_argo0,&_arg1,&_obj2,&_argo3,&_obj4)) |
8ab979d7 | 7401 | return NULL; |
1d99702e RD |
7402 | if (_argo0) { |
7403 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7404 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7405 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_AppendMenu. Expected _wxMenu_p."); |
7406 | return NULL; | |
7407 | } | |
7408 | } | |
7409 | { | |
185d7c3e RD |
7410 | #if PYTHON_API_VERSION >= 1009 |
7411 | char* tmpPtr; int tmpSize; | |
7412 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 7413 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7414 | return NULL; |
7415 | } | |
7416 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
7417 | return NULL; | |
7418 | _arg2 = new wxString(tmpPtr, tmpSize); | |
7419 | #else | |
8ab979d7 RD |
7420 | if (!PyString_Check(_obj2)) { |
7421 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7422 | return NULL; | |
7423 | } | |
185d7c3e RD |
7424 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
7425 | #endif | |
8ab979d7 | 7426 | } |
1d99702e RD |
7427 | if (_argo3) { |
7428 | if (_argo3 == Py_None) { _arg3 = NULL; } | |
7429 | else if (SWIG_GetPtrObj(_argo3,(void **) &_arg3,"_wxMenu_p")) { | |
8ab979d7 RD |
7430 | PyErr_SetString(PyExc_TypeError,"Type error in argument 4 of wxMenu_AppendMenu. Expected _wxMenu_p."); |
7431 | return NULL; | |
7432 | } | |
7433 | } | |
7434 | if (_obj4) | |
7435 | { | |
185d7c3e RD |
7436 | #if PYTHON_API_VERSION >= 1009 |
7437 | char* tmpPtr; int tmpSize; | |
7438 | if (!PyString_Check(_obj4) && !PyUnicode_Check(_obj4)) { | |
794c5cb1 | 7439 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7440 | return NULL; |
7441 | } | |
7442 | if (PyString_AsStringAndSize(_obj4, &tmpPtr, &tmpSize) == -1) | |
7443 | return NULL; | |
7444 | _arg4 = new wxString(tmpPtr, tmpSize); | |
7445 | #else | |
8ab979d7 RD |
7446 | if (!PyString_Check(_obj4)) { |
7447 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7448 | return NULL; | |
7449 | } | |
185d7c3e RD |
7450 | _arg4 = new wxString(PyString_AS_STRING(_obj4), PyString_GET_SIZE(_obj4)); |
7451 | #endif | |
8ab979d7 | 7452 | } |
cf694132 | 7453 | { |
4268f798 | 7454 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
7455 | wxMenu_AppendMenu(_arg0,_arg1,*_arg2,_arg3,*_arg4); |
7456 | ||
4268f798 | 7457 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7458 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7459 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7460 | _resultobj = Py_None; |
7461 | { | |
7462 | if (_obj2) | |
7463 | delete _arg2; | |
7464 | } | |
7465 | { | |
7466 | if (_obj4) | |
7467 | delete _arg4; | |
7468 | } | |
7469 | return _resultobj; | |
7470 | } | |
7471 | ||
af309447 | 7472 | #define wxMenu_AppendItem(_swigobj,_swigarg0) (_swigobj->Append(_swigarg0)) |
efc5f224 | 7473 | static PyObject *_wrap_wxMenu_AppendItem(PyObject *self, PyObject *args, PyObject *kwargs) { |
af309447 RD |
7474 | PyObject * _resultobj; |
7475 | wxMenu * _arg0; | |
7476 | wxMenuItem * _arg1; | |
1d99702e RD |
7477 | PyObject * _argo0 = 0; |
7478 | PyObject * _argo1 = 0; | |
efc5f224 | 7479 | char *_kwnames[] = { "self","item", NULL }; |
af309447 RD |
7480 | |
7481 | self = self; | |
efc5f224 | 7482 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_AppendItem",_kwnames,&_argo0,&_argo1)) |
af309447 | 7483 | return NULL; |
1d99702e RD |
7484 | if (_argo0) { |
7485 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7486 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
af309447 RD |
7487 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_AppendItem. Expected _wxMenu_p."); |
7488 | return NULL; | |
7489 | } | |
7490 | } | |
1d99702e RD |
7491 | if (_argo1) { |
7492 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7493 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenuItem_p")) { | |
af309447 RD |
7494 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_AppendItem. Expected _wxMenuItem_p."); |
7495 | return NULL; | |
7496 | } | |
7497 | } | |
cf694132 | 7498 | { |
4268f798 | 7499 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
7500 | wxMenu_AppendItem(_arg0,_arg1); |
7501 | ||
4268f798 | 7502 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7503 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7504 | } Py_INCREF(Py_None); |
af309447 RD |
7505 | _resultobj = Py_None; |
7506 | return _resultobj; | |
7507 | } | |
7508 | ||
8ab979d7 | 7509 | #define wxMenu_AppendSeparator(_swigobj) (_swigobj->AppendSeparator()) |
efc5f224 | 7510 | static PyObject *_wrap_wxMenu_AppendSeparator(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7511 | PyObject * _resultobj; |
7512 | wxMenu * _arg0; | |
1d99702e | 7513 | PyObject * _argo0 = 0; |
efc5f224 | 7514 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
7515 | |
7516 | self = self; | |
efc5f224 | 7517 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_AppendSeparator",_kwnames,&_argo0)) |
8ab979d7 | 7518 | return NULL; |
1d99702e RD |
7519 | if (_argo0) { |
7520 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7521 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7522 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_AppendSeparator. Expected _wxMenu_p."); |
7523 | return NULL; | |
7524 | } | |
7525 | } | |
cf694132 | 7526 | { |
4268f798 | 7527 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
7528 | wxMenu_AppendSeparator(_arg0); |
7529 | ||
4268f798 | 7530 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7531 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7532 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7533 | _resultobj = Py_None; |
7534 | return _resultobj; | |
7535 | } | |
7536 | ||
7537 | #define wxMenu_Break(_swigobj) (_swigobj->Break()) | |
efc5f224 | 7538 | static PyObject *_wrap_wxMenu_Break(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7539 | PyObject * _resultobj; |
7540 | wxMenu * _arg0; | |
1d99702e | 7541 | PyObject * _argo0 = 0; |
efc5f224 | 7542 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
7543 | |
7544 | self = self; | |
efc5f224 | 7545 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_Break",_kwnames,&_argo0)) |
8ab979d7 | 7546 | return NULL; |
1d99702e RD |
7547 | if (_argo0) { |
7548 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7549 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7550 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Break. Expected _wxMenu_p."); |
7551 | return NULL; | |
7552 | } | |
7553 | } | |
cf694132 | 7554 | { |
4268f798 | 7555 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
7556 | wxMenu_Break(_arg0); |
7557 | ||
4268f798 | 7558 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7559 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7560 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7561 | _resultobj = Py_None; |
7562 | return _resultobj; | |
7563 | } | |
7564 | ||
7565 | #define wxMenu_Check(_swigobj,_swigarg0,_swigarg1) (_swigobj->Check(_swigarg0,_swigarg1)) | |
efc5f224 | 7566 | static PyObject *_wrap_wxMenu_Check(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7567 | PyObject * _resultobj; |
7568 | wxMenu * _arg0; | |
7569 | int _arg1; | |
7570 | bool _arg2; | |
1d99702e | 7571 | PyObject * _argo0 = 0; |
8ab979d7 | 7572 | int tempbool2; |
efc5f224 | 7573 | char *_kwnames[] = { "self","id","flag", NULL }; |
8ab979d7 RD |
7574 | |
7575 | self = self; | |
efc5f224 | 7576 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxMenu_Check",_kwnames,&_argo0,&_arg1,&tempbool2)) |
8ab979d7 | 7577 | return NULL; |
1d99702e RD |
7578 | if (_argo0) { |
7579 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7580 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7581 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Check. Expected _wxMenu_p."); |
7582 | return NULL; | |
7583 | } | |
7584 | } | |
7585 | _arg2 = (bool ) tempbool2; | |
cf694132 | 7586 | { |
4268f798 | 7587 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
7588 | wxMenu_Check(_arg0,_arg1,_arg2); |
7589 | ||
4268f798 | 7590 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7591 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7592 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7593 | _resultobj = Py_None; |
7594 | return _resultobj; | |
7595 | } | |
7596 | ||
b1462dfa RD |
7597 | #define wxMenu_IsChecked(_swigobj,_swigarg0) (_swigobj->IsChecked(_swigarg0)) |
7598 | static PyObject *_wrap_wxMenu_IsChecked(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7599 | PyObject * _resultobj; | |
7600 | bool _result; | |
7601 | wxMenu * _arg0; | |
7602 | int _arg1; | |
7603 | PyObject * _argo0 = 0; | |
7604 | char *_kwnames[] = { "self","id", NULL }; | |
7605 | ||
7606 | self = self; | |
7607 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_IsChecked",_kwnames,&_argo0,&_arg1)) | |
7608 | return NULL; | |
7609 | if (_argo0) { | |
7610 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7611 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
7612 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_IsChecked. Expected _wxMenu_p."); | |
7613 | return NULL; | |
7614 | } | |
7615 | } | |
7616 | { | |
4268f798 | 7617 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
7618 | _result = (bool )wxMenu_IsChecked(_arg0,_arg1); |
7619 | ||
4268f798 | 7620 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7621 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
7622 | } _resultobj = Py_BuildValue("i",_result); |
7623 | return _resultobj; | |
7624 | } | |
7625 | ||
8ab979d7 | 7626 | #define wxMenu_Enable(_swigobj,_swigarg0,_swigarg1) (_swigobj->Enable(_swigarg0,_swigarg1)) |
efc5f224 | 7627 | static PyObject *_wrap_wxMenu_Enable(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7628 | PyObject * _resultobj; |
7629 | wxMenu * _arg0; | |
7630 | int _arg1; | |
7631 | bool _arg2; | |
1d99702e | 7632 | PyObject * _argo0 = 0; |
8ab979d7 | 7633 | int tempbool2; |
efc5f224 | 7634 | char *_kwnames[] = { "self","id","enable", NULL }; |
8ab979d7 RD |
7635 | |
7636 | self = self; | |
efc5f224 | 7637 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxMenu_Enable",_kwnames,&_argo0,&_arg1,&tempbool2)) |
8ab979d7 | 7638 | return NULL; |
1d99702e RD |
7639 | if (_argo0) { |
7640 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7641 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7642 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Enable. Expected _wxMenu_p."); |
7643 | return NULL; | |
7644 | } | |
7645 | } | |
7646 | _arg2 = (bool ) tempbool2; | |
cf694132 | 7647 | { |
4268f798 | 7648 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
7649 | wxMenu_Enable(_arg0,_arg1,_arg2); |
7650 | ||
4268f798 | 7651 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7652 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7653 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7654 | _resultobj = Py_None; |
7655 | return _resultobj; | |
7656 | } | |
7657 | ||
b1462dfa RD |
7658 | #define wxMenu_IsEnabled(_swigobj,_swigarg0) (_swigobj->IsEnabled(_swigarg0)) |
7659 | static PyObject *_wrap_wxMenu_IsEnabled(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7660 | PyObject * _resultobj; | |
7661 | bool _result; | |
7662 | wxMenu * _arg0; | |
7663 | int _arg1; | |
7664 | PyObject * _argo0 = 0; | |
7665 | char *_kwnames[] = { "self","id", NULL }; | |
7666 | ||
7667 | self = self; | |
7668 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_IsEnabled",_kwnames,&_argo0,&_arg1)) | |
7669 | return NULL; | |
7670 | if (_argo0) { | |
7671 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7672 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
7673 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_IsEnabled. Expected _wxMenu_p."); | |
7674 | return NULL; | |
7675 | } | |
7676 | } | |
7677 | { | |
4268f798 | 7678 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
7679 | _result = (bool )wxMenu_IsEnabled(_arg0,_arg1); |
7680 | ||
4268f798 | 7681 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7682 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
7683 | } _resultobj = Py_BuildValue("i",_result); |
7684 | return _resultobj; | |
7685 | } | |
7686 | ||
8ab979d7 | 7687 | #define wxMenu_FindItem(_swigobj,_swigarg0) (_swigobj->FindItem(_swigarg0)) |
efc5f224 | 7688 | static PyObject *_wrap_wxMenu_FindItem(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7689 | PyObject * _resultobj; |
7690 | int _result; | |
7691 | wxMenu * _arg0; | |
7692 | wxString * _arg1; | |
1d99702e | 7693 | PyObject * _argo0 = 0; |
8ab979d7 | 7694 | PyObject * _obj1 = 0; |
efc5f224 | 7695 | char *_kwnames[] = { "self","itemString", NULL }; |
8ab979d7 RD |
7696 | |
7697 | self = self; | |
efc5f224 | 7698 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_FindItem",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 7699 | return NULL; |
1d99702e RD |
7700 | if (_argo0) { |
7701 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7702 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7703 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_FindItem. Expected _wxMenu_p."); |
7704 | return NULL; | |
7705 | } | |
7706 | } | |
7707 | { | |
185d7c3e RD |
7708 | #if PYTHON_API_VERSION >= 1009 |
7709 | char* tmpPtr; int tmpSize; | |
7710 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 7711 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7712 | return NULL; |
7713 | } | |
7714 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
7715 | return NULL; | |
7716 | _arg1 = new wxString(tmpPtr, tmpSize); | |
7717 | #else | |
8ab979d7 RD |
7718 | if (!PyString_Check(_obj1)) { |
7719 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7720 | return NULL; | |
7721 | } | |
185d7c3e RD |
7722 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
7723 | #endif | |
8ab979d7 | 7724 | } |
cf694132 | 7725 | { |
4268f798 | 7726 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
7727 | _result = (int )wxMenu_FindItem(_arg0,*_arg1); |
7728 | ||
4268f798 | 7729 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7730 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7731 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
7732 | { |
7733 | if (_obj1) | |
7734 | delete _arg1; | |
7735 | } | |
7736 | return _resultobj; | |
7737 | } | |
7738 | ||
b1462dfa RD |
7739 | #define wxMenu_FindItemById(_swigobj,_swigarg0) (_swigobj->FindItem(_swigarg0)) |
7740 | static PyObject *_wrap_wxMenu_FindItemById(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7741 | PyObject * _resultobj; | |
7742 | wxMenuItem * _result; | |
7743 | wxMenu * _arg0; | |
7744 | int _arg1; | |
7745 | PyObject * _argo0 = 0; | |
7746 | char *_kwnames[] = { "self","id", NULL }; | |
b1462dfa RD |
7747 | |
7748 | self = self; | |
7749 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_FindItemById",_kwnames,&_argo0,&_arg1)) | |
7750 | return NULL; | |
7751 | if (_argo0) { | |
7752 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7753 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
7754 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_FindItemById. Expected _wxMenu_p."); | |
7755 | return NULL; | |
7756 | } | |
7757 | } | |
7758 | { | |
4268f798 | 7759 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
7760 | _result = (wxMenuItem *)wxMenu_FindItemById(_arg0,_arg1); |
7761 | ||
4268f798 | 7762 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7763 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 7764 | }{ _resultobj = wxPyMake_wxObject(_result); } |
b1462dfa RD |
7765 | return _resultobj; |
7766 | } | |
7767 | ||
8ab979d7 | 7768 | #define wxMenu_GetTitle(_swigobj) (_swigobj->GetTitle()) |
efc5f224 | 7769 | static PyObject *_wrap_wxMenu_GetTitle(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7770 | PyObject * _resultobj; |
7771 | wxString * _result; | |
7772 | wxMenu * _arg0; | |
1d99702e | 7773 | PyObject * _argo0 = 0; |
efc5f224 | 7774 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
7775 | |
7776 | self = self; | |
efc5f224 | 7777 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_GetTitle",_kwnames,&_argo0)) |
8ab979d7 | 7778 | return NULL; |
1d99702e RD |
7779 | if (_argo0) { |
7780 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7781 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7782 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetTitle. Expected _wxMenu_p."); |
7783 | return NULL; | |
7784 | } | |
7785 | } | |
8ab979d7 | 7786 | { |
4268f798 | 7787 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
7788 | _result = new wxString (wxMenu_GetTitle(_arg0)); |
7789 | ||
4268f798 | 7790 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7791 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7792 | }{ |
eec92d76 | 7793 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
7794 | } |
7795 | { | |
7796 | delete _result; | |
7797 | } | |
7798 | return _resultobj; | |
7799 | } | |
7800 | ||
7801 | #define wxMenu_SetTitle(_swigobj,_swigarg0) (_swigobj->SetTitle(_swigarg0)) | |
efc5f224 | 7802 | static PyObject *_wrap_wxMenu_SetTitle(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7803 | PyObject * _resultobj; |
7804 | wxMenu * _arg0; | |
7805 | wxString * _arg1; | |
1d99702e | 7806 | PyObject * _argo0 = 0; |
8ab979d7 | 7807 | PyObject * _obj1 = 0; |
efc5f224 | 7808 | char *_kwnames[] = { "self","title", NULL }; |
8ab979d7 RD |
7809 | |
7810 | self = self; | |
efc5f224 | 7811 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_SetTitle",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 7812 | return NULL; |
1d99702e RD |
7813 | if (_argo0) { |
7814 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7815 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7816 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetTitle. Expected _wxMenu_p."); |
7817 | return NULL; | |
7818 | } | |
7819 | } | |
7820 | { | |
185d7c3e RD |
7821 | #if PYTHON_API_VERSION >= 1009 |
7822 | char* tmpPtr; int tmpSize; | |
7823 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 7824 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7825 | return NULL; |
7826 | } | |
7827 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
7828 | return NULL; | |
7829 | _arg1 = new wxString(tmpPtr, tmpSize); | |
7830 | #else | |
8ab979d7 RD |
7831 | if (!PyString_Check(_obj1)) { |
7832 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7833 | return NULL; | |
7834 | } | |
185d7c3e RD |
7835 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
7836 | #endif | |
8ab979d7 | 7837 | } |
cf694132 | 7838 | { |
4268f798 | 7839 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
7840 | wxMenu_SetTitle(_arg0,*_arg1); |
7841 | ||
4268f798 | 7842 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7843 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7844 | } Py_INCREF(Py_None); |
8ab979d7 RD |
7845 | _resultobj = Py_None; |
7846 | { | |
7847 | if (_obj1) | |
7848 | delete _arg1; | |
7849 | } | |
7850 | return _resultobj; | |
7851 | } | |
7852 | ||
b1462dfa RD |
7853 | #define wxMenu_GetLabel(_swigobj,_swigarg0) (_swigobj->GetLabel(_swigarg0)) |
7854 | static PyObject *_wrap_wxMenu_GetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 7855 | PyObject * _resultobj; |
b1462dfa | 7856 | wxString * _result; |
8ab979d7 RD |
7857 | wxMenu * _arg0; |
7858 | int _arg1; | |
1d99702e | 7859 | PyObject * _argo0 = 0; |
efc5f224 | 7860 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
7861 | |
7862 | self = self; | |
b1462dfa | 7863 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_GetLabel",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 7864 | return NULL; |
1d99702e RD |
7865 | if (_argo0) { |
7866 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7867 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa | 7868 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetLabel. Expected _wxMenu_p."); |
8ab979d7 RD |
7869 | return NULL; |
7870 | } | |
7871 | } | |
cf694132 | 7872 | { |
4268f798 | 7873 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 7874 | _result = new wxString (wxMenu_GetLabel(_arg0,_arg1)); |
cf694132 | 7875 | |
4268f798 | 7876 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7877 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 7878 | }{ |
eec92d76 | 7879 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
b1462dfa RD |
7880 | } |
7881 | { | |
7882 | delete _result; | |
7883 | } | |
8ab979d7 RD |
7884 | return _resultobj; |
7885 | } | |
7886 | ||
b1462dfa RD |
7887 | #define wxMenu_SetLabel(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetLabel(_swigarg0,_swigarg1)) |
7888 | static PyObject *_wrap_wxMenu_SetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 7889 | PyObject * _resultobj; |
8ab979d7 RD |
7890 | wxMenu * _arg0; |
7891 | int _arg1; | |
b1462dfa | 7892 | wxString * _arg2; |
1d99702e | 7893 | PyObject * _argo0 = 0; |
b1462dfa RD |
7894 | PyObject * _obj2 = 0; |
7895 | char *_kwnames[] = { "self","id","label", NULL }; | |
8ab979d7 RD |
7896 | |
7897 | self = self; | |
b1462dfa | 7898 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxMenu_SetLabel",_kwnames,&_argo0,&_arg1,&_obj2)) |
8ab979d7 | 7899 | return NULL; |
1d99702e RD |
7900 | if (_argo0) { |
7901 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7902 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa | 7903 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetLabel. Expected _wxMenu_p."); |
8ab979d7 RD |
7904 | return NULL; |
7905 | } | |
7906 | } | |
b1462dfa | 7907 | { |
185d7c3e RD |
7908 | #if PYTHON_API_VERSION >= 1009 |
7909 | char* tmpPtr; int tmpSize; | |
7910 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 7911 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7912 | return NULL; |
7913 | } | |
7914 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
7915 | return NULL; | |
7916 | _arg2 = new wxString(tmpPtr, tmpSize); | |
7917 | #else | |
b1462dfa RD |
7918 | if (!PyString_Check(_obj2)) { |
7919 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7920 | return NULL; | |
7921 | } | |
185d7c3e RD |
7922 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
7923 | #endif | |
b1462dfa | 7924 | } |
8ab979d7 | 7925 | { |
4268f798 | 7926 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 7927 | wxMenu_SetLabel(_arg0,_arg1,*_arg2); |
cf694132 | 7928 | |
4268f798 | 7929 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7930 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
7931 | } Py_INCREF(Py_None); |
7932 | _resultobj = Py_None; | |
8ab979d7 | 7933 | { |
b1462dfa RD |
7934 | if (_obj2) |
7935 | delete _arg2; | |
8ab979d7 RD |
7936 | } |
7937 | return _resultobj; | |
7938 | } | |
7939 | ||
b1462dfa RD |
7940 | #define wxMenu_GetHelpString(_swigobj,_swigarg0) (_swigobj->GetHelpString(_swigarg0)) |
7941 | static PyObject *_wrap_wxMenu_GetHelpString(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 RD |
7942 | PyObject * _resultobj; |
7943 | wxString * _result; | |
7944 | wxMenu * _arg0; | |
7945 | int _arg1; | |
1d99702e | 7946 | PyObject * _argo0 = 0; |
efc5f224 | 7947 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
7948 | |
7949 | self = self; | |
b1462dfa | 7950 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_GetHelpString",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 7951 | return NULL; |
1d99702e RD |
7952 | if (_argo0) { |
7953 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7954 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa | 7955 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetHelpString. Expected _wxMenu_p."); |
8ab979d7 RD |
7956 | return NULL; |
7957 | } | |
7958 | } | |
8ab979d7 | 7959 | { |
4268f798 | 7960 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 7961 | _result = new wxString (wxMenu_GetHelpString(_arg0,_arg1)); |
cf694132 | 7962 | |
4268f798 | 7963 | wxPyEndAllowThreads(__tstate); |
493f1553 | 7964 | if (PyErr_Occurred()) return NULL; |
cf694132 | 7965 | }{ |
eec92d76 | 7966 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
7967 | } |
7968 | { | |
7969 | delete _result; | |
7970 | } | |
7971 | return _resultobj; | |
7972 | } | |
7973 | ||
7974 | #define wxMenu_SetHelpString(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetHelpString(_swigarg0,_swigarg1)) | |
efc5f224 | 7975 | static PyObject *_wrap_wxMenu_SetHelpString(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
7976 | PyObject * _resultobj; |
7977 | wxMenu * _arg0; | |
7978 | int _arg1; | |
7979 | wxString * _arg2; | |
1d99702e | 7980 | PyObject * _argo0 = 0; |
8ab979d7 | 7981 | PyObject * _obj2 = 0; |
efc5f224 | 7982 | char *_kwnames[] = { "self","id","helpString", NULL }; |
8ab979d7 RD |
7983 | |
7984 | self = self; | |
efc5f224 | 7985 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxMenu_SetHelpString",_kwnames,&_argo0,&_arg1,&_obj2)) |
8ab979d7 | 7986 | return NULL; |
1d99702e RD |
7987 | if (_argo0) { |
7988 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7989 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8ab979d7 RD |
7990 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetHelpString. Expected _wxMenu_p."); |
7991 | return NULL; | |
7992 | } | |
7993 | } | |
7994 | { | |
185d7c3e RD |
7995 | #if PYTHON_API_VERSION >= 1009 |
7996 | char* tmpPtr; int tmpSize; | |
7997 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 7998 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
7999 | return NULL; |
8000 | } | |
8001 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
8002 | return NULL; | |
8003 | _arg2 = new wxString(tmpPtr, tmpSize); | |
8004 | #else | |
8ab979d7 RD |
8005 | if (!PyString_Check(_obj2)) { |
8006 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8007 | return NULL; | |
8008 | } | |
185d7c3e RD |
8009 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
8010 | #endif | |
8ab979d7 | 8011 | } |
cf694132 | 8012 | { |
4268f798 | 8013 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
8014 | wxMenu_SetHelpString(_arg0,_arg1,*_arg2); |
8015 | ||
4268f798 | 8016 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8017 | if (PyErr_Occurred()) return NULL; |
cf694132 | 8018 | } Py_INCREF(Py_None); |
8ab979d7 RD |
8019 | _resultobj = Py_None; |
8020 | { | |
8021 | if (_obj2) | |
8022 | delete _arg2; | |
8023 | } | |
8024 | return _resultobj; | |
8025 | } | |
8026 | ||
b1462dfa RD |
8027 | #define wxMenu_UpdateUI(_swigobj,_swigarg0) (_swigobj->UpdateUI(_swigarg0)) |
8028 | static PyObject *_wrap_wxMenu_UpdateUI(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8029 | PyObject * _resultobj; |
8ab979d7 | 8030 | wxMenu * _arg0; |
b1462dfa | 8031 | wxEvtHandler * _arg1 = (wxEvtHandler *) NULL; |
1d99702e | 8032 | PyObject * _argo0 = 0; |
b1462dfa RD |
8033 | PyObject * _argo1 = 0; |
8034 | char *_kwnames[] = { "self","source", NULL }; | |
8ab979d7 RD |
8035 | |
8036 | self = self; | |
b1462dfa | 8037 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|O:wxMenu_UpdateUI",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 8038 | return NULL; |
1d99702e RD |
8039 | if (_argo0) { |
8040 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8041 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa RD |
8042 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_UpdateUI. Expected _wxMenu_p."); |
8043 | return NULL; | |
8044 | } | |
8045 | } | |
8046 | if (_argo1) { | |
8047 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8048 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvtHandler_p")) { | |
8049 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_UpdateUI. Expected _wxEvtHandler_p."); | |
8ab979d7 RD |
8050 | return NULL; |
8051 | } | |
8052 | } | |
cf694132 | 8053 | { |
4268f798 | 8054 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8055 | wxMenu_UpdateUI(_arg0,_arg1); |
cf694132 | 8056 | |
4268f798 | 8057 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8058 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
8059 | } Py_INCREF(Py_None); |
8060 | _resultobj = Py_None; | |
8ab979d7 RD |
8061 | return _resultobj; |
8062 | } | |
8063 | ||
b1462dfa RD |
8064 | #define wxMenu_Delete(_swigobj,_swigarg0) (_swigobj->Delete(_swigarg0)) |
8065 | static PyObject *_wrap_wxMenu_Delete(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 RD |
8066 | PyObject * _resultobj; |
8067 | bool _result; | |
8068 | wxMenu * _arg0; | |
8069 | int _arg1; | |
1d99702e | 8070 | PyObject * _argo0 = 0; |
efc5f224 | 8071 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
8072 | |
8073 | self = self; | |
b1462dfa | 8074 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_Delete",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 8075 | return NULL; |
1d99702e RD |
8076 | if (_argo0) { |
8077 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8078 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa | 8079 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Delete. Expected _wxMenu_p."); |
8ab979d7 RD |
8080 | return NULL; |
8081 | } | |
8082 | } | |
cf694132 | 8083 | { |
4268f798 | 8084 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8085 | _result = (bool )wxMenu_Delete(_arg0,_arg1); |
cf694132 | 8086 | |
4268f798 | 8087 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8088 | if (PyErr_Occurred()) return NULL; |
cf694132 | 8089 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
8090 | return _resultobj; |
8091 | } | |
8092 | ||
b1462dfa RD |
8093 | #define wxMenu_DeleteItem(_swigobj,_swigarg0) (_swigobj->Delete(_swigarg0)) |
8094 | static PyObject *_wrap_wxMenu_DeleteItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8095 | PyObject * _resultobj; |
b1462dfa | 8096 | bool _result; |
8ab979d7 | 8097 | wxMenu * _arg0; |
b1462dfa | 8098 | wxMenuItem * _arg1; |
1d99702e | 8099 | PyObject * _argo0 = 0; |
b1462dfa RD |
8100 | PyObject * _argo1 = 0; |
8101 | char *_kwnames[] = { "self","item", NULL }; | |
8ab979d7 RD |
8102 | |
8103 | self = self; | |
b1462dfa | 8104 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_DeleteItem",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 8105 | return NULL; |
1d99702e RD |
8106 | if (_argo0) { |
8107 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8108 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa | 8109 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_DeleteItem. Expected _wxMenu_p."); |
8ab979d7 RD |
8110 | return NULL; |
8111 | } | |
8112 | } | |
b1462dfa RD |
8113 | if (_argo1) { |
8114 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8115 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenuItem_p")) { | |
8116 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_DeleteItem. Expected _wxMenuItem_p."); | |
8ab979d7 | 8117 | return NULL; |
b1462dfa | 8118 | } |
8ab979d7 | 8119 | } |
cf694132 | 8120 | { |
4268f798 | 8121 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8122 | _result = (bool )wxMenu_DeleteItem(_arg0,_arg1); |
cf694132 | 8123 | |
4268f798 | 8124 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8125 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 8126 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
8127 | return _resultobj; |
8128 | } | |
8129 | ||
b1462dfa RD |
8130 | #define wxMenu_Insert(_swigobj,_swigarg0,_swigarg1) (_swigobj->Insert(_swigarg0,_swigarg1)) |
8131 | static PyObject *_wrap_wxMenu_Insert(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8132 | PyObject * _resultobj; |
b1462dfa | 8133 | bool _result; |
8bf5d46e | 8134 | wxMenu * _arg0; |
b1462dfa RD |
8135 | size_t _arg1; |
8136 | wxMenuItem * _arg2; | |
1d99702e | 8137 | PyObject * _argo0 = 0; |
b1462dfa RD |
8138 | PyObject * _argo2 = 0; |
8139 | char *_kwnames[] = { "self","pos","item", NULL }; | |
8ab979d7 RD |
8140 | |
8141 | self = self; | |
b1462dfa | 8142 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxMenu_Insert",_kwnames,&_argo0,&_arg1,&_argo2)) |
8ab979d7 | 8143 | return NULL; |
1d99702e RD |
8144 | if (_argo0) { |
8145 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8146 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa | 8147 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Insert. Expected _wxMenu_p."); |
8bf5d46e RD |
8148 | return NULL; |
8149 | } | |
8150 | } | |
b1462dfa RD |
8151 | if (_argo2) { |
8152 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
8153 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxMenuItem_p")) { | |
8154 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxMenu_Insert. Expected _wxMenuItem_p."); | |
8ab979d7 RD |
8155 | return NULL; |
8156 | } | |
8157 | } | |
cf694132 | 8158 | { |
4268f798 | 8159 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8160 | _result = (bool )wxMenu_Insert(_arg0,_arg1,_arg2); |
cf694132 | 8161 | |
4268f798 | 8162 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8163 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 8164 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
8165 | return _resultobj; |
8166 | } | |
8167 | ||
b1462dfa RD |
8168 | #define wxMenu_Remove(_swigobj,_swigarg0) (_swigobj->Remove(_swigarg0)) |
8169 | static PyObject *_wrap_wxMenu_Remove(PyObject *self, PyObject *args, PyObject *kwargs) { | |
efc5f224 | 8170 | PyObject * _resultobj; |
b1462dfa | 8171 | wxMenuItem * _result; |
efc5f224 | 8172 | wxMenu * _arg0; |
b1462dfa | 8173 | int _arg1; |
efc5f224 | 8174 | PyObject * _argo0 = 0; |
b1462dfa | 8175 | char *_kwnames[] = { "self","id", NULL }; |
efc5f224 RD |
8176 | |
8177 | self = self; | |
b1462dfa | 8178 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_Remove",_kwnames,&_argo0,&_arg1)) |
efc5f224 RD |
8179 | return NULL; |
8180 | if (_argo0) { | |
8181 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8182 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
b1462dfa | 8183 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Remove. Expected _wxMenu_p."); |
efc5f224 RD |
8184 | return NULL; |
8185 | } | |
8186 | } | |
8187 | { | |
4268f798 | 8188 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8189 | _result = (wxMenuItem *)wxMenu_Remove(_arg0,_arg1); |
efc5f224 | 8190 | |
4268f798 | 8191 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8192 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8193 | }{ _resultobj = wxPyMake_wxObject(_result); } |
efc5f224 RD |
8194 | return _resultobj; |
8195 | } | |
8196 | ||
b1462dfa RD |
8197 | #define wxMenu_RemoveItem(_swigobj,_swigarg0) (_swigobj->Remove(_swigarg0)) |
8198 | static PyObject *_wrap_wxMenu_RemoveItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8199 | PyObject * _resultobj; |
b1462dfa RD |
8200 | wxMenuItem * _result; |
8201 | wxMenu * _arg0; | |
8202 | wxMenuItem * _arg1; | |
8203 | PyObject * _argo0 = 0; | |
8204 | PyObject * _argo1 = 0; | |
8205 | char *_kwnames[] = { "self","item", NULL }; | |
8ab979d7 RD |
8206 | |
8207 | self = self; | |
b1462dfa RD |
8208 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_RemoveItem",_kwnames,&_argo0,&_argo1)) |
8209 | return NULL; | |
8210 | if (_argo0) { | |
8211 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8212 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { | |
8213 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_RemoveItem. Expected _wxMenu_p."); | |
8214 | return NULL; | |
8215 | } | |
8216 | } | |
8217 | if (_argo1) { | |
8218 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8219 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenuItem_p")) { | |
8220 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_RemoveItem. Expected _wxMenuItem_p."); | |
8ab979d7 | 8221 | return NULL; |
b1462dfa RD |
8222 | } |
8223 | } | |
cf694132 | 8224 | { |
4268f798 | 8225 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8226 | _result = (wxMenuItem *)wxMenu_RemoveItem(_arg0,_arg1); |
cf694132 | 8227 | |
4268f798 | 8228 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8229 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8230 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
8231 | return _resultobj; |
8232 | } | |
8233 | ||
eb715945 | 8234 | static void wxMenu_Destroy(wxMenu *self) { delete self; } |
b1462dfa | 8235 | static PyObject *_wrap_wxMenu_Destroy(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 | 8236 | PyObject * _resultobj; |
b1462dfa | 8237 | wxMenu * _arg0; |
1d99702e | 8238 | PyObject * _argo0 = 0; |
b1462dfa | 8239 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8240 | |
8241 | self = self; | |
b1462dfa | 8242 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_Destroy",_kwnames,&_argo0)) |
8ab979d7 | 8243 | return NULL; |
1d99702e RD |
8244 | if (_argo0) { |
8245 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8246 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8247 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Destroy. Expected _wxMenu_p."); | |
8ab979d7 RD |
8248 | return NULL; |
8249 | } | |
8250 | } | |
cf694132 | 8251 | { |
4268f798 | 8252 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8253 | wxMenu_Destroy(_arg0); |
cf694132 | 8254 | |
4268f798 | 8255 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8256 | if (PyErr_Occurred()) return NULL; |
cf694132 | 8257 | } Py_INCREF(Py_None); |
8ab979d7 | 8258 | _resultobj = Py_None; |
8ab979d7 RD |
8259 | return _resultobj; |
8260 | } | |
8261 | ||
b1462dfa RD |
8262 | #define wxMenu_DestroyId(_swigobj,_swigarg0) (_swigobj->Destroy(_swigarg0)) |
8263 | static PyObject *_wrap_wxMenu_DestroyId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8264 | PyObject * _resultobj; |
b1462dfa RD |
8265 | bool _result; |
8266 | wxMenu * _arg0; | |
8ab979d7 | 8267 | int _arg1; |
1d99702e | 8268 | PyObject * _argo0 = 0; |
b1462dfa | 8269 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
8270 | |
8271 | self = self; | |
b1462dfa | 8272 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenu_DestroyId",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 8273 | return NULL; |
1d99702e RD |
8274 | if (_argo0) { |
8275 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8276 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8277 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_DestroyId. Expected _wxMenu_p."); | |
8ab979d7 RD |
8278 | return NULL; |
8279 | } | |
8280 | } | |
cf694132 | 8281 | { |
4268f798 | 8282 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8283 | _result = (bool )wxMenu_DestroyId(_arg0,_arg1); |
cf694132 | 8284 | |
4268f798 | 8285 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8286 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 8287 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
8288 | return _resultobj; |
8289 | } | |
8290 | ||
b1462dfa RD |
8291 | #define wxMenu_DestroyItem(_swigobj,_swigarg0) (_swigobj->Destroy(_swigarg0)) |
8292 | static PyObject *_wrap_wxMenu_DestroyItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8293 | PyObject * _resultobj; |
b1462dfa RD |
8294 | bool _result; |
8295 | wxMenu * _arg0; | |
8296 | wxMenuItem * _arg1; | |
1d99702e | 8297 | PyObject * _argo0 = 0; |
b1462dfa RD |
8298 | PyObject * _argo1 = 0; |
8299 | char *_kwnames[] = { "self","item", NULL }; | |
8ab979d7 RD |
8300 | |
8301 | self = self; | |
b1462dfa | 8302 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_DestroyItem",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 8303 | return NULL; |
1d99702e RD |
8304 | if (_argo0) { |
8305 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8306 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8307 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_DestroyItem. Expected _wxMenu_p."); | |
8308 | return NULL; | |
8309 | } | |
8310 | } | |
8311 | if (_argo1) { | |
8312 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8313 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenuItem_p")) { | |
8314 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_DestroyItem. Expected _wxMenuItem_p."); | |
8ab979d7 RD |
8315 | return NULL; |
8316 | } | |
8317 | } | |
cf694132 | 8318 | { |
4268f798 | 8319 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8320 | _result = (bool )wxMenu_DestroyItem(_arg0,_arg1); |
cf694132 | 8321 | |
4268f798 | 8322 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8323 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 8324 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
8325 | return _resultobj; |
8326 | } | |
8327 | ||
b1462dfa RD |
8328 | #define wxMenu_GetMenuItemCount(_swigobj) (_swigobj->GetMenuItemCount()) |
8329 | static PyObject *_wrap_wxMenu_GetMenuItemCount(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8330 | PyObject * _resultobj; |
b1462dfa RD |
8331 | size_t _result; |
8332 | wxMenu * _arg0; | |
1d99702e | 8333 | PyObject * _argo0 = 0; |
b1462dfa | 8334 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8335 | |
8336 | self = self; | |
b1462dfa | 8337 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_GetMenuItemCount",_kwnames,&_argo0)) |
8ab979d7 | 8338 | return NULL; |
1d99702e RD |
8339 | if (_argo0) { |
8340 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8341 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8342 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetMenuItemCount. Expected _wxMenu_p."); | |
8ab979d7 RD |
8343 | return NULL; |
8344 | } | |
8345 | } | |
cf694132 | 8346 | { |
4268f798 | 8347 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8348 | _result = (size_t )wxMenu_GetMenuItemCount(_arg0); |
cf694132 | 8349 | |
4268f798 | 8350 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8351 | if (PyErr_Occurred()) return NULL; |
2abc0a0f | 8352 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
8353 | return _resultobj; |
8354 | } | |
8355 | ||
b1462dfa RD |
8356 | static PyObject * wxMenu_GetMenuItems(wxMenu *self) { |
8357 | wxMenuItemList& list = self->GetMenuItems(); | |
8358 | return wxPy_ConvertList(&list, "wxMenuItem"); | |
8359 | } | |
8360 | static PyObject *_wrap_wxMenu_GetMenuItems(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8361 | PyObject * _resultobj; |
b1462dfa RD |
8362 | PyObject * _result; |
8363 | wxMenu * _arg0; | |
1d99702e | 8364 | PyObject * _argo0 = 0; |
b1462dfa | 8365 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8366 | |
8367 | self = self; | |
b1462dfa | 8368 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_GetMenuItems",_kwnames,&_argo0)) |
8ab979d7 | 8369 | return NULL; |
1d99702e RD |
8370 | if (_argo0) { |
8371 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8372 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8373 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetMenuItems. Expected _wxMenu_p."); | |
8ab979d7 RD |
8374 | return NULL; |
8375 | } | |
8376 | } | |
cf694132 | 8377 | { |
4268f798 | 8378 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8379 | _result = (PyObject *)wxMenu_GetMenuItems(_arg0); |
cf694132 | 8380 | |
4268f798 | 8381 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8382 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
8383 | }{ |
8384 | _resultobj = _result; | |
8385 | } | |
8ab979d7 RD |
8386 | return _resultobj; |
8387 | } | |
8388 | ||
b1462dfa RD |
8389 | #define wxMenu_SetEventHandler(_swigobj,_swigarg0) (_swigobj->SetEventHandler(_swigarg0)) |
8390 | static PyObject *_wrap_wxMenu_SetEventHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8391 | PyObject * _resultobj; |
b1462dfa RD |
8392 | wxMenu * _arg0; |
8393 | wxEvtHandler * _arg1; | |
1d99702e | 8394 | PyObject * _argo0 = 0; |
b1462dfa RD |
8395 | PyObject * _argo1 = 0; |
8396 | char *_kwnames[] = { "self","handler", NULL }; | |
8ab979d7 RD |
8397 | |
8398 | self = self; | |
b1462dfa | 8399 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_SetEventHandler",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 8400 | return NULL; |
1d99702e RD |
8401 | if (_argo0) { |
8402 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8403 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8404 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetEventHandler. Expected _wxMenu_p."); | |
8ab979d7 RD |
8405 | return NULL; |
8406 | } | |
8407 | } | |
b1462dfa RD |
8408 | if (_argo1) { |
8409 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8410 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvtHandler_p")) { | |
8411 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_SetEventHandler. Expected _wxEvtHandler_p."); | |
8ab979d7 | 8412 | return NULL; |
b1462dfa | 8413 | } |
8ab979d7 | 8414 | } |
cf694132 | 8415 | { |
4268f798 | 8416 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8417 | wxMenu_SetEventHandler(_arg0,_arg1); |
cf694132 | 8418 | |
4268f798 | 8419 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8420 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
8421 | } Py_INCREF(Py_None); |
8422 | _resultobj = Py_None; | |
8ab979d7 RD |
8423 | return _resultobj; |
8424 | } | |
8425 | ||
b1462dfa RD |
8426 | #define wxMenu_GetEventHandler(_swigobj) (_swigobj->GetEventHandler()) |
8427 | static PyObject *_wrap_wxMenu_GetEventHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8428 | PyObject * _resultobj; |
b1462dfa RD |
8429 | wxEvtHandler * _result; |
8430 | wxMenu * _arg0; | |
1d99702e | 8431 | PyObject * _argo0 = 0; |
b1462dfa | 8432 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8433 | |
8434 | self = self; | |
b1462dfa | 8435 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_GetEventHandler",_kwnames,&_argo0)) |
8ab979d7 | 8436 | return NULL; |
1d99702e RD |
8437 | if (_argo0) { |
8438 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8439 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8440 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetEventHandler. Expected _wxMenu_p."); | |
8ab979d7 RD |
8441 | return NULL; |
8442 | } | |
8443 | } | |
cf694132 | 8444 | { |
4268f798 | 8445 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8446 | _result = (wxEvtHandler *)wxMenu_GetEventHandler(_arg0); |
cf694132 | 8447 | |
4268f798 | 8448 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8449 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8450 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
8451 | return _resultobj; |
8452 | } | |
8453 | ||
b1462dfa RD |
8454 | #define wxMenu_SetInvokingWindow(_swigobj,_swigarg0) (_swigobj->SetInvokingWindow(_swigarg0)) |
8455 | static PyObject *_wrap_wxMenu_SetInvokingWindow(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2f90df85 | 8456 | PyObject * _resultobj; |
b1462dfa RD |
8457 | wxMenu * _arg0; |
8458 | wxWindow * _arg1; | |
2f90df85 | 8459 | PyObject * _argo0 = 0; |
b1462dfa RD |
8460 | PyObject * _argo1 = 0; |
8461 | char *_kwnames[] = { "self","win", NULL }; | |
2f90df85 RD |
8462 | |
8463 | self = self; | |
b1462dfa | 8464 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_SetInvokingWindow",_kwnames,&_argo0,&_argo1)) |
2f90df85 RD |
8465 | return NULL; |
8466 | if (_argo0) { | |
8467 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8468 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8469 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetInvokingWindow. Expected _wxMenu_p."); | |
2f90df85 RD |
8470 | return NULL; |
8471 | } | |
8472 | } | |
b1462dfa RD |
8473 | if (_argo1) { |
8474 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8475 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
8476 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_SetInvokingWindow. Expected _wxWindow_p."); | |
2f90df85 | 8477 | return NULL; |
b1462dfa | 8478 | } |
2f90df85 | 8479 | } |
2f90df85 | 8480 | { |
4268f798 | 8481 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8482 | wxMenu_SetInvokingWindow(_arg0,_arg1); |
2f90df85 | 8483 | |
4268f798 | 8484 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8485 | if (PyErr_Occurred()) return NULL; |
2f90df85 RD |
8486 | } Py_INCREF(Py_None); |
8487 | _resultobj = Py_None; | |
2f90df85 RD |
8488 | return _resultobj; |
8489 | } | |
8490 | ||
b1462dfa RD |
8491 | #define wxMenu_GetInvokingWindow(_swigobj) (_swigobj->GetInvokingWindow()) |
8492 | static PyObject *_wrap_wxMenu_GetInvokingWindow(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8493 | PyObject * _resultobj; |
b1462dfa RD |
8494 | wxWindow * _result; |
8495 | wxMenu * _arg0; | |
1d99702e | 8496 | PyObject * _argo0 = 0; |
b1462dfa | 8497 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8498 | |
8499 | self = self; | |
b1462dfa | 8500 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_GetInvokingWindow",_kwnames,&_argo0)) |
8ab979d7 | 8501 | return NULL; |
1d99702e RD |
8502 | if (_argo0) { |
8503 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8504 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8505 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetInvokingWindow. Expected _wxMenu_p."); | |
8ab979d7 RD |
8506 | return NULL; |
8507 | } | |
8508 | } | |
cf694132 | 8509 | { |
4268f798 | 8510 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8511 | _result = (wxWindow *)wxMenu_GetInvokingWindow(_arg0); |
cf694132 | 8512 | |
4268f798 | 8513 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8514 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8515 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
8516 | return _resultobj; |
8517 | } | |
8518 | ||
b1462dfa RD |
8519 | #define wxMenu_GetStyle(_swigobj) (_swigobj->GetStyle()) |
8520 | static PyObject *_wrap_wxMenu_GetStyle(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8521 | PyObject * _resultobj; |
b1462dfa RD |
8522 | long _result; |
8523 | wxMenu * _arg0; | |
1d99702e | 8524 | PyObject * _argo0 = 0; |
b1462dfa | 8525 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8526 | |
8527 | self = self; | |
b1462dfa | 8528 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_GetStyle",_kwnames,&_argo0)) |
8ab979d7 | 8529 | return NULL; |
1d99702e RD |
8530 | if (_argo0) { |
8531 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8532 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8533 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetStyle. Expected _wxMenu_p."); | |
8ab979d7 RD |
8534 | return NULL; |
8535 | } | |
8536 | } | |
8ab979d7 | 8537 | { |
4268f798 | 8538 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8539 | _result = (long )wxMenu_GetStyle(_arg0); |
cf694132 | 8540 | |
4268f798 | 8541 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8542 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 8543 | } _resultobj = Py_BuildValue("l",_result); |
8ab979d7 RD |
8544 | return _resultobj; |
8545 | } | |
8546 | ||
b1462dfa RD |
8547 | #define wxMenu_IsAttached(_swigobj) (_swigobj->IsAttached()) |
8548 | static PyObject *_wrap_wxMenu_IsAttached(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8549 | PyObject * _resultobj; |
b1462dfa RD |
8550 | bool _result; |
8551 | wxMenu * _arg0; | |
1d99702e | 8552 | PyObject * _argo0 = 0; |
b1462dfa | 8553 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8554 | |
8555 | self = self; | |
b1462dfa | 8556 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_IsAttached",_kwnames,&_argo0)) |
8ab979d7 | 8557 | return NULL; |
1d99702e RD |
8558 | if (_argo0) { |
8559 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8560 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8561 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_IsAttached. Expected _wxMenu_p."); | |
8ab979d7 RD |
8562 | return NULL; |
8563 | } | |
8564 | } | |
8ab979d7 | 8565 | { |
4268f798 | 8566 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8567 | _result = (bool )wxMenu_IsAttached(_arg0); |
cf694132 | 8568 | |
4268f798 | 8569 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8570 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 8571 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
8572 | return _resultobj; |
8573 | } | |
8574 | ||
b1462dfa RD |
8575 | #define wxMenu_SetParent(_swigobj,_swigarg0) (_swigobj->SetParent(_swigarg0)) |
8576 | static PyObject *_wrap_wxMenu_SetParent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8577 | PyObject * _resultobj; |
b1462dfa RD |
8578 | wxMenu * _arg0; |
8579 | wxMenu * _arg1; | |
1d99702e | 8580 | PyObject * _argo0 = 0; |
b1462dfa RD |
8581 | PyObject * _argo1 = 0; |
8582 | char *_kwnames[] = { "self","parent", NULL }; | |
8ab979d7 RD |
8583 | |
8584 | self = self; | |
b1462dfa | 8585 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenu_SetParent",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 8586 | return NULL; |
1d99702e RD |
8587 | if (_argo0) { |
8588 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8589 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8590 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetParent. Expected _wxMenu_p."); | |
8ab979d7 RD |
8591 | return NULL; |
8592 | } | |
8593 | } | |
b1462dfa RD |
8594 | if (_argo1) { |
8595 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8596 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenu_p")) { | |
8597 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenu_SetParent. Expected _wxMenu_p."); | |
8ab979d7 | 8598 | return NULL; |
b1462dfa | 8599 | } |
8ab979d7 | 8600 | } |
cf694132 | 8601 | { |
4268f798 | 8602 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8603 | wxMenu_SetParent(_arg0,_arg1); |
cf694132 | 8604 | |
4268f798 | 8605 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8606 | if (PyErr_Occurred()) return NULL; |
cf694132 | 8607 | } Py_INCREF(Py_None); |
8ab979d7 | 8608 | _resultobj = Py_None; |
8ab979d7 RD |
8609 | return _resultobj; |
8610 | } | |
8611 | ||
b1462dfa RD |
8612 | #define wxMenu_GetParent(_swigobj) (_swigobj->GetParent()) |
8613 | static PyObject *_wrap_wxMenu_GetParent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8614 | PyObject * _resultobj; |
b1462dfa RD |
8615 | wxMenu * _result; |
8616 | wxMenu * _arg0; | |
1d99702e | 8617 | PyObject * _argo0 = 0; |
b1462dfa | 8618 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8619 | |
8620 | self = self; | |
b1462dfa | 8621 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenu_GetParent",_kwnames,&_argo0)) |
8ab979d7 | 8622 | return NULL; |
1d99702e RD |
8623 | if (_argo0) { |
8624 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
8625 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
8626 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetParent. Expected _wxMenu_p."); | |
8ab979d7 RD |
8627 | return NULL; |
8628 | } | |
8629 | } | |
8ab979d7 | 8630 | { |
4268f798 | 8631 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8632 | _result = (wxMenu *)wxMenu_GetParent(_arg0); |
cf694132 | 8633 | |
4268f798 | 8634 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8635 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8636 | }{ _resultobj = wxPyMake_wxObject(_result); } |
b1462dfa | 8637 | return _resultobj; |
8ab979d7 | 8638 | } |
b1462dfa RD |
8639 | |
8640 | static void *SwigwxMenuBarTowxWindow(void *ptr) { | |
8641 | wxMenuBar *src; | |
8642 | wxWindow *dest; | |
8643 | src = (wxMenuBar *) ptr; | |
8644 | dest = (wxWindow *) src; | |
8645 | return (void *) dest; | |
8646 | } | |
8647 | ||
8648 | static void *SwigwxMenuBarTowxEvtHandler(void *ptr) { | |
8649 | wxMenuBar *src; | |
8650 | wxEvtHandler *dest; | |
8651 | src = (wxMenuBar *) ptr; | |
8652 | dest = (wxEvtHandler *) src; | |
8653 | return (void *) dest; | |
8ab979d7 | 8654 | } |
b1462dfa | 8655 | |
9416aa89 RD |
8656 | static void *SwigwxMenuBarTowxObject(void *ptr) { |
8657 | wxMenuBar *src; | |
8658 | wxObject *dest; | |
8659 | src = (wxMenuBar *) ptr; | |
8660 | dest = (wxObject *) src; | |
8661 | return (void *) dest; | |
8662 | } | |
8663 | ||
c368d904 | 8664 | #define new_wxMenuBar(_swigarg0) (new wxMenuBar(_swigarg0)) |
b1462dfa RD |
8665 | static PyObject *_wrap_new_wxMenuBar(PyObject *self, PyObject *args, PyObject *kwargs) { |
8666 | PyObject * _resultobj; | |
8667 | wxMenuBar * _result; | |
c368d904 RD |
8668 | long _arg0 = (long ) 0; |
8669 | char *_kwnames[] = { "style", NULL }; | |
b1462dfa RD |
8670 | char _ptemp[128]; |
8671 | ||
8672 | self = self; | |
c368d904 | 8673 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|l:new_wxMenuBar",_kwnames,&_arg0)) |
b1462dfa RD |
8674 | return NULL; |
8675 | { | |
4268f798 | 8676 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
c368d904 | 8677 | _result = (wxMenuBar *)new_wxMenuBar(_arg0); |
b1462dfa | 8678 | |
4268f798 | 8679 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8680 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
8681 | } if (_result) { |
8682 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxMenuBar_p"); | |
8683 | _resultobj = Py_BuildValue("s",_ptemp); | |
8684 | } else { | |
8685 | Py_INCREF(Py_None); | |
8686 | _resultobj = Py_None; | |
8687 | } | |
8ab979d7 RD |
8688 | return _resultobj; |
8689 | } | |
8690 | ||
b1462dfa RD |
8691 | #define wxMenuBar_Append(_swigobj,_swigarg0,_swigarg1) (_swigobj->Append(_swigarg0,_swigarg1)) |
8692 | static PyObject *_wrap_wxMenuBar_Append(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8693 | PyObject * _resultobj; |
b1462dfa | 8694 | bool _result; |
8ab979d7 | 8695 | wxMenuBar * _arg0; |
b1462dfa | 8696 | wxMenu * _arg1; |
8ab979d7 | 8697 | wxString * _arg2; |
1d99702e | 8698 | PyObject * _argo0 = 0; |
b1462dfa | 8699 | PyObject * _argo1 = 0; |
8ab979d7 | 8700 | PyObject * _obj2 = 0; |
b1462dfa | 8701 | char *_kwnames[] = { "self","menu","title", NULL }; |
8ab979d7 RD |
8702 | |
8703 | self = self; | |
b1462dfa | 8704 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxMenuBar_Append",_kwnames,&_argo0,&_argo1,&_obj2)) |
8ab979d7 | 8705 | return NULL; |
1d99702e RD |
8706 | if (_argo0) { |
8707 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8708 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
b1462dfa RD |
8709 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Append. Expected _wxMenuBar_p."); |
8710 | return NULL; | |
8711 | } | |
8712 | } | |
8713 | if (_argo1) { | |
8714 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8715 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenu_p")) { | |
8716 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenuBar_Append. Expected _wxMenu_p."); | |
8ab979d7 RD |
8717 | return NULL; |
8718 | } | |
8719 | } | |
8720 | { | |
185d7c3e RD |
8721 | #if PYTHON_API_VERSION >= 1009 |
8722 | char* tmpPtr; int tmpSize; | |
8723 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 8724 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
8725 | return NULL; |
8726 | } | |
8727 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
8728 | return NULL; | |
8729 | _arg2 = new wxString(tmpPtr, tmpSize); | |
8730 | #else | |
8ab979d7 RD |
8731 | if (!PyString_Check(_obj2)) { |
8732 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8733 | return NULL; | |
8734 | } | |
185d7c3e RD |
8735 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
8736 | #endif | |
8ab979d7 | 8737 | } |
cf694132 | 8738 | { |
4268f798 | 8739 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8740 | _result = (bool )wxMenuBar_Append(_arg0,_arg1,*_arg2); |
cf694132 | 8741 | |
4268f798 | 8742 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8743 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 8744 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
8745 | { |
8746 | if (_obj2) | |
8747 | delete _arg2; | |
8748 | } | |
8749 | return _resultobj; | |
8750 | } | |
8751 | ||
b1462dfa RD |
8752 | #define wxMenuBar_Insert(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->Insert(_swigarg0,_swigarg1,_swigarg2)) |
8753 | static PyObject *_wrap_wxMenuBar_Insert(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8754 | PyObject * _resultobj; |
b1462dfa | 8755 | bool _result; |
8ab979d7 | 8756 | wxMenuBar * _arg0; |
b1462dfa RD |
8757 | size_t _arg1; |
8758 | wxMenu * _arg2; | |
8759 | wxString * _arg3; | |
1d99702e | 8760 | PyObject * _argo0 = 0; |
b1462dfa RD |
8761 | PyObject * _argo2 = 0; |
8762 | PyObject * _obj3 = 0; | |
8763 | char *_kwnames[] = { "self","pos","menu","title", NULL }; | |
8ab979d7 RD |
8764 | |
8765 | self = self; | |
b1462dfa | 8766 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiOO:wxMenuBar_Insert",_kwnames,&_argo0,&_arg1,&_argo2,&_obj3)) |
8ab979d7 | 8767 | return NULL; |
1d99702e RD |
8768 | if (_argo0) { |
8769 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8770 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
b1462dfa RD |
8771 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Insert. Expected _wxMenuBar_p."); |
8772 | return NULL; | |
8773 | } | |
8774 | } | |
8775 | if (_argo2) { | |
8776 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
8777 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxMenu_p")) { | |
8778 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxMenuBar_Insert. Expected _wxMenu_p."); | |
8ab979d7 RD |
8779 | return NULL; |
8780 | } | |
8781 | } | |
b1462dfa | 8782 | { |
185d7c3e RD |
8783 | #if PYTHON_API_VERSION >= 1009 |
8784 | char* tmpPtr; int tmpSize; | |
8785 | if (!PyString_Check(_obj3) && !PyUnicode_Check(_obj3)) { | |
794c5cb1 | 8786 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
8787 | return NULL; |
8788 | } | |
8789 | if (PyString_AsStringAndSize(_obj3, &tmpPtr, &tmpSize) == -1) | |
8790 | return NULL; | |
8791 | _arg3 = new wxString(tmpPtr, tmpSize); | |
8792 | #else | |
b1462dfa RD |
8793 | if (!PyString_Check(_obj3)) { |
8794 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8795 | return NULL; | |
8796 | } | |
185d7c3e RD |
8797 | _arg3 = new wxString(PyString_AS_STRING(_obj3), PyString_GET_SIZE(_obj3)); |
8798 | #endif | |
b1462dfa | 8799 | } |
cf694132 | 8800 | { |
4268f798 | 8801 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8802 | _result = (bool )wxMenuBar_Insert(_arg0,_arg1,_arg2,*_arg3); |
cf694132 | 8803 | |
4268f798 | 8804 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8805 | if (PyErr_Occurred()) return NULL; |
cf694132 | 8806 | } _resultobj = Py_BuildValue("i",_result); |
b1462dfa RD |
8807 | { |
8808 | if (_obj3) | |
8809 | delete _arg3; | |
8810 | } | |
8ab979d7 RD |
8811 | return _resultobj; |
8812 | } | |
8813 | ||
b1462dfa RD |
8814 | #define wxMenuBar_GetMenuCount(_swigobj) (_swigobj->GetMenuCount()) |
8815 | static PyObject *_wrap_wxMenuBar_GetMenuCount(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 8816 | PyObject * _resultobj; |
b1462dfa | 8817 | size_t _result; |
8ab979d7 | 8818 | wxMenuBar * _arg0; |
1d99702e | 8819 | PyObject * _argo0 = 0; |
b1462dfa | 8820 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
8821 | |
8822 | self = self; | |
b1462dfa | 8823 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuBar_GetMenuCount",_kwnames,&_argo0)) |
8ab979d7 | 8824 | return NULL; |
1d99702e RD |
8825 | if (_argo0) { |
8826 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8827 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
b1462dfa | 8828 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetMenuCount. Expected _wxMenuBar_p."); |
8ab979d7 RD |
8829 | return NULL; |
8830 | } | |
8831 | } | |
cf694132 | 8832 | { |
4268f798 | 8833 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8834 | _result = (size_t )wxMenuBar_GetMenuCount(_arg0); |
cf694132 | 8835 | |
4268f798 | 8836 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8837 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 8838 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
8839 | return _resultobj; |
8840 | } | |
8841 | ||
b1462dfa RD |
8842 | #define wxMenuBar_GetMenu(_swigobj,_swigarg0) (_swigobj->GetMenu(_swigarg0)) |
8843 | static PyObject *_wrap_wxMenuBar_GetMenu(PyObject *self, PyObject *args, PyObject *kwargs) { | |
06c0fba4 | 8844 | PyObject * _resultobj; |
b1462dfa | 8845 | wxMenu * _result; |
06c0fba4 | 8846 | wxMenuBar * _arg0; |
b1462dfa | 8847 | size_t _arg1; |
06c0fba4 | 8848 | PyObject * _argo0 = 0; |
b1462dfa | 8849 | char *_kwnames[] = { "self","pos", NULL }; |
06c0fba4 RD |
8850 | |
8851 | self = self; | |
b1462dfa | 8852 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_GetMenu",_kwnames,&_argo0,&_arg1)) |
06c0fba4 RD |
8853 | return NULL; |
8854 | if (_argo0) { | |
8855 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8856 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
b1462dfa | 8857 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetMenu. Expected _wxMenuBar_p."); |
06c0fba4 RD |
8858 | return NULL; |
8859 | } | |
8860 | } | |
8861 | { | |
4268f798 | 8862 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 8863 | _result = (wxMenu *)wxMenuBar_GetMenu(_arg0,_arg1); |
06c0fba4 | 8864 | |
4268f798 | 8865 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8866 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8867 | }{ _resultobj = wxPyMake_wxObject(_result); } |
06c0fba4 RD |
8868 | return _resultobj; |
8869 | } | |
8870 | ||
2abc0a0f RD |
8871 | #define wxMenuBar_Replace(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->Replace(_swigarg0,_swigarg1,_swigarg2)) |
8872 | static PyObject *_wrap_wxMenuBar_Replace(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8873 | PyObject * _resultobj; | |
8874 | wxMenu * _result; | |
8875 | wxMenuBar * _arg0; | |
8876 | size_t _arg1; | |
8877 | wxMenu * _arg2; | |
8878 | wxString * _arg3; | |
8879 | PyObject * _argo0 = 0; | |
8880 | PyObject * _argo2 = 0; | |
8881 | PyObject * _obj3 = 0; | |
8882 | char *_kwnames[] = { "self","pos","menu","title", NULL }; | |
2abc0a0f RD |
8883 | |
8884 | self = self; | |
8885 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiOO:wxMenuBar_Replace",_kwnames,&_argo0,&_arg1,&_argo2,&_obj3)) | |
8886 | return NULL; | |
8887 | if (_argo0) { | |
8888 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8889 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
8890 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Replace. Expected _wxMenuBar_p."); | |
8891 | return NULL; | |
8892 | } | |
8893 | } | |
8894 | if (_argo2) { | |
8895 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
8896 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxMenu_p")) { | |
8897 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxMenuBar_Replace. Expected _wxMenu_p."); | |
8898 | return NULL; | |
8899 | } | |
8900 | } | |
8901 | { | |
185d7c3e RD |
8902 | #if PYTHON_API_VERSION >= 1009 |
8903 | char* tmpPtr; int tmpSize; | |
8904 | if (!PyString_Check(_obj3) && !PyUnicode_Check(_obj3)) { | |
794c5cb1 | 8905 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
8906 | return NULL; |
8907 | } | |
8908 | if (PyString_AsStringAndSize(_obj3, &tmpPtr, &tmpSize) == -1) | |
8909 | return NULL; | |
8910 | _arg3 = new wxString(tmpPtr, tmpSize); | |
8911 | #else | |
2abc0a0f RD |
8912 | if (!PyString_Check(_obj3)) { |
8913 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8914 | return NULL; | |
8915 | } | |
185d7c3e RD |
8916 | _arg3 = new wxString(PyString_AS_STRING(_obj3), PyString_GET_SIZE(_obj3)); |
8917 | #endif | |
2abc0a0f RD |
8918 | } |
8919 | { | |
4268f798 | 8920 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2abc0a0f RD |
8921 | _result = (wxMenu *)wxMenuBar_Replace(_arg0,_arg1,_arg2,*_arg3); |
8922 | ||
4268f798 | 8923 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8924 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8925 | }{ _resultobj = wxPyMake_wxObject(_result); } |
2abc0a0f RD |
8926 | { |
8927 | if (_obj3) | |
8928 | delete _arg3; | |
8929 | } | |
8930 | return _resultobj; | |
8931 | } | |
8932 | ||
8933 | #define wxMenuBar_Remove(_swigobj,_swigarg0) (_swigobj->Remove(_swigarg0)) | |
8934 | static PyObject *_wrap_wxMenuBar_Remove(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8935 | PyObject * _resultobj; | |
8936 | wxMenu * _result; | |
8937 | wxMenuBar * _arg0; | |
8938 | size_t _arg1; | |
8939 | PyObject * _argo0 = 0; | |
8940 | char *_kwnames[] = { "self","pos", NULL }; | |
2abc0a0f RD |
8941 | |
8942 | self = self; | |
8943 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_Remove",_kwnames,&_argo0,&_arg1)) | |
8944 | return NULL; | |
8945 | if (_argo0) { | |
8946 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8947 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
8948 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Remove. Expected _wxMenuBar_p."); | |
8949 | return NULL; | |
8950 | } | |
8951 | } | |
8952 | { | |
4268f798 | 8953 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2abc0a0f RD |
8954 | _result = (wxMenu *)wxMenuBar_Remove(_arg0,_arg1); |
8955 | ||
4268f798 | 8956 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8957 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 8958 | }{ _resultobj = wxPyMake_wxObject(_result); } |
2abc0a0f RD |
8959 | return _resultobj; |
8960 | } | |
8961 | ||
b1462dfa RD |
8962 | #define wxMenuBar_EnableTop(_swigobj,_swigarg0,_swigarg1) (_swigobj->EnableTop(_swigarg0,_swigarg1)) |
8963 | static PyObject *_wrap_wxMenuBar_EnableTop(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 8964 | PyObject * _resultobj; |
b1462dfa RD |
8965 | wxMenuBar * _arg0; |
8966 | size_t _arg1; | |
8967 | bool _arg2; | |
8968 | PyObject * _argo0 = 0; | |
8969 | int tempbool2; | |
8970 | char *_kwnames[] = { "self","pos","enable", NULL }; | |
8971 | ||
8972 | self = self; | |
8973 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxMenuBar_EnableTop",_kwnames,&_argo0,&_arg1,&tempbool2)) | |
8974 | return NULL; | |
8975 | if (_argo0) { | |
8976 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8977 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
8978 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_EnableTop. Expected _wxMenuBar_p."); | |
8979 | return NULL; | |
8980 | } | |
8981 | } | |
8982 | _arg2 = (bool ) tempbool2; | |
8983 | { | |
4268f798 | 8984 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
8985 | wxMenuBar_EnableTop(_arg0,_arg1,_arg2); |
8986 | ||
4268f798 | 8987 | wxPyEndAllowThreads(__tstate); |
493f1553 | 8988 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
8989 | } Py_INCREF(Py_None); |
8990 | _resultobj = Py_None; | |
8991 | return _resultobj; | |
8992 | } | |
8993 | ||
8994 | #define wxMenuBar_SetLabelTop(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetLabelTop(_swigarg0,_swigarg1)) | |
8995 | static PyObject *_wrap_wxMenuBar_SetLabelTop(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8996 | PyObject * _resultobj; | |
8997 | wxMenuBar * _arg0; | |
8998 | size_t _arg1; | |
8999 | wxString * _arg2; | |
1d99702e | 9000 | PyObject * _argo0 = 0; |
cf694132 | 9001 | PyObject * _obj2 = 0; |
b1462dfa | 9002 | char *_kwnames[] = { "self","pos","label", NULL }; |
cf694132 RD |
9003 | |
9004 | self = self; | |
b1462dfa | 9005 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxMenuBar_SetLabelTop",_kwnames,&_argo0,&_arg1,&_obj2)) |
cf694132 | 9006 | return NULL; |
1d99702e RD |
9007 | if (_argo0) { |
9008 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
9009 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { |
9010 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_SetLabelTop. Expected _wxMenuBar_p."); | |
cf694132 RD |
9011 | return NULL; |
9012 | } | |
9013 | } | |
cf694132 | 9014 | { |
185d7c3e RD |
9015 | #if PYTHON_API_VERSION >= 1009 |
9016 | char* tmpPtr; int tmpSize; | |
9017 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 9018 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
9019 | return NULL; |
9020 | } | |
9021 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
9022 | return NULL; | |
9023 | _arg2 = new wxString(tmpPtr, tmpSize); | |
9024 | #else | |
cf694132 RD |
9025 | if (!PyString_Check(_obj2)) { |
9026 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9027 | return NULL; | |
9028 | } | |
185d7c3e RD |
9029 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
9030 | #endif | |
cf694132 | 9031 | } |
cf694132 | 9032 | { |
4268f798 | 9033 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
9034 | wxMenuBar_SetLabelTop(_arg0,_arg1,*_arg2); |
9035 | ||
4268f798 | 9036 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9037 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
9038 | } Py_INCREF(Py_None); |
9039 | _resultobj = Py_None; | |
9040 | { | |
9041 | if (_obj2) | |
9042 | delete _arg2; | |
9043 | } | |
9044 | return _resultobj; | |
9045 | } | |
9046 | ||
9047 | #define wxMenuBar_GetLabelTop(_swigobj,_swigarg0) (_swigobj->GetLabelTop(_swigarg0)) | |
9048 | static PyObject *_wrap_wxMenuBar_GetLabelTop(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9049 | PyObject * _resultobj; | |
9050 | wxString * _result; | |
9051 | wxMenuBar * _arg0; | |
9052 | size_t _arg1; | |
9053 | PyObject * _argo0 = 0; | |
9054 | char *_kwnames[] = { "self","pos", NULL }; | |
9055 | ||
9056 | self = self; | |
9057 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_GetLabelTop",_kwnames,&_argo0,&_arg1)) | |
9058 | return NULL; | |
9059 | if (_argo0) { | |
9060 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9061 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
9062 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetLabelTop. Expected _wxMenuBar_p."); | |
9063 | return NULL; | |
9064 | } | |
9065 | } | |
9066 | { | |
4268f798 | 9067 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
9068 | _result = new wxString (wxMenuBar_GetLabelTop(_arg0,_arg1)); |
9069 | ||
4268f798 | 9070 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9071 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9072 | }{ |
eec92d76 | 9073 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
b1462dfa RD |
9074 | } |
9075 | { | |
9076 | delete _result; | |
9077 | } | |
9078 | return _resultobj; | |
9079 | } | |
9080 | ||
3a0958b1 RD |
9081 | #define wxMenuBar_FindMenu(_swigobj,_swigarg0) (_swigobj->FindMenu(_swigarg0)) |
9082 | static PyObject *_wrap_wxMenuBar_FindMenu(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9083 | PyObject * _resultobj; | |
9084 | int _result; | |
9085 | wxMenuBar * _arg0; | |
9086 | wxString * _arg1; | |
9087 | PyObject * _argo0 = 0; | |
9088 | PyObject * _obj1 = 0; | |
9089 | char *_kwnames[] = { "self","title", NULL }; | |
9090 | ||
9091 | self = self; | |
9092 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuBar_FindMenu",_kwnames,&_argo0,&_obj1)) | |
9093 | return NULL; | |
9094 | if (_argo0) { | |
9095 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9096 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
9097 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_FindMenu. Expected _wxMenuBar_p."); | |
9098 | return NULL; | |
9099 | } | |
9100 | } | |
9101 | { | |
9102 | #if PYTHON_API_VERSION >= 1009 | |
9103 | char* tmpPtr; int tmpSize; | |
9104 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
9105 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9106 | return NULL; | |
9107 | } | |
9108 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
9109 | return NULL; | |
9110 | _arg1 = new wxString(tmpPtr, tmpSize); | |
9111 | #else | |
9112 | if (!PyString_Check(_obj1)) { | |
9113 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9114 | return NULL; | |
9115 | } | |
9116 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); | |
9117 | #endif | |
9118 | } | |
9119 | { | |
4268f798 | 9120 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
3a0958b1 RD |
9121 | _result = (int )wxMenuBar_FindMenu(_arg0,*_arg1); |
9122 | ||
4268f798 | 9123 | wxPyEndAllowThreads(__tstate); |
3a0958b1 RD |
9124 | if (PyErr_Occurred()) return NULL; |
9125 | } _resultobj = Py_BuildValue("i",_result); | |
9126 | { | |
9127 | if (_obj1) | |
9128 | delete _arg1; | |
9129 | } | |
9130 | return _resultobj; | |
9131 | } | |
9132 | ||
b1462dfa RD |
9133 | #define wxMenuBar_FindMenuItem(_swigobj,_swigarg0,_swigarg1) (_swigobj->FindMenuItem(_swigarg0,_swigarg1)) |
9134 | static PyObject *_wrap_wxMenuBar_FindMenuItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9135 | PyObject * _resultobj; | |
9136 | int _result; | |
9137 | wxMenuBar * _arg0; | |
9138 | wxString * _arg1; | |
9139 | wxString * _arg2; | |
9140 | PyObject * _argo0 = 0; | |
9141 | PyObject * _obj1 = 0; | |
9142 | PyObject * _obj2 = 0; | |
9143 | char *_kwnames[] = { "self","menuString","itemString", NULL }; | |
9144 | ||
9145 | self = self; | |
9146 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxMenuBar_FindMenuItem",_kwnames,&_argo0,&_obj1,&_obj2)) | |
9147 | return NULL; | |
9148 | if (_argo0) { | |
9149 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9150 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
9151 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_FindMenuItem. Expected _wxMenuBar_p."); | |
9152 | return NULL; | |
9153 | } | |
9154 | } | |
9155 | { | |
185d7c3e RD |
9156 | #if PYTHON_API_VERSION >= 1009 |
9157 | char* tmpPtr; int tmpSize; | |
9158 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 9159 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
9160 | return NULL; |
9161 | } | |
9162 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
9163 | return NULL; | |
9164 | _arg1 = new wxString(tmpPtr, tmpSize); | |
9165 | #else | |
b1462dfa | 9166 | if (!PyString_Check(_obj1)) { |
cf694132 RD |
9167 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
9168 | return NULL; | |
9169 | } | |
185d7c3e RD |
9170 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
9171 | #endif | |
cf694132 | 9172 | } |
b1462dfa | 9173 | { |
185d7c3e RD |
9174 | #if PYTHON_API_VERSION >= 1009 |
9175 | char* tmpPtr; int tmpSize; | |
9176 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 9177 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
9178 | return NULL; |
9179 | } | |
9180 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
9181 | return NULL; | |
9182 | _arg2 = new wxString(tmpPtr, tmpSize); | |
9183 | #else | |
b1462dfa RD |
9184 | if (!PyString_Check(_obj2)) { |
9185 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9186 | return NULL; | |
9187 | } | |
185d7c3e RD |
9188 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
9189 | #endif | |
b1462dfa RD |
9190 | } |
9191 | { | |
4268f798 | 9192 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
9193 | _result = (int )wxMenuBar_FindMenuItem(_arg0,*_arg1,*_arg2); |
9194 | ||
4268f798 | 9195 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9196 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
9197 | } _resultobj = Py_BuildValue("i",_result); |
9198 | { | |
9199 | if (_obj1) | |
9200 | delete _arg1; | |
9201 | } | |
9202 | { | |
9203 | if (_obj2) | |
9204 | delete _arg2; | |
9205 | } | |
9206 | return _resultobj; | |
9207 | } | |
9208 | ||
9209 | #define wxMenuBar_FindItemById(_swigobj,_swigarg0) (_swigobj->FindItem(_swigarg0)) | |
9210 | static PyObject *_wrap_wxMenuBar_FindItemById(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9211 | PyObject * _resultobj; | |
9212 | wxMenuItem * _result; | |
9213 | wxMenuBar * _arg0; | |
9214 | int _arg1; | |
9215 | PyObject * _argo0 = 0; | |
9216 | char *_kwnames[] = { "self","id", NULL }; | |
b1462dfa RD |
9217 | |
9218 | self = self; | |
9219 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_FindItemById",_kwnames,&_argo0,&_arg1)) | |
9220 | return NULL; | |
9221 | if (_argo0) { | |
9222 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9223 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
9224 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_FindItemById. Expected _wxMenuBar_p."); | |
cf694132 RD |
9225 | return NULL; |
9226 | } | |
9227 | } | |
9228 | { | |
4268f798 | 9229 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9230 | _result = (wxMenuItem *)wxMenuBar_FindItemById(_arg0,_arg1); |
cf694132 | 9231 | |
4268f798 | 9232 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9233 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 9234 | }{ _resultobj = wxPyMake_wxObject(_result); } |
b1462dfa | 9235 | return _resultobj; |
cf694132 | 9236 | } |
b1462dfa RD |
9237 | |
9238 | #define wxMenuBar_Enable(_swigobj,_swigarg0,_swigarg1) (_swigobj->Enable(_swigarg0,_swigarg1)) | |
9239 | static PyObject *_wrap_wxMenuBar_Enable(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9240 | PyObject * _resultobj; | |
9241 | wxMenuBar * _arg0; | |
9242 | int _arg1; | |
9243 | bool _arg2; | |
9244 | PyObject * _argo0 = 0; | |
9245 | int tempbool2; | |
9246 | char *_kwnames[] = { "self","id","enable", NULL }; | |
9247 | ||
9248 | self = self; | |
9249 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxMenuBar_Enable",_kwnames,&_argo0,&_arg1,&tempbool2)) | |
9250 | return NULL; | |
9251 | if (_argo0) { | |
9252 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9253 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
9254 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Enable. Expected _wxMenuBar_p."); | |
9255 | return NULL; | |
9256 | } | |
9257 | } | |
9258 | _arg2 = (bool ) tempbool2; | |
cf694132 | 9259 | { |
4268f798 | 9260 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
9261 | wxMenuBar_Enable(_arg0,_arg1,_arg2); |
9262 | ||
4268f798 | 9263 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9264 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
9265 | } Py_INCREF(Py_None); |
9266 | _resultobj = Py_None; | |
9267 | return _resultobj; | |
cf694132 | 9268 | } |
b1462dfa RD |
9269 | |
9270 | #define wxMenuBar_Check(_swigobj,_swigarg0,_swigarg1) (_swigobj->Check(_swigarg0,_swigarg1)) | |
9271 | static PyObject *_wrap_wxMenuBar_Check(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9272 | PyObject * _resultobj; | |
9273 | wxMenuBar * _arg0; | |
9274 | int _arg1; | |
9275 | bool _arg2; | |
9276 | PyObject * _argo0 = 0; | |
9277 | int tempbool2; | |
9278 | char *_kwnames[] = { "self","id","check", NULL }; | |
9279 | ||
9280 | self = self; | |
9281 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxMenuBar_Check",_kwnames,&_argo0,&_arg1,&tempbool2)) | |
9282 | return NULL; | |
9283 | if (_argo0) { | |
9284 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9285 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
9286 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Check. Expected _wxMenuBar_p."); | |
9287 | return NULL; | |
9288 | } | |
9289 | } | |
9290 | _arg2 = (bool ) tempbool2; | |
9291 | { | |
4268f798 | 9292 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
9293 | wxMenuBar_Check(_arg0,_arg1,_arg2); |
9294 | ||
4268f798 | 9295 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9296 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
9297 | } Py_INCREF(Py_None); |
9298 | _resultobj = Py_None; | |
cf694132 RD |
9299 | return _resultobj; |
9300 | } | |
9301 | ||
b1462dfa RD |
9302 | #define wxMenuBar_IsChecked(_swigobj,_swigarg0) (_swigobj->IsChecked(_swigarg0)) |
9303 | static PyObject *_wrap_wxMenuBar_IsChecked(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 RD |
9304 | PyObject * _resultobj; |
9305 | bool _result; | |
b1462dfa RD |
9306 | wxMenuBar * _arg0; |
9307 | int _arg1; | |
1d99702e | 9308 | PyObject * _argo0 = 0; |
b1462dfa | 9309 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
9310 | |
9311 | self = self; | |
b1462dfa | 9312 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_IsChecked",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 9313 | return NULL; |
1d99702e RD |
9314 | if (_argo0) { |
9315 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
9316 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { |
9317 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_IsChecked. Expected _wxMenuBar_p."); | |
8ab979d7 RD |
9318 | return NULL; |
9319 | } | |
9320 | } | |
cf694132 | 9321 | { |
4268f798 | 9322 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9323 | _result = (bool )wxMenuBar_IsChecked(_arg0,_arg1); |
cf694132 | 9324 | |
4268f798 | 9325 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9326 | if (PyErr_Occurred()) return NULL; |
cf694132 | 9327 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
9328 | return _resultobj; |
9329 | } | |
9330 | ||
b1462dfa RD |
9331 | #define wxMenuBar_IsEnabled(_swigobj,_swigarg0) (_swigobj->IsEnabled(_swigarg0)) |
9332 | static PyObject *_wrap_wxMenuBar_IsEnabled(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 RD |
9333 | PyObject * _resultobj; |
9334 | bool _result; | |
b1462dfa RD |
9335 | wxMenuBar * _arg0; |
9336 | int _arg1; | |
1d99702e | 9337 | PyObject * _argo0 = 0; |
b1462dfa | 9338 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
9339 | |
9340 | self = self; | |
b1462dfa | 9341 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_IsEnabled",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 9342 | return NULL; |
1d99702e RD |
9343 | if (_argo0) { |
9344 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
9345 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { |
9346 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_IsEnabled. Expected _wxMenuBar_p."); | |
8ab979d7 RD |
9347 | return NULL; |
9348 | } | |
9349 | } | |
cf694132 | 9350 | { |
4268f798 | 9351 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9352 | _result = (bool )wxMenuBar_IsEnabled(_arg0,_arg1); |
cf694132 | 9353 | |
4268f798 | 9354 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9355 | if (PyErr_Occurred()) return NULL; |
cf694132 | 9356 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
9357 | return _resultobj; |
9358 | } | |
9359 | ||
b1462dfa RD |
9360 | #define wxMenuBar_SetLabel(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetLabel(_swigarg0,_swigarg1)) |
9361 | static PyObject *_wrap_wxMenuBar_SetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 9362 | PyObject * _resultobj; |
b1462dfa RD |
9363 | wxMenuBar * _arg0; |
9364 | int _arg1; | |
9365 | wxString * _arg2; | |
1d99702e | 9366 | PyObject * _argo0 = 0; |
b1462dfa RD |
9367 | PyObject * _obj2 = 0; |
9368 | char *_kwnames[] = { "self","id","label", NULL }; | |
8ab979d7 RD |
9369 | |
9370 | self = self; | |
b1462dfa | 9371 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxMenuBar_SetLabel",_kwnames,&_argo0,&_arg1,&_obj2)) |
8ab979d7 | 9372 | return NULL; |
1d99702e RD |
9373 | if (_argo0) { |
9374 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
9375 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { |
9376 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_SetLabel. Expected _wxMenuBar_p."); | |
8ab979d7 RD |
9377 | return NULL; |
9378 | } | |
9379 | } | |
b1462dfa | 9380 | { |
185d7c3e RD |
9381 | #if PYTHON_API_VERSION >= 1009 |
9382 | char* tmpPtr; int tmpSize; | |
9383 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 9384 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
9385 | return NULL; |
9386 | } | |
9387 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
9388 | return NULL; | |
9389 | _arg2 = new wxString(tmpPtr, tmpSize); | |
9390 | #else | |
b1462dfa RD |
9391 | if (!PyString_Check(_obj2)) { |
9392 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9393 | return NULL; | |
9394 | } | |
185d7c3e RD |
9395 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
9396 | #endif | |
b1462dfa | 9397 | } |
cf694132 | 9398 | { |
4268f798 | 9399 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9400 | wxMenuBar_SetLabel(_arg0,_arg1,*_arg2); |
cf694132 | 9401 | |
4268f798 | 9402 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9403 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
9404 | } Py_INCREF(Py_None); |
9405 | _resultobj = Py_None; | |
9406 | { | |
9407 | if (_obj2) | |
9408 | delete _arg2; | |
9409 | } | |
8ab979d7 RD |
9410 | return _resultobj; |
9411 | } | |
9412 | ||
b1462dfa RD |
9413 | #define wxMenuBar_GetLabel(_swigobj,_swigarg0) (_swigobj->GetLabel(_swigarg0)) |
9414 | static PyObject *_wrap_wxMenuBar_GetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 9415 | PyObject * _resultobj; |
b1462dfa RD |
9416 | wxString * _result; |
9417 | wxMenuBar * _arg0; | |
9418 | int _arg1; | |
1d99702e | 9419 | PyObject * _argo0 = 0; |
b1462dfa | 9420 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
9421 | |
9422 | self = self; | |
b1462dfa | 9423 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_GetLabel",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 9424 | return NULL; |
1d99702e RD |
9425 | if (_argo0) { |
9426 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
9427 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { |
9428 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetLabel. Expected _wxMenuBar_p."); | |
9429 | return NULL; | |
9430 | } | |
9431 | } | |
9432 | { | |
4268f798 | 9433 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
9434 | _result = new wxString (wxMenuBar_GetLabel(_arg0,_arg1)); |
9435 | ||
4268f798 | 9436 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9437 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9438 | }{ |
eec92d76 | 9439 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
b1462dfa RD |
9440 | } |
9441 | { | |
9442 | delete _result; | |
9443 | } | |
9444 | return _resultobj; | |
9445 | } | |
9446 | ||
9447 | #define wxMenuBar_SetHelpString(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetHelpString(_swigarg0,_swigarg1)) | |
9448 | static PyObject *_wrap_wxMenuBar_SetHelpString(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9449 | PyObject * _resultobj; | |
9450 | wxMenuBar * _arg0; | |
9451 | int _arg1; | |
9452 | wxString * _arg2; | |
9453 | PyObject * _argo0 = 0; | |
9454 | PyObject * _obj2 = 0; | |
9455 | char *_kwnames[] = { "self","id","helpString", NULL }; | |
9456 | ||
9457 | self = self; | |
9458 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxMenuBar_SetHelpString",_kwnames,&_argo0,&_arg1,&_obj2)) | |
9459 | return NULL; | |
9460 | if (_argo0) { | |
9461 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9462 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
9463 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_SetHelpString. Expected _wxMenuBar_p."); | |
9464 | return NULL; | |
9465 | } | |
9466 | } | |
9467 | { | |
185d7c3e RD |
9468 | #if PYTHON_API_VERSION >= 1009 |
9469 | char* tmpPtr; int tmpSize; | |
9470 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 9471 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
9472 | return NULL; |
9473 | } | |
9474 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
9475 | return NULL; | |
9476 | _arg2 = new wxString(tmpPtr, tmpSize); | |
9477 | #else | |
b1462dfa RD |
9478 | if (!PyString_Check(_obj2)) { |
9479 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9480 | return NULL; | |
9481 | } | |
185d7c3e RD |
9482 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
9483 | #endif | |
b1462dfa RD |
9484 | } |
9485 | { | |
4268f798 | 9486 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
9487 | wxMenuBar_SetHelpString(_arg0,_arg1,*_arg2); |
9488 | ||
4268f798 | 9489 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9490 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
9491 | } Py_INCREF(Py_None); |
9492 | _resultobj = Py_None; | |
9493 | { | |
9494 | if (_obj2) | |
9495 | delete _arg2; | |
9496 | } | |
9497 | return _resultobj; | |
9498 | } | |
9499 | ||
9500 | #define wxMenuBar_GetHelpString(_swigobj,_swigarg0) (_swigobj->GetHelpString(_swigarg0)) | |
9501 | static PyObject *_wrap_wxMenuBar_GetHelpString(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9502 | PyObject * _resultobj; | |
9503 | wxString * _result; | |
9504 | wxMenuBar * _arg0; | |
9505 | int _arg1; | |
9506 | PyObject * _argo0 = 0; | |
9507 | char *_kwnames[] = { "self","id", NULL }; | |
9508 | ||
9509 | self = self; | |
9510 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuBar_GetHelpString",_kwnames,&_argo0,&_arg1)) | |
9511 | return NULL; | |
9512 | if (_argo0) { | |
9513 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9514 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuBar_p")) { | |
9515 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetHelpString. Expected _wxMenuBar_p."); | |
8ab979d7 RD |
9516 | return NULL; |
9517 | } | |
9518 | } | |
cf694132 | 9519 | { |
4268f798 | 9520 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9521 | _result = new wxString (wxMenuBar_GetHelpString(_arg0,_arg1)); |
cf694132 | 9522 | |
4268f798 | 9523 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9524 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9525 | }{ |
eec92d76 | 9526 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
b1462dfa RD |
9527 | } |
9528 | { | |
9529 | delete _result; | |
9530 | } | |
8ab979d7 RD |
9531 | return _resultobj; |
9532 | } | |
9533 | ||
9416aa89 RD |
9534 | static void *SwigwxMenuItemTowxObject(void *ptr) { |
9535 | wxMenuItem *src; | |
9536 | wxObject *dest; | |
9537 | src = (wxMenuItem *) ptr; | |
9538 | dest = (wxObject *) src; | |
9539 | return (void *) dest; | |
9540 | } | |
9541 | ||
b1462dfa RD |
9542 | #define new_wxMenuItem(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (new wxMenuItem(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) |
9543 | static PyObject *_wrap_new_wxMenuItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 9544 | PyObject * _resultobj; |
b1462dfa RD |
9545 | wxMenuItem * _result; |
9546 | wxMenu * _arg0 = (wxMenu *) NULL; | |
4c9993c3 | 9547 | int _arg1 = (int ) wxID_SEPARATOR; |
23bed520 RD |
9548 | wxString * _arg2 = (wxString *) &wxEmptyString; |
9549 | wxString * _arg3 = (wxString *) &wxEmptyString; | |
b1462dfa RD |
9550 | bool _arg4 = (bool ) FALSE; |
9551 | wxMenu * _arg5 = (wxMenu *) NULL; | |
1d99702e | 9552 | PyObject * _argo0 = 0; |
b1462dfa RD |
9553 | PyObject * _obj2 = 0; |
9554 | PyObject * _obj3 = 0; | |
9555 | int tempbool4 = (int) FALSE; | |
9556 | PyObject * _argo5 = 0; | |
9557 | char *_kwnames[] = { "parentMenu","id","text","help","isCheckable","subMenu", NULL }; | |
9558 | char _ptemp[128]; | |
8ab979d7 RD |
9559 | |
9560 | self = self; | |
b1462dfa | 9561 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|OiOOiO:new_wxMenuItem",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&tempbool4,&_argo5)) |
8ab979d7 | 9562 | return NULL; |
1d99702e RD |
9563 | if (_argo0) { |
9564 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
b1462dfa RD |
9565 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenu_p")) { |
9566 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxMenuItem. Expected _wxMenu_p."); | |
9567 | return NULL; | |
9568 | } | |
9569 | } | |
9570 | if (_obj2) | |
9571 | { | |
185d7c3e RD |
9572 | #if PYTHON_API_VERSION >= 1009 |
9573 | char* tmpPtr; int tmpSize; | |
9574 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 9575 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
9576 | return NULL; |
9577 | } | |
9578 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
9579 | return NULL; | |
9580 | _arg2 = new wxString(tmpPtr, tmpSize); | |
9581 | #else | |
b1462dfa RD |
9582 | if (!PyString_Check(_obj2)) { |
9583 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9584 | return NULL; | |
9585 | } | |
185d7c3e RD |
9586 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
9587 | #endif | |
b1462dfa RD |
9588 | } |
9589 | if (_obj3) | |
9590 | { | |
185d7c3e RD |
9591 | #if PYTHON_API_VERSION >= 1009 |
9592 | char* tmpPtr; int tmpSize; | |
9593 | if (!PyString_Check(_obj3) && !PyUnicode_Check(_obj3)) { | |
794c5cb1 | 9594 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
9595 | return NULL; |
9596 | } | |
9597 | if (PyString_AsStringAndSize(_obj3, &tmpPtr, &tmpSize) == -1) | |
9598 | return NULL; | |
9599 | _arg3 = new wxString(tmpPtr, tmpSize); | |
9600 | #else | |
b1462dfa RD |
9601 | if (!PyString_Check(_obj3)) { |
9602 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9603 | return NULL; | |
9604 | } | |
185d7c3e RD |
9605 | _arg3 = new wxString(PyString_AS_STRING(_obj3), PyString_GET_SIZE(_obj3)); |
9606 | #endif | |
b1462dfa RD |
9607 | } |
9608 | _arg4 = (bool ) tempbool4; | |
9609 | if (_argo5) { | |
9610 | if (_argo5 == Py_None) { _arg5 = NULL; } | |
9611 | else if (SWIG_GetPtrObj(_argo5,(void **) &_arg5,"_wxMenu_p")) { | |
9612 | PyErr_SetString(PyExc_TypeError,"Type error in argument 6 of new_wxMenuItem. Expected _wxMenu_p."); | |
8ab979d7 RD |
9613 | return NULL; |
9614 | } | |
9615 | } | |
cf694132 | 9616 | { |
4268f798 | 9617 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9618 | _result = (wxMenuItem *)new_wxMenuItem(_arg0,_arg1,*_arg2,*_arg3,_arg4,_arg5); |
cf694132 | 9619 | |
4268f798 | 9620 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9621 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
9622 | } if (_result) { |
9623 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxMenuItem_p"); | |
9624 | _resultobj = Py_BuildValue("s",_ptemp); | |
9625 | } else { | |
9626 | Py_INCREF(Py_None); | |
9627 | _resultobj = Py_None; | |
9628 | } | |
9629 | { | |
9630 | if (_obj2) | |
9631 | delete _arg2; | |
9632 | } | |
9633 | { | |
9634 | if (_obj3) | |
9635 | delete _arg3; | |
9636 | } | |
8ab979d7 RD |
9637 | return _resultobj; |
9638 | } | |
9639 | ||
b1462dfa RD |
9640 | #define wxMenuItem_GetMenu(_swigobj) (_swigobj->GetMenu()) |
9641 | static PyObject *_wrap_wxMenuItem_GetMenu(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 9642 | PyObject * _resultobj; |
b1462dfa | 9643 | wxMenu * _result; |
8ab979d7 | 9644 | wxMenuItem * _arg0; |
1d99702e | 9645 | PyObject * _argo0 = 0; |
efc5f224 | 9646 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
9647 | |
9648 | self = self; | |
b1462dfa | 9649 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetMenu",_kwnames,&_argo0)) |
8ab979d7 | 9650 | return NULL; |
1d99702e RD |
9651 | if (_argo0) { |
9652 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9653 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9654 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetMenu. Expected _wxMenuItem_p."); |
8ab979d7 RD |
9655 | return NULL; |
9656 | } | |
9657 | } | |
cf694132 | 9658 | { |
4268f798 | 9659 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9660 | _result = (wxMenu *)wxMenuItem_GetMenu(_arg0); |
cf694132 | 9661 | |
4268f798 | 9662 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9663 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 9664 | }{ _resultobj = wxPyMake_wxObject(_result); } |
8ab979d7 RD |
9665 | return _resultobj; |
9666 | } | |
9667 | ||
2abc0a0f RD |
9668 | #define wxMenuItem_SetId(_swigobj,_swigarg0) (_swigobj->SetId(_swigarg0)) |
9669 | static PyObject *_wrap_wxMenuItem_SetId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 RD |
9670 | PyObject * _resultobj; |
9671 | wxMenuItem * _arg0; | |
2abc0a0f | 9672 | int _arg1; |
1d99702e | 9673 | PyObject * _argo0 = 0; |
2abc0a0f | 9674 | char *_kwnames[] = { "self","id", NULL }; |
8ab979d7 RD |
9675 | |
9676 | self = self; | |
2abc0a0f | 9677 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuItem_SetId",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 9678 | return NULL; |
1d99702e RD |
9679 | if (_argo0) { |
9680 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9681 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
2abc0a0f | 9682 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetId. Expected _wxMenuItem_p."); |
8ab979d7 RD |
9683 | return NULL; |
9684 | } | |
9685 | } | |
cf694132 | 9686 | { |
4268f798 | 9687 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
2abc0a0f | 9688 | wxMenuItem_SetId(_arg0,_arg1); |
cf694132 | 9689 | |
4268f798 | 9690 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9691 | if (PyErr_Occurred()) return NULL; |
cf694132 | 9692 | } Py_INCREF(Py_None); |
8ab979d7 | 9693 | _resultobj = Py_None; |
8ab979d7 RD |
9694 | return _resultobj; |
9695 | } | |
9696 | ||
b1462dfa RD |
9697 | #define wxMenuItem_GetId(_swigobj) (_swigobj->GetId()) |
9698 | static PyObject *_wrap_wxMenuItem_GetId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 9699 | PyObject * _resultobj; |
b1462dfa | 9700 | int _result; |
8ab979d7 | 9701 | wxMenuItem * _arg0; |
1d99702e | 9702 | PyObject * _argo0 = 0; |
efc5f224 | 9703 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
9704 | |
9705 | self = self; | |
b1462dfa | 9706 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetId",_kwnames,&_argo0)) |
8ab979d7 | 9707 | return NULL; |
1d99702e RD |
9708 | if (_argo0) { |
9709 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9710 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9711 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetId. Expected _wxMenuItem_p."); |
8ab979d7 RD |
9712 | return NULL; |
9713 | } | |
9714 | } | |
8ab979d7 | 9715 | { |
4268f798 | 9716 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9717 | _result = (int )wxMenuItem_GetId(_arg0); |
cf694132 | 9718 | |
4268f798 | 9719 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9720 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9721 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
9722 | return _resultobj; |
9723 | } | |
9724 | ||
b1462dfa RD |
9725 | #define wxMenuItem_IsSeparator(_swigobj) (_swigobj->IsSeparator()) |
9726 | static PyObject *_wrap_wxMenuItem_IsSeparator(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 9727 | PyObject * _resultobj; |
b1462dfa | 9728 | bool _result; |
8ab979d7 | 9729 | wxMenuItem * _arg0; |
1d99702e | 9730 | PyObject * _argo0 = 0; |
efc5f224 | 9731 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
9732 | |
9733 | self = self; | |
b1462dfa | 9734 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_IsSeparator",_kwnames,&_argo0)) |
8ab979d7 | 9735 | return NULL; |
1d99702e RD |
9736 | if (_argo0) { |
9737 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9738 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9739 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsSeparator. Expected _wxMenuItem_p."); |
8ab979d7 RD |
9740 | return NULL; |
9741 | } | |
9742 | } | |
8ab979d7 | 9743 | { |
4268f798 | 9744 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9745 | _result = (bool )wxMenuItem_IsSeparator(_arg0); |
cf694132 | 9746 | |
4268f798 | 9747 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9748 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9749 | } _resultobj = Py_BuildValue("i",_result); |
8ab979d7 RD |
9750 | return _resultobj; |
9751 | } | |
9752 | ||
b1462dfa RD |
9753 | #define wxMenuItem_SetText(_swigobj,_swigarg0) (_swigobj->SetText(_swigarg0)) |
9754 | static PyObject *_wrap_wxMenuItem_SetText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 RD |
9755 | PyObject * _resultobj; |
9756 | wxMenuItem * _arg0; | |
9757 | wxString * _arg1; | |
1d99702e | 9758 | PyObject * _argo0 = 0; |
8ab979d7 | 9759 | PyObject * _obj1 = 0; |
b1462dfa | 9760 | char *_kwnames[] = { "self","str", NULL }; |
8ab979d7 RD |
9761 | |
9762 | self = self; | |
b1462dfa | 9763 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetText",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 9764 | return NULL; |
1d99702e RD |
9765 | if (_argo0) { |
9766 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9767 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9768 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetText. Expected _wxMenuItem_p."); |
8ab979d7 RD |
9769 | return NULL; |
9770 | } | |
9771 | } | |
9772 | { | |
185d7c3e RD |
9773 | #if PYTHON_API_VERSION >= 1009 |
9774 | char* tmpPtr; int tmpSize; | |
9775 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 9776 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
9777 | return NULL; |
9778 | } | |
9779 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
9780 | return NULL; | |
9781 | _arg1 = new wxString(tmpPtr, tmpSize); | |
9782 | #else | |
8ab979d7 RD |
9783 | if (!PyString_Check(_obj1)) { |
9784 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
9785 | return NULL; | |
9786 | } | |
185d7c3e RD |
9787 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
9788 | #endif | |
8ab979d7 | 9789 | } |
cf694132 | 9790 | { |
4268f798 | 9791 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9792 | wxMenuItem_SetText(_arg0,*_arg1); |
cf694132 | 9793 | |
4268f798 | 9794 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9795 | if (PyErr_Occurred()) return NULL; |
cf694132 | 9796 | } Py_INCREF(Py_None); |
8ab979d7 RD |
9797 | _resultobj = Py_None; |
9798 | { | |
9799 | if (_obj1) | |
9800 | delete _arg1; | |
9801 | } | |
9802 | return _resultobj; | |
9803 | } | |
9804 | ||
b1462dfa RD |
9805 | #define wxMenuItem_GetLabel(_swigobj) (_swigobj->GetLabel()) |
9806 | static PyObject *_wrap_wxMenuItem_GetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8ab979d7 | 9807 | PyObject * _resultobj; |
b1462dfa | 9808 | wxString * _result; |
8ab979d7 | 9809 | wxMenuItem * _arg0; |
1d99702e | 9810 | PyObject * _argo0 = 0; |
b1462dfa | 9811 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
9812 | |
9813 | self = self; | |
b1462dfa | 9814 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetLabel",_kwnames,&_argo0)) |
8ab979d7 | 9815 | return NULL; |
1d99702e RD |
9816 | if (_argo0) { |
9817 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9818 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9819 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetLabel. Expected _wxMenuItem_p."); |
8ab979d7 RD |
9820 | return NULL; |
9821 | } | |
9822 | } | |
cf694132 | 9823 | { |
4268f798 | 9824 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9825 | _result = new wxString (wxMenuItem_GetLabel(_arg0)); |
cf694132 | 9826 | |
4268f798 | 9827 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9828 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9829 | }{ |
eec92d76 | 9830 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 | 9831 | } |
cf694132 | 9832 | { |
b1462dfa RD |
9833 | delete _result; |
9834 | } | |
cf694132 RD |
9835 | return _resultobj; |
9836 | } | |
9837 | ||
b1462dfa RD |
9838 | #define wxMenuItem_GetText(_swigobj) (_swigobj->GetText()) |
9839 | static PyObject *_wrap_wxMenuItem_GetText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 9840 | PyObject * _resultobj; |
b1462dfa | 9841 | wxString * _result; |
cf694132 | 9842 | wxMenuItem * _arg0; |
1d99702e | 9843 | PyObject * _argo0 = 0; |
efc5f224 | 9844 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
9845 | |
9846 | self = self; | |
b1462dfa | 9847 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetText",_kwnames,&_argo0)) |
cf694132 | 9848 | return NULL; |
1d99702e RD |
9849 | if (_argo0) { |
9850 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9851 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9852 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetText. Expected _wxMenuItem_p."); |
cf694132 RD |
9853 | return NULL; |
9854 | } | |
9855 | } | |
9856 | { | |
4268f798 | 9857 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
9858 | const wxString & _result_ref = wxMenuItem_GetText(_arg0); |
9859 | _result = (wxString *) &_result_ref; | |
cf694132 | 9860 | |
4268f798 | 9861 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9862 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9863 | }{ |
eec92d76 | 9864 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
cf694132 | 9865 | } |
cf694132 RD |
9866 | return _resultobj; |
9867 | } | |
9868 | ||
b1462dfa RD |
9869 | #define wxMenuItem_SetCheckable(_swigobj,_swigarg0) (_swigobj->SetCheckable(_swigarg0)) |
9870 | static PyObject *_wrap_wxMenuItem_SetCheckable(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 9871 | PyObject * _resultobj; |
cf694132 | 9872 | wxMenuItem * _arg0; |
b1462dfa | 9873 | bool _arg1; |
1d99702e | 9874 | PyObject * _argo0 = 0; |
b1462dfa RD |
9875 | int tempbool1; |
9876 | char *_kwnames[] = { "self","checkable", NULL }; | |
cf694132 RD |
9877 | |
9878 | self = self; | |
b1462dfa | 9879 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuItem_SetCheckable",_kwnames,&_argo0,&tempbool1)) |
cf694132 | 9880 | return NULL; |
1d99702e RD |
9881 | if (_argo0) { |
9882 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9883 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9884 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetCheckable. Expected _wxMenuItem_p."); |
cf694132 RD |
9885 | return NULL; |
9886 | } | |
9887 | } | |
b1462dfa | 9888 | _arg1 = (bool ) tempbool1; |
cf694132 | 9889 | { |
4268f798 | 9890 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9891 | wxMenuItem_SetCheckable(_arg0,_arg1); |
cf694132 | 9892 | |
4268f798 | 9893 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9894 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
9895 | } Py_INCREF(Py_None); |
9896 | _resultobj = Py_None; | |
cf694132 RD |
9897 | return _resultobj; |
9898 | } | |
9899 | ||
b1462dfa RD |
9900 | #define wxMenuItem_IsCheckable(_swigobj) (_swigobj->IsCheckable()) |
9901 | static PyObject *_wrap_wxMenuItem_IsCheckable(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 9902 | PyObject * _resultobj; |
b1462dfa | 9903 | bool _result; |
cf694132 | 9904 | wxMenuItem * _arg0; |
1d99702e | 9905 | PyObject * _argo0 = 0; |
efc5f224 | 9906 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
9907 | |
9908 | self = self; | |
b1462dfa | 9909 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_IsCheckable",_kwnames,&_argo0)) |
cf694132 | 9910 | return NULL; |
1d99702e RD |
9911 | if (_argo0) { |
9912 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9913 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9914 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsCheckable. Expected _wxMenuItem_p."); |
cf694132 RD |
9915 | return NULL; |
9916 | } | |
9917 | } | |
9918 | { | |
4268f798 | 9919 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9920 | _result = (bool )wxMenuItem_IsCheckable(_arg0); |
cf694132 | 9921 | |
4268f798 | 9922 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9923 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
9924 | } _resultobj = Py_BuildValue("i",_result); |
9925 | return _resultobj; | |
9926 | } | |
9927 | ||
b1462dfa RD |
9928 | #define wxMenuItem_IsSubMenu(_swigobj) (_swigobj->IsSubMenu()) |
9929 | static PyObject *_wrap_wxMenuItem_IsSubMenu(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 9930 | PyObject * _resultobj; |
b1462dfa | 9931 | bool _result; |
cf694132 | 9932 | wxMenuItem * _arg0; |
1d99702e | 9933 | PyObject * _argo0 = 0; |
efc5f224 | 9934 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
9935 | |
9936 | self = self; | |
b1462dfa | 9937 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_IsSubMenu",_kwnames,&_argo0)) |
cf694132 | 9938 | return NULL; |
1d99702e RD |
9939 | if (_argo0) { |
9940 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9941 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9942 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsSubMenu. Expected _wxMenuItem_p."); |
cf694132 RD |
9943 | return NULL; |
9944 | } | |
9945 | } | |
9946 | { | |
4268f798 | 9947 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9948 | _result = (bool )wxMenuItem_IsSubMenu(_arg0); |
cf694132 | 9949 | |
4268f798 | 9950 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9951 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 9952 | } _resultobj = Py_BuildValue("i",_result); |
cf694132 RD |
9953 | return _resultobj; |
9954 | } | |
9955 | ||
b1462dfa RD |
9956 | #define wxMenuItem_SetSubMenu(_swigobj,_swigarg0) (_swigobj->SetSubMenu(_swigarg0)) |
9957 | static PyObject *_wrap_wxMenuItem_SetSubMenu(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 RD |
9958 | PyObject * _resultobj; |
9959 | wxMenuItem * _arg0; | |
b1462dfa | 9960 | wxMenu * _arg1; |
1d99702e RD |
9961 | PyObject * _argo0 = 0; |
9962 | PyObject * _argo1 = 0; | |
b1462dfa | 9963 | char *_kwnames[] = { "self","menu", NULL }; |
cf694132 RD |
9964 | |
9965 | self = self; | |
b1462dfa | 9966 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetSubMenu",_kwnames,&_argo0,&_argo1)) |
cf694132 | 9967 | return NULL; |
1d99702e RD |
9968 | if (_argo0) { |
9969 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9970 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 9971 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetSubMenu. Expected _wxMenuItem_p."); |
cf694132 RD |
9972 | return NULL; |
9973 | } | |
9974 | } | |
1d99702e RD |
9975 | if (_argo1) { |
9976 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
b1462dfa RD |
9977 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxMenu_p")) { |
9978 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenuItem_SetSubMenu. Expected _wxMenu_p."); | |
cf694132 RD |
9979 | return NULL; |
9980 | } | |
9981 | } | |
9982 | { | |
4268f798 | 9983 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 9984 | wxMenuItem_SetSubMenu(_arg0,_arg1); |
cf694132 | 9985 | |
4268f798 | 9986 | wxPyEndAllowThreads(__tstate); |
493f1553 | 9987 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
9988 | } Py_INCREF(Py_None); |
9989 | _resultobj = Py_None; | |
9990 | return _resultobj; | |
9991 | } | |
9992 | ||
b1462dfa RD |
9993 | #define wxMenuItem_GetSubMenu(_swigobj) (_swigobj->GetSubMenu()) |
9994 | static PyObject *_wrap_wxMenuItem_GetSubMenu(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 9995 | PyObject * _resultobj; |
b1462dfa | 9996 | wxMenu * _result; |
cf694132 | 9997 | wxMenuItem * _arg0; |
1d99702e | 9998 | PyObject * _argo0 = 0; |
b1462dfa | 9999 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
10000 | |
10001 | self = self; | |
b1462dfa | 10002 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetSubMenu",_kwnames,&_argo0)) |
cf694132 | 10003 | return NULL; |
1d99702e RD |
10004 | if (_argo0) { |
10005 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10006 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 10007 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetSubMenu. Expected _wxMenuItem_p."); |
cf694132 RD |
10008 | return NULL; |
10009 | } | |
10010 | } | |
b1462dfa | 10011 | { |
4268f798 | 10012 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
10013 | _result = (wxMenu *)wxMenuItem_GetSubMenu(_arg0); |
10014 | ||
4268f798 | 10015 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10016 | if (PyErr_Occurred()) return NULL; |
9416aa89 | 10017 | }{ _resultobj = wxPyMake_wxObject(_result); } |
b1462dfa RD |
10018 | return _resultobj; |
10019 | } | |
10020 | ||
10021 | #define wxMenuItem_Enable(_swigobj,_swigarg0) (_swigobj->Enable(_swigarg0)) | |
10022 | static PyObject *_wrap_wxMenuItem_Enable(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10023 | PyObject * _resultobj; | |
10024 | wxMenuItem * _arg0; | |
10025 | bool _arg1 = (bool ) TRUE; | |
10026 | PyObject * _argo0 = 0; | |
10027 | int tempbool1 = (int) TRUE; | |
10028 | char *_kwnames[] = { "self","enable", NULL }; | |
10029 | ||
10030 | self = self; | |
10031 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxMenuItem_Enable",_kwnames,&_argo0,&tempbool1)) | |
10032 | return NULL; | |
10033 | if (_argo0) { | |
10034 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10035 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10036 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_Enable. Expected _wxMenuItem_p."); | |
cf694132 RD |
10037 | return NULL; |
10038 | } | |
10039 | } | |
b1462dfa | 10040 | _arg1 = (bool ) tempbool1; |
cf694132 | 10041 | { |
4268f798 | 10042 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 10043 | wxMenuItem_Enable(_arg0,_arg1); |
cf694132 | 10044 | |
4268f798 | 10045 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10046 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
10047 | } Py_INCREF(Py_None); |
10048 | _resultobj = Py_None; | |
10049 | return _resultobj; | |
10050 | } | |
10051 | ||
b1462dfa RD |
10052 | #define wxMenuItem_IsEnabled(_swigobj) (_swigobj->IsEnabled()) |
10053 | static PyObject *_wrap_wxMenuItem_IsEnabled(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 | 10054 | PyObject * _resultobj; |
b1462dfa | 10055 | bool _result; |
cf694132 | 10056 | wxMenuItem * _arg0; |
1d99702e | 10057 | PyObject * _argo0 = 0; |
b1462dfa | 10058 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
10059 | |
10060 | self = self; | |
b1462dfa | 10061 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_IsEnabled",_kwnames,&_argo0)) |
cf694132 | 10062 | return NULL; |
1d99702e RD |
10063 | if (_argo0) { |
10064 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10065 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 10066 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsEnabled. Expected _wxMenuItem_p."); |
cf694132 RD |
10067 | return NULL; |
10068 | } | |
10069 | } | |
10070 | { | |
4268f798 | 10071 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 10072 | _result = (bool )wxMenuItem_IsEnabled(_arg0); |
cf694132 | 10073 | |
4268f798 | 10074 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10075 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 10076 | } _resultobj = Py_BuildValue("i",_result); |
cf694132 RD |
10077 | return _resultobj; |
10078 | } | |
10079 | ||
b1462dfa RD |
10080 | #define wxMenuItem_Check(_swigobj,_swigarg0) (_swigobj->Check(_swigarg0)) |
10081 | static PyObject *_wrap_wxMenuItem_Check(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 RD |
10082 | PyObject * _resultobj; |
10083 | wxMenuItem * _arg0; | |
b1462dfa | 10084 | bool _arg1 = (bool ) TRUE; |
1d99702e | 10085 | PyObject * _argo0 = 0; |
b1462dfa RD |
10086 | int tempbool1 = (int) TRUE; |
10087 | char *_kwnames[] = { "self","check", NULL }; | |
cf694132 RD |
10088 | |
10089 | self = self; | |
b1462dfa | 10090 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxMenuItem_Check",_kwnames,&_argo0,&tempbool1)) |
cf694132 | 10091 | return NULL; |
1d99702e RD |
10092 | if (_argo0) { |
10093 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10094 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 10095 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_Check. Expected _wxMenuItem_p."); |
cf694132 RD |
10096 | return NULL; |
10097 | } | |
10098 | } | |
b1462dfa | 10099 | _arg1 = (bool ) tempbool1; |
cf694132 | 10100 | { |
4268f798 | 10101 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 10102 | wxMenuItem_Check(_arg0,_arg1); |
cf694132 | 10103 | |
4268f798 | 10104 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10105 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
10106 | } Py_INCREF(Py_None); |
10107 | _resultobj = Py_None; | |
10108 | return _resultobj; | |
10109 | } | |
10110 | ||
b1462dfa RD |
10111 | #define wxMenuItem_IsChecked(_swigobj) (_swigobj->IsChecked()) |
10112 | static PyObject *_wrap_wxMenuItem_IsChecked(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2abc0a0f | 10113 | PyObject * _resultobj; |
b1462dfa | 10114 | bool _result; |
2abc0a0f | 10115 | wxMenuItem * _arg0; |
2abc0a0f | 10116 | PyObject * _argo0 = 0; |
b1462dfa | 10117 | char *_kwnames[] = { "self", NULL }; |
2abc0a0f RD |
10118 | |
10119 | self = self; | |
b1462dfa | 10120 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_IsChecked",_kwnames,&_argo0)) |
2abc0a0f RD |
10121 | return NULL; |
10122 | if (_argo0) { | |
10123 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10124 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 10125 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsChecked. Expected _wxMenuItem_p."); |
2abc0a0f RD |
10126 | return NULL; |
10127 | } | |
10128 | } | |
2abc0a0f | 10129 | { |
4268f798 | 10130 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 10131 | _result = (bool )wxMenuItem_IsChecked(_arg0); |
2abc0a0f | 10132 | |
4268f798 | 10133 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10134 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 10135 | } _resultobj = Py_BuildValue("i",_result); |
2abc0a0f RD |
10136 | return _resultobj; |
10137 | } | |
10138 | ||
b1462dfa RD |
10139 | #define wxMenuItem_Toggle(_swigobj) (_swigobj->Toggle()) |
10140 | static PyObject *_wrap_wxMenuItem_Toggle(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2abc0a0f | 10141 | PyObject * _resultobj; |
2abc0a0f RD |
10142 | wxMenuItem * _arg0; |
10143 | PyObject * _argo0 = 0; | |
10144 | char *_kwnames[] = { "self", NULL }; | |
10145 | ||
10146 | self = self; | |
b1462dfa | 10147 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_Toggle",_kwnames,&_argo0)) |
2abc0a0f RD |
10148 | return NULL; |
10149 | if (_argo0) { | |
10150 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10151 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 10152 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_Toggle. Expected _wxMenuItem_p."); |
2abc0a0f RD |
10153 | return NULL; |
10154 | } | |
10155 | } | |
10156 | { | |
4268f798 | 10157 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 10158 | wxMenuItem_Toggle(_arg0); |
2abc0a0f | 10159 | |
4268f798 | 10160 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10161 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
10162 | } Py_INCREF(Py_None); |
10163 | _resultobj = Py_None; | |
2abc0a0f RD |
10164 | return _resultobj; |
10165 | } | |
10166 | ||
b1462dfa RD |
10167 | #define wxMenuItem_SetHelp(_swigobj,_swigarg0) (_swigobj->SetHelp(_swigarg0)) |
10168 | static PyObject *_wrap_wxMenuItem_SetHelp(PyObject *self, PyObject *args, PyObject *kwargs) { | |
cf694132 RD |
10169 | PyObject * _resultobj; |
10170 | wxMenuItem * _arg0; | |
b1462dfa | 10171 | wxString * _arg1; |
1d99702e | 10172 | PyObject * _argo0 = 0; |
b1462dfa RD |
10173 | PyObject * _obj1 = 0; |
10174 | char *_kwnames[] = { "self","str", NULL }; | |
cf694132 RD |
10175 | |
10176 | self = self; | |
b1462dfa | 10177 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetHelp",_kwnames,&_argo0,&_obj1)) |
cf694132 | 10178 | return NULL; |
1d99702e RD |
10179 | if (_argo0) { |
10180 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10181 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 10182 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetHelp. Expected _wxMenuItem_p."); |
cf694132 RD |
10183 | return NULL; |
10184 | } | |
10185 | } | |
b1462dfa | 10186 | { |
185d7c3e RD |
10187 | #if PYTHON_API_VERSION >= 1009 |
10188 | char* tmpPtr; int tmpSize; | |
10189 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 10190 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
10191 | return NULL; |
10192 | } | |
10193 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
10194 | return NULL; | |
10195 | _arg1 = new wxString(tmpPtr, tmpSize); | |
10196 | #else | |
b1462dfa RD |
10197 | if (!PyString_Check(_obj1)) { |
10198 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
cf694132 | 10199 | return NULL; |
cf694132 | 10200 | } |
185d7c3e RD |
10201 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
10202 | #endif | |
b1462dfa | 10203 | } |
cf694132 | 10204 | { |
4268f798 | 10205 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 10206 | wxMenuItem_SetHelp(_arg0,*_arg1); |
cf694132 | 10207 | |
4268f798 | 10208 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10209 | if (PyErr_Occurred()) return NULL; |
cf694132 | 10210 | } Py_INCREF(Py_None); |
8ab979d7 | 10211 | _resultobj = Py_None; |
b1462dfa RD |
10212 | { |
10213 | if (_obj1) | |
10214 | delete _arg1; | |
10215 | } | |
8ab979d7 RD |
10216 | return _resultobj; |
10217 | } | |
10218 | ||
b1462dfa RD |
10219 | #define wxMenuItem_GetHelp(_swigobj) (_swigobj->GetHelp()) |
10220 | static PyObject *_wrap_wxMenuItem_GetHelp(PyObject *self, PyObject *args, PyObject *kwargs) { | |
be4d9c1f | 10221 | PyObject * _resultobj; |
b1462dfa | 10222 | wxString * _result; |
be4d9c1f | 10223 | wxMenuItem * _arg0; |
1d99702e | 10224 | PyObject * _argo0 = 0; |
efc5f224 | 10225 | char *_kwnames[] = { "self", NULL }; |
be4d9c1f RD |
10226 | |
10227 | self = self; | |
b1462dfa | 10228 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetHelp",_kwnames,&_argo0)) |
be4d9c1f | 10229 | return NULL; |
1d99702e RD |
10230 | if (_argo0) { |
10231 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10232 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 10233 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetHelp. Expected _wxMenuItem_p."); |
be4d9c1f RD |
10234 | return NULL; |
10235 | } | |
10236 | } | |
cf694132 | 10237 | { |
4268f798 | 10238 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa RD |
10239 | const wxString & _result_ref = wxMenuItem_GetHelp(_arg0); |
10240 | _result = (wxString *) &_result_ref; | |
cf694132 | 10241 | |
4268f798 | 10242 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10243 | if (PyErr_Occurred()) return NULL; |
b1462dfa | 10244 | }{ |
eec92d76 | 10245 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
b1462dfa | 10246 | } |
be4d9c1f RD |
10247 | return _resultobj; |
10248 | } | |
10249 | ||
b1462dfa RD |
10250 | #define wxMenuItem_GetAccel(_swigobj) (_swigobj->GetAccel()) |
10251 | static PyObject *_wrap_wxMenuItem_GetAccel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2abc0a0f | 10252 | PyObject * _resultobj; |
b1462dfa | 10253 | wxAcceleratorEntry * _result; |
2abc0a0f | 10254 | wxMenuItem * _arg0; |
2abc0a0f | 10255 | PyObject * _argo0 = 0; |
b1462dfa RD |
10256 | char *_kwnames[] = { "self", NULL }; |
10257 | char _ptemp[128]; | |
2abc0a0f RD |
10258 | |
10259 | self = self; | |
b1462dfa | 10260 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetAccel",_kwnames,&_argo0)) |
2abc0a0f RD |
10261 | return NULL; |
10262 | if (_argo0) { | |
10263 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10264 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 10265 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetAccel. Expected _wxMenuItem_p."); |
2abc0a0f RD |
10266 | return NULL; |
10267 | } | |
10268 | } | |
2abc0a0f | 10269 | { |
4268f798 | 10270 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 10271 | _result = (wxAcceleratorEntry *)wxMenuItem_GetAccel(_arg0); |
2abc0a0f | 10272 | |
4268f798 | 10273 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10274 | if (PyErr_Occurred()) return NULL; |
b1462dfa RD |
10275 | } if (_result) { |
10276 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxAcceleratorEntry_p"); | |
10277 | _resultobj = Py_BuildValue("s",_ptemp); | |
10278 | } else { | |
10279 | Py_INCREF(Py_None); | |
10280 | _resultobj = Py_None; | |
10281 | } | |
2abc0a0f RD |
10282 | return _resultobj; |
10283 | } | |
10284 | ||
b1462dfa RD |
10285 | #define wxMenuItem_SetAccel(_swigobj,_swigarg0) (_swigobj->SetAccel(_swigarg0)) |
10286 | static PyObject *_wrap_wxMenuItem_SetAccel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2abc0a0f RD |
10287 | PyObject * _resultobj; |
10288 | wxMenuItem * _arg0; | |
b1462dfa | 10289 | wxAcceleratorEntry * _arg1; |
2abc0a0f RD |
10290 | PyObject * _argo0 = 0; |
10291 | PyObject * _argo1 = 0; | |
b1462dfa | 10292 | char *_kwnames[] = { "self","accel", NULL }; |
2abc0a0f RD |
10293 | |
10294 | self = self; | |
b1462dfa | 10295 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetAccel",_kwnames,&_argo0,&_argo1)) |
2abc0a0f RD |
10296 | return NULL; |
10297 | if (_argo0) { | |
10298 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10299 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
b1462dfa | 10300 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetAccel. Expected _wxMenuItem_p."); |
2abc0a0f RD |
10301 | return NULL; |
10302 | } | |
10303 | } | |
10304 | if (_argo1) { | |
10305 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
b1462dfa RD |
10306 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxAcceleratorEntry_p")) { |
10307 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenuItem_SetAccel. Expected _wxAcceleratorEntry_p."); | |
2abc0a0f RD |
10308 | return NULL; |
10309 | } | |
10310 | } | |
10311 | { | |
4268f798 | 10312 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
b1462dfa | 10313 | wxMenuItem_SetAccel(_arg0,_arg1); |
2abc0a0f | 10314 | |
4268f798 | 10315 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10316 | if (PyErr_Occurred()) return NULL; |
2abc0a0f RD |
10317 | } Py_INCREF(Py_None); |
10318 | _resultobj = Py_None; | |
10319 | return _resultobj; | |
10320 | } | |
10321 | ||
1b62f00d RD |
10322 | static PyObject *_wrap_wxMenuItem_GetLabelFromText(PyObject *self, PyObject *args, PyObject *kwargs) { |
10323 | PyObject * _resultobj; | |
10324 | wxString * _result; | |
10325 | wxString * _arg0; | |
10326 | PyObject * _obj0 = 0; | |
10327 | char *_kwnames[] = { "text", NULL }; | |
10328 | ||
10329 | self = self; | |
10330 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetLabelFromText",_kwnames,&_obj0)) | |
10331 | return NULL; | |
10332 | { | |
10333 | #if PYTHON_API_VERSION >= 1009 | |
10334 | char* tmpPtr; int tmpSize; | |
10335 | if (!PyString_Check(_obj0) && !PyUnicode_Check(_obj0)) { | |
794c5cb1 | 10336 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
1b62f00d RD |
10337 | return NULL; |
10338 | } | |
10339 | if (PyString_AsStringAndSize(_obj0, &tmpPtr, &tmpSize) == -1) | |
10340 | return NULL; | |
10341 | _arg0 = new wxString(tmpPtr, tmpSize); | |
10342 | #else | |
10343 | if (!PyString_Check(_obj0)) { | |
10344 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
10345 | return NULL; | |
10346 | } | |
10347 | _arg0 = new wxString(PyString_AS_STRING(_obj0), PyString_GET_SIZE(_obj0)); | |
10348 | #endif | |
10349 | } | |
10350 | { | |
4268f798 | 10351 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
1b62f00d RD |
10352 | _result = new wxString (wxMenuItem::GetLabelFromText(*_arg0)); |
10353 | ||
4268f798 | 10354 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10355 | if (PyErr_Occurred()) return NULL; |
1b62f00d RD |
10356 | }{ |
10357 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); | |
10358 | } | |
10359 | { | |
10360 | if (_obj0) | |
10361 | delete _arg0; | |
10362 | } | |
10363 | { | |
10364 | delete _result; | |
10365 | } | |
10366 | return _resultobj; | |
10367 | } | |
10368 | ||
f3d9dc1d RD |
10369 | #define wxMenuItem_SetFont(_swigobj,_swigarg0) (_swigobj->SetFont(_swigarg0)) |
10370 | static PyObject *_wrap_wxMenuItem_SetFont(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10371 | PyObject * _resultobj; | |
10372 | wxMenuItem * _arg0; | |
10373 | wxFont * _arg1; | |
10374 | PyObject * _argo0 = 0; | |
10375 | PyObject * _argo1 = 0; | |
10376 | char *_kwnames[] = { "self","font", NULL }; | |
10377 | ||
10378 | self = self; | |
10379 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetFont",_kwnames,&_argo0,&_argo1)) | |
10380 | return NULL; | |
10381 | if (_argo0) { | |
10382 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10383 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10384 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetFont. Expected _wxMenuItem_p."); | |
10385 | return NULL; | |
10386 | } | |
10387 | } | |
10388 | if (_argo1) { | |
10389 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
10390 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxFont_p")) { | |
10391 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenuItem_SetFont. Expected _wxFont_p."); | |
10392 | return NULL; | |
10393 | } | |
10394 | } | |
10395 | { | |
4268f798 | 10396 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f3d9dc1d RD |
10397 | wxMenuItem_SetFont(_arg0,*_arg1); |
10398 | ||
4268f798 | 10399 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10400 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10401 | } Py_INCREF(Py_None); |
10402 | _resultobj = Py_None; | |
10403 | return _resultobj; | |
10404 | } | |
10405 | ||
10406 | #define wxMenuItem_GetFont(_swigobj) (_swigobj->GetFont()) | |
10407 | static PyObject *_wrap_wxMenuItem_GetFont(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10408 | PyObject * _resultobj; | |
10409 | wxFont * _result; | |
10410 | wxMenuItem * _arg0; | |
10411 | PyObject * _argo0 = 0; | |
10412 | char *_kwnames[] = { "self", NULL }; | |
10413 | char _ptemp[128]; | |
10414 | ||
10415 | self = self; | |
10416 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetFont",_kwnames,&_argo0)) | |
10417 | return NULL; | |
10418 | if (_argo0) { | |
10419 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10420 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10421 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetFont. Expected _wxMenuItem_p."); | |
10422 | return NULL; | |
10423 | } | |
10424 | } | |
10425 | { | |
4268f798 | 10426 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
c5943253 | 10427 | _result = new wxFont (wxMenuItem_GetFont(_arg0)); |
f3d9dc1d | 10428 | |
4268f798 | 10429 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10430 | if (PyErr_Occurred()) return NULL; |
c5943253 RD |
10431 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxFont_p"); |
10432 | _resultobj = Py_BuildValue("s",_ptemp); | |
f3d9dc1d RD |
10433 | return _resultobj; |
10434 | } | |
10435 | ||
10436 | #define wxMenuItem_SetTextColour(_swigobj,_swigarg0) (_swigobj->SetTextColour(_swigarg0)) | |
10437 | static PyObject *_wrap_wxMenuItem_SetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10438 | PyObject * _resultobj; | |
10439 | wxMenuItem * _arg0; | |
10440 | wxColour * _arg1; | |
10441 | PyObject * _argo0 = 0; | |
10442 | wxColour temp; | |
10443 | PyObject * _obj1 = 0; | |
10444 | char *_kwnames[] = { "self","colText", NULL }; | |
10445 | ||
10446 | self = self; | |
10447 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetTextColour",_kwnames,&_argo0,&_obj1)) | |
10448 | return NULL; | |
10449 | if (_argo0) { | |
10450 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10451 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10452 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetTextColour. Expected _wxMenuItem_p."); | |
10453 | return NULL; | |
10454 | } | |
10455 | } | |
10456 | { | |
10457 | _arg1 = &temp; | |
10458 | if (! wxColour_helper(_obj1, &_arg1)) | |
10459 | return NULL; | |
10460 | } | |
10461 | { | |
4268f798 | 10462 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f3d9dc1d RD |
10463 | wxMenuItem_SetTextColour(_arg0,*_arg1); |
10464 | ||
4268f798 | 10465 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10466 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10467 | } Py_INCREF(Py_None); |
10468 | _resultobj = Py_None; | |
10469 | return _resultobj; | |
10470 | } | |
10471 | ||
10472 | #define wxMenuItem_GetTextColour(_swigobj) (_swigobj->GetTextColour()) | |
10473 | static PyObject *_wrap_wxMenuItem_GetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10474 | PyObject * _resultobj; | |
10475 | wxColour * _result; | |
10476 | wxMenuItem * _arg0; | |
10477 | PyObject * _argo0 = 0; | |
10478 | char *_kwnames[] = { "self", NULL }; | |
10479 | char _ptemp[128]; | |
10480 | ||
10481 | self = self; | |
10482 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetTextColour",_kwnames,&_argo0)) | |
10483 | return NULL; | |
10484 | if (_argo0) { | |
10485 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10486 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10487 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetTextColour. Expected _wxMenuItem_p."); | |
10488 | return NULL; | |
10489 | } | |
10490 | } | |
10491 | { | |
4268f798 | 10492 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
25832b3f | 10493 | _result = new wxColour (wxMenuItem_GetTextColour(_arg0)); |
f3d9dc1d | 10494 | |
4268f798 | 10495 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10496 | if (PyErr_Occurred()) return NULL; |
25832b3f RD |
10497 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); |
10498 | _resultobj = Py_BuildValue("s",_ptemp); | |
f3d9dc1d RD |
10499 | return _resultobj; |
10500 | } | |
10501 | ||
10502 | #define wxMenuItem_SetBackgroundColour(_swigobj,_swigarg0) (_swigobj->SetBackgroundColour(_swigarg0)) | |
10503 | static PyObject *_wrap_wxMenuItem_SetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10504 | PyObject * _resultobj; | |
10505 | wxMenuItem * _arg0; | |
10506 | wxColour * _arg1; | |
10507 | PyObject * _argo0 = 0; | |
10508 | wxColour temp; | |
10509 | PyObject * _obj1 = 0; | |
10510 | char *_kwnames[] = { "self","colBack", NULL }; | |
10511 | ||
10512 | self = self; | |
10513 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetBackgroundColour",_kwnames,&_argo0,&_obj1)) | |
10514 | return NULL; | |
10515 | if (_argo0) { | |
10516 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10517 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10518 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetBackgroundColour. Expected _wxMenuItem_p."); | |
10519 | return NULL; | |
10520 | } | |
10521 | } | |
10522 | { | |
10523 | _arg1 = &temp; | |
10524 | if (! wxColour_helper(_obj1, &_arg1)) | |
10525 | return NULL; | |
10526 | } | |
10527 | { | |
4268f798 | 10528 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f3d9dc1d RD |
10529 | wxMenuItem_SetBackgroundColour(_arg0,*_arg1); |
10530 | ||
4268f798 | 10531 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10532 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10533 | } Py_INCREF(Py_None); |
10534 | _resultobj = Py_None; | |
10535 | return _resultobj; | |
10536 | } | |
10537 | ||
10538 | #define wxMenuItem_GetBackgroundColour(_swigobj) (_swigobj->GetBackgroundColour()) | |
10539 | static PyObject *_wrap_wxMenuItem_GetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10540 | PyObject * _resultobj; | |
10541 | wxColour * _result; | |
10542 | wxMenuItem * _arg0; | |
10543 | PyObject * _argo0 = 0; | |
10544 | char *_kwnames[] = { "self", NULL }; | |
10545 | char _ptemp[128]; | |
10546 | ||
10547 | self = self; | |
10548 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetBackgroundColour",_kwnames,&_argo0)) | |
10549 | return NULL; | |
10550 | if (_argo0) { | |
10551 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10552 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10553 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetBackgroundColour. Expected _wxMenuItem_p."); | |
10554 | return NULL; | |
10555 | } | |
10556 | } | |
10557 | { | |
4268f798 | 10558 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
25832b3f | 10559 | _result = new wxColour (wxMenuItem_GetBackgroundColour(_arg0)); |
f3d9dc1d | 10560 | |
4268f798 | 10561 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10562 | if (PyErr_Occurred()) return NULL; |
25832b3f RD |
10563 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); |
10564 | _resultobj = Py_BuildValue("s",_ptemp); | |
f3d9dc1d RD |
10565 | return _resultobj; |
10566 | } | |
10567 | ||
10568 | #define wxMenuItem_SetBitmaps(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetBitmaps(_swigarg0,_swigarg1)) | |
10569 | static PyObject *_wrap_wxMenuItem_SetBitmaps(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10570 | PyObject * _resultobj; | |
10571 | wxMenuItem * _arg0; | |
10572 | wxBitmap * _arg1; | |
10573 | wxBitmap * _arg2 = (wxBitmap *) &wxNullBitmap; | |
10574 | PyObject * _argo0 = 0; | |
10575 | PyObject * _argo1 = 0; | |
10576 | PyObject * _argo2 = 0; | |
10577 | char *_kwnames[] = { "self","bmpChecked","bmpUnchecked", NULL }; | |
10578 | ||
10579 | self = self; | |
10580 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|O:wxMenuItem_SetBitmaps",_kwnames,&_argo0,&_argo1,&_argo2)) | |
10581 | return NULL; | |
10582 | if (_argo0) { | |
10583 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10584 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10585 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetBitmaps. Expected _wxMenuItem_p."); | |
10586 | return NULL; | |
10587 | } | |
10588 | } | |
10589 | if (_argo1) { | |
10590 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
10591 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxBitmap_p")) { | |
10592 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenuItem_SetBitmaps. Expected _wxBitmap_p."); | |
10593 | return NULL; | |
10594 | } | |
10595 | } | |
10596 | if (_argo2) { | |
10597 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
10598 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxBitmap_p")) { | |
10599 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxMenuItem_SetBitmaps. Expected _wxBitmap_p."); | |
10600 | return NULL; | |
10601 | } | |
10602 | } | |
10603 | { | |
4268f798 | 10604 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f3d9dc1d RD |
10605 | wxMenuItem_SetBitmaps(_arg0,*_arg1,*_arg2); |
10606 | ||
4268f798 | 10607 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10608 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10609 | } Py_INCREF(Py_None); |
10610 | _resultobj = Py_None; | |
10611 | return _resultobj; | |
10612 | } | |
10613 | ||
10614 | #define wxMenuItem_SetBitmap(_swigobj,_swigarg0) (_swigobj->SetBitmap(_swigarg0)) | |
10615 | static PyObject *_wrap_wxMenuItem_SetBitmap(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10616 | PyObject * _resultobj; | |
10617 | wxMenuItem * _arg0; | |
10618 | wxBitmap * _arg1; | |
10619 | PyObject * _argo0 = 0; | |
10620 | PyObject * _argo1 = 0; | |
10621 | char *_kwnames[] = { "self","bmpChecked", NULL }; | |
10622 | ||
10623 | self = self; | |
10624 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxMenuItem_SetBitmap",_kwnames,&_argo0,&_argo1)) | |
10625 | return NULL; | |
10626 | if (_argo0) { | |
10627 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10628 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10629 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetBitmap. Expected _wxMenuItem_p."); | |
10630 | return NULL; | |
10631 | } | |
10632 | } | |
10633 | if (_argo1) { | |
10634 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
10635 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxBitmap_p")) { | |
10636 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenuItem_SetBitmap. Expected _wxBitmap_p."); | |
10637 | return NULL; | |
10638 | } | |
10639 | } | |
10640 | { | |
4268f798 | 10641 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f3d9dc1d RD |
10642 | wxMenuItem_SetBitmap(_arg0,*_arg1); |
10643 | ||
4268f798 | 10644 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10645 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10646 | } Py_INCREF(Py_None); |
10647 | _resultobj = Py_None; | |
10648 | return _resultobj; | |
10649 | } | |
10650 | ||
10651 | #define wxMenuItem_GetBitmap(_swigobj,_swigarg0) (_swigobj->GetBitmap(_swigarg0)) | |
10652 | static PyObject *_wrap_wxMenuItem_GetBitmap(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10653 | PyObject * _resultobj; | |
10654 | wxBitmap * _result; | |
10655 | wxMenuItem * _arg0; | |
10656 | bool _arg1 = (bool ) TRUE; | |
10657 | PyObject * _argo0 = 0; | |
10658 | int tempbool1 = (int) TRUE; | |
10659 | char *_kwnames[] = { "self","bChecked", NULL }; | |
10660 | char _ptemp[128]; | |
10661 | ||
10662 | self = self; | |
10663 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxMenuItem_GetBitmap",_kwnames,&_argo0,&tempbool1)) | |
10664 | return NULL; | |
10665 | if (_argo0) { | |
10666 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10667 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10668 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetBitmap. Expected _wxMenuItem_p."); | |
10669 | return NULL; | |
10670 | } | |
10671 | } | |
10672 | _arg1 = (bool ) tempbool1; | |
10673 | { | |
4268f798 | 10674 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
c5943253 | 10675 | _result = new wxBitmap (wxMenuItem_GetBitmap(_arg0,_arg1)); |
f3d9dc1d | 10676 | |
4268f798 | 10677 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10678 | if (PyErr_Occurred()) return NULL; |
c5943253 RD |
10679 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxBitmap_p"); |
10680 | _resultobj = Py_BuildValue("s",_ptemp); | |
f3d9dc1d RD |
10681 | return _resultobj; |
10682 | } | |
10683 | ||
10684 | #define wxMenuItem_SetMarginWidth(_swigobj,_swigarg0) (_swigobj->SetMarginWidth(_swigarg0)) | |
10685 | static PyObject *_wrap_wxMenuItem_SetMarginWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10686 | PyObject * _resultobj; | |
10687 | wxMenuItem * _arg0; | |
10688 | int _arg1; | |
10689 | PyObject * _argo0 = 0; | |
10690 | char *_kwnames[] = { "self","nWidth", NULL }; | |
10691 | ||
10692 | self = self; | |
10693 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxMenuItem_SetMarginWidth",_kwnames,&_argo0,&_arg1)) | |
10694 | return NULL; | |
10695 | if (_argo0) { | |
10696 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10697 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10698 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetMarginWidth. Expected _wxMenuItem_p."); | |
10699 | return NULL; | |
10700 | } | |
10701 | } | |
10702 | { | |
4268f798 | 10703 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f3d9dc1d RD |
10704 | wxMenuItem_SetMarginWidth(_arg0,_arg1); |
10705 | ||
4268f798 | 10706 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10707 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10708 | } Py_INCREF(Py_None); |
10709 | _resultobj = Py_None; | |
10710 | return _resultobj; | |
10711 | } | |
10712 | ||
10713 | #define wxMenuItem_GetMarginWidth(_swigobj) (_swigobj->GetMarginWidth()) | |
10714 | static PyObject *_wrap_wxMenuItem_GetMarginWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10715 | PyObject * _resultobj; | |
10716 | int _result; | |
10717 | wxMenuItem * _arg0; | |
10718 | PyObject * _argo0 = 0; | |
10719 | char *_kwnames[] = { "self", NULL }; | |
10720 | ||
10721 | self = self; | |
10722 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_GetMarginWidth",_kwnames,&_argo0)) | |
10723 | return NULL; | |
10724 | if (_argo0) { | |
10725 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10726 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10727 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetMarginWidth. Expected _wxMenuItem_p."); | |
10728 | return NULL; | |
10729 | } | |
10730 | } | |
10731 | { | |
4268f798 | 10732 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f3d9dc1d RD |
10733 | _result = (int )wxMenuItem_GetMarginWidth(_arg0); |
10734 | ||
4268f798 | 10735 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10736 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10737 | } _resultobj = Py_BuildValue("i",_result); |
10738 | return _resultobj; | |
10739 | } | |
10740 | ||
10741 | static PyObject *_wrap_wxMenuItem_GetDefaultMarginWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10742 | PyObject * _resultobj; | |
10743 | int _result; | |
10744 | char *_kwnames[] = { NULL }; | |
10745 | ||
10746 | self = self; | |
10747 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxMenuItem_GetDefaultMarginWidth",_kwnames)) | |
10748 | return NULL; | |
10749 | { | |
4268f798 | 10750 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f3d9dc1d RD |
10751 | _result = (int )wxMenuItem::GetDefaultMarginWidth(); |
10752 | ||
4268f798 | 10753 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10754 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10755 | } _resultobj = Py_BuildValue("i",_result); |
10756 | return _resultobj; | |
10757 | } | |
10758 | ||
10759 | #define wxMenuItem_IsOwnerDrawn(_swigobj) (_swigobj->IsOwnerDrawn()) | |
10760 | static PyObject *_wrap_wxMenuItem_IsOwnerDrawn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10761 | PyObject * _resultobj; | |
10762 | bool _result; | |
10763 | wxMenuItem * _arg0; | |
10764 | PyObject * _argo0 = 0; | |
10765 | char *_kwnames[] = { "self", NULL }; | |
10766 | ||
10767 | self = self; | |
10768 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_IsOwnerDrawn",_kwnames,&_argo0)) | |
10769 | return NULL; | |
10770 | if (_argo0) { | |
10771 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10772 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10773 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsOwnerDrawn. Expected _wxMenuItem_p."); | |
10774 | return NULL; | |
10775 | } | |
10776 | } | |
10777 | { | |
4268f798 | 10778 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f3d9dc1d RD |
10779 | _result = (bool )wxMenuItem_IsOwnerDrawn(_arg0); |
10780 | ||
4268f798 | 10781 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10782 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10783 | } _resultobj = Py_BuildValue("i",_result); |
10784 | return _resultobj; | |
10785 | } | |
10786 | ||
10787 | #define wxMenuItem_ResetOwnerDrawn(_swigobj) (_swigobj->ResetOwnerDrawn()) | |
10788 | static PyObject *_wrap_wxMenuItem_ResetOwnerDrawn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
10789 | PyObject * _resultobj; | |
10790 | wxMenuItem * _arg0; | |
10791 | PyObject * _argo0 = 0; | |
10792 | char *_kwnames[] = { "self", NULL }; | |
10793 | ||
10794 | self = self; | |
10795 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMenuItem_ResetOwnerDrawn",_kwnames,&_argo0)) | |
10796 | return NULL; | |
10797 | if (_argo0) { | |
10798 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
10799 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMenuItem_p")) { | |
10800 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_ResetOwnerDrawn. Expected _wxMenuItem_p."); | |
10801 | return NULL; | |
10802 | } | |
10803 | } | |
10804 | { | |
4268f798 | 10805 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f3d9dc1d RD |
10806 | wxMenuItem_ResetOwnerDrawn(_arg0); |
10807 | ||
4268f798 | 10808 | wxPyEndAllowThreads(__tstate); |
493f1553 | 10809 | if (PyErr_Occurred()) return NULL; |
f3d9dc1d RD |
10810 | } Py_INCREF(Py_None); |
10811 | _resultobj = Py_None; | |
10812 | return _resultobj; | |
10813 | } | |
10814 | ||
8ab979d7 | 10815 | static PyMethodDef windowscMethods[] = { |
f3d9dc1d RD |
10816 | { "wxMenuItem_ResetOwnerDrawn", (PyCFunction) _wrap_wxMenuItem_ResetOwnerDrawn, METH_VARARGS | METH_KEYWORDS }, |
10817 | { "wxMenuItem_IsOwnerDrawn", (PyCFunction) _wrap_wxMenuItem_IsOwnerDrawn, METH_VARARGS | METH_KEYWORDS }, | |
10818 | { "wxMenuItem_GetDefaultMarginWidth", (PyCFunction) _wrap_wxMenuItem_GetDefaultMarginWidth, METH_VARARGS | METH_KEYWORDS }, | |
10819 | { "wxMenuItem_GetMarginWidth", (PyCFunction) _wrap_wxMenuItem_GetMarginWidth, METH_VARARGS | METH_KEYWORDS }, | |
10820 | { "wxMenuItem_SetMarginWidth", (PyCFunction) _wrap_wxMenuItem_SetMarginWidth, METH_VARARGS | METH_KEYWORDS }, | |
10821 | { "wxMenuItem_GetBitmap", (PyCFunction) _wrap_wxMenuItem_GetBitmap, METH_VARARGS | METH_KEYWORDS }, | |
10822 | { "wxMenuItem_SetBitmap", (PyCFunction) _wrap_wxMenuItem_SetBitmap, METH_VARARGS | METH_KEYWORDS }, | |
10823 | { "wxMenuItem_SetBitmaps", (PyCFunction) _wrap_wxMenuItem_SetBitmaps, METH_VARARGS | METH_KEYWORDS }, | |
10824 | { "wxMenuItem_GetBackgroundColour", (PyCFunction) _wrap_wxMenuItem_GetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
10825 | { "wxMenuItem_SetBackgroundColour", (PyCFunction) _wrap_wxMenuItem_SetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
10826 | { "wxMenuItem_GetTextColour", (PyCFunction) _wrap_wxMenuItem_GetTextColour, METH_VARARGS | METH_KEYWORDS }, | |
10827 | { "wxMenuItem_SetTextColour", (PyCFunction) _wrap_wxMenuItem_SetTextColour, METH_VARARGS | METH_KEYWORDS }, | |
10828 | { "wxMenuItem_GetFont", (PyCFunction) _wrap_wxMenuItem_GetFont, METH_VARARGS | METH_KEYWORDS }, | |
10829 | { "wxMenuItem_SetFont", (PyCFunction) _wrap_wxMenuItem_SetFont, METH_VARARGS | METH_KEYWORDS }, | |
1b62f00d | 10830 | { "wxMenuItem_GetLabelFromText", (PyCFunction) _wrap_wxMenuItem_GetLabelFromText, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10831 | { "wxMenuItem_SetAccel", (PyCFunction) _wrap_wxMenuItem_SetAccel, METH_VARARGS | METH_KEYWORDS }, |
10832 | { "wxMenuItem_GetAccel", (PyCFunction) _wrap_wxMenuItem_GetAccel, METH_VARARGS | METH_KEYWORDS }, | |
10833 | { "wxMenuItem_GetHelp", (PyCFunction) _wrap_wxMenuItem_GetHelp, METH_VARARGS | METH_KEYWORDS }, | |
10834 | { "wxMenuItem_SetHelp", (PyCFunction) _wrap_wxMenuItem_SetHelp, METH_VARARGS | METH_KEYWORDS }, | |
10835 | { "wxMenuItem_Toggle", (PyCFunction) _wrap_wxMenuItem_Toggle, METH_VARARGS | METH_KEYWORDS }, | |
10836 | { "wxMenuItem_IsChecked", (PyCFunction) _wrap_wxMenuItem_IsChecked, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 10837 | { "wxMenuItem_Check", (PyCFunction) _wrap_wxMenuItem_Check, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa | 10838 | { "wxMenuItem_IsEnabled", (PyCFunction) _wrap_wxMenuItem_IsEnabled, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10839 | { "wxMenuItem_Enable", (PyCFunction) _wrap_wxMenuItem_Enable, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10840 | { "wxMenuItem_GetSubMenu", (PyCFunction) _wrap_wxMenuItem_GetSubMenu, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa | 10841 | { "wxMenuItem_SetSubMenu", (PyCFunction) _wrap_wxMenuItem_SetSubMenu, METH_VARARGS | METH_KEYWORDS }, |
2abc0a0f | 10842 | { "wxMenuItem_IsSubMenu", (PyCFunction) _wrap_wxMenuItem_IsSubMenu, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10843 | { "wxMenuItem_IsCheckable", (PyCFunction) _wrap_wxMenuItem_IsCheckable, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10844 | { "wxMenuItem_SetCheckable", (PyCFunction) _wrap_wxMenuItem_SetCheckable, METH_VARARGS | METH_KEYWORDS }, |
10845 | { "wxMenuItem_GetText", (PyCFunction) _wrap_wxMenuItem_GetText, METH_VARARGS | METH_KEYWORDS }, | |
10846 | { "wxMenuItem_GetLabel", (PyCFunction) _wrap_wxMenuItem_GetLabel, METH_VARARGS | METH_KEYWORDS }, | |
10847 | { "wxMenuItem_SetText", (PyCFunction) _wrap_wxMenuItem_SetText, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 10848 | { "wxMenuItem_IsSeparator", (PyCFunction) _wrap_wxMenuItem_IsSeparator, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10849 | { "wxMenuItem_GetId", (PyCFunction) _wrap_wxMenuItem_GetId, METH_VARARGS | METH_KEYWORDS }, |
10850 | { "wxMenuItem_SetId", (PyCFunction) _wrap_wxMenuItem_SetId, METH_VARARGS | METH_KEYWORDS }, | |
10851 | { "wxMenuItem_GetMenu", (PyCFunction) _wrap_wxMenuItem_GetMenu, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 10852 | { "new_wxMenuItem", (PyCFunction) _wrap_new_wxMenuItem, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa | 10853 | { "wxMenuBar_GetHelpString", (PyCFunction) _wrap_wxMenuBar_GetHelpString, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10854 | { "wxMenuBar_SetHelpString", (PyCFunction) _wrap_wxMenuBar_SetHelpString, METH_VARARGS | METH_KEYWORDS }, |
10855 | { "wxMenuBar_GetLabel", (PyCFunction) _wrap_wxMenuBar_GetLabel, METH_VARARGS | METH_KEYWORDS }, | |
2f90df85 | 10856 | { "wxMenuBar_SetLabel", (PyCFunction) _wrap_wxMenuBar_SetLabel, METH_VARARGS | METH_KEYWORDS }, |
2abc0a0f RD |
10857 | { "wxMenuBar_IsEnabled", (PyCFunction) _wrap_wxMenuBar_IsEnabled, METH_VARARGS | METH_KEYWORDS }, |
10858 | { "wxMenuBar_IsChecked", (PyCFunction) _wrap_wxMenuBar_IsChecked, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 10859 | { "wxMenuBar_Check", (PyCFunction) _wrap_wxMenuBar_Check, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10860 | { "wxMenuBar_Enable", (PyCFunction) _wrap_wxMenuBar_Enable, METH_VARARGS | METH_KEYWORDS }, |
10861 | { "wxMenuBar_FindItemById", (PyCFunction) _wrap_wxMenuBar_FindItemById, METH_VARARGS | METH_KEYWORDS }, | |
10862 | { "wxMenuBar_FindMenuItem", (PyCFunction) _wrap_wxMenuBar_FindMenuItem, METH_VARARGS | METH_KEYWORDS }, | |
3a0958b1 | 10863 | { "wxMenuBar_FindMenu", (PyCFunction) _wrap_wxMenuBar_FindMenu, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10864 | { "wxMenuBar_GetLabelTop", (PyCFunction) _wrap_wxMenuBar_GetLabelTop, METH_VARARGS | METH_KEYWORDS }, |
10865 | { "wxMenuBar_SetLabelTop", (PyCFunction) _wrap_wxMenuBar_SetLabelTop, METH_VARARGS | METH_KEYWORDS }, | |
10866 | { "wxMenuBar_EnableTop", (PyCFunction) _wrap_wxMenuBar_EnableTop, METH_VARARGS | METH_KEYWORDS }, | |
10867 | { "wxMenuBar_Remove", (PyCFunction) _wrap_wxMenuBar_Remove, METH_VARARGS | METH_KEYWORDS }, | |
10868 | { "wxMenuBar_Replace", (PyCFunction) _wrap_wxMenuBar_Replace, METH_VARARGS | METH_KEYWORDS }, | |
10869 | { "wxMenuBar_GetMenu", (PyCFunction) _wrap_wxMenuBar_GetMenu, METH_VARARGS | METH_KEYWORDS }, | |
10870 | { "wxMenuBar_GetMenuCount", (PyCFunction) _wrap_wxMenuBar_GetMenuCount, METH_VARARGS | METH_KEYWORDS }, | |
10871 | { "wxMenuBar_Insert", (PyCFunction) _wrap_wxMenuBar_Insert, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
10872 | { "wxMenuBar_Append", (PyCFunction) _wrap_wxMenuBar_Append, METH_VARARGS | METH_KEYWORDS }, |
10873 | { "new_wxMenuBar", (PyCFunction) _wrap_new_wxMenuBar, METH_VARARGS | METH_KEYWORDS }, | |
b1462dfa RD |
10874 | { "wxMenu_GetParent", (PyCFunction) _wrap_wxMenu_GetParent, METH_VARARGS | METH_KEYWORDS }, |
10875 | { "wxMenu_SetParent", (PyCFunction) _wrap_wxMenu_SetParent, METH_VARARGS | METH_KEYWORDS }, | |
10876 | { "wxMenu_IsAttached", (PyCFunction) _wrap_wxMenu_IsAttached, METH_VARARGS | METH_KEYWORDS }, | |
10877 | { "wxMenu_GetStyle", (PyCFunction) _wrap_wxMenu_GetStyle, METH_VARARGS | METH_KEYWORDS }, | |
10878 | { "wxMenu_GetInvokingWindow", (PyCFunction) _wrap_wxMenu_GetInvokingWindow, METH_VARARGS | METH_KEYWORDS }, | |
10879 | { "wxMenu_SetInvokingWindow", (PyCFunction) _wrap_wxMenu_SetInvokingWindow, METH_VARARGS | METH_KEYWORDS }, | |
10880 | { "wxMenu_GetEventHandler", (PyCFunction) _wrap_wxMenu_GetEventHandler, METH_VARARGS | METH_KEYWORDS }, | |
10881 | { "wxMenu_SetEventHandler", (PyCFunction) _wrap_wxMenu_SetEventHandler, METH_VARARGS | METH_KEYWORDS }, | |
10882 | { "wxMenu_GetMenuItems", (PyCFunction) _wrap_wxMenu_GetMenuItems, METH_VARARGS | METH_KEYWORDS }, | |
10883 | { "wxMenu_GetMenuItemCount", (PyCFunction) _wrap_wxMenu_GetMenuItemCount, METH_VARARGS | METH_KEYWORDS }, | |
10884 | { "wxMenu_DestroyItem", (PyCFunction) _wrap_wxMenu_DestroyItem, METH_VARARGS | METH_KEYWORDS }, | |
10885 | { "wxMenu_DestroyId", (PyCFunction) _wrap_wxMenu_DestroyId, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 10886 | { "wxMenu_Destroy", (PyCFunction) _wrap_wxMenu_Destroy, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10887 | { "wxMenu_RemoveItem", (PyCFunction) _wrap_wxMenu_RemoveItem, METH_VARARGS | METH_KEYWORDS }, |
10888 | { "wxMenu_Remove", (PyCFunction) _wrap_wxMenu_Remove, METH_VARARGS | METH_KEYWORDS }, | |
10889 | { "wxMenu_Insert", (PyCFunction) _wrap_wxMenu_Insert, METH_VARARGS | METH_KEYWORDS }, | |
10890 | { "wxMenu_DeleteItem", (PyCFunction) _wrap_wxMenu_DeleteItem, METH_VARARGS | METH_KEYWORDS }, | |
10891 | { "wxMenu_Delete", (PyCFunction) _wrap_wxMenu_Delete, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 10892 | { "wxMenu_UpdateUI", (PyCFunction) _wrap_wxMenu_UpdateUI, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10893 | { "wxMenu_SetHelpString", (PyCFunction) _wrap_wxMenu_SetHelpString, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10894 | { "wxMenu_GetHelpString", (PyCFunction) _wrap_wxMenu_GetHelpString, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10895 | { "wxMenu_SetLabel", (PyCFunction) _wrap_wxMenu_SetLabel, METH_VARARGS | METH_KEYWORDS }, |
10896 | { "wxMenu_GetLabel", (PyCFunction) _wrap_wxMenu_GetLabel, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
10897 | { "wxMenu_SetTitle", (PyCFunction) _wrap_wxMenu_SetTitle, METH_VARARGS | METH_KEYWORDS }, |
10898 | { "wxMenu_GetTitle", (PyCFunction) _wrap_wxMenu_GetTitle, METH_VARARGS | METH_KEYWORDS }, | |
b1462dfa | 10899 | { "wxMenu_FindItemById", (PyCFunction) _wrap_wxMenu_FindItemById, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10900 | { "wxMenu_FindItem", (PyCFunction) _wrap_wxMenu_FindItem, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa | 10901 | { "wxMenu_IsEnabled", (PyCFunction) _wrap_wxMenu_IsEnabled, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10902 | { "wxMenu_Enable", (PyCFunction) _wrap_wxMenu_Enable, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa | 10903 | { "wxMenu_IsChecked", (PyCFunction) _wrap_wxMenu_IsChecked, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10904 | { "wxMenu_Check", (PyCFunction) _wrap_wxMenu_Check, METH_VARARGS | METH_KEYWORDS }, |
10905 | { "wxMenu_Break", (PyCFunction) _wrap_wxMenu_Break, METH_VARARGS | METH_KEYWORDS }, | |
10906 | { "wxMenu_AppendSeparator", (PyCFunction) _wrap_wxMenu_AppendSeparator, METH_VARARGS | METH_KEYWORDS }, | |
10907 | { "wxMenu_AppendItem", (PyCFunction) _wrap_wxMenu_AppendItem, METH_VARARGS | METH_KEYWORDS }, | |
10908 | { "wxMenu_AppendMenu", (PyCFunction) _wrap_wxMenu_AppendMenu, METH_VARARGS | METH_KEYWORDS }, | |
10909 | { "wxMenu_Append", (PyCFunction) _wrap_wxMenu_Append, METH_VARARGS | METH_KEYWORDS }, | |
10910 | { "new_wxMenu", (PyCFunction) _wrap_new_wxMenu, METH_VARARGS | METH_KEYWORDS }, | |
d1679124 RD |
10911 | { "wxScrolledWindow_AdjustScrollbars", (PyCFunction) _wrap_wxScrolledWindow_AdjustScrollbars, METH_VARARGS | METH_KEYWORDS }, |
10912 | { "wxScrolledWindow_GetScaleY", (PyCFunction) _wrap_wxScrolledWindow_GetScaleY, METH_VARARGS | METH_KEYWORDS }, | |
10913 | { "wxScrolledWindow_GetScaleX", (PyCFunction) _wrap_wxScrolledWindow_GetScaleX, METH_VARARGS | METH_KEYWORDS }, | |
10914 | { "wxScrolledWindow_SetScale", (PyCFunction) _wrap_wxScrolledWindow_SetScale, METH_VARARGS | METH_KEYWORDS }, | |
9d8bd15f RD |
10915 | { "wxScrolledWindow_CalcUnscrolledPosition", (PyCFunction) _wrap_wxScrolledWindow_CalcUnscrolledPosition, METH_VARARGS | METH_KEYWORDS }, |
10916 | { "wxScrolledWindow_CalcScrolledPosition", (PyCFunction) _wrap_wxScrolledWindow_CalcScrolledPosition, METH_VARARGS | METH_KEYWORDS }, | |
4c9993c3 | 10917 | { "wxScrolledWindow_GetViewStart", (PyCFunction) _wrap_wxScrolledWindow_GetViewStart, METH_VARARGS | METH_KEYWORDS }, |
eb715945 | 10918 | { "wxScrolledWindow_SetTargetWindow", (PyCFunction) _wrap_wxScrolledWindow_SetTargetWindow, METH_VARARGS | METH_KEYWORDS }, |
b7e72427 | 10919 | { "wxScrolledWindow_SetScrollPageSize", (PyCFunction) _wrap_wxScrolledWindow_SetScrollPageSize, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10920 | { "wxScrolledWindow_SetScrollbars", (PyCFunction) _wrap_wxScrolledWindow_SetScrollbars, METH_VARARGS | METH_KEYWORDS }, |
10921 | { "wxScrolledWindow_Scroll", (PyCFunction) _wrap_wxScrolledWindow_Scroll, METH_VARARGS | METH_KEYWORDS }, | |
10922 | { "wxScrolledWindow_PrepareDC", (PyCFunction) _wrap_wxScrolledWindow_PrepareDC, METH_VARARGS | METH_KEYWORDS }, | |
10923 | { "wxScrolledWindow_IsRetained", (PyCFunction) _wrap_wxScrolledWindow_IsRetained, METH_VARARGS | METH_KEYWORDS }, | |
10924 | { "wxScrolledWindow_GetVirtualSize", (PyCFunction) _wrap_wxScrolledWindow_GetVirtualSize, METH_VARARGS | METH_KEYWORDS }, | |
b7e72427 | 10925 | { "wxScrolledWindow_GetTargetWindow", (PyCFunction) _wrap_wxScrolledWindow_GetTargetWindow, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10926 | { "wxScrolledWindow_GetScrollPixelsPerUnit", (PyCFunction) _wrap_wxScrolledWindow_GetScrollPixelsPerUnit, METH_VARARGS | METH_KEYWORDS }, |
b7e72427 | 10927 | { "wxScrolledWindow_GetScrollPageSize", (PyCFunction) _wrap_wxScrolledWindow_GetScrollPageSize, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10928 | { "wxScrolledWindow_EnableScrolling", (PyCFunction) _wrap_wxScrolledWindow_EnableScrolling, METH_VARARGS | METH_KEYWORDS }, |
09f3d4e6 RD |
10929 | { "wxScrolledWindow_Create", (PyCFunction) _wrap_wxScrolledWindow_Create, METH_VARARGS | METH_KEYWORDS }, |
10930 | { "new_wxPreScrolledWindow", (PyCFunction) _wrap_new_wxPreScrolledWindow, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 10931 | { "new_wxScrolledWindow", (PyCFunction) _wrap_new_wxScrolledWindow, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 10932 | { "wxPanel_InitDialog", (PyCFunction) _wrap_wxPanel_InitDialog, METH_VARARGS | METH_KEYWORDS }, |
09f3d4e6 RD |
10933 | { "wxPanel_Create", (PyCFunction) _wrap_wxPanel_Create, METH_VARARGS | METH_KEYWORDS }, |
10934 | { "new_wxPrePanel", (PyCFunction) _wrap_new_wxPrePanel, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 10935 | { "new_wxPanel", (PyCFunction) _wrap_new_wxPanel, METH_VARARGS | METH_KEYWORDS }, |
5a2930ab RD |
10936 | { "wxWindow_SetDefaultItem", (PyCFunction) _wrap_wxWindow_SetDefaultItem, METH_VARARGS | METH_KEYWORDS }, |
10937 | { "wxWindow_GetDefaultItem", (PyCFunction) _wrap_wxWindow_GetDefaultItem, METH_VARARGS | METH_KEYWORDS }, | |
07c99b26 | 10938 | { "wxWindow_OnPaint", (PyCFunction) _wrap_wxWindow_OnPaint, METH_VARARGS | METH_KEYWORDS }, |
900d9886 | 10939 | { "wxWindow_GetAcceleratorTable", (PyCFunction) _wrap_wxWindow_GetAcceleratorTable, METH_VARARGS | METH_KEYWORDS }, |
76bfdc78 | 10940 | { "wxWindow_SetAcceleratorTable", (PyCFunction) _wrap_wxWindow_SetAcceleratorTable, METH_VARARGS | METH_KEYWORDS }, |
09f3d4e6 RD |
10941 | { "wxWindow_PrevControlId", (PyCFunction) _wrap_wxWindow_PrevControlId, METH_VARARGS | METH_KEYWORDS }, |
10942 | { "wxWindow_NextControlId", (PyCFunction) _wrap_wxWindow_NextControlId, METH_VARARGS | METH_KEYWORDS }, | |
10943 | { "wxWindow_NewControlId", (PyCFunction) _wrap_wxWindow_NewControlId, METH_VARARGS | METH_KEYWORDS }, | |
10944 | { "wxWindow_FindFocus", (PyCFunction) _wrap_wxWindow_FindFocus, METH_VARARGS | METH_KEYWORDS }, | |
c7e7022c RD |
10945 | { "wxWindow_PageDown", (PyCFunction) _wrap_wxWindow_PageDown, METH_VARARGS | METH_KEYWORDS }, |
10946 | { "wxWindow_PageUp", (PyCFunction) _wrap_wxWindow_PageUp, METH_VARARGS | METH_KEYWORDS }, | |
10947 | { "wxWindow_LineDown", (PyCFunction) _wrap_wxWindow_LineDown, METH_VARARGS | METH_KEYWORDS }, | |
10948 | { "wxWindow_LineUp", (PyCFunction) _wrap_wxWindow_LineUp, METH_VARARGS | METH_KEYWORDS }, | |
10949 | { "wxWindow_ScrollPages", (PyCFunction) _wrap_wxWindow_ScrollPages, METH_VARARGS | METH_KEYWORDS }, | |
10950 | { "wxWindow_ScrollLines", (PyCFunction) _wrap_wxWindow_ScrollLines, METH_VARARGS | METH_KEYWORDS }, | |
23bed520 | 10951 | { "wxWindow_SetHelpTextForId", (PyCFunction) _wrap_wxWindow_SetHelpTextForId, METH_VARARGS | METH_KEYWORDS }, |
4f3449b4 RD |
10952 | { "wxWindow_SetHelpText", (PyCFunction) _wrap_wxWindow_SetHelpText, METH_VARARGS | METH_KEYWORDS }, |
10953 | { "wxWindow_GetHelpText", (PyCFunction) _wrap_wxWindow_GetHelpText, METH_VARARGS | METH_KEYWORDS }, | |
09f3d4e6 | 10954 | { "wxWindow_Update", (PyCFunction) _wrap_wxWindow_Update, METH_VARARGS | METH_KEYWORDS }, |
3a0958b1 RD |
10955 | { "wxWindow_Thaw", (PyCFunction) _wrap_wxWindow_Thaw, METH_VARARGS | METH_KEYWORDS }, |
10956 | { "wxWindow_Freeze", (PyCFunction) _wrap_wxWindow_Freeze, METH_VARARGS | METH_KEYWORDS }, | |
a1df7a95 RD |
10957 | { "wxWindow_GetCaret", (PyCFunction) _wrap_wxWindow_GetCaret, METH_VARARGS | METH_KEYWORDS }, |
10958 | { "wxWindow_SetCaret", (PyCFunction) _wrap_wxWindow_SetCaret, METH_VARARGS | METH_KEYWORDS }, | |
694759cf | 10959 | { "wxWindow_GetBestSize", (PyCFunction) _wrap_wxWindow_GetBestSize, METH_VARARGS | METH_KEYWORDS }, |
b1462dfa RD |
10960 | { "wxWindow_GetDropTarget", (PyCFunction) _wrap_wxWindow_GetDropTarget, METH_VARARGS | METH_KEYWORDS }, |
10961 | { "wxWindow_SetDropTarget", (PyCFunction) _wrap_wxWindow_SetDropTarget, METH_VARARGS | METH_KEYWORDS }, | |
2f90df85 RD |
10962 | { "wxWindow_SetValidator", (PyCFunction) _wrap_wxWindow_SetValidator, METH_VARARGS | METH_KEYWORDS }, |
10963 | { "wxWindow_GetValidator", (PyCFunction) _wrap_wxWindow_GetValidator, METH_VARARGS | METH_KEYWORDS }, | |
be90c029 RD |
10964 | { "wxWindow_GetContainingSizer", (PyCFunction) _wrap_wxWindow_GetContainingSizer, METH_VARARGS | METH_KEYWORDS }, |
10965 | { "wxWindow_SetContainingSizer", (PyCFunction) _wrap_wxWindow_SetContainingSizer, METH_VARARGS | METH_KEYWORDS }, | |
f6bcfd97 | 10966 | { "wxWindow_GetSizer", (PyCFunction) _wrap_wxWindow_GetSizer, METH_VARARGS | METH_KEYWORDS }, |
2f90df85 | 10967 | { "wxWindow_SetSizer", (PyCFunction) _wrap_wxWindow_SetSizer, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10968 | { "wxWindow_GetToolTip", (PyCFunction) _wrap_wxWindow_GetToolTip, METH_VARARGS | METH_KEYWORDS }, |
10969 | { "wxWindow_SetToolTip", (PyCFunction) _wrap_wxWindow_SetToolTip, METH_VARARGS | METH_KEYWORDS }, | |
10970 | { "wxWindow_SetToolTipString", (PyCFunction) _wrap_wxWindow_SetToolTipString, METH_VARARGS | METH_KEYWORDS }, | |
10971 | { "wxWindow_ConvertPixelSizeToDialog", (PyCFunction) _wrap_wxWindow_ConvertPixelSizeToDialog, METH_VARARGS | METH_KEYWORDS }, | |
10972 | { "wxWindow_ConvertPixelPointToDialog", (PyCFunction) _wrap_wxWindow_ConvertPixelPointToDialog, METH_VARARGS | METH_KEYWORDS }, | |
10973 | { "wxWindow_DLG_SZE", (PyCFunction) _wrap_wxWindow_ConvertDialogSizeToPixels, METH_VARARGS | METH_KEYWORDS }, | |
10974 | { "wxWindow_DLG_PNT", (PyCFunction) _wrap_wxWindow_ConvertDialogPointToPixels, METH_VARARGS | METH_KEYWORDS }, | |
10975 | { "wxWindow_ConvertDialogSizeToPixels", (PyCFunction) _wrap_wxWindow_ConvertDialogSizeToPixels, METH_VARARGS | METH_KEYWORDS }, | |
10976 | { "wxWindow_ConvertDialogPointToPixels", (PyCFunction) _wrap_wxWindow_ConvertDialogPointToPixels, METH_VARARGS | METH_KEYWORDS }, | |
10977 | { "wxWindow_WarpPointer", (PyCFunction) _wrap_wxWindow_WarpPointer, METH_VARARGS | METH_KEYWORDS }, | |
10978 | { "wxWindow_Validate", (PyCFunction) _wrap_wxWindow_Validate, METH_VARARGS | METH_KEYWORDS }, | |
23bed520 | 10979 | { "wxWindow_UpdateWindowUI", (PyCFunction) _wrap_wxWindow_UpdateWindowUI, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10980 | { "wxWindow_TransferDataToWindow", (PyCFunction) _wrap_wxWindow_TransferDataToWindow, METH_VARARGS | METH_KEYWORDS }, |
10981 | { "wxWindow_TransferDataFromWindow", (PyCFunction) _wrap_wxWindow_TransferDataFromWindow, METH_VARARGS | METH_KEYWORDS }, | |
10982 | { "wxWindow_Show", (PyCFunction) _wrap_wxWindow_Show, METH_VARARGS | METH_KEYWORDS }, | |
10983 | { "wxWindow_SetTitle", (PyCFunction) _wrap_wxWindow_SetTitle, METH_VARARGS | METH_KEYWORDS }, | |
83b18bab | 10984 | { "wxWindow_SetExtraStyle", (PyCFunction) _wrap_wxWindow_SetExtraStyle, METH_VARARGS | METH_KEYWORDS }, |
1afc06c2 | 10985 | { "wxWindow_SetEventHandler", (PyCFunction) _wrap_wxWindow_SetEventHandler, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10986 | { "wxWindow_SetCursor", (PyCFunction) _wrap_wxWindow_SetCursor, METH_VARARGS | METH_KEYWORDS }, |
10987 | { "wxWindow_SetClientSize", (PyCFunction) _wrap_wxWindow_SetClientSize, METH_VARARGS | METH_KEYWORDS }, | |
10988 | { "wxWindow_SetClientSizeWH", (PyCFunction) _wrap_wxWindow_SetClientSizeWH, METH_VARARGS | METH_KEYWORDS }, | |
10989 | { "wxWindow_SetSizeHints", (PyCFunction) _wrap_wxWindow_SetSizeHints, METH_VARARGS | METH_KEYWORDS }, | |
dbbb98cd | 10990 | { "wxWindow_SetRect", (PyCFunction) _wrap_wxWindow_SetRect, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
10991 | { "wxWindow_SetPosition", (PyCFunction) _wrap_wxWindow_SetPosition, METH_VARARGS | METH_KEYWORDS }, |
10992 | { "wxWindow_SetSize", (PyCFunction) _wrap_wxWindow_SetSize, METH_VARARGS | METH_KEYWORDS }, | |
10993 | { "wxWindow_SetDimensions", (PyCFunction) _wrap_wxWindow_SetDimensions, METH_VARARGS | METH_KEYWORDS }, | |
10994 | { "wxWindow_SetScrollPos", (PyCFunction) _wrap_wxWindow_SetScrollPos, METH_VARARGS | METH_KEYWORDS }, | |
10995 | { "wxWindow_SetScrollbar", (PyCFunction) _wrap_wxWindow_SetScrollbar, METH_VARARGS | METH_KEYWORDS }, | |
10996 | { "wxWindow_SetName", (PyCFunction) _wrap_wxWindow_SetName, METH_VARARGS | METH_KEYWORDS }, | |
10997 | { "wxWindow_SetId", (PyCFunction) _wrap_wxWindow_SetId, METH_VARARGS | METH_KEYWORDS }, | |
10998 | { "wxWindow_SetForegroundColour", (PyCFunction) _wrap_wxWindow_SetForegroundColour, METH_VARARGS | METH_KEYWORDS }, | |
10999 | { "wxWindow_SetFont", (PyCFunction) _wrap_wxWindow_SetFont, METH_VARARGS | METH_KEYWORDS }, | |
2f90df85 | 11000 | { "wxWindow_AcceptsFocus", (PyCFunction) _wrap_wxWindow_AcceptsFocus, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 11001 | { "wxWindow_SetFocus", (PyCFunction) _wrap_wxWindow_SetFocus, METH_VARARGS | METH_KEYWORDS }, |
2f90df85 | 11002 | { "wxWindow_UnsetConstraints", (PyCFunction) _wrap_wxWindow_UnsetConstraints, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
11003 | { "wxWindow_SetConstraints", (PyCFunction) _wrap_wxWindow_SetConstraints, METH_VARARGS | METH_KEYWORDS }, |
11004 | { "wxWindow_SetBackgroundColour", (PyCFunction) _wrap_wxWindow_SetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
9d8bd15f | 11005 | { "wxWindow_GetAutoLayout", (PyCFunction) _wrap_wxWindow_GetAutoLayout, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 11006 | { "wxWindow_SetAutoLayout", (PyCFunction) _wrap_wxWindow_SetAutoLayout, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
11007 | { "wxWindow_ScrollWindow", (PyCFunction) _wrap_wxWindow_ScrollWindow, METH_VARARGS | METH_KEYWORDS }, |
11008 | { "wxWindow_ScreenToClient", (PyCFunction) _wrap_wxWindow_ScreenToClient, METH_VARARGS | METH_KEYWORDS }, | |
11009 | { "wxWindow_ScreenToClientXY", (PyCFunction) _wrap_wxWindow_ScreenToClientXY, METH_VARARGS | METH_KEYWORDS }, | |
11010 | { "wxWindow_Reparent", (PyCFunction) _wrap_wxWindow_Reparent, METH_VARARGS | METH_KEYWORDS }, | |
b7e72427 | 11011 | { "wxWindow_RemoveChild", (PyCFunction) _wrap_wxWindow_RemoveChild, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 11012 | { "wxWindow_ReleaseMouse", (PyCFunction) _wrap_wxWindow_ReleaseMouse, METH_VARARGS | METH_KEYWORDS }, |
09f3d4e6 | 11013 | { "wxWindow_RefreshRect", (PyCFunction) _wrap_wxWindow_RefreshRect, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
11014 | { "wxWindow_Refresh", (PyCFunction) _wrap_wxWindow_Refresh, METH_VARARGS | METH_KEYWORDS }, |
11015 | { "wxWindow_Raise", (PyCFunction) _wrap_wxWindow_Raise, METH_VARARGS | METH_KEYWORDS }, | |
11016 | { "wxWindow_PopupMenu", (PyCFunction) _wrap_wxWindow_PopupMenu, METH_VARARGS | METH_KEYWORDS }, | |
11017 | { "wxWindow_PopupMenuXY", (PyCFunction) _wrap_wxWindow_PopupMenuXY, METH_VARARGS | METH_KEYWORDS }, | |
c6c593e8 | 11018 | { "wxWindow_RemoveEventHandler", (PyCFunction) _wrap_wxWindow_RemoveEventHandler, METH_VARARGS | METH_KEYWORDS }, |
1afc06c2 RD |
11019 | { "wxWindow_PushEventHandler", (PyCFunction) _wrap_wxWindow_PushEventHandler, METH_VARARGS | METH_KEYWORDS }, |
11020 | { "wxWindow_PopEventHandler", (PyCFunction) _wrap_wxWindow_PopEventHandler, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
11021 | { "wxWindow_Move", (PyCFunction) _wrap_wxWindow_Move, METH_VARARGS | METH_KEYWORDS }, |
11022 | { "wxWindow_MoveXY", (PyCFunction) _wrap_wxWindow_MoveXY, METH_VARARGS | METH_KEYWORDS }, | |
11023 | { "wxWindow_MakeModal", (PyCFunction) _wrap_wxWindow_MakeModal, METH_VARARGS | METH_KEYWORDS }, | |
11024 | { "wxWindow_Lower", (PyCFunction) _wrap_wxWindow_Lower, METH_VARARGS | METH_KEYWORDS }, | |
11025 | { "wxWindow_LoadFromResource", (PyCFunction) _wrap_wxWindow_LoadFromResource, METH_VARARGS | METH_KEYWORDS }, | |
11026 | { "wxWindow_Layout", (PyCFunction) _wrap_wxWindow_Layout, METH_VARARGS | METH_KEYWORDS }, | |
11027 | { "wxWindow_IsTopLevel", (PyCFunction) _wrap_wxWindow_IsTopLevel, METH_VARARGS | METH_KEYWORDS }, | |
11028 | { "wxWindow_IsShown", (PyCFunction) _wrap_wxWindow_IsShown, METH_VARARGS | METH_KEYWORDS }, | |
11029 | { "wxWindow_IsRetained", (PyCFunction) _wrap_wxWindow_IsRetained, METH_VARARGS | METH_KEYWORDS }, | |
1b55cabf RD |
11030 | { "wxWindow_IsExposedRect", (PyCFunction) _wrap_wxWindow_IsExposedRect, METH_VARARGS | METH_KEYWORDS }, |
11031 | { "wxWindow_IsExposedPoint", (PyCFunction) _wrap_wxWindow_IsExposedPoint, METH_VARARGS | METH_KEYWORDS }, | |
11032 | { "wxWindow_IsExposed", (PyCFunction) _wrap_wxWindow_IsExposed, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
11033 | { "wxWindow_IsEnabled", (PyCFunction) _wrap_wxWindow_IsEnabled, METH_VARARGS | METH_KEYWORDS }, |
11034 | { "wxWindow_InitDialog", (PyCFunction) _wrap_wxWindow_InitDialog, METH_VARARGS | METH_KEYWORDS }, | |
23bed520 | 11035 | { "wxWindow_HitTest", (PyCFunction) _wrap_wxWindow_HitTest, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 11036 | { "wxWindow_Hide", (PyCFunction) _wrap_wxWindow_Hide, METH_VARARGS | METH_KEYWORDS }, |
23bed520 | 11037 | { "wxWindow_HasScrollbar", (PyCFunction) _wrap_wxWindow_HasScrollbar, METH_VARARGS | METH_KEYWORDS }, |
f6bcfd97 BP |
11038 | { "wxWindow_SetWindowStyle", (PyCFunction) _wrap_wxWindow_SetWindowStyle, METH_VARARGS | METH_KEYWORDS }, |
11039 | { "wxWindow_SetWindowStyleFlag", (PyCFunction) _wrap_wxWindow_SetWindowStyleFlag, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
11040 | { "wxWindow_GetWindowStyleFlag", (PyCFunction) _wrap_wxWindow_GetWindowStyleFlag, METH_VARARGS | METH_KEYWORDS }, |
11041 | { "wxWindow_GetUpdateRegion", (PyCFunction) _wrap_wxWindow_GetUpdateRegion, METH_VARARGS | METH_KEYWORDS }, | |
11042 | { "wxWindow_GetTitle", (PyCFunction) _wrap_wxWindow_GetTitle, METH_VARARGS | METH_KEYWORDS }, | |
11043 | { "wxWindow_GetFullTextExtent", (PyCFunction) _wrap_wxWindow_GetFullTextExtent, METH_VARARGS | METH_KEYWORDS }, | |
11044 | { "wxWindow_GetTextExtent", (PyCFunction) _wrap_wxWindow_GetTextExtent, METH_VARARGS | METH_KEYWORDS }, | |
11045 | { "wxWindow_GetSize", (PyCFunction) _wrap_wxWindow_GetSize, METH_VARARGS | METH_KEYWORDS }, | |
11046 | { "wxWindow_GetSizeTuple", (PyCFunction) _wrap_wxWindow_GetSizeTuple, METH_VARARGS | METH_KEYWORDS }, | |
11047 | { "wxWindow_GetScrollRange", (PyCFunction) _wrap_wxWindow_GetScrollRange, METH_VARARGS | METH_KEYWORDS }, | |
11048 | { "wxWindow_GetScrollPos", (PyCFunction) _wrap_wxWindow_GetScrollPos, METH_VARARGS | METH_KEYWORDS }, | |
11049 | { "wxWindow_GetScrollThumb", (PyCFunction) _wrap_wxWindow_GetScrollThumb, METH_VARARGS | METH_KEYWORDS }, | |
11050 | { "wxWindow_GetRect", (PyCFunction) _wrap_wxWindow_GetRect, METH_VARARGS | METH_KEYWORDS }, | |
11051 | { "wxWindow_GetPosition", (PyCFunction) _wrap_wxWindow_GetPosition, METH_VARARGS | METH_KEYWORDS }, | |
11052 | { "wxWindow_GetPositionTuple", (PyCFunction) _wrap_wxWindow_GetPositionTuple, METH_VARARGS | METH_KEYWORDS }, | |
11053 | { "wxWindow_GetParent", (PyCFunction) _wrap_wxWindow_GetParent, METH_VARARGS | METH_KEYWORDS }, | |
11054 | { "wxWindow_GetName", (PyCFunction) _wrap_wxWindow_GetName, METH_VARARGS | METH_KEYWORDS }, | |
11055 | { "wxWindow_SetLabel", (PyCFunction) _wrap_wxWindow_SetLabel, METH_VARARGS | METH_KEYWORDS }, | |
11056 | { "wxWindow_GetLabel", (PyCFunction) _wrap_wxWindow_GetLabel, METH_VARARGS | METH_KEYWORDS }, | |
11057 | { "wxWindow_GetId", (PyCFunction) _wrap_wxWindow_GetId, METH_VARARGS | METH_KEYWORDS }, | |
2abc0a0f | 11058 | { "wxWindow_GetHandle", (PyCFunction) _wrap_wxWindow_GetHandle, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
11059 | { "wxWindow_GetGrandParent", (PyCFunction) _wrap_wxWindow_GetGrandParent, METH_VARARGS | METH_KEYWORDS }, |
11060 | { "wxWindow_GetForegroundColour", (PyCFunction) _wrap_wxWindow_GetForegroundColour, METH_VARARGS | METH_KEYWORDS }, | |
11061 | { "wxWindow_GetFont", (PyCFunction) _wrap_wxWindow_GetFont, METH_VARARGS | METH_KEYWORDS }, | |
1afc06c2 | 11062 | { "wxWindow_GetEventHandler", (PyCFunction) _wrap_wxWindow_GetEventHandler, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 11063 | { "wxWindow_GetConstraints", (PyCFunction) _wrap_wxWindow_GetConstraints, METH_VARARGS | METH_KEYWORDS }, |
23bed520 RD |
11064 | { "wxWindow_GetClientRect", (PyCFunction) _wrap_wxWindow_GetClientRect, METH_VARARGS | METH_KEYWORDS }, |
11065 | { "wxWindow_GetClientAreaOrigin", (PyCFunction) _wrap_wxWindow_GetClientAreaOrigin, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
11066 | { "wxWindow_GetClientSize", (PyCFunction) _wrap_wxWindow_GetClientSize, METH_VARARGS | METH_KEYWORDS }, |
11067 | { "wxWindow_GetClientSizeTuple", (PyCFunction) _wrap_wxWindow_GetClientSizeTuple, METH_VARARGS | METH_KEYWORDS }, | |
11068 | { "wxWindow_GetCharWidth", (PyCFunction) _wrap_wxWindow_GetCharWidth, METH_VARARGS | METH_KEYWORDS }, | |
11069 | { "wxWindow_GetCharHeight", (PyCFunction) _wrap_wxWindow_GetCharHeight, METH_VARARGS | METH_KEYWORDS }, | |
d426c97e | 11070 | { "wxWindow_GetChildren", (PyCFunction) _wrap_wxWindow_GetChildren, METH_VARARGS | METH_KEYWORDS }, |
23bed520 | 11071 | { "wxWindow_GetBorder", (PyCFunction) _wrap_wxWindow_GetBorder, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
11072 | { "wxWindow_GetBackgroundColour", (PyCFunction) _wrap_wxWindow_GetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, |
11073 | { "wxWindow_Fit", (PyCFunction) _wrap_wxWindow_Fit, METH_VARARGS | METH_KEYWORDS }, | |
11074 | { "wxWindow_FindWindowByName", (PyCFunction) _wrap_wxWindow_FindWindowByName, METH_VARARGS | METH_KEYWORDS }, | |
11075 | { "wxWindow_FindWindowById", (PyCFunction) _wrap_wxWindow_FindWindowById, METH_VARARGS | METH_KEYWORDS }, | |
11076 | { "wxWindow_Enable", (PyCFunction) _wrap_wxWindow_Enable, METH_VARARGS | METH_KEYWORDS }, | |
11077 | { "wxWindow_DragAcceptFiles", (PyCFunction) _wrap_wxWindow_DragAcceptFiles, METH_VARARGS | METH_KEYWORDS }, | |
ac346f50 | 11078 | { "wxWindow_IsBeingDeleted", (PyCFunction) _wrap_wxWindow_IsBeingDeleted, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
11079 | { "wxWindow_DestroyChildren", (PyCFunction) _wrap_wxWindow_DestroyChildren, METH_VARARGS | METH_KEYWORDS }, |
11080 | { "wxWindow_Destroy", (PyCFunction) _wrap_wxWindow_Destroy, METH_VARARGS | METH_KEYWORDS }, | |
11081 | { "wxWindow_Close", (PyCFunction) _wrap_wxWindow_Close, METH_VARARGS | METH_KEYWORDS }, | |
11082 | { "wxWindow_ClientToScreen", (PyCFunction) _wrap_wxWindow_ClientToScreen, METH_VARARGS | METH_KEYWORDS }, | |
11083 | { "wxWindow_ClientToScreenXY", (PyCFunction) _wrap_wxWindow_ClientToScreenXY, METH_VARARGS | METH_KEYWORDS }, | |
d56cebe7 | 11084 | { "wxWindow_Clear", (PyCFunction) _wrap_wxWindow_Clear, METH_VARARGS | METH_KEYWORDS }, |
3ca6a5f0 BP |
11085 | { "wxWindow_CenterOnScreen", (PyCFunction) _wrap_wxWindow_CenterOnScreen, METH_VARARGS | METH_KEYWORDS }, |
11086 | { "wxWindow_CentreOnScreen", (PyCFunction) _wrap_wxWindow_CentreOnScreen, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
11087 | { "wxWindow_CenterOnParent", (PyCFunction) _wrap_wxWindow_CenterOnParent, METH_VARARGS | METH_KEYWORDS }, |
11088 | { "wxWindow_CentreOnParent", (PyCFunction) _wrap_wxWindow_CentreOnParent, METH_VARARGS | METH_KEYWORDS }, | |
11089 | { "wxWindow_Centre", (PyCFunction) _wrap_wxWindow_Centre, METH_VARARGS | METH_KEYWORDS }, | |
11090 | { "wxWindow_Center", (PyCFunction) _wrap_wxWindow_Center, METH_VARARGS | METH_KEYWORDS }, | |
11091 | { "wxWindow_CaptureMouse", (PyCFunction) _wrap_wxWindow_CaptureMouse, METH_VARARGS | METH_KEYWORDS }, | |
09f3d4e6 RD |
11092 | { "wxWindow_Create", (PyCFunction) _wrap_wxWindow_Create, METH_VARARGS | METH_KEYWORDS }, |
11093 | { "new_wxPreWindow", (PyCFunction) _wrap_new_wxPreWindow, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 | 11094 | { "new_wxWindow", (PyCFunction) _wrap_new_wxWindow, METH_VARARGS | METH_KEYWORDS }, |
0122b7e3 | 11095 | { "wxPyValidator__setCallbackInfo", (PyCFunction) _wrap_wxPyValidator__setCallbackInfo, METH_VARARGS | METH_KEYWORDS }, |
2f90df85 | 11096 | { "new_wxPyValidator", (PyCFunction) _wrap_new_wxPyValidator, METH_VARARGS | METH_KEYWORDS }, |
9416aa89 RD |
11097 | { "wxValidator_SetBellOnError", (PyCFunction) _wrap_wxValidator_SetBellOnError, METH_VARARGS | METH_KEYWORDS }, |
11098 | { "wxValidator_IsSilent", (PyCFunction) _wrap_wxValidator_IsSilent, METH_VARARGS | METH_KEYWORDS }, | |
2f90df85 RD |
11099 | { "wxValidator_SetWindow", (PyCFunction) _wrap_wxValidator_SetWindow, METH_VARARGS | METH_KEYWORDS }, |
11100 | { "wxValidator_GetWindow", (PyCFunction) _wrap_wxValidator_GetWindow, METH_VARARGS | METH_KEYWORDS }, | |
11101 | { "wxValidator_Clone", (PyCFunction) _wrap_wxValidator_Clone, METH_VARARGS | METH_KEYWORDS }, | |
11102 | { "new_wxValidator", (PyCFunction) _wrap_new_wxValidator, METH_VARARGS | METH_KEYWORDS }, | |
0122b7e3 | 11103 | { "wxEvtHandler__setOORInfo", (PyCFunction) _wrap_wxEvtHandler__setOORInfo, METH_VARARGS | METH_KEYWORDS }, |
6999b0d8 | 11104 | { "wxEvtHandler_Disconnect", (PyCFunction) _wrap_wxEvtHandler_Disconnect, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 11105 | { "wxEvtHandler_Connect", (PyCFunction) _wrap_wxEvtHandler_Connect, METH_VARARGS | METH_KEYWORDS }, |
2f90df85 RD |
11106 | { "wxEvtHandler_SetPreviousHandler", (PyCFunction) _wrap_wxEvtHandler_SetPreviousHandler, METH_VARARGS | METH_KEYWORDS }, |
11107 | { "wxEvtHandler_SetNextHandler", (PyCFunction) _wrap_wxEvtHandler_SetNextHandler, METH_VARARGS | METH_KEYWORDS }, | |
11108 | { "wxEvtHandler_GetPreviousHandler", (PyCFunction) _wrap_wxEvtHandler_GetPreviousHandler, METH_VARARGS | METH_KEYWORDS }, | |
11109 | { "wxEvtHandler_GetNextHandler", (PyCFunction) _wrap_wxEvtHandler_GetNextHandler, METH_VARARGS | METH_KEYWORDS }, | |
11110 | { "wxEvtHandler_SetEvtHandlerEnabled", (PyCFunction) _wrap_wxEvtHandler_SetEvtHandlerEnabled, METH_VARARGS | METH_KEYWORDS }, | |
11111 | { "wxEvtHandler_GetEvtHandlerEnabled", (PyCFunction) _wrap_wxEvtHandler_GetEvtHandlerEnabled, METH_VARARGS | METH_KEYWORDS }, | |
f6bcfd97 | 11112 | { "wxEvtHandler_AddPendingEvent", (PyCFunction) _wrap_wxEvtHandler_AddPendingEvent, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 11113 | { "wxEvtHandler_ProcessEvent", (PyCFunction) _wrap_wxEvtHandler_ProcessEvent, METH_VARARGS | METH_KEYWORDS }, |
c368d904 | 11114 | { "new_wxEvtHandler", (PyCFunction) _wrap_new_wxEvtHandler, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 | 11115 | { "wxWindow_FromHWND", (PyCFunction) _wrap_wxWindow_FromHWND, METH_VARARGS | METH_KEYWORDS }, |
8ab979d7 RD |
11116 | { NULL, NULL } |
11117 | }; | |
1d99702e RD |
11118 | #ifdef __cplusplus |
11119 | } | |
11120 | #endif | |
11121 | /* | |
11122 | * This table is used by the pointer type-checker | |
11123 | */ | |
11124 | static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = { | |
1d99702e | 11125 | { "_signed_long","_long",0}, |
b1462dfa | 11126 | { "_wxPrintQuality","_wxCoord",0}, |
1d99702e RD |
11127 | { "_wxPrintQuality","_int",0}, |
11128 | { "_wxPrintQuality","_signed_int",0}, | |
11129 | { "_wxPrintQuality","_unsigned_int",0}, | |
11130 | { "_wxPrintQuality","_wxWindowID",0}, | |
11131 | { "_wxPrintQuality","_uint",0}, | |
11132 | { "_wxPrintQuality","_EBool",0}, | |
11133 | { "_wxPrintQuality","_size_t",0}, | |
c368d904 | 11134 | { "_wxPrintQuality","_time_t",0}, |
1d99702e | 11135 | { "_byte","_unsigned_char",0}, |
1d99702e RD |
11136 | { "_long","_unsigned_long",0}, |
11137 | { "_long","_signed_long",0}, | |
b1462dfa | 11138 | { "_size_t","_wxCoord",0}, |
1d99702e | 11139 | { "_size_t","_wxPrintQuality",0}, |
c368d904 | 11140 | { "_size_t","_time_t",0}, |
1d99702e RD |
11141 | { "_size_t","_unsigned_int",0}, |
11142 | { "_size_t","_int",0}, | |
11143 | { "_size_t","_wxWindowID",0}, | |
11144 | { "_size_t","_uint",0}, | |
1d99702e | 11145 | { "_wxPanel","_wxScrolledWindow",SwigwxScrolledWindowTowxPanel}, |
b1462dfa | 11146 | { "_uint","_wxCoord",0}, |
1d99702e | 11147 | { "_uint","_wxPrintQuality",0}, |
c368d904 | 11148 | { "_uint","_time_t",0}, |
1d99702e RD |
11149 | { "_uint","_size_t",0}, |
11150 | { "_uint","_unsigned_int",0}, | |
11151 | { "_uint","_int",0}, | |
11152 | { "_uint","_wxWindowID",0}, | |
f6bcfd97 | 11153 | { "_wxChar","_char",0}, |
f6bcfd97 | 11154 | { "_char","_wxChar",0}, |
cdf14688 | 11155 | { "_struct_wxNativeFontInfo","_wxNativeFontInfo",0}, |
b1462dfa | 11156 | { "_EBool","_wxCoord",0}, |
1d99702e RD |
11157 | { "_EBool","_wxPrintQuality",0}, |
11158 | { "_EBool","_signed_int",0}, | |
11159 | { "_EBool","_int",0}, | |
11160 | { "_EBool","_wxWindowID",0}, | |
1d99702e | 11161 | { "_unsigned_long","_long",0}, |
cdf14688 | 11162 | { "_wxNativeFontInfo","_struct_wxNativeFontInfo",0}, |
b1462dfa | 11163 | { "_signed_int","_wxCoord",0}, |
1d99702e RD |
11164 | { "_signed_int","_wxPrintQuality",0}, |
11165 | { "_signed_int","_EBool",0}, | |
11166 | { "_signed_int","_wxWindowID",0}, | |
11167 | { "_signed_int","_int",0}, | |
1d99702e RD |
11168 | { "_WXTYPE","_short",0}, |
11169 | { "_WXTYPE","_signed_short",0}, | |
11170 | { "_WXTYPE","_unsigned_short",0}, | |
1d99702e RD |
11171 | { "_unsigned_short","_WXTYPE",0}, |
11172 | { "_unsigned_short","_short",0}, | |
9416aa89 | 11173 | { "_wxObject","_wxMenuItem",SwigwxMenuItemTowxObject}, |
9416aa89 | 11174 | { "_wxObject","_wxMenuBar",SwigwxMenuBarTowxObject}, |
9416aa89 | 11175 | { "_wxObject","_wxMenu",SwigwxMenuTowxObject}, |
9416aa89 | 11176 | { "_wxObject","_wxScrolledWindow",SwigwxScrolledWindowTowxObject}, |
9416aa89 | 11177 | { "_wxObject","_wxPanel",SwigwxPanelTowxObject}, |
9416aa89 | 11178 | { "_wxObject","_wxWindow",SwigwxWindowTowxObject}, |
9416aa89 | 11179 | { "_wxObject","_wxPyValidator",SwigwxPyValidatorTowxObject}, |
9416aa89 | 11180 | { "_wxObject","_wxValidator",SwigwxValidatorTowxObject}, |
9416aa89 | 11181 | { "_wxObject","_wxEvtHandler",SwigwxEvtHandlerTowxObject}, |
1d99702e RD |
11182 | { "_signed_short","_WXTYPE",0}, |
11183 | { "_signed_short","_short",0}, | |
1d99702e | 11184 | { "_unsigned_char","_byte",0}, |
b1462dfa | 11185 | { "_unsigned_int","_wxCoord",0}, |
1d99702e | 11186 | { "_unsigned_int","_wxPrintQuality",0}, |
c368d904 | 11187 | { "_unsigned_int","_time_t",0}, |
1d99702e RD |
11188 | { "_unsigned_int","_size_t",0}, |
11189 | { "_unsigned_int","_uint",0}, | |
11190 | { "_unsigned_int","_wxWindowID",0}, | |
11191 | { "_unsigned_int","_int",0}, | |
1d99702e RD |
11192 | { "_short","_WXTYPE",0}, |
11193 | { "_short","_unsigned_short",0}, | |
11194 | { "_short","_signed_short",0}, | |
b1462dfa | 11195 | { "_wxWindowID","_wxCoord",0}, |
1d99702e | 11196 | { "_wxWindowID","_wxPrintQuality",0}, |
c368d904 | 11197 | { "_wxWindowID","_time_t",0}, |
1d99702e RD |
11198 | { "_wxWindowID","_size_t",0}, |
11199 | { "_wxWindowID","_EBool",0}, | |
11200 | { "_wxWindowID","_uint",0}, | |
11201 | { "_wxWindowID","_int",0}, | |
11202 | { "_wxWindowID","_signed_int",0}, | |
11203 | { "_wxWindowID","_unsigned_int",0}, | |
b1462dfa | 11204 | { "_int","_wxCoord",0}, |
1d99702e | 11205 | { "_int","_wxPrintQuality",0}, |
c368d904 | 11206 | { "_int","_time_t",0}, |
1d99702e RD |
11207 | { "_int","_size_t",0}, |
11208 | { "_int","_EBool",0}, | |
11209 | { "_int","_uint",0}, | |
11210 | { "_int","_wxWindowID",0}, | |
11211 | { "_int","_unsigned_int",0}, | |
11212 | { "_int","_signed_int",0}, | |
c368d904 RD |
11213 | { "_time_t","_wxCoord",0}, |
11214 | { "_time_t","_wxPrintQuality",0}, | |
11215 | { "_time_t","_unsigned_int",0}, | |
11216 | { "_time_t","_int",0}, | |
11217 | { "_time_t","_wxWindowID",0}, | |
11218 | { "_time_t","_uint",0}, | |
11219 | { "_time_t","_size_t",0}, | |
2f90df85 | 11220 | { "_wxValidator","_wxPyValidator",SwigwxPyValidatorTowxValidator}, |
b1462dfa RD |
11221 | { "_wxCoord","_int",0}, |
11222 | { "_wxCoord","_signed_int",0}, | |
11223 | { "_wxCoord","_unsigned_int",0}, | |
11224 | { "_wxCoord","_wxWindowID",0}, | |
11225 | { "_wxCoord","_uint",0}, | |
11226 | { "_wxCoord","_EBool",0}, | |
11227 | { "_wxCoord","_size_t",0}, | |
c368d904 | 11228 | { "_wxCoord","_time_t",0}, |
b1462dfa | 11229 | { "_wxCoord","_wxPrintQuality",0}, |
1d99702e | 11230 | { "_wxEvtHandler","_wxMenuBar",SwigwxMenuBarTowxEvtHandler}, |
1d99702e | 11231 | { "_wxEvtHandler","_wxMenu",SwigwxMenuTowxEvtHandler}, |
1d99702e | 11232 | { "_wxEvtHandler","_wxScrolledWindow",SwigwxScrolledWindowTowxEvtHandler}, |
1d99702e | 11233 | { "_wxEvtHandler","_wxPanel",SwigwxPanelTowxEvtHandler}, |
1d99702e | 11234 | { "_wxEvtHandler","_wxWindow",SwigwxWindowTowxEvtHandler}, |
2f90df85 | 11235 | { "_wxEvtHandler","_wxPyValidator",SwigwxPyValidatorTowxEvtHandler}, |
2f90df85 | 11236 | { "_wxEvtHandler","_wxValidator",SwigwxValidatorTowxEvtHandler}, |
b1462dfa | 11237 | { "_wxWindow","_wxMenuBar",SwigwxMenuBarTowxWindow}, |
1d99702e | 11238 | { "_wxWindow","_wxScrolledWindow",SwigwxScrolledWindowTowxWindow}, |
1d99702e | 11239 | { "_wxWindow","_wxPanel",SwigwxPanelTowxWindow}, |
1d99702e RD |
11240 | {0,0,0}}; |
11241 | ||
8ab979d7 RD |
11242 | static PyObject *SWIG_globals; |
11243 | #ifdef __cplusplus | |
11244 | extern "C" | |
11245 | #endif | |
1d99702e | 11246 | SWIGEXPORT(void) initwindowsc() { |
8ab979d7 RD |
11247 | PyObject *m, *d; |
11248 | SWIG_globals = SWIG_newvarlink(); | |
11249 | m = Py_InitModule("windowsc", windowscMethods); | |
11250 | d = PyModule_GetDict(m); | |
1d99702e RD |
11251 | { |
11252 | int i; | |
11253 | for (i = 0; _swig_mapping[i].n1; i++) | |
11254 | SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv); | |
11255 | } | |
8ab979d7 | 11256 | } |