]>
Commit | Line | Data |
---|---|---|
cf694132 | 1 | /* |
c368d904 | 2 | * FILE : src/msw/image.cpp |
cf694132 RD |
3 | * |
4 | * This file was automatically generated by : | |
5 | * Simplified Wrapper and Interface Generator (SWIG) | |
185d7c3e | 6 | * Version 1.1 (Build 883) |
cf694132 RD |
7 | * |
8 | * Portions Copyright (c) 1995-1998 | |
9 | * The University of Utah and The Regents of the University of California. | |
10 | * Permission is granted to distribute this file in any manner provided | |
11 | * this notice remains intact. | |
12 | * | |
13 | * Do not make changes to this file--changes will be lost! | |
14 | * | |
15 | */ | |
16 | ||
17 | ||
18 | #define SWIGCODE | |
19 | /* Implementation : PYTHON */ | |
20 | ||
21 | #define SWIGPYTHON | |
22 | #include <string.h> | |
23 | #include <stdlib.h> | |
24 | /* Definitions for Windows/Unix exporting */ | |
25 | #if defined(__WIN32__) | |
26 | # if defined(_MSC_VER) | |
1d99702e | 27 | # define SWIGEXPORT(a) __declspec(dllexport) a |
cf694132 RD |
28 | # else |
29 | # if defined(__BORLANDC__) | |
c368d904 | 30 | # define SWIGEXPORT(a) a _export |
cf694132 | 31 | # else |
c368d904 | 32 | # define SWIGEXPORT(a) a |
cf694132 RD |
33 | # endif |
34 | # endif | |
35 | #else | |
c368d904 | 36 | # define SWIGEXPORT(a) a |
cf694132 RD |
37 | #endif |
38 | ||
c368d904 RD |
39 | #include "Python.h" |
40 | ||
cf694132 RD |
41 | #ifdef __cplusplus |
42 | extern "C" { | |
43 | #endif | |
185d7c3e | 44 | |
cf694132 RD |
45 | extern void SWIG_MakePtr(char *, void *, char *); |
46 | extern void SWIG_RegisterMapping(char *, char *, void *(*)(void *)); | |
47 | extern char *SWIG_GetPtr(char *, void **, char *); | |
1d99702e | 48 | extern char *SWIG_GetPtrObj(PyObject *, void **, char *); |
cf694132 RD |
49 | extern void SWIG_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *)); |
50 | extern PyObject *SWIG_newvarlink(void); | |
51 | #ifdef __cplusplus | |
52 | } | |
53 | #endif | |
cf694132 RD |
54 | #define SWIG_init initimagec |
55 | ||
56 | #define SWIG_name "imagec" | |
57 | ||
58 | #include "helpers.h" | |
59 | #include <wx/image.h> | |
60 | ||
cf694132 RD |
61 | |
62 | static PyObject* t_output_helper(PyObject* target, PyObject* o) { | |
63 | PyObject* o2; | |
64 | PyObject* o3; | |
65 | ||
e0672e2f | 66 | if (!target) { |
cf694132 | 67 | target = o; |
e0672e2f | 68 | } else if (target == Py_None) { |
cf694132 RD |
69 | Py_DECREF(Py_None); |
70 | target = o; | |
e0672e2f | 71 | } else { |
cf694132 RD |
72 | if (!PyTuple_Check(target)) { |
73 | o2 = target; | |
74 | target = PyTuple_New(1); | |
75 | PyTuple_SetItem(target, 0, o2); | |
76 | } | |
e0672e2f RD |
77 | o3 = PyTuple_New(1); |
78 | PyTuple_SetItem(o3, 0, o); | |
cf694132 RD |
79 | |
80 | o2 = target; | |
e0672e2f RD |
81 | target = PySequence_Concat(o2, o3); |
82 | Py_DECREF(o2); | |
cf694132 RD |
83 | Py_DECREF(o3); |
84 | } | |
85 | return target; | |
86 | } | |
87 | ||
794c5cb1 RD |
88 | #if PYTHON_API_VERSION >= 1009 |
89 | static char* wxStringErrorMsg = "String or Unicode type required"; | |
90 | #else | |
0122b7e3 | 91 | static char* wxStringErrorMsg = "String type required"; |
794c5cb1 | 92 | #endif |
cf694132 | 93 | |
0a651eb8 RD |
94 | wxImage* wxEmptyImage(int width=0, int height=0) { |
95 | if (width == 0 && height == 0) | |
96 | return new wxImage; | |
97 | else | |
98 | return new wxImage(width, height); | |
cf694132 RD |
99 | } |
100 | ||
101 | wxImage* wxImageFromMime(const wxString& name, const wxString& mimetype) { | |
102 | return new wxImage(name, mimetype); | |
103 | } | |
104 | ||
105 | wxImage* wxImageFromBitmap(const wxBitmap &bitmap) { | |
106 | return new wxImage(bitmap); | |
107 | } | |
0a651eb8 RD |
108 | |
109 | #if 0 | |
110 | extern wxImage wxNullImage; | |
111 | ||
112 | #endif | |
926bb76c RD |
113 | |
114 | wxBitmap* wxBitmapFromImage(const wxImage& img, int depth=-1) { | |
115 | return new wxBitmap(img, depth); | |
116 | } | |
117 | ||
1d99702e RD |
118 | #ifdef __cplusplus |
119 | extern "C" { | |
120 | #endif | |
efc5f224 | 121 | static PyObject *_wrap_wxEmptyImage(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
122 | PyObject * _resultobj; |
123 | wxImage * _result; | |
0a651eb8 RD |
124 | int _arg0 = (int ) 0; |
125 | int _arg1 = (int ) 0; | |
efc5f224 | 126 | char *_kwnames[] = { "width","height", NULL }; |
cf694132 RD |
127 | char _ptemp[128]; |
128 | ||
129 | self = self; | |
0a651eb8 | 130 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|ii:wxEmptyImage",_kwnames,&_arg0,&_arg1)) |
cf694132 RD |
131 | return NULL; |
132 | { | |
4268f798 | 133 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
134 | _result = (wxImage *)wxEmptyImage(_arg0,_arg1); |
135 | ||
4268f798 | 136 | wxPyEndAllowThreads(__tstate); |
493f1553 | 137 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
138 | } if (_result) { |
139 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxImage_p"); | |
140 | _resultobj = Py_BuildValue("s",_ptemp); | |
141 | } else { | |
142 | Py_INCREF(Py_None); | |
143 | _resultobj = Py_None; | |
144 | } | |
cf694132 RD |
145 | return _resultobj; |
146 | } | |
147 | ||
efc5f224 | 148 | static PyObject *_wrap_wxImageFromMime(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
149 | PyObject * _resultobj; |
150 | wxImage * _result; | |
151 | wxString * _arg0; | |
152 | wxString * _arg1; | |
153 | PyObject * _obj0 = 0; | |
154 | PyObject * _obj1 = 0; | |
efc5f224 | 155 | char *_kwnames[] = { "name","mimetype", NULL }; |
cf694132 RD |
156 | char _ptemp[128]; |
157 | ||
158 | self = self; | |
efc5f224 | 159 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxImageFromMime",_kwnames,&_obj0,&_obj1)) |
cf694132 RD |
160 | return NULL; |
161 | { | |
185d7c3e RD |
162 | #if PYTHON_API_VERSION >= 1009 |
163 | char* tmpPtr; int tmpSize; | |
164 | if (!PyString_Check(_obj0) && !PyUnicode_Check(_obj0)) { | |
794c5cb1 | 165 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
166 | return NULL; |
167 | } | |
168 | if (PyString_AsStringAndSize(_obj0, &tmpPtr, &tmpSize) == -1) | |
169 | return NULL; | |
170 | _arg0 = new wxString(tmpPtr, tmpSize); | |
171 | #else | |
cf694132 RD |
172 | if (!PyString_Check(_obj0)) { |
173 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
174 | return NULL; | |
175 | } | |
185d7c3e RD |
176 | _arg0 = new wxString(PyString_AS_STRING(_obj0), PyString_GET_SIZE(_obj0)); |
177 | #endif | |
cf694132 RD |
178 | } |
179 | { | |
185d7c3e RD |
180 | #if PYTHON_API_VERSION >= 1009 |
181 | char* tmpPtr; int tmpSize; | |
182 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 183 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
184 | return NULL; |
185 | } | |
186 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
187 | return NULL; | |
188 | _arg1 = new wxString(tmpPtr, tmpSize); | |
189 | #else | |
cf694132 RD |
190 | if (!PyString_Check(_obj1)) { |
191 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
192 | return NULL; | |
193 | } | |
185d7c3e RD |
194 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
195 | #endif | |
cf694132 RD |
196 | } |
197 | { | |
4268f798 | 198 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
199 | _result = (wxImage *)wxImageFromMime(*_arg0,*_arg1); |
200 | ||
4268f798 | 201 | wxPyEndAllowThreads(__tstate); |
493f1553 | 202 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
203 | } if (_result) { |
204 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxImage_p"); | |
205 | _resultobj = Py_BuildValue("s",_ptemp); | |
206 | } else { | |
207 | Py_INCREF(Py_None); | |
208 | _resultobj = Py_None; | |
209 | } | |
cf694132 RD |
210 | { |
211 | if (_obj0) | |
212 | delete _arg0; | |
213 | } | |
214 | { | |
215 | if (_obj1) | |
216 | delete _arg1; | |
217 | } | |
218 | return _resultobj; | |
219 | } | |
220 | ||
efc5f224 | 221 | static PyObject *_wrap_wxImageFromBitmap(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
222 | PyObject * _resultobj; |
223 | wxImage * _result; | |
224 | wxBitmap * _arg0; | |
1d99702e | 225 | PyObject * _argo0 = 0; |
efc5f224 | 226 | char *_kwnames[] = { "bitmap", NULL }; |
cf694132 RD |
227 | char _ptemp[128]; |
228 | ||
229 | self = self; | |
efc5f224 | 230 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImageFromBitmap",_kwnames,&_argo0)) |
cf694132 | 231 | return NULL; |
1d99702e RD |
232 | if (_argo0) { |
233 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
234 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxBitmap_p")) { | |
cf694132 RD |
235 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageFromBitmap. Expected _wxBitmap_p."); |
236 | return NULL; | |
237 | } | |
238 | } | |
239 | { | |
4268f798 | 240 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
241 | _result = (wxImage *)wxImageFromBitmap(*_arg0); |
242 | ||
4268f798 | 243 | wxPyEndAllowThreads(__tstate); |
493f1553 | 244 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
245 | } if (_result) { |
246 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxImage_p"); | |
247 | _resultobj = Py_BuildValue("s",_ptemp); | |
248 | } else { | |
249 | Py_INCREF(Py_None); | |
250 | _resultobj = Py_None; | |
251 | } | |
cf694132 RD |
252 | return _resultobj; |
253 | } | |
254 | ||
06c0fba4 RD |
255 | static PyObject *_wrap_wxInitAllImageHandlers(PyObject *self, PyObject *args, PyObject *kwargs) { |
256 | PyObject * _resultobj; | |
257 | char *_kwnames[] = { NULL }; | |
258 | ||
259 | self = self; | |
260 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxInitAllImageHandlers",_kwnames)) | |
261 | return NULL; | |
262 | { | |
4268f798 | 263 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
06c0fba4 RD |
264 | wxInitAllImageHandlers(); |
265 | ||
4268f798 | 266 | wxPyEndAllowThreads(__tstate); |
493f1553 | 267 | if (PyErr_Occurred()) return NULL; |
06c0fba4 RD |
268 | } Py_INCREF(Py_None); |
269 | _resultobj = Py_None; | |
270 | return _resultobj; | |
271 | } | |
272 | ||
0a651eb8 RD |
273 | static int _wrap_wxNullImage_set(PyObject *val) { |
274 | ||
275 | PyErr_SetString(PyExc_TypeError,"Variable wxNullImage is read-only."); | |
276 | return 1; | |
277 | } | |
278 | ||
279 | static PyObject *_wrap_wxNullImage_get() { | |
280 | PyObject * pyobj; | |
281 | char ptemp[128]; | |
282 | ||
283 | SWIG_MakePtr(ptemp,(char *) &wxNullImage,"_wxImage_p"); | |
284 | pyobj = PyString_FromString(ptemp); | |
285 | return pyobj; | |
286 | } | |
287 | ||
926bb76c RD |
288 | static PyObject *_wrap_wxBitmapFromImage(PyObject *self, PyObject *args, PyObject *kwargs) { |
289 | PyObject * _resultobj; | |
290 | wxBitmap * _result; | |
291 | wxImage * _arg0; | |
292 | int _arg1 = (int ) -1; | |
293 | PyObject * _argo0 = 0; | |
294 | char *_kwnames[] = { "img","depth", NULL }; | |
295 | char _ptemp[128]; | |
296 | ||
297 | self = self; | |
298 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxBitmapFromImage",_kwnames,&_argo0,&_arg1)) | |
299 | return NULL; | |
300 | if (_argo0) { | |
301 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
302 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
303 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxBitmapFromImage. Expected _wxImage_p."); | |
304 | return NULL; | |
305 | } | |
306 | } | |
307 | { | |
4268f798 | 308 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
926bb76c RD |
309 | _result = (wxBitmap *)wxBitmapFromImage(*_arg0,_arg1); |
310 | ||
4268f798 | 311 | wxPyEndAllowThreads(__tstate); |
493f1553 | 312 | if (PyErr_Occurred()) return NULL; |
926bb76c RD |
313 | } if (_result) { |
314 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxBitmap_p"); | |
315 | _resultobj = Py_BuildValue("s",_ptemp); | |
316 | } else { | |
317 | Py_INCREF(Py_None); | |
318 | _resultobj = Py_None; | |
319 | } | |
320 | return _resultobj; | |
321 | } | |
322 | ||
9416aa89 RD |
323 | static void *SwigwxImageHandlerTowxObject(void *ptr) { |
324 | wxImageHandler *src; | |
325 | wxObject *dest; | |
326 | src = (wxImageHandler *) ptr; | |
327 | dest = (wxObject *) src; | |
328 | return (void *) dest; | |
329 | } | |
330 | ||
cf694132 | 331 | #define wxImageHandler_GetName(_swigobj) (_swigobj->GetName()) |
efc5f224 | 332 | static PyObject *_wrap_wxImageHandler_GetName(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
333 | PyObject * _resultobj; |
334 | wxString * _result; | |
335 | wxImageHandler * _arg0; | |
1d99702e | 336 | PyObject * _argo0 = 0; |
efc5f224 | 337 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
338 | |
339 | self = self; | |
efc5f224 | 340 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImageHandler_GetName",_kwnames,&_argo0)) |
cf694132 | 341 | return NULL; |
1d99702e RD |
342 | if (_argo0) { |
343 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
344 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { | |
cf694132 RD |
345 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_GetName. Expected _wxImageHandler_p."); |
346 | return NULL; | |
347 | } | |
348 | } | |
349 | { | |
4268f798 | 350 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
351 | _result = new wxString (wxImageHandler_GetName(_arg0)); |
352 | ||
4268f798 | 353 | wxPyEndAllowThreads(__tstate); |
493f1553 | 354 | if (PyErr_Occurred()) return NULL; |
cf694132 | 355 | }{ |
eec92d76 | 356 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
cf694132 RD |
357 | } |
358 | { | |
359 | delete _result; | |
360 | } | |
361 | return _resultobj; | |
362 | } | |
363 | ||
364 | #define wxImageHandler_GetExtension(_swigobj) (_swigobj->GetExtension()) | |
efc5f224 | 365 | static PyObject *_wrap_wxImageHandler_GetExtension(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
366 | PyObject * _resultobj; |
367 | wxString * _result; | |
368 | wxImageHandler * _arg0; | |
1d99702e | 369 | PyObject * _argo0 = 0; |
efc5f224 | 370 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
371 | |
372 | self = self; | |
efc5f224 | 373 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImageHandler_GetExtension",_kwnames,&_argo0)) |
cf694132 | 374 | return NULL; |
1d99702e RD |
375 | if (_argo0) { |
376 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
377 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { | |
cf694132 RD |
378 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_GetExtension. Expected _wxImageHandler_p."); |
379 | return NULL; | |
380 | } | |
381 | } | |
382 | { | |
4268f798 | 383 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
384 | _result = new wxString (wxImageHandler_GetExtension(_arg0)); |
385 | ||
4268f798 | 386 | wxPyEndAllowThreads(__tstate); |
493f1553 | 387 | if (PyErr_Occurred()) return NULL; |
cf694132 | 388 | }{ |
eec92d76 | 389 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
cf694132 RD |
390 | } |
391 | { | |
392 | delete _result; | |
393 | } | |
394 | return _resultobj; | |
395 | } | |
396 | ||
397 | #define wxImageHandler_GetType(_swigobj) (_swigobj->GetType()) | |
efc5f224 | 398 | static PyObject *_wrap_wxImageHandler_GetType(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
399 | PyObject * _resultobj; |
400 | long _result; | |
401 | wxImageHandler * _arg0; | |
1d99702e | 402 | PyObject * _argo0 = 0; |
efc5f224 | 403 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
404 | |
405 | self = self; | |
efc5f224 | 406 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImageHandler_GetType",_kwnames,&_argo0)) |
cf694132 | 407 | return NULL; |
1d99702e RD |
408 | if (_argo0) { |
409 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
410 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { | |
cf694132 RD |
411 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_GetType. Expected _wxImageHandler_p."); |
412 | return NULL; | |
413 | } | |
414 | } | |
415 | { | |
4268f798 | 416 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
417 | _result = (long )wxImageHandler_GetType(_arg0); |
418 | ||
4268f798 | 419 | wxPyEndAllowThreads(__tstate); |
493f1553 | 420 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
421 | } _resultobj = Py_BuildValue("l",_result); |
422 | return _resultobj; | |
423 | } | |
424 | ||
425 | #define wxImageHandler_GetMimeType(_swigobj) (_swigobj->GetMimeType()) | |
efc5f224 | 426 | static PyObject *_wrap_wxImageHandler_GetMimeType(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
427 | PyObject * _resultobj; |
428 | wxString * _result; | |
429 | wxImageHandler * _arg0; | |
1d99702e | 430 | PyObject * _argo0 = 0; |
efc5f224 | 431 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
432 | |
433 | self = self; | |
efc5f224 | 434 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImageHandler_GetMimeType",_kwnames,&_argo0)) |
cf694132 | 435 | return NULL; |
1d99702e RD |
436 | if (_argo0) { |
437 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
438 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { | |
cf694132 RD |
439 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_GetMimeType. Expected _wxImageHandler_p."); |
440 | return NULL; | |
441 | } | |
442 | } | |
443 | { | |
4268f798 | 444 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
445 | _result = new wxString (wxImageHandler_GetMimeType(_arg0)); |
446 | ||
4268f798 | 447 | wxPyEndAllowThreads(__tstate); |
493f1553 | 448 | if (PyErr_Occurred()) return NULL; |
cf694132 | 449 | }{ |
eec92d76 | 450 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
cf694132 RD |
451 | } |
452 | { | |
453 | delete _result; | |
454 | } | |
455 | return _resultobj; | |
456 | } | |
457 | ||
458 | #define wxImageHandler_SetName(_swigobj,_swigarg0) (_swigobj->SetName(_swigarg0)) | |
efc5f224 | 459 | static PyObject *_wrap_wxImageHandler_SetName(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
460 | PyObject * _resultobj; |
461 | wxImageHandler * _arg0; | |
462 | wxString * _arg1; | |
1d99702e | 463 | PyObject * _argo0 = 0; |
cf694132 | 464 | PyObject * _obj1 = 0; |
efc5f224 | 465 | char *_kwnames[] = { "self","name", NULL }; |
cf694132 RD |
466 | |
467 | self = self; | |
efc5f224 | 468 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxImageHandler_SetName",_kwnames,&_argo0,&_obj1)) |
cf694132 | 469 | return NULL; |
1d99702e RD |
470 | if (_argo0) { |
471 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
472 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { | |
cf694132 RD |
473 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_SetName. Expected _wxImageHandler_p."); |
474 | return NULL; | |
475 | } | |
476 | } | |
477 | { | |
185d7c3e RD |
478 | #if PYTHON_API_VERSION >= 1009 |
479 | char* tmpPtr; int tmpSize; | |
480 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 481 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
482 | return NULL; |
483 | } | |
484 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
485 | return NULL; | |
486 | _arg1 = new wxString(tmpPtr, tmpSize); | |
487 | #else | |
cf694132 RD |
488 | if (!PyString_Check(_obj1)) { |
489 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
490 | return NULL; | |
491 | } | |
185d7c3e RD |
492 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
493 | #endif | |
cf694132 RD |
494 | } |
495 | { | |
4268f798 | 496 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
497 | wxImageHandler_SetName(_arg0,*_arg1); |
498 | ||
4268f798 | 499 | wxPyEndAllowThreads(__tstate); |
493f1553 | 500 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
501 | } Py_INCREF(Py_None); |
502 | _resultobj = Py_None; | |
503 | { | |
504 | if (_obj1) | |
505 | delete _arg1; | |
506 | } | |
507 | return _resultobj; | |
508 | } | |
509 | ||
510 | #define wxImageHandler_SetExtension(_swigobj,_swigarg0) (_swigobj->SetExtension(_swigarg0)) | |
efc5f224 | 511 | static PyObject *_wrap_wxImageHandler_SetExtension(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
512 | PyObject * _resultobj; |
513 | wxImageHandler * _arg0; | |
514 | wxString * _arg1; | |
1d99702e | 515 | PyObject * _argo0 = 0; |
cf694132 | 516 | PyObject * _obj1 = 0; |
efc5f224 | 517 | char *_kwnames[] = { "self","extension", NULL }; |
cf694132 RD |
518 | |
519 | self = self; | |
efc5f224 | 520 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxImageHandler_SetExtension",_kwnames,&_argo0,&_obj1)) |
cf694132 | 521 | return NULL; |
1d99702e RD |
522 | if (_argo0) { |
523 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
524 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { | |
cf694132 RD |
525 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_SetExtension. Expected _wxImageHandler_p."); |
526 | return NULL; | |
527 | } | |
528 | } | |
529 | { | |
185d7c3e RD |
530 | #if PYTHON_API_VERSION >= 1009 |
531 | char* tmpPtr; int tmpSize; | |
532 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 533 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
534 | return NULL; |
535 | } | |
536 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
537 | return NULL; | |
538 | _arg1 = new wxString(tmpPtr, tmpSize); | |
539 | #else | |
cf694132 RD |
540 | if (!PyString_Check(_obj1)) { |
541 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
542 | return NULL; | |
543 | } | |
185d7c3e RD |
544 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
545 | #endif | |
cf694132 RD |
546 | } |
547 | { | |
4268f798 | 548 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
549 | wxImageHandler_SetExtension(_arg0,*_arg1); |
550 | ||
4268f798 | 551 | wxPyEndAllowThreads(__tstate); |
493f1553 | 552 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
553 | } Py_INCREF(Py_None); |
554 | _resultobj = Py_None; | |
555 | { | |
556 | if (_obj1) | |
557 | delete _arg1; | |
558 | } | |
559 | return _resultobj; | |
560 | } | |
561 | ||
562 | #define wxImageHandler_SetType(_swigobj,_swigarg0) (_swigobj->SetType(_swigarg0)) | |
efc5f224 | 563 | static PyObject *_wrap_wxImageHandler_SetType(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
564 | PyObject * _resultobj; |
565 | wxImageHandler * _arg0; | |
566 | long _arg1; | |
1d99702e | 567 | PyObject * _argo0 = 0; |
efc5f224 | 568 | char *_kwnames[] = { "self","type", NULL }; |
cf694132 RD |
569 | |
570 | self = self; | |
efc5f224 | 571 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxImageHandler_SetType",_kwnames,&_argo0,&_arg1)) |
cf694132 | 572 | return NULL; |
1d99702e RD |
573 | if (_argo0) { |
574 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
575 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { | |
cf694132 RD |
576 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_SetType. Expected _wxImageHandler_p."); |
577 | return NULL; | |
578 | } | |
579 | } | |
580 | { | |
4268f798 | 581 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
582 | wxImageHandler_SetType(_arg0,_arg1); |
583 | ||
4268f798 | 584 | wxPyEndAllowThreads(__tstate); |
493f1553 | 585 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
586 | } Py_INCREF(Py_None); |
587 | _resultobj = Py_None; | |
588 | return _resultobj; | |
589 | } | |
590 | ||
591 | #define wxImageHandler_SetMimeType(_swigobj,_swigarg0) (_swigobj->SetMimeType(_swigarg0)) | |
efc5f224 | 592 | static PyObject *_wrap_wxImageHandler_SetMimeType(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
593 | PyObject * _resultobj; |
594 | wxImageHandler * _arg0; | |
595 | wxString * _arg1; | |
1d99702e | 596 | PyObject * _argo0 = 0; |
cf694132 | 597 | PyObject * _obj1 = 0; |
efc5f224 | 598 | char *_kwnames[] = { "self","mimetype", NULL }; |
cf694132 RD |
599 | |
600 | self = self; | |
efc5f224 | 601 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxImageHandler_SetMimeType",_kwnames,&_argo0,&_obj1)) |
cf694132 | 602 | return NULL; |
1d99702e RD |
603 | if (_argo0) { |
604 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
605 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { | |
cf694132 RD |
606 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_SetMimeType. Expected _wxImageHandler_p."); |
607 | return NULL; | |
608 | } | |
609 | } | |
610 | { | |
185d7c3e RD |
611 | #if PYTHON_API_VERSION >= 1009 |
612 | char* tmpPtr; int tmpSize; | |
613 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 614 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
615 | return NULL; |
616 | } | |
617 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
618 | return NULL; | |
619 | _arg1 = new wxString(tmpPtr, tmpSize); | |
620 | #else | |
cf694132 RD |
621 | if (!PyString_Check(_obj1)) { |
622 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
623 | return NULL; | |
624 | } | |
185d7c3e RD |
625 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
626 | #endif | |
cf694132 RD |
627 | } |
628 | { | |
4268f798 | 629 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
630 | wxImageHandler_SetMimeType(_arg0,*_arg1); |
631 | ||
4268f798 | 632 | wxPyEndAllowThreads(__tstate); |
493f1553 | 633 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
634 | } Py_INCREF(Py_None); |
635 | _resultobj = Py_None; | |
636 | { | |
637 | if (_obj1) | |
638 | delete _arg1; | |
639 | } | |
640 | return _resultobj; | |
641 | } | |
642 | ||
643 | static void *SwigwxPNGHandlerTowxImageHandler(void *ptr) { | |
644 | wxPNGHandler *src; | |
645 | wxImageHandler *dest; | |
646 | src = (wxPNGHandler *) ptr; | |
647 | dest = (wxImageHandler *) src; | |
648 | return (void *) dest; | |
649 | } | |
650 | ||
9416aa89 RD |
651 | static void *SwigwxPNGHandlerTowxObject(void *ptr) { |
652 | wxPNGHandler *src; | |
653 | wxObject *dest; | |
654 | src = (wxPNGHandler *) ptr; | |
655 | dest = (wxObject *) src; | |
656 | return (void *) dest; | |
657 | } | |
658 | ||
cf694132 | 659 | #define new_wxPNGHandler() (new wxPNGHandler()) |
efc5f224 | 660 | static PyObject *_wrap_new_wxPNGHandler(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
661 | PyObject * _resultobj; |
662 | wxPNGHandler * _result; | |
efc5f224 | 663 | char *_kwnames[] = { NULL }; |
cf694132 RD |
664 | char _ptemp[128]; |
665 | ||
666 | self = self; | |
efc5f224 | 667 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPNGHandler",_kwnames)) |
cf694132 RD |
668 | return NULL; |
669 | { | |
4268f798 | 670 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
671 | _result = (wxPNGHandler *)new_wxPNGHandler(); |
672 | ||
4268f798 | 673 | wxPyEndAllowThreads(__tstate); |
493f1553 | 674 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
675 | } if (_result) { |
676 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPNGHandler_p"); | |
677 | _resultobj = Py_BuildValue("s",_ptemp); | |
678 | } else { | |
679 | Py_INCREF(Py_None); | |
680 | _resultobj = Py_None; | |
681 | } | |
cf694132 RD |
682 | return _resultobj; |
683 | } | |
684 | ||
685 | static void *SwigwxJPEGHandlerTowxImageHandler(void *ptr) { | |
686 | wxJPEGHandler *src; | |
687 | wxImageHandler *dest; | |
688 | src = (wxJPEGHandler *) ptr; | |
689 | dest = (wxImageHandler *) src; | |
690 | return (void *) dest; | |
691 | } | |
692 | ||
9416aa89 RD |
693 | static void *SwigwxJPEGHandlerTowxObject(void *ptr) { |
694 | wxJPEGHandler *src; | |
695 | wxObject *dest; | |
696 | src = (wxJPEGHandler *) ptr; | |
697 | dest = (wxObject *) src; | |
698 | return (void *) dest; | |
699 | } | |
700 | ||
cf694132 | 701 | #define new_wxJPEGHandler() (new wxJPEGHandler()) |
efc5f224 | 702 | static PyObject *_wrap_new_wxJPEGHandler(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
703 | PyObject * _resultobj; |
704 | wxJPEGHandler * _result; | |
efc5f224 | 705 | char *_kwnames[] = { NULL }; |
cf694132 RD |
706 | char _ptemp[128]; |
707 | ||
708 | self = self; | |
efc5f224 | 709 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxJPEGHandler",_kwnames)) |
cf694132 RD |
710 | return NULL; |
711 | { | |
4268f798 | 712 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
713 | _result = (wxJPEGHandler *)new_wxJPEGHandler(); |
714 | ||
4268f798 | 715 | wxPyEndAllowThreads(__tstate); |
493f1553 | 716 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
717 | } if (_result) { |
718 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxJPEGHandler_p"); | |
719 | _resultobj = Py_BuildValue("s",_ptemp); | |
720 | } else { | |
721 | Py_INCREF(Py_None); | |
722 | _resultobj = Py_None; | |
723 | } | |
cf694132 RD |
724 | return _resultobj; |
725 | } | |
726 | ||
727 | static void *SwigwxBMPHandlerTowxImageHandler(void *ptr) { | |
728 | wxBMPHandler *src; | |
729 | wxImageHandler *dest; | |
730 | src = (wxBMPHandler *) ptr; | |
731 | dest = (wxImageHandler *) src; | |
732 | return (void *) dest; | |
733 | } | |
734 | ||
9416aa89 RD |
735 | static void *SwigwxBMPHandlerTowxObject(void *ptr) { |
736 | wxBMPHandler *src; | |
737 | wxObject *dest; | |
738 | src = (wxBMPHandler *) ptr; | |
739 | dest = (wxObject *) src; | |
740 | return (void *) dest; | |
741 | } | |
742 | ||
cf694132 | 743 | #define new_wxBMPHandler() (new wxBMPHandler()) |
efc5f224 | 744 | static PyObject *_wrap_new_wxBMPHandler(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
745 | PyObject * _resultobj; |
746 | wxBMPHandler * _result; | |
efc5f224 | 747 | char *_kwnames[] = { NULL }; |
cf694132 RD |
748 | char _ptemp[128]; |
749 | ||
750 | self = self; | |
efc5f224 | 751 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxBMPHandler",_kwnames)) |
cf694132 RD |
752 | return NULL; |
753 | { | |
4268f798 | 754 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
755 | _result = (wxBMPHandler *)new_wxBMPHandler(); |
756 | ||
4268f798 | 757 | wxPyEndAllowThreads(__tstate); |
493f1553 | 758 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
759 | } if (_result) { |
760 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxBMPHandler_p"); | |
761 | _resultobj = Py_BuildValue("s",_ptemp); | |
762 | } else { | |
763 | Py_INCREF(Py_None); | |
764 | _resultobj = Py_None; | |
765 | } | |
cf694132 RD |
766 | return _resultobj; |
767 | } | |
768 | ||
769 | static void *SwigwxGIFHandlerTowxImageHandler(void *ptr) { | |
770 | wxGIFHandler *src; | |
771 | wxImageHandler *dest; | |
772 | src = (wxGIFHandler *) ptr; | |
773 | dest = (wxImageHandler *) src; | |
774 | return (void *) dest; | |
775 | } | |
776 | ||
9416aa89 RD |
777 | static void *SwigwxGIFHandlerTowxObject(void *ptr) { |
778 | wxGIFHandler *src; | |
779 | wxObject *dest; | |
780 | src = (wxGIFHandler *) ptr; | |
781 | dest = (wxObject *) src; | |
782 | return (void *) dest; | |
783 | } | |
784 | ||
cf694132 | 785 | #define new_wxGIFHandler() (new wxGIFHandler()) |
efc5f224 | 786 | static PyObject *_wrap_new_wxGIFHandler(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
787 | PyObject * _resultobj; |
788 | wxGIFHandler * _result; | |
efc5f224 | 789 | char *_kwnames[] = { NULL }; |
cf694132 RD |
790 | char _ptemp[128]; |
791 | ||
792 | self = self; | |
efc5f224 | 793 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxGIFHandler",_kwnames)) |
cf694132 RD |
794 | return NULL; |
795 | { | |
4268f798 | 796 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
797 | _result = (wxGIFHandler *)new_wxGIFHandler(); |
798 | ||
4268f798 | 799 | wxPyEndAllowThreads(__tstate); |
493f1553 | 800 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
801 | } if (_result) { |
802 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxGIFHandler_p"); | |
803 | _resultobj = Py_BuildValue("s",_ptemp); | |
804 | } else { | |
805 | Py_INCREF(Py_None); | |
806 | _resultobj = Py_None; | |
807 | } | |
cf694132 RD |
808 | return _resultobj; |
809 | } | |
810 | ||
06c0fba4 RD |
811 | static void *SwigwxPNMHandlerTowxImageHandler(void *ptr) { |
812 | wxPNMHandler *src; | |
813 | wxImageHandler *dest; | |
814 | src = (wxPNMHandler *) ptr; | |
815 | dest = (wxImageHandler *) src; | |
816 | return (void *) dest; | |
817 | } | |
818 | ||
9416aa89 RD |
819 | static void *SwigwxPNMHandlerTowxObject(void *ptr) { |
820 | wxPNMHandler *src; | |
821 | wxObject *dest; | |
822 | src = (wxPNMHandler *) ptr; | |
823 | dest = (wxObject *) src; | |
824 | return (void *) dest; | |
825 | } | |
826 | ||
06c0fba4 RD |
827 | #define new_wxPNMHandler() (new wxPNMHandler()) |
828 | static PyObject *_wrap_new_wxPNMHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
829 | PyObject * _resultobj; | |
830 | wxPNMHandler * _result; | |
831 | char *_kwnames[] = { NULL }; | |
832 | char _ptemp[128]; | |
833 | ||
834 | self = self; | |
835 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPNMHandler",_kwnames)) | |
836 | return NULL; | |
837 | { | |
4268f798 | 838 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
06c0fba4 RD |
839 | _result = (wxPNMHandler *)new_wxPNMHandler(); |
840 | ||
4268f798 | 841 | wxPyEndAllowThreads(__tstate); |
493f1553 | 842 | if (PyErr_Occurred()) return NULL; |
06c0fba4 RD |
843 | } if (_result) { |
844 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPNMHandler_p"); | |
845 | _resultobj = Py_BuildValue("s",_ptemp); | |
846 | } else { | |
847 | Py_INCREF(Py_None); | |
848 | _resultobj = Py_None; | |
849 | } | |
850 | return _resultobj; | |
851 | } | |
852 | ||
853 | static void *SwigwxPCXHandlerTowxImageHandler(void *ptr) { | |
854 | wxPCXHandler *src; | |
855 | wxImageHandler *dest; | |
856 | src = (wxPCXHandler *) ptr; | |
857 | dest = (wxImageHandler *) src; | |
858 | return (void *) dest; | |
859 | } | |
860 | ||
9416aa89 RD |
861 | static void *SwigwxPCXHandlerTowxObject(void *ptr) { |
862 | wxPCXHandler *src; | |
863 | wxObject *dest; | |
864 | src = (wxPCXHandler *) ptr; | |
865 | dest = (wxObject *) src; | |
866 | return (void *) dest; | |
867 | } | |
868 | ||
06c0fba4 RD |
869 | #define new_wxPCXHandler() (new wxPCXHandler()) |
870 | static PyObject *_wrap_new_wxPCXHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
871 | PyObject * _resultobj; | |
872 | wxPCXHandler * _result; | |
873 | char *_kwnames[] = { NULL }; | |
874 | char _ptemp[128]; | |
875 | ||
876 | self = self; | |
877 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPCXHandler",_kwnames)) | |
878 | return NULL; | |
879 | { | |
4268f798 | 880 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
06c0fba4 RD |
881 | _result = (wxPCXHandler *)new_wxPCXHandler(); |
882 | ||
4268f798 | 883 | wxPyEndAllowThreads(__tstate); |
493f1553 | 884 | if (PyErr_Occurred()) return NULL; |
06c0fba4 RD |
885 | } if (_result) { |
886 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPCXHandler_p"); | |
887 | _resultobj = Py_BuildValue("s",_ptemp); | |
888 | } else { | |
889 | Py_INCREF(Py_None); | |
890 | _resultobj = Py_None; | |
891 | } | |
892 | return _resultobj; | |
893 | } | |
894 | ||
9b3d3bc4 RD |
895 | static void *SwigwxTIFFHandlerTowxImageHandler(void *ptr) { |
896 | wxTIFFHandler *src; | |
897 | wxImageHandler *dest; | |
898 | src = (wxTIFFHandler *) ptr; | |
899 | dest = (wxImageHandler *) src; | |
900 | return (void *) dest; | |
901 | } | |
902 | ||
9416aa89 RD |
903 | static void *SwigwxTIFFHandlerTowxObject(void *ptr) { |
904 | wxTIFFHandler *src; | |
905 | wxObject *dest; | |
906 | src = (wxTIFFHandler *) ptr; | |
907 | dest = (wxObject *) src; | |
908 | return (void *) dest; | |
909 | } | |
910 | ||
9b3d3bc4 RD |
911 | #define new_wxTIFFHandler() (new wxTIFFHandler()) |
912 | static PyObject *_wrap_new_wxTIFFHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
913 | PyObject * _resultobj; | |
914 | wxTIFFHandler * _result; | |
915 | char *_kwnames[] = { NULL }; | |
916 | char _ptemp[128]; | |
917 | ||
918 | self = self; | |
919 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxTIFFHandler",_kwnames)) | |
920 | return NULL; | |
921 | { | |
4268f798 | 922 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
9b3d3bc4 RD |
923 | _result = (wxTIFFHandler *)new_wxTIFFHandler(); |
924 | ||
4268f798 | 925 | wxPyEndAllowThreads(__tstate); |
493f1553 | 926 | if (PyErr_Occurred()) return NULL; |
9b3d3bc4 RD |
927 | } if (_result) { |
928 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxTIFFHandler_p"); | |
929 | _resultobj = Py_BuildValue("s",_ptemp); | |
930 | } else { | |
931 | Py_INCREF(Py_None); | |
932 | _resultobj = Py_None; | |
933 | } | |
934 | return _resultobj; | |
935 | } | |
936 | ||
9416aa89 RD |
937 | static void *SwigwxImageTowxObject(void *ptr) { |
938 | wxImage *src; | |
939 | wxObject *dest; | |
940 | src = (wxImage *) ptr; | |
941 | dest = (wxObject *) src; | |
942 | return (void *) dest; | |
943 | } | |
944 | ||
cf694132 | 945 | #define new_wxImage(_swigarg0,_swigarg1) (new wxImage(_swigarg0,_swigarg1)) |
efc5f224 | 946 | static PyObject *_wrap_new_wxImage(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
947 | PyObject * _resultobj; |
948 | wxImage * _result; | |
949 | wxString * _arg0; | |
f6bcfd97 | 950 | long _arg1 = (long ) wxBITMAP_TYPE_ANY; |
cf694132 | 951 | PyObject * _obj0 = 0; |
efc5f224 | 952 | char *_kwnames[] = { "name","type", NULL }; |
cf694132 RD |
953 | char _ptemp[128]; |
954 | ||
955 | self = self; | |
efc5f224 | 956 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|l:new_wxImage",_kwnames,&_obj0,&_arg1)) |
cf694132 RD |
957 | return NULL; |
958 | { | |
185d7c3e RD |
959 | #if PYTHON_API_VERSION >= 1009 |
960 | char* tmpPtr; int tmpSize; | |
961 | if (!PyString_Check(_obj0) && !PyUnicode_Check(_obj0)) { | |
794c5cb1 | 962 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
963 | return NULL; |
964 | } | |
965 | if (PyString_AsStringAndSize(_obj0, &tmpPtr, &tmpSize) == -1) | |
966 | return NULL; | |
967 | _arg0 = new wxString(tmpPtr, tmpSize); | |
968 | #else | |
cf694132 RD |
969 | if (!PyString_Check(_obj0)) { |
970 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
971 | return NULL; | |
972 | } | |
185d7c3e RD |
973 | _arg0 = new wxString(PyString_AS_STRING(_obj0), PyString_GET_SIZE(_obj0)); |
974 | #endif | |
cf694132 RD |
975 | } |
976 | { | |
4268f798 | 977 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
978 | _result = (wxImage *)new_wxImage(*_arg0,_arg1); |
979 | ||
4268f798 | 980 | wxPyEndAllowThreads(__tstate); |
493f1553 | 981 | if (PyErr_Occurred()) return NULL; |
1d99702e RD |
982 | } if (_result) { |
983 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxImage_p"); | |
984 | _resultobj = Py_BuildValue("s",_ptemp); | |
985 | } else { | |
986 | Py_INCREF(Py_None); | |
987 | _resultobj = Py_None; | |
988 | } | |
cf694132 RD |
989 | { |
990 | if (_obj0) | |
991 | delete _arg0; | |
992 | } | |
993 | return _resultobj; | |
994 | } | |
995 | ||
996 | #define delete_wxImage(_swigobj) (delete _swigobj) | |
efc5f224 | 997 | static PyObject *_wrap_delete_wxImage(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
998 | PyObject * _resultobj; |
999 | wxImage * _arg0; | |
1d99702e | 1000 | PyObject * _argo0 = 0; |
efc5f224 | 1001 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
1002 | |
1003 | self = self; | |
efc5f224 | 1004 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxImage",_kwnames,&_argo0)) |
cf694132 | 1005 | return NULL; |
1d99702e RD |
1006 | if (_argo0) { |
1007 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1008 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1009 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxImage. Expected _wxImage_p."); |
1010 | return NULL; | |
1011 | } | |
1012 | } | |
1013 | { | |
4268f798 | 1014 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1015 | delete_wxImage(_arg0); |
1016 | ||
4268f798 | 1017 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1018 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1019 | } Py_INCREF(Py_None); |
1020 | _resultobj = Py_None; | |
1021 | return _resultobj; | |
1022 | } | |
1023 | ||
1024 | #define wxImage_ConvertToBitmap(_swigobj) (_swigobj->ConvertToBitmap()) | |
efc5f224 | 1025 | static PyObject *_wrap_wxImage_ConvertToBitmap(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1026 | PyObject * _resultobj; |
1027 | wxBitmap * _result; | |
1028 | wxImage * _arg0; | |
1d99702e | 1029 | PyObject * _argo0 = 0; |
efc5f224 | 1030 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
1031 | char _ptemp[128]; |
1032 | ||
1033 | self = self; | |
efc5f224 | 1034 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_ConvertToBitmap",_kwnames,&_argo0)) |
cf694132 | 1035 | return NULL; |
1d99702e RD |
1036 | if (_argo0) { |
1037 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1038 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1039 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_ConvertToBitmap. Expected _wxImage_p."); |
1040 | return NULL; | |
1041 | } | |
1042 | } | |
1043 | { | |
4268f798 | 1044 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1045 | _result = new wxBitmap (wxImage_ConvertToBitmap(_arg0)); |
1046 | ||
4268f798 | 1047 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1048 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1049 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxBitmap_p"); |
1050 | _resultobj = Py_BuildValue("s",_ptemp); | |
1051 | return _resultobj; | |
1052 | } | |
1053 | ||
1054 | #define wxImage_Create(_swigobj,_swigarg0,_swigarg1) (_swigobj->Create(_swigarg0,_swigarg1)) | |
efc5f224 | 1055 | static PyObject *_wrap_wxImage_Create(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1056 | PyObject * _resultobj; |
1057 | wxImage * _arg0; | |
1058 | int _arg1; | |
1059 | int _arg2; | |
1d99702e | 1060 | PyObject * _argo0 = 0; |
efc5f224 | 1061 | char *_kwnames[] = { "self","width","height", NULL }; |
cf694132 RD |
1062 | |
1063 | self = self; | |
efc5f224 | 1064 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxImage_Create",_kwnames,&_argo0,&_arg1,&_arg2)) |
cf694132 | 1065 | return NULL; |
1d99702e RD |
1066 | if (_argo0) { |
1067 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1068 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1069 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Create. Expected _wxImage_p."); |
1070 | return NULL; | |
1071 | } | |
1072 | } | |
1073 | { | |
4268f798 | 1074 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1075 | wxImage_Create(_arg0,_arg1,_arg2); |
1076 | ||
4268f798 | 1077 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1078 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1079 | } Py_INCREF(Py_None); |
1080 | _resultobj = Py_None; | |
1081 | return _resultobj; | |
1082 | } | |
1083 | ||
1084 | #define wxImage_Destroy(_swigobj) (_swigobj->Destroy()) | |
efc5f224 | 1085 | static PyObject *_wrap_wxImage_Destroy(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1086 | PyObject * _resultobj; |
1087 | wxImage * _arg0; | |
1d99702e | 1088 | PyObject * _argo0 = 0; |
efc5f224 | 1089 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
1090 | |
1091 | self = self; | |
efc5f224 | 1092 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_Destroy",_kwnames,&_argo0)) |
cf694132 | 1093 | return NULL; |
1d99702e RD |
1094 | if (_argo0) { |
1095 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1096 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1097 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Destroy. Expected _wxImage_p."); |
1098 | return NULL; | |
1099 | } | |
1100 | } | |
1101 | { | |
4268f798 | 1102 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1103 | wxImage_Destroy(_arg0); |
1104 | ||
4268f798 | 1105 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1106 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1107 | } Py_INCREF(Py_None); |
1108 | _resultobj = Py_None; | |
1109 | return _resultobj; | |
1110 | } | |
1111 | ||
1112 | #define wxImage_Scale(_swigobj,_swigarg0,_swigarg1) (_swigobj->Scale(_swigarg0,_swigarg1)) | |
efc5f224 | 1113 | static PyObject *_wrap_wxImage_Scale(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1114 | PyObject * _resultobj; |
1115 | wxImage * _result; | |
1116 | wxImage * _arg0; | |
1117 | int _arg1; | |
1118 | int _arg2; | |
1d99702e | 1119 | PyObject * _argo0 = 0; |
efc5f224 | 1120 | char *_kwnames[] = { "self","width","height", NULL }; |
cf694132 RD |
1121 | char _ptemp[128]; |
1122 | ||
1123 | self = self; | |
efc5f224 | 1124 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxImage_Scale",_kwnames,&_argo0,&_arg1,&_arg2)) |
cf694132 | 1125 | return NULL; |
1d99702e RD |
1126 | if (_argo0) { |
1127 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1128 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1129 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Scale. Expected _wxImage_p."); |
1130 | return NULL; | |
1131 | } | |
1132 | } | |
1133 | { | |
4268f798 | 1134 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1135 | _result = new wxImage (wxImage_Scale(_arg0,_arg1,_arg2)); |
1136 | ||
4268f798 | 1137 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1138 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1139 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxImage_p"); |
1140 | _resultobj = Py_BuildValue("s",_ptemp); | |
1141 | return _resultobj; | |
1142 | } | |
1143 | ||
8bf5d46e | 1144 | #define wxImage_Rescale(_swigobj,_swigarg0,_swigarg1) (_swigobj->Rescale(_swigarg0,_swigarg1)) |
efc5f224 | 1145 | static PyObject *_wrap_wxImage_Rescale(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e | 1146 | PyObject * _resultobj; |
f6bcfd97 | 1147 | wxImage * _result; |
8bf5d46e RD |
1148 | wxImage * _arg0; |
1149 | int _arg1; | |
1150 | int _arg2; | |
1d99702e | 1151 | PyObject * _argo0 = 0; |
efc5f224 | 1152 | char *_kwnames[] = { "self","width","height", NULL }; |
f6bcfd97 | 1153 | char _ptemp[128]; |
8bf5d46e RD |
1154 | |
1155 | self = self; | |
efc5f224 | 1156 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxImage_Rescale",_kwnames,&_argo0,&_arg1,&_arg2)) |
8bf5d46e | 1157 | return NULL; |
1d99702e RD |
1158 | if (_argo0) { |
1159 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1160 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
8bf5d46e RD |
1161 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Rescale. Expected _wxImage_p."); |
1162 | return NULL; | |
1163 | } | |
1164 | } | |
1165 | { | |
4268f798 | 1166 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f6bcfd97 BP |
1167 | wxImage & _result_ref = wxImage_Rescale(_arg0,_arg1,_arg2); |
1168 | _result = (wxImage *) &_result_ref; | |
8bf5d46e | 1169 | |
4268f798 | 1170 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1171 | if (PyErr_Occurred()) return NULL; |
f6bcfd97 BP |
1172 | } if (_result) { |
1173 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxImage_p"); | |
1174 | _resultobj = Py_BuildValue("s",_ptemp); | |
1175 | } else { | |
1176 | Py_INCREF(Py_None); | |
1177 | _resultobj = Py_None; | |
1178 | } | |
8bf5d46e RD |
1179 | return _resultobj; |
1180 | } | |
1181 | ||
cf694132 | 1182 | #define wxImage_SetRGB(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->SetRGB(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4)) |
efc5f224 | 1183 | static PyObject *_wrap_wxImage_SetRGB(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1184 | PyObject * _resultobj; |
1185 | wxImage * _arg0; | |
1186 | int _arg1; | |
1187 | int _arg2; | |
1188 | unsigned char _arg3; | |
1189 | unsigned char _arg4; | |
1190 | unsigned char _arg5; | |
1d99702e | 1191 | PyObject * _argo0 = 0; |
efc5f224 | 1192 | char *_kwnames[] = { "self","x","y","r","g","b", NULL }; |
cf694132 RD |
1193 | |
1194 | self = self; | |
efc5f224 | 1195 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oiibbb:wxImage_SetRGB",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_arg4,&_arg5)) |
cf694132 | 1196 | return NULL; |
1d99702e RD |
1197 | if (_argo0) { |
1198 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1199 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1200 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_SetRGB. Expected _wxImage_p."); |
1201 | return NULL; | |
1202 | } | |
1203 | } | |
1204 | { | |
4268f798 | 1205 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1206 | wxImage_SetRGB(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5); |
1207 | ||
4268f798 | 1208 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1209 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1210 | } Py_INCREF(Py_None); |
1211 | _resultobj = Py_None; | |
1212 | return _resultobj; | |
1213 | } | |
1214 | ||
1215 | #define wxImage_GetRed(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetRed(_swigarg0,_swigarg1)) | |
efc5f224 | 1216 | static PyObject *_wrap_wxImage_GetRed(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1217 | PyObject * _resultobj; |
1218 | unsigned char _result; | |
1219 | wxImage * _arg0; | |
1220 | int _arg1; | |
1221 | int _arg2; | |
1d99702e | 1222 | PyObject * _argo0 = 0; |
efc5f224 | 1223 | char *_kwnames[] = { "self","x","y", NULL }; |
cf694132 RD |
1224 | |
1225 | self = self; | |
efc5f224 | 1226 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxImage_GetRed",_kwnames,&_argo0,&_arg1,&_arg2)) |
cf694132 | 1227 | return NULL; |
1d99702e RD |
1228 | if (_argo0) { |
1229 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1230 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1231 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetRed. Expected _wxImage_p."); |
1232 | return NULL; | |
1233 | } | |
1234 | } | |
1235 | { | |
4268f798 | 1236 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1237 | _result = (unsigned char )wxImage_GetRed(_arg0,_arg1,_arg2); |
1238 | ||
4268f798 | 1239 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1240 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1241 | } _resultobj = Py_BuildValue("b",_result); |
1242 | return _resultobj; | |
1243 | } | |
1244 | ||
1245 | #define wxImage_GetGreen(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetGreen(_swigarg0,_swigarg1)) | |
efc5f224 | 1246 | static PyObject *_wrap_wxImage_GetGreen(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1247 | PyObject * _resultobj; |
1248 | unsigned char _result; | |
1249 | wxImage * _arg0; | |
1250 | int _arg1; | |
1251 | int _arg2; | |
1d99702e | 1252 | PyObject * _argo0 = 0; |
efc5f224 | 1253 | char *_kwnames[] = { "self","x","y", NULL }; |
cf694132 RD |
1254 | |
1255 | self = self; | |
efc5f224 | 1256 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxImage_GetGreen",_kwnames,&_argo0,&_arg1,&_arg2)) |
cf694132 | 1257 | return NULL; |
1d99702e RD |
1258 | if (_argo0) { |
1259 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1260 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1261 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetGreen. Expected _wxImage_p."); |
1262 | return NULL; | |
1263 | } | |
1264 | } | |
1265 | { | |
4268f798 | 1266 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1267 | _result = (unsigned char )wxImage_GetGreen(_arg0,_arg1,_arg2); |
1268 | ||
4268f798 | 1269 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1270 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1271 | } _resultobj = Py_BuildValue("b",_result); |
1272 | return _resultobj; | |
1273 | } | |
1274 | ||
1275 | #define wxImage_GetBlue(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetBlue(_swigarg0,_swigarg1)) | |
efc5f224 | 1276 | static PyObject *_wrap_wxImage_GetBlue(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1277 | PyObject * _resultobj; |
1278 | unsigned char _result; | |
1279 | wxImage * _arg0; | |
1280 | int _arg1; | |
1281 | int _arg2; | |
1d99702e | 1282 | PyObject * _argo0 = 0; |
efc5f224 | 1283 | char *_kwnames[] = { "self","x","y", NULL }; |
cf694132 RD |
1284 | |
1285 | self = self; | |
efc5f224 | 1286 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxImage_GetBlue",_kwnames,&_argo0,&_arg1,&_arg2)) |
cf694132 | 1287 | return NULL; |
1d99702e RD |
1288 | if (_argo0) { |
1289 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1290 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1291 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetBlue. Expected _wxImage_p."); |
1292 | return NULL; | |
1293 | } | |
1294 | } | |
1295 | { | |
4268f798 | 1296 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1297 | _result = (unsigned char )wxImage_GetBlue(_arg0,_arg1,_arg2); |
1298 | ||
4268f798 | 1299 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1300 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1301 | } _resultobj = Py_BuildValue("b",_result); |
1302 | return _resultobj; | |
1303 | } | |
1304 | ||
96bfd053 RD |
1305 | static PyObject *_wrap_wxImage_CanRead(PyObject *self, PyObject *args, PyObject *kwargs) { |
1306 | PyObject * _resultobj; | |
1307 | bool _result; | |
1308 | wxString * _arg0; | |
1309 | PyObject * _obj0 = 0; | |
1310 | char *_kwnames[] = { "name", NULL }; | |
1311 | ||
1312 | self = self; | |
1313 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_CanRead",_kwnames,&_obj0)) | |
1314 | return NULL; | |
1315 | { | |
1316 | #if PYTHON_API_VERSION >= 1009 | |
1317 | char* tmpPtr; int tmpSize; | |
1318 | if (!PyString_Check(_obj0) && !PyUnicode_Check(_obj0)) { | |
794c5cb1 | 1319 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
96bfd053 RD |
1320 | return NULL; |
1321 | } | |
1322 | if (PyString_AsStringAndSize(_obj0, &tmpPtr, &tmpSize) == -1) | |
1323 | return NULL; | |
1324 | _arg0 = new wxString(tmpPtr, tmpSize); | |
1325 | #else | |
1326 | if (!PyString_Check(_obj0)) { | |
1327 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1328 | return NULL; | |
1329 | } | |
1330 | _arg0 = new wxString(PyString_AS_STRING(_obj0), PyString_GET_SIZE(_obj0)); | |
1331 | #endif | |
1332 | } | |
1333 | { | |
4268f798 | 1334 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
96bfd053 RD |
1335 | _result = (bool )wxImage::CanRead(*_arg0); |
1336 | ||
4268f798 | 1337 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1338 | if (PyErr_Occurred()) return NULL; |
96bfd053 RD |
1339 | } _resultobj = Py_BuildValue("i",_result); |
1340 | { | |
1341 | if (_obj0) | |
1342 | delete _arg0; | |
1343 | } | |
1344 | return _resultobj; | |
1345 | } | |
1346 | ||
cf694132 | 1347 | #define wxImage_LoadFile(_swigobj,_swigarg0,_swigarg1) (_swigobj->LoadFile(_swigarg0,_swigarg1)) |
efc5f224 | 1348 | static PyObject *_wrap_wxImage_LoadFile(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1349 | PyObject * _resultobj; |
1350 | bool _result; | |
1351 | wxImage * _arg0; | |
1352 | wxString * _arg1; | |
96bfd053 | 1353 | long _arg2 = (long ) wxBITMAP_TYPE_ANY; |
1d99702e | 1354 | PyObject * _argo0 = 0; |
cf694132 | 1355 | PyObject * _obj1 = 0; |
efc5f224 | 1356 | char *_kwnames[] = { "self","name","type", NULL }; |
cf694132 RD |
1357 | |
1358 | self = self; | |
efc5f224 | 1359 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|l:wxImage_LoadFile",_kwnames,&_argo0,&_obj1,&_arg2)) |
cf694132 | 1360 | return NULL; |
1d99702e RD |
1361 | if (_argo0) { |
1362 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1363 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1364 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_LoadFile. Expected _wxImage_p."); |
1365 | return NULL; | |
1366 | } | |
1367 | } | |
1368 | { | |
185d7c3e RD |
1369 | #if PYTHON_API_VERSION >= 1009 |
1370 | char* tmpPtr; int tmpSize; | |
1371 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 1372 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
1373 | return NULL; |
1374 | } | |
1375 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
1376 | return NULL; | |
1377 | _arg1 = new wxString(tmpPtr, tmpSize); | |
1378 | #else | |
cf694132 RD |
1379 | if (!PyString_Check(_obj1)) { |
1380 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1381 | return NULL; | |
1382 | } | |
185d7c3e RD |
1383 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
1384 | #endif | |
cf694132 RD |
1385 | } |
1386 | { | |
4268f798 | 1387 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1388 | _result = (bool )wxImage_LoadFile(_arg0,*_arg1,_arg2); |
1389 | ||
4268f798 | 1390 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1391 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1392 | } _resultobj = Py_BuildValue("i",_result); |
1393 | { | |
1394 | if (_obj1) | |
1395 | delete _arg1; | |
1396 | } | |
1397 | return _resultobj; | |
1398 | } | |
1399 | ||
1400 | #define wxImage_LoadMimeFile(_swigobj,_swigarg0,_swigarg1) (_swigobj->LoadFile(_swigarg0,_swigarg1)) | |
efc5f224 | 1401 | static PyObject *_wrap_wxImage_LoadMimeFile(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1402 | PyObject * _resultobj; |
1403 | bool _result; | |
1404 | wxImage * _arg0; | |
1405 | wxString * _arg1; | |
1406 | wxString * _arg2; | |
1d99702e | 1407 | PyObject * _argo0 = 0; |
cf694132 RD |
1408 | PyObject * _obj1 = 0; |
1409 | PyObject * _obj2 = 0; | |
efc5f224 | 1410 | char *_kwnames[] = { "self","name","mimetype", NULL }; |
cf694132 RD |
1411 | |
1412 | self = self; | |
efc5f224 | 1413 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxImage_LoadMimeFile",_kwnames,&_argo0,&_obj1,&_obj2)) |
cf694132 | 1414 | return NULL; |
1d99702e RD |
1415 | if (_argo0) { |
1416 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1417 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1418 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_LoadMimeFile. Expected _wxImage_p."); |
1419 | return NULL; | |
1420 | } | |
1421 | } | |
1422 | { | |
185d7c3e RD |
1423 | #if PYTHON_API_VERSION >= 1009 |
1424 | char* tmpPtr; int tmpSize; | |
1425 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 1426 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
1427 | return NULL; |
1428 | } | |
1429 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
1430 | return NULL; | |
1431 | _arg1 = new wxString(tmpPtr, tmpSize); | |
1432 | #else | |
cf694132 RD |
1433 | if (!PyString_Check(_obj1)) { |
1434 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1435 | return NULL; | |
1436 | } | |
185d7c3e RD |
1437 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
1438 | #endif | |
cf694132 RD |
1439 | } |
1440 | { | |
185d7c3e RD |
1441 | #if PYTHON_API_VERSION >= 1009 |
1442 | char* tmpPtr; int tmpSize; | |
1443 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 1444 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
1445 | return NULL; |
1446 | } | |
1447 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
1448 | return NULL; | |
1449 | _arg2 = new wxString(tmpPtr, tmpSize); | |
1450 | #else | |
cf694132 RD |
1451 | if (!PyString_Check(_obj2)) { |
1452 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1453 | return NULL; | |
1454 | } | |
185d7c3e RD |
1455 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
1456 | #endif | |
cf694132 RD |
1457 | } |
1458 | { | |
4268f798 | 1459 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1460 | _result = (bool )wxImage_LoadMimeFile(_arg0,*_arg1,*_arg2); |
1461 | ||
4268f798 | 1462 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1463 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1464 | } _resultobj = Py_BuildValue("i",_result); |
1465 | { | |
1466 | if (_obj1) | |
1467 | delete _arg1; | |
1468 | } | |
1469 | { | |
1470 | if (_obj2) | |
1471 | delete _arg2; | |
1472 | } | |
1473 | return _resultobj; | |
1474 | } | |
1475 | ||
1476 | #define wxImage_SaveFile(_swigobj,_swigarg0,_swigarg1) (_swigobj->SaveFile(_swigarg0,_swigarg1)) | |
efc5f224 | 1477 | static PyObject *_wrap_wxImage_SaveFile(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1478 | PyObject * _resultobj; |
1479 | bool _result; | |
1480 | wxImage * _arg0; | |
1481 | wxString * _arg1; | |
1482 | int _arg2; | |
1d99702e | 1483 | PyObject * _argo0 = 0; |
cf694132 | 1484 | PyObject * _obj1 = 0; |
efc5f224 | 1485 | char *_kwnames[] = { "self","name","type", NULL }; |
cf694132 RD |
1486 | |
1487 | self = self; | |
efc5f224 | 1488 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi:wxImage_SaveFile",_kwnames,&_argo0,&_obj1,&_arg2)) |
cf694132 | 1489 | return NULL; |
1d99702e RD |
1490 | if (_argo0) { |
1491 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1492 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1493 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_SaveFile. Expected _wxImage_p."); |
1494 | return NULL; | |
1495 | } | |
1496 | } | |
1497 | { | |
185d7c3e RD |
1498 | #if PYTHON_API_VERSION >= 1009 |
1499 | char* tmpPtr; int tmpSize; | |
1500 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 1501 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
1502 | return NULL; |
1503 | } | |
1504 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
1505 | return NULL; | |
1506 | _arg1 = new wxString(tmpPtr, tmpSize); | |
1507 | #else | |
cf694132 RD |
1508 | if (!PyString_Check(_obj1)) { |
1509 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1510 | return NULL; | |
1511 | } | |
185d7c3e RD |
1512 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
1513 | #endif | |
cf694132 RD |
1514 | } |
1515 | { | |
4268f798 | 1516 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1517 | _result = (bool )wxImage_SaveFile(_arg0,*_arg1,_arg2); |
1518 | ||
4268f798 | 1519 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1520 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1521 | } _resultobj = Py_BuildValue("i",_result); |
1522 | { | |
1523 | if (_obj1) | |
1524 | delete _arg1; | |
1525 | } | |
1526 | return _resultobj; | |
1527 | } | |
1528 | ||
1529 | #define wxImage_SaveMimeFile(_swigobj,_swigarg0,_swigarg1) (_swigobj->SaveFile(_swigarg0,_swigarg1)) | |
efc5f224 | 1530 | static PyObject *_wrap_wxImage_SaveMimeFile(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1531 | PyObject * _resultobj; |
1532 | bool _result; | |
1533 | wxImage * _arg0; | |
1534 | wxString * _arg1; | |
1535 | wxString * _arg2; | |
1d99702e | 1536 | PyObject * _argo0 = 0; |
cf694132 RD |
1537 | PyObject * _obj1 = 0; |
1538 | PyObject * _obj2 = 0; | |
efc5f224 | 1539 | char *_kwnames[] = { "self","name","mimetype", NULL }; |
cf694132 RD |
1540 | |
1541 | self = self; | |
efc5f224 | 1542 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxImage_SaveMimeFile",_kwnames,&_argo0,&_obj1,&_obj2)) |
cf694132 | 1543 | return NULL; |
1d99702e RD |
1544 | if (_argo0) { |
1545 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1546 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1547 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_SaveMimeFile. Expected _wxImage_p."); |
1548 | return NULL; | |
1549 | } | |
1550 | } | |
1551 | { | |
185d7c3e RD |
1552 | #if PYTHON_API_VERSION >= 1009 |
1553 | char* tmpPtr; int tmpSize; | |
1554 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
794c5cb1 | 1555 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
1556 | return NULL; |
1557 | } | |
1558 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
1559 | return NULL; | |
1560 | _arg1 = new wxString(tmpPtr, tmpSize); | |
1561 | #else | |
cf694132 RD |
1562 | if (!PyString_Check(_obj1)) { |
1563 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1564 | return NULL; | |
1565 | } | |
185d7c3e RD |
1566 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
1567 | #endif | |
cf694132 RD |
1568 | } |
1569 | { | |
185d7c3e RD |
1570 | #if PYTHON_API_VERSION >= 1009 |
1571 | char* tmpPtr; int tmpSize; | |
1572 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
794c5cb1 | 1573 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
185d7c3e RD |
1574 | return NULL; |
1575 | } | |
1576 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
1577 | return NULL; | |
1578 | _arg2 = new wxString(tmpPtr, tmpSize); | |
1579 | #else | |
cf694132 RD |
1580 | if (!PyString_Check(_obj2)) { |
1581 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1582 | return NULL; | |
1583 | } | |
185d7c3e RD |
1584 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
1585 | #endif | |
cf694132 RD |
1586 | } |
1587 | { | |
4268f798 | 1588 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1589 | _result = (bool )wxImage_SaveMimeFile(_arg0,*_arg1,*_arg2); |
1590 | ||
4268f798 | 1591 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1592 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1593 | } _resultobj = Py_BuildValue("i",_result); |
1594 | { | |
1595 | if (_obj1) | |
1596 | delete _arg1; | |
1597 | } | |
1598 | { | |
1599 | if (_obj2) | |
1600 | delete _arg2; | |
1601 | } | |
1602 | return _resultobj; | |
1603 | } | |
1604 | ||
1605 | #define wxImage_Ok(_swigobj) (_swigobj->Ok()) | |
efc5f224 | 1606 | static PyObject *_wrap_wxImage_Ok(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1607 | PyObject * _resultobj; |
1608 | bool _result; | |
1609 | wxImage * _arg0; | |
1d99702e | 1610 | PyObject * _argo0 = 0; |
efc5f224 | 1611 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
1612 | |
1613 | self = self; | |
efc5f224 | 1614 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_Ok",_kwnames,&_argo0)) |
cf694132 | 1615 | return NULL; |
1d99702e RD |
1616 | if (_argo0) { |
1617 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1618 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1619 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Ok. Expected _wxImage_p."); |
1620 | return NULL; | |
1621 | } | |
1622 | } | |
1623 | { | |
4268f798 | 1624 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1625 | _result = (bool )wxImage_Ok(_arg0); |
1626 | ||
4268f798 | 1627 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1628 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1629 | } _resultobj = Py_BuildValue("i",_result); |
1630 | return _resultobj; | |
1631 | } | |
1632 | ||
1633 | #define wxImage_GetWidth(_swigobj) (_swigobj->GetWidth()) | |
efc5f224 | 1634 | static PyObject *_wrap_wxImage_GetWidth(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1635 | PyObject * _resultobj; |
1636 | int _result; | |
1637 | wxImage * _arg0; | |
1d99702e | 1638 | PyObject * _argo0 = 0; |
efc5f224 | 1639 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
1640 | |
1641 | self = self; | |
efc5f224 | 1642 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_GetWidth",_kwnames,&_argo0)) |
cf694132 | 1643 | return NULL; |
1d99702e RD |
1644 | if (_argo0) { |
1645 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1646 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1647 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetWidth. Expected _wxImage_p."); |
1648 | return NULL; | |
1649 | } | |
1650 | } | |
1651 | { | |
4268f798 | 1652 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1653 | _result = (int )wxImage_GetWidth(_arg0); |
1654 | ||
4268f798 | 1655 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1656 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1657 | } _resultobj = Py_BuildValue("i",_result); |
1658 | return _resultobj; | |
1659 | } | |
1660 | ||
1661 | #define wxImage_GetHeight(_swigobj) (_swigobj->GetHeight()) | |
efc5f224 | 1662 | static PyObject *_wrap_wxImage_GetHeight(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1663 | PyObject * _resultobj; |
1664 | int _result; | |
1665 | wxImage * _arg0; | |
1d99702e | 1666 | PyObject * _argo0 = 0; |
efc5f224 | 1667 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
1668 | |
1669 | self = self; | |
efc5f224 | 1670 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_GetHeight",_kwnames,&_argo0)) |
cf694132 | 1671 | return NULL; |
1d99702e RD |
1672 | if (_argo0) { |
1673 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1674 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1675 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetHeight. Expected _wxImage_p."); |
1676 | return NULL; | |
1677 | } | |
1678 | } | |
1679 | { | |
4268f798 | 1680 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1681 | _result = (int )wxImage_GetHeight(_arg0); |
1682 | ||
4268f798 | 1683 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1684 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1685 | } _resultobj = Py_BuildValue("i",_result); |
1686 | return _resultobj; | |
1687 | } | |
1688 | ||
9d8bd15f RD |
1689 | #define wxImage_GetSubImage(_swigobj,_swigarg0) (_swigobj->GetSubImage(_swigarg0)) |
1690 | static PyObject *_wrap_wxImage_GetSubImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1691 | PyObject * _resultobj; | |
1692 | wxImage * _result; | |
1693 | wxImage * _arg0; | |
1694 | wxRect * _arg1; | |
1695 | PyObject * _argo0 = 0; | |
1696 | wxRect temp; | |
1697 | PyObject * _obj1 = 0; | |
1698 | char *_kwnames[] = { "self","rect", NULL }; | |
1699 | char _ptemp[128]; | |
1700 | ||
1701 | self = self; | |
1702 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxImage_GetSubImage",_kwnames,&_argo0,&_obj1)) | |
1703 | return NULL; | |
1704 | if (_argo0) { | |
1705 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1706 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
1707 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetSubImage. Expected _wxImage_p."); | |
1708 | return NULL; | |
1709 | } | |
1710 | } | |
1711 | { | |
1712 | _arg1 = &temp; | |
1713 | if (! wxRect_helper(_obj1, &_arg1)) | |
1714 | return NULL; | |
1715 | } | |
1716 | { | |
4268f798 | 1717 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
9d8bd15f RD |
1718 | _result = new wxImage (wxImage_GetSubImage(_arg0,*_arg1)); |
1719 | ||
4268f798 | 1720 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1721 | if (PyErr_Occurred()) return NULL; |
9d8bd15f RD |
1722 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxImage_p"); |
1723 | _resultobj = Py_BuildValue("s",_ptemp); | |
1724 | return _resultobj; | |
1725 | } | |
1726 | ||
f6bcfd97 BP |
1727 | #define wxImage_Copy(_swigobj) (_swigobj->Copy()) |
1728 | static PyObject *_wrap_wxImage_Copy(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1729 | PyObject * _resultobj; | |
1730 | wxImage * _result; | |
1731 | wxImage * _arg0; | |
1732 | PyObject * _argo0 = 0; | |
1733 | char *_kwnames[] = { "self", NULL }; | |
1734 | char _ptemp[128]; | |
1735 | ||
1736 | self = self; | |
1737 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_Copy",_kwnames,&_argo0)) | |
1738 | return NULL; | |
1739 | if (_argo0) { | |
1740 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1741 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
1742 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Copy. Expected _wxImage_p."); | |
1743 | return NULL; | |
1744 | } | |
1745 | } | |
1746 | { | |
4268f798 | 1747 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f6bcfd97 BP |
1748 | _result = new wxImage (wxImage_Copy(_arg0)); |
1749 | ||
4268f798 | 1750 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1751 | if (PyErr_Occurred()) return NULL; |
f6bcfd97 BP |
1752 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxImage_p"); |
1753 | _resultobj = Py_BuildValue("s",_ptemp); | |
1754 | return _resultobj; | |
1755 | } | |
1756 | ||
1757 | #define wxImage_Paste(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->Paste(_swigarg0,_swigarg1,_swigarg2)) | |
1758 | static PyObject *_wrap_wxImage_Paste(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1759 | PyObject * _resultobj; | |
1760 | wxImage * _arg0; | |
1761 | wxImage * _arg1; | |
1762 | int _arg2; | |
1763 | int _arg3; | |
1764 | PyObject * _argo0 = 0; | |
1765 | PyObject * _argo1 = 0; | |
1766 | char *_kwnames[] = { "self","image","x","y", NULL }; | |
1767 | ||
1768 | self = self; | |
1769 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOii:wxImage_Paste",_kwnames,&_argo0,&_argo1,&_arg2,&_arg3)) | |
1770 | return NULL; | |
1771 | if (_argo0) { | |
1772 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1773 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
1774 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Paste. Expected _wxImage_p."); | |
1775 | return NULL; | |
1776 | } | |
1777 | } | |
1778 | if (_argo1) { | |
1779 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
1780 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxImage_p")) { | |
1781 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxImage_Paste. Expected _wxImage_p."); | |
1782 | return NULL; | |
1783 | } | |
1784 | } | |
1785 | { | |
4268f798 | 1786 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f6bcfd97 BP |
1787 | wxImage_Paste(_arg0,*_arg1,_arg2,_arg3); |
1788 | ||
4268f798 | 1789 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1790 | if (PyErr_Occurred()) return NULL; |
f6bcfd97 BP |
1791 | } Py_INCREF(Py_None); |
1792 | _resultobj = Py_None; | |
1793 | return _resultobj; | |
1794 | } | |
1795 | ||
1dc2f865 RD |
1796 | static PyObject * wxImage_GetData(wxImage *self) { |
1797 | unsigned char* data = self->GetData(); | |
1798 | int len = self->GetWidth() * self->GetHeight() * 3; | |
1799 | return PyString_FromStringAndSize((char*)data, len); | |
1800 | } | |
efc5f224 | 1801 | static PyObject *_wrap_wxImage_GetData(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 | 1802 | PyObject * _resultobj; |
1dc2f865 | 1803 | PyObject * _result; |
cf694132 | 1804 | wxImage * _arg0; |
1d99702e | 1805 | PyObject * _argo0 = 0; |
efc5f224 | 1806 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
1807 | |
1808 | self = self; | |
efc5f224 | 1809 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_GetData",_kwnames,&_argo0)) |
cf694132 | 1810 | return NULL; |
1d99702e RD |
1811 | if (_argo0) { |
1812 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1813 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1814 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetData. Expected _wxImage_p."); |
1815 | return NULL; | |
1816 | } | |
1817 | } | |
1818 | { | |
4268f798 | 1819 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
1dc2f865 | 1820 | _result = (PyObject *)wxImage_GetData(_arg0); |
cf694132 | 1821 | |
4268f798 | 1822 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1823 | if (PyErr_Occurred()) return NULL; |
1dc2f865 RD |
1824 | }{ |
1825 | _resultobj = _result; | |
1826 | } | |
cf694132 RD |
1827 | return _resultobj; |
1828 | } | |
1829 | ||
1dc2f865 RD |
1830 | static void wxImage_SetData(wxImage *self,PyObject * data) { |
1831 | unsigned char* dataPtr; | |
1832 | ||
1833 | if (! PyString_Check(data)) { | |
1834 | PyErr_SetString(PyExc_TypeError, "Expected string object"); | |
1835 | return /* NULL */ ; | |
1836 | } | |
9d8bd15f RD |
1837 | |
1838 | size_t len = self->GetWidth() * self->GetHeight() * 3; | |
185d7c3e | 1839 | dataPtr = (unsigned char*) malloc(len); |
9d8bd15f | 1840 | memcpy(dataPtr, PyString_AsString(data), len); |
1dc2f865 RD |
1841 | self->SetData(dataPtr); |
1842 | } | |
efc5f224 | 1843 | static PyObject *_wrap_wxImage_SetData(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1844 | PyObject * _resultobj; |
1845 | wxImage * _arg0; | |
1dc2f865 | 1846 | PyObject * _arg1; |
1d99702e | 1847 | PyObject * _argo0 = 0; |
1dc2f865 | 1848 | PyObject * _obj1 = 0; |
efc5f224 | 1849 | char *_kwnames[] = { "self","data", NULL }; |
cf694132 RD |
1850 | |
1851 | self = self; | |
efc5f224 | 1852 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxImage_SetData",_kwnames,&_argo0,&_obj1)) |
cf694132 | 1853 | return NULL; |
1d99702e RD |
1854 | if (_argo0) { |
1855 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1856 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1857 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_SetData. Expected _wxImage_p."); |
1858 | return NULL; | |
1859 | } | |
1860 | } | |
1dc2f865 RD |
1861 | { |
1862 | _arg1 = _obj1; | |
1863 | } | |
cf694132 | 1864 | { |
4268f798 | 1865 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1866 | wxImage_SetData(_arg0,_arg1); |
1867 | ||
4268f798 | 1868 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1869 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1870 | } Py_INCREF(Py_None); |
1871 | _resultobj = Py_None; | |
1872 | return _resultobj; | |
1873 | } | |
1874 | ||
1875 | #define wxImage_SetMaskColour(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->SetMaskColour(_swigarg0,_swigarg1,_swigarg2)) | |
efc5f224 | 1876 | static PyObject *_wrap_wxImage_SetMaskColour(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1877 | PyObject * _resultobj; |
1878 | wxImage * _arg0; | |
1879 | unsigned char _arg1; | |
1880 | unsigned char _arg2; | |
1881 | unsigned char _arg3; | |
1d99702e | 1882 | PyObject * _argo0 = 0; |
efc5f224 | 1883 | char *_kwnames[] = { "self","r","g","b", NULL }; |
cf694132 RD |
1884 | |
1885 | self = self; | |
efc5f224 | 1886 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Obbb:wxImage_SetMaskColour",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3)) |
cf694132 | 1887 | return NULL; |
1d99702e RD |
1888 | if (_argo0) { |
1889 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1890 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1891 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_SetMaskColour. Expected _wxImage_p."); |
1892 | return NULL; | |
1893 | } | |
1894 | } | |
1895 | { | |
4268f798 | 1896 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1897 | wxImage_SetMaskColour(_arg0,_arg1,_arg2,_arg3); |
1898 | ||
4268f798 | 1899 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1900 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1901 | } Py_INCREF(Py_None); |
1902 | _resultobj = Py_None; | |
1903 | return _resultobj; | |
1904 | } | |
1905 | ||
1906 | #define wxImage_GetMaskRed(_swigobj) (_swigobj->GetMaskRed()) | |
efc5f224 | 1907 | static PyObject *_wrap_wxImage_GetMaskRed(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1908 | PyObject * _resultobj; |
1909 | unsigned char _result; | |
1910 | wxImage * _arg0; | |
1d99702e | 1911 | PyObject * _argo0 = 0; |
efc5f224 | 1912 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
1913 | |
1914 | self = self; | |
efc5f224 | 1915 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_GetMaskRed",_kwnames,&_argo0)) |
cf694132 | 1916 | return NULL; |
1d99702e RD |
1917 | if (_argo0) { |
1918 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1919 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1920 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetMaskRed. Expected _wxImage_p."); |
1921 | return NULL; | |
1922 | } | |
1923 | } | |
1924 | { | |
4268f798 | 1925 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1926 | _result = (unsigned char )wxImage_GetMaskRed(_arg0); |
1927 | ||
4268f798 | 1928 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1929 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1930 | } _resultobj = Py_BuildValue("b",_result); |
1931 | return _resultobj; | |
1932 | } | |
1933 | ||
1934 | #define wxImage_GetMaskGreen(_swigobj) (_swigobj->GetMaskGreen()) | |
efc5f224 | 1935 | static PyObject *_wrap_wxImage_GetMaskGreen(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1936 | PyObject * _resultobj; |
1937 | unsigned char _result; | |
1938 | wxImage * _arg0; | |
1d99702e | 1939 | PyObject * _argo0 = 0; |
efc5f224 | 1940 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
1941 | |
1942 | self = self; | |
efc5f224 | 1943 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_GetMaskGreen",_kwnames,&_argo0)) |
cf694132 | 1944 | return NULL; |
1d99702e RD |
1945 | if (_argo0) { |
1946 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1947 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1948 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetMaskGreen. Expected _wxImage_p."); |
1949 | return NULL; | |
1950 | } | |
1951 | } | |
1952 | { | |
4268f798 | 1953 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1954 | _result = (unsigned char )wxImage_GetMaskGreen(_arg0); |
1955 | ||
4268f798 | 1956 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1957 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1958 | } _resultobj = Py_BuildValue("b",_result); |
1959 | return _resultobj; | |
1960 | } | |
1961 | ||
1962 | #define wxImage_GetMaskBlue(_swigobj) (_swigobj->GetMaskBlue()) | |
efc5f224 | 1963 | static PyObject *_wrap_wxImage_GetMaskBlue(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1964 | PyObject * _resultobj; |
1965 | unsigned char _result; | |
1966 | wxImage * _arg0; | |
1d99702e | 1967 | PyObject * _argo0 = 0; |
efc5f224 | 1968 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
1969 | |
1970 | self = self; | |
efc5f224 | 1971 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_GetMaskBlue",_kwnames,&_argo0)) |
cf694132 | 1972 | return NULL; |
1d99702e RD |
1973 | if (_argo0) { |
1974 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1975 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
1976 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetMaskBlue. Expected _wxImage_p."); |
1977 | return NULL; | |
1978 | } | |
1979 | } | |
1980 | { | |
4268f798 | 1981 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
1982 | _result = (unsigned char )wxImage_GetMaskBlue(_arg0); |
1983 | ||
4268f798 | 1984 | wxPyEndAllowThreads(__tstate); |
493f1553 | 1985 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
1986 | } _resultobj = Py_BuildValue("b",_result); |
1987 | return _resultobj; | |
1988 | } | |
1989 | ||
1990 | #define wxImage_SetMask(_swigobj,_swigarg0) (_swigobj->SetMask(_swigarg0)) | |
efc5f224 | 1991 | static PyObject *_wrap_wxImage_SetMask(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
1992 | PyObject * _resultobj; |
1993 | wxImage * _arg0; | |
1d99702e RD |
1994 | bool _arg1 = (bool ) TRUE; |
1995 | PyObject * _argo0 = 0; | |
1996 | int tempbool1 = (int) TRUE; | |
efc5f224 | 1997 | char *_kwnames[] = { "self","mask", NULL }; |
cf694132 RD |
1998 | |
1999 | self = self; | |
efc5f224 | 2000 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxImage_SetMask",_kwnames,&_argo0,&tempbool1)) |
cf694132 | 2001 | return NULL; |
1d99702e RD |
2002 | if (_argo0) { |
2003 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2004 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
2005 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_SetMask. Expected _wxImage_p."); |
2006 | return NULL; | |
2007 | } | |
2008 | } | |
2009 | _arg1 = (bool ) tempbool1; | |
2010 | { | |
4268f798 | 2011 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2012 | wxImage_SetMask(_arg0,_arg1); |
2013 | ||
4268f798 | 2014 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2015 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
2016 | } Py_INCREF(Py_None); |
2017 | _resultobj = Py_None; | |
2018 | return _resultobj; | |
2019 | } | |
2020 | ||
2021 | #define wxImage_HasMask(_swigobj) (_swigobj->HasMask()) | |
efc5f224 | 2022 | static PyObject *_wrap_wxImage_HasMask(PyObject *self, PyObject *args, PyObject *kwargs) { |
cf694132 RD |
2023 | PyObject * _resultobj; |
2024 | bool _result; | |
2025 | wxImage * _arg0; | |
1d99702e | 2026 | PyObject * _argo0 = 0; |
efc5f224 | 2027 | char *_kwnames[] = { "self", NULL }; |
cf694132 RD |
2028 | |
2029 | self = self; | |
efc5f224 | 2030 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_HasMask",_kwnames,&_argo0)) |
cf694132 | 2031 | return NULL; |
1d99702e RD |
2032 | if (_argo0) { |
2033 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2034 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
cf694132 RD |
2035 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_HasMask. Expected _wxImage_p."); |
2036 | return NULL; | |
2037 | } | |
2038 | } | |
2039 | { | |
4268f798 | 2040 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
cf694132 RD |
2041 | _result = (bool )wxImage_HasMask(_arg0); |
2042 | ||
4268f798 | 2043 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2044 | if (PyErr_Occurred()) return NULL; |
cf694132 RD |
2045 | } _resultobj = Py_BuildValue("i",_result); |
2046 | return _resultobj; | |
2047 | } | |
2048 | ||
f6bcfd97 BP |
2049 | #define wxImage_Rotate(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->Rotate(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) |
2050 | static PyObject *_wrap_wxImage_Rotate(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2051 | PyObject * _resultobj; | |
2052 | wxImage * _result; | |
2053 | wxImage * _arg0; | |
2054 | double _arg1; | |
2055 | wxPoint * _arg2; | |
2056 | bool _arg3 = (bool ) TRUE; | |
2057 | wxPoint * _arg4 = (wxPoint *) NULL; | |
2058 | PyObject * _argo0 = 0; | |
2059 | wxPoint temp; | |
2060 | PyObject * _obj2 = 0; | |
2061 | int tempbool3 = (int) TRUE; | |
2062 | wxPoint temp0; | |
2063 | PyObject * _obj4 = 0; | |
2064 | char *_kwnames[] = { "self","angle","centre_of_rotation","interpolating","offset_after_rotation", NULL }; | |
2065 | char _ptemp[128]; | |
2066 | ||
2067 | self = self; | |
2068 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OdO|iO:wxImage_Rotate",_kwnames,&_argo0,&_arg1,&_obj2,&tempbool3,&_obj4)) | |
2069 | return NULL; | |
2070 | if (_argo0) { | |
2071 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2072 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
2073 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Rotate. Expected _wxImage_p."); | |
2074 | return NULL; | |
2075 | } | |
2076 | } | |
2077 | { | |
2078 | _arg2 = &temp; | |
2079 | if (! wxPoint_helper(_obj2, &_arg2)) | |
2080 | return NULL; | |
2081 | } | |
2082 | _arg3 = (bool ) tempbool3; | |
2083 | if (_obj4) | |
2084 | { | |
2085 | _arg4 = &temp0; | |
2086 | if (! wxPoint_helper(_obj4, &_arg4)) | |
2087 | return NULL; | |
2088 | } | |
2089 | { | |
4268f798 | 2090 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f6bcfd97 BP |
2091 | _result = new wxImage (wxImage_Rotate(_arg0,_arg1,*_arg2,_arg3,_arg4)); |
2092 | ||
4268f798 | 2093 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2094 | if (PyErr_Occurred()) return NULL; |
f6bcfd97 BP |
2095 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxImage_p"); |
2096 | _resultobj = Py_BuildValue("s",_ptemp); | |
2097 | return _resultobj; | |
2098 | } | |
2099 | ||
2100 | #define wxImage_Rotate90(_swigobj,_swigarg0) (_swigobj->Rotate90(_swigarg0)) | |
2101 | static PyObject *_wrap_wxImage_Rotate90(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2102 | PyObject * _resultobj; | |
2103 | wxImage * _result; | |
2104 | wxImage * _arg0; | |
2105 | bool _arg1 = (bool ) TRUE; | |
2106 | PyObject * _argo0 = 0; | |
2107 | int tempbool1 = (int) TRUE; | |
2108 | char *_kwnames[] = { "self","clockwise", NULL }; | |
2109 | char _ptemp[128]; | |
2110 | ||
2111 | self = self; | |
2112 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxImage_Rotate90",_kwnames,&_argo0,&tempbool1)) | |
2113 | return NULL; | |
2114 | if (_argo0) { | |
2115 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2116 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
2117 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Rotate90. Expected _wxImage_p."); | |
2118 | return NULL; | |
2119 | } | |
2120 | } | |
2121 | _arg1 = (bool ) tempbool1; | |
2122 | { | |
4268f798 | 2123 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f6bcfd97 BP |
2124 | _result = new wxImage (wxImage_Rotate90(_arg0,_arg1)); |
2125 | ||
4268f798 | 2126 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2127 | if (PyErr_Occurred()) return NULL; |
f6bcfd97 BP |
2128 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxImage_p"); |
2129 | _resultobj = Py_BuildValue("s",_ptemp); | |
2130 | return _resultobj; | |
2131 | } | |
2132 | ||
2133 | #define wxImage_Mirror(_swigobj,_swigarg0) (_swigobj->Mirror(_swigarg0)) | |
2134 | static PyObject *_wrap_wxImage_Mirror(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2135 | PyObject * _resultobj; | |
2136 | wxImage * _result; | |
2137 | wxImage * _arg0; | |
2138 | bool _arg1 = (bool ) TRUE; | |
2139 | PyObject * _argo0 = 0; | |
2140 | int tempbool1 = (int) TRUE; | |
2141 | char *_kwnames[] = { "self","horizontally", NULL }; | |
2142 | char _ptemp[128]; | |
2143 | ||
2144 | self = self; | |
2145 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxImage_Mirror",_kwnames,&_argo0,&tempbool1)) | |
2146 | return NULL; | |
2147 | if (_argo0) { | |
2148 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2149 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
2150 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Mirror. Expected _wxImage_p."); | |
2151 | return NULL; | |
2152 | } | |
2153 | } | |
2154 | _arg1 = (bool ) tempbool1; | |
2155 | { | |
4268f798 | 2156 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f6bcfd97 BP |
2157 | _result = new wxImage (wxImage_Mirror(_arg0,_arg1)); |
2158 | ||
4268f798 | 2159 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2160 | if (PyErr_Occurred()) return NULL; |
f6bcfd97 BP |
2161 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxImage_p"); |
2162 | _resultobj = Py_BuildValue("s",_ptemp); | |
2163 | return _resultobj; | |
2164 | } | |
2165 | ||
2166 | #define wxImage_Replace(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (_swigobj->Replace(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) | |
2167 | static PyObject *_wrap_wxImage_Replace(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2168 | PyObject * _resultobj; | |
2169 | wxImage * _arg0; | |
2170 | unsigned char _arg1; | |
2171 | unsigned char _arg2; | |
2172 | unsigned char _arg3; | |
2173 | unsigned char _arg4; | |
2174 | unsigned char _arg5; | |
2175 | unsigned char _arg6; | |
2176 | PyObject * _argo0 = 0; | |
2177 | char *_kwnames[] = { "self","r1","g1","b1","r2","g2","b2", NULL }; | |
2178 | ||
2179 | self = self; | |
2180 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Obbbbbb:wxImage_Replace",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_arg4,&_arg5,&_arg6)) | |
2181 | return NULL; | |
2182 | if (_argo0) { | |
2183 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2184 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
2185 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Replace. Expected _wxImage_p."); | |
2186 | return NULL; | |
2187 | } | |
2188 | } | |
2189 | { | |
4268f798 | 2190 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f6bcfd97 BP |
2191 | wxImage_Replace(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5,_arg6); |
2192 | ||
4268f798 | 2193 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2194 | if (PyErr_Occurred()) return NULL; |
f6bcfd97 BP |
2195 | } Py_INCREF(Py_None); |
2196 | _resultobj = Py_None; | |
2197 | return _resultobj; | |
2198 | } | |
2199 | ||
6c0168c9 RD |
2200 | #define wxImage_ConvertToMono(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->ConvertToMono(_swigarg0,_swigarg1,_swigarg2)) |
2201 | static PyObject *_wrap_wxImage_ConvertToMono(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2202 | PyObject * _resultobj; | |
2203 | wxImage * _result; | |
2204 | wxImage * _arg0; | |
2205 | unsigned char _arg1; | |
2206 | unsigned char _arg2; | |
2207 | unsigned char _arg3; | |
2208 | PyObject * _argo0 = 0; | |
2209 | char *_kwnames[] = { "self","r","g","b", NULL }; | |
2210 | char _ptemp[128]; | |
2211 | ||
2212 | self = self; | |
2213 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Obbb:wxImage_ConvertToMono",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3)) | |
2214 | return NULL; | |
2215 | if (_argo0) { | |
2216 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2217 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
2218 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_ConvertToMono. Expected _wxImage_p."); | |
2219 | return NULL; | |
2220 | } | |
2221 | } | |
2222 | { | |
4268f798 | 2223 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
6c0168c9 RD |
2224 | _result = new wxImage (wxImage_ConvertToMono(_arg0,_arg1,_arg2,_arg3)); |
2225 | ||
4268f798 | 2226 | wxPyEndAllowThreads(__tstate); |
6c0168c9 RD |
2227 | if (PyErr_Occurred()) return NULL; |
2228 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxImage_p"); | |
2229 | _resultobj = Py_BuildValue("s",_ptemp); | |
2230 | return _resultobj; | |
2231 | } | |
2232 | ||
2233 | #define wxImage_SetOption(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetOption(_swigarg0,_swigarg1)) | |
2234 | static PyObject *_wrap_wxImage_SetOption(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2235 | PyObject * _resultobj; | |
2236 | wxImage * _arg0; | |
2237 | wxString * _arg1; | |
2238 | wxString * _arg2; | |
2239 | PyObject * _argo0 = 0; | |
2240 | PyObject * _obj1 = 0; | |
2241 | PyObject * _obj2 = 0; | |
2242 | char *_kwnames[] = { "self","name","value", NULL }; | |
2243 | ||
2244 | self = self; | |
2245 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxImage_SetOption",_kwnames,&_argo0,&_obj1,&_obj2)) | |
2246 | return NULL; | |
2247 | if (_argo0) { | |
2248 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2249 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
2250 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_SetOption. Expected _wxImage_p."); | |
2251 | return NULL; | |
2252 | } | |
2253 | } | |
2254 | { | |
2255 | #if PYTHON_API_VERSION >= 1009 | |
2256 | char* tmpPtr; int tmpSize; | |
2257 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
2258 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2259 | return NULL; | |
2260 | } | |
2261 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
2262 | return NULL; | |
2263 | _arg1 = new wxString(tmpPtr, tmpSize); | |
2264 | #else | |
2265 | if (!PyString_Check(_obj1)) { | |
2266 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2267 | return NULL; | |
2268 | } | |
2269 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); | |
2270 | #endif | |
2271 | } | |
2272 | { | |
2273 | #if PYTHON_API_VERSION >= 1009 | |
2274 | char* tmpPtr; int tmpSize; | |
2275 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
2276 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2277 | return NULL; | |
2278 | } | |
2279 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
2280 | return NULL; | |
2281 | _arg2 = new wxString(tmpPtr, tmpSize); | |
2282 | #else | |
2283 | if (!PyString_Check(_obj2)) { | |
2284 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2285 | return NULL; | |
2286 | } | |
2287 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); | |
2288 | #endif | |
2289 | } | |
2290 | { | |
4268f798 | 2291 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
6c0168c9 RD |
2292 | wxImage_SetOption(_arg0,*_arg1,*_arg2); |
2293 | ||
4268f798 | 2294 | wxPyEndAllowThreads(__tstate); |
6c0168c9 RD |
2295 | if (PyErr_Occurred()) return NULL; |
2296 | } Py_INCREF(Py_None); | |
2297 | _resultobj = Py_None; | |
2298 | { | |
2299 | if (_obj1) | |
2300 | delete _arg1; | |
2301 | } | |
2302 | { | |
2303 | if (_obj2) | |
2304 | delete _arg2; | |
2305 | } | |
2306 | return _resultobj; | |
2307 | } | |
2308 | ||
2309 | #define wxImage_SetOptionInt(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetOption(_swigarg0,_swigarg1)) | |
2310 | static PyObject *_wrap_wxImage_SetOptionInt(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2311 | PyObject * _resultobj; | |
2312 | wxImage * _arg0; | |
2313 | wxString * _arg1; | |
2314 | int _arg2; | |
2315 | PyObject * _argo0 = 0; | |
2316 | PyObject * _obj1 = 0; | |
2317 | char *_kwnames[] = { "self","name","value", NULL }; | |
2318 | ||
2319 | self = self; | |
2320 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi:wxImage_SetOptionInt",_kwnames,&_argo0,&_obj1,&_arg2)) | |
2321 | return NULL; | |
2322 | if (_argo0) { | |
2323 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2324 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
2325 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_SetOptionInt. Expected _wxImage_p."); | |
2326 | return NULL; | |
2327 | } | |
2328 | } | |
2329 | { | |
2330 | #if PYTHON_API_VERSION >= 1009 | |
2331 | char* tmpPtr; int tmpSize; | |
2332 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
2333 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2334 | return NULL; | |
2335 | } | |
2336 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
2337 | return NULL; | |
2338 | _arg1 = new wxString(tmpPtr, tmpSize); | |
2339 | #else | |
2340 | if (!PyString_Check(_obj1)) { | |
2341 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2342 | return NULL; | |
2343 | } | |
2344 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); | |
2345 | #endif | |
2346 | } | |
2347 | { | |
4268f798 | 2348 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
6c0168c9 RD |
2349 | wxImage_SetOptionInt(_arg0,*_arg1,_arg2); |
2350 | ||
4268f798 | 2351 | wxPyEndAllowThreads(__tstate); |
6c0168c9 RD |
2352 | if (PyErr_Occurred()) return NULL; |
2353 | } Py_INCREF(Py_None); | |
2354 | _resultobj = Py_None; | |
2355 | { | |
2356 | if (_obj1) | |
2357 | delete _arg1; | |
2358 | } | |
2359 | return _resultobj; | |
2360 | } | |
2361 | ||
2362 | #define wxImage_GetOption(_swigobj,_swigarg0) (_swigobj->GetOption(_swigarg0)) | |
2363 | static PyObject *_wrap_wxImage_GetOption(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2364 | PyObject * _resultobj; | |
2365 | wxString * _result; | |
2366 | wxImage * _arg0; | |
2367 | wxString * _arg1; | |
2368 | PyObject * _argo0 = 0; | |
2369 | PyObject * _obj1 = 0; | |
2370 | char *_kwnames[] = { "self","name", NULL }; | |
2371 | ||
2372 | self = self; | |
2373 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxImage_GetOption",_kwnames,&_argo0,&_obj1)) | |
2374 | return NULL; | |
2375 | if (_argo0) { | |
2376 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2377 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
2378 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetOption. Expected _wxImage_p."); | |
2379 | return NULL; | |
2380 | } | |
2381 | } | |
2382 | { | |
2383 | #if PYTHON_API_VERSION >= 1009 | |
2384 | char* tmpPtr; int tmpSize; | |
2385 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
2386 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2387 | return NULL; | |
2388 | } | |
2389 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
2390 | return NULL; | |
2391 | _arg1 = new wxString(tmpPtr, tmpSize); | |
2392 | #else | |
2393 | if (!PyString_Check(_obj1)) { | |
2394 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2395 | return NULL; | |
2396 | } | |
2397 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); | |
2398 | #endif | |
2399 | } | |
2400 | { | |
4268f798 | 2401 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
6c0168c9 RD |
2402 | _result = new wxString (wxImage_GetOption(_arg0,*_arg1)); |
2403 | ||
4268f798 | 2404 | wxPyEndAllowThreads(__tstate); |
6c0168c9 RD |
2405 | if (PyErr_Occurred()) return NULL; |
2406 | }{ | |
2407 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); | |
2408 | } | |
2409 | { | |
2410 | if (_obj1) | |
2411 | delete _arg1; | |
2412 | } | |
2413 | { | |
2414 | delete _result; | |
2415 | } | |
2416 | return _resultobj; | |
2417 | } | |
2418 | ||
2419 | #define wxImage_GetOptionInt(_swigobj,_swigarg0) (_swigobj->GetOptionInt(_swigarg0)) | |
2420 | static PyObject *_wrap_wxImage_GetOptionInt(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2421 | PyObject * _resultobj; | |
2422 | int _result; | |
2423 | wxImage * _arg0; | |
2424 | wxString * _arg1; | |
2425 | PyObject * _argo0 = 0; | |
2426 | PyObject * _obj1 = 0; | |
2427 | char *_kwnames[] = { "self","name", NULL }; | |
2428 | ||
2429 | self = self; | |
2430 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxImage_GetOptionInt",_kwnames,&_argo0,&_obj1)) | |
2431 | return NULL; | |
2432 | if (_argo0) { | |
2433 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2434 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
2435 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetOptionInt. Expected _wxImage_p."); | |
2436 | return NULL; | |
2437 | } | |
2438 | } | |
2439 | { | |
2440 | #if PYTHON_API_VERSION >= 1009 | |
2441 | char* tmpPtr; int tmpSize; | |
2442 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
2443 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2444 | return NULL; | |
2445 | } | |
2446 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
2447 | return NULL; | |
2448 | _arg1 = new wxString(tmpPtr, tmpSize); | |
2449 | #else | |
2450 | if (!PyString_Check(_obj1)) { | |
2451 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2452 | return NULL; | |
2453 | } | |
2454 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); | |
2455 | #endif | |
2456 | } | |
2457 | { | |
4268f798 | 2458 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
6c0168c9 RD |
2459 | _result = (int )wxImage_GetOptionInt(_arg0,*_arg1); |
2460 | ||
4268f798 | 2461 | wxPyEndAllowThreads(__tstate); |
6c0168c9 RD |
2462 | if (PyErr_Occurred()) return NULL; |
2463 | } _resultobj = Py_BuildValue("i",_result); | |
2464 | { | |
2465 | if (_obj1) | |
2466 | delete _arg1; | |
2467 | } | |
2468 | return _resultobj; | |
2469 | } | |
2470 | ||
2471 | #define wxImage_HasOption(_swigobj,_swigarg0) (_swigobj->HasOption(_swigarg0)) | |
2472 | static PyObject *_wrap_wxImage_HasOption(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2473 | PyObject * _resultobj; | |
2474 | bool _result; | |
2475 | wxImage * _arg0; | |
2476 | wxString * _arg1; | |
2477 | PyObject * _argo0 = 0; | |
2478 | PyObject * _obj1 = 0; | |
2479 | char *_kwnames[] = { "self","name", NULL }; | |
2480 | ||
2481 | self = self; | |
2482 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxImage_HasOption",_kwnames,&_argo0,&_obj1)) | |
2483 | return NULL; | |
2484 | if (_argo0) { | |
2485 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2486 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
2487 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_HasOption. Expected _wxImage_p."); | |
2488 | return NULL; | |
2489 | } | |
2490 | } | |
2491 | { | |
2492 | #if PYTHON_API_VERSION >= 1009 | |
2493 | char* tmpPtr; int tmpSize; | |
2494 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
2495 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2496 | return NULL; | |
2497 | } | |
2498 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
2499 | return NULL; | |
2500 | _arg1 = new wxString(tmpPtr, tmpSize); | |
2501 | #else | |
2502 | if (!PyString_Check(_obj1)) { | |
2503 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2504 | return NULL; | |
2505 | } | |
2506 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); | |
2507 | #endif | |
2508 | } | |
2509 | { | |
4268f798 | 2510 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
6c0168c9 RD |
2511 | _result = (bool )wxImage_HasOption(_arg0,*_arg1); |
2512 | ||
4268f798 | 2513 | wxPyEndAllowThreads(__tstate); |
6c0168c9 RD |
2514 | if (PyErr_Occurred()) return NULL; |
2515 | } _resultobj = Py_BuildValue("i",_result); | |
2516 | { | |
2517 | if (_obj1) | |
2518 | delete _arg1; | |
2519 | } | |
2520 | return _resultobj; | |
2521 | } | |
2522 | ||
f6bcfd97 BP |
2523 | #define wxImage_CountColours(_swigobj,_swigarg0) (_swigobj->CountColours(_swigarg0)) |
2524 | static PyObject *_wrap_wxImage_CountColours(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2525 | PyObject * _resultobj; | |
2526 | unsigned long _result; | |
2527 | wxImage * _arg0; | |
2528 | unsigned long _arg1 = (unsigned long ) (unsigned long)-1; | |
2529 | PyObject * _argo0 = 0; | |
2530 | char *_kwnames[] = { "self","stopafter", NULL }; | |
2531 | ||
2532 | self = self; | |
2533 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|l:wxImage_CountColours",_kwnames,&_argo0,&_arg1)) | |
2534 | return NULL; | |
2535 | if (_argo0) { | |
2536 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2537 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { | |
2538 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_CountColours. Expected _wxImage_p."); | |
2539 | return NULL; | |
2540 | } | |
2541 | } | |
2542 | { | |
4268f798 | 2543 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
f6bcfd97 BP |
2544 | _result = (unsigned long )wxImage_CountColours(_arg0,_arg1); |
2545 | ||
4268f798 | 2546 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2547 | if (PyErr_Occurred()) return NULL; |
f6bcfd97 BP |
2548 | } _resultobj = Py_BuildValue("l",_result); |
2549 | return _resultobj; | |
2550 | } | |
2551 | ||
96bfd053 RD |
2552 | static PyObject *_wrap_wxImage_AddHandler(PyObject *self, PyObject *args, PyObject *kwargs) { |
2553 | PyObject * _resultobj; | |
2554 | wxImageHandler * _arg0; | |
2555 | PyObject * _argo0 = 0; | |
2556 | char *_kwnames[] = { "handler", NULL }; | |
2557 | ||
2558 | self = self; | |
2559 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_AddHandler",_kwnames,&_argo0)) | |
2560 | return NULL; | |
2561 | if (_argo0) { | |
2562 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2563 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { | |
2564 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_AddHandler. Expected _wxImageHandler_p."); | |
2565 | return NULL; | |
2566 | } | |
2567 | } | |
2568 | { | |
4268f798 | 2569 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
96bfd053 RD |
2570 | wxImage::AddHandler(_arg0); |
2571 | ||
4268f798 | 2572 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2573 | if (PyErr_Occurred()) return NULL; |
96bfd053 RD |
2574 | } Py_INCREF(Py_None); |
2575 | _resultobj = Py_None; | |
2576 | return _resultobj; | |
2577 | } | |
2578 | ||
2579 | static PyObject *_wrap_wxImage_InsertHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2580 | PyObject * _resultobj; | |
2581 | wxImageHandler * _arg0; | |
2582 | PyObject * _argo0 = 0; | |
2583 | char *_kwnames[] = { "handler", NULL }; | |
2584 | ||
2585 | self = self; | |
2586 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_InsertHandler",_kwnames,&_argo0)) | |
2587 | return NULL; | |
2588 | if (_argo0) { | |
2589 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2590 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { | |
2591 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_InsertHandler. Expected _wxImageHandler_p."); | |
2592 | return NULL; | |
2593 | } | |
2594 | } | |
2595 | { | |
4268f798 | 2596 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
96bfd053 RD |
2597 | wxImage::InsertHandler(_arg0); |
2598 | ||
4268f798 | 2599 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2600 | if (PyErr_Occurred()) return NULL; |
96bfd053 RD |
2601 | } Py_INCREF(Py_None); |
2602 | _resultobj = Py_None; | |
2603 | return _resultobj; | |
2604 | } | |
2605 | ||
2606 | static PyObject *_wrap_wxImage_RemoveHandler(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2607 | PyObject * _resultobj; | |
2608 | bool _result; | |
2609 | wxString * _arg0; | |
2610 | PyObject * _obj0 = 0; | |
2611 | char *_kwnames[] = { "name", NULL }; | |
2612 | ||
2613 | self = self; | |
2614 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_RemoveHandler",_kwnames,&_obj0)) | |
2615 | return NULL; | |
2616 | { | |
2617 | #if PYTHON_API_VERSION >= 1009 | |
2618 | char* tmpPtr; int tmpSize; | |
2619 | if (!PyString_Check(_obj0) && !PyUnicode_Check(_obj0)) { | |
794c5cb1 | 2620 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
96bfd053 RD |
2621 | return NULL; |
2622 | } | |
2623 | if (PyString_AsStringAndSize(_obj0, &tmpPtr, &tmpSize) == -1) | |
2624 | return NULL; | |
2625 | _arg0 = new wxString(tmpPtr, tmpSize); | |
2626 | #else | |
2627 | if (!PyString_Check(_obj0)) { | |
2628 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2629 | return NULL; | |
2630 | } | |
2631 | _arg0 = new wxString(PyString_AS_STRING(_obj0), PyString_GET_SIZE(_obj0)); | |
2632 | #endif | |
2633 | } | |
2634 | { | |
4268f798 | 2635 | PyThreadState* __tstate = wxPyBeginAllowThreads(); |
96bfd053 RD |
2636 | _result = (bool )wxImage::RemoveHandler(*_arg0); |
2637 | ||
4268f798 | 2638 | wxPyEndAllowThreads(__tstate); |
493f1553 | 2639 | if (PyErr_Occurred()) return NULL; |
96bfd053 RD |
2640 | } _resultobj = Py_BuildValue("i",_result); |
2641 | { | |
2642 | if (_obj0) | |
2643 | delete _arg0; | |
2644 | } | |
2645 | return _resultobj; | |
2646 | } | |
2647 | ||
cf694132 | 2648 | static PyMethodDef imagecMethods[] = { |
96bfd053 RD |
2649 | { "wxImage_RemoveHandler", (PyCFunction) _wrap_wxImage_RemoveHandler, METH_VARARGS | METH_KEYWORDS }, |
2650 | { "wxImage_InsertHandler", (PyCFunction) _wrap_wxImage_InsertHandler, METH_VARARGS | METH_KEYWORDS }, | |
2651 | { "wxImage_AddHandler", (PyCFunction) _wrap_wxImage_AddHandler, METH_VARARGS | METH_KEYWORDS }, | |
f6bcfd97 | 2652 | { "wxImage_CountColours", (PyCFunction) _wrap_wxImage_CountColours, METH_VARARGS | METH_KEYWORDS }, |
6c0168c9 RD |
2653 | { "wxImage_HasOption", (PyCFunction) _wrap_wxImage_HasOption, METH_VARARGS | METH_KEYWORDS }, |
2654 | { "wxImage_GetOptionInt", (PyCFunction) _wrap_wxImage_GetOptionInt, METH_VARARGS | METH_KEYWORDS }, | |
2655 | { "wxImage_GetOption", (PyCFunction) _wrap_wxImage_GetOption, METH_VARARGS | METH_KEYWORDS }, | |
2656 | { "wxImage_SetOptionInt", (PyCFunction) _wrap_wxImage_SetOptionInt, METH_VARARGS | METH_KEYWORDS }, | |
2657 | { "wxImage_SetOption", (PyCFunction) _wrap_wxImage_SetOption, METH_VARARGS | METH_KEYWORDS }, | |
2658 | { "wxImage_ConvertToMono", (PyCFunction) _wrap_wxImage_ConvertToMono, METH_VARARGS | METH_KEYWORDS }, | |
f6bcfd97 BP |
2659 | { "wxImage_Replace", (PyCFunction) _wrap_wxImage_Replace, METH_VARARGS | METH_KEYWORDS }, |
2660 | { "wxImage_Mirror", (PyCFunction) _wrap_wxImage_Mirror, METH_VARARGS | METH_KEYWORDS }, | |
2661 | { "wxImage_Rotate90", (PyCFunction) _wrap_wxImage_Rotate90, METH_VARARGS | METH_KEYWORDS }, | |
2662 | { "wxImage_Rotate", (PyCFunction) _wrap_wxImage_Rotate, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
2663 | { "wxImage_HasMask", (PyCFunction) _wrap_wxImage_HasMask, METH_VARARGS | METH_KEYWORDS }, |
2664 | { "wxImage_SetMask", (PyCFunction) _wrap_wxImage_SetMask, METH_VARARGS | METH_KEYWORDS }, | |
2665 | { "wxImage_GetMaskBlue", (PyCFunction) _wrap_wxImage_GetMaskBlue, METH_VARARGS | METH_KEYWORDS }, | |
2666 | { "wxImage_GetMaskGreen", (PyCFunction) _wrap_wxImage_GetMaskGreen, METH_VARARGS | METH_KEYWORDS }, | |
2667 | { "wxImage_GetMaskRed", (PyCFunction) _wrap_wxImage_GetMaskRed, METH_VARARGS | METH_KEYWORDS }, | |
2668 | { "wxImage_SetMaskColour", (PyCFunction) _wrap_wxImage_SetMaskColour, METH_VARARGS | METH_KEYWORDS }, | |
2669 | { "wxImage_SetData", (PyCFunction) _wrap_wxImage_SetData, METH_VARARGS | METH_KEYWORDS }, | |
2670 | { "wxImage_GetData", (PyCFunction) _wrap_wxImage_GetData, METH_VARARGS | METH_KEYWORDS }, | |
f6bcfd97 BP |
2671 | { "wxImage_Paste", (PyCFunction) _wrap_wxImage_Paste, METH_VARARGS | METH_KEYWORDS }, |
2672 | { "wxImage_Copy", (PyCFunction) _wrap_wxImage_Copy, METH_VARARGS | METH_KEYWORDS }, | |
9d8bd15f | 2673 | { "wxImage_GetSubImage", (PyCFunction) _wrap_wxImage_GetSubImage, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
2674 | { "wxImage_GetHeight", (PyCFunction) _wrap_wxImage_GetHeight, METH_VARARGS | METH_KEYWORDS }, |
2675 | { "wxImage_GetWidth", (PyCFunction) _wrap_wxImage_GetWidth, METH_VARARGS | METH_KEYWORDS }, | |
2676 | { "wxImage_Ok", (PyCFunction) _wrap_wxImage_Ok, METH_VARARGS | METH_KEYWORDS }, | |
2677 | { "wxImage_SaveMimeFile", (PyCFunction) _wrap_wxImage_SaveMimeFile, METH_VARARGS | METH_KEYWORDS }, | |
2678 | { "wxImage_SaveFile", (PyCFunction) _wrap_wxImage_SaveFile, METH_VARARGS | METH_KEYWORDS }, | |
2679 | { "wxImage_LoadMimeFile", (PyCFunction) _wrap_wxImage_LoadMimeFile, METH_VARARGS | METH_KEYWORDS }, | |
2680 | { "wxImage_LoadFile", (PyCFunction) _wrap_wxImage_LoadFile, METH_VARARGS | METH_KEYWORDS }, | |
96bfd053 | 2681 | { "wxImage_CanRead", (PyCFunction) _wrap_wxImage_CanRead, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
2682 | { "wxImage_GetBlue", (PyCFunction) _wrap_wxImage_GetBlue, METH_VARARGS | METH_KEYWORDS }, |
2683 | { "wxImage_GetGreen", (PyCFunction) _wrap_wxImage_GetGreen, METH_VARARGS | METH_KEYWORDS }, | |
2684 | { "wxImage_GetRed", (PyCFunction) _wrap_wxImage_GetRed, METH_VARARGS | METH_KEYWORDS }, | |
2685 | { "wxImage_SetRGB", (PyCFunction) _wrap_wxImage_SetRGB, METH_VARARGS | METH_KEYWORDS }, | |
2686 | { "wxImage_Rescale", (PyCFunction) _wrap_wxImage_Rescale, METH_VARARGS | METH_KEYWORDS }, | |
2687 | { "wxImage_Scale", (PyCFunction) _wrap_wxImage_Scale, METH_VARARGS | METH_KEYWORDS }, | |
2688 | { "wxImage_Destroy", (PyCFunction) _wrap_wxImage_Destroy, METH_VARARGS | METH_KEYWORDS }, | |
2689 | { "wxImage_Create", (PyCFunction) _wrap_wxImage_Create, METH_VARARGS | METH_KEYWORDS }, | |
2690 | { "wxImage_ConvertToBitmap", (PyCFunction) _wrap_wxImage_ConvertToBitmap, METH_VARARGS | METH_KEYWORDS }, | |
2691 | { "delete_wxImage", (PyCFunction) _wrap_delete_wxImage, METH_VARARGS | METH_KEYWORDS }, | |
2692 | { "new_wxImage", (PyCFunction) _wrap_new_wxImage, METH_VARARGS | METH_KEYWORDS }, | |
9b3d3bc4 | 2693 | { "new_wxTIFFHandler", (PyCFunction) _wrap_new_wxTIFFHandler, METH_VARARGS | METH_KEYWORDS }, |
06c0fba4 RD |
2694 | { "new_wxPCXHandler", (PyCFunction) _wrap_new_wxPCXHandler, METH_VARARGS | METH_KEYWORDS }, |
2695 | { "new_wxPNMHandler", (PyCFunction) _wrap_new_wxPNMHandler, METH_VARARGS | METH_KEYWORDS }, | |
efc5f224 RD |
2696 | { "new_wxGIFHandler", (PyCFunction) _wrap_new_wxGIFHandler, METH_VARARGS | METH_KEYWORDS }, |
2697 | { "new_wxBMPHandler", (PyCFunction) _wrap_new_wxBMPHandler, METH_VARARGS | METH_KEYWORDS }, | |
2698 | { "new_wxJPEGHandler", (PyCFunction) _wrap_new_wxJPEGHandler, METH_VARARGS | METH_KEYWORDS }, | |
2699 | { "new_wxPNGHandler", (PyCFunction) _wrap_new_wxPNGHandler, METH_VARARGS | METH_KEYWORDS }, | |
2700 | { "wxImageHandler_SetMimeType", (PyCFunction) _wrap_wxImageHandler_SetMimeType, METH_VARARGS | METH_KEYWORDS }, | |
2701 | { "wxImageHandler_SetType", (PyCFunction) _wrap_wxImageHandler_SetType, METH_VARARGS | METH_KEYWORDS }, | |
2702 | { "wxImageHandler_SetExtension", (PyCFunction) _wrap_wxImageHandler_SetExtension, METH_VARARGS | METH_KEYWORDS }, | |
2703 | { "wxImageHandler_SetName", (PyCFunction) _wrap_wxImageHandler_SetName, METH_VARARGS | METH_KEYWORDS }, | |
2704 | { "wxImageHandler_GetMimeType", (PyCFunction) _wrap_wxImageHandler_GetMimeType, METH_VARARGS | METH_KEYWORDS }, | |
2705 | { "wxImageHandler_GetType", (PyCFunction) _wrap_wxImageHandler_GetType, METH_VARARGS | METH_KEYWORDS }, | |
2706 | { "wxImageHandler_GetExtension", (PyCFunction) _wrap_wxImageHandler_GetExtension, METH_VARARGS | METH_KEYWORDS }, | |
2707 | { "wxImageHandler_GetName", (PyCFunction) _wrap_wxImageHandler_GetName, METH_VARARGS | METH_KEYWORDS }, | |
926bb76c | 2708 | { "wxBitmapFromImage", (PyCFunction) _wrap_wxBitmapFromImage, METH_VARARGS | METH_KEYWORDS }, |
06c0fba4 | 2709 | { "wxInitAllImageHandlers", (PyCFunction) _wrap_wxInitAllImageHandlers, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
2710 | { "wxImageFromBitmap", (PyCFunction) _wrap_wxImageFromBitmap, METH_VARARGS | METH_KEYWORDS }, |
2711 | { "wxImageFromMime", (PyCFunction) _wrap_wxImageFromMime, METH_VARARGS | METH_KEYWORDS }, | |
2712 | { "wxEmptyImage", (PyCFunction) _wrap_wxEmptyImage, METH_VARARGS | METH_KEYWORDS }, | |
cf694132 RD |
2713 | { NULL, NULL } |
2714 | }; | |
1d99702e RD |
2715 | #ifdef __cplusplus |
2716 | } | |
2717 | #endif | |
2718 | /* | |
2719 | * This table is used by the pointer type-checker | |
2720 | */ | |
2721 | static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = { | |
1d99702e | 2722 | { "_signed_long","_long",0}, |
b1462dfa | 2723 | { "_wxPrintQuality","_wxCoord",0}, |
1d99702e RD |
2724 | { "_wxPrintQuality","_int",0}, |
2725 | { "_wxPrintQuality","_signed_int",0}, | |
2726 | { "_wxPrintQuality","_unsigned_int",0}, | |
2727 | { "_wxPrintQuality","_wxWindowID",0}, | |
2728 | { "_wxPrintQuality","_uint",0}, | |
2729 | { "_wxPrintQuality","_EBool",0}, | |
2730 | { "_wxPrintQuality","_size_t",0}, | |
c368d904 | 2731 | { "_wxPrintQuality","_time_t",0}, |
9b3d3bc4 | 2732 | { "_wxImageHandler","_wxTIFFHandler",SwigwxTIFFHandlerTowxImageHandler}, |
06c0fba4 | 2733 | { "_wxImageHandler","_wxPCXHandler",SwigwxPCXHandlerTowxImageHandler}, |
06c0fba4 | 2734 | { "_wxImageHandler","_wxPNMHandler",SwigwxPNMHandlerTowxImageHandler}, |
1d99702e | 2735 | { "_wxImageHandler","_wxGIFHandler",SwigwxGIFHandlerTowxImageHandler}, |
1d99702e | 2736 | { "_wxImageHandler","_wxBMPHandler",SwigwxBMPHandlerTowxImageHandler}, |
1d99702e | 2737 | { "_wxImageHandler","_wxJPEGHandler",SwigwxJPEGHandlerTowxImageHandler}, |
1d99702e | 2738 | { "_wxImageHandler","_wxPNGHandler",SwigwxPNGHandlerTowxImageHandler}, |
1d99702e | 2739 | { "_byte","_unsigned_char",0}, |
1d99702e RD |
2740 | { "_long","_unsigned_long",0}, |
2741 | { "_long","_signed_long",0}, | |
b1462dfa | 2742 | { "_size_t","_wxCoord",0}, |
1d99702e | 2743 | { "_size_t","_wxPrintQuality",0}, |
c368d904 | 2744 | { "_size_t","_time_t",0}, |
1d99702e RD |
2745 | { "_size_t","_unsigned_int",0}, |
2746 | { "_size_t","_int",0}, | |
2747 | { "_size_t","_wxWindowID",0}, | |
2748 | { "_size_t","_uint",0}, | |
b1462dfa | 2749 | { "_uint","_wxCoord",0}, |
1d99702e | 2750 | { "_uint","_wxPrintQuality",0}, |
c368d904 | 2751 | { "_uint","_time_t",0}, |
1d99702e RD |
2752 | { "_uint","_size_t",0}, |
2753 | { "_uint","_unsigned_int",0}, | |
2754 | { "_uint","_int",0}, | |
2755 | { "_uint","_wxWindowID",0}, | |
f6bcfd97 | 2756 | { "_wxChar","_char",0}, |
f6bcfd97 | 2757 | { "_char","_wxChar",0}, |
cdf14688 | 2758 | { "_struct_wxNativeFontInfo","_wxNativeFontInfo",0}, |
b1462dfa | 2759 | { "_EBool","_wxCoord",0}, |
1d99702e RD |
2760 | { "_EBool","_wxPrintQuality",0}, |
2761 | { "_EBool","_signed_int",0}, | |
2762 | { "_EBool","_int",0}, | |
2763 | { "_EBool","_wxWindowID",0}, | |
1d99702e | 2764 | { "_unsigned_long","_long",0}, |
cdf14688 | 2765 | { "_wxNativeFontInfo","_struct_wxNativeFontInfo",0}, |
b1462dfa | 2766 | { "_signed_int","_wxCoord",0}, |
1d99702e RD |
2767 | { "_signed_int","_wxPrintQuality",0}, |
2768 | { "_signed_int","_EBool",0}, | |
2769 | { "_signed_int","_wxWindowID",0}, | |
2770 | { "_signed_int","_int",0}, | |
1d99702e RD |
2771 | { "_WXTYPE","_short",0}, |
2772 | { "_WXTYPE","_signed_short",0}, | |
2773 | { "_WXTYPE","_unsigned_short",0}, | |
1d99702e RD |
2774 | { "_unsigned_short","_WXTYPE",0}, |
2775 | { "_unsigned_short","_short",0}, | |
9416aa89 | 2776 | { "_wxObject","_wxImage",SwigwxImageTowxObject}, |
9416aa89 | 2777 | { "_wxObject","_wxTIFFHandler",SwigwxTIFFHandlerTowxObject}, |
9416aa89 | 2778 | { "_wxObject","_wxPCXHandler",SwigwxPCXHandlerTowxObject}, |
9416aa89 | 2779 | { "_wxObject","_wxPNMHandler",SwigwxPNMHandlerTowxObject}, |
9416aa89 | 2780 | { "_wxObject","_wxGIFHandler",SwigwxGIFHandlerTowxObject}, |
9416aa89 | 2781 | { "_wxObject","_wxBMPHandler",SwigwxBMPHandlerTowxObject}, |
9416aa89 | 2782 | { "_wxObject","_wxJPEGHandler",SwigwxJPEGHandlerTowxObject}, |
9416aa89 | 2783 | { "_wxObject","_wxPNGHandler",SwigwxPNGHandlerTowxObject}, |
9416aa89 | 2784 | { "_wxObject","_wxImageHandler",SwigwxImageHandlerTowxObject}, |
1d99702e RD |
2785 | { "_signed_short","_WXTYPE",0}, |
2786 | { "_signed_short","_short",0}, | |
1d99702e | 2787 | { "_unsigned_char","_byte",0}, |
b1462dfa | 2788 | { "_unsigned_int","_wxCoord",0}, |
1d99702e | 2789 | { "_unsigned_int","_wxPrintQuality",0}, |
c368d904 | 2790 | { "_unsigned_int","_time_t",0}, |
1d99702e RD |
2791 | { "_unsigned_int","_size_t",0}, |
2792 | { "_unsigned_int","_uint",0}, | |
2793 | { "_unsigned_int","_wxWindowID",0}, | |
2794 | { "_unsigned_int","_int",0}, | |
1d99702e RD |
2795 | { "_short","_WXTYPE",0}, |
2796 | { "_short","_unsigned_short",0}, | |
2797 | { "_short","_signed_short",0}, | |
b1462dfa | 2798 | { "_wxWindowID","_wxCoord",0}, |
1d99702e | 2799 | { "_wxWindowID","_wxPrintQuality",0}, |
c368d904 | 2800 | { "_wxWindowID","_time_t",0}, |
1d99702e RD |
2801 | { "_wxWindowID","_size_t",0}, |
2802 | { "_wxWindowID","_EBool",0}, | |
2803 | { "_wxWindowID","_uint",0}, | |
2804 | { "_wxWindowID","_int",0}, | |
2805 | { "_wxWindowID","_signed_int",0}, | |
2806 | { "_wxWindowID","_unsigned_int",0}, | |
b1462dfa | 2807 | { "_int","_wxCoord",0}, |
1d99702e | 2808 | { "_int","_wxPrintQuality",0}, |
c368d904 | 2809 | { "_int","_time_t",0}, |
1d99702e RD |
2810 | { "_int","_size_t",0}, |
2811 | { "_int","_EBool",0}, | |
2812 | { "_int","_uint",0}, | |
2813 | { "_int","_wxWindowID",0}, | |
2814 | { "_int","_unsigned_int",0}, | |
2815 | { "_int","_signed_int",0}, | |
c368d904 RD |
2816 | { "_time_t","_wxCoord",0}, |
2817 | { "_time_t","_wxPrintQuality",0}, | |
2818 | { "_time_t","_unsigned_int",0}, | |
2819 | { "_time_t","_int",0}, | |
2820 | { "_time_t","_wxWindowID",0}, | |
2821 | { "_time_t","_uint",0}, | |
2822 | { "_time_t","_size_t",0}, | |
b1462dfa RD |
2823 | { "_wxCoord","_int",0}, |
2824 | { "_wxCoord","_signed_int",0}, | |
2825 | { "_wxCoord","_unsigned_int",0}, | |
2826 | { "_wxCoord","_wxWindowID",0}, | |
2827 | { "_wxCoord","_uint",0}, | |
2828 | { "_wxCoord","_EBool",0}, | |
2829 | { "_wxCoord","_size_t",0}, | |
c368d904 | 2830 | { "_wxCoord","_time_t",0}, |
b1462dfa | 2831 | { "_wxCoord","_wxPrintQuality",0}, |
1d99702e RD |
2832 | {0,0,0}}; |
2833 | ||
cf694132 RD |
2834 | static PyObject *SWIG_globals; |
2835 | #ifdef __cplusplus | |
2836 | extern "C" | |
2837 | #endif | |
1d99702e | 2838 | SWIGEXPORT(void) initimagec() { |
cf694132 RD |
2839 | PyObject *m, *d; |
2840 | SWIG_globals = SWIG_newvarlink(); | |
2841 | m = Py_InitModule("imagec", imagecMethods); | |
2842 | d = PyModule_GetDict(m); | |
0a651eb8 RD |
2843 | PyDict_SetItemString(d,"cvar", SWIG_globals); |
2844 | SWIG_addvarlink(SWIG_globals,"wxNullImage",_wrap_wxNullImage_get, _wrap_wxNullImage_set); | |
1d99702e RD |
2845 | { |
2846 | int i; | |
2847 | for (i = 0; _swig_mapping[i].n1; i++) | |
2848 | SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv); | |
2849 | } | |
cf694132 | 2850 | } |