| 1 | /* |
| 2 | * FILE : src/msw/image.cpp |
| 3 | * |
| 4 | * This file was automatically generated by : |
| 5 | * Simplified Wrapper and Interface Generator (SWIG) |
| 6 | * Version 1.1 (Build 883) |
| 7 | * |
| 8 | * Portions Copyright (c) 1995-1998 |
| 9 | * The University of Utah and The Regents of the University of California. |
| 10 | * Permission is granted to distribute this file in any manner provided |
| 11 | * this notice remains intact. |
| 12 | * |
| 13 | * Do not make changes to this file--changes will be lost! |
| 14 | * |
| 15 | */ |
| 16 | |
| 17 | |
| 18 | #define SWIGCODE |
| 19 | /* Implementation : PYTHON */ |
| 20 | |
| 21 | #define SWIGPYTHON |
| 22 | #include <string.h> |
| 23 | #include <stdlib.h> |
| 24 | /* Definitions for Windows/Unix exporting */ |
| 25 | #if defined(__WIN32__) |
| 26 | # if defined(_MSC_VER) |
| 27 | # define SWIGEXPORT(a) __declspec(dllexport) a |
| 28 | # else |
| 29 | # if defined(__BORLANDC__) |
| 30 | # define SWIGEXPORT(a) a _export |
| 31 | # else |
| 32 | # define SWIGEXPORT(a) a |
| 33 | # endif |
| 34 | # endif |
| 35 | #else |
| 36 | # define SWIGEXPORT(a) a |
| 37 | #endif |
| 38 | |
| 39 | #include "Python.h" |
| 40 | |
| 41 | #ifdef __cplusplus |
| 42 | extern "C" { |
| 43 | #endif |
| 44 | |
| 45 | extern void SWIG_MakePtr(char *, void *, char *); |
| 46 | extern void SWIG_RegisterMapping(char *, char *, void *(*)(void *)); |
| 47 | extern char *SWIG_GetPtr(char *, void **, char *); |
| 48 | extern char *SWIG_GetPtrObj(PyObject *, void **, char *); |
| 49 | extern void SWIG_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *)); |
| 50 | extern PyObject *SWIG_newvarlink(void); |
| 51 | #ifdef __cplusplus |
| 52 | } |
| 53 | #endif |
| 54 | #define SWIG_init initimagec |
| 55 | |
| 56 | #define SWIG_name "imagec" |
| 57 | |
| 58 | #include "helpers.h" |
| 59 | #include <wx/image.h> |
| 60 | |
| 61 | |
| 62 | static PyObject* t_output_helper(PyObject* target, PyObject* o) { |
| 63 | PyObject* o2; |
| 64 | PyObject* o3; |
| 65 | |
| 66 | if (!target) { |
| 67 | target = o; |
| 68 | } else if (target == Py_None) { |
| 69 | Py_DECREF(Py_None); |
| 70 | target = o; |
| 71 | } else { |
| 72 | if (!PyTuple_Check(target)) { |
| 73 | o2 = target; |
| 74 | target = PyTuple_New(1); |
| 75 | PyTuple_SetItem(target, 0, o2); |
| 76 | } |
| 77 | o3 = PyTuple_New(1); |
| 78 | PyTuple_SetItem(o3, 0, o); |
| 79 | |
| 80 | o2 = target; |
| 81 | target = PySequence_Concat(o2, o3); |
| 82 | Py_DECREF(o2); |
| 83 | Py_DECREF(o3); |
| 84 | } |
| 85 | return target; |
| 86 | } |
| 87 | |
| 88 | #if PYTHON_API_VERSION >= 1009 |
| 89 | static char* wxStringErrorMsg = "String or Unicode type required"; |
| 90 | #else |
| 91 | static char* wxStringErrorMsg = "string type is required for parameter"; |
| 92 | #endif |
| 93 | |
| 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); |
| 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 | } |
| 108 | |
| 109 | #if 0 |
| 110 | extern wxImage wxNullImage; |
| 111 | |
| 112 | #endif |
| 113 | |
| 114 | wxBitmap* wxBitmapFromImage(const wxImage& img, int depth=-1) { |
| 115 | return new wxBitmap(img, depth); |
| 116 | } |
| 117 | |
| 118 | #ifdef __cplusplus |
| 119 | extern "C" { |
| 120 | #endif |
| 121 | static PyObject *_wrap_wxEmptyImage(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 122 | PyObject * _resultobj; |
| 123 | wxImage * _result; |
| 124 | int _arg0 = (int ) 0; |
| 125 | int _arg1 = (int ) 0; |
| 126 | char *_kwnames[] = { "width","height", NULL }; |
| 127 | char _ptemp[128]; |
| 128 | |
| 129 | self = self; |
| 130 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|ii:wxEmptyImage",_kwnames,&_arg0,&_arg1)) |
| 131 | return NULL; |
| 132 | { |
| 133 | wxPy_BEGIN_ALLOW_THREADS; |
| 134 | _result = (wxImage *)wxEmptyImage(_arg0,_arg1); |
| 135 | |
| 136 | wxPy_END_ALLOW_THREADS; |
| 137 | if (PyErr_Occurred()) return NULL; |
| 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 | } |
| 145 | return _resultobj; |
| 146 | } |
| 147 | |
| 148 | static PyObject *_wrap_wxImageFromMime(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 149 | PyObject * _resultobj; |
| 150 | wxImage * _result; |
| 151 | wxString * _arg0; |
| 152 | wxString * _arg1; |
| 153 | PyObject * _obj0 = 0; |
| 154 | PyObject * _obj1 = 0; |
| 155 | char *_kwnames[] = { "name","mimetype", NULL }; |
| 156 | char _ptemp[128]; |
| 157 | |
| 158 | self = self; |
| 159 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxImageFromMime",_kwnames,&_obj0,&_obj1)) |
| 160 | return NULL; |
| 161 | { |
| 162 | #if PYTHON_API_VERSION >= 1009 |
| 163 | char* tmpPtr; int tmpSize; |
| 164 | if (!PyString_Check(_obj0) && !PyUnicode_Check(_obj0)) { |
| 165 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 166 | return NULL; |
| 167 | } |
| 168 | if (PyString_AsStringAndSize(_obj0, &tmpPtr, &tmpSize) == -1) |
| 169 | return NULL; |
| 170 | _arg0 = new wxString(tmpPtr, tmpSize); |
| 171 | #else |
| 172 | if (!PyString_Check(_obj0)) { |
| 173 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 174 | return NULL; |
| 175 | } |
| 176 | _arg0 = new wxString(PyString_AS_STRING(_obj0), PyString_GET_SIZE(_obj0)); |
| 177 | #endif |
| 178 | } |
| 179 | { |
| 180 | #if PYTHON_API_VERSION >= 1009 |
| 181 | char* tmpPtr; int tmpSize; |
| 182 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { |
| 183 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 184 | return NULL; |
| 185 | } |
| 186 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) |
| 187 | return NULL; |
| 188 | _arg1 = new wxString(tmpPtr, tmpSize); |
| 189 | #else |
| 190 | if (!PyString_Check(_obj1)) { |
| 191 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 192 | return NULL; |
| 193 | } |
| 194 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
| 195 | #endif |
| 196 | } |
| 197 | { |
| 198 | wxPy_BEGIN_ALLOW_THREADS; |
| 199 | _result = (wxImage *)wxImageFromMime(*_arg0,*_arg1); |
| 200 | |
| 201 | wxPy_END_ALLOW_THREADS; |
| 202 | if (PyErr_Occurred()) return NULL; |
| 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 | } |
| 210 | { |
| 211 | if (_obj0) |
| 212 | delete _arg0; |
| 213 | } |
| 214 | { |
| 215 | if (_obj1) |
| 216 | delete _arg1; |
| 217 | } |
| 218 | return _resultobj; |
| 219 | } |
| 220 | |
| 221 | static PyObject *_wrap_wxImageFromBitmap(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 222 | PyObject * _resultobj; |
| 223 | wxImage * _result; |
| 224 | wxBitmap * _arg0; |
| 225 | PyObject * _argo0 = 0; |
| 226 | char *_kwnames[] = { "bitmap", NULL }; |
| 227 | char _ptemp[128]; |
| 228 | |
| 229 | self = self; |
| 230 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImageFromBitmap",_kwnames,&_argo0)) |
| 231 | return NULL; |
| 232 | if (_argo0) { |
| 233 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 234 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxBitmap_p")) { |
| 235 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageFromBitmap. Expected _wxBitmap_p."); |
| 236 | return NULL; |
| 237 | } |
| 238 | } |
| 239 | { |
| 240 | wxPy_BEGIN_ALLOW_THREADS; |
| 241 | _result = (wxImage *)wxImageFromBitmap(*_arg0); |
| 242 | |
| 243 | wxPy_END_ALLOW_THREADS; |
| 244 | if (PyErr_Occurred()) return NULL; |
| 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 | } |
| 252 | return _resultobj; |
| 253 | } |
| 254 | |
| 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 | { |
| 263 | wxPy_BEGIN_ALLOW_THREADS; |
| 264 | wxInitAllImageHandlers(); |
| 265 | |
| 266 | wxPy_END_ALLOW_THREADS; |
| 267 | if (PyErr_Occurred()) return NULL; |
| 268 | } Py_INCREF(Py_None); |
| 269 | _resultobj = Py_None; |
| 270 | return _resultobj; |
| 271 | } |
| 272 | |
| 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 | |
| 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 | { |
| 308 | wxPy_BEGIN_ALLOW_THREADS; |
| 309 | _result = (wxBitmap *)wxBitmapFromImage(*_arg0,_arg1); |
| 310 | |
| 311 | wxPy_END_ALLOW_THREADS; |
| 312 | if (PyErr_Occurred()) return NULL; |
| 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 | |
| 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 | |
| 331 | #define wxImageHandler_GetName(_swigobj) (_swigobj->GetName()) |
| 332 | static PyObject *_wrap_wxImageHandler_GetName(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 333 | PyObject * _resultobj; |
| 334 | wxString * _result; |
| 335 | wxImageHandler * _arg0; |
| 336 | PyObject * _argo0 = 0; |
| 337 | char *_kwnames[] = { "self", NULL }; |
| 338 | |
| 339 | self = self; |
| 340 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImageHandler_GetName",_kwnames,&_argo0)) |
| 341 | return NULL; |
| 342 | if (_argo0) { |
| 343 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 344 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { |
| 345 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_GetName. Expected _wxImageHandler_p."); |
| 346 | return NULL; |
| 347 | } |
| 348 | } |
| 349 | { |
| 350 | wxPy_BEGIN_ALLOW_THREADS; |
| 351 | _result = new wxString (wxImageHandler_GetName(_arg0)); |
| 352 | |
| 353 | wxPy_END_ALLOW_THREADS; |
| 354 | if (PyErr_Occurred()) return NULL; |
| 355 | }{ |
| 356 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
| 357 | } |
| 358 | { |
| 359 | delete _result; |
| 360 | } |
| 361 | return _resultobj; |
| 362 | } |
| 363 | |
| 364 | #define wxImageHandler_GetExtension(_swigobj) (_swigobj->GetExtension()) |
| 365 | static PyObject *_wrap_wxImageHandler_GetExtension(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 366 | PyObject * _resultobj; |
| 367 | wxString * _result; |
| 368 | wxImageHandler * _arg0; |
| 369 | PyObject * _argo0 = 0; |
| 370 | char *_kwnames[] = { "self", NULL }; |
| 371 | |
| 372 | self = self; |
| 373 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImageHandler_GetExtension",_kwnames,&_argo0)) |
| 374 | return NULL; |
| 375 | if (_argo0) { |
| 376 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 377 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { |
| 378 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_GetExtension. Expected _wxImageHandler_p."); |
| 379 | return NULL; |
| 380 | } |
| 381 | } |
| 382 | { |
| 383 | wxPy_BEGIN_ALLOW_THREADS; |
| 384 | _result = new wxString (wxImageHandler_GetExtension(_arg0)); |
| 385 | |
| 386 | wxPy_END_ALLOW_THREADS; |
| 387 | if (PyErr_Occurred()) return NULL; |
| 388 | }{ |
| 389 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
| 390 | } |
| 391 | { |
| 392 | delete _result; |
| 393 | } |
| 394 | return _resultobj; |
| 395 | } |
| 396 | |
| 397 | #define wxImageHandler_GetType(_swigobj) (_swigobj->GetType()) |
| 398 | static PyObject *_wrap_wxImageHandler_GetType(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 399 | PyObject * _resultobj; |
| 400 | long _result; |
| 401 | wxImageHandler * _arg0; |
| 402 | PyObject * _argo0 = 0; |
| 403 | char *_kwnames[] = { "self", NULL }; |
| 404 | |
| 405 | self = self; |
| 406 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImageHandler_GetType",_kwnames,&_argo0)) |
| 407 | return NULL; |
| 408 | if (_argo0) { |
| 409 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 410 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { |
| 411 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_GetType. Expected _wxImageHandler_p."); |
| 412 | return NULL; |
| 413 | } |
| 414 | } |
| 415 | { |
| 416 | wxPy_BEGIN_ALLOW_THREADS; |
| 417 | _result = (long )wxImageHandler_GetType(_arg0); |
| 418 | |
| 419 | wxPy_END_ALLOW_THREADS; |
| 420 | if (PyErr_Occurred()) return NULL; |
| 421 | } _resultobj = Py_BuildValue("l",_result); |
| 422 | return _resultobj; |
| 423 | } |
| 424 | |
| 425 | #define wxImageHandler_GetMimeType(_swigobj) (_swigobj->GetMimeType()) |
| 426 | static PyObject *_wrap_wxImageHandler_GetMimeType(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 427 | PyObject * _resultobj; |
| 428 | wxString * _result; |
| 429 | wxImageHandler * _arg0; |
| 430 | PyObject * _argo0 = 0; |
| 431 | char *_kwnames[] = { "self", NULL }; |
| 432 | |
| 433 | self = self; |
| 434 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImageHandler_GetMimeType",_kwnames,&_argo0)) |
| 435 | return NULL; |
| 436 | if (_argo0) { |
| 437 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 438 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { |
| 439 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_GetMimeType. Expected _wxImageHandler_p."); |
| 440 | return NULL; |
| 441 | } |
| 442 | } |
| 443 | { |
| 444 | wxPy_BEGIN_ALLOW_THREADS; |
| 445 | _result = new wxString (wxImageHandler_GetMimeType(_arg0)); |
| 446 | |
| 447 | wxPy_END_ALLOW_THREADS; |
| 448 | if (PyErr_Occurred()) return NULL; |
| 449 | }{ |
| 450 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
| 451 | } |
| 452 | { |
| 453 | delete _result; |
| 454 | } |
| 455 | return _resultobj; |
| 456 | } |
| 457 | |
| 458 | #define wxImageHandler_SetName(_swigobj,_swigarg0) (_swigobj->SetName(_swigarg0)) |
| 459 | static PyObject *_wrap_wxImageHandler_SetName(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 460 | PyObject * _resultobj; |
| 461 | wxImageHandler * _arg0; |
| 462 | wxString * _arg1; |
| 463 | PyObject * _argo0 = 0; |
| 464 | PyObject * _obj1 = 0; |
| 465 | char *_kwnames[] = { "self","name", NULL }; |
| 466 | |
| 467 | self = self; |
| 468 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxImageHandler_SetName",_kwnames,&_argo0,&_obj1)) |
| 469 | return NULL; |
| 470 | if (_argo0) { |
| 471 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 472 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { |
| 473 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_SetName. Expected _wxImageHandler_p."); |
| 474 | return NULL; |
| 475 | } |
| 476 | } |
| 477 | { |
| 478 | #if PYTHON_API_VERSION >= 1009 |
| 479 | char* tmpPtr; int tmpSize; |
| 480 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { |
| 481 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 482 | return NULL; |
| 483 | } |
| 484 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) |
| 485 | return NULL; |
| 486 | _arg1 = new wxString(tmpPtr, tmpSize); |
| 487 | #else |
| 488 | if (!PyString_Check(_obj1)) { |
| 489 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 490 | return NULL; |
| 491 | } |
| 492 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
| 493 | #endif |
| 494 | } |
| 495 | { |
| 496 | wxPy_BEGIN_ALLOW_THREADS; |
| 497 | wxImageHandler_SetName(_arg0,*_arg1); |
| 498 | |
| 499 | wxPy_END_ALLOW_THREADS; |
| 500 | if (PyErr_Occurred()) return NULL; |
| 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)) |
| 511 | static PyObject *_wrap_wxImageHandler_SetExtension(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 512 | PyObject * _resultobj; |
| 513 | wxImageHandler * _arg0; |
| 514 | wxString * _arg1; |
| 515 | PyObject * _argo0 = 0; |
| 516 | PyObject * _obj1 = 0; |
| 517 | char *_kwnames[] = { "self","extension", NULL }; |
| 518 | |
| 519 | self = self; |
| 520 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxImageHandler_SetExtension",_kwnames,&_argo0,&_obj1)) |
| 521 | return NULL; |
| 522 | if (_argo0) { |
| 523 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 524 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { |
| 525 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_SetExtension. Expected _wxImageHandler_p."); |
| 526 | return NULL; |
| 527 | } |
| 528 | } |
| 529 | { |
| 530 | #if PYTHON_API_VERSION >= 1009 |
| 531 | char* tmpPtr; int tmpSize; |
| 532 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { |
| 533 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 534 | return NULL; |
| 535 | } |
| 536 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) |
| 537 | return NULL; |
| 538 | _arg1 = new wxString(tmpPtr, tmpSize); |
| 539 | #else |
| 540 | if (!PyString_Check(_obj1)) { |
| 541 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 542 | return NULL; |
| 543 | } |
| 544 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
| 545 | #endif |
| 546 | } |
| 547 | { |
| 548 | wxPy_BEGIN_ALLOW_THREADS; |
| 549 | wxImageHandler_SetExtension(_arg0,*_arg1); |
| 550 | |
| 551 | wxPy_END_ALLOW_THREADS; |
| 552 | if (PyErr_Occurred()) return NULL; |
| 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)) |
| 563 | static PyObject *_wrap_wxImageHandler_SetType(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 564 | PyObject * _resultobj; |
| 565 | wxImageHandler * _arg0; |
| 566 | long _arg1; |
| 567 | PyObject * _argo0 = 0; |
| 568 | char *_kwnames[] = { "self","type", NULL }; |
| 569 | |
| 570 | self = self; |
| 571 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxImageHandler_SetType",_kwnames,&_argo0,&_arg1)) |
| 572 | return NULL; |
| 573 | if (_argo0) { |
| 574 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 575 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { |
| 576 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_SetType. Expected _wxImageHandler_p."); |
| 577 | return NULL; |
| 578 | } |
| 579 | } |
| 580 | { |
| 581 | wxPy_BEGIN_ALLOW_THREADS; |
| 582 | wxImageHandler_SetType(_arg0,_arg1); |
| 583 | |
| 584 | wxPy_END_ALLOW_THREADS; |
| 585 | if (PyErr_Occurred()) return NULL; |
| 586 | } Py_INCREF(Py_None); |
| 587 | _resultobj = Py_None; |
| 588 | return _resultobj; |
| 589 | } |
| 590 | |
| 591 | #define wxImageHandler_SetMimeType(_swigobj,_swigarg0) (_swigobj->SetMimeType(_swigarg0)) |
| 592 | static PyObject *_wrap_wxImageHandler_SetMimeType(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 593 | PyObject * _resultobj; |
| 594 | wxImageHandler * _arg0; |
| 595 | wxString * _arg1; |
| 596 | PyObject * _argo0 = 0; |
| 597 | PyObject * _obj1 = 0; |
| 598 | char *_kwnames[] = { "self","mimetype", NULL }; |
| 599 | |
| 600 | self = self; |
| 601 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxImageHandler_SetMimeType",_kwnames,&_argo0,&_obj1)) |
| 602 | return NULL; |
| 603 | if (_argo0) { |
| 604 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 605 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { |
| 606 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImageHandler_SetMimeType. Expected _wxImageHandler_p."); |
| 607 | return NULL; |
| 608 | } |
| 609 | } |
| 610 | { |
| 611 | #if PYTHON_API_VERSION >= 1009 |
| 612 | char* tmpPtr; int tmpSize; |
| 613 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { |
| 614 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 615 | return NULL; |
| 616 | } |
| 617 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) |
| 618 | return NULL; |
| 619 | _arg1 = new wxString(tmpPtr, tmpSize); |
| 620 | #else |
| 621 | if (!PyString_Check(_obj1)) { |
| 622 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 623 | return NULL; |
| 624 | } |
| 625 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
| 626 | #endif |
| 627 | } |
| 628 | { |
| 629 | wxPy_BEGIN_ALLOW_THREADS; |
| 630 | wxImageHandler_SetMimeType(_arg0,*_arg1); |
| 631 | |
| 632 | wxPy_END_ALLOW_THREADS; |
| 633 | if (PyErr_Occurred()) return NULL; |
| 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 | |
| 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 | |
| 659 | #define new_wxPNGHandler() (new wxPNGHandler()) |
| 660 | static PyObject *_wrap_new_wxPNGHandler(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 661 | PyObject * _resultobj; |
| 662 | wxPNGHandler * _result; |
| 663 | char *_kwnames[] = { NULL }; |
| 664 | char _ptemp[128]; |
| 665 | |
| 666 | self = self; |
| 667 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPNGHandler",_kwnames)) |
| 668 | return NULL; |
| 669 | { |
| 670 | wxPy_BEGIN_ALLOW_THREADS; |
| 671 | _result = (wxPNGHandler *)new_wxPNGHandler(); |
| 672 | |
| 673 | wxPy_END_ALLOW_THREADS; |
| 674 | if (PyErr_Occurred()) return NULL; |
| 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 | } |
| 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 | |
| 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 | |
| 701 | #define new_wxJPEGHandler() (new wxJPEGHandler()) |
| 702 | static PyObject *_wrap_new_wxJPEGHandler(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 703 | PyObject * _resultobj; |
| 704 | wxJPEGHandler * _result; |
| 705 | char *_kwnames[] = { NULL }; |
| 706 | char _ptemp[128]; |
| 707 | |
| 708 | self = self; |
| 709 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxJPEGHandler",_kwnames)) |
| 710 | return NULL; |
| 711 | { |
| 712 | wxPy_BEGIN_ALLOW_THREADS; |
| 713 | _result = (wxJPEGHandler *)new_wxJPEGHandler(); |
| 714 | |
| 715 | wxPy_END_ALLOW_THREADS; |
| 716 | if (PyErr_Occurred()) return NULL; |
| 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 | } |
| 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 | |
| 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 | |
| 743 | #define new_wxBMPHandler() (new wxBMPHandler()) |
| 744 | static PyObject *_wrap_new_wxBMPHandler(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 745 | PyObject * _resultobj; |
| 746 | wxBMPHandler * _result; |
| 747 | char *_kwnames[] = { NULL }; |
| 748 | char _ptemp[128]; |
| 749 | |
| 750 | self = self; |
| 751 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxBMPHandler",_kwnames)) |
| 752 | return NULL; |
| 753 | { |
| 754 | wxPy_BEGIN_ALLOW_THREADS; |
| 755 | _result = (wxBMPHandler *)new_wxBMPHandler(); |
| 756 | |
| 757 | wxPy_END_ALLOW_THREADS; |
| 758 | if (PyErr_Occurred()) return NULL; |
| 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 | } |
| 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 | |
| 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 | |
| 785 | #define new_wxGIFHandler() (new wxGIFHandler()) |
| 786 | static PyObject *_wrap_new_wxGIFHandler(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 787 | PyObject * _resultobj; |
| 788 | wxGIFHandler * _result; |
| 789 | char *_kwnames[] = { NULL }; |
| 790 | char _ptemp[128]; |
| 791 | |
| 792 | self = self; |
| 793 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxGIFHandler",_kwnames)) |
| 794 | return NULL; |
| 795 | { |
| 796 | wxPy_BEGIN_ALLOW_THREADS; |
| 797 | _result = (wxGIFHandler *)new_wxGIFHandler(); |
| 798 | |
| 799 | wxPy_END_ALLOW_THREADS; |
| 800 | if (PyErr_Occurred()) return NULL; |
| 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 | } |
| 808 | return _resultobj; |
| 809 | } |
| 810 | |
| 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 | |
| 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 | |
| 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 | { |
| 838 | wxPy_BEGIN_ALLOW_THREADS; |
| 839 | _result = (wxPNMHandler *)new_wxPNMHandler(); |
| 840 | |
| 841 | wxPy_END_ALLOW_THREADS; |
| 842 | if (PyErr_Occurred()) return NULL; |
| 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 | |
| 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 | |
| 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 | { |
| 880 | wxPy_BEGIN_ALLOW_THREADS; |
| 881 | _result = (wxPCXHandler *)new_wxPCXHandler(); |
| 882 | |
| 883 | wxPy_END_ALLOW_THREADS; |
| 884 | if (PyErr_Occurred()) return NULL; |
| 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 | |
| 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 | |
| 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 | |
| 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 | { |
| 922 | wxPy_BEGIN_ALLOW_THREADS; |
| 923 | _result = (wxTIFFHandler *)new_wxTIFFHandler(); |
| 924 | |
| 925 | wxPy_END_ALLOW_THREADS; |
| 926 | if (PyErr_Occurred()) return NULL; |
| 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 | |
| 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 | |
| 945 | #define new_wxImage(_swigarg0,_swigarg1) (new wxImage(_swigarg0,_swigarg1)) |
| 946 | static PyObject *_wrap_new_wxImage(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 947 | PyObject * _resultobj; |
| 948 | wxImage * _result; |
| 949 | wxString * _arg0; |
| 950 | long _arg1 = (long ) wxBITMAP_TYPE_ANY; |
| 951 | PyObject * _obj0 = 0; |
| 952 | char *_kwnames[] = { "name","type", NULL }; |
| 953 | char _ptemp[128]; |
| 954 | |
| 955 | self = self; |
| 956 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|l:new_wxImage",_kwnames,&_obj0,&_arg1)) |
| 957 | return NULL; |
| 958 | { |
| 959 | #if PYTHON_API_VERSION >= 1009 |
| 960 | char* tmpPtr; int tmpSize; |
| 961 | if (!PyString_Check(_obj0) && !PyUnicode_Check(_obj0)) { |
| 962 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 963 | return NULL; |
| 964 | } |
| 965 | if (PyString_AsStringAndSize(_obj0, &tmpPtr, &tmpSize) == -1) |
| 966 | return NULL; |
| 967 | _arg0 = new wxString(tmpPtr, tmpSize); |
| 968 | #else |
| 969 | if (!PyString_Check(_obj0)) { |
| 970 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 971 | return NULL; |
| 972 | } |
| 973 | _arg0 = new wxString(PyString_AS_STRING(_obj0), PyString_GET_SIZE(_obj0)); |
| 974 | #endif |
| 975 | } |
| 976 | { |
| 977 | wxPy_BEGIN_ALLOW_THREADS; |
| 978 | _result = (wxImage *)new_wxImage(*_arg0,_arg1); |
| 979 | |
| 980 | wxPy_END_ALLOW_THREADS; |
| 981 | if (PyErr_Occurred()) return NULL; |
| 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 | } |
| 989 | { |
| 990 | if (_obj0) |
| 991 | delete _arg0; |
| 992 | } |
| 993 | return _resultobj; |
| 994 | } |
| 995 | |
| 996 | #define delete_wxImage(_swigobj) (delete _swigobj) |
| 997 | static PyObject *_wrap_delete_wxImage(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 998 | PyObject * _resultobj; |
| 999 | wxImage * _arg0; |
| 1000 | PyObject * _argo0 = 0; |
| 1001 | char *_kwnames[] = { "self", NULL }; |
| 1002 | |
| 1003 | self = self; |
| 1004 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxImage",_kwnames,&_argo0)) |
| 1005 | return NULL; |
| 1006 | if (_argo0) { |
| 1007 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1008 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1009 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxImage. Expected _wxImage_p."); |
| 1010 | return NULL; |
| 1011 | } |
| 1012 | } |
| 1013 | { |
| 1014 | wxPy_BEGIN_ALLOW_THREADS; |
| 1015 | delete_wxImage(_arg0); |
| 1016 | |
| 1017 | wxPy_END_ALLOW_THREADS; |
| 1018 | if (PyErr_Occurred()) return NULL; |
| 1019 | } Py_INCREF(Py_None); |
| 1020 | _resultobj = Py_None; |
| 1021 | return _resultobj; |
| 1022 | } |
| 1023 | |
| 1024 | #define wxImage_ConvertToBitmap(_swigobj) (_swigobj->ConvertToBitmap()) |
| 1025 | static PyObject *_wrap_wxImage_ConvertToBitmap(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1026 | PyObject * _resultobj; |
| 1027 | wxBitmap * _result; |
| 1028 | wxImage * _arg0; |
| 1029 | PyObject * _argo0 = 0; |
| 1030 | char *_kwnames[] = { "self", NULL }; |
| 1031 | char _ptemp[128]; |
| 1032 | |
| 1033 | self = self; |
| 1034 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_ConvertToBitmap",_kwnames,&_argo0)) |
| 1035 | return NULL; |
| 1036 | if (_argo0) { |
| 1037 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1038 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1039 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_ConvertToBitmap. Expected _wxImage_p."); |
| 1040 | return NULL; |
| 1041 | } |
| 1042 | } |
| 1043 | { |
| 1044 | wxPy_BEGIN_ALLOW_THREADS; |
| 1045 | _result = new wxBitmap (wxImage_ConvertToBitmap(_arg0)); |
| 1046 | |
| 1047 | wxPy_END_ALLOW_THREADS; |
| 1048 | if (PyErr_Occurred()) return NULL; |
| 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)) |
| 1055 | static PyObject *_wrap_wxImage_Create(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1056 | PyObject * _resultobj; |
| 1057 | wxImage * _arg0; |
| 1058 | int _arg1; |
| 1059 | int _arg2; |
| 1060 | PyObject * _argo0 = 0; |
| 1061 | char *_kwnames[] = { "self","width","height", NULL }; |
| 1062 | |
| 1063 | self = self; |
| 1064 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxImage_Create",_kwnames,&_argo0,&_arg1,&_arg2)) |
| 1065 | return NULL; |
| 1066 | if (_argo0) { |
| 1067 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1068 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1069 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Create. Expected _wxImage_p."); |
| 1070 | return NULL; |
| 1071 | } |
| 1072 | } |
| 1073 | { |
| 1074 | wxPy_BEGIN_ALLOW_THREADS; |
| 1075 | wxImage_Create(_arg0,_arg1,_arg2); |
| 1076 | |
| 1077 | wxPy_END_ALLOW_THREADS; |
| 1078 | if (PyErr_Occurred()) return NULL; |
| 1079 | } Py_INCREF(Py_None); |
| 1080 | _resultobj = Py_None; |
| 1081 | return _resultobj; |
| 1082 | } |
| 1083 | |
| 1084 | #define wxImage_Destroy(_swigobj) (_swigobj->Destroy()) |
| 1085 | static PyObject *_wrap_wxImage_Destroy(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1086 | PyObject * _resultobj; |
| 1087 | wxImage * _arg0; |
| 1088 | PyObject * _argo0 = 0; |
| 1089 | char *_kwnames[] = { "self", NULL }; |
| 1090 | |
| 1091 | self = self; |
| 1092 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_Destroy",_kwnames,&_argo0)) |
| 1093 | return NULL; |
| 1094 | if (_argo0) { |
| 1095 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1096 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1097 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Destroy. Expected _wxImage_p."); |
| 1098 | return NULL; |
| 1099 | } |
| 1100 | } |
| 1101 | { |
| 1102 | wxPy_BEGIN_ALLOW_THREADS; |
| 1103 | wxImage_Destroy(_arg0); |
| 1104 | |
| 1105 | wxPy_END_ALLOW_THREADS; |
| 1106 | if (PyErr_Occurred()) return NULL; |
| 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)) |
| 1113 | static PyObject *_wrap_wxImage_Scale(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1114 | PyObject * _resultobj; |
| 1115 | wxImage * _result; |
| 1116 | wxImage * _arg0; |
| 1117 | int _arg1; |
| 1118 | int _arg2; |
| 1119 | PyObject * _argo0 = 0; |
| 1120 | char *_kwnames[] = { "self","width","height", NULL }; |
| 1121 | char _ptemp[128]; |
| 1122 | |
| 1123 | self = self; |
| 1124 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxImage_Scale",_kwnames,&_argo0,&_arg1,&_arg2)) |
| 1125 | return NULL; |
| 1126 | if (_argo0) { |
| 1127 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1128 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1129 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Scale. Expected _wxImage_p."); |
| 1130 | return NULL; |
| 1131 | } |
| 1132 | } |
| 1133 | { |
| 1134 | wxPy_BEGIN_ALLOW_THREADS; |
| 1135 | _result = new wxImage (wxImage_Scale(_arg0,_arg1,_arg2)); |
| 1136 | |
| 1137 | wxPy_END_ALLOW_THREADS; |
| 1138 | if (PyErr_Occurred()) return NULL; |
| 1139 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxImage_p"); |
| 1140 | _resultobj = Py_BuildValue("s",_ptemp); |
| 1141 | return _resultobj; |
| 1142 | } |
| 1143 | |
| 1144 | #define wxImage_Rescale(_swigobj,_swigarg0,_swigarg1) (_swigobj->Rescale(_swigarg0,_swigarg1)) |
| 1145 | static PyObject *_wrap_wxImage_Rescale(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1146 | PyObject * _resultobj; |
| 1147 | wxImage * _result; |
| 1148 | wxImage * _arg0; |
| 1149 | int _arg1; |
| 1150 | int _arg2; |
| 1151 | PyObject * _argo0 = 0; |
| 1152 | char *_kwnames[] = { "self","width","height", NULL }; |
| 1153 | char _ptemp[128]; |
| 1154 | |
| 1155 | self = self; |
| 1156 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxImage_Rescale",_kwnames,&_argo0,&_arg1,&_arg2)) |
| 1157 | return NULL; |
| 1158 | if (_argo0) { |
| 1159 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1160 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1161 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Rescale. Expected _wxImage_p."); |
| 1162 | return NULL; |
| 1163 | } |
| 1164 | } |
| 1165 | { |
| 1166 | wxPy_BEGIN_ALLOW_THREADS; |
| 1167 | wxImage & _result_ref = wxImage_Rescale(_arg0,_arg1,_arg2); |
| 1168 | _result = (wxImage *) &_result_ref; |
| 1169 | |
| 1170 | wxPy_END_ALLOW_THREADS; |
| 1171 | if (PyErr_Occurred()) return NULL; |
| 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 | } |
| 1179 | return _resultobj; |
| 1180 | } |
| 1181 | |
| 1182 | #define wxImage_SetRGB(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->SetRGB(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4)) |
| 1183 | static PyObject *_wrap_wxImage_SetRGB(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1184 | PyObject * _resultobj; |
| 1185 | wxImage * _arg0; |
| 1186 | int _arg1; |
| 1187 | int _arg2; |
| 1188 | unsigned char _arg3; |
| 1189 | unsigned char _arg4; |
| 1190 | unsigned char _arg5; |
| 1191 | PyObject * _argo0 = 0; |
| 1192 | char *_kwnames[] = { "self","x","y","r","g","b", NULL }; |
| 1193 | |
| 1194 | self = self; |
| 1195 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oiibbb:wxImage_SetRGB",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3,&_arg4,&_arg5)) |
| 1196 | return NULL; |
| 1197 | if (_argo0) { |
| 1198 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1199 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1200 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_SetRGB. Expected _wxImage_p."); |
| 1201 | return NULL; |
| 1202 | } |
| 1203 | } |
| 1204 | { |
| 1205 | wxPy_BEGIN_ALLOW_THREADS; |
| 1206 | wxImage_SetRGB(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5); |
| 1207 | |
| 1208 | wxPy_END_ALLOW_THREADS; |
| 1209 | if (PyErr_Occurred()) return NULL; |
| 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)) |
| 1216 | static PyObject *_wrap_wxImage_GetRed(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1217 | PyObject * _resultobj; |
| 1218 | unsigned char _result; |
| 1219 | wxImage * _arg0; |
| 1220 | int _arg1; |
| 1221 | int _arg2; |
| 1222 | PyObject * _argo0 = 0; |
| 1223 | char *_kwnames[] = { "self","x","y", NULL }; |
| 1224 | |
| 1225 | self = self; |
| 1226 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxImage_GetRed",_kwnames,&_argo0,&_arg1,&_arg2)) |
| 1227 | return NULL; |
| 1228 | if (_argo0) { |
| 1229 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1230 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1231 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetRed. Expected _wxImage_p."); |
| 1232 | return NULL; |
| 1233 | } |
| 1234 | } |
| 1235 | { |
| 1236 | wxPy_BEGIN_ALLOW_THREADS; |
| 1237 | _result = (unsigned char )wxImage_GetRed(_arg0,_arg1,_arg2); |
| 1238 | |
| 1239 | wxPy_END_ALLOW_THREADS; |
| 1240 | if (PyErr_Occurred()) return NULL; |
| 1241 | } _resultobj = Py_BuildValue("b",_result); |
| 1242 | return _resultobj; |
| 1243 | } |
| 1244 | |
| 1245 | #define wxImage_GetGreen(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetGreen(_swigarg0,_swigarg1)) |
| 1246 | static PyObject *_wrap_wxImage_GetGreen(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1247 | PyObject * _resultobj; |
| 1248 | unsigned char _result; |
| 1249 | wxImage * _arg0; |
| 1250 | int _arg1; |
| 1251 | int _arg2; |
| 1252 | PyObject * _argo0 = 0; |
| 1253 | char *_kwnames[] = { "self","x","y", NULL }; |
| 1254 | |
| 1255 | self = self; |
| 1256 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxImage_GetGreen",_kwnames,&_argo0,&_arg1,&_arg2)) |
| 1257 | return NULL; |
| 1258 | if (_argo0) { |
| 1259 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1260 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1261 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetGreen. Expected _wxImage_p."); |
| 1262 | return NULL; |
| 1263 | } |
| 1264 | } |
| 1265 | { |
| 1266 | wxPy_BEGIN_ALLOW_THREADS; |
| 1267 | _result = (unsigned char )wxImage_GetGreen(_arg0,_arg1,_arg2); |
| 1268 | |
| 1269 | wxPy_END_ALLOW_THREADS; |
| 1270 | if (PyErr_Occurred()) return NULL; |
| 1271 | } _resultobj = Py_BuildValue("b",_result); |
| 1272 | return _resultobj; |
| 1273 | } |
| 1274 | |
| 1275 | #define wxImage_GetBlue(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetBlue(_swigarg0,_swigarg1)) |
| 1276 | static PyObject *_wrap_wxImage_GetBlue(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1277 | PyObject * _resultobj; |
| 1278 | unsigned char _result; |
| 1279 | wxImage * _arg0; |
| 1280 | int _arg1; |
| 1281 | int _arg2; |
| 1282 | PyObject * _argo0 = 0; |
| 1283 | char *_kwnames[] = { "self","x","y", NULL }; |
| 1284 | |
| 1285 | self = self; |
| 1286 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxImage_GetBlue",_kwnames,&_argo0,&_arg1,&_arg2)) |
| 1287 | return NULL; |
| 1288 | if (_argo0) { |
| 1289 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1290 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1291 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetBlue. Expected _wxImage_p."); |
| 1292 | return NULL; |
| 1293 | } |
| 1294 | } |
| 1295 | { |
| 1296 | wxPy_BEGIN_ALLOW_THREADS; |
| 1297 | _result = (unsigned char )wxImage_GetBlue(_arg0,_arg1,_arg2); |
| 1298 | |
| 1299 | wxPy_END_ALLOW_THREADS; |
| 1300 | if (PyErr_Occurred()) return NULL; |
| 1301 | } _resultobj = Py_BuildValue("b",_result); |
| 1302 | return _resultobj; |
| 1303 | } |
| 1304 | |
| 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)) { |
| 1319 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 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 | { |
| 1334 | wxPy_BEGIN_ALLOW_THREADS; |
| 1335 | _result = (bool )wxImage::CanRead(*_arg0); |
| 1336 | |
| 1337 | wxPy_END_ALLOW_THREADS; |
| 1338 | if (PyErr_Occurred()) return NULL; |
| 1339 | } _resultobj = Py_BuildValue("i",_result); |
| 1340 | { |
| 1341 | if (_obj0) |
| 1342 | delete _arg0; |
| 1343 | } |
| 1344 | return _resultobj; |
| 1345 | } |
| 1346 | |
| 1347 | #define wxImage_LoadFile(_swigobj,_swigarg0,_swigarg1) (_swigobj->LoadFile(_swigarg0,_swigarg1)) |
| 1348 | static PyObject *_wrap_wxImage_LoadFile(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1349 | PyObject * _resultobj; |
| 1350 | bool _result; |
| 1351 | wxImage * _arg0; |
| 1352 | wxString * _arg1; |
| 1353 | long _arg2 = (long ) wxBITMAP_TYPE_ANY; |
| 1354 | PyObject * _argo0 = 0; |
| 1355 | PyObject * _obj1 = 0; |
| 1356 | char *_kwnames[] = { "self","name","type", NULL }; |
| 1357 | |
| 1358 | self = self; |
| 1359 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|l:wxImage_LoadFile",_kwnames,&_argo0,&_obj1,&_arg2)) |
| 1360 | return NULL; |
| 1361 | if (_argo0) { |
| 1362 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1363 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1364 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_LoadFile. Expected _wxImage_p."); |
| 1365 | return NULL; |
| 1366 | } |
| 1367 | } |
| 1368 | { |
| 1369 | #if PYTHON_API_VERSION >= 1009 |
| 1370 | char* tmpPtr; int tmpSize; |
| 1371 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { |
| 1372 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 1373 | return NULL; |
| 1374 | } |
| 1375 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) |
| 1376 | return NULL; |
| 1377 | _arg1 = new wxString(tmpPtr, tmpSize); |
| 1378 | #else |
| 1379 | if (!PyString_Check(_obj1)) { |
| 1380 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 1381 | return NULL; |
| 1382 | } |
| 1383 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
| 1384 | #endif |
| 1385 | } |
| 1386 | { |
| 1387 | wxPy_BEGIN_ALLOW_THREADS; |
| 1388 | _result = (bool )wxImage_LoadFile(_arg0,*_arg1,_arg2); |
| 1389 | |
| 1390 | wxPy_END_ALLOW_THREADS; |
| 1391 | if (PyErr_Occurred()) return NULL; |
| 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)) |
| 1401 | static PyObject *_wrap_wxImage_LoadMimeFile(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1402 | PyObject * _resultobj; |
| 1403 | bool _result; |
| 1404 | wxImage * _arg0; |
| 1405 | wxString * _arg1; |
| 1406 | wxString * _arg2; |
| 1407 | PyObject * _argo0 = 0; |
| 1408 | PyObject * _obj1 = 0; |
| 1409 | PyObject * _obj2 = 0; |
| 1410 | char *_kwnames[] = { "self","name","mimetype", NULL }; |
| 1411 | |
| 1412 | self = self; |
| 1413 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxImage_LoadMimeFile",_kwnames,&_argo0,&_obj1,&_obj2)) |
| 1414 | return NULL; |
| 1415 | if (_argo0) { |
| 1416 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1417 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1418 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_LoadMimeFile. Expected _wxImage_p."); |
| 1419 | return NULL; |
| 1420 | } |
| 1421 | } |
| 1422 | { |
| 1423 | #if PYTHON_API_VERSION >= 1009 |
| 1424 | char* tmpPtr; int tmpSize; |
| 1425 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { |
| 1426 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 1427 | return NULL; |
| 1428 | } |
| 1429 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) |
| 1430 | return NULL; |
| 1431 | _arg1 = new wxString(tmpPtr, tmpSize); |
| 1432 | #else |
| 1433 | if (!PyString_Check(_obj1)) { |
| 1434 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 1435 | return NULL; |
| 1436 | } |
| 1437 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
| 1438 | #endif |
| 1439 | } |
| 1440 | { |
| 1441 | #if PYTHON_API_VERSION >= 1009 |
| 1442 | char* tmpPtr; int tmpSize; |
| 1443 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { |
| 1444 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 1445 | return NULL; |
| 1446 | } |
| 1447 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) |
| 1448 | return NULL; |
| 1449 | _arg2 = new wxString(tmpPtr, tmpSize); |
| 1450 | #else |
| 1451 | if (!PyString_Check(_obj2)) { |
| 1452 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 1453 | return NULL; |
| 1454 | } |
| 1455 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
| 1456 | #endif |
| 1457 | } |
| 1458 | { |
| 1459 | wxPy_BEGIN_ALLOW_THREADS; |
| 1460 | _result = (bool )wxImage_LoadMimeFile(_arg0,*_arg1,*_arg2); |
| 1461 | |
| 1462 | wxPy_END_ALLOW_THREADS; |
| 1463 | if (PyErr_Occurred()) return NULL; |
| 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)) |
| 1477 | static PyObject *_wrap_wxImage_SaveFile(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1478 | PyObject * _resultobj; |
| 1479 | bool _result; |
| 1480 | wxImage * _arg0; |
| 1481 | wxString * _arg1; |
| 1482 | int _arg2; |
| 1483 | PyObject * _argo0 = 0; |
| 1484 | PyObject * _obj1 = 0; |
| 1485 | char *_kwnames[] = { "self","name","type", NULL }; |
| 1486 | |
| 1487 | self = self; |
| 1488 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi:wxImage_SaveFile",_kwnames,&_argo0,&_obj1,&_arg2)) |
| 1489 | return NULL; |
| 1490 | if (_argo0) { |
| 1491 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1492 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1493 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_SaveFile. Expected _wxImage_p."); |
| 1494 | return NULL; |
| 1495 | } |
| 1496 | } |
| 1497 | { |
| 1498 | #if PYTHON_API_VERSION >= 1009 |
| 1499 | char* tmpPtr; int tmpSize; |
| 1500 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { |
| 1501 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 1502 | return NULL; |
| 1503 | } |
| 1504 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) |
| 1505 | return NULL; |
| 1506 | _arg1 = new wxString(tmpPtr, tmpSize); |
| 1507 | #else |
| 1508 | if (!PyString_Check(_obj1)) { |
| 1509 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 1510 | return NULL; |
| 1511 | } |
| 1512 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
| 1513 | #endif |
| 1514 | } |
| 1515 | { |
| 1516 | wxPy_BEGIN_ALLOW_THREADS; |
| 1517 | _result = (bool )wxImage_SaveFile(_arg0,*_arg1,_arg2); |
| 1518 | |
| 1519 | wxPy_END_ALLOW_THREADS; |
| 1520 | if (PyErr_Occurred()) return NULL; |
| 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)) |
| 1530 | static PyObject *_wrap_wxImage_SaveMimeFile(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1531 | PyObject * _resultobj; |
| 1532 | bool _result; |
| 1533 | wxImage * _arg0; |
| 1534 | wxString * _arg1; |
| 1535 | wxString * _arg2; |
| 1536 | PyObject * _argo0 = 0; |
| 1537 | PyObject * _obj1 = 0; |
| 1538 | PyObject * _obj2 = 0; |
| 1539 | char *_kwnames[] = { "self","name","mimetype", NULL }; |
| 1540 | |
| 1541 | self = self; |
| 1542 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxImage_SaveMimeFile",_kwnames,&_argo0,&_obj1,&_obj2)) |
| 1543 | return NULL; |
| 1544 | if (_argo0) { |
| 1545 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1546 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1547 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_SaveMimeFile. Expected _wxImage_p."); |
| 1548 | return NULL; |
| 1549 | } |
| 1550 | } |
| 1551 | { |
| 1552 | #if PYTHON_API_VERSION >= 1009 |
| 1553 | char* tmpPtr; int tmpSize; |
| 1554 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { |
| 1555 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 1556 | return NULL; |
| 1557 | } |
| 1558 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) |
| 1559 | return NULL; |
| 1560 | _arg1 = new wxString(tmpPtr, tmpSize); |
| 1561 | #else |
| 1562 | if (!PyString_Check(_obj1)) { |
| 1563 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 1564 | return NULL; |
| 1565 | } |
| 1566 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
| 1567 | #endif |
| 1568 | } |
| 1569 | { |
| 1570 | #if PYTHON_API_VERSION >= 1009 |
| 1571 | char* tmpPtr; int tmpSize; |
| 1572 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { |
| 1573 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 1574 | return NULL; |
| 1575 | } |
| 1576 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) |
| 1577 | return NULL; |
| 1578 | _arg2 = new wxString(tmpPtr, tmpSize); |
| 1579 | #else |
| 1580 | if (!PyString_Check(_obj2)) { |
| 1581 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 1582 | return NULL; |
| 1583 | } |
| 1584 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); |
| 1585 | #endif |
| 1586 | } |
| 1587 | { |
| 1588 | wxPy_BEGIN_ALLOW_THREADS; |
| 1589 | _result = (bool )wxImage_SaveMimeFile(_arg0,*_arg1,*_arg2); |
| 1590 | |
| 1591 | wxPy_END_ALLOW_THREADS; |
| 1592 | if (PyErr_Occurred()) return NULL; |
| 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()) |
| 1606 | static PyObject *_wrap_wxImage_Ok(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1607 | PyObject * _resultobj; |
| 1608 | bool _result; |
| 1609 | wxImage * _arg0; |
| 1610 | PyObject * _argo0 = 0; |
| 1611 | char *_kwnames[] = { "self", NULL }; |
| 1612 | |
| 1613 | self = self; |
| 1614 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_Ok",_kwnames,&_argo0)) |
| 1615 | return NULL; |
| 1616 | if (_argo0) { |
| 1617 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1618 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1619 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_Ok. Expected _wxImage_p."); |
| 1620 | return NULL; |
| 1621 | } |
| 1622 | } |
| 1623 | { |
| 1624 | wxPy_BEGIN_ALLOW_THREADS; |
| 1625 | _result = (bool )wxImage_Ok(_arg0); |
| 1626 | |
| 1627 | wxPy_END_ALLOW_THREADS; |
| 1628 | if (PyErr_Occurred()) return NULL; |
| 1629 | } _resultobj = Py_BuildValue("i",_result); |
| 1630 | return _resultobj; |
| 1631 | } |
| 1632 | |
| 1633 | #define wxImage_GetWidth(_swigobj) (_swigobj->GetWidth()) |
| 1634 | static PyObject *_wrap_wxImage_GetWidth(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1635 | PyObject * _resultobj; |
| 1636 | int _result; |
| 1637 | wxImage * _arg0; |
| 1638 | PyObject * _argo0 = 0; |
| 1639 | char *_kwnames[] = { "self", NULL }; |
| 1640 | |
| 1641 | self = self; |
| 1642 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_GetWidth",_kwnames,&_argo0)) |
| 1643 | return NULL; |
| 1644 | if (_argo0) { |
| 1645 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1646 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1647 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetWidth. Expected _wxImage_p."); |
| 1648 | return NULL; |
| 1649 | } |
| 1650 | } |
| 1651 | { |
| 1652 | wxPy_BEGIN_ALLOW_THREADS; |
| 1653 | _result = (int )wxImage_GetWidth(_arg0); |
| 1654 | |
| 1655 | wxPy_END_ALLOW_THREADS; |
| 1656 | if (PyErr_Occurred()) return NULL; |
| 1657 | } _resultobj = Py_BuildValue("i",_result); |
| 1658 | return _resultobj; |
| 1659 | } |
| 1660 | |
| 1661 | #define wxImage_GetHeight(_swigobj) (_swigobj->GetHeight()) |
| 1662 | static PyObject *_wrap_wxImage_GetHeight(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1663 | PyObject * _resultobj; |
| 1664 | int _result; |
| 1665 | wxImage * _arg0; |
| 1666 | PyObject * _argo0 = 0; |
| 1667 | char *_kwnames[] = { "self", NULL }; |
| 1668 | |
| 1669 | self = self; |
| 1670 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_GetHeight",_kwnames,&_argo0)) |
| 1671 | return NULL; |
| 1672 | if (_argo0) { |
| 1673 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1674 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1675 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetHeight. Expected _wxImage_p."); |
| 1676 | return NULL; |
| 1677 | } |
| 1678 | } |
| 1679 | { |
| 1680 | wxPy_BEGIN_ALLOW_THREADS; |
| 1681 | _result = (int )wxImage_GetHeight(_arg0); |
| 1682 | |
| 1683 | wxPy_END_ALLOW_THREADS; |
| 1684 | if (PyErr_Occurred()) return NULL; |
| 1685 | } _resultobj = Py_BuildValue("i",_result); |
| 1686 | return _resultobj; |
| 1687 | } |
| 1688 | |
| 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 | { |
| 1717 | wxPy_BEGIN_ALLOW_THREADS; |
| 1718 | _result = new wxImage (wxImage_GetSubImage(_arg0,*_arg1)); |
| 1719 | |
| 1720 | wxPy_END_ALLOW_THREADS; |
| 1721 | if (PyErr_Occurred()) return NULL; |
| 1722 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxImage_p"); |
| 1723 | _resultobj = Py_BuildValue("s",_ptemp); |
| 1724 | return _resultobj; |
| 1725 | } |
| 1726 | |
| 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 | { |
| 1747 | wxPy_BEGIN_ALLOW_THREADS; |
| 1748 | _result = new wxImage (wxImage_Copy(_arg0)); |
| 1749 | |
| 1750 | wxPy_END_ALLOW_THREADS; |
| 1751 | if (PyErr_Occurred()) return NULL; |
| 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 | { |
| 1786 | wxPy_BEGIN_ALLOW_THREADS; |
| 1787 | wxImage_Paste(_arg0,*_arg1,_arg2,_arg3); |
| 1788 | |
| 1789 | wxPy_END_ALLOW_THREADS; |
| 1790 | if (PyErr_Occurred()) return NULL; |
| 1791 | } Py_INCREF(Py_None); |
| 1792 | _resultobj = Py_None; |
| 1793 | return _resultobj; |
| 1794 | } |
| 1795 | |
| 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 | } |
| 1801 | static PyObject *_wrap_wxImage_GetData(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1802 | PyObject * _resultobj; |
| 1803 | PyObject * _result; |
| 1804 | wxImage * _arg0; |
| 1805 | PyObject * _argo0 = 0; |
| 1806 | char *_kwnames[] = { "self", NULL }; |
| 1807 | |
| 1808 | self = self; |
| 1809 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_GetData",_kwnames,&_argo0)) |
| 1810 | return NULL; |
| 1811 | if (_argo0) { |
| 1812 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1813 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1814 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetData. Expected _wxImage_p."); |
| 1815 | return NULL; |
| 1816 | } |
| 1817 | } |
| 1818 | { |
| 1819 | wxPy_BEGIN_ALLOW_THREADS; |
| 1820 | _result = (PyObject *)wxImage_GetData(_arg0); |
| 1821 | |
| 1822 | wxPy_END_ALLOW_THREADS; |
| 1823 | if (PyErr_Occurred()) return NULL; |
| 1824 | }{ |
| 1825 | _resultobj = _result; |
| 1826 | } |
| 1827 | return _resultobj; |
| 1828 | } |
| 1829 | |
| 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 | } |
| 1837 | |
| 1838 | size_t len = self->GetWidth() * self->GetHeight() * 3; |
| 1839 | dataPtr = (unsigned char*) malloc(len); |
| 1840 | memcpy(dataPtr, PyString_AsString(data), len); |
| 1841 | self->SetData(dataPtr); |
| 1842 | } |
| 1843 | static PyObject *_wrap_wxImage_SetData(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1844 | PyObject * _resultobj; |
| 1845 | wxImage * _arg0; |
| 1846 | PyObject * _arg1; |
| 1847 | PyObject * _argo0 = 0; |
| 1848 | PyObject * _obj1 = 0; |
| 1849 | char *_kwnames[] = { "self","data", NULL }; |
| 1850 | |
| 1851 | self = self; |
| 1852 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxImage_SetData",_kwnames,&_argo0,&_obj1)) |
| 1853 | return NULL; |
| 1854 | if (_argo0) { |
| 1855 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1856 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1857 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_SetData. Expected _wxImage_p."); |
| 1858 | return NULL; |
| 1859 | } |
| 1860 | } |
| 1861 | { |
| 1862 | _arg1 = _obj1; |
| 1863 | } |
| 1864 | { |
| 1865 | wxPy_BEGIN_ALLOW_THREADS; |
| 1866 | wxImage_SetData(_arg0,_arg1); |
| 1867 | |
| 1868 | wxPy_END_ALLOW_THREADS; |
| 1869 | if (PyErr_Occurred()) return NULL; |
| 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)) |
| 1876 | static PyObject *_wrap_wxImage_SetMaskColour(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1877 | PyObject * _resultobj; |
| 1878 | wxImage * _arg0; |
| 1879 | unsigned char _arg1; |
| 1880 | unsigned char _arg2; |
| 1881 | unsigned char _arg3; |
| 1882 | PyObject * _argo0 = 0; |
| 1883 | char *_kwnames[] = { "self","r","g","b", NULL }; |
| 1884 | |
| 1885 | self = self; |
| 1886 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Obbb:wxImage_SetMaskColour",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3)) |
| 1887 | return NULL; |
| 1888 | if (_argo0) { |
| 1889 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1890 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1891 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_SetMaskColour. Expected _wxImage_p."); |
| 1892 | return NULL; |
| 1893 | } |
| 1894 | } |
| 1895 | { |
| 1896 | wxPy_BEGIN_ALLOW_THREADS; |
| 1897 | wxImage_SetMaskColour(_arg0,_arg1,_arg2,_arg3); |
| 1898 | |
| 1899 | wxPy_END_ALLOW_THREADS; |
| 1900 | if (PyErr_Occurred()) return NULL; |
| 1901 | } Py_INCREF(Py_None); |
| 1902 | _resultobj = Py_None; |
| 1903 | return _resultobj; |
| 1904 | } |
| 1905 | |
| 1906 | #define wxImage_GetMaskRed(_swigobj) (_swigobj->GetMaskRed()) |
| 1907 | static PyObject *_wrap_wxImage_GetMaskRed(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1908 | PyObject * _resultobj; |
| 1909 | unsigned char _result; |
| 1910 | wxImage * _arg0; |
| 1911 | PyObject * _argo0 = 0; |
| 1912 | char *_kwnames[] = { "self", NULL }; |
| 1913 | |
| 1914 | self = self; |
| 1915 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_GetMaskRed",_kwnames,&_argo0)) |
| 1916 | return NULL; |
| 1917 | if (_argo0) { |
| 1918 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1919 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1920 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetMaskRed. Expected _wxImage_p."); |
| 1921 | return NULL; |
| 1922 | } |
| 1923 | } |
| 1924 | { |
| 1925 | wxPy_BEGIN_ALLOW_THREADS; |
| 1926 | _result = (unsigned char )wxImage_GetMaskRed(_arg0); |
| 1927 | |
| 1928 | wxPy_END_ALLOW_THREADS; |
| 1929 | if (PyErr_Occurred()) return NULL; |
| 1930 | } _resultobj = Py_BuildValue("b",_result); |
| 1931 | return _resultobj; |
| 1932 | } |
| 1933 | |
| 1934 | #define wxImage_GetMaskGreen(_swigobj) (_swigobj->GetMaskGreen()) |
| 1935 | static PyObject *_wrap_wxImage_GetMaskGreen(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1936 | PyObject * _resultobj; |
| 1937 | unsigned char _result; |
| 1938 | wxImage * _arg0; |
| 1939 | PyObject * _argo0 = 0; |
| 1940 | char *_kwnames[] = { "self", NULL }; |
| 1941 | |
| 1942 | self = self; |
| 1943 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_GetMaskGreen",_kwnames,&_argo0)) |
| 1944 | return NULL; |
| 1945 | if (_argo0) { |
| 1946 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1947 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1948 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetMaskGreen. Expected _wxImage_p."); |
| 1949 | return NULL; |
| 1950 | } |
| 1951 | } |
| 1952 | { |
| 1953 | wxPy_BEGIN_ALLOW_THREADS; |
| 1954 | _result = (unsigned char )wxImage_GetMaskGreen(_arg0); |
| 1955 | |
| 1956 | wxPy_END_ALLOW_THREADS; |
| 1957 | if (PyErr_Occurred()) return NULL; |
| 1958 | } _resultobj = Py_BuildValue("b",_result); |
| 1959 | return _resultobj; |
| 1960 | } |
| 1961 | |
| 1962 | #define wxImage_GetMaskBlue(_swigobj) (_swigobj->GetMaskBlue()) |
| 1963 | static PyObject *_wrap_wxImage_GetMaskBlue(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1964 | PyObject * _resultobj; |
| 1965 | unsigned char _result; |
| 1966 | wxImage * _arg0; |
| 1967 | PyObject * _argo0 = 0; |
| 1968 | char *_kwnames[] = { "self", NULL }; |
| 1969 | |
| 1970 | self = self; |
| 1971 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_GetMaskBlue",_kwnames,&_argo0)) |
| 1972 | return NULL; |
| 1973 | if (_argo0) { |
| 1974 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 1975 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 1976 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_GetMaskBlue. Expected _wxImage_p."); |
| 1977 | return NULL; |
| 1978 | } |
| 1979 | } |
| 1980 | { |
| 1981 | wxPy_BEGIN_ALLOW_THREADS; |
| 1982 | _result = (unsigned char )wxImage_GetMaskBlue(_arg0); |
| 1983 | |
| 1984 | wxPy_END_ALLOW_THREADS; |
| 1985 | if (PyErr_Occurred()) return NULL; |
| 1986 | } _resultobj = Py_BuildValue("b",_result); |
| 1987 | return _resultobj; |
| 1988 | } |
| 1989 | |
| 1990 | #define wxImage_SetMask(_swigobj,_swigarg0) (_swigobj->SetMask(_swigarg0)) |
| 1991 | static PyObject *_wrap_wxImage_SetMask(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 1992 | PyObject * _resultobj; |
| 1993 | wxImage * _arg0; |
| 1994 | bool _arg1 = (bool ) TRUE; |
| 1995 | PyObject * _argo0 = 0; |
| 1996 | int tempbool1 = (int) TRUE; |
| 1997 | char *_kwnames[] = { "self","mask", NULL }; |
| 1998 | |
| 1999 | self = self; |
| 2000 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxImage_SetMask",_kwnames,&_argo0,&tempbool1)) |
| 2001 | return NULL; |
| 2002 | if (_argo0) { |
| 2003 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 2004 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 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 | { |
| 2011 | wxPy_BEGIN_ALLOW_THREADS; |
| 2012 | wxImage_SetMask(_arg0,_arg1); |
| 2013 | |
| 2014 | wxPy_END_ALLOW_THREADS; |
| 2015 | if (PyErr_Occurred()) return NULL; |
| 2016 | } Py_INCREF(Py_None); |
| 2017 | _resultobj = Py_None; |
| 2018 | return _resultobj; |
| 2019 | } |
| 2020 | |
| 2021 | #define wxImage_HasMask(_swigobj) (_swigobj->HasMask()) |
| 2022 | static PyObject *_wrap_wxImage_HasMask(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 2023 | PyObject * _resultobj; |
| 2024 | bool _result; |
| 2025 | wxImage * _arg0; |
| 2026 | PyObject * _argo0 = 0; |
| 2027 | char *_kwnames[] = { "self", NULL }; |
| 2028 | |
| 2029 | self = self; |
| 2030 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_HasMask",_kwnames,&_argo0)) |
| 2031 | return NULL; |
| 2032 | if (_argo0) { |
| 2033 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 2034 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 2035 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_HasMask. Expected _wxImage_p."); |
| 2036 | return NULL; |
| 2037 | } |
| 2038 | } |
| 2039 | { |
| 2040 | wxPy_BEGIN_ALLOW_THREADS; |
| 2041 | _result = (bool )wxImage_HasMask(_arg0); |
| 2042 | |
| 2043 | wxPy_END_ALLOW_THREADS; |
| 2044 | if (PyErr_Occurred()) return NULL; |
| 2045 | } _resultobj = Py_BuildValue("i",_result); |
| 2046 | return _resultobj; |
| 2047 | } |
| 2048 | |
| 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 | { |
| 2090 | wxPy_BEGIN_ALLOW_THREADS; |
| 2091 | _result = new wxImage (wxImage_Rotate(_arg0,_arg1,*_arg2,_arg3,_arg4)); |
| 2092 | |
| 2093 | wxPy_END_ALLOW_THREADS; |
| 2094 | if (PyErr_Occurred()) return NULL; |
| 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 | { |
| 2123 | wxPy_BEGIN_ALLOW_THREADS; |
| 2124 | _result = new wxImage (wxImage_Rotate90(_arg0,_arg1)); |
| 2125 | |
| 2126 | wxPy_END_ALLOW_THREADS; |
| 2127 | if (PyErr_Occurred()) return NULL; |
| 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 | { |
| 2156 | wxPy_BEGIN_ALLOW_THREADS; |
| 2157 | _result = new wxImage (wxImage_Mirror(_arg0,_arg1)); |
| 2158 | |
| 2159 | wxPy_END_ALLOW_THREADS; |
| 2160 | if (PyErr_Occurred()) return NULL; |
| 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 | { |
| 2190 | wxPy_BEGIN_ALLOW_THREADS; |
| 2191 | wxImage_Replace(_arg0,_arg1,_arg2,_arg3,_arg4,_arg5,_arg6); |
| 2192 | |
| 2193 | wxPy_END_ALLOW_THREADS; |
| 2194 | if (PyErr_Occurred()) return NULL; |
| 2195 | } Py_INCREF(Py_None); |
| 2196 | _resultobj = Py_None; |
| 2197 | return _resultobj; |
| 2198 | } |
| 2199 | |
| 2200 | #define wxImage_CountColours(_swigobj,_swigarg0) (_swigobj->CountColours(_swigarg0)) |
| 2201 | static PyObject *_wrap_wxImage_CountColours(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 2202 | PyObject * _resultobj; |
| 2203 | unsigned long _result; |
| 2204 | wxImage * _arg0; |
| 2205 | unsigned long _arg1 = (unsigned long ) (unsigned long)-1; |
| 2206 | PyObject * _argo0 = 0; |
| 2207 | char *_kwnames[] = { "self","stopafter", NULL }; |
| 2208 | |
| 2209 | self = self; |
| 2210 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|l:wxImage_CountColours",_kwnames,&_argo0,&_arg1)) |
| 2211 | return NULL; |
| 2212 | if (_argo0) { |
| 2213 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 2214 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImage_p")) { |
| 2215 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_CountColours. Expected _wxImage_p."); |
| 2216 | return NULL; |
| 2217 | } |
| 2218 | } |
| 2219 | { |
| 2220 | wxPy_BEGIN_ALLOW_THREADS; |
| 2221 | _result = (unsigned long )wxImage_CountColours(_arg0,_arg1); |
| 2222 | |
| 2223 | wxPy_END_ALLOW_THREADS; |
| 2224 | if (PyErr_Occurred()) return NULL; |
| 2225 | } _resultobj = Py_BuildValue("l",_result); |
| 2226 | return _resultobj; |
| 2227 | } |
| 2228 | |
| 2229 | static PyObject *_wrap_wxImage_AddHandler(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 2230 | PyObject * _resultobj; |
| 2231 | wxImageHandler * _arg0; |
| 2232 | PyObject * _argo0 = 0; |
| 2233 | char *_kwnames[] = { "handler", NULL }; |
| 2234 | |
| 2235 | self = self; |
| 2236 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_AddHandler",_kwnames,&_argo0)) |
| 2237 | return NULL; |
| 2238 | if (_argo0) { |
| 2239 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 2240 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { |
| 2241 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_AddHandler. Expected _wxImageHandler_p."); |
| 2242 | return NULL; |
| 2243 | } |
| 2244 | } |
| 2245 | { |
| 2246 | wxPy_BEGIN_ALLOW_THREADS; |
| 2247 | wxImage::AddHandler(_arg0); |
| 2248 | |
| 2249 | wxPy_END_ALLOW_THREADS; |
| 2250 | if (PyErr_Occurred()) return NULL; |
| 2251 | } Py_INCREF(Py_None); |
| 2252 | _resultobj = Py_None; |
| 2253 | return _resultobj; |
| 2254 | } |
| 2255 | |
| 2256 | static PyObject *_wrap_wxImage_InsertHandler(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 2257 | PyObject * _resultobj; |
| 2258 | wxImageHandler * _arg0; |
| 2259 | PyObject * _argo0 = 0; |
| 2260 | char *_kwnames[] = { "handler", NULL }; |
| 2261 | |
| 2262 | self = self; |
| 2263 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_InsertHandler",_kwnames,&_argo0)) |
| 2264 | return NULL; |
| 2265 | if (_argo0) { |
| 2266 | if (_argo0 == Py_None) { _arg0 = NULL; } |
| 2267 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxImageHandler_p")) { |
| 2268 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxImage_InsertHandler. Expected _wxImageHandler_p."); |
| 2269 | return NULL; |
| 2270 | } |
| 2271 | } |
| 2272 | { |
| 2273 | wxPy_BEGIN_ALLOW_THREADS; |
| 2274 | wxImage::InsertHandler(_arg0); |
| 2275 | |
| 2276 | wxPy_END_ALLOW_THREADS; |
| 2277 | if (PyErr_Occurred()) return NULL; |
| 2278 | } Py_INCREF(Py_None); |
| 2279 | _resultobj = Py_None; |
| 2280 | return _resultobj; |
| 2281 | } |
| 2282 | |
| 2283 | static PyObject *_wrap_wxImage_RemoveHandler(PyObject *self, PyObject *args, PyObject *kwargs) { |
| 2284 | PyObject * _resultobj; |
| 2285 | bool _result; |
| 2286 | wxString * _arg0; |
| 2287 | PyObject * _obj0 = 0; |
| 2288 | char *_kwnames[] = { "name", NULL }; |
| 2289 | |
| 2290 | self = self; |
| 2291 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxImage_RemoveHandler",_kwnames,&_obj0)) |
| 2292 | return NULL; |
| 2293 | { |
| 2294 | #if PYTHON_API_VERSION >= 1009 |
| 2295 | char* tmpPtr; int tmpSize; |
| 2296 | if (!PyString_Check(_obj0) && !PyUnicode_Check(_obj0)) { |
| 2297 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 2298 | return NULL; |
| 2299 | } |
| 2300 | if (PyString_AsStringAndSize(_obj0, &tmpPtr, &tmpSize) == -1) |
| 2301 | return NULL; |
| 2302 | _arg0 = new wxString(tmpPtr, tmpSize); |
| 2303 | #else |
| 2304 | if (!PyString_Check(_obj0)) { |
| 2305 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); |
| 2306 | return NULL; |
| 2307 | } |
| 2308 | _arg0 = new wxString(PyString_AS_STRING(_obj0), PyString_GET_SIZE(_obj0)); |
| 2309 | #endif |
| 2310 | } |
| 2311 | { |
| 2312 | wxPy_BEGIN_ALLOW_THREADS; |
| 2313 | _result = (bool )wxImage::RemoveHandler(*_arg0); |
| 2314 | |
| 2315 | wxPy_END_ALLOW_THREADS; |
| 2316 | if (PyErr_Occurred()) return NULL; |
| 2317 | } _resultobj = Py_BuildValue("i",_result); |
| 2318 | { |
| 2319 | if (_obj0) |
| 2320 | delete _arg0; |
| 2321 | } |
| 2322 | return _resultobj; |
| 2323 | } |
| 2324 | |
| 2325 | static PyMethodDef imagecMethods[] = { |
| 2326 | { "wxImage_RemoveHandler", (PyCFunction) _wrap_wxImage_RemoveHandler, METH_VARARGS | METH_KEYWORDS }, |
| 2327 | { "wxImage_InsertHandler", (PyCFunction) _wrap_wxImage_InsertHandler, METH_VARARGS | METH_KEYWORDS }, |
| 2328 | { "wxImage_AddHandler", (PyCFunction) _wrap_wxImage_AddHandler, METH_VARARGS | METH_KEYWORDS }, |
| 2329 | { "wxImage_CountColours", (PyCFunction) _wrap_wxImage_CountColours, METH_VARARGS | METH_KEYWORDS }, |
| 2330 | { "wxImage_Replace", (PyCFunction) _wrap_wxImage_Replace, METH_VARARGS | METH_KEYWORDS }, |
| 2331 | { "wxImage_Mirror", (PyCFunction) _wrap_wxImage_Mirror, METH_VARARGS | METH_KEYWORDS }, |
| 2332 | { "wxImage_Rotate90", (PyCFunction) _wrap_wxImage_Rotate90, METH_VARARGS | METH_KEYWORDS }, |
| 2333 | { "wxImage_Rotate", (PyCFunction) _wrap_wxImage_Rotate, METH_VARARGS | METH_KEYWORDS }, |
| 2334 | { "wxImage_HasMask", (PyCFunction) _wrap_wxImage_HasMask, METH_VARARGS | METH_KEYWORDS }, |
| 2335 | { "wxImage_SetMask", (PyCFunction) _wrap_wxImage_SetMask, METH_VARARGS | METH_KEYWORDS }, |
| 2336 | { "wxImage_GetMaskBlue", (PyCFunction) _wrap_wxImage_GetMaskBlue, METH_VARARGS | METH_KEYWORDS }, |
| 2337 | { "wxImage_GetMaskGreen", (PyCFunction) _wrap_wxImage_GetMaskGreen, METH_VARARGS | METH_KEYWORDS }, |
| 2338 | { "wxImage_GetMaskRed", (PyCFunction) _wrap_wxImage_GetMaskRed, METH_VARARGS | METH_KEYWORDS }, |
| 2339 | { "wxImage_SetMaskColour", (PyCFunction) _wrap_wxImage_SetMaskColour, METH_VARARGS | METH_KEYWORDS }, |
| 2340 | { "wxImage_SetData", (PyCFunction) _wrap_wxImage_SetData, METH_VARARGS | METH_KEYWORDS }, |
| 2341 | { "wxImage_GetData", (PyCFunction) _wrap_wxImage_GetData, METH_VARARGS | METH_KEYWORDS }, |
| 2342 | { "wxImage_Paste", (PyCFunction) _wrap_wxImage_Paste, METH_VARARGS | METH_KEYWORDS }, |
| 2343 | { "wxImage_Copy", (PyCFunction) _wrap_wxImage_Copy, METH_VARARGS | METH_KEYWORDS }, |
| 2344 | { "wxImage_GetSubImage", (PyCFunction) _wrap_wxImage_GetSubImage, METH_VARARGS | METH_KEYWORDS }, |
| 2345 | { "wxImage_GetHeight", (PyCFunction) _wrap_wxImage_GetHeight, METH_VARARGS | METH_KEYWORDS }, |
| 2346 | { "wxImage_GetWidth", (PyCFunction) _wrap_wxImage_GetWidth, METH_VARARGS | METH_KEYWORDS }, |
| 2347 | { "wxImage_Ok", (PyCFunction) _wrap_wxImage_Ok, METH_VARARGS | METH_KEYWORDS }, |
| 2348 | { "wxImage_SaveMimeFile", (PyCFunction) _wrap_wxImage_SaveMimeFile, METH_VARARGS | METH_KEYWORDS }, |
| 2349 | { "wxImage_SaveFile", (PyCFunction) _wrap_wxImage_SaveFile, METH_VARARGS | METH_KEYWORDS }, |
| 2350 | { "wxImage_LoadMimeFile", (PyCFunction) _wrap_wxImage_LoadMimeFile, METH_VARARGS | METH_KEYWORDS }, |
| 2351 | { "wxImage_LoadFile", (PyCFunction) _wrap_wxImage_LoadFile, METH_VARARGS | METH_KEYWORDS }, |
| 2352 | { "wxImage_CanRead", (PyCFunction) _wrap_wxImage_CanRead, METH_VARARGS | METH_KEYWORDS }, |
| 2353 | { "wxImage_GetBlue", (PyCFunction) _wrap_wxImage_GetBlue, METH_VARARGS | METH_KEYWORDS }, |
| 2354 | { "wxImage_GetGreen", (PyCFunction) _wrap_wxImage_GetGreen, METH_VARARGS | METH_KEYWORDS }, |
| 2355 | { "wxImage_GetRed", (PyCFunction) _wrap_wxImage_GetRed, METH_VARARGS | METH_KEYWORDS }, |
| 2356 | { "wxImage_SetRGB", (PyCFunction) _wrap_wxImage_SetRGB, METH_VARARGS | METH_KEYWORDS }, |
| 2357 | { "wxImage_Rescale", (PyCFunction) _wrap_wxImage_Rescale, METH_VARARGS | METH_KEYWORDS }, |
| 2358 | { "wxImage_Scale", (PyCFunction) _wrap_wxImage_Scale, METH_VARARGS | METH_KEYWORDS }, |
| 2359 | { "wxImage_Destroy", (PyCFunction) _wrap_wxImage_Destroy, METH_VARARGS | METH_KEYWORDS }, |
| 2360 | { "wxImage_Create", (PyCFunction) _wrap_wxImage_Create, METH_VARARGS | METH_KEYWORDS }, |
| 2361 | { "wxImage_ConvertToBitmap", (PyCFunction) _wrap_wxImage_ConvertToBitmap, METH_VARARGS | METH_KEYWORDS }, |
| 2362 | { "delete_wxImage", (PyCFunction) _wrap_delete_wxImage, METH_VARARGS | METH_KEYWORDS }, |
| 2363 | { "new_wxImage", (PyCFunction) _wrap_new_wxImage, METH_VARARGS | METH_KEYWORDS }, |
| 2364 | { "new_wxTIFFHandler", (PyCFunction) _wrap_new_wxTIFFHandler, METH_VARARGS | METH_KEYWORDS }, |
| 2365 | { "new_wxPCXHandler", (PyCFunction) _wrap_new_wxPCXHandler, METH_VARARGS | METH_KEYWORDS }, |
| 2366 | { "new_wxPNMHandler", (PyCFunction) _wrap_new_wxPNMHandler, METH_VARARGS | METH_KEYWORDS }, |
| 2367 | { "new_wxGIFHandler", (PyCFunction) _wrap_new_wxGIFHandler, METH_VARARGS | METH_KEYWORDS }, |
| 2368 | { "new_wxBMPHandler", (PyCFunction) _wrap_new_wxBMPHandler, METH_VARARGS | METH_KEYWORDS }, |
| 2369 | { "new_wxJPEGHandler", (PyCFunction) _wrap_new_wxJPEGHandler, METH_VARARGS | METH_KEYWORDS }, |
| 2370 | { "new_wxPNGHandler", (PyCFunction) _wrap_new_wxPNGHandler, METH_VARARGS | METH_KEYWORDS }, |
| 2371 | { "wxImageHandler_SetMimeType", (PyCFunction) _wrap_wxImageHandler_SetMimeType, METH_VARARGS | METH_KEYWORDS }, |
| 2372 | { "wxImageHandler_SetType", (PyCFunction) _wrap_wxImageHandler_SetType, METH_VARARGS | METH_KEYWORDS }, |
| 2373 | { "wxImageHandler_SetExtension", (PyCFunction) _wrap_wxImageHandler_SetExtension, METH_VARARGS | METH_KEYWORDS }, |
| 2374 | { "wxImageHandler_SetName", (PyCFunction) _wrap_wxImageHandler_SetName, METH_VARARGS | METH_KEYWORDS }, |
| 2375 | { "wxImageHandler_GetMimeType", (PyCFunction) _wrap_wxImageHandler_GetMimeType, METH_VARARGS | METH_KEYWORDS }, |
| 2376 | { "wxImageHandler_GetType", (PyCFunction) _wrap_wxImageHandler_GetType, METH_VARARGS | METH_KEYWORDS }, |
| 2377 | { "wxImageHandler_GetExtension", (PyCFunction) _wrap_wxImageHandler_GetExtension, METH_VARARGS | METH_KEYWORDS }, |
| 2378 | { "wxImageHandler_GetName", (PyCFunction) _wrap_wxImageHandler_GetName, METH_VARARGS | METH_KEYWORDS }, |
| 2379 | { "wxBitmapFromImage", (PyCFunction) _wrap_wxBitmapFromImage, METH_VARARGS | METH_KEYWORDS }, |
| 2380 | { "wxInitAllImageHandlers", (PyCFunction) _wrap_wxInitAllImageHandlers, METH_VARARGS | METH_KEYWORDS }, |
| 2381 | { "wxImageFromBitmap", (PyCFunction) _wrap_wxImageFromBitmap, METH_VARARGS | METH_KEYWORDS }, |
| 2382 | { "wxImageFromMime", (PyCFunction) _wrap_wxImageFromMime, METH_VARARGS | METH_KEYWORDS }, |
| 2383 | { "wxEmptyImage", (PyCFunction) _wrap_wxEmptyImage, METH_VARARGS | METH_KEYWORDS }, |
| 2384 | { NULL, NULL } |
| 2385 | }; |
| 2386 | #ifdef __cplusplus |
| 2387 | } |
| 2388 | #endif |
| 2389 | /* |
| 2390 | * This table is used by the pointer type-checker |
| 2391 | */ |
| 2392 | static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = { |
| 2393 | { "_signed_long","_long",0}, |
| 2394 | { "_wxPrintQuality","_wxCoord",0}, |
| 2395 | { "_wxPrintQuality","_int",0}, |
| 2396 | { "_wxPrintQuality","_signed_int",0}, |
| 2397 | { "_wxPrintQuality","_unsigned_int",0}, |
| 2398 | { "_wxPrintQuality","_wxWindowID",0}, |
| 2399 | { "_wxPrintQuality","_uint",0}, |
| 2400 | { "_wxPrintQuality","_EBool",0}, |
| 2401 | { "_wxPrintQuality","_size_t",0}, |
| 2402 | { "_wxPrintQuality","_time_t",0}, |
| 2403 | { "_wxImageHandler","_wxTIFFHandler",SwigwxTIFFHandlerTowxImageHandler}, |
| 2404 | { "_wxImageHandler","_wxPCXHandler",SwigwxPCXHandlerTowxImageHandler}, |
| 2405 | { "_wxImageHandler","_wxPNMHandler",SwigwxPNMHandlerTowxImageHandler}, |
| 2406 | { "_wxImageHandler","_wxGIFHandler",SwigwxGIFHandlerTowxImageHandler}, |
| 2407 | { "_wxImageHandler","_wxBMPHandler",SwigwxBMPHandlerTowxImageHandler}, |
| 2408 | { "_wxImageHandler","_wxJPEGHandler",SwigwxJPEGHandlerTowxImageHandler}, |
| 2409 | { "_wxImageHandler","_wxPNGHandler",SwigwxPNGHandlerTowxImageHandler}, |
| 2410 | { "_byte","_unsigned_char",0}, |
| 2411 | { "_long","_unsigned_long",0}, |
| 2412 | { "_long","_signed_long",0}, |
| 2413 | { "_size_t","_wxCoord",0}, |
| 2414 | { "_size_t","_wxPrintQuality",0}, |
| 2415 | { "_size_t","_time_t",0}, |
| 2416 | { "_size_t","_unsigned_int",0}, |
| 2417 | { "_size_t","_int",0}, |
| 2418 | { "_size_t","_wxWindowID",0}, |
| 2419 | { "_size_t","_uint",0}, |
| 2420 | { "_uint","_wxCoord",0}, |
| 2421 | { "_uint","_wxPrintQuality",0}, |
| 2422 | { "_uint","_time_t",0}, |
| 2423 | { "_uint","_size_t",0}, |
| 2424 | { "_uint","_unsigned_int",0}, |
| 2425 | { "_uint","_int",0}, |
| 2426 | { "_uint","_wxWindowID",0}, |
| 2427 | { "_wxChar","_char",0}, |
| 2428 | { "_char","_wxChar",0}, |
| 2429 | { "_EBool","_wxCoord",0}, |
| 2430 | { "_EBool","_wxPrintQuality",0}, |
| 2431 | { "_EBool","_signed_int",0}, |
| 2432 | { "_EBool","_int",0}, |
| 2433 | { "_EBool","_wxWindowID",0}, |
| 2434 | { "_unsigned_long","_long",0}, |
| 2435 | { "_signed_int","_wxCoord",0}, |
| 2436 | { "_signed_int","_wxPrintQuality",0}, |
| 2437 | { "_signed_int","_EBool",0}, |
| 2438 | { "_signed_int","_wxWindowID",0}, |
| 2439 | { "_signed_int","_int",0}, |
| 2440 | { "_WXTYPE","_short",0}, |
| 2441 | { "_WXTYPE","_signed_short",0}, |
| 2442 | { "_WXTYPE","_unsigned_short",0}, |
| 2443 | { "_unsigned_short","_WXTYPE",0}, |
| 2444 | { "_unsigned_short","_short",0}, |
| 2445 | { "_wxObject","_wxImage",SwigwxImageTowxObject}, |
| 2446 | { "_wxObject","_wxTIFFHandler",SwigwxTIFFHandlerTowxObject}, |
| 2447 | { "_wxObject","_wxPCXHandler",SwigwxPCXHandlerTowxObject}, |
| 2448 | { "_wxObject","_wxPNMHandler",SwigwxPNMHandlerTowxObject}, |
| 2449 | { "_wxObject","_wxGIFHandler",SwigwxGIFHandlerTowxObject}, |
| 2450 | { "_wxObject","_wxBMPHandler",SwigwxBMPHandlerTowxObject}, |
| 2451 | { "_wxObject","_wxJPEGHandler",SwigwxJPEGHandlerTowxObject}, |
| 2452 | { "_wxObject","_wxPNGHandler",SwigwxPNGHandlerTowxObject}, |
| 2453 | { "_wxObject","_wxImageHandler",SwigwxImageHandlerTowxObject}, |
| 2454 | { "_signed_short","_WXTYPE",0}, |
| 2455 | { "_signed_short","_short",0}, |
| 2456 | { "_unsigned_char","_byte",0}, |
| 2457 | { "_unsigned_int","_wxCoord",0}, |
| 2458 | { "_unsigned_int","_wxPrintQuality",0}, |
| 2459 | { "_unsigned_int","_time_t",0}, |
| 2460 | { "_unsigned_int","_size_t",0}, |
| 2461 | { "_unsigned_int","_uint",0}, |
| 2462 | { "_unsigned_int","_wxWindowID",0}, |
| 2463 | { "_unsigned_int","_int",0}, |
| 2464 | { "_short","_WXTYPE",0}, |
| 2465 | { "_short","_unsigned_short",0}, |
| 2466 | { "_short","_signed_short",0}, |
| 2467 | { "_wxWindowID","_wxCoord",0}, |
| 2468 | { "_wxWindowID","_wxPrintQuality",0}, |
| 2469 | { "_wxWindowID","_time_t",0}, |
| 2470 | { "_wxWindowID","_size_t",0}, |
| 2471 | { "_wxWindowID","_EBool",0}, |
| 2472 | { "_wxWindowID","_uint",0}, |
| 2473 | { "_wxWindowID","_int",0}, |
| 2474 | { "_wxWindowID","_signed_int",0}, |
| 2475 | { "_wxWindowID","_unsigned_int",0}, |
| 2476 | { "_int","_wxCoord",0}, |
| 2477 | { "_int","_wxPrintQuality",0}, |
| 2478 | { "_int","_time_t",0}, |
| 2479 | { "_int","_size_t",0}, |
| 2480 | { "_int","_EBool",0}, |
| 2481 | { "_int","_uint",0}, |
| 2482 | { "_int","_wxWindowID",0}, |
| 2483 | { "_int","_unsigned_int",0}, |
| 2484 | { "_int","_signed_int",0}, |
| 2485 | { "_time_t","_wxCoord",0}, |
| 2486 | { "_time_t","_wxPrintQuality",0}, |
| 2487 | { "_time_t","_unsigned_int",0}, |
| 2488 | { "_time_t","_int",0}, |
| 2489 | { "_time_t","_wxWindowID",0}, |
| 2490 | { "_time_t","_uint",0}, |
| 2491 | { "_time_t","_size_t",0}, |
| 2492 | { "_wxCoord","_int",0}, |
| 2493 | { "_wxCoord","_signed_int",0}, |
| 2494 | { "_wxCoord","_unsigned_int",0}, |
| 2495 | { "_wxCoord","_wxWindowID",0}, |
| 2496 | { "_wxCoord","_uint",0}, |
| 2497 | { "_wxCoord","_EBool",0}, |
| 2498 | { "_wxCoord","_size_t",0}, |
| 2499 | { "_wxCoord","_time_t",0}, |
| 2500 | { "_wxCoord","_wxPrintQuality",0}, |
| 2501 | {0,0,0}}; |
| 2502 | |
| 2503 | static PyObject *SWIG_globals; |
| 2504 | #ifdef __cplusplus |
| 2505 | extern "C" |
| 2506 | #endif |
| 2507 | SWIGEXPORT(void) initimagec() { |
| 2508 | PyObject *m, *d; |
| 2509 | SWIG_globals = SWIG_newvarlink(); |
| 2510 | m = Py_InitModule("imagec", imagecMethods); |
| 2511 | d = PyModule_GetDict(m); |
| 2512 | PyDict_SetItemString(d,"cvar", SWIG_globals); |
| 2513 | SWIG_addvarlink(SWIG_globals,"wxNullImage",_wrap_wxNullImage_get, _wrap_wxNullImage_set); |
| 2514 | { |
| 2515 | int i; |
| 2516 | for (i = 0; _swig_mapping[i].n1; i++) |
| 2517 | SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv); |
| 2518 | } |
| 2519 | } |