]>
Commit | Line | Data |
---|---|---|
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_wxGetProcessId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
945 | PyObject * _resultobj; | |
946 | unsigned long _result; | |
947 | char *_kwnames[] = { NULL }; | |
948 | ||
949 | self = self; | |
950 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxGetProcessId",_kwnames)) | |
951 | return NULL; | |
952 | { | |
953 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
954 | _result = (unsigned long )wxGetProcessId(); | |
955 | ||
956 | wxPyEndAllowThreads(__tstate); | |
957 | if (PyErr_Occurred()) return NULL; | |
958 | } _resultobj = Py_BuildValue("l",_result); | |
959 | return _resultobj; | |
960 | } | |
961 | ||
962 | static PyObject *_wrap_wxGetAccelFromString(PyObject *self, PyObject *args, PyObject *kwargs) { | |
963 | PyObject * _resultobj; | |
964 | wxAcceleratorEntry * _result; | |
965 | wxString * _arg0; | |
966 | PyObject * _obj0 = 0; | |
967 | char *_kwnames[] = { "label", NULL }; | |
968 | char _ptemp[128]; | |
969 | ||
970 | self = self; | |
971 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxGetAccelFromString",_kwnames,&_obj0)) | |
972 | return NULL; | |
973 | { | |
974 | _arg0 = wxString_in_helper(_obj0); | |
975 | if (_arg0 == NULL) | |
976 | return NULL; | |
977 | } | |
978 | { | |
979 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
980 | _result = (wxAcceleratorEntry *)wxGetAccelFromString(*_arg0); | |
981 | ||
982 | wxPyEndAllowThreads(__tstate); | |
983 | if (PyErr_Occurred()) return NULL; | |
984 | } if (_result) { | |
985 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxAcceleratorEntry_p"); | |
986 | _resultobj = Py_BuildValue("s",_ptemp); | |
987 | } else { | |
988 | Py_INCREF(Py_None); | |
989 | _resultobj = Py_None; | |
990 | } | |
991 | { | |
992 | if (_obj0) | |
993 | delete _arg0; | |
994 | } | |
995 | return _resultobj; | |
996 | } | |
997 | ||
998 | static int _wrap_wxNullAcceleratorTable_set(PyObject *val) { | |
999 | ||
1000 | PyErr_SetString(PyExc_TypeError,"Variable wxNullAcceleratorTable is read-only."); | |
1001 | return 1; | |
1002 | } | |
1003 | ||
1004 | static PyObject *_wrap_wxNullAcceleratorTable_get() { | |
1005 | PyObject * pyobj; | |
1006 | char ptemp[128]; | |
1007 | ||
1008 | SWIG_MakePtr(ptemp,(char *) &wxNullAcceleratorTable,"_wxAcceleratorTable_p"); | |
1009 | pyobj = PyString_FromString(ptemp); | |
1010 | return pyobj; | |
1011 | } | |
1012 | ||
1013 | static wxString wxObject_GetClassName(wxObject *self) { | |
1014 | return self->GetClassInfo()->GetClassName(); | |
1015 | } | |
1016 | static PyObject *_wrap_wxObject_GetClassName(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1017 | PyObject * _resultobj; | |
1018 | wxString * _result; | |
1019 | wxObject * _arg0; | |
1020 | PyObject * _argo0 = 0; | |
1021 | char *_kwnames[] = { "self", NULL }; | |
1022 | ||
1023 | self = self; | |
1024 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxObject_GetClassName",_kwnames,&_argo0)) | |
1025 | return NULL; | |
1026 | if (_argo0) { | |
1027 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1028 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxObject_p")) { | |
1029 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxObject_GetClassName. Expected _wxObject_p."); | |
1030 | return NULL; | |
1031 | } | |
1032 | } | |
1033 | { | |
1034 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1035 | _result = new wxString (wxObject_GetClassName(_arg0)); | |
1036 | ||
1037 | wxPyEndAllowThreads(__tstate); | |
1038 | if (PyErr_Occurred()) return NULL; | |
1039 | }{ | |
1040 | #if wxUSE_UNICODE | |
1041 | _resultobj = PyUnicode_FromUnicode(_result->c_str(), _result->Len()); | |
1042 | #else | |
1043 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); | |
1044 | #endif | |
1045 | } | |
1046 | { | |
1047 | delete _result; | |
1048 | } | |
1049 | return _resultobj; | |
1050 | } | |
1051 | ||
1052 | static void wxObject_Destroy(wxObject *self) { | |
1053 | delete self; | |
1054 | } | |
1055 | static PyObject *_wrap_wxObject_Destroy(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1056 | PyObject * _resultobj; | |
1057 | wxObject * _arg0; | |
1058 | PyObject * _argo0 = 0; | |
1059 | char *_kwnames[] = { "self", NULL }; | |
1060 | ||
1061 | self = self; | |
1062 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxObject_Destroy",_kwnames,&_argo0)) | |
1063 | return NULL; | |
1064 | if (_argo0) { | |
1065 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1066 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxObject_p")) { | |
1067 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxObject_Destroy. Expected _wxObject_p."); | |
1068 | return NULL; | |
1069 | } | |
1070 | } | |
1071 | { | |
1072 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1073 | wxObject_Destroy(_arg0); | |
1074 | ||
1075 | wxPyEndAllowThreads(__tstate); | |
1076 | if (PyErr_Occurred()) return NULL; | |
1077 | } Py_INCREF(Py_None); | |
1078 | _resultobj = Py_None; | |
1079 | return _resultobj; | |
1080 | } | |
1081 | ||
1082 | #define wxSize_x_set(_swigobj,_swigval) (_swigobj->x = _swigval,_swigval) | |
1083 | static PyObject *_wrap_wxSize_x_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1084 | PyObject * _resultobj; | |
1085 | long _result; | |
1086 | wxSize * _arg0; | |
1087 | long _arg1; | |
1088 | wxSize temp; | |
1089 | PyObject * _obj0 = 0; | |
1090 | char *_kwnames[] = { "self","x", NULL }; | |
1091 | ||
1092 | self = self; | |
1093 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxSize_x_set",_kwnames,&_obj0,&_arg1)) | |
1094 | return NULL; | |
1095 | { | |
1096 | _arg0 = &temp; | |
1097 | if (! wxSize_helper(_obj0, &_arg0)) | |
1098 | return NULL; | |
1099 | } | |
1100 | { | |
1101 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1102 | _result = (long )wxSize_x_set(_arg0,_arg1); | |
1103 | ||
1104 | wxPyEndAllowThreads(__tstate); | |
1105 | if (PyErr_Occurred()) return NULL; | |
1106 | } _resultobj = Py_BuildValue("l",_result); | |
1107 | return _resultobj; | |
1108 | } | |
1109 | ||
1110 | #define wxSize_x_get(_swigobj) ((long ) _swigobj->x) | |
1111 | static PyObject *_wrap_wxSize_x_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1112 | PyObject * _resultobj; | |
1113 | long _result; | |
1114 | wxSize * _arg0; | |
1115 | wxSize temp; | |
1116 | PyObject * _obj0 = 0; | |
1117 | char *_kwnames[] = { "self", NULL }; | |
1118 | ||
1119 | self = self; | |
1120 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxSize_x_get",_kwnames,&_obj0)) | |
1121 | return NULL; | |
1122 | { | |
1123 | _arg0 = &temp; | |
1124 | if (! wxSize_helper(_obj0, &_arg0)) | |
1125 | return NULL; | |
1126 | } | |
1127 | { | |
1128 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1129 | _result = (long )wxSize_x_get(_arg0); | |
1130 | ||
1131 | wxPyEndAllowThreads(__tstate); | |
1132 | if (PyErr_Occurred()) return NULL; | |
1133 | } _resultobj = Py_BuildValue("l",_result); | |
1134 | return _resultobj; | |
1135 | } | |
1136 | ||
1137 | #define wxSize_y_set(_swigobj,_swigval) (_swigobj->y = _swigval,_swigval) | |
1138 | static PyObject *_wrap_wxSize_y_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1139 | PyObject * _resultobj; | |
1140 | long _result; | |
1141 | wxSize * _arg0; | |
1142 | long _arg1; | |
1143 | wxSize temp; | |
1144 | PyObject * _obj0 = 0; | |
1145 | char *_kwnames[] = { "self","y", NULL }; | |
1146 | ||
1147 | self = self; | |
1148 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxSize_y_set",_kwnames,&_obj0,&_arg1)) | |
1149 | return NULL; | |
1150 | { | |
1151 | _arg0 = &temp; | |
1152 | if (! wxSize_helper(_obj0, &_arg0)) | |
1153 | return NULL; | |
1154 | } | |
1155 | { | |
1156 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1157 | _result = (long )wxSize_y_set(_arg0,_arg1); | |
1158 | ||
1159 | wxPyEndAllowThreads(__tstate); | |
1160 | if (PyErr_Occurred()) return NULL; | |
1161 | } _resultobj = Py_BuildValue("l",_result); | |
1162 | return _resultobj; | |
1163 | } | |
1164 | ||
1165 | #define wxSize_y_get(_swigobj) ((long ) _swigobj->y) | |
1166 | static PyObject *_wrap_wxSize_y_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1167 | PyObject * _resultobj; | |
1168 | long _result; | |
1169 | wxSize * _arg0; | |
1170 | wxSize temp; | |
1171 | PyObject * _obj0 = 0; | |
1172 | char *_kwnames[] = { "self", NULL }; | |
1173 | ||
1174 | self = self; | |
1175 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxSize_y_get",_kwnames,&_obj0)) | |
1176 | return NULL; | |
1177 | { | |
1178 | _arg0 = &temp; | |
1179 | if (! wxSize_helper(_obj0, &_arg0)) | |
1180 | return NULL; | |
1181 | } | |
1182 | { | |
1183 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1184 | _result = (long )wxSize_y_get(_arg0); | |
1185 | ||
1186 | wxPyEndAllowThreads(__tstate); | |
1187 | if (PyErr_Occurred()) return NULL; | |
1188 | } _resultobj = Py_BuildValue("l",_result); | |
1189 | return _resultobj; | |
1190 | } | |
1191 | ||
1192 | #define new_wxSize(_swigarg0,_swigarg1) (new wxSize(_swigarg0,_swigarg1)) | |
1193 | static PyObject *_wrap_new_wxSize(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1194 | PyObject * _resultobj; | |
1195 | wxSize * _result; | |
1196 | long _arg0 = (long ) 0; | |
1197 | long _arg1 = (long ) 0; | |
1198 | char *_kwnames[] = { "w","h", NULL }; | |
1199 | char _ptemp[128]; | |
1200 | ||
1201 | self = self; | |
1202 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|ll:new_wxSize",_kwnames,&_arg0,&_arg1)) | |
1203 | return NULL; | |
1204 | { | |
1205 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1206 | _result = (wxSize *)new_wxSize(_arg0,_arg1); | |
1207 | ||
1208 | wxPyEndAllowThreads(__tstate); | |
1209 | if (PyErr_Occurred()) return NULL; | |
1210 | } if (_result) { | |
1211 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxSize_p"); | |
1212 | _resultobj = Py_BuildValue("s",_ptemp); | |
1213 | } else { | |
1214 | Py_INCREF(Py_None); | |
1215 | _resultobj = Py_None; | |
1216 | } | |
1217 | return _resultobj; | |
1218 | } | |
1219 | ||
1220 | #define delete_wxSize(_swigobj) (delete _swigobj) | |
1221 | static PyObject *_wrap_delete_wxSize(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1222 | PyObject * _resultobj; | |
1223 | wxSize * _arg0; | |
1224 | wxSize temp; | |
1225 | PyObject * _obj0 = 0; | |
1226 | char *_kwnames[] = { "self", NULL }; | |
1227 | ||
1228 | self = self; | |
1229 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxSize",_kwnames,&_obj0)) | |
1230 | return NULL; | |
1231 | { | |
1232 | _arg0 = &temp; | |
1233 | if (! wxSize_helper(_obj0, &_arg0)) | |
1234 | return NULL; | |
1235 | } | |
1236 | { | |
1237 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1238 | delete_wxSize(_arg0); | |
1239 | ||
1240 | wxPyEndAllowThreads(__tstate); | |
1241 | if (PyErr_Occurred()) return NULL; | |
1242 | } Py_INCREF(Py_None); | |
1243 | _resultobj = Py_None; | |
1244 | return _resultobj; | |
1245 | } | |
1246 | ||
1247 | #define wxSize_Set(_swigobj,_swigarg0,_swigarg1) (_swigobj->Set(_swigarg0,_swigarg1)) | |
1248 | static PyObject *_wrap_wxSize_Set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1249 | PyObject * _resultobj; | |
1250 | wxSize * _arg0; | |
1251 | long _arg1; | |
1252 | long _arg2; | |
1253 | wxSize temp; | |
1254 | PyObject * _obj0 = 0; | |
1255 | char *_kwnames[] = { "self","w","h", NULL }; | |
1256 | ||
1257 | self = self; | |
1258 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oll:wxSize_Set",_kwnames,&_obj0,&_arg1,&_arg2)) | |
1259 | return NULL; | |
1260 | { | |
1261 | _arg0 = &temp; | |
1262 | if (! wxSize_helper(_obj0, &_arg0)) | |
1263 | return NULL; | |
1264 | } | |
1265 | { | |
1266 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1267 | wxSize_Set(_arg0,_arg1,_arg2); | |
1268 | ||
1269 | wxPyEndAllowThreads(__tstate); | |
1270 | if (PyErr_Occurred()) return NULL; | |
1271 | } Py_INCREF(Py_None); | |
1272 | _resultobj = Py_None; | |
1273 | return _resultobj; | |
1274 | } | |
1275 | ||
1276 | #define wxSize_GetX(_swigobj) (_swigobj->GetX()) | |
1277 | static PyObject *_wrap_wxSize_GetX(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1278 | PyObject * _resultobj; | |
1279 | long _result; | |
1280 | wxSize * _arg0; | |
1281 | wxSize temp; | |
1282 | PyObject * _obj0 = 0; | |
1283 | char *_kwnames[] = { "self", NULL }; | |
1284 | ||
1285 | self = self; | |
1286 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxSize_GetX",_kwnames,&_obj0)) | |
1287 | return NULL; | |
1288 | { | |
1289 | _arg0 = &temp; | |
1290 | if (! wxSize_helper(_obj0, &_arg0)) | |
1291 | return NULL; | |
1292 | } | |
1293 | { | |
1294 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1295 | _result = (long )wxSize_GetX(_arg0); | |
1296 | ||
1297 | wxPyEndAllowThreads(__tstate); | |
1298 | if (PyErr_Occurred()) return NULL; | |
1299 | } _resultobj = Py_BuildValue("l",_result); | |
1300 | return _resultobj; | |
1301 | } | |
1302 | ||
1303 | #define wxSize_GetY(_swigobj) (_swigobj->GetY()) | |
1304 | static PyObject *_wrap_wxSize_GetY(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1305 | PyObject * _resultobj; | |
1306 | long _result; | |
1307 | wxSize * _arg0; | |
1308 | wxSize temp; | |
1309 | PyObject * _obj0 = 0; | |
1310 | char *_kwnames[] = { "self", NULL }; | |
1311 | ||
1312 | self = self; | |
1313 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxSize_GetY",_kwnames,&_obj0)) | |
1314 | return NULL; | |
1315 | { | |
1316 | _arg0 = &temp; | |
1317 | if (! wxSize_helper(_obj0, &_arg0)) | |
1318 | return NULL; | |
1319 | } | |
1320 | { | |
1321 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1322 | _result = (long )wxSize_GetY(_arg0); | |
1323 | ||
1324 | wxPyEndAllowThreads(__tstate); | |
1325 | if (PyErr_Occurred()) return NULL; | |
1326 | } _resultobj = Py_BuildValue("l",_result); | |
1327 | return _resultobj; | |
1328 | } | |
1329 | ||
1330 | #define wxSize_GetWidth(_swigobj) (_swigobj->GetWidth()) | |
1331 | static PyObject *_wrap_wxSize_GetWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1332 | PyObject * _resultobj; | |
1333 | long _result; | |
1334 | wxSize * _arg0; | |
1335 | wxSize temp; | |
1336 | PyObject * _obj0 = 0; | |
1337 | char *_kwnames[] = { "self", NULL }; | |
1338 | ||
1339 | self = self; | |
1340 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxSize_GetWidth",_kwnames,&_obj0)) | |
1341 | return NULL; | |
1342 | { | |
1343 | _arg0 = &temp; | |
1344 | if (! wxSize_helper(_obj0, &_arg0)) | |
1345 | return NULL; | |
1346 | } | |
1347 | { | |
1348 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1349 | _result = (long )wxSize_GetWidth(_arg0); | |
1350 | ||
1351 | wxPyEndAllowThreads(__tstate); | |
1352 | if (PyErr_Occurred()) return NULL; | |
1353 | } _resultobj = Py_BuildValue("l",_result); | |
1354 | return _resultobj; | |
1355 | } | |
1356 | ||
1357 | #define wxSize_GetHeight(_swigobj) (_swigobj->GetHeight()) | |
1358 | static PyObject *_wrap_wxSize_GetHeight(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1359 | PyObject * _resultobj; | |
1360 | long _result; | |
1361 | wxSize * _arg0; | |
1362 | wxSize temp; | |
1363 | PyObject * _obj0 = 0; | |
1364 | char *_kwnames[] = { "self", NULL }; | |
1365 | ||
1366 | self = self; | |
1367 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxSize_GetHeight",_kwnames,&_obj0)) | |
1368 | return NULL; | |
1369 | { | |
1370 | _arg0 = &temp; | |
1371 | if (! wxSize_helper(_obj0, &_arg0)) | |
1372 | return NULL; | |
1373 | } | |
1374 | { | |
1375 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1376 | _result = (long )wxSize_GetHeight(_arg0); | |
1377 | ||
1378 | wxPyEndAllowThreads(__tstate); | |
1379 | if (PyErr_Occurred()) return NULL; | |
1380 | } _resultobj = Py_BuildValue("l",_result); | |
1381 | return _resultobj; | |
1382 | } | |
1383 | ||
1384 | #define wxSize_SetWidth(_swigobj,_swigarg0) (_swigobj->SetWidth(_swigarg0)) | |
1385 | static PyObject *_wrap_wxSize_SetWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1386 | PyObject * _resultobj; | |
1387 | wxSize * _arg0; | |
1388 | long _arg1; | |
1389 | wxSize temp; | |
1390 | PyObject * _obj0 = 0; | |
1391 | char *_kwnames[] = { "self","w", NULL }; | |
1392 | ||
1393 | self = self; | |
1394 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxSize_SetWidth",_kwnames,&_obj0,&_arg1)) | |
1395 | return NULL; | |
1396 | { | |
1397 | _arg0 = &temp; | |
1398 | if (! wxSize_helper(_obj0, &_arg0)) | |
1399 | return NULL; | |
1400 | } | |
1401 | { | |
1402 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1403 | wxSize_SetWidth(_arg0,_arg1); | |
1404 | ||
1405 | wxPyEndAllowThreads(__tstate); | |
1406 | if (PyErr_Occurred()) return NULL; | |
1407 | } Py_INCREF(Py_None); | |
1408 | _resultobj = Py_None; | |
1409 | return _resultobj; | |
1410 | } | |
1411 | ||
1412 | #define wxSize_SetHeight(_swigobj,_swigarg0) (_swigobj->SetHeight(_swigarg0)) | |
1413 | static PyObject *_wrap_wxSize_SetHeight(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1414 | PyObject * _resultobj; | |
1415 | wxSize * _arg0; | |
1416 | long _arg1; | |
1417 | wxSize temp; | |
1418 | PyObject * _obj0 = 0; | |
1419 | char *_kwnames[] = { "self","h", NULL }; | |
1420 | ||
1421 | self = self; | |
1422 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxSize_SetHeight",_kwnames,&_obj0,&_arg1)) | |
1423 | return NULL; | |
1424 | { | |
1425 | _arg0 = &temp; | |
1426 | if (! wxSize_helper(_obj0, &_arg0)) | |
1427 | return NULL; | |
1428 | } | |
1429 | { | |
1430 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1431 | wxSize_SetHeight(_arg0,_arg1); | |
1432 | ||
1433 | wxPyEndAllowThreads(__tstate); | |
1434 | if (PyErr_Occurred()) return NULL; | |
1435 | } Py_INCREF(Py_None); | |
1436 | _resultobj = Py_None; | |
1437 | return _resultobj; | |
1438 | } | |
1439 | ||
1440 | static PyObject * wxSize_asTuple(wxSize *self) { | |
1441 | wxPyBeginBlockThreads(); | |
1442 | PyObject* tup = PyTuple_New(2); | |
1443 | PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(self->x)); | |
1444 | PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(self->y)); | |
1445 | wxPyEndBlockThreads(); | |
1446 | return tup; | |
1447 | } | |
1448 | static PyObject *_wrap_wxSize_asTuple(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1449 | PyObject * _resultobj; | |
1450 | PyObject * _result; | |
1451 | wxSize * _arg0; | |
1452 | wxSize temp; | |
1453 | PyObject * _obj0 = 0; | |
1454 | char *_kwnames[] = { "self", NULL }; | |
1455 | ||
1456 | self = self; | |
1457 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxSize_asTuple",_kwnames,&_obj0)) | |
1458 | return NULL; | |
1459 | { | |
1460 | _arg0 = &temp; | |
1461 | if (! wxSize_helper(_obj0, &_arg0)) | |
1462 | return NULL; | |
1463 | } | |
1464 | { | |
1465 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1466 | _result = (PyObject *)wxSize_asTuple(_arg0); | |
1467 | ||
1468 | wxPyEndAllowThreads(__tstate); | |
1469 | if (PyErr_Occurred()) return NULL; | |
1470 | }{ | |
1471 | _resultobj = _result; | |
1472 | } | |
1473 | return _resultobj; | |
1474 | } | |
1475 | ||
1476 | static int wxSize___cmp__(wxSize *self,const wxSize * sz) { | |
1477 | if (! sz) return 1; | |
1478 | if (*self == *sz) return 0; | |
1479 | return -1; | |
1480 | } | |
1481 | static PyObject *_wrap_wxSize___cmp__(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1482 | PyObject * _resultobj; | |
1483 | int _result; | |
1484 | wxSize * _arg0; | |
1485 | wxSize * _arg1; | |
1486 | wxSize temp; | |
1487 | PyObject * _obj0 = 0; | |
1488 | wxSize temp0; | |
1489 | PyObject * _obj1 = 0; | |
1490 | char *_kwnames[] = { "self","sz", NULL }; | |
1491 | ||
1492 | self = self; | |
1493 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxSize___cmp__",_kwnames,&_obj0,&_obj1)) | |
1494 | return NULL; | |
1495 | { | |
1496 | _arg0 = &temp; | |
1497 | if (! wxSize_helper(_obj0, &_arg0)) | |
1498 | return NULL; | |
1499 | } | |
1500 | { | |
1501 | _arg1 = &temp0; | |
1502 | if (! wxSize_helper(_obj1, &_arg1)) | |
1503 | return NULL; | |
1504 | } | |
1505 | { | |
1506 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1507 | _result = (int )wxSize___cmp__(_arg0,_arg1); | |
1508 | ||
1509 | wxPyEndAllowThreads(__tstate); | |
1510 | if (PyErr_Occurred()) return NULL; | |
1511 | } _resultobj = Py_BuildValue("i",_result); | |
1512 | return _resultobj; | |
1513 | } | |
1514 | ||
1515 | #define wxRealPoint_x_set(_swigobj,_swigval) (_swigobj->x = _swigval,_swigval) | |
1516 | static PyObject *_wrap_wxRealPoint_x_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1517 | PyObject * _resultobj; | |
1518 | double _result; | |
1519 | wxRealPoint * _arg0; | |
1520 | double _arg1; | |
1521 | wxRealPoint temp; | |
1522 | PyObject * _obj0 = 0; | |
1523 | char *_kwnames[] = { "self","x", NULL }; | |
1524 | ||
1525 | self = self; | |
1526 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Od:wxRealPoint_x_set",_kwnames,&_obj0,&_arg1)) | |
1527 | return NULL; | |
1528 | { | |
1529 | _arg0 = &temp; | |
1530 | if (! wxRealPoint_helper(_obj0, &_arg0)) | |
1531 | return NULL; | |
1532 | } | |
1533 | { | |
1534 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1535 | _result = (double )wxRealPoint_x_set(_arg0,_arg1); | |
1536 | ||
1537 | wxPyEndAllowThreads(__tstate); | |
1538 | if (PyErr_Occurred()) return NULL; | |
1539 | } _resultobj = Py_BuildValue("d",_result); | |
1540 | return _resultobj; | |
1541 | } | |
1542 | ||
1543 | #define wxRealPoint_x_get(_swigobj) ((double ) _swigobj->x) | |
1544 | static PyObject *_wrap_wxRealPoint_x_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1545 | PyObject * _resultobj; | |
1546 | double _result; | |
1547 | wxRealPoint * _arg0; | |
1548 | wxRealPoint temp; | |
1549 | PyObject * _obj0 = 0; | |
1550 | char *_kwnames[] = { "self", NULL }; | |
1551 | ||
1552 | self = self; | |
1553 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRealPoint_x_get",_kwnames,&_obj0)) | |
1554 | return NULL; | |
1555 | { | |
1556 | _arg0 = &temp; | |
1557 | if (! wxRealPoint_helper(_obj0, &_arg0)) | |
1558 | return NULL; | |
1559 | } | |
1560 | { | |
1561 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1562 | _result = (double )wxRealPoint_x_get(_arg0); | |
1563 | ||
1564 | wxPyEndAllowThreads(__tstate); | |
1565 | if (PyErr_Occurred()) return NULL; | |
1566 | } _resultobj = Py_BuildValue("d",_result); | |
1567 | return _resultobj; | |
1568 | } | |
1569 | ||
1570 | #define wxRealPoint_y_set(_swigobj,_swigval) (_swigobj->y = _swigval,_swigval) | |
1571 | static PyObject *_wrap_wxRealPoint_y_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1572 | PyObject * _resultobj; | |
1573 | double _result; | |
1574 | wxRealPoint * _arg0; | |
1575 | double _arg1; | |
1576 | wxRealPoint temp; | |
1577 | PyObject * _obj0 = 0; | |
1578 | char *_kwnames[] = { "self","y", NULL }; | |
1579 | ||
1580 | self = self; | |
1581 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Od:wxRealPoint_y_set",_kwnames,&_obj0,&_arg1)) | |
1582 | return NULL; | |
1583 | { | |
1584 | _arg0 = &temp; | |
1585 | if (! wxRealPoint_helper(_obj0, &_arg0)) | |
1586 | return NULL; | |
1587 | } | |
1588 | { | |
1589 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1590 | _result = (double )wxRealPoint_y_set(_arg0,_arg1); | |
1591 | ||
1592 | wxPyEndAllowThreads(__tstate); | |
1593 | if (PyErr_Occurred()) return NULL; | |
1594 | } _resultobj = Py_BuildValue("d",_result); | |
1595 | return _resultobj; | |
1596 | } | |
1597 | ||
1598 | #define wxRealPoint_y_get(_swigobj) ((double ) _swigobj->y) | |
1599 | static PyObject *_wrap_wxRealPoint_y_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1600 | PyObject * _resultobj; | |
1601 | double _result; | |
1602 | wxRealPoint * _arg0; | |
1603 | wxRealPoint temp; | |
1604 | PyObject * _obj0 = 0; | |
1605 | char *_kwnames[] = { "self", NULL }; | |
1606 | ||
1607 | self = self; | |
1608 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRealPoint_y_get",_kwnames,&_obj0)) | |
1609 | return NULL; | |
1610 | { | |
1611 | _arg0 = &temp; | |
1612 | if (! wxRealPoint_helper(_obj0, &_arg0)) | |
1613 | return NULL; | |
1614 | } | |
1615 | { | |
1616 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1617 | _result = (double )wxRealPoint_y_get(_arg0); | |
1618 | ||
1619 | wxPyEndAllowThreads(__tstate); | |
1620 | if (PyErr_Occurred()) return NULL; | |
1621 | } _resultobj = Py_BuildValue("d",_result); | |
1622 | return _resultobj; | |
1623 | } | |
1624 | ||
1625 | #define new_wxRealPoint(_swigarg0,_swigarg1) (new wxRealPoint(_swigarg0,_swigarg1)) | |
1626 | static PyObject *_wrap_new_wxRealPoint(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1627 | PyObject * _resultobj; | |
1628 | wxRealPoint * _result; | |
1629 | double _arg0 = (double ) 0.0; | |
1630 | double _arg1 = (double ) 0.0; | |
1631 | char *_kwnames[] = { "x","y", NULL }; | |
1632 | char _ptemp[128]; | |
1633 | ||
1634 | self = self; | |
1635 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|dd:new_wxRealPoint",_kwnames,&_arg0,&_arg1)) | |
1636 | return NULL; | |
1637 | { | |
1638 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1639 | _result = (wxRealPoint *)new_wxRealPoint(_arg0,_arg1); | |
1640 | ||
1641 | wxPyEndAllowThreads(__tstate); | |
1642 | if (PyErr_Occurred()) return NULL; | |
1643 | } if (_result) { | |
1644 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxRealPoint_p"); | |
1645 | _resultobj = Py_BuildValue("s",_ptemp); | |
1646 | } else { | |
1647 | Py_INCREF(Py_None); | |
1648 | _resultobj = Py_None; | |
1649 | } | |
1650 | return _resultobj; | |
1651 | } | |
1652 | ||
1653 | #define delete_wxRealPoint(_swigobj) (delete _swigobj) | |
1654 | static PyObject *_wrap_delete_wxRealPoint(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1655 | PyObject * _resultobj; | |
1656 | wxRealPoint * _arg0; | |
1657 | wxRealPoint temp; | |
1658 | PyObject * _obj0 = 0; | |
1659 | char *_kwnames[] = { "self", NULL }; | |
1660 | ||
1661 | self = self; | |
1662 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxRealPoint",_kwnames,&_obj0)) | |
1663 | return NULL; | |
1664 | { | |
1665 | _arg0 = &temp; | |
1666 | if (! wxRealPoint_helper(_obj0, &_arg0)) | |
1667 | return NULL; | |
1668 | } | |
1669 | { | |
1670 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1671 | delete_wxRealPoint(_arg0); | |
1672 | ||
1673 | wxPyEndAllowThreads(__tstate); | |
1674 | if (PyErr_Occurred()) return NULL; | |
1675 | } Py_INCREF(Py_None); | |
1676 | _resultobj = Py_None; | |
1677 | return _resultobj; | |
1678 | } | |
1679 | ||
1680 | static void wxRealPoint_Set(wxRealPoint *self,double x,double y) { | |
1681 | self->x = x; | |
1682 | self->y = y; | |
1683 | } | |
1684 | static PyObject *_wrap_wxRealPoint_Set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1685 | PyObject * _resultobj; | |
1686 | wxRealPoint * _arg0; | |
1687 | double _arg1; | |
1688 | double _arg2; | |
1689 | wxRealPoint temp; | |
1690 | PyObject * _obj0 = 0; | |
1691 | char *_kwnames[] = { "self","x","y", NULL }; | |
1692 | ||
1693 | self = self; | |
1694 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Odd:wxRealPoint_Set",_kwnames,&_obj0,&_arg1,&_arg2)) | |
1695 | return NULL; | |
1696 | { | |
1697 | _arg0 = &temp; | |
1698 | if (! wxRealPoint_helper(_obj0, &_arg0)) | |
1699 | return NULL; | |
1700 | } | |
1701 | { | |
1702 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1703 | wxRealPoint_Set(_arg0,_arg1,_arg2); | |
1704 | ||
1705 | wxPyEndAllowThreads(__tstate); | |
1706 | if (PyErr_Occurred()) return NULL; | |
1707 | } Py_INCREF(Py_None); | |
1708 | _resultobj = Py_None; | |
1709 | return _resultobj; | |
1710 | } | |
1711 | ||
1712 | static PyObject * wxRealPoint_asTuple(wxRealPoint *self) { | |
1713 | wxPyBeginBlockThreads(); | |
1714 | PyObject* tup = PyTuple_New(2); | |
1715 | PyTuple_SET_ITEM(tup, 0, PyFloat_FromDouble(self->x)); | |
1716 | PyTuple_SET_ITEM(tup, 1, PyFloat_FromDouble(self->y)); | |
1717 | wxPyEndBlockThreads(); | |
1718 | return tup; | |
1719 | } | |
1720 | static PyObject *_wrap_wxRealPoint_asTuple(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1721 | PyObject * _resultobj; | |
1722 | PyObject * _result; | |
1723 | wxRealPoint * _arg0; | |
1724 | wxRealPoint temp; | |
1725 | PyObject * _obj0 = 0; | |
1726 | char *_kwnames[] = { "self", NULL }; | |
1727 | ||
1728 | self = self; | |
1729 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRealPoint_asTuple",_kwnames,&_obj0)) | |
1730 | return NULL; | |
1731 | { | |
1732 | _arg0 = &temp; | |
1733 | if (! wxRealPoint_helper(_obj0, &_arg0)) | |
1734 | return NULL; | |
1735 | } | |
1736 | { | |
1737 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1738 | _result = (PyObject *)wxRealPoint_asTuple(_arg0); | |
1739 | ||
1740 | wxPyEndAllowThreads(__tstate); | |
1741 | if (PyErr_Occurred()) return NULL; | |
1742 | }{ | |
1743 | _resultobj = _result; | |
1744 | } | |
1745 | return _resultobj; | |
1746 | } | |
1747 | ||
1748 | static wxRealPoint wxRealPoint___add__(wxRealPoint *self,const wxRealPoint * p) { | |
1749 | if (! p) return *self; | |
1750 | return *self + *p; | |
1751 | } | |
1752 | static PyObject *_wrap_wxRealPoint___add__(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1753 | PyObject * _resultobj; | |
1754 | wxRealPoint * _result; | |
1755 | wxRealPoint * _arg0; | |
1756 | wxRealPoint * _arg1; | |
1757 | wxRealPoint temp; | |
1758 | PyObject * _obj0 = 0; | |
1759 | wxRealPoint temp0; | |
1760 | PyObject * _obj1 = 0; | |
1761 | char *_kwnames[] = { "self","p", NULL }; | |
1762 | char _ptemp[128]; | |
1763 | ||
1764 | self = self; | |
1765 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxRealPoint___add__",_kwnames,&_obj0,&_obj1)) | |
1766 | return NULL; | |
1767 | { | |
1768 | _arg0 = &temp; | |
1769 | if (! wxRealPoint_helper(_obj0, &_arg0)) | |
1770 | return NULL; | |
1771 | } | |
1772 | { | |
1773 | _arg1 = &temp0; | |
1774 | if (! wxRealPoint_helper(_obj1, &_arg1)) | |
1775 | return NULL; | |
1776 | } | |
1777 | { | |
1778 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1779 | _result = new wxRealPoint (wxRealPoint___add__(_arg0,_arg1)); | |
1780 | ||
1781 | wxPyEndAllowThreads(__tstate); | |
1782 | if (PyErr_Occurred()) return NULL; | |
1783 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxRealPoint_p"); | |
1784 | _resultobj = Py_BuildValue("s",_ptemp); | |
1785 | return _resultobj; | |
1786 | } | |
1787 | ||
1788 | static wxRealPoint wxRealPoint___sub__(wxRealPoint *self,const wxRealPoint * p) { | |
1789 | if (! p) return *self; | |
1790 | return *self - *p; | |
1791 | } | |
1792 | static PyObject *_wrap_wxRealPoint___sub__(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1793 | PyObject * _resultobj; | |
1794 | wxRealPoint * _result; | |
1795 | wxRealPoint * _arg0; | |
1796 | wxRealPoint * _arg1; | |
1797 | wxRealPoint temp; | |
1798 | PyObject * _obj0 = 0; | |
1799 | wxRealPoint temp0; | |
1800 | PyObject * _obj1 = 0; | |
1801 | char *_kwnames[] = { "self","p", NULL }; | |
1802 | char _ptemp[128]; | |
1803 | ||
1804 | self = self; | |
1805 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxRealPoint___sub__",_kwnames,&_obj0,&_obj1)) | |
1806 | return NULL; | |
1807 | { | |
1808 | _arg0 = &temp; | |
1809 | if (! wxRealPoint_helper(_obj0, &_arg0)) | |
1810 | return NULL; | |
1811 | } | |
1812 | { | |
1813 | _arg1 = &temp0; | |
1814 | if (! wxRealPoint_helper(_obj1, &_arg1)) | |
1815 | return NULL; | |
1816 | } | |
1817 | { | |
1818 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1819 | _result = new wxRealPoint (wxRealPoint___sub__(_arg0,_arg1)); | |
1820 | ||
1821 | wxPyEndAllowThreads(__tstate); | |
1822 | if (PyErr_Occurred()) return NULL; | |
1823 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxRealPoint_p"); | |
1824 | _resultobj = Py_BuildValue("s",_ptemp); | |
1825 | return _resultobj; | |
1826 | } | |
1827 | ||
1828 | static int wxRealPoint___cmp__(wxRealPoint *self,const wxRealPoint * p) { | |
1829 | if (! p) return 1; | |
1830 | if (*self == *p) return 0; | |
1831 | return -1; | |
1832 | } | |
1833 | static PyObject *_wrap_wxRealPoint___cmp__(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1834 | PyObject * _resultobj; | |
1835 | int _result; | |
1836 | wxRealPoint * _arg0; | |
1837 | wxRealPoint * _arg1; | |
1838 | wxRealPoint temp; | |
1839 | PyObject * _obj0 = 0; | |
1840 | wxRealPoint temp0; | |
1841 | PyObject * _obj1 = 0; | |
1842 | char *_kwnames[] = { "self","p", NULL }; | |
1843 | ||
1844 | self = self; | |
1845 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxRealPoint___cmp__",_kwnames,&_obj0,&_obj1)) | |
1846 | return NULL; | |
1847 | { | |
1848 | _arg0 = &temp; | |
1849 | if (! wxRealPoint_helper(_obj0, &_arg0)) | |
1850 | return NULL; | |
1851 | } | |
1852 | { | |
1853 | _arg1 = &temp0; | |
1854 | if (! wxRealPoint_helper(_obj1, &_arg1)) | |
1855 | return NULL; | |
1856 | } | |
1857 | { | |
1858 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1859 | _result = (int )wxRealPoint___cmp__(_arg0,_arg1); | |
1860 | ||
1861 | wxPyEndAllowThreads(__tstate); | |
1862 | if (PyErr_Occurred()) return NULL; | |
1863 | } _resultobj = Py_BuildValue("i",_result); | |
1864 | return _resultobj; | |
1865 | } | |
1866 | ||
1867 | #define wxPoint_x_set(_swigobj,_swigval) (_swigobj->x = _swigval,_swigval) | |
1868 | static PyObject *_wrap_wxPoint_x_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1869 | PyObject * _resultobj; | |
1870 | long _result; | |
1871 | wxPoint * _arg0; | |
1872 | long _arg1; | |
1873 | wxPoint temp; | |
1874 | PyObject * _obj0 = 0; | |
1875 | char *_kwnames[] = { "self","x", NULL }; | |
1876 | ||
1877 | self = self; | |
1878 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxPoint_x_set",_kwnames,&_obj0,&_arg1)) | |
1879 | return NULL; | |
1880 | { | |
1881 | _arg0 = &temp; | |
1882 | if (! wxPoint_helper(_obj0, &_arg0)) | |
1883 | return NULL; | |
1884 | } | |
1885 | { | |
1886 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1887 | _result = (long )wxPoint_x_set(_arg0,_arg1); | |
1888 | ||
1889 | wxPyEndAllowThreads(__tstate); | |
1890 | if (PyErr_Occurred()) return NULL; | |
1891 | } _resultobj = Py_BuildValue("l",_result); | |
1892 | return _resultobj; | |
1893 | } | |
1894 | ||
1895 | #define wxPoint_x_get(_swigobj) ((long ) _swigobj->x) | |
1896 | static PyObject *_wrap_wxPoint_x_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1897 | PyObject * _resultobj; | |
1898 | long _result; | |
1899 | wxPoint * _arg0; | |
1900 | wxPoint temp; | |
1901 | PyObject * _obj0 = 0; | |
1902 | char *_kwnames[] = { "self", NULL }; | |
1903 | ||
1904 | self = self; | |
1905 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPoint_x_get",_kwnames,&_obj0)) | |
1906 | return NULL; | |
1907 | { | |
1908 | _arg0 = &temp; | |
1909 | if (! wxPoint_helper(_obj0, &_arg0)) | |
1910 | return NULL; | |
1911 | } | |
1912 | { | |
1913 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1914 | _result = (long )wxPoint_x_get(_arg0); | |
1915 | ||
1916 | wxPyEndAllowThreads(__tstate); | |
1917 | if (PyErr_Occurred()) return NULL; | |
1918 | } _resultobj = Py_BuildValue("l",_result); | |
1919 | return _resultobj; | |
1920 | } | |
1921 | ||
1922 | #define wxPoint_y_set(_swigobj,_swigval) (_swigobj->y = _swigval,_swigval) | |
1923 | static PyObject *_wrap_wxPoint_y_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1924 | PyObject * _resultobj; | |
1925 | long _result; | |
1926 | wxPoint * _arg0; | |
1927 | long _arg1; | |
1928 | wxPoint temp; | |
1929 | PyObject * _obj0 = 0; | |
1930 | char *_kwnames[] = { "self","y", NULL }; | |
1931 | ||
1932 | self = self; | |
1933 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxPoint_y_set",_kwnames,&_obj0,&_arg1)) | |
1934 | return NULL; | |
1935 | { | |
1936 | _arg0 = &temp; | |
1937 | if (! wxPoint_helper(_obj0, &_arg0)) | |
1938 | return NULL; | |
1939 | } | |
1940 | { | |
1941 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1942 | _result = (long )wxPoint_y_set(_arg0,_arg1); | |
1943 | ||
1944 | wxPyEndAllowThreads(__tstate); | |
1945 | if (PyErr_Occurred()) return NULL; | |
1946 | } _resultobj = Py_BuildValue("l",_result); | |
1947 | return _resultobj; | |
1948 | } | |
1949 | ||
1950 | #define wxPoint_y_get(_swigobj) ((long ) _swigobj->y) | |
1951 | static PyObject *_wrap_wxPoint_y_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1952 | PyObject * _resultobj; | |
1953 | long _result; | |
1954 | wxPoint * _arg0; | |
1955 | wxPoint temp; | |
1956 | PyObject * _obj0 = 0; | |
1957 | char *_kwnames[] = { "self", NULL }; | |
1958 | ||
1959 | self = self; | |
1960 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPoint_y_get",_kwnames,&_obj0)) | |
1961 | return NULL; | |
1962 | { | |
1963 | _arg0 = &temp; | |
1964 | if (! wxPoint_helper(_obj0, &_arg0)) | |
1965 | return NULL; | |
1966 | } | |
1967 | { | |
1968 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1969 | _result = (long )wxPoint_y_get(_arg0); | |
1970 | ||
1971 | wxPyEndAllowThreads(__tstate); | |
1972 | if (PyErr_Occurred()) return NULL; | |
1973 | } _resultobj = Py_BuildValue("l",_result); | |
1974 | return _resultobj; | |
1975 | } | |
1976 | ||
1977 | #define new_wxPoint(_swigarg0,_swigarg1) (new wxPoint(_swigarg0,_swigarg1)) | |
1978 | static PyObject *_wrap_new_wxPoint(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1979 | PyObject * _resultobj; | |
1980 | wxPoint * _result; | |
1981 | long _arg0 = (long ) 0; | |
1982 | long _arg1 = (long ) 0; | |
1983 | char *_kwnames[] = { "x","y", NULL }; | |
1984 | char _ptemp[128]; | |
1985 | ||
1986 | self = self; | |
1987 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|ll:new_wxPoint",_kwnames,&_arg0,&_arg1)) | |
1988 | return NULL; | |
1989 | { | |
1990 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1991 | _result = (wxPoint *)new_wxPoint(_arg0,_arg1); | |
1992 | ||
1993 | wxPyEndAllowThreads(__tstate); | |
1994 | if (PyErr_Occurred()) return NULL; | |
1995 | } if (_result) { | |
1996 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPoint_p"); | |
1997 | _resultobj = Py_BuildValue("s",_ptemp); | |
1998 | } else { | |
1999 | Py_INCREF(Py_None); | |
2000 | _resultobj = Py_None; | |
2001 | } | |
2002 | return _resultobj; | |
2003 | } | |
2004 | ||
2005 | #define delete_wxPoint(_swigobj) (delete _swigobj) | |
2006 | static PyObject *_wrap_delete_wxPoint(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2007 | PyObject * _resultobj; | |
2008 | wxPoint * _arg0; | |
2009 | wxPoint temp; | |
2010 | PyObject * _obj0 = 0; | |
2011 | char *_kwnames[] = { "self", NULL }; | |
2012 | ||
2013 | self = self; | |
2014 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxPoint",_kwnames,&_obj0)) | |
2015 | return NULL; | |
2016 | { | |
2017 | _arg0 = &temp; | |
2018 | if (! wxPoint_helper(_obj0, &_arg0)) | |
2019 | return NULL; | |
2020 | } | |
2021 | { | |
2022 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2023 | delete_wxPoint(_arg0); | |
2024 | ||
2025 | wxPyEndAllowThreads(__tstate); | |
2026 | if (PyErr_Occurred()) return NULL; | |
2027 | } Py_INCREF(Py_None); | |
2028 | _resultobj = Py_None; | |
2029 | return _resultobj; | |
2030 | } | |
2031 | ||
2032 | static void wxPoint_Set(wxPoint *self,long x,long y) { | |
2033 | self->x = x; | |
2034 | self->y = y; | |
2035 | } | |
2036 | static PyObject *_wrap_wxPoint_Set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2037 | PyObject * _resultobj; | |
2038 | wxPoint * _arg0; | |
2039 | long _arg1; | |
2040 | long _arg2; | |
2041 | wxPoint temp; | |
2042 | PyObject * _obj0 = 0; | |
2043 | char *_kwnames[] = { "self","x","y", NULL }; | |
2044 | ||
2045 | self = self; | |
2046 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oll:wxPoint_Set",_kwnames,&_obj0,&_arg1,&_arg2)) | |
2047 | return NULL; | |
2048 | { | |
2049 | _arg0 = &temp; | |
2050 | if (! wxPoint_helper(_obj0, &_arg0)) | |
2051 | return NULL; | |
2052 | } | |
2053 | { | |
2054 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2055 | wxPoint_Set(_arg0,_arg1,_arg2); | |
2056 | ||
2057 | wxPyEndAllowThreads(__tstate); | |
2058 | if (PyErr_Occurred()) return NULL; | |
2059 | } Py_INCREF(Py_None); | |
2060 | _resultobj = Py_None; | |
2061 | return _resultobj; | |
2062 | } | |
2063 | ||
2064 | static PyObject * wxPoint_asTuple(wxPoint *self) { | |
2065 | wxPyBeginBlockThreads(); | |
2066 | PyObject* tup = PyTuple_New(2); | |
2067 | PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(self->x)); | |
2068 | PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(self->y)); | |
2069 | wxPyEndBlockThreads(); | |
2070 | return tup; | |
2071 | } | |
2072 | static PyObject *_wrap_wxPoint_asTuple(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2073 | PyObject * _resultobj; | |
2074 | PyObject * _result; | |
2075 | wxPoint * _arg0; | |
2076 | wxPoint temp; | |
2077 | PyObject * _obj0 = 0; | |
2078 | char *_kwnames[] = { "self", NULL }; | |
2079 | ||
2080 | self = self; | |
2081 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPoint_asTuple",_kwnames,&_obj0)) | |
2082 | return NULL; | |
2083 | { | |
2084 | _arg0 = &temp; | |
2085 | if (! wxPoint_helper(_obj0, &_arg0)) | |
2086 | return NULL; | |
2087 | } | |
2088 | { | |
2089 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2090 | _result = (PyObject *)wxPoint_asTuple(_arg0); | |
2091 | ||
2092 | wxPyEndAllowThreads(__tstate); | |
2093 | if (PyErr_Occurred()) return NULL; | |
2094 | }{ | |
2095 | _resultobj = _result; | |
2096 | } | |
2097 | return _resultobj; | |
2098 | } | |
2099 | ||
2100 | static wxPoint wxPoint___add__(wxPoint *self,const wxPoint * p) { | |
2101 | if (! p) return *self; | |
2102 | return *self + *p; | |
2103 | } | |
2104 | static PyObject *_wrap_wxPoint___add__(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2105 | PyObject * _resultobj; | |
2106 | wxPoint * _result; | |
2107 | wxPoint * _arg0; | |
2108 | wxPoint * _arg1; | |
2109 | wxPoint temp; | |
2110 | PyObject * _obj0 = 0; | |
2111 | wxPoint temp0; | |
2112 | PyObject * _obj1 = 0; | |
2113 | char *_kwnames[] = { "self","p", NULL }; | |
2114 | char _ptemp[128]; | |
2115 | ||
2116 | self = self; | |
2117 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPoint___add__",_kwnames,&_obj0,&_obj1)) | |
2118 | return NULL; | |
2119 | { | |
2120 | _arg0 = &temp; | |
2121 | if (! wxPoint_helper(_obj0, &_arg0)) | |
2122 | return NULL; | |
2123 | } | |
2124 | { | |
2125 | _arg1 = &temp0; | |
2126 | if (! wxPoint_helper(_obj1, &_arg1)) | |
2127 | return NULL; | |
2128 | } | |
2129 | { | |
2130 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2131 | _result = new wxPoint (wxPoint___add__(_arg0,_arg1)); | |
2132 | ||
2133 | wxPyEndAllowThreads(__tstate); | |
2134 | if (PyErr_Occurred()) return NULL; | |
2135 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); | |
2136 | _resultobj = Py_BuildValue("s",_ptemp); | |
2137 | return _resultobj; | |
2138 | } | |
2139 | ||
2140 | static wxPoint wxPoint___sub__(wxPoint *self,const wxPoint * p) { | |
2141 | if (! p) return *self; | |
2142 | return *self - *p; | |
2143 | } | |
2144 | static PyObject *_wrap_wxPoint___sub__(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2145 | PyObject * _resultobj; | |
2146 | wxPoint * _result; | |
2147 | wxPoint * _arg0; | |
2148 | wxPoint * _arg1; | |
2149 | wxPoint temp; | |
2150 | PyObject * _obj0 = 0; | |
2151 | wxPoint temp0; | |
2152 | PyObject * _obj1 = 0; | |
2153 | char *_kwnames[] = { "self","p", NULL }; | |
2154 | char _ptemp[128]; | |
2155 | ||
2156 | self = self; | |
2157 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPoint___sub__",_kwnames,&_obj0,&_obj1)) | |
2158 | return NULL; | |
2159 | { | |
2160 | _arg0 = &temp; | |
2161 | if (! wxPoint_helper(_obj0, &_arg0)) | |
2162 | return NULL; | |
2163 | } | |
2164 | { | |
2165 | _arg1 = &temp0; | |
2166 | if (! wxPoint_helper(_obj1, &_arg1)) | |
2167 | return NULL; | |
2168 | } | |
2169 | { | |
2170 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2171 | _result = new wxPoint (wxPoint___sub__(_arg0,_arg1)); | |
2172 | ||
2173 | wxPyEndAllowThreads(__tstate); | |
2174 | if (PyErr_Occurred()) return NULL; | |
2175 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); | |
2176 | _resultobj = Py_BuildValue("s",_ptemp); | |
2177 | return _resultobj; | |
2178 | } | |
2179 | ||
2180 | static int wxPoint___cmp__(wxPoint *self,const wxPoint * p) { | |
2181 | if (! p) return 1; | |
2182 | if (*self == *p) return 0; | |
2183 | return -1; | |
2184 | } | |
2185 | static PyObject *_wrap_wxPoint___cmp__(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2186 | PyObject * _resultobj; | |
2187 | int _result; | |
2188 | wxPoint * _arg0; | |
2189 | wxPoint * _arg1; | |
2190 | wxPoint temp; | |
2191 | PyObject * _obj0 = 0; | |
2192 | wxPoint temp0; | |
2193 | PyObject * _obj1 = 0; | |
2194 | char *_kwnames[] = { "self","p", NULL }; | |
2195 | ||
2196 | self = self; | |
2197 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPoint___cmp__",_kwnames,&_obj0,&_obj1)) | |
2198 | return NULL; | |
2199 | { | |
2200 | _arg0 = &temp; | |
2201 | if (! wxPoint_helper(_obj0, &_arg0)) | |
2202 | return NULL; | |
2203 | } | |
2204 | { | |
2205 | _arg1 = &temp0; | |
2206 | if (! wxPoint_helper(_obj1, &_arg1)) | |
2207 | return NULL; | |
2208 | } | |
2209 | { | |
2210 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2211 | _result = (int )wxPoint___cmp__(_arg0,_arg1); | |
2212 | ||
2213 | wxPyEndAllowThreads(__tstate); | |
2214 | if (PyErr_Occurred()) return NULL; | |
2215 | } _resultobj = Py_BuildValue("i",_result); | |
2216 | return _resultobj; | |
2217 | } | |
2218 | ||
2219 | #define new_wxRect(_swigarg0,_swigarg1,_swigarg2,_swigarg3) (new wxRect(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) | |
2220 | static PyObject *_wrap_new_wxRect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2221 | PyObject * _resultobj; | |
2222 | wxRect * _result; | |
2223 | int _arg0 = (int ) 0; | |
2224 | int _arg1 = (int ) 0; | |
2225 | int _arg2 = (int ) 0; | |
2226 | int _arg3 = (int ) 0; | |
2227 | char *_kwnames[] = { "x","y","w","h", NULL }; | |
2228 | char _ptemp[128]; | |
2229 | ||
2230 | self = self; | |
2231 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|iiii:new_wxRect",_kwnames,&_arg0,&_arg1,&_arg2,&_arg3)) | |
2232 | return NULL; | |
2233 | { | |
2234 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2235 | _result = (wxRect *)new_wxRect(_arg0,_arg1,_arg2,_arg3); | |
2236 | ||
2237 | wxPyEndAllowThreads(__tstate); | |
2238 | if (PyErr_Occurred()) return NULL; | |
2239 | } if (_result) { | |
2240 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxRect_p"); | |
2241 | _resultobj = Py_BuildValue("s",_ptemp); | |
2242 | } else { | |
2243 | Py_INCREF(Py_None); | |
2244 | _resultobj = Py_None; | |
2245 | } | |
2246 | return _resultobj; | |
2247 | } | |
2248 | ||
2249 | #define delete_wxRect(_swigobj) (delete _swigobj) | |
2250 | static PyObject *_wrap_delete_wxRect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2251 | PyObject * _resultobj; | |
2252 | wxRect * _arg0; | |
2253 | wxRect temp; | |
2254 | PyObject * _obj0 = 0; | |
2255 | char *_kwnames[] = { "self", NULL }; | |
2256 | ||
2257 | self = self; | |
2258 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxRect",_kwnames,&_obj0)) | |
2259 | return NULL; | |
2260 | { | |
2261 | _arg0 = &temp; | |
2262 | if (! wxRect_helper(_obj0, &_arg0)) | |
2263 | return NULL; | |
2264 | } | |
2265 | { | |
2266 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2267 | delete_wxRect(_arg0); | |
2268 | ||
2269 | wxPyEndAllowThreads(__tstate); | |
2270 | if (PyErr_Occurred()) return NULL; | |
2271 | } Py_INCREF(Py_None); | |
2272 | _resultobj = Py_None; | |
2273 | return _resultobj; | |
2274 | } | |
2275 | ||
2276 | #define wxRect_GetX(_swigobj) (_swigobj->GetX()) | |
2277 | static PyObject *_wrap_wxRect_GetX(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2278 | PyObject * _resultobj; | |
2279 | int _result; | |
2280 | wxRect * _arg0; | |
2281 | wxRect temp; | |
2282 | PyObject * _obj0 = 0; | |
2283 | char *_kwnames[] = { "self", NULL }; | |
2284 | ||
2285 | self = self; | |
2286 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetX",_kwnames,&_obj0)) | |
2287 | return NULL; | |
2288 | { | |
2289 | _arg0 = &temp; | |
2290 | if (! wxRect_helper(_obj0, &_arg0)) | |
2291 | return NULL; | |
2292 | } | |
2293 | { | |
2294 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2295 | _result = (int )wxRect_GetX(_arg0); | |
2296 | ||
2297 | wxPyEndAllowThreads(__tstate); | |
2298 | if (PyErr_Occurred()) return NULL; | |
2299 | } _resultobj = Py_BuildValue("i",_result); | |
2300 | return _resultobj; | |
2301 | } | |
2302 | ||
2303 | #define wxRect_SetX(_swigobj,_swigarg0) (_swigobj->SetX(_swigarg0)) | |
2304 | static PyObject *_wrap_wxRect_SetX(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2305 | PyObject * _resultobj; | |
2306 | wxRect * _arg0; | |
2307 | int _arg1; | |
2308 | wxRect temp; | |
2309 | PyObject * _obj0 = 0; | |
2310 | char *_kwnames[] = { "self","X", NULL }; | |
2311 | ||
2312 | self = self; | |
2313 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetX",_kwnames,&_obj0,&_arg1)) | |
2314 | return NULL; | |
2315 | { | |
2316 | _arg0 = &temp; | |
2317 | if (! wxRect_helper(_obj0, &_arg0)) | |
2318 | return NULL; | |
2319 | } | |
2320 | { | |
2321 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2322 | wxRect_SetX(_arg0,_arg1); | |
2323 | ||
2324 | wxPyEndAllowThreads(__tstate); | |
2325 | if (PyErr_Occurred()) return NULL; | |
2326 | } Py_INCREF(Py_None); | |
2327 | _resultobj = Py_None; | |
2328 | return _resultobj; | |
2329 | } | |
2330 | ||
2331 | #define wxRect_GetY(_swigobj) (_swigobj->GetY()) | |
2332 | static PyObject *_wrap_wxRect_GetY(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2333 | PyObject * _resultobj; | |
2334 | int _result; | |
2335 | wxRect * _arg0; | |
2336 | wxRect temp; | |
2337 | PyObject * _obj0 = 0; | |
2338 | char *_kwnames[] = { "self", NULL }; | |
2339 | ||
2340 | self = self; | |
2341 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetY",_kwnames,&_obj0)) | |
2342 | return NULL; | |
2343 | { | |
2344 | _arg0 = &temp; | |
2345 | if (! wxRect_helper(_obj0, &_arg0)) | |
2346 | return NULL; | |
2347 | } | |
2348 | { | |
2349 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2350 | _result = (int )wxRect_GetY(_arg0); | |
2351 | ||
2352 | wxPyEndAllowThreads(__tstate); | |
2353 | if (PyErr_Occurred()) return NULL; | |
2354 | } _resultobj = Py_BuildValue("i",_result); | |
2355 | return _resultobj; | |
2356 | } | |
2357 | ||
2358 | #define wxRect_SetY(_swigobj,_swigarg0) (_swigobj->SetY(_swigarg0)) | |
2359 | static PyObject *_wrap_wxRect_SetY(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2360 | PyObject * _resultobj; | |
2361 | wxRect * _arg0; | |
2362 | int _arg1; | |
2363 | wxRect temp; | |
2364 | PyObject * _obj0 = 0; | |
2365 | char *_kwnames[] = { "self","Y", NULL }; | |
2366 | ||
2367 | self = self; | |
2368 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetY",_kwnames,&_obj0,&_arg1)) | |
2369 | return NULL; | |
2370 | { | |
2371 | _arg0 = &temp; | |
2372 | if (! wxRect_helper(_obj0, &_arg0)) | |
2373 | return NULL; | |
2374 | } | |
2375 | { | |
2376 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2377 | wxRect_SetY(_arg0,_arg1); | |
2378 | ||
2379 | wxPyEndAllowThreads(__tstate); | |
2380 | if (PyErr_Occurred()) return NULL; | |
2381 | } Py_INCREF(Py_None); | |
2382 | _resultobj = Py_None; | |
2383 | return _resultobj; | |
2384 | } | |
2385 | ||
2386 | #define wxRect_GetWidth(_swigobj) (_swigobj->GetWidth()) | |
2387 | static PyObject *_wrap_wxRect_GetWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2388 | PyObject * _resultobj; | |
2389 | int _result; | |
2390 | wxRect * _arg0; | |
2391 | wxRect temp; | |
2392 | PyObject * _obj0 = 0; | |
2393 | char *_kwnames[] = { "self", NULL }; | |
2394 | ||
2395 | self = self; | |
2396 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetWidth",_kwnames,&_obj0)) | |
2397 | return NULL; | |
2398 | { | |
2399 | _arg0 = &temp; | |
2400 | if (! wxRect_helper(_obj0, &_arg0)) | |
2401 | return NULL; | |
2402 | } | |
2403 | { | |
2404 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2405 | _result = (int )wxRect_GetWidth(_arg0); | |
2406 | ||
2407 | wxPyEndAllowThreads(__tstate); | |
2408 | if (PyErr_Occurred()) return NULL; | |
2409 | } _resultobj = Py_BuildValue("i",_result); | |
2410 | return _resultobj; | |
2411 | } | |
2412 | ||
2413 | #define wxRect_SetWidth(_swigobj,_swigarg0) (_swigobj->SetWidth(_swigarg0)) | |
2414 | static PyObject *_wrap_wxRect_SetWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2415 | PyObject * _resultobj; | |
2416 | wxRect * _arg0; | |
2417 | int _arg1; | |
2418 | wxRect temp; | |
2419 | PyObject * _obj0 = 0; | |
2420 | char *_kwnames[] = { "self","w", NULL }; | |
2421 | ||
2422 | self = self; | |
2423 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetWidth",_kwnames,&_obj0,&_arg1)) | |
2424 | return NULL; | |
2425 | { | |
2426 | _arg0 = &temp; | |
2427 | if (! wxRect_helper(_obj0, &_arg0)) | |
2428 | return NULL; | |
2429 | } | |
2430 | { | |
2431 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2432 | wxRect_SetWidth(_arg0,_arg1); | |
2433 | ||
2434 | wxPyEndAllowThreads(__tstate); | |
2435 | if (PyErr_Occurred()) return NULL; | |
2436 | } Py_INCREF(Py_None); | |
2437 | _resultobj = Py_None; | |
2438 | return _resultobj; | |
2439 | } | |
2440 | ||
2441 | #define wxRect_GetHeight(_swigobj) (_swigobj->GetHeight()) | |
2442 | static PyObject *_wrap_wxRect_GetHeight(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2443 | PyObject * _resultobj; | |
2444 | int _result; | |
2445 | wxRect * _arg0; | |
2446 | wxRect temp; | |
2447 | PyObject * _obj0 = 0; | |
2448 | char *_kwnames[] = { "self", NULL }; | |
2449 | ||
2450 | self = self; | |
2451 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetHeight",_kwnames,&_obj0)) | |
2452 | return NULL; | |
2453 | { | |
2454 | _arg0 = &temp; | |
2455 | if (! wxRect_helper(_obj0, &_arg0)) | |
2456 | return NULL; | |
2457 | } | |
2458 | { | |
2459 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2460 | _result = (int )wxRect_GetHeight(_arg0); | |
2461 | ||
2462 | wxPyEndAllowThreads(__tstate); | |
2463 | if (PyErr_Occurred()) return NULL; | |
2464 | } _resultobj = Py_BuildValue("i",_result); | |
2465 | return _resultobj; | |
2466 | } | |
2467 | ||
2468 | #define wxRect_SetHeight(_swigobj,_swigarg0) (_swigobj->SetHeight(_swigarg0)) | |
2469 | static PyObject *_wrap_wxRect_SetHeight(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2470 | PyObject * _resultobj; | |
2471 | wxRect * _arg0; | |
2472 | int _arg1; | |
2473 | wxRect temp; | |
2474 | PyObject * _obj0 = 0; | |
2475 | char *_kwnames[] = { "self","h", NULL }; | |
2476 | ||
2477 | self = self; | |
2478 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetHeight",_kwnames,&_obj0,&_arg1)) | |
2479 | return NULL; | |
2480 | { | |
2481 | _arg0 = &temp; | |
2482 | if (! wxRect_helper(_obj0, &_arg0)) | |
2483 | return NULL; | |
2484 | } | |
2485 | { | |
2486 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2487 | wxRect_SetHeight(_arg0,_arg1); | |
2488 | ||
2489 | wxPyEndAllowThreads(__tstate); | |
2490 | if (PyErr_Occurred()) return NULL; | |
2491 | } Py_INCREF(Py_None); | |
2492 | _resultobj = Py_None; | |
2493 | return _resultobj; | |
2494 | } | |
2495 | ||
2496 | #define wxRect_GetPosition(_swigobj) (_swigobj->GetPosition()) | |
2497 | static PyObject *_wrap_wxRect_GetPosition(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2498 | PyObject * _resultobj; | |
2499 | wxPoint * _result; | |
2500 | wxRect * _arg0; | |
2501 | wxRect temp; | |
2502 | PyObject * _obj0 = 0; | |
2503 | char *_kwnames[] = { "self", NULL }; | |
2504 | char _ptemp[128]; | |
2505 | ||
2506 | self = self; | |
2507 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetPosition",_kwnames,&_obj0)) | |
2508 | return NULL; | |
2509 | { | |
2510 | _arg0 = &temp; | |
2511 | if (! wxRect_helper(_obj0, &_arg0)) | |
2512 | return NULL; | |
2513 | } | |
2514 | { | |
2515 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2516 | _result = new wxPoint (wxRect_GetPosition(_arg0)); | |
2517 | ||
2518 | wxPyEndAllowThreads(__tstate); | |
2519 | if (PyErr_Occurred()) return NULL; | |
2520 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); | |
2521 | _resultobj = Py_BuildValue("s",_ptemp); | |
2522 | return _resultobj; | |
2523 | } | |
2524 | ||
2525 | #define wxRect_GetSize(_swigobj) (_swigobj->GetSize()) | |
2526 | static PyObject *_wrap_wxRect_GetSize(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2527 | PyObject * _resultobj; | |
2528 | wxSize * _result; | |
2529 | wxRect * _arg0; | |
2530 | wxRect temp; | |
2531 | PyObject * _obj0 = 0; | |
2532 | char *_kwnames[] = { "self", NULL }; | |
2533 | char _ptemp[128]; | |
2534 | ||
2535 | self = self; | |
2536 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetSize",_kwnames,&_obj0)) | |
2537 | return NULL; | |
2538 | { | |
2539 | _arg0 = &temp; | |
2540 | if (! wxRect_helper(_obj0, &_arg0)) | |
2541 | return NULL; | |
2542 | } | |
2543 | { | |
2544 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2545 | _result = new wxSize (wxRect_GetSize(_arg0)); | |
2546 | ||
2547 | wxPyEndAllowThreads(__tstate); | |
2548 | if (PyErr_Occurred()) return NULL; | |
2549 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxSize_p"); | |
2550 | _resultobj = Py_BuildValue("s",_ptemp); | |
2551 | return _resultobj; | |
2552 | } | |
2553 | ||
2554 | #define wxRect_SetPosition(_swigobj,_swigarg0) (_swigobj->SetPosition(_swigarg0)) | |
2555 | static PyObject *_wrap_wxRect_SetPosition(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2556 | PyObject * _resultobj; | |
2557 | wxRect * _arg0; | |
2558 | wxPoint * _arg1; | |
2559 | wxRect temp; | |
2560 | PyObject * _obj0 = 0; | |
2561 | wxPoint temp0; | |
2562 | PyObject * _obj1 = 0; | |
2563 | char *_kwnames[] = { "self","p", NULL }; | |
2564 | ||
2565 | self = self; | |
2566 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxRect_SetPosition",_kwnames,&_obj0,&_obj1)) | |
2567 | return NULL; | |
2568 | { | |
2569 | _arg0 = &temp; | |
2570 | if (! wxRect_helper(_obj0, &_arg0)) | |
2571 | return NULL; | |
2572 | } | |
2573 | { | |
2574 | _arg1 = &temp0; | |
2575 | if (! wxPoint_helper(_obj1, &_arg1)) | |
2576 | return NULL; | |
2577 | } | |
2578 | { | |
2579 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2580 | wxRect_SetPosition(_arg0,*_arg1); | |
2581 | ||
2582 | wxPyEndAllowThreads(__tstate); | |
2583 | if (PyErr_Occurred()) return NULL; | |
2584 | } Py_INCREF(Py_None); | |
2585 | _resultobj = Py_None; | |
2586 | return _resultobj; | |
2587 | } | |
2588 | ||
2589 | #define wxRect_SetSize(_swigobj,_swigarg0) (_swigobj->SetSize(_swigarg0)) | |
2590 | static PyObject *_wrap_wxRect_SetSize(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2591 | PyObject * _resultobj; | |
2592 | wxRect * _arg0; | |
2593 | wxSize * _arg1; | |
2594 | wxRect temp; | |
2595 | PyObject * _obj0 = 0; | |
2596 | wxSize temp0; | |
2597 | PyObject * _obj1 = 0; | |
2598 | char *_kwnames[] = { "self","s", NULL }; | |
2599 | ||
2600 | self = self; | |
2601 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxRect_SetSize",_kwnames,&_obj0,&_obj1)) | |
2602 | return NULL; | |
2603 | { | |
2604 | _arg0 = &temp; | |
2605 | if (! wxRect_helper(_obj0, &_arg0)) | |
2606 | return NULL; | |
2607 | } | |
2608 | { | |
2609 | _arg1 = &temp0; | |
2610 | if (! wxSize_helper(_obj1, &_arg1)) | |
2611 | return NULL; | |
2612 | } | |
2613 | { | |
2614 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2615 | wxRect_SetSize(_arg0,*_arg1); | |
2616 | ||
2617 | wxPyEndAllowThreads(__tstate); | |
2618 | if (PyErr_Occurred()) return NULL; | |
2619 | } Py_INCREF(Py_None); | |
2620 | _resultobj = Py_None; | |
2621 | return _resultobj; | |
2622 | } | |
2623 | ||
2624 | #define wxRect_GetLeft(_swigobj) (_swigobj->GetLeft()) | |
2625 | static PyObject *_wrap_wxRect_GetLeft(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2626 | PyObject * _resultobj; | |
2627 | int _result; | |
2628 | wxRect * _arg0; | |
2629 | wxRect temp; | |
2630 | PyObject * _obj0 = 0; | |
2631 | char *_kwnames[] = { "self", NULL }; | |
2632 | ||
2633 | self = self; | |
2634 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetLeft",_kwnames,&_obj0)) | |
2635 | return NULL; | |
2636 | { | |
2637 | _arg0 = &temp; | |
2638 | if (! wxRect_helper(_obj0, &_arg0)) | |
2639 | return NULL; | |
2640 | } | |
2641 | { | |
2642 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2643 | _result = (int )wxRect_GetLeft(_arg0); | |
2644 | ||
2645 | wxPyEndAllowThreads(__tstate); | |
2646 | if (PyErr_Occurred()) return NULL; | |
2647 | } _resultobj = Py_BuildValue("i",_result); | |
2648 | return _resultobj; | |
2649 | } | |
2650 | ||
2651 | #define wxRect_GetTop(_swigobj) (_swigobj->GetTop()) | |
2652 | static PyObject *_wrap_wxRect_GetTop(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2653 | PyObject * _resultobj; | |
2654 | int _result; | |
2655 | wxRect * _arg0; | |
2656 | wxRect temp; | |
2657 | PyObject * _obj0 = 0; | |
2658 | char *_kwnames[] = { "self", NULL }; | |
2659 | ||
2660 | self = self; | |
2661 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetTop",_kwnames,&_obj0)) | |
2662 | return NULL; | |
2663 | { | |
2664 | _arg0 = &temp; | |
2665 | if (! wxRect_helper(_obj0, &_arg0)) | |
2666 | return NULL; | |
2667 | } | |
2668 | { | |
2669 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2670 | _result = (int )wxRect_GetTop(_arg0); | |
2671 | ||
2672 | wxPyEndAllowThreads(__tstate); | |
2673 | if (PyErr_Occurred()) return NULL; | |
2674 | } _resultobj = Py_BuildValue("i",_result); | |
2675 | return _resultobj; | |
2676 | } | |
2677 | ||
2678 | #define wxRect_GetBottom(_swigobj) (_swigobj->GetBottom()) | |
2679 | static PyObject *_wrap_wxRect_GetBottom(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2680 | PyObject * _resultobj; | |
2681 | int _result; | |
2682 | wxRect * _arg0; | |
2683 | wxRect temp; | |
2684 | PyObject * _obj0 = 0; | |
2685 | char *_kwnames[] = { "self", NULL }; | |
2686 | ||
2687 | self = self; | |
2688 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetBottom",_kwnames,&_obj0)) | |
2689 | return NULL; | |
2690 | { | |
2691 | _arg0 = &temp; | |
2692 | if (! wxRect_helper(_obj0, &_arg0)) | |
2693 | return NULL; | |
2694 | } | |
2695 | { | |
2696 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2697 | _result = (int )wxRect_GetBottom(_arg0); | |
2698 | ||
2699 | wxPyEndAllowThreads(__tstate); | |
2700 | if (PyErr_Occurred()) return NULL; | |
2701 | } _resultobj = Py_BuildValue("i",_result); | |
2702 | return _resultobj; | |
2703 | } | |
2704 | ||
2705 | #define wxRect_GetRight(_swigobj) (_swigobj->GetRight()) | |
2706 | static PyObject *_wrap_wxRect_GetRight(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2707 | PyObject * _resultobj; | |
2708 | int _result; | |
2709 | wxRect * _arg0; | |
2710 | wxRect temp; | |
2711 | PyObject * _obj0 = 0; | |
2712 | char *_kwnames[] = { "self", NULL }; | |
2713 | ||
2714 | self = self; | |
2715 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_GetRight",_kwnames,&_obj0)) | |
2716 | return NULL; | |
2717 | { | |
2718 | _arg0 = &temp; | |
2719 | if (! wxRect_helper(_obj0, &_arg0)) | |
2720 | return NULL; | |
2721 | } | |
2722 | { | |
2723 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2724 | _result = (int )wxRect_GetRight(_arg0); | |
2725 | ||
2726 | wxPyEndAllowThreads(__tstate); | |
2727 | if (PyErr_Occurred()) return NULL; | |
2728 | } _resultobj = Py_BuildValue("i",_result); | |
2729 | return _resultobj; | |
2730 | } | |
2731 | ||
2732 | #define wxRect_SetLeft(_swigobj,_swigarg0) (_swigobj->SetLeft(_swigarg0)) | |
2733 | static PyObject *_wrap_wxRect_SetLeft(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2734 | PyObject * _resultobj; | |
2735 | wxRect * _arg0; | |
2736 | int _arg1; | |
2737 | wxRect temp; | |
2738 | PyObject * _obj0 = 0; | |
2739 | char *_kwnames[] = { "self","left", NULL }; | |
2740 | ||
2741 | self = self; | |
2742 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetLeft",_kwnames,&_obj0,&_arg1)) | |
2743 | return NULL; | |
2744 | { | |
2745 | _arg0 = &temp; | |
2746 | if (! wxRect_helper(_obj0, &_arg0)) | |
2747 | return NULL; | |
2748 | } | |
2749 | { | |
2750 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2751 | wxRect_SetLeft(_arg0,_arg1); | |
2752 | ||
2753 | wxPyEndAllowThreads(__tstate); | |
2754 | if (PyErr_Occurred()) return NULL; | |
2755 | } Py_INCREF(Py_None); | |
2756 | _resultobj = Py_None; | |
2757 | return _resultobj; | |
2758 | } | |
2759 | ||
2760 | #define wxRect_SetRight(_swigobj,_swigarg0) (_swigobj->SetRight(_swigarg0)) | |
2761 | static PyObject *_wrap_wxRect_SetRight(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2762 | PyObject * _resultobj; | |
2763 | wxRect * _arg0; | |
2764 | int _arg1; | |
2765 | wxRect temp; | |
2766 | PyObject * _obj0 = 0; | |
2767 | char *_kwnames[] = { "self","right", NULL }; | |
2768 | ||
2769 | self = self; | |
2770 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetRight",_kwnames,&_obj0,&_arg1)) | |
2771 | return NULL; | |
2772 | { | |
2773 | _arg0 = &temp; | |
2774 | if (! wxRect_helper(_obj0, &_arg0)) | |
2775 | return NULL; | |
2776 | } | |
2777 | { | |
2778 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2779 | wxRect_SetRight(_arg0,_arg1); | |
2780 | ||
2781 | wxPyEndAllowThreads(__tstate); | |
2782 | if (PyErr_Occurred()) return NULL; | |
2783 | } Py_INCREF(Py_None); | |
2784 | _resultobj = Py_None; | |
2785 | return _resultobj; | |
2786 | } | |
2787 | ||
2788 | #define wxRect_SetTop(_swigobj,_swigarg0) (_swigobj->SetTop(_swigarg0)) | |
2789 | static PyObject *_wrap_wxRect_SetTop(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2790 | PyObject * _resultobj; | |
2791 | wxRect * _arg0; | |
2792 | int _arg1; | |
2793 | wxRect temp; | |
2794 | PyObject * _obj0 = 0; | |
2795 | char *_kwnames[] = { "self","top", NULL }; | |
2796 | ||
2797 | self = self; | |
2798 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetTop",_kwnames,&_obj0,&_arg1)) | |
2799 | return NULL; | |
2800 | { | |
2801 | _arg0 = &temp; | |
2802 | if (! wxRect_helper(_obj0, &_arg0)) | |
2803 | return NULL; | |
2804 | } | |
2805 | { | |
2806 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2807 | wxRect_SetTop(_arg0,_arg1); | |
2808 | ||
2809 | wxPyEndAllowThreads(__tstate); | |
2810 | if (PyErr_Occurred()) return NULL; | |
2811 | } Py_INCREF(Py_None); | |
2812 | _resultobj = Py_None; | |
2813 | return _resultobj; | |
2814 | } | |
2815 | ||
2816 | #define wxRect_SetBottom(_swigobj,_swigarg0) (_swigobj->SetBottom(_swigarg0)) | |
2817 | static PyObject *_wrap_wxRect_SetBottom(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2818 | PyObject * _resultobj; | |
2819 | wxRect * _arg0; | |
2820 | int _arg1; | |
2821 | wxRect temp; | |
2822 | PyObject * _obj0 = 0; | |
2823 | char *_kwnames[] = { "self","bottom", NULL }; | |
2824 | ||
2825 | self = self; | |
2826 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_SetBottom",_kwnames,&_obj0,&_arg1)) | |
2827 | return NULL; | |
2828 | { | |
2829 | _arg0 = &temp; | |
2830 | if (! wxRect_helper(_obj0, &_arg0)) | |
2831 | return NULL; | |
2832 | } | |
2833 | { | |
2834 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2835 | wxRect_SetBottom(_arg0,_arg1); | |
2836 | ||
2837 | wxPyEndAllowThreads(__tstate); | |
2838 | if (PyErr_Occurred()) return NULL; | |
2839 | } Py_INCREF(Py_None); | |
2840 | _resultobj = Py_None; | |
2841 | return _resultobj; | |
2842 | } | |
2843 | ||
2844 | #define wxRect_Inflate(_swigobj,_swigarg0,_swigarg1) (_swigobj->Inflate(_swigarg0,_swigarg1)) | |
2845 | static PyObject *_wrap_wxRect_Inflate(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2846 | PyObject * _resultobj; | |
2847 | wxRect * _arg0; | |
2848 | int _arg1; | |
2849 | int _arg2; | |
2850 | wxRect temp; | |
2851 | PyObject * _obj0 = 0; | |
2852 | char *_kwnames[] = { "self","dx","dy", NULL }; | |
2853 | ||
2854 | self = self; | |
2855 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxRect_Inflate",_kwnames,&_obj0,&_arg1,&_arg2)) | |
2856 | return NULL; | |
2857 | { | |
2858 | _arg0 = &temp; | |
2859 | if (! wxRect_helper(_obj0, &_arg0)) | |
2860 | return NULL; | |
2861 | } | |
2862 | { | |
2863 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2864 | wxRect_Inflate(_arg0,_arg1,_arg2); | |
2865 | ||
2866 | wxPyEndAllowThreads(__tstate); | |
2867 | if (PyErr_Occurred()) return NULL; | |
2868 | } Py_INCREF(Py_None); | |
2869 | _resultobj = Py_None; | |
2870 | return _resultobj; | |
2871 | } | |
2872 | ||
2873 | #define wxRect_Inside(_swigobj,_swigarg0,_swigarg1) (_swigobj->Inside(_swigarg0,_swigarg1)) | |
2874 | static PyObject *_wrap_wxRect_Inside(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2875 | PyObject * _resultobj; | |
2876 | bool _result; | |
2877 | wxRect * _arg0; | |
2878 | int _arg1; | |
2879 | int _arg2; | |
2880 | wxRect temp; | |
2881 | PyObject * _obj0 = 0; | |
2882 | char *_kwnames[] = { "self","cx","cy", NULL }; | |
2883 | ||
2884 | self = self; | |
2885 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxRect_Inside",_kwnames,&_obj0,&_arg1,&_arg2)) | |
2886 | return NULL; | |
2887 | { | |
2888 | _arg0 = &temp; | |
2889 | if (! wxRect_helper(_obj0, &_arg0)) | |
2890 | return NULL; | |
2891 | } | |
2892 | { | |
2893 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2894 | _result = (bool )wxRect_Inside(_arg0,_arg1,_arg2); | |
2895 | ||
2896 | wxPyEndAllowThreads(__tstate); | |
2897 | if (PyErr_Occurred()) return NULL; | |
2898 | } _resultobj = Py_BuildValue("i",_result); | |
2899 | return _resultobj; | |
2900 | } | |
2901 | ||
2902 | #define wxRect_x_set(_swigobj,_swigval) (_swigobj->x = _swigval,_swigval) | |
2903 | static PyObject *_wrap_wxRect_x_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2904 | PyObject * _resultobj; | |
2905 | int _result; | |
2906 | wxRect * _arg0; | |
2907 | int _arg1; | |
2908 | wxRect temp; | |
2909 | PyObject * _obj0 = 0; | |
2910 | char *_kwnames[] = { "self","x", NULL }; | |
2911 | ||
2912 | self = self; | |
2913 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_x_set",_kwnames,&_obj0,&_arg1)) | |
2914 | return NULL; | |
2915 | { | |
2916 | _arg0 = &temp; | |
2917 | if (! wxRect_helper(_obj0, &_arg0)) | |
2918 | return NULL; | |
2919 | } | |
2920 | { | |
2921 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2922 | _result = (int )wxRect_x_set(_arg0,_arg1); | |
2923 | ||
2924 | wxPyEndAllowThreads(__tstate); | |
2925 | if (PyErr_Occurred()) return NULL; | |
2926 | } _resultobj = Py_BuildValue("i",_result); | |
2927 | return _resultobj; | |
2928 | } | |
2929 | ||
2930 | #define wxRect_x_get(_swigobj) ((int ) _swigobj->x) | |
2931 | static PyObject *_wrap_wxRect_x_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2932 | PyObject * _resultobj; | |
2933 | int _result; | |
2934 | wxRect * _arg0; | |
2935 | wxRect temp; | |
2936 | PyObject * _obj0 = 0; | |
2937 | char *_kwnames[] = { "self", NULL }; | |
2938 | ||
2939 | self = self; | |
2940 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_x_get",_kwnames,&_obj0)) | |
2941 | return NULL; | |
2942 | { | |
2943 | _arg0 = &temp; | |
2944 | if (! wxRect_helper(_obj0, &_arg0)) | |
2945 | return NULL; | |
2946 | } | |
2947 | { | |
2948 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2949 | _result = (int )wxRect_x_get(_arg0); | |
2950 | ||
2951 | wxPyEndAllowThreads(__tstate); | |
2952 | if (PyErr_Occurred()) return NULL; | |
2953 | } _resultobj = Py_BuildValue("i",_result); | |
2954 | return _resultobj; | |
2955 | } | |
2956 | ||
2957 | #define wxRect_y_set(_swigobj,_swigval) (_swigobj->y = _swigval,_swigval) | |
2958 | static PyObject *_wrap_wxRect_y_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2959 | PyObject * _resultobj; | |
2960 | int _result; | |
2961 | wxRect * _arg0; | |
2962 | int _arg1; | |
2963 | wxRect temp; | |
2964 | PyObject * _obj0 = 0; | |
2965 | char *_kwnames[] = { "self","y", NULL }; | |
2966 | ||
2967 | self = self; | |
2968 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_y_set",_kwnames,&_obj0,&_arg1)) | |
2969 | return NULL; | |
2970 | { | |
2971 | _arg0 = &temp; | |
2972 | if (! wxRect_helper(_obj0, &_arg0)) | |
2973 | return NULL; | |
2974 | } | |
2975 | { | |
2976 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2977 | _result = (int )wxRect_y_set(_arg0,_arg1); | |
2978 | ||
2979 | wxPyEndAllowThreads(__tstate); | |
2980 | if (PyErr_Occurred()) return NULL; | |
2981 | } _resultobj = Py_BuildValue("i",_result); | |
2982 | return _resultobj; | |
2983 | } | |
2984 | ||
2985 | #define wxRect_y_get(_swigobj) ((int ) _swigobj->y) | |
2986 | static PyObject *_wrap_wxRect_y_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2987 | PyObject * _resultobj; | |
2988 | int _result; | |
2989 | wxRect * _arg0; | |
2990 | wxRect temp; | |
2991 | PyObject * _obj0 = 0; | |
2992 | char *_kwnames[] = { "self", NULL }; | |
2993 | ||
2994 | self = self; | |
2995 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_y_get",_kwnames,&_obj0)) | |
2996 | return NULL; | |
2997 | { | |
2998 | _arg0 = &temp; | |
2999 | if (! wxRect_helper(_obj0, &_arg0)) | |
3000 | return NULL; | |
3001 | } | |
3002 | { | |
3003 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3004 | _result = (int )wxRect_y_get(_arg0); | |
3005 | ||
3006 | wxPyEndAllowThreads(__tstate); | |
3007 | if (PyErr_Occurred()) return NULL; | |
3008 | } _resultobj = Py_BuildValue("i",_result); | |
3009 | return _resultobj; | |
3010 | } | |
3011 | ||
3012 | #define wxRect_width_set(_swigobj,_swigval) (_swigobj->width = _swigval,_swigval) | |
3013 | static PyObject *_wrap_wxRect_width_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3014 | PyObject * _resultobj; | |
3015 | int _result; | |
3016 | wxRect * _arg0; | |
3017 | int _arg1; | |
3018 | wxRect temp; | |
3019 | PyObject * _obj0 = 0; | |
3020 | char *_kwnames[] = { "self","width", NULL }; | |
3021 | ||
3022 | self = self; | |
3023 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_width_set",_kwnames,&_obj0,&_arg1)) | |
3024 | return NULL; | |
3025 | { | |
3026 | _arg0 = &temp; | |
3027 | if (! wxRect_helper(_obj0, &_arg0)) | |
3028 | return NULL; | |
3029 | } | |
3030 | { | |
3031 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3032 | _result = (int )wxRect_width_set(_arg0,_arg1); | |
3033 | ||
3034 | wxPyEndAllowThreads(__tstate); | |
3035 | if (PyErr_Occurred()) return NULL; | |
3036 | } _resultobj = Py_BuildValue("i",_result); | |
3037 | return _resultobj; | |
3038 | } | |
3039 | ||
3040 | #define wxRect_width_get(_swigobj) ((int ) _swigobj->width) | |
3041 | static PyObject *_wrap_wxRect_width_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3042 | PyObject * _resultobj; | |
3043 | int _result; | |
3044 | wxRect * _arg0; | |
3045 | wxRect temp; | |
3046 | PyObject * _obj0 = 0; | |
3047 | char *_kwnames[] = { "self", NULL }; | |
3048 | ||
3049 | self = self; | |
3050 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_width_get",_kwnames,&_obj0)) | |
3051 | return NULL; | |
3052 | { | |
3053 | _arg0 = &temp; | |
3054 | if (! wxRect_helper(_obj0, &_arg0)) | |
3055 | return NULL; | |
3056 | } | |
3057 | { | |
3058 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3059 | _result = (int )wxRect_width_get(_arg0); | |
3060 | ||
3061 | wxPyEndAllowThreads(__tstate); | |
3062 | if (PyErr_Occurred()) return NULL; | |
3063 | } _resultobj = Py_BuildValue("i",_result); | |
3064 | return _resultobj; | |
3065 | } | |
3066 | ||
3067 | #define wxRect_height_set(_swigobj,_swigval) (_swigobj->height = _swigval,_swigval) | |
3068 | static PyObject *_wrap_wxRect_height_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3069 | PyObject * _resultobj; | |
3070 | int _result; | |
3071 | wxRect * _arg0; | |
3072 | int _arg1; | |
3073 | wxRect temp; | |
3074 | PyObject * _obj0 = 0; | |
3075 | char *_kwnames[] = { "self","height", NULL }; | |
3076 | ||
3077 | self = self; | |
3078 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxRect_height_set",_kwnames,&_obj0,&_arg1)) | |
3079 | return NULL; | |
3080 | { | |
3081 | _arg0 = &temp; | |
3082 | if (! wxRect_helper(_obj0, &_arg0)) | |
3083 | return NULL; | |
3084 | } | |
3085 | { | |
3086 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3087 | _result = (int )wxRect_height_set(_arg0,_arg1); | |
3088 | ||
3089 | wxPyEndAllowThreads(__tstate); | |
3090 | if (PyErr_Occurred()) return NULL; | |
3091 | } _resultobj = Py_BuildValue("i",_result); | |
3092 | return _resultobj; | |
3093 | } | |
3094 | ||
3095 | #define wxRect_height_get(_swigobj) ((int ) _swigobj->height) | |
3096 | static PyObject *_wrap_wxRect_height_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3097 | PyObject * _resultobj; | |
3098 | int _result; | |
3099 | wxRect * _arg0; | |
3100 | wxRect temp; | |
3101 | PyObject * _obj0 = 0; | |
3102 | char *_kwnames[] = { "self", NULL }; | |
3103 | ||
3104 | self = self; | |
3105 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_height_get",_kwnames,&_obj0)) | |
3106 | return NULL; | |
3107 | { | |
3108 | _arg0 = &temp; | |
3109 | if (! wxRect_helper(_obj0, &_arg0)) | |
3110 | return NULL; | |
3111 | } | |
3112 | { | |
3113 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3114 | _result = (int )wxRect_height_get(_arg0); | |
3115 | ||
3116 | wxPyEndAllowThreads(__tstate); | |
3117 | if (PyErr_Occurred()) return NULL; | |
3118 | } _resultobj = Py_BuildValue("i",_result); | |
3119 | return _resultobj; | |
3120 | } | |
3121 | ||
3122 | static PyObject * wxRect_asTuple(wxRect *self) { | |
3123 | wxPyBeginBlockThreads(); | |
3124 | PyObject* tup = PyTuple_New(4); | |
3125 | PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(self->x)); | |
3126 | PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(self->y)); | |
3127 | PyTuple_SET_ITEM(tup, 2, PyInt_FromLong(self->width)); | |
3128 | PyTuple_SET_ITEM(tup, 3, PyInt_FromLong(self->height)); | |
3129 | wxPyEndBlockThreads(); | |
3130 | return tup; | |
3131 | } | |
3132 | static PyObject *_wrap_wxRect_asTuple(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3133 | PyObject * _resultobj; | |
3134 | PyObject * _result; | |
3135 | wxRect * _arg0; | |
3136 | wxRect temp; | |
3137 | PyObject * _obj0 = 0; | |
3138 | char *_kwnames[] = { "self", NULL }; | |
3139 | ||
3140 | self = self; | |
3141 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRect_asTuple",_kwnames,&_obj0)) | |
3142 | return NULL; | |
3143 | { | |
3144 | _arg0 = &temp; | |
3145 | if (! wxRect_helper(_obj0, &_arg0)) | |
3146 | return NULL; | |
3147 | } | |
3148 | { | |
3149 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3150 | _result = (PyObject *)wxRect_asTuple(_arg0); | |
3151 | ||
3152 | wxPyEndAllowThreads(__tstate); | |
3153 | if (PyErr_Occurred()) return NULL; | |
3154 | }{ | |
3155 | _resultobj = _result; | |
3156 | } | |
3157 | return _resultobj; | |
3158 | } | |
3159 | ||
3160 | static wxRect wxRect___add__(wxRect *self,const wxRect * rect) { | |
3161 | if (! rect) return *self; | |
3162 | return *self + *rect; | |
3163 | } | |
3164 | static PyObject *_wrap_wxRect___add__(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3165 | PyObject * _resultobj; | |
3166 | wxRect * _result; | |
3167 | wxRect * _arg0; | |
3168 | wxRect * _arg1; | |
3169 | wxRect temp; | |
3170 | PyObject * _obj0 = 0; | |
3171 | wxRect temp0; | |
3172 | PyObject * _obj1 = 0; | |
3173 | char *_kwnames[] = { "self","rect", NULL }; | |
3174 | char _ptemp[128]; | |
3175 | ||
3176 | self = self; | |
3177 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxRect___add__",_kwnames,&_obj0,&_obj1)) | |
3178 | return NULL; | |
3179 | { | |
3180 | _arg0 = &temp; | |
3181 | if (! wxRect_helper(_obj0, &_arg0)) | |
3182 | return NULL; | |
3183 | } | |
3184 | { | |
3185 | _arg1 = &temp0; | |
3186 | if (! wxRect_helper(_obj1, &_arg1)) | |
3187 | return NULL; | |
3188 | } | |
3189 | { | |
3190 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3191 | _result = new wxRect (wxRect___add__(_arg0,_arg1)); | |
3192 | ||
3193 | wxPyEndAllowThreads(__tstate); | |
3194 | if (PyErr_Occurred()) return NULL; | |
3195 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxRect_p"); | |
3196 | _resultobj = Py_BuildValue("s",_ptemp); | |
3197 | return _resultobj; | |
3198 | } | |
3199 | ||
3200 | static int wxRect___cmp__(wxRect *self,const wxRect * rect) { | |
3201 | if (! rect) return 1; | |
3202 | if (*self == *rect) return 0; | |
3203 | return -1; | |
3204 | } | |
3205 | static PyObject *_wrap_wxRect___cmp__(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3206 | PyObject * _resultobj; | |
3207 | int _result; | |
3208 | wxRect * _arg0; | |
3209 | wxRect * _arg1; | |
3210 | wxRect temp; | |
3211 | PyObject * _obj0 = 0; | |
3212 | wxRect temp0; | |
3213 | PyObject * _obj1 = 0; | |
3214 | char *_kwnames[] = { "self","rect", NULL }; | |
3215 | ||
3216 | self = self; | |
3217 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxRect___cmp__",_kwnames,&_obj0,&_obj1)) | |
3218 | return NULL; | |
3219 | { | |
3220 | _arg0 = &temp; | |
3221 | if (! wxRect_helper(_obj0, &_arg0)) | |
3222 | return NULL; | |
3223 | } | |
3224 | { | |
3225 | _arg1 = &temp0; | |
3226 | if (! wxRect_helper(_obj1, &_arg1)) | |
3227 | return NULL; | |
3228 | } | |
3229 | { | |
3230 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3231 | _result = (int )wxRect___cmp__(_arg0,_arg1); | |
3232 | ||
3233 | wxPyEndAllowThreads(__tstate); | |
3234 | if (PyErr_Occurred()) return NULL; | |
3235 | } _resultobj = Py_BuildValue("i",_result); | |
3236 | return _resultobj; | |
3237 | } | |
3238 | ||
3239 | static void *SwigwxIndividualLayoutConstraintTowxObject(void *ptr) { | |
3240 | wxIndividualLayoutConstraint *src; | |
3241 | wxObject *dest; | |
3242 | src = (wxIndividualLayoutConstraint *) ptr; | |
3243 | dest = (wxObject *) src; | |
3244 | return (void *) dest; | |
3245 | } | |
3246 | ||
3247 | #define wxIndividualLayoutConstraint_Above(_swigobj,_swigarg0,_swigarg1) (_swigobj->Above(_swigarg0,_swigarg1)) | |
3248 | static PyObject *_wrap_wxIndividualLayoutConstraint_Above(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3249 | PyObject * _resultobj; | |
3250 | wxIndividualLayoutConstraint * _arg0; | |
3251 | wxWindow * _arg1; | |
3252 | int _arg2 = (int ) 0; | |
3253 | PyObject * _argo0 = 0; | |
3254 | PyObject * _argo1 = 0; | |
3255 | char *_kwnames[] = { "self","otherWin","margin", NULL }; | |
3256 | ||
3257 | self = self; | |
3258 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxIndividualLayoutConstraint_Above",_kwnames,&_argo0,&_argo1,&_arg2)) | |
3259 | return NULL; | |
3260 | if (_argo0) { | |
3261 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3262 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) { | |
3263 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_Above. Expected _wxIndividualLayoutConstraint_p."); | |
3264 | return NULL; | |
3265 | } | |
3266 | } | |
3267 | if (_argo1) { | |
3268 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3269 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
3270 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxIndividualLayoutConstraint_Above. Expected _wxWindow_p."); | |
3271 | return NULL; | |
3272 | } | |
3273 | } | |
3274 | { | |
3275 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3276 | wxIndividualLayoutConstraint_Above(_arg0,_arg1,_arg2); | |
3277 | ||
3278 | wxPyEndAllowThreads(__tstate); | |
3279 | if (PyErr_Occurred()) return NULL; | |
3280 | } Py_INCREF(Py_None); | |
3281 | _resultobj = Py_None; | |
3282 | return _resultobj; | |
3283 | } | |
3284 | ||
3285 | #define wxIndividualLayoutConstraint_Absolute(_swigobj,_swigarg0) (_swigobj->Absolute(_swigarg0)) | |
3286 | static PyObject *_wrap_wxIndividualLayoutConstraint_Absolute(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3287 | PyObject * _resultobj; | |
3288 | wxIndividualLayoutConstraint * _arg0; | |
3289 | int _arg1; | |
3290 | PyObject * _argo0 = 0; | |
3291 | char *_kwnames[] = { "self","value", NULL }; | |
3292 | ||
3293 | self = self; | |
3294 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxIndividualLayoutConstraint_Absolute",_kwnames,&_argo0,&_arg1)) | |
3295 | return NULL; | |
3296 | if (_argo0) { | |
3297 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3298 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) { | |
3299 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_Absolute. Expected _wxIndividualLayoutConstraint_p."); | |
3300 | return NULL; | |
3301 | } | |
3302 | } | |
3303 | { | |
3304 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3305 | wxIndividualLayoutConstraint_Absolute(_arg0,_arg1); | |
3306 | ||
3307 | wxPyEndAllowThreads(__tstate); | |
3308 | if (PyErr_Occurred()) return NULL; | |
3309 | } Py_INCREF(Py_None); | |
3310 | _resultobj = Py_None; | |
3311 | return _resultobj; | |
3312 | } | |
3313 | ||
3314 | #define wxIndividualLayoutConstraint_AsIs(_swigobj) (_swigobj->AsIs()) | |
3315 | static PyObject *_wrap_wxIndividualLayoutConstraint_AsIs(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3316 | PyObject * _resultobj; | |
3317 | wxIndividualLayoutConstraint * _arg0; | |
3318 | PyObject * _argo0 = 0; | |
3319 | char *_kwnames[] = { "self", NULL }; | |
3320 | ||
3321 | self = self; | |
3322 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxIndividualLayoutConstraint_AsIs",_kwnames,&_argo0)) | |
3323 | return NULL; | |
3324 | if (_argo0) { | |
3325 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3326 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) { | |
3327 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_AsIs. Expected _wxIndividualLayoutConstraint_p."); | |
3328 | return NULL; | |
3329 | } | |
3330 | } | |
3331 | { | |
3332 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3333 | wxIndividualLayoutConstraint_AsIs(_arg0); | |
3334 | ||
3335 | wxPyEndAllowThreads(__tstate); | |
3336 | if (PyErr_Occurred()) return NULL; | |
3337 | } Py_INCREF(Py_None); | |
3338 | _resultobj = Py_None; | |
3339 | return _resultobj; | |
3340 | } | |
3341 | ||
3342 | #define wxIndividualLayoutConstraint_Below(_swigobj,_swigarg0,_swigarg1) (_swigobj->Below(_swigarg0,_swigarg1)) | |
3343 | static PyObject *_wrap_wxIndividualLayoutConstraint_Below(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3344 | PyObject * _resultobj; | |
3345 | wxIndividualLayoutConstraint * _arg0; | |
3346 | wxWindow * _arg1; | |
3347 | int _arg2 = (int ) 0; | |
3348 | PyObject * _argo0 = 0; | |
3349 | PyObject * _argo1 = 0; | |
3350 | char *_kwnames[] = { "self","otherWin","margin", NULL }; | |
3351 | ||
3352 | self = self; | |
3353 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxIndividualLayoutConstraint_Below",_kwnames,&_argo0,&_argo1,&_arg2)) | |
3354 | return NULL; | |
3355 | if (_argo0) { | |
3356 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3357 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) { | |
3358 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_Below. Expected _wxIndividualLayoutConstraint_p."); | |
3359 | return NULL; | |
3360 | } | |
3361 | } | |
3362 | if (_argo1) { | |
3363 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3364 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
3365 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxIndividualLayoutConstraint_Below. Expected _wxWindow_p."); | |
3366 | return NULL; | |
3367 | } | |
3368 | } | |
3369 | { | |
3370 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3371 | wxIndividualLayoutConstraint_Below(_arg0,_arg1,_arg2); | |
3372 | ||
3373 | wxPyEndAllowThreads(__tstate); | |
3374 | if (PyErr_Occurred()) return NULL; | |
3375 | } Py_INCREF(Py_None); | |
3376 | _resultobj = Py_None; | |
3377 | return _resultobj; | |
3378 | } | |
3379 | ||
3380 | #define wxIndividualLayoutConstraint_Unconstrained(_swigobj) (_swigobj->Unconstrained()) | |
3381 | static PyObject *_wrap_wxIndividualLayoutConstraint_Unconstrained(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3382 | PyObject * _resultobj; | |
3383 | wxIndividualLayoutConstraint * _arg0; | |
3384 | PyObject * _argo0 = 0; | |
3385 | char *_kwnames[] = { "self", NULL }; | |
3386 | ||
3387 | self = self; | |
3388 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxIndividualLayoutConstraint_Unconstrained",_kwnames,&_argo0)) | |
3389 | return NULL; | |
3390 | if (_argo0) { | |
3391 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3392 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) { | |
3393 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_Unconstrained. Expected _wxIndividualLayoutConstraint_p."); | |
3394 | return NULL; | |
3395 | } | |
3396 | } | |
3397 | { | |
3398 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3399 | wxIndividualLayoutConstraint_Unconstrained(_arg0); | |
3400 | ||
3401 | wxPyEndAllowThreads(__tstate); | |
3402 | if (PyErr_Occurred()) return NULL; | |
3403 | } Py_INCREF(Py_None); | |
3404 | _resultobj = Py_None; | |
3405 | return _resultobj; | |
3406 | } | |
3407 | ||
3408 | #define wxIndividualLayoutConstraint_LeftOf(_swigobj,_swigarg0,_swigarg1) (_swigobj->LeftOf(_swigarg0,_swigarg1)) | |
3409 | static PyObject *_wrap_wxIndividualLayoutConstraint_LeftOf(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3410 | PyObject * _resultobj; | |
3411 | wxIndividualLayoutConstraint * _arg0; | |
3412 | wxWindow * _arg1; | |
3413 | int _arg2 = (int ) 0; | |
3414 | PyObject * _argo0 = 0; | |
3415 | PyObject * _argo1 = 0; | |
3416 | char *_kwnames[] = { "self","otherWin","margin", NULL }; | |
3417 | ||
3418 | self = self; | |
3419 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxIndividualLayoutConstraint_LeftOf",_kwnames,&_argo0,&_argo1,&_arg2)) | |
3420 | return NULL; | |
3421 | if (_argo0) { | |
3422 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3423 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) { | |
3424 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_LeftOf. Expected _wxIndividualLayoutConstraint_p."); | |
3425 | return NULL; | |
3426 | } | |
3427 | } | |
3428 | if (_argo1) { | |
3429 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3430 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
3431 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxIndividualLayoutConstraint_LeftOf. Expected _wxWindow_p."); | |
3432 | return NULL; | |
3433 | } | |
3434 | } | |
3435 | { | |
3436 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3437 | wxIndividualLayoutConstraint_LeftOf(_arg0,_arg1,_arg2); | |
3438 | ||
3439 | wxPyEndAllowThreads(__tstate); | |
3440 | if (PyErr_Occurred()) return NULL; | |
3441 | } Py_INCREF(Py_None); | |
3442 | _resultobj = Py_None; | |
3443 | return _resultobj; | |
3444 | } | |
3445 | ||
3446 | #define wxIndividualLayoutConstraint_PercentOf(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->PercentOf(_swigarg0,_swigarg1,_swigarg2)) | |
3447 | static PyObject *_wrap_wxIndividualLayoutConstraint_PercentOf(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3448 | PyObject * _resultobj; | |
3449 | wxIndividualLayoutConstraint * _arg0; | |
3450 | wxWindow * _arg1; | |
3451 | wxEdge _arg2; | |
3452 | int _arg3; | |
3453 | PyObject * _argo0 = 0; | |
3454 | PyObject * _argo1 = 0; | |
3455 | char *_kwnames[] = { "self","otherWin","edge","percent", NULL }; | |
3456 | ||
3457 | self = self; | |
3458 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOii:wxIndividualLayoutConstraint_PercentOf",_kwnames,&_argo0,&_argo1,&_arg2,&_arg3)) | |
3459 | return NULL; | |
3460 | if (_argo0) { | |
3461 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3462 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) { | |
3463 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_PercentOf. Expected _wxIndividualLayoutConstraint_p."); | |
3464 | return NULL; | |
3465 | } | |
3466 | } | |
3467 | if (_argo1) { | |
3468 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3469 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
3470 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxIndividualLayoutConstraint_PercentOf. Expected _wxWindow_p."); | |
3471 | return NULL; | |
3472 | } | |
3473 | } | |
3474 | { | |
3475 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3476 | wxIndividualLayoutConstraint_PercentOf(_arg0,_arg1,_arg2,_arg3); | |
3477 | ||
3478 | wxPyEndAllowThreads(__tstate); | |
3479 | if (PyErr_Occurred()) return NULL; | |
3480 | } Py_INCREF(Py_None); | |
3481 | _resultobj = Py_None; | |
3482 | return _resultobj; | |
3483 | } | |
3484 | ||
3485 | #define wxIndividualLayoutConstraint_RightOf(_swigobj,_swigarg0,_swigarg1) (_swigobj->RightOf(_swigarg0,_swigarg1)) | |
3486 | static PyObject *_wrap_wxIndividualLayoutConstraint_RightOf(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3487 | PyObject * _resultobj; | |
3488 | wxIndividualLayoutConstraint * _arg0; | |
3489 | wxWindow * _arg1; | |
3490 | int _arg2 = (int ) 0; | |
3491 | PyObject * _argo0 = 0; | |
3492 | PyObject * _argo1 = 0; | |
3493 | char *_kwnames[] = { "self","otherWin","margin", NULL }; | |
3494 | ||
3495 | self = self; | |
3496 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxIndividualLayoutConstraint_RightOf",_kwnames,&_argo0,&_argo1,&_arg2)) | |
3497 | return NULL; | |
3498 | if (_argo0) { | |
3499 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3500 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) { | |
3501 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_RightOf. Expected _wxIndividualLayoutConstraint_p."); | |
3502 | return NULL; | |
3503 | } | |
3504 | } | |
3505 | if (_argo1) { | |
3506 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3507 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
3508 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxIndividualLayoutConstraint_RightOf. Expected _wxWindow_p."); | |
3509 | return NULL; | |
3510 | } | |
3511 | } | |
3512 | { | |
3513 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3514 | wxIndividualLayoutConstraint_RightOf(_arg0,_arg1,_arg2); | |
3515 | ||
3516 | wxPyEndAllowThreads(__tstate); | |
3517 | if (PyErr_Occurred()) return NULL; | |
3518 | } Py_INCREF(Py_None); | |
3519 | _resultobj = Py_None; | |
3520 | return _resultobj; | |
3521 | } | |
3522 | ||
3523 | #define wxIndividualLayoutConstraint_SameAs(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->SameAs(_swigarg0,_swigarg1,_swigarg2)) | |
3524 | static PyObject *_wrap_wxIndividualLayoutConstraint_SameAs(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3525 | PyObject * _resultobj; | |
3526 | wxIndividualLayoutConstraint * _arg0; | |
3527 | wxWindow * _arg1; | |
3528 | wxEdge _arg2; | |
3529 | int _arg3 = (int ) 0; | |
3530 | PyObject * _argo0 = 0; | |
3531 | PyObject * _argo1 = 0; | |
3532 | char *_kwnames[] = { "self","otherWin","edge","margin", NULL }; | |
3533 | ||
3534 | self = self; | |
3535 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi|i:wxIndividualLayoutConstraint_SameAs",_kwnames,&_argo0,&_argo1,&_arg2,&_arg3)) | |
3536 | return NULL; | |
3537 | if (_argo0) { | |
3538 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3539 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) { | |
3540 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_SameAs. Expected _wxIndividualLayoutConstraint_p."); | |
3541 | return NULL; | |
3542 | } | |
3543 | } | |
3544 | if (_argo1) { | |
3545 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3546 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
3547 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxIndividualLayoutConstraint_SameAs. Expected _wxWindow_p."); | |
3548 | return NULL; | |
3549 | } | |
3550 | } | |
3551 | { | |
3552 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3553 | wxIndividualLayoutConstraint_SameAs(_arg0,_arg1,_arg2,_arg3); | |
3554 | ||
3555 | wxPyEndAllowThreads(__tstate); | |
3556 | if (PyErr_Occurred()) return NULL; | |
3557 | } Py_INCREF(Py_None); | |
3558 | _resultobj = Py_None; | |
3559 | return _resultobj; | |
3560 | } | |
3561 | ||
3562 | #define wxIndividualLayoutConstraint_Set(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->Set(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4)) | |
3563 | static PyObject *_wrap_wxIndividualLayoutConstraint_Set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3564 | PyObject * _resultobj; | |
3565 | wxIndividualLayoutConstraint * _arg0; | |
3566 | wxRelationship _arg1; | |
3567 | wxWindow * _arg2; | |
3568 | wxEdge _arg3; | |
3569 | int _arg4 = (int ) 0; | |
3570 | int _arg5 = (int ) 0; | |
3571 | PyObject * _argo0 = 0; | |
3572 | PyObject * _argo2 = 0; | |
3573 | char *_kwnames[] = { "self","rel","otherWin","otherEdge","value","margin", NULL }; | |
3574 | ||
3575 | self = self; | |
3576 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiOi|ii:wxIndividualLayoutConstraint_Set",_kwnames,&_argo0,&_arg1,&_argo2,&_arg3,&_arg4,&_arg5)) | |
3577 | return NULL; | |
3578 | if (_argo0) { | |
3579 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3580 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxIndividualLayoutConstraint_p")) { | |
3581 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxIndividualLayoutConstraint_Set. Expected _wxIndividualLayoutConstraint_p."); | |
3582 | return NULL; | |
3583 | } | |
3584 | } | |
3585 | if (_argo2) { | |
3586 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
3587 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxWindow_p")) { | |
3588 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxIndividualLayoutConstraint_Set. Expected _wxWindow_p."); | |
3589 | return NULL; | |
3590 | } | |
3591 | } | |
3592 | { | |
3593 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3594 | wxIndividualLayoutConstraint_Set(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5); | |
3595 | ||
3596 | wxPyEndAllowThreads(__tstate); | |
3597 | if (PyErr_Occurred()) return NULL; | |
3598 | } Py_INCREF(Py_None); | |
3599 | _resultobj = Py_None; | |
3600 | return _resultobj; | |
3601 | } | |
3602 | ||
3603 | static void *SwigwxLayoutConstraintsTowxObject(void *ptr) { | |
3604 | wxLayoutConstraints *src; | |
3605 | wxObject *dest; | |
3606 | src = (wxLayoutConstraints *) ptr; | |
3607 | dest = (wxObject *) src; | |
3608 | return (void *) dest; | |
3609 | } | |
3610 | ||
3611 | #define new_wxLayoutConstraints() (new wxLayoutConstraints()) | |
3612 | static PyObject *_wrap_new_wxLayoutConstraints(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3613 | PyObject * _resultobj; | |
3614 | wxLayoutConstraints * _result; | |
3615 | char *_kwnames[] = { NULL }; | |
3616 | char _ptemp[128]; | |
3617 | ||
3618 | self = self; | |
3619 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxLayoutConstraints",_kwnames)) | |
3620 | return NULL; | |
3621 | { | |
3622 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3623 | _result = (wxLayoutConstraints *)new_wxLayoutConstraints(); | |
3624 | ||
3625 | wxPyEndAllowThreads(__tstate); | |
3626 | if (PyErr_Occurred()) return NULL; | |
3627 | } if (_result) { | |
3628 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxLayoutConstraints_p"); | |
3629 | _resultobj = Py_BuildValue("s",_ptemp); | |
3630 | } else { | |
3631 | Py_INCREF(Py_None); | |
3632 | _resultobj = Py_None; | |
3633 | } | |
3634 | return _resultobj; | |
3635 | } | |
3636 | ||
3637 | #define wxLayoutConstraints_bottom_get(_swigobj) (&_swigobj->bottom) | |
3638 | static PyObject *_wrap_wxLayoutConstraints_bottom_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3639 | PyObject * _resultobj; | |
3640 | wxIndividualLayoutConstraint * _result; | |
3641 | wxLayoutConstraints * _arg0; | |
3642 | PyObject * _argo0 = 0; | |
3643 | char *_kwnames[] = { "self", NULL }; | |
3644 | char _ptemp[128]; | |
3645 | ||
3646 | self = self; | |
3647 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_bottom_get",_kwnames,&_argo0)) | |
3648 | return NULL; | |
3649 | if (_argo0) { | |
3650 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3651 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) { | |
3652 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_bottom_get. Expected _wxLayoutConstraints_p."); | |
3653 | return NULL; | |
3654 | } | |
3655 | } | |
3656 | { | |
3657 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3658 | _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_bottom_get(_arg0); | |
3659 | ||
3660 | wxPyEndAllowThreads(__tstate); | |
3661 | if (PyErr_Occurred()) return NULL; | |
3662 | } if (_result) { | |
3663 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p"); | |
3664 | _resultobj = Py_BuildValue("s",_ptemp); | |
3665 | } else { | |
3666 | Py_INCREF(Py_None); | |
3667 | _resultobj = Py_None; | |
3668 | } | |
3669 | return _resultobj; | |
3670 | } | |
3671 | ||
3672 | #define wxLayoutConstraints_centreX_get(_swigobj) (&_swigobj->centreX) | |
3673 | static PyObject *_wrap_wxLayoutConstraints_centreX_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3674 | PyObject * _resultobj; | |
3675 | wxIndividualLayoutConstraint * _result; | |
3676 | wxLayoutConstraints * _arg0; | |
3677 | PyObject * _argo0 = 0; | |
3678 | char *_kwnames[] = { "self", NULL }; | |
3679 | char _ptemp[128]; | |
3680 | ||
3681 | self = self; | |
3682 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_centreX_get",_kwnames,&_argo0)) | |
3683 | return NULL; | |
3684 | if (_argo0) { | |
3685 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3686 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) { | |
3687 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_centreX_get. Expected _wxLayoutConstraints_p."); | |
3688 | return NULL; | |
3689 | } | |
3690 | } | |
3691 | { | |
3692 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3693 | _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_centreX_get(_arg0); | |
3694 | ||
3695 | wxPyEndAllowThreads(__tstate); | |
3696 | if (PyErr_Occurred()) return NULL; | |
3697 | } if (_result) { | |
3698 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p"); | |
3699 | _resultobj = Py_BuildValue("s",_ptemp); | |
3700 | } else { | |
3701 | Py_INCREF(Py_None); | |
3702 | _resultobj = Py_None; | |
3703 | } | |
3704 | return _resultobj; | |
3705 | } | |
3706 | ||
3707 | #define wxLayoutConstraints_centreY_get(_swigobj) (&_swigobj->centreY) | |
3708 | static PyObject *_wrap_wxLayoutConstraints_centreY_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3709 | PyObject * _resultobj; | |
3710 | wxIndividualLayoutConstraint * _result; | |
3711 | wxLayoutConstraints * _arg0; | |
3712 | PyObject * _argo0 = 0; | |
3713 | char *_kwnames[] = { "self", NULL }; | |
3714 | char _ptemp[128]; | |
3715 | ||
3716 | self = self; | |
3717 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_centreY_get",_kwnames,&_argo0)) | |
3718 | return NULL; | |
3719 | if (_argo0) { | |
3720 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3721 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) { | |
3722 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_centreY_get. Expected _wxLayoutConstraints_p."); | |
3723 | return NULL; | |
3724 | } | |
3725 | } | |
3726 | { | |
3727 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3728 | _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_centreY_get(_arg0); | |
3729 | ||
3730 | wxPyEndAllowThreads(__tstate); | |
3731 | if (PyErr_Occurred()) return NULL; | |
3732 | } if (_result) { | |
3733 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p"); | |
3734 | _resultobj = Py_BuildValue("s",_ptemp); | |
3735 | } else { | |
3736 | Py_INCREF(Py_None); | |
3737 | _resultobj = Py_None; | |
3738 | } | |
3739 | return _resultobj; | |
3740 | } | |
3741 | ||
3742 | #define wxLayoutConstraints_height_get(_swigobj) (&_swigobj->height) | |
3743 | static PyObject *_wrap_wxLayoutConstraints_height_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3744 | PyObject * _resultobj; | |
3745 | wxIndividualLayoutConstraint * _result; | |
3746 | wxLayoutConstraints * _arg0; | |
3747 | PyObject * _argo0 = 0; | |
3748 | char *_kwnames[] = { "self", NULL }; | |
3749 | char _ptemp[128]; | |
3750 | ||
3751 | self = self; | |
3752 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_height_get",_kwnames,&_argo0)) | |
3753 | return NULL; | |
3754 | if (_argo0) { | |
3755 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3756 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) { | |
3757 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_height_get. Expected _wxLayoutConstraints_p."); | |
3758 | return NULL; | |
3759 | } | |
3760 | } | |
3761 | { | |
3762 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3763 | _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_height_get(_arg0); | |
3764 | ||
3765 | wxPyEndAllowThreads(__tstate); | |
3766 | if (PyErr_Occurred()) return NULL; | |
3767 | } if (_result) { | |
3768 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p"); | |
3769 | _resultobj = Py_BuildValue("s",_ptemp); | |
3770 | } else { | |
3771 | Py_INCREF(Py_None); | |
3772 | _resultobj = Py_None; | |
3773 | } | |
3774 | return _resultobj; | |
3775 | } | |
3776 | ||
3777 | #define wxLayoutConstraints_left_get(_swigobj) (&_swigobj->left) | |
3778 | static PyObject *_wrap_wxLayoutConstraints_left_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3779 | PyObject * _resultobj; | |
3780 | wxIndividualLayoutConstraint * _result; | |
3781 | wxLayoutConstraints * _arg0; | |
3782 | PyObject * _argo0 = 0; | |
3783 | char *_kwnames[] = { "self", NULL }; | |
3784 | char _ptemp[128]; | |
3785 | ||
3786 | self = self; | |
3787 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_left_get",_kwnames,&_argo0)) | |
3788 | return NULL; | |
3789 | if (_argo0) { | |
3790 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3791 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) { | |
3792 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_left_get. Expected _wxLayoutConstraints_p."); | |
3793 | return NULL; | |
3794 | } | |
3795 | } | |
3796 | { | |
3797 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3798 | _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_left_get(_arg0); | |
3799 | ||
3800 | wxPyEndAllowThreads(__tstate); | |
3801 | if (PyErr_Occurred()) return NULL; | |
3802 | } if (_result) { | |
3803 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p"); | |
3804 | _resultobj = Py_BuildValue("s",_ptemp); | |
3805 | } else { | |
3806 | Py_INCREF(Py_None); | |
3807 | _resultobj = Py_None; | |
3808 | } | |
3809 | return _resultobj; | |
3810 | } | |
3811 | ||
3812 | #define wxLayoutConstraints_right_get(_swigobj) (&_swigobj->right) | |
3813 | static PyObject *_wrap_wxLayoutConstraints_right_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3814 | PyObject * _resultobj; | |
3815 | wxIndividualLayoutConstraint * _result; | |
3816 | wxLayoutConstraints * _arg0; | |
3817 | PyObject * _argo0 = 0; | |
3818 | char *_kwnames[] = { "self", NULL }; | |
3819 | char _ptemp[128]; | |
3820 | ||
3821 | self = self; | |
3822 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_right_get",_kwnames,&_argo0)) | |
3823 | return NULL; | |
3824 | if (_argo0) { | |
3825 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3826 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) { | |
3827 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_right_get. Expected _wxLayoutConstraints_p."); | |
3828 | return NULL; | |
3829 | } | |
3830 | } | |
3831 | { | |
3832 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3833 | _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_right_get(_arg0); | |
3834 | ||
3835 | wxPyEndAllowThreads(__tstate); | |
3836 | if (PyErr_Occurred()) return NULL; | |
3837 | } if (_result) { | |
3838 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p"); | |
3839 | _resultobj = Py_BuildValue("s",_ptemp); | |
3840 | } else { | |
3841 | Py_INCREF(Py_None); | |
3842 | _resultobj = Py_None; | |
3843 | } | |
3844 | return _resultobj; | |
3845 | } | |
3846 | ||
3847 | #define wxLayoutConstraints_top_get(_swigobj) (&_swigobj->top) | |
3848 | static PyObject *_wrap_wxLayoutConstraints_top_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3849 | PyObject * _resultobj; | |
3850 | wxIndividualLayoutConstraint * _result; | |
3851 | wxLayoutConstraints * _arg0; | |
3852 | PyObject * _argo0 = 0; | |
3853 | char *_kwnames[] = { "self", NULL }; | |
3854 | char _ptemp[128]; | |
3855 | ||
3856 | self = self; | |
3857 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_top_get",_kwnames,&_argo0)) | |
3858 | return NULL; | |
3859 | if (_argo0) { | |
3860 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3861 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) { | |
3862 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_top_get. Expected _wxLayoutConstraints_p."); | |
3863 | return NULL; | |
3864 | } | |
3865 | } | |
3866 | { | |
3867 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3868 | _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_top_get(_arg0); | |
3869 | ||
3870 | wxPyEndAllowThreads(__tstate); | |
3871 | if (PyErr_Occurred()) return NULL; | |
3872 | } if (_result) { | |
3873 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p"); | |
3874 | _resultobj = Py_BuildValue("s",_ptemp); | |
3875 | } else { | |
3876 | Py_INCREF(Py_None); | |
3877 | _resultobj = Py_None; | |
3878 | } | |
3879 | return _resultobj; | |
3880 | } | |
3881 | ||
3882 | #define wxLayoutConstraints_width_get(_swigobj) (&_swigobj->width) | |
3883 | static PyObject *_wrap_wxLayoutConstraints_width_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3884 | PyObject * _resultobj; | |
3885 | wxIndividualLayoutConstraint * _result; | |
3886 | wxLayoutConstraints * _arg0; | |
3887 | PyObject * _argo0 = 0; | |
3888 | char *_kwnames[] = { "self", NULL }; | |
3889 | char _ptemp[128]; | |
3890 | ||
3891 | self = self; | |
3892 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLayoutConstraints_width_get",_kwnames,&_argo0)) | |
3893 | return NULL; | |
3894 | if (_argo0) { | |
3895 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3896 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLayoutConstraints_p")) { | |
3897 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLayoutConstraints_width_get. Expected _wxLayoutConstraints_p."); | |
3898 | return NULL; | |
3899 | } | |
3900 | } | |
3901 | { | |
3902 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3903 | _result = (wxIndividualLayoutConstraint *)wxLayoutConstraints_width_get(_arg0); | |
3904 | ||
3905 | wxPyEndAllowThreads(__tstate); | |
3906 | if (PyErr_Occurred()) return NULL; | |
3907 | } if (_result) { | |
3908 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxIndividualLayoutConstraint_p"); | |
3909 | _resultobj = Py_BuildValue("s",_ptemp); | |
3910 | } else { | |
3911 | Py_INCREF(Py_None); | |
3912 | _resultobj = Py_None; | |
3913 | } | |
3914 | return _resultobj; | |
3915 | } | |
3916 | ||
3917 | #define new_wxAcceleratorEntry(_swigarg0,_swigarg1,_swigarg2) (new wxAcceleratorEntry(_swigarg0,_swigarg1,_swigarg2)) | |
3918 | static PyObject *_wrap_new_wxAcceleratorEntry(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3919 | PyObject * _resultobj; | |
3920 | wxAcceleratorEntry * _result; | |
3921 | int _arg0 = (int ) 0; | |
3922 | int _arg1 = (int ) 0; | |
3923 | int _arg2 = (int ) 0; | |
3924 | char *_kwnames[] = { "flags","keyCode","cmd", NULL }; | |
3925 | char _ptemp[128]; | |
3926 | ||
3927 | self = self; | |
3928 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|iii:new_wxAcceleratorEntry",_kwnames,&_arg0,&_arg1,&_arg2)) | |
3929 | return NULL; | |
3930 | { | |
3931 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3932 | _result = (wxAcceleratorEntry *)new_wxAcceleratorEntry(_arg0,_arg1,_arg2); | |
3933 | ||
3934 | wxPyEndAllowThreads(__tstate); | |
3935 | if (PyErr_Occurred()) return NULL; | |
3936 | } if (_result) { | |
3937 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxAcceleratorEntry_p"); | |
3938 | _resultobj = Py_BuildValue("s",_ptemp); | |
3939 | } else { | |
3940 | Py_INCREF(Py_None); | |
3941 | _resultobj = Py_None; | |
3942 | } | |
3943 | return _resultobj; | |
3944 | } | |
3945 | ||
3946 | #define delete_wxAcceleratorEntry(_swigobj) (delete _swigobj) | |
3947 | static PyObject *_wrap_delete_wxAcceleratorEntry(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3948 | PyObject * _resultobj; | |
3949 | wxAcceleratorEntry * _arg0; | |
3950 | PyObject * _argo0 = 0; | |
3951 | char *_kwnames[] = { "self", NULL }; | |
3952 | ||
3953 | self = self; | |
3954 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxAcceleratorEntry",_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 delete_wxAcceleratorEntry. Expected _wxAcceleratorEntry_p."); | |
3960 | return NULL; | |
3961 | } | |
3962 | } | |
3963 | { | |
3964 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3965 | delete_wxAcceleratorEntry(_arg0); | |
3966 | ||
3967 | wxPyEndAllowThreads(__tstate); | |
3968 | if (PyErr_Occurred()) return NULL; | |
3969 | } Py_INCREF(Py_None); | |
3970 | _resultobj = Py_None; | |
3971 | return _resultobj; | |
3972 | } | |
3973 | ||
3974 | #define wxAcceleratorEntry_Set(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->Set(_swigarg0,_swigarg1,_swigarg2)) | |
3975 | static PyObject *_wrap_wxAcceleratorEntry_Set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3976 | PyObject * _resultobj; | |
3977 | wxAcceleratorEntry * _arg0; | |
3978 | int _arg1; | |
3979 | int _arg2; | |
3980 | int _arg3; | |
3981 | PyObject * _argo0 = 0; | |
3982 | char *_kwnames[] = { "self","flags","keyCode","Cmd", NULL }; | |
3983 | ||
3984 | self = self; | |
3985 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oiii:wxAcceleratorEntry_Set",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3)) | |
3986 | return NULL; | |
3987 | if (_argo0) { | |
3988 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3989 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxAcceleratorEntry_p")) { | |
3990 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxAcceleratorEntry_Set. Expected _wxAcceleratorEntry_p."); | |
3991 | return NULL; | |
3992 | } | |
3993 | } | |
3994 | { | |
3995 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3996 | wxAcceleratorEntry_Set(_arg0,_arg1,_arg2,_arg3); | |
3997 | ||
3998 | wxPyEndAllowThreads(__tstate); | |
3999 | if (PyErr_Occurred()) return NULL; | |
4000 | } Py_INCREF(Py_None); | |
4001 | _resultobj = Py_None; | |
4002 | return _resultobj; | |
4003 | } | |
4004 | ||
4005 | #define wxAcceleratorEntry_GetFlags(_swigobj) (_swigobj->GetFlags()) | |
4006 | static PyObject *_wrap_wxAcceleratorEntry_GetFlags(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4007 | PyObject * _resultobj; | |
4008 | int _result; | |
4009 | wxAcceleratorEntry * _arg0; | |
4010 | PyObject * _argo0 = 0; | |
4011 | char *_kwnames[] = { "self", NULL }; | |
4012 | ||
4013 | self = self; | |
4014 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxAcceleratorEntry_GetFlags",_kwnames,&_argo0)) | |
4015 | return NULL; | |
4016 | if (_argo0) { | |
4017 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4018 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxAcceleratorEntry_p")) { | |
4019 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxAcceleratorEntry_GetFlags. Expected _wxAcceleratorEntry_p."); | |
4020 | return NULL; | |
4021 | } | |
4022 | } | |
4023 | { | |
4024 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4025 | _result = (int )wxAcceleratorEntry_GetFlags(_arg0); | |
4026 | ||
4027 | wxPyEndAllowThreads(__tstate); | |
4028 | if (PyErr_Occurred()) return NULL; | |
4029 | } _resultobj = Py_BuildValue("i",_result); | |
4030 | return _resultobj; | |
4031 | } | |
4032 | ||
4033 | #define wxAcceleratorEntry_GetKeyCode(_swigobj) (_swigobj->GetKeyCode()) | |
4034 | static PyObject *_wrap_wxAcceleratorEntry_GetKeyCode(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4035 | PyObject * _resultobj; | |
4036 | int _result; | |
4037 | wxAcceleratorEntry * _arg0; | |
4038 | PyObject * _argo0 = 0; | |
4039 | char *_kwnames[] = { "self", NULL }; | |
4040 | ||
4041 | self = self; | |
4042 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxAcceleratorEntry_GetKeyCode",_kwnames,&_argo0)) | |
4043 | return NULL; | |
4044 | if (_argo0) { | |
4045 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4046 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxAcceleratorEntry_p")) { | |
4047 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxAcceleratorEntry_GetKeyCode. Expected _wxAcceleratorEntry_p."); | |
4048 | return NULL; | |
4049 | } | |
4050 | } | |
4051 | { | |
4052 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4053 | _result = (int )wxAcceleratorEntry_GetKeyCode(_arg0); | |
4054 | ||
4055 | wxPyEndAllowThreads(__tstate); | |
4056 | if (PyErr_Occurred()) return NULL; | |
4057 | } _resultobj = Py_BuildValue("i",_result); | |
4058 | return _resultobj; | |
4059 | } | |
4060 | ||
4061 | #define wxAcceleratorEntry_GetCommand(_swigobj) (_swigobj->GetCommand()) | |
4062 | static PyObject *_wrap_wxAcceleratorEntry_GetCommand(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4063 | PyObject * _resultobj; | |
4064 | int _result; | |
4065 | wxAcceleratorEntry * _arg0; | |
4066 | PyObject * _argo0 = 0; | |
4067 | char *_kwnames[] = { "self", NULL }; | |
4068 | ||
4069 | self = self; | |
4070 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxAcceleratorEntry_GetCommand",_kwnames,&_argo0)) | |
4071 | return NULL; | |
4072 | if (_argo0) { | |
4073 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4074 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxAcceleratorEntry_p")) { | |
4075 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxAcceleratorEntry_GetCommand. Expected _wxAcceleratorEntry_p."); | |
4076 | return NULL; | |
4077 | } | |
4078 | } | |
4079 | { | |
4080 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4081 | _result = (int )wxAcceleratorEntry_GetCommand(_arg0); | |
4082 | ||
4083 | wxPyEndAllowThreads(__tstate); | |
4084 | if (PyErr_Occurred()) return NULL; | |
4085 | } _resultobj = Py_BuildValue("i",_result); | |
4086 | return _resultobj; | |
4087 | } | |
4088 | ||
4089 | static void *SwigwxAcceleratorTableTowxObject(void *ptr) { | |
4090 | wxAcceleratorTable *src; | |
4091 | wxObject *dest; | |
4092 | src = (wxAcceleratorTable *) ptr; | |
4093 | dest = (wxObject *) src; | |
4094 | return (void *) dest; | |
4095 | } | |
4096 | ||
4097 | #define new_wxAcceleratorTable(_swigarg0,_swigarg1) (new wxAcceleratorTable(_swigarg0,_swigarg1)) | |
4098 | static PyObject *_wrap_new_wxAcceleratorTable(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4099 | PyObject * _resultobj; | |
4100 | wxAcceleratorTable * _result; | |
4101 | int _arg0; | |
4102 | wxAcceleratorEntry * _arg1; | |
4103 | PyObject * _obj1 = 0; | |
4104 | char *_kwnames[] = { "choices", NULL }; | |
4105 | char _ptemp[128]; | |
4106 | ||
4107 | self = self; | |
4108 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:new_wxAcceleratorTable",_kwnames,&_obj1)) | |
4109 | return NULL; | |
4110 | if (_obj1) | |
4111 | { | |
4112 | _arg1 = wxAcceleratorEntry_LIST_helper(_obj1); | |
4113 | if (_arg1 == NULL) { | |
4114 | return NULL; | |
4115 | } | |
4116 | } | |
4117 | { | |
4118 | if (_obj1) { | |
4119 | _arg0 = PyList_Size(_obj1); | |
4120 | } | |
4121 | else { | |
4122 | _arg0 = 0; | |
4123 | } | |
4124 | } | |
4125 | { | |
4126 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4127 | _result = (wxAcceleratorTable *)new_wxAcceleratorTable(_arg0,_arg1); | |
4128 | ||
4129 | wxPyEndAllowThreads(__tstate); | |
4130 | if (PyErr_Occurred()) return NULL; | |
4131 | } if (_result) { | |
4132 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxAcceleratorTable_p"); | |
4133 | _resultobj = Py_BuildValue("s",_ptemp); | |
4134 | } else { | |
4135 | Py_INCREF(Py_None); | |
4136 | _resultobj = Py_None; | |
4137 | } | |
4138 | { | |
4139 | delete [] _arg1; | |
4140 | } | |
4141 | return _resultobj; | |
4142 | } | |
4143 | ||
4144 | #define delete_wxAcceleratorTable(_swigobj) (delete _swigobj) | |
4145 | static PyObject *_wrap_delete_wxAcceleratorTable(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4146 | PyObject * _resultobj; | |
4147 | wxAcceleratorTable * _arg0; | |
4148 | PyObject * _argo0 = 0; | |
4149 | char *_kwnames[] = { "self", NULL }; | |
4150 | ||
4151 | self = self; | |
4152 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxAcceleratorTable",_kwnames,&_argo0)) | |
4153 | return NULL; | |
4154 | if (_argo0) { | |
4155 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4156 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxAcceleratorTable_p")) { | |
4157 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxAcceleratorTable. Expected _wxAcceleratorTable_p."); | |
4158 | return NULL; | |
4159 | } | |
4160 | } | |
4161 | { | |
4162 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4163 | delete_wxAcceleratorTable(_arg0); | |
4164 | ||
4165 | wxPyEndAllowThreads(__tstate); | |
4166 | if (PyErr_Occurred()) return NULL; | |
4167 | } Py_INCREF(Py_None); | |
4168 | _resultobj = Py_None; | |
4169 | return _resultobj; | |
4170 | } | |
4171 | ||
4172 | static void *SwigwxBusyInfoTowxObject(void *ptr) { | |
4173 | wxBusyInfo *src; | |
4174 | wxObject *dest; | |
4175 | src = (wxBusyInfo *) ptr; | |
4176 | dest = (wxObject *) src; | |
4177 | return (void *) dest; | |
4178 | } | |
4179 | ||
4180 | #define new_wxBusyInfo(_swigarg0) (new wxBusyInfo(_swigarg0)) | |
4181 | static PyObject *_wrap_new_wxBusyInfo(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4182 | PyObject * _resultobj; | |
4183 | wxBusyInfo * _result; | |
4184 | wxString * _arg0; | |
4185 | PyObject * _obj0 = 0; | |
4186 | char *_kwnames[] = { "message", NULL }; | |
4187 | char _ptemp[128]; | |
4188 | ||
4189 | self = self; | |
4190 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:new_wxBusyInfo",_kwnames,&_obj0)) | |
4191 | return NULL; | |
4192 | { | |
4193 | _arg0 = wxString_in_helper(_obj0); | |
4194 | if (_arg0 == NULL) | |
4195 | return NULL; | |
4196 | } | |
4197 | { | |
4198 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4199 | _result = (wxBusyInfo *)new_wxBusyInfo(*_arg0); | |
4200 | ||
4201 | wxPyEndAllowThreads(__tstate); | |
4202 | if (PyErr_Occurred()) return NULL; | |
4203 | } if (_result) { | |
4204 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxBusyInfo_p"); | |
4205 | _resultobj = Py_BuildValue("s",_ptemp); | |
4206 | } else { | |
4207 | Py_INCREF(Py_None); | |
4208 | _resultobj = Py_None; | |
4209 | } | |
4210 | { | |
4211 | if (_obj0) | |
4212 | delete _arg0; | |
4213 | } | |
4214 | return _resultobj; | |
4215 | } | |
4216 | ||
4217 | #define delete_wxBusyInfo(_swigobj) (delete _swigobj) | |
4218 | static PyObject *_wrap_delete_wxBusyInfo(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4219 | PyObject * _resultobj; | |
4220 | wxBusyInfo * _arg0; | |
4221 | PyObject * _argo0 = 0; | |
4222 | char *_kwnames[] = { "self", NULL }; | |
4223 | ||
4224 | self = self; | |
4225 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxBusyInfo",_kwnames,&_argo0)) | |
4226 | return NULL; | |
4227 | if (_argo0) { | |
4228 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4229 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxBusyInfo_p")) { | |
4230 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxBusyInfo. Expected _wxBusyInfo_p."); | |
4231 | return NULL; | |
4232 | } | |
4233 | } | |
4234 | { | |
4235 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4236 | delete_wxBusyInfo(_arg0); | |
4237 | ||
4238 | wxPyEndAllowThreads(__tstate); | |
4239 | if (PyErr_Occurred()) return NULL; | |
4240 | } Py_INCREF(Py_None); | |
4241 | _resultobj = Py_None; | |
4242 | return _resultobj; | |
4243 | } | |
4244 | ||
4245 | static PyMethodDef misccMethods[] = { | |
4246 | { "delete_wxBusyInfo", (PyCFunction) _wrap_delete_wxBusyInfo, METH_VARARGS | METH_KEYWORDS }, | |
4247 | { "new_wxBusyInfo", (PyCFunction) _wrap_new_wxBusyInfo, METH_VARARGS | METH_KEYWORDS }, | |
4248 | { "delete_wxAcceleratorTable", (PyCFunction) _wrap_delete_wxAcceleratorTable, METH_VARARGS | METH_KEYWORDS }, | |
4249 | { "new_wxAcceleratorTable", (PyCFunction) _wrap_new_wxAcceleratorTable, METH_VARARGS | METH_KEYWORDS }, | |
4250 | { "wxAcceleratorEntry_GetCommand", (PyCFunction) _wrap_wxAcceleratorEntry_GetCommand, METH_VARARGS | METH_KEYWORDS }, | |
4251 | { "wxAcceleratorEntry_GetKeyCode", (PyCFunction) _wrap_wxAcceleratorEntry_GetKeyCode, METH_VARARGS | METH_KEYWORDS }, | |
4252 | { "wxAcceleratorEntry_GetFlags", (PyCFunction) _wrap_wxAcceleratorEntry_GetFlags, METH_VARARGS | METH_KEYWORDS }, | |
4253 | { "wxAcceleratorEntry_Set", (PyCFunction) _wrap_wxAcceleratorEntry_Set, METH_VARARGS | METH_KEYWORDS }, | |
4254 | { "delete_wxAcceleratorEntry", (PyCFunction) _wrap_delete_wxAcceleratorEntry, METH_VARARGS | METH_KEYWORDS }, | |
4255 | { "new_wxAcceleratorEntry", (PyCFunction) _wrap_new_wxAcceleratorEntry, METH_VARARGS | METH_KEYWORDS }, | |
4256 | { "wxLayoutConstraints_width_get", (PyCFunction) _wrap_wxLayoutConstraints_width_get, METH_VARARGS | METH_KEYWORDS }, | |
4257 | { "wxLayoutConstraints_top_get", (PyCFunction) _wrap_wxLayoutConstraints_top_get, METH_VARARGS | METH_KEYWORDS }, | |
4258 | { "wxLayoutConstraints_right_get", (PyCFunction) _wrap_wxLayoutConstraints_right_get, METH_VARARGS | METH_KEYWORDS }, | |
4259 | { "wxLayoutConstraints_left_get", (PyCFunction) _wrap_wxLayoutConstraints_left_get, METH_VARARGS | METH_KEYWORDS }, | |
4260 | { "wxLayoutConstraints_height_get", (PyCFunction) _wrap_wxLayoutConstraints_height_get, METH_VARARGS | METH_KEYWORDS }, | |
4261 | { "wxLayoutConstraints_centreY_get", (PyCFunction) _wrap_wxLayoutConstraints_centreY_get, METH_VARARGS | METH_KEYWORDS }, | |
4262 | { "wxLayoutConstraints_centreX_get", (PyCFunction) _wrap_wxLayoutConstraints_centreX_get, METH_VARARGS | METH_KEYWORDS }, | |
4263 | { "wxLayoutConstraints_bottom_get", (PyCFunction) _wrap_wxLayoutConstraints_bottom_get, METH_VARARGS | METH_KEYWORDS }, | |
4264 | { "new_wxLayoutConstraints", (PyCFunction) _wrap_new_wxLayoutConstraints, METH_VARARGS | METH_KEYWORDS }, | |
4265 | { "wxIndividualLayoutConstraint_Set", (PyCFunction) _wrap_wxIndividualLayoutConstraint_Set, METH_VARARGS | METH_KEYWORDS }, | |
4266 | { "wxIndividualLayoutConstraint_SameAs", (PyCFunction) _wrap_wxIndividualLayoutConstraint_SameAs, METH_VARARGS | METH_KEYWORDS }, | |
4267 | { "wxIndividualLayoutConstraint_RightOf", (PyCFunction) _wrap_wxIndividualLayoutConstraint_RightOf, METH_VARARGS | METH_KEYWORDS }, | |
4268 | { "wxIndividualLayoutConstraint_PercentOf", (PyCFunction) _wrap_wxIndividualLayoutConstraint_PercentOf, METH_VARARGS | METH_KEYWORDS }, | |
4269 | { "wxIndividualLayoutConstraint_LeftOf", (PyCFunction) _wrap_wxIndividualLayoutConstraint_LeftOf, METH_VARARGS | METH_KEYWORDS }, | |
4270 | { "wxIndividualLayoutConstraint_Unconstrained", (PyCFunction) _wrap_wxIndividualLayoutConstraint_Unconstrained, METH_VARARGS | METH_KEYWORDS }, | |
4271 | { "wxIndividualLayoutConstraint_Below", (PyCFunction) _wrap_wxIndividualLayoutConstraint_Below, METH_VARARGS | METH_KEYWORDS }, | |
4272 | { "wxIndividualLayoutConstraint_AsIs", (PyCFunction) _wrap_wxIndividualLayoutConstraint_AsIs, METH_VARARGS | METH_KEYWORDS }, | |
4273 | { "wxIndividualLayoutConstraint_Absolute", (PyCFunction) _wrap_wxIndividualLayoutConstraint_Absolute, METH_VARARGS | METH_KEYWORDS }, | |
4274 | { "wxIndividualLayoutConstraint_Above", (PyCFunction) _wrap_wxIndividualLayoutConstraint_Above, METH_VARARGS | METH_KEYWORDS }, | |
4275 | { "wxRect___cmp__", (PyCFunction) _wrap_wxRect___cmp__, METH_VARARGS | METH_KEYWORDS }, | |
4276 | { "wxRect___add__", (PyCFunction) _wrap_wxRect___add__, METH_VARARGS | METH_KEYWORDS }, | |
4277 | { "wxRect_asTuple", (PyCFunction) _wrap_wxRect_asTuple, METH_VARARGS | METH_KEYWORDS }, | |
4278 | { "wxRect_height_get", (PyCFunction) _wrap_wxRect_height_get, METH_VARARGS | METH_KEYWORDS }, | |
4279 | { "wxRect_height_set", (PyCFunction) _wrap_wxRect_height_set, METH_VARARGS | METH_KEYWORDS }, | |
4280 | { "wxRect_width_get", (PyCFunction) _wrap_wxRect_width_get, METH_VARARGS | METH_KEYWORDS }, | |
4281 | { "wxRect_width_set", (PyCFunction) _wrap_wxRect_width_set, METH_VARARGS | METH_KEYWORDS }, | |
4282 | { "wxRect_y_get", (PyCFunction) _wrap_wxRect_y_get, METH_VARARGS | METH_KEYWORDS }, | |
4283 | { "wxRect_y_set", (PyCFunction) _wrap_wxRect_y_set, METH_VARARGS | METH_KEYWORDS }, | |
4284 | { "wxRect_x_get", (PyCFunction) _wrap_wxRect_x_get, METH_VARARGS | METH_KEYWORDS }, | |
4285 | { "wxRect_x_set", (PyCFunction) _wrap_wxRect_x_set, METH_VARARGS | METH_KEYWORDS }, | |
4286 | { "wxRect_Inside", (PyCFunction) _wrap_wxRect_Inside, METH_VARARGS | METH_KEYWORDS }, | |
4287 | { "wxRect_Inflate", (PyCFunction) _wrap_wxRect_Inflate, METH_VARARGS | METH_KEYWORDS }, | |
4288 | { "wxRect_SetBottom", (PyCFunction) _wrap_wxRect_SetBottom, METH_VARARGS | METH_KEYWORDS }, | |
4289 | { "wxRect_SetTop", (PyCFunction) _wrap_wxRect_SetTop, METH_VARARGS | METH_KEYWORDS }, | |
4290 | { "wxRect_SetRight", (PyCFunction) _wrap_wxRect_SetRight, METH_VARARGS | METH_KEYWORDS }, | |
4291 | { "wxRect_SetLeft", (PyCFunction) _wrap_wxRect_SetLeft, METH_VARARGS | METH_KEYWORDS }, | |
4292 | { "wxRect_GetRight", (PyCFunction) _wrap_wxRect_GetRight, METH_VARARGS | METH_KEYWORDS }, | |
4293 | { "wxRect_GetBottom", (PyCFunction) _wrap_wxRect_GetBottom, METH_VARARGS | METH_KEYWORDS }, | |
4294 | { "wxRect_GetTop", (PyCFunction) _wrap_wxRect_GetTop, METH_VARARGS | METH_KEYWORDS }, | |
4295 | { "wxRect_GetLeft", (PyCFunction) _wrap_wxRect_GetLeft, METH_VARARGS | METH_KEYWORDS }, | |
4296 | { "wxRect_SetSize", (PyCFunction) _wrap_wxRect_SetSize, METH_VARARGS | METH_KEYWORDS }, | |
4297 | { "wxRect_SetPosition", (PyCFunction) _wrap_wxRect_SetPosition, METH_VARARGS | METH_KEYWORDS }, | |
4298 | { "wxRect_GetSize", (PyCFunction) _wrap_wxRect_GetSize, METH_VARARGS | METH_KEYWORDS }, | |
4299 | { "wxRect_GetPosition", (PyCFunction) _wrap_wxRect_GetPosition, METH_VARARGS | METH_KEYWORDS }, | |
4300 | { "wxRect_SetHeight", (PyCFunction) _wrap_wxRect_SetHeight, METH_VARARGS | METH_KEYWORDS }, | |
4301 | { "wxRect_GetHeight", (PyCFunction) _wrap_wxRect_GetHeight, METH_VARARGS | METH_KEYWORDS }, | |
4302 | { "wxRect_SetWidth", (PyCFunction) _wrap_wxRect_SetWidth, METH_VARARGS | METH_KEYWORDS }, | |
4303 | { "wxRect_GetWidth", (PyCFunction) _wrap_wxRect_GetWidth, METH_VARARGS | METH_KEYWORDS }, | |
4304 | { "wxRect_SetY", (PyCFunction) _wrap_wxRect_SetY, METH_VARARGS | METH_KEYWORDS }, | |
4305 | { "wxRect_GetY", (PyCFunction) _wrap_wxRect_GetY, METH_VARARGS | METH_KEYWORDS }, | |
4306 | { "wxRect_SetX", (PyCFunction) _wrap_wxRect_SetX, METH_VARARGS | METH_KEYWORDS }, | |
4307 | { "wxRect_GetX", (PyCFunction) _wrap_wxRect_GetX, METH_VARARGS | METH_KEYWORDS }, | |
4308 | { "delete_wxRect", (PyCFunction) _wrap_delete_wxRect, METH_VARARGS | METH_KEYWORDS }, | |
4309 | { "new_wxRect", (PyCFunction) _wrap_new_wxRect, METH_VARARGS | METH_KEYWORDS }, | |
4310 | { "wxPoint___cmp__", (PyCFunction) _wrap_wxPoint___cmp__, METH_VARARGS | METH_KEYWORDS }, | |
4311 | { "wxPoint___sub__", (PyCFunction) _wrap_wxPoint___sub__, METH_VARARGS | METH_KEYWORDS }, | |
4312 | { "wxPoint___add__", (PyCFunction) _wrap_wxPoint___add__, METH_VARARGS | METH_KEYWORDS }, | |
4313 | { "wxPoint_asTuple", (PyCFunction) _wrap_wxPoint_asTuple, METH_VARARGS | METH_KEYWORDS }, | |
4314 | { "wxPoint_Set", (PyCFunction) _wrap_wxPoint_Set, METH_VARARGS | METH_KEYWORDS }, | |
4315 | { "delete_wxPoint", (PyCFunction) _wrap_delete_wxPoint, METH_VARARGS | METH_KEYWORDS }, | |
4316 | { "new_wxPoint", (PyCFunction) _wrap_new_wxPoint, METH_VARARGS | METH_KEYWORDS }, | |
4317 | { "wxPoint_y_get", (PyCFunction) _wrap_wxPoint_y_get, METH_VARARGS | METH_KEYWORDS }, | |
4318 | { "wxPoint_y_set", (PyCFunction) _wrap_wxPoint_y_set, METH_VARARGS | METH_KEYWORDS }, | |
4319 | { "wxPoint_x_get", (PyCFunction) _wrap_wxPoint_x_get, METH_VARARGS | METH_KEYWORDS }, | |
4320 | { "wxPoint_x_set", (PyCFunction) _wrap_wxPoint_x_set, METH_VARARGS | METH_KEYWORDS }, | |
4321 | { "wxRealPoint___cmp__", (PyCFunction) _wrap_wxRealPoint___cmp__, METH_VARARGS | METH_KEYWORDS }, | |
4322 | { "wxRealPoint___sub__", (PyCFunction) _wrap_wxRealPoint___sub__, METH_VARARGS | METH_KEYWORDS }, | |
4323 | { "wxRealPoint___add__", (PyCFunction) _wrap_wxRealPoint___add__, METH_VARARGS | METH_KEYWORDS }, | |
4324 | { "wxRealPoint_asTuple", (PyCFunction) _wrap_wxRealPoint_asTuple, METH_VARARGS | METH_KEYWORDS }, | |
4325 | { "wxRealPoint_Set", (PyCFunction) _wrap_wxRealPoint_Set, METH_VARARGS | METH_KEYWORDS }, | |
4326 | { "delete_wxRealPoint", (PyCFunction) _wrap_delete_wxRealPoint, METH_VARARGS | METH_KEYWORDS }, | |
4327 | { "new_wxRealPoint", (PyCFunction) _wrap_new_wxRealPoint, METH_VARARGS | METH_KEYWORDS }, | |
4328 | { "wxRealPoint_y_get", (PyCFunction) _wrap_wxRealPoint_y_get, METH_VARARGS | METH_KEYWORDS }, | |
4329 | { "wxRealPoint_y_set", (PyCFunction) _wrap_wxRealPoint_y_set, METH_VARARGS | METH_KEYWORDS }, | |
4330 | { "wxRealPoint_x_get", (PyCFunction) _wrap_wxRealPoint_x_get, METH_VARARGS | METH_KEYWORDS }, | |
4331 | { "wxRealPoint_x_set", (PyCFunction) _wrap_wxRealPoint_x_set, METH_VARARGS | METH_KEYWORDS }, | |
4332 | { "wxSize___cmp__", (PyCFunction) _wrap_wxSize___cmp__, METH_VARARGS | METH_KEYWORDS }, | |
4333 | { "wxSize_asTuple", (PyCFunction) _wrap_wxSize_asTuple, METH_VARARGS | METH_KEYWORDS }, | |
4334 | { "wxSize_SetHeight", (PyCFunction) _wrap_wxSize_SetHeight, METH_VARARGS | METH_KEYWORDS }, | |
4335 | { "wxSize_SetWidth", (PyCFunction) _wrap_wxSize_SetWidth, METH_VARARGS | METH_KEYWORDS }, | |
4336 | { "wxSize_GetHeight", (PyCFunction) _wrap_wxSize_GetHeight, METH_VARARGS | METH_KEYWORDS }, | |
4337 | { "wxSize_GetWidth", (PyCFunction) _wrap_wxSize_GetWidth, METH_VARARGS | METH_KEYWORDS }, | |
4338 | { "wxSize_GetY", (PyCFunction) _wrap_wxSize_GetY, METH_VARARGS | METH_KEYWORDS }, | |
4339 | { "wxSize_GetX", (PyCFunction) _wrap_wxSize_GetX, METH_VARARGS | METH_KEYWORDS }, | |
4340 | { "wxSize_Set", (PyCFunction) _wrap_wxSize_Set, METH_VARARGS | METH_KEYWORDS }, | |
4341 | { "delete_wxSize", (PyCFunction) _wrap_delete_wxSize, METH_VARARGS | METH_KEYWORDS }, | |
4342 | { "new_wxSize", (PyCFunction) _wrap_new_wxSize, METH_VARARGS | METH_KEYWORDS }, | |
4343 | { "wxSize_height_get", (PyCFunction) _wrap_wxSize_y_get, METH_VARARGS | METH_KEYWORDS }, | |
4344 | { "wxSize_height_set", (PyCFunction) _wrap_wxSize_y_set, METH_VARARGS | METH_KEYWORDS }, | |
4345 | { "wxSize_width_get", (PyCFunction) _wrap_wxSize_x_get, METH_VARARGS | METH_KEYWORDS }, | |
4346 | { "wxSize_width_set", (PyCFunction) _wrap_wxSize_x_set, METH_VARARGS | METH_KEYWORDS }, | |
4347 | { "wxSize_y_get", (PyCFunction) _wrap_wxSize_y_get, METH_VARARGS | METH_KEYWORDS }, | |
4348 | { "wxSize_y_set", (PyCFunction) _wrap_wxSize_y_set, METH_VARARGS | METH_KEYWORDS }, | |
4349 | { "wxSize_x_get", (PyCFunction) _wrap_wxSize_x_get, METH_VARARGS | METH_KEYWORDS }, | |
4350 | { "wxSize_x_set", (PyCFunction) _wrap_wxSize_x_set, METH_VARARGS | METH_KEYWORDS }, | |
4351 | { "wxObject_Destroy", (PyCFunction) _wrap_wxObject_Destroy, METH_VARARGS | METH_KEYWORDS }, | |
4352 | { "wxObject_GetClassName", (PyCFunction) _wrap_wxObject_GetClassName, METH_VARARGS | METH_KEYWORDS }, | |
4353 | { "wxGetAccelFromString", (PyCFunction) _wrap_wxGetAccelFromString, METH_VARARGS | METH_KEYWORDS }, | |
4354 | { "wxGetProcessId", (PyCFunction) _wrap_wxGetProcessId, METH_VARARGS | METH_KEYWORDS }, | |
4355 | { "wxGetUserHome", (PyCFunction) _wrap_wxGetUserHome, METH_VARARGS | METH_KEYWORDS }, | |
4356 | { "wxGetHomeDir", (PyCFunction) _wrap_wxGetHomeDir, METH_VARARGS | METH_KEYWORDS }, | |
4357 | { "wxGetUserName", (PyCFunction) _wrap_wxGetUserName, METH_VARARGS | METH_KEYWORDS }, | |
4358 | { "wxGetUserId", (PyCFunction) _wrap_wxGetUserId, METH_VARARGS | METH_KEYWORDS }, | |
4359 | { "wxGetFullHostName", (PyCFunction) _wrap_wxGetFullHostName, METH_VARARGS | METH_KEYWORDS }, | |
4360 | { "wxGetHostName", (PyCFunction) _wrap_wxGetHostName, METH_VARARGS | METH_KEYWORDS }, | |
4361 | { "wxGetEmailAddress", (PyCFunction) _wrap_wxGetEmailAddress, METH_VARARGS | METH_KEYWORDS }, | |
4362 | { "wxStripMenuCodes", (PyCFunction) _wrap_wxStripMenuCodes, METH_VARARGS | METH_KEYWORDS }, | |
4363 | { "wxGetResource", (PyCFunction) _wrap_wxGetResource, METH_VARARGS | METH_KEYWORDS }, | |
4364 | { "wxEnableTopLevelWindows", (PyCFunction) _wrap_wxEnableTopLevelWindows, METH_VARARGS | METH_KEYWORDS }, | |
4365 | { "wxYieldIfNeeded", (PyCFunction) _wrap_wxYieldIfNeeded, METH_VARARGS | METH_KEYWORDS }, | |
4366 | { "wxYield", (PyCFunction) _wrap_wxYield, METH_VARARGS | METH_KEYWORDS }, | |
4367 | { "wxUsleep", (PyCFunction) _wrap_wxUsleep, METH_VARARGS | METH_KEYWORDS }, | |
4368 | { "wxSleep", (PyCFunction) _wrap_wxSleep, METH_VARARGS | METH_KEYWORDS }, | |
4369 | { "wxShutdown", (PyCFunction) _wrap_wxShutdown, METH_VARARGS | METH_KEYWORDS }, | |
4370 | { "wxGetOsDescription", (PyCFunction) _wrap_wxGetOsDescription, METH_VARARGS | METH_KEYWORDS }, | |
4371 | { "wxGetOsVersion", (PyCFunction) _wrap_wxGetOsVersion, METH_VARARGS | METH_KEYWORDS }, | |
4372 | { "wxStartTimer", (PyCFunction) _wrap_wxStartTimer, METH_VARARGS | METH_KEYWORDS }, | |
4373 | { "wxShell", (PyCFunction) _wrap_wxShell, METH_VARARGS | METH_KEYWORDS }, | |
4374 | { "wxNow", (PyCFunction) _wrap_wxNow, METH_VARARGS | METH_KEYWORDS }, | |
4375 | { "wxIsBusy", (PyCFunction) _wrap_wxIsBusy, METH_VARARGS | METH_KEYWORDS }, | |
4376 | { "wxGetMousePosition", (PyCFunction) _wrap_wxGetMousePosition, METH_VARARGS | METH_KEYWORDS }, | |
4377 | { "wxGetFreeMemory", (PyCFunction) _wrap_wxGetFreeMemory, METH_VARARGS | METH_KEYWORDS }, | |
4378 | { "wxGetElapsedTime", (PyCFunction) _wrap_wxGetElapsedTime, METH_VARARGS | METH_KEYWORDS }, | |
4379 | { "wxEndBusyCursor", (PyCFunction) _wrap_wxEndBusyCursor, METH_VARARGS | METH_KEYWORDS }, | |
4380 | { "wxBell", (PyCFunction) _wrap_wxBell, METH_VARARGS | METH_KEYWORDS }, | |
4381 | { "wxGetCurrentId", (PyCFunction) _wrap_wxGetCurrentId, METH_VARARGS | METH_KEYWORDS }, | |
4382 | { "RegisterId", (PyCFunction) _wrap_RegisterId, METH_VARARGS | METH_KEYWORDS }, | |
4383 | { "NewId", (PyCFunction) _wrap_NewId, METH_VARARGS | METH_KEYWORDS }, | |
4384 | { "wxRegisterId", (PyCFunction) _wrap_wxRegisterId, METH_VARARGS | METH_KEYWORDS }, | |
4385 | { "wxNewId", (PyCFunction) _wrap_wxNewId, METH_VARARGS | METH_KEYWORDS }, | |
4386 | { "wxIntersectRect", (PyCFunction) _wrap_wxIntersectRect, METH_VARARGS | METH_KEYWORDS }, | |
4387 | { NULL, NULL } | |
4388 | }; | |
4389 | #ifdef __cplusplus | |
4390 | } | |
4391 | #endif | |
4392 | /* | |
4393 | * This table is used by the pointer type-checker | |
4394 | */ | |
4395 | static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = { | |
4396 | { "_signed_long","_long",0}, | |
4397 | { "_wxPrintQuality","_wxCoord",0}, | |
4398 | { "_wxPrintQuality","_int",0}, | |
4399 | { "_wxPrintQuality","_signed_int",0}, | |
4400 | { "_wxPrintQuality","_unsigned_int",0}, | |
4401 | { "_wxPrintQuality","_wxWindowID",0}, | |
4402 | { "_wxPrintQuality","_uint",0}, | |
4403 | { "_wxPrintQuality","_EBool",0}, | |
4404 | { "_wxPrintQuality","_size_t",0}, | |
4405 | { "_wxPrintQuality","_time_t",0}, | |
4406 | { "_byte","_unsigned_char",0}, | |
4407 | { "_long","_unsigned_long",0}, | |
4408 | { "_long","_signed_long",0}, | |
4409 | { "_size_t","_wxCoord",0}, | |
4410 | { "_size_t","_wxPrintQuality",0}, | |
4411 | { "_size_t","_time_t",0}, | |
4412 | { "_size_t","_unsigned_int",0}, | |
4413 | { "_size_t","_int",0}, | |
4414 | { "_size_t","_wxWindowID",0}, | |
4415 | { "_size_t","_uint",0}, | |
4416 | { "_uint","_wxCoord",0}, | |
4417 | { "_uint","_wxPrintQuality",0}, | |
4418 | { "_uint","_time_t",0}, | |
4419 | { "_uint","_size_t",0}, | |
4420 | { "_uint","_unsigned_int",0}, | |
4421 | { "_uint","_int",0}, | |
4422 | { "_uint","_wxWindowID",0}, | |
4423 | { "_wxChar","_char",0}, | |
4424 | { "_char","_wxChar",0}, | |
4425 | { "_EBool","_wxCoord",0}, | |
4426 | { "_EBool","_wxPrintQuality",0}, | |
4427 | { "_EBool","_signed_int",0}, | |
4428 | { "_EBool","_int",0}, | |
4429 | { "_EBool","_wxWindowID",0}, | |
4430 | { "_unsigned_long","_long",0}, | |
4431 | { "_signed_int","_wxCoord",0}, | |
4432 | { "_signed_int","_wxPrintQuality",0}, | |
4433 | { "_signed_int","_EBool",0}, | |
4434 | { "_signed_int","_wxWindowID",0}, | |
4435 | { "_signed_int","_int",0}, | |
4436 | { "_WXTYPE","_short",0}, | |
4437 | { "_WXTYPE","_signed_short",0}, | |
4438 | { "_WXTYPE","_unsigned_short",0}, | |
4439 | { "_unsigned_short","_WXTYPE",0}, | |
4440 | { "_unsigned_short","_short",0}, | |
4441 | { "_wxObject","_wxBusyInfo",SwigwxBusyInfoTowxObject}, | |
4442 | { "_wxObject","_wxAcceleratorTable",SwigwxAcceleratorTableTowxObject}, | |
4443 | { "_wxObject","_wxLayoutConstraints",SwigwxLayoutConstraintsTowxObject}, | |
4444 | { "_wxObject","_wxIndividualLayoutConstraint",SwigwxIndividualLayoutConstraintTowxObject}, | |
4445 | { "_signed_short","_WXTYPE",0}, | |
4446 | { "_signed_short","_short",0}, | |
4447 | { "_unsigned_char","_byte",0}, | |
4448 | { "_unsigned_int","_wxCoord",0}, | |
4449 | { "_unsigned_int","_wxPrintQuality",0}, | |
4450 | { "_unsigned_int","_time_t",0}, | |
4451 | { "_unsigned_int","_size_t",0}, | |
4452 | { "_unsigned_int","_uint",0}, | |
4453 | { "_unsigned_int","_wxWindowID",0}, | |
4454 | { "_unsigned_int","_int",0}, | |
4455 | { "_short","_WXTYPE",0}, | |
4456 | { "_short","_unsigned_short",0}, | |
4457 | { "_short","_signed_short",0}, | |
4458 | { "_wxWindowID","_wxCoord",0}, | |
4459 | { "_wxWindowID","_wxPrintQuality",0}, | |
4460 | { "_wxWindowID","_time_t",0}, | |
4461 | { "_wxWindowID","_size_t",0}, | |
4462 | { "_wxWindowID","_EBool",0}, | |
4463 | { "_wxWindowID","_uint",0}, | |
4464 | { "_wxWindowID","_int",0}, | |
4465 | { "_wxWindowID","_signed_int",0}, | |
4466 | { "_wxWindowID","_unsigned_int",0}, | |
4467 | { "_int","_wxCoord",0}, | |
4468 | { "_int","_wxPrintQuality",0}, | |
4469 | { "_int","_time_t",0}, | |
4470 | { "_int","_size_t",0}, | |
4471 | { "_int","_EBool",0}, | |
4472 | { "_int","_uint",0}, | |
4473 | { "_int","_wxWindowID",0}, | |
4474 | { "_int","_unsigned_int",0}, | |
4475 | { "_int","_signed_int",0}, | |
4476 | { "_time_t","_wxCoord",0}, | |
4477 | { "_time_t","_wxPrintQuality",0}, | |
4478 | { "_time_t","_unsigned_int",0}, | |
4479 | { "_time_t","_int",0}, | |
4480 | { "_time_t","_wxWindowID",0}, | |
4481 | { "_time_t","_uint",0}, | |
4482 | { "_time_t","_size_t",0}, | |
4483 | { "_wxCoord","_int",0}, | |
4484 | { "_wxCoord","_signed_int",0}, | |
4485 | { "_wxCoord","_unsigned_int",0}, | |
4486 | { "_wxCoord","_wxWindowID",0}, | |
4487 | { "_wxCoord","_uint",0}, | |
4488 | { "_wxCoord","_EBool",0}, | |
4489 | { "_wxCoord","_size_t",0}, | |
4490 | { "_wxCoord","_time_t",0}, | |
4491 | { "_wxCoord","_wxPrintQuality",0}, | |
4492 | {0,0,0}}; | |
4493 | ||
4494 | static PyObject *SWIG_globals; | |
4495 | #ifdef __cplusplus | |
4496 | extern "C" | |
4497 | #endif | |
4498 | SWIGEXPORT(void) initmiscc() { | |
4499 | PyObject *m, *d; | |
4500 | SWIG_globals = SWIG_newvarlink(); | |
4501 | m = Py_InitModule("miscc", misccMethods); | |
4502 | d = PyModule_GetDict(m); | |
4503 | PyDict_SetItemString(d,"wxSHUTDOWN_POWEROFF", PyInt_FromLong((long) wxSHUTDOWN_POWEROFF)); | |
4504 | PyDict_SetItemString(d,"wxSHUTDOWN_REBOOT", PyInt_FromLong((long) wxSHUTDOWN_REBOOT)); | |
4505 | PyDict_SetItemString(d,"wxLeft", PyInt_FromLong((long) wxLeft)); | |
4506 | PyDict_SetItemString(d,"wxTop", PyInt_FromLong((long) wxTop)); | |
4507 | PyDict_SetItemString(d,"wxRight", PyInt_FromLong((long) wxRight)); | |
4508 | PyDict_SetItemString(d,"wxBottom", PyInt_FromLong((long) wxBottom)); | |
4509 | PyDict_SetItemString(d,"wxWidth", PyInt_FromLong((long) wxWidth)); | |
4510 | PyDict_SetItemString(d,"wxHeight", PyInt_FromLong((long) wxHeight)); | |
4511 | PyDict_SetItemString(d,"wxCentre", PyInt_FromLong((long) wxCentre)); | |
4512 | PyDict_SetItemString(d,"wxCenter", PyInt_FromLong((long) wxCenter)); | |
4513 | PyDict_SetItemString(d,"wxCentreX", PyInt_FromLong((long) wxCentreX)); | |
4514 | PyDict_SetItemString(d,"wxCentreY", PyInt_FromLong((long) wxCentreY)); | |
4515 | PyDict_SetItemString(d,"wxUnconstrained", PyInt_FromLong((long) wxUnconstrained)); | |
4516 | PyDict_SetItemString(d,"wxAsIs", PyInt_FromLong((long) wxAsIs)); | |
4517 | PyDict_SetItemString(d,"wxPercentOf", PyInt_FromLong((long) wxPercentOf)); | |
4518 | PyDict_SetItemString(d,"wxAbove", PyInt_FromLong((long) wxAbove)); | |
4519 | PyDict_SetItemString(d,"wxBelow", PyInt_FromLong((long) wxBelow)); | |
4520 | PyDict_SetItemString(d,"wxLeftOf", PyInt_FromLong((long) wxLeftOf)); | |
4521 | PyDict_SetItemString(d,"wxRightOf", PyInt_FromLong((long) wxRightOf)); | |
4522 | PyDict_SetItemString(d,"wxSameAs", PyInt_FromLong((long) wxSameAs)); | |
4523 | PyDict_SetItemString(d,"wxAbsolute", PyInt_FromLong((long) wxAbsolute)); | |
4524 | PyDict_SetItemString(d,"cvar", SWIG_globals); | |
4525 | SWIG_addvarlink(SWIG_globals,"wxNullAcceleratorTable",_wrap_wxNullAcceleratorTable_get, _wrap_wxNullAcceleratorTable_set); | |
4526 | { | |
4527 | int i; | |
4528 | for (i = 0; _swig_mapping[i].n1; i++) | |
4529 | SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv); | |
4530 | } | |
4531 | } |