]> git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/src/msw/windows.cpp
A bit more DnD and clipbrd updates
[wxWidgets.git] / utils / wxPython / src / msw / windows.cpp
1 /*
2 * FILE : msw/windows.cpp
3 *
4 * This file was automatically generated by :
5 * Simplified Wrapper and Interface Generator (SWIG)
6 * Version 1.1 (Patch 5)
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)
27 # define SWIGEXPORT(a,b) __declspec(dllexport) a b
28 # else
29 # if defined(__BORLANDC__)
30 # define SWIGEXPORT(a,b) a _export b
31 # else
32 # define SWIGEXPORT(a,b) a b
33 # endif
34 # endif
35 #else
36 # define SWIGEXPORT(a,b) a b
37 #endif
38
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42 #include "Python.h"
43 extern void SWIG_MakePtr(char *, void *, char *);
44 extern void SWIG_RegisterMapping(char *, char *, void *(*)(void *));
45 extern char *SWIG_GetPtr(char *, void **, char *);
46 extern void SWIG_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *));
47 extern PyObject *SWIG_newvarlink(void);
48 #ifdef __cplusplus
49 }
50 #endif
51
52 #define SWIG_init initwindowsc
53
54 #define SWIG_name "windowsc"
55
56 #include "helpers.h"
57
58 #ifdef __WXMSW__
59 // wxGTK defines wxMenuItem inside menu.h
60 #include <wx/menuitem.h>
61 #endif
62
63 #ifdef __WXMSW__
64 #include <wx/minifram.h>
65 #endif
66
67 static PyObject* l_output_helper(PyObject* target, PyObject* o) {
68 PyObject* o2;
69 if (!target) {
70 target = o;
71 } else if (target == Py_None) {
72 Py_DECREF(Py_None);
73 target = o;
74 } else {
75 if (!PyList_Check(target)) {
76 o2 = target;
77 target = PyList_New(0);
78 PyList_Append(target, o2);
79 Py_XDECREF(o2);
80 }
81 PyList_Append(target,o);
82 Py_XDECREF(o);
83 }
84 return target;
85 }
86
87 static PyObject* t_output_helper(PyObject* target, PyObject* o) {
88 PyObject* o2;
89 PyObject* o3;
90
91 if (!target) {
92 target = o;
93 } else if (target == Py_None) {
94 Py_DECREF(Py_None);
95 target = o;
96 } else {
97 if (!PyTuple_Check(target)) {
98 o2 = target;
99 target = PyTuple_New(1);
100 PyTuple_SetItem(target, 0, o2);
101 }
102 o3 = PyTuple_New(1);
103 PyTuple_SetItem(o3, 0, o);
104
105 o2 = target;
106 target = PySequence_Concat(o2, o3);
107 Py_DECREF(o2);
108 Py_DECREF(o3);
109 }
110 return target;
111 }
112
113
114 extern byte* byte_LIST_helper(PyObject* source);
115 extern int* int_LIST_helper(PyObject* source);
116 extern long* long_LIST_helper(PyObject* source);
117 extern char** string_LIST_helper(PyObject* source);
118 extern wxPoint* wxPoint_LIST_helper(PyObject* source);
119 extern wxBitmap** wxBitmap_LIST_helper(PyObject* source);
120 extern wxString* wxString_LIST_helper(PyObject* source);
121 extern wxAcceleratorEntry* wxAcceleratorEntry_LIST_helper(PyObject* source);
122
123
124 static char* wxStringErrorMsg = "string type is required for parameter";
125
126 wxWindow* wxWindow_FindFocus() {
127 return wxWindow::FindFocus();
128 }
129 static PyObject *_wrap_wxWindow_FindFocus(PyObject *self, PyObject *args) {
130 PyObject * _resultobj;
131 wxWindow * _result;
132 char _ptemp[128];
133
134 self = self;
135 if(!PyArg_ParseTuple(args,":wxWindow_FindFocus"))
136 return NULL;
137 _result = (wxWindow *)wxWindow_FindFocus();
138 SWIG_MakePtr(_ptemp, (char *) _result,"_wxWindow_p");
139 _resultobj = Py_BuildValue("s",_ptemp);
140 return _resultobj;
141 }
142
143 static void wxEvtHandler_Connect(wxEvtHandler *self,int id,int lastId,int eventType,PyObject * func) {
144 if (PyCallable_Check(func)) {
145 self->Connect(id, lastId, eventType,
146 (wxObjectEventFunction) &wxPyCallback::EventThunker,
147 new wxPyCallback(func));
148 }
149 }
150 static PyObject *_wrap_wxEvtHandler_Connect(PyObject *self, PyObject *args) {
151 PyObject * _resultobj;
152 wxEvtHandler * _arg0;
153 int _arg1;
154 int _arg2;
155 int _arg3;
156 PyObject * _arg4;
157 char * _argc0 = 0;
158 PyObject * _obj4 = 0;
159
160 self = self;
161 if(!PyArg_ParseTuple(args,"siiiO:wxEvtHandler_Connect",&_argc0,&_arg1,&_arg2,&_arg3,&_obj4))
162 return NULL;
163 if (_argc0) {
164 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxEvtHandler_p")) {
165 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEvtHandler_Connect. Expected _wxEvtHandler_p.");
166 return NULL;
167 }
168 }
169 {
170 _arg4 = _obj4;
171 }
172 wxEvtHandler_Connect(_arg0,_arg1,_arg2,_arg3,_arg4);
173 Py_INCREF(Py_None);
174 _resultobj = Py_None;
175 return _resultobj;
176 }
177
178 static void *SwigwxWindowTowxEvtHandler(void *ptr) {
179 wxWindow *src;
180 wxEvtHandler *dest;
181 src = (wxWindow *) ptr;
182 dest = (wxEvtHandler *) src;
183 return (void *) dest;
184 }
185
186 #define new_wxWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (new wxWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5))
187 static PyObject *_wrap_new_wxWindow(PyObject *self, PyObject *args) {
188 PyObject * _resultobj;
189 wxWindow * _result;
190 wxWindow * _arg0;
191 wxWindowID _arg1;
192 wxPoint * _arg2 = &wxPyDefaultPosition;
193 wxSize * _arg3 = &wxPyDefaultSize;
194 long _arg4 = 0;
195 char * _arg5 = "panel";
196 char * _argc0 = 0;
197 char * _argc2 = 0;
198 char * _argc3 = 0;
199 char _ptemp[128];
200
201 self = self;
202 if(!PyArg_ParseTuple(args,"si|ssls:new_wxWindow",&_argc0,&_arg1,&_argc2,&_argc3,&_arg4,&_arg5))
203 return NULL;
204 if (_argc0) {
205 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
206 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxWindow. Expected _wxWindow_p.");
207 return NULL;
208 }
209 }
210 if (_argc2) {
211 if (SWIG_GetPtr(_argc2,(void **) &_arg2,"_wxPoint_p")) {
212 PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of new_wxWindow. Expected _wxPoint_p.");
213 return NULL;
214 }
215 }
216 if (_argc3) {
217 if (SWIG_GetPtr(_argc3,(void **) &_arg3,"_wxSize_p")) {
218 PyErr_SetString(PyExc_TypeError,"Type error in argument 4 of new_wxWindow. Expected _wxSize_p.");
219 return NULL;
220 }
221 }
222 _result = (wxWindow *)new_wxWindow(_arg0,_arg1,*_arg2,*_arg3,_arg4,_arg5);
223 SWIG_MakePtr(_ptemp, (char *) _result,"_wxWindow_p");
224 _resultobj = Py_BuildValue("s",_ptemp);
225 return _resultobj;
226 }
227
228 #define wxWindow_CaptureMouse(_swigobj) (_swigobj->CaptureMouse())
229 static PyObject *_wrap_wxWindow_CaptureMouse(PyObject *self, PyObject *args) {
230 PyObject * _resultobj;
231 wxWindow * _arg0;
232 char * _argc0 = 0;
233
234 self = self;
235 if(!PyArg_ParseTuple(args,"s:wxWindow_CaptureMouse",&_argc0))
236 return NULL;
237 if (_argc0) {
238 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
239 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_CaptureMouse. Expected _wxWindow_p.");
240 return NULL;
241 }
242 }
243 wxWindow_CaptureMouse(_arg0);
244 Py_INCREF(Py_None);
245 _resultobj = Py_None;
246 return _resultobj;
247 }
248
249 #define wxWindow_Center(_swigobj,_swigarg0) (_swigobj->Center(_swigarg0))
250 static PyObject *_wrap_wxWindow_Center(PyObject *self, PyObject *args) {
251 PyObject * _resultobj;
252 wxWindow * _arg0;
253 int _arg1 = (wxHORIZONTAL);
254 char * _argc0 = 0;
255
256 self = self;
257 if(!PyArg_ParseTuple(args,"s|i:wxWindow_Center",&_argc0,&_arg1))
258 return NULL;
259 if (_argc0) {
260 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
261 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Center. Expected _wxWindow_p.");
262 return NULL;
263 }
264 }
265 wxWindow_Center(_arg0,_arg1);
266 Py_INCREF(Py_None);
267 _resultobj = Py_None;
268 return _resultobj;
269 }
270
271 #define wxWindow_Centre(_swigobj,_swigarg0) (_swigobj->Centre(_swigarg0))
272 static PyObject *_wrap_wxWindow_Centre(PyObject *self, PyObject *args) {
273 PyObject * _resultobj;
274 wxWindow * _arg0;
275 int _arg1 = (wxHORIZONTAL);
276 char * _argc0 = 0;
277
278 self = self;
279 if(!PyArg_ParseTuple(args,"s|i:wxWindow_Centre",&_argc0,&_arg1))
280 return NULL;
281 if (_argc0) {
282 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
283 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Centre. Expected _wxWindow_p.");
284 return NULL;
285 }
286 }
287 wxWindow_Centre(_arg0,_arg1);
288 Py_INCREF(Py_None);
289 _resultobj = Py_None;
290 return _resultobj;
291 }
292
293 #define wxWindow_ClientToScreen(_swigobj,_swigarg0,_swigarg1) (_swigobj->ClientToScreen(_swigarg0,_swigarg1))
294 static PyObject *_wrap_wxWindow_ClientToScreen(PyObject *self, PyObject *args) {
295 PyObject * _resultobj;
296 wxWindow * _arg0;
297 int * _arg1;
298 int * _arg2;
299 char * _argc0 = 0;
300 int temp;
301 PyObject * _obj1 = 0;
302 int temp0;
303 PyObject * _obj2 = 0;
304
305 self = self;
306 if(!PyArg_ParseTuple(args,"sOO:wxWindow_ClientToScreen",&_argc0,&_obj1,&_obj2))
307 return NULL;
308 if (_argc0) {
309 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
310 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ClientToScreen. Expected _wxWindow_p.");
311 return NULL;
312 }
313 }
314 {
315 temp = (int) PyInt_AsLong(_obj1);
316 _arg1 = &temp;
317 }
318 {
319 temp0 = (int) PyInt_AsLong(_obj2);
320 _arg2 = &temp0;
321 }
322 wxWindow_ClientToScreen(_arg0,_arg1,_arg2);
323 Py_INCREF(Py_None);
324 _resultobj = Py_None;
325 {
326 PyObject *o;
327 o = PyInt_FromLong((long) (*_arg1));
328 _resultobj = t_output_helper(_resultobj, o);
329 }
330 {
331 PyObject *o;
332 o = PyInt_FromLong((long) (*_arg2));
333 _resultobj = t_output_helper(_resultobj, o);
334 }
335 return _resultobj;
336 }
337
338 #define wxWindow_Close(_swigobj,_swigarg0) (_swigobj->Close(_swigarg0))
339 static PyObject *_wrap_wxWindow_Close(PyObject *self, PyObject *args) {
340 PyObject * _resultobj;
341 bool _result;
342 wxWindow * _arg0;
343 int _arg1 = (0);
344 char * _argc0 = 0;
345
346 self = self;
347 if(!PyArg_ParseTuple(args,"s|i:wxWindow_Close",&_argc0,&_arg1))
348 return NULL;
349 if (_argc0) {
350 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
351 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Close. Expected _wxWindow_p.");
352 return NULL;
353 }
354 }
355 _result = (bool )wxWindow_Close(_arg0,_arg1);
356 _resultobj = Py_BuildValue("i",_result);
357 return _resultobj;
358 }
359
360 #define wxWindow_Destroy(_swigobj) (_swigobj->Destroy())
361 static PyObject *_wrap_wxWindow_Destroy(PyObject *self, PyObject *args) {
362 PyObject * _resultobj;
363 bool _result;
364 wxWindow * _arg0;
365 char * _argc0 = 0;
366
367 self = self;
368 if(!PyArg_ParseTuple(args,"s:wxWindow_Destroy",&_argc0))
369 return NULL;
370 if (_argc0) {
371 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
372 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Destroy. Expected _wxWindow_p.");
373 return NULL;
374 }
375 }
376 _result = (bool )wxWindow_Destroy(_arg0);
377 _resultobj = Py_BuildValue("i",_result);
378 return _resultobj;
379 }
380
381 #define wxWindow_DestroyChildren(_swigobj) (_swigobj->DestroyChildren())
382 static PyObject *_wrap_wxWindow_DestroyChildren(PyObject *self, PyObject *args) {
383 PyObject * _resultobj;
384 wxWindow * _arg0;
385 char * _argc0 = 0;
386
387 self = self;
388 if(!PyArg_ParseTuple(args,"s:wxWindow_DestroyChildren",&_argc0))
389 return NULL;
390 if (_argc0) {
391 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
392 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_DestroyChildren. Expected _wxWindow_p.");
393 return NULL;
394 }
395 }
396 wxWindow_DestroyChildren(_arg0);
397 Py_INCREF(Py_None);
398 _resultobj = Py_None;
399 return _resultobj;
400 }
401
402 #define wxWindow_DragAcceptFiles(_swigobj,_swigarg0) (_swigobj->DragAcceptFiles(_swigarg0))
403 static PyObject *_wrap_wxWindow_DragAcceptFiles(PyObject *self, PyObject *args) {
404 PyObject * _resultobj;
405 wxWindow * _arg0;
406 bool _arg1;
407 char * _argc0 = 0;
408 int tempbool1;
409
410 self = self;
411 if(!PyArg_ParseTuple(args,"si:wxWindow_DragAcceptFiles",&_argc0,&tempbool1))
412 return NULL;
413 if (_argc0) {
414 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
415 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_DragAcceptFiles. Expected _wxWindow_p.");
416 return NULL;
417 }
418 }
419 _arg1 = (bool ) tempbool1;
420 wxWindow_DragAcceptFiles(_arg0,_arg1);
421 Py_INCREF(Py_None);
422 _resultobj = Py_None;
423 return _resultobj;
424 }
425
426 #define wxWindow_Enable(_swigobj,_swigarg0) (_swigobj->Enable(_swigarg0))
427 static PyObject *_wrap_wxWindow_Enable(PyObject *self, PyObject *args) {
428 PyObject * _resultobj;
429 wxWindow * _arg0;
430 bool _arg1;
431 char * _argc0 = 0;
432 int tempbool1;
433
434 self = self;
435 if(!PyArg_ParseTuple(args,"si:wxWindow_Enable",&_argc0,&tempbool1))
436 return NULL;
437 if (_argc0) {
438 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
439 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Enable. Expected _wxWindow_p.");
440 return NULL;
441 }
442 }
443 _arg1 = (bool ) tempbool1;
444 wxWindow_Enable(_arg0,_arg1);
445 Py_INCREF(Py_None);
446 _resultobj = Py_None;
447 return _resultobj;
448 }
449
450 #define wxWindow_FindWindowByID(_swigobj,_swigarg0) (_swigobj->FindWindow(_swigarg0))
451 static PyObject *_wrap_wxWindow_FindWindowByID(PyObject *self, PyObject *args) {
452 PyObject * _resultobj;
453 wxWindow * _result;
454 wxWindow * _arg0;
455 long _arg1;
456 char * _argc0 = 0;
457 char _ptemp[128];
458
459 self = self;
460 if(!PyArg_ParseTuple(args,"sl:wxWindow_FindWindowByID",&_argc0,&_arg1))
461 return NULL;
462 if (_argc0) {
463 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
464 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_FindWindowByID. Expected _wxWindow_p.");
465 return NULL;
466 }
467 }
468 _result = (wxWindow *)wxWindow_FindWindowByID(_arg0,_arg1);
469 SWIG_MakePtr(_ptemp, (char *) _result,"_wxWindow_p");
470 _resultobj = Py_BuildValue("s",_ptemp);
471 return _resultobj;
472 }
473
474 #define wxWindow_FindWindowByName(_swigobj,_swigarg0) (_swigobj->FindWindow(_swigarg0))
475 static PyObject *_wrap_wxWindow_FindWindowByName(PyObject *self, PyObject *args) {
476 PyObject * _resultobj;
477 wxWindow * _result;
478 wxWindow * _arg0;
479 wxString * _arg1;
480 char * _argc0 = 0;
481 PyObject * _obj1 = 0;
482 char _ptemp[128];
483
484 self = self;
485 if(!PyArg_ParseTuple(args,"sO:wxWindow_FindWindowByName",&_argc0,&_obj1))
486 return NULL;
487 if (_argc0) {
488 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
489 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_FindWindowByName. Expected _wxWindow_p.");
490 return NULL;
491 }
492 }
493 {
494 if (!PyString_Check(_obj1)) {
495 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
496 return NULL;
497 }
498 _arg1 = new wxString(PyString_AsString(_obj1));
499 }
500 _result = (wxWindow *)wxWindow_FindWindowByName(_arg0,*_arg1);
501 SWIG_MakePtr(_ptemp, (char *) _result,"_wxWindow_p");
502 _resultobj = Py_BuildValue("s",_ptemp);
503 {
504 if (_obj1)
505 delete _arg1;
506 }
507 return _resultobj;
508 }
509
510 #define wxWindow_Fit(_swigobj) (_swigobj->Fit())
511 static PyObject *_wrap_wxWindow_Fit(PyObject *self, PyObject *args) {
512 PyObject * _resultobj;
513 wxWindow * _arg0;
514 char * _argc0 = 0;
515
516 self = self;
517 if(!PyArg_ParseTuple(args,"s:wxWindow_Fit",&_argc0))
518 return NULL;
519 if (_argc0) {
520 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
521 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Fit. Expected _wxWindow_p.");
522 return NULL;
523 }
524 }
525 wxWindow_Fit(_arg0);
526 Py_INCREF(Py_None);
527 _resultobj = Py_None;
528 return _resultobj;
529 }
530
531 #define wxWindow_GetBackgroundColour(_swigobj) (_swigobj->GetBackgroundColour())
532 static PyObject *_wrap_wxWindow_GetBackgroundColour(PyObject *self, PyObject *args) {
533 PyObject * _resultobj;
534 wxColour * _result;
535 wxWindow * _arg0;
536 char * _argc0 = 0;
537 char _ptemp[128];
538
539 self = self;
540 if(!PyArg_ParseTuple(args,"s:wxWindow_GetBackgroundColour",&_argc0))
541 return NULL;
542 if (_argc0) {
543 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
544 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetBackgroundColour. Expected _wxWindow_p.");
545 return NULL;
546 }
547 }
548 _result = new wxColour (wxWindow_GetBackgroundColour(_arg0));
549 SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
550 _resultobj = Py_BuildValue("s",_ptemp);
551 return _resultobj;
552 }
553
554 #define wxWindow_GetCharHeight(_swigobj) (_swigobj->GetCharHeight())
555 static PyObject *_wrap_wxWindow_GetCharHeight(PyObject *self, PyObject *args) {
556 PyObject * _resultobj;
557 int _result;
558 wxWindow * _arg0;
559 char * _argc0 = 0;
560
561 self = self;
562 if(!PyArg_ParseTuple(args,"s:wxWindow_GetCharHeight",&_argc0))
563 return NULL;
564 if (_argc0) {
565 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
566 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetCharHeight. Expected _wxWindow_p.");
567 return NULL;
568 }
569 }
570 _result = (int )wxWindow_GetCharHeight(_arg0);
571 _resultobj = Py_BuildValue("i",_result);
572 return _resultobj;
573 }
574
575 #define wxWindow_GetCharWidth(_swigobj) (_swigobj->GetCharWidth())
576 static PyObject *_wrap_wxWindow_GetCharWidth(PyObject *self, PyObject *args) {
577 PyObject * _resultobj;
578 int _result;
579 wxWindow * _arg0;
580 char * _argc0 = 0;
581
582 self = self;
583 if(!PyArg_ParseTuple(args,"s:wxWindow_GetCharWidth",&_argc0))
584 return NULL;
585 if (_argc0) {
586 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
587 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetCharWidth. Expected _wxWindow_p.");
588 return NULL;
589 }
590 }
591 _result = (int )wxWindow_GetCharWidth(_arg0);
592 _resultobj = Py_BuildValue("i",_result);
593 return _resultobj;
594 }
595
596 #define wxWindow_GetClientSize(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetClientSize(_swigarg0,_swigarg1))
597 static PyObject *_wrap_wxWindow_GetClientSize(PyObject *self, PyObject *args) {
598 PyObject * _resultobj;
599 wxWindow * _arg0;
600 int * _arg1;
601 int temp;
602 int * _arg2;
603 int temp0;
604 char * _argc0 = 0;
605
606 self = self;
607 {
608 _arg1 = &temp;
609 }
610 {
611 _arg2 = &temp0;
612 }
613 if(!PyArg_ParseTuple(args,"s:wxWindow_GetClientSize",&_argc0))
614 return NULL;
615 if (_argc0) {
616 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
617 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetClientSize. Expected _wxWindow_p.");
618 return NULL;
619 }
620 }
621 wxWindow_GetClientSize(_arg0,_arg1,_arg2);
622 Py_INCREF(Py_None);
623 _resultobj = Py_None;
624 {
625 PyObject *o;
626 o = PyInt_FromLong((long) (*_arg1));
627 _resultobj = t_output_helper(_resultobj, o);
628 }
629 {
630 PyObject *o;
631 o = PyInt_FromLong((long) (*_arg2));
632 _resultobj = t_output_helper(_resultobj, o);
633 }
634 return _resultobj;
635 }
636
637 #define wxWindow_GetConstraints(_swigobj) (_swigobj->GetConstraints())
638 static PyObject *_wrap_wxWindow_GetConstraints(PyObject *self, PyObject *args) {
639 PyObject * _resultobj;
640 wxLayoutConstraints * _result;
641 wxWindow * _arg0;
642 char * _argc0 = 0;
643 char _ptemp[128];
644
645 self = self;
646 if(!PyArg_ParseTuple(args,"s:wxWindow_GetConstraints",&_argc0))
647 return NULL;
648 if (_argc0) {
649 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
650 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetConstraints. Expected _wxWindow_p.");
651 return NULL;
652 }
653 }
654 _result = (wxLayoutConstraints *)wxWindow_GetConstraints(_arg0);
655 SWIG_MakePtr(_ptemp, (char *) _result,"_wxLayoutConstraints_p");
656 _resultobj = Py_BuildValue("s",_ptemp);
657 return _resultobj;
658 }
659
660 #define wxWindow_GetDefaultItem(_swigobj) (_swigobj->GetDefaultItem())
661 static PyObject *_wrap_wxWindow_GetDefaultItem(PyObject *self, PyObject *args) {
662 PyObject * _resultobj;
663 wxButton * _result;
664 wxWindow * _arg0;
665 char * _argc0 = 0;
666 char _ptemp[128];
667
668 self = self;
669 if(!PyArg_ParseTuple(args,"s:wxWindow_GetDefaultItem",&_argc0))
670 return NULL;
671 if (_argc0) {
672 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
673 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetDefaultItem. Expected _wxWindow_p.");
674 return NULL;
675 }
676 }
677 _result = (wxButton *)wxWindow_GetDefaultItem(_arg0);
678 SWIG_MakePtr(_ptemp, (char *) _result,"_wxButton_p");
679 _resultobj = Py_BuildValue("s",_ptemp);
680 return _resultobj;
681 }
682
683 #define wxWindow_GetFont(_swigobj) (_swigobj->GetFont())
684 static PyObject *_wrap_wxWindow_GetFont(PyObject *self, PyObject *args) {
685 PyObject * _resultobj;
686 wxFont * _result;
687 wxWindow * _arg0;
688 char * _argc0 = 0;
689 char _ptemp[128];
690
691 self = self;
692 if(!PyArg_ParseTuple(args,"s:wxWindow_GetFont",&_argc0))
693 return NULL;
694 if (_argc0) {
695 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
696 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetFont. Expected _wxWindow_p.");
697 return NULL;
698 }
699 }
700 _result = (wxFont *)wxWindow_GetFont(_arg0);
701 SWIG_MakePtr(_ptemp, (char *) _result,"_wxFont_p");
702 _resultobj = Py_BuildValue("s",_ptemp);
703 return _resultobj;
704 }
705
706 #define wxWindow_GetForegroundColour(_swigobj) (_swigobj->GetForegroundColour())
707 static PyObject *_wrap_wxWindow_GetForegroundColour(PyObject *self, PyObject *args) {
708 PyObject * _resultobj;
709 wxColour * _result;
710 wxWindow * _arg0;
711 char * _argc0 = 0;
712 char _ptemp[128];
713
714 self = self;
715 if(!PyArg_ParseTuple(args,"s:wxWindow_GetForegroundColour",&_argc0))
716 return NULL;
717 if (_argc0) {
718 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
719 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetForegroundColour. Expected _wxWindow_p.");
720 return NULL;
721 }
722 }
723 _result = new wxColour (wxWindow_GetForegroundColour(_arg0));
724 SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
725 _resultobj = Py_BuildValue("s",_ptemp);
726 return _resultobj;
727 }
728
729 #define wxWindow_GetGrandParent(_swigobj) (_swigobj->GetGrandParent())
730 static PyObject *_wrap_wxWindow_GetGrandParent(PyObject *self, PyObject *args) {
731 PyObject * _resultobj;
732 wxWindow * _result;
733 wxWindow * _arg0;
734 char * _argc0 = 0;
735 char _ptemp[128];
736
737 self = self;
738 if(!PyArg_ParseTuple(args,"s:wxWindow_GetGrandParent",&_argc0))
739 return NULL;
740 if (_argc0) {
741 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
742 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetGrandParent. Expected _wxWindow_p.");
743 return NULL;
744 }
745 }
746 _result = (wxWindow *)wxWindow_GetGrandParent(_arg0);
747 SWIG_MakePtr(_ptemp, (char *) _result,"_wxWindow_p");
748 _resultobj = Py_BuildValue("s",_ptemp);
749 return _resultobj;
750 }
751
752 #define wxWindow_GetId(_swigobj) (_swigobj->GetId())
753 static PyObject *_wrap_wxWindow_GetId(PyObject *self, PyObject *args) {
754 PyObject * _resultobj;
755 int _result;
756 wxWindow * _arg0;
757 char * _argc0 = 0;
758
759 self = self;
760 if(!PyArg_ParseTuple(args,"s:wxWindow_GetId",&_argc0))
761 return NULL;
762 if (_argc0) {
763 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
764 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetId. Expected _wxWindow_p.");
765 return NULL;
766 }
767 }
768 _result = (int )wxWindow_GetId(_arg0);
769 _resultobj = Py_BuildValue("i",_result);
770 return _resultobj;
771 }
772
773 #define wxWindow_GetPosition(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetPosition(_swigarg0,_swigarg1))
774 static PyObject *_wrap_wxWindow_GetPosition(PyObject *self, PyObject *args) {
775 PyObject * _resultobj;
776 wxWindow * _arg0;
777 int * _arg1;
778 int temp;
779 int * _arg2;
780 int temp0;
781 char * _argc0 = 0;
782
783 self = self;
784 {
785 _arg1 = &temp;
786 }
787 {
788 _arg2 = &temp0;
789 }
790 if(!PyArg_ParseTuple(args,"s:wxWindow_GetPosition",&_argc0))
791 return NULL;
792 if (_argc0) {
793 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
794 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetPosition. Expected _wxWindow_p.");
795 return NULL;
796 }
797 }
798 wxWindow_GetPosition(_arg0,_arg1,_arg2);
799 Py_INCREF(Py_None);
800 _resultobj = Py_None;
801 {
802 PyObject *o;
803 o = PyInt_FromLong((long) (*_arg1));
804 _resultobj = t_output_helper(_resultobj, o);
805 }
806 {
807 PyObject *o;
808 o = PyInt_FromLong((long) (*_arg2));
809 _resultobj = t_output_helper(_resultobj, o);
810 }
811 return _resultobj;
812 }
813
814 #define wxWindow_GetLabel(_swigobj) (_swigobj->GetLabel())
815 static PyObject *_wrap_wxWindow_GetLabel(PyObject *self, PyObject *args) {
816 PyObject * _resultobj;
817 wxString * _result;
818 wxWindow * _arg0;
819 char * _argc0 = 0;
820
821 self = self;
822 if(!PyArg_ParseTuple(args,"s:wxWindow_GetLabel",&_argc0))
823 return NULL;
824 if (_argc0) {
825 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
826 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetLabel. Expected _wxWindow_p.");
827 return NULL;
828 }
829 }
830 _result = new wxString (wxWindow_GetLabel(_arg0));
831 {
832 _resultobj = PyString_FromString(WXSTRINGCAST *(_result));
833 }
834 {
835 delete _result;
836 }
837 return _resultobj;
838 }
839
840 #define wxWindow_GetName(_swigobj) (_swigobj->GetName())
841 static PyObject *_wrap_wxWindow_GetName(PyObject *self, PyObject *args) {
842 PyObject * _resultobj;
843 wxString * _result;
844 wxWindow * _arg0;
845 char * _argc0 = 0;
846
847 self = self;
848 if(!PyArg_ParseTuple(args,"s:wxWindow_GetName",&_argc0))
849 return NULL;
850 if (_argc0) {
851 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
852 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetName. Expected _wxWindow_p.");
853 return NULL;
854 }
855 }
856 _result = new wxString (wxWindow_GetName(_arg0));
857 {
858 _resultobj = PyString_FromString(WXSTRINGCAST *(_result));
859 }
860 {
861 delete _result;
862 }
863 return _resultobj;
864 }
865
866 #define wxWindow_GetParent(_swigobj) (_swigobj->GetParent())
867 static PyObject *_wrap_wxWindow_GetParent(PyObject *self, PyObject *args) {
868 PyObject * _resultobj;
869 wxWindow * _result;
870 wxWindow * _arg0;
871 char * _argc0 = 0;
872 char _ptemp[128];
873
874 self = self;
875 if(!PyArg_ParseTuple(args,"s:wxWindow_GetParent",&_argc0))
876 return NULL;
877 if (_argc0) {
878 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
879 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetParent. Expected _wxWindow_p.");
880 return NULL;
881 }
882 }
883 _result = (wxWindow *)wxWindow_GetParent(_arg0);
884 SWIG_MakePtr(_ptemp, (char *) _result,"_wxWindow_p");
885 _resultobj = Py_BuildValue("s",_ptemp);
886 return _resultobj;
887 }
888
889 #define wxWindow_GetReturnCode(_swigobj) (_swigobj->GetReturnCode())
890 static PyObject *_wrap_wxWindow_GetReturnCode(PyObject *self, PyObject *args) {
891 PyObject * _resultobj;
892 int _result;
893 wxWindow * _arg0;
894 char * _argc0 = 0;
895
896 self = self;
897 if(!PyArg_ParseTuple(args,"s:wxWindow_GetReturnCode",&_argc0))
898 return NULL;
899 if (_argc0) {
900 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
901 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetReturnCode. Expected _wxWindow_p.");
902 return NULL;
903 }
904 }
905 _result = (int )wxWindow_GetReturnCode(_arg0);
906 _resultobj = Py_BuildValue("i",_result);
907 return _resultobj;
908 }
909
910 #define wxWindow_GetScrollThumb(_swigobj,_swigarg0) (_swigobj->GetScrollThumb(_swigarg0))
911 static PyObject *_wrap_wxWindow_GetScrollThumb(PyObject *self, PyObject *args) {
912 PyObject * _resultobj;
913 int _result;
914 wxWindow * _arg0;
915 int _arg1;
916 char * _argc0 = 0;
917
918 self = self;
919 if(!PyArg_ParseTuple(args,"si:wxWindow_GetScrollThumb",&_argc0,&_arg1))
920 return NULL;
921 if (_argc0) {
922 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
923 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetScrollThumb. Expected _wxWindow_p.");
924 return NULL;
925 }
926 }
927 _result = (int )wxWindow_GetScrollThumb(_arg0,_arg1);
928 _resultobj = Py_BuildValue("i",_result);
929 return _resultobj;
930 }
931
932 #define wxWindow_GetScrollPos(_swigobj,_swigarg0) (_swigobj->GetScrollPos(_swigarg0))
933 static PyObject *_wrap_wxWindow_GetScrollPos(PyObject *self, PyObject *args) {
934 PyObject * _resultobj;
935 int _result;
936 wxWindow * _arg0;
937 int _arg1;
938 char * _argc0 = 0;
939
940 self = self;
941 if(!PyArg_ParseTuple(args,"si:wxWindow_GetScrollPos",&_argc0,&_arg1))
942 return NULL;
943 if (_argc0) {
944 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
945 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetScrollPos. Expected _wxWindow_p.");
946 return NULL;
947 }
948 }
949 _result = (int )wxWindow_GetScrollPos(_arg0,_arg1);
950 _resultobj = Py_BuildValue("i",_result);
951 return _resultobj;
952 }
953
954 #define wxWindow_GetScrollRange(_swigobj,_swigarg0) (_swigobj->GetScrollRange(_swigarg0))
955 static PyObject *_wrap_wxWindow_GetScrollRange(PyObject *self, PyObject *args) {
956 PyObject * _resultobj;
957 int _result;
958 wxWindow * _arg0;
959 int _arg1;
960 char * _argc0 = 0;
961
962 self = self;
963 if(!PyArg_ParseTuple(args,"si:wxWindow_GetScrollRange",&_argc0,&_arg1))
964 return NULL;
965 if (_argc0) {
966 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
967 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetScrollRange. Expected _wxWindow_p.");
968 return NULL;
969 }
970 }
971 _result = (int )wxWindow_GetScrollRange(_arg0,_arg1);
972 _resultobj = Py_BuildValue("i",_result);
973 return _resultobj;
974 }
975
976 #define wxWindow_GetSize(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetSize(_swigarg0,_swigarg1))
977 static PyObject *_wrap_wxWindow_GetSize(PyObject *self, PyObject *args) {
978 PyObject * _resultobj;
979 wxWindow * _arg0;
980 int * _arg1;
981 int temp;
982 int * _arg2;
983 int temp0;
984 char * _argc0 = 0;
985
986 self = self;
987 {
988 _arg1 = &temp;
989 }
990 {
991 _arg2 = &temp0;
992 }
993 if(!PyArg_ParseTuple(args,"s:wxWindow_GetSize",&_argc0))
994 return NULL;
995 if (_argc0) {
996 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
997 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetSize. Expected _wxWindow_p.");
998 return NULL;
999 }
1000 }
1001 wxWindow_GetSize(_arg0,_arg1,_arg2);
1002 Py_INCREF(Py_None);
1003 _resultobj = Py_None;
1004 {
1005 PyObject *o;
1006 o = PyInt_FromLong((long) (*_arg1));
1007 _resultobj = t_output_helper(_resultobj, o);
1008 }
1009 {
1010 PyObject *o;
1011 o = PyInt_FromLong((long) (*_arg2));
1012 _resultobj = t_output_helper(_resultobj, o);
1013 }
1014 return _resultobj;
1015 }
1016
1017 #define wxWindow_GetTextExtent(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->GetTextExtent(_swigarg0,_swigarg1,_swigarg2))
1018 static PyObject *_wrap_wxWindow_GetTextExtent(PyObject *self, PyObject *args) {
1019 PyObject * _resultobj;
1020 wxWindow * _arg0;
1021 wxString * _arg1;
1022 int * _arg2;
1023 int temp;
1024 int * _arg3;
1025 int temp0;
1026 char * _argc0 = 0;
1027 PyObject * _obj1 = 0;
1028
1029 self = self;
1030 {
1031 _arg2 = &temp;
1032 }
1033 {
1034 _arg3 = &temp0;
1035 }
1036 if(!PyArg_ParseTuple(args,"sO:wxWindow_GetTextExtent",&_argc0,&_obj1))
1037 return NULL;
1038 if (_argc0) {
1039 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1040 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetTextExtent. Expected _wxWindow_p.");
1041 return NULL;
1042 }
1043 }
1044 {
1045 if (!PyString_Check(_obj1)) {
1046 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
1047 return NULL;
1048 }
1049 _arg1 = new wxString(PyString_AsString(_obj1));
1050 }
1051 wxWindow_GetTextExtent(_arg0,*_arg1,_arg2,_arg3);
1052 Py_INCREF(Py_None);
1053 _resultobj = Py_None;
1054 {
1055 PyObject *o;
1056 o = PyInt_FromLong((long) (*_arg2));
1057 _resultobj = t_output_helper(_resultobj, o);
1058 }
1059 {
1060 PyObject *o;
1061 o = PyInt_FromLong((long) (*_arg3));
1062 _resultobj = t_output_helper(_resultobj, o);
1063 }
1064 {
1065 if (_obj1)
1066 delete _arg1;
1067 }
1068 return _resultobj;
1069 }
1070
1071 #define wxWindow_GetTitle(_swigobj) (_swigobj->GetTitle())
1072 static PyObject *_wrap_wxWindow_GetTitle(PyObject *self, PyObject *args) {
1073 PyObject * _resultobj;
1074 wxString * _result;
1075 wxWindow * _arg0;
1076 char * _argc0 = 0;
1077
1078 self = self;
1079 if(!PyArg_ParseTuple(args,"s:wxWindow_GetTitle",&_argc0))
1080 return NULL;
1081 if (_argc0) {
1082 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1083 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetTitle. Expected _wxWindow_p.");
1084 return NULL;
1085 }
1086 }
1087 _result = new wxString (wxWindow_GetTitle(_arg0));
1088 {
1089 _resultobj = PyString_FromString(WXSTRINGCAST *(_result));
1090 }
1091 {
1092 delete _result;
1093 }
1094 return _resultobj;
1095 }
1096
1097 #define wxWindow_GetWindowStyleFlag(_swigobj) (_swigobj->GetWindowStyleFlag())
1098 static PyObject *_wrap_wxWindow_GetWindowStyleFlag(PyObject *self, PyObject *args) {
1099 PyObject * _resultobj;
1100 long _result;
1101 wxWindow * _arg0;
1102 char * _argc0 = 0;
1103
1104 self = self;
1105 if(!PyArg_ParseTuple(args,"s:wxWindow_GetWindowStyleFlag",&_argc0))
1106 return NULL;
1107 if (_argc0) {
1108 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1109 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_GetWindowStyleFlag. Expected _wxWindow_p.");
1110 return NULL;
1111 }
1112 }
1113 _result = (long )wxWindow_GetWindowStyleFlag(_arg0);
1114 _resultobj = Py_BuildValue("l",_result);
1115 return _resultobj;
1116 }
1117
1118 #define wxWindow_InitDialog(_swigobj) (_swigobj->InitDialog())
1119 static PyObject *_wrap_wxWindow_InitDialog(PyObject *self, PyObject *args) {
1120 PyObject * _resultobj;
1121 wxWindow * _arg0;
1122 char * _argc0 = 0;
1123
1124 self = self;
1125 if(!PyArg_ParseTuple(args,"s:wxWindow_InitDialog",&_argc0))
1126 return NULL;
1127 if (_argc0) {
1128 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1129 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_InitDialog. Expected _wxWindow_p.");
1130 return NULL;
1131 }
1132 }
1133 wxWindow_InitDialog(_arg0);
1134 Py_INCREF(Py_None);
1135 _resultobj = Py_None;
1136 return _resultobj;
1137 }
1138
1139 #define wxWindow_IsEnabled(_swigobj) (_swigobj->IsEnabled())
1140 static PyObject *_wrap_wxWindow_IsEnabled(PyObject *self, PyObject *args) {
1141 PyObject * _resultobj;
1142 bool _result;
1143 wxWindow * _arg0;
1144 char * _argc0 = 0;
1145
1146 self = self;
1147 if(!PyArg_ParseTuple(args,"s:wxWindow_IsEnabled",&_argc0))
1148 return NULL;
1149 if (_argc0) {
1150 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1151 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsEnabled. Expected _wxWindow_p.");
1152 return NULL;
1153 }
1154 }
1155 _result = (bool )wxWindow_IsEnabled(_arg0);
1156 _resultobj = Py_BuildValue("i",_result);
1157 return _resultobj;
1158 }
1159
1160 #define wxWindow_IsRetained(_swigobj) (_swigobj->IsRetained())
1161 static PyObject *_wrap_wxWindow_IsRetained(PyObject *self, PyObject *args) {
1162 PyObject * _resultobj;
1163 bool _result;
1164 wxWindow * _arg0;
1165 char * _argc0 = 0;
1166
1167 self = self;
1168 if(!PyArg_ParseTuple(args,"s:wxWindow_IsRetained",&_argc0))
1169 return NULL;
1170 if (_argc0) {
1171 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1172 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsRetained. Expected _wxWindow_p.");
1173 return NULL;
1174 }
1175 }
1176 _result = (bool )wxWindow_IsRetained(_arg0);
1177 _resultobj = Py_BuildValue("i",_result);
1178 return _resultobj;
1179 }
1180
1181 #define wxWindow_IsShown(_swigobj) (_swigobj->IsShown())
1182 static PyObject *_wrap_wxWindow_IsShown(PyObject *self, PyObject *args) {
1183 PyObject * _resultobj;
1184 bool _result;
1185 wxWindow * _arg0;
1186 char * _argc0 = 0;
1187
1188 self = self;
1189 if(!PyArg_ParseTuple(args,"s:wxWindow_IsShown",&_argc0))
1190 return NULL;
1191 if (_argc0) {
1192 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1193 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_IsShown. Expected _wxWindow_p.");
1194 return NULL;
1195 }
1196 }
1197 _result = (bool )wxWindow_IsShown(_arg0);
1198 _resultobj = Py_BuildValue("i",_result);
1199 return _resultobj;
1200 }
1201
1202 #define wxWindow_Layout(_swigobj) (_swigobj->Layout())
1203 static PyObject *_wrap_wxWindow_Layout(PyObject *self, PyObject *args) {
1204 PyObject * _resultobj;
1205 wxWindow * _arg0;
1206 char * _argc0 = 0;
1207
1208 self = self;
1209 if(!PyArg_ParseTuple(args,"s:wxWindow_Layout",&_argc0))
1210 return NULL;
1211 if (_argc0) {
1212 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1213 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Layout. Expected _wxWindow_p.");
1214 return NULL;
1215 }
1216 }
1217 wxWindow_Layout(_arg0);
1218 Py_INCREF(Py_None);
1219 _resultobj = Py_None;
1220 return _resultobj;
1221 }
1222
1223 #define wxWindow_LoadFromResource(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->LoadFromResource(_swigarg0,_swigarg1,_swigarg2))
1224 static PyObject *_wrap_wxWindow_LoadFromResource(PyObject *self, PyObject *args) {
1225 PyObject * _resultobj;
1226 bool _result;
1227 wxWindow * _arg0;
1228 wxWindow * _arg1;
1229 wxString * _arg2;
1230 wxResourceTable * _arg3 = NULL;
1231 char * _argc0 = 0;
1232 char * _argc1 = 0;
1233 PyObject * _obj2 = 0;
1234 char * _argc3 = 0;
1235
1236 self = self;
1237 if(!PyArg_ParseTuple(args,"ssO|s:wxWindow_LoadFromResource",&_argc0,&_argc1,&_obj2,&_argc3))
1238 return NULL;
1239 if (_argc0) {
1240 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1241 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_LoadFromResource. Expected _wxWindow_p.");
1242 return NULL;
1243 }
1244 }
1245 if (_argc1) {
1246 if (SWIG_GetPtr(_argc1,(void **) &_arg1,"_wxWindow_p")) {
1247 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_LoadFromResource. Expected _wxWindow_p.");
1248 return NULL;
1249 }
1250 }
1251 {
1252 if (!PyString_Check(_obj2)) {
1253 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
1254 return NULL;
1255 }
1256 _arg2 = new wxString(PyString_AsString(_obj2));
1257 }
1258 if (_argc3) {
1259 if (SWIG_GetPtr(_argc3,(void **) &_arg3,"_wxResourceTable_p")) {
1260 PyErr_SetString(PyExc_TypeError,"Type error in argument 4 of wxWindow_LoadFromResource. Expected _wxResourceTable_p.");
1261 return NULL;
1262 }
1263 }
1264 _result = (bool )wxWindow_LoadFromResource(_arg0,_arg1,*_arg2,_arg3);
1265 _resultobj = Py_BuildValue("i",_result);
1266 {
1267 if (_obj2)
1268 delete _arg2;
1269 }
1270 return _resultobj;
1271 }
1272
1273 #define wxWindow_Lower(_swigobj) (_swigobj->Lower())
1274 static PyObject *_wrap_wxWindow_Lower(PyObject *self, PyObject *args) {
1275 PyObject * _resultobj;
1276 wxWindow * _arg0;
1277 char * _argc0 = 0;
1278
1279 self = self;
1280 if(!PyArg_ParseTuple(args,"s:wxWindow_Lower",&_argc0))
1281 return NULL;
1282 if (_argc0) {
1283 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1284 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Lower. Expected _wxWindow_p.");
1285 return NULL;
1286 }
1287 }
1288 wxWindow_Lower(_arg0);
1289 Py_INCREF(Py_None);
1290 _resultobj = Py_None;
1291 return _resultobj;
1292 }
1293
1294 #define wxWindow_MakeModal(_swigobj,_swigarg0) (_swigobj->MakeModal(_swigarg0))
1295 static PyObject *_wrap_wxWindow_MakeModal(PyObject *self, PyObject *args) {
1296 PyObject * _resultobj;
1297 wxWindow * _arg0;
1298 bool _arg1;
1299 char * _argc0 = 0;
1300 int tempbool1;
1301
1302 self = self;
1303 if(!PyArg_ParseTuple(args,"si:wxWindow_MakeModal",&_argc0,&tempbool1))
1304 return NULL;
1305 if (_argc0) {
1306 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1307 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_MakeModal. Expected _wxWindow_p.");
1308 return NULL;
1309 }
1310 }
1311 _arg1 = (bool ) tempbool1;
1312 wxWindow_MakeModal(_arg0,_arg1);
1313 Py_INCREF(Py_None);
1314 _resultobj = Py_None;
1315 return _resultobj;
1316 }
1317
1318 #define wxWindow_Move(_swigobj,_swigarg0,_swigarg1) (_swigobj->Move(_swigarg0,_swigarg1))
1319 static PyObject *_wrap_wxWindow_Move(PyObject *self, PyObject *args) {
1320 PyObject * _resultobj;
1321 wxWindow * _arg0;
1322 int _arg1;
1323 int _arg2;
1324 char * _argc0 = 0;
1325
1326 self = self;
1327 if(!PyArg_ParseTuple(args,"sii:wxWindow_Move",&_argc0,&_arg1,&_arg2))
1328 return NULL;
1329 if (_argc0) {
1330 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1331 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Move. Expected _wxWindow_p.");
1332 return NULL;
1333 }
1334 }
1335 wxWindow_Move(_arg0,_arg1,_arg2);
1336 Py_INCREF(Py_None);
1337 _resultobj = Py_None;
1338 return _resultobj;
1339 }
1340
1341 #define wxWindow_PopupMenu(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->PopupMenu(_swigarg0,_swigarg1,_swigarg2))
1342 static PyObject *_wrap_wxWindow_PopupMenu(PyObject *self, PyObject *args) {
1343 PyObject * _resultobj;
1344 bool _result;
1345 wxWindow * _arg0;
1346 wxMenu * _arg1;
1347 int _arg2;
1348 int _arg3;
1349 char * _argc0 = 0;
1350 char * _argc1 = 0;
1351
1352 self = self;
1353 if(!PyArg_ParseTuple(args,"ssii:wxWindow_PopupMenu",&_argc0,&_argc1,&_arg2,&_arg3))
1354 return NULL;
1355 if (_argc0) {
1356 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1357 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_PopupMenu. Expected _wxWindow_p.");
1358 return NULL;
1359 }
1360 }
1361 if (_argc1) {
1362 if (SWIG_GetPtr(_argc1,(void **) &_arg1,"_wxMenu_p")) {
1363 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_PopupMenu. Expected _wxMenu_p.");
1364 return NULL;
1365 }
1366 }
1367 _result = (bool )wxWindow_PopupMenu(_arg0,_arg1,_arg2,_arg3);
1368 _resultobj = Py_BuildValue("i",_result);
1369 return _resultobj;
1370 }
1371
1372 #define wxWindow_Raise(_swigobj) (_swigobj->Raise())
1373 static PyObject *_wrap_wxWindow_Raise(PyObject *self, PyObject *args) {
1374 PyObject * _resultobj;
1375 wxWindow * _arg0;
1376 char * _argc0 = 0;
1377
1378 self = self;
1379 if(!PyArg_ParseTuple(args,"s:wxWindow_Raise",&_argc0))
1380 return NULL;
1381 if (_argc0) {
1382 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1383 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Raise. Expected _wxWindow_p.");
1384 return NULL;
1385 }
1386 }
1387 wxWindow_Raise(_arg0);
1388 Py_INCREF(Py_None);
1389 _resultobj = Py_None;
1390 return _resultobj;
1391 }
1392
1393 #define wxWindow_Refresh(_swigobj,_swigarg0,_swigarg1) (_swigobj->Refresh(_swigarg0,_swigarg1))
1394 static PyObject *_wrap_wxWindow_Refresh(PyObject *self, PyObject *args) {
1395 PyObject * _resultobj;
1396 wxWindow * _arg0;
1397 bool _arg1 = (1);
1398 wxRect * _arg2 = NULL;
1399 char * _argc0 = 0;
1400 int tempbool1;
1401 char * _argc2 = 0;
1402
1403 self = self;
1404 if(!PyArg_ParseTuple(args,"s|is:wxWindow_Refresh",&_argc0,&tempbool1,&_argc2))
1405 return NULL;
1406 if (_argc0) {
1407 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1408 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Refresh. Expected _wxWindow_p.");
1409 return NULL;
1410 }
1411 }
1412 _arg1 = (bool ) tempbool1;
1413 if (_argc2) {
1414 if (SWIG_GetPtr(_argc2,(void **) &_arg2,"_wxRect_p")) {
1415 PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxWindow_Refresh. Expected _wxRect_p.");
1416 return NULL;
1417 }
1418 }
1419 wxWindow_Refresh(_arg0,_arg1,_arg2);
1420 Py_INCREF(Py_None);
1421 _resultobj = Py_None;
1422 return _resultobj;
1423 }
1424
1425 #define wxWindow_ReleaseMouse(_swigobj) (_swigobj->ReleaseMouse())
1426 static PyObject *_wrap_wxWindow_ReleaseMouse(PyObject *self, PyObject *args) {
1427 PyObject * _resultobj;
1428 wxWindow * _arg0;
1429 char * _argc0 = 0;
1430
1431 self = self;
1432 if(!PyArg_ParseTuple(args,"s:wxWindow_ReleaseMouse",&_argc0))
1433 return NULL;
1434 if (_argc0) {
1435 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1436 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ReleaseMouse. Expected _wxWindow_p.");
1437 return NULL;
1438 }
1439 }
1440 wxWindow_ReleaseMouse(_arg0);
1441 Py_INCREF(Py_None);
1442 _resultobj = Py_None;
1443 return _resultobj;
1444 }
1445
1446 #define wxWindow_ScreenToClient(_swigobj,_swigarg0,_swigarg1) (_swigobj->ScreenToClient(_swigarg0,_swigarg1))
1447 static PyObject *_wrap_wxWindow_ScreenToClient(PyObject *self, PyObject *args) {
1448 PyObject * _resultobj;
1449 wxWindow * _arg0;
1450 int * _arg1;
1451 int * _arg2;
1452 char * _argc0 = 0;
1453 int temp;
1454 PyObject * _obj1 = 0;
1455 int temp0;
1456 PyObject * _obj2 = 0;
1457
1458 self = self;
1459 if(!PyArg_ParseTuple(args,"sOO:wxWindow_ScreenToClient",&_argc0,&_obj1,&_obj2))
1460 return NULL;
1461 if (_argc0) {
1462 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1463 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ScreenToClient. Expected _wxWindow_p.");
1464 return NULL;
1465 }
1466 }
1467 {
1468 temp = (int) PyInt_AsLong(_obj1);
1469 _arg1 = &temp;
1470 }
1471 {
1472 temp0 = (int) PyInt_AsLong(_obj2);
1473 _arg2 = &temp0;
1474 }
1475 wxWindow_ScreenToClient(_arg0,_arg1,_arg2);
1476 Py_INCREF(Py_None);
1477 _resultobj = Py_None;
1478 {
1479 PyObject *o;
1480 o = PyInt_FromLong((long) (*_arg1));
1481 _resultobj = t_output_helper(_resultobj, o);
1482 }
1483 {
1484 PyObject *o;
1485 o = PyInt_FromLong((long) (*_arg2));
1486 _resultobj = t_output_helper(_resultobj, o);
1487 }
1488 return _resultobj;
1489 }
1490
1491 #define wxWindow_ScrollWindow(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->ScrollWindow(_swigarg0,_swigarg1,_swigarg2))
1492 static PyObject *_wrap_wxWindow_ScrollWindow(PyObject *self, PyObject *args) {
1493 PyObject * _resultobj;
1494 wxWindow * _arg0;
1495 int _arg1;
1496 int _arg2;
1497 wxRect * _arg3 = NULL;
1498 char * _argc0 = 0;
1499 char * _argc3 = 0;
1500
1501 self = self;
1502 if(!PyArg_ParseTuple(args,"sii|s:wxWindow_ScrollWindow",&_argc0,&_arg1,&_arg2,&_argc3))
1503 return NULL;
1504 if (_argc0) {
1505 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1506 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_ScrollWindow. Expected _wxWindow_p.");
1507 return NULL;
1508 }
1509 }
1510 if (_argc3) {
1511 if (SWIG_GetPtr(_argc3,(void **) &_arg3,"_wxRect_p")) {
1512 PyErr_SetString(PyExc_TypeError,"Type error in argument 4 of wxWindow_ScrollWindow. Expected _wxRect_p.");
1513 return NULL;
1514 }
1515 }
1516 wxWindow_ScrollWindow(_arg0,_arg1,_arg2,_arg3);
1517 Py_INCREF(Py_None);
1518 _resultobj = Py_None;
1519 return _resultobj;
1520 }
1521
1522 #define wxWindow_SetAutoLayout(_swigobj,_swigarg0) (_swigobj->SetAutoLayout(_swigarg0))
1523 static PyObject *_wrap_wxWindow_SetAutoLayout(PyObject *self, PyObject *args) {
1524 PyObject * _resultobj;
1525 wxWindow * _arg0;
1526 bool _arg1;
1527 char * _argc0 = 0;
1528 int tempbool1;
1529
1530 self = self;
1531 if(!PyArg_ParseTuple(args,"si:wxWindow_SetAutoLayout",&_argc0,&tempbool1))
1532 return NULL;
1533 if (_argc0) {
1534 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1535 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetAutoLayout. Expected _wxWindow_p.");
1536 return NULL;
1537 }
1538 }
1539 _arg1 = (bool ) tempbool1;
1540 wxWindow_SetAutoLayout(_arg0,_arg1);
1541 Py_INCREF(Py_None);
1542 _resultobj = Py_None;
1543 return _resultobj;
1544 }
1545
1546 #define wxWindow_SetBackgroundColour(_swigobj,_swigarg0) (_swigobj->SetBackgroundColour(_swigarg0))
1547 static PyObject *_wrap_wxWindow_SetBackgroundColour(PyObject *self, PyObject *args) {
1548 PyObject * _resultobj;
1549 wxWindow * _arg0;
1550 wxColour * _arg1;
1551 char * _argc0 = 0;
1552 char * _argc1 = 0;
1553
1554 self = self;
1555 if(!PyArg_ParseTuple(args,"ss:wxWindow_SetBackgroundColour",&_argc0,&_argc1))
1556 return NULL;
1557 if (_argc0) {
1558 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1559 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetBackgroundColour. Expected _wxWindow_p.");
1560 return NULL;
1561 }
1562 }
1563 if (_argc1) {
1564 if (SWIG_GetPtr(_argc1,(void **) &_arg1,"_wxColour_p")) {
1565 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetBackgroundColour. Expected _wxColour_p.");
1566 return NULL;
1567 }
1568 }
1569 wxWindow_SetBackgroundColour(_arg0,*_arg1);
1570 Py_INCREF(Py_None);
1571 _resultobj = Py_None;
1572 return _resultobj;
1573 }
1574
1575 #define wxWindow_SetConstraints(_swigobj,_swigarg0) (_swigobj->SetConstraints(_swigarg0))
1576 static PyObject *_wrap_wxWindow_SetConstraints(PyObject *self, PyObject *args) {
1577 PyObject * _resultobj;
1578 wxWindow * _arg0;
1579 wxLayoutConstraints * _arg1;
1580 char * _argc0 = 0;
1581 char * _argc1 = 0;
1582
1583 self = self;
1584 if(!PyArg_ParseTuple(args,"ss:wxWindow_SetConstraints",&_argc0,&_argc1))
1585 return NULL;
1586 if (_argc0) {
1587 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1588 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetConstraints. Expected _wxWindow_p.");
1589 return NULL;
1590 }
1591 }
1592 if (_argc1) {
1593 if (SWIG_GetPtr(_argc1,(void **) &_arg1,"_wxLayoutConstraints_p")) {
1594 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetConstraints. Expected _wxLayoutConstraints_p.");
1595 return NULL;
1596 }
1597 }
1598 wxWindow_SetConstraints(_arg0,_arg1);
1599 Py_INCREF(Py_None);
1600 _resultobj = Py_None;
1601 return _resultobj;
1602 }
1603
1604 #define wxWindow_SetDoubleClick(_swigobj,_swigarg0) (_swigobj->SetDoubleClick(_swigarg0))
1605 static PyObject *_wrap_wxWindow_SetDoubleClick(PyObject *self, PyObject *args) {
1606 PyObject * _resultobj;
1607 wxWindow * _arg0;
1608 bool _arg1;
1609 char * _argc0 = 0;
1610 int tempbool1;
1611
1612 self = self;
1613 if(!PyArg_ParseTuple(args,"si:wxWindow_SetDoubleClick",&_argc0,&tempbool1))
1614 return NULL;
1615 if (_argc0) {
1616 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1617 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetDoubleClick. Expected _wxWindow_p.");
1618 return NULL;
1619 }
1620 }
1621 _arg1 = (bool ) tempbool1;
1622 wxWindow_SetDoubleClick(_arg0,_arg1);
1623 Py_INCREF(Py_None);
1624 _resultobj = Py_None;
1625 return _resultobj;
1626 }
1627
1628 #define wxWindow_SetFocus(_swigobj) (_swigobj->SetFocus())
1629 static PyObject *_wrap_wxWindow_SetFocus(PyObject *self, PyObject *args) {
1630 PyObject * _resultobj;
1631 wxWindow * _arg0;
1632 char * _argc0 = 0;
1633
1634 self = self;
1635 if(!PyArg_ParseTuple(args,"s:wxWindow_SetFocus",&_argc0))
1636 return NULL;
1637 if (_argc0) {
1638 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1639 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetFocus. Expected _wxWindow_p.");
1640 return NULL;
1641 }
1642 }
1643 wxWindow_SetFocus(_arg0);
1644 Py_INCREF(Py_None);
1645 _resultobj = Py_None;
1646 return _resultobj;
1647 }
1648
1649 #define wxWindow_SetFont(_swigobj,_swigarg0) (_swigobj->SetFont(_swigarg0))
1650 static PyObject *_wrap_wxWindow_SetFont(PyObject *self, PyObject *args) {
1651 PyObject * _resultobj;
1652 wxWindow * _arg0;
1653 wxFont * _arg1;
1654 char * _argc0 = 0;
1655 char * _argc1 = 0;
1656
1657 self = self;
1658 if(!PyArg_ParseTuple(args,"ss:wxWindow_SetFont",&_argc0,&_argc1))
1659 return NULL;
1660 if (_argc0) {
1661 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1662 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetFont. Expected _wxWindow_p.");
1663 return NULL;
1664 }
1665 }
1666 if (_argc1) {
1667 if (SWIG_GetPtr(_argc1,(void **) &_arg1,"_wxFont_p")) {
1668 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetFont. Expected _wxFont_p.");
1669 return NULL;
1670 }
1671 }
1672 wxWindow_SetFont(_arg0,*_arg1);
1673 Py_INCREF(Py_None);
1674 _resultobj = Py_None;
1675 return _resultobj;
1676 }
1677
1678 #define wxWindow_SetForegroundColour(_swigobj,_swigarg0) (_swigobj->SetForegroundColour(_swigarg0))
1679 static PyObject *_wrap_wxWindow_SetForegroundColour(PyObject *self, PyObject *args) {
1680 PyObject * _resultobj;
1681 wxWindow * _arg0;
1682 wxColour * _arg1;
1683 char * _argc0 = 0;
1684 char * _argc1 = 0;
1685
1686 self = self;
1687 if(!PyArg_ParseTuple(args,"ss:wxWindow_SetForegroundColour",&_argc0,&_argc1))
1688 return NULL;
1689 if (_argc0) {
1690 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1691 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetForegroundColour. Expected _wxWindow_p.");
1692 return NULL;
1693 }
1694 }
1695 if (_argc1) {
1696 if (SWIG_GetPtr(_argc1,(void **) &_arg1,"_wxColour_p")) {
1697 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetForegroundColour. Expected _wxColour_p.");
1698 return NULL;
1699 }
1700 }
1701 wxWindow_SetForegroundColour(_arg0,*_arg1);
1702 Py_INCREF(Py_None);
1703 _resultobj = Py_None;
1704 return _resultobj;
1705 }
1706
1707 #define wxWindow_SetId(_swigobj,_swigarg0) (_swigobj->SetId(_swigarg0))
1708 static PyObject *_wrap_wxWindow_SetId(PyObject *self, PyObject *args) {
1709 PyObject * _resultobj;
1710 wxWindow * _arg0;
1711 int _arg1;
1712 char * _argc0 = 0;
1713
1714 self = self;
1715 if(!PyArg_ParseTuple(args,"si:wxWindow_SetId",&_argc0,&_arg1))
1716 return NULL;
1717 if (_argc0) {
1718 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1719 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetId. Expected _wxWindow_p.");
1720 return NULL;
1721 }
1722 }
1723 wxWindow_SetId(_arg0,_arg1);
1724 Py_INCREF(Py_None);
1725 _resultobj = Py_None;
1726 return _resultobj;
1727 }
1728
1729 #define wxWindow_SetName(_swigobj,_swigarg0) (_swigobj->SetName(_swigarg0))
1730 static PyObject *_wrap_wxWindow_SetName(PyObject *self, PyObject *args) {
1731 PyObject * _resultobj;
1732 wxWindow * _arg0;
1733 wxString * _arg1;
1734 char * _argc0 = 0;
1735 PyObject * _obj1 = 0;
1736
1737 self = self;
1738 if(!PyArg_ParseTuple(args,"sO:wxWindow_SetName",&_argc0,&_obj1))
1739 return NULL;
1740 if (_argc0) {
1741 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1742 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetName. Expected _wxWindow_p.");
1743 return NULL;
1744 }
1745 }
1746 {
1747 if (!PyString_Check(_obj1)) {
1748 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
1749 return NULL;
1750 }
1751 _arg1 = new wxString(PyString_AsString(_obj1));
1752 }
1753 wxWindow_SetName(_arg0,*_arg1);
1754 Py_INCREF(Py_None);
1755 _resultobj = Py_None;
1756 {
1757 if (_obj1)
1758 delete _arg1;
1759 }
1760 return _resultobj;
1761 }
1762
1763 #define wxWindow_SetReturnCode(_swigobj,_swigarg0) (_swigobj->SetReturnCode(_swigarg0))
1764 static PyObject *_wrap_wxWindow_SetReturnCode(PyObject *self, PyObject *args) {
1765 PyObject * _resultobj;
1766 wxWindow * _arg0;
1767 int _arg1;
1768 char * _argc0 = 0;
1769
1770 self = self;
1771 if(!PyArg_ParseTuple(args,"si:wxWindow_SetReturnCode",&_argc0,&_arg1))
1772 return NULL;
1773 if (_argc0) {
1774 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1775 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetReturnCode. Expected _wxWindow_p.");
1776 return NULL;
1777 }
1778 }
1779 wxWindow_SetReturnCode(_arg0,_arg1);
1780 Py_INCREF(Py_None);
1781 _resultobj = Py_None;
1782 return _resultobj;
1783 }
1784
1785 #define wxWindow_SetScrollbar(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->SetScrollbar(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4))
1786 static PyObject *_wrap_wxWindow_SetScrollbar(PyObject *self, PyObject *args) {
1787 PyObject * _resultobj;
1788 wxWindow * _arg0;
1789 int _arg1;
1790 int _arg2;
1791 int _arg3;
1792 int _arg4;
1793 bool _arg5 = (1);
1794 char * _argc0 = 0;
1795 int tempbool5;
1796
1797 self = self;
1798 if(!PyArg_ParseTuple(args,"siiii|i:wxWindow_SetScrollbar",&_argc0,&_arg1,&_arg2,&_arg3,&_arg4,&tempbool5))
1799 return NULL;
1800 if (_argc0) {
1801 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1802 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetScrollbar. Expected _wxWindow_p.");
1803 return NULL;
1804 }
1805 }
1806 _arg5 = (bool ) tempbool5;
1807 wxWindow_SetScrollbar(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5);
1808 Py_INCREF(Py_None);
1809 _resultobj = Py_None;
1810 return _resultobj;
1811 }
1812
1813 #define wxWindow_SetScrollPos(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->SetScrollPos(_swigarg0,_swigarg1,_swigarg2))
1814 static PyObject *_wrap_wxWindow_SetScrollPos(PyObject *self, PyObject *args) {
1815 PyObject * _resultobj;
1816 wxWindow * _arg0;
1817 int _arg1;
1818 int _arg2;
1819 bool _arg3 = (1);
1820 char * _argc0 = 0;
1821 int tempbool3;
1822
1823 self = self;
1824 if(!PyArg_ParseTuple(args,"sii|i:wxWindow_SetScrollPos",&_argc0,&_arg1,&_arg2,&tempbool3))
1825 return NULL;
1826 if (_argc0) {
1827 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1828 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetScrollPos. Expected _wxWindow_p.");
1829 return NULL;
1830 }
1831 }
1832 _arg3 = (bool ) tempbool3;
1833 wxWindow_SetScrollPos(_arg0,_arg1,_arg2,_arg3);
1834 Py_INCREF(Py_None);
1835 _resultobj = Py_None;
1836 return _resultobj;
1837 }
1838
1839 #define wxWindow_SetDimensions(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->SetSize(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4))
1840 static PyObject *_wrap_wxWindow_SetDimensions(PyObject *self, PyObject *args) {
1841 PyObject * _resultobj;
1842 wxWindow * _arg0;
1843 int _arg1;
1844 int _arg2;
1845 int _arg3;
1846 int _arg4;
1847 int _arg5 = (wxSIZE_AUTO);
1848 char * _argc0 = 0;
1849
1850 self = self;
1851 if(!PyArg_ParseTuple(args,"siiii|i:wxWindow_SetDimensions",&_argc0,&_arg1,&_arg2,&_arg3,&_arg4,&_arg5))
1852 return NULL;
1853 if (_argc0) {
1854 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1855 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetDimensions. Expected _wxWindow_p.");
1856 return NULL;
1857 }
1858 }
1859 wxWindow_SetDimensions(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5);
1860 Py_INCREF(Py_None);
1861 _resultobj = Py_None;
1862 return _resultobj;
1863 }
1864
1865 static void wxWindow_SetSize(wxWindow *self,const wxSize & size) {
1866 self->SetSize(size.x, size.y);
1867 }
1868 static PyObject *_wrap_wxWindow_SetSize(PyObject *self, PyObject *args) {
1869 PyObject * _resultobj;
1870 wxWindow * _arg0;
1871 wxSize * _arg1;
1872 char * _argc0 = 0;
1873 char * _argc1 = 0;
1874
1875 self = self;
1876 if(!PyArg_ParseTuple(args,"ss:wxWindow_SetSize",&_argc0,&_argc1))
1877 return NULL;
1878 if (_argc0) {
1879 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1880 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetSize. Expected _wxWindow_p.");
1881 return NULL;
1882 }
1883 }
1884 if (_argc1) {
1885 if (SWIG_GetPtr(_argc1,(void **) &_arg1,"_wxSize_p")) {
1886 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetSize. Expected _wxSize_p.");
1887 return NULL;
1888 }
1889 }
1890 wxWindow_SetSize(_arg0,*_arg1);
1891 Py_INCREF(Py_None);
1892 _resultobj = Py_None;
1893 return _resultobj;
1894 }
1895
1896 static void wxWindow_SetPosition(wxWindow *self,const wxPoint & pos) {
1897 self->SetSize(pos.x, pos.y, -1, -1);
1898 }
1899 static PyObject *_wrap_wxWindow_SetPosition(PyObject *self, PyObject *args) {
1900 PyObject * _resultobj;
1901 wxWindow * _arg0;
1902 wxPoint * _arg1;
1903 char * _argc0 = 0;
1904 char * _argc1 = 0;
1905
1906 self = self;
1907 if(!PyArg_ParseTuple(args,"ss:wxWindow_SetPosition",&_argc0,&_argc1))
1908 return NULL;
1909 if (_argc0) {
1910 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1911 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetPosition. Expected _wxWindow_p.");
1912 return NULL;
1913 }
1914 }
1915 if (_argc1) {
1916 if (SWIG_GetPtr(_argc1,(void **) &_arg1,"_wxPoint_p")) {
1917 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetPosition. Expected _wxPoint_p.");
1918 return NULL;
1919 }
1920 }
1921 wxWindow_SetPosition(_arg0,*_arg1);
1922 Py_INCREF(Py_None);
1923 _resultobj = Py_None;
1924 return _resultobj;
1925 }
1926
1927 #define wxWindow_SetSizeHints(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (_swigobj->SetSizeHints(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5))
1928 static PyObject *_wrap_wxWindow_SetSizeHints(PyObject *self, PyObject *args) {
1929 PyObject * _resultobj;
1930 wxWindow * _arg0;
1931 int _arg1 = -1;
1932 int _arg2 = -1;
1933 int _arg3 = -1;
1934 int _arg4 = -1;
1935 int _arg5 = -1;
1936 int _arg6 = -1;
1937 char * _argc0 = 0;
1938
1939 self = self;
1940 if(!PyArg_ParseTuple(args,"s|iiiiii:wxWindow_SetSizeHints",&_argc0,&_arg1,&_arg2,&_arg3,&_arg4,&_arg5,&_arg6))
1941 return NULL;
1942 if (_argc0) {
1943 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1944 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetSizeHints. Expected _wxWindow_p.");
1945 return NULL;
1946 }
1947 }
1948 wxWindow_SetSizeHints(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5,_arg6);
1949 Py_INCREF(Py_None);
1950 _resultobj = Py_None;
1951 return _resultobj;
1952 }
1953
1954 #define wxWindow_SetClientSize(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetClientSize(_swigarg0,_swigarg1))
1955 static PyObject *_wrap_wxWindow_SetClientSize(PyObject *self, PyObject *args) {
1956 PyObject * _resultobj;
1957 wxWindow * _arg0;
1958 int _arg1;
1959 int _arg2;
1960 char * _argc0 = 0;
1961
1962 self = self;
1963 if(!PyArg_ParseTuple(args,"sii:wxWindow_SetClientSize",&_argc0,&_arg1,&_arg2))
1964 return NULL;
1965 if (_argc0) {
1966 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1967 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetClientSize. Expected _wxWindow_p.");
1968 return NULL;
1969 }
1970 }
1971 wxWindow_SetClientSize(_arg0,_arg1,_arg2);
1972 Py_INCREF(Py_None);
1973 _resultobj = Py_None;
1974 return _resultobj;
1975 }
1976
1977 #define wxWindow_SetCursor(_swigobj,_swigarg0) (_swigobj->SetCursor(_swigarg0))
1978 static PyObject *_wrap_wxWindow_SetCursor(PyObject *self, PyObject *args) {
1979 PyObject * _resultobj;
1980 wxWindow * _arg0;
1981 wxCursor * _arg1;
1982 char * _argc0 = 0;
1983 char * _argc1 = 0;
1984
1985 self = self;
1986 if(!PyArg_ParseTuple(args,"ss:wxWindow_SetCursor",&_argc0,&_argc1))
1987 return NULL;
1988 if (_argc0) {
1989 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
1990 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetCursor. Expected _wxWindow_p.");
1991 return NULL;
1992 }
1993 }
1994 if (_argc1) {
1995 if (SWIG_GetPtr(_argc1,(void **) &_arg1,"_wxCursor_p")) {
1996 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxWindow_SetCursor. Expected _wxCursor_p.");
1997 return NULL;
1998 }
1999 }
2000 wxWindow_SetCursor(_arg0,*_arg1);
2001 Py_INCREF(Py_None);
2002 _resultobj = Py_None;
2003 return _resultobj;
2004 }
2005
2006 #define wxWindow_SetTitle(_swigobj,_swigarg0) (_swigobj->SetTitle(_swigarg0))
2007 static PyObject *_wrap_wxWindow_SetTitle(PyObject *self, PyObject *args) {
2008 PyObject * _resultobj;
2009 wxWindow * _arg0;
2010 wxString * _arg1;
2011 char * _argc0 = 0;
2012 PyObject * _obj1 = 0;
2013
2014 self = self;
2015 if(!PyArg_ParseTuple(args,"sO:wxWindow_SetTitle",&_argc0,&_obj1))
2016 return NULL;
2017 if (_argc0) {
2018 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
2019 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_SetTitle. Expected _wxWindow_p.");
2020 return NULL;
2021 }
2022 }
2023 {
2024 if (!PyString_Check(_obj1)) {
2025 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
2026 return NULL;
2027 }
2028 _arg1 = new wxString(PyString_AsString(_obj1));
2029 }
2030 wxWindow_SetTitle(_arg0,*_arg1);
2031 Py_INCREF(Py_None);
2032 _resultobj = Py_None;
2033 {
2034 if (_obj1)
2035 delete _arg1;
2036 }
2037 return _resultobj;
2038 }
2039
2040 #define wxWindow_Show(_swigobj,_swigarg0) (_swigobj->Show(_swigarg0))
2041 static PyObject *_wrap_wxWindow_Show(PyObject *self, PyObject *args) {
2042 PyObject * _resultobj;
2043 bool _result;
2044 wxWindow * _arg0;
2045 bool _arg1;
2046 char * _argc0 = 0;
2047 int tempbool1;
2048
2049 self = self;
2050 if(!PyArg_ParseTuple(args,"si:wxWindow_Show",&_argc0,&tempbool1))
2051 return NULL;
2052 if (_argc0) {
2053 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
2054 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Show. Expected _wxWindow_p.");
2055 return NULL;
2056 }
2057 }
2058 _arg1 = (bool ) tempbool1;
2059 _result = (bool )wxWindow_Show(_arg0,_arg1);
2060 _resultobj = Py_BuildValue("i",_result);
2061 return _resultobj;
2062 }
2063
2064 #define wxWindow_TransferDataFromWindow(_swigobj) (_swigobj->TransferDataFromWindow())
2065 static PyObject *_wrap_wxWindow_TransferDataFromWindow(PyObject *self, PyObject *args) {
2066 PyObject * _resultobj;
2067 bool _result;
2068 wxWindow * _arg0;
2069 char * _argc0 = 0;
2070
2071 self = self;
2072 if(!PyArg_ParseTuple(args,"s:wxWindow_TransferDataFromWindow",&_argc0))
2073 return NULL;
2074 if (_argc0) {
2075 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
2076 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_TransferDataFromWindow. Expected _wxWindow_p.");
2077 return NULL;
2078 }
2079 }
2080 _result = (bool )wxWindow_TransferDataFromWindow(_arg0);
2081 _resultobj = Py_BuildValue("i",_result);
2082 return _resultobj;
2083 }
2084
2085 #define wxWindow_TransferDataToWindow(_swigobj) (_swigobj->TransferDataToWindow())
2086 static PyObject *_wrap_wxWindow_TransferDataToWindow(PyObject *self, PyObject *args) {
2087 PyObject * _resultobj;
2088 bool _result;
2089 wxWindow * _arg0;
2090 char * _argc0 = 0;
2091
2092 self = self;
2093 if(!PyArg_ParseTuple(args,"s:wxWindow_TransferDataToWindow",&_argc0))
2094 return NULL;
2095 if (_argc0) {
2096 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
2097 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_TransferDataToWindow. Expected _wxWindow_p.");
2098 return NULL;
2099 }
2100 }
2101 _result = (bool )wxWindow_TransferDataToWindow(_arg0);
2102 _resultobj = Py_BuildValue("i",_result);
2103 return _resultobj;
2104 }
2105
2106 #define wxWindow_Validate(_swigobj) (_swigobj->Validate())
2107 static PyObject *_wrap_wxWindow_Validate(PyObject *self, PyObject *args) {
2108 PyObject * _resultobj;
2109 bool _result;
2110 wxWindow * _arg0;
2111 char * _argc0 = 0;
2112
2113 self = self;
2114 if(!PyArg_ParseTuple(args,"s:wxWindow_Validate",&_argc0))
2115 return NULL;
2116 if (_argc0) {
2117 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
2118 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_Validate. Expected _wxWindow_p.");
2119 return NULL;
2120 }
2121 }
2122 _result = (bool )wxWindow_Validate(_arg0);
2123 _resultobj = Py_BuildValue("i",_result);
2124 return _resultobj;
2125 }
2126
2127 #define wxWindow_WarpPointer(_swigobj,_swigarg0,_swigarg1) (_swigobj->WarpPointer(_swigarg0,_swigarg1))
2128 static PyObject *_wrap_wxWindow_WarpPointer(PyObject *self, PyObject *args) {
2129 PyObject * _resultobj;
2130 wxWindow * _arg0;
2131 int _arg1;
2132 int _arg2;
2133 char * _argc0 = 0;
2134
2135 self = self;
2136 if(!PyArg_ParseTuple(args,"sii:wxWindow_WarpPointer",&_argc0,&_arg1,&_arg2))
2137 return NULL;
2138 if (_argc0) {
2139 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
2140 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxWindow_WarpPointer. Expected _wxWindow_p.");
2141 return NULL;
2142 }
2143 }
2144 wxWindow_WarpPointer(_arg0,_arg1,_arg2);
2145 Py_INCREF(Py_None);
2146 _resultobj = Py_None;
2147 return _resultobj;
2148 }
2149
2150 static void *SwigwxPanelTowxWindow(void *ptr) {
2151 wxPanel *src;
2152 wxWindow *dest;
2153 src = (wxPanel *) ptr;
2154 dest = (wxWindow *) src;
2155 return (void *) dest;
2156 }
2157
2158 static void *SwigwxPanelTowxEvtHandler(void *ptr) {
2159 wxPanel *src;
2160 wxEvtHandler *dest;
2161 src = (wxPanel *) ptr;
2162 dest = (wxEvtHandler *) src;
2163 return (void *) dest;
2164 }
2165
2166 #define new_wxPanel(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (new wxPanel(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5))
2167 static PyObject *_wrap_new_wxPanel(PyObject *self, PyObject *args) {
2168 PyObject * _resultobj;
2169 wxPanel * _result;
2170 wxWindow * _arg0;
2171 wxWindowID _arg1;
2172 wxPoint * _arg2 = &wxPyDefaultPosition;
2173 wxSize * _arg3 = &wxPyDefaultSize;
2174 long _arg4 = (wxTAB_TRAVERSAL);
2175 char * _arg5 = "panel";
2176 char * _argc0 = 0;
2177 char * _argc2 = 0;
2178 char * _argc3 = 0;
2179 char _ptemp[128];
2180
2181 self = self;
2182 if(!PyArg_ParseTuple(args,"si|ssls:new_wxPanel",&_argc0,&_arg1,&_argc2,&_argc3,&_arg4,&_arg5))
2183 return NULL;
2184 if (_argc0) {
2185 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
2186 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxPanel. Expected _wxWindow_p.");
2187 return NULL;
2188 }
2189 }
2190 if (_argc2) {
2191 if (SWIG_GetPtr(_argc2,(void **) &_arg2,"_wxPoint_p")) {
2192 PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of new_wxPanel. Expected _wxPoint_p.");
2193 return NULL;
2194 }
2195 }
2196 if (_argc3) {
2197 if (SWIG_GetPtr(_argc3,(void **) &_arg3,"_wxSize_p")) {
2198 PyErr_SetString(PyExc_TypeError,"Type error in argument 4 of new_wxPanel. Expected _wxSize_p.");
2199 return NULL;
2200 }
2201 }
2202 _result = (wxPanel *)new_wxPanel(_arg0,_arg1,*_arg2,*_arg3,_arg4,_arg5);
2203 SWIG_MakePtr(_ptemp, (char *) _result,"_wxPanel_p");
2204 _resultobj = Py_BuildValue("s",_ptemp);
2205 return _resultobj;
2206 }
2207
2208 #define wxPanel_InitDialog(_swigobj) (_swigobj->InitDialog())
2209 static PyObject *_wrap_wxPanel_InitDialog(PyObject *self, PyObject *args) {
2210 PyObject * _resultobj;
2211 wxPanel * _arg0;
2212 char * _argc0 = 0;
2213
2214 self = self;
2215 if(!PyArg_ParseTuple(args,"s:wxPanel_InitDialog",&_argc0))
2216 return NULL;
2217 if (_argc0) {
2218 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPanel_p")) {
2219 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPanel_InitDialog. Expected _wxPanel_p.");
2220 return NULL;
2221 }
2222 }
2223 wxPanel_InitDialog(_arg0);
2224 Py_INCREF(Py_None);
2225 _resultobj = Py_None;
2226 return _resultobj;
2227 }
2228
2229 static void *SwigwxDialogTowxPanel(void *ptr) {
2230 wxDialog *src;
2231 wxPanel *dest;
2232 src = (wxDialog *) ptr;
2233 dest = (wxPanel *) src;
2234 return (void *) dest;
2235 }
2236
2237 static void *SwigwxDialogTowxWindow(void *ptr) {
2238 wxDialog *src;
2239 wxWindow *dest;
2240 src = (wxDialog *) ptr;
2241 dest = (wxWindow *) src;
2242 return (void *) dest;
2243 }
2244
2245 static void *SwigwxDialogTowxEvtHandler(void *ptr) {
2246 wxDialog *src;
2247 wxEvtHandler *dest;
2248 src = (wxDialog *) ptr;
2249 dest = (wxEvtHandler *) src;
2250 return (void *) dest;
2251 }
2252
2253 #define new_wxDialog(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (new wxDialog(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6))
2254 static PyObject *_wrap_new_wxDialog(PyObject *self, PyObject *args) {
2255 PyObject * _resultobj;
2256 wxDialog * _result;
2257 wxWindow * _arg0;
2258 wxWindowID _arg1;
2259 wxString * _arg2;
2260 wxPoint * _arg3 = &wxPyDefaultPosition;
2261 wxSize * _arg4 = &wxPyDefaultSize;
2262 long _arg5 = (wxDEFAULT_DIALOG_STYLE);
2263 char * _arg6 = "dialogBox";
2264 char * _argc0 = 0;
2265 PyObject * _obj2 = 0;
2266 char * _argc3 = 0;
2267 char * _argc4 = 0;
2268 char _ptemp[128];
2269
2270 self = self;
2271 if(!PyArg_ParseTuple(args,"siO|ssls:new_wxDialog",&_argc0,&_arg1,&_obj2,&_argc3,&_argc4,&_arg5,&_arg6))
2272 return NULL;
2273 if (_argc0) {
2274 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
2275 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxDialog. Expected _wxWindow_p.");
2276 return NULL;
2277 }
2278 }
2279 {
2280 if (!PyString_Check(_obj2)) {
2281 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
2282 return NULL;
2283 }
2284 _arg2 = new wxString(PyString_AsString(_obj2));
2285 }
2286 if (_argc3) {
2287 if (SWIG_GetPtr(_argc3,(void **) &_arg3,"_wxPoint_p")) {
2288 PyErr_SetString(PyExc_TypeError,"Type error in argument 4 of new_wxDialog. Expected _wxPoint_p.");
2289 return NULL;
2290 }
2291 }
2292 if (_argc4) {
2293 if (SWIG_GetPtr(_argc4,(void **) &_arg4,"_wxSize_p")) {
2294 PyErr_SetString(PyExc_TypeError,"Type error in argument 5 of new_wxDialog. Expected _wxSize_p.");
2295 return NULL;
2296 }
2297 }
2298 _result = (wxDialog *)new_wxDialog(_arg0,_arg1,*_arg2,*_arg3,*_arg4,_arg5,_arg6);
2299 SWIG_MakePtr(_ptemp, (char *) _result,"_wxDialog_p");
2300 _resultobj = Py_BuildValue("s",_ptemp);
2301 {
2302 if (_obj2)
2303 delete _arg2;
2304 }
2305 return _resultobj;
2306 }
2307
2308 #define wxDialog_Centre(_swigobj,_swigarg0) (_swigobj->Centre(_swigarg0))
2309 static PyObject *_wrap_wxDialog_Centre(PyObject *self, PyObject *args) {
2310 PyObject * _resultobj;
2311 wxDialog * _arg0;
2312 int _arg1 = (wxBOTH);
2313 char * _argc0 = 0;
2314
2315 self = self;
2316 if(!PyArg_ParseTuple(args,"s|i:wxDialog_Centre",&_argc0,&_arg1))
2317 return NULL;
2318 if (_argc0) {
2319 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxDialog_p")) {
2320 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_Centre. Expected _wxDialog_p.");
2321 return NULL;
2322 }
2323 }
2324 wxDialog_Centre(_arg0,_arg1);
2325 Py_INCREF(Py_None);
2326 _resultobj = Py_None;
2327 return _resultobj;
2328 }
2329
2330 #define wxDialog_EndModal(_swigobj,_swigarg0) (_swigobj->EndModal(_swigarg0))
2331 static PyObject *_wrap_wxDialog_EndModal(PyObject *self, PyObject *args) {
2332 PyObject * _resultobj;
2333 wxDialog * _arg0;
2334 int _arg1;
2335 char * _argc0 = 0;
2336
2337 self = self;
2338 if(!PyArg_ParseTuple(args,"si:wxDialog_EndModal",&_argc0,&_arg1))
2339 return NULL;
2340 if (_argc0) {
2341 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxDialog_p")) {
2342 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_EndModal. Expected _wxDialog_p.");
2343 return NULL;
2344 }
2345 }
2346 wxDialog_EndModal(_arg0,_arg1);
2347 Py_INCREF(Py_None);
2348 _resultobj = Py_None;
2349 return _resultobj;
2350 }
2351
2352 #define wxDialog_GetTitle(_swigobj) (_swigobj->GetTitle())
2353 static PyObject *_wrap_wxDialog_GetTitle(PyObject *self, PyObject *args) {
2354 PyObject * _resultobj;
2355 wxString * _result;
2356 wxDialog * _arg0;
2357 char * _argc0 = 0;
2358
2359 self = self;
2360 if(!PyArg_ParseTuple(args,"s:wxDialog_GetTitle",&_argc0))
2361 return NULL;
2362 if (_argc0) {
2363 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxDialog_p")) {
2364 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_GetTitle. Expected _wxDialog_p.");
2365 return NULL;
2366 }
2367 }
2368 _result = new wxString (wxDialog_GetTitle(_arg0));
2369 {
2370 _resultobj = PyString_FromString(WXSTRINGCAST *(_result));
2371 }
2372 {
2373 delete _result;
2374 }
2375 return _resultobj;
2376 }
2377
2378 #define wxDialog_Iconize(_swigobj,_swigarg0) (_swigobj->Iconize(_swigarg0))
2379 static PyObject *_wrap_wxDialog_Iconize(PyObject *self, PyObject *args) {
2380 PyObject * _resultobj;
2381 wxDialog * _arg0;
2382 bool _arg1;
2383 char * _argc0 = 0;
2384 int tempbool1;
2385
2386 self = self;
2387 if(!PyArg_ParseTuple(args,"si:wxDialog_Iconize",&_argc0,&tempbool1))
2388 return NULL;
2389 if (_argc0) {
2390 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxDialog_p")) {
2391 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_Iconize. Expected _wxDialog_p.");
2392 return NULL;
2393 }
2394 }
2395 _arg1 = (bool ) tempbool1;
2396 wxDialog_Iconize(_arg0,_arg1);
2397 Py_INCREF(Py_None);
2398 _resultobj = Py_None;
2399 return _resultobj;
2400 }
2401
2402 #define wxDialog_IsIconized(_swigobj) (_swigobj->IsIconized())
2403 static PyObject *_wrap_wxDialog_IsIconized(PyObject *self, PyObject *args) {
2404 PyObject * _resultobj;
2405 bool _result;
2406 wxDialog * _arg0;
2407 char * _argc0 = 0;
2408
2409 self = self;
2410 if(!PyArg_ParseTuple(args,"s:wxDialog_IsIconized",&_argc0))
2411 return NULL;
2412 if (_argc0) {
2413 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxDialog_p")) {
2414 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_IsIconized. Expected _wxDialog_p.");
2415 return NULL;
2416 }
2417 }
2418 _result = (bool )wxDialog_IsIconized(_arg0);
2419 _resultobj = Py_BuildValue("i",_result);
2420 return _resultobj;
2421 }
2422
2423 #define wxDialog_SetModal(_swigobj,_swigarg0) (_swigobj->SetModal(_swigarg0))
2424 static PyObject *_wrap_wxDialog_SetModal(PyObject *self, PyObject *args) {
2425 PyObject * _resultobj;
2426 wxDialog * _arg0;
2427 bool _arg1;
2428 char * _argc0 = 0;
2429 int tempbool1;
2430
2431 self = self;
2432 if(!PyArg_ParseTuple(args,"si:wxDialog_SetModal",&_argc0,&tempbool1))
2433 return NULL;
2434 if (_argc0) {
2435 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxDialog_p")) {
2436 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_SetModal. Expected _wxDialog_p.");
2437 return NULL;
2438 }
2439 }
2440 _arg1 = (bool ) tempbool1;
2441 wxDialog_SetModal(_arg0,_arg1);
2442 Py_INCREF(Py_None);
2443 _resultobj = Py_None;
2444 return _resultobj;
2445 }
2446
2447 #define wxDialog_IsModal(_swigobj) (_swigobj->IsModal())
2448 static PyObject *_wrap_wxDialog_IsModal(PyObject *self, PyObject *args) {
2449 PyObject * _resultobj;
2450 bool _result;
2451 wxDialog * _arg0;
2452 char * _argc0 = 0;
2453
2454 self = self;
2455 if(!PyArg_ParseTuple(args,"s:wxDialog_IsModal",&_argc0))
2456 return NULL;
2457 if (_argc0) {
2458 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxDialog_p")) {
2459 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_IsModal. Expected _wxDialog_p.");
2460 return NULL;
2461 }
2462 }
2463 _result = (bool )wxDialog_IsModal(_arg0);
2464 _resultobj = Py_BuildValue("i",_result);
2465 return _resultobj;
2466 }
2467
2468 #define wxDialog_SetTitle(_swigobj,_swigarg0) (_swigobj->SetTitle(_swigarg0))
2469 static PyObject *_wrap_wxDialog_SetTitle(PyObject *self, PyObject *args) {
2470 PyObject * _resultobj;
2471 wxDialog * _arg0;
2472 wxString * _arg1;
2473 char * _argc0 = 0;
2474 PyObject * _obj1 = 0;
2475
2476 self = self;
2477 if(!PyArg_ParseTuple(args,"sO:wxDialog_SetTitle",&_argc0,&_obj1))
2478 return NULL;
2479 if (_argc0) {
2480 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxDialog_p")) {
2481 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_SetTitle. Expected _wxDialog_p.");
2482 return NULL;
2483 }
2484 }
2485 {
2486 if (!PyString_Check(_obj1)) {
2487 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
2488 return NULL;
2489 }
2490 _arg1 = new wxString(PyString_AsString(_obj1));
2491 }
2492 wxDialog_SetTitle(_arg0,*_arg1);
2493 Py_INCREF(Py_None);
2494 _resultobj = Py_None;
2495 {
2496 if (_obj1)
2497 delete _arg1;
2498 }
2499 return _resultobj;
2500 }
2501
2502 #define wxDialog_Show(_swigobj,_swigarg0) (_swigobj->Show(_swigarg0))
2503 static PyObject *_wrap_wxDialog_Show(PyObject *self, PyObject *args) {
2504 PyObject * _resultobj;
2505 bool _result;
2506 wxDialog * _arg0;
2507 bool _arg1;
2508 char * _argc0 = 0;
2509 int tempbool1;
2510
2511 self = self;
2512 if(!PyArg_ParseTuple(args,"si:wxDialog_Show",&_argc0,&tempbool1))
2513 return NULL;
2514 if (_argc0) {
2515 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxDialog_p")) {
2516 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_Show. Expected _wxDialog_p.");
2517 return NULL;
2518 }
2519 }
2520 _arg1 = (bool ) tempbool1;
2521 _result = (bool )wxDialog_Show(_arg0,_arg1);
2522 _resultobj = Py_BuildValue("i",_result);
2523 return _resultobj;
2524 }
2525
2526 #define wxDialog_ShowModal(_swigobj) (_swigobj->ShowModal())
2527 static PyObject *_wrap_wxDialog_ShowModal(PyObject *self, PyObject *args) {
2528 PyObject * _resultobj;
2529 int _result;
2530 wxDialog * _arg0;
2531 char * _argc0 = 0;
2532
2533 self = self;
2534 if(!PyArg_ParseTuple(args,"s:wxDialog_ShowModal",&_argc0))
2535 return NULL;
2536 if (_argc0) {
2537 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxDialog_p")) {
2538 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDialog_ShowModal. Expected _wxDialog_p.");
2539 return NULL;
2540 }
2541 }
2542 _result = (int )wxDialog_ShowModal(_arg0);
2543 _resultobj = Py_BuildValue("i",_result);
2544 return _resultobj;
2545 }
2546
2547 static void *SwigwxScrolledWindowTowxWindow(void *ptr) {
2548 wxScrolledWindow *src;
2549 wxWindow *dest;
2550 src = (wxScrolledWindow *) ptr;
2551 dest = (wxWindow *) src;
2552 return (void *) dest;
2553 }
2554
2555 static void *SwigwxScrolledWindowTowxEvtHandler(void *ptr) {
2556 wxScrolledWindow *src;
2557 wxEvtHandler *dest;
2558 src = (wxScrolledWindow *) ptr;
2559 dest = (wxEvtHandler *) src;
2560 return (void *) dest;
2561 }
2562
2563 #define new_wxScrolledWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (new wxScrolledWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5))
2564 static PyObject *_wrap_new_wxScrolledWindow(PyObject *self, PyObject *args) {
2565 PyObject * _resultobj;
2566 wxScrolledWindow * _result;
2567 wxWindow * _arg0;
2568 wxWindowID _arg1 = -1;
2569 wxPoint * _arg2 = &wxPyDefaultPosition;
2570 wxSize * _arg3 = &wxPyDefaultSize;
2571 long _arg4 = (wxHSCROLL)|(wxVSCROLL);
2572 char * _arg5 = "scrolledWindow";
2573 char * _argc0 = 0;
2574 char * _argc2 = 0;
2575 char * _argc3 = 0;
2576 char _ptemp[128];
2577
2578 self = self;
2579 if(!PyArg_ParseTuple(args,"s|issls:new_wxScrolledWindow",&_argc0,&_arg1,&_argc2,&_argc3,&_arg4,&_arg5))
2580 return NULL;
2581 if (_argc0) {
2582 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxWindow_p")) {
2583 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxScrolledWindow. Expected _wxWindow_p.");
2584 return NULL;
2585 }
2586 }
2587 if (_argc2) {
2588 if (SWIG_GetPtr(_argc2,(void **) &_arg2,"_wxPoint_p")) {
2589 PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of new_wxScrolledWindow. Expected _wxPoint_p.");
2590 return NULL;
2591 }
2592 }
2593 if (_argc3) {
2594 if (SWIG_GetPtr(_argc3,(void **) &_arg3,"_wxSize_p")) {
2595 PyErr_SetString(PyExc_TypeError,"Type error in argument 4 of new_wxScrolledWindow. Expected _wxSize_p.");
2596 return NULL;
2597 }
2598 }
2599 _result = (wxScrolledWindow *)new_wxScrolledWindow(_arg0,_arg1,*_arg2,*_arg3,_arg4,_arg5);
2600 SWIG_MakePtr(_ptemp, (char *) _result,"_wxScrolledWindow_p");
2601 _resultobj = Py_BuildValue("s",_ptemp);
2602 return _resultobj;
2603 }
2604
2605 #define wxScrolledWindow_EnableScrolling(_swigobj,_swigarg0,_swigarg1) (_swigobj->EnableScrolling(_swigarg0,_swigarg1))
2606 static PyObject *_wrap_wxScrolledWindow_EnableScrolling(PyObject *self, PyObject *args) {
2607 PyObject * _resultobj;
2608 wxScrolledWindow * _arg0;
2609 bool _arg1;
2610 bool _arg2;
2611 char * _argc0 = 0;
2612 int tempbool1;
2613 int tempbool2;
2614
2615 self = self;
2616 if(!PyArg_ParseTuple(args,"sii:wxScrolledWindow_EnableScrolling",&_argc0,&tempbool1,&tempbool2))
2617 return NULL;
2618 if (_argc0) {
2619 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxScrolledWindow_p")) {
2620 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_EnableScrolling. Expected _wxScrolledWindow_p.");
2621 return NULL;
2622 }
2623 }
2624 _arg1 = (bool ) tempbool1;
2625 _arg2 = (bool ) tempbool2;
2626 wxScrolledWindow_EnableScrolling(_arg0,_arg1,_arg2);
2627 Py_INCREF(Py_None);
2628 _resultobj = Py_None;
2629 return _resultobj;
2630 }
2631
2632 #define wxScrolledWindow_GetScrollPixelsPerUnit(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetScrollPixelsPerUnit(_swigarg0,_swigarg1))
2633 static PyObject *_wrap_wxScrolledWindow_GetScrollPixelsPerUnit(PyObject *self, PyObject *args) {
2634 PyObject * _resultobj;
2635 wxScrolledWindow * _arg0;
2636 int * _arg1;
2637 int temp;
2638 int * _arg2;
2639 int temp0;
2640 char * _argc0 = 0;
2641
2642 self = self;
2643 {
2644 _arg1 = &temp;
2645 }
2646 {
2647 _arg2 = &temp0;
2648 }
2649 if(!PyArg_ParseTuple(args,"s:wxScrolledWindow_GetScrollPixelsPerUnit",&_argc0))
2650 return NULL;
2651 if (_argc0) {
2652 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxScrolledWindow_p")) {
2653 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetScrollPixelsPerUnit. Expected _wxScrolledWindow_p.");
2654 return NULL;
2655 }
2656 }
2657 wxScrolledWindow_GetScrollPixelsPerUnit(_arg0,_arg1,_arg2);
2658 Py_INCREF(Py_None);
2659 _resultobj = Py_None;
2660 {
2661 PyObject *o;
2662 o = PyInt_FromLong((long) (*_arg1));
2663 _resultobj = t_output_helper(_resultobj, o);
2664 }
2665 {
2666 PyObject *o;
2667 o = PyInt_FromLong((long) (*_arg2));
2668 _resultobj = t_output_helper(_resultobj, o);
2669 }
2670 return _resultobj;
2671 }
2672
2673 #define wxScrolledWindow_GetVirtualSize(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetVirtualSize(_swigarg0,_swigarg1))
2674 static PyObject *_wrap_wxScrolledWindow_GetVirtualSize(PyObject *self, PyObject *args) {
2675 PyObject * _resultobj;
2676 wxScrolledWindow * _arg0;
2677 int * _arg1;
2678 int temp;
2679 int * _arg2;
2680 int temp0;
2681 char * _argc0 = 0;
2682
2683 self = self;
2684 {
2685 _arg1 = &temp;
2686 }
2687 {
2688 _arg2 = &temp0;
2689 }
2690 if(!PyArg_ParseTuple(args,"s:wxScrolledWindow_GetVirtualSize",&_argc0))
2691 return NULL;
2692 if (_argc0) {
2693 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxScrolledWindow_p")) {
2694 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetVirtualSize. Expected _wxScrolledWindow_p.");
2695 return NULL;
2696 }
2697 }
2698 wxScrolledWindow_GetVirtualSize(_arg0,_arg1,_arg2);
2699 Py_INCREF(Py_None);
2700 _resultobj = Py_None;
2701 {
2702 PyObject *o;
2703 o = PyInt_FromLong((long) (*_arg1));
2704 _resultobj = t_output_helper(_resultobj, o);
2705 }
2706 {
2707 PyObject *o;
2708 o = PyInt_FromLong((long) (*_arg2));
2709 _resultobj = t_output_helper(_resultobj, o);
2710 }
2711 return _resultobj;
2712 }
2713
2714 #define wxScrolledWindow_IsRetained(_swigobj) (_swigobj->IsRetained())
2715 static PyObject *_wrap_wxScrolledWindow_IsRetained(PyObject *self, PyObject *args) {
2716 PyObject * _resultobj;
2717 bool _result;
2718 wxScrolledWindow * _arg0;
2719 char * _argc0 = 0;
2720
2721 self = self;
2722 if(!PyArg_ParseTuple(args,"s:wxScrolledWindow_IsRetained",&_argc0))
2723 return NULL;
2724 if (_argc0) {
2725 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxScrolledWindow_p")) {
2726 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_IsRetained. Expected _wxScrolledWindow_p.");
2727 return NULL;
2728 }
2729 }
2730 _result = (bool )wxScrolledWindow_IsRetained(_arg0);
2731 _resultobj = Py_BuildValue("i",_result);
2732 return _resultobj;
2733 }
2734
2735 #define wxScrolledWindow_PrepareDC(_swigobj,_swigarg0) (_swigobj->PrepareDC(_swigarg0))
2736 static PyObject *_wrap_wxScrolledWindow_PrepareDC(PyObject *self, PyObject *args) {
2737 PyObject * _resultobj;
2738 wxScrolledWindow * _arg0;
2739 wxDC * _arg1;
2740 char * _argc0 = 0;
2741 char * _argc1 = 0;
2742
2743 self = self;
2744 if(!PyArg_ParseTuple(args,"ss:wxScrolledWindow_PrepareDC",&_argc0,&_argc1))
2745 return NULL;
2746 if (_argc0) {
2747 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxScrolledWindow_p")) {
2748 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_PrepareDC. Expected _wxScrolledWindow_p.");
2749 return NULL;
2750 }
2751 }
2752 if (_argc1) {
2753 if (SWIG_GetPtr(_argc1,(void **) &_arg1,"_wxDC_p")) {
2754 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxScrolledWindow_PrepareDC. Expected _wxDC_p.");
2755 return NULL;
2756 }
2757 }
2758 wxScrolledWindow_PrepareDC(_arg0,*_arg1);
2759 Py_INCREF(Py_None);
2760 _resultobj = Py_None;
2761 return _resultobj;
2762 }
2763
2764 #define wxScrolledWindow_Scroll(_swigobj,_swigarg0,_swigarg1) (_swigobj->Scroll(_swigarg0,_swigarg1))
2765 static PyObject *_wrap_wxScrolledWindow_Scroll(PyObject *self, PyObject *args) {
2766 PyObject * _resultobj;
2767 wxScrolledWindow * _arg0;
2768 int _arg1;
2769 int _arg2;
2770 char * _argc0 = 0;
2771
2772 self = self;
2773 if(!PyArg_ParseTuple(args,"sii:wxScrolledWindow_Scroll",&_argc0,&_arg1,&_arg2))
2774 return NULL;
2775 if (_argc0) {
2776 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxScrolledWindow_p")) {
2777 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_Scroll. Expected _wxScrolledWindow_p.");
2778 return NULL;
2779 }
2780 }
2781 wxScrolledWindow_Scroll(_arg0,_arg1,_arg2);
2782 Py_INCREF(Py_None);
2783 _resultobj = Py_None;
2784 return _resultobj;
2785 }
2786
2787 #define wxScrolledWindow_SetScrollbars(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (_swigobj->SetScrollbars(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5))
2788 static PyObject *_wrap_wxScrolledWindow_SetScrollbars(PyObject *self, PyObject *args) {
2789 PyObject * _resultobj;
2790 wxScrolledWindow * _arg0;
2791 int _arg1;
2792 int _arg2;
2793 int _arg3;
2794 int _arg4;
2795 int _arg5 = 0;
2796 int _arg6 = 0;
2797 char * _argc0 = 0;
2798
2799 self = self;
2800 if(!PyArg_ParseTuple(args,"siiii|ii:wxScrolledWindow_SetScrollbars",&_argc0,&_arg1,&_arg2,&_arg3,&_arg4,&_arg5,&_arg6))
2801 return NULL;
2802 if (_argc0) {
2803 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxScrolledWindow_p")) {
2804 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_SetScrollbars. Expected _wxScrolledWindow_p.");
2805 return NULL;
2806 }
2807 }
2808 wxScrolledWindow_SetScrollbars(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5,_arg6);
2809 Py_INCREF(Py_None);
2810 _resultobj = Py_None;
2811 return _resultobj;
2812 }
2813
2814 #define wxScrolledWindow_ViewStart(_swigobj,_swigarg0,_swigarg1) (_swigobj->ViewStart(_swigarg0,_swigarg1))
2815 static PyObject *_wrap_wxScrolledWindow_ViewStart(PyObject *self, PyObject *args) {
2816 PyObject * _resultobj;
2817 wxScrolledWindow * _arg0;
2818 int * _arg1;
2819 int temp;
2820 int * _arg2;
2821 int temp0;
2822 char * _argc0 = 0;
2823
2824 self = self;
2825 {
2826 _arg1 = &temp;
2827 }
2828 {
2829 _arg2 = &temp0;
2830 }
2831 if(!PyArg_ParseTuple(args,"s:wxScrolledWindow_ViewStart",&_argc0))
2832 return NULL;
2833 if (_argc0) {
2834 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxScrolledWindow_p")) {
2835 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_ViewStart. Expected _wxScrolledWindow_p.");
2836 return NULL;
2837 }
2838 }
2839 wxScrolledWindow_ViewStart(_arg0,_arg1,_arg2);
2840 Py_INCREF(Py_None);
2841 _resultobj = Py_None;
2842 {
2843 PyObject *o;
2844 o = PyInt_FromLong((long) (*_arg1));
2845 _resultobj = t_output_helper(_resultobj, o);
2846 }
2847 {
2848 PyObject *o;
2849 o = PyInt_FromLong((long) (*_arg2));
2850 _resultobj = t_output_helper(_resultobj, o);
2851 }
2852 return _resultobj;
2853 }
2854
2855 static void *SwigwxMenuTowxEvtHandler(void *ptr) {
2856 wxMenu *src;
2857 wxEvtHandler *dest;
2858 src = (wxMenu *) ptr;
2859 dest = (wxEvtHandler *) src;
2860 return (void *) dest;
2861 }
2862
2863 #define new_wxMenu(_swigarg0) (new wxMenu(_swigarg0))
2864 static PyObject *_wrap_new_wxMenu(PyObject *self, PyObject *args) {
2865 PyObject * _resultobj;
2866 wxMenu * _result;
2867 wxString * _arg0 = &wxPyEmptyStr;
2868 PyObject * _obj0 = 0;
2869 char _ptemp[128];
2870
2871 self = self;
2872 if(!PyArg_ParseTuple(args,"|O:new_wxMenu",&_obj0))
2873 return NULL;
2874 if (_obj0)
2875 {
2876 if (!PyString_Check(_obj0)) {
2877 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
2878 return NULL;
2879 }
2880 _arg0 = new wxString(PyString_AsString(_obj0));
2881 }
2882 _result = (wxMenu *)new_wxMenu(*_arg0);
2883 SWIG_MakePtr(_ptemp, (char *) _result,"_wxMenu_p");
2884 _resultobj = Py_BuildValue("s",_ptemp);
2885 {
2886 if (_obj0)
2887 delete _arg0;
2888 }
2889 return _resultobj;
2890 }
2891
2892 #define wxMenu_Append(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->Append(_swigarg0,_swigarg1,_swigarg2,_swigarg3))
2893 static PyObject *_wrap_wxMenu_Append(PyObject *self, PyObject *args) {
2894 PyObject * _resultobj;
2895 wxMenu * _arg0;
2896 int _arg1;
2897 wxString * _arg2;
2898 wxString * _arg3 = &wxPyEmptyStr;
2899 int _arg4 = (0);
2900 char * _argc0 = 0;
2901 PyObject * _obj2 = 0;
2902 PyObject * _obj3 = 0;
2903
2904 self = self;
2905 if(!PyArg_ParseTuple(args,"siO|Oi:wxMenu_Append",&_argc0,&_arg1,&_obj2,&_obj3,&_arg4))
2906 return NULL;
2907 if (_argc0) {
2908 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
2909 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Append. Expected _wxMenu_p.");
2910 return NULL;
2911 }
2912 }
2913 {
2914 if (!PyString_Check(_obj2)) {
2915 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
2916 return NULL;
2917 }
2918 _arg2 = new wxString(PyString_AsString(_obj2));
2919 }
2920 if (_obj3)
2921 {
2922 if (!PyString_Check(_obj3)) {
2923 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
2924 return NULL;
2925 }
2926 _arg3 = new wxString(PyString_AsString(_obj3));
2927 }
2928 wxMenu_Append(_arg0,_arg1,*_arg2,*_arg3,_arg4);
2929 Py_INCREF(Py_None);
2930 _resultobj = Py_None;
2931 {
2932 if (_obj2)
2933 delete _arg2;
2934 }
2935 {
2936 if (_obj3)
2937 delete _arg3;
2938 }
2939 return _resultobj;
2940 }
2941
2942 #define wxMenu_AppendMenu(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->Append(_swigarg0,_swigarg1,_swigarg2,_swigarg3))
2943 static PyObject *_wrap_wxMenu_AppendMenu(PyObject *self, PyObject *args) {
2944 PyObject * _resultobj;
2945 wxMenu * _arg0;
2946 int _arg1;
2947 wxString * _arg2;
2948 wxMenu * _arg3;
2949 wxString * _arg4 = &wxPyEmptyStr;
2950 char * _argc0 = 0;
2951 PyObject * _obj2 = 0;
2952 char * _argc3 = 0;
2953 PyObject * _obj4 = 0;
2954
2955 self = self;
2956 if(!PyArg_ParseTuple(args,"siOs|O:wxMenu_AppendMenu",&_argc0,&_arg1,&_obj2,&_argc3,&_obj4))
2957 return NULL;
2958 if (_argc0) {
2959 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
2960 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_AppendMenu. Expected _wxMenu_p.");
2961 return NULL;
2962 }
2963 }
2964 {
2965 if (!PyString_Check(_obj2)) {
2966 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
2967 return NULL;
2968 }
2969 _arg2 = new wxString(PyString_AsString(_obj2));
2970 }
2971 if (_argc3) {
2972 if (SWIG_GetPtr(_argc3,(void **) &_arg3,"_wxMenu_p")) {
2973 PyErr_SetString(PyExc_TypeError,"Type error in argument 4 of wxMenu_AppendMenu. Expected _wxMenu_p.");
2974 return NULL;
2975 }
2976 }
2977 if (_obj4)
2978 {
2979 if (!PyString_Check(_obj4)) {
2980 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
2981 return NULL;
2982 }
2983 _arg4 = new wxString(PyString_AsString(_obj4));
2984 }
2985 wxMenu_AppendMenu(_arg0,_arg1,*_arg2,_arg3,*_arg4);
2986 Py_INCREF(Py_None);
2987 _resultobj = Py_None;
2988 {
2989 if (_obj2)
2990 delete _arg2;
2991 }
2992 {
2993 if (_obj4)
2994 delete _arg4;
2995 }
2996 return _resultobj;
2997 }
2998
2999 #define wxMenu_AppendSeparator(_swigobj) (_swigobj->AppendSeparator())
3000 static PyObject *_wrap_wxMenu_AppendSeparator(PyObject *self, PyObject *args) {
3001 PyObject * _resultobj;
3002 wxMenu * _arg0;
3003 char * _argc0 = 0;
3004
3005 self = self;
3006 if(!PyArg_ParseTuple(args,"s:wxMenu_AppendSeparator",&_argc0))
3007 return NULL;
3008 if (_argc0) {
3009 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
3010 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_AppendSeparator. Expected _wxMenu_p.");
3011 return NULL;
3012 }
3013 }
3014 wxMenu_AppendSeparator(_arg0);
3015 Py_INCREF(Py_None);
3016 _resultobj = Py_None;
3017 return _resultobj;
3018 }
3019
3020 #define wxMenu_Break(_swigobj) (_swigobj->Break())
3021 static PyObject *_wrap_wxMenu_Break(PyObject *self, PyObject *args) {
3022 PyObject * _resultobj;
3023 wxMenu * _arg0;
3024 char * _argc0 = 0;
3025
3026 self = self;
3027 if(!PyArg_ParseTuple(args,"s:wxMenu_Break",&_argc0))
3028 return NULL;
3029 if (_argc0) {
3030 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
3031 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Break. Expected _wxMenu_p.");
3032 return NULL;
3033 }
3034 }
3035 wxMenu_Break(_arg0);
3036 Py_INCREF(Py_None);
3037 _resultobj = Py_None;
3038 return _resultobj;
3039 }
3040
3041 #define wxMenu_Check(_swigobj,_swigarg0,_swigarg1) (_swigobj->Check(_swigarg0,_swigarg1))
3042 static PyObject *_wrap_wxMenu_Check(PyObject *self, PyObject *args) {
3043 PyObject * _resultobj;
3044 wxMenu * _arg0;
3045 int _arg1;
3046 bool _arg2;
3047 char * _argc0 = 0;
3048 int tempbool2;
3049
3050 self = self;
3051 if(!PyArg_ParseTuple(args,"sii:wxMenu_Check",&_argc0,&_arg1,&tempbool2))
3052 return NULL;
3053 if (_argc0) {
3054 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
3055 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Check. Expected _wxMenu_p.");
3056 return NULL;
3057 }
3058 }
3059 _arg2 = (bool ) tempbool2;
3060 wxMenu_Check(_arg0,_arg1,_arg2);
3061 Py_INCREF(Py_None);
3062 _resultobj = Py_None;
3063 return _resultobj;
3064 }
3065
3066 #define wxMenu_Enable(_swigobj,_swigarg0,_swigarg1) (_swigobj->Enable(_swigarg0,_swigarg1))
3067 static PyObject *_wrap_wxMenu_Enable(PyObject *self, PyObject *args) {
3068 PyObject * _resultobj;
3069 wxMenu * _arg0;
3070 int _arg1;
3071 bool _arg2;
3072 char * _argc0 = 0;
3073 int tempbool2;
3074
3075 self = self;
3076 if(!PyArg_ParseTuple(args,"sii:wxMenu_Enable",&_argc0,&_arg1,&tempbool2))
3077 return NULL;
3078 if (_argc0) {
3079 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
3080 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_Enable. Expected _wxMenu_p.");
3081 return NULL;
3082 }
3083 }
3084 _arg2 = (bool ) tempbool2;
3085 wxMenu_Enable(_arg0,_arg1,_arg2);
3086 Py_INCREF(Py_None);
3087 _resultobj = Py_None;
3088 return _resultobj;
3089 }
3090
3091 #define wxMenu_FindItem(_swigobj,_swigarg0) (_swigobj->FindItem(_swigarg0))
3092 static PyObject *_wrap_wxMenu_FindItem(PyObject *self, PyObject *args) {
3093 PyObject * _resultobj;
3094 int _result;
3095 wxMenu * _arg0;
3096 wxString * _arg1;
3097 char * _argc0 = 0;
3098 PyObject * _obj1 = 0;
3099
3100 self = self;
3101 if(!PyArg_ParseTuple(args,"sO:wxMenu_FindItem",&_argc0,&_obj1))
3102 return NULL;
3103 if (_argc0) {
3104 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
3105 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_FindItem. Expected _wxMenu_p.");
3106 return NULL;
3107 }
3108 }
3109 {
3110 if (!PyString_Check(_obj1)) {
3111 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
3112 return NULL;
3113 }
3114 _arg1 = new wxString(PyString_AsString(_obj1));
3115 }
3116 _result = (int )wxMenu_FindItem(_arg0,*_arg1);
3117 _resultobj = Py_BuildValue("i",_result);
3118 {
3119 if (_obj1)
3120 delete _arg1;
3121 }
3122 return _resultobj;
3123 }
3124
3125 #define wxMenu_GetTitle(_swigobj) (_swigobj->GetTitle())
3126 static PyObject *_wrap_wxMenu_GetTitle(PyObject *self, PyObject *args) {
3127 PyObject * _resultobj;
3128 wxString * _result;
3129 wxMenu * _arg0;
3130 char * _argc0 = 0;
3131
3132 self = self;
3133 if(!PyArg_ParseTuple(args,"s:wxMenu_GetTitle",&_argc0))
3134 return NULL;
3135 if (_argc0) {
3136 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
3137 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetTitle. Expected _wxMenu_p.");
3138 return NULL;
3139 }
3140 }
3141 _result = new wxString (wxMenu_GetTitle(_arg0));
3142 {
3143 _resultobj = PyString_FromString(WXSTRINGCAST *(_result));
3144 }
3145 {
3146 delete _result;
3147 }
3148 return _resultobj;
3149 }
3150
3151 #define wxMenu_SetTitle(_swigobj,_swigarg0) (_swigobj->SetTitle(_swigarg0))
3152 static PyObject *_wrap_wxMenu_SetTitle(PyObject *self, PyObject *args) {
3153 PyObject * _resultobj;
3154 wxMenu * _arg0;
3155 wxString * _arg1;
3156 char * _argc0 = 0;
3157 PyObject * _obj1 = 0;
3158
3159 self = self;
3160 if(!PyArg_ParseTuple(args,"sO:wxMenu_SetTitle",&_argc0,&_obj1))
3161 return NULL;
3162 if (_argc0) {
3163 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
3164 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetTitle. Expected _wxMenu_p.");
3165 return NULL;
3166 }
3167 }
3168 {
3169 if (!PyString_Check(_obj1)) {
3170 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
3171 return NULL;
3172 }
3173 _arg1 = new wxString(PyString_AsString(_obj1));
3174 }
3175 wxMenu_SetTitle(_arg0,*_arg1);
3176 Py_INCREF(Py_None);
3177 _resultobj = Py_None;
3178 {
3179 if (_obj1)
3180 delete _arg1;
3181 }
3182 return _resultobj;
3183 }
3184
3185 #define wxMenu_FindItemForId(_swigobj,_swigarg0) (_swigobj->FindItemForId(_swigarg0))
3186 static PyObject *_wrap_wxMenu_FindItemForId(PyObject *self, PyObject *args) {
3187 PyObject * _resultobj;
3188 wxMenuItem * _result;
3189 wxMenu * _arg0;
3190 int _arg1;
3191 char * _argc0 = 0;
3192 char _ptemp[128];
3193
3194 self = self;
3195 if(!PyArg_ParseTuple(args,"si:wxMenu_FindItemForId",&_argc0,&_arg1))
3196 return NULL;
3197 if (_argc0) {
3198 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
3199 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_FindItemForId. Expected _wxMenu_p.");
3200 return NULL;
3201 }
3202 }
3203 _result = (wxMenuItem *)wxMenu_FindItemForId(_arg0,_arg1);
3204 SWIG_MakePtr(_ptemp, (char *) _result,"_wxMenuItem_p");
3205 _resultobj = Py_BuildValue("s",_ptemp);
3206 return _resultobj;
3207 }
3208
3209 #define wxMenu_GetHelpString(_swigobj,_swigarg0) (_swigobj->GetHelpString(_swigarg0))
3210 static PyObject *_wrap_wxMenu_GetHelpString(PyObject *self, PyObject *args) {
3211 PyObject * _resultobj;
3212 wxString * _result;
3213 wxMenu * _arg0;
3214 int _arg1;
3215 char * _argc0 = 0;
3216
3217 self = self;
3218 if(!PyArg_ParseTuple(args,"si:wxMenu_GetHelpString",&_argc0,&_arg1))
3219 return NULL;
3220 if (_argc0) {
3221 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
3222 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetHelpString. Expected _wxMenu_p.");
3223 return NULL;
3224 }
3225 }
3226 _result = new wxString (wxMenu_GetHelpString(_arg0,_arg1));
3227 {
3228 _resultobj = PyString_FromString(WXSTRINGCAST *(_result));
3229 }
3230 {
3231 delete _result;
3232 }
3233 return _resultobj;
3234 }
3235
3236 #define wxMenu_GetLabel(_swigobj,_swigarg0) (_swigobj->GetLabel(_swigarg0))
3237 static PyObject *_wrap_wxMenu_GetLabel(PyObject *self, PyObject *args) {
3238 PyObject * _resultobj;
3239 wxString * _result;
3240 wxMenu * _arg0;
3241 int _arg1;
3242 char * _argc0 = 0;
3243
3244 self = self;
3245 if(!PyArg_ParseTuple(args,"si:wxMenu_GetLabel",&_argc0,&_arg1))
3246 return NULL;
3247 if (_argc0) {
3248 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
3249 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_GetLabel. Expected _wxMenu_p.");
3250 return NULL;
3251 }
3252 }
3253 _result = new wxString (wxMenu_GetLabel(_arg0,_arg1));
3254 {
3255 _resultobj = PyString_FromString(WXSTRINGCAST *(_result));
3256 }
3257 {
3258 delete _result;
3259 }
3260 return _resultobj;
3261 }
3262
3263 #define wxMenu_SetHelpString(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetHelpString(_swigarg0,_swigarg1))
3264 static PyObject *_wrap_wxMenu_SetHelpString(PyObject *self, PyObject *args) {
3265 PyObject * _resultobj;
3266 wxMenu * _arg0;
3267 int _arg1;
3268 wxString * _arg2;
3269 char * _argc0 = 0;
3270 PyObject * _obj2 = 0;
3271
3272 self = self;
3273 if(!PyArg_ParseTuple(args,"siO:wxMenu_SetHelpString",&_argc0,&_arg1,&_obj2))
3274 return NULL;
3275 if (_argc0) {
3276 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
3277 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetHelpString. Expected _wxMenu_p.");
3278 return NULL;
3279 }
3280 }
3281 {
3282 if (!PyString_Check(_obj2)) {
3283 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
3284 return NULL;
3285 }
3286 _arg2 = new wxString(PyString_AsString(_obj2));
3287 }
3288 wxMenu_SetHelpString(_arg0,_arg1,*_arg2);
3289 Py_INCREF(Py_None);
3290 _resultobj = Py_None;
3291 {
3292 if (_obj2)
3293 delete _arg2;
3294 }
3295 return _resultobj;
3296 }
3297
3298 #define wxMenu_IsChecked(_swigobj,_swigarg0) (_swigobj->IsChecked(_swigarg0))
3299 static PyObject *_wrap_wxMenu_IsChecked(PyObject *self, PyObject *args) {
3300 PyObject * _resultobj;
3301 bool _result;
3302 wxMenu * _arg0;
3303 int _arg1;
3304 char * _argc0 = 0;
3305
3306 self = self;
3307 if(!PyArg_ParseTuple(args,"si:wxMenu_IsChecked",&_argc0,&_arg1))
3308 return NULL;
3309 if (_argc0) {
3310 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
3311 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_IsChecked. Expected _wxMenu_p.");
3312 return NULL;
3313 }
3314 }
3315 _result = (bool )wxMenu_IsChecked(_arg0,_arg1);
3316 _resultobj = Py_BuildValue("i",_result);
3317 return _resultobj;
3318 }
3319
3320 #define wxMenu_IsEnabled(_swigobj,_swigarg0) (_swigobj->IsEnabled(_swigarg0))
3321 static PyObject *_wrap_wxMenu_IsEnabled(PyObject *self, PyObject *args) {
3322 PyObject * _resultobj;
3323 bool _result;
3324 wxMenu * _arg0;
3325 int _arg1;
3326 char * _argc0 = 0;
3327
3328 self = self;
3329 if(!PyArg_ParseTuple(args,"si:wxMenu_IsEnabled",&_argc0,&_arg1))
3330 return NULL;
3331 if (_argc0) {
3332 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
3333 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_IsEnabled. Expected _wxMenu_p.");
3334 return NULL;
3335 }
3336 }
3337 _result = (bool )wxMenu_IsEnabled(_arg0,_arg1);
3338 _resultobj = Py_BuildValue("i",_result);
3339 return _resultobj;
3340 }
3341
3342 #define wxMenu_SetLabel(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetLabel(_swigarg0,_swigarg1))
3343 static PyObject *_wrap_wxMenu_SetLabel(PyObject *self, PyObject *args) {
3344 PyObject * _resultobj;
3345 wxMenu * _arg0;
3346 int _arg1;
3347 wxString * _arg2;
3348 char * _argc0 = 0;
3349 PyObject * _obj2 = 0;
3350
3351 self = self;
3352 if(!PyArg_ParseTuple(args,"siO:wxMenu_SetLabel",&_argc0,&_arg1,&_obj2))
3353 return NULL;
3354 if (_argc0) {
3355 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenu_p")) {
3356 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenu_SetLabel. Expected _wxMenu_p.");
3357 return NULL;
3358 }
3359 }
3360 {
3361 if (!PyString_Check(_obj2)) {
3362 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
3363 return NULL;
3364 }
3365 _arg2 = new wxString(PyString_AsString(_obj2));
3366 }
3367 wxMenu_SetLabel(_arg0,_arg1,*_arg2);
3368 Py_INCREF(Py_None);
3369 _resultobj = Py_None;
3370 {
3371 if (_obj2)
3372 delete _arg2;
3373 }
3374 return _resultobj;
3375 }
3376
3377 static void *SwigwxPyMenuTowxMenu(void *ptr) {
3378 wxPyMenu *src;
3379 wxMenu *dest;
3380 src = (wxPyMenu *) ptr;
3381 dest = (wxMenu *) src;
3382 return (void *) dest;
3383 }
3384
3385 static void *SwigwxPyMenuTowxEvtHandler(void *ptr) {
3386 wxPyMenu *src;
3387 wxEvtHandler *dest;
3388 src = (wxPyMenu *) ptr;
3389 dest = (wxEvtHandler *) src;
3390 return (void *) dest;
3391 }
3392
3393 #define new_wxPyMenu(_swigarg0,_swigarg1) (new wxPyMenu(_swigarg0,_swigarg1))
3394 static PyObject *_wrap_new_wxPyMenu(PyObject *self, PyObject *args) {
3395 PyObject * _resultobj;
3396 wxPyMenu * _result;
3397 wxString * _arg0 = &wxPyEmptyStr;
3398 PyObject * _arg1 = NULL;
3399 PyObject * _obj0 = 0;
3400 PyObject * _obj1 = 0;
3401 char _ptemp[128];
3402
3403 self = self;
3404 if(!PyArg_ParseTuple(args,"|OO:new_wxPyMenu",&_obj0,&_obj1))
3405 return NULL;
3406 if (_obj0)
3407 {
3408 if (!PyString_Check(_obj0)) {
3409 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
3410 return NULL;
3411 }
3412 _arg0 = new wxString(PyString_AsString(_obj0));
3413 }
3414 if (_obj1)
3415 {
3416 _arg1 = _obj1;
3417 }
3418 _result = (wxPyMenu *)new_wxPyMenu(*_arg0,_arg1);
3419 SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyMenu_p");
3420 _resultobj = Py_BuildValue("s",_ptemp);
3421 {
3422 if (_obj0)
3423 delete _arg0;
3424 }
3425 return _resultobj;
3426 }
3427
3428 #define delete_wxPyMenu(_swigobj) (delete _swigobj)
3429 static PyObject *_wrap_delete_wxPyMenu(PyObject *self, PyObject *args) {
3430 PyObject * _resultobj;
3431 wxPyMenu * _arg0;
3432 char * _argc0 = 0;
3433
3434 self = self;
3435 if(!PyArg_ParseTuple(args,"s:delete_wxPyMenu",&_argc0))
3436 return NULL;
3437 if (_argc0) {
3438 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyMenu_p")) {
3439 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxPyMenu. Expected _wxPyMenu_p.");
3440 return NULL;
3441 }
3442 }
3443 delete_wxPyMenu(_arg0);
3444 Py_INCREF(Py_None);
3445 _resultobj = Py_None;
3446 return _resultobj;
3447 }
3448
3449 static void *SwigwxMenuBarTowxEvtHandler(void *ptr) {
3450 wxMenuBar *src;
3451 wxEvtHandler *dest;
3452 src = (wxMenuBar *) ptr;
3453 dest = (wxEvtHandler *) src;
3454 return (void *) dest;
3455 }
3456
3457 #define new_wxMenuBar() (new wxMenuBar())
3458 static PyObject *_wrap_new_wxMenuBar(PyObject *self, PyObject *args) {
3459 PyObject * _resultobj;
3460 wxMenuBar * _result;
3461 char _ptemp[128];
3462
3463 self = self;
3464 if(!PyArg_ParseTuple(args,":new_wxMenuBar"))
3465 return NULL;
3466 _result = (wxMenuBar *)new_wxMenuBar();
3467 SWIG_MakePtr(_ptemp, (char *) _result,"_wxMenuBar_p");
3468 _resultobj = Py_BuildValue("s",_ptemp);
3469 return _resultobj;
3470 }
3471
3472 #define wxMenuBar_Append(_swigobj,_swigarg0,_swigarg1) (_swigobj->Append(_swigarg0,_swigarg1))
3473 static PyObject *_wrap_wxMenuBar_Append(PyObject *self, PyObject *args) {
3474 PyObject * _resultobj;
3475 wxMenuBar * _arg0;
3476 wxMenu * _arg1;
3477 wxString * _arg2;
3478 char * _argc0 = 0;
3479 char * _argc1 = 0;
3480 PyObject * _obj2 = 0;
3481
3482 self = self;
3483 if(!PyArg_ParseTuple(args,"ssO:wxMenuBar_Append",&_argc0,&_argc1,&_obj2))
3484 return NULL;
3485 if (_argc0) {
3486 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3487 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Append. Expected _wxMenuBar_p.");
3488 return NULL;
3489 }
3490 }
3491 if (_argc1) {
3492 if (SWIG_GetPtr(_argc1,(void **) &_arg1,"_wxMenu_p")) {
3493 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxMenuBar_Append. Expected _wxMenu_p.");
3494 return NULL;
3495 }
3496 }
3497 {
3498 if (!PyString_Check(_obj2)) {
3499 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
3500 return NULL;
3501 }
3502 _arg2 = new wxString(PyString_AsString(_obj2));
3503 }
3504 wxMenuBar_Append(_arg0,_arg1,*_arg2);
3505 Py_INCREF(Py_None);
3506 _resultobj = Py_None;
3507 {
3508 if (_obj2)
3509 delete _arg2;
3510 }
3511 return _resultobj;
3512 }
3513
3514 #define wxMenuBar_Check(_swigobj,_swigarg0,_swigarg1) (_swigobj->Check(_swigarg0,_swigarg1))
3515 static PyObject *_wrap_wxMenuBar_Check(PyObject *self, PyObject *args) {
3516 PyObject * _resultobj;
3517 wxMenuBar * _arg0;
3518 int _arg1;
3519 bool _arg2;
3520 char * _argc0 = 0;
3521 int tempbool2;
3522
3523 self = self;
3524 if(!PyArg_ParseTuple(args,"sii:wxMenuBar_Check",&_argc0,&_arg1,&tempbool2))
3525 return NULL;
3526 if (_argc0) {
3527 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3528 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Check. Expected _wxMenuBar_p.");
3529 return NULL;
3530 }
3531 }
3532 _arg2 = (bool ) tempbool2;
3533 wxMenuBar_Check(_arg0,_arg1,_arg2);
3534 Py_INCREF(Py_None);
3535 _resultobj = Py_None;
3536 return _resultobj;
3537 }
3538
3539 #define wxMenuBar_Checked(_swigobj,_swigarg0) (_swigobj->Checked(_swigarg0))
3540 static PyObject *_wrap_wxMenuBar_Checked(PyObject *self, PyObject *args) {
3541 PyObject * _resultobj;
3542 bool _result;
3543 wxMenuBar * _arg0;
3544 int _arg1;
3545 char * _argc0 = 0;
3546
3547 self = self;
3548 if(!PyArg_ParseTuple(args,"si:wxMenuBar_Checked",&_argc0,&_arg1))
3549 return NULL;
3550 if (_argc0) {
3551 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3552 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Checked. Expected _wxMenuBar_p.");
3553 return NULL;
3554 }
3555 }
3556 _result = (bool )wxMenuBar_Checked(_arg0,_arg1);
3557 _resultobj = Py_BuildValue("i",_result);
3558 return _resultobj;
3559 }
3560
3561 #define wxMenuBar_Enable(_swigobj,_swigarg0,_swigarg1) (_swigobj->Enable(_swigarg0,_swigarg1))
3562 static PyObject *_wrap_wxMenuBar_Enable(PyObject *self, PyObject *args) {
3563 PyObject * _resultobj;
3564 wxMenuBar * _arg0;
3565 int _arg1;
3566 bool _arg2;
3567 char * _argc0 = 0;
3568 int tempbool2;
3569
3570 self = self;
3571 if(!PyArg_ParseTuple(args,"sii:wxMenuBar_Enable",&_argc0,&_arg1,&tempbool2))
3572 return NULL;
3573 if (_argc0) {
3574 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3575 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Enable. Expected _wxMenuBar_p.");
3576 return NULL;
3577 }
3578 }
3579 _arg2 = (bool ) tempbool2;
3580 wxMenuBar_Enable(_arg0,_arg1,_arg2);
3581 Py_INCREF(Py_None);
3582 _resultobj = Py_None;
3583 return _resultobj;
3584 }
3585
3586 #define wxMenuBar_Enabled(_swigobj,_swigarg0) (_swigobj->Enabled(_swigarg0))
3587 static PyObject *_wrap_wxMenuBar_Enabled(PyObject *self, PyObject *args) {
3588 PyObject * _resultobj;
3589 bool _result;
3590 wxMenuBar * _arg0;
3591 int _arg1;
3592 char * _argc0 = 0;
3593
3594 self = self;
3595 if(!PyArg_ParseTuple(args,"si:wxMenuBar_Enabled",&_argc0,&_arg1))
3596 return NULL;
3597 if (_argc0) {
3598 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3599 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_Enabled. Expected _wxMenuBar_p.");
3600 return NULL;
3601 }
3602 }
3603 _result = (bool )wxMenuBar_Enabled(_arg0,_arg1);
3604 _resultobj = Py_BuildValue("i",_result);
3605 return _resultobj;
3606 }
3607
3608 #define wxMenuBar_FindMenuItem(_swigobj,_swigarg0,_swigarg1) (_swigobj->FindMenuItem(_swigarg0,_swigarg1))
3609 static PyObject *_wrap_wxMenuBar_FindMenuItem(PyObject *self, PyObject *args) {
3610 PyObject * _resultobj;
3611 int _result;
3612 wxMenuBar * _arg0;
3613 wxString * _arg1;
3614 wxString * _arg2;
3615 char * _argc0 = 0;
3616 PyObject * _obj1 = 0;
3617 PyObject * _obj2 = 0;
3618
3619 self = self;
3620 if(!PyArg_ParseTuple(args,"sOO:wxMenuBar_FindMenuItem",&_argc0,&_obj1,&_obj2))
3621 return NULL;
3622 if (_argc0) {
3623 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3624 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_FindMenuItem. Expected _wxMenuBar_p.");
3625 return NULL;
3626 }
3627 }
3628 {
3629 if (!PyString_Check(_obj1)) {
3630 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
3631 return NULL;
3632 }
3633 _arg1 = new wxString(PyString_AsString(_obj1));
3634 }
3635 {
3636 if (!PyString_Check(_obj2)) {
3637 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
3638 return NULL;
3639 }
3640 _arg2 = new wxString(PyString_AsString(_obj2));
3641 }
3642 _result = (int )wxMenuBar_FindMenuItem(_arg0,*_arg1,*_arg2);
3643 _resultobj = Py_BuildValue("i",_result);
3644 {
3645 if (_obj1)
3646 delete _arg1;
3647 }
3648 {
3649 if (_obj2)
3650 delete _arg2;
3651 }
3652 return _resultobj;
3653 }
3654
3655 #define wxMenuBar_FindItemForId(_swigobj,_swigarg0) (_swigobj->FindItemForId(_swigarg0))
3656 static PyObject *_wrap_wxMenuBar_FindItemForId(PyObject *self, PyObject *args) {
3657 PyObject * _resultobj;
3658 wxMenuItem * _result;
3659 wxMenuBar * _arg0;
3660 int _arg1;
3661 char * _argc0 = 0;
3662 char _ptemp[128];
3663
3664 self = self;
3665 if(!PyArg_ParseTuple(args,"si:wxMenuBar_FindItemForId",&_argc0,&_arg1))
3666 return NULL;
3667 if (_argc0) {
3668 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3669 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_FindItemForId. Expected _wxMenuBar_p.");
3670 return NULL;
3671 }
3672 }
3673 _result = (wxMenuItem *)wxMenuBar_FindItemForId(_arg0,_arg1);
3674 SWIG_MakePtr(_ptemp, (char *) _result,"_wxMenuItem_p");
3675 _resultobj = Py_BuildValue("s",_ptemp);
3676 return _resultobj;
3677 }
3678
3679 #define wxMenuBar_EnableTop(_swigobj,_swigarg0,_swigarg1) (_swigobj->EnableTop(_swigarg0,_swigarg1))
3680 static PyObject *_wrap_wxMenuBar_EnableTop(PyObject *self, PyObject *args) {
3681 PyObject * _resultobj;
3682 wxMenuBar * _arg0;
3683 int _arg1;
3684 bool _arg2;
3685 char * _argc0 = 0;
3686 int tempbool2;
3687
3688 self = self;
3689 if(!PyArg_ParseTuple(args,"sii:wxMenuBar_EnableTop",&_argc0,&_arg1,&tempbool2))
3690 return NULL;
3691 if (_argc0) {
3692 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3693 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_EnableTop. Expected _wxMenuBar_p.");
3694 return NULL;
3695 }
3696 }
3697 _arg2 = (bool ) tempbool2;
3698 wxMenuBar_EnableTop(_arg0,_arg1,_arg2);
3699 Py_INCREF(Py_None);
3700 _resultobj = Py_None;
3701 return _resultobj;
3702 }
3703
3704 #define wxMenuBar_GetHelpString(_swigobj,_swigarg0) (_swigobj->GetHelpString(_swigarg0))
3705 static PyObject *_wrap_wxMenuBar_GetHelpString(PyObject *self, PyObject *args) {
3706 PyObject * _resultobj;
3707 wxString * _result;
3708 wxMenuBar * _arg0;
3709 int _arg1;
3710 char * _argc0 = 0;
3711
3712 self = self;
3713 if(!PyArg_ParseTuple(args,"si:wxMenuBar_GetHelpString",&_argc0,&_arg1))
3714 return NULL;
3715 if (_argc0) {
3716 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3717 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetHelpString. Expected _wxMenuBar_p.");
3718 return NULL;
3719 }
3720 }
3721 _result = new wxString (wxMenuBar_GetHelpString(_arg0,_arg1));
3722 {
3723 _resultobj = PyString_FromString(WXSTRINGCAST *(_result));
3724 }
3725 {
3726 delete _result;
3727 }
3728 return _resultobj;
3729 }
3730
3731 #define wxMenuBar_GetLabel(_swigobj,_swigarg0) (_swigobj->GetLabel(_swigarg0))
3732 static PyObject *_wrap_wxMenuBar_GetLabel(PyObject *self, PyObject *args) {
3733 PyObject * _resultobj;
3734 wxString * _result;
3735 wxMenuBar * _arg0;
3736 int _arg1;
3737 char * _argc0 = 0;
3738
3739 self = self;
3740 if(!PyArg_ParseTuple(args,"si:wxMenuBar_GetLabel",&_argc0,&_arg1))
3741 return NULL;
3742 if (_argc0) {
3743 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3744 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetLabel. Expected _wxMenuBar_p.");
3745 return NULL;
3746 }
3747 }
3748 _result = new wxString (wxMenuBar_GetLabel(_arg0,_arg1));
3749 {
3750 _resultobj = PyString_FromString(WXSTRINGCAST *(_result));
3751 }
3752 {
3753 delete _result;
3754 }
3755 return _resultobj;
3756 }
3757
3758 #define wxMenuBar_SetHelpString(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetHelpString(_swigarg0,_swigarg1))
3759 static PyObject *_wrap_wxMenuBar_SetHelpString(PyObject *self, PyObject *args) {
3760 PyObject * _resultobj;
3761 wxMenuBar * _arg0;
3762 int _arg1;
3763 wxString * _arg2;
3764 char * _argc0 = 0;
3765 PyObject * _obj2 = 0;
3766
3767 self = self;
3768 if(!PyArg_ParseTuple(args,"siO:wxMenuBar_SetHelpString",&_argc0,&_arg1,&_obj2))
3769 return NULL;
3770 if (_argc0) {
3771 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3772 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_SetHelpString. Expected _wxMenuBar_p.");
3773 return NULL;
3774 }
3775 }
3776 {
3777 if (!PyString_Check(_obj2)) {
3778 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
3779 return NULL;
3780 }
3781 _arg2 = new wxString(PyString_AsString(_obj2));
3782 }
3783 wxMenuBar_SetHelpString(_arg0,_arg1,*_arg2);
3784 Py_INCREF(Py_None);
3785 _resultobj = Py_None;
3786 {
3787 if (_obj2)
3788 delete _arg2;
3789 }
3790 return _resultobj;
3791 }
3792
3793 #define wxMenuBar_SetLabel(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetLabel(_swigarg0,_swigarg1))
3794 static PyObject *_wrap_wxMenuBar_SetLabel(PyObject *self, PyObject *args) {
3795 PyObject * _resultobj;
3796 wxMenuBar * _arg0;
3797 int _arg1;
3798 wxString * _arg2;
3799 char * _argc0 = 0;
3800 PyObject * _obj2 = 0;
3801
3802 self = self;
3803 if(!PyArg_ParseTuple(args,"siO:wxMenuBar_SetLabel",&_argc0,&_arg1,&_obj2))
3804 return NULL;
3805 if (_argc0) {
3806 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3807 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_SetLabel. Expected _wxMenuBar_p.");
3808 return NULL;
3809 }
3810 }
3811 {
3812 if (!PyString_Check(_obj2)) {
3813 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
3814 return NULL;
3815 }
3816 _arg2 = new wxString(PyString_AsString(_obj2));
3817 }
3818 wxMenuBar_SetLabel(_arg0,_arg1,*_arg2);
3819 Py_INCREF(Py_None);
3820 _resultobj = Py_None;
3821 {
3822 if (_obj2)
3823 delete _arg2;
3824 }
3825 return _resultobj;
3826 }
3827
3828 #define wxMenuBar_GetLabelTop(_swigobj,_swigarg0) (_swigobj->GetLabelTop(_swigarg0))
3829 static PyObject *_wrap_wxMenuBar_GetLabelTop(PyObject *self, PyObject *args) {
3830 PyObject * _resultobj;
3831 wxString * _result;
3832 wxMenuBar * _arg0;
3833 int _arg1;
3834 char * _argc0 = 0;
3835
3836 self = self;
3837 if(!PyArg_ParseTuple(args,"si:wxMenuBar_GetLabelTop",&_argc0,&_arg1))
3838 return NULL;
3839 if (_argc0) {
3840 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3841 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetLabelTop. Expected _wxMenuBar_p.");
3842 return NULL;
3843 }
3844 }
3845 _result = new wxString (wxMenuBar_GetLabelTop(_arg0,_arg1));
3846 {
3847 _resultobj = PyString_FromString(WXSTRINGCAST *(_result));
3848 }
3849 {
3850 delete _result;
3851 }
3852 return _resultobj;
3853 }
3854
3855 #define wxMenuBar_SetLabelTop(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetLabelTop(_swigarg0,_swigarg1))
3856 static PyObject *_wrap_wxMenuBar_SetLabelTop(PyObject *self, PyObject *args) {
3857 PyObject * _resultobj;
3858 wxMenuBar * _arg0;
3859 int _arg1;
3860 wxString * _arg2;
3861 char * _argc0 = 0;
3862 PyObject * _obj2 = 0;
3863
3864 self = self;
3865 if(!PyArg_ParseTuple(args,"siO:wxMenuBar_SetLabelTop",&_argc0,&_arg1,&_obj2))
3866 return NULL;
3867 if (_argc0) {
3868 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3869 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_SetLabelTop. Expected _wxMenuBar_p.");
3870 return NULL;
3871 }
3872 }
3873 {
3874 if (!PyString_Check(_obj2)) {
3875 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
3876 return NULL;
3877 }
3878 _arg2 = new wxString(PyString_AsString(_obj2));
3879 }
3880 wxMenuBar_SetLabelTop(_arg0,_arg1,*_arg2);
3881 Py_INCREF(Py_None);
3882 _resultobj = Py_None;
3883 {
3884 if (_obj2)
3885 delete _arg2;
3886 }
3887 return _resultobj;
3888 }
3889
3890 #define wxMenuBar_GetMenuCount(_swigobj) (_swigobj->GetMenuCount())
3891 static PyObject *_wrap_wxMenuBar_GetMenuCount(PyObject *self, PyObject *args) {
3892 PyObject * _resultobj;
3893 int _result;
3894 wxMenuBar * _arg0;
3895 char * _argc0 = 0;
3896
3897 self = self;
3898 if(!PyArg_ParseTuple(args,"s:wxMenuBar_GetMenuCount",&_argc0))
3899 return NULL;
3900 if (_argc0) {
3901 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3902 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetMenuCount. Expected _wxMenuBar_p.");
3903 return NULL;
3904 }
3905 }
3906 _result = (int )wxMenuBar_GetMenuCount(_arg0);
3907 _resultobj = Py_BuildValue("i",_result);
3908 return _resultobj;
3909 }
3910
3911 #define wxMenuBar_GetMenu(_swigobj,_swigarg0) (_swigobj->GetMenu(_swigarg0))
3912 static PyObject *_wrap_wxMenuBar_GetMenu(PyObject *self, PyObject *args) {
3913 PyObject * _resultobj;
3914 wxMenu * _result;
3915 wxMenuBar * _arg0;
3916 int _arg1;
3917 char * _argc0 = 0;
3918 char _ptemp[128];
3919
3920 self = self;
3921 if(!PyArg_ParseTuple(args,"si:wxMenuBar_GetMenu",&_argc0,&_arg1))
3922 return NULL;
3923 if (_argc0) {
3924 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuBar_p")) {
3925 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuBar_GetMenu. Expected _wxMenuBar_p.");
3926 return NULL;
3927 }
3928 }
3929 _result = (wxMenu *)wxMenuBar_GetMenu(_arg0,_arg1);
3930 SWIG_MakePtr(_ptemp, (char *) _result,"_wxMenu_p");
3931 _resultobj = Py_BuildValue("s",_ptemp);
3932 return _resultobj;
3933 }
3934
3935 #define wxMenuItem_IsSeparator(_swigobj) (_swigobj->IsSeparator())
3936 static PyObject *_wrap_wxMenuItem_IsSeparator(PyObject *self, PyObject *args) {
3937 PyObject * _resultobj;
3938 bool _result;
3939 wxMenuItem * _arg0;
3940 char * _argc0 = 0;
3941
3942 self = self;
3943 if(!PyArg_ParseTuple(args,"s:wxMenuItem_IsSeparator",&_argc0))
3944 return NULL;
3945 if (_argc0) {
3946 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuItem_p")) {
3947 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsSeparator. Expected _wxMenuItem_p.");
3948 return NULL;
3949 }
3950 }
3951 _result = (bool )wxMenuItem_IsSeparator(_arg0);
3952 _resultobj = Py_BuildValue("i",_result);
3953 return _resultobj;
3954 }
3955
3956 #define wxMenuItem_IsEnabled(_swigobj) (_swigobj->IsEnabled())
3957 static PyObject *_wrap_wxMenuItem_IsEnabled(PyObject *self, PyObject *args) {
3958 PyObject * _resultobj;
3959 bool _result;
3960 wxMenuItem * _arg0;
3961 char * _argc0 = 0;
3962
3963 self = self;
3964 if(!PyArg_ParseTuple(args,"s:wxMenuItem_IsEnabled",&_argc0))
3965 return NULL;
3966 if (_argc0) {
3967 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuItem_p")) {
3968 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsEnabled. Expected _wxMenuItem_p.");
3969 return NULL;
3970 }
3971 }
3972 _result = (bool )wxMenuItem_IsEnabled(_arg0);
3973 _resultobj = Py_BuildValue("i",_result);
3974 return _resultobj;
3975 }
3976
3977 #define wxMenuItem_IsChecked(_swigobj) (_swigobj->IsChecked())
3978 static PyObject *_wrap_wxMenuItem_IsChecked(PyObject *self, PyObject *args) {
3979 PyObject * _resultobj;
3980 bool _result;
3981 wxMenuItem * _arg0;
3982 char * _argc0 = 0;
3983
3984 self = self;
3985 if(!PyArg_ParseTuple(args,"s:wxMenuItem_IsChecked",&_argc0))
3986 return NULL;
3987 if (_argc0) {
3988 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuItem_p")) {
3989 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsChecked. Expected _wxMenuItem_p.");
3990 return NULL;
3991 }
3992 }
3993 _result = (bool )wxMenuItem_IsChecked(_arg0);
3994 _resultobj = Py_BuildValue("i",_result);
3995 return _resultobj;
3996 }
3997
3998 #define wxMenuItem_IsCheckable(_swigobj) (_swigobj->IsCheckable())
3999 static PyObject *_wrap_wxMenuItem_IsCheckable(PyObject *self, PyObject *args) {
4000 PyObject * _resultobj;
4001 bool _result;
4002 wxMenuItem * _arg0;
4003 char * _argc0 = 0;
4004
4005 self = self;
4006 if(!PyArg_ParseTuple(args,"s:wxMenuItem_IsCheckable",&_argc0))
4007 return NULL;
4008 if (_argc0) {
4009 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuItem_p")) {
4010 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_IsCheckable. Expected _wxMenuItem_p.");
4011 return NULL;
4012 }
4013 }
4014 _result = (bool )wxMenuItem_IsCheckable(_arg0);
4015 _resultobj = Py_BuildValue("i",_result);
4016 return _resultobj;
4017 }
4018
4019 #define wxMenuItem_GetId(_swigobj) (_swigobj->GetId())
4020 static PyObject *_wrap_wxMenuItem_GetId(PyObject *self, PyObject *args) {
4021 PyObject * _resultobj;
4022 int _result;
4023 wxMenuItem * _arg0;
4024 char * _argc0 = 0;
4025
4026 self = self;
4027 if(!PyArg_ParseTuple(args,"s:wxMenuItem_GetId",&_argc0))
4028 return NULL;
4029 if (_argc0) {
4030 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuItem_p")) {
4031 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetId. Expected _wxMenuItem_p.");
4032 return NULL;
4033 }
4034 }
4035 _result = (int )wxMenuItem_GetId(_arg0);
4036 _resultobj = Py_BuildValue("i",_result);
4037 return _resultobj;
4038 }
4039
4040 #define wxMenuItem_GetSubMenu(_swigobj) (_swigobj->GetSubMenu())
4041 static PyObject *_wrap_wxMenuItem_GetSubMenu(PyObject *self, PyObject *args) {
4042 PyObject * _resultobj;
4043 wxMenu * _result;
4044 wxMenuItem * _arg0;
4045 char * _argc0 = 0;
4046 char _ptemp[128];
4047
4048 self = self;
4049 if(!PyArg_ParseTuple(args,"s:wxMenuItem_GetSubMenu",&_argc0))
4050 return NULL;
4051 if (_argc0) {
4052 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuItem_p")) {
4053 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetSubMenu. Expected _wxMenuItem_p.");
4054 return NULL;
4055 }
4056 }
4057 _result = (wxMenu *)wxMenuItem_GetSubMenu(_arg0);
4058 SWIG_MakePtr(_ptemp, (char *) _result,"_wxMenu_p");
4059 _resultobj = Py_BuildValue("s",_ptemp);
4060 return _resultobj;
4061 }
4062
4063 #define wxMenuItem_SetName(_swigobj,_swigarg0) (_swigobj->SetName(_swigarg0))
4064 static PyObject *_wrap_wxMenuItem_SetName(PyObject *self, PyObject *args) {
4065 PyObject * _resultobj;
4066 wxMenuItem * _arg0;
4067 wxString * _arg1;
4068 char * _argc0 = 0;
4069 PyObject * _obj1 = 0;
4070
4071 self = self;
4072 if(!PyArg_ParseTuple(args,"sO:wxMenuItem_SetName",&_argc0,&_obj1))
4073 return NULL;
4074 if (_argc0) {
4075 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuItem_p")) {
4076 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetName. Expected _wxMenuItem_p.");
4077 return NULL;
4078 }
4079 }
4080 {
4081 if (!PyString_Check(_obj1)) {
4082 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
4083 return NULL;
4084 }
4085 _arg1 = new wxString(PyString_AsString(_obj1));
4086 }
4087 wxMenuItem_SetName(_arg0,*_arg1);
4088 Py_INCREF(Py_None);
4089 _resultobj = Py_None;
4090 {
4091 if (_obj1)
4092 delete _arg1;
4093 }
4094 return _resultobj;
4095 }
4096
4097 #define wxMenuItem_DeleteSubMenu(_swigobj) (_swigobj->DeleteSubMenu())
4098 static PyObject *_wrap_wxMenuItem_DeleteSubMenu(PyObject *self, PyObject *args) {
4099 PyObject * _resultobj;
4100 wxMenuItem * _arg0;
4101 char * _argc0 = 0;
4102
4103 self = self;
4104 if(!PyArg_ParseTuple(args,"s:wxMenuItem_DeleteSubMenu",&_argc0))
4105 return NULL;
4106 if (_argc0) {
4107 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuItem_p")) {
4108 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_DeleteSubMenu. Expected _wxMenuItem_p.");
4109 return NULL;
4110 }
4111 }
4112 wxMenuItem_DeleteSubMenu(_arg0);
4113 Py_INCREF(Py_None);
4114 _resultobj = Py_None;
4115 return _resultobj;
4116 }
4117
4118 #define wxMenuItem_GetName(_swigobj) (_swigobj->GetName())
4119 static PyObject *_wrap_wxMenuItem_GetName(PyObject *self, PyObject *args) {
4120 PyObject * _resultobj;
4121 wxString * _result;
4122 wxMenuItem * _arg0;
4123 char * _argc0 = 0;
4124
4125 self = self;
4126 if(!PyArg_ParseTuple(args,"s:wxMenuItem_GetName",&_argc0))
4127 return NULL;
4128 if (_argc0) {
4129 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuItem_p")) {
4130 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetName. Expected _wxMenuItem_p.");
4131 return NULL;
4132 }
4133 }
4134 const wxString & _result_ref = wxMenuItem_GetName(_arg0);
4135 _result = (wxString *) &_result_ref;
4136 {
4137 _resultobj = PyString_FromString(WXSTRINGCAST (*_result));
4138 }
4139 return _resultobj;
4140 }
4141
4142 #define wxMenuItem_GetHelp(_swigobj) (_swigobj->GetHelp())
4143 static PyObject *_wrap_wxMenuItem_GetHelp(PyObject *self, PyObject *args) {
4144 PyObject * _resultobj;
4145 wxString * _result;
4146 wxMenuItem * _arg0;
4147 char * _argc0 = 0;
4148
4149 self = self;
4150 if(!PyArg_ParseTuple(args,"s:wxMenuItem_GetHelp",&_argc0))
4151 return NULL;
4152 if (_argc0) {
4153 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuItem_p")) {
4154 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_GetHelp. Expected _wxMenuItem_p.");
4155 return NULL;
4156 }
4157 }
4158 const wxString & _result_ref = wxMenuItem_GetHelp(_arg0);
4159 _result = (wxString *) &_result_ref;
4160 {
4161 _resultobj = PyString_FromString(WXSTRINGCAST (*_result));
4162 }
4163 return _resultobj;
4164 }
4165
4166 #define wxMenuItem_SetHelp(_swigobj,_swigarg0) (_swigobj->SetHelp(_swigarg0))
4167 static PyObject *_wrap_wxMenuItem_SetHelp(PyObject *self, PyObject *args) {
4168 PyObject * _resultobj;
4169 wxMenuItem * _arg0;
4170 wxString * _arg1;
4171 char * _argc0 = 0;
4172 PyObject * _obj1 = 0;
4173
4174 self = self;
4175 if(!PyArg_ParseTuple(args,"sO:wxMenuItem_SetHelp",&_argc0,&_obj1))
4176 return NULL;
4177 if (_argc0) {
4178 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuItem_p")) {
4179 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_SetHelp. Expected _wxMenuItem_p.");
4180 return NULL;
4181 }
4182 }
4183 {
4184 if (!PyString_Check(_obj1)) {
4185 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
4186 return NULL;
4187 }
4188 _arg1 = new wxString(PyString_AsString(_obj1));
4189 }
4190 wxMenuItem_SetHelp(_arg0,*_arg1);
4191 Py_INCREF(Py_None);
4192 _resultobj = Py_None;
4193 {
4194 if (_obj1)
4195 delete _arg1;
4196 }
4197 return _resultobj;
4198 }
4199
4200 #define wxMenuItem_Enable(_swigobj,_swigarg0) (_swigobj->Enable(_swigarg0))
4201 static PyObject *_wrap_wxMenuItem_Enable(PyObject *self, PyObject *args) {
4202 PyObject * _resultobj;
4203 wxMenuItem * _arg0;
4204 bool _arg1 = (1);
4205 char * _argc0 = 0;
4206 int tempbool1;
4207
4208 self = self;
4209 if(!PyArg_ParseTuple(args,"s|i:wxMenuItem_Enable",&_argc0,&tempbool1))
4210 return NULL;
4211 if (_argc0) {
4212 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuItem_p")) {
4213 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_Enable. Expected _wxMenuItem_p.");
4214 return NULL;
4215 }
4216 }
4217 _arg1 = (bool ) tempbool1;
4218 wxMenuItem_Enable(_arg0,_arg1);
4219 Py_INCREF(Py_None);
4220 _resultobj = Py_None;
4221 return _resultobj;
4222 }
4223
4224 #define wxMenuItem_Check(_swigobj,_swigarg0) (_swigobj->Check(_swigarg0))
4225 static PyObject *_wrap_wxMenuItem_Check(PyObject *self, PyObject *args) {
4226 PyObject * _resultobj;
4227 wxMenuItem * _arg0;
4228 bool _arg1 = (1);
4229 char * _argc0 = 0;
4230 int tempbool1;
4231
4232 self = self;
4233 if(!PyArg_ParseTuple(args,"s|i:wxMenuItem_Check",&_argc0,&tempbool1))
4234 return NULL;
4235 if (_argc0) {
4236 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxMenuItem_p")) {
4237 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMenuItem_Check. Expected _wxMenuItem_p.");
4238 return NULL;
4239 }
4240 }
4241 _arg1 = (bool ) tempbool1;
4242 wxMenuItem_Check(_arg0,_arg1);
4243 Py_INCREF(Py_None);
4244 _resultobj = Py_None;
4245 return _resultobj;
4246 }
4247
4248 static PyMethodDef windowscMethods[] = {
4249 { "wxMenuItem_Check", _wrap_wxMenuItem_Check, 1 },
4250 { "wxMenuItem_Enable", _wrap_wxMenuItem_Enable, 1 },
4251 { "wxMenuItem_SetHelp", _wrap_wxMenuItem_SetHelp, 1 },
4252 { "wxMenuItem_GetHelp", _wrap_wxMenuItem_GetHelp, 1 },
4253 { "wxMenuItem_GetName", _wrap_wxMenuItem_GetName, 1 },
4254 { "wxMenuItem_DeleteSubMenu", _wrap_wxMenuItem_DeleteSubMenu, 1 },
4255 { "wxMenuItem_SetName", _wrap_wxMenuItem_SetName, 1 },
4256 { "wxMenuItem_GetSubMenu", _wrap_wxMenuItem_GetSubMenu, 1 },
4257 { "wxMenuItem_GetId", _wrap_wxMenuItem_GetId, 1 },
4258 { "wxMenuItem_IsCheckable", _wrap_wxMenuItem_IsCheckable, 1 },
4259 { "wxMenuItem_IsChecked", _wrap_wxMenuItem_IsChecked, 1 },
4260 { "wxMenuItem_IsEnabled", _wrap_wxMenuItem_IsEnabled, 1 },
4261 { "wxMenuItem_IsSeparator", _wrap_wxMenuItem_IsSeparator, 1 },
4262 { "wxMenuBar_GetMenu", _wrap_wxMenuBar_GetMenu, 1 },
4263 { "wxMenuBar_GetMenuCount", _wrap_wxMenuBar_GetMenuCount, 1 },
4264 { "wxMenuBar_SetLabelTop", _wrap_wxMenuBar_SetLabelTop, 1 },
4265 { "wxMenuBar_GetLabelTop", _wrap_wxMenuBar_GetLabelTop, 1 },
4266 { "wxMenuBar_SetLabel", _wrap_wxMenuBar_SetLabel, 1 },
4267 { "wxMenuBar_SetHelpString", _wrap_wxMenuBar_SetHelpString, 1 },
4268 { "wxMenuBar_GetLabel", _wrap_wxMenuBar_GetLabel, 1 },
4269 { "wxMenuBar_GetHelpString", _wrap_wxMenuBar_GetHelpString, 1 },
4270 { "wxMenuBar_EnableTop", _wrap_wxMenuBar_EnableTop, 1 },
4271 { "wxMenuBar_FindItemForId", _wrap_wxMenuBar_FindItemForId, 1 },
4272 { "wxMenuBar_FindMenuItem", _wrap_wxMenuBar_FindMenuItem, 1 },
4273 { "wxMenuBar_Enabled", _wrap_wxMenuBar_Enabled, 1 },
4274 { "wxMenuBar_Enable", _wrap_wxMenuBar_Enable, 1 },
4275 { "wxMenuBar_Checked", _wrap_wxMenuBar_Checked, 1 },
4276 { "wxMenuBar_Check", _wrap_wxMenuBar_Check, 1 },
4277 { "wxMenuBar_Append", _wrap_wxMenuBar_Append, 1 },
4278 { "new_wxMenuBar", _wrap_new_wxMenuBar, 1 },
4279 { "delete_wxPyMenu", _wrap_delete_wxPyMenu, 1 },
4280 { "new_wxPyMenu", _wrap_new_wxPyMenu, 1 },
4281 { "wxMenu_SetLabel", _wrap_wxMenu_SetLabel, 1 },
4282 { "wxMenu_IsEnabled", _wrap_wxMenu_IsEnabled, 1 },
4283 { "wxMenu_IsChecked", _wrap_wxMenu_IsChecked, 1 },
4284 { "wxMenu_SetHelpString", _wrap_wxMenu_SetHelpString, 1 },
4285 { "wxMenu_GetLabel", _wrap_wxMenu_GetLabel, 1 },
4286 { "wxMenu_GetHelpString", _wrap_wxMenu_GetHelpString, 1 },
4287 { "wxMenu_FindItemForId", _wrap_wxMenu_FindItemForId, 1 },
4288 { "wxMenu_SetTitle", _wrap_wxMenu_SetTitle, 1 },
4289 { "wxMenu_GetTitle", _wrap_wxMenu_GetTitle, 1 },
4290 { "wxMenu_FindItem", _wrap_wxMenu_FindItem, 1 },
4291 { "wxMenu_Enable", _wrap_wxMenu_Enable, 1 },
4292 { "wxMenu_Check", _wrap_wxMenu_Check, 1 },
4293 { "wxMenu_Break", _wrap_wxMenu_Break, 1 },
4294 { "wxMenu_AppendSeparator", _wrap_wxMenu_AppendSeparator, 1 },
4295 { "wxMenu_AppendMenu", _wrap_wxMenu_AppendMenu, 1 },
4296 { "wxMenu_Append", _wrap_wxMenu_Append, 1 },
4297 { "new_wxMenu", _wrap_new_wxMenu, 1 },
4298 { "wxScrolledWindow_ViewStart", _wrap_wxScrolledWindow_ViewStart, 1 },
4299 { "wxScrolledWindow_SetScrollbars", _wrap_wxScrolledWindow_SetScrollbars, 1 },
4300 { "wxScrolledWindow_Scroll", _wrap_wxScrolledWindow_Scroll, 1 },
4301 { "wxScrolledWindow_PrepareDC", _wrap_wxScrolledWindow_PrepareDC, 1 },
4302 { "wxScrolledWindow_IsRetained", _wrap_wxScrolledWindow_IsRetained, 1 },
4303 { "wxScrolledWindow_GetVirtualSize", _wrap_wxScrolledWindow_GetVirtualSize, 1 },
4304 { "wxScrolledWindow_GetScrollPixelsPerUnit", _wrap_wxScrolledWindow_GetScrollPixelsPerUnit, 1 },
4305 { "wxScrolledWindow_EnableScrolling", _wrap_wxScrolledWindow_EnableScrolling, 1 },
4306 { "new_wxScrolledWindow", _wrap_new_wxScrolledWindow, 1 },
4307 { "wxDialog_ShowModal", _wrap_wxDialog_ShowModal, 1 },
4308 { "wxDialog_Show", _wrap_wxDialog_Show, 1 },
4309 { "wxDialog_SetTitle", _wrap_wxDialog_SetTitle, 1 },
4310 { "wxDialog_IsModal", _wrap_wxDialog_IsModal, 1 },
4311 { "wxDialog_SetModal", _wrap_wxDialog_SetModal, 1 },
4312 { "wxDialog_IsIconized", _wrap_wxDialog_IsIconized, 1 },
4313 { "wxDialog_Iconize", _wrap_wxDialog_Iconize, 1 },
4314 { "wxDialog_GetTitle", _wrap_wxDialog_GetTitle, 1 },
4315 { "wxDialog_EndModal", _wrap_wxDialog_EndModal, 1 },
4316 { "wxDialog_Centre", _wrap_wxDialog_Centre, 1 },
4317 { "new_wxDialog", _wrap_new_wxDialog, 1 },
4318 { "wxPanel_InitDialog", _wrap_wxPanel_InitDialog, 1 },
4319 { "new_wxPanel", _wrap_new_wxPanel, 1 },
4320 { "wxWindow_WarpPointer", _wrap_wxWindow_WarpPointer, 1 },
4321 { "wxWindow_Validate", _wrap_wxWindow_Validate, 1 },
4322 { "wxWindow_TransferDataToWindow", _wrap_wxWindow_TransferDataToWindow, 1 },
4323 { "wxWindow_TransferDataFromWindow", _wrap_wxWindow_TransferDataFromWindow, 1 },
4324 { "wxWindow_Show", _wrap_wxWindow_Show, 1 },
4325 { "wxWindow_SetTitle", _wrap_wxWindow_SetTitle, 1 },
4326 { "wxWindow_SetCursor", _wrap_wxWindow_SetCursor, 1 },
4327 { "wxWindow_SetClientSize", _wrap_wxWindow_SetClientSize, 1 },
4328 { "wxWindow_SetSizeHints", _wrap_wxWindow_SetSizeHints, 1 },
4329 { "wxWindow_SetPosition", _wrap_wxWindow_SetPosition, 1 },
4330 { "wxWindow_SetSize", _wrap_wxWindow_SetSize, 1 },
4331 { "wxWindow_SetDimensions", _wrap_wxWindow_SetDimensions, 1 },
4332 { "wxWindow_SetScrollPos", _wrap_wxWindow_SetScrollPos, 1 },
4333 { "wxWindow_SetScrollbar", _wrap_wxWindow_SetScrollbar, 1 },
4334 { "wxWindow_SetReturnCode", _wrap_wxWindow_SetReturnCode, 1 },
4335 { "wxWindow_SetName", _wrap_wxWindow_SetName, 1 },
4336 { "wxWindow_SetId", _wrap_wxWindow_SetId, 1 },
4337 { "wxWindow_SetForegroundColour", _wrap_wxWindow_SetForegroundColour, 1 },
4338 { "wxWindow_SetFont", _wrap_wxWindow_SetFont, 1 },
4339 { "wxWindow_SetFocus", _wrap_wxWindow_SetFocus, 1 },
4340 { "wxWindow_SetDoubleClick", _wrap_wxWindow_SetDoubleClick, 1 },
4341 { "wxWindow_SetConstraints", _wrap_wxWindow_SetConstraints, 1 },
4342 { "wxWindow_SetBackgroundColour", _wrap_wxWindow_SetBackgroundColour, 1 },
4343 { "wxWindow_SetAutoLayout", _wrap_wxWindow_SetAutoLayout, 1 },
4344 { "wxWindow_ScrollWindow", _wrap_wxWindow_ScrollWindow, 1 },
4345 { "wxWindow_ScreenToClient", _wrap_wxWindow_ScreenToClient, 1 },
4346 { "wxWindow_ReleaseMouse", _wrap_wxWindow_ReleaseMouse, 1 },
4347 { "wxWindow_Refresh", _wrap_wxWindow_Refresh, 1 },
4348 { "wxWindow_Raise", _wrap_wxWindow_Raise, 1 },
4349 { "wxWindow_PopupMenu", _wrap_wxWindow_PopupMenu, 1 },
4350 { "wxWindow_Move", _wrap_wxWindow_Move, 1 },
4351 { "wxWindow_MakeModal", _wrap_wxWindow_MakeModal, 1 },
4352 { "wxWindow_Lower", _wrap_wxWindow_Lower, 1 },
4353 { "wxWindow_LoadFromResource", _wrap_wxWindow_LoadFromResource, 1 },
4354 { "wxWindow_Layout", _wrap_wxWindow_Layout, 1 },
4355 { "wxWindow_IsShown", _wrap_wxWindow_IsShown, 1 },
4356 { "wxWindow_IsRetained", _wrap_wxWindow_IsRetained, 1 },
4357 { "wxWindow_IsEnabled", _wrap_wxWindow_IsEnabled, 1 },
4358 { "wxWindow_InitDialog", _wrap_wxWindow_InitDialog, 1 },
4359 { "wxWindow_GetWindowStyleFlag", _wrap_wxWindow_GetWindowStyleFlag, 1 },
4360 { "wxWindow_GetTitle", _wrap_wxWindow_GetTitle, 1 },
4361 { "wxWindow_GetTextExtent", _wrap_wxWindow_GetTextExtent, 1 },
4362 { "wxWindow_GetSize", _wrap_wxWindow_GetSize, 1 },
4363 { "wxWindow_GetScrollRange", _wrap_wxWindow_GetScrollRange, 1 },
4364 { "wxWindow_GetScrollPos", _wrap_wxWindow_GetScrollPos, 1 },
4365 { "wxWindow_GetScrollThumb", _wrap_wxWindow_GetScrollThumb, 1 },
4366 { "wxWindow_GetReturnCode", _wrap_wxWindow_GetReturnCode, 1 },
4367 { "wxWindow_GetParent", _wrap_wxWindow_GetParent, 1 },
4368 { "wxWindow_GetName", _wrap_wxWindow_GetName, 1 },
4369 { "wxWindow_GetLabel", _wrap_wxWindow_GetLabel, 1 },
4370 { "wxWindow_GetPosition", _wrap_wxWindow_GetPosition, 1 },
4371 { "wxWindow_GetId", _wrap_wxWindow_GetId, 1 },
4372 { "wxWindow_GetGrandParent", _wrap_wxWindow_GetGrandParent, 1 },
4373 { "wxWindow_GetForegroundColour", _wrap_wxWindow_GetForegroundColour, 1 },
4374 { "wxWindow_GetFont", _wrap_wxWindow_GetFont, 1 },
4375 { "wxWindow_GetDefaultItem", _wrap_wxWindow_GetDefaultItem, 1 },
4376 { "wxWindow_GetConstraints", _wrap_wxWindow_GetConstraints, 1 },
4377 { "wxWindow_GetClientSize", _wrap_wxWindow_GetClientSize, 1 },
4378 { "wxWindow_GetCharWidth", _wrap_wxWindow_GetCharWidth, 1 },
4379 { "wxWindow_GetCharHeight", _wrap_wxWindow_GetCharHeight, 1 },
4380 { "wxWindow_GetBackgroundColour", _wrap_wxWindow_GetBackgroundColour, 1 },
4381 { "wxWindow_Fit", _wrap_wxWindow_Fit, 1 },
4382 { "wxWindow_FindWindowByName", _wrap_wxWindow_FindWindowByName, 1 },
4383 { "wxWindow_FindWindowByID", _wrap_wxWindow_FindWindowByID, 1 },
4384 { "wxWindow_Enable", _wrap_wxWindow_Enable, 1 },
4385 { "wxWindow_DragAcceptFiles", _wrap_wxWindow_DragAcceptFiles, 1 },
4386 { "wxWindow_DestroyChildren", _wrap_wxWindow_DestroyChildren, 1 },
4387 { "wxWindow_Destroy", _wrap_wxWindow_Destroy, 1 },
4388 { "wxWindow_Close", _wrap_wxWindow_Close, 1 },
4389 { "wxWindow_ClientToScreen", _wrap_wxWindow_ClientToScreen, 1 },
4390 { "wxWindow_Centre", _wrap_wxWindow_Centre, 1 },
4391 { "wxWindow_Center", _wrap_wxWindow_Center, 1 },
4392 { "wxWindow_CaptureMouse", _wrap_wxWindow_CaptureMouse, 1 },
4393 { "new_wxWindow", _wrap_new_wxWindow, 1 },
4394 { "wxEvtHandler_Connect", _wrap_wxEvtHandler_Connect, 1 },
4395 { "wxWindow_FindFocus", _wrap_wxWindow_FindFocus, 1 },
4396 { NULL, NULL }
4397 };
4398 static PyObject *SWIG_globals;
4399 #ifdef __cplusplus
4400 extern "C"
4401 #endif
4402 SWIGEXPORT(void,initwindowsc)() {
4403 PyObject *m, *d;
4404 SWIG_globals = SWIG_newvarlink();
4405 m = Py_InitModule("windowsc", windowscMethods);
4406 d = PyModule_GetDict(m);
4407 /*
4408 * These are the pointer type-equivalency mappings.
4409 * (Used by the SWIG pointer type-checker).
4410 */
4411 SWIG_RegisterMapping("_wxAcceleratorTable","_class_wxAcceleratorTable",0);
4412 SWIG_RegisterMapping("_signed_long","_long",0);
4413 SWIG_RegisterMapping("_class_wxMenuBar","_wxMenuBar",0);
4414 SWIG_RegisterMapping("_class_wxEvtHandler","_class_wxMenuBar",SwigwxMenuBarTowxEvtHandler);
4415 SWIG_RegisterMapping("_class_wxEvtHandler","_wxMenuBar",SwigwxMenuBarTowxEvtHandler);
4416 SWIG_RegisterMapping("_class_wxEvtHandler","_class_wxPyMenu",SwigwxPyMenuTowxEvtHandler);
4417 SWIG_RegisterMapping("_class_wxEvtHandler","_wxPyMenu",SwigwxPyMenuTowxEvtHandler);
4418 SWIG_RegisterMapping("_class_wxEvtHandler","_class_wxMenu",SwigwxMenuTowxEvtHandler);
4419 SWIG_RegisterMapping("_class_wxEvtHandler","_wxMenu",SwigwxMenuTowxEvtHandler);
4420 SWIG_RegisterMapping("_class_wxEvtHandler","_class_wxScrolledWindow",SwigwxScrolledWindowTowxEvtHandler);
4421 SWIG_RegisterMapping("_class_wxEvtHandler","_wxScrolledWindow",SwigwxScrolledWindowTowxEvtHandler);
4422 SWIG_RegisterMapping("_class_wxEvtHandler","_class_wxDialog",SwigwxDialogTowxEvtHandler);
4423 SWIG_RegisterMapping("_class_wxEvtHandler","_wxDialog",SwigwxDialogTowxEvtHandler);
4424 SWIG_RegisterMapping("_class_wxEvtHandler","_class_wxPanel",SwigwxPanelTowxEvtHandler);
4425 SWIG_RegisterMapping("_class_wxEvtHandler","_wxPanel",SwigwxPanelTowxEvtHandler);
4426 SWIG_RegisterMapping("_class_wxEvtHandler","_class_wxWindow",SwigwxWindowTowxEvtHandler);
4427 SWIG_RegisterMapping("_class_wxEvtHandler","_wxWindow",SwigwxWindowTowxEvtHandler);
4428 SWIG_RegisterMapping("_class_wxEvtHandler","_wxEvtHandler",0);
4429 SWIG_RegisterMapping("_wxIndividualLayoutConstraint","_class_wxIndividualLayoutConstraint",0);
4430 SWIG_RegisterMapping("_wxCursor","_class_wxCursor",0);
4431 SWIG_RegisterMapping("_wxMask","_class_wxMask",0);
4432 SWIG_RegisterMapping("_wxPyMenu","_class_wxPyMenu",0);
4433 SWIG_RegisterMapping("_wxPen","_class_wxPen",0);
4434 SWIG_RegisterMapping("_byte","_unsigned_char",0);
4435 SWIG_RegisterMapping("_long","_wxDash",0);
4436 SWIG_RegisterMapping("_long","_unsigned_long",0);
4437 SWIG_RegisterMapping("_long","_signed_long",0);
4438 SWIG_RegisterMapping("_class_wxAcceleratorTable","_wxAcceleratorTable",0);
4439 SWIG_RegisterMapping("_wxDC","_class_wxDC",0);
4440 SWIG_RegisterMapping("_class_wxRealPoint","_wxRealPoint",0);
4441 SWIG_RegisterMapping("_wxPrinterDC","_class_wxPrinterDC",0);
4442 SWIG_RegisterMapping("_class_wxMenuItem","_wxMenuItem",0);
4443 SWIG_RegisterMapping("_wxPanel","_class_wxDialog",SwigwxDialogTowxPanel);
4444 SWIG_RegisterMapping("_wxPanel","_wxDialog",SwigwxDialogTowxPanel);
4445 SWIG_RegisterMapping("_wxPanel","_class_wxPanel",0);
4446 SWIG_RegisterMapping("_class_wxMask","_wxMask",0);
4447 SWIG_RegisterMapping("_wxColour","_class_wxColour",0);
4448 SWIG_RegisterMapping("_class_wxDialog","_wxDialog",0);
4449 SWIG_RegisterMapping("_wxBrush","_class_wxBrush",0);
4450 SWIG_RegisterMapping("_uint","_unsigned_int",0);
4451 SWIG_RegisterMapping("_uint","_int",0);
4452 SWIG_RegisterMapping("_uint","_wxWindowID",0);
4453 SWIG_RegisterMapping("_wxRect","_class_wxRect",0);
4454 SWIG_RegisterMapping("_wxPoint","_class_wxPoint",0);
4455 SWIG_RegisterMapping("_wxBitmap","_class_wxBitmap",0);
4456 SWIG_RegisterMapping("_wxPyTimer","_class_wxPyTimer",0);
4457 SWIG_RegisterMapping("_wxWindowDC","_class_wxWindowDC",0);
4458 SWIG_RegisterMapping("_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0);
4459 SWIG_RegisterMapping("_EBool","_signed_int",0);
4460 SWIG_RegisterMapping("_EBool","_int",0);
4461 SWIG_RegisterMapping("_EBool","_wxWindowID",0);
4462 SWIG_RegisterMapping("_wxFont","_class_wxFont",0);
4463 SWIG_RegisterMapping("_unsigned_long","_wxDash",0);
4464 SWIG_RegisterMapping("_unsigned_long","_long",0);
4465 SWIG_RegisterMapping("_class_wxRect","_wxRect",0);
4466 SWIG_RegisterMapping("_class_wxDC","_wxDC",0);
4467 SWIG_RegisterMapping("_class_wxPyTimer","_wxPyTimer",0);
4468 SWIG_RegisterMapping("_wxAcceleratorEntry","_class_wxAcceleratorEntry",0);
4469 SWIG_RegisterMapping("_class_wxPanel","_class_wxDialog",SwigwxDialogTowxPanel);
4470 SWIG_RegisterMapping("_class_wxPanel","_wxDialog",SwigwxDialogTowxPanel);
4471 SWIG_RegisterMapping("_class_wxPanel","_wxPanel",0);
4472 SWIG_RegisterMapping("_signed_int","_EBool",0);
4473 SWIG_RegisterMapping("_signed_int","_wxWindowID",0);
4474 SWIG_RegisterMapping("_signed_int","_int",0);
4475 SWIG_RegisterMapping("_wxLayoutConstraints","_class_wxLayoutConstraints",0);
4476 SWIG_RegisterMapping("_wxMetaFileDC","_class_wxMetaFileDC",0);
4477 SWIG_RegisterMapping("_wxMenu","_class_wxPyMenu",SwigwxPyMenuTowxMenu);
4478 SWIG_RegisterMapping("_wxMenu","_wxPyMenu",SwigwxPyMenuTowxMenu);
4479 SWIG_RegisterMapping("_wxMenu","_class_wxMenu",0);
4480 SWIG_RegisterMapping("_wxScreenDC","_class_wxScreenDC",0);
4481 SWIG_RegisterMapping("_WXTYPE","_short",0);
4482 SWIG_RegisterMapping("_WXTYPE","_signed_short",0);
4483 SWIG_RegisterMapping("_WXTYPE","_unsigned_short",0);
4484 SWIG_RegisterMapping("_class_wxBrush","_wxBrush",0);
4485 SWIG_RegisterMapping("_unsigned_short","_WXTYPE",0);
4486 SWIG_RegisterMapping("_unsigned_short","_short",0);
4487 SWIG_RegisterMapping("_class_wxWindow","_class_wxScrolledWindow",SwigwxScrolledWindowTowxWindow);
4488 SWIG_RegisterMapping("_class_wxWindow","_wxScrolledWindow",SwigwxScrolledWindowTowxWindow);
4489 SWIG_RegisterMapping("_class_wxWindow","_class_wxDialog",SwigwxDialogTowxWindow);
4490 SWIG_RegisterMapping("_class_wxWindow","_wxDialog",SwigwxDialogTowxWindow);
4491 SWIG_RegisterMapping("_class_wxWindow","_class_wxPanel",SwigwxPanelTowxWindow);
4492 SWIG_RegisterMapping("_class_wxWindow","_wxPanel",SwigwxPanelTowxWindow);
4493 SWIG_RegisterMapping("_class_wxWindow","_wxWindow",0);
4494 SWIG_RegisterMapping("_class_wxFont","_wxFont",0);
4495 SWIG_RegisterMapping("_wxClientDC","_class_wxClientDC",0);
4496 SWIG_RegisterMapping("_class_wxPoint","_wxPoint",0);
4497 SWIG_RegisterMapping("_wxRealPoint","_class_wxRealPoint",0);
4498 SWIG_RegisterMapping("_signed_short","_WXTYPE",0);
4499 SWIG_RegisterMapping("_signed_short","_short",0);
4500 SWIG_RegisterMapping("_wxMemoryDC","_class_wxMemoryDC",0);
4501 SWIG_RegisterMapping("_wxPaintDC","_class_wxPaintDC",0);
4502 SWIG_RegisterMapping("_class_wxWindowDC","_wxWindowDC",0);
4503 SWIG_RegisterMapping("_class_wxAcceleratorEntry","_wxAcceleratorEntry",0);
4504 SWIG_RegisterMapping("_class_wxCursor","_wxCursor",0);
4505 SWIG_RegisterMapping("_wxScrolledWindow","_class_wxScrolledWindow",0);
4506 SWIG_RegisterMapping("_unsigned_char","_byte",0);
4507 SWIG_RegisterMapping("_class_wxMetaFileDC","_wxMetaFileDC",0);
4508 SWIG_RegisterMapping("_class_wxMenu","_class_wxPyMenu",SwigwxPyMenuTowxMenu);
4509 SWIG_RegisterMapping("_class_wxMenu","_wxPyMenu",SwigwxPyMenuTowxMenu);
4510 SWIG_RegisterMapping("_class_wxMenu","_wxMenu",0);
4511 SWIG_RegisterMapping("_unsigned_int","_uint",0);
4512 SWIG_RegisterMapping("_unsigned_int","_wxWindowID",0);
4513 SWIG_RegisterMapping("_unsigned_int","_int",0);
4514 SWIG_RegisterMapping("_wxIcon","_class_wxIcon",0);
4515 SWIG_RegisterMapping("_wxDialog","_class_wxDialog",0);
4516 SWIG_RegisterMapping("_class_wxPyMenu","_wxPyMenu",0);
4517 SWIG_RegisterMapping("_class_wxPen","_wxPen",0);
4518 SWIG_RegisterMapping("_short","_WXTYPE",0);
4519 SWIG_RegisterMapping("_short","_unsigned_short",0);
4520 SWIG_RegisterMapping("_short","_signed_short",0);
4521 SWIG_RegisterMapping("_wxWindowID","_EBool",0);
4522 SWIG_RegisterMapping("_wxWindowID","_uint",0);
4523 SWIG_RegisterMapping("_wxWindowID","_int",0);
4524 SWIG_RegisterMapping("_wxWindowID","_signed_int",0);
4525 SWIG_RegisterMapping("_wxWindowID","_unsigned_int",0);
4526 SWIG_RegisterMapping("_int","_EBool",0);
4527 SWIG_RegisterMapping("_int","_uint",0);
4528 SWIG_RegisterMapping("_int","_wxWindowID",0);
4529 SWIG_RegisterMapping("_int","_unsigned_int",0);
4530 SWIG_RegisterMapping("_int","_signed_int",0);
4531 SWIG_RegisterMapping("_wxSize","_class_wxSize",0);
4532 SWIG_RegisterMapping("_class_wxPrinterDC","_wxPrinterDC",0);
4533 SWIG_RegisterMapping("_class_wxPaintDC","_wxPaintDC",0);
4534 SWIG_RegisterMapping("_class_wxLayoutConstraints","_wxLayoutConstraints",0);
4535 SWIG_RegisterMapping("_class_wxIcon","_wxIcon",0);
4536 SWIG_RegisterMapping("_class_wxColour","_wxColour",0);
4537 SWIG_RegisterMapping("_class_wxScreenDC","_wxScreenDC",0);
4538 SWIG_RegisterMapping("_wxPalette","_class_wxPalette",0);
4539 SWIG_RegisterMapping("_class_wxClientDC","_wxClientDC",0);
4540 SWIG_RegisterMapping("_class_wxSize","_wxSize",0);
4541 SWIG_RegisterMapping("_class_wxBitmap","_wxBitmap",0);
4542 SWIG_RegisterMapping("_class_wxMemoryDC","_wxMemoryDC",0);
4543 SWIG_RegisterMapping("_wxMenuBar","_class_wxMenuBar",0);
4544 SWIG_RegisterMapping("_wxEvtHandler","_class_wxMenuBar",SwigwxMenuBarTowxEvtHandler);
4545 SWIG_RegisterMapping("_wxEvtHandler","_wxMenuBar",SwigwxMenuBarTowxEvtHandler);
4546 SWIG_RegisterMapping("_wxEvtHandler","_class_wxPyMenu",SwigwxPyMenuTowxEvtHandler);
4547 SWIG_RegisterMapping("_wxEvtHandler","_wxPyMenu",SwigwxPyMenuTowxEvtHandler);
4548 SWIG_RegisterMapping("_wxEvtHandler","_class_wxMenu",SwigwxMenuTowxEvtHandler);
4549 SWIG_RegisterMapping("_wxEvtHandler","_wxMenu",SwigwxMenuTowxEvtHandler);
4550 SWIG_RegisterMapping("_wxEvtHandler","_class_wxScrolledWindow",SwigwxScrolledWindowTowxEvtHandler);
4551 SWIG_RegisterMapping("_wxEvtHandler","_wxScrolledWindow",SwigwxScrolledWindowTowxEvtHandler);
4552 SWIG_RegisterMapping("_wxEvtHandler","_class_wxDialog",SwigwxDialogTowxEvtHandler);
4553 SWIG_RegisterMapping("_wxEvtHandler","_wxDialog",SwigwxDialogTowxEvtHandler);
4554 SWIG_RegisterMapping("_wxEvtHandler","_class_wxPanel",SwigwxPanelTowxEvtHandler);
4555 SWIG_RegisterMapping("_wxEvtHandler","_wxPanel",SwigwxPanelTowxEvtHandler);
4556 SWIG_RegisterMapping("_wxEvtHandler","_class_wxWindow",SwigwxWindowTowxEvtHandler);
4557 SWIG_RegisterMapping("_wxEvtHandler","_wxWindow",SwigwxWindowTowxEvtHandler);
4558 SWIG_RegisterMapping("_wxEvtHandler","_class_wxEvtHandler",0);
4559 SWIG_RegisterMapping("_wxMenuItem","_class_wxMenuItem",0);
4560 SWIG_RegisterMapping("_wxDash","_unsigned_long",0);
4561 SWIG_RegisterMapping("_wxDash","_long",0);
4562 SWIG_RegisterMapping("_class_wxScrolledWindow","_wxScrolledWindow",0);
4563 SWIG_RegisterMapping("_class_wxPalette","_wxPalette",0);
4564 SWIG_RegisterMapping("_wxWindow","_class_wxScrolledWindow",SwigwxScrolledWindowTowxWindow);
4565 SWIG_RegisterMapping("_wxWindow","_wxScrolledWindow",SwigwxScrolledWindowTowxWindow);
4566 SWIG_RegisterMapping("_wxWindow","_class_wxDialog",SwigwxDialogTowxWindow);
4567 SWIG_RegisterMapping("_wxWindow","_wxDialog",SwigwxDialogTowxWindow);
4568 SWIG_RegisterMapping("_wxWindow","_class_wxPanel",SwigwxPanelTowxWindow);
4569 SWIG_RegisterMapping("_wxWindow","_wxPanel",SwigwxPanelTowxWindow);
4570 SWIG_RegisterMapping("_wxWindow","_class_wxWindow",0);
4571 }