]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/msw/misc.cpp
updates for recent CVS changes
[wxWidgets.git] / wxPython / src / msw / misc.cpp
1 /*
2 * FILE : src/msw/misc.cpp
3 *
4 * This file was automatically generated by :
5 * Simplified Wrapper and Interface Generator (SWIG)
6 * Version 1.1 (Build 883)
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) __declspec(dllexport) a
28 # else
29 # if defined(__BORLANDC__)
30 # define SWIGEXPORT(a) a _export
31 # else
32 # define SWIGEXPORT(a) a
33 # endif
34 # endif
35 #else
36 # define SWIGEXPORT(a) a
37 #endif
38
39 #include "Python.h"
40
41 #ifdef __cplusplus
42 extern "C" {
43 #endif
44
45 extern void SWIG_MakePtr(char *, void *, char *);
46 extern void SWIG_RegisterMapping(char *, char *, void *(*)(void *));
47 extern char *SWIG_GetPtr(char *, void **, char *);
48 extern char *SWIG_GetPtrObj(PyObject *, void **, char *);
49 extern void SWIG_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *));
50 extern PyObject *SWIG_newvarlink(void);
51 #ifdef __cplusplus
52 }
53 #endif
54 #define SWIG_init initmiscc
55
56 #define SWIG_name "miscc"
57
58 #include "helpers.h"
59 #include <wx/resource.h>
60 #include <wx/tooltip.h>
61 #include <wx/busyinfo.h>
62
63
64 static PyObject* t_output_helper(PyObject* target, PyObject* o) {
65 PyObject* o2;
66 PyObject* o3;
67
68 if (!target) {
69 target = o;
70 } else if (target == Py_None) {
71 Py_DECREF(Py_None);
72 target = o;
73 } else {
74 if (!PyTuple_Check(target)) {
75 o2 = target;
76 target = PyTuple_New(1);
77 PyTuple_SetItem(target, 0, o2);
78 }
79 o3 = PyTuple_New(1);
80 PyTuple_SetItem(o3, 0, o);
81
82 o2 = target;
83 target = PySequence_Concat(o2, o3);
84 Py_DECREF(o2);
85 Py_DECREF(o3);
86 }
87 return target;
88 }
89
90 // Put some wx default wxChar* values into wxStrings.
91 static const wxString wxPyEmptyString(wxT(""));
92
93 PyObject* wxIntersectRect(wxRect* r1, wxRect* r2) {
94 wxRegion reg1(*r1);
95 wxRegion reg2(*r2);
96 wxRect dest(0,0,0,0);
97 PyObject* obj;
98
99 reg1.Intersect(reg2);
100 dest = reg1.GetBox();
101
102 if (dest != wxRect(0,0,0,0)) {
103 wxPyBeginBlockThreads();
104 wxRect* newRect = new wxRect(dest);
105 obj = wxPyConstructObject((void*)newRect, "wxRect");
106 PyObject* one = PyInt_FromLong(1);
107 PyObject_SetAttrString(obj, "thisown", one);
108 Py_DECREF(one);
109 wxPyEndBlockThreads();
110 return obj;
111 }
112 Py_INCREF(Py_None);
113 return Py_None;
114 }
115
116 wxString wxGetResource(const wxString& section, const wxString& entry,
117 const wxString& file = wxPyEmptyString) {
118 wxChar * retval;
119 wxGetResource(section, entry, &retval, file);
120 return retval;
121 }
122
123 #if 0 // we want to use the definition from the header, not the
124 // one SWIG will generate.
125 extern wxAcceleratorTable wxNullAcceleratorTable;
126
127 #endif
128 #ifdef __cplusplus
129 extern "C" {
130 #endif
131 static PyObject *_wrap_wxIntersectRect(PyObject *self, PyObject *args, PyObject *kwargs) {
132 PyObject * _resultobj;
133 PyObject * _result;
134 wxRect * _arg0;
135 wxRect * _arg1;
136 wxRect temp;
137 PyObject * _obj0 = 0;
138 wxRect temp0;
139 PyObject * _obj1 = 0;
140 char *_kwnames[] = { "r1","r2", NULL };
141
142 self = self;
143 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxIntersectRect",_kwnames,&_obj0,&_obj1))
144 return NULL;
145 {
146 _arg0 = &temp;
147 if (! wxRect_helper(_obj0, &_arg0))
148 return NULL;
149 }
150 {
151 _arg1 = &temp0;
152 if (! wxRect_helper(_obj1, &_arg1))
153 return NULL;
154 }
155 {
156 PyThreadState* __tstate = wxPyBeginAllowThreads();
157 _result = (PyObject *)wxIntersectRect(_arg0,_arg1);
158
159 wxPyEndAllowThreads(__tstate);
160 if (PyErr_Occurred()) return NULL;
161 }{
162 _resultobj = _result;
163 }
164 return _resultobj;
165 }
166
167 static PyObject *_wrap_wxNewId(PyObject *self, PyObject *args, PyObject *kwargs) {
168 PyObject * _resultobj;
169 long _result;
170 char *_kwnames[] = { NULL };
171
172 self = self;
173 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxNewId",_kwnames))
174 return NULL;
175 {
176 PyThreadState* __tstate = wxPyBeginAllowThreads();
177 _result = (long )wxNewId();
178
179 wxPyEndAllowThreads(__tstate);
180 if (PyErr_Occurred()) return NULL;
181 } _resultobj = Py_BuildValue("l",_result);
182 return _resultobj;
183 }
184
185 static PyObject *_wrap_wxRegisterId(PyObject *self, PyObject *args, PyObject *kwargs) {
186 PyObject * _resultobj;
187 long _arg0;
188 char *_kwnames[] = { "id", NULL };
189
190 self = self;
191 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"l:wxRegisterId",_kwnames,&_arg0))
192 return NULL;
193 {
194 PyThreadState* __tstate = wxPyBeginAllowThreads();
195 wxRegisterId(_arg0);
196
197 wxPyEndAllowThreads(__tstate);
198 if (PyErr_Occurred()) return NULL;
199 } Py_INCREF(Py_None);
200 _resultobj = Py_None;
201 return _resultobj;
202 }
203
204 static PyObject *_wrap_NewId(PyObject *self, PyObject *args, PyObject *kwargs) {
205 PyObject * _resultobj;
206 long _result;
207 char *_kwnames[] = { NULL };
208
209 self = self;
210 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":NewId",_kwnames))
211 return NULL;
212 {
213 PyThreadState* __tstate = wxPyBeginAllowThreads();
214 _result = (long )wxNewId();
215
216 wxPyEndAllowThreads(__tstate);
217 if (PyErr_Occurred()) return NULL;
218 } _resultobj = Py_BuildValue("l",_result);
219 return _resultobj;
220 }
221
222 static PyObject *_wrap_RegisterId(PyObject *self, PyObject *args, PyObject *kwargs) {
223 PyObject * _resultobj;
224 long _arg0;
225 char *_kwnames[] = { "id", NULL };
226
227 self = self;
228 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"l:RegisterId",_kwnames,&_arg0))
229 return NULL;
230 {
231 PyThreadState* __tstate = wxPyBeginAllowThreads();
232 wxRegisterId(_arg0);
233
234 wxPyEndAllowThreads(__tstate);
235 if (PyErr_Occurred()) return NULL;
236 } Py_INCREF(Py_None);
237 _resultobj = Py_None;
238 return _resultobj;
239 }
240
241 static PyObject *_wrap_wxGetCurrentId(PyObject *self, PyObject *args, PyObject *kwargs) {
242 PyObject * _resultobj;
243 long _result;
244 char *_kwnames[] = { NULL };
245
246 self = self;
247 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxGetCurrentId",_kwnames))
248 return NULL;
249 {
250 PyThreadState* __tstate = wxPyBeginAllowThreads();
251 _result = (long )wxGetCurrentId();
252
253 wxPyEndAllowThreads(__tstate);
254 if (PyErr_Occurred()) return NULL;
255 } _resultobj = Py_BuildValue("l",_result);
256 return _resultobj;
257 }
258
259 static PyObject *_wrap_wxBell(PyObject *self, PyObject *args, PyObject *kwargs) {
260 PyObject * _resultobj;
261 char *_kwnames[] = { NULL };
262
263 self = self;
264 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxBell",_kwnames))
265 return NULL;
266 {
267 PyThreadState* __tstate = wxPyBeginAllowThreads();
268 wxBell();
269
270 wxPyEndAllowThreads(__tstate);
271 if (PyErr_Occurred()) return NULL;
272 } Py_INCREF(Py_None);
273 _resultobj = Py_None;
274 return _resultobj;
275 }
276
277 static PyObject *_wrap_wxEndBusyCursor(PyObject *self, PyObject *args, PyObject *kwargs) {
278 PyObject * _resultobj;
279 char *_kwnames[] = { NULL };
280
281 self = self;
282 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxEndBusyCursor",_kwnames))
283 return NULL;
284 {
285 PyThreadState* __tstate = wxPyBeginAllowThreads();
286 wxEndBusyCursor();
287
288 wxPyEndAllowThreads(__tstate);
289 if (PyErr_Occurred()) return NULL;
290 } Py_INCREF(Py_None);
291 _resultobj = Py_None;
292 return _resultobj;
293 }
294
295 static PyObject *_wrap_wxGetElapsedTime(PyObject *self, PyObject *args, PyObject *kwargs) {
296 PyObject * _resultobj;
297 long _result;
298 bool _arg0 = (bool ) TRUE;
299 int tempbool0 = (int) TRUE;
300 char *_kwnames[] = { "resetTimer", NULL };
301
302 self = self;
303 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|i:wxGetElapsedTime",_kwnames,&tempbool0))
304 return NULL;
305 _arg0 = (bool ) tempbool0;
306 {
307 PyThreadState* __tstate = wxPyBeginAllowThreads();
308 _result = (long )wxGetElapsedTime(_arg0);
309
310 wxPyEndAllowThreads(__tstate);
311 if (PyErr_Occurred()) return NULL;
312 } _resultobj = Py_BuildValue("l",_result);
313 return _resultobj;
314 }
315
316 static PyObject *_wrap_wxGetFreeMemory(PyObject *self, PyObject *args, PyObject *kwargs) {
317 PyObject * _resultobj;
318 long _result;
319 char *_kwnames[] = { NULL };
320
321 self = self;
322 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxGetFreeMemory",_kwnames))
323 return NULL;
324 {
325 PyThreadState* __tstate = wxPyBeginAllowThreads();
326 _result = (long )wxGetFreeMemory();
327
328 wxPyEndAllowThreads(__tstate);
329 if (PyErr_Occurred()) return NULL;
330 } _resultobj = Py_BuildValue("l",_result);
331 return _resultobj;
332 }
333
334 static PyObject *_wrap_wxGetMousePosition(PyObject *self, PyObject *args, PyObject *kwargs) {
335 PyObject * _resultobj;
336 int * _arg0;
337 int temp;
338 int * _arg1;
339 int temp0;
340 char *_kwnames[] = { NULL };
341
342 self = self;
343 {
344 _arg0 = &temp;
345 }
346 {
347 _arg1 = &temp0;
348 }
349 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxGetMousePosition",_kwnames))
350 return NULL;
351 {
352 PyThreadState* __tstate = wxPyBeginAllowThreads();
353 wxGetMousePosition(_arg0,_arg1);
354
355 wxPyEndAllowThreads(__tstate);
356 if (PyErr_Occurred()) return NULL;
357 } Py_INCREF(Py_None);
358 _resultobj = Py_None;
359 {
360 PyObject *o;
361 o = PyInt_FromLong((long) (*_arg0));
362 _resultobj = t_output_helper(_resultobj, o);
363 }
364 {
365 PyObject *o;
366 o = PyInt_FromLong((long) (*_arg1));
367 _resultobj = t_output_helper(_resultobj, o);
368 }
369 return _resultobj;
370 }
371
372 static PyObject *_wrap_wxIsBusy(PyObject *self, PyObject *args, PyObject *kwargs) {
373 PyObject * _resultobj;
374 bool _result;
375 char *_kwnames[] = { NULL };
376
377 self = self;
378 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxIsBusy",_kwnames))
379 return NULL;
380 {
381 PyThreadState* __tstate = wxPyBeginAllowThreads();
382 _result = (bool )wxIsBusy();
383
384 wxPyEndAllowThreads(__tstate);
385 if (PyErr_Occurred()) return NULL;
386 } _resultobj = Py_BuildValue("i",_result);
387 return _resultobj;
388 }
389
390 static PyObject *_wrap_wxNow(PyObject *self, PyObject *args, PyObject *kwargs) {
391 PyObject * _resultobj;
392 wxString * _result;
393 char *_kwnames[] = { NULL };
394
395 self = self;
396 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxNow",_kwnames))
397 return NULL;
398 {
399 PyThreadState* __tstate = wxPyBeginAllowThreads();
400 _result = new wxString (wxNow());
401
402 wxPyEndAllowThreads(__tstate);
403 if (PyErr_Occurred()) return NULL;
404 }{
405 #if wxUSE_UNICODE
406 _resultobj = PyUnicode_FromUnicode(_result->c_str(), _result->Len());
407 #else
408 _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len());
409 #endif
410 }
411 {
412 delete _result;
413 }
414 return _resultobj;
415 }
416
417 static PyObject *_wrap_wxShell(PyObject *self, PyObject *args, PyObject *kwargs) {
418 PyObject * _resultobj;
419 bool _result;
420 wxString * _arg0 = (wxString *) &wxPyEmptyString;
421 PyObject * _obj0 = 0;
422 char *_kwnames[] = { "command", NULL };
423
424 self = self;
425 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|O:wxShell",_kwnames,&_obj0))
426 return NULL;
427 if (_obj0)
428 {
429 _arg0 = wxString_in_helper(_obj0);
430 if (_arg0 == NULL)
431 return NULL;
432 }
433 {
434 PyThreadState* __tstate = wxPyBeginAllowThreads();
435 _result = (bool )wxShell(*_arg0);
436
437 wxPyEndAllowThreads(__tstate);
438 if (PyErr_Occurred()) return NULL;
439 } _resultobj = Py_BuildValue("i",_result);
440 {
441 if (_obj0)
442 delete _arg0;
443 }
444 return _resultobj;
445 }
446
447 static PyObject *_wrap_wxStartTimer(PyObject *self, PyObject *args, PyObject *kwargs) {
448 PyObject * _resultobj;
449 char *_kwnames[] = { NULL };
450
451 self = self;
452 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxStartTimer",_kwnames))
453 return NULL;
454 {
455 PyThreadState* __tstate = wxPyBeginAllowThreads();
456 wxStartTimer();
457
458 wxPyEndAllowThreads(__tstate);
459 if (PyErr_Occurred()) return NULL;
460 } Py_INCREF(Py_None);
461 _resultobj = Py_None;
462 return _resultobj;
463 }
464
465 static PyObject *_wrap_wxGetOsVersion(PyObject *self, PyObject *args, PyObject *kwargs) {
466 PyObject * _resultobj;
467 int _result;
468 int * _arg0;
469 int temp;
470 int * _arg1;
471 int temp0;
472 char *_kwnames[] = { NULL };
473
474 self = self;
475 {
476 _arg0 = &temp;
477 }
478 {
479 _arg1 = &temp0;
480 }
481 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxGetOsVersion",_kwnames))
482 return NULL;
483 {
484 PyThreadState* __tstate = wxPyBeginAllowThreads();
485 _result = (int )wxGetOsVersion(_arg0,_arg1);
486
487 wxPyEndAllowThreads(__tstate);
488 if (PyErr_Occurred()) return NULL;
489 } _resultobj = Py_BuildValue("i",_result);
490 {
491 PyObject *o;
492 o = PyInt_FromLong((long) (*_arg0));
493 _resultobj = t_output_helper(_resultobj, o);
494 }
495 {
496 PyObject *o;
497 o = PyInt_FromLong((long) (*_arg1));
498 _resultobj = t_output_helper(_resultobj, o);
499 }
500 return _resultobj;
501 }
502
503 static PyObject *_wrap_wxGetOsDescription(PyObject *self, PyObject *args, PyObject *kwargs) {
504 PyObject * _resultobj;
505 wxString * _result;
506 char *_kwnames[] = { NULL };
507
508 self = self;
509 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxGetOsDescription",_kwnames))
510 return NULL;
511 {
512 PyThreadState* __tstate = wxPyBeginAllowThreads();
513 _result = new wxString (wxGetOsDescription());
514
515 wxPyEndAllowThreads(__tstate);
516 if (PyErr_Occurred()) return NULL;
517 }{
518 #if wxUSE_UNICODE
519 _resultobj = PyUnicode_FromUnicode(_result->c_str(), _result->Len());
520 #else
521 _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len());
522 #endif
523 }
524 {
525 delete _result;
526 }
527 return _resultobj;
528 }
529
530 static PyObject *_wrap_wxShutdown(PyObject *self, PyObject *args, PyObject *kwargs) {
531 PyObject * _resultobj;
532 bool _result;
533 wxShutdownFlags _arg0;
534 char *_kwnames[] = { "wFlags", NULL };
535
536 self = self;
537 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"i:wxShutdown",_kwnames,&_arg0))
538 return NULL;
539 {
540 PyThreadState* __tstate = wxPyBeginAllowThreads();
541 _result = (bool )wxShutdown(_arg0);
542
543 wxPyEndAllowThreads(__tstate);
544 if (PyErr_Occurred()) return NULL;
545 } _resultobj = Py_BuildValue("i",_result);
546 return _resultobj;
547 }
548
549 static PyObject *_wrap_wxSleep(PyObject *self, PyObject *args, PyObject *kwargs) {
550 PyObject * _resultobj;
551 int _arg0;
552 char *_kwnames[] = { "secs", NULL };
553
554 self = self;
555 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"i:wxSleep",_kwnames,&_arg0))
556 return NULL;
557 {
558 PyThreadState* __tstate = wxPyBeginAllowThreads();
559 wxSleep(_arg0);
560
561 wxPyEndAllowThreads(__tstate);
562 if (PyErr_Occurred()) return NULL;
563 } Py_INCREF(Py_None);
564 _resultobj = Py_None;
565 return _resultobj;
566 }
567
568 static PyObject *_wrap_wxUsleep(PyObject *self, PyObject *args, PyObject *kwargs) {
569 PyObject * _resultobj;
570 unsigned long _arg0;
571 char *_kwnames[] = { "milliseconds", NULL };
572
573 self = self;
574 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"l:wxUsleep",_kwnames,&_arg0))
575 return NULL;
576 {
577 PyThreadState* __tstate = wxPyBeginAllowThreads();
578 wxUsleep(_arg0);
579
580 wxPyEndAllowThreads(__tstate);
581 if (PyErr_Occurred()) return NULL;
582 } Py_INCREF(Py_None);
583 _resultobj = Py_None;
584 return _resultobj;
585 }
586
587 static PyObject *_wrap_wxYield(PyObject *self, PyObject *args, PyObject *kwargs) {
588 PyObject * _resultobj;
589 bool _result;
590 char *_kwnames[] = { NULL };
591
592 self = self;
593 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxYield",_kwnames))
594 return NULL;
595 {
596 PyThreadState* __tstate = wxPyBeginAllowThreads();
597 _result = (bool )wxYield();
598
599 wxPyEndAllowThreads(__tstate);
600 if (PyErr_Occurred()) return NULL;
601 } _resultobj = Py_BuildValue("i",_result);
602 return _resultobj;
603 }
604
605 static PyObject *_wrap_wxYieldIfNeeded(PyObject *self, PyObject *args, PyObject *kwargs) {
606 PyObject * _resultobj;
607 bool _result;
608 char *_kwnames[] = { NULL };
609
610 self = self;
611 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxYieldIfNeeded",_kwnames))
612 return NULL;
613 {
614 PyThreadState* __tstate = wxPyBeginAllowThreads();
615 _result = (bool )wxYieldIfNeeded();
616
617 wxPyEndAllowThreads(__tstate);
618 if (PyErr_Occurred()) return NULL;
619 } _resultobj = Py_BuildValue("i",_result);
620 return _resultobj;
621 }
622
623 static PyObject *_wrap_wxEnableTopLevelWindows(PyObject *self, PyObject *args, PyObject *kwargs) {
624 PyObject * _resultobj;
625 bool _arg0;
626 int tempbool0;
627 char *_kwnames[] = { "enable", NULL };
628
629 self = self;
630 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"i:wxEnableTopLevelWindows",_kwnames,&tempbool0))
631 return NULL;
632 _arg0 = (bool ) tempbool0;
633 {
634 PyThreadState* __tstate = wxPyBeginAllowThreads();
635 wxEnableTopLevelWindows(_arg0);
636
637 wxPyEndAllowThreads(__tstate);
638 if (PyErr_Occurred()) return NULL;
639 } Py_INCREF(Py_None);
640 _resultobj = Py_None;
641 return _resultobj;
642 }
643
644 static PyObject *_wrap_wxGetResource(PyObject *self, PyObject *args, PyObject *kwargs) {
645 PyObject * _resultobj;
646 wxString * _result;
647 wxString * _arg0;
648 wxString * _arg1;
649 wxString * _arg2 = (wxString *) &wxPyEmptyString;
650 PyObject * _obj0 = 0;
651 PyObject * _obj1 = 0;
652 PyObject * _obj2 = 0;
653 char *_kwnames[] = { "section","entry","file", NULL };
654
655 self = self;
656 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|O:wxGetResource",_kwnames,&_obj0,&_obj1,&_obj2))
657 return NULL;
658 {
659 _arg0 = wxString_in_helper(_obj0);
660 if (_arg0 == NULL)
661 return NULL;
662 }
663 {
664 _arg1 = wxString_in_helper(_obj1);
665 if (_arg1 == NULL)
666 return NULL;
667 }
668 if (_obj2)
669 {
670 _arg2 = wxString_in_helper(_obj2);
671 if (_arg2 == NULL)
672 return NULL;
673 }
674 {
675 PyThreadState* __tstate = wxPyBeginAllowThreads();
676 _result = new wxString (wxGetResource(*_arg0,*_arg1,*_arg2));
677
678 wxPyEndAllowThreads(__tstate);
679 if (PyErr_Occurred()) return NULL;
680 }{
681 #if wxUSE_UNICODE
682 _resultobj = PyUnicode_FromUnicode(_result->c_str(), _result->Len());
683 #else
684 _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len());
685 #endif
686 }
687 {
688 if (_obj0)
689 delete _arg0;
690 }
691 {
692 if (_obj1)
693 delete _arg1;
694 }
695 {
696 if (_obj2)
697 delete _arg2;
698 }
699 {
700 delete _result;
701 }
702 return _resultobj;
703 }
704
705 static PyObject *_wrap_wxStripMenuCodes(PyObject *self, PyObject *args, PyObject *kwargs) {
706 PyObject * _resultobj;
707 wxString * _result;
708 wxString * _arg0;
709 PyObject * _obj0 = 0;
710 char *_kwnames[] = { "in", NULL };
711
712 self = self;
713 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxStripMenuCodes",_kwnames,&_obj0))
714 return NULL;
715 {
716 _arg0 = wxString_in_helper(_obj0);
717 if (_arg0 == NULL)
718 return NULL;
719 }
720 {
721 PyThreadState* __tstate = wxPyBeginAllowThreads();
722 _result = new wxString (wxStripMenuCodes(*_arg0));
723
724 wxPyEndAllowThreads(__tstate);
725 if (PyErr_Occurred()) return NULL;
726 }{
727 #if wxUSE_UNICODE
728 _resultobj = PyUnicode_FromUnicode(_result->c_str(), _result->Len());
729 #else
730 _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len());
731 #endif
732 }
733 {
734 if (_obj0)
735 delete _arg0;
736 }
737 {
738 delete _result;
739 }
740 return _resultobj;
741 }
742
743 static PyObject *_wrap_wxGetEmailAddress(PyObject *self, PyObject *args, PyObject *kwargs) {
744 PyObject * _resultobj;
745 wxString * _result;
746 char *_kwnames[] = { NULL };
747
748 self = self;
749 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxGetEmailAddress",_kwnames))
750 return NULL;
751 {
752 PyThreadState* __tstate = wxPyBeginAllowThreads();
753 _result = new wxString (wxGetEmailAddress());
754
755 wxPyEndAllowThreads(__tstate);
756 if (PyErr_Occurred()) return NULL;
757 }{
758 #if wxUSE_UNICODE
759 _resultobj = PyUnicode_FromUnicode(_result->c_str(), _result->Len());
760 #else
761 _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len());
762 #endif
763 }
764 {
765 delete _result;
766 }
767 return _resultobj;
768 }
769
770 static PyObject *_wrap_wxGetHostName(PyObject *self, PyObject *args, PyObject *kwargs) {
771 PyObject * _resultobj;
772 wxString * _result;
773 char *_kwnames[] = { NULL };
774
775 self = self;
776 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxGetHostName",_kwnames))
777 return NULL;
778 {
779 PyThreadState* __tstate = wxPyBeginAllowThreads();
780 _result = new wxString (wxGetHostName());
781
782 wxPyEndAllowThreads(__tstate);
783 if (PyErr_Occurred()) return NULL;
784 }{
785 #if wxUSE_UNICODE
786 _resultobj = PyUnicode_FromUnicode(_result->c_str(), _result->Len());
787 #else
788 _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len());
789 #endif
790 }
791 {
792 delete _result;
793 }
794 return _resultobj;
795 }
796
797 static PyObject *_wrap_wxGetFullHostName(PyObject *self, PyObject *args, PyObject *kwargs) {
798 PyObject * _resultobj;
799 wxString * _result;
800 char *_kwnames[] = { NULL };
801
802 self = self;
803 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxGetFullHostName",_kwnames))
804 return NULL;
805 {
806 PyThreadState* __tstate = wxPyBeginAllowThreads();
807 _result = new wxString (wxGetFullHostName());
808
809 wxPyEndAllowThreads(__tstate);
810 if (PyErr_Occurred()) return NULL;
811 }{
812 #if wxUSE_UNICODE
813 _resultobj = PyUnicode_FromUnicode(_result->c_str(), _result->Len());
814 #else
815 _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len());
816 #endif
817 }
818 {
819 delete _result;
820 }
821 return _resultobj;
822 }
823
824 static PyObject *_wrap_wxGetUserId(PyObject *self, PyObject *args, PyObject *kwargs) {
825 PyObject * _resultobj;
826 wxString * _result;
827 char *_kwnames[] = { NULL };
828
829 self = self;
830 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxGetUserId",_kwnames))
831 return NULL;
832 {
833 PyThreadState* __tstate = wxPyBeginAllowThreads();
834 _result = new wxString (wxGetUserId());
835
836 wxPyEndAllowThreads(__tstate);
837 if (PyErr_Occurred()) return NULL;
838 }{
839 #if wxUSE_UNICODE
840 _resultobj = PyUnicode_FromUnicode(_result->c_str(), _result->Len());
841 #else
842 _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len());
843 #endif
844 }
845 {
846 delete _result;
847 }
848 return _resultobj;
849 }
850
851 static PyObject *_wrap_wxGetUserName(PyObject *self, PyObject *args, PyObject *kwargs) {
852 PyObject * _resultobj;
853 wxString * _result;
854 char *_kwnames[] = { NULL };
855
856 self = self;
857 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxGetUserName",_kwnames))
858 return NULL;
859 {
860 PyThreadState* __tstate = wxPyBeginAllowThreads();
861 _result = new wxString (wxGetUserName());
862
863 wxPyEndAllowThreads(__tstate);
864 if (PyErr_Occurred()) return NULL;
865 }{
866 #if wxUSE_UNICODE
867 _resultobj = PyUnicode_FromUnicode(_result->c_str(), _result->Len());
868 #else
869 _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len());
870 #endif
871 }
872 {
873 delete _result;
874 }
875 return _resultobj;
876 }
877
878 static PyObject *_wrap_wxGetHomeDir(PyObject *self, PyObject *args, PyObject *kwargs) {
879 PyObject * _resultobj;
880 wxString * _result;
881 char *_kwnames[] = { NULL };
882
883 self = self;
884 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxGetHomeDir",_kwnames))
885 return NULL;
886 {
887 PyThreadState* __tstate = wxPyBeginAllowThreads();
888 _result = new wxString (wxGetHomeDir());
889
890 wxPyEndAllowThreads(__tstate);
891 if (PyErr_Occurred()) return NULL;
892 }{
893 #if wxUSE_UNICODE
894 _resultobj = PyUnicode_FromUnicode(_result->c_str(), _result->Len());
895 #else
896 _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len());
897 #endif
898 }
899 {
900 delete _result;
901 }
902 return _resultobj;
903 }
904
905 static PyObject *_wrap_wxGetUserHome(PyObject *self, PyObject *args, PyObject *kwargs) {
906 PyObject * _resultobj;
907 wxString * _result;
908 wxString * _arg0 = (wxString *) &wxPyEmptyString;
909 PyObject * _obj0 = 0;
910 char *_kwnames[] = { "user", NULL };
911
912 self = self;
913 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|O:wxGetUserHome",_kwnames,&_obj0))
914 return NULL;
915 if (_obj0)
916 {
917 _arg0 = wxString_in_helper(_obj0);
918 if (_arg0 == NULL)
919 return NULL;
920 }
921 {
922 PyThreadState* __tstate = wxPyBeginAllowThreads();
923 _result = new wxString (wxGetUserHome(*_arg0));
924
925 wxPyEndAllowThreads(__tstate);
926 if (PyErr_Occurred()) return NULL;
927 }{
928 #if wxUSE_UNICODE
929 _resultobj = PyUnicode_FromUnicode(_result->c_str(), _result->Len());
930 #else
931 _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len());
932 #endif
933 }
934 {
935 if (_obj0)
936 delete _arg0;
937 }
938 {
939 delete _result;
940 }
941 return _resultobj;
942 }
943
944 static PyObject *_wrap_wxGetAccelFromString(PyObject *self, PyObject *args, PyObject *kwargs) {
945 PyObject * _resultobj;
946 wxAcceleratorEntry * _result;
947 wxString * _arg0;
948 PyObject * _obj0 = 0;
949 char *_kwnames[] = { "label", NULL };
950 char _ptemp[128];
951
952 self = self;
953 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxGetAccelFromString",_kwnames,&_obj0))
954 return NULL;
955 {
956 _arg0 = wxString_in_helper(_obj0);
957 if (_arg0 == NULL)
958 return NULL;
959 }
960 {
961 PyThreadState* __tstate = wxPyBeginAllowThreads();
962 _result = (wxAcceleratorEntry *)wxGetAccelFromString(*_arg0);
963
964 wxPyEndAllowThreads(__tstate);
965 if (PyErr_Occurred()) return NULL;
966 } if (_result) {
967 SWIG_MakePtr(_ptemp, (char *) _result,"_wxAcceleratorEntry_p");
968 _resultobj = Py_BuildValue("s",_ptemp);
969 } else {
970 Py_INCREF(Py_None);
971 _resultobj = Py_None;
972 }
973 {
974 if (_obj0)
975 delete _arg0;
976 }
977 return _resultobj;
978 }
979
980 static int _wrap_wxNullAcceleratorTable_set(PyObject *val) {
981
982 PyErr_SetString(PyExc_TypeError,"Variable wxNullAcceleratorTable is read-only.");
983 return 1;
984 }
985
986 static PyObject *_wrap_wxNullAcceleratorTable_get() {
987 PyObject * pyobj;
988 char ptemp[128];
989
990 SWIG_MakePtr(ptemp,(char *) &wxNullAcceleratorTable,"_wxAcceleratorTable_p");
991 pyobj = PyString_FromString(ptemp);
992 return pyobj;
993 }
994
995 static wxString wxObject_GetClassName(wxObject *self) {
996 return self->GetClassInfo()->GetClassName();
997 }
998 static PyObject *_wrap_wxObject_GetClassName(PyObject *self, PyObject *args, PyObject *kwargs) {
999 PyObject * _resultobj;
1000 wxString * _result;
1001 wxObject * _arg0;
1002 PyObject * _argo0 = 0;
1003 char *_kwnames[] = { "self", NULL };
1004
1005 self = self;
1006 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxObject_GetClassName",_kwnames,&_argo0))
1007 return NULL;
1008 if (_argo0) {
1009 if (_argo0 == Py_None) { _arg0 = NULL; }
1010 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxObject_p")) {
1011 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxObject_GetClassName. Expected _wxObject_p.");
1012 return NULL;
1013 }
1014 }
1015 {
1016 PyThreadState* __tstate = wxPyBeginAllowThreads();
1017 _result = new wxString (wxObject_GetClassName(_arg0));
1018
1019 wxPyEndAllowThreads(__tstate);
1020 if (PyErr_Occurred()) return NULL;
1021 }{
1022 #if wxUSE_UNICODE
1023 _resultobj = PyUnicode_FromUnicode(_result->c_str(), _result->Len());
1024 #else
1025 _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len());
1026 #endif
1027 }
1028 {
1029 delete _result;
1030 }
1031 return _resultobj;
1032 }
1033
1034 static void wxObject_Destroy(wxObject *self) {
1035 delete self;
1036 }
1037 static PyObject *_wrap_wxObject_Destroy(PyObject *self, PyObject *args, PyObject *kwargs) {
1038 PyObject * _resultobj;
1039 wxObject * _arg0;
1040 PyObject * _argo0 = 0;
1041 char *_kwnames[] = { "self", NULL };
1042
1043 self = self;
1044 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxObject_Destroy",_kwnames,&_argo0))
1045 return NULL;
1046 if (_argo0) {
1047 if (_argo0 == Py_None) { _arg0 = NULL; }
1048 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxObject_p")) {
1049 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxObject_Destroy. Expected _wxObject_p.");
1050 return NULL;
1051 }
1052 }
1053 {
1054 PyThreadState* __tstate = wxPyBeginAllowThreads();
1055 wxObject_Destroy(_arg0);
1056
1057 wxPyEndAllowThreads(__tstate);
1058 if (PyErr_Occurred()) return NULL;
1059 } Py_INCREF(Py_None);
1060 _resultobj = Py_None;
1061 return _resultobj;
1062 }
1063
1064 #define wxSize_x_set(_swigobj,_swigval) (_swigobj->x = _swigval,_swigval)
1065 static PyObject *_wrap_wxSize_x_set(PyObject *self, PyObject *args, PyObject *kwargs) {
1066 PyObject * _resultobj;
1067 long _result;
1068 wxSize * _arg0;
1069 long _arg1;
1070 wxSize temp;
1071 PyObject * _obj0 = 0;
1072 char *_kwnames[] = { "self","x", NULL };
1073
1074 self = self;
1075 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxSize_x_set",_kwnames,&_obj0,&_arg1))
1076 return NULL;
1077 {
1078 _arg0 = &temp;
1079 if (! wxSize_helper(_obj0, &_arg0))
1080 return NULL;
1081 }
1082 {
1083 PyThreadState* __tstate = wxPyBeginAllowThreads();
1084 _result = (long )wxSize_x_set(_arg0,_arg1);
1085
1086 wxPyEndAllowThreads(__tstate);
1087 if (PyErr_Occurred()) return NULL;
1088 } _resultobj = Py_BuildValue("l",_result);
1089 return _resultobj;
1090 }
1091
1092 #define wxSize_x_get(_swigobj) ((long ) _swigobj->x)
1093 static PyObject *_wrap_wxSize_x_get(PyObject *self, PyObject *args, PyObject *kwargs) {
1094 PyObject * _resultobj;
1095 long _result;
1096 wxSize * _arg0;
1097 wxSize temp;
1098 PyObject * _obj0 = 0;
1099 char *_kwnames[] = { "self", NULL };
1100
1101 self = self;
1102 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxSize_x_get",_kwnames,&_obj0))
1103 return NULL;
1104 {
1105 _arg0 = &temp;
1106 if (! wxSize_helper(_obj0, &_arg0))
1107 return NULL;
1108 }
1109 {
1110 PyThreadState* __tstate = wxPyBeginAllowThreads();
1111 _result = (long )wxSize_x_get(_arg0);
1112
1113 wxPyEndAllowThreads(__tstate);
1114 if (PyErr_Occurred()) return NULL;
1115 } _resultobj = Py_BuildValue("l",_result);
1116 return _resultobj;
1117 }
1118
1119 #define wxSize_y_set(_swigobj,_swigval) (_swigobj->y = _swigval,_swigval)
1120 static PyObject *_wrap_wxSize_y_set(PyObject *self, PyObject *args, PyObject *kwargs) {
1121 PyObject * _resultobj;
1122 long _result;
1123 wxSize * _arg0;
1124 long _arg1;
1125 wxSize temp;
1126 PyObject * _obj0 = 0;
1127 char *_kwnames[] = { "self","y", NULL };
1128
1129 self = self;
1130 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxSize_y_set",_kwnames,&_obj0,&_arg1))
1131 return NULL;
1132 {
1133 _arg0 = &temp;
1134 if (! wxSize_helper(_obj0, &_arg0))
1135 return NULL;
1136 }
1137 {
1138 PyThreadState* __tstate = wxPyBeginAllowThreads();
1139 _result = (long )wxSize_y_set(_arg0,_arg1);
1140
1141 wxPyEndAllowThreads(__tstate);
1142 if (PyErr_Occurred()) return NULL;
1143 } _resultobj = Py_BuildValue("l",_result);
1144 return _resultobj;
1145 }
1146
1147 #define wxSize_y_get(_swigobj) ((long ) _swigobj->y)
1148 static PyObject *_wrap_wxSize_y_get(PyObject *self, PyObject *args, PyObject *kwargs) {
1149 PyObject * _resultobj;
1150 long _result;
1151 wxSize * _arg0;
1152 wxSize temp;
1153 PyObject * _obj0 = 0;
1154 char *_kwnames[] = { "self", NULL };
1155
1156 self = self;
1157 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxSize_y_get",_kwnames,&_obj0))
1158 return NULL;
1159 {
1160 _arg0 = &temp;
1161 if (! wxSize_helper(_obj0, &_arg0))
1162 return NULL;
1163 }
1164 {
1165 PyThreadState* __tstate = wxPyBeginAllowThreads();
1166 _result = (long )wxSize_y_get(_arg0);
1167
1168 wxPyEndAllowThreads(__tstate);
1169 if (PyErr_Occurred()) return NULL;
1170 } _resultobj = Py_BuildValue("l",_result);
1171 return _resultobj;
1172 }
1173
1174 #define new_wxSize(_swigarg0,_swigarg1) (new wxSize(_swigarg0,_swigarg1))
1175 static PyObject *_wrap_new_wxSize(PyObject *self, PyObject *args, PyObject *kwargs) {
1176 PyObject * _resultobj;
1177 wxSize * _result;
1178 long _arg0 = (long ) 0;
1179 long _arg1 = (long ) 0;
1180 char *_kwnames[] = { "w","h", NULL };
1181 char _ptemp[128];
1182
1183 self = self;
1184 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|ll:new_wxSize",_kwnames,&_arg0,&_arg1))
1185 return NULL;
1186 {
1187 PyThreadState* __tstate = wxPyBeginAllowThreads();
1188 _result = (wxSize *)new_wxSize(_arg0,_arg1);
1189
1190 wxPyEndAllowThreads(__tstate);
1191 if (PyErr_Occurred()) return NULL;
1192 } if (_result) {
1193 SWIG_MakePtr(_ptemp, (char *) _result,"_wxSize_p");
1194 _resultobj = Py_BuildValue("s",_ptemp);
1195 } else {
1196 Py_INCREF(Py_None);
1197 _resultobj = Py_None;
1198 }
1199 return _resultobj;
1200 }
1201
1202 #define delete_wxSize(_swigobj) (delete _swigobj)
1203 static PyObject *_wrap_delete_wxSize(PyObject *self, PyObject *args, PyObject *kwargs) {
1204 PyObject * _resultobj;
1205 wxSize * _arg0;
1206 wxSize temp;
1207 PyObject * _obj0 = 0;
1208 char *_kwnames[] = { "self", NULL };
1209
1210 self = self;
1211 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxSize",_kwnames,&_obj0))
1212 return NULL;
1213 {
1214 _arg0 = &temp;
1215 if (! wxSize_helper(_obj0, &_arg0))
1216 return NULL;
1217 }
1218 {
1219 PyThreadState* __tstate = wxPyBeginAllowThreads();
1220 delete_wxSize(_arg0);
1221
1222 wxPyEndAllowThreads(__tstate);
1223 if (PyErr_Occurred()) return NULL;
1224 } Py_INCREF(Py_None);
1225 _resultobj = Py_None;
1226 return _resultobj;
1227 }
1228
1229 #define wxSize_Set(_swigobj,_swigarg0,_swigarg1) (_swigobj->Set(_swigarg0,_swigarg1))
1230 static PyObject *_wrap_wxSize_Set(PyObject *self, PyObject *args, PyObject *kwargs) {
1231 PyObject * _resultobj;
1232 wxSize * _arg0;
1233 long _arg1;
1234 long _arg2;
1235 wxSize temp;
1236 PyObject * _obj0 = 0;
1237 char *_kwnames[] = { "self","w","h", NULL };
1238
1239 self = self;
1240 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oll:wxSize_Set",_kwnames,&_obj0,&_arg1,&_arg2))
1241 return NULL;
1242 {
1243 _arg0 = &temp;
1244 if (! wxSize_helper(_obj0, &_arg0))
1245 return NULL;
1246 }
1247 {
1248 PyThreadState* __tstate = wxPyBeginAllowThreads();
1249 wxSize_Set(_arg0,_arg1,_arg2);
1250
1251 wxPyEndAllowThreads(__tstate);
1252 if (PyErr_Occurred()) return NULL;
1253 } Py_INCREF(Py_None);
1254 _resultobj = Py_None;
1255 return _resultobj;
1256 }
1257
1258 #define wxSize_GetX(_swigobj) (_swigobj->GetX())
1259 static PyObject *_wrap_wxSize_GetX(PyObject *self, PyObject *args, PyObject *kwargs) {
1260 PyObject * _resultobj;
1261 long _result;
1262 wxSize * _arg0;
1263 wxSize temp;
1264 PyObject * _obj0 = 0;
1265 char *_kwnames[] = { "self", NULL };
1266
1267 self = self;
1268 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxSize_GetX",_kwnames,&_obj0))
1269 return NULL;
1270 {
1271 _arg0 = &temp;
1272 if (! wxSize_helper(_obj0, &_arg0))
1273 return NULL;
1274 }
1275 {
1276 PyThreadState* __tstate = wxPyBeginAllowThreads();
1277 _result = (long )wxSize_GetX(_arg0);
1278
1279 wxPyEndAllowThreads(__tstate);
1280 if (PyErr_Occurred()) return NULL;
1281 } _resultobj = Py_BuildValue("l",_result);
1282 return _resultobj;
1283 }
1284
1285 #define wxSize_GetY(_swigobj) (_swigobj->GetY())
1286 static PyObject *_wrap_wxSize_GetY(PyObject *self, PyObject *args, PyObject *kwargs) {
1287 PyObject * _resultobj;
1288 long _result;
1289 wxSize * _arg0;
1290 wxSize temp;
1291 PyObject * _obj0 = 0;
1292 char *_kwnames[] = { "self", NULL };
1293
1294 self = self;
1295 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxSize_GetY",_kwnames,&_obj0))
1296 return NULL;
1297 {
1298 _arg0 = &temp;
1299 if (! wxSize_helper(_obj0, &_arg0))
1300 return NULL;
1301 }
1302 {
1303 PyThreadState* __tstate = wxPyBeginAllowThreads();
1304 _result = (long )wxSize_GetY(_arg0);
1305
1306 wxPyEndAllowThreads(__tstate);
1307 if (PyErr_Occurred()) return NULL;
1308 } _resultobj = Py_BuildValue("l",_result);
1309 return _resultobj;
1310 }
1311
1312 #define wxSize_GetWidth(_swigobj) (_swigobj->GetWidth())
1313 static PyObject *_wrap_wxSize_GetWidth(PyObject *self, PyObject *args, PyObject *kwargs) {
1314 PyObject * _resultobj;
1315 long _result;
1316 wxSize * _arg0;
1317 wxSize temp;
1318 PyObject * _obj0 = 0;
1319 char *_kwnames[] = { "self", NULL };
1320
1321 self = self;
1322 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxSize_GetWidth",_kwnames,&_obj0))
1323 return NULL;
1324 {
1325 _arg0 = &temp;
1326 if (! wxSize_helper(_obj0, &_arg0))
1327 return NULL;
1328 }
1329 {
1330 PyThreadState* __tstate = wxPyBeginAllowThreads();
1331 _result = (long )wxSize_GetWidth(_arg0);
1332
1333 wxPyEndAllowThreads(__tstate);
1334 if (PyErr_Occurred()) return NULL;
1335 } _resultobj = Py_BuildValue("l",_result);
1336 return _resultobj;
1337 }
1338
1339 #define wxSize_GetHeight(_swigobj) (_swigobj->GetHeight())
1340 static PyObject *_wrap_wxSize_GetHeight(PyObject *self, PyObject *args, PyObject *kwargs) {
1341 PyObject * _resultobj;
1342 long _result;
1343 wxSize * _arg0;
1344 wxSize temp;
1345 PyObject * _obj0 = 0;
1346 char *_kwnames[] = { "self", NULL };
1347
1348 self = self;
1349 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxSize_GetHeight",_kwnames,&_obj0))
1350 return NULL;
1351 {
1352 _arg0 = &temp;
1353 if (! wxSize_helper(_obj0, &_arg0))
1354 return NULL;
1355 }
1356 {
1357 PyThreadState* __tstate = wxPyBeginAllowThreads();
1358 _result = (long )wxSize_GetHeight(_arg0);
1359
1360 wxPyEndAllowThreads(__tstate);
1361 if (PyErr_Occurred()) return NULL;
1362 } _resultobj = Py_BuildValue("l",_result);
1363 return _resultobj;
1364 }
1365
1366 #define wxSize_SetWidth(_swigobj,_swigarg0) (_swigobj->SetWidth(_swigarg0))
1367 static PyObject *_wrap_wxSize_SetWidth(PyObject *self, PyObject *args, PyObject *kwargs) {
1368 PyObject * _resultobj;
1369 wxSize * _arg0;
1370 long _arg1;
1371 wxSize temp;
1372 PyObject * _obj0 = 0;
1373 char *_kwnames[] = { "self","w", NULL };
1374
1375 self = self;
1376 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxSize_SetWidth",_kwnames,&_obj0,&_arg1))
1377 return NULL;
1378 {
1379 _arg0 = &temp;
1380 if (! wxSize_helper(_obj0, &_arg0))
1381 return NULL;
1382 }
1383 {
1384 PyThreadState* __tstate = wxPyBeginAllowThreads();
1385 wxSize_SetWidth(_arg0,_arg1);
1386
1387 wxPyEndAllowThreads(__tstate);
1388 if (PyErr_Occurred()) return NULL;
1389 } Py_INCREF(Py_None);
1390 _resultobj = Py_None;
1391 return _resultobj;
1392 }
1393
1394 #define wxSize_SetHeight(_swigobj,_swigarg0) (_swigobj->SetHeight(_swigarg0))
1395 static PyObject *_wrap_wxSize_SetHeight(PyObject *self, PyObject *args, PyObject *kwargs) {
1396 PyObject * _resultobj;
1397 wxSize * _arg0;
1398 long _arg1;
1399 wxSize temp;
1400 PyObject * _obj0 = 0;
1401 char *_kwnames[] = { "self","h", NULL };
1402
1403 self = self;
1404 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxSize_SetHeight",_kwnames,&_obj0,&_arg1))
1405 return NULL;
1406 {
1407 _arg0 = &temp;
1408 if (! wxSize_helper(_obj0, &_arg0))
1409 return NULL;
1410 }
1411 {
1412 PyThreadState* __tstate = wxPyBeginAllowThreads();
1413 wxSize_SetHeight(_arg0,_arg1);
1414
1415 wxPyEndAllowThreads(__tstate);
1416 if (PyErr_Occurred()) return NULL;
1417 } Py_INCREF(Py_None);
1418 _resultobj = Py_None;
1419 return _resultobj;
1420 }
1421
1422 static PyObject * wxSize_asTuple(wxSize *self) {
1423 wxPyBeginBlockThreads();
1424 PyObject* tup = PyTuple_New(2);
1425 PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(self->x));
1426 PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(self->y));
1427 wxPyEndBlockThreads();
1428 return tup;
1429 }
1430 static PyObject *_wrap_wxSize_asTuple(PyObject *self, PyObject *args, PyObject *kwargs) {
1431 PyObject * _resultobj;
1432 PyObject * _result;
1433 wxSize * _arg0;
1434 wxSize temp;
1435 PyObject * _obj0 = 0;
1436 char *_kwnames[] = { "self", NULL };
1437
1438 self = self;
1439 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxSize_asTuple",_kwnames,&_obj0))
1440 return NULL;
1441 {
1442 _arg0 = &temp;
1443 if (! wxSize_helper(_obj0, &_arg0))
1444 return NULL;
1445 }
1446 {
1447 PyThreadState* __tstate = wxPyBeginAllowThreads();
1448 _result = (PyObject *)wxSize_asTuple(_arg0);
1449
1450 wxPyEndAllowThreads(__tstate);
1451 if (PyErr_Occurred()) return NULL;
1452 }{
1453 _resultobj = _result;
1454 }
1455 return _resultobj;
1456 }
1457
1458 static int wxSize___cmp__(wxSize *self,const wxSize * sz) {
1459 if (! sz) return 1;
1460 if (*self == *sz) return 0;
1461 return -1;
1462 }
1463 static PyObject *_wrap_wxSize___cmp__(PyObject *self, PyObject *args, PyObject *kwargs) {
1464 PyObject * _resultobj;
1465 int _result;
1466 wxSize * _arg0;
1467 wxSize * _arg1;
1468 wxSize temp;
1469 PyObject * _obj0 = 0;
1470 wxSize temp0;
1471 PyObject * _obj1 = 0;
1472 char *_kwnames[] = { "self","sz", NULL };
1473
1474 self = self;
1475 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxSize___cmp__",_kwnames,&_obj0,&_obj1))
1476 return NULL;
1477 {
1478 _arg0 = &temp;
1479 if (! wxSize_helper(_obj0, &_arg0))
1480 return NULL;
1481 }
1482 {
1483 _arg1 = &temp0;
1484 if (! wxSize_helper(_obj1, &_arg1))
1485 return NULL;
1486 }
1487 {
1488 PyThreadState* __tstate = wxPyBeginAllowThreads();
1489 _result = (int )wxSize___cmp__(_arg0,_arg1);
1490
1491 wxPyEndAllowThreads(__tstate);
1492 if (PyErr_Occurred()) return NULL;
1493 } _resultobj = Py_BuildValue("i",_result);
1494 return _resultobj;
1495 }
1496
1497 #define wxRealPoint_x_set(_swigobj,_swigval) (_swigobj->x = _swigval,_swigval)
1498 static PyObject *_wrap_wxRealPoint_x_set(PyObject *self, PyObject *args, PyObject *kwargs) {
1499 PyObject * _resultobj;
1500 double _result;
1501 wxRealPoint * _arg0;
1502 double _arg1;
1503 wxRealPoint temp;
1504 PyObject * _obj0 = 0;
1505 char *_kwnames[] = { "self","x", NULL };
1506
1507 self = self;
1508 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Od:wxRealPoint_x_set",_kwnames,&_obj0,&_arg1))
1509 return NULL;
1510 {
1511 _arg0 = &temp;
1512 if (! wxRealPoint_helper(_obj0, &_arg0))
1513 return NULL;
1514 }
1515 {
1516 PyThreadState* __tstate = wxPyBeginAllowThreads();
1517 _result = (double )wxRealPoint_x_set(_arg0,_arg1);
1518
1519 wxPyEndAllowThreads(__tstate);
1520 if (PyErr_Occurred()) return NULL;
1521 } _resultobj = Py_BuildValue("d",_result);
1522 return _resultobj;
1523 }
1524
1525 #define wxRealPoint_x_get(_swigobj) ((double ) _swigobj->x)
1526 static PyObject *_wrap_wxRealPoint_x_get(PyObject *self, PyObject *args, PyObject *kwargs) {
1527 PyObject * _resultobj;
1528 double _result;
1529 wxRealPoint * _arg0;
1530 wxRealPoint temp;
1531 PyObject * _obj0 = 0;
1532 char *_kwnames[] = { "self", NULL };
1533
1534 self = self;
1535 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRealPoint_x_get",_kwnames,&_obj0))
1536 return NULL;
1537 {
1538 _arg0 = &temp;
1539 if (! wxRealPoint_helper(_obj0, &_arg0))
1540 return NULL;
1541 }
1542 {
1543 PyThreadState* __tstate = wxPyBeginAllowThreads();
1544 _result = (double )wxRealPoint_x_get(_arg0);
1545
1546 wxPyEndAllowThreads(__tstate);
1547 if (PyErr_Occurred()) return NULL;
1548 } _resultobj = Py_BuildValue("d",_result);
1549 return _resultobj;
1550 }
1551
1552 #define wxRealPoint_y_set(_swigobj,_swigval) (_swigobj->y = _swigval,_swigval)
1553 static PyObject *_wrap_wxRealPoint_y_set(PyObject *self, PyObject *args, PyObject *kwargs) {
1554 PyObject * _resultobj;
1555 double _result;
1556 wxRealPoint * _arg0;
1557 double _arg1;
1558 wxRealPoint temp;
1559 PyObject * _obj0 = 0;
1560 char *_kwnames[] = { "self","y", NULL };
1561
1562 self = self;
1563 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Od:wxRealPoint_y_set",_kwnames,&_obj0,&_arg1))
1564 return NULL;
1565 {
1566 _arg0 = &temp;
1567 if (! wxRealPoint_helper(_obj0, &_arg0))
1568 return NULL;
1569 }
1570 {
1571 PyThreadState* __tstate = wxPyBeginAllowThreads();
1572 _result = (double )wxRealPoint_y_set(_arg0,_arg1);
1573
1574 wxPyEndAllowThreads(__tstate);
1575 if (PyErr_Occurred()) return NULL;
1576 } _resultobj = Py_BuildValue("d",_result);
1577 return _resultobj;
1578 }
1579
1580 #define wxRealPoint_y_get(_swigobj) ((double ) _swigobj->y)
1581 static PyObject *_wrap_wxRealPoint_y_get(PyObject *self, PyObject *args, PyObject *kwargs) {
1582 PyObject * _resultobj;
1583 double _result;
1584 wxRealPoint * _arg0;
1585 wxRealPoint temp;
1586 PyObject * _obj0 = 0;
1587 char *_kwnames[] = { "self", NULL };
1588
1589 self = self;
1590 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRealPoint_y_get",_kwnames,&_obj0))
1591 return NULL;
1592 {
1593 _arg0 = &temp;
1594 if (! wxRealPoint_helper(_obj0, &_arg0))
1595 return NULL;
1596 }
1597 {
1598 PyThreadState* __tstate = wxPyBeginAllowThreads();
1599 _result = (double )wxRealPoint_y_get(_arg0);
1600
1601 wxPyEndAllowThreads(__tstate);
1602 if (PyErr_Occurred()) return NULL;
1603 } _resultobj = Py_BuildValue("d",_result);
1604 return _resultobj;
1605 }
1606
1607 #define new_wxRealPoint(_swigarg0,_swigarg1) (new wxRealPoint(_swigarg0,_swigarg1))
1608 static PyObject *_wrap_new_wxRealPoint(PyObject *self, PyObject *args, PyObject *kwargs) {
1609 PyObject * _resultobj;
1610 wxRealPoint * _result;
1611 double _arg0 = (double ) 0.0;
1612 double _arg1 = (double ) 0.0;
1613 char *_kwnames[] = { "x","y", NULL };
1614 char _ptemp[128];
1615
1616 self = self;
1617 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|dd:new_wxRealPoint",_kwnames,&_arg0,&_arg1))
1618 return NULL;
1619 {
1620 PyThreadState* __tstate = wxPyBeginAllowThreads();
1621 _result = (wxRealPoint *)new_wxRealPoint(_arg0,_arg1);
1622
1623 wxPyEndAllowThreads(__tstate);
1624 if (PyErr_Occurred()) return NULL;
1625 } if (_result) {
1626 SWIG_MakePtr(_ptemp, (char *) _result,"_wxRealPoint_p");
1627 _resultobj = Py_BuildValue("s",_ptemp);
1628 } else {
1629 Py_INCREF(Py_None);
1630 _resultobj = Py_None;
1631 }
1632 return _resultobj;
1633 }
1634
1635 #define delete_wxRealPoint(_swigobj) (delete _swigobj)
1636 static PyObject *_wrap_delete_wxRealPoint(PyObject *self, PyObject *args, PyObject *kwargs) {
1637 PyObject * _resultobj;
1638 wxRealPoint * _arg0;
1639 wxRealPoint temp;
1640 PyObject * _obj0 = 0;
1641 char *_kwnames[] = { "self", NULL };
1642
1643 self = self;
1644 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxRealPoint",_kwnames,&_obj0))
1645 return NULL;
1646 {
1647 _arg0 = &temp;
1648 if (! wxRealPoint_helper(_obj0, &_arg0))
1649 return NULL;
1650 }
1651 {
1652 PyThreadState* __tstate = wxPyBeginAllowThreads();
1653 delete_wxRealPoint(_arg0);
1654
1655 wxPyEndAllowThreads(__tstate);
1656 if (PyErr_Occurred()) return NULL;
1657 } Py_INCREF(Py_None);
1658 _resultobj = Py_None;
1659 return _resultobj;
1660 }
1661
1662 static void wxRealPoint_Set(wxRealPoint *self,double x,double y) {
1663 self->x = x;
1664 self->y = y;
1665 }
1666 static PyObject *_wrap_wxRealPoint_Set(PyObject *self, PyObject *args, PyObject *kwargs) {
1667 PyObject * _resultobj;
1668 wxRealPoint * _arg0;
1669 double _arg1;
1670 double _arg2;
1671 wxRealPoint temp;
1672 PyObject * _obj0 = 0;
1673 char *_kwnames[] = { "self","x","y", NULL };
1674
1675 self = self;
1676 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Odd:wxRealPoint_Set",_kwnames,&_obj0,&_arg1,&_arg2))
1677 return NULL;
1678 {
1679 _arg0 = &temp;
1680 if (! wxRealPoint_helper(_obj0, &_arg0))
1681 return NULL;
1682 }
1683 {
1684 PyThreadState* __tstate = wxPyBeginAllowThreads();
1685 wxRealPoint_Set(_arg0,_arg1,_arg2);
1686
1687 wxPyEndAllowThreads(__tstate);
1688 if (PyErr_Occurred()) return NULL;
1689 } Py_INCREF(Py_None);
1690 _resultobj = Py_None;
1691 return _resultobj;
1692 }
1693
1694 static PyObject * wxRealPoint_asTuple(wxRealPoint *self) {
1695 wxPyBeginBlockThreads();
1696 PyObject* tup = PyTuple_New(2);
1697 PyTuple_SET_ITEM(tup, 0, PyFloat_FromDouble(self->x));
1698 PyTuple_SET_ITEM(tup, 1, PyFloat_FromDouble(self->y));
1699 wxPyEndBlockThreads();
1700 return tup;
1701 }
1702 static PyObject *_wrap_wxRealPoint_asTuple(PyObject *self, PyObject *args, PyObject *kwargs) {
1703 PyObject * _resultobj;
1704 PyObject * _result;
1705 wxRealPoint * _arg0;
1706 wxRealPoint temp;
1707 PyObject * _obj0 = 0;
1708 char *_kwnames[] = { "self", NULL };
1709
1710 self = self;
1711 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRealPoint_asTuple",_kwnames,&_obj0))
1712 return NULL;
1713 {
1714 _arg0 = &temp;
1715 if (! wxRealPoint_helper(_obj0, &_arg0))
1716 return NULL;
1717 }
1718 {
1719 PyThreadState* __tstate = wxPyBeginAllowThreads();
1720 _result = (PyObject *)wxRealPoint_asTuple(_arg0);
1721
1722 wxPyEndAllowThreads(__tstate);
1723 if (PyErr_Occurred()) return NULL;
1724 }{
1725 _resultobj = _result;
1726 }
1727 return _resultobj;
1728 }
1729
1730 static wxRealPoint wxRealPoint___add__(wxRealPoint *self,const wxRealPoint * p) {
1731 if (! p) return *self;
1732 return *self + *p;
1733 }
1734 static PyObject *_wrap_wxRealPoint___add__(PyObject *self, PyObject *args, PyObject *kwargs) {
1735 PyObject * _resultobj;
1736 wxRealPoint * _result;
1737 wxRealPoint * _arg0;
1738 wxRealPoint * _arg1;
1739 wxRealPoint temp;
1740 PyObject * _obj0 = 0;
1741 wxRealPoint temp0;
1742 PyObject * _obj1 = 0;
1743 char *_kwnames[] = { "self","p", NULL };
1744 char _ptemp[128];
1745
1746 self = self;
1747 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxRealPoint___add__",_kwnames,&_obj0,&_obj1))
1748 return NULL;
1749 {
1750 _arg0 = &temp;
1751 if (! wxRealPoint_helper(_obj0, &_arg0))
1752 return NULL;
1753 }
1754 {
1755 _arg1 = &temp0;
1756 if (! wxRealPoint_helper(_obj1, &_arg1))
1757 return NULL;
1758 }
1759 {
1760 PyThreadState* __tstate = wxPyBeginAllowThreads();
1761 _result = new wxRealPoint (wxRealPoint___add__(_arg0,_arg1));
1762
1763 wxPyEndAllowThreads(__tstate);
1764 if (PyErr_Occurred()) return NULL;
1765 } SWIG_MakePtr(_ptemp, (void *) _result,"_wxRealPoint_p");
1766 _resultobj = Py_BuildValue("s",_ptemp);
1767 return _resultobj;
1768 }
1769
1770 static wxRealPoint wxRealPoint___sub__(wxRealPoint *self,const wxRealPoint * p) {
1771 if (! p) return *self;
1772 return *self - *p;
1773 }
1774 static PyObject *_wrap_wxRealPoint___sub__(PyObject *self, PyObject *args, PyObject *kwargs) {
1775 PyObject * _resultobj;
1776 wxRealPoint * _result;
1777 wxRealPoint * _arg0;
1778 wxRealPoint * _arg1;
1779 wxRealPoint temp;
1780 PyObject * _obj0 = 0;
1781 wxRealPoint temp0;
1782 PyObject * _obj1 = 0;
1783 char *_kwnames[] = { "self","p", NULL };
1784 char _ptemp[128];
1785
1786 self = self;
1787 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxRealPoint___sub__",_kwnames,&_obj0,&_obj1))
1788 return NULL;
1789 {
1790 _arg0 = &temp;
1791 if (! wxRealPoint_helper(_obj0, &_arg0))
1792 return NULL;
1793 }
1794 {
1795 _arg1 = &temp0;
1796 if (! wxRealPoint_helper(_obj1, &_arg1))
1797 return NULL;
1798 }
1799 {
1800 PyThreadState* __tstate = wxPyBeginAllowThreads();
1801 _result = new wxRealPoint (wxRealPoint___sub__(_arg0,_arg1));
1802
1803 wxPyEndAllowThreads(__tstate);
1804 if (PyErr_Occurred()) return NULL;
1805 } SWIG_MakePtr(_ptemp, (void *) _result,"_wxRealPoint_p");
1806 _resultobj = Py_BuildValue("s",_ptemp);
1807 return _resultobj;
1808 }
1809
1810 static int wxRealPoint___cmp__(wxRealPoint *self,const wxRealPoint * p) {
1811 if (! p) return 1;
1812 if (*self == *p) return 0;
1813 return -1;
1814 }
1815 static PyObject *_wrap_wxRealPoint___cmp__(PyObject *self, PyObject *args, PyObject *kwargs) {
1816 PyObject * _resultobj;
1817 int _result;
1818 wxRealPoint * _arg0;
1819 wxRealPoint * _arg1;
1820 wxRealPoint temp;
1821 PyObject * _obj0 = 0;
1822 wxRealPoint temp0;
1823 PyObject * _obj1 = 0;
1824 char *_kwnames[] = { "self","p", NULL };
1825
1826 self = self;
1827 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxRealPoint___cmp__",_kwnames,&_obj0,&_obj1))
1828 return NULL;
1829 {
1830 _arg0 = &temp;
1831 if (! wxRealPoint_helper(_obj0, &_arg0))
1832 return NULL;
1833 }
1834 {
1835 _arg1 = &temp0;
1836 if (! wxRealPoint_helper(_obj1, &_arg1))
1837 return NULL;
1838 }
1839 {
1840 PyThreadState* __tstate = wxPyBeginAllowThreads();
1841 _result = (int )wxRealPoint___cmp__(_arg0,_arg1);
1842
1843 wxPyEndAllowThreads(__tstate);
1844 if (PyErr_Occurred()) return NULL;
1845 } _resultobj = Py_BuildValue("i",_result);
1846 return _resultobj;
1847 }
1848
1849 #define wxPoint_x_set(_swigobj,_swigval) (_swigobj->x = _swigval,_swigval)
1850 static PyObject *_wrap_wxPoint_x_set(PyObject *self, PyObject *args, PyObject *kwargs) {
1851 PyObject * _resultobj;
1852 long _result;
1853 wxPoint * _arg0;
1854 long _arg1;
1855 wxPoint temp;
1856 PyObject * _obj0 = 0;
1857 char *_kwnames[] = { "self","x", NULL };
1858
1859 self = self;
1860 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxPoint_x_set",_kwnames,&_obj0,&_arg1))
1861 return NULL;
1862 {
1863 _arg0 = &temp;
1864 if (! wxPoint_helper(_obj0, &_arg0))
1865 return NULL;
1866 }
1867 {
1868 PyThreadState* __tstate = wxPyBeginAllowThreads();
1869 _result = (long )wxPoint_x_set(_arg0,_arg1);
1870
1871 wxPyEndAllowThreads(__tstate);
1872 if (PyErr_Occurred()) return NULL;
1873 } _resultobj = Py_BuildValue("l",_result);
1874 return _resultobj;
1875 }
1876
1877 #define wxPoint_x_get(_swigobj) ((long ) _swigobj->x)
1878 static PyObject *_wrap_wxPoint_x_get(PyObject *self, PyObject *args, PyObject *kwargs) {
1879 PyObject * _resultobj;
1880 long _result;
1881 wxPoint * _arg0;
1882 wxPoint temp;
1883 PyObject * _obj0 = 0;
1884 char *_kwnames[] = { "self", NULL };
1885
1886 self = self;
1887 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPoint_x_get",_kwnames,&_obj0))
1888 return NULL;
1889 {
1890 _arg0 = &temp;
1891 if (! wxPoint_helper(_obj0, &_arg0))
1892 return NULL;
1893 }
1894 {
1895 PyThreadState* __tstate = wxPyBeginAllowThreads();
1896 _result = (long )wxPoint_x_get(_arg0);
1897
1898 wxPyEndAllowThreads(__tstate);
1899 if (PyErr_Occurred()) return NULL;
1900 } _resultobj = Py_BuildValue("l",_result);
1901 return _resultobj;
1902 }
1903
1904 #define wxPoint_y_set(_swigobj,_swigval) (_swigobj->y = _swigval,_swigval)
1905 static PyObject *_wrap_wxPoint_y_set(PyObject *self, PyObject *args, PyObject *kwargs) {
1906 PyObject * _resultobj;
1907 long _result;
1908 wxPoint * _arg0;
1909 long _arg1;
1910 wxPoint temp;
1911 PyObject * _obj0 = 0;
1912 char *_kwnames[] = { "self","y", NULL };
1913
1914 self = self;
1915 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxPoint_y_set",_kwnames,&_obj0,&_arg1))
1916 return NULL;
1917 {
1918 _arg0 = &temp;
1919 if (! wxPoint_helper(_obj0, &_arg0))
1920 return NULL;
1921 }
1922 {
1923 PyThreadState* __tstate = wxPyBeginAllowThreads();
1924 _result = (long )wxPoint_y_set(_arg0,_arg1);
1925
1926 wxPyEndAllowThreads(__tstate);
1927 if (PyErr_Occurred()) return NULL;
1928 } _resultobj = Py_BuildValue("l",_result);
1929 return _resultobj;
1930 }
1931
1932 #define wxPoint_y_get(_swigobj) ((long ) _swigobj->y)
1933 static PyObject *_wrap_wxPoint_y_get(PyObject *self, PyObject *args, PyObject *kwargs) {
1934 PyObject * _resultobj;
1935 long _result;
1936 wxPoint * _arg0;
1937 wxPoint temp;
1938 PyObject * _obj0 = 0;
1939 char *_kwnames[] = { "self", NULL };
1940
1941 self = self;
1942 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPoint_y_get",_kwnames,&_obj0))
1943 return NULL;
1944 {
1945 _arg0 = &temp;
1946 if (! wxPoint_helper(_obj0, &_arg0))
1947 return NULL;
1948 }
1949 {
1950 PyThreadState* __tstate = wxPyBeginAllowThreads();
1951 _result = (long )wxPoint_y_get(_arg0);
1952
1953 wxPyEndAllowThreads(__tstate);
1954 if (PyErr_Occurred()) return NULL;
1955 } _resultobj = Py_BuildValue("l",_result);
1956 return _resultobj;
1957 }
1958
1959 #define new_wxPoint(_swigarg0,_swigarg1) (new wxPoint(_swigarg0,_swigarg1))
1960 static PyObject *_wrap_new_wxPoint(PyObject *self, PyObject *args, PyObject *kwargs) {
1961 PyObject * _resultobj;
1962 wxPoint * _result;
1963 long _arg0 = (long ) 0;
1964 long _arg1 = (long ) 0;
1965 char *_kwnames[] = { "x","y", NULL };
1966 char _ptemp[128];
1967
1968 self = self;
1969 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|ll:new_wxPoint",_kwnames,&_arg0,&_arg1))
1970 return NULL;
1971 {
1972 PyThreadState* __tstate = wxPyBeginAllowThreads();
1973 _result = (wxPoint *)new_wxPoint(_arg0,_arg1);
1974
1975 wxPyEndAllowThreads(__tstate);
1976 if (PyErr_Occurred()) return NULL;
1977 } if (_result) {
1978 SWIG_MakePtr(_ptemp, (char *) _result,"_wxPoint_p");
1979 _resultobj = Py_BuildValue("s",_ptemp);
1980 } else {
1981 Py_INCREF(Py_None);
1982 _resultobj = Py_None;
1983 }
1984 return _resultobj;
1985 }
1986
1987 #define delete_wxPoint(_swigobj) (delete _swigobj)
1988 static PyObject *_wrap_delete_wxPoint(PyObject *self, PyObject *args, PyObject *kwargs) {
1989 PyObject * _resultobj;
1990 wxPoint * _arg0;
1991 wxPoint temp;
1992 PyObject * _obj0 = 0;
1993 char *_kwnames[] = { "self", NULL };
1994
1995 self = self;
1996 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxPoint",_kwnames,&_obj0))
1997 return NULL;
1998 {
1999 _arg0 = &temp;
2000 if (! wxPoint_helper(_obj0, &_arg0))
2001 return NULL;
2002 }
2003 {
2004 PyThreadState* __tstate = wxPyBeginAllowThreads();
2005 delete_wxPoint(_arg0);
2006
2007 wxPyEndAllowThreads(__tstate);
2008 if (PyErr_Occurred()) return NULL;
2009 } Py_INCREF(Py_None);
2010 _resultobj = Py_None;
2011 return _resultobj;
2012 }
2013
2014 static void wxPoint_Set(wxPoint *self,long x,long y) {
2015 self->x = x;
2016 self->y = y;
2017 }
2018 static PyObject *_wrap_wxPoint_Set(PyObject *self, PyObject *args, PyObject *kwargs) {
2019 PyObject * _resultobj;
2020 wxPoint * _arg0;
2021 long _arg1;
2022 long _arg2;
2023 wxPoint temp;
2024 PyObject * _obj0 = 0;
2025 char *_kwnames[] = { "self","x","y", NULL };
2026
2027 self = self;
2028 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oll:wxPoint_Set",_kwnames,&_obj0,&_arg1,&_arg2))
2029 return NULL;
2030 {
2031 _arg0 = &temp;
2032 if (! wxPoint_helper(_obj0, &_arg0))
2033 return NULL;
2034 }
2035 {
2036 PyThreadState* __tstate = wxPyBeginAllowThreads();
2037 wxPoint_Set(_arg0,_arg1,_arg2);
2038
2039 wxPyEndAllowThreads(__tstate);
2040 if (PyErr_Occurred()) return NULL;
2041 } Py_INCREF(Py_None);
2042 _resultobj = Py_None;
2043 return _resultobj;
2044 }
2045
2046 static PyObject * wxPoint_asTuple(wxPoint *self) {
2047 wxPyBeginBlockThreads();
2048 PyObject* tup = PyTuple_New(2);
2049 PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(self->x));
2050 PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(self->y));
2051 wxPyEndBlockThreads();
2052 return tup;
2053 }
2054 static PyObject *_wrap_wxPoint_asTuple(PyObject *self, PyObject *args, PyObject *kwargs) {
2055 PyObject * _resultobj;
2056 PyObject * _result;
2057 wxPoint * _arg0;
2058 wxPoint temp;
2059 PyObject * _obj0 = 0;
2060 char *_kwnames[] = { "self", NULL };
2061
2062 self = self;
2063 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPoint_asTuple",_kwnames,&_obj0))
2064 return NULL;
2065 {
2066 _arg0 = &temp;
2067 if (! wxPoint_helper(_obj0, &_arg0))
2068 return NULL;
2069 }
2070 {
2071 PyThreadState* __tstate = wxPyBeginAllowThreads();
2072 _result = (PyObject *)wxPoint_asTuple(_arg0);
2073
2074 wxPyEndAllowThreads(__tstate);
2075 if (PyErr_Occurred()) return NULL;
2076 }{
2077 _resultobj = _result;
2078 }
2079 return _resultobj;
2080 }
2081
2082 static wxPoint wxPoint___add__(wxPoint *self,const wxPoint * p) {
2083 if (! p) return *self;
2084 return *self + *p;
2085 }
2086 static PyObject *_wrap_wxPoint___add__(PyObject *self, PyObject *args, PyObject *kwargs) {
2087 PyObject * _resultobj;
2088 wxPoint * _result;
2089 wxPoint * _arg0;
2090 wxPoint * _arg1;
2091 wxPoint temp;
2092 PyObject * _obj0 = 0;
2093 wxPoint temp0;
2094 PyObject * _obj1 = 0;
2095 char *_kwnames[] = { "self","p", NULL };
2096 char _ptemp[128];
2097
2098 self = self;
2099 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPoint___add__",_kwnames,&_obj0,&_obj1))
2100 return NULL;
2101 {
2102 _arg0 = &temp;
2103 if (! wxPoint_helper(_obj0, &_arg0))
2104 return NULL;
2105 }
2106 {
2107 _arg1 = &temp0;
2108 if (! wxPoint_helper(_obj1, &_arg1))
2109 return NULL;
2110 }
2111 {
2112 PyThreadState* __tstate = wxPyBeginAllowThreads();
2113 _result = new wxPoint (wxPoint___add__(_arg0,_arg1));
2114
2115 wxPyEndAllowThreads(__tstate);
2116 if (PyErr_Occurred()) return NULL;
2117 } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p");
2118 _resultobj = Py_BuildValue("s",_ptemp);
2119 return _resultobj;
2120 }
2121
2122 static wxPoint wxPoint___sub__(wxPoint *self,const wxPoint * p) {
2123 if (! p) return *self;
2124 return *self - *p;
2125 }
2126 static PyObject *_wrap_wxPoint___sub__(PyObject *self, PyObject *args, PyObject *kwargs) {
2127 PyObject * _resultobj;
2128 wxPoint * _result;
2129 wxPoint * _arg0;
2130 wxPoint * _arg1;
2131 wxPoint temp;
2132 PyObject * _obj0 = 0;
2133 wxPoint temp0;
2134 PyObject * _obj1 = 0;
2135 char *_kwnames[] = { "self","p", NULL };
2136 char _ptemp[128];
2137
2138 self = self;
2139 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPoint___sub__",_kwnames,&_obj0,&_obj1))
2140 return NULL;
2141 {
2142 _arg0 = &temp;
2143 if (! wxPoint_helper(_obj0, &_arg0))
2144 return NULL;
2145 }
2146 {
2147 _arg1 = &temp0;
2148 if (! wxPoint_helper(_obj1, &_arg1))
2149 return NULL;
2150 }
2151 {
2152 PyThreadState* __tstate = wxPyBeginAllowThreads();
2153 _result = new wxPoint (wxPoint___sub__(_arg0,_arg1));
2154
2155 wxPyEndAllowThreads(__tstate);
2156 if (PyErr_Occurred()) return NULL;
2157 } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p");
2158 _resultobj = Py_BuildValue("s",_ptemp);
2159 return _resultobj;
2160 }
2161
2162 static int wxPoint___cmp__(wxPoint *self,const wxPoint * p) {
2163 if (! p) return 1;
2164 if (*self == *p) return 0;
2165 return -1;
2166 }
2167 static PyObject *_wrap_wxPoint___cmp__(PyObject *self, PyObject *args, PyObject *kwargs) {
2168 PyObject * _resultobj;
2169 int _result;
2170 wxPoint * _arg0;
2171 wxPoint * _arg1;
2172 wxPoint temp;
2173 PyObject * _obj0 = 0;
2174 wxPoint temp0;
2175 PyObject * _obj1 = 0;
2176 char *_kwnames[] = { "self","p", NULL };
2177
2178 self = self;
2179 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPoint___cmp__",_kwnames,&_obj0,&_obj1))
2180 return NULL;
2181 {
2182 _arg0 = &temp;
2183 if (! wxPoint_helper(_obj0, &_arg0))
2184 return NULL;
2185 }
2186 {
2187 _arg1 = &temp0;
2188 if (! wxPoint_helper(_obj1, &_arg1))
2189 return NULL;
2190 }
2191 {
2192 PyThreadState* __tstate = wxPyBeginAllowThreads();
2193 _result = (int )wxPoint___cmp__(_arg0,_arg1);
2194
2195 wxPyEndAllowThreads(__tstate);
2196 if (PyErr_Occurred()) return NULL;
2197 } _resultobj = Py_BuildValue("i",_result);
2198 return _resultobj;
2199 }
2200
2201 #define new_wxRect(_swigarg0,_swigarg1,_swigarg2,_swigarg3) (new wxRect(_swigarg0,_swigarg1,_swigarg2,_swigarg3))
2202 static PyObject *_wrap_new_wxRect(PyObject *self, PyObject *args, PyObject *kwargs) {
2203 PyObject * _resultobj;
2204 wxRect * _result;
2205 int _arg0 = (int ) 0;
2206 int _arg1 = (int ) 0;
2207 int _arg2 = (int ) 0;
2208 int _arg3 = (int ) 0;
2209 char *_kwnames[] = { "x","y","w","h", NULL };
2210 char _ptemp[128];
2211
2212 self = self;
2213 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|iiii:new_wxRect",_kwnames,&_arg0,&_arg1,&_arg2,&_arg3))
2214 return NULL;
2215 {
2216 PyThreadState* __tstate = wxPyBeginAllowThreads();
2217 _result = (wxRect *)new_wxRect(_arg0,_arg1,_arg2,_arg3);
2218
2219 wxPyEndAllowThreads(__tstate);
2220 if (PyErr_Occurred()) return NULL;
2221 } if (_result) {
2222 SWIG_MakePtr(_ptemp, (char *) _result,"_wxRect_p");
2223 _resultobj = Py_BuildValue("s",_ptemp);
2224 } else {
2225 Py_INCREF(Py_None);
2226 _resultobj = Py_None;
2227 }
2228 return _resultobj;
2229 }
2230
2231 #define delete_wxRect(_swigobj) (delete _swigobj)
2232 static PyObject *_wrap_delete_wxRect(PyObject *self, PyObject *args, PyObject *kwargs) {
2233 PyObject * _resultobj;
2234 wxRect * _arg0;
2235 wxRect temp;
2236 PyObject * _obj0 = 0;
2237 char *_kwnames[] = { "self", NULL };
2238
2239 self = self;
2240 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxRect",_kwnames,&_obj0))
2241 return NULL;
2242 {
2243 _arg0 = &temp;
2244 if (! wxRect_helper(_obj0, &_arg0))
2245 return NULL;
2246 }
2247 {
2248 PyThreadState* __tstate = wxPyBeginAllowThreads();
2249 delete_wxRect(_arg0);
2250
2251 wxPyEndAllowThreads(__tstate);
2252 if (PyErr_Occurred()) return NULL;
2253 } Py_INCREF(Py_None);
2254 _resultobj = Py_None;
2255 return _resultobj;
2256 }
2257
2258 #define wxRect_GetX(_swigobj) (_swigobj->GetX())
2259 static PyObject *_wrap_wxRect_GetX(PyObject *self, PyObject *args, PyObject *kwargs) {
2260 PyObject * _resultobj;
2261 int _result;
2262 wxRect * _arg0;
2263 wxRect temp;
2264 PyObject * _obj0 = 0;
2265 char *_kwnames[] = { "self", NULL };
2266
2267 self = self;
2268 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetX",_kwnames,&_obj0))
2269 return NULL;
2270 {
2271 _arg0 = &temp;
2272 if (! wxRect_helper(_obj0, &_arg0))
2273 return NULL;
2274 }
2275 {
2276 PyThreadState* __tstate = wxPyBeginAllowThreads();
2277 _result = (int )wxRect_GetX(_arg0);
2278
2279 wxPyEndAllowThreads(__tstate);
2280 if (PyErr_Occurred()) return NULL;
2281 } _resultobj = Py_BuildValue("i",_result);
2282 return _resultobj;
2283 }
2284
2285 #define wxRect_SetX(_swigobj,_swigarg0) (_swigobj->SetX(_swigarg0))
2286 static PyObject *_wrap_wxRect_SetX(PyObject *self, PyObject *args, PyObject *kwargs) {
2287 PyObject * _resultobj;
2288 wxRect * _arg0;
2289 int _arg1;
2290 wxRect temp;
2291 PyObject * _obj0 = 0;
2292 char *_kwnames[] = { "self","X", NULL };
2293
2294 self = self;
2295 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetX",_kwnames,&_obj0,&_arg1))
2296 return NULL;
2297 {
2298 _arg0 = &temp;
2299 if (! wxRect_helper(_obj0, &_arg0))
2300 return NULL;
2301 }
2302 {
2303 PyThreadState* __tstate = wxPyBeginAllowThreads();
2304 wxRect_SetX(_arg0,_arg1);
2305
2306 wxPyEndAllowThreads(__tstate);
2307 if (PyErr_Occurred()) return NULL;
2308 } Py_INCREF(Py_None);
2309 _resultobj = Py_None;
2310 return _resultobj;
2311 }
2312
2313 #define wxRect_GetY(_swigobj) (_swigobj->GetY())
2314 static PyObject *_wrap_wxRect_GetY(PyObject *self, PyObject *args, PyObject *kwargs) {
2315 PyObject * _resultobj;
2316 int _result;
2317 wxRect * _arg0;
2318 wxRect temp;
2319 PyObject * _obj0 = 0;
2320 char *_kwnames[] = { "self", NULL };
2321
2322 self = self;
2323 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetY",_kwnames,&_obj0))
2324 return NULL;
2325 {
2326 _arg0 = &temp;
2327 if (! wxRect_helper(_obj0, &_arg0))
2328 return NULL;
2329 }
2330 {
2331 PyThreadState* __tstate = wxPyBeginAllowThreads();
2332 _result = (int )wxRect_GetY(_arg0);
2333
2334 wxPyEndAllowThreads(__tstate);
2335 if (PyErr_Occurred()) return NULL;
2336 } _resultobj = Py_BuildValue("i",_result);
2337 return _resultobj;
2338 }
2339
2340 #define wxRect_SetY(_swigobj,_swigarg0) (_swigobj->SetY(_swigarg0))
2341 static PyObject *_wrap_wxRect_SetY(PyObject *self, PyObject *args, PyObject *kwargs) {
2342 PyObject * _resultobj;
2343 wxRect * _arg0;
2344 int _arg1;
2345 wxRect temp;
2346 PyObject * _obj0 = 0;
2347 char *_kwnames[] = { "self","Y", NULL };
2348
2349 self = self;
2350 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetY",_kwnames,&_obj0,&_arg1))
2351 return NULL;
2352 {
2353 _arg0 = &temp;
2354 if (! wxRect_helper(_obj0, &_arg0))
2355 return NULL;
2356 }
2357 {
2358 PyThreadState* __tstate = wxPyBeginAllowThreads();
2359 wxRect_SetY(_arg0,_arg1);
2360
2361 wxPyEndAllowThreads(__tstate);
2362 if (PyErr_Occurred()) return NULL;
2363 } Py_INCREF(Py_None);
2364 _resultobj = Py_None;
2365 return _resultobj;
2366 }
2367
2368 #define wxRect_GetWidth(_swigobj) (_swigobj->GetWidth())
2369 static PyObject *_wrap_wxRect_GetWidth(PyObject *self, PyObject *args, PyObject *kwargs) {
2370 PyObject * _resultobj;
2371 int _result;
2372 wxRect * _arg0;
2373 wxRect temp;
2374 PyObject * _obj0 = 0;
2375 char *_kwnames[] = { "self", NULL };
2376
2377 self = self;
2378 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetWidth",_kwnames,&_obj0))
2379 return NULL;
2380 {
2381 _arg0 = &temp;
2382 if (! wxRect_helper(_obj0, &_arg0))
2383 return NULL;
2384 }
2385 {
2386 PyThreadState* __tstate = wxPyBeginAllowThreads();
2387 _result = (int )wxRect_GetWidth(_arg0);
2388
2389 wxPyEndAllowThreads(__tstate);
2390 if (PyErr_Occurred()) return NULL;
2391 } _resultobj = Py_BuildValue("i",_result);
2392 return _resultobj;
2393 }
2394
2395 #define wxRect_SetWidth(_swigobj,_swigarg0) (_swigobj->SetWidth(_swigarg0))
2396 static PyObject *_wrap_wxRect_SetWidth(PyObject *self, PyObject *args, PyObject *kwargs) {
2397 PyObject * _resultobj;
2398 wxRect * _arg0;
2399 int _arg1;
2400 wxRect temp;
2401 PyObject * _obj0 = 0;
2402 char *_kwnames[] = { "self","w", NULL };
2403
2404 self = self;
2405 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetWidth",_kwnames,&_obj0,&_arg1))
2406 return NULL;
2407 {
2408 _arg0 = &temp;
2409 if (! wxRect_helper(_obj0, &_arg0))
2410 return NULL;
2411 }
2412 {
2413 PyThreadState* __tstate = wxPyBeginAllowThreads();
2414 wxRect_SetWidth(_arg0,_arg1);
2415
2416 wxPyEndAllowThreads(__tstate);
2417 if (PyErr_Occurred()) return NULL;
2418 } Py_INCREF(Py_None);
2419 _resultobj = Py_None;
2420 return _resultobj;
2421 }
2422
2423 #define wxRect_GetHeight(_swigobj) (_swigobj->GetHeight())
2424 static PyObject *_wrap_wxRect_GetHeight(PyObject *self, PyObject *args, PyObject *kwargs) {
2425 PyObject * _resultobj;
2426 int _result;
2427 wxRect * _arg0;
2428 wxRect temp;
2429 PyObject * _obj0 = 0;
2430 char *_kwnames[] = { "self", NULL };
2431
2432 self = self;
2433 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetHeight",_kwnames,&_obj0))
2434 return NULL;
2435 {
2436 _arg0 = &temp;
2437 if (! wxRect_helper(_obj0, &_arg0))
2438 return NULL;
2439 }
2440 {
2441 PyThreadState* __tstate = wxPyBeginAllowThreads();
2442 _result = (int )wxRect_GetHeight(_arg0);
2443
2444 wxPyEndAllowThreads(__tstate);
2445 if (PyErr_Occurred()) return NULL;
2446 } _resultobj = Py_BuildValue("i",_result);
2447 return _resultobj;
2448 }
2449
2450 #define wxRect_SetHeight(_swigobj,_swigarg0) (_swigobj->SetHeight(_swigarg0))
2451 static PyObject *_wrap_wxRect_SetHeight(PyObject *self, PyObject *args, PyObject *kwargs) {
2452 PyObject * _resultobj;
2453 wxRect * _arg0;
2454 int _arg1;
2455 wxRect temp;
2456 PyObject * _obj0 = 0;
2457 char *_kwnames[] = { "self","h", NULL };
2458
2459 self = self;
2460 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetHeight",_kwnames,&_obj0,&_arg1))
2461 return NULL;
2462 {
2463 _arg0 = &temp;
2464 if (! wxRect_helper(_obj0, &_arg0))
2465 return NULL;
2466 }
2467 {
2468 PyThreadState* __tstate = wxPyBeginAllowThreads();
2469 wxRect_SetHeight(_arg0,_arg1);
2470
2471 wxPyEndAllowThreads(__tstate);
2472 if (PyErr_Occurred()) return NULL;
2473 } Py_INCREF(Py_None);
2474 _resultobj = Py_None;
2475 return _resultobj;
2476 }
2477
2478 #define wxRect_GetPosition(_swigobj) (_swigobj->GetPosition())
2479 static PyObject *_wrap_wxRect_GetPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
2480 PyObject * _resultobj;
2481 wxPoint * _result;
2482 wxRect * _arg0;
2483 wxRect temp;
2484 PyObject * _obj0 = 0;
2485 char *_kwnames[] = { "self", NULL };
2486 char _ptemp[128];
2487
2488 self = self;
2489 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetPosition",_kwnames,&_obj0))
2490 return NULL;
2491 {
2492 _arg0 = &temp;
2493 if (! wxRect_helper(_obj0, &_arg0))
2494 return NULL;
2495 }
2496 {
2497 PyThreadState* __tstate = wxPyBeginAllowThreads();
2498 _result = new wxPoint (wxRect_GetPosition(_arg0));
2499
2500 wxPyEndAllowThreads(__tstate);
2501 if (PyErr_Occurred()) return NULL;
2502 } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p");
2503 _resultobj = Py_BuildValue("s",_ptemp);
2504 return _resultobj;
2505 }
2506
2507 #define wxRect_GetSize(_swigobj) (_swigobj->GetSize())
2508 static PyObject *_wrap_wxRect_GetSize(PyObject *self, PyObject *args, PyObject *kwargs) {
2509 PyObject * _resultobj;
2510 wxSize * _result;
2511 wxRect * _arg0;
2512 wxRect temp;
2513 PyObject * _obj0 = 0;
2514 char *_kwnames[] = { "self", NULL };
2515 char _ptemp[128];
2516
2517 self = self;
2518 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetSize",_kwnames,&_obj0))
2519 return NULL;
2520 {
2521 _arg0 = &temp;
2522 if (! wxRect_helper(_obj0, &_arg0))
2523 return NULL;
2524 }
2525 {
2526 PyThreadState* __tstate = wxPyBeginAllowThreads();
2527 _result = new wxSize (wxRect_GetSize(_arg0));
2528
2529 wxPyEndAllowThreads(__tstate);
2530 if (PyErr_Occurred()) return NULL;
2531 } SWIG_MakePtr(_ptemp, (void *) _result,"_wxSize_p");
2532 _resultobj = Py_BuildValue("s",_ptemp);
2533 return _resultobj;
2534 }
2535
2536 #define wxRect_GetLeft(_swigobj) (_swigobj->GetLeft())
2537 static PyObject *_wrap_wxRect_GetLeft(PyObject *self, PyObject *args, PyObject *kwargs) {
2538 PyObject * _resultobj;
2539 int _result;
2540 wxRect * _arg0;
2541 wxRect temp;
2542 PyObject * _obj0 = 0;
2543 char *_kwnames[] = { "self", NULL };
2544
2545 self = self;
2546 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetLeft",_kwnames,&_obj0))
2547 return NULL;
2548 {
2549 _arg0 = &temp;
2550 if (! wxRect_helper(_obj0, &_arg0))
2551 return NULL;
2552 }
2553 {
2554 PyThreadState* __tstate = wxPyBeginAllowThreads();
2555 _result = (int )wxRect_GetLeft(_arg0);
2556
2557 wxPyEndAllowThreads(__tstate);
2558 if (PyErr_Occurred()) return NULL;
2559 } _resultobj = Py_BuildValue("i",_result);
2560 return _resultobj;
2561 }
2562
2563 #define wxRect_GetTop(_swigobj) (_swigobj->GetTop())
2564 static PyObject *_wrap_wxRect_GetTop(PyObject *self, PyObject *args, PyObject *kwargs) {
2565 PyObject * _resultobj;
2566 int _result;
2567 wxRect * _arg0;
2568 wxRect temp;
2569 PyObject * _obj0 = 0;
2570 char *_kwnames[] = { "self", NULL };
2571
2572 self = self;
2573 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetTop",_kwnames,&_obj0))
2574 return NULL;
2575 {
2576 _arg0 = &temp;
2577 if (! wxRect_helper(_obj0, &_arg0))
2578 return NULL;
2579 }
2580 {
2581 PyThreadState* __tstate = wxPyBeginAllowThreads();
2582 _result = (int )wxRect_GetTop(_arg0);
2583
2584 wxPyEndAllowThreads(__tstate);
2585 if (PyErr_Occurred()) return NULL;
2586 } _resultobj = Py_BuildValue("i",_result);
2587 return _resultobj;
2588 }
2589
2590 #define wxRect_GetBottom(_swigobj) (_swigobj->GetBottom())
2591 static PyObject *_wrap_wxRect_GetBottom(PyObject *self, PyObject *args, PyObject *kwargs) {
2592 PyObject * _resultobj;
2593 int _result;
2594 wxRect * _arg0;
2595 wxRect temp;
2596 PyObject * _obj0 = 0;
2597 char *_kwnames[] = { "self", NULL };
2598
2599 self = self;
2600 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetBottom",_kwnames,&_obj0))
2601 return NULL;
2602 {
2603 _arg0 = &temp;
2604 if (! wxRect_helper(_obj0, &_arg0))
2605 return NULL;
2606 }
2607 {
2608 PyThreadState* __tstate = wxPyBeginAllowThreads();
2609 _result = (int )wxRect_GetBottom(_arg0);
2610
2611 wxPyEndAllowThreads(__tstate);
2612 if (PyErr_Occurred()) return NULL;
2613 } _resultobj = Py_BuildValue("i",_result);
2614 return _resultobj;
2615 }
2616
2617 #define wxRect_GetRight(_swigobj) (_swigobj->GetRight())
2618 static PyObject *_wrap_wxRect_GetRight(PyObject *self, PyObject *args, PyObject *kwargs) {
2619 PyObject * _resultobj;
2620 int _result;
2621 wxRect * _arg0;
2622 wxRect temp;
2623 PyObject * _obj0 = 0;
2624 char *_kwnames[] = { "self", NULL };
2625
2626 self = self;
2627 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetRight",_kwnames,&_obj0))
2628 return NULL;
2629 {
2630 _arg0 = &temp;
2631 if (! wxRect_helper(_obj0, &_arg0))
2632 return NULL;
2633 }
2634 {
2635 PyThreadState* __tstate = wxPyBeginAllowThreads();
2636 _result = (int )wxRect_GetRight(_arg0);
2637
2638 wxPyEndAllowThreads(__tstate);
2639 if (PyErr_Occurred()) return NULL;
2640 } _resultobj = Py_BuildValue("i",_result);
2641 return _resultobj;
2642 }
2643
2644 #define wxRect_SetLeft(_swigobj,_swigarg0) (_swigobj->SetLeft(_swigarg0))
2645 static PyObject *_wrap_wxRect_SetLeft(PyObject *self, PyObject *args, PyObject *kwargs) {
2646 PyObject * _resultobj;
2647 wxRect * _arg0;
2648 int _arg1;
2649 wxRect temp;
2650 PyObject * _obj0 = 0;
2651 char *_kwnames[] = { "self","left", NULL };
2652
2653 self = self;
2654 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetLeft",_kwnames,&_obj0,&_arg1))
2655 return NULL;
2656 {
2657 _arg0 = &temp;
2658 if (! wxRect_helper(_obj0, &_arg0))
2659 return NULL;
2660 }
2661 {
2662 PyThreadState* __tstate = wxPyBeginAllowThreads();
2663 wxRect_SetLeft(_arg0,_arg1);
2664
2665 wxPyEndAllowThreads(__tstate);
2666 if (PyErr_Occurred()) return NULL;
2667 } Py_INCREF(Py_None);
2668 _resultobj = Py_None;
2669 return _resultobj;
2670 }
2671
2672 #define wxRect_SetRight(_swigobj,_swigarg0) (_swigobj->SetRight(_swigarg0))
2673 static PyObject *_wrap_wxRect_SetRight(PyObject *self, PyObject *args, PyObject *kwargs) {
2674 PyObject * _resultobj;
2675 wxRect * _arg0;
2676 int _arg1;
2677 wxRect temp;
2678 PyObject * _obj0 = 0;
2679 char *_kwnames[] = { "self","right", NULL };
2680
2681 self = self;
2682 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetRight",_kwnames,&_obj0,&_arg1))
2683 return NULL;
2684 {
2685 _arg0 = &temp;
2686 if (! wxRect_helper(_obj0, &_arg0))
2687 return NULL;
2688 }
2689 {
2690 PyThreadState* __tstate = wxPyBeginAllowThreads();
2691 wxRect_SetRight(_arg0,_arg1);
2692
2693 wxPyEndAllowThreads(__tstate);
2694 if (PyErr_Occurred()) return NULL;
2695 } Py_INCREF(Py_None);
2696 _resultobj = Py_None;
2697 return _resultobj;
2698 }
2699
2700 #define wxRect_SetTop(_swigobj,_swigarg0) (_swigobj->SetTop(_swigarg0))
2701 static PyObject *_wrap_wxRect_SetTop(PyObject *self, PyObject *args, PyObject *kwargs) {
2702 PyObject * _resultobj;
2703 wxRect * _arg0;
2704 int _arg1;
2705 wxRect temp;
2706 PyObject * _obj0 = 0;
2707 char *_kwnames[] = { "self","top", NULL };
2708
2709 self = self;
2710 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetTop",_kwnames,&_obj0,&_arg1))
2711 return NULL;
2712 {
2713 _arg0 = &temp;
2714 if (! wxRect_helper(_obj0, &_arg0))
2715 return NULL;
2716 }
2717 {
2718 PyThreadState* __tstate = wxPyBeginAllowThreads();
2719 wxRect_SetTop(_arg0,_arg1);
2720
2721 wxPyEndAllowThreads(__tstate);
2722 if (PyErr_Occurred()) return NULL;
2723 } Py_INCREF(Py_None);
2724 _resultobj = Py_None;
2725 return _resultobj;
2726 }
2727
2728 #define wxRect_SetBottom(_swigobj,_swigarg0) (_swigobj->SetBottom(_swigarg0))
2729 static PyObject *_wrap_wxRect_SetBottom(PyObject *self, PyObject *args, PyObject *kwargs) {
2730 PyObject * _resultobj;
2731 wxRect * _arg0;
2732 int _arg1;
2733 wxRect temp;
2734 PyObject * _obj0 = 0;
2735 char *_kwnames[] = { "self","bottom", NULL };
2736
2737 self = self;
2738 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetBottom",_kwnames,&_obj0,&_arg1))
2739 return NULL;
2740 {
2741 _arg0 = &temp;
2742 if (! wxRect_helper(_obj0, &_arg0))
2743 return NULL;
2744 }
2745 {
2746 PyThreadState* __tstate = wxPyBeginAllowThreads();
2747 wxRect_SetBottom(_arg0,_arg1);
2748
2749 wxPyEndAllowThreads(__tstate);
2750 if (PyErr_Occurred()) return NULL;
2751 } Py_INCREF(Py_None);
2752 _resultobj = Py_None;
2753 return _resultobj;
2754 }
2755
2756 #define wxRect_Inflate(_swigobj,_swigarg0,_swigarg1) (_swigobj->Inflate(_swigarg0,_swigarg1))
2757 static PyObject *_wrap_wxRect_Inflate(PyObject *self, PyObject *args, PyObject *kwargs) {
2758 PyObject * _resultobj;
2759 wxRect * _arg0;
2760 int _arg1;
2761 int _arg2;
2762 wxRect temp;
2763 PyObject * _obj0 = 0;
2764 char *_kwnames[] = { "self","dx","dy", NULL };
2765
2766 self = self;
2767 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxRect_Inflate",_kwnames,&_obj0,&_arg1,&_arg2))
2768 return NULL;
2769 {
2770 _arg0 = &temp;
2771 if (! wxRect_helper(_obj0, &_arg0))
2772 return NULL;
2773 }
2774 {
2775 PyThreadState* __tstate = wxPyBeginAllowThreads();
2776 wxRect_Inflate(_arg0,_arg1,_arg2);
2777
2778 wxPyEndAllowThreads(__tstate);
2779 if (PyErr_Occurred()) return NULL;
2780 } Py_INCREF(Py_None);
2781 _resultobj = Py_None;
2782 return _resultobj;
2783 }
2784
2785 #define wxRect_Inside(_swigobj,_swigarg0,_swigarg1) (_swigobj->Inside(_swigarg0,_swigarg1))
2786 static PyObject *_wrap_wxRect_Inside(PyObject *self, PyObject *args, PyObject *kwargs) {
2787 PyObject * _resultobj;
2788 bool _result;
2789 wxRect * _arg0;
2790 int _arg1;
2791 int _arg2;
2792 wxRect temp;
2793 PyObject * _obj0 = 0;
2794 char *_kwnames[] = { "self","cx","cy", NULL };
2795
2796 self = self;
2797 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxRect_Inside",_kwnames,&_obj0,&_arg1,&_arg2))
2798 return NULL;
2799 {
2800 _arg0 = &temp;
2801 if (! wxRect_helper(_obj0, &_arg0))
2802 return NULL;
2803 }
2804 {
2805 PyThreadState* __tstate = wxPyBeginAllowThreads();
2806 _result = (bool )wxRect_Inside(_arg0,_arg1,_arg2);
2807
2808 wxPyEndAllowThreads(__tstate);
2809 if (PyErr_Occurred()) return NULL;
2810 } _resultobj = Py_BuildValue("i",_result);
2811 return _resultobj;
2812 }
2813
2814 #define wxRect_x_set(_swigobj,_swigval) (_swigobj->x = _swigval,_swigval)
2815 static PyObject *_wrap_wxRect_x_set(PyObject *self, PyObject *args, PyObject *kwargs) {
2816 PyObject * _resultobj;
2817 int _result;
2818 wxRect * _arg0;
2819 int _arg1;
2820 wxRect temp;
2821 PyObject * _obj0 = 0;
2822 char *_kwnames[] = { "self","x", NULL };
2823
2824 self = self;
2825 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_x_set",_kwnames,&_obj0,&_arg1))
2826 return NULL;
2827 {
2828 _arg0 = &temp;
2829 if (! wxRect_helper(_obj0, &_arg0))
2830 return NULL;
2831 }
2832 {
2833 PyThreadState* __tstate = wxPyBeginAllowThreads();
2834 _result = (int )wxRect_x_set(_arg0,_arg1);
2835
2836 wxPyEndAllowThreads(__tstate);
2837 if (PyErr_Occurred()) return NULL;
2838 } _resultobj = Py_BuildValue("i",_result);
2839 return _resultobj;
2840 }
2841
2842 #define wxRect_x_get(_swigobj) ((int ) _swigobj->x)
2843 static PyObject *_wrap_wxRect_x_get(PyObject *self, PyObject *args, PyObject *kwargs) {
2844 PyObject * _resultobj;
2845 int _result;
2846 wxRect * _arg0;
2847 wxRect temp;
2848 PyObject * _obj0 = 0;
2849 char *_kwnames[] = { "self", NULL };
2850
2851 self = self;
2852 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_x_get",_kwnames,&_obj0))
2853 return NULL;
2854 {
2855 _arg0 = &temp;
2856 if (! wxRect_helper(_obj0, &_arg0))
2857 return NULL;
2858 }
2859 {
2860 PyThreadState* __tstate = wxPyBeginAllowThreads();
2861 _result = (int )wxRect_x_get(_arg0);
2862
2863 wxPyEndAllowThreads(__tstate);
2864 if (PyErr_Occurred()) return NULL;
2865 } _resultobj = Py_BuildValue("i",_result);
2866 return _resultobj;
2867 }
2868
2869 #define wxRect_y_set(_swigobj,_swigval) (_swigobj->y = _swigval,_swigval)
2870 static PyObject *_wrap_wxRect_y_set(PyObject *self, PyObject *args, PyObject *kwargs) {
2871 PyObject * _resultobj;
2872 int _result;
2873 wxRect * _arg0;
2874 int _arg1;
2875 wxRect temp;
2876 PyObject * _obj0 = 0;
2877 char *_kwnames[] = { "self","y", NULL };
2878
2879 self = self;
2880 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_y_set",_kwnames,&_obj0,&_arg1))
2881 return NULL;
2882 {
2883 _arg0 = &temp;
2884 if (! wxRect_helper(_obj0, &_arg0))
2885 return NULL;
2886 }
2887 {
2888 PyThreadState* __tstate = wxPyBeginAllowThreads();
2889 _result = (int )wxRect_y_set(_arg0,_arg1);
2890
2891 wxPyEndAllowThreads(__tstate);
2892 if (PyErr_Occurred()) return NULL;
2893 } _resultobj = Py_BuildValue("i",_result);
2894 return _resultobj;
2895 }
2896
2897 #define wxRect_y_get(_swigobj) ((int ) _swigobj->y)
2898 static PyObject *_wrap_wxRect_y_get(PyObject *self, PyObject *args, PyObject *kwargs) {
2899 PyObject * _resultobj;
2900 int _result;
2901 wxRect * _arg0;
2902 wxRect temp;
2903 PyObject * _obj0 = 0;
2904 char *_kwnames[] = { "self", NULL };
2905
2906 self = self;
2907 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_y_get",_kwnames,&_obj0))
2908 return NULL;
2909 {
2910 _arg0 = &temp;
2911 if (! wxRect_helper(_obj0, &_arg0))
2912 return NULL;
2913 }
2914 {
2915 PyThreadState* __tstate = wxPyBeginAllowThreads();
2916 _result = (int )wxRect_y_get(_arg0);
2917
2918 wxPyEndAllowThreads(__tstate);
2919 if (PyErr_Occurred()) return NULL;
2920 } _resultobj = Py_BuildValue("i",_result);
2921 return _resultobj;
2922 }
2923
2924 #define wxRect_width_set(_swigobj,_swigval) (_swigobj->width = _swigval,_swigval)
2925 static PyObject *_wrap_wxRect_width_set(PyObject *self, PyObject *args, PyObject *kwargs) {
2926 PyObject * _resultobj;
2927 int _result;
2928 wxRect * _arg0;
2929 int _arg1;
2930 wxRect temp;
2931 PyObject * _obj0 = 0;
2932 char *_kwnames[] = { "self","width", NULL };
2933
2934 self = self;
2935 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_width_set",_kwnames,&_obj0,&_arg1))
2936 return NULL;
2937 {
2938 _arg0 = &temp;
2939 if (! wxRect_helper(_obj0, &_arg0))
2940 return NULL;
2941 }
2942 {
2943 PyThreadState* __tstate = wxPyBeginAllowThreads();
2944 _result = (int )wxRect_width_set(_arg0,_arg1);
2945
2946 wxPyEndAllowThreads(__tstate);
2947 if (PyErr_Occurred()) return NULL;
2948 } _resultobj = Py_BuildValue("i",_result);
2949 return _resultobj;
2950 }
2951
2952 #define wxRect_width_get(_swigobj) ((int ) _swigobj->width)
2953 static PyObject *_wrap_wxRect_width_get(PyObject *self, PyObject *args, PyObject *kwargs) {
2954 PyObject * _resultobj;
2955 int _result;
2956 wxRect * _arg0;
2957 wxRect temp;
2958 PyObject * _obj0 = 0;
2959 char *_kwnames[] = { "self", NULL };
2960
2961 self = self;
2962 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_width_get",_kwnames,&_obj0))
2963 return NULL;
2964 {
2965 _arg0 = &temp;
2966 if (! wxRect_helper(_obj0, &_arg0))
2967 return NULL;
2968 }
2969 {
2970 PyThreadState* __tstate = wxPyBeginAllowThreads();
2971 _result = (int )wxRect_width_get(_arg0);
2972
2973 wxPyEndAllowThreads(__tstate);
2974 if (PyErr_Occurred()) return NULL;
2975 } _resultobj = Py_BuildValue("i",_result);
2976 return _resultobj;
2977 }
2978
2979 #define wxRect_height_set(_swigobj,_swigval) (_swigobj->height = _swigval,_swigval)
2980 static PyObject *_wrap_wxRect_height_set(PyObject *self, PyObject *args, PyObject *kwargs) {
2981 PyObject * _resultobj;
2982 int _result;
2983 wxRect * _arg0;
2984 int _arg1;
2985 wxRect temp;
2986 PyObject * _obj0 = 0;
2987 char *_kwnames[] = { "self","height", NULL };
2988
2989 self = self;
2990 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_height_set",_kwnames,&_obj0,&_arg1))
2991 return NULL;
2992 {
2993 _arg0 = &temp;
2994 if (! wxRect_helper(_obj0, &_arg0))
2995 return NULL;
2996 }
2997 {
2998 PyThreadState* __tstate = wxPyBeginAllowThreads();
2999 _result = (int )wxRect_height_set(_arg0,_arg1);
3000
3001 wxPyEndAllowThreads(__tstate);
3002 if (PyErr_Occurred()) return NULL;
3003 } _resultobj = Py_BuildValue("i",_result);
3004 return _resultobj;
3005 }
3006
3007 #define wxRect_height_get(_swigobj) ((int ) _swigobj->height)
3008 static PyObject *_wrap_wxRect_height_get(PyObject *self, PyObject *args, PyObject *kwargs) {
3009 PyObject * _resultobj;
3010 int _result;
3011 wxRect * _arg0;
3012 wxRect temp;
3013 PyObject * _obj0 = 0;
3014 char *_kwnames[] = { "self", NULL };
3015
3016 self = self;
3017 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_height_get",_kwnames,&_obj0))
3018 return NULL;
3019 {
3020 _arg0 = &temp;
3021 if (! wxRect_helper(_obj0, &_arg0))
3022 return NULL;
3023 }
3024 {
3025 PyThreadState* __tstate = wxPyBeginAllowThreads();
3026 _result = (int )wxRect_height_get(_arg0);
3027
3028 wxPyEndAllowThreads(__tstate);
3029 if (PyErr_Occurred()) return NULL;
3030 } _resultobj = Py_BuildValue("i",_result);
3031 return _resultobj;
3032 }
3033
3034 static PyObject * wxRect_asTuple(wxRect *self) {
3035 wxPyBeginBlockThreads();
3036 PyObject* tup = PyTuple_New(4);
3037 PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(self->x));
3038 PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(self->y));
3039 PyTuple_SET_ITEM(tup, 2, PyInt_FromLong(self->width));
3040 PyTuple_SET_ITEM(tup, 3, PyInt_FromLong(self->height));
3041 wxPyEndBlockThreads();
3042 return tup;
3043 }
3044 static PyObject *_wrap_wxRect_asTuple(PyObject *self, PyObject *args, PyObject *kwargs) {
3045 PyObject * _resultobj;
3046 PyObject * _result;
3047 wxRect * _arg0;
3048 wxRect temp;
3049 PyObject * _obj0 = 0;
3050 char *_kwnames[] = { "self", NULL };
3051
3052 self = self;
3053 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_asTuple",_kwnames,&_obj0))
3054 return NULL;
3055 {
3056 _arg0 = &temp;
3057 if (! wxRect_helper(_obj0, &_arg0))
3058 return NULL;
3059 }
3060 {
3061 PyThreadState* __tstate = wxPyBeginAllowThreads();
3062 _result = (PyObject *)wxRect_asTuple(_arg0);
3063
3064 wxPyEndAllowThreads(__tstate);
3065 if (PyErr_Occurred()) return NULL;
3066 }{
3067 _resultobj = _result;
3068 }
3069 return _resultobj;
3070 }
3071
3072 static wxRect wxRect___add__(wxRect *self,const wxRect * rect) {
3073 if (! rect) return *self;
3074 return *self + *rect;
3075 }
3076 static PyObject *_wrap_wxRect___add__(PyObject *self, PyObject *args, PyObject *kwargs) {
3077 PyObject * _resultobj;
3078 wxRect * _result;
3079 wxRect * _arg0;
3080 wxRect * _arg1;
3081 wxRect temp;
3082 PyObject * _obj0 = 0;
3083 wxRect temp0;
3084 PyObject * _obj1 = 0;
3085 char *_kwnames[] = { "self","rect", NULL };
3086 char _ptemp[128];
3087
3088 self = self;
3089 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxRect___add__",_kwnames,&_obj0,&_obj1))
3090 return NULL;
3091 {
3092 _arg0 = &temp;
3093 if (! wxRect_helper(_obj0, &_arg0))
3094 return NULL;
3095 }
3096 {
3097 _arg1 = &temp0;
3098 if (! wxRect_helper(_obj1, &_arg1))
3099 return NULL;
3100 }
3101 {
3102 PyThreadState* __tstate = wxPyBeginAllowThreads();
3103 _result = new wxRect (wxRect___add__(_arg0,_arg1));
3104
3105 wxPyEndAllowThreads(__tstate);
3106 if (PyErr_Occurred()) return NULL;
3107 } SWIG_MakePtr(_ptemp, (void *) _result,"_wxRect_p");
3108 _resultobj = Py_BuildValue("s",_ptemp);
3109 return _resultobj;
3110 }
3111
3112 static int wxRect___cmp__(wxRect *self,const wxRect * rect) {
3113 if (! rect) return 1;
3114 if (*self == *rect) return 0;
3115 return -1;
3116 }
3117 static PyObject *_wrap_wxRect___cmp__(PyObject *self, PyObject *args, PyObject *kwargs) {
3118 PyObject * _resultobj;
3119 int _result;
3120 wxRect * _arg0;
3121 wxRect * _arg1;
3122 wxRect temp;
3123 PyObject * _obj0 = 0;
3124 wxRect temp0;
3125 PyObject * _obj1 = 0;
3126 char *_kwnames[] = { "self","rect", NULL };
3127
3128 self = self;
3129 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxRect___cmp__",_kwnames,&_obj0,&_obj1))
3130 return NULL;
3131 {
3132 _arg0 = &temp;
3133 if (! wxRect_helper(_obj0, &_arg0))
3134 return NULL;
3135 }
3136 {
3137 _arg1 = &temp0;
3138 if (! wxRect_helper(_obj1, &_arg1))
3139 return NULL;
3140 }
3141 {
3142 PyThreadState* __tstate = wxPyBeginAllowThreads();
3143 _result = (int )wxRect___cmp__(_arg0,_arg1);
3144
3145 wxPyEndAllowThreads(__tstate);
3146 if (PyErr_Occurred()) return NULL;
3147 } _resultobj = Py_BuildValue("i",_result);
3148 return _resultobj;
3149 }
3150
3151 static void *SwigwxIndividualLayoutConstraintTowxObject(void *ptr) {
3152 wxIndividualLayoutConstraint *src;
3153 wxObject *dest;
3154 src = (wxIndividualLayoutConstraint *) ptr;
3155 dest = (wxObject *) src;
3156 return (void *) dest;
3157 }
3158
3159 #define wxIndividualLayoutConstraint_Above(_swigobj,_swigarg0,_swigarg1) (_swigobj->Above(_swigarg0,_swigarg1))
3160 static PyObject *_wrap_wxIndividualLayoutConstraint_Above(PyObject *self, PyObject *args, PyObject *kwargs) {
3161 PyObject * _resultobj;
3162 wxIndividualLayoutConstraint * _arg0;
3163 wxWindow * _arg1;
3164 int _arg2 = (int ) 0;
3165 PyObject * _argo0 = 0;
3166 PyObject * _argo1 = 0;
3167 char *_kwnames[] = { "self","otherWin","margin", NULL };
3168
3169 self = self;
3170 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxIndividualLayoutConstraint_Above",_kwnames,&_argo0,&_argo1,&_arg2))
3171 return NULL;
3172 if (_argo0) {
3173 if (_argo0 == Py_None) { _arg0 = NULL; }
3174 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) {
3175 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_Above. Expected _wxIndividualLayoutConstraint_p.");
3176 return NULL;
3177 }
3178 }
3179 if (_argo1) {
3180 if (_argo1 == Py_None) { _arg1 = NULL; }
3181 else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) {
3182 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxIndividualLayoutConstraint_Above. Expected _wxWindow_p.");
3183 return NULL;
3184 }
3185 }
3186 {
3187 PyThreadState* __tstate = wxPyBeginAllowThreads();
3188 wxIndividualLayoutConstraint_Above(_arg0,_arg1,_arg2);
3189
3190 wxPyEndAllowThreads(__tstate);
3191 if (PyErr_Occurred()) return NULL;
3192 } Py_INCREF(Py_None);
3193 _resultobj = Py_None;
3194 return _resultobj;
3195 }
3196
3197 #define wxIndividualLayoutConstraint_Absolute(_swigobj,_swigarg0) (_swigobj->Absolute(_swigarg0))
3198 static PyObject *_wrap_wxIndividualLayoutConstraint_Absolute(PyObject *self, PyObject *args, PyObject *kwargs) {
3199 PyObject * _resultobj;
3200 wxIndividualLayoutConstraint * _arg0;
3201 int _arg1;
3202 PyObject * _argo0 = 0;
3203 char *_kwnames[] = { "self","value", NULL };
3204
3205 self = self;
3206 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxIndividualLayoutConstraint_Absolute",_kwnames,&_argo0,&_arg1))
3207 return NULL;
3208 if (_argo0) {
3209 if (_argo0 == Py_None) { _arg0 = NULL; }
3210 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) {
3211 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_Absolute. Expected _wxIndividualLayoutConstraint_p.");
3212 return NULL;
3213 }
3214 }
3215 {
3216 PyThreadState* __tstate = wxPyBeginAllowThreads();
3217 wxIndividualLayoutConstraint_Absolute(_arg0,_arg1);
3218
3219 wxPyEndAllowThreads(__tstate);
3220 if (PyErr_Occurred()) return NULL;
3221 } Py_INCREF(Py_None);
3222 _resultobj = Py_None;
3223 return _resultobj;
3224 }
3225
3226 #define wxIndividualLayoutConstraint_AsIs(_swigobj) (_swigobj->AsIs())
3227 static PyObject *_wrap_wxIndividualLayoutConstraint_AsIs(PyObject *self, PyObject *args, PyObject *kwargs) {
3228 PyObject * _resultobj;
3229 wxIndividualLayoutConstraint * _arg0;
3230 PyObject * _argo0 = 0;
3231 char *_kwnames[] = { "self", NULL };
3232
3233 self = self;
3234 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxIndividualLayoutConstraint_AsIs",_kwnames,&_argo0))
3235 return NULL;
3236 if (_argo0) {
3237 if (_argo0 == Py_None) { _arg0 = NULL; }
3238 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) {
3239 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_AsIs. Expected _wxIndividualLayoutConstraint_p.");
3240 return NULL;
3241 }
3242 }
3243 {
3244 PyThreadState* __tstate = wxPyBeginAllowThreads();
3245 wxIndividualLayoutConstraint_AsIs(_arg0);
3246
3247 wxPyEndAllowThreads(__tstate);
3248 if (PyErr_Occurred()) return NULL;
3249 } Py_INCREF(Py_None);
3250 _resultobj = Py_None;
3251 return _resultobj;
3252 }
3253
3254 #define wxIndividualLayoutConstraint_Below(_swigobj,_swigarg0,_swigarg1) (_swigobj->Below(_swigarg0,_swigarg1))
3255 static PyObject *_wrap_wxIndividualLayoutConstraint_Below(PyObject *self, PyObject *args, PyObject *kwargs) {
3256 PyObject * _resultobj;
3257 wxIndividualLayoutConstraint * _arg0;
3258 wxWindow * _arg1;
3259 int _arg2 = (int ) 0;
3260 PyObject * _argo0 = 0;
3261 PyObject * _argo1 = 0;
3262 char *_kwnames[] = { "self","otherWin","margin", NULL };
3263
3264 self = self;
3265 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxIndividualLayoutConstraint_Below",_kwnames,&_argo0,&_argo1,&_arg2))
3266 return NULL;
3267 if (_argo0) {
3268 if (_argo0 == Py_None) { _arg0 = NULL; }
3269 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) {
3270 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_Below. Expected _wxIndividualLayoutConstraint_p.");
3271 return NULL;
3272 }
3273 }
3274 if (_argo1) {
3275 if (_argo1 == Py_None) { _arg1 = NULL; }
3276 else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) {
3277 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxIndividualLayoutConstraint_Below. Expected _wxWindow_p.");
3278 return NULL;
3279 }
3280 }
3281 {
3282 PyThreadState* __tstate = wxPyBeginAllowThreads();
3283 wxIndividualLayoutConstraint_Below(_arg0,_arg1,_arg2);
3284
3285 wxPyEndAllowThreads(__tstate);
3286 if (PyErr_Occurred()) return NULL;
3287 } Py_INCREF(Py_None);
3288 _resultobj = Py_None;
3289 return _resultobj;
3290 }
3291
3292 #define wxIndividualLayoutConstraint_Unconstrained(_swigobj) (_swigobj->Unconstrained())
3293 static PyObject *_wrap_wxIndividualLayoutConstraint_Unconstrained(PyObject *self, PyObject *args, PyObject *kwargs) {
3294 PyObject * _resultobj;
3295 wxIndividualLayoutConstraint * _arg0;
3296 PyObject * _argo0 = 0;
3297 char *_kwnames[] = { "self", NULL };
3298
3299 self = self;
3300 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxIndividualLayoutConstraint_Unconstrained",_kwnames,&_argo0))
3301 return NULL;
3302 if (_argo0) {
3303 if (_argo0 == Py_None) { _arg0 = NULL; }
3304 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) {
3305 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_Unconstrained. Expected _wxIndividualLayoutConstraint_p.");
3306 return NULL;
3307 }
3308 }
3309 {
3310 PyThreadState* __tstate = wxPyBeginAllowThreads();
3311 wxIndividualLayoutConstraint_Unconstrained(_arg0);
3312
3313 wxPyEndAllowThreads(__tstate);
3314 if (PyErr_Occurred()) return NULL;
3315 } Py_INCREF(Py_None);
3316 _resultobj = Py_None;
3317 return _resultobj;
3318 }
3319
3320 #define wxIndividualLayoutConstraint_LeftOf(_swigobj,_swigarg0,_swigarg1) (_swigobj->LeftOf(_swigarg0,_swigarg1))
3321 static PyObject *_wrap_wxIndividualLayoutConstraint_LeftOf(PyObject *self, PyObject *args, PyObject *kwargs) {
3322 PyObject * _resultobj;
3323 wxIndividualLayoutConstraint * _arg0;
3324 wxWindow * _arg1;
3325 int _arg2 = (int ) 0;
3326 PyObject * _argo0 = 0;
3327 PyObject * _argo1 = 0;
3328 char *_kwnames[] = { "self","otherWin","margin", NULL };
3329
3330 self = self;
3331 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxIndividualLayoutConstraint_LeftOf",_kwnames,&_argo0,&_argo1,&_arg2))
3332 return NULL;
3333 if (_argo0) {
3334 if (_argo0 == Py_None) { _arg0 = NULL; }
3335 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) {
3336 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_LeftOf. Expected _wxIndividualLayoutConstraint_p.");
3337 return NULL;
3338 }
3339 }
3340 if (_argo1) {
3341 if (_argo1 == Py_None) { _arg1 = NULL; }
3342 else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) {
3343 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxIndividualLayoutConstraint_LeftOf. Expected _wxWindow_p.");
3344 return NULL;
3345 }
3346 }
3347 {
3348 PyThreadState* __tstate = wxPyBeginAllowThreads();
3349 wxIndividualLayoutConstraint_LeftOf(_arg0,_arg1,_arg2);
3350
3351 wxPyEndAllowThreads(__tstate);
3352 if (PyErr_Occurred()) return NULL;
3353 } Py_INCREF(Py_None);
3354 _resultobj = Py_None;
3355 return _resultobj;
3356 }
3357
3358 #define wxIndividualLayoutConstraint_PercentOf(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->PercentOf(_swigarg0,_swigarg1,_swigarg2))
3359 static PyObject *_wrap_wxIndividualLayoutConstraint_PercentOf(PyObject *self, PyObject *args, PyObject *kwargs) {
3360 PyObject * _resultobj;
3361 wxIndividualLayoutConstraint * _arg0;
3362 wxWindow * _arg1;
3363 wxEdge _arg2;
3364 int _arg3;
3365 PyObject * _argo0 = 0;
3366 PyObject * _argo1 = 0;
3367 char *_kwnames[] = { "self","otherWin","edge","percent", NULL };
3368
3369 self = self;
3370 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOii:wxIndividualLayoutConstraint_PercentOf",_kwnames,&_argo0,&_argo1,&_arg2,&_arg3))
3371 return NULL;
3372 if (_argo0) {
3373 if (_argo0 == Py_None) { _arg0 = NULL; }
3374 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) {
3375 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_PercentOf. Expected _wxIndividualLayoutConstraint_p.");
3376 return NULL;
3377 }
3378 }
3379 if (_argo1) {
3380 if (_argo1 == Py_None) { _arg1 = NULL; }
3381 else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) {
3382 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxIndividualLayoutConstraint_PercentOf. Expected _wxWindow_p.");
3383 return NULL;
3384 }
3385 }
3386 {
3387 PyThreadState* __tstate = wxPyBeginAllowThreads();
3388 wxIndividualLayoutConstraint_PercentOf(_arg0,_arg1,_arg2,_arg3);
3389
3390 wxPyEndAllowThreads(__tstate);
3391 if (PyErr_Occurred()) return NULL;
3392 } Py_INCREF(Py_None);
3393 _resultobj = Py_None;
3394 return _resultobj;
3395 }
3396
3397 #define wxIndividualLayoutConstraint_RightOf(_swigobj,_swigarg0,_swigarg1) (_swigobj->RightOf(_swigarg0,_swigarg1))
3398 static PyObject *_wrap_wxIndividualLayoutConstraint_RightOf(PyObject *self, PyObject *args, PyObject *kwargs) {
3399 PyObject * _resultobj;
3400 wxIndividualLayoutConstraint * _arg0;
3401 wxWindow * _arg1;
3402 int _arg2 = (int ) 0;
3403 PyObject * _argo0 = 0;
3404 PyObject * _argo1 = 0;
3405 char *_kwnames[] = { "self","otherWin","margin", NULL };
3406
3407 self = self;
3408 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxIndividualLayoutConstraint_RightOf",_kwnames,&_argo0,&_argo1,&_arg2))
3409 return NULL;
3410 if (_argo0) {
3411 if (_argo0 == Py_None) { _arg0 = NULL; }
3412 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) {
3413 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_RightOf. Expected _wxIndividualLayoutConstraint_p.");
3414 return NULL;
3415 }
3416 }
3417 if (_argo1) {
3418 if (_argo1 == Py_None) { _arg1 = NULL; }
3419 else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) {
3420 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxIndividualLayoutConstraint_RightOf. Expected _wxWindow_p.");
3421 return NULL;
3422 }
3423 }
3424 {
3425 PyThreadState* __tstate = wxPyBeginAllowThreads();
3426 wxIndividualLayoutConstraint_RightOf(_arg0,_arg1,_arg2);
3427
3428 wxPyEndAllowThreads(__tstate);
3429 if (PyErr_Occurred()) return NULL;
3430 } Py_INCREF(Py_None);
3431 _resultobj = Py_None;
3432 return _resultobj;
3433 }
3434
3435 #define wxIndividualLayoutConstraint_SameAs(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->SameAs(_swigarg0,_swigarg1,_swigarg2))
3436 static PyObject *_wrap_wxIndividualLayoutConstraint_SameAs(PyObject *self, PyObject *args, PyObject *kwargs) {
3437 PyObject * _resultobj;
3438 wxIndividualLayoutConstraint * _arg0;
3439 wxWindow * _arg1;
3440 wxEdge _arg2;
3441 int _arg3 = (int ) 0;
3442 PyObject * _argo0 = 0;
3443 PyObject * _argo1 = 0;
3444 char *_kwnames[] = { "self","otherWin","edge","margin", NULL };
3445
3446 self = self;
3447 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi|i:wxIndividualLayoutConstraint_SameAs",_kwnames,&_argo0,&_argo1,&_arg2,&_arg3))
3448 return NULL;
3449 if (_argo0) {
3450 if (_argo0 == Py_None) { _arg0 = NULL; }
3451 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) {
3452 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_SameAs. Expected _wxIndividualLayoutConstraint_p.");
3453 return NULL;
3454 }
3455 }
3456 if (_argo1) {
3457 if (_argo1 == Py_None) { _arg1 = NULL; }
3458 else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) {
3459 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxIndividualLayoutConstraint_SameAs. Expected _wxWindow_p.");
3460 return NULL;
3461 }
3462 }
3463 {
3464 PyThreadState* __tstate = wxPyBeginAllowThreads();
3465 wxIndividualLayoutConstraint_SameAs(_arg0,_arg1,_arg2,_arg3);
3466
3467 wxPyEndAllowThreads(__tstate);
3468 if (PyErr_Occurred()) return NULL;
3469 } Py_INCREF(Py_None);
3470 _resultobj = Py_None;
3471 return _resultobj;
3472 }
3473
3474 #define wxIndividualLayoutConstraint_Set(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->Set(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4))
3475 static PyObject *_wrap_wxIndividualLayoutConstraint_Set(PyObject *self, PyObject *args, PyObject *kwargs) {
3476 PyObject * _resultobj;
3477 wxIndividualLayoutConstraint * _arg0;
3478 wxRelationship _arg1;
3479 wxWindow * _arg2;
3480 wxEdge _arg3;
3481 int _arg4 = (int ) 0;
3482 int _arg5 = (int ) 0;
3483 PyObject * _argo0 = 0;
3484 PyObject * _argo2 = 0;
3485 char *_kwnames[] = { "self","rel","otherWin","otherEdge","value","margin", NULL };
3486
3487 self = self;
3488 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiOi|ii:wxIndividualLayoutConstraint_Set",_kwnames,&_argo0,&_arg1,&_argo2,&_arg3,&_arg4,&_arg5))
3489 return NULL;
3490 if (_argo0) {
3491 if (_argo0 == Py_None) { _arg0 = NULL; }
3492 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) {
3493 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_Set. Expected _wxIndividualLayoutConstraint_p.");
3494 return NULL;
3495 }
3496 }
3497 if (_argo2) {
3498 if (_argo2 == Py_None) { _arg2 = NULL; }
3499 else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxWindow_p")) {
3500 PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxIndividualLayoutConstraint_Set. Expected _wxWindow_p.");
3501 return NULL;
3502 }
3503 }
3504 {
3505 PyThreadState* __tstate = wxPyBeginAllowThreads();
3506 wxIndividualLayoutConstraint_Set(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5);
3507
3508 wxPyEndAllowThreads(__tstate);
3509 if (PyErr_Occurred()) return NULL;
3510 } Py_INCREF(Py_None);
3511 _resultobj = Py_None;
3512 return _resultobj;
3513 }
3514
3515 static void *SwigwxLayoutConstraintsTowxObject(void *ptr) {
3516 wxLayoutConstraints *src;
3517 wxObject *dest;
3518 src = (wxLayoutConstraints *) ptr;
3519 dest = (wxObject *) src;
3520 return (void *) dest;
3521 }
3522
3523 #define new_wxLayoutConstraints() (new wxLayoutConstraints())
3524 static PyObject *_wrap_new_wxLayoutConstraints(PyObject *self, PyObject *args, PyObject *kwargs) {
3525 PyObject * _resultobj;
3526 wxLayoutConstraints * _result;
3527 char *_kwnames[] = { NULL };
3528 char _ptemp[128];
3529
3530 self = self;
3531 if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxLayoutConstraints",_kwnames))
3532 return NULL;
3533 {
3534 PyThreadState* __tstate = wxPyBeginAllowThreads();
3535 _result = (wxLayoutConstraints *)new_wxLayoutConstraints();
3536
3537 wxPyEndAllowThreads(__tstate);
3538 if (PyErr_Occurred()) return NULL;
3539 } if (_result) {
3540 SWIG_MakePtr(_ptemp, (char *) _result,"_wxLayoutConstraints_p");
3541 _resultobj = Py_BuildValue("s",_ptemp);
3542 } else {
3543 Py_INCREF(Py_None);
3544 _resultobj = Py_None;
3545 }
3546 return _resultobj;
3547 }
3548
3549 #define wxLayoutConstraints_bottom_get(_swigobj) (&_swigobj->bottom)
3550 static PyObject *_wrap_wxLayoutConstraints_bottom_get(PyObject *self, PyObject *args, PyObject *kwargs) {
3551 PyObject * _resultobj;
3552 wxIndividualLayoutConstraint * _result;
3553 wxLayoutConstraints * _arg0;
3554 PyObject * _argo0 = 0;
3555 char *_kwnames[] = { "self", NULL };
3556 char _ptemp[128];
3557
3558 self = self;
3559 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_bottom_get",_kwnames,&_argo0))
3560 return NULL;
3561 if (_argo0) {
3562 if (_argo0 == Py_None) { _arg0 = NULL; }
3563 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) {
3564 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_bottom_get. Expected _wxLayoutConstraints_p.");
3565 return NULL;
3566 }
3567 }
3568 {
3569 PyThreadState* __tstate = wxPyBeginAllowThreads();
3570 _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_bottom_get(_arg0);
3571
3572 wxPyEndAllowThreads(__tstate);
3573 if (PyErr_Occurred()) return NULL;
3574 } if (_result) {
3575 SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p");
3576 _resultobj = Py_BuildValue("s",_ptemp);
3577 } else {
3578 Py_INCREF(Py_None);
3579 _resultobj = Py_None;
3580 }
3581 return _resultobj;
3582 }
3583
3584 #define wxLayoutConstraints_centreX_get(_swigobj) (&_swigobj->centreX)
3585 static PyObject *_wrap_wxLayoutConstraints_centreX_get(PyObject *self, PyObject *args, PyObject *kwargs) {
3586 PyObject * _resultobj;
3587 wxIndividualLayoutConstraint * _result;
3588 wxLayoutConstraints * _arg0;
3589 PyObject * _argo0 = 0;
3590 char *_kwnames[] = { "self", NULL };
3591 char _ptemp[128];
3592
3593 self = self;
3594 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_centreX_get",_kwnames,&_argo0))
3595 return NULL;
3596 if (_argo0) {
3597 if (_argo0 == Py_None) { _arg0 = NULL; }
3598 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) {
3599 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_centreX_get. Expected _wxLayoutConstraints_p.");
3600 return NULL;
3601 }
3602 }
3603 {
3604 PyThreadState* __tstate = wxPyBeginAllowThreads();
3605 _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_centreX_get(_arg0);
3606
3607 wxPyEndAllowThreads(__tstate);
3608 if (PyErr_Occurred()) return NULL;
3609 } if (_result) {
3610 SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p");
3611 _resultobj = Py_BuildValue("s",_ptemp);
3612 } else {
3613 Py_INCREF(Py_None);
3614 _resultobj = Py_None;
3615 }
3616 return _resultobj;
3617 }
3618
3619 #define wxLayoutConstraints_centreY_get(_swigobj) (&_swigobj->centreY)
3620 static PyObject *_wrap_wxLayoutConstraints_centreY_get(PyObject *self, PyObject *args, PyObject *kwargs) {
3621 PyObject * _resultobj;
3622 wxIndividualLayoutConstraint * _result;
3623 wxLayoutConstraints * _arg0;
3624 PyObject * _argo0 = 0;
3625 char *_kwnames[] = { "self", NULL };
3626 char _ptemp[128];
3627
3628 self = self;
3629 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_centreY_get",_kwnames,&_argo0))
3630 return NULL;
3631 if (_argo0) {
3632 if (_argo0 == Py_None) { _arg0 = NULL; }
3633 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) {
3634 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_centreY_get. Expected _wxLayoutConstraints_p.");
3635 return NULL;
3636 }
3637 }
3638 {
3639 PyThreadState* __tstate = wxPyBeginAllowThreads();
3640 _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_centreY_get(_arg0);
3641
3642 wxPyEndAllowThreads(__tstate);
3643 if (PyErr_Occurred()) return NULL;
3644 } if (_result) {
3645 SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p");
3646 _resultobj = Py_BuildValue("s",_ptemp);
3647 } else {
3648 Py_INCREF(Py_None);
3649 _resultobj = Py_None;
3650 }
3651 return _resultobj;
3652 }
3653
3654 #define wxLayoutConstraints_height_get(_swigobj) (&_swigobj->height)
3655 static PyObject *_wrap_wxLayoutConstraints_height_get(PyObject *self, PyObject *args, PyObject *kwargs) {
3656 PyObject * _resultobj;
3657 wxIndividualLayoutConstraint * _result;
3658 wxLayoutConstraints * _arg0;
3659 PyObject * _argo0 = 0;
3660 char *_kwnames[] = { "self", NULL };
3661 char _ptemp[128];
3662
3663 self = self;
3664 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_height_get",_kwnames,&_argo0))
3665 return NULL;
3666 if (_argo0) {
3667 if (_argo0 == Py_None) { _arg0 = NULL; }
3668 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) {
3669 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_height_get. Expected _wxLayoutConstraints_p.");
3670 return NULL;
3671 }
3672 }
3673 {
3674 PyThreadState* __tstate = wxPyBeginAllowThreads();
3675 _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_height_get(_arg0);
3676
3677 wxPyEndAllowThreads(__tstate);
3678 if (PyErr_Occurred()) return NULL;
3679 } if (_result) {
3680 SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p");
3681 _resultobj = Py_BuildValue("s",_ptemp);
3682 } else {
3683 Py_INCREF(Py_None);
3684 _resultobj = Py_None;
3685 }
3686 return _resultobj;
3687 }
3688
3689 #define wxLayoutConstraints_left_get(_swigobj) (&_swigobj->left)
3690 static PyObject *_wrap_wxLayoutConstraints_left_get(PyObject *self, PyObject *args, PyObject *kwargs) {
3691 PyObject * _resultobj;
3692 wxIndividualLayoutConstraint * _result;
3693 wxLayoutConstraints * _arg0;
3694 PyObject * _argo0 = 0;
3695 char *_kwnames[] = { "self", NULL };
3696 char _ptemp[128];
3697
3698 self = self;
3699 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_left_get",_kwnames,&_argo0))
3700 return NULL;
3701 if (_argo0) {
3702 if (_argo0 == Py_None) { _arg0 = NULL; }
3703 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) {
3704 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_left_get. Expected _wxLayoutConstraints_p.");
3705 return NULL;
3706 }
3707 }
3708 {
3709 PyThreadState* __tstate = wxPyBeginAllowThreads();
3710 _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_left_get(_arg0);
3711
3712 wxPyEndAllowThreads(__tstate);
3713 if (PyErr_Occurred()) return NULL;
3714 } if (_result) {
3715 SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p");
3716 _resultobj = Py_BuildValue("s",_ptemp);
3717 } else {
3718 Py_INCREF(Py_None);
3719 _resultobj = Py_None;
3720 }
3721 return _resultobj;
3722 }
3723
3724 #define wxLayoutConstraints_right_get(_swigobj) (&_swigobj->right)
3725 static PyObject *_wrap_wxLayoutConstraints_right_get(PyObject *self, PyObject *args, PyObject *kwargs) {
3726 PyObject * _resultobj;
3727 wxIndividualLayoutConstraint * _result;
3728 wxLayoutConstraints * _arg0;
3729 PyObject * _argo0 = 0;
3730 char *_kwnames[] = { "self", NULL };
3731 char _ptemp[128];
3732
3733 self = self;
3734 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_right_get",_kwnames,&_argo0))
3735 return NULL;
3736 if (_argo0) {
3737 if (_argo0 == Py_None) { _arg0 = NULL; }
3738 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) {
3739 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_right_get. Expected _wxLayoutConstraints_p.");
3740 return NULL;
3741 }
3742 }
3743 {
3744 PyThreadState* __tstate = wxPyBeginAllowThreads();
3745 _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_right_get(_arg0);
3746
3747 wxPyEndAllowThreads(__tstate);
3748 if (PyErr_Occurred()) return NULL;
3749 } if (_result) {
3750 SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p");
3751 _resultobj = Py_BuildValue("s",_ptemp);
3752 } else {
3753 Py_INCREF(Py_None);
3754 _resultobj = Py_None;
3755 }
3756 return _resultobj;
3757 }
3758
3759 #define wxLayoutConstraints_top_get(_swigobj) (&_swigobj->top)
3760 static PyObject *_wrap_wxLayoutConstraints_top_get(PyObject *self, PyObject *args, PyObject *kwargs) {
3761 PyObject * _resultobj;
3762 wxIndividualLayoutConstraint * _result;
3763 wxLayoutConstraints * _arg0;
3764 PyObject * _argo0 = 0;
3765 char *_kwnames[] = { "self", NULL };
3766 char _ptemp[128];
3767
3768 self = self;
3769 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_top_get",_kwnames,&_argo0))
3770 return NULL;
3771 if (_argo0) {
3772 if (_argo0 == Py_None) { _arg0 = NULL; }
3773 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) {
3774 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_top_get. Expected _wxLayoutConstraints_p.");
3775 return NULL;
3776 }
3777 }
3778 {
3779 PyThreadState* __tstate = wxPyBeginAllowThreads();
3780 _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_top_get(_arg0);
3781
3782 wxPyEndAllowThreads(__tstate);
3783 if (PyErr_Occurred()) return NULL;
3784 } if (_result) {
3785 SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p");
3786 _resultobj = Py_BuildValue("s",_ptemp);
3787 } else {
3788 Py_INCREF(Py_None);
3789 _resultobj = Py_None;
3790 }
3791 return _resultobj;
3792 }
3793
3794 #define wxLayoutConstraints_width_get(_swigobj) (&_swigobj->width)
3795 static PyObject *_wrap_wxLayoutConstraints_width_get(PyObject *self, PyObject *args, PyObject *kwargs) {
3796 PyObject * _resultobj;
3797 wxIndividualLayoutConstraint * _result;
3798 wxLayoutConstraints * _arg0;
3799 PyObject * _argo0 = 0;
3800 char *_kwnames[] = { "self", NULL };
3801 char _ptemp[128];
3802
3803 self = self;
3804 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_width_get",_kwnames,&_argo0))
3805 return NULL;
3806 if (_argo0) {
3807 if (_argo0 == Py_None) { _arg0 = NULL; }
3808 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) {
3809 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_width_get. Expected _wxLayoutConstraints_p.");
3810 return NULL;
3811 }
3812 }
3813 {
3814 PyThreadState* __tstate = wxPyBeginAllowThreads();
3815 _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_width_get(_arg0);
3816
3817 wxPyEndAllowThreads(__tstate);
3818 if (PyErr_Occurred()) return NULL;
3819 } if (_result) {
3820 SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p");
3821 _resultobj = Py_BuildValue("s",_ptemp);
3822 } else {
3823 Py_INCREF(Py_None);
3824 _resultobj = Py_None;
3825 }
3826 return _resultobj;
3827 }
3828
3829 #define new_wxAcceleratorEntry(_swigarg0,_swigarg1,_swigarg2) (new wxAcceleratorEntry(_swigarg0,_swigarg1,_swigarg2))
3830 static PyObject *_wrap_new_wxAcceleratorEntry(PyObject *self, PyObject *args, PyObject *kwargs) {
3831 PyObject * _resultobj;
3832 wxAcceleratorEntry * _result;
3833 int _arg0 = (int ) 0;
3834 int _arg1 = (int ) 0;
3835 int _arg2 = (int ) 0;
3836 char *_kwnames[] = { "flags","keyCode","cmd", NULL };
3837 char _ptemp[128];
3838
3839 self = self;
3840 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|iii:new_wxAcceleratorEntry",_kwnames,&_arg0,&_arg1,&_arg2))
3841 return NULL;
3842 {
3843 PyThreadState* __tstate = wxPyBeginAllowThreads();
3844 _result = (wxAcceleratorEntry *)new_wxAcceleratorEntry(_arg0,_arg1,_arg2);
3845
3846 wxPyEndAllowThreads(__tstate);
3847 if (PyErr_Occurred()) return NULL;
3848 } if (_result) {
3849 SWIG_MakePtr(_ptemp, (char *) _result,"_wxAcceleratorEntry_p");
3850 _resultobj = Py_BuildValue("s",_ptemp);
3851 } else {
3852 Py_INCREF(Py_None);
3853 _resultobj = Py_None;
3854 }
3855 return _resultobj;
3856 }
3857
3858 #define delete_wxAcceleratorEntry(_swigobj) (delete _swigobj)
3859 static PyObject *_wrap_delete_wxAcceleratorEntry(PyObject *self, PyObject *args, PyObject *kwargs) {
3860 PyObject * _resultobj;
3861 wxAcceleratorEntry * _arg0;
3862 PyObject * _argo0 = 0;
3863 char *_kwnames[] = { "self", NULL };
3864
3865 self = self;
3866 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxAcceleratorEntry",_kwnames,&_argo0))
3867 return NULL;
3868 if (_argo0) {
3869 if (_argo0 == Py_None) { _arg0 = NULL; }
3870 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxAcceleratorEntry_p")) {
3871 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxAcceleratorEntry. Expected _wxAcceleratorEntry_p.");
3872 return NULL;
3873 }
3874 }
3875 {
3876 PyThreadState* __tstate = wxPyBeginAllowThreads();
3877 delete_wxAcceleratorEntry(_arg0);
3878
3879 wxPyEndAllowThreads(__tstate);
3880 if (PyErr_Occurred()) return NULL;
3881 } Py_INCREF(Py_None);
3882 _resultobj = Py_None;
3883 return _resultobj;
3884 }
3885
3886 #define wxAcceleratorEntry_Set(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->Set(_swigarg0,_swigarg1,_swigarg2))
3887 static PyObject *_wrap_wxAcceleratorEntry_Set(PyObject *self, PyObject *args, PyObject *kwargs) {
3888 PyObject * _resultobj;
3889 wxAcceleratorEntry * _arg0;
3890 int _arg1;
3891 int _arg2;
3892 int _arg3;
3893 PyObject * _argo0 = 0;
3894 char *_kwnames[] = { "self","flags","keyCode","Cmd", NULL };
3895
3896 self = self;
3897 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oiii:wxAcceleratorEntry_Set",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3))
3898 return NULL;
3899 if (_argo0) {
3900 if (_argo0 == Py_None) { _arg0 = NULL; }
3901 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxAcceleratorEntry_p")) {
3902 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxAcceleratorEntry_Set. Expected _wxAcceleratorEntry_p.");
3903 return NULL;
3904 }
3905 }
3906 {
3907 PyThreadState* __tstate = wxPyBeginAllowThreads();
3908 wxAcceleratorEntry_Set(_arg0,_arg1,_arg2,_arg3);
3909
3910 wxPyEndAllowThreads(__tstate);
3911 if (PyErr_Occurred()) return NULL;
3912 } Py_INCREF(Py_None);
3913 _resultobj = Py_None;
3914 return _resultobj;
3915 }
3916
3917 #define wxAcceleratorEntry_GetFlags(_swigobj) (_swigobj->GetFlags())
3918 static PyObject *_wrap_wxAcceleratorEntry_GetFlags(PyObject *self, PyObject *args, PyObject *kwargs) {
3919 PyObject * _resultobj;
3920 int _result;
3921 wxAcceleratorEntry * _arg0;
3922 PyObject * _argo0 = 0;
3923 char *_kwnames[] = { "self", NULL };
3924
3925 self = self;
3926 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxAcceleratorEntry_GetFlags",_kwnames,&_argo0))
3927 return NULL;
3928 if (_argo0) {
3929 if (_argo0 == Py_None) { _arg0 = NULL; }
3930 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxAcceleratorEntry_p")) {
3931 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxAcceleratorEntry_GetFlags. Expected _wxAcceleratorEntry_p.");
3932 return NULL;
3933 }
3934 }
3935 {
3936 PyThreadState* __tstate = wxPyBeginAllowThreads();
3937 _result = (int )wxAcceleratorEntry_GetFlags(_arg0);
3938
3939 wxPyEndAllowThreads(__tstate);
3940 if (PyErr_Occurred()) return NULL;
3941 } _resultobj = Py_BuildValue("i",_result);
3942 return _resultobj;
3943 }
3944
3945 #define wxAcceleratorEntry_GetKeyCode(_swigobj) (_swigobj->GetKeyCode())
3946 static PyObject *_wrap_wxAcceleratorEntry_GetKeyCode(PyObject *self, PyObject *args, PyObject *kwargs) {
3947 PyObject * _resultobj;
3948 int _result;
3949 wxAcceleratorEntry * _arg0;
3950 PyObject * _argo0 = 0;
3951 char *_kwnames[] = { "self", NULL };
3952
3953 self = self;
3954 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxAcceleratorEntry_GetKeyCode",_kwnames,&_argo0))
3955 return NULL;
3956 if (_argo0) {
3957 if (_argo0 == Py_None) { _arg0 = NULL; }
3958 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxAcceleratorEntry_p")) {
3959 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxAcceleratorEntry_GetKeyCode. Expected _wxAcceleratorEntry_p.");
3960 return NULL;
3961 }
3962 }
3963 {
3964 PyThreadState* __tstate = wxPyBeginAllowThreads();
3965 _result = (int )wxAcceleratorEntry_GetKeyCode(_arg0);
3966
3967 wxPyEndAllowThreads(__tstate);
3968 if (PyErr_Occurred()) return NULL;
3969 } _resultobj = Py_BuildValue("i",_result);
3970 return _resultobj;
3971 }
3972
3973 #define wxAcceleratorEntry_GetCommand(_swigobj) (_swigobj->GetCommand())
3974 static PyObject *_wrap_wxAcceleratorEntry_GetCommand(PyObject *self, PyObject *args, PyObject *kwargs) {
3975 PyObject * _resultobj;
3976 int _result;
3977 wxAcceleratorEntry * _arg0;
3978 PyObject * _argo0 = 0;
3979 char *_kwnames[] = { "self", NULL };
3980
3981 self = self;
3982 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxAcceleratorEntry_GetCommand",_kwnames,&_argo0))
3983 return NULL;
3984 if (_argo0) {
3985 if (_argo0 == Py_None) { _arg0 = NULL; }
3986 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxAcceleratorEntry_p")) {
3987 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxAcceleratorEntry_GetCommand. Expected _wxAcceleratorEntry_p.");
3988 return NULL;
3989 }
3990 }
3991 {
3992 PyThreadState* __tstate = wxPyBeginAllowThreads();
3993 _result = (int )wxAcceleratorEntry_GetCommand(_arg0);
3994
3995 wxPyEndAllowThreads(__tstate);
3996 if (PyErr_Occurred()) return NULL;
3997 } _resultobj = Py_BuildValue("i",_result);
3998 return _resultobj;
3999 }
4000
4001 static void *SwigwxAcceleratorTableTowxObject(void *ptr) {
4002 wxAcceleratorTable *src;
4003 wxObject *dest;
4004 src = (wxAcceleratorTable *) ptr;
4005 dest = (wxObject *) src;
4006 return (void *) dest;
4007 }
4008
4009 #define new_wxAcceleratorTable(_swigarg0,_swigarg1) (new wxAcceleratorTable(_swigarg0,_swigarg1))
4010 static PyObject *_wrap_new_wxAcceleratorTable(PyObject *self, PyObject *args, PyObject *kwargs) {
4011 PyObject * _resultobj;
4012 wxAcceleratorTable * _result;
4013 int _arg0;
4014 wxAcceleratorEntry * _arg1;
4015 PyObject * _obj1 = 0;
4016 char *_kwnames[] = { "choices", NULL };
4017 char _ptemp[128];
4018
4019 self = self;
4020 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:new_wxAcceleratorTable",_kwnames,&_obj1))
4021 return NULL;
4022 if (_obj1)
4023 {
4024 _arg1 = wxAcceleratorEntry_LIST_helper(_obj1);
4025 if (_arg1 == NULL) {
4026 return NULL;
4027 }
4028 }
4029 {
4030 if (_obj1) {
4031 _arg0 = PyList_Size(_obj1);
4032 }
4033 else {
4034 _arg0 = 0;
4035 }
4036 }
4037 {
4038 PyThreadState* __tstate = wxPyBeginAllowThreads();
4039 _result = (wxAcceleratorTable *)new_wxAcceleratorTable(_arg0,_arg1);
4040
4041 wxPyEndAllowThreads(__tstate);
4042 if (PyErr_Occurred()) return NULL;
4043 } if (_result) {
4044 SWIG_MakePtr(_ptemp, (char *) _result,"_wxAcceleratorTable_p");
4045 _resultobj = Py_BuildValue("s",_ptemp);
4046 } else {
4047 Py_INCREF(Py_None);
4048 _resultobj = Py_None;
4049 }
4050 {
4051 delete [] _arg1;
4052 }
4053 return _resultobj;
4054 }
4055
4056 #define delete_wxAcceleratorTable(_swigobj) (delete _swigobj)
4057 static PyObject *_wrap_delete_wxAcceleratorTable(PyObject *self, PyObject *args, PyObject *kwargs) {
4058 PyObject * _resultobj;
4059 wxAcceleratorTable * _arg0;
4060 PyObject * _argo0 = 0;
4061 char *_kwnames[] = { "self", NULL };
4062
4063 self = self;
4064 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxAcceleratorTable",_kwnames,&_argo0))
4065 return NULL;
4066 if (_argo0) {
4067 if (_argo0 == Py_None) { _arg0 = NULL; }
4068 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxAcceleratorTable_p")) {
4069 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxAcceleratorTable. Expected _wxAcceleratorTable_p.");
4070 return NULL;
4071 }
4072 }
4073 {
4074 PyThreadState* __tstate = wxPyBeginAllowThreads();
4075 delete_wxAcceleratorTable(_arg0);
4076
4077 wxPyEndAllowThreads(__tstate);
4078 if (PyErr_Occurred()) return NULL;
4079 } Py_INCREF(Py_None);
4080 _resultobj = Py_None;
4081 return _resultobj;
4082 }
4083
4084 static void *SwigwxBusyInfoTowxObject(void *ptr) {
4085 wxBusyInfo *src;
4086 wxObject *dest;
4087 src = (wxBusyInfo *) ptr;
4088 dest = (wxObject *) src;
4089 return (void *) dest;
4090 }
4091
4092 #define new_wxBusyInfo(_swigarg0) (new wxBusyInfo(_swigarg0))
4093 static PyObject *_wrap_new_wxBusyInfo(PyObject *self, PyObject *args, PyObject *kwargs) {
4094 PyObject * _resultobj;
4095 wxBusyInfo * _result;
4096 wxString * _arg0;
4097 PyObject * _obj0 = 0;
4098 char *_kwnames[] = { "message", NULL };
4099 char _ptemp[128];
4100
4101 self = self;
4102 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:new_wxBusyInfo",_kwnames,&_obj0))
4103 return NULL;
4104 {
4105 _arg0 = wxString_in_helper(_obj0);
4106 if (_arg0 == NULL)
4107 return NULL;
4108 }
4109 {
4110 PyThreadState* __tstate = wxPyBeginAllowThreads();
4111 _result = (wxBusyInfo *)new_wxBusyInfo(*_arg0);
4112
4113 wxPyEndAllowThreads(__tstate);
4114 if (PyErr_Occurred()) return NULL;
4115 } if (_result) {
4116 SWIG_MakePtr(_ptemp, (char *) _result,"_wxBusyInfo_p");
4117 _resultobj = Py_BuildValue("s",_ptemp);
4118 } else {
4119 Py_INCREF(Py_None);
4120 _resultobj = Py_None;
4121 }
4122 {
4123 if (_obj0)
4124 delete _arg0;
4125 }
4126 return _resultobj;
4127 }
4128
4129 #define delete_wxBusyInfo(_swigobj) (delete _swigobj)
4130 static PyObject *_wrap_delete_wxBusyInfo(PyObject *self, PyObject *args, PyObject *kwargs) {
4131 PyObject * _resultobj;
4132 wxBusyInfo * _arg0;
4133 PyObject * _argo0 = 0;
4134 char *_kwnames[] = { "self", NULL };
4135
4136 self = self;
4137 if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxBusyInfo",_kwnames,&_argo0))
4138 return NULL;
4139 if (_argo0) {
4140 if (_argo0 == Py_None) { _arg0 = NULL; }
4141 else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxBusyInfo_p")) {
4142 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxBusyInfo. Expected _wxBusyInfo_p.");
4143 return NULL;
4144 }
4145 }
4146 {
4147 PyThreadState* __tstate = wxPyBeginAllowThreads();
4148 delete_wxBusyInfo(_arg0);
4149
4150 wxPyEndAllowThreads(__tstate);
4151 if (PyErr_Occurred()) return NULL;
4152 } Py_INCREF(Py_None);
4153 _resultobj = Py_None;
4154 return _resultobj;
4155 }
4156
4157 static PyMethodDef misccMethods[] = {
4158 { "delete_wxBusyInfo", (PyCFunction) _wrap_delete_wxBusyInfo, METH_VARARGS | METH_KEYWORDS },
4159 { "new_wxBusyInfo", (PyCFunction) _wrap_new_wxBusyInfo, METH_VARARGS | METH_KEYWORDS },
4160 { "delete_wxAcceleratorTable", (PyCFunction) _wrap_delete_wxAcceleratorTable, METH_VARARGS | METH_KEYWORDS },
4161 { "new_wxAcceleratorTable", (PyCFunction) _wrap_new_wxAcceleratorTable, METH_VARARGS | METH_KEYWORDS },
4162 { "wxAcceleratorEntry_GetCommand", (PyCFunction) _wrap_wxAcceleratorEntry_GetCommand, METH_VARARGS | METH_KEYWORDS },
4163 { "wxAcceleratorEntry_GetKeyCode", (PyCFunction) _wrap_wxAcceleratorEntry_GetKeyCode, METH_VARARGS | METH_KEYWORDS },
4164 { "wxAcceleratorEntry_GetFlags", (PyCFunction) _wrap_wxAcceleratorEntry_GetFlags, METH_VARARGS | METH_KEYWORDS },
4165 { "wxAcceleratorEntry_Set", (PyCFunction) _wrap_wxAcceleratorEntry_Set, METH_VARARGS | METH_KEYWORDS },
4166 { "delete_wxAcceleratorEntry", (PyCFunction) _wrap_delete_wxAcceleratorEntry, METH_VARARGS | METH_KEYWORDS },
4167 { "new_wxAcceleratorEntry", (PyCFunction) _wrap_new_wxAcceleratorEntry, METH_VARARGS | METH_KEYWORDS },
4168 { "wxLayoutConstraints_width_get", (PyCFunction) _wrap_wxLayoutConstraints_width_get, METH_VARARGS | METH_KEYWORDS },
4169 { "wxLayoutConstraints_top_get", (PyCFunction) _wrap_wxLayoutConstraints_top_get, METH_VARARGS | METH_KEYWORDS },
4170 { "wxLayoutConstraints_right_get", (PyCFunction) _wrap_wxLayoutConstraints_right_get, METH_VARARGS | METH_KEYWORDS },
4171 { "wxLayoutConstraints_left_get", (PyCFunction) _wrap_wxLayoutConstraints_left_get, METH_VARARGS | METH_KEYWORDS },
4172 { "wxLayoutConstraints_height_get", (PyCFunction) _wrap_wxLayoutConstraints_height_get, METH_VARARGS | METH_KEYWORDS },
4173 { "wxLayoutConstraints_centreY_get", (PyCFunction) _wrap_wxLayoutConstraints_centreY_get, METH_VARARGS | METH_KEYWORDS },
4174 { "wxLayoutConstraints_centreX_get", (PyCFunction) _wrap_wxLayoutConstraints_centreX_get, METH_VARARGS | METH_KEYWORDS },
4175 { "wxLayoutConstraints_bottom_get", (PyCFunction) _wrap_wxLayoutConstraints_bottom_get, METH_VARARGS | METH_KEYWORDS },
4176 { "new_wxLayoutConstraints", (PyCFunction) _wrap_new_wxLayoutConstraints, METH_VARARGS | METH_KEYWORDS },
4177 { "wxIndividualLayoutConstraint_Set", (PyCFunction) _wrap_wxIndividualLayoutConstraint_Set, METH_VARARGS | METH_KEYWORDS },
4178 { "wxIndividualLayoutConstraint_SameAs", (PyCFunction) _wrap_wxIndividualLayoutConstraint_SameAs, METH_VARARGS | METH_KEYWORDS },
4179 { "wxIndividualLayoutConstraint_RightOf", (PyCFunction) _wrap_wxIndividualLayoutConstraint_RightOf, METH_VARARGS | METH_KEYWORDS },
4180 { "wxIndividualLayoutConstraint_PercentOf", (PyCFunction) _wrap_wxIndividualLayoutConstraint_PercentOf, METH_VARARGS | METH_KEYWORDS },
4181 { "wxIndividualLayoutConstraint_LeftOf", (PyCFunction) _wrap_wxIndividualLayoutConstraint_LeftOf, METH_VARARGS | METH_KEYWORDS },
4182 { "wxIndividualLayoutConstraint_Unconstrained", (PyCFunction) _wrap_wxIndividualLayoutConstraint_Unconstrained, METH_VARARGS | METH_KEYWORDS },
4183 { "wxIndividualLayoutConstraint_Below", (PyCFunction) _wrap_wxIndividualLayoutConstraint_Below, METH_VARARGS | METH_KEYWORDS },
4184 { "wxIndividualLayoutConstraint_AsIs", (PyCFunction) _wrap_wxIndividualLayoutConstraint_AsIs, METH_VARARGS | METH_KEYWORDS },
4185 { "wxIndividualLayoutConstraint_Absolute", (PyCFunction) _wrap_wxIndividualLayoutConstraint_Absolute, METH_VARARGS | METH_KEYWORDS },
4186 { "wxIndividualLayoutConstraint_Above", (PyCFunction) _wrap_wxIndividualLayoutConstraint_Above, METH_VARARGS | METH_KEYWORDS },
4187 { "wxRect___cmp__", (PyCFunction) _wrap_wxRect___cmp__, METH_VARARGS | METH_KEYWORDS },
4188 { "wxRect___add__", (PyCFunction) _wrap_wxRect___add__, METH_VARARGS | METH_KEYWORDS },
4189 { "wxRect_asTuple", (PyCFunction) _wrap_wxRect_asTuple, METH_VARARGS | METH_KEYWORDS },
4190 { "wxRect_height_get", (PyCFunction) _wrap_wxRect_height_get, METH_VARARGS | METH_KEYWORDS },
4191 { "wxRect_height_set", (PyCFunction) _wrap_wxRect_height_set, METH_VARARGS | METH_KEYWORDS },
4192 { "wxRect_width_get", (PyCFunction) _wrap_wxRect_width_get, METH_VARARGS | METH_KEYWORDS },
4193 { "wxRect_width_set", (PyCFunction) _wrap_wxRect_width_set, METH_VARARGS | METH_KEYWORDS },
4194 { "wxRect_y_get", (PyCFunction) _wrap_wxRect_y_get, METH_VARARGS | METH_KEYWORDS },
4195 { "wxRect_y_set", (PyCFunction) _wrap_wxRect_y_set, METH_VARARGS | METH_KEYWORDS },
4196 { "wxRect_x_get", (PyCFunction) _wrap_wxRect_x_get, METH_VARARGS | METH_KEYWORDS },
4197 { "wxRect_x_set", (PyCFunction) _wrap_wxRect_x_set, METH_VARARGS | METH_KEYWORDS },
4198 { "wxRect_Inside", (PyCFunction) _wrap_wxRect_Inside, METH_VARARGS | METH_KEYWORDS },
4199 { "wxRect_Inflate", (PyCFunction) _wrap_wxRect_Inflate, METH_VARARGS | METH_KEYWORDS },
4200 { "wxRect_SetBottom", (PyCFunction) _wrap_wxRect_SetBottom, METH_VARARGS | METH_KEYWORDS },
4201 { "wxRect_SetTop", (PyCFunction) _wrap_wxRect_SetTop, METH_VARARGS | METH_KEYWORDS },
4202 { "wxRect_SetRight", (PyCFunction) _wrap_wxRect_SetRight, METH_VARARGS | METH_KEYWORDS },
4203 { "wxRect_SetLeft", (PyCFunction) _wrap_wxRect_SetLeft, METH_VARARGS | METH_KEYWORDS },
4204 { "wxRect_GetRight", (PyCFunction) _wrap_wxRect_GetRight, METH_VARARGS | METH_KEYWORDS },
4205 { "wxRect_GetBottom", (PyCFunction) _wrap_wxRect_GetBottom, METH_VARARGS | METH_KEYWORDS },
4206 { "wxRect_GetTop", (PyCFunction) _wrap_wxRect_GetTop, METH_VARARGS | METH_KEYWORDS },
4207 { "wxRect_GetLeft", (PyCFunction) _wrap_wxRect_GetLeft, METH_VARARGS | METH_KEYWORDS },
4208 { "wxRect_GetSize", (PyCFunction) _wrap_wxRect_GetSize, METH_VARARGS | METH_KEYWORDS },
4209 { "wxRect_GetPosition", (PyCFunction) _wrap_wxRect_GetPosition, METH_VARARGS | METH_KEYWORDS },
4210 { "wxRect_SetHeight", (PyCFunction) _wrap_wxRect_SetHeight, METH_VARARGS | METH_KEYWORDS },
4211 { "wxRect_GetHeight", (PyCFunction) _wrap_wxRect_GetHeight, METH_VARARGS | METH_KEYWORDS },
4212 { "wxRect_SetWidth", (PyCFunction) _wrap_wxRect_SetWidth, METH_VARARGS | METH_KEYWORDS },
4213 { "wxRect_GetWidth", (PyCFunction) _wrap_wxRect_GetWidth, METH_VARARGS | METH_KEYWORDS },
4214 { "wxRect_SetY", (PyCFunction) _wrap_wxRect_SetY, METH_VARARGS | METH_KEYWORDS },
4215 { "wxRect_GetY", (PyCFunction) _wrap_wxRect_GetY, METH_VARARGS | METH_KEYWORDS },
4216 { "wxRect_SetX", (PyCFunction) _wrap_wxRect_SetX, METH_VARARGS | METH_KEYWORDS },
4217 { "wxRect_GetX", (PyCFunction) _wrap_wxRect_GetX, METH_VARARGS | METH_KEYWORDS },
4218 { "delete_wxRect", (PyCFunction) _wrap_delete_wxRect, METH_VARARGS | METH_KEYWORDS },
4219 { "new_wxRect", (PyCFunction) _wrap_new_wxRect, METH_VARARGS | METH_KEYWORDS },
4220 { "wxPoint___cmp__", (PyCFunction) _wrap_wxPoint___cmp__, METH_VARARGS | METH_KEYWORDS },
4221 { "wxPoint___sub__", (PyCFunction) _wrap_wxPoint___sub__, METH_VARARGS | METH_KEYWORDS },
4222 { "wxPoint___add__", (PyCFunction) _wrap_wxPoint___add__, METH_VARARGS | METH_KEYWORDS },
4223 { "wxPoint_asTuple", (PyCFunction) _wrap_wxPoint_asTuple, METH_VARARGS | METH_KEYWORDS },
4224 { "wxPoint_Set", (PyCFunction) _wrap_wxPoint_Set, METH_VARARGS | METH_KEYWORDS },
4225 { "delete_wxPoint", (PyCFunction) _wrap_delete_wxPoint, METH_VARARGS | METH_KEYWORDS },
4226 { "new_wxPoint", (PyCFunction) _wrap_new_wxPoint, METH_VARARGS | METH_KEYWORDS },
4227 { "wxPoint_y_get", (PyCFunction) _wrap_wxPoint_y_get, METH_VARARGS | METH_KEYWORDS },
4228 { "wxPoint_y_set", (PyCFunction) _wrap_wxPoint_y_set, METH_VARARGS | METH_KEYWORDS },
4229 { "wxPoint_x_get", (PyCFunction) _wrap_wxPoint_x_get, METH_VARARGS | METH_KEYWORDS },
4230 { "wxPoint_x_set", (PyCFunction) _wrap_wxPoint_x_set, METH_VARARGS | METH_KEYWORDS },
4231 { "wxRealPoint___cmp__", (PyCFunction) _wrap_wxRealPoint___cmp__, METH_VARARGS | METH_KEYWORDS },
4232 { "wxRealPoint___sub__", (PyCFunction) _wrap_wxRealPoint___sub__, METH_VARARGS | METH_KEYWORDS },
4233 { "wxRealPoint___add__", (PyCFunction) _wrap_wxRealPoint___add__, METH_VARARGS | METH_KEYWORDS },
4234 { "wxRealPoint_asTuple", (PyCFunction) _wrap_wxRealPoint_asTuple, METH_VARARGS | METH_KEYWORDS },
4235 { "wxRealPoint_Set", (PyCFunction) _wrap_wxRealPoint_Set, METH_VARARGS | METH_KEYWORDS },
4236 { "delete_wxRealPoint", (PyCFunction) _wrap_delete_wxRealPoint, METH_VARARGS | METH_KEYWORDS },
4237 { "new_wxRealPoint", (PyCFunction) _wrap_new_wxRealPoint, METH_VARARGS | METH_KEYWORDS },
4238 { "wxRealPoint_y_get", (PyCFunction) _wrap_wxRealPoint_y_get, METH_VARARGS | METH_KEYWORDS },
4239 { "wxRealPoint_y_set", (PyCFunction) _wrap_wxRealPoint_y_set, METH_VARARGS | METH_KEYWORDS },
4240 { "wxRealPoint_x_get", (PyCFunction) _wrap_wxRealPoint_x_get, METH_VARARGS | METH_KEYWORDS },
4241 { "wxRealPoint_x_set", (PyCFunction) _wrap_wxRealPoint_x_set, METH_VARARGS | METH_KEYWORDS },
4242 { "wxSize___cmp__", (PyCFunction) _wrap_wxSize___cmp__, METH_VARARGS | METH_KEYWORDS },
4243 { "wxSize_asTuple", (PyCFunction) _wrap_wxSize_asTuple, METH_VARARGS | METH_KEYWORDS },
4244 { "wxSize_SetHeight", (PyCFunction) _wrap_wxSize_SetHeight, METH_VARARGS | METH_KEYWORDS },
4245 { "wxSize_SetWidth", (PyCFunction) _wrap_wxSize_SetWidth, METH_VARARGS | METH_KEYWORDS },
4246 { "wxSize_GetHeight", (PyCFunction) _wrap_wxSize_GetHeight, METH_VARARGS | METH_KEYWORDS },
4247 { "wxSize_GetWidth", (PyCFunction) _wrap_wxSize_GetWidth, METH_VARARGS | METH_KEYWORDS },
4248 { "wxSize_GetY", (PyCFunction) _wrap_wxSize_GetY, METH_VARARGS | METH_KEYWORDS },
4249 { "wxSize_GetX", (PyCFunction) _wrap_wxSize_GetX, METH_VARARGS | METH_KEYWORDS },
4250 { "wxSize_Set", (PyCFunction) _wrap_wxSize_Set, METH_VARARGS | METH_KEYWORDS },
4251 { "delete_wxSize", (PyCFunction) _wrap_delete_wxSize, METH_VARARGS | METH_KEYWORDS },
4252 { "new_wxSize", (PyCFunction) _wrap_new_wxSize, METH_VARARGS | METH_KEYWORDS },
4253 { "wxSize_height_get", (PyCFunction) _wrap_wxSize_y_get, METH_VARARGS | METH_KEYWORDS },
4254 { "wxSize_height_set", (PyCFunction) _wrap_wxSize_y_set, METH_VARARGS | METH_KEYWORDS },
4255 { "wxSize_width_get", (PyCFunction) _wrap_wxSize_x_get, METH_VARARGS | METH_KEYWORDS },
4256 { "wxSize_width_set", (PyCFunction) _wrap_wxSize_x_set, METH_VARARGS | METH_KEYWORDS },
4257 { "wxSize_y_get", (PyCFunction) _wrap_wxSize_y_get, METH_VARARGS | METH_KEYWORDS },
4258 { "wxSize_y_set", (PyCFunction) _wrap_wxSize_y_set, METH_VARARGS | METH_KEYWORDS },
4259 { "wxSize_x_get", (PyCFunction) _wrap_wxSize_x_get, METH_VARARGS | METH_KEYWORDS },
4260 { "wxSize_x_set", (PyCFunction) _wrap_wxSize_x_set, METH_VARARGS | METH_KEYWORDS },
4261 { "wxObject_Destroy", (PyCFunction) _wrap_wxObject_Destroy, METH_VARARGS | METH_KEYWORDS },
4262 { "wxObject_GetClassName", (PyCFunction) _wrap_wxObject_GetClassName, METH_VARARGS | METH_KEYWORDS },
4263 { "wxGetAccelFromString", (PyCFunction) _wrap_wxGetAccelFromString, METH_VARARGS | METH_KEYWORDS },
4264 { "wxGetUserHome", (PyCFunction) _wrap_wxGetUserHome, METH_VARARGS | METH_KEYWORDS },
4265 { "wxGetHomeDir", (PyCFunction) _wrap_wxGetHomeDir, METH_VARARGS | METH_KEYWORDS },
4266 { "wxGetUserName", (PyCFunction) _wrap_wxGetUserName, METH_VARARGS | METH_KEYWORDS },
4267 { "wxGetUserId", (PyCFunction) _wrap_wxGetUserId, METH_VARARGS | METH_KEYWORDS },
4268 { "wxGetFullHostName", (PyCFunction) _wrap_wxGetFullHostName, METH_VARARGS | METH_KEYWORDS },
4269 { "wxGetHostName", (PyCFunction) _wrap_wxGetHostName, METH_VARARGS | METH_KEYWORDS },
4270 { "wxGetEmailAddress", (PyCFunction) _wrap_wxGetEmailAddress, METH_VARARGS | METH_KEYWORDS },
4271 { "wxStripMenuCodes", (PyCFunction) _wrap_wxStripMenuCodes, METH_VARARGS | METH_KEYWORDS },
4272 { "wxGetResource", (PyCFunction) _wrap_wxGetResource, METH_VARARGS | METH_KEYWORDS },
4273 { "wxEnableTopLevelWindows", (PyCFunction) _wrap_wxEnableTopLevelWindows, METH_VARARGS | METH_KEYWORDS },
4274 { "wxYieldIfNeeded", (PyCFunction) _wrap_wxYieldIfNeeded, METH_VARARGS | METH_KEYWORDS },
4275 { "wxYield", (PyCFunction) _wrap_wxYield, METH_VARARGS | METH_KEYWORDS },
4276 { "wxUsleep", (PyCFunction) _wrap_wxUsleep, METH_VARARGS | METH_KEYWORDS },
4277 { "wxSleep", (PyCFunction) _wrap_wxSleep, METH_VARARGS | METH_KEYWORDS },
4278 { "wxShutdown", (PyCFunction) _wrap_wxShutdown, METH_VARARGS | METH_KEYWORDS },
4279 { "wxGetOsDescription", (PyCFunction) _wrap_wxGetOsDescription, METH_VARARGS | METH_KEYWORDS },
4280 { "wxGetOsVersion", (PyCFunction) _wrap_wxGetOsVersion, METH_VARARGS | METH_KEYWORDS },
4281 { "wxStartTimer", (PyCFunction) _wrap_wxStartTimer, METH_VARARGS | METH_KEYWORDS },
4282 { "wxShell", (PyCFunction) _wrap_wxShell, METH_VARARGS | METH_KEYWORDS },
4283 { "wxNow", (PyCFunction) _wrap_wxNow, METH_VARARGS | METH_KEYWORDS },
4284 { "wxIsBusy", (PyCFunction) _wrap_wxIsBusy, METH_VARARGS | METH_KEYWORDS },
4285 { "wxGetMousePosition", (PyCFunction) _wrap_wxGetMousePosition, METH_VARARGS | METH_KEYWORDS },
4286 { "wxGetFreeMemory", (PyCFunction) _wrap_wxGetFreeMemory, METH_VARARGS | METH_KEYWORDS },
4287 { "wxGetElapsedTime", (PyCFunction) _wrap_wxGetElapsedTime, METH_VARARGS | METH_KEYWORDS },
4288 { "wxEndBusyCursor", (PyCFunction) _wrap_wxEndBusyCursor, METH_VARARGS | METH_KEYWORDS },
4289 { "wxBell", (PyCFunction) _wrap_wxBell, METH_VARARGS | METH_KEYWORDS },
4290 { "wxGetCurrentId", (PyCFunction) _wrap_wxGetCurrentId, METH_VARARGS | METH_KEYWORDS },
4291 { "RegisterId", (PyCFunction) _wrap_RegisterId, METH_VARARGS | METH_KEYWORDS },
4292 { "NewId", (PyCFunction) _wrap_NewId, METH_VARARGS | METH_KEYWORDS },
4293 { "wxRegisterId", (PyCFunction) _wrap_wxRegisterId, METH_VARARGS | METH_KEYWORDS },
4294 { "wxNewId", (PyCFunction) _wrap_wxNewId, METH_VARARGS | METH_KEYWORDS },
4295 { "wxIntersectRect", (PyCFunction) _wrap_wxIntersectRect, METH_VARARGS | METH_KEYWORDS },
4296 { NULL, NULL }
4297 };
4298 #ifdef __cplusplus
4299 }
4300 #endif
4301 /*
4302 * This table is used by the pointer type-checker
4303 */
4304 static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
4305 { "_signed_long","_long",0},
4306 { "_wxPrintQuality","_wxCoord",0},
4307 { "_wxPrintQuality","_int",0},
4308 { "_wxPrintQuality","_signed_int",0},
4309 { "_wxPrintQuality","_unsigned_int",0},
4310 { "_wxPrintQuality","_wxWindowID",0},
4311 { "_wxPrintQuality","_uint",0},
4312 { "_wxPrintQuality","_EBool",0},
4313 { "_wxPrintQuality","_size_t",0},
4314 { "_wxPrintQuality","_time_t",0},
4315 { "_byte","_unsigned_char",0},
4316 { "_long","_unsigned_long",0},
4317 { "_long","_signed_long",0},
4318 { "_size_t","_wxCoord",0},
4319 { "_size_t","_wxPrintQuality",0},
4320 { "_size_t","_time_t",0},
4321 { "_size_t","_unsigned_int",0},
4322 { "_size_t","_int",0},
4323 { "_size_t","_wxWindowID",0},
4324 { "_size_t","_uint",0},
4325 { "_uint","_wxCoord",0},
4326 { "_uint","_wxPrintQuality",0},
4327 { "_uint","_time_t",0},
4328 { "_uint","_size_t",0},
4329 { "_uint","_unsigned_int",0},
4330 { "_uint","_int",0},
4331 { "_uint","_wxWindowID",0},
4332 { "_wxChar","_char",0},
4333 { "_char","_wxChar",0},
4334 { "_EBool","_wxCoord",0},
4335 { "_EBool","_wxPrintQuality",0},
4336 { "_EBool","_signed_int",0},
4337 { "_EBool","_int",0},
4338 { "_EBool","_wxWindowID",0},
4339 { "_unsigned_long","_long",0},
4340 { "_signed_int","_wxCoord",0},
4341 { "_signed_int","_wxPrintQuality",0},
4342 { "_signed_int","_EBool",0},
4343 { "_signed_int","_wxWindowID",0},
4344 { "_signed_int","_int",0},
4345 { "_WXTYPE","_short",0},
4346 { "_WXTYPE","_signed_short",0},
4347 { "_WXTYPE","_unsigned_short",0},
4348 { "_unsigned_short","_WXTYPE",0},
4349 { "_unsigned_short","_short",0},
4350 { "_wxObject","_wxBusyInfo",SwigwxBusyInfoTowxObject},
4351 { "_wxObject","_wxAcceleratorTable",SwigwxAcceleratorTableTowxObject},
4352 { "_wxObject","_wxLayoutConstraints",SwigwxLayoutConstraintsTowxObject},
4353 { "_wxObject","_wxIndividualLayoutConstraint",SwigwxIndividualLayoutConstraintTowxObject},
4354 { "_signed_short","_WXTYPE",0},
4355 { "_signed_short","_short",0},
4356 { "_unsigned_char","_byte",0},
4357 { "_unsigned_int","_wxCoord",0},
4358 { "_unsigned_int","_wxPrintQuality",0},
4359 { "_unsigned_int","_time_t",0},
4360 { "_unsigned_int","_size_t",0},
4361 { "_unsigned_int","_uint",0},
4362 { "_unsigned_int","_wxWindowID",0},
4363 { "_unsigned_int","_int",0},
4364 { "_short","_WXTYPE",0},
4365 { "_short","_unsigned_short",0},
4366 { "_short","_signed_short",0},
4367 { "_wxWindowID","_wxCoord",0},
4368 { "_wxWindowID","_wxPrintQuality",0},
4369 { "_wxWindowID","_time_t",0},
4370 { "_wxWindowID","_size_t",0},
4371 { "_wxWindowID","_EBool",0},
4372 { "_wxWindowID","_uint",0},
4373 { "_wxWindowID","_int",0},
4374 { "_wxWindowID","_signed_int",0},
4375 { "_wxWindowID","_unsigned_int",0},
4376 { "_int","_wxCoord",0},
4377 { "_int","_wxPrintQuality",0},
4378 { "_int","_time_t",0},
4379 { "_int","_size_t",0},
4380 { "_int","_EBool",0},
4381 { "_int","_uint",0},
4382 { "_int","_wxWindowID",0},
4383 { "_int","_unsigned_int",0},
4384 { "_int","_signed_int",0},
4385 { "_time_t","_wxCoord",0},
4386 { "_time_t","_wxPrintQuality",0},
4387 { "_time_t","_unsigned_int",0},
4388 { "_time_t","_int",0},
4389 { "_time_t","_wxWindowID",0},
4390 { "_time_t","_uint",0},
4391 { "_time_t","_size_t",0},
4392 { "_wxCoord","_int",0},
4393 { "_wxCoord","_signed_int",0},
4394 { "_wxCoord","_unsigned_int",0},
4395 { "_wxCoord","_wxWindowID",0},
4396 { "_wxCoord","_uint",0},
4397 { "_wxCoord","_EBool",0},
4398 { "_wxCoord","_size_t",0},
4399 { "_wxCoord","_time_t",0},
4400 { "_wxCoord","_wxPrintQuality",0},
4401 {0,0,0}};
4402
4403 static PyObject *SWIG_globals;
4404 #ifdef __cplusplus
4405 extern "C"
4406 #endif
4407 SWIGEXPORT(void) initmiscc() {
4408 PyObject *m, *d;
4409 SWIG_globals = SWIG_newvarlink();
4410 m = Py_InitModule("miscc", misccMethods);
4411 d = PyModule_GetDict(m);
4412 PyDict_SetItemString(d,"wxSHUTDOWN_POWEROFF", PyInt_FromLong((long) wxSHUTDOWN_POWEROFF));
4413 PyDict_SetItemString(d,"wxSHUTDOWN_REBOOT", PyInt_FromLong((long) wxSHUTDOWN_REBOOT));
4414 PyDict_SetItemString(d,"wxLeft", PyInt_FromLong((long) wxLeft));
4415 PyDict_SetItemString(d,"wxTop", PyInt_FromLong((long) wxTop));
4416 PyDict_SetItemString(d,"wxRight", PyInt_FromLong((long) wxRight));
4417 PyDict_SetItemString(d,"wxBottom", PyInt_FromLong((long) wxBottom));
4418 PyDict_SetItemString(d,"wxWidth", PyInt_FromLong((long) wxWidth));
4419 PyDict_SetItemString(d,"wxHeight", PyInt_FromLong((long) wxHeight));
4420 PyDict_SetItemString(d,"wxCentre", PyInt_FromLong((long) wxCentre));
4421 PyDict_SetItemString(d,"wxCenter", PyInt_FromLong((long) wxCenter));
4422 PyDict_SetItemString(d,"wxCentreX", PyInt_FromLong((long) wxCentreX));
4423 PyDict_SetItemString(d,"wxCentreY", PyInt_FromLong((long) wxCentreY));
4424 PyDict_SetItemString(d,"wxUnconstrained", PyInt_FromLong((long) wxUnconstrained));
4425 PyDict_SetItemString(d,"wxAsIs", PyInt_FromLong((long) wxAsIs));
4426 PyDict_SetItemString(d,"wxPercentOf", PyInt_FromLong((long) wxPercentOf));
4427 PyDict_SetItemString(d,"wxAbove", PyInt_FromLong((long) wxAbove));
4428 PyDict_SetItemString(d,"wxBelow", PyInt_FromLong((long) wxBelow));
4429 PyDict_SetItemString(d,"wxLeftOf", PyInt_FromLong((long) wxLeftOf));
4430 PyDict_SetItemString(d,"wxRightOf", PyInt_FromLong((long) wxRightOf));
4431 PyDict_SetItemString(d,"wxSameAs", PyInt_FromLong((long) wxSameAs));
4432 PyDict_SetItemString(d,"wxAbsolute", PyInt_FromLong((long) wxAbsolute));
4433 PyDict_SetItemString(d,"cvar", SWIG_globals);
4434 SWIG_addvarlink(SWIG_globals,"wxNullAcceleratorTable",_wrap_wxNullAcceleratorTable_get, _wrap_wxNullAcceleratorTable_set);
4435 {
4436 int i;
4437 for (i = 0; _swig_mapping[i].n1; i++)
4438 SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv);
4439 }
4440 }