]> Dogcows Code - chaz/openbox/blob - otk/otk_wrap.cc
ignore num/caps/scroll lock in events
[chaz/openbox] / otk / otk_wrap.cc
1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
3 * Version 1.3.17u-20021226-0459
4 *
5 * This file is not intended to be easily readable and contains a number of
6 * coding conventions designed to improve portability and efficiency. Do not make
7 * changes to this file unless you know what you are doing--modify the SWIG
8 * interface file instead.
9 * ----------------------------------------------------------------------------- */
10
11 #define SWIGPYTHON
12
13 #ifdef __cplusplus
14 template<class T> class SwigValueWrapper {
15 T *tt;
16 public:
17 inline SwigValueWrapper() : tt(0) { }
18 inline ~SwigValueWrapper() { if (tt) delete tt; }
19 inline SwigValueWrapper& operator=(const T& t) { tt = new T(t); return *this; }
20 inline operator T&() const { return *tt; }
21 inline T *operator&() { return tt; }
22 };
23 #endif
24
25
26 #include "Python.h"
27
28 /***********************************************************************
29 * common.swg
30 *
31 * This file contains generic SWIG runtime support for pointer
32 * type checking as well as a few commonly used macros to control
33 * external linkage.
34 *
35 * Author : David Beazley (beazley@cs.uchicago.edu)
36 *
37 * Copyright (c) 1999-2000, The University of Chicago
38 *
39 * This file may be freely redistributed without license or fee provided
40 * this copyright message remains intact.
41 ************************************************************************/
42
43 #include <string.h>
44
45 #if defined(_WIN32) || defined(__WIN32__)
46 # if defined(_MSC_VER)
47 # if defined(STATIC_LINKED)
48 # define SWIGEXPORT(a) a
49 # define SWIGIMPORT(a) extern a
50 # else
51 # define SWIGEXPORT(a) __declspec(dllexport) a
52 # define SWIGIMPORT(a) extern a
53 # endif
54 # else
55 # if defined(__BORLANDC__)
56 # define SWIGEXPORT(a) a _export
57 # define SWIGIMPORT(a) a _export
58 # else
59 # define SWIGEXPORT(a) a
60 # define SWIGIMPORT(a) a
61 # endif
62 # endif
63 #else
64 # define SWIGEXPORT(a) a
65 # define SWIGIMPORT(a) a
66 #endif
67
68 #ifdef SWIG_GLOBAL
69 #define SWIGRUNTIME(a) SWIGEXPORT(a)
70 #else
71 #define SWIGRUNTIME(a) static a
72 #endif
73
74 #ifdef __cplusplus
75 extern "C" {
76 #endif
77
78 typedef void *(*swig_converter_func)(void *);
79 typedef struct swig_type_info *(*swig_dycast_func)(void **);
80
81 typedef struct swig_type_info {
82 const char *name;
83 swig_converter_func converter;
84 const char *str;
85 void *clientdata;
86 swig_dycast_func dcast;
87 struct swig_type_info *next;
88 struct swig_type_info *prev;
89 } swig_type_info;
90
91 #ifdef SWIG_NOINCLUDE
92
93 SWIGIMPORT(swig_type_info *) SWIG_TypeRegister(swig_type_info *);
94 SWIGIMPORT(swig_type_info *) SWIG_TypeCheck(char *c, swig_type_info *);
95 SWIGIMPORT(void *) SWIG_TypeCast(swig_type_info *, void *);
96 SWIGIMPORT(swig_type_info *) SWIG_TypeDynamicCast(swig_type_info *, void **);
97 SWIGIMPORT(swig_type_info *) SWIG_TypeQuery(const char *);
98 SWIGIMPORT(void) SWIG_TypeClientData(swig_type_info *, void *);
99
100 #else
101
102 static swig_type_info *swig_type_list = 0;
103
104 /* Register a type mapping with the type-checking */
105 SWIGRUNTIME(swig_type_info *)
106 SWIG_TypeRegister(swig_type_info *ti)
107 {
108 swig_type_info *tc, *head, *ret, *next;
109 /* Check to see if this type has already been registered */
110 tc = swig_type_list;
111 while (tc) {
112 if (strcmp(tc->name, ti->name) == 0) {
113 /* Already exists in the table. Just add additional types to the list */
114 if (tc->clientdata) ti->clientdata = tc->clientdata;
115 head = tc;
116 next = tc->next;
117 goto l1;
118 }
119 tc = tc->prev;
120 }
121 head = ti;
122 next = 0;
123
124 /* Place in list */
125 ti->prev = swig_type_list;
126 swig_type_list = ti;
127
128 /* Build linked lists */
129 l1:
130 ret = head;
131 tc = ti + 1;
132 /* Patch up the rest of the links */
133 while (tc->name) {
134 head->next = tc;
135 tc->prev = head;
136 head = tc;
137 tc++;
138 }
139 head->next = next;
140 return ret;
141 }
142
143 /* Check the typename */
144 SWIGRUNTIME(swig_type_info *)
145 SWIG_TypeCheck(char *c, swig_type_info *ty)
146 {
147 swig_type_info *s;
148 if (!ty) return 0; /* Void pointer */
149 s = ty->next; /* First element always just a name */
150 do {
151 if (strcmp(s->name,c) == 0) {
152 if (s == ty->next) return s;
153 /* Move s to the top of the linked list */
154 s->prev->next = s->next;
155 if (s->next) {
156 s->next->prev = s->prev;
157 }
158 /* Insert s as second element in the list */
159 s->next = ty->next;
160 if (ty->next) ty->next->prev = s;
161 ty->next = s;
162 return s;
163 }
164 s = s->next;
165 } while (s && (s != ty->next));
166 return 0;
167 }
168
169 /* Cast a pointer up an inheritance hierarchy */
170 SWIGRUNTIME(void *)
171 SWIG_TypeCast(swig_type_info *ty, void *ptr)
172 {
173 if ((!ty) || (!ty->converter)) return ptr;
174 return (*ty->converter)(ptr);
175 }
176
177 /* Dynamic pointer casting. Down an inheritance hierarchy */
178 SWIGRUNTIME(swig_type_info *)
179 SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr)
180 {
181 swig_type_info *lastty = ty;
182 if (!ty || !ty->dcast) return ty;
183 while (ty && (ty->dcast)) {
184 ty = (*ty->dcast)(ptr);
185 if (ty) lastty = ty;
186 }
187 return lastty;
188 }
189
190 /* Search for a swig_type_info structure */
191 SWIGRUNTIME(swig_type_info *)
192 SWIG_TypeQuery(const char *name) {
193 swig_type_info *ty = swig_type_list;
194 while (ty) {
195 if (ty->str && (strcmp(name,ty->str) == 0)) return ty;
196 if (ty->name && (strcmp(name,ty->name) == 0)) return ty;
197 ty = ty->prev;
198 }
199 return 0;
200 }
201
202 /* Set the clientdata field for a type */
203 SWIGRUNTIME(void)
204 SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {
205 swig_type_info *tc, *equiv;
206 if (ti->clientdata == clientdata) return;
207 ti->clientdata = clientdata;
208 equiv = ti->next;
209 while (equiv) {
210 if (!equiv->converter) {
211 tc = swig_type_list;
212 while (tc) {
213 if ((strcmp(tc->name, equiv->name) == 0))
214 SWIG_TypeClientData(tc,clientdata);
215 tc = tc->prev;
216 }
217 }
218 equiv = equiv->next;
219 }
220 }
221 #endif
222
223 #ifdef __cplusplus
224 }
225
226 #endif
227
228 /***********************************************************************
229 * python.swg
230 *
231 * This file contains the runtime support for Python modules
232 * and includes code for managing global variables and pointer
233 * type checking.
234 *
235 * Author : David Beazley (beazley@cs.uchicago.edu)
236 ************************************************************************/
237
238 #include "Python.h"
239
240 #ifdef __cplusplus
241 extern "C" {
242 #endif
243
244 #define SWIG_PY_INT 1
245 #define SWIG_PY_FLOAT 2
246 #define SWIG_PY_STRING 3
247 #define SWIG_PY_POINTER 4
248 #define SWIG_PY_BINARY 5
249
250 /* Flags for pointer conversion */
251
252 #define SWIG_POINTER_EXCEPTION 0x1
253 #define SWIG_POINTER_DISOWN 0x2
254
255 /* Exception handling in wrappers */
256 #define SWIG_fail goto fail
257
258 /* Constant information structure */
259 typedef struct swig_const_info {
260 int type;
261 char *name;
262 long lvalue;
263 double dvalue;
264 void *pvalue;
265 swig_type_info **ptype;
266 } swig_const_info;
267
268 #ifdef SWIG_NOINCLUDE
269
270 SWIGEXPORT(PyObject *) SWIG_newvarlink();
271 SWIGEXPORT(void) SWIG_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *));
272 SWIGEXPORT(int) SWIG_ConvertPtr(PyObject *, void **, swig_type_info *, int);
273 SWIGEXPORT(int) SWIG_ConvertPacked(PyObject *, void *, int sz, swig_type_info *, int);
274 SWIGEXPORT(char *) SWIG_PackData(char *c, void *, int);
275 SWIGEXPORT(char *) SWIG_UnpackData(char *c, void *, int);
276 SWIGEXPORT(PyObject *) SWIG_NewPointerObj(void *, swig_type_info *,int own);
277 SWIGEXPORT(PyObject *) SWIG_NewPackedObj(void *, int sz, swig_type_info *);
278 SWIGEXPORT(void) SWIG_InstallConstants(PyObject *d, swig_const_info constants[]);
279 #else
280
281 /* -----------------------------------------------------------------------------
282 * global variable support code.
283 * ----------------------------------------------------------------------------- */
284
285 typedef struct swig_globalvar {
286 char *name; /* Name of global variable */
287 PyObject *(*get_attr)(void); /* Return the current value */
288 int (*set_attr)(PyObject *); /* Set the value */
289 struct swig_globalvar *next;
290 } swig_globalvar;
291
292 typedef struct swig_varlinkobject {
293 PyObject_HEAD
294 swig_globalvar *vars;
295 } swig_varlinkobject;
296
297 static PyObject *
298 swig_varlink_repr(swig_varlinkobject *v) {
299 v = v;
300 return PyString_FromString("<Global variables>");
301 }
302
303 static int
304 swig_varlink_print(swig_varlinkobject *v, FILE *fp, int flags) {
305 swig_globalvar *var;
306 flags = flags;
307 fprintf(fp,"Global variables { ");
308 for (var = v->vars; var; var=var->next) {
309 fprintf(fp,"%s", var->name);
310 if (var->next) fprintf(fp,", ");
311 }
312 fprintf(fp," }\n");
313 return 0;
314 }
315
316 static PyObject *
317 swig_varlink_getattr(swig_varlinkobject *v, char *n) {
318 swig_globalvar *var = v->vars;
319 while (var) {
320 if (strcmp(var->name,n) == 0) {
321 return (*var->get_attr)();
322 }
323 var = var->next;
324 }
325 PyErr_SetString(PyExc_NameError,"Unknown C global variable");
326 return NULL;
327 }
328
329 static int
330 swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) {
331 swig_globalvar *var = v->vars;
332 while (var) {
333 if (strcmp(var->name,n) == 0) {
334 return (*var->set_attr)(p);
335 }
336 var = var->next;
337 }
338 PyErr_SetString(PyExc_NameError,"Unknown C global variable");
339 return 1;
340 }
341
342 statichere PyTypeObject varlinktype = {
343 PyObject_HEAD_INIT(0)
344 0,
345 (char *)"swigvarlink", /* Type name */
346 sizeof(swig_varlinkobject), /* Basic size */
347 0, /* Itemsize */
348 0, /* Deallocator */
349 (printfunc) swig_varlink_print, /* Print */
350 (getattrfunc) swig_varlink_getattr, /* get attr */
351 (setattrfunc) swig_varlink_setattr, /* Set attr */
352 0, /* tp_compare */
353 (reprfunc) swig_varlink_repr, /* tp_repr */
354 0, /* tp_as_number */
355 0, /* tp_as_mapping*/
356 0, /* tp_hash */
357 };
358
359 /* Create a variable linking object for use later */
360 SWIGRUNTIME(PyObject *)
361 SWIG_newvarlink(void) {
362 swig_varlinkobject *result = 0;
363 result = PyMem_NEW(swig_varlinkobject,1);
364 varlinktype.ob_type = &PyType_Type; /* Patch varlinktype into a PyType */
365 result->ob_type = &varlinktype;
366 result->vars = 0;
367 result->ob_refcnt = 0;
368 Py_XINCREF((PyObject *) result);
369 return ((PyObject*) result);
370 }
371
372 SWIGRUNTIME(void)
373 SWIG_addvarlink(PyObject *p, char *name,
374 PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) {
375 swig_varlinkobject *v;
376 swig_globalvar *gv;
377 v= (swig_varlinkobject *) p;
378 gv = (swig_globalvar *) malloc(sizeof(swig_globalvar));
379 gv->name = (char *) malloc(strlen(name)+1);
380 strcpy(gv->name,name);
381 gv->get_attr = get_attr;
382 gv->set_attr = set_attr;
383 gv->next = v->vars;
384 v->vars = gv;
385 }
386
387 /* Pack binary data into a string */
388 SWIGRUNTIME(char *)
389 SWIG_PackData(char *c, void *ptr, int sz) {
390 static char hex[17] = "0123456789abcdef";
391 int i;
392 unsigned char *u = (unsigned char *) ptr;
393 register unsigned char uu;
394 for (i = 0; i < sz; i++,u++) {
395 uu = *u;
396 *(c++) = hex[(uu & 0xf0) >> 4];
397 *(c++) = hex[uu & 0xf];
398 }
399 return c;
400 }
401
402 /* Unpack binary data from a string */
403 SWIGRUNTIME(char *)
404 SWIG_UnpackData(char *c, void *ptr, int sz) {
405 register unsigned char uu = 0;
406 register int d;
407 unsigned char *u = (unsigned char *) ptr;
408 int i;
409 for (i = 0; i < sz; i++, u++) {
410 d = *(c++);
411 if ((d >= '0') && (d <= '9'))
412 uu = ((d - '0') << 4);
413 else if ((d >= 'a') && (d <= 'f'))
414 uu = ((d - ('a'-10)) << 4);
415 d = *(c++);
416 if ((d >= '0') && (d <= '9'))
417 uu |= (d - '0');
418 else if ((d >= 'a') && (d <= 'f'))
419 uu |= (d - ('a'-10));
420 *u = uu;
421 }
422 return c;
423 }
424
425 /* Convert a pointer value */
426 SWIGRUNTIME(int)
427 SWIG_ConvertPtr(PyObject *obj, void **ptr, swig_type_info *ty, int flags) {
428 swig_type_info *tc;
429 char *c;
430 static PyObject *SWIG_this = 0;
431 int newref = 0;
432 PyObject *pyobj = 0;
433
434 if (!obj) return 0;
435 if (obj == Py_None) {
436 *ptr = 0;
437 return 0;
438 }
439 #ifdef SWIG_COBJECT_TYPES
440 if (!(PyCObject_Check(obj))) {
441 if (!SWIG_this)
442 SWIG_this = PyString_FromString("this");
443 pyobj = obj;
444 obj = PyObject_GetAttr(obj,SWIG_this);
445 newref = 1;
446 if (!obj) goto type_error;
447 if (!PyCObject_Check(obj)) {
448 Py_DECREF(obj);
449 goto type_error;
450 }
451 }
452 *ptr = PyCObject_AsVoidPtr(obj);
453 c = (char *) PyCObject_GetDesc(obj);
454 if (newref) Py_DECREF(obj);
455 goto cobject;
456 #else
457 if (!(PyString_Check(obj))) {
458 if (!SWIG_this)
459 SWIG_this = PyString_FromString("this");
460 pyobj = obj;
461 obj = PyObject_GetAttr(obj,SWIG_this);
462 newref = 1;
463 if (!obj) goto type_error;
464 if (!PyString_Check(obj)) {
465 Py_DECREF(obj);
466 goto type_error;
467 }
468 }
469 c = PyString_AsString(obj);
470 /* Pointer values must start with leading underscore */
471 if (*c != '_') {
472 *ptr = (void *) 0;
473 if (strcmp(c,"NULL") == 0) {
474 if (newref) { Py_DECREF(obj); }
475 return 0;
476 } else {
477 if (newref) { Py_DECREF(obj); }
478 goto type_error;
479 }
480 }
481 c++;
482 c = SWIG_UnpackData(c,ptr,sizeof(void *));
483 if (newref) { Py_DECREF(obj); }
484 #endif
485
486 #ifdef SWIG_COBJECT_TYPES
487 cobject:
488 #endif
489
490 if (ty) {
491 tc = SWIG_TypeCheck(c,ty);
492 if (!tc) goto type_error;
493 *ptr = SWIG_TypeCast(tc,(void*) *ptr);
494 }
495
496 if ((pyobj) && (flags & SWIG_POINTER_DISOWN)) {
497 PyObject *zero = PyInt_FromLong(0);
498 PyObject_SetAttrString(pyobj,(char*)"thisown",zero);
499 Py_DECREF(zero);
500 }
501 return 0;
502
503 type_error:
504 if (flags & SWIG_POINTER_EXCEPTION) {
505 if (ty) {
506 char *temp = (char *) malloc(64+strlen(ty->name));
507 sprintf(temp,"Type error. Expected %s", ty->name);
508 PyErr_SetString(PyExc_TypeError, temp);
509 free((char *) temp);
510 } else {
511 PyErr_SetString(PyExc_TypeError,"Expected a pointer");
512 }
513 }
514 return -1;
515 }
516
517 /* Convert a packed value value */
518 SWIGRUNTIME(int)
519 SWIG_ConvertPacked(PyObject *obj, void *ptr, int sz, swig_type_info *ty, int flags) {
520 swig_type_info *tc;
521 char *c;
522
523 if ((!obj) || (!PyString_Check(obj))) goto type_error;
524 c = PyString_AsString(obj);
525 /* Pointer values must start with leading underscore */
526 if (*c != '_') goto type_error;
527 c++;
528 c = SWIG_UnpackData(c,ptr,sz);
529 if (ty) {
530 tc = SWIG_TypeCheck(c,ty);
531 if (!tc) goto type_error;
532 }
533 return 0;
534
535 type_error:
536
537 if (flags) {
538 if (ty) {
539 char *temp = (char *) malloc(64+strlen(ty->name));
540 sprintf(temp,"Type error. Expected %s", ty->name);
541 PyErr_SetString(PyExc_TypeError, temp);
542 free((char *) temp);
543 } else {
544 PyErr_SetString(PyExc_TypeError,"Expected a pointer");
545 }
546 }
547 return -1;
548 }
549
550 /* Create a new pointer object */
551 SWIGRUNTIME(PyObject *)
552 SWIG_NewPointerObj(void *ptr, swig_type_info *type, int own) {
553 PyObject *robj;
554 if (!ptr) {
555 Py_INCREF(Py_None);
556 return Py_None;
557 }
558 #ifdef SWIG_COBJECT_TYPES
559 robj = PyCObject_FromVoidPtrAndDesc((void *) ptr, (char *) type->name, NULL);
560 #else
561 {
562 char result[1024];
563 char *r = result;
564 *(r++) = '_';
565 r = SWIG_PackData(r,&ptr,sizeof(void *));
566 strcpy(r,type->name);
567 robj = PyString_FromString(result);
568 }
569 #endif
570 if (!robj || (robj == Py_None)) return robj;
571 if (type->clientdata) {
572 PyObject *inst;
573 PyObject *args = Py_BuildValue((char*)"(O)", robj);
574 Py_DECREF(robj);
575 inst = PyObject_CallObject((PyObject *) type->clientdata, args);
576 Py_DECREF(args);
577 if (inst) {
578 if (own) {
579 PyObject *n = PyInt_FromLong(1);
580 PyObject_SetAttrString(inst,(char*)"thisown",n);
581 Py_DECREF(n);
582 }
583 robj = inst;
584 }
585 }
586 return robj;
587 }
588
589 SWIGRUNTIME(PyObject *)
590 SWIG_NewPackedObj(void *ptr, int sz, swig_type_info *type) {
591 char result[1024];
592 char *r = result;
593 if ((2*sz + 1 + strlen(type->name)) > 1000) return 0;
594 *(r++) = '_';
595 r = SWIG_PackData(r,ptr,sz);
596 strcpy(r,type->name);
597 return PyString_FromString(result);
598 }
599
600 /* Install Constants */
601 SWIGRUNTIME(void)
602 SWIG_InstallConstants(PyObject *d, swig_const_info constants[]) {
603 int i;
604 PyObject *obj;
605 for (i = 0; constants[i].type; i++) {
606 switch(constants[i].type) {
607 case SWIG_PY_INT:
608 obj = PyInt_FromLong(constants[i].lvalue);
609 break;
610 case SWIG_PY_FLOAT:
611 obj = PyFloat_FromDouble(constants[i].dvalue);
612 break;
613 case SWIG_PY_STRING:
614 obj = PyString_FromString((char *) constants[i].pvalue);
615 break;
616 case SWIG_PY_POINTER:
617 obj = SWIG_NewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0);
618 break;
619 case SWIG_PY_BINARY:
620 obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype));
621 break;
622 default:
623 obj = 0;
624 break;
625 }
626 if (obj) {
627 PyDict_SetItemString(d,constants[i].name,obj);
628 Py_DECREF(obj);
629 }
630 }
631 }
632
633 #endif
634
635 #ifdef __cplusplus
636 }
637 #endif
638
639
640
641
642
643
644
645
646 /* -------- TYPES TABLE (BEGIN) -------- */
647
648 #define SWIGTYPE_p_otk__BGCCache swig_types[0]
649 #define SWIGTYPE_p_otk__BColor swig_types[1]
650 #define SWIGTYPE_p_otk__OBProperty__StringVect swig_types[2]
651 #define SWIGTYPE_p_XFontStruct swig_types[3]
652 #define SWIGTYPE_p_otk__Configuration swig_types[4]
653 #define SWIGTYPE_p_otk__PixmapMask swig_types[5]
654 #define SWIGTYPE_p_Atom swig_types[6]
655 #define SWIGTYPE_p_otk__PointerAssassin swig_types[7]
656 #define SWIGTYPE_p_otk__BImage swig_types[8]
657 #define SWIGTYPE_p_otk__OBTimer swig_types[9]
658 #define SWIGTYPE_p_otk__OtkWidget__OtkWidgetList swig_types[10]
659 #define SWIGTYPE_p_bool swig_types[11]
660 #define SWIGTYPE_p_otk__OBDisplay swig_types[12]
661 #define SWIGTYPE_p_Display swig_types[13]
662 #define SWIGTYPE_p_p_XColor swig_types[14]
663 #define SWIGTYPE_p_XReparentEvent swig_types[15]
664 #define SWIGTYPE_p_otk__BPen swig_types[16]
665 #define SWIGTYPE_p_otk__BImageControl swig_types[17]
666 #define SWIGTYPE_p_otk__OtkButton swig_types[18]
667 #define SWIGTYPE_p_otk__Rect swig_types[19]
668 #define SWIGTYPE_p_otk__Style swig_types[20]
669 #define SWIGTYPE_p_XSelectionClearEvent swig_types[21]
670 #define SWIGTYPE_p_Visual swig_types[22]
671 #define SWIGTYPE_p_timeval swig_types[23]
672 #define SWIGTYPE_p_int swig_types[24]
673 #define SWIGTYPE_p_otk__Strut swig_types[25]
674 #define SWIGTYPE_p_otk__OtkApplication swig_types[26]
675 #define SWIGTYPE_p_XRectangle swig_types[27]
676 #define SWIGTYPE_p_otk__OtkFocusWidget swig_types[28]
677 #define SWIGTYPE_p_otk__OtkWidget swig_types[29]
678 #define SWIGTYPE_p_Cursor swig_types[30]
679 #define SWIGTYPE_p_Colormap swig_types[31]
680 #define SWIGTYPE_p_XGravityEvent swig_types[32]
681 #define SWIGTYPE_p_XVisibilityEvent swig_types[33]
682 #define SWIGTYPE_p_XPropertyEvent swig_types[34]
683 #define SWIGTYPE_p_Window swig_types[35]
684 #define SWIGTYPE_p_otk__BGCCacheContext swig_types[36]
685 #define SWIGTYPE_p_XCreateWindowEvent swig_types[37]
686 #define SWIGTYPE_p_XDestroyWindowEvent swig_types[38]
687 #define SWIGTYPE_p_Time swig_types[39]
688 #define SWIGTYPE_p_XCirculateEvent swig_types[40]
689 #define SWIGTYPE_p_XConfigureEvent swig_types[41]
690 #define SWIGTYPE_p_long swig_types[42]
691 #define SWIGTYPE_p_otk__OBProperty swig_types[43]
692 #define SWIGTYPE_p_XTextProperty swig_types[44]
693 #define SWIGTYPE_p_otk__OtkEventHandler swig_types[45]
694 #define SWIGTYPE_p_XSelectionRequestEvent swig_types[46]
695 #define SWIGTYPE_p_XCirculateRequestEvent swig_types[47]
696 #define SWIGTYPE_p_XConfigureRequestEvent swig_types[48]
697 #define SWIGTYPE_p_XMapRequestEvent swig_types[49]
698 #define SWIGTYPE_p_XResizeRequestEvent swig_types[50]
699 #define SWIGTYPE_otk__OBTimeoutHandler swig_types[51]
700 #define SWIGTYPE_p_XftDraw swig_types[52]
701 #define SWIGTYPE_p_otk__ScreenInfo swig_types[53]
702 #define SWIGTYPE_p_otk__OtkFocusLabel swig_types[54]
703 #define SWIGTYPE_p_otk__BTexture swig_types[55]
704 #define SWIGTYPE_p_otk__OtkEventDispatcher swig_types[56]
705 #define SWIGTYPE_p_otk__BFont swig_types[57]
706 #define SWIGTYPE_p_otk__Point swig_types[58]
707 #define SWIGTYPE_p_p_char swig_types[59]
708 #define SWIGTYPE_p_XMotionEvent swig_types[60]
709 #define SWIGTYPE_p_XButtonEvent swig_types[61]
710 #define SWIGTYPE_p_XSelectionEvent swig_types[62]
711 #define SWIGTYPE_p_Pixmap swig_types[63]
712 #define SWIGTYPE_p_GC swig_types[64]
713 #define SWIGTYPE_p_otk__OBTimerQueueManager swig_types[65]
714 #define SWIGTYPE_p_otk__OtkAppWidget swig_types[66]
715 #define SWIGTYPE_p_XKeyEvent swig_types[67]
716 #define SWIGTYPE_p_unsigned_long swig_types[68]
717 #define SWIGTYPE_p_XEvent swig_types[69]
718 #define SWIGTYPE_p_p_unsigned_long swig_types[70]
719 #define SWIGTYPE_p_std__string swig_types[71]
720 #define SWIGTYPE_p_XCrossingEvent swig_types[72]
721 #define SWIGTYPE_p_XMappingEvent swig_types[73]
722 #define SWIGTYPE_p_otk__BGCCacheItem swig_types[74]
723 #define SWIGTYPE_p_p_unsigned_int swig_types[75]
724 #define SWIGTYPE_p_unsigned_int swig_types[76]
725 #define SWIGTYPE_p_p_unsigned_char swig_types[77]
726 #define SWIGTYPE_p_XClientMessageEvent swig_types[78]
727 #define SWIGTYPE_p_XExposeEvent swig_types[79]
728 #define SWIGTYPE_p_XFocusChangeEvent swig_types[80]
729 #define SWIGTYPE_p_XGraphicsExposeEvent swig_types[81]
730 #define SWIGTYPE_p_XNoExposeEvent swig_types[82]
731 #define SWIGTYPE_p_XMapEvent swig_types[83]
732 #define SWIGTYPE_p_XUnmapEvent swig_types[84]
733 #define SWIGTYPE_p_XColormapEvent swig_types[85]
734 static swig_type_info *swig_types[87];
735
736 /* -------- TYPES TABLE (END) -------- */
737
738
739 /*-----------------------------------------------
740 @(target):= _otk.so
741 ------------------------------------------------*/
742 #define SWIG_init init_otk
743
744 #define SWIG_name "_otk"
745
746 #ifdef HAVE_CONFIG_H
747 # include "../config.h"
748 #endif
749
750 #include "application.hh"
751 #include "appwidget.hh"
752 #include "assassin.hh"
753 #include "button.hh"
754 #include "color.hh"
755 #include "configuration.hh"
756 #include "display.hh"
757 #include "eventdispatcher.hh"
758 #include "eventhandler.hh"
759 #include "focuslabel.hh"
760 #include "focuswidget.hh"
761 #include "font.hh"
762 #include "gccache.hh"
763 #include "image.hh"
764 #include "label.hh"
765 #include "point.hh"
766 #include "property.hh"
767 #include "rect.hh"
768 #include "screeninfo.hh"
769 #include "strut.hh"
770 #include "style.hh"
771 #include "texture.hh"
772 #include "timer.hh"
773 #include "timerqueue.hh"
774 #include "timerqueuemanager.hh"
775 #include "util.hh"
776 #include "widget.hh"
777
778
779 #define SWIG_MemoryError 1
780 #define SWIG_IOError 2
781 #define SWIG_RuntimeError 3
782 #define SWIG_IndexError 4
783 #define SWIG_TypeError 5
784 #define SWIG_DivisionByZero 6
785 #define SWIG_OverflowError 7
786 #define SWIG_SyntaxError 8
787 #define SWIG_ValueError 9
788 #define SWIG_SystemError 10
789 #define SWIG_UnknownError 99
790
791
792 static void _SWIG_exception(int code, const char *msg) {
793 switch(code) {
794 case SWIG_MemoryError:
795 PyErr_SetString(PyExc_MemoryError,msg);
796 break;
797 case SWIG_IOError:
798 PyErr_SetString(PyExc_IOError,msg);
799 break;
800 case SWIG_RuntimeError:
801 PyErr_SetString(PyExc_RuntimeError,msg);
802 break;
803 case SWIG_IndexError:
804 PyErr_SetString(PyExc_IndexError,msg);
805 break;
806 case SWIG_TypeError:
807 PyErr_SetString(PyExc_TypeError,msg);
808 break;
809 case SWIG_DivisionByZero:
810 PyErr_SetString(PyExc_ZeroDivisionError,msg);
811 break;
812 case SWIG_OverflowError:
813 PyErr_SetString(PyExc_OverflowError,msg);
814 break;
815 case SWIG_SyntaxError:
816 PyErr_SetString(PyExc_SyntaxError,msg);
817 break;
818 case SWIG_ValueError:
819 PyErr_SetString(PyExc_ValueError,msg);
820 break;
821 case SWIG_SystemError:
822 PyErr_SetString(PyExc_SystemError,msg);
823 break;
824 default:
825 PyErr_SetString(PyExc_RuntimeError,msg);
826 break;
827 }
828 }
829
830 #define SWIG_exception(a,b) { _SWIG_exception(a,b); SWIG_fail; }
831
832
833 #include <string>
834
835
836 #include <string>
837
838 static PyObject* SwigInt_FromBool(bool b) {
839 return PyInt_FromLong(b ? 1L : 0L);
840 }
841 static double SwigNumber_Check(PyObject* o) {
842 return PyFloat_Check(o) || PyInt_Check(o);
843 }
844 static double SwigNumber_AsDouble(PyObject* o) {
845 return (PyFloat_Check(o) ? PyFloat_AsDouble(o) : double(PyInt_AsLong(o)));
846 }
847 static PyObject* SwigString_FromString(const std::string& s) {
848 return PyString_FromString(s.c_str());
849 }
850 static std::string SwigString_AsString(PyObject* o) {
851 return std::string(PyString_AsString(o));
852 }
853
854
855 #include <vector>
856 #include <algorithm>
857 #include <stdexcept>
858
859 #ifdef __cplusplus
860 extern "C" {
861 #endif
862 static PyObject *_wrap_new_OtkEventDispatcher(PyObject *self, PyObject *args) {
863 PyObject *resultobj;
864 otk::OtkEventDispatcher *result;
865
866 if(!PyArg_ParseTuple(args,(char *)":new_OtkEventDispatcher")) goto fail;
867 result = (otk::OtkEventDispatcher *)new otk::OtkEventDispatcher();
868
869 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OtkEventDispatcher, 1);
870 return resultobj;
871 fail:
872 return NULL;
873 }
874
875
876 static PyObject *_wrap_delete_OtkEventDispatcher(PyObject *self, PyObject *args) {
877 PyObject *resultobj;
878 otk::OtkEventDispatcher *arg1 = (otk::OtkEventDispatcher *) 0 ;
879 PyObject * obj0 = 0 ;
880
881 if(!PyArg_ParseTuple(args,(char *)"O:delete_OtkEventDispatcher",&obj0)) goto fail;
882 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventDispatcher,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
883 delete arg1;
884
885 Py_INCREF(Py_None); resultobj = Py_None;
886 return resultobj;
887 fail:
888 return NULL;
889 }
890
891
892 static PyObject *_wrap_OtkEventDispatcher_clearAllHandlers(PyObject *self, PyObject *args) {
893 PyObject *resultobj;
894 otk::OtkEventDispatcher *arg1 = (otk::OtkEventDispatcher *) 0 ;
895 PyObject * obj0 = 0 ;
896
897 if(!PyArg_ParseTuple(args,(char *)"O:OtkEventDispatcher_clearAllHandlers",&obj0)) goto fail;
898 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventDispatcher,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
899 (arg1)->clearAllHandlers();
900
901 Py_INCREF(Py_None); resultobj = Py_None;
902 return resultobj;
903 fail:
904 return NULL;
905 }
906
907
908 static PyObject *_wrap_OtkEventDispatcher_registerHandler(PyObject *self, PyObject *args) {
909 PyObject *resultobj;
910 otk::OtkEventDispatcher *arg1 = (otk::OtkEventDispatcher *) 0 ;
911 Window arg2 ;
912 otk::OtkEventHandler *arg3 = (otk::OtkEventHandler *) 0 ;
913 Window *argp2 ;
914 PyObject * obj0 = 0 ;
915 PyObject * obj1 = 0 ;
916 PyObject * obj2 = 0 ;
917
918 if(!PyArg_ParseTuple(args,(char *)"OOO:OtkEventDispatcher_registerHandler",&obj0,&obj1,&obj2)) goto fail;
919 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventDispatcher,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
920 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
921 arg2 = *argp2;
922 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
923 (arg1)->registerHandler(arg2,arg3);
924
925 Py_INCREF(Py_None); resultobj = Py_None;
926 return resultobj;
927 fail:
928 return NULL;
929 }
930
931
932 static PyObject *_wrap_OtkEventDispatcher_clearHandler(PyObject *self, PyObject *args) {
933 PyObject *resultobj;
934 otk::OtkEventDispatcher *arg1 = (otk::OtkEventDispatcher *) 0 ;
935 Window arg2 ;
936 Window *argp2 ;
937 PyObject * obj0 = 0 ;
938 PyObject * obj1 = 0 ;
939
940 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventDispatcher_clearHandler",&obj0,&obj1)) goto fail;
941 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventDispatcher,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
942 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
943 arg2 = *argp2;
944 (arg1)->clearHandler(arg2);
945
946 Py_INCREF(Py_None); resultobj = Py_None;
947 return resultobj;
948 fail:
949 return NULL;
950 }
951
952
953 static PyObject *_wrap_OtkEventDispatcher_dispatchEvents(PyObject *self, PyObject *args) {
954 PyObject *resultobj;
955 otk::OtkEventDispatcher *arg1 = (otk::OtkEventDispatcher *) 0 ;
956 PyObject * obj0 = 0 ;
957
958 if(!PyArg_ParseTuple(args,(char *)"O:OtkEventDispatcher_dispatchEvents",&obj0)) goto fail;
959 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventDispatcher,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
960 (arg1)->dispatchEvents();
961
962 Py_INCREF(Py_None); resultobj = Py_None;
963 return resultobj;
964 fail:
965 return NULL;
966 }
967
968
969 static PyObject *_wrap_OtkEventDispatcher_setFallbackHandler(PyObject *self, PyObject *args) {
970 PyObject *resultobj;
971 otk::OtkEventDispatcher *arg1 = (otk::OtkEventDispatcher *) 0 ;
972 otk::OtkEventHandler *arg2 = (otk::OtkEventHandler *) 0 ;
973 PyObject * obj0 = 0 ;
974 PyObject * obj1 = 0 ;
975
976 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventDispatcher_setFallbackHandler",&obj0,&obj1)) goto fail;
977 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventDispatcher,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
978 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
979 (arg1)->setFallbackHandler(arg2);
980
981 Py_INCREF(Py_None); resultobj = Py_None;
982 return resultobj;
983 fail:
984 return NULL;
985 }
986
987
988 static PyObject *_wrap_OtkEventDispatcher_getFallbackHandler(PyObject *self, PyObject *args) {
989 PyObject *resultobj;
990 otk::OtkEventDispatcher *arg1 = (otk::OtkEventDispatcher *) 0 ;
991 otk::OtkEventHandler *result;
992 PyObject * obj0 = 0 ;
993
994 if(!PyArg_ParseTuple(args,(char *)"O:OtkEventDispatcher_getFallbackHandler",&obj0)) goto fail;
995 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventDispatcher,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
996 result = (otk::OtkEventHandler *)((otk::OtkEventDispatcher const *)arg1)->getFallbackHandler();
997
998 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OtkEventHandler, 0);
999 return resultobj;
1000 fail:
1001 return NULL;
1002 }
1003
1004
1005 static PyObject *_wrap_OtkEventDispatcher_setMasterHandler(PyObject *self, PyObject *args) {
1006 PyObject *resultobj;
1007 otk::OtkEventDispatcher *arg1 = (otk::OtkEventDispatcher *) 0 ;
1008 otk::OtkEventHandler *arg2 = (otk::OtkEventHandler *) 0 ;
1009 PyObject * obj0 = 0 ;
1010 PyObject * obj1 = 0 ;
1011
1012 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventDispatcher_setMasterHandler",&obj0,&obj1)) goto fail;
1013 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventDispatcher,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1014 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1015 (arg1)->setMasterHandler(arg2);
1016
1017 Py_INCREF(Py_None); resultobj = Py_None;
1018 return resultobj;
1019 fail:
1020 return NULL;
1021 }
1022
1023
1024 static PyObject *_wrap_OtkEventDispatcher_getMasterHandler(PyObject *self, PyObject *args) {
1025 PyObject *resultobj;
1026 otk::OtkEventDispatcher *arg1 = (otk::OtkEventDispatcher *) 0 ;
1027 otk::OtkEventHandler *result;
1028 PyObject * obj0 = 0 ;
1029
1030 if(!PyArg_ParseTuple(args,(char *)"O:OtkEventDispatcher_getMasterHandler",&obj0)) goto fail;
1031 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventDispatcher,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1032 result = (otk::OtkEventHandler *)((otk::OtkEventDispatcher const *)arg1)->getMasterHandler();
1033
1034 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OtkEventHandler, 0);
1035 return resultobj;
1036 fail:
1037 return NULL;
1038 }
1039
1040
1041 static PyObject *_wrap_OtkEventDispatcher_findHandler(PyObject *self, PyObject *args) {
1042 PyObject *resultobj;
1043 otk::OtkEventDispatcher *arg1 = (otk::OtkEventDispatcher *) 0 ;
1044 Window arg2 ;
1045 otk::OtkEventHandler *result;
1046 Window *argp2 ;
1047 PyObject * obj0 = 0 ;
1048 PyObject * obj1 = 0 ;
1049
1050 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventDispatcher_findHandler",&obj0,&obj1)) goto fail;
1051 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventDispatcher,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1052 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
1053 arg2 = *argp2;
1054 result = (otk::OtkEventHandler *)(arg1)->findHandler(arg2);
1055
1056 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OtkEventHandler, 0);
1057 return resultobj;
1058 fail:
1059 return NULL;
1060 }
1061
1062
1063 static PyObject *_wrap_OtkEventDispatcher_lastTime(PyObject *self, PyObject *args) {
1064 PyObject *resultobj;
1065 otk::OtkEventDispatcher *arg1 = (otk::OtkEventDispatcher *) 0 ;
1066 Time result;
1067 PyObject * obj0 = 0 ;
1068
1069 if(!PyArg_ParseTuple(args,(char *)"O:OtkEventDispatcher_lastTime",&obj0)) goto fail;
1070 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventDispatcher,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1071 result = ((otk::OtkEventDispatcher const *)arg1)->lastTime();
1072
1073 {
1074 Time * resultptr;
1075 resultptr = new Time((Time &) result);
1076 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Time, 1);
1077 }
1078 return resultobj;
1079 fail:
1080 return NULL;
1081 }
1082
1083
1084 static PyObject * OtkEventDispatcher_swigregister(PyObject *self, PyObject *args) {
1085 PyObject *obj;
1086 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
1087 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkEventDispatcher, obj);
1088 Py_INCREF(obj);
1089 return Py_BuildValue((char *)"");
1090 }
1091 static PyObject *_wrap_OtkEventHandler_handle(PyObject *self, PyObject *args) {
1092 PyObject *resultobj;
1093 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1094 XEvent *arg2 = 0 ;
1095 PyObject * obj0 = 0 ;
1096 PyObject * obj1 = 0 ;
1097
1098 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_handle",&obj0,&obj1)) goto fail;
1099 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1100 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1101 if (arg2 == NULL) {
1102 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1103 }
1104 (arg1)->handle((XEvent const &)*arg2);
1105
1106 Py_INCREF(Py_None); resultobj = Py_None;
1107 return resultobj;
1108 fail:
1109 return NULL;
1110 }
1111
1112
1113 static PyObject *_wrap_OtkEventHandler_keyPressHandler(PyObject *self, PyObject *args) {
1114 PyObject *resultobj;
1115 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1116 XKeyEvent *arg2 = 0 ;
1117 PyObject * obj0 = 0 ;
1118 PyObject * obj1 = 0 ;
1119
1120 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_keyPressHandler",&obj0,&obj1)) goto fail;
1121 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1122 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XKeyEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1123 if (arg2 == NULL) {
1124 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1125 }
1126 (arg1)->keyPressHandler((XKeyEvent const &)*arg2);
1127
1128 Py_INCREF(Py_None); resultobj = Py_None;
1129 return resultobj;
1130 fail:
1131 return NULL;
1132 }
1133
1134
1135 static PyObject *_wrap_OtkEventHandler_keyReleaseHandler(PyObject *self, PyObject *args) {
1136 PyObject *resultobj;
1137 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1138 XKeyEvent *arg2 = 0 ;
1139 PyObject * obj0 = 0 ;
1140 PyObject * obj1 = 0 ;
1141
1142 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_keyReleaseHandler",&obj0,&obj1)) goto fail;
1143 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1144 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XKeyEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1145 if (arg2 == NULL) {
1146 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1147 }
1148 (arg1)->keyReleaseHandler((XKeyEvent const &)*arg2);
1149
1150 Py_INCREF(Py_None); resultobj = Py_None;
1151 return resultobj;
1152 fail:
1153 return NULL;
1154 }
1155
1156
1157 static PyObject *_wrap_OtkEventHandler_buttonPressHandler(PyObject *self, PyObject *args) {
1158 PyObject *resultobj;
1159 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1160 XButtonEvent *arg2 = 0 ;
1161 PyObject * obj0 = 0 ;
1162 PyObject * obj1 = 0 ;
1163
1164 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_buttonPressHandler",&obj0,&obj1)) goto fail;
1165 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1166 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XButtonEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1167 if (arg2 == NULL) {
1168 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1169 }
1170 (arg1)->buttonPressHandler((XButtonEvent const &)*arg2);
1171
1172 Py_INCREF(Py_None); resultobj = Py_None;
1173 return resultobj;
1174 fail:
1175 return NULL;
1176 }
1177
1178
1179 static PyObject *_wrap_OtkEventHandler_buttonReleaseHandler(PyObject *self, PyObject *args) {
1180 PyObject *resultobj;
1181 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1182 XButtonEvent *arg2 = 0 ;
1183 PyObject * obj0 = 0 ;
1184 PyObject * obj1 = 0 ;
1185
1186 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_buttonReleaseHandler",&obj0,&obj1)) goto fail;
1187 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1188 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XButtonEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1189 if (arg2 == NULL) {
1190 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1191 }
1192 (arg1)->buttonReleaseHandler((XButtonEvent const &)*arg2);
1193
1194 Py_INCREF(Py_None); resultobj = Py_None;
1195 return resultobj;
1196 fail:
1197 return NULL;
1198 }
1199
1200
1201 static PyObject *_wrap_OtkEventHandler_motionHandler(PyObject *self, PyObject *args) {
1202 PyObject *resultobj;
1203 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1204 XMotionEvent *arg2 = 0 ;
1205 PyObject * obj0 = 0 ;
1206 PyObject * obj1 = 0 ;
1207
1208 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_motionHandler",&obj0,&obj1)) goto fail;
1209 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1210 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XMotionEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1211 if (arg2 == NULL) {
1212 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1213 }
1214 (arg1)->motionHandler((XMotionEvent const &)*arg2);
1215
1216 Py_INCREF(Py_None); resultobj = Py_None;
1217 return resultobj;
1218 fail:
1219 return NULL;
1220 }
1221
1222
1223 static PyObject *_wrap_OtkEventHandler_enterHandler(PyObject *self, PyObject *args) {
1224 PyObject *resultobj;
1225 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1226 XCrossingEvent *arg2 = 0 ;
1227 PyObject * obj0 = 0 ;
1228 PyObject * obj1 = 0 ;
1229
1230 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_enterHandler",&obj0,&obj1)) goto fail;
1231 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1232 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XCrossingEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1233 if (arg2 == NULL) {
1234 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1235 }
1236 (arg1)->enterHandler((XCrossingEvent const &)*arg2);
1237
1238 Py_INCREF(Py_None); resultobj = Py_None;
1239 return resultobj;
1240 fail:
1241 return NULL;
1242 }
1243
1244
1245 static PyObject *_wrap_OtkEventHandler_leaveHandler(PyObject *self, PyObject *args) {
1246 PyObject *resultobj;
1247 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1248 XCrossingEvent *arg2 = 0 ;
1249 PyObject * obj0 = 0 ;
1250 PyObject * obj1 = 0 ;
1251
1252 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_leaveHandler",&obj0,&obj1)) goto fail;
1253 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1254 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XCrossingEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1255 if (arg2 == NULL) {
1256 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1257 }
1258 (arg1)->leaveHandler((XCrossingEvent const &)*arg2);
1259
1260 Py_INCREF(Py_None); resultobj = Py_None;
1261 return resultobj;
1262 fail:
1263 return NULL;
1264 }
1265
1266
1267 static PyObject *_wrap_OtkEventHandler_focusHandler(PyObject *self, PyObject *args) {
1268 PyObject *resultobj;
1269 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1270 XFocusChangeEvent *arg2 = 0 ;
1271 PyObject * obj0 = 0 ;
1272 PyObject * obj1 = 0 ;
1273
1274 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_focusHandler",&obj0,&obj1)) goto fail;
1275 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1276 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XFocusChangeEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1277 if (arg2 == NULL) {
1278 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1279 }
1280 (arg1)->focusHandler((XFocusChangeEvent const &)*arg2);
1281
1282 Py_INCREF(Py_None); resultobj = Py_None;
1283 return resultobj;
1284 fail:
1285 return NULL;
1286 }
1287
1288
1289 static PyObject *_wrap_OtkEventHandler_unfocusHandler(PyObject *self, PyObject *args) {
1290 PyObject *resultobj;
1291 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1292 XFocusChangeEvent *arg2 = 0 ;
1293 PyObject * obj0 = 0 ;
1294 PyObject * obj1 = 0 ;
1295
1296 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_unfocusHandler",&obj0,&obj1)) goto fail;
1297 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1298 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XFocusChangeEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1299 if (arg2 == NULL) {
1300 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1301 }
1302 (arg1)->unfocusHandler((XFocusChangeEvent const &)*arg2);
1303
1304 Py_INCREF(Py_None); resultobj = Py_None;
1305 return resultobj;
1306 fail:
1307 return NULL;
1308 }
1309
1310
1311 static PyObject *_wrap_OtkEventHandler_exposeHandler(PyObject *self, PyObject *args) {
1312 PyObject *resultobj;
1313 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1314 XExposeEvent *arg2 = 0 ;
1315 PyObject * obj0 = 0 ;
1316 PyObject * obj1 = 0 ;
1317
1318 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_exposeHandler",&obj0,&obj1)) goto fail;
1319 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1320 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XExposeEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1321 if (arg2 == NULL) {
1322 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1323 }
1324 (arg1)->exposeHandler((XExposeEvent const &)*arg2);
1325
1326 Py_INCREF(Py_None); resultobj = Py_None;
1327 return resultobj;
1328 fail:
1329 return NULL;
1330 }
1331
1332
1333 static PyObject *_wrap_OtkEventHandler_graphicsExposeHandler(PyObject *self, PyObject *args) {
1334 PyObject *resultobj;
1335 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1336 XGraphicsExposeEvent *arg2 = 0 ;
1337 PyObject * obj0 = 0 ;
1338 PyObject * obj1 = 0 ;
1339
1340 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_graphicsExposeHandler",&obj0,&obj1)) goto fail;
1341 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1342 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XGraphicsExposeEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1343 if (arg2 == NULL) {
1344 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1345 }
1346 (arg1)->graphicsExposeHandler((XGraphicsExposeEvent const &)*arg2);
1347
1348 Py_INCREF(Py_None); resultobj = Py_None;
1349 return resultobj;
1350 fail:
1351 return NULL;
1352 }
1353
1354
1355 static PyObject *_wrap_OtkEventHandler_noExposeEventHandler(PyObject *self, PyObject *args) {
1356 PyObject *resultobj;
1357 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1358 XNoExposeEvent *arg2 = 0 ;
1359 PyObject * obj0 = 0 ;
1360 PyObject * obj1 = 0 ;
1361
1362 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_noExposeEventHandler",&obj0,&obj1)) goto fail;
1363 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1364 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XNoExposeEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1365 if (arg2 == NULL) {
1366 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1367 }
1368 (arg1)->noExposeEventHandler((XNoExposeEvent const &)*arg2);
1369
1370 Py_INCREF(Py_None); resultobj = Py_None;
1371 return resultobj;
1372 fail:
1373 return NULL;
1374 }
1375
1376
1377 static PyObject *_wrap_OtkEventHandler_circulateRequestHandler(PyObject *self, PyObject *args) {
1378 PyObject *resultobj;
1379 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1380 XCirculateRequestEvent *arg2 = 0 ;
1381 PyObject * obj0 = 0 ;
1382 PyObject * obj1 = 0 ;
1383
1384 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_circulateRequestHandler",&obj0,&obj1)) goto fail;
1385 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1386 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XCirculateRequestEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1387 if (arg2 == NULL) {
1388 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1389 }
1390 (arg1)->circulateRequestHandler((XCirculateRequestEvent const &)*arg2);
1391
1392 Py_INCREF(Py_None); resultobj = Py_None;
1393 return resultobj;
1394 fail:
1395 return NULL;
1396 }
1397
1398
1399 static PyObject *_wrap_OtkEventHandler_configureRequestHandler(PyObject *self, PyObject *args) {
1400 PyObject *resultobj;
1401 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1402 XConfigureRequestEvent *arg2 = 0 ;
1403 PyObject * obj0 = 0 ;
1404 PyObject * obj1 = 0 ;
1405
1406 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_configureRequestHandler",&obj0,&obj1)) goto fail;
1407 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1408 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XConfigureRequestEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1409 if (arg2 == NULL) {
1410 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1411 }
1412 (arg1)->configureRequestHandler((XConfigureRequestEvent const &)*arg2);
1413
1414 Py_INCREF(Py_None); resultobj = Py_None;
1415 return resultobj;
1416 fail:
1417 return NULL;
1418 }
1419
1420
1421 static PyObject *_wrap_OtkEventHandler_mapRequestHandler(PyObject *self, PyObject *args) {
1422 PyObject *resultobj;
1423 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1424 XMapRequestEvent *arg2 = 0 ;
1425 PyObject * obj0 = 0 ;
1426 PyObject * obj1 = 0 ;
1427
1428 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_mapRequestHandler",&obj0,&obj1)) goto fail;
1429 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1430 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XMapRequestEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1431 if (arg2 == NULL) {
1432 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1433 }
1434 (arg1)->mapRequestHandler((XMapRequestEvent const &)*arg2);
1435
1436 Py_INCREF(Py_None); resultobj = Py_None;
1437 return resultobj;
1438 fail:
1439 return NULL;
1440 }
1441
1442
1443 static PyObject *_wrap_OtkEventHandler_resizeRequestHandler(PyObject *self, PyObject *args) {
1444 PyObject *resultobj;
1445 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1446 XResizeRequestEvent *arg2 = 0 ;
1447 PyObject * obj0 = 0 ;
1448 PyObject * obj1 = 0 ;
1449
1450 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_resizeRequestHandler",&obj0,&obj1)) goto fail;
1451 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1452 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XResizeRequestEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1453 if (arg2 == NULL) {
1454 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1455 }
1456 (arg1)->resizeRequestHandler((XResizeRequestEvent const &)*arg2);
1457
1458 Py_INCREF(Py_None); resultobj = Py_None;
1459 return resultobj;
1460 fail:
1461 return NULL;
1462 }
1463
1464
1465 static PyObject *_wrap_OtkEventHandler_circulateHandler(PyObject *self, PyObject *args) {
1466 PyObject *resultobj;
1467 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1468 XCirculateEvent *arg2 = 0 ;
1469 PyObject * obj0 = 0 ;
1470 PyObject * obj1 = 0 ;
1471
1472 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_circulateHandler",&obj0,&obj1)) goto fail;
1473 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1474 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XCirculateEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1475 if (arg2 == NULL) {
1476 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1477 }
1478 (arg1)->circulateHandler((XCirculateEvent const &)*arg2);
1479
1480 Py_INCREF(Py_None); resultobj = Py_None;
1481 return resultobj;
1482 fail:
1483 return NULL;
1484 }
1485
1486
1487 static PyObject *_wrap_OtkEventHandler_configureHandler(PyObject *self, PyObject *args) {
1488 PyObject *resultobj;
1489 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1490 XConfigureEvent *arg2 = 0 ;
1491 PyObject * obj0 = 0 ;
1492 PyObject * obj1 = 0 ;
1493
1494 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_configureHandler",&obj0,&obj1)) goto fail;
1495 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1496 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XConfigureEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1497 if (arg2 == NULL) {
1498 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1499 }
1500 (arg1)->configureHandler((XConfigureEvent const &)*arg2);
1501
1502 Py_INCREF(Py_None); resultobj = Py_None;
1503 return resultobj;
1504 fail:
1505 return NULL;
1506 }
1507
1508
1509 static PyObject *_wrap_OtkEventHandler_createHandler(PyObject *self, PyObject *args) {
1510 PyObject *resultobj;
1511 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1512 XCreateWindowEvent *arg2 = 0 ;
1513 PyObject * obj0 = 0 ;
1514 PyObject * obj1 = 0 ;
1515
1516 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_createHandler",&obj0,&obj1)) goto fail;
1517 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1518 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XCreateWindowEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1519 if (arg2 == NULL) {
1520 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1521 }
1522 (arg1)->createHandler((XCreateWindowEvent const &)*arg2);
1523
1524 Py_INCREF(Py_None); resultobj = Py_None;
1525 return resultobj;
1526 fail:
1527 return NULL;
1528 }
1529
1530
1531 static PyObject *_wrap_OtkEventHandler_destroyHandler(PyObject *self, PyObject *args) {
1532 PyObject *resultobj;
1533 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1534 XDestroyWindowEvent *arg2 = 0 ;
1535 PyObject * obj0 = 0 ;
1536 PyObject * obj1 = 0 ;
1537
1538 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_destroyHandler",&obj0,&obj1)) goto fail;
1539 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1540 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XDestroyWindowEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1541 if (arg2 == NULL) {
1542 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1543 }
1544 (arg1)->destroyHandler((XDestroyWindowEvent const &)*arg2);
1545
1546 Py_INCREF(Py_None); resultobj = Py_None;
1547 return resultobj;
1548 fail:
1549 return NULL;
1550 }
1551
1552
1553 static PyObject *_wrap_OtkEventHandler_gravityHandler(PyObject *self, PyObject *args) {
1554 PyObject *resultobj;
1555 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1556 XGravityEvent *arg2 = 0 ;
1557 PyObject * obj0 = 0 ;
1558 PyObject * obj1 = 0 ;
1559
1560 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_gravityHandler",&obj0,&obj1)) goto fail;
1561 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1562 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XGravityEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1563 if (arg2 == NULL) {
1564 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1565 }
1566 (arg1)->gravityHandler((XGravityEvent const &)*arg2);
1567
1568 Py_INCREF(Py_None); resultobj = Py_None;
1569 return resultobj;
1570 fail:
1571 return NULL;
1572 }
1573
1574
1575 static PyObject *_wrap_OtkEventHandler_mapHandler(PyObject *self, PyObject *args) {
1576 PyObject *resultobj;
1577 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1578 XMapEvent *arg2 = 0 ;
1579 PyObject * obj0 = 0 ;
1580 PyObject * obj1 = 0 ;
1581
1582 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_mapHandler",&obj0,&obj1)) goto fail;
1583 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1584 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XMapEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1585 if (arg2 == NULL) {
1586 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1587 }
1588 (arg1)->mapHandler((XMapEvent const &)*arg2);
1589
1590 Py_INCREF(Py_None); resultobj = Py_None;
1591 return resultobj;
1592 fail:
1593 return NULL;
1594 }
1595
1596
1597 static PyObject *_wrap_OtkEventHandler_mappingHandler(PyObject *self, PyObject *args) {
1598 PyObject *resultobj;
1599 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1600 XMappingEvent *arg2 = 0 ;
1601 PyObject * obj0 = 0 ;
1602 PyObject * obj1 = 0 ;
1603
1604 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_mappingHandler",&obj0,&obj1)) goto fail;
1605 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1606 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XMappingEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1607 if (arg2 == NULL) {
1608 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1609 }
1610 (arg1)->mappingHandler((XMappingEvent const &)*arg2);
1611
1612 Py_INCREF(Py_None); resultobj = Py_None;
1613 return resultobj;
1614 fail:
1615 return NULL;
1616 }
1617
1618
1619 static PyObject *_wrap_OtkEventHandler_reparentHandler(PyObject *self, PyObject *args) {
1620 PyObject *resultobj;
1621 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1622 XReparentEvent *arg2 = 0 ;
1623 PyObject * obj0 = 0 ;
1624 PyObject * obj1 = 0 ;
1625
1626 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_reparentHandler",&obj0,&obj1)) goto fail;
1627 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1628 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XReparentEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1629 if (arg2 == NULL) {
1630 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1631 }
1632 (arg1)->reparentHandler((XReparentEvent const &)*arg2);
1633
1634 Py_INCREF(Py_None); resultobj = Py_None;
1635 return resultobj;
1636 fail:
1637 return NULL;
1638 }
1639
1640
1641 static PyObject *_wrap_OtkEventHandler_unmapHandler(PyObject *self, PyObject *args) {
1642 PyObject *resultobj;
1643 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1644 XUnmapEvent *arg2 = 0 ;
1645 PyObject * obj0 = 0 ;
1646 PyObject * obj1 = 0 ;
1647
1648 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_unmapHandler",&obj0,&obj1)) goto fail;
1649 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1650 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XUnmapEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1651 if (arg2 == NULL) {
1652 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1653 }
1654 (arg1)->unmapHandler((XUnmapEvent const &)*arg2);
1655
1656 Py_INCREF(Py_None); resultobj = Py_None;
1657 return resultobj;
1658 fail:
1659 return NULL;
1660 }
1661
1662
1663 static PyObject *_wrap_OtkEventHandler_visibilityHandler(PyObject *self, PyObject *args) {
1664 PyObject *resultobj;
1665 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1666 XVisibilityEvent *arg2 = 0 ;
1667 PyObject * obj0 = 0 ;
1668 PyObject * obj1 = 0 ;
1669
1670 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_visibilityHandler",&obj0,&obj1)) goto fail;
1671 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1672 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XVisibilityEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1673 if (arg2 == NULL) {
1674 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1675 }
1676 (arg1)->visibilityHandler((XVisibilityEvent const &)*arg2);
1677
1678 Py_INCREF(Py_None); resultobj = Py_None;
1679 return resultobj;
1680 fail:
1681 return NULL;
1682 }
1683
1684
1685 static PyObject *_wrap_OtkEventHandler_colorMapHandler(PyObject *self, PyObject *args) {
1686 PyObject *resultobj;
1687 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1688 XColormapEvent *arg2 = 0 ;
1689 PyObject * obj0 = 0 ;
1690 PyObject * obj1 = 0 ;
1691
1692 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_colorMapHandler",&obj0,&obj1)) goto fail;
1693 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1694 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XColormapEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1695 if (arg2 == NULL) {
1696 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1697 }
1698 (arg1)->colorMapHandler((XColormapEvent const &)*arg2);
1699
1700 Py_INCREF(Py_None); resultobj = Py_None;
1701 return resultobj;
1702 fail:
1703 return NULL;
1704 }
1705
1706
1707 static PyObject *_wrap_OtkEventHandler_propertyHandler(PyObject *self, PyObject *args) {
1708 PyObject *resultobj;
1709 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1710 XPropertyEvent *arg2 = 0 ;
1711 PyObject * obj0 = 0 ;
1712 PyObject * obj1 = 0 ;
1713
1714 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_propertyHandler",&obj0,&obj1)) goto fail;
1715 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1716 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XPropertyEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1717 if (arg2 == NULL) {
1718 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1719 }
1720 (arg1)->propertyHandler((XPropertyEvent const &)*arg2);
1721
1722 Py_INCREF(Py_None); resultobj = Py_None;
1723 return resultobj;
1724 fail:
1725 return NULL;
1726 }
1727
1728
1729 static PyObject *_wrap_OtkEventHandler_selectionClearHandler(PyObject *self, PyObject *args) {
1730 PyObject *resultobj;
1731 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1732 XSelectionClearEvent *arg2 = 0 ;
1733 PyObject * obj0 = 0 ;
1734 PyObject * obj1 = 0 ;
1735
1736 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_selectionClearHandler",&obj0,&obj1)) goto fail;
1737 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1738 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XSelectionClearEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1739 if (arg2 == NULL) {
1740 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1741 }
1742 (arg1)->selectionClearHandler((XSelectionClearEvent const &)*arg2);
1743
1744 Py_INCREF(Py_None); resultobj = Py_None;
1745 return resultobj;
1746 fail:
1747 return NULL;
1748 }
1749
1750
1751 static PyObject *_wrap_OtkEventHandler_selectionHandler(PyObject *self, PyObject *args) {
1752 PyObject *resultobj;
1753 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1754 XSelectionEvent *arg2 = 0 ;
1755 PyObject * obj0 = 0 ;
1756 PyObject * obj1 = 0 ;
1757
1758 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_selectionHandler",&obj0,&obj1)) goto fail;
1759 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1760 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XSelectionEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1761 if (arg2 == NULL) {
1762 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1763 }
1764 (arg1)->selectionHandler((XSelectionEvent const &)*arg2);
1765
1766 Py_INCREF(Py_None); resultobj = Py_None;
1767 return resultobj;
1768 fail:
1769 return NULL;
1770 }
1771
1772
1773 static PyObject *_wrap_OtkEventHandler_selectionRequestHandler(PyObject *self, PyObject *args) {
1774 PyObject *resultobj;
1775 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1776 XSelectionRequestEvent *arg2 = 0 ;
1777 PyObject * obj0 = 0 ;
1778 PyObject * obj1 = 0 ;
1779
1780 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_selectionRequestHandler",&obj0,&obj1)) goto fail;
1781 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1782 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XSelectionRequestEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1783 if (arg2 == NULL) {
1784 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1785 }
1786 (arg1)->selectionRequestHandler((XSelectionRequestEvent const &)*arg2);
1787
1788 Py_INCREF(Py_None); resultobj = Py_None;
1789 return resultobj;
1790 fail:
1791 return NULL;
1792 }
1793
1794
1795 static PyObject *_wrap_OtkEventHandler_clientMessageHandler(PyObject *self, PyObject *args) {
1796 PyObject *resultobj;
1797 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1798 XClientMessageEvent *arg2 = 0 ;
1799 PyObject * obj0 = 0 ;
1800 PyObject * obj1 = 0 ;
1801
1802 if(!PyArg_ParseTuple(args,(char *)"OO:OtkEventHandler_clientMessageHandler",&obj0,&obj1)) goto fail;
1803 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1804 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XClientMessageEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1805 if (arg2 == NULL) {
1806 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1807 }
1808 (arg1)->clientMessageHandler((XClientMessageEvent const &)*arg2);
1809
1810 Py_INCREF(Py_None); resultobj = Py_None;
1811 return resultobj;
1812 fail:
1813 return NULL;
1814 }
1815
1816
1817 static PyObject *_wrap_delete_OtkEventHandler(PyObject *self, PyObject *args) {
1818 PyObject *resultobj;
1819 otk::OtkEventHandler *arg1 = (otk::OtkEventHandler *) 0 ;
1820 PyObject * obj0 = 0 ;
1821
1822 if(!PyArg_ParseTuple(args,(char *)"O:delete_OtkEventHandler",&obj0)) goto fail;
1823 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1824 delete arg1;
1825
1826 Py_INCREF(Py_None); resultobj = Py_None;
1827 return resultobj;
1828 fail:
1829 return NULL;
1830 }
1831
1832
1833 static PyObject * OtkEventHandler_swigregister(PyObject *self, PyObject *args) {
1834 PyObject *obj;
1835 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
1836 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkEventHandler, obj);
1837 Py_INCREF(obj);
1838 return Py_BuildValue((char *)"");
1839 }
1840 static PyObject *_wrap_new_OtkWidget__SWIG_0(PyObject *self, PyObject *args) {
1841 PyObject *resultobj;
1842 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
1843 int arg2 = (int) otk::OtkWidget::Horizontal ;
1844 otk::OtkWidget *result;
1845 PyObject * obj0 = 0 ;
1846
1847 if(!PyArg_ParseTuple(args,(char *)"O|i:new_OtkWidget",&obj0,&arg2)) goto fail;
1848 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1849 result = (otk::OtkWidget *)new otk::OtkWidget(arg1,(otk::OtkWidget::Direction )arg2);
1850
1851 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OtkWidget, 1);
1852 return resultobj;
1853 fail:
1854 return NULL;
1855 }
1856
1857
1858 static PyObject *_wrap_new_OtkWidget__SWIG_1(PyObject *self, PyObject *args) {
1859 PyObject *resultobj;
1860 otk::OtkEventDispatcher *arg1 = (otk::OtkEventDispatcher *) 0 ;
1861 otk::Style *arg2 = (otk::Style *) 0 ;
1862 int arg3 = (int) otk::OtkWidget::Horizontal ;
1863 Cursor arg4 = (Cursor) 0 ;
1864 int arg5 = (int) 1 ;
1865 bool arg6 = (bool) false ;
1866 otk::OtkWidget *result;
1867 Cursor *argp4 ;
1868 PyObject * obj0 = 0 ;
1869 PyObject * obj1 = 0 ;
1870 PyObject * obj3 = 0 ;
1871 PyObject * obj5 = 0 ;
1872
1873 if(!PyArg_ParseTuple(args,(char *)"OO|iOiO:new_OtkWidget",&obj0,&obj1,&arg3,&obj3,&arg5,&obj5)) goto fail;
1874 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkEventDispatcher,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1875 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1876 if (obj3) {
1877 if ((SWIG_ConvertPtr(obj3,(void **) &argp4, SWIGTYPE_p_Cursor,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
1878 arg4 = *argp4;
1879 }
1880 if (obj5) {
1881 arg6 = (bool) PyInt_AsLong(obj5);
1882 if (PyErr_Occurred()) SWIG_fail;
1883 }
1884 result = (otk::OtkWidget *)new otk::OtkWidget(arg1,arg2,(otk::OtkWidget::Direction )arg3,arg4,arg5,arg6);
1885
1886 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OtkWidget, 1);
1887 return resultobj;
1888 fail:
1889 return NULL;
1890 }
1891
1892
1893 static PyObject *_wrap_new_OtkWidget(PyObject *self, PyObject *args) {
1894 int argc;
1895 PyObject *argv[7];
1896 int ii;
1897
1898 argc = PyObject_Length(args);
1899 for (ii = 0; (ii < argc) && (ii < 6); ii++) {
1900 argv[ii] = PyTuple_GetItem(args,ii);
1901 }
1902 if ((argc >= 1) && (argc <= 2)) {
1903 int _v;
1904 {
1905 void *ptr;
1906 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OtkWidget, 0) == -1) {
1907 _v = 0;
1908 PyErr_Clear();
1909 }else {
1910 _v = 1;
1911 }
1912 }
1913 if (_v) {
1914 if (argc <= 1) {
1915 return _wrap_new_OtkWidget__SWIG_0(self,args);
1916 }
1917 {
1918 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
1919 }
1920 if (_v) {
1921 return _wrap_new_OtkWidget__SWIG_0(self,args);
1922 }
1923 }
1924 }
1925 if ((argc >= 2) && (argc <= 6)) {
1926 int _v;
1927 {
1928 void *ptr;
1929 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OtkEventDispatcher, 0) == -1) {
1930 _v = 0;
1931 PyErr_Clear();
1932 }else {
1933 _v = 1;
1934 }
1935 }
1936 if (_v) {
1937 {
1938 void *ptr;
1939 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Style, 0) == -1) {
1940 _v = 0;
1941 PyErr_Clear();
1942 }else {
1943 _v = 1;
1944 }
1945 }
1946 if (_v) {
1947 if (argc <= 2) {
1948 return _wrap_new_OtkWidget__SWIG_1(self,args);
1949 }
1950 {
1951 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
1952 }
1953 if (_v) {
1954 if (argc <= 3) {
1955 return _wrap_new_OtkWidget__SWIG_1(self,args);
1956 }
1957 {
1958 void *ptr;
1959 if (SWIG_ConvertPtr(argv[3], (void **) &ptr, SWIGTYPE_p_Cursor, 0) == -1) {
1960 _v = 0;
1961 PyErr_Clear();
1962 }else {
1963 _v = 1;
1964 }
1965 }
1966 if (_v) {
1967 if (argc <= 4) {
1968 return _wrap_new_OtkWidget__SWIG_1(self,args);
1969 }
1970 {
1971 _v = (PyInt_Check(argv[4]) || PyLong_Check(argv[4])) ? 1 : 0;
1972 }
1973 if (_v) {
1974 if (argc <= 5) {
1975 return _wrap_new_OtkWidget__SWIG_1(self,args);
1976 }
1977 {
1978 _v = (PyInt_Check(argv[5]) || PyLong_Check(argv[5])) ? 1 : 0;
1979 }
1980 if (_v) {
1981 return _wrap_new_OtkWidget__SWIG_1(self,args);
1982 }
1983 }
1984 }
1985 }
1986 }
1987 }
1988 }
1989
1990 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_OtkWidget'");
1991 return NULL;
1992 }
1993
1994
1995 static PyObject *_wrap_delete_OtkWidget(PyObject *self, PyObject *args) {
1996 PyObject *resultobj;
1997 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
1998 PyObject * obj0 = 0 ;
1999
2000 if(!PyArg_ParseTuple(args,(char *)"O:delete_OtkWidget",&obj0)) goto fail;
2001 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2002 delete arg1;
2003
2004 Py_INCREF(Py_None); resultobj = Py_None;
2005 return resultobj;
2006 fail:
2007 return NULL;
2008 }
2009
2010
2011 static PyObject *_wrap_OtkWidget_update(PyObject *self, PyObject *args) {
2012 PyObject *resultobj;
2013 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2014 PyObject * obj0 = 0 ;
2015
2016 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_update",&obj0)) goto fail;
2017 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2018 (arg1)->update();
2019
2020 Py_INCREF(Py_None); resultobj = Py_None;
2021 return resultobj;
2022 fail:
2023 return NULL;
2024 }
2025
2026
2027 static PyObject *_wrap_OtkWidget_exposeHandler(PyObject *self, PyObject *args) {
2028 PyObject *resultobj;
2029 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2030 XExposeEvent *arg2 = 0 ;
2031 PyObject * obj0 = 0 ;
2032 PyObject * obj1 = 0 ;
2033
2034 if(!PyArg_ParseTuple(args,(char *)"OO:OtkWidget_exposeHandler",&obj0,&obj1)) goto fail;
2035 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2036 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XExposeEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2037 if (arg2 == NULL) {
2038 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
2039 }
2040 (arg1)->exposeHandler((XExposeEvent const &)*arg2);
2041
2042 Py_INCREF(Py_None); resultobj = Py_None;
2043 return resultobj;
2044 fail:
2045 return NULL;
2046 }
2047
2048
2049 static PyObject *_wrap_OtkWidget_configureHandler(PyObject *self, PyObject *args) {
2050 PyObject *resultobj;
2051 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2052 XConfigureEvent *arg2 = 0 ;
2053 PyObject * obj0 = 0 ;
2054 PyObject * obj1 = 0 ;
2055
2056 if(!PyArg_ParseTuple(args,(char *)"OO:OtkWidget_configureHandler",&obj0,&obj1)) goto fail;
2057 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2058 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XConfigureEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2059 if (arg2 == NULL) {
2060 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
2061 }
2062 (arg1)->configureHandler((XConfigureEvent const &)*arg2);
2063
2064 Py_INCREF(Py_None); resultobj = Py_None;
2065 return resultobj;
2066 fail:
2067 return NULL;
2068 }
2069
2070
2071 static PyObject *_wrap_OtkWidget_window(PyObject *self, PyObject *args) {
2072 PyObject *resultobj;
2073 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2074 Window result;
2075 PyObject * obj0 = 0 ;
2076
2077 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_window",&obj0)) goto fail;
2078 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2079 result = ((otk::OtkWidget const *)arg1)->window();
2080
2081 {
2082 Window * resultptr;
2083 resultptr = new Window((Window &) result);
2084 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Window, 1);
2085 }
2086 return resultobj;
2087 fail:
2088 return NULL;
2089 }
2090
2091
2092 static PyObject *_wrap_OtkWidget_parent(PyObject *self, PyObject *args) {
2093 PyObject *resultobj;
2094 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2095 otk::OtkWidget *result;
2096 PyObject * obj0 = 0 ;
2097
2098 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_parent",&obj0)) goto fail;
2099 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2100 result = (otk::OtkWidget *)((otk::OtkWidget const *)arg1)->parent();
2101
2102 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OtkWidget, 0);
2103 return resultobj;
2104 fail:
2105 return NULL;
2106 }
2107
2108
2109 static PyObject *_wrap_OtkWidget_children(PyObject *self, PyObject *args) {
2110 PyObject *resultobj;
2111 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2112 otk::OtkWidget::OtkWidgetList *result;
2113 PyObject * obj0 = 0 ;
2114
2115 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_children",&obj0)) goto fail;
2116 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2117 {
2118 otk::OtkWidget::OtkWidgetList const &_result_ref = ((otk::OtkWidget const *)arg1)->children();
2119 result = (otk::OtkWidget::OtkWidgetList *) &_result_ref;
2120 }
2121
2122 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OtkWidget__OtkWidgetList, 0);
2123 return resultobj;
2124 fail:
2125 return NULL;
2126 }
2127
2128
2129 static PyObject *_wrap_OtkWidget_screen(PyObject *self, PyObject *args) {
2130 PyObject *resultobj;
2131 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2132 unsigned int result;
2133 PyObject * obj0 = 0 ;
2134
2135 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_screen",&obj0)) goto fail;
2136 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2137 result = (unsigned int)((otk::OtkWidget const *)arg1)->screen();
2138
2139 resultobj = PyInt_FromLong((long)result);
2140 return resultobj;
2141 fail:
2142 return NULL;
2143 }
2144
2145
2146 static PyObject *_wrap_OtkWidget_rect(PyObject *self, PyObject *args) {
2147 PyObject *resultobj;
2148 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2149 otk::Rect *result;
2150 PyObject * obj0 = 0 ;
2151
2152 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_rect",&obj0)) goto fail;
2153 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2154 {
2155 otk::Rect const &_result_ref = ((otk::OtkWidget const *)arg1)->rect();
2156 result = (otk::Rect *) &_result_ref;
2157 }
2158
2159 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Rect, 0);
2160 return resultobj;
2161 fail:
2162 return NULL;
2163 }
2164
2165
2166 static PyObject *_wrap_OtkWidget_move__SWIG_0(PyObject *self, PyObject *args) {
2167 PyObject *resultobj;
2168 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2169 otk::Point *arg2 = 0 ;
2170 PyObject * obj0 = 0 ;
2171 PyObject * obj1 = 0 ;
2172
2173 if(!PyArg_ParseTuple(args,(char *)"OO:OtkWidget_move",&obj0,&obj1)) goto fail;
2174 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2175 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2176 if (arg2 == NULL) {
2177 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
2178 }
2179 (arg1)->move((otk::Point const &)*arg2);
2180
2181 Py_INCREF(Py_None); resultobj = Py_None;
2182 return resultobj;
2183 fail:
2184 return NULL;
2185 }
2186
2187
2188 static PyObject *_wrap_OtkWidget_move__SWIG_1(PyObject *self, PyObject *args) {
2189 PyObject *resultobj;
2190 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2191 int arg2 ;
2192 int arg3 ;
2193 PyObject * obj0 = 0 ;
2194
2195 if(!PyArg_ParseTuple(args,(char *)"Oii:OtkWidget_move",&obj0,&arg2,&arg3)) goto fail;
2196 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2197 (arg1)->move(arg2,arg3);
2198
2199 Py_INCREF(Py_None); resultobj = Py_None;
2200 return resultobj;
2201 fail:
2202 return NULL;
2203 }
2204
2205
2206 static PyObject *_wrap_OtkWidget_move(PyObject *self, PyObject *args) {
2207 int argc;
2208 PyObject *argv[4];
2209 int ii;
2210
2211 argc = PyObject_Length(args);
2212 for (ii = 0; (ii < argc) && (ii < 3); ii++) {
2213 argv[ii] = PyTuple_GetItem(args,ii);
2214 }
2215 if (argc == 2) {
2216 int _v;
2217 {
2218 void *ptr;
2219 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OtkWidget, 0) == -1) {
2220 _v = 0;
2221 PyErr_Clear();
2222 }else {
2223 _v = 1;
2224 }
2225 }
2226 if (_v) {
2227 {
2228 void *ptr;
2229 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
2230 _v = 0;
2231 PyErr_Clear();
2232 }else {
2233 _v = 1;
2234 }
2235 }
2236 if (_v) {
2237 return _wrap_OtkWidget_move__SWIG_0(self,args);
2238 }
2239 }
2240 }
2241 if (argc == 3) {
2242 int _v;
2243 {
2244 void *ptr;
2245 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OtkWidget, 0) == -1) {
2246 _v = 0;
2247 PyErr_Clear();
2248 }else {
2249 _v = 1;
2250 }
2251 }
2252 if (_v) {
2253 {
2254 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
2255 }
2256 if (_v) {
2257 {
2258 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
2259 }
2260 if (_v) {
2261 return _wrap_OtkWidget_move__SWIG_1(self,args);
2262 }
2263 }
2264 }
2265 }
2266
2267 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'OtkWidget_move'");
2268 return NULL;
2269 }
2270
2271
2272 static PyObject *_wrap_OtkWidget_setWidth(PyObject *self, PyObject *args) {
2273 PyObject *resultobj;
2274 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2275 int arg2 ;
2276 PyObject * obj0 = 0 ;
2277
2278 if(!PyArg_ParseTuple(args,(char *)"Oi:OtkWidget_setWidth",&obj0,&arg2)) goto fail;
2279 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2280 (arg1)->setWidth(arg2);
2281
2282 Py_INCREF(Py_None); resultobj = Py_None;
2283 return resultobj;
2284 fail:
2285 return NULL;
2286 }
2287
2288
2289 static PyObject *_wrap_OtkWidget_setHeight(PyObject *self, PyObject *args) {
2290 PyObject *resultobj;
2291 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2292 int arg2 ;
2293 PyObject * obj0 = 0 ;
2294
2295 if(!PyArg_ParseTuple(args,(char *)"Oi:OtkWidget_setHeight",&obj0,&arg2)) goto fail;
2296 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2297 (arg1)->setHeight(arg2);
2298
2299 Py_INCREF(Py_None); resultobj = Py_None;
2300 return resultobj;
2301 fail:
2302 return NULL;
2303 }
2304
2305
2306 static PyObject *_wrap_OtkWidget_width(PyObject *self, PyObject *args) {
2307 PyObject *resultobj;
2308 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2309 int result;
2310 PyObject * obj0 = 0 ;
2311
2312 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_width",&obj0)) goto fail;
2313 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2314 result = (int)((otk::OtkWidget const *)arg1)->width();
2315
2316 resultobj = PyInt_FromLong((long)result);
2317 return resultobj;
2318 fail:
2319 return NULL;
2320 }
2321
2322
2323 static PyObject *_wrap_OtkWidget_height(PyObject *self, PyObject *args) {
2324 PyObject *resultobj;
2325 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2326 int result;
2327 PyObject * obj0 = 0 ;
2328
2329 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_height",&obj0)) goto fail;
2330 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2331 result = (int)((otk::OtkWidget const *)arg1)->height();
2332
2333 resultobj = PyInt_FromLong((long)result);
2334 return resultobj;
2335 fail:
2336 return NULL;
2337 }
2338
2339
2340 static PyObject *_wrap_OtkWidget_resize__SWIG_0(PyObject *self, PyObject *args) {
2341 PyObject *resultobj;
2342 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2343 otk::Point *arg2 = 0 ;
2344 PyObject * obj0 = 0 ;
2345 PyObject * obj1 = 0 ;
2346
2347 if(!PyArg_ParseTuple(args,(char *)"OO:OtkWidget_resize",&obj0,&obj1)) goto fail;
2348 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2349 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2350 if (arg2 == NULL) {
2351 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
2352 }
2353 (arg1)->resize((otk::Point const &)*arg2);
2354
2355 Py_INCREF(Py_None); resultobj = Py_None;
2356 return resultobj;
2357 fail:
2358 return NULL;
2359 }
2360
2361
2362 static PyObject *_wrap_OtkWidget_resize__SWIG_1(PyObject *self, PyObject *args) {
2363 PyObject *resultobj;
2364 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2365 int arg2 ;
2366 int arg3 ;
2367 PyObject * obj0 = 0 ;
2368
2369 if(!PyArg_ParseTuple(args,(char *)"Oii:OtkWidget_resize",&obj0,&arg2,&arg3)) goto fail;
2370 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2371 (arg1)->resize(arg2,arg3);
2372
2373 Py_INCREF(Py_None); resultobj = Py_None;
2374 return resultobj;
2375 fail:
2376 return NULL;
2377 }
2378
2379
2380 static PyObject *_wrap_OtkWidget_resize(PyObject *self, PyObject *args) {
2381 int argc;
2382 PyObject *argv[4];
2383 int ii;
2384
2385 argc = PyObject_Length(args);
2386 for (ii = 0; (ii < argc) && (ii < 3); ii++) {
2387 argv[ii] = PyTuple_GetItem(args,ii);
2388 }
2389 if (argc == 2) {
2390 int _v;
2391 {
2392 void *ptr;
2393 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OtkWidget, 0) == -1) {
2394 _v = 0;
2395 PyErr_Clear();
2396 }else {
2397 _v = 1;
2398 }
2399 }
2400 if (_v) {
2401 {
2402 void *ptr;
2403 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
2404 _v = 0;
2405 PyErr_Clear();
2406 }else {
2407 _v = 1;
2408 }
2409 }
2410 if (_v) {
2411 return _wrap_OtkWidget_resize__SWIG_0(self,args);
2412 }
2413 }
2414 }
2415 if (argc == 3) {
2416 int _v;
2417 {
2418 void *ptr;
2419 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OtkWidget, 0) == -1) {
2420 _v = 0;
2421 PyErr_Clear();
2422 }else {
2423 _v = 1;
2424 }
2425 }
2426 if (_v) {
2427 {
2428 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
2429 }
2430 if (_v) {
2431 {
2432 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
2433 }
2434 if (_v) {
2435 return _wrap_OtkWidget_resize__SWIG_1(self,args);
2436 }
2437 }
2438 }
2439 }
2440
2441 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'OtkWidget_resize'");
2442 return NULL;
2443 }
2444
2445
2446 static PyObject *_wrap_OtkWidget_setGeometry__SWIG_0(PyObject *self, PyObject *args) {
2447 PyObject *resultobj;
2448 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2449 otk::Rect *arg2 = 0 ;
2450 PyObject * obj0 = 0 ;
2451 PyObject * obj1 = 0 ;
2452
2453 if(!PyArg_ParseTuple(args,(char *)"OO:OtkWidget_setGeometry",&obj0,&obj1)) goto fail;
2454 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2455 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2456 if (arg2 == NULL) {
2457 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
2458 }
2459 (arg1)->setGeometry((otk::Rect const &)*arg2);
2460
2461 Py_INCREF(Py_None); resultobj = Py_None;
2462 return resultobj;
2463 fail:
2464 return NULL;
2465 }
2466
2467
2468 static PyObject *_wrap_OtkWidget_setGeometry__SWIG_1(PyObject *self, PyObject *args) {
2469 PyObject *resultobj;
2470 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2471 otk::Point *arg2 = 0 ;
2472 int arg3 ;
2473 int arg4 ;
2474 PyObject * obj0 = 0 ;
2475 PyObject * obj1 = 0 ;
2476
2477 if(!PyArg_ParseTuple(args,(char *)"OOii:OtkWidget_setGeometry",&obj0,&obj1,&arg3,&arg4)) goto fail;
2478 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2479 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2480 if (arg2 == NULL) {
2481 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
2482 }
2483 (arg1)->setGeometry((otk::Point const &)*arg2,arg3,arg4);
2484
2485 Py_INCREF(Py_None); resultobj = Py_None;
2486 return resultobj;
2487 fail:
2488 return NULL;
2489 }
2490
2491
2492 static PyObject *_wrap_OtkWidget_setGeometry__SWIG_2(PyObject *self, PyObject *args) {
2493 PyObject *resultobj;
2494 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2495 int arg2 ;
2496 int arg3 ;
2497 int arg4 ;
2498 int arg5 ;
2499 PyObject * obj0 = 0 ;
2500
2501 if(!PyArg_ParseTuple(args,(char *)"Oiiii:OtkWidget_setGeometry",&obj0,&arg2,&arg3,&arg4,&arg5)) goto fail;
2502 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2503 (arg1)->setGeometry(arg2,arg3,arg4,arg5);
2504
2505 Py_INCREF(Py_None); resultobj = Py_None;
2506 return resultobj;
2507 fail:
2508 return NULL;
2509 }
2510
2511
2512 static PyObject *_wrap_OtkWidget_setGeometry(PyObject *self, PyObject *args) {
2513 int argc;
2514 PyObject *argv[6];
2515 int ii;
2516
2517 argc = PyObject_Length(args);
2518 for (ii = 0; (ii < argc) && (ii < 5); ii++) {
2519 argv[ii] = PyTuple_GetItem(args,ii);
2520 }
2521 if (argc == 2) {
2522 int _v;
2523 {
2524 void *ptr;
2525 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OtkWidget, 0) == -1) {
2526 _v = 0;
2527 PyErr_Clear();
2528 }else {
2529 _v = 1;
2530 }
2531 }
2532 if (_v) {
2533 {
2534 void *ptr;
2535 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
2536 _v = 0;
2537 PyErr_Clear();
2538 }else {
2539 _v = 1;
2540 }
2541 }
2542 if (_v) {
2543 return _wrap_OtkWidget_setGeometry__SWIG_0(self,args);
2544 }
2545 }
2546 }
2547 if (argc == 4) {
2548 int _v;
2549 {
2550 void *ptr;
2551 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OtkWidget, 0) == -1) {
2552 _v = 0;
2553 PyErr_Clear();
2554 }else {
2555 _v = 1;
2556 }
2557 }
2558 if (_v) {
2559 {
2560 void *ptr;
2561 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
2562 _v = 0;
2563 PyErr_Clear();
2564 }else {
2565 _v = 1;
2566 }
2567 }
2568 if (_v) {
2569 {
2570 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
2571 }
2572 if (_v) {
2573 {
2574 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
2575 }
2576 if (_v) {
2577 return _wrap_OtkWidget_setGeometry__SWIG_1(self,args);
2578 }
2579 }
2580 }
2581 }
2582 }
2583 if (argc == 5) {
2584 int _v;
2585 {
2586 void *ptr;
2587 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OtkWidget, 0) == -1) {
2588 _v = 0;
2589 PyErr_Clear();
2590 }else {
2591 _v = 1;
2592 }
2593 }
2594 if (_v) {
2595 {
2596 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
2597 }
2598 if (_v) {
2599 {
2600 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
2601 }
2602 if (_v) {
2603 {
2604 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
2605 }
2606 if (_v) {
2607 {
2608 _v = (PyInt_Check(argv[4]) || PyLong_Check(argv[4])) ? 1 : 0;
2609 }
2610 if (_v) {
2611 return _wrap_OtkWidget_setGeometry__SWIG_2(self,args);
2612 }
2613 }
2614 }
2615 }
2616 }
2617 }
2618
2619 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'OtkWidget_setGeometry'");
2620 return NULL;
2621 }
2622
2623
2624 static PyObject *_wrap_OtkWidget_isVisible(PyObject *self, PyObject *args) {
2625 PyObject *resultobj;
2626 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2627 bool result;
2628 PyObject * obj0 = 0 ;
2629
2630 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_isVisible",&obj0)) goto fail;
2631 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2632 result = (bool)((otk::OtkWidget const *)arg1)->isVisible();
2633
2634 resultobj = PyInt_FromLong((long)result);
2635 return resultobj;
2636 fail:
2637 return NULL;
2638 }
2639
2640
2641 static PyObject *_wrap_OtkWidget_show(PyObject *self, PyObject *args) {
2642 PyObject *resultobj;
2643 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2644 bool arg2 = (bool) false ;
2645 PyObject * obj0 = 0 ;
2646 PyObject * obj1 = 0 ;
2647
2648 if(!PyArg_ParseTuple(args,(char *)"O|O:OtkWidget_show",&obj0,&obj1)) goto fail;
2649 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2650 if (obj1) {
2651 arg2 = (bool) PyInt_AsLong(obj1);
2652 if (PyErr_Occurred()) SWIG_fail;
2653 }
2654 (arg1)->show(arg2);
2655
2656 Py_INCREF(Py_None); resultobj = Py_None;
2657 return resultobj;
2658 fail:
2659 return NULL;
2660 }
2661
2662
2663 static PyObject *_wrap_OtkWidget_hide(PyObject *self, PyObject *args) {
2664 PyObject *resultobj;
2665 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2666 bool arg2 = (bool) false ;
2667 PyObject * obj0 = 0 ;
2668 PyObject * obj1 = 0 ;
2669
2670 if(!PyArg_ParseTuple(args,(char *)"O|O:OtkWidget_hide",&obj0,&obj1)) goto fail;
2671 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2672 if (obj1) {
2673 arg2 = (bool) PyInt_AsLong(obj1);
2674 if (PyErr_Occurred()) SWIG_fail;
2675 }
2676 (arg1)->hide(arg2);
2677
2678 Py_INCREF(Py_None); resultobj = Py_None;
2679 return resultobj;
2680 fail:
2681 return NULL;
2682 }
2683
2684
2685 static PyObject *_wrap_OtkWidget_isFocused(PyObject *self, PyObject *args) {
2686 PyObject *resultobj;
2687 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2688 bool result;
2689 PyObject * obj0 = 0 ;
2690
2691 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_isFocused",&obj0)) goto fail;
2692 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2693 result = (bool)((otk::OtkWidget const *)arg1)->isFocused();
2694
2695 resultobj = PyInt_FromLong((long)result);
2696 return resultobj;
2697 fail:
2698 return NULL;
2699 }
2700
2701
2702 static PyObject *_wrap_OtkWidget_focus(PyObject *self, PyObject *args) {
2703 PyObject *resultobj;
2704 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2705 PyObject * obj0 = 0 ;
2706
2707 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_focus",&obj0)) goto fail;
2708 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2709 (arg1)->focus();
2710
2711 Py_INCREF(Py_None); resultobj = Py_None;
2712 return resultobj;
2713 fail:
2714 return NULL;
2715 }
2716
2717
2718 static PyObject *_wrap_OtkWidget_unfocus(PyObject *self, PyObject *args) {
2719 PyObject *resultobj;
2720 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2721 PyObject * obj0 = 0 ;
2722
2723 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_unfocus",&obj0)) goto fail;
2724 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2725 (arg1)->unfocus();
2726
2727 Py_INCREF(Py_None); resultobj = Py_None;
2728 return resultobj;
2729 fail:
2730 return NULL;
2731 }
2732
2733
2734 static PyObject *_wrap_OtkWidget_hasGrabbedMouse(PyObject *self, PyObject *args) {
2735 PyObject *resultobj;
2736 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2737 bool result;
2738 PyObject * obj0 = 0 ;
2739
2740 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_hasGrabbedMouse",&obj0)) goto fail;
2741 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2742 result = (bool)((otk::OtkWidget const *)arg1)->hasGrabbedMouse();
2743
2744 resultobj = PyInt_FromLong((long)result);
2745 return resultobj;
2746 fail:
2747 return NULL;
2748 }
2749
2750
2751 static PyObject *_wrap_OtkWidget_grabMouse(PyObject *self, PyObject *args) {
2752 PyObject *resultobj;
2753 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2754 bool result;
2755 PyObject * obj0 = 0 ;
2756
2757 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_grabMouse",&obj0)) goto fail;
2758 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2759 result = (bool)(arg1)->grabMouse();
2760
2761 resultobj = PyInt_FromLong((long)result);
2762 return resultobj;
2763 fail:
2764 return NULL;
2765 }
2766
2767
2768 static PyObject *_wrap_OtkWidget_ungrabMouse(PyObject *self, PyObject *args) {
2769 PyObject *resultobj;
2770 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2771 PyObject * obj0 = 0 ;
2772
2773 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_ungrabMouse",&obj0)) goto fail;
2774 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2775 (arg1)->ungrabMouse();
2776
2777 Py_INCREF(Py_None); resultobj = Py_None;
2778 return resultobj;
2779 fail:
2780 return NULL;
2781 }
2782
2783
2784 static PyObject *_wrap_OtkWidget_hasGrabbedKeyboard(PyObject *self, PyObject *args) {
2785 PyObject *resultobj;
2786 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2787 bool result;
2788 PyObject * obj0 = 0 ;
2789
2790 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_hasGrabbedKeyboard",&obj0)) goto fail;
2791 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2792 result = (bool)((otk::OtkWidget const *)arg1)->hasGrabbedKeyboard();
2793
2794 resultobj = PyInt_FromLong((long)result);
2795 return resultobj;
2796 fail:
2797 return NULL;
2798 }
2799
2800
2801 static PyObject *_wrap_OtkWidget_grabKeyboard(PyObject *self, PyObject *args) {
2802 PyObject *resultobj;
2803 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2804 bool result;
2805 PyObject * obj0 = 0 ;
2806
2807 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_grabKeyboard",&obj0)) goto fail;
2808 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2809 result = (bool)(arg1)->grabKeyboard();
2810
2811 resultobj = PyInt_FromLong((long)result);
2812 return resultobj;
2813 fail:
2814 return NULL;
2815 }
2816
2817
2818 static PyObject *_wrap_OtkWidget_ungrabKeyboard(PyObject *self, PyObject *args) {
2819 PyObject *resultobj;
2820 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2821 PyObject * obj0 = 0 ;
2822
2823 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_ungrabKeyboard",&obj0)) goto fail;
2824 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2825 (arg1)->ungrabKeyboard();
2826
2827 Py_INCREF(Py_None); resultobj = Py_None;
2828 return resultobj;
2829 fail:
2830 return NULL;
2831 }
2832
2833
2834 static PyObject *_wrap_OtkWidget_texture(PyObject *self, PyObject *args) {
2835 PyObject *resultobj;
2836 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2837 otk::BTexture *result;
2838 PyObject * obj0 = 0 ;
2839
2840 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_texture",&obj0)) goto fail;
2841 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2842 result = (otk::BTexture *)((otk::OtkWidget const *)arg1)->texture();
2843
2844 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
2845 return resultobj;
2846 fail:
2847 return NULL;
2848 }
2849
2850
2851 static PyObject *_wrap_OtkWidget_setTexture(PyObject *self, PyObject *args) {
2852 PyObject *resultobj;
2853 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2854 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
2855 PyObject * obj0 = 0 ;
2856 PyObject * obj1 = 0 ;
2857
2858 if(!PyArg_ParseTuple(args,(char *)"OO:OtkWidget_setTexture",&obj0,&obj1)) goto fail;
2859 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2860 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2861 (arg1)->setTexture(arg2);
2862
2863 Py_INCREF(Py_None); resultobj = Py_None;
2864 return resultobj;
2865 fail:
2866 return NULL;
2867 }
2868
2869
2870 static PyObject *_wrap_OtkWidget_borderColor(PyObject *self, PyObject *args) {
2871 PyObject *resultobj;
2872 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2873 otk::BColor *result;
2874 PyObject * obj0 = 0 ;
2875
2876 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_borderColor",&obj0)) goto fail;
2877 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2878 result = (otk::BColor *)((otk::OtkWidget const *)arg1)->borderColor();
2879
2880 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
2881 return resultobj;
2882 fail:
2883 return NULL;
2884 }
2885
2886
2887 static PyObject *_wrap_OtkWidget_setBorderColor(PyObject *self, PyObject *args) {
2888 PyObject *resultobj;
2889 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2890 otk::BColor *arg2 = (otk::BColor *) 0 ;
2891 PyObject * obj0 = 0 ;
2892 PyObject * obj1 = 0 ;
2893
2894 if(!PyArg_ParseTuple(args,(char *)"OO:OtkWidget_setBorderColor",&obj0,&obj1)) goto fail;
2895 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2896 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2897 (arg1)->setBorderColor((otk::BColor const *)arg2);
2898
2899 Py_INCREF(Py_None); resultobj = Py_None;
2900 return resultobj;
2901 fail:
2902 return NULL;
2903 }
2904
2905
2906 static PyObject *_wrap_OtkWidget_borderWidth(PyObject *self, PyObject *args) {
2907 PyObject *resultobj;
2908 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2909 int result;
2910 PyObject * obj0 = 0 ;
2911
2912 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_borderWidth",&obj0)) goto fail;
2913 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2914 result = (int)((otk::OtkWidget const *)arg1)->borderWidth();
2915
2916 resultobj = PyInt_FromLong((long)result);
2917 return resultobj;
2918 fail:
2919 return NULL;
2920 }
2921
2922
2923 static PyObject *_wrap_OtkWidget_setBorderWidth(PyObject *self, PyObject *args) {
2924 PyObject *resultobj;
2925 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2926 int arg2 ;
2927 PyObject * obj0 = 0 ;
2928
2929 if(!PyArg_ParseTuple(args,(char *)"Oi:OtkWidget_setBorderWidth",&obj0,&arg2)) goto fail;
2930 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2931 (arg1)->setBorderWidth(arg2);
2932
2933 Py_INCREF(Py_None); resultobj = Py_None;
2934 return resultobj;
2935 fail:
2936 return NULL;
2937 }
2938
2939
2940 static PyObject *_wrap_OtkWidget_addChild(PyObject *self, PyObject *args) {
2941 PyObject *resultobj;
2942 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2943 otk::OtkWidget *arg2 = (otk::OtkWidget *) 0 ;
2944 bool arg3 = (bool) false ;
2945 PyObject * obj0 = 0 ;
2946 PyObject * obj1 = 0 ;
2947 PyObject * obj2 = 0 ;
2948
2949 if(!PyArg_ParseTuple(args,(char *)"OO|O:OtkWidget_addChild",&obj0,&obj1,&obj2)) goto fail;
2950 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2951 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2952 if (obj2) {
2953 arg3 = (bool) PyInt_AsLong(obj2);
2954 if (PyErr_Occurred()) SWIG_fail;
2955 }
2956 (arg1)->addChild(arg2,arg3);
2957
2958 Py_INCREF(Py_None); resultobj = Py_None;
2959 return resultobj;
2960 fail:
2961 return NULL;
2962 }
2963
2964
2965 static PyObject *_wrap_OtkWidget_removeChild(PyObject *self, PyObject *args) {
2966 PyObject *resultobj;
2967 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2968 otk::OtkWidget *arg2 = (otk::OtkWidget *) 0 ;
2969 PyObject * obj0 = 0 ;
2970 PyObject * obj1 = 0 ;
2971
2972 if(!PyArg_ParseTuple(args,(char *)"OO:OtkWidget_removeChild",&obj0,&obj1)) goto fail;
2973 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2974 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2975 (arg1)->removeChild(arg2);
2976
2977 Py_INCREF(Py_None); resultobj = Py_None;
2978 return resultobj;
2979 fail:
2980 return NULL;
2981 }
2982
2983
2984 static PyObject *_wrap_OtkWidget_isStretchableHorz(PyObject *self, PyObject *args) {
2985 PyObject *resultobj;
2986 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
2987 bool result;
2988 PyObject * obj0 = 0 ;
2989
2990 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_isStretchableHorz",&obj0)) goto fail;
2991 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2992 result = (bool)((otk::OtkWidget const *)arg1)->isStretchableHorz();
2993
2994 resultobj = PyInt_FromLong((long)result);
2995 return resultobj;
2996 fail:
2997 return NULL;
2998 }
2999
3000
3001 static PyObject *_wrap_OtkWidget_setStretchableHorz(PyObject *self, PyObject *args) {
3002 PyObject *resultobj;
3003 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3004 bool arg2 = (bool) true ;
3005 PyObject * obj0 = 0 ;
3006 PyObject * obj1 = 0 ;
3007
3008 if(!PyArg_ParseTuple(args,(char *)"O|O:OtkWidget_setStretchableHorz",&obj0,&obj1)) goto fail;
3009 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3010 if (obj1) {
3011 arg2 = (bool) PyInt_AsLong(obj1);
3012 if (PyErr_Occurred()) SWIG_fail;
3013 }
3014 (arg1)->setStretchableHorz(arg2);
3015
3016 Py_INCREF(Py_None); resultobj = Py_None;
3017 return resultobj;
3018 fail:
3019 return NULL;
3020 }
3021
3022
3023 static PyObject *_wrap_OtkWidget_isStretchableVert(PyObject *self, PyObject *args) {
3024 PyObject *resultobj;
3025 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3026 bool result;
3027 PyObject * obj0 = 0 ;
3028
3029 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_isStretchableVert",&obj0)) goto fail;
3030 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3031 result = (bool)((otk::OtkWidget const *)arg1)->isStretchableVert();
3032
3033 resultobj = PyInt_FromLong((long)result);
3034 return resultobj;
3035 fail:
3036 return NULL;
3037 }
3038
3039
3040 static PyObject *_wrap_OtkWidget_setStretchableVert(PyObject *self, PyObject *args) {
3041 PyObject *resultobj;
3042 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3043 bool arg2 = (bool) true ;
3044 PyObject * obj0 = 0 ;
3045 PyObject * obj1 = 0 ;
3046
3047 if(!PyArg_ParseTuple(args,(char *)"O|O:OtkWidget_setStretchableVert",&obj0,&obj1)) goto fail;
3048 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3049 if (obj1) {
3050 arg2 = (bool) PyInt_AsLong(obj1);
3051 if (PyErr_Occurred()) SWIG_fail;
3052 }
3053 (arg1)->setStretchableVert(arg2);
3054
3055 Py_INCREF(Py_None); resultobj = Py_None;
3056 return resultobj;
3057 fail:
3058 return NULL;
3059 }
3060
3061
3062 static PyObject *_wrap_OtkWidget_cursor(PyObject *self, PyObject *args) {
3063 PyObject *resultobj;
3064 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3065 Cursor result;
3066 PyObject * obj0 = 0 ;
3067
3068 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_cursor",&obj0)) goto fail;
3069 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3070 result = ((otk::OtkWidget const *)arg1)->cursor();
3071
3072 {
3073 Cursor * resultptr;
3074 resultptr = new Cursor((Cursor &) result);
3075 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Cursor, 1);
3076 }
3077 return resultobj;
3078 fail:
3079 return NULL;
3080 }
3081
3082
3083 static PyObject *_wrap_OtkWidget_setCursor(PyObject *self, PyObject *args) {
3084 PyObject *resultobj;
3085 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3086 Cursor arg2 ;
3087 Cursor *argp2 ;
3088 PyObject * obj0 = 0 ;
3089 PyObject * obj1 = 0 ;
3090
3091 if(!PyArg_ParseTuple(args,(char *)"OO:OtkWidget_setCursor",&obj0,&obj1)) goto fail;
3092 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3093 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Cursor,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
3094 arg2 = *argp2;
3095 (arg1)->setCursor(arg2);
3096
3097 Py_INCREF(Py_None); resultobj = Py_None;
3098 return resultobj;
3099 fail:
3100 return NULL;
3101 }
3102
3103
3104 static PyObject *_wrap_OtkWidget_bevelWidth(PyObject *self, PyObject *args) {
3105 PyObject *resultobj;
3106 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3107 int result;
3108 PyObject * obj0 = 0 ;
3109
3110 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_bevelWidth",&obj0)) goto fail;
3111 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3112 result = (int)((otk::OtkWidget const *)arg1)->bevelWidth();
3113
3114 resultobj = PyInt_FromLong((long)result);
3115 return resultobj;
3116 fail:
3117 return NULL;
3118 }
3119
3120
3121 static PyObject *_wrap_OtkWidget_setBevelWidth(PyObject *self, PyObject *args) {
3122 PyObject *resultobj;
3123 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3124 int arg2 ;
3125 PyObject * obj0 = 0 ;
3126
3127 if(!PyArg_ParseTuple(args,(char *)"Oi:OtkWidget_setBevelWidth",&obj0,&arg2)) goto fail;
3128 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3129 (arg1)->setBevelWidth(arg2);
3130
3131 Py_INCREF(Py_None); resultobj = Py_None;
3132 return resultobj;
3133 fail:
3134 return NULL;
3135 }
3136
3137
3138 static PyObject *_wrap_OtkWidget_direction(PyObject *self, PyObject *args) {
3139 PyObject *resultobj;
3140 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3141 int result;
3142 PyObject * obj0 = 0 ;
3143
3144 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_direction",&obj0)) goto fail;
3145 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3146 result = (int)((otk::OtkWidget const *)arg1)->direction();
3147
3148 resultobj = PyInt_FromLong((long)result);
3149 return resultobj;
3150 fail:
3151 return NULL;
3152 }
3153
3154
3155 static PyObject *_wrap_OtkWidget_setDirection(PyObject *self, PyObject *args) {
3156 PyObject *resultobj;
3157 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3158 int arg2 ;
3159 PyObject * obj0 = 0 ;
3160
3161 if(!PyArg_ParseTuple(args,(char *)"Oi:OtkWidget_setDirection",&obj0,&arg2)) goto fail;
3162 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3163 (arg1)->setDirection((otk::OtkWidget::Direction )arg2);
3164
3165 Py_INCREF(Py_None); resultobj = Py_None;
3166 return resultobj;
3167 fail:
3168 return NULL;
3169 }
3170
3171
3172 static PyObject *_wrap_OtkWidget_style(PyObject *self, PyObject *args) {
3173 PyObject *resultobj;
3174 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3175 otk::Style *result;
3176 PyObject * obj0 = 0 ;
3177
3178 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_style",&obj0)) goto fail;
3179 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3180 result = (otk::Style *)((otk::OtkWidget const *)arg1)->style();
3181
3182 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Style, 0);
3183 return resultobj;
3184 fail:
3185 return NULL;
3186 }
3187
3188
3189 static PyObject *_wrap_OtkWidget_setStyle(PyObject *self, PyObject *args) {
3190 PyObject *resultobj;
3191 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3192 otk::Style *arg2 = (otk::Style *) 0 ;
3193 PyObject * obj0 = 0 ;
3194 PyObject * obj1 = 0 ;
3195
3196 if(!PyArg_ParseTuple(args,(char *)"OO:OtkWidget_setStyle",&obj0,&obj1)) goto fail;
3197 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3198 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3199 (arg1)->setStyle(arg2);
3200
3201 Py_INCREF(Py_None); resultobj = Py_None;
3202 return resultobj;
3203 fail:
3204 return NULL;
3205 }
3206
3207
3208 static PyObject *_wrap_OtkWidget_eventDispatcher(PyObject *self, PyObject *args) {
3209 PyObject *resultobj;
3210 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3211 otk::OtkEventDispatcher *result;
3212 PyObject * obj0 = 0 ;
3213
3214 if(!PyArg_ParseTuple(args,(char *)"O:OtkWidget_eventDispatcher",&obj0)) goto fail;
3215 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3216 result = (otk::OtkEventDispatcher *)(arg1)->eventDispatcher();
3217
3218 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OtkEventDispatcher, 0);
3219 return resultobj;
3220 fail:
3221 return NULL;
3222 }
3223
3224
3225 static PyObject *_wrap_OtkWidget_setEventDispatcher(PyObject *self, PyObject *args) {
3226 PyObject *resultobj;
3227 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3228 otk::OtkEventDispatcher *arg2 = (otk::OtkEventDispatcher *) 0 ;
3229 PyObject * obj0 = 0 ;
3230 PyObject * obj1 = 0 ;
3231
3232 if(!PyArg_ParseTuple(args,(char *)"OO:OtkWidget_setEventDispatcher",&obj0,&obj1)) goto fail;
3233 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3234 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__OtkEventDispatcher,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3235 (arg1)->setEventDispatcher(arg2);
3236
3237 Py_INCREF(Py_None); resultobj = Py_None;
3238 return resultobj;
3239 fail:
3240 return NULL;
3241 }
3242
3243
3244 static PyObject * OtkWidget_swigregister(PyObject *self, PyObject *args) {
3245 PyObject *obj;
3246 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
3247 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkWidget, obj);
3248 Py_INCREF(obj);
3249 return Py_BuildValue((char *)"");
3250 }
3251 static PyObject *_wrap_new_OtkFocusWidget(PyObject *self, PyObject *args) {
3252 PyObject *resultobj;
3253 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3254 int arg2 = (int) otk::OtkWidget::Horizontal ;
3255 otk::OtkFocusWidget *result;
3256 PyObject * obj0 = 0 ;
3257
3258 if(!PyArg_ParseTuple(args,(char *)"O|i:new_OtkFocusWidget",&obj0,&arg2)) goto fail;
3259 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3260 result = (otk::OtkFocusWidget *)new otk::OtkFocusWidget(arg1,(otk::OtkWidget::Direction )arg2);
3261
3262 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OtkFocusWidget, 1);
3263 return resultobj;
3264 fail:
3265 return NULL;
3266 }
3267
3268
3269 static PyObject *_wrap_delete_OtkFocusWidget(PyObject *self, PyObject *args) {
3270 PyObject *resultobj;
3271 otk::OtkFocusWidget *arg1 = (otk::OtkFocusWidget *) 0 ;
3272 PyObject * obj0 = 0 ;
3273
3274 if(!PyArg_ParseTuple(args,(char *)"O:delete_OtkFocusWidget",&obj0)) goto fail;
3275 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3276 delete arg1;
3277
3278 Py_INCREF(Py_None); resultobj = Py_None;
3279 return resultobj;
3280 fail:
3281 return NULL;
3282 }
3283
3284
3285 static PyObject *_wrap_OtkFocusWidget_focus(PyObject *self, PyObject *args) {
3286 PyObject *resultobj;
3287 otk::OtkFocusWidget *arg1 = (otk::OtkFocusWidget *) 0 ;
3288 PyObject * obj0 = 0 ;
3289
3290 if(!PyArg_ParseTuple(args,(char *)"O:OtkFocusWidget_focus",&obj0)) goto fail;
3291 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3292 (arg1)->focus();
3293
3294 Py_INCREF(Py_None); resultobj = Py_None;
3295 return resultobj;
3296 fail:
3297 return NULL;
3298 }
3299
3300
3301 static PyObject *_wrap_OtkFocusWidget_unfocus(PyObject *self, PyObject *args) {
3302 PyObject *resultobj;
3303 otk::OtkFocusWidget *arg1 = (otk::OtkFocusWidget *) 0 ;
3304 PyObject * obj0 = 0 ;
3305
3306 if(!PyArg_ParseTuple(args,(char *)"O:OtkFocusWidget_unfocus",&obj0)) goto fail;
3307 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3308 (arg1)->unfocus();
3309
3310 Py_INCREF(Py_None); resultobj = Py_None;
3311 return resultobj;
3312 fail:
3313 return NULL;
3314 }
3315
3316
3317 static PyObject *_wrap_OtkFocusWidget_setTexture(PyObject *self, PyObject *args) {
3318 PyObject *resultobj;
3319 otk::OtkFocusWidget *arg1 = (otk::OtkFocusWidget *) 0 ;
3320 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
3321 PyObject * obj0 = 0 ;
3322 PyObject * obj1 = 0 ;
3323
3324 if(!PyArg_ParseTuple(args,(char *)"OO:OtkFocusWidget_setTexture",&obj0,&obj1)) goto fail;
3325 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3326 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3327 (arg1)->setTexture(arg2);
3328
3329 Py_INCREF(Py_None); resultobj = Py_None;
3330 return resultobj;
3331 fail:
3332 return NULL;
3333 }
3334
3335
3336 static PyObject *_wrap_OtkFocusWidget_setBorderColor(PyObject *self, PyObject *args) {
3337 PyObject *resultobj;
3338 otk::OtkFocusWidget *arg1 = (otk::OtkFocusWidget *) 0 ;
3339 otk::BColor *arg2 = (otk::BColor *) 0 ;
3340 PyObject * obj0 = 0 ;
3341 PyObject * obj1 = 0 ;
3342
3343 if(!PyArg_ParseTuple(args,(char *)"OO:OtkFocusWidget_setBorderColor",&obj0,&obj1)) goto fail;
3344 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3345 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3346 (arg1)->setBorderColor((otk::BColor const *)arg2);
3347
3348 Py_INCREF(Py_None); resultobj = Py_None;
3349 return resultobj;
3350 fail:
3351 return NULL;
3352 }
3353
3354
3355 static PyObject *_wrap_OtkFocusWidget_setUnfocusTexture(PyObject *self, PyObject *args) {
3356 PyObject *resultobj;
3357 otk::OtkFocusWidget *arg1 = (otk::OtkFocusWidget *) 0 ;
3358 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
3359 PyObject * obj0 = 0 ;
3360 PyObject * obj1 = 0 ;
3361
3362 if(!PyArg_ParseTuple(args,(char *)"OO:OtkFocusWidget_setUnfocusTexture",&obj0,&obj1)) goto fail;
3363 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3364 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3365 (arg1)->setUnfocusTexture(arg2);
3366
3367 Py_INCREF(Py_None); resultobj = Py_None;
3368 return resultobj;
3369 fail:
3370 return NULL;
3371 }
3372
3373
3374 static PyObject *_wrap_OtkFocusWidget_getUnfocusTexture(PyObject *self, PyObject *args) {
3375 PyObject *resultobj;
3376 otk::OtkFocusWidget *arg1 = (otk::OtkFocusWidget *) 0 ;
3377 otk::BTexture *result;
3378 PyObject * obj0 = 0 ;
3379
3380 if(!PyArg_ParseTuple(args,(char *)"O:OtkFocusWidget_getUnfocusTexture",&obj0)) goto fail;
3381 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3382 result = (otk::BTexture *)((otk::OtkFocusWidget const *)arg1)->getUnfocusTexture();
3383
3384 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
3385 return resultobj;
3386 fail:
3387 return NULL;
3388 }
3389
3390
3391 static PyObject *_wrap_OtkFocusWidget_setUnfocusBorderColor(PyObject *self, PyObject *args) {
3392 PyObject *resultobj;
3393 otk::OtkFocusWidget *arg1 = (otk::OtkFocusWidget *) 0 ;
3394 otk::BColor *arg2 = (otk::BColor *) 0 ;
3395 PyObject * obj0 = 0 ;
3396 PyObject * obj1 = 0 ;
3397
3398 if(!PyArg_ParseTuple(args,(char *)"OO:OtkFocusWidget_setUnfocusBorderColor",&obj0,&obj1)) goto fail;
3399 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3400 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3401 (arg1)->setUnfocusBorderColor((otk::BColor const *)arg2);
3402
3403 Py_INCREF(Py_None); resultobj = Py_None;
3404 return resultobj;
3405 fail:
3406 return NULL;
3407 }
3408
3409
3410 static PyObject *_wrap_OtkFocusWidget_getUnfocusBorderColor(PyObject *self, PyObject *args) {
3411 PyObject *resultobj;
3412 otk::OtkFocusWidget *arg1 = (otk::OtkFocusWidget *) 0 ;
3413 otk::BColor *result;
3414 PyObject * obj0 = 0 ;
3415
3416 if(!PyArg_ParseTuple(args,(char *)"O:OtkFocusWidget_getUnfocusBorderColor",&obj0)) goto fail;
3417 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3418 result = (otk::BColor *)((otk::OtkFocusWidget const *)arg1)->getUnfocusBorderColor();
3419
3420 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
3421 return resultobj;
3422 fail:
3423 return NULL;
3424 }
3425
3426
3427 static PyObject *_wrap_OtkFocusWidget_isFocused(PyObject *self, PyObject *args) {
3428 PyObject *resultobj;
3429 otk::OtkFocusWidget *arg1 = (otk::OtkFocusWidget *) 0 ;
3430 bool result;
3431 PyObject * obj0 = 0 ;
3432
3433 if(!PyArg_ParseTuple(args,(char *)"O:OtkFocusWidget_isFocused",&obj0)) goto fail;
3434 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3435 result = (bool)((otk::OtkFocusWidget const *)arg1)->isFocused();
3436
3437 resultobj = PyInt_FromLong((long)result);
3438 return resultobj;
3439 fail:
3440 return NULL;
3441 }
3442
3443
3444 static PyObject *_wrap_OtkFocusWidget_isUnfocused(PyObject *self, PyObject *args) {
3445 PyObject *resultobj;
3446 otk::OtkFocusWidget *arg1 = (otk::OtkFocusWidget *) 0 ;
3447 bool result;
3448 PyObject * obj0 = 0 ;
3449
3450 if(!PyArg_ParseTuple(args,(char *)"O:OtkFocusWidget_isUnfocused",&obj0)) goto fail;
3451 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3452 result = (bool)((otk::OtkFocusWidget const *)arg1)->isUnfocused();
3453
3454 resultobj = PyInt_FromLong((long)result);
3455 return resultobj;
3456 fail:
3457 return NULL;
3458 }
3459
3460
3461 static PyObject * OtkFocusWidget_swigregister(PyObject *self, PyObject *args) {
3462 PyObject *obj;
3463 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
3464 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkFocusWidget, obj);
3465 Py_INCREF(obj);
3466 return Py_BuildValue((char *)"");
3467 }
3468 static PyObject *_wrap_new_OtkFocusLabel(PyObject *self, PyObject *args) {
3469 PyObject *resultobj;
3470 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3471 otk::OtkFocusLabel *result;
3472 PyObject * obj0 = 0 ;
3473
3474 if(!PyArg_ParseTuple(args,(char *)"O:new_OtkFocusLabel",&obj0)) goto fail;
3475 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3476 result = (otk::OtkFocusLabel *)new otk::OtkFocusLabel(arg1);
3477
3478 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OtkFocusLabel, 1);
3479 return resultobj;
3480 fail:
3481 return NULL;
3482 }
3483
3484
3485 static PyObject *_wrap_delete_OtkFocusLabel(PyObject *self, PyObject *args) {
3486 PyObject *resultobj;
3487 otk::OtkFocusLabel *arg1 = (otk::OtkFocusLabel *) 0 ;
3488 PyObject * obj0 = 0 ;
3489
3490 if(!PyArg_ParseTuple(args,(char *)"O:delete_OtkFocusLabel",&obj0)) goto fail;
3491 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusLabel,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3492 delete arg1;
3493
3494 Py_INCREF(Py_None); resultobj = Py_None;
3495 return resultobj;
3496 fail:
3497 return NULL;
3498 }
3499
3500
3501 static PyObject *_wrap_OtkFocusLabel_getText(PyObject *self, PyObject *args) {
3502 PyObject *resultobj;
3503 otk::OtkFocusLabel *arg1 = (otk::OtkFocusLabel *) 0 ;
3504 std::string *result;
3505 PyObject * obj0 = 0 ;
3506
3507 if(!PyArg_ParseTuple(args,(char *)"O:OtkFocusLabel_getText",&obj0)) goto fail;
3508 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusLabel,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3509 {
3510 std::string const &_result_ref = ((otk::OtkFocusLabel const *)arg1)->getText();
3511 result = (std::string *) &_result_ref;
3512 }
3513
3514 {
3515 resultobj = PyString_FromString(result->c_str());
3516 }
3517 return resultobj;
3518 fail:
3519 return NULL;
3520 }
3521
3522
3523 static PyObject *_wrap_OtkFocusLabel_setText(PyObject *self, PyObject *args) {
3524 PyObject *resultobj;
3525 otk::OtkFocusLabel *arg1 = (otk::OtkFocusLabel *) 0 ;
3526 std::string *arg2 = 0 ;
3527 std::string temp2 ;
3528 PyObject * obj0 = 0 ;
3529 PyObject * obj1 = 0 ;
3530
3531 if(!PyArg_ParseTuple(args,(char *)"OO:OtkFocusLabel_setText",&obj0,&obj1)) goto fail;
3532 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusLabel,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3533 {
3534 if (PyString_Check(obj1)) {
3535 temp2 = std::string(PyString_AsString(obj1));
3536 arg2 = &temp2;
3537 }else {
3538 SWIG_exception(SWIG_TypeError, "string expected");
3539 }
3540 }
3541 (arg1)->setText((std::string const &)*arg2);
3542
3543 Py_INCREF(Py_None); resultobj = Py_None;
3544 return resultobj;
3545 fail:
3546 return NULL;
3547 }
3548
3549
3550 static PyObject *_wrap_OtkFocusLabel_update(PyObject *self, PyObject *args) {
3551 PyObject *resultobj;
3552 otk::OtkFocusLabel *arg1 = (otk::OtkFocusLabel *) 0 ;
3553 PyObject * obj0 = 0 ;
3554
3555 if(!PyArg_ParseTuple(args,(char *)"O:OtkFocusLabel_update",&obj0)) goto fail;
3556 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusLabel,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3557 (arg1)->update();
3558
3559 Py_INCREF(Py_None); resultobj = Py_None;
3560 return resultobj;
3561 fail:
3562 return NULL;
3563 }
3564
3565
3566 static PyObject *_wrap_OtkFocusLabel_setStyle(PyObject *self, PyObject *args) {
3567 PyObject *resultobj;
3568 otk::OtkFocusLabel *arg1 = (otk::OtkFocusLabel *) 0 ;
3569 otk::Style *arg2 = (otk::Style *) 0 ;
3570 PyObject * obj0 = 0 ;
3571 PyObject * obj1 = 0 ;
3572
3573 if(!PyArg_ParseTuple(args,(char *)"OO:OtkFocusLabel_setStyle",&obj0,&obj1)) goto fail;
3574 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkFocusLabel,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3575 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3576 (arg1)->setStyle(arg2);
3577
3578 Py_INCREF(Py_None); resultobj = Py_None;
3579 return resultobj;
3580 fail:
3581 return NULL;
3582 }
3583
3584
3585 static PyObject * OtkFocusLabel_swigregister(PyObject *self, PyObject *args) {
3586 PyObject *obj;
3587 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
3588 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkFocusLabel, obj);
3589 Py_INCREF(obj);
3590 return Py_BuildValue((char *)"");
3591 }
3592 static PyObject *_wrap_new_OtkAppWidget(PyObject *self, PyObject *args) {
3593 PyObject *resultobj;
3594 otk::OtkApplication *arg1 = (otk::OtkApplication *) 0 ;
3595 int arg2 = (int) otk::OtkWidget::Horizontal ;
3596 Cursor arg3 = (Cursor) 0 ;
3597 int arg4 = (int) 1 ;
3598 otk::OtkAppWidget *result;
3599 Cursor *argp3 ;
3600 PyObject * obj0 = 0 ;
3601 PyObject * obj2 = 0 ;
3602
3603 if(!PyArg_ParseTuple(args,(char *)"O|iOi:new_OtkAppWidget",&obj0,&arg2,&obj2,&arg4)) goto fail;
3604 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkApplication,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3605 if (obj2) {
3606 if ((SWIG_ConvertPtr(obj2,(void **) &argp3, SWIGTYPE_p_Cursor,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
3607 arg3 = *argp3;
3608 }
3609 result = (otk::OtkAppWidget *)new otk::OtkAppWidget(arg1,(otk::OtkWidget::Direction )arg2,arg3,arg4);
3610
3611 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OtkAppWidget, 1);
3612 return resultobj;
3613 fail:
3614 return NULL;
3615 }
3616
3617
3618 static PyObject *_wrap_delete_OtkAppWidget(PyObject *self, PyObject *args) {
3619 PyObject *resultobj;
3620 otk::OtkAppWidget *arg1 = (otk::OtkAppWidget *) 0 ;
3621 PyObject * obj0 = 0 ;
3622
3623 if(!PyArg_ParseTuple(args,(char *)"O:delete_OtkAppWidget",&obj0)) goto fail;
3624 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkAppWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3625 delete arg1;
3626
3627 Py_INCREF(Py_None); resultobj = Py_None;
3628 return resultobj;
3629 fail:
3630 return NULL;
3631 }
3632
3633
3634 static PyObject *_wrap_OtkAppWidget_show(PyObject *self, PyObject *args) {
3635 PyObject *resultobj;
3636 otk::OtkAppWidget *arg1 = (otk::OtkAppWidget *) 0 ;
3637 PyObject * obj0 = 0 ;
3638
3639 if(!PyArg_ParseTuple(args,(char *)"O:OtkAppWidget_show",&obj0)) goto fail;
3640 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkAppWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3641 (arg1)->show();
3642
3643 Py_INCREF(Py_None); resultobj = Py_None;
3644 return resultobj;
3645 fail:
3646 return NULL;
3647 }
3648
3649
3650 static PyObject *_wrap_OtkAppWidget_hide(PyObject *self, PyObject *args) {
3651 PyObject *resultobj;
3652 otk::OtkAppWidget *arg1 = (otk::OtkAppWidget *) 0 ;
3653 PyObject * obj0 = 0 ;
3654
3655 if(!PyArg_ParseTuple(args,(char *)"O:OtkAppWidget_hide",&obj0)) goto fail;
3656 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkAppWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3657 (arg1)->hide();
3658
3659 Py_INCREF(Py_None); resultobj = Py_None;
3660 return resultobj;
3661 fail:
3662 return NULL;
3663 }
3664
3665
3666 static PyObject *_wrap_OtkAppWidget_clientMessageHandler(PyObject *self, PyObject *args) {
3667 PyObject *resultobj;
3668 otk::OtkAppWidget *arg1 = (otk::OtkAppWidget *) 0 ;
3669 XClientMessageEvent *arg2 = 0 ;
3670 PyObject * obj0 = 0 ;
3671 PyObject * obj1 = 0 ;
3672
3673 if(!PyArg_ParseTuple(args,(char *)"OO:OtkAppWidget_clientMessageHandler",&obj0,&obj1)) goto fail;
3674 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkAppWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3675 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XClientMessageEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3676 if (arg2 == NULL) {
3677 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
3678 }
3679 (arg1)->clientMessageHandler((XClientMessageEvent const &)*arg2);
3680
3681 Py_INCREF(Py_None); resultobj = Py_None;
3682 return resultobj;
3683 fail:
3684 return NULL;
3685 }
3686
3687
3688 static PyObject * OtkAppWidget_swigregister(PyObject *self, PyObject *args) {
3689 PyObject *obj;
3690 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
3691 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkAppWidget, obj);
3692 Py_INCREF(obj);
3693 return Py_BuildValue((char *)"");
3694 }
3695 static PyObject *_wrap_new_OtkApplication(PyObject *self, PyObject *args) {
3696 PyObject *resultobj;
3697 int arg1 ;
3698 char **arg2 = (char **) 0 ;
3699 otk::OtkApplication *result;
3700 PyObject * obj1 = 0 ;
3701
3702 if(!PyArg_ParseTuple(args,(char *)"iO:new_OtkApplication",&arg1,&obj1)) goto fail;
3703 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_p_char,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3704 result = (otk::OtkApplication *)new otk::OtkApplication(arg1,arg2);
3705
3706 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OtkApplication, 1);
3707 return resultobj;
3708 fail:
3709 return NULL;
3710 }
3711
3712
3713 static PyObject *_wrap_delete_OtkApplication(PyObject *self, PyObject *args) {
3714 PyObject *resultobj;
3715 otk::OtkApplication *arg1 = (otk::OtkApplication *) 0 ;
3716 PyObject * obj0 = 0 ;
3717
3718 if(!PyArg_ParseTuple(args,(char *)"O:delete_OtkApplication",&obj0)) goto fail;
3719 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkApplication,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3720 delete arg1;
3721
3722 Py_INCREF(Py_None); resultobj = Py_None;
3723 return resultobj;
3724 fail:
3725 return NULL;
3726 }
3727
3728
3729 static PyObject *_wrap_OtkApplication_run(PyObject *self, PyObject *args) {
3730 PyObject *resultobj;
3731 otk::OtkApplication *arg1 = (otk::OtkApplication *) 0 ;
3732 PyObject * obj0 = 0 ;
3733
3734 if(!PyArg_ParseTuple(args,(char *)"O:OtkApplication_run",&obj0)) goto fail;
3735 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkApplication,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3736 (arg1)->run();
3737
3738 Py_INCREF(Py_None); resultobj = Py_None;
3739 return resultobj;
3740 fail:
3741 return NULL;
3742 }
3743
3744
3745 static PyObject *_wrap_OtkApplication_setDockable(PyObject *self, PyObject *args) {
3746 PyObject *resultobj;
3747 otk::OtkApplication *arg1 = (otk::OtkApplication *) 0 ;
3748 bool arg2 ;
3749 PyObject * obj0 = 0 ;
3750 PyObject * obj1 = 0 ;
3751
3752 if(!PyArg_ParseTuple(args,(char *)"OO:OtkApplication_setDockable",&obj0,&obj1)) goto fail;
3753 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkApplication,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3754 arg2 = (bool) PyInt_AsLong(obj1);
3755 if (PyErr_Occurred()) SWIG_fail;
3756 (arg1)->setDockable(arg2);
3757
3758 Py_INCREF(Py_None); resultobj = Py_None;
3759 return resultobj;
3760 fail:
3761 return NULL;
3762 }
3763
3764
3765 static PyObject *_wrap_OtkApplication_isDockable(PyObject *self, PyObject *args) {
3766 PyObject *resultobj;
3767 otk::OtkApplication *arg1 = (otk::OtkApplication *) 0 ;
3768 bool result;
3769 PyObject * obj0 = 0 ;
3770
3771 if(!PyArg_ParseTuple(args,(char *)"O:OtkApplication_isDockable",&obj0)) goto fail;
3772 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkApplication,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3773 result = (bool)((otk::OtkApplication const *)arg1)->isDockable();
3774
3775 resultobj = PyInt_FromLong((long)result);
3776 return resultobj;
3777 fail:
3778 return NULL;
3779 }
3780
3781
3782 static PyObject *_wrap_OtkApplication_getStyle(PyObject *self, PyObject *args) {
3783 PyObject *resultobj;
3784 otk::OtkApplication *arg1 = (otk::OtkApplication *) 0 ;
3785 otk::Style *result;
3786 PyObject * obj0 = 0 ;
3787
3788 if(!PyArg_ParseTuple(args,(char *)"O:OtkApplication_getStyle",&obj0)) goto fail;
3789 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkApplication,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3790 result = (otk::Style *)((otk::OtkApplication const *)arg1)->getStyle();
3791
3792 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Style, 0);
3793 return resultobj;
3794 fail:
3795 return NULL;
3796 }
3797
3798
3799 static PyObject * OtkApplication_swigregister(PyObject *self, PyObject *args) {
3800 PyObject *obj;
3801 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
3802 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkApplication, obj);
3803 Py_INCREF(obj);
3804 return Py_BuildValue((char *)"");
3805 }
3806 static PyObject *_wrap_new_PointerAssassin(PyObject *self, PyObject *args) {
3807 PyObject *resultobj;
3808 otk::PointerAssassin *result;
3809
3810 if(!PyArg_ParseTuple(args,(char *)":new_PointerAssassin")) goto fail;
3811 result = (otk::PointerAssassin *)new otk::PointerAssassin();
3812
3813 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PointerAssassin, 1);
3814 return resultobj;
3815 fail:
3816 return NULL;
3817 }
3818
3819
3820 static PyObject *_wrap_delete_PointerAssassin(PyObject *self, PyObject *args) {
3821 PyObject *resultobj;
3822 otk::PointerAssassin *arg1 = (otk::PointerAssassin *) 0 ;
3823 PyObject * obj0 = 0 ;
3824
3825 if(!PyArg_ParseTuple(args,(char *)"O:delete_PointerAssassin",&obj0)) goto fail;
3826 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PointerAssassin,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3827 delete arg1;
3828
3829 Py_INCREF(Py_None); resultobj = Py_None;
3830 return resultobj;
3831 fail:
3832 return NULL;
3833 }
3834
3835
3836 static PyObject * PointerAssassin_swigregister(PyObject *self, PyObject *args) {
3837 PyObject *obj;
3838 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
3839 SWIG_TypeClientData(SWIGTYPE_p_otk__PointerAssassin, obj);
3840 Py_INCREF(obj);
3841 return Py_BuildValue((char *)"");
3842 }
3843 static PyObject *_wrap_new_OtkButton(PyObject *self, PyObject *args) {
3844 PyObject *resultobj;
3845 otk::OtkWidget *arg1 = (otk::OtkWidget *) 0 ;
3846 otk::OtkButton *result;
3847 PyObject * obj0 = 0 ;
3848
3849 if(!PyArg_ParseTuple(args,(char *)"O:new_OtkButton",&obj0)) goto fail;
3850 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkWidget,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3851 result = (otk::OtkButton *)new otk::OtkButton(arg1);
3852
3853 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OtkButton, 1);
3854 return resultobj;
3855 fail:
3856 return NULL;
3857 }
3858
3859
3860 static PyObject *_wrap_delete_OtkButton(PyObject *self, PyObject *args) {
3861 PyObject *resultobj;
3862 otk::OtkButton *arg1 = (otk::OtkButton *) 0 ;
3863 PyObject * obj0 = 0 ;
3864
3865 if(!PyArg_ParseTuple(args,(char *)"O:delete_OtkButton",&obj0)) goto fail;
3866 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkButton,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3867 delete arg1;
3868
3869 Py_INCREF(Py_None); resultobj = Py_None;
3870 return resultobj;
3871 fail:
3872 return NULL;
3873 }
3874
3875
3876 static PyObject *_wrap_OtkButton_getPressedFocusTexture(PyObject *self, PyObject *args) {
3877 PyObject *resultobj;
3878 otk::OtkButton *arg1 = (otk::OtkButton *) 0 ;
3879 otk::BTexture *result;
3880 PyObject * obj0 = 0 ;
3881
3882 if(!PyArg_ParseTuple(args,(char *)"O:OtkButton_getPressedFocusTexture",&obj0)) goto fail;
3883 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkButton,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3884 result = (otk::BTexture *)((otk::OtkButton const *)arg1)->getPressedFocusTexture();
3885
3886 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
3887 return resultobj;
3888 fail:
3889 return NULL;
3890 }
3891
3892
3893 static PyObject *_wrap_OtkButton_setPressedFocusTexture(PyObject *self, PyObject *args) {
3894 PyObject *resultobj;
3895 otk::OtkButton *arg1 = (otk::OtkButton *) 0 ;
3896 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
3897 PyObject * obj0 = 0 ;
3898 PyObject * obj1 = 0 ;
3899
3900 if(!PyArg_ParseTuple(args,(char *)"OO:OtkButton_setPressedFocusTexture",&obj0,&obj1)) goto fail;
3901 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkButton,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3902 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3903 (arg1)->setPressedFocusTexture(arg2);
3904
3905 Py_INCREF(Py_None); resultobj = Py_None;
3906 return resultobj;
3907 fail:
3908 return NULL;
3909 }
3910
3911
3912 static PyObject *_wrap_OtkButton_getPressedUnfocusTexture(PyObject *self, PyObject *args) {
3913 PyObject *resultobj;
3914 otk::OtkButton *arg1 = (otk::OtkButton *) 0 ;
3915 otk::BTexture *result;
3916 PyObject * obj0 = 0 ;
3917
3918 if(!PyArg_ParseTuple(args,(char *)"O:OtkButton_getPressedUnfocusTexture",&obj0)) goto fail;
3919 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkButton,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3920 result = (otk::BTexture *)((otk::OtkButton const *)arg1)->getPressedUnfocusTexture();
3921
3922 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
3923 return resultobj;
3924 fail:
3925 return NULL;
3926 }
3927
3928
3929 static PyObject *_wrap_OtkButton_setPressedUnfocusTexture(PyObject *self, PyObject *args) {
3930 PyObject *resultobj;
3931 otk::OtkButton *arg1 = (otk::OtkButton *) 0 ;
3932 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
3933 PyObject * obj0 = 0 ;
3934 PyObject * obj1 = 0 ;
3935
3936 if(!PyArg_ParseTuple(args,(char *)"OO:OtkButton_setPressedUnfocusTexture",&obj0,&obj1)) goto fail;
3937 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkButton,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3938 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3939 (arg1)->setPressedUnfocusTexture(arg2);
3940
3941 Py_INCREF(Py_None); resultobj = Py_None;
3942 return resultobj;
3943 fail:
3944 return NULL;
3945 }
3946
3947
3948 static PyObject *_wrap_OtkButton_setTexture(PyObject *self, PyObject *args) {
3949 PyObject *resultobj;
3950 otk::OtkButton *arg1 = (otk::OtkButton *) 0 ;
3951 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
3952 PyObject * obj0 = 0 ;
3953 PyObject * obj1 = 0 ;
3954
3955 if(!PyArg_ParseTuple(args,(char *)"OO:OtkButton_setTexture",&obj0,&obj1)) goto fail;
3956 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkButton,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3957 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3958 (arg1)->setTexture(arg2);
3959
3960 Py_INCREF(Py_None); resultobj = Py_None;
3961 return resultobj;
3962 fail:
3963 return NULL;
3964 }
3965
3966
3967 static PyObject *_wrap_OtkButton_setUnfocusTexture(PyObject *self, PyObject *args) {
3968 PyObject *resultobj;
3969 otk::OtkButton *arg1 = (otk::OtkButton *) 0 ;
3970 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
3971 PyObject * obj0 = 0 ;
3972 PyObject * obj1 = 0 ;
3973
3974 if(!PyArg_ParseTuple(args,(char *)"OO:OtkButton_setUnfocusTexture",&obj0,&obj1)) goto fail;
3975 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkButton,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3976 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3977 (arg1)->setUnfocusTexture(arg2);
3978
3979 Py_INCREF(Py_None); resultobj = Py_None;
3980 return resultobj;
3981 fail:
3982 return NULL;
3983 }
3984
3985
3986 static PyObject *_wrap_OtkButton_isPressed(PyObject *self, PyObject *args) {
3987 PyObject *resultobj;
3988 otk::OtkButton *arg1 = (otk::OtkButton *) 0 ;
3989 bool result;
3990 PyObject * obj0 = 0 ;
3991
3992 if(!PyArg_ParseTuple(args,(char *)"O:OtkButton_isPressed",&obj0)) goto fail;
3993 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkButton,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3994 result = (bool)((otk::OtkButton const *)arg1)->isPressed();
3995
3996 resultobj = PyInt_FromLong((long)result);
3997 return resultobj;
3998 fail:
3999 return NULL;
4000 }
4001
4002
4003 static PyObject *_wrap_OtkButton_press(PyObject *self, PyObject *args) {
4004 PyObject *resultobj;
4005 otk::OtkButton *arg1 = (otk::OtkButton *) 0 ;
4006 unsigned int arg2 ;
4007 PyObject * obj0 = 0 ;
4008 PyObject * obj1 = 0 ;
4009
4010 if(!PyArg_ParseTuple(args,(char *)"OO:OtkButton_press",&obj0,&obj1)) goto fail;
4011 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkButton,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4012 arg2 = (unsigned int) PyInt_AsLong(obj1);
4013 if (PyErr_Occurred()) SWIG_fail;
4014 (arg1)->press(arg2);
4015
4016 Py_INCREF(Py_None); resultobj = Py_None;
4017 return resultobj;
4018 fail:
4019 return NULL;
4020 }
4021
4022
4023 static PyObject *_wrap_OtkButton_release(PyObject *self, PyObject *args) {
4024 PyObject *resultobj;
4025 otk::OtkButton *arg1 = (otk::OtkButton *) 0 ;
4026 unsigned int arg2 ;
4027 PyObject * obj0 = 0 ;
4028 PyObject * obj1 = 0 ;
4029
4030 if(!PyArg_ParseTuple(args,(char *)"OO:OtkButton_release",&obj0,&obj1)) goto fail;
4031 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkButton,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4032 arg2 = (unsigned int) PyInt_AsLong(obj1);
4033 if (PyErr_Occurred()) SWIG_fail;
4034 (arg1)->release(arg2);
4035
4036 Py_INCREF(Py_None); resultobj = Py_None;
4037 return resultobj;
4038 fail:
4039 return NULL;
4040 }
4041
4042
4043 static PyObject *_wrap_OtkButton_buttonPressHandler(PyObject *self, PyObject *args) {
4044 PyObject *resultobj;
4045 otk::OtkButton *arg1 = (otk::OtkButton *) 0 ;
4046 XButtonEvent *arg2 = 0 ;
4047 PyObject * obj0 = 0 ;
4048 PyObject * obj1 = 0 ;
4049
4050 if(!PyArg_ParseTuple(args,(char *)"OO:OtkButton_buttonPressHandler",&obj0,&obj1)) goto fail;
4051 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkButton,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4052 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XButtonEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4053 if (arg2 == NULL) {
4054 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
4055 }
4056 (arg1)->buttonPressHandler((XButtonEvent const &)*arg2);
4057
4058 Py_INCREF(Py_None); resultobj = Py_None;
4059 return resultobj;
4060 fail:
4061 return NULL;
4062 }
4063
4064
4065 static PyObject *_wrap_OtkButton_buttonReleaseHandler(PyObject *self, PyObject *args) {
4066 PyObject *resultobj;
4067 otk::OtkButton *arg1 = (otk::OtkButton *) 0 ;
4068 XButtonEvent *arg2 = 0 ;
4069 PyObject * obj0 = 0 ;
4070 PyObject * obj1 = 0 ;
4071
4072 if(!PyArg_ParseTuple(args,(char *)"OO:OtkButton_buttonReleaseHandler",&obj0,&obj1)) goto fail;
4073 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkButton,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4074 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XButtonEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4075 if (arg2 == NULL) {
4076 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
4077 }
4078 (arg1)->buttonReleaseHandler((XButtonEvent const &)*arg2);
4079
4080 Py_INCREF(Py_None); resultobj = Py_None;
4081 return resultobj;
4082 fail:
4083 return NULL;
4084 }
4085
4086
4087 static PyObject *_wrap_OtkButton_setStyle(PyObject *self, PyObject *args) {
4088 PyObject *resultobj;
4089 otk::OtkButton *arg1 = (otk::OtkButton *) 0 ;
4090 otk::Style *arg2 = (otk::Style *) 0 ;
4091 PyObject * obj0 = 0 ;
4092 PyObject * obj1 = 0 ;
4093
4094 if(!PyArg_ParseTuple(args,(char *)"OO:OtkButton_setStyle",&obj0,&obj1)) goto fail;
4095 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OtkButton,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4096 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4097 (arg1)->setStyle(arg2);
4098
4099 Py_INCREF(Py_None); resultobj = Py_None;
4100 return resultobj;
4101 fail:
4102 return NULL;
4103 }
4104
4105
4106 static PyObject * OtkButton_swigregister(PyObject *self, PyObject *args) {
4107 PyObject *obj;
4108 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
4109 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkButton, obj);
4110 Py_INCREF(obj);
4111 return Py_BuildValue((char *)"");
4112 }
4113 static PyObject *_wrap_new_BColor__SWIG_0(PyObject *self, PyObject *args) {
4114 PyObject *resultobj;
4115 unsigned int arg1 = (unsigned int) ~(0u) ;
4116 otk::BColor *result;
4117 PyObject * obj0 = 0 ;
4118
4119 if(!PyArg_ParseTuple(args,(char *)"|O:new_BColor",&obj0)) goto fail;
4120 if (obj0) {
4121 arg1 = (unsigned int) PyInt_AsLong(obj0);
4122 if (PyErr_Occurred()) SWIG_fail;
4123 }
4124 result = (otk::BColor *)new otk::BColor(arg1);
4125
4126 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 1);
4127 return resultobj;
4128 fail:
4129 return NULL;
4130 }
4131
4132
4133 static PyObject *_wrap_new_BColor__SWIG_1(PyObject *self, PyObject *args) {
4134 PyObject *resultobj;
4135 int arg1 ;
4136 int arg2 ;
4137 int arg3 ;
4138 unsigned int arg4 = (unsigned int) ~(0u) ;
4139 otk::BColor *result;
4140 PyObject * obj3 = 0 ;
4141
4142 if(!PyArg_ParseTuple(args,(char *)"iii|O:new_BColor",&arg1,&arg2,&arg3,&obj3)) goto fail;
4143 if (obj3) {
4144 arg4 = (unsigned int) PyInt_AsLong(obj3);
4145 if (PyErr_Occurred()) SWIG_fail;
4146 }
4147 result = (otk::BColor *)new otk::BColor(arg1,arg2,arg3,arg4);
4148
4149 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 1);
4150 return resultobj;
4151 fail:
4152 return NULL;
4153 }
4154
4155
4156 static PyObject *_wrap_new_BColor__SWIG_2(PyObject *self, PyObject *args) {
4157 PyObject *resultobj;
4158 std::string *arg1 = 0 ;
4159 unsigned int arg2 = (unsigned int) ~(0u) ;
4160 otk::BColor *result;
4161 std::string temp1 ;
4162 PyObject * obj0 = 0 ;
4163 PyObject * obj1 = 0 ;
4164
4165 if(!PyArg_ParseTuple(args,(char *)"O|O:new_BColor",&obj0,&obj1)) goto fail;
4166 {
4167 if (PyString_Check(obj0)) {
4168 temp1 = std::string(PyString_AsString(obj0));
4169 arg1 = &temp1;
4170 }else {
4171 SWIG_exception(SWIG_TypeError, "string expected");
4172 }
4173 }
4174 if (obj1) {
4175 arg2 = (unsigned int) PyInt_AsLong(obj1);
4176 if (PyErr_Occurred()) SWIG_fail;
4177 }
4178 result = (otk::BColor *)new otk::BColor((std::string const &)*arg1,arg2);
4179
4180 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 1);
4181 return resultobj;
4182 fail:
4183 return NULL;
4184 }
4185
4186
4187 static PyObject *_wrap_new_BColor(PyObject *self, PyObject *args) {
4188 int argc;
4189 PyObject *argv[5];
4190 int ii;
4191
4192 argc = PyObject_Length(args);
4193 for (ii = 0; (ii < argc) && (ii < 4); ii++) {
4194 argv[ii] = PyTuple_GetItem(args,ii);
4195 }
4196 if ((argc >= 0) && (argc <= 1)) {
4197 int _v;
4198 if (argc <= 0) {
4199 return _wrap_new_BColor__SWIG_0(self,args);
4200 }
4201 {
4202 _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0;
4203 }
4204 if (_v) {
4205 return _wrap_new_BColor__SWIG_0(self,args);
4206 }
4207 }
4208 if ((argc >= 1) && (argc <= 2)) {
4209 int _v;
4210 {
4211 _v = PyString_Check(argv[0]) ? 1 : 0;
4212 }
4213 if (_v) {
4214 if (argc <= 1) {
4215 return _wrap_new_BColor__SWIG_2(self,args);
4216 }
4217 {
4218 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
4219 }
4220 if (_v) {
4221 return _wrap_new_BColor__SWIG_2(self,args);
4222 }
4223 }
4224 }
4225 if ((argc >= 3) && (argc <= 4)) {
4226 int _v;
4227 {
4228 _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0;
4229 }
4230 if (_v) {
4231 {
4232 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
4233 }
4234 if (_v) {
4235 {
4236 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
4237 }
4238 if (_v) {
4239 if (argc <= 3) {
4240 return _wrap_new_BColor__SWIG_1(self,args);
4241 }
4242 {
4243 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
4244 }
4245 if (_v) {
4246 return _wrap_new_BColor__SWIG_1(self,args);
4247 }
4248 }
4249 }
4250 }
4251 }
4252
4253 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_BColor'");
4254 return NULL;
4255 }
4256
4257
4258 static PyObject *_wrap_delete_BColor(PyObject *self, PyObject *args) {
4259 PyObject *resultobj;
4260 otk::BColor *arg1 = (otk::BColor *) 0 ;
4261 PyObject * obj0 = 0 ;
4262
4263 if(!PyArg_ParseTuple(args,(char *)"O:delete_BColor",&obj0)) goto fail;
4264 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4265 delete arg1;
4266
4267 Py_INCREF(Py_None); resultobj = Py_None;
4268 return resultobj;
4269 fail:
4270 return NULL;
4271 }
4272
4273
4274 static PyObject *_wrap_BColor_name(PyObject *self, PyObject *args) {
4275 PyObject *resultobj;
4276 otk::BColor *arg1 = (otk::BColor *) 0 ;
4277 std::string *result;
4278 PyObject * obj0 = 0 ;
4279
4280 if(!PyArg_ParseTuple(args,(char *)"O:BColor_name",&obj0)) goto fail;
4281 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4282 {
4283 std::string const &_result_ref = ((otk::BColor const *)arg1)->name();
4284 result = (std::string *) &_result_ref;
4285 }
4286
4287 {
4288 resultobj = PyString_FromString(result->c_str());
4289 }
4290 return resultobj;
4291 fail:
4292 return NULL;
4293 }
4294
4295
4296 static PyObject *_wrap_BColor_red(PyObject *self, PyObject *args) {
4297 PyObject *resultobj;
4298 otk::BColor *arg1 = (otk::BColor *) 0 ;
4299 int result;
4300 PyObject * obj0 = 0 ;
4301
4302 if(!PyArg_ParseTuple(args,(char *)"O:BColor_red",&obj0)) goto fail;
4303 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4304 result = (int)((otk::BColor const *)arg1)->red();
4305
4306 resultobj = PyInt_FromLong((long)result);
4307 return resultobj;
4308 fail:
4309 return NULL;
4310 }
4311
4312
4313 static PyObject *_wrap_BColor_green(PyObject *self, PyObject *args) {
4314 PyObject *resultobj;
4315 otk::BColor *arg1 = (otk::BColor *) 0 ;
4316 int result;
4317 PyObject * obj0 = 0 ;
4318
4319 if(!PyArg_ParseTuple(args,(char *)"O:BColor_green",&obj0)) goto fail;
4320 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4321 result = (int)((otk::BColor const *)arg1)->green();
4322
4323 resultobj = PyInt_FromLong((long)result);
4324 return resultobj;
4325 fail:
4326 return NULL;
4327 }
4328
4329
4330 static PyObject *_wrap_BColor_blue(PyObject *self, PyObject *args) {
4331 PyObject *resultobj;
4332 otk::BColor *arg1 = (otk::BColor *) 0 ;
4333 int result;
4334 PyObject * obj0 = 0 ;
4335
4336 if(!PyArg_ParseTuple(args,(char *)"O:BColor_blue",&obj0)) goto fail;
4337 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4338 result = (int)((otk::BColor const *)arg1)->blue();
4339
4340 resultobj = PyInt_FromLong((long)result);
4341 return resultobj;
4342 fail:
4343 return NULL;
4344 }
4345
4346
4347 static PyObject *_wrap_BColor_setRGB(PyObject *self, PyObject *args) {
4348 PyObject *resultobj;
4349 otk::BColor *arg1 = (otk::BColor *) 0 ;
4350 int arg2 ;
4351 int arg3 ;
4352 int arg4 ;
4353 PyObject * obj0 = 0 ;
4354
4355 if(!PyArg_ParseTuple(args,(char *)"Oiii:BColor_setRGB",&obj0,&arg2,&arg3,&arg4)) goto fail;
4356 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4357 (arg1)->setRGB(arg2,arg3,arg4);
4358
4359 Py_INCREF(Py_None); resultobj = Py_None;
4360 return resultobj;
4361 fail:
4362 return NULL;
4363 }
4364
4365
4366 static PyObject *_wrap_BColor_screen(PyObject *self, PyObject *args) {
4367 PyObject *resultobj;
4368 otk::BColor *arg1 = (otk::BColor *) 0 ;
4369 unsigned int result;
4370 PyObject * obj0 = 0 ;
4371
4372 if(!PyArg_ParseTuple(args,(char *)"O:BColor_screen",&obj0)) goto fail;
4373 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4374 result = (unsigned int)((otk::BColor const *)arg1)->screen();
4375
4376 resultobj = PyInt_FromLong((long)result);
4377 return resultobj;
4378 fail:
4379 return NULL;
4380 }
4381
4382
4383 static PyObject *_wrap_BColor_setScreen(PyObject *self, PyObject *args) {
4384 PyObject *resultobj;
4385 otk::BColor *arg1 = (otk::BColor *) 0 ;
4386 unsigned int arg2 = (unsigned int) ~(0u) ;
4387 PyObject * obj0 = 0 ;
4388 PyObject * obj1 = 0 ;
4389
4390 if(!PyArg_ParseTuple(args,(char *)"O|O:BColor_setScreen",&obj0,&obj1)) goto fail;
4391 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4392 if (obj1) {
4393 arg2 = (unsigned int) PyInt_AsLong(obj1);
4394 if (PyErr_Occurred()) SWIG_fail;
4395 }
4396 (arg1)->setScreen(arg2);
4397
4398 Py_INCREF(Py_None); resultobj = Py_None;
4399 return resultobj;
4400 fail:
4401 return NULL;
4402 }
4403
4404
4405 static PyObject *_wrap_BColor_isAllocated(PyObject *self, PyObject *args) {
4406 PyObject *resultobj;
4407 otk::BColor *arg1 = (otk::BColor *) 0 ;
4408 bool result;
4409 PyObject * obj0 = 0 ;
4410
4411 if(!PyArg_ParseTuple(args,(char *)"O:BColor_isAllocated",&obj0)) goto fail;
4412 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4413 result = (bool)((otk::BColor const *)arg1)->isAllocated();
4414
4415 resultobj = PyInt_FromLong((long)result);
4416 return resultobj;
4417 fail:
4418 return NULL;
4419 }
4420
4421
4422 static PyObject *_wrap_BColor_isValid(PyObject *self, PyObject *args) {
4423 PyObject *resultobj;
4424 otk::BColor *arg1 = (otk::BColor *) 0 ;
4425 bool result;
4426 PyObject * obj0 = 0 ;
4427
4428 if(!PyArg_ParseTuple(args,(char *)"O:BColor_isValid",&obj0)) goto fail;
4429 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4430 result = (bool)((otk::BColor const *)arg1)->isValid();
4431
4432 resultobj = PyInt_FromLong((long)result);
4433 return resultobj;
4434 fail:
4435 return NULL;
4436 }
4437
4438
4439 static PyObject *_wrap_BColor_pixel(PyObject *self, PyObject *args) {
4440 PyObject *resultobj;
4441 otk::BColor *arg1 = (otk::BColor *) 0 ;
4442 unsigned long result;
4443 PyObject * obj0 = 0 ;
4444
4445 if(!PyArg_ParseTuple(args,(char *)"O:BColor_pixel",&obj0)) goto fail;
4446 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4447 result = (unsigned long)((otk::BColor const *)arg1)->pixel();
4448
4449 resultobj = PyInt_FromLong((long)result);
4450 return resultobj;
4451 fail:
4452 return NULL;
4453 }
4454
4455
4456 static PyObject *_wrap_BColor_equals(PyObject *self, PyObject *args) {
4457 PyObject *resultobj;
4458 otk::BColor *arg1 = (otk::BColor *) 0 ;
4459 otk::BColor *arg2 = 0 ;
4460 bool result;
4461 PyObject * obj0 = 0 ;
4462 PyObject * obj1 = 0 ;
4463
4464 if(!PyArg_ParseTuple(args,(char *)"OO:BColor_equals",&obj0,&obj1)) goto fail;
4465 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4466 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4467 if (arg2 == NULL) {
4468 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
4469 }
4470 result = (bool)((otk::BColor const *)arg1)->operator ==((otk::BColor const &)*arg2);
4471
4472 resultobj = PyInt_FromLong((long)result);
4473 return resultobj;
4474 fail:
4475 return NULL;
4476 }
4477
4478
4479 static PyObject *_wrap_BColor_cleanupColorCache(PyObject *self, PyObject *args) {
4480 PyObject *resultobj;
4481
4482 if(!PyArg_ParseTuple(args,(char *)":BColor_cleanupColorCache")) goto fail;
4483 otk::BColor::cleanupColorCache();
4484
4485 Py_INCREF(Py_None); resultobj = Py_None;
4486 return resultobj;
4487 fail:
4488 return NULL;
4489 }
4490
4491
4492 static PyObject * BColor_swigregister(PyObject *self, PyObject *args) {
4493 PyObject *obj;
4494 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
4495 SWIG_TypeClientData(SWIGTYPE_p_otk__BColor, obj);
4496 Py_INCREF(obj);
4497 return Py_BuildValue((char *)"");
4498 }
4499 static PyObject *_wrap_new_Configuration__SWIG_0(PyObject *self, PyObject *args) {
4500 PyObject *resultobj;
4501 std::string *arg1 = 0 ;
4502 bool arg2 = (bool) True ;
4503 otk::Configuration *result;
4504 std::string temp1 ;
4505 PyObject * obj0 = 0 ;
4506 PyObject * obj1 = 0 ;
4507
4508 if(!PyArg_ParseTuple(args,(char *)"O|O:new_Configuration",&obj0,&obj1)) goto fail;
4509 {
4510 if (PyString_Check(obj0)) {
4511 temp1 = std::string(PyString_AsString(obj0));
4512 arg1 = &temp1;
4513 }else {
4514 SWIG_exception(SWIG_TypeError, "string expected");
4515 }
4516 }
4517 if (obj1) {
4518 arg2 = (bool) PyInt_AsLong(obj1);
4519 if (PyErr_Occurred()) SWIG_fail;
4520 }
4521 result = (otk::Configuration *)new otk::Configuration((std::string const &)*arg1,arg2);
4522
4523 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Configuration, 1);
4524 return resultobj;
4525 fail:
4526 return NULL;
4527 }
4528
4529
4530 static PyObject *_wrap_new_Configuration__SWIG_1(PyObject *self, PyObject *args) {
4531 PyObject *resultobj;
4532 bool arg1 = (bool) True ;
4533 otk::Configuration *result;
4534 PyObject * obj0 = 0 ;
4535
4536 if(!PyArg_ParseTuple(args,(char *)"|O:new_Configuration",&obj0)) goto fail;
4537 if (obj0) {
4538 arg1 = (bool) PyInt_AsLong(obj0);
4539 if (PyErr_Occurred()) SWIG_fail;
4540 }
4541 result = (otk::Configuration *)new otk::Configuration(arg1);
4542
4543 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Configuration, 1);
4544 return resultobj;
4545 fail:
4546 return NULL;
4547 }
4548
4549
4550 static PyObject *_wrap_new_Configuration(PyObject *self, PyObject *args) {
4551 int argc;
4552 PyObject *argv[3];
4553 int ii;
4554
4555 argc = PyObject_Length(args);
4556 for (ii = 0; (ii < argc) && (ii < 2); ii++) {
4557 argv[ii] = PyTuple_GetItem(args,ii);
4558 }
4559 if ((argc >= 0) && (argc <= 1)) {
4560 int _v;
4561 if (argc <= 0) {
4562 return _wrap_new_Configuration__SWIG_1(self,args);
4563 }
4564 {
4565 _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0;
4566 }
4567 if (_v) {
4568 return _wrap_new_Configuration__SWIG_1(self,args);
4569 }
4570 }
4571 if ((argc >= 1) && (argc <= 2)) {
4572 int _v;
4573 {
4574 _v = PyString_Check(argv[0]) ? 1 : 0;
4575 }
4576 if (_v) {
4577 if (argc <= 1) {
4578 return _wrap_new_Configuration__SWIG_0(self,args);
4579 }
4580 {
4581 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
4582 }
4583 if (_v) {
4584 return _wrap_new_Configuration__SWIG_0(self,args);
4585 }
4586 }
4587 }
4588
4589 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_Configuration'");
4590 return NULL;
4591 }
4592
4593
4594 static PyObject *_wrap_delete_Configuration(PyObject *self, PyObject *args) {
4595 PyObject *resultobj;
4596 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4597 PyObject * obj0 = 0 ;
4598
4599 if(!PyArg_ParseTuple(args,(char *)"O:delete_Configuration",&obj0)) goto fail;
4600 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4601 delete arg1;
4602
4603 Py_INCREF(Py_None); resultobj = Py_None;
4604 return resultobj;
4605 fail:
4606 return NULL;
4607 }
4608
4609
4610 static PyObject *_wrap_Configuration_file(PyObject *self, PyObject *args) {
4611 PyObject *resultobj;
4612 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4613 std::string *result;
4614 PyObject * obj0 = 0 ;
4615
4616 if(!PyArg_ParseTuple(args,(char *)"O:Configuration_file",&obj0)) goto fail;
4617 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4618 {
4619 std::string const &_result_ref = ((otk::Configuration const *)arg1)->file();
4620 result = (std::string *) &_result_ref;
4621 }
4622
4623 {
4624 resultobj = PyString_FromString(result->c_str());
4625 }
4626 return resultobj;
4627 fail:
4628 return NULL;
4629 }
4630
4631
4632 static PyObject *_wrap_Configuration_setFile(PyObject *self, PyObject *args) {
4633 PyObject *resultobj;
4634 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4635 std::string *arg2 = 0 ;
4636 std::string temp2 ;
4637 PyObject * obj0 = 0 ;
4638 PyObject * obj1 = 0 ;
4639
4640 if(!PyArg_ParseTuple(args,(char *)"OO:Configuration_setFile",&obj0,&obj1)) goto fail;
4641 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4642 {
4643 if (PyString_Check(obj1)) {
4644 temp2 = std::string(PyString_AsString(obj1));
4645 arg2 = &temp2;
4646 }else {
4647 SWIG_exception(SWIG_TypeError, "string expected");
4648 }
4649 }
4650 (arg1)->setFile((std::string const &)*arg2);
4651
4652 Py_INCREF(Py_None); resultobj = Py_None;
4653 return resultobj;
4654 fail:
4655 return NULL;
4656 }
4657
4658
4659 static PyObject *_wrap_Configuration_autoSave(PyObject *self, PyObject *args) {
4660 PyObject *resultobj;
4661 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4662 bool result;
4663 PyObject * obj0 = 0 ;
4664
4665 if(!PyArg_ParseTuple(args,(char *)"O:Configuration_autoSave",&obj0)) goto fail;
4666 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4667 result = (bool)((otk::Configuration const *)arg1)->autoSave();
4668
4669 resultobj = PyInt_FromLong((long)result);
4670 return resultobj;
4671 fail:
4672 return NULL;
4673 }
4674
4675
4676 static PyObject *_wrap_Configuration_setAutoSave(PyObject *self, PyObject *args) {
4677 PyObject *resultobj;
4678 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4679 bool arg2 ;
4680 PyObject * obj0 = 0 ;
4681 PyObject * obj1 = 0 ;
4682
4683 if(!PyArg_ParseTuple(args,(char *)"OO:Configuration_setAutoSave",&obj0,&obj1)) goto fail;
4684 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4685 arg2 = (bool) PyInt_AsLong(obj1);
4686 if (PyErr_Occurred()) SWIG_fail;
4687 (arg1)->setAutoSave(arg2);
4688
4689 Py_INCREF(Py_None); resultobj = Py_None;
4690 return resultobj;
4691 fail:
4692 return NULL;
4693 }
4694
4695
4696 static PyObject *_wrap_Configuration_isModified(PyObject *self, PyObject *args) {
4697 PyObject *resultobj;
4698 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4699 bool result;
4700 PyObject * obj0 = 0 ;
4701
4702 if(!PyArg_ParseTuple(args,(char *)"O:Configuration_isModified",&obj0)) goto fail;
4703 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4704 result = (bool)((otk::Configuration const *)arg1)->isModified();
4705
4706 resultobj = PyInt_FromLong((long)result);
4707 return resultobj;
4708 fail:
4709 return NULL;
4710 }
4711
4712
4713 static PyObject *_wrap_Configuration_save(PyObject *self, PyObject *args) {
4714 PyObject *resultobj;
4715 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4716 PyObject * obj0 = 0 ;
4717
4718 if(!PyArg_ParseTuple(args,(char *)"O:Configuration_save",&obj0)) goto fail;
4719 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4720 (arg1)->save();
4721
4722 Py_INCREF(Py_None); resultobj = Py_None;
4723 return resultobj;
4724 fail:
4725 return NULL;
4726 }
4727
4728
4729 static PyObject *_wrap_Configuration_load(PyObject *self, PyObject *args) {
4730 PyObject *resultobj;
4731 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4732 bool result;
4733 PyObject * obj0 = 0 ;
4734
4735 if(!PyArg_ParseTuple(args,(char *)"O:Configuration_load",&obj0)) goto fail;
4736 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4737 result = (bool)(arg1)->load();
4738
4739 resultobj = PyInt_FromLong((long)result);
4740 return resultobj;
4741 fail:
4742 return NULL;
4743 }
4744
4745
4746 static PyObject *_wrap_Configuration_merge(PyObject *self, PyObject *args) {
4747 PyObject *resultobj;
4748 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4749 std::string *arg2 = 0 ;
4750 bool arg3 = (bool) False ;
4751 bool result;
4752 std::string temp2 ;
4753 PyObject * obj0 = 0 ;
4754 PyObject * obj1 = 0 ;
4755 PyObject * obj2 = 0 ;
4756
4757 if(!PyArg_ParseTuple(args,(char *)"OO|O:Configuration_merge",&obj0,&obj1,&obj2)) goto fail;
4758 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4759 {
4760 if (PyString_Check(obj1)) {
4761 temp2 = std::string(PyString_AsString(obj1));
4762 arg2 = &temp2;
4763 }else {
4764 SWIG_exception(SWIG_TypeError, "string expected");
4765 }
4766 }
4767 if (obj2) {
4768 arg3 = (bool) PyInt_AsLong(obj2);
4769 if (PyErr_Occurred()) SWIG_fail;
4770 }
4771 result = (bool)(arg1)->merge((std::string const &)*arg2,arg3);
4772
4773 resultobj = PyInt_FromLong((long)result);
4774 return resultobj;
4775 fail:
4776 return NULL;
4777 }
4778
4779
4780 static PyObject *_wrap_Configuration_create(PyObject *self, PyObject *args) {
4781 PyObject *resultobj;
4782 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4783 PyObject * obj0 = 0 ;
4784
4785 if(!PyArg_ParseTuple(args,(char *)"O:Configuration_create",&obj0)) goto fail;
4786 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4787 (arg1)->create();
4788
4789 Py_INCREF(Py_None); resultobj = Py_None;
4790 return resultobj;
4791 fail:
4792 return NULL;
4793 }
4794
4795
4796 static PyObject *_wrap_Configuration_setValue_bool(PyObject *self, PyObject *args) {
4797 PyObject *resultobj;
4798 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4799 std::string *arg2 = 0 ;
4800 bool arg3 ;
4801 std::string temp2 ;
4802 PyObject * obj0 = 0 ;
4803 PyObject * obj1 = 0 ;
4804 PyObject * obj2 = 0 ;
4805
4806 if(!PyArg_ParseTuple(args,(char *)"OOO:Configuration_setValue_bool",&obj0,&obj1,&obj2)) goto fail;
4807 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4808 {
4809 if (PyString_Check(obj1)) {
4810 temp2 = std::string(PyString_AsString(obj1));
4811 arg2 = &temp2;
4812 }else {
4813 SWIG_exception(SWIG_TypeError, "string expected");
4814 }
4815 }
4816 arg3 = (bool) PyInt_AsLong(obj2);
4817 if (PyErr_Occurred()) SWIG_fail;
4818 (arg1)->setValue((std::string const &)*arg2,arg3);
4819
4820 Py_INCREF(Py_None); resultobj = Py_None;
4821 return resultobj;
4822 fail:
4823 return NULL;
4824 }
4825
4826
4827 static PyObject *_wrap_Configuration_setValue(PyObject *self, PyObject *args) {
4828 PyObject *resultobj;
4829 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4830 std::string *arg2 = 0 ;
4831 int arg3 ;
4832 std::string temp2 ;
4833 PyObject * obj0 = 0 ;
4834 PyObject * obj1 = 0 ;
4835
4836 if(!PyArg_ParseTuple(args,(char *)"OOi:Configuration_setValue",&obj0,&obj1,&arg3)) goto fail;
4837 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4838 {
4839 if (PyString_Check(obj1)) {
4840 temp2 = std::string(PyString_AsString(obj1));
4841 arg2 = &temp2;
4842 }else {
4843 SWIG_exception(SWIG_TypeError, "string expected");
4844 }
4845 }
4846 (arg1)->setValue((std::string const &)*arg2,arg3);
4847
4848 Py_INCREF(Py_None); resultobj = Py_None;
4849 return resultobj;
4850 fail:
4851 return NULL;
4852 }
4853
4854
4855 static PyObject *_wrap_Configuration_setValue_unsigned(PyObject *self, PyObject *args) {
4856 PyObject *resultobj;
4857 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4858 std::string *arg2 = 0 ;
4859 unsigned int arg3 ;
4860 std::string temp2 ;
4861 PyObject * obj0 = 0 ;
4862 PyObject * obj1 = 0 ;
4863 PyObject * obj2 = 0 ;
4864
4865 if(!PyArg_ParseTuple(args,(char *)"OOO:Configuration_setValue_unsigned",&obj0,&obj1,&obj2)) goto fail;
4866 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4867 {
4868 if (PyString_Check(obj1)) {
4869 temp2 = std::string(PyString_AsString(obj1));
4870 arg2 = &temp2;
4871 }else {
4872 SWIG_exception(SWIG_TypeError, "string expected");
4873 }
4874 }
4875 arg3 = (unsigned int) PyInt_AsLong(obj2);
4876 if (PyErr_Occurred()) SWIG_fail;
4877 (arg1)->setValue((std::string const &)*arg2,arg3);
4878
4879 Py_INCREF(Py_None); resultobj = Py_None;
4880 return resultobj;
4881 fail:
4882 return NULL;
4883 }
4884
4885
4886 static PyObject *_wrap_Configuration_setValue_long(PyObject *self, PyObject *args) {
4887 PyObject *resultobj;
4888 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4889 std::string *arg2 = 0 ;
4890 long arg3 ;
4891 std::string temp2 ;
4892 PyObject * obj0 = 0 ;
4893 PyObject * obj1 = 0 ;
4894
4895 if(!PyArg_ParseTuple(args,(char *)"OOl:Configuration_setValue_long",&obj0,&obj1,&arg3)) goto fail;
4896 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4897 {
4898 if (PyString_Check(obj1)) {
4899 temp2 = std::string(PyString_AsString(obj1));
4900 arg2 = &temp2;
4901 }else {
4902 SWIG_exception(SWIG_TypeError, "string expected");
4903 }
4904 }
4905 (arg1)->setValue((std::string const &)*arg2,arg3);
4906
4907 Py_INCREF(Py_None); resultobj = Py_None;
4908 return resultobj;
4909 fail:
4910 return NULL;
4911 }
4912
4913
4914 static PyObject *_wrap_Configuration_setValue_unsignedlong(PyObject *self, PyObject *args) {
4915 PyObject *resultobj;
4916 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4917 std::string *arg2 = 0 ;
4918 unsigned long arg3 ;
4919 std::string temp2 ;
4920 PyObject * obj0 = 0 ;
4921 PyObject * obj1 = 0 ;
4922 PyObject * obj2 = 0 ;
4923
4924 if(!PyArg_ParseTuple(args,(char *)"OOO:Configuration_setValue_unsignedlong",&obj0,&obj1,&obj2)) goto fail;
4925 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4926 {
4927 if (PyString_Check(obj1)) {
4928 temp2 = std::string(PyString_AsString(obj1));
4929 arg2 = &temp2;
4930 }else {
4931 SWIG_exception(SWIG_TypeError, "string expected");
4932 }
4933 }
4934 arg3 = (unsigned long) PyInt_AsLong(obj2);
4935 if (PyErr_Occurred()) SWIG_fail;
4936 (arg1)->setValue((std::string const &)*arg2,arg3);
4937
4938 Py_INCREF(Py_None); resultobj = Py_None;
4939 return resultobj;
4940 fail:
4941 return NULL;
4942 }
4943
4944
4945 static PyObject *_wrap_Configuration_setValue_string(PyObject *self, PyObject *args) {
4946 PyObject *resultobj;
4947 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4948 std::string *arg2 = 0 ;
4949 std::string *arg3 = 0 ;
4950 std::string temp2 ;
4951 std::string temp3 ;
4952 PyObject * obj0 = 0 ;
4953 PyObject * obj1 = 0 ;
4954 PyObject * obj2 = 0 ;
4955
4956 if(!PyArg_ParseTuple(args,(char *)"OOO:Configuration_setValue_string",&obj0,&obj1,&obj2)) goto fail;
4957 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4958 {
4959 if (PyString_Check(obj1)) {
4960 temp2 = std::string(PyString_AsString(obj1));
4961 arg2 = &temp2;
4962 }else {
4963 SWIG_exception(SWIG_TypeError, "string expected");
4964 }
4965 }
4966 {
4967 if (PyString_Check(obj2)) {
4968 temp3 = std::string(PyString_AsString(obj2));
4969 arg3 = &temp3;
4970 }else {
4971 SWIG_exception(SWIG_TypeError, "string expected");
4972 }
4973 }
4974 (arg1)->setValue((std::string const &)*arg2,(std::string const &)*arg3);
4975
4976 Py_INCREF(Py_None); resultobj = Py_None;
4977 return resultobj;
4978 fail:
4979 return NULL;
4980 }
4981
4982
4983 static PyObject *_wrap_Configuration_setValue_charptr(PyObject *self, PyObject *args) {
4984 PyObject *resultobj;
4985 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
4986 std::string *arg2 = 0 ;
4987 char *arg3 ;
4988 std::string temp2 ;
4989 PyObject * obj0 = 0 ;
4990 PyObject * obj1 = 0 ;
4991
4992 if(!PyArg_ParseTuple(args,(char *)"OOs:Configuration_setValue_charptr",&obj0,&obj1,&arg3)) goto fail;
4993 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4994 {
4995 if (PyString_Check(obj1)) {
4996 temp2 = std::string(PyString_AsString(obj1));
4997 arg2 = &temp2;
4998 }else {
4999 SWIG_exception(SWIG_TypeError, "string expected");
5000 }
5001 }
5002 (arg1)->setValue((std::string const &)*arg2,(char const *)arg3);
5003
5004 Py_INCREF(Py_None); resultobj = Py_None;
5005 return resultobj;
5006 fail:
5007 return NULL;
5008 }
5009
5010
5011 static PyObject *_wrap_Configuration_getValue__SWIG_0(PyObject *self, PyObject *args) {
5012 PyObject *resultobj;
5013 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
5014 std::string *arg2 = 0 ;
5015 bool *arg3 = 0 ;
5016 bool result;
5017 std::string temp2 ;
5018 PyObject * obj0 = 0 ;
5019 PyObject * obj1 = 0 ;
5020 PyObject * obj2 = 0 ;
5021
5022 if(!PyArg_ParseTuple(args,(char *)"OOO:Configuration_getValue",&obj0,&obj1,&obj2)) goto fail;
5023 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5024 {
5025 if (PyString_Check(obj1)) {
5026 temp2 = std::string(PyString_AsString(obj1));
5027 arg2 = &temp2;
5028 }else {
5029 SWIG_exception(SWIG_TypeError, "string expected");
5030 }
5031 }
5032 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_bool,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5033 if (arg3 == NULL) {
5034 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
5035 }
5036 result = (bool)((otk::Configuration const *)arg1)->getValue((std::string const &)*arg2,*arg3);
5037
5038 resultobj = PyInt_FromLong((long)result);
5039 return resultobj;
5040 fail:
5041 return NULL;
5042 }
5043
5044
5045 static PyObject *_wrap_Configuration_getValue__SWIG_1(PyObject *self, PyObject *args) {
5046 PyObject *resultobj;
5047 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
5048 std::string *arg2 = 0 ;
5049 int *arg3 = 0 ;
5050 bool result;
5051 std::string temp2 ;
5052 PyObject * obj0 = 0 ;
5053 PyObject * obj1 = 0 ;
5054 PyObject * obj2 = 0 ;
5055
5056 if(!PyArg_ParseTuple(args,(char *)"OOO:Configuration_getValue",&obj0,&obj1,&obj2)) goto fail;
5057 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5058 {
5059 if (PyString_Check(obj1)) {
5060 temp2 = std::string(PyString_AsString(obj1));
5061 arg2 = &temp2;
5062 }else {
5063 SWIG_exception(SWIG_TypeError, "string expected");
5064 }
5065 }
5066 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5067 if (arg3 == NULL) {
5068 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
5069 }
5070 result = (bool)((otk::Configuration const *)arg1)->getValue((std::string const &)*arg2,*arg3);
5071
5072 resultobj = PyInt_FromLong((long)result);
5073 return resultobj;
5074 fail:
5075 return NULL;
5076 }
5077
5078
5079 static PyObject *_wrap_Configuration_getValue__SWIG_2(PyObject *self, PyObject *args) {
5080 PyObject *resultobj;
5081 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
5082 std::string *arg2 = 0 ;
5083 unsigned int *arg3 = 0 ;
5084 bool result;
5085 std::string temp2 ;
5086 PyObject * obj0 = 0 ;
5087 PyObject * obj1 = 0 ;
5088 PyObject * obj2 = 0 ;
5089
5090 if(!PyArg_ParseTuple(args,(char *)"OOO:Configuration_getValue",&obj0,&obj1,&obj2)) goto fail;
5091 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5092 {
5093 if (PyString_Check(obj1)) {
5094 temp2 = std::string(PyString_AsString(obj1));
5095 arg2 = &temp2;
5096 }else {
5097 SWIG_exception(SWIG_TypeError, "string expected");
5098 }
5099 }
5100 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_unsigned_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5101 if (arg3 == NULL) {
5102 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
5103 }
5104 result = (bool)((otk::Configuration const *)arg1)->getValue((std::string const &)*arg2,*arg3);
5105
5106 resultobj = PyInt_FromLong((long)result);
5107 return resultobj;
5108 fail:
5109 return NULL;
5110 }
5111
5112
5113 static PyObject *_wrap_Configuration_getValue__SWIG_3(PyObject *self, PyObject *args) {
5114 PyObject *resultobj;
5115 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
5116 std::string *arg2 = 0 ;
5117 long *arg3 = 0 ;
5118 bool result;
5119 std::string temp2 ;
5120 PyObject * obj0 = 0 ;
5121 PyObject * obj1 = 0 ;
5122 PyObject * obj2 = 0 ;
5123
5124 if(!PyArg_ParseTuple(args,(char *)"OOO:Configuration_getValue",&obj0,&obj1,&obj2)) goto fail;
5125 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5126 {
5127 if (PyString_Check(obj1)) {
5128 temp2 = std::string(PyString_AsString(obj1));
5129 arg2 = &temp2;
5130 }else {
5131 SWIG_exception(SWIG_TypeError, "string expected");
5132 }
5133 }
5134 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_long,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5135 if (arg3 == NULL) {
5136 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
5137 }
5138 result = (bool)((otk::Configuration const *)arg1)->getValue((std::string const &)*arg2,*arg3);
5139
5140 resultobj = PyInt_FromLong((long)result);
5141 return resultobj;
5142 fail:
5143 return NULL;
5144 }
5145
5146
5147 static PyObject *_wrap_Configuration_getValue__SWIG_4(PyObject *self, PyObject *args) {
5148 PyObject *resultobj;
5149 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
5150 std::string *arg2 = 0 ;
5151 unsigned long *arg3 = 0 ;
5152 bool result;
5153 std::string temp2 ;
5154 PyObject * obj0 = 0 ;
5155 PyObject * obj1 = 0 ;
5156 PyObject * obj2 = 0 ;
5157
5158 if(!PyArg_ParseTuple(args,(char *)"OOO:Configuration_getValue",&obj0,&obj1,&obj2)) goto fail;
5159 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5160 {
5161 if (PyString_Check(obj1)) {
5162 temp2 = std::string(PyString_AsString(obj1));
5163 arg2 = &temp2;
5164 }else {
5165 SWIG_exception(SWIG_TypeError, "string expected");
5166 }
5167 }
5168 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_unsigned_long,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5169 if (arg3 == NULL) {
5170 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
5171 }
5172 result = (bool)((otk::Configuration const *)arg1)->getValue((std::string const &)*arg2,*arg3);
5173
5174 resultobj = PyInt_FromLong((long)result);
5175 return resultobj;
5176 fail:
5177 return NULL;
5178 }
5179
5180
5181 static PyObject *_wrap_Configuration_getValue__SWIG_5(PyObject *self, PyObject *args) {
5182 PyObject *resultobj;
5183 otk::Configuration *arg1 = (otk::Configuration *) 0 ;
5184 std::string *arg2 = 0 ;
5185 std::string *arg3 = 0 ;
5186 bool result;
5187 std::string temp2 ;
5188 PyObject * obj0 = 0 ;
5189 PyObject * obj1 = 0 ;
5190 PyObject * obj2 = 0 ;
5191
5192 if(!PyArg_ParseTuple(args,(char *)"OOO:Configuration_getValue",&obj0,&obj1,&obj2)) goto fail;
5193 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5194 {
5195 if (PyString_Check(obj1)) {
5196 temp2 = std::string(PyString_AsString(obj1));
5197 arg2 = &temp2;
5198 }else {
5199 SWIG_exception(SWIG_TypeError, "string expected");
5200 }
5201 }
5202 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_std__string,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5203 if (arg3 == NULL) {
5204 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
5205 }
5206 result = (bool)((otk::Configuration const *)arg1)->getValue((std::string const &)*arg2,*arg3);
5207
5208 resultobj = PyInt_FromLong((long)result);
5209 return resultobj;
5210 fail:
5211 return NULL;
5212 }
5213
5214
5215 static PyObject *_wrap_Configuration_getValue(PyObject *self, PyObject *args) {
5216 int argc;
5217 PyObject *argv[4];
5218 int ii;
5219
5220 argc = PyObject_Length(args);
5221 for (ii = 0; (ii < argc) && (ii < 3); ii++) {
5222 argv[ii] = PyTuple_GetItem(args,ii);
5223 }
5224 if (argc == 3) {
5225 int _v;
5226 {
5227 void *ptr;
5228 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Configuration, 0) == -1) {
5229 _v = 0;
5230 PyErr_Clear();
5231 }else {
5232 _v = 1;
5233 }
5234 }
5235 if (_v) {
5236 {
5237 _v = PyString_Check(argv[1]) ? 1 : 0;
5238 }
5239 if (_v) {
5240 {
5241 void *ptr;
5242 if (SWIG_ConvertPtr(argv[2], (void **) &ptr, SWIGTYPE_p_bool, 0) == -1) {
5243 _v = 0;
5244 PyErr_Clear();
5245 }else {
5246 _v = 1;
5247 }
5248 }
5249 if (_v) {
5250 return _wrap_Configuration_getValue__SWIG_0(self,args);
5251 }
5252 }
5253 }
5254 }
5255 if (argc == 3) {
5256 int _v;
5257 {
5258 void *ptr;
5259 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Configuration, 0) == -1) {
5260 _v = 0;
5261 PyErr_Clear();
5262 }else {
5263 _v = 1;
5264 }
5265 }
5266 if (_v) {
5267 {
5268 _v = PyString_Check(argv[1]) ? 1 : 0;
5269 }
5270 if (_v) {
5271 {
5272 void *ptr;
5273 if (SWIG_ConvertPtr(argv[2], (void **) &ptr, SWIGTYPE_p_int, 0) == -1) {
5274 _v = 0;
5275 PyErr_Clear();
5276 }else {
5277 _v = 1;
5278 }
5279 }
5280 if (_v) {
5281 return _wrap_Configuration_getValue__SWIG_1(self,args);
5282 }
5283 }
5284 }
5285 }
5286 if (argc == 3) {
5287 int _v;
5288 {
5289 void *ptr;
5290 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Configuration, 0) == -1) {
5291 _v = 0;
5292 PyErr_Clear();
5293 }else {
5294 _v = 1;
5295 }
5296 }
5297 if (_v) {
5298 {
5299 _v = PyString_Check(argv[1]) ? 1 : 0;
5300 }
5301 if (_v) {
5302 {
5303 void *ptr;
5304 if (SWIG_ConvertPtr(argv[2], (void **) &ptr, SWIGTYPE_p_unsigned_int, 0) == -1) {
5305 _v = 0;
5306 PyErr_Clear();
5307 }else {
5308 _v = 1;
5309 }
5310 }
5311 if (_v) {
5312 return _wrap_Configuration_getValue__SWIG_2(self,args);
5313 }
5314 }
5315 }
5316 }
5317 if (argc == 3) {
5318 int _v;
5319 {
5320 void *ptr;
5321 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Configuration, 0) == -1) {
5322 _v = 0;
5323 PyErr_Clear();
5324 }else {
5325 _v = 1;
5326 }
5327 }
5328 if (_v) {
5329 {
5330 _v = PyString_Check(argv[1]) ? 1 : 0;
5331 }
5332 if (_v) {
5333 {
5334 void *ptr;
5335 if (SWIG_ConvertPtr(argv[2], (void **) &ptr, SWIGTYPE_p_long, 0) == -1) {
5336 _v = 0;
5337 PyErr_Clear();
5338 }else {
5339 _v = 1;
5340 }
5341 }
5342 if (_v) {
5343 return _wrap_Configuration_getValue__SWIG_3(self,args);
5344 }
5345 }
5346 }
5347 }
5348 if (argc == 3) {
5349 int _v;
5350 {
5351 void *ptr;
5352 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Configuration, 0) == -1) {
5353 _v = 0;
5354 PyErr_Clear();
5355 }else {
5356 _v = 1;
5357 }
5358 }
5359 if (_v) {
5360 {
5361 _v = PyString_Check(argv[1]) ? 1 : 0;
5362 }
5363 if (_v) {
5364 {
5365 void *ptr;
5366 if (SWIG_ConvertPtr(argv[2], (void **) &ptr, SWIGTYPE_p_unsigned_long, 0) == -1) {
5367 _v = 0;
5368 PyErr_Clear();
5369 }else {
5370 _v = 1;
5371 }
5372 }
5373 if (_v) {
5374 return _wrap_Configuration_getValue__SWIG_4(self,args);
5375 }
5376 }
5377 }
5378 }
5379 if (argc == 3) {
5380 int _v;
5381 {
5382 void *ptr;
5383 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Configuration, 0) == -1) {
5384 _v = 0;
5385 PyErr_Clear();
5386 }else {
5387 _v = 1;
5388 }
5389 }
5390 if (_v) {
5391 {
5392 _v = PyString_Check(argv[1]) ? 1 : 0;
5393 }
5394 if (_v) {
5395 {
5396 void *ptr;
5397 if (SWIG_ConvertPtr(argv[2], (void **) &ptr, SWIGTYPE_p_std__string, 0) == -1) {
5398 _v = 0;
5399 PyErr_Clear();
5400 }else {
5401 _v = 1;
5402 }
5403 }
5404 if (_v) {
5405 return _wrap_Configuration_getValue__SWIG_5(self,args);
5406 }
5407 }
5408 }
5409 }
5410
5411 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'Configuration_getValue'");
5412 return NULL;
5413 }
5414
5415
5416 static PyObject * Configuration_swigregister(PyObject *self, PyObject *args) {
5417 PyObject *obj;
5418 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
5419 SWIG_TypeClientData(SWIGTYPE_p_otk__Configuration, obj);
5420 Py_INCREF(obj);
5421 return Py_BuildValue((char *)"");
5422 }
5423 static int _wrap_OBDisplay_display_set(PyObject *_val) {
5424 {
5425 void *temp;
5426 if ((SWIG_ConvertPtr(_val,(void **) &temp, SWIGTYPE_p_Display, SWIG_POINTER_EXCEPTION | SWIG_POINTER_DISOWN)) == -1) {
5427 PyErr_SetString(PyExc_TypeError, "C variable 'otk::OBDisplay::display (Display *)'");
5428 return 1;
5429 }
5430 otk::OBDisplay::display = (Display *) temp;
5431 }
5432 return 0;
5433 }
5434
5435
5436 static PyObject *_wrap_OBDisplay_display_get() {
5437 PyObject *pyobj;
5438
5439 pyobj = SWIG_NewPointerObj((void *) otk::OBDisplay::display, SWIGTYPE_p_Display, 0);
5440 return pyobj;
5441 }
5442
5443
5444 static PyObject *_wrap_OBDisplay_initialize(PyObject *self, PyObject *args) {
5445 PyObject *resultobj;
5446 char *arg1 ;
5447
5448 if(!PyArg_ParseTuple(args,(char *)"s:OBDisplay_initialize",&arg1)) goto fail;
5449 otk::OBDisplay::initialize(arg1);
5450
5451 Py_INCREF(Py_None); resultobj = Py_None;
5452 return resultobj;
5453 fail:
5454 return NULL;
5455 }
5456
5457
5458 static PyObject *_wrap_OBDisplay_destroy(PyObject *self, PyObject *args) {
5459 PyObject *resultobj;
5460
5461 if(!PyArg_ParseTuple(args,(char *)":OBDisplay_destroy")) goto fail;
5462 otk::OBDisplay::destroy();
5463
5464 Py_INCREF(Py_None); resultobj = Py_None;
5465 return resultobj;
5466 fail:
5467 return NULL;
5468 }
5469
5470
5471 static PyObject *_wrap_OBDisplay_gcCache(PyObject *self, PyObject *args) {
5472 PyObject *resultobj;
5473 otk::BGCCache *result;
5474
5475 if(!PyArg_ParseTuple(args,(char *)":OBDisplay_gcCache")) goto fail;
5476 result = (otk::BGCCache *)otk::OBDisplay::gcCache();
5477
5478 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BGCCache, 0);
5479 return resultobj;
5480 fail:
5481 return NULL;
5482 }
5483
5484
5485 static PyObject *_wrap_OBDisplay_screenInfo(PyObject *self, PyObject *args) {
5486 PyObject *resultobj;
5487 int arg1 ;
5488 otk::ScreenInfo *result;
5489
5490 if(!PyArg_ParseTuple(args,(char *)"i:OBDisplay_screenInfo",&arg1)) goto fail;
5491 result = (otk::ScreenInfo *)otk::OBDisplay::screenInfo(arg1);
5492
5493 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__ScreenInfo, 0);
5494 return resultobj;
5495 fail:
5496 return NULL;
5497 }
5498
5499
5500 static PyObject *_wrap_OBDisplay_shape(PyObject *self, PyObject *args) {
5501 PyObject *resultobj;
5502 bool result;
5503
5504 if(!PyArg_ParseTuple(args,(char *)":OBDisplay_shape")) goto fail;
5505 result = (bool)otk::OBDisplay::shape();
5506
5507 resultobj = PyInt_FromLong((long)result);
5508 return resultobj;
5509 fail:
5510 return NULL;
5511 }
5512
5513
5514 static PyObject *_wrap_OBDisplay_shapeEventBase(PyObject *self, PyObject *args) {
5515 PyObject *resultobj;
5516 int result;
5517
5518 if(!PyArg_ParseTuple(args,(char *)":OBDisplay_shapeEventBase")) goto fail;
5519 result = (int)otk::OBDisplay::shapeEventBase();
5520
5521 resultobj = PyInt_FromLong((long)result);
5522 return resultobj;
5523 fail:
5524 return NULL;
5525 }
5526
5527
5528 static PyObject *_wrap_OBDisplay_xinerama(PyObject *self, PyObject *args) {
5529 PyObject *resultobj;
5530 bool result;
5531
5532 if(!PyArg_ParseTuple(args,(char *)":OBDisplay_xinerama")) goto fail;
5533 result = (bool)otk::OBDisplay::xinerama();
5534
5535 resultobj = PyInt_FromLong((long)result);
5536 return resultobj;
5537 fail:
5538 return NULL;
5539 }
5540
5541
5542 static PyObject *_wrap_OBDisplay_numLockMask(PyObject *self, PyObject *args) {
5543 PyObject *resultobj;
5544 unsigned int result;
5545
5546 if(!PyArg_ParseTuple(args,(char *)":OBDisplay_numLockMask")) goto fail;
5547 result = (unsigned int)otk::OBDisplay::numLockMask();
5548
5549 resultobj = PyInt_FromLong((long)result);
5550 return resultobj;
5551 fail:
5552 return NULL;
5553 }
5554
5555
5556 static PyObject *_wrap_OBDisplay_scrollLockMask(PyObject *self, PyObject *args) {
5557 PyObject *resultobj;
5558 unsigned int result;
5559
5560 if(!PyArg_ParseTuple(args,(char *)":OBDisplay_scrollLockMask")) goto fail;
5561 result = (unsigned int)otk::OBDisplay::scrollLockMask();
5562
5563 resultobj = PyInt_FromLong((long)result);
5564 return resultobj;
5565 fail:
5566 return NULL;
5567 }
5568
5569
5570 static PyObject *_wrap_OBDisplay_grab(PyObject *self, PyObject *args) {
5571 PyObject *resultobj;
5572
5573 if(!PyArg_ParseTuple(args,(char *)":OBDisplay_grab")) goto fail;
5574 otk::OBDisplay::grab();
5575
5576 Py_INCREF(Py_None); resultobj = Py_None;
5577 return resultobj;
5578 fail:
5579 return NULL;
5580 }
5581
5582
5583 static PyObject *_wrap_OBDisplay_ungrab(PyObject *self, PyObject *args) {
5584 PyObject *resultobj;
5585
5586 if(!PyArg_ParseTuple(args,(char *)":OBDisplay_ungrab")) goto fail;
5587 otk::OBDisplay::ungrab();
5588
5589 Py_INCREF(Py_None); resultobj = Py_None;
5590 return resultobj;
5591 fail:
5592 return NULL;
5593 }
5594
5595
5596 static PyObject *_wrap_OBDisplay_grabButton(PyObject *self, PyObject *args) {
5597 PyObject *resultobj;
5598 unsigned int arg1 ;
5599 unsigned int arg2 ;
5600 Window arg3 ;
5601 bool arg4 ;
5602 unsigned int arg5 ;
5603 int arg6 ;
5604 int arg7 ;
5605 Window arg8 ;
5606 Cursor arg9 ;
5607 bool arg10 ;
5608 Window *argp3 ;
5609 Window *argp8 ;
5610 Cursor *argp9 ;
5611 PyObject * obj0 = 0 ;
5612 PyObject * obj1 = 0 ;
5613 PyObject * obj2 = 0 ;
5614 PyObject * obj3 = 0 ;
5615 PyObject * obj4 = 0 ;
5616 PyObject * obj7 = 0 ;
5617 PyObject * obj8 = 0 ;
5618 PyObject * obj9 = 0 ;
5619
5620 if(!PyArg_ParseTuple(args,(char *)"OOOOOiiOOO:OBDisplay_grabButton",&obj0,&obj1,&obj2,&obj3,&obj4,&arg6,&arg7,&obj7,&obj8,&obj9)) goto fail;
5621 arg1 = (unsigned int) PyInt_AsLong(obj0);
5622 if (PyErr_Occurred()) SWIG_fail;
5623 arg2 = (unsigned int) PyInt_AsLong(obj1);
5624 if (PyErr_Occurred()) SWIG_fail;
5625 if ((SWIG_ConvertPtr(obj2,(void **) &argp3, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
5626 arg3 = *argp3;
5627 arg4 = (bool) PyInt_AsLong(obj3);
5628 if (PyErr_Occurred()) SWIG_fail;
5629 arg5 = (unsigned int) PyInt_AsLong(obj4);
5630 if (PyErr_Occurred()) SWIG_fail;
5631 if ((SWIG_ConvertPtr(obj7,(void **) &argp8, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
5632 arg8 = *argp8;
5633 if ((SWIG_ConvertPtr(obj8,(void **) &argp9, SWIGTYPE_p_Cursor,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
5634 arg9 = *argp9;
5635 arg10 = (bool) PyInt_AsLong(obj9);
5636 if (PyErr_Occurred()) SWIG_fail;
5637 otk::OBDisplay::grabButton(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10);
5638
5639 Py_INCREF(Py_None); resultobj = Py_None;
5640 return resultobj;
5641 fail:
5642 return NULL;
5643 }
5644
5645
5646 static PyObject *_wrap_OBDisplay_ungrabButton(PyObject *self, PyObject *args) {
5647 PyObject *resultobj;
5648 unsigned int arg1 ;
5649 unsigned int arg2 ;
5650 Window arg3 ;
5651 Window *argp3 ;
5652 PyObject * obj0 = 0 ;
5653 PyObject * obj1 = 0 ;
5654 PyObject * obj2 = 0 ;
5655
5656 if(!PyArg_ParseTuple(args,(char *)"OOO:OBDisplay_ungrabButton",&obj0,&obj1,&obj2)) goto fail;
5657 arg1 = (unsigned int) PyInt_AsLong(obj0);
5658 if (PyErr_Occurred()) SWIG_fail;
5659 arg2 = (unsigned int) PyInt_AsLong(obj1);
5660 if (PyErr_Occurred()) SWIG_fail;
5661 if ((SWIG_ConvertPtr(obj2,(void **) &argp3, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
5662 arg3 = *argp3;
5663 otk::OBDisplay::ungrabButton(arg1,arg2,arg3);
5664
5665 Py_INCREF(Py_None); resultobj = Py_None;
5666 return resultobj;
5667 fail:
5668 return NULL;
5669 }
5670
5671
5672 static PyObject *_wrap_OBDisplay_grabKey(PyObject *self, PyObject *args) {
5673 PyObject *resultobj;
5674 unsigned int arg1 ;
5675 unsigned int arg2 ;
5676 Window arg3 ;
5677 bool arg4 ;
5678 int arg5 ;
5679 int arg6 ;
5680 bool arg7 ;
5681 Window *argp3 ;
5682 PyObject * obj0 = 0 ;
5683 PyObject * obj1 = 0 ;
5684 PyObject * obj2 = 0 ;
5685 PyObject * obj3 = 0 ;
5686 PyObject * obj6 = 0 ;
5687
5688 if(!PyArg_ParseTuple(args,(char *)"OOOOiiO:OBDisplay_grabKey",&obj0,&obj1,&obj2,&obj3,&arg5,&arg6,&obj6)) goto fail;
5689 arg1 = (unsigned int) PyInt_AsLong(obj0);
5690 if (PyErr_Occurred()) SWIG_fail;
5691 arg2 = (unsigned int) PyInt_AsLong(obj1);
5692 if (PyErr_Occurred()) SWIG_fail;
5693 if ((SWIG_ConvertPtr(obj2,(void **) &argp3, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
5694 arg3 = *argp3;
5695 arg4 = (bool) PyInt_AsLong(obj3);
5696 if (PyErr_Occurred()) SWIG_fail;
5697 arg7 = (bool) PyInt_AsLong(obj6);
5698 if (PyErr_Occurred()) SWIG_fail;
5699 otk::OBDisplay::grabKey(arg1,arg2,arg3,arg4,arg5,arg6,arg7);
5700
5701 Py_INCREF(Py_None); resultobj = Py_None;
5702 return resultobj;
5703 fail:
5704 return NULL;
5705 }
5706
5707
5708 static PyObject *_wrap_OBDisplay_ungrabKey(PyObject *self, PyObject *args) {
5709 PyObject *resultobj;
5710 unsigned int arg1 ;
5711 unsigned int arg2 ;
5712 Window arg3 ;
5713 Window *argp3 ;
5714 PyObject * obj0 = 0 ;
5715 PyObject * obj1 = 0 ;
5716 PyObject * obj2 = 0 ;
5717
5718 if(!PyArg_ParseTuple(args,(char *)"OOO:OBDisplay_ungrabKey",&obj0,&obj1,&obj2)) goto fail;
5719 arg1 = (unsigned int) PyInt_AsLong(obj0);
5720 if (PyErr_Occurred()) SWIG_fail;
5721 arg2 = (unsigned int) PyInt_AsLong(obj1);
5722 if (PyErr_Occurred()) SWIG_fail;
5723 if ((SWIG_ConvertPtr(obj2,(void **) &argp3, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
5724 arg3 = *argp3;
5725 otk::OBDisplay::ungrabKey(arg1,arg2,arg3);
5726
5727 Py_INCREF(Py_None); resultobj = Py_None;
5728 return resultobj;
5729 fail:
5730 return NULL;
5731 }
5732
5733
5734 static PyObject *_wrap_delete_OBDisplay(PyObject *self, PyObject *args) {
5735 PyObject *resultobj;
5736 otk::OBDisplay *arg1 = (otk::OBDisplay *) 0 ;
5737 PyObject * obj0 = 0 ;
5738
5739 if(!PyArg_ParseTuple(args,(char *)"O:delete_OBDisplay",&obj0)) goto fail;
5740 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBDisplay,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5741 delete arg1;
5742
5743 Py_INCREF(Py_None); resultobj = Py_None;
5744 return resultobj;
5745 fail:
5746 return NULL;
5747 }
5748
5749
5750 static PyObject * OBDisplay_swigregister(PyObject *self, PyObject *args) {
5751 PyObject *obj;
5752 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
5753 SWIG_TypeClientData(SWIGTYPE_p_otk__OBDisplay, obj);
5754 Py_INCREF(obj);
5755 return Py_BuildValue((char *)"");
5756 }
5757 static PyObject *_wrap_BFont_fallbackFont(PyObject *self, PyObject *args) {
5758 PyObject *resultobj;
5759 std::string result;
5760
5761 if(!PyArg_ParseTuple(args,(char *)":BFont_fallbackFont")) goto fail;
5762 result = otk::BFont::fallbackFont();
5763
5764 {
5765 resultobj = PyString_FromString((&result)->c_str());
5766 }
5767 return resultobj;
5768 fail:
5769 return NULL;
5770 }
5771
5772
5773 static PyObject *_wrap_BFont_setFallbackFont(PyObject *self, PyObject *args) {
5774 PyObject *resultobj;
5775 std::string *arg1 = 0 ;
5776 std::string temp1 ;
5777 PyObject * obj0 = 0 ;
5778
5779 if(!PyArg_ParseTuple(args,(char *)"O:BFont_setFallbackFont",&obj0)) goto fail;
5780 {
5781 if (PyString_Check(obj0)) {
5782 temp1 = std::string(PyString_AsString(obj0));
5783 arg1 = &temp1;
5784 }else {
5785 SWIG_exception(SWIG_TypeError, "string expected");
5786 }
5787 }
5788 otk::BFont::setFallbackFont((std::string const &)*arg1);
5789
5790 Py_INCREF(Py_None); resultobj = Py_None;
5791 return resultobj;
5792 fail:
5793 return NULL;
5794 }
5795
5796
5797 static PyObject *_wrap_new_BFont(PyObject *self, PyObject *args) {
5798 PyObject *resultobj;
5799 int arg1 ;
5800 std::string *arg2 = 0 ;
5801 bool arg3 ;
5802 unsigned char arg4 ;
5803 unsigned char arg5 ;
5804 otk::BFont *result;
5805 std::string temp2 ;
5806 PyObject * obj1 = 0 ;
5807 PyObject * obj2 = 0 ;
5808 PyObject * obj3 = 0 ;
5809 PyObject * obj4 = 0 ;
5810
5811 if(!PyArg_ParseTuple(args,(char *)"iOOOO:new_BFont",&arg1,&obj1,&obj2,&obj3,&obj4)) goto fail;
5812 {
5813 if (PyString_Check(obj1)) {
5814 temp2 = std::string(PyString_AsString(obj1));
5815 arg2 = &temp2;
5816 }else {
5817 SWIG_exception(SWIG_TypeError, "string expected");
5818 }
5819 }
5820 arg3 = (bool) PyInt_AsLong(obj2);
5821 if (PyErr_Occurred()) SWIG_fail;
5822 arg4 = (unsigned char) PyInt_AsLong(obj3);
5823 if (PyErr_Occurred()) SWIG_fail;
5824 arg5 = (unsigned char) PyInt_AsLong(obj4);
5825 if (PyErr_Occurred()) SWIG_fail;
5826 result = (otk::BFont *)new otk::BFont(arg1,(std::string const &)*arg2,arg3,arg4,arg5);
5827
5828 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BFont, 1);
5829 return resultobj;
5830 fail:
5831 return NULL;
5832 }
5833
5834
5835 static PyObject *_wrap_delete_BFont(PyObject *self, PyObject *args) {
5836 PyObject *resultobj;
5837 otk::BFont *arg1 = (otk::BFont *) 0 ;
5838 PyObject * obj0 = 0 ;
5839
5840 if(!PyArg_ParseTuple(args,(char *)"O:delete_BFont",&obj0)) goto fail;
5841 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BFont,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5842 delete arg1;
5843
5844 Py_INCREF(Py_None); resultobj = Py_None;
5845 return resultobj;
5846 fail:
5847 return NULL;
5848 }
5849
5850
5851 static PyObject *_wrap_BFont_fontstring(PyObject *self, PyObject *args) {
5852 PyObject *resultobj;
5853 otk::BFont *arg1 = (otk::BFont *) 0 ;
5854 std::string *result;
5855 PyObject * obj0 = 0 ;
5856
5857 if(!PyArg_ParseTuple(args,(char *)"O:BFont_fontstring",&obj0)) goto fail;
5858 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BFont,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5859 {
5860 std::string const &_result_ref = ((otk::BFont const *)arg1)->fontstring();
5861 result = (std::string *) &_result_ref;
5862 }
5863
5864 {
5865 resultobj = PyString_FromString(result->c_str());
5866 }
5867 return resultobj;
5868 fail:
5869 return NULL;
5870 }
5871
5872
5873 static PyObject *_wrap_BFont_height(PyObject *self, PyObject *args) {
5874 PyObject *resultobj;
5875 otk::BFont *arg1 = (otk::BFont *) 0 ;
5876 unsigned int result;
5877 PyObject * obj0 = 0 ;
5878
5879 if(!PyArg_ParseTuple(args,(char *)"O:BFont_height",&obj0)) goto fail;
5880 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BFont,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5881 result = (unsigned int)((otk::BFont const *)arg1)->height();
5882
5883 resultobj = PyInt_FromLong((long)result);
5884 return resultobj;
5885 fail:
5886 return NULL;
5887 }
5888
5889
5890 static PyObject *_wrap_BFont_maxCharWidth(PyObject *self, PyObject *args) {
5891 PyObject *resultobj;
5892 otk::BFont *arg1 = (otk::BFont *) 0 ;
5893 unsigned int result;
5894 PyObject * obj0 = 0 ;
5895
5896 if(!PyArg_ParseTuple(args,(char *)"O:BFont_maxCharWidth",&obj0)) goto fail;
5897 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BFont,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5898 result = (unsigned int)((otk::BFont const *)arg1)->maxCharWidth();
5899
5900 resultobj = PyInt_FromLong((long)result);
5901 return resultobj;
5902 fail:
5903 return NULL;
5904 }
5905
5906
5907 static PyObject *_wrap_BFont_measureString(PyObject *self, PyObject *args) {
5908 PyObject *resultobj;
5909 otk::BFont *arg1 = (otk::BFont *) 0 ;
5910 std::string *arg2 = 0 ;
5911 bool arg3 = (bool) false ;
5912 unsigned int result;
5913 std::string temp2 ;
5914 PyObject * obj0 = 0 ;
5915 PyObject * obj1 = 0 ;
5916 PyObject * obj2 = 0 ;
5917
5918 if(!PyArg_ParseTuple(args,(char *)"OO|O:BFont_measureString",&obj0,&obj1,&obj2)) goto fail;
5919 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BFont,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5920 {
5921 if (PyString_Check(obj1)) {
5922 temp2 = std::string(PyString_AsString(obj1));
5923 arg2 = &temp2;
5924 }else {
5925 SWIG_exception(SWIG_TypeError, "string expected");
5926 }
5927 }
5928 if (obj2) {
5929 arg3 = (bool) PyInt_AsLong(obj2);
5930 if (PyErr_Occurred()) SWIG_fail;
5931 }
5932 result = (unsigned int)((otk::BFont const *)arg1)->measureString((std::string const &)*arg2,arg3);
5933
5934 resultobj = PyInt_FromLong((long)result);
5935 return resultobj;
5936 fail:
5937 return NULL;
5938 }
5939
5940
5941 static PyObject *_wrap_BFont_drawString(PyObject *self, PyObject *args) {
5942 PyObject *resultobj;
5943 otk::BFont *arg1 = (otk::BFont *) 0 ;
5944 XftDraw *arg2 = (XftDraw *) 0 ;
5945 int arg3 ;
5946 int arg4 ;
5947 otk::BColor *arg5 = 0 ;
5948 std::string *arg6 = 0 ;
5949 bool arg7 = (bool) false ;
5950 std::string temp6 ;
5951 PyObject * obj0 = 0 ;
5952 PyObject * obj1 = 0 ;
5953 PyObject * obj4 = 0 ;
5954 PyObject * obj5 = 0 ;
5955 PyObject * obj6 = 0 ;
5956
5957 if(!PyArg_ParseTuple(args,(char *)"OOiiOO|O:BFont_drawString",&obj0,&obj1,&arg3,&arg4,&obj4,&obj5,&obj6)) goto fail;
5958 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BFont,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5959 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XftDraw,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5960 if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5961 if (arg5 == NULL) {
5962 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
5963 }
5964 {
5965 if (PyString_Check(obj5)) {
5966 temp6 = std::string(PyString_AsString(obj5));
5967 arg6 = &temp6;
5968 }else {
5969 SWIG_exception(SWIG_TypeError, "string expected");
5970 }
5971 }
5972 if (obj6) {
5973 arg7 = (bool) PyInt_AsLong(obj6);
5974 if (PyErr_Occurred()) SWIG_fail;
5975 }
5976 ((otk::BFont const *)arg1)->drawString(arg2,arg3,arg4,(otk::BColor const &)*arg5,(std::string const &)*arg6,arg7);
5977
5978 Py_INCREF(Py_None); resultobj = Py_None;
5979 return resultobj;
5980 fail:
5981 return NULL;
5982 }
5983
5984
5985 static PyObject * BFont_swigregister(PyObject *self, PyObject *args) {
5986 PyObject *obj;
5987 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
5988 SWIG_TypeClientData(SWIGTYPE_p_otk__BFont, obj);
5989 Py_INCREF(obj);
5990 return Py_BuildValue((char *)"");
5991 }
5992 static PyObject *_wrap_BGCCacheContext_set__SWIG_0(PyObject *self, PyObject *args) {
5993 PyObject *resultobj;
5994 otk::BGCCacheContext *arg1 = (otk::BGCCacheContext *) 0 ;
5995 otk::BColor *arg2 = 0 ;
5996 XFontStruct *arg3 = (XFontStruct *) (XFontStruct *)0 ;
5997 int arg4 ;
5998 int arg5 ;
5999 int arg6 ;
6000 PyObject * obj0 = 0 ;
6001 PyObject * obj1 = 0 ;
6002 PyObject * obj2 = 0 ;
6003
6004 if(!PyArg_ParseTuple(args,(char *)"OOOiii:BGCCacheContext_set",&obj0,&obj1,&obj2,&arg4,&arg5,&arg6)) goto fail;
6005 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCacheContext,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6006 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6007 if (arg2 == NULL) {
6008 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
6009 }
6010 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_XFontStruct,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6011 (arg1)->set((otk::BColor const &)*arg2,(XFontStruct const *)arg3,arg4,arg5,arg6);
6012
6013 Py_INCREF(Py_None); resultobj = Py_None;
6014 return resultobj;
6015 fail:
6016 return NULL;
6017 }
6018
6019
6020 static PyObject *_wrap_BGCCacheContext_set__SWIG_1(PyObject *self, PyObject *args) {
6021 PyObject *resultobj;
6022 otk::BGCCacheContext *arg1 = (otk::BGCCacheContext *) 0 ;
6023 XFontStruct *arg2 = (XFontStruct *) (XFontStruct *)0 ;
6024 PyObject * obj0 = 0 ;
6025 PyObject * obj1 = 0 ;
6026
6027 if(!PyArg_ParseTuple(args,(char *)"OO:BGCCacheContext_set",&obj0,&obj1)) goto fail;
6028 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCacheContext,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6029 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XFontStruct,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6030 (arg1)->set((XFontStruct const *)arg2);
6031
6032 Py_INCREF(Py_None); resultobj = Py_None;
6033 return resultobj;
6034 fail:
6035 return NULL;
6036 }
6037
6038
6039 static PyObject *_wrap_BGCCacheContext_set(PyObject *self, PyObject *args) {
6040 int argc;
6041 PyObject *argv[7];
6042 int ii;
6043
6044 argc = PyObject_Length(args);
6045 for (ii = 0; (ii < argc) && (ii < 6); ii++) {
6046 argv[ii] = PyTuple_GetItem(args,ii);
6047 }
6048 if (argc == 2) {
6049 int _v;
6050 {
6051 void *ptr;
6052 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__BGCCacheContext, 0) == -1) {
6053 _v = 0;
6054 PyErr_Clear();
6055 }else {
6056 _v = 1;
6057 }
6058 }
6059 if (_v) {
6060 {
6061 void *ptr;
6062 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_XFontStruct, 0) == -1) {
6063 _v = 0;
6064 PyErr_Clear();
6065 }else {
6066 _v = 1;
6067 }
6068 }
6069 if (_v) {
6070 return _wrap_BGCCacheContext_set__SWIG_1(self,args);
6071 }
6072 }
6073 }
6074 if (argc == 6) {
6075 int _v;
6076 {
6077 void *ptr;
6078 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__BGCCacheContext, 0) == -1) {
6079 _v = 0;
6080 PyErr_Clear();
6081 }else {
6082 _v = 1;
6083 }
6084 }
6085 if (_v) {
6086 {
6087 void *ptr;
6088 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__BColor, 0) == -1) {
6089 _v = 0;
6090 PyErr_Clear();
6091 }else {
6092 _v = 1;
6093 }
6094 }
6095 if (_v) {
6096 {
6097 void *ptr;
6098 if (SWIG_ConvertPtr(argv[2], (void **) &ptr, SWIGTYPE_p_XFontStruct, 0) == -1) {
6099 _v = 0;
6100 PyErr_Clear();
6101 }else {
6102 _v = 1;
6103 }
6104 }
6105 if (_v) {
6106 {
6107 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
6108 }
6109 if (_v) {
6110 {
6111 _v = (PyInt_Check(argv[4]) || PyLong_Check(argv[4])) ? 1 : 0;
6112 }
6113 if (_v) {
6114 {
6115 _v = (PyInt_Check(argv[5]) || PyLong_Check(argv[5])) ? 1 : 0;
6116 }
6117 if (_v) {
6118 return _wrap_BGCCacheContext_set__SWIG_0(self,args);
6119 }
6120 }
6121 }
6122 }
6123 }
6124 }
6125 }
6126
6127 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'BGCCacheContext_set'");
6128 return NULL;
6129 }
6130
6131
6132 static PyObject *_wrap_delete_BGCCacheContext(PyObject *self, PyObject *args) {
6133 PyObject *resultobj;
6134 otk::BGCCacheContext *arg1 = (otk::BGCCacheContext *) 0 ;
6135 PyObject * obj0 = 0 ;
6136
6137 if(!PyArg_ParseTuple(args,(char *)"O:delete_BGCCacheContext",&obj0)) goto fail;
6138 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCacheContext,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6139 delete arg1;
6140
6141 Py_INCREF(Py_None); resultobj = Py_None;
6142 return resultobj;
6143 fail:
6144 return NULL;
6145 }
6146
6147
6148 static PyObject * BGCCacheContext_swigregister(PyObject *self, PyObject *args) {
6149 PyObject *obj;
6150 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
6151 SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCacheContext, obj);
6152 Py_INCREF(obj);
6153 return Py_BuildValue((char *)"");
6154 }
6155 static PyObject *_wrap_BGCCacheItem_gc(PyObject *self, PyObject *args) {
6156 PyObject *resultobj;
6157 otk::BGCCacheItem *arg1 = (otk::BGCCacheItem *) 0 ;
6158 GC *result;
6159 PyObject * obj0 = 0 ;
6160
6161 if(!PyArg_ParseTuple(args,(char *)"O:BGCCacheItem_gc",&obj0)) goto fail;
6162 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCacheItem,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6163 {
6164 GC const &_result_ref = ((otk::BGCCacheItem const *)arg1)->gc();
6165 result = (GC *) &_result_ref;
6166 }
6167
6168 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_GC, 0);
6169 return resultobj;
6170 fail:
6171 return NULL;
6172 }
6173
6174
6175 static PyObject *_wrap_delete_BGCCacheItem(PyObject *self, PyObject *args) {
6176 PyObject *resultobj;
6177 otk::BGCCacheItem *arg1 = (otk::BGCCacheItem *) 0 ;
6178 PyObject * obj0 = 0 ;
6179
6180 if(!PyArg_ParseTuple(args,(char *)"O:delete_BGCCacheItem",&obj0)) goto fail;
6181 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCacheItem,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6182 delete arg1;
6183
6184 Py_INCREF(Py_None); resultobj = Py_None;
6185 return resultobj;
6186 fail:
6187 return NULL;
6188 }
6189
6190
6191 static PyObject * BGCCacheItem_swigregister(PyObject *self, PyObject *args) {
6192 PyObject *obj;
6193 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
6194 SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCacheItem, obj);
6195 Py_INCREF(obj);
6196 return Py_BuildValue((char *)"");
6197 }
6198 static PyObject *_wrap_new_BGCCache(PyObject *self, PyObject *args) {
6199 PyObject *resultobj;
6200 unsigned int arg1 ;
6201 otk::BGCCache *result;
6202 PyObject * obj0 = 0 ;
6203
6204 if(!PyArg_ParseTuple(args,(char *)"O:new_BGCCache",&obj0)) goto fail;
6205 arg1 = (unsigned int) PyInt_AsLong(obj0);
6206 if (PyErr_Occurred()) SWIG_fail;
6207 result = (otk::BGCCache *)new otk::BGCCache(arg1);
6208
6209 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BGCCache, 1);
6210 return resultobj;
6211 fail:
6212 return NULL;
6213 }
6214
6215
6216 static PyObject *_wrap_delete_BGCCache(PyObject *self, PyObject *args) {
6217 PyObject *resultobj;
6218 otk::BGCCache *arg1 = (otk::BGCCache *) 0 ;
6219 PyObject * obj0 = 0 ;
6220
6221 if(!PyArg_ParseTuple(args,(char *)"O:delete_BGCCache",&obj0)) goto fail;
6222 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCache,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6223 delete arg1;
6224
6225 Py_INCREF(Py_None); resultobj = Py_None;
6226 return resultobj;
6227 fail:
6228 return NULL;
6229 }
6230
6231
6232 static PyObject *_wrap_BGCCache_purge(PyObject *self, PyObject *args) {
6233 PyObject *resultobj;
6234 otk::BGCCache *arg1 = (otk::BGCCache *) 0 ;
6235 PyObject * obj0 = 0 ;
6236
6237 if(!PyArg_ParseTuple(args,(char *)"O:BGCCache_purge",&obj0)) goto fail;
6238 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCache,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6239 (arg1)->purge();
6240
6241 Py_INCREF(Py_None); resultobj = Py_None;
6242 return resultobj;
6243 fail:
6244 return NULL;
6245 }
6246
6247
6248 static PyObject *_wrap_BGCCache_find(PyObject *self, PyObject *args) {
6249 PyObject *resultobj;
6250 otk::BGCCache *arg1 = (otk::BGCCache *) 0 ;
6251 otk::BColor *arg2 = 0 ;
6252 XFontStruct *arg3 = (XFontStruct *) (XFontStruct *)0 ;
6253 int arg4 = (int) GXcopy ;
6254 int arg5 = (int) ClipByChildren ;
6255 int arg6 = (int) 0 ;
6256 otk::BGCCacheItem *result;
6257 PyObject * obj0 = 0 ;
6258 PyObject * obj1 = 0 ;
6259 PyObject * obj2 = 0 ;
6260
6261 if(!PyArg_ParseTuple(args,(char *)"OO|Oiii:BGCCache_find",&obj0,&obj1,&obj2,&arg4,&arg5,&arg6)) goto fail;
6262 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCache,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6263 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6264 if (arg2 == NULL) {
6265 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
6266 }
6267 if (obj2) {
6268 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_XFontStruct,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6269 }
6270 result = (otk::BGCCacheItem *)(arg1)->find((otk::BColor const &)*arg2,(XFontStruct const *)arg3,arg4,arg5,arg6);
6271
6272 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BGCCacheItem, 0);
6273 return resultobj;
6274 fail:
6275 return NULL;
6276 }
6277
6278
6279 static PyObject *_wrap_BGCCache_release(PyObject *self, PyObject *args) {
6280 PyObject *resultobj;
6281 otk::BGCCache *arg1 = (otk::BGCCache *) 0 ;
6282 otk::BGCCacheItem *arg2 = (otk::BGCCacheItem *) 0 ;
6283 PyObject * obj0 = 0 ;
6284 PyObject * obj1 = 0 ;
6285
6286 if(!PyArg_ParseTuple(args,(char *)"OO:BGCCache_release",&obj0,&obj1)) goto fail;
6287 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCache,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6288 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BGCCacheItem,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6289 (arg1)->release(arg2);
6290
6291 Py_INCREF(Py_None); resultobj = Py_None;
6292 return resultobj;
6293 fail:
6294 return NULL;
6295 }
6296
6297
6298 static PyObject * BGCCache_swigregister(PyObject *self, PyObject *args) {
6299 PyObject *obj;
6300 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
6301 SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCache, obj);
6302 Py_INCREF(obj);
6303 return Py_BuildValue((char *)"");
6304 }
6305 static PyObject *_wrap_new_BPen(PyObject *self, PyObject *args) {
6306 PyObject *resultobj;
6307 otk::BColor *arg1 = 0 ;
6308 XFontStruct *arg2 = (XFontStruct *) (XFontStruct *)0 ;
6309 int arg3 = (int) 0 ;
6310 int arg4 = (int) GXcopy ;
6311 int arg5 = (int) ClipByChildren ;
6312 otk::BPen *result;
6313 PyObject * obj0 = 0 ;
6314 PyObject * obj1 = 0 ;
6315
6316 if(!PyArg_ParseTuple(args,(char *)"O|Oiii:new_BPen",&obj0,&obj1,&arg3,&arg4,&arg5)) goto fail;
6317 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6318 if (arg1 == NULL) {
6319 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
6320 }
6321 if (obj1) {
6322 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XFontStruct,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6323 }
6324 result = (otk::BPen *)new otk::BPen((otk::BColor const &)*arg1,(XFontStruct const *)arg2,arg3,arg4,arg5);
6325
6326 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BPen, 1);
6327 return resultobj;
6328 fail:
6329 return NULL;
6330 }
6331
6332
6333 static PyObject *_wrap_delete_BPen(PyObject *self, PyObject *args) {
6334 PyObject *resultobj;
6335 otk::BPen *arg1 = (otk::BPen *) 0 ;
6336 PyObject * obj0 = 0 ;
6337
6338 if(!PyArg_ParseTuple(args,(char *)"O:delete_BPen",&obj0)) goto fail;
6339 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BPen,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6340 delete arg1;
6341
6342 Py_INCREF(Py_None); resultobj = Py_None;
6343 return resultobj;
6344 fail:
6345 return NULL;
6346 }
6347
6348
6349 static PyObject *_wrap_BPen_gc(PyObject *self, PyObject *args) {
6350 PyObject *resultobj;
6351 otk::BPen *arg1 = (otk::BPen *) 0 ;
6352 GC *result;
6353 PyObject * obj0 = 0 ;
6354
6355 if(!PyArg_ParseTuple(args,(char *)"O:BPen_gc",&obj0)) goto fail;
6356 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BPen,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6357 {
6358 GC const &_result_ref = ((otk::BPen const *)arg1)->gc();
6359 result = (GC *) &_result_ref;
6360 }
6361
6362 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_GC, 0);
6363 return resultobj;
6364 fail:
6365 return NULL;
6366 }
6367
6368
6369 static PyObject * BPen_swigregister(PyObject *self, PyObject *args) {
6370 PyObject *obj;
6371 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
6372 SWIG_TypeClientData(SWIGTYPE_p_otk__BPen, obj);
6373 Py_INCREF(obj);
6374 return Py_BuildValue((char *)"");
6375 }
6376 static PyObject *_wrap_new_BImage(PyObject *self, PyObject *args) {
6377 PyObject *resultobj;
6378 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6379 int arg2 ;
6380 int arg3 ;
6381 otk::BImage *result;
6382 PyObject * obj0 = 0 ;
6383
6384 if(!PyArg_ParseTuple(args,(char *)"Oii:new_BImage",&obj0,&arg2,&arg3)) goto fail;
6385 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6386 result = (otk::BImage *)new otk::BImage(arg1,arg2,arg3);
6387
6388 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BImage, 1);
6389 return resultobj;
6390 fail:
6391 return NULL;
6392 }
6393
6394
6395 static PyObject *_wrap_delete_BImage(PyObject *self, PyObject *args) {
6396 PyObject *resultobj;
6397 otk::BImage *arg1 = (otk::BImage *) 0 ;
6398 PyObject * obj0 = 0 ;
6399
6400 if(!PyArg_ParseTuple(args,(char *)"O:delete_BImage",&obj0)) goto fail;
6401 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImage,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6402 delete arg1;
6403
6404 Py_INCREF(Py_None); resultobj = Py_None;
6405 return resultobj;
6406 fail:
6407 return NULL;
6408 }
6409
6410
6411 static PyObject *_wrap_BImage_render(PyObject *self, PyObject *args) {
6412 PyObject *resultobj;
6413 otk::BImage *arg1 = (otk::BImage *) 0 ;
6414 otk::BTexture *arg2 = 0 ;
6415 Pixmap result;
6416 PyObject * obj0 = 0 ;
6417 PyObject * obj1 = 0 ;
6418
6419 if(!PyArg_ParseTuple(args,(char *)"OO:BImage_render",&obj0,&obj1)) goto fail;
6420 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImage,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6421 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6422 if (arg2 == NULL) {
6423 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
6424 }
6425 result = (arg1)->render((otk::BTexture const &)*arg2);
6426
6427 {
6428 Pixmap * resultptr;
6429 resultptr = new Pixmap((Pixmap &) result);
6430 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Pixmap, 1);
6431 }
6432 return resultobj;
6433 fail:
6434 return NULL;
6435 }
6436
6437
6438 static PyObject * BImage_swigregister(PyObject *self, PyObject *args) {
6439 PyObject *obj;
6440 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
6441 SWIG_TypeClientData(SWIGTYPE_p_otk__BImage, obj);
6442 Py_INCREF(obj);
6443 return Py_BuildValue((char *)"");
6444 }
6445 static PyObject *_wrap_new_BImageControl(PyObject *self, PyObject *args) {
6446 PyObject *resultobj;
6447 otk::OBTimerQueueManager *arg1 = (otk::OBTimerQueueManager *) 0 ;
6448 otk::ScreenInfo *arg2 = (otk::ScreenInfo *) 0 ;
6449 bool arg3 = (bool) False ;
6450 int arg4 = (int) 4 ;
6451 unsigned long arg5 = (unsigned long) 300000l ;
6452 unsigned long arg6 = (unsigned long) 200l ;
6453 otk::BImageControl *result;
6454 PyObject * obj0 = 0 ;
6455 PyObject * obj1 = 0 ;
6456 PyObject * obj2 = 0 ;
6457 PyObject * obj4 = 0 ;
6458 PyObject * obj5 = 0 ;
6459
6460 if(!PyArg_ParseTuple(args,(char *)"OO|OiOO:new_BImageControl",&obj0,&obj1,&obj2,&arg4,&obj4,&obj5)) goto fail;
6461 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimerQueueManager,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6462 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6463 if (obj2) {
6464 arg3 = (bool) PyInt_AsLong(obj2);
6465 if (PyErr_Occurred()) SWIG_fail;
6466 }
6467 if (obj4) {
6468 arg5 = (unsigned long) PyInt_AsLong(obj4);
6469 if (PyErr_Occurred()) SWIG_fail;
6470 }
6471 if (obj5) {
6472 arg6 = (unsigned long) PyInt_AsLong(obj5);
6473 if (PyErr_Occurred()) SWIG_fail;
6474 }
6475 result = (otk::BImageControl *)new otk::BImageControl(arg1,(otk::ScreenInfo const *)arg2,arg3,arg4,arg5,arg6);
6476
6477 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BImageControl, 1);
6478 return resultobj;
6479 fail:
6480 return NULL;
6481 }
6482
6483
6484 static PyObject *_wrap_delete_BImageControl(PyObject *self, PyObject *args) {
6485 PyObject *resultobj;
6486 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6487 PyObject * obj0 = 0 ;
6488
6489 if(!PyArg_ParseTuple(args,(char *)"O:delete_BImageControl",&obj0)) goto fail;
6490 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6491 delete arg1;
6492
6493 Py_INCREF(Py_None); resultobj = Py_None;
6494 return resultobj;
6495 fail:
6496 return NULL;
6497 }
6498
6499
6500 static PyObject *_wrap_BImageControl_doDither(PyObject *self, PyObject *args) {
6501 PyObject *resultobj;
6502 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6503 bool result;
6504 PyObject * obj0 = 0 ;
6505
6506 if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_doDither",&obj0)) goto fail;
6507 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6508 result = (bool)(arg1)->doDither();
6509
6510 resultobj = PyInt_FromLong((long)result);
6511 return resultobj;
6512 fail:
6513 return NULL;
6514 }
6515
6516
6517 static PyObject *_wrap_BImageControl_getScreenInfo(PyObject *self, PyObject *args) {
6518 PyObject *resultobj;
6519 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6520 otk::ScreenInfo *result;
6521 PyObject * obj0 = 0 ;
6522
6523 if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_getScreenInfo",&obj0)) goto fail;
6524 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6525 result = (otk::ScreenInfo *)((otk::BImageControl const *)arg1)->getScreenInfo();
6526
6527 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__ScreenInfo, 0);
6528 return resultobj;
6529 fail:
6530 return NULL;
6531 }
6532
6533
6534 static PyObject *_wrap_BImageControl_getDrawable(PyObject *self, PyObject *args) {
6535 PyObject *resultobj;
6536 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6537 Window result;
6538 PyObject * obj0 = 0 ;
6539
6540 if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_getDrawable",&obj0)) goto fail;
6541 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6542 result = ((otk::BImageControl const *)arg1)->getDrawable();
6543
6544 {
6545 Window * resultptr;
6546 resultptr = new Window((Window &) result);
6547 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Window, 1);
6548 }
6549 return resultobj;
6550 fail:
6551 return NULL;
6552 }
6553
6554
6555 static PyObject *_wrap_BImageControl_getVisual(PyObject *self, PyObject *args) {
6556 PyObject *resultobj;
6557 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6558 Visual *result;
6559 PyObject * obj0 = 0 ;
6560
6561 if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_getVisual",&obj0)) goto fail;
6562 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6563 result = (Visual *)(arg1)->getVisual();
6564
6565 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_Visual, 0);
6566 return resultobj;
6567 fail:
6568 return NULL;
6569 }
6570
6571
6572 static PyObject *_wrap_BImageControl_getBitsPerPixel(PyObject *self, PyObject *args) {
6573 PyObject *resultobj;
6574 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6575 int result;
6576 PyObject * obj0 = 0 ;
6577
6578 if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_getBitsPerPixel",&obj0)) goto fail;
6579 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6580 result = (int)((otk::BImageControl const *)arg1)->getBitsPerPixel();
6581
6582 resultobj = PyInt_FromLong((long)result);
6583 return resultobj;
6584 fail:
6585 return NULL;
6586 }
6587
6588
6589 static PyObject *_wrap_BImageControl_getDepth(PyObject *self, PyObject *args) {
6590 PyObject *resultobj;
6591 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6592 int result;
6593 PyObject * obj0 = 0 ;
6594
6595 if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_getDepth",&obj0)) goto fail;
6596 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6597 result = (int)((otk::BImageControl const *)arg1)->getDepth();
6598
6599 resultobj = PyInt_FromLong((long)result);
6600 return resultobj;
6601 fail:
6602 return NULL;
6603 }
6604
6605
6606 static PyObject *_wrap_BImageControl_getColorsPerChannel(PyObject *self, PyObject *args) {
6607 PyObject *resultobj;
6608 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6609 int result;
6610 PyObject * obj0 = 0 ;
6611
6612 if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_getColorsPerChannel",&obj0)) goto fail;
6613 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6614 result = (int)((otk::BImageControl const *)arg1)->getColorsPerChannel();
6615
6616 resultobj = PyInt_FromLong((long)result);
6617 return resultobj;
6618 fail:
6619 return NULL;
6620 }
6621
6622
6623 static PyObject *_wrap_BImageControl_getSqrt(PyObject *self, PyObject *args) {
6624 PyObject *resultobj;
6625 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6626 unsigned int arg2 ;
6627 unsigned long result;
6628 PyObject * obj0 = 0 ;
6629 PyObject * obj1 = 0 ;
6630
6631 if(!PyArg_ParseTuple(args,(char *)"OO:BImageControl_getSqrt",&obj0,&obj1)) goto fail;
6632 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6633 arg2 = (unsigned int) PyInt_AsLong(obj1);
6634 if (PyErr_Occurred()) SWIG_fail;
6635 result = (unsigned long)(arg1)->getSqrt(arg2);
6636
6637 resultobj = PyInt_FromLong((long)result);
6638 return resultobj;
6639 fail:
6640 return NULL;
6641 }
6642
6643
6644 static PyObject *_wrap_BImageControl_renderImage(PyObject *self, PyObject *args) {
6645 PyObject *resultobj;
6646 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6647 unsigned int arg2 ;
6648 unsigned int arg3 ;
6649 otk::BTexture *arg4 = 0 ;
6650 Pixmap result;
6651 PyObject * obj0 = 0 ;
6652 PyObject * obj1 = 0 ;
6653 PyObject * obj2 = 0 ;
6654 PyObject * obj3 = 0 ;
6655
6656 if(!PyArg_ParseTuple(args,(char *)"OOOO:BImageControl_renderImage",&obj0,&obj1,&obj2,&obj3)) goto fail;
6657 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6658 arg2 = (unsigned int) PyInt_AsLong(obj1);
6659 if (PyErr_Occurred()) SWIG_fail;
6660 arg3 = (unsigned int) PyInt_AsLong(obj2);
6661 if (PyErr_Occurred()) SWIG_fail;
6662 if ((SWIG_ConvertPtr(obj3,(void **) &arg4, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6663 if (arg4 == NULL) {
6664 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
6665 }
6666 result = (arg1)->renderImage(arg2,arg3,(otk::BTexture const &)*arg4);
6667
6668 {
6669 Pixmap * resultptr;
6670 resultptr = new Pixmap((Pixmap &) result);
6671 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Pixmap, 1);
6672 }
6673 return resultobj;
6674 fail:
6675 return NULL;
6676 }
6677
6678
6679 static PyObject *_wrap_BImageControl_installRootColormap(PyObject *self, PyObject *args) {
6680 PyObject *resultobj;
6681 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6682 PyObject * obj0 = 0 ;
6683
6684 if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_installRootColormap",&obj0)) goto fail;
6685 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6686 (arg1)->installRootColormap();
6687
6688 Py_INCREF(Py_None); resultobj = Py_None;
6689 return resultobj;
6690 fail:
6691 return NULL;
6692 }
6693
6694
6695 static PyObject *_wrap_BImageControl_removeImage(PyObject *self, PyObject *args) {
6696 PyObject *resultobj;
6697 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6698 Pixmap arg2 ;
6699 Pixmap *argp2 ;
6700 PyObject * obj0 = 0 ;
6701 PyObject * obj1 = 0 ;
6702
6703 if(!PyArg_ParseTuple(args,(char *)"OO:BImageControl_removeImage",&obj0,&obj1)) goto fail;
6704 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6705 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Pixmap,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
6706 arg2 = *argp2;
6707 (arg1)->removeImage(arg2);
6708
6709 Py_INCREF(Py_None); resultobj = Py_None;
6710 return resultobj;
6711 fail:
6712 return NULL;
6713 }
6714
6715
6716 static PyObject *_wrap_BImageControl_getColorTables(PyObject *self, PyObject *args) {
6717 PyObject *resultobj;
6718 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6719 unsigned char **arg2 = (unsigned char **) 0 ;
6720 unsigned char **arg3 = (unsigned char **) 0 ;
6721 unsigned char **arg4 = (unsigned char **) 0 ;
6722 int *arg5 = (int *) 0 ;
6723 int *arg6 = (int *) 0 ;
6724 int *arg7 = (int *) 0 ;
6725 int *arg8 = (int *) 0 ;
6726 int *arg9 = (int *) 0 ;
6727 int *arg10 = (int *) 0 ;
6728 PyObject * obj0 = 0 ;
6729 PyObject * obj1 = 0 ;
6730 PyObject * obj2 = 0 ;
6731 PyObject * obj3 = 0 ;
6732 PyObject * obj4 = 0 ;
6733 PyObject * obj5 = 0 ;
6734 PyObject * obj6 = 0 ;
6735 PyObject * obj7 = 0 ;
6736 PyObject * obj8 = 0 ;
6737 PyObject * obj9 = 0 ;
6738
6739 if(!PyArg_ParseTuple(args,(char *)"OOOOOOOOOO:BImageControl_getColorTables",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail;
6740 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6741 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_p_unsigned_char,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6742 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_p_unsigned_char,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6743 if ((SWIG_ConvertPtr(obj3,(void **) &arg4, SWIGTYPE_p_p_unsigned_char,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6744 if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6745 if ((SWIG_ConvertPtr(obj5,(void **) &arg6, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6746 if ((SWIG_ConvertPtr(obj6,(void **) &arg7, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6747 if ((SWIG_ConvertPtr(obj7,(void **) &arg8, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6748 if ((SWIG_ConvertPtr(obj8,(void **) &arg9, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6749 if ((SWIG_ConvertPtr(obj9,(void **) &arg10, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6750 (arg1)->getColorTables(arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10);
6751
6752 Py_INCREF(Py_None); resultobj = Py_None;
6753 return resultobj;
6754 fail:
6755 return NULL;
6756 }
6757
6758
6759 static PyObject *_wrap_BImageControl_getXColorTable(PyObject *self, PyObject *args) {
6760 PyObject *resultobj;
6761 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6762 XColor **arg2 = (XColor **) 0 ;
6763 int *arg3 = (int *) 0 ;
6764 PyObject * obj0 = 0 ;
6765 PyObject * obj1 = 0 ;
6766 PyObject * obj2 = 0 ;
6767
6768 if(!PyArg_ParseTuple(args,(char *)"OOO:BImageControl_getXColorTable",&obj0,&obj1,&obj2)) goto fail;
6769 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6770 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_p_XColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6771 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6772 (arg1)->getXColorTable(arg2,arg3);
6773
6774 Py_INCREF(Py_None); resultobj = Py_None;
6775 return resultobj;
6776 fail:
6777 return NULL;
6778 }
6779
6780
6781 static PyObject *_wrap_BImageControl_getGradientBuffers(PyObject *self, PyObject *args) {
6782 PyObject *resultobj;
6783 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6784 unsigned int arg2 ;
6785 unsigned int arg3 ;
6786 unsigned int **arg4 = (unsigned int **) 0 ;
6787 unsigned int **arg5 = (unsigned int **) 0 ;
6788 PyObject * obj0 = 0 ;
6789 PyObject * obj1 = 0 ;
6790 PyObject * obj2 = 0 ;
6791 PyObject * obj3 = 0 ;
6792 PyObject * obj4 = 0 ;
6793
6794 if(!PyArg_ParseTuple(args,(char *)"OOOOO:BImageControl_getGradientBuffers",&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
6795 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6796 arg2 = (unsigned int) PyInt_AsLong(obj1);
6797 if (PyErr_Occurred()) SWIG_fail;
6798 arg3 = (unsigned int) PyInt_AsLong(obj2);
6799 if (PyErr_Occurred()) SWIG_fail;
6800 if ((SWIG_ConvertPtr(obj3,(void **) &arg4, SWIGTYPE_p_p_unsigned_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6801 if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_p_unsigned_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6802 (arg1)->getGradientBuffers(arg2,arg3,arg4,arg5);
6803
6804 Py_INCREF(Py_None); resultobj = Py_None;
6805 return resultobj;
6806 fail:
6807 return NULL;
6808 }
6809
6810
6811 static PyObject *_wrap_BImageControl_setDither(PyObject *self, PyObject *args) {
6812 PyObject *resultobj;
6813 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6814 bool arg2 ;
6815 PyObject * obj0 = 0 ;
6816 PyObject * obj1 = 0 ;
6817
6818 if(!PyArg_ParseTuple(args,(char *)"OO:BImageControl_setDither",&obj0,&obj1)) goto fail;
6819 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6820 arg2 = (bool) PyInt_AsLong(obj1);
6821 if (PyErr_Occurred()) SWIG_fail;
6822 (arg1)->setDither(arg2);
6823
6824 Py_INCREF(Py_None); resultobj = Py_None;
6825 return resultobj;
6826 fail:
6827 return NULL;
6828 }
6829
6830
6831 static PyObject *_wrap_BImageControl_setColorsPerChannel(PyObject *self, PyObject *args) {
6832 PyObject *resultobj;
6833 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6834 int arg2 ;
6835 PyObject * obj0 = 0 ;
6836
6837 if(!PyArg_ParseTuple(args,(char *)"Oi:BImageControl_setColorsPerChannel",&obj0,&arg2)) goto fail;
6838 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6839 (arg1)->setColorsPerChannel(arg2);
6840
6841 Py_INCREF(Py_None); resultobj = Py_None;
6842 return resultobj;
6843 fail:
6844 return NULL;
6845 }
6846
6847
6848 static PyObject *_wrap_BImageControl_timeout(PyObject *self, PyObject *args) {
6849 PyObject *resultobj;
6850 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6851 PyObject * obj0 = 0 ;
6852
6853 if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_timeout",&obj0)) goto fail;
6854 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6855 otk::BImageControl::timeout(arg1);
6856
6857 Py_INCREF(Py_None); resultobj = Py_None;
6858 return resultobj;
6859 fail:
6860 return NULL;
6861 }
6862
6863
6864 static PyObject * BImageControl_swigregister(PyObject *self, PyObject *args) {
6865 PyObject *obj;
6866 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
6867 SWIG_TypeClientData(SWIGTYPE_p_otk__BImageControl, obj);
6868 Py_INCREF(obj);
6869 return Py_BuildValue((char *)"");
6870 }
6871 static PyObject *_wrap_new_Point__SWIG_0(PyObject *self, PyObject *args) {
6872 PyObject *resultobj;
6873 otk::Point *result;
6874
6875 if(!PyArg_ParseTuple(args,(char *)":new_Point")) goto fail;
6876 result = (otk::Point *)new otk::Point();
6877
6878 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Point, 1);
6879 return resultobj;
6880 fail:
6881 return NULL;
6882 }
6883
6884
6885 static PyObject *_wrap_new_Point__SWIG_1(PyObject *self, PyObject *args) {
6886 PyObject *resultobj;
6887 int arg1 ;
6888 int arg2 ;
6889 otk::Point *result;
6890
6891 if(!PyArg_ParseTuple(args,(char *)"ii:new_Point",&arg1,&arg2)) goto fail;
6892 result = (otk::Point *)new otk::Point(arg1,arg2);
6893
6894 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Point, 1);
6895 return resultobj;
6896 fail:
6897 return NULL;
6898 }
6899
6900
6901 static PyObject *_wrap_new_Point(PyObject *self, PyObject *args) {
6902 int argc;
6903 PyObject *argv[3];
6904 int ii;
6905
6906 argc = PyObject_Length(args);
6907 for (ii = 0; (ii < argc) && (ii < 2); ii++) {
6908 argv[ii] = PyTuple_GetItem(args,ii);
6909 }
6910 if (argc == 0) {
6911 return _wrap_new_Point__SWIG_0(self,args);
6912 }
6913 if (argc == 2) {
6914 int _v;
6915 {
6916 _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0;
6917 }
6918 if (_v) {
6919 {
6920 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
6921 }
6922 if (_v) {
6923 return _wrap_new_Point__SWIG_1(self,args);
6924 }
6925 }
6926 }
6927
6928 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_Point'");
6929 return NULL;
6930 }
6931
6932
6933 static PyObject *_wrap_Point_setX(PyObject *self, PyObject *args) {
6934 PyObject *resultobj;
6935 otk::Point *arg1 = (otk::Point *) 0 ;
6936 int arg2 ;
6937 PyObject * obj0 = 0 ;
6938
6939 if(!PyArg_ParseTuple(args,(char *)"Oi:Point_setX",&obj0,&arg2)) goto fail;
6940 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6941 (arg1)->setX(arg2);
6942
6943 Py_INCREF(Py_None); resultobj = Py_None;
6944 return resultobj;
6945 fail:
6946 return NULL;
6947 }
6948
6949
6950 static PyObject *_wrap_Point_x(PyObject *self, PyObject *args) {
6951 PyObject *resultobj;
6952 otk::Point *arg1 = (otk::Point *) 0 ;
6953 int result;
6954 PyObject * obj0 = 0 ;
6955
6956 if(!PyArg_ParseTuple(args,(char *)"O:Point_x",&obj0)) goto fail;
6957 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6958 result = (int)((otk::Point const *)arg1)->x();
6959
6960 resultobj = PyInt_FromLong((long)result);
6961 return resultobj;
6962 fail:
6963 return NULL;
6964 }
6965
6966
6967 static PyObject *_wrap_Point_setY(PyObject *self, PyObject *args) {
6968 PyObject *resultobj;
6969 otk::Point *arg1 = (otk::Point *) 0 ;
6970 int arg2 ;
6971 PyObject * obj0 = 0 ;
6972
6973 if(!PyArg_ParseTuple(args,(char *)"Oi:Point_setY",&obj0,&arg2)) goto fail;
6974 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6975 (arg1)->setY(arg2);
6976
6977 Py_INCREF(Py_None); resultobj = Py_None;
6978 return resultobj;
6979 fail:
6980 return NULL;
6981 }
6982
6983
6984 static PyObject *_wrap_Point_y(PyObject *self, PyObject *args) {
6985 PyObject *resultobj;
6986 otk::Point *arg1 = (otk::Point *) 0 ;
6987 int result;
6988 PyObject * obj0 = 0 ;
6989
6990 if(!PyArg_ParseTuple(args,(char *)"O:Point_y",&obj0)) goto fail;
6991 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6992 result = (int)((otk::Point const *)arg1)->y();
6993
6994 resultobj = PyInt_FromLong((long)result);
6995 return resultobj;
6996 fail:
6997 return NULL;
6998 }
6999
7000
7001 static PyObject *_wrap_Point_setPoint(PyObject *self, PyObject *args) {
7002 PyObject *resultobj;
7003 otk::Point *arg1 = (otk::Point *) 0 ;
7004 int arg2 ;
7005 int arg3 ;
7006 PyObject * obj0 = 0 ;
7007
7008 if(!PyArg_ParseTuple(args,(char *)"Oii:Point_setPoint",&obj0,&arg2,&arg3)) goto fail;
7009 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7010 (arg1)->setPoint(arg2,arg3);
7011
7012 Py_INCREF(Py_None); resultobj = Py_None;
7013 return resultobj;
7014 fail:
7015 return NULL;
7016 }
7017
7018
7019 static PyObject *_wrap_delete_Point(PyObject *self, PyObject *args) {
7020 PyObject *resultobj;
7021 otk::Point *arg1 = (otk::Point *) 0 ;
7022 PyObject * obj0 = 0 ;
7023
7024 if(!PyArg_ParseTuple(args,(char *)"O:delete_Point",&obj0)) goto fail;
7025 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7026 delete arg1;
7027
7028 Py_INCREF(Py_None); resultobj = Py_None;
7029 return resultobj;
7030 fail:
7031 return NULL;
7032 }
7033
7034
7035 static PyObject * Point_swigregister(PyObject *self, PyObject *args) {
7036 PyObject *obj;
7037 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
7038 SWIG_TypeClientData(SWIGTYPE_p_otk__Point, obj);
7039 Py_INCREF(obj);
7040 return Py_BuildValue((char *)"");
7041 }
7042 static PyObject *_wrap_new_OBProperty(PyObject *self, PyObject *args) {
7043 PyObject *resultobj;
7044 otk::OBProperty *result;
7045
7046 if(!PyArg_ParseTuple(args,(char *)":new_OBProperty")) goto fail;
7047 result = (otk::OBProperty *)new otk::OBProperty();
7048
7049 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OBProperty, 1);
7050 return resultobj;
7051 fail:
7052 return NULL;
7053 }
7054
7055
7056 static PyObject *_wrap_delete_OBProperty(PyObject *self, PyObject *args) {
7057 PyObject *resultobj;
7058 otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7059 PyObject * obj0 = 0 ;
7060
7061 if(!PyArg_ParseTuple(args,(char *)"O:delete_OBProperty",&obj0)) goto fail;
7062 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7063 delete arg1;
7064
7065 Py_INCREF(Py_None); resultobj = Py_None;
7066 return resultobj;
7067 fail:
7068 return NULL;
7069 }
7070
7071
7072 static PyObject *_wrap_OBProperty_set__SWIG_0(PyObject *self, PyObject *args) {
7073 PyObject *resultobj;
7074 otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7075 Window arg2 ;
7076 int arg3 ;
7077 int arg4 ;
7078 unsigned long arg5 ;
7079 Window *argp2 ;
7080 PyObject * obj0 = 0 ;
7081 PyObject * obj1 = 0 ;
7082 PyObject * obj4 = 0 ;
7083
7084 if(!PyArg_ParseTuple(args,(char *)"OOiiO:OBProperty_set",&obj0,&obj1,&arg3,&arg4,&obj4)) goto fail;
7085 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7086 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7087 arg2 = *argp2;
7088 arg5 = (unsigned long) PyInt_AsLong(obj4);
7089 if (PyErr_Occurred()) SWIG_fail;
7090 ((otk::OBProperty const *)arg1)->set(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::Atoms )arg4,arg5);
7091
7092 Py_INCREF(Py_None); resultobj = Py_None;
7093 return resultobj;
7094 fail:
7095 return NULL;
7096 }
7097
7098
7099 static PyObject *_wrap_OBProperty_set__SWIG_1(PyObject *self, PyObject *args) {
7100 PyObject *resultobj;
7101 otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7102 Window arg2 ;
7103 int arg3 ;
7104 int arg4 ;
7105 unsigned long *arg5 ;
7106 int arg6 ;
7107 Window *argp2 ;
7108 PyObject * obj0 = 0 ;
7109 PyObject * obj1 = 0 ;
7110 PyObject * obj4 = 0 ;
7111
7112 if(!PyArg_ParseTuple(args,(char *)"OOiiOi:OBProperty_set",&obj0,&obj1,&arg3,&arg4,&obj4,&arg6)) goto fail;
7113 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7114 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7115 arg2 = *argp2;
7116 if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_unsigned_long,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7117 ((otk::OBProperty const *)arg1)->set(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::Atoms )arg4,arg5,arg6);
7118
7119 Py_INCREF(Py_None); resultobj = Py_None;
7120 return resultobj;
7121 fail:
7122 return NULL;
7123 }
7124
7125
7126 static PyObject *_wrap_OBProperty_set__SWIG_2(PyObject *self, PyObject *args) {
7127 PyObject *resultobj;
7128 otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7129 Window arg2 ;
7130 int arg3 ;
7131 int arg4 ;
7132 std::string *arg5 = 0 ;
7133 Window *argp2 ;
7134 std::string temp5 ;
7135 PyObject * obj0 = 0 ;
7136 PyObject * obj1 = 0 ;
7137 PyObject * obj4 = 0 ;
7138
7139 if(!PyArg_ParseTuple(args,(char *)"OOiiO:OBProperty_set",&obj0,&obj1,&arg3,&arg4,&obj4)) goto fail;
7140 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7141 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7142 arg2 = *argp2;
7143 {
7144 if (PyString_Check(obj4)) {
7145 temp5 = std::string(PyString_AsString(obj4));
7146 arg5 = &temp5;
7147 }else {
7148 SWIG_exception(SWIG_TypeError, "string expected");
7149 }
7150 }
7151 ((otk::OBProperty const *)arg1)->set(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::StringType )arg4,(std::string const &)*arg5);
7152
7153 Py_INCREF(Py_None); resultobj = Py_None;
7154 return resultobj;
7155 fail:
7156 return NULL;
7157 }
7158
7159
7160 static PyObject *_wrap_OBProperty_set__SWIG_3(PyObject *self, PyObject *args) {
7161 PyObject *resultobj;
7162 otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7163 Window arg2 ;
7164 int arg3 ;
7165 int arg4 ;
7166 otk::OBProperty::StringVect *arg5 = 0 ;
7167 Window *argp2 ;
7168 PyObject * obj0 = 0 ;
7169 PyObject * obj1 = 0 ;
7170 PyObject * obj4 = 0 ;
7171
7172 if(!PyArg_ParseTuple(args,(char *)"OOiiO:OBProperty_set",&obj0,&obj1,&arg3,&arg4,&obj4)) goto fail;
7173 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7174 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7175 arg2 = *argp2;
7176 if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_otk__OBProperty__StringVect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7177 if (arg5 == NULL) {
7178 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
7179 }
7180 ((otk::OBProperty const *)arg1)->set(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::StringType )arg4,(otk::OBProperty::StringVect const &)*arg5);
7181
7182 Py_INCREF(Py_None); resultobj = Py_None;
7183 return resultobj;
7184 fail:
7185 return NULL;
7186 }
7187
7188
7189 static PyObject *_wrap_OBProperty_set(PyObject *self, PyObject *args) {
7190 int argc;
7191 PyObject *argv[7];
7192 int ii;
7193
7194 argc = PyObject_Length(args);
7195 for (ii = 0; (ii < argc) && (ii < 6); ii++) {
7196 argv[ii] = PyTuple_GetItem(args,ii);
7197 }
7198 if (argc == 5) {
7199 int _v;
7200 {
7201 void *ptr;
7202 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7203 _v = 0;
7204 PyErr_Clear();
7205 }else {
7206 _v = 1;
7207 }
7208 }
7209 if (_v) {
7210 {
7211 void *ptr;
7212 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7213 _v = 0;
7214 PyErr_Clear();
7215 }else {
7216 _v = 1;
7217 }
7218 }
7219 if (_v) {
7220 {
7221 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7222 }
7223 if (_v) {
7224 {
7225 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7226 }
7227 if (_v) {
7228 {
7229 void *ptr;
7230 if (SWIG_ConvertPtr(argv[4], (void **) &ptr, SWIGTYPE_p_otk__OBProperty__StringVect, 0) == -1) {
7231 _v = 0;
7232 PyErr_Clear();
7233 }else {
7234 _v = 1;
7235 }
7236 }
7237 if (_v) {
7238 return _wrap_OBProperty_set__SWIG_3(self,args);
7239 }
7240 }
7241 }
7242 }
7243 }
7244 }
7245 if (argc == 5) {
7246 int _v;
7247 {
7248 void *ptr;
7249 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7250 _v = 0;
7251 PyErr_Clear();
7252 }else {
7253 _v = 1;
7254 }
7255 }
7256 if (_v) {
7257 {
7258 void *ptr;
7259 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7260 _v = 0;
7261 PyErr_Clear();
7262 }else {
7263 _v = 1;
7264 }
7265 }
7266 if (_v) {
7267 {
7268 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7269 }
7270 if (_v) {
7271 {
7272 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7273 }
7274 if (_v) {
7275 {
7276 _v = (PyInt_Check(argv[4]) || PyLong_Check(argv[4])) ? 1 : 0;
7277 }
7278 if (_v) {
7279 return _wrap_OBProperty_set__SWIG_0(self,args);
7280 }
7281 }
7282 }
7283 }
7284 }
7285 }
7286 if (argc == 5) {
7287 int _v;
7288 {
7289 void *ptr;
7290 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7291 _v = 0;
7292 PyErr_Clear();
7293 }else {
7294 _v = 1;
7295 }
7296 }
7297 if (_v) {
7298 {
7299 void *ptr;
7300 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7301 _v = 0;
7302 PyErr_Clear();
7303 }else {
7304 _v = 1;
7305 }
7306 }
7307 if (_v) {
7308 {
7309 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7310 }
7311 if (_v) {
7312 {
7313 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7314 }
7315 if (_v) {
7316 {
7317 _v = PyString_Check(argv[4]) ? 1 : 0;
7318 }
7319 if (_v) {
7320 return _wrap_OBProperty_set__SWIG_2(self,args);
7321 }
7322 }
7323 }
7324 }
7325 }
7326 }
7327 if (argc == 6) {
7328 int _v;
7329 {
7330 void *ptr;
7331 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7332 _v = 0;
7333 PyErr_Clear();
7334 }else {
7335 _v = 1;
7336 }
7337 }
7338 if (_v) {
7339 {
7340 void *ptr;
7341 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7342 _v = 0;
7343 PyErr_Clear();
7344 }else {
7345 _v = 1;
7346 }
7347 }
7348 if (_v) {
7349 {
7350 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7351 }
7352 if (_v) {
7353 {
7354 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7355 }
7356 if (_v) {
7357 {
7358 void *ptr;
7359 if (SWIG_ConvertPtr(argv[4], (void **) &ptr, SWIGTYPE_p_unsigned_long, 0) == -1) {
7360 _v = 0;
7361 PyErr_Clear();
7362 }else {
7363 _v = 1;
7364 }
7365 }
7366 if (_v) {
7367 {
7368 _v = (PyInt_Check(argv[5]) || PyLong_Check(argv[5])) ? 1 : 0;
7369 }
7370 if (_v) {
7371 return _wrap_OBProperty_set__SWIG_1(self,args);
7372 }
7373 }
7374 }
7375 }
7376 }
7377 }
7378 }
7379
7380 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'OBProperty_set'");
7381 return NULL;
7382 }
7383
7384
7385 static PyObject *_wrap_OBProperty_get__SWIG_0(PyObject *self, PyObject *args) {
7386 PyObject *resultobj;
7387 otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7388 Window arg2 ;
7389 int arg3 ;
7390 int arg4 ;
7391 unsigned long *arg5 = (unsigned long *) 0 ;
7392 unsigned long **arg6 = (unsigned long **) 0 ;
7393 bool result;
7394 Window *argp2 ;
7395 PyObject * obj0 = 0 ;
7396 PyObject * obj1 = 0 ;
7397 PyObject * obj4 = 0 ;
7398 PyObject * obj5 = 0 ;
7399
7400 if(!PyArg_ParseTuple(args,(char *)"OOiiOO:OBProperty_get",&obj0,&obj1,&arg3,&arg4,&obj4,&obj5)) goto fail;
7401 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7402 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7403 arg2 = *argp2;
7404 if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_unsigned_long,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7405 if ((SWIG_ConvertPtr(obj5,(void **) &arg6, SWIGTYPE_p_p_unsigned_long,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7406 result = (bool)((otk::OBProperty const *)arg1)->get(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::Atoms )arg4,arg5,arg6);
7407
7408 resultobj = PyInt_FromLong((long)result);
7409 return resultobj;
7410 fail:
7411 return NULL;
7412 }
7413
7414
7415 static PyObject *_wrap_OBProperty_get__SWIG_1(PyObject *self, PyObject *args) {
7416 PyObject *resultobj;
7417 otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7418 Window arg2 ;
7419 int arg3 ;
7420 int arg4 ;
7421 unsigned long *arg5 = (unsigned long *) 0 ;
7422 bool result;
7423 Window *argp2 ;
7424 PyObject * obj0 = 0 ;
7425 PyObject * obj1 = 0 ;
7426 PyObject * obj4 = 0 ;
7427
7428 if(!PyArg_ParseTuple(args,(char *)"OOiiO:OBProperty_get",&obj0,&obj1,&arg3,&arg4,&obj4)) goto fail;
7429 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7430 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7431 arg2 = *argp2;
7432 if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_unsigned_long,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7433 result = (bool)((otk::OBProperty const *)arg1)->get(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::Atoms )arg4,arg5);
7434
7435 resultobj = PyInt_FromLong((long)result);
7436 return resultobj;
7437 fail:
7438 return NULL;
7439 }
7440
7441
7442 static PyObject *_wrap_OBProperty_get__SWIG_2(PyObject *self, PyObject *args) {
7443 PyObject *resultobj;
7444 otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7445 Window arg2 ;
7446 int arg3 ;
7447 int arg4 ;
7448 std::string *arg5 = (std::string *) 0 ;
7449 bool result;
7450 Window *argp2 ;
7451 PyObject * obj0 = 0 ;
7452 PyObject * obj1 = 0 ;
7453 PyObject * obj4 = 0 ;
7454
7455 if(!PyArg_ParseTuple(args,(char *)"OOiiO:OBProperty_get",&obj0,&obj1,&arg3,&arg4,&obj4)) goto fail;
7456 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7457 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7458 arg2 = *argp2;
7459 if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_std__string,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7460 result = (bool)((otk::OBProperty const *)arg1)->get(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::StringType )arg4,arg5);
7461
7462 resultobj = PyInt_FromLong((long)result);
7463 return resultobj;
7464 fail:
7465 return NULL;
7466 }
7467
7468
7469 static PyObject *_wrap_OBProperty_get__SWIG_3(PyObject *self, PyObject *args) {
7470 PyObject *resultobj;
7471 otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7472 Window arg2 ;
7473 int arg3 ;
7474 int arg4 ;
7475 unsigned long *arg5 = (unsigned long *) 0 ;
7476 otk::OBProperty::StringVect *arg6 = (otk::OBProperty::StringVect *) 0 ;
7477 bool result;
7478 Window *argp2 ;
7479 PyObject * obj0 = 0 ;
7480 PyObject * obj1 = 0 ;
7481 PyObject * obj4 = 0 ;
7482 PyObject * obj5 = 0 ;
7483
7484 if(!PyArg_ParseTuple(args,(char *)"OOiiOO:OBProperty_get",&obj0,&obj1,&arg3,&arg4,&obj4,&obj5)) goto fail;
7485 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7486 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7487 arg2 = *argp2;
7488 if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_unsigned_long,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7489 if ((SWIG_ConvertPtr(obj5,(void **) &arg6, SWIGTYPE_p_otk__OBProperty__StringVect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7490 result = (bool)((otk::OBProperty const *)arg1)->get(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::StringType )arg4,arg5,arg6);
7491
7492 resultobj = PyInt_FromLong((long)result);
7493 return resultobj;
7494 fail:
7495 return NULL;
7496 }
7497
7498
7499 static PyObject *_wrap_OBProperty_get(PyObject *self, PyObject *args) {
7500 int argc;
7501 PyObject *argv[7];
7502 int ii;
7503
7504 argc = PyObject_Length(args);
7505 for (ii = 0; (ii < argc) && (ii < 6); ii++) {
7506 argv[ii] = PyTuple_GetItem(args,ii);
7507 }
7508 if (argc == 5) {
7509 int _v;
7510 {
7511 void *ptr;
7512 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7513 _v = 0;
7514 PyErr_Clear();
7515 }else {
7516 _v = 1;
7517 }
7518 }
7519 if (_v) {
7520 {
7521 void *ptr;
7522 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7523 _v = 0;
7524 PyErr_Clear();
7525 }else {
7526 _v = 1;
7527 }
7528 }
7529 if (_v) {
7530 {
7531 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7532 }
7533 if (_v) {
7534 {
7535 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7536 }
7537 if (_v) {
7538 {
7539 void *ptr;
7540 if (SWIG_ConvertPtr(argv[4], (void **) &ptr, SWIGTYPE_p_unsigned_long, 0) == -1) {
7541 _v = 0;
7542 PyErr_Clear();
7543 }else {
7544 _v = 1;
7545 }
7546 }
7547 if (_v) {
7548 return _wrap_OBProperty_get__SWIG_1(self,args);
7549 }
7550 }
7551 }
7552 }
7553 }
7554 }
7555 if (argc == 5) {
7556 int _v;
7557 {
7558 void *ptr;
7559 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7560 _v = 0;
7561 PyErr_Clear();
7562 }else {
7563 _v = 1;
7564 }
7565 }
7566 if (_v) {
7567 {
7568 void *ptr;
7569 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7570 _v = 0;
7571 PyErr_Clear();
7572 }else {
7573 _v = 1;
7574 }
7575 }
7576 if (_v) {
7577 {
7578 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7579 }
7580 if (_v) {
7581 {
7582 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7583 }
7584 if (_v) {
7585 {
7586 void *ptr;
7587 if (SWIG_ConvertPtr(argv[4], (void **) &ptr, SWIGTYPE_p_std__string, 0) == -1) {
7588 _v = 0;
7589 PyErr_Clear();
7590 }else {
7591 _v = 1;
7592 }
7593 }
7594 if (_v) {
7595 return _wrap_OBProperty_get__SWIG_2(self,args);
7596 }
7597 }
7598 }
7599 }
7600 }
7601 }
7602 if (argc == 6) {
7603 int _v;
7604 {
7605 void *ptr;
7606 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7607 _v = 0;
7608 PyErr_Clear();
7609 }else {
7610 _v = 1;
7611 }
7612 }
7613 if (_v) {
7614 {
7615 void *ptr;
7616 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7617 _v = 0;
7618 PyErr_Clear();
7619 }else {
7620 _v = 1;
7621 }
7622 }
7623 if (_v) {
7624 {
7625 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7626 }
7627 if (_v) {
7628 {
7629 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7630 }
7631 if (_v) {
7632 {
7633 void *ptr;
7634 if (SWIG_ConvertPtr(argv[4], (void **) &ptr, SWIGTYPE_p_unsigned_long, 0) == -1) {
7635 _v = 0;
7636 PyErr_Clear();
7637 }else {
7638 _v = 1;
7639 }
7640 }
7641 if (_v) {
7642 {
7643 void *ptr;
7644 if (SWIG_ConvertPtr(argv[5], (void **) &ptr, SWIGTYPE_p_p_unsigned_long, 0) == -1) {
7645 _v = 0;
7646 PyErr_Clear();
7647 }else {
7648 _v = 1;
7649 }
7650 }
7651 if (_v) {
7652 return _wrap_OBProperty_get__SWIG_0(self,args);
7653 }
7654 }
7655 }
7656 }
7657 }
7658 }
7659 }
7660 if (argc == 6) {
7661 int _v;
7662 {
7663 void *ptr;
7664 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7665 _v = 0;
7666 PyErr_Clear();
7667 }else {
7668 _v = 1;
7669 }
7670 }
7671 if (_v) {
7672 {
7673 void *ptr;
7674 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7675 _v = 0;
7676 PyErr_Clear();
7677 }else {
7678 _v = 1;
7679 }
7680 }
7681 if (_v) {
7682 {
7683 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7684 }
7685 if (_v) {
7686 {
7687 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7688 }
7689 if (_v) {
7690 {
7691 void *ptr;
7692 if (SWIG_ConvertPtr(argv[4], (void **) &ptr, SWIGTYPE_p_unsigned_long, 0) == -1) {
7693 _v = 0;
7694 PyErr_Clear();
7695 }else {
7696 _v = 1;
7697 }
7698 }
7699 if (_v) {
7700 {
7701 void *ptr;
7702 if (SWIG_ConvertPtr(argv[5], (void **) &ptr, SWIGTYPE_p_otk__OBProperty__StringVect, 0) == -1) {
7703 _v = 0;
7704 PyErr_Clear();
7705 }else {
7706 _v = 1;
7707 }
7708 }
7709 if (_v) {
7710 return _wrap_OBProperty_get__SWIG_3(self,args);
7711 }
7712 }
7713 }
7714 }
7715 }
7716 }
7717 }
7718
7719 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'OBProperty_get'");
7720 return NULL;
7721 }
7722
7723
7724 static PyObject *_wrap_OBProperty_erase(PyObject *self, PyObject *args) {
7725 PyObject *resultobj;
7726 otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7727 Window arg2 ;
7728 int arg3 ;
7729 Window *argp2 ;
7730 PyObject * obj0 = 0 ;
7731 PyObject * obj1 = 0 ;
7732
7733 if(!PyArg_ParseTuple(args,(char *)"OOi:OBProperty_erase",&obj0,&obj1,&arg3)) goto fail;
7734 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7735 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7736 arg2 = *argp2;
7737 ((otk::OBProperty const *)arg1)->erase(arg2,(otk::OBProperty::Atoms )arg3);
7738
7739 Py_INCREF(Py_None); resultobj = Py_None;
7740 return resultobj;
7741 fail:
7742 return NULL;
7743 }
7744
7745
7746 static PyObject *_wrap_OBProperty_atom(PyObject *self, PyObject *args) {
7747 PyObject *resultobj;
7748 otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7749 int arg2 ;
7750 Atom result;
7751 PyObject * obj0 = 0 ;
7752
7753 if(!PyArg_ParseTuple(args,(char *)"Oi:OBProperty_atom",&obj0,&arg2)) goto fail;
7754 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7755 result = ((otk::OBProperty const *)arg1)->atom((otk::OBProperty::Atoms )arg2);
7756
7757 {
7758 Atom * resultptr;
7759 resultptr = new Atom((Atom &) result);
7760 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Atom, 1);
7761 }
7762 return resultobj;
7763 fail:
7764 return NULL;
7765 }
7766
7767
7768 static PyObject * OBProperty_swigregister(PyObject *self, PyObject *args) {
7769 PyObject *obj;
7770 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
7771 SWIG_TypeClientData(SWIGTYPE_p_otk__OBProperty, obj);
7772 Py_INCREF(obj);
7773 return Py_BuildValue((char *)"");
7774 }
7775 static PyObject *_wrap_new_Rect__SWIG_0(PyObject *self, PyObject *args) {
7776 PyObject *resultobj;
7777 otk::Rect *result;
7778
7779 if(!PyArg_ParseTuple(args,(char *)":new_Rect")) goto fail;
7780 result = (otk::Rect *)new otk::Rect();
7781
7782 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Rect, 1);
7783 return resultobj;
7784 fail:
7785 return NULL;
7786 }
7787
7788
7789 static PyObject *_wrap_new_Rect__SWIG_1(PyObject *self, PyObject *args) {
7790 PyObject *resultobj;
7791 int arg1 ;
7792 int arg2 ;
7793 int arg3 ;
7794 int arg4 ;
7795 otk::Rect *result;
7796
7797 if(!PyArg_ParseTuple(args,(char *)"iiii:new_Rect",&arg1,&arg2,&arg3,&arg4)) goto fail;
7798 result = (otk::Rect *)new otk::Rect(arg1,arg2,arg3,arg4);
7799
7800 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Rect, 1);
7801 return resultobj;
7802 fail:
7803 return NULL;
7804 }
7805
7806
7807 static PyObject *_wrap_new_Rect__SWIG_2(PyObject *self, PyObject *args) {
7808 PyObject *resultobj;
7809 otk::Point *arg1 = 0 ;
7810 otk::Point *arg2 = 0 ;
7811 otk::Rect *result;
7812 PyObject * obj0 = 0 ;
7813 PyObject * obj1 = 0 ;
7814
7815 if(!PyArg_ParseTuple(args,(char *)"OO:new_Rect",&obj0,&obj1)) goto fail;
7816 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7817 if (arg1 == NULL) {
7818 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
7819 }
7820 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7821 if (arg2 == NULL) {
7822 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
7823 }
7824 result = (otk::Rect *)new otk::Rect((otk::Point const &)*arg1,(otk::Point const &)*arg2);
7825
7826 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Rect, 1);
7827 return resultobj;
7828 fail:
7829 return NULL;
7830 }
7831
7832
7833 static PyObject *_wrap_new_Rect__SWIG_3(PyObject *self, PyObject *args) {
7834 PyObject *resultobj;
7835 otk::Rect *arg1 = 0 ;
7836 otk::Rect *result;
7837 PyObject * obj0 = 0 ;
7838
7839 if(!PyArg_ParseTuple(args,(char *)"O:new_Rect",&obj0)) goto fail;
7840 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7841 if (arg1 == NULL) {
7842 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
7843 }
7844 result = (otk::Rect *)new otk::Rect((otk::Rect const &)*arg1);
7845
7846 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Rect, 1);
7847 return resultobj;
7848 fail:
7849 return NULL;
7850 }
7851
7852
7853 static PyObject *_wrap_new_Rect__SWIG_4(PyObject *self, PyObject *args) {
7854 PyObject *resultobj;
7855 XRectangle *arg1 = 0 ;
7856 otk::Rect *result;
7857 PyObject * obj0 = 0 ;
7858
7859 if(!PyArg_ParseTuple(args,(char *)"O:new_Rect",&obj0)) goto fail;
7860 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_XRectangle,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7861 if (arg1 == NULL) {
7862 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
7863 }
7864 result = (otk::Rect *)new otk::Rect((XRectangle const &)*arg1);
7865
7866 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Rect, 1);
7867 return resultobj;
7868 fail:
7869 return NULL;
7870 }
7871
7872
7873 static PyObject *_wrap_new_Rect(PyObject *self, PyObject *args) {
7874 int argc;
7875 PyObject *argv[5];
7876 int ii;
7877
7878 argc = PyObject_Length(args);
7879 for (ii = 0; (ii < argc) && (ii < 4); ii++) {
7880 argv[ii] = PyTuple_GetItem(args,ii);
7881 }
7882 if (argc == 0) {
7883 return _wrap_new_Rect__SWIG_0(self,args);
7884 }
7885 if (argc == 1) {
7886 int _v;
7887 {
7888 void *ptr;
7889 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
7890 _v = 0;
7891 PyErr_Clear();
7892 }else {
7893 _v = 1;
7894 }
7895 }
7896 if (_v) {
7897 return _wrap_new_Rect__SWIG_3(self,args);
7898 }
7899 }
7900 if (argc == 1) {
7901 int _v;
7902 {
7903 void *ptr;
7904 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_XRectangle, 0) == -1) {
7905 _v = 0;
7906 PyErr_Clear();
7907 }else {
7908 _v = 1;
7909 }
7910 }
7911 if (_v) {
7912 return _wrap_new_Rect__SWIG_4(self,args);
7913 }
7914 }
7915 if (argc == 2) {
7916 int _v;
7917 {
7918 void *ptr;
7919 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
7920 _v = 0;
7921 PyErr_Clear();
7922 }else {
7923 _v = 1;
7924 }
7925 }
7926 if (_v) {
7927 {
7928 void *ptr;
7929 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
7930 _v = 0;
7931 PyErr_Clear();
7932 }else {
7933 _v = 1;
7934 }
7935 }
7936 if (_v) {
7937 return _wrap_new_Rect__SWIG_2(self,args);
7938 }
7939 }
7940 }
7941 if (argc == 4) {
7942 int _v;
7943 {
7944 _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0;
7945 }
7946 if (_v) {
7947 {
7948 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
7949 }
7950 if (_v) {
7951 {
7952 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7953 }
7954 if (_v) {
7955 {
7956 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7957 }
7958 if (_v) {
7959 return _wrap_new_Rect__SWIG_1(self,args);
7960 }
7961 }
7962 }
7963 }
7964 }
7965
7966 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_Rect'");
7967 return NULL;
7968 }
7969
7970
7971 static PyObject *_wrap_Rect_left(PyObject *self, PyObject *args) {
7972 PyObject *resultobj;
7973 otk::Rect *arg1 = (otk::Rect *) 0 ;
7974 int result;
7975 PyObject * obj0 = 0 ;
7976
7977 if(!PyArg_ParseTuple(args,(char *)"O:Rect_left",&obj0)) goto fail;
7978 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7979 result = (int)((otk::Rect const *)arg1)->left();
7980
7981 resultobj = PyInt_FromLong((long)result);
7982 return resultobj;
7983 fail:
7984 return NULL;
7985 }
7986
7987
7988 static PyObject *_wrap_Rect_top(PyObject *self, PyObject *args) {
7989 PyObject *resultobj;
7990 otk::Rect *arg1 = (otk::Rect *) 0 ;
7991 int result;
7992 PyObject * obj0 = 0 ;
7993
7994 if(!PyArg_ParseTuple(args,(char *)"O:Rect_top",&obj0)) goto fail;
7995 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7996 result = (int)((otk::Rect const *)arg1)->top();
7997
7998 resultobj = PyInt_FromLong((long)result);
7999 return resultobj;
8000 fail:
8001 return NULL;
8002 }
8003
8004
8005 static PyObject *_wrap_Rect_right(PyObject *self, PyObject *args) {
8006 PyObject *resultobj;
8007 otk::Rect *arg1 = (otk::Rect *) 0 ;
8008 int result;
8009 PyObject * obj0 = 0 ;
8010
8011 if(!PyArg_ParseTuple(args,(char *)"O:Rect_right",&obj0)) goto fail;
8012 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8013 result = (int)((otk::Rect const *)arg1)->right();
8014
8015 resultobj = PyInt_FromLong((long)result);
8016 return resultobj;
8017 fail:
8018 return NULL;
8019 }
8020
8021
8022 static PyObject *_wrap_Rect_bottom(PyObject *self, PyObject *args) {
8023 PyObject *resultobj;
8024 otk::Rect *arg1 = (otk::Rect *) 0 ;
8025 int result;
8026 PyObject * obj0 = 0 ;
8027
8028 if(!PyArg_ParseTuple(args,(char *)"O:Rect_bottom",&obj0)) goto fail;
8029 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8030 result = (int)((otk::Rect const *)arg1)->bottom();
8031
8032 resultobj = PyInt_FromLong((long)result);
8033 return resultobj;
8034 fail:
8035 return NULL;
8036 }
8037
8038
8039 static PyObject *_wrap_Rect_x(PyObject *self, PyObject *args) {
8040 PyObject *resultobj;
8041 otk::Rect *arg1 = (otk::Rect *) 0 ;
8042 int result;
8043 PyObject * obj0 = 0 ;
8044
8045 if(!PyArg_ParseTuple(args,(char *)"O:Rect_x",&obj0)) goto fail;
8046 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8047 result = (int)((otk::Rect const *)arg1)->x();
8048
8049 resultobj = PyInt_FromLong((long)result);
8050 return resultobj;
8051 fail:
8052 return NULL;
8053 }
8054
8055
8056 static PyObject *_wrap_Rect_y(PyObject *self, PyObject *args) {
8057 PyObject *resultobj;
8058 otk::Rect *arg1 = (otk::Rect *) 0 ;
8059 int result;
8060 PyObject * obj0 = 0 ;
8061
8062 if(!PyArg_ParseTuple(args,(char *)"O:Rect_y",&obj0)) goto fail;
8063 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8064 result = (int)((otk::Rect const *)arg1)->y();
8065
8066 resultobj = PyInt_FromLong((long)result);
8067 return resultobj;
8068 fail:
8069 return NULL;
8070 }
8071
8072
8073 static PyObject *_wrap_Rect_location(PyObject *self, PyObject *args) {
8074 PyObject *resultobj;
8075 otk::Rect *arg1 = (otk::Rect *) 0 ;
8076 otk::Point result;
8077 PyObject * obj0 = 0 ;
8078
8079 if(!PyArg_ParseTuple(args,(char *)"O:Rect_location",&obj0)) goto fail;
8080 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8081 result = ((otk::Rect const *)arg1)->location();
8082
8083 {
8084 otk::Point * resultptr;
8085 resultptr = new otk::Point((otk::Point &) result);
8086 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_otk__Point, 1);
8087 }
8088 return resultobj;
8089 fail:
8090 return NULL;
8091 }
8092
8093
8094 static PyObject *_wrap_Rect_setX(PyObject *self, PyObject *args) {
8095 PyObject *resultobj;
8096 otk::Rect *arg1 = (otk::Rect *) 0 ;
8097 int arg2 ;
8098 PyObject * obj0 = 0 ;
8099
8100 if(!PyArg_ParseTuple(args,(char *)"Oi:Rect_setX",&obj0,&arg2)) goto fail;
8101 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8102 (arg1)->setX(arg2);
8103
8104 Py_INCREF(Py_None); resultobj = Py_None;
8105 return resultobj;
8106 fail:
8107 return NULL;
8108 }
8109
8110
8111 static PyObject *_wrap_Rect_setY(PyObject *self, PyObject *args) {
8112 PyObject *resultobj;
8113 otk::Rect *arg1 = (otk::Rect *) 0 ;
8114 int arg2 ;
8115 PyObject * obj0 = 0 ;
8116
8117 if(!PyArg_ParseTuple(args,(char *)"Oi:Rect_setY",&obj0,&arg2)) goto fail;
8118 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8119 (arg1)->setY(arg2);
8120
8121 Py_INCREF(Py_None); resultobj = Py_None;
8122 return resultobj;
8123 fail:
8124 return NULL;
8125 }
8126
8127
8128 static PyObject *_wrap_Rect_setPos__SWIG_0(PyObject *self, PyObject *args) {
8129 PyObject *resultobj;
8130 otk::Rect *arg1 = (otk::Rect *) 0 ;
8131 int arg2 ;
8132 int arg3 ;
8133 PyObject * obj0 = 0 ;
8134
8135 if(!PyArg_ParseTuple(args,(char *)"Oii:Rect_setPos",&obj0,&arg2,&arg3)) goto fail;
8136 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8137 (arg1)->setPos(arg2,arg3);
8138
8139 Py_INCREF(Py_None); resultobj = Py_None;
8140 return resultobj;
8141 fail:
8142 return NULL;
8143 }
8144
8145
8146 static PyObject *_wrap_Rect_setPos__SWIG_1(PyObject *self, PyObject *args) {
8147 PyObject *resultobj;
8148 otk::Rect *arg1 = (otk::Rect *) 0 ;
8149 otk::Point *arg2 = 0 ;
8150 PyObject * obj0 = 0 ;
8151 PyObject * obj1 = 0 ;
8152
8153 if(!PyArg_ParseTuple(args,(char *)"OO:Rect_setPos",&obj0,&obj1)) goto fail;
8154 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8155 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8156 if (arg2 == NULL) {
8157 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
8158 }
8159 (arg1)->setPos((otk::Point const &)*arg2);
8160
8161 Py_INCREF(Py_None); resultobj = Py_None;
8162 return resultobj;
8163 fail:
8164 return NULL;
8165 }
8166
8167
8168 static PyObject *_wrap_Rect_setPos(PyObject *self, PyObject *args) {
8169 int argc;
8170 PyObject *argv[4];
8171 int ii;
8172
8173 argc = PyObject_Length(args);
8174 for (ii = 0; (ii < argc) && (ii < 3); ii++) {
8175 argv[ii] = PyTuple_GetItem(args,ii);
8176 }
8177 if (argc == 2) {
8178 int _v;
8179 {
8180 void *ptr;
8181 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8182 _v = 0;
8183 PyErr_Clear();
8184 }else {
8185 _v = 1;
8186 }
8187 }
8188 if (_v) {
8189 {
8190 void *ptr;
8191 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
8192 _v = 0;
8193 PyErr_Clear();
8194 }else {
8195 _v = 1;
8196 }
8197 }
8198 if (_v) {
8199 return _wrap_Rect_setPos__SWIG_1(self,args);
8200 }
8201 }
8202 }
8203 if (argc == 3) {
8204 int _v;
8205 {
8206 void *ptr;
8207 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8208 _v = 0;
8209 PyErr_Clear();
8210 }else {
8211 _v = 1;
8212 }
8213 }
8214 if (_v) {
8215 {
8216 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
8217 }
8218 if (_v) {
8219 {
8220 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
8221 }
8222 if (_v) {
8223 return _wrap_Rect_setPos__SWIG_0(self,args);
8224 }
8225 }
8226 }
8227 }
8228
8229 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'Rect_setPos'");
8230 return NULL;
8231 }
8232
8233
8234 static PyObject *_wrap_Rect_width(PyObject *self, PyObject *args) {
8235 PyObject *resultobj;
8236 otk::Rect *arg1 = (otk::Rect *) 0 ;
8237 int result;
8238 PyObject * obj0 = 0 ;
8239
8240 if(!PyArg_ParseTuple(args,(char *)"O:Rect_width",&obj0)) goto fail;
8241 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8242 result = (int)((otk::Rect const *)arg1)->width();
8243
8244 resultobj = PyInt_FromLong((long)result);
8245 return resultobj;
8246 fail:
8247 return NULL;
8248 }
8249
8250
8251 static PyObject *_wrap_Rect_height(PyObject *self, PyObject *args) {
8252 PyObject *resultobj;
8253 otk::Rect *arg1 = (otk::Rect *) 0 ;
8254 int result;
8255 PyObject * obj0 = 0 ;
8256
8257 if(!PyArg_ParseTuple(args,(char *)"O:Rect_height",&obj0)) goto fail;
8258 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8259 result = (int)((otk::Rect const *)arg1)->height();
8260
8261 resultobj = PyInt_FromLong((long)result);
8262 return resultobj;
8263 fail:
8264 return NULL;
8265 }
8266
8267
8268 static PyObject *_wrap_Rect_size(PyObject *self, PyObject *args) {
8269 PyObject *resultobj;
8270 otk::Rect *arg1 = (otk::Rect *) 0 ;
8271 otk::Point result;
8272 PyObject * obj0 = 0 ;
8273
8274 if(!PyArg_ParseTuple(args,(char *)"O:Rect_size",&obj0)) goto fail;
8275 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8276 result = ((otk::Rect const *)arg1)->size();
8277
8278 {
8279 otk::Point * resultptr;
8280 resultptr = new otk::Point((otk::Point &) result);
8281 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_otk__Point, 1);
8282 }
8283 return resultobj;
8284 fail:
8285 return NULL;
8286 }
8287
8288
8289 static PyObject *_wrap_Rect_setWidth(PyObject *self, PyObject *args) {
8290 PyObject *resultobj;
8291 otk::Rect *arg1 = (otk::Rect *) 0 ;
8292 int arg2 ;
8293 PyObject * obj0 = 0 ;
8294
8295 if(!PyArg_ParseTuple(args,(char *)"Oi:Rect_setWidth",&obj0,&arg2)) goto fail;
8296 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8297 (arg1)->setWidth(arg2);
8298
8299 Py_INCREF(Py_None); resultobj = Py_None;
8300 return resultobj;
8301 fail:
8302 return NULL;
8303 }
8304
8305
8306 static PyObject *_wrap_Rect_setHeight(PyObject *self, PyObject *args) {
8307 PyObject *resultobj;
8308 otk::Rect *arg1 = (otk::Rect *) 0 ;
8309 int arg2 ;
8310 PyObject * obj0 = 0 ;
8311
8312 if(!PyArg_ParseTuple(args,(char *)"Oi:Rect_setHeight",&obj0,&arg2)) goto fail;
8313 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8314 (arg1)->setHeight(arg2);
8315
8316 Py_INCREF(Py_None); resultobj = Py_None;
8317 return resultobj;
8318 fail:
8319 return NULL;
8320 }
8321
8322
8323 static PyObject *_wrap_Rect_setSize__SWIG_0(PyObject *self, PyObject *args) {
8324 PyObject *resultobj;
8325 otk::Rect *arg1 = (otk::Rect *) 0 ;
8326 int arg2 ;
8327 int arg3 ;
8328 PyObject * obj0 = 0 ;
8329
8330 if(!PyArg_ParseTuple(args,(char *)"Oii:Rect_setSize",&obj0,&arg2,&arg3)) goto fail;
8331 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8332 (arg1)->setSize(arg2,arg3);
8333
8334 Py_INCREF(Py_None); resultobj = Py_None;
8335 return resultobj;
8336 fail:
8337 return NULL;
8338 }
8339
8340
8341 static PyObject *_wrap_Rect_setSize__SWIG_1(PyObject *self, PyObject *args) {
8342 PyObject *resultobj;
8343 otk::Rect *arg1 = (otk::Rect *) 0 ;
8344 otk::Point *arg2 = 0 ;
8345 PyObject * obj0 = 0 ;
8346 PyObject * obj1 = 0 ;
8347
8348 if(!PyArg_ParseTuple(args,(char *)"OO:Rect_setSize",&obj0,&obj1)) goto fail;
8349 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8350 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8351 if (arg2 == NULL) {
8352 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
8353 }
8354 (arg1)->setSize((otk::Point const &)*arg2);
8355
8356 Py_INCREF(Py_None); resultobj = Py_None;
8357 return resultobj;
8358 fail:
8359 return NULL;
8360 }
8361
8362
8363 static PyObject *_wrap_Rect_setSize(PyObject *self, PyObject *args) {
8364 int argc;
8365 PyObject *argv[4];
8366 int ii;
8367
8368 argc = PyObject_Length(args);
8369 for (ii = 0; (ii < argc) && (ii < 3); ii++) {
8370 argv[ii] = PyTuple_GetItem(args,ii);
8371 }
8372 if (argc == 2) {
8373 int _v;
8374 {
8375 void *ptr;
8376 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8377 _v = 0;
8378 PyErr_Clear();
8379 }else {
8380 _v = 1;
8381 }
8382 }
8383 if (_v) {
8384 {
8385 void *ptr;
8386 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
8387 _v = 0;
8388 PyErr_Clear();
8389 }else {
8390 _v = 1;
8391 }
8392 }
8393 if (_v) {
8394 return _wrap_Rect_setSize__SWIG_1(self,args);
8395 }
8396 }
8397 }
8398 if (argc == 3) {
8399 int _v;
8400 {
8401 void *ptr;
8402 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8403 _v = 0;
8404 PyErr_Clear();
8405 }else {
8406 _v = 1;
8407 }
8408 }
8409 if (_v) {
8410 {
8411 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
8412 }
8413 if (_v) {
8414 {
8415 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
8416 }
8417 if (_v) {
8418 return _wrap_Rect_setSize__SWIG_0(self,args);
8419 }
8420 }
8421 }
8422 }
8423
8424 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'Rect_setSize'");
8425 return NULL;
8426 }
8427
8428
8429 static PyObject *_wrap_Rect_setRect__SWIG_0(PyObject *self, PyObject *args) {
8430 PyObject *resultobj;
8431 otk::Rect *arg1 = (otk::Rect *) 0 ;
8432 int arg2 ;
8433 int arg3 ;
8434 int arg4 ;
8435 int arg5 ;
8436 PyObject * obj0 = 0 ;
8437
8438 if(!PyArg_ParseTuple(args,(char *)"Oiiii:Rect_setRect",&obj0,&arg2,&arg3,&arg4,&arg5)) goto fail;
8439 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8440 (arg1)->setRect(arg2,arg3,arg4,arg5);
8441
8442 Py_INCREF(Py_None); resultobj = Py_None;
8443 return resultobj;
8444 fail:
8445 return NULL;
8446 }
8447
8448
8449 static PyObject *_wrap_Rect_setRect__SWIG_1(PyObject *self, PyObject *args) {
8450 PyObject *resultobj;
8451 otk::Rect *arg1 = (otk::Rect *) 0 ;
8452 otk::Point *arg2 = 0 ;
8453 otk::Point *arg3 = 0 ;
8454 PyObject * obj0 = 0 ;
8455 PyObject * obj1 = 0 ;
8456 PyObject * obj2 = 0 ;
8457
8458 if(!PyArg_ParseTuple(args,(char *)"OOO:Rect_setRect",&obj0,&obj1,&obj2)) goto fail;
8459 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8460 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8461 if (arg2 == NULL) {
8462 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
8463 }
8464 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8465 if (arg3 == NULL) {
8466 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
8467 }
8468 (arg1)->setRect((otk::Point const &)*arg2,(otk::Point const &)*arg3);
8469
8470 Py_INCREF(Py_None); resultobj = Py_None;
8471 return resultobj;
8472 fail:
8473 return NULL;
8474 }
8475
8476
8477 static PyObject *_wrap_Rect_setRect(PyObject *self, PyObject *args) {
8478 int argc;
8479 PyObject *argv[6];
8480 int ii;
8481
8482 argc = PyObject_Length(args);
8483 for (ii = 0; (ii < argc) && (ii < 5); ii++) {
8484 argv[ii] = PyTuple_GetItem(args,ii);
8485 }
8486 if (argc == 3) {
8487 int _v;
8488 {
8489 void *ptr;
8490 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8491 _v = 0;
8492 PyErr_Clear();
8493 }else {
8494 _v = 1;
8495 }
8496 }
8497 if (_v) {
8498 {
8499 void *ptr;
8500 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
8501 _v = 0;
8502 PyErr_Clear();
8503 }else {
8504 _v = 1;
8505 }
8506 }
8507 if (_v) {
8508 {
8509 void *ptr;
8510 if (SWIG_ConvertPtr(argv[2], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
8511 _v = 0;
8512 PyErr_Clear();
8513 }else {
8514 _v = 1;
8515 }
8516 }
8517 if (_v) {
8518 return _wrap_Rect_setRect__SWIG_1(self,args);
8519 }
8520 }
8521 }
8522 }
8523 if (argc == 5) {
8524 int _v;
8525 {
8526 void *ptr;
8527 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8528 _v = 0;
8529 PyErr_Clear();
8530 }else {
8531 _v = 1;
8532 }
8533 }
8534 if (_v) {
8535 {
8536 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
8537 }
8538 if (_v) {
8539 {
8540 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
8541 }
8542 if (_v) {
8543 {
8544 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
8545 }
8546 if (_v) {
8547 {
8548 _v = (PyInt_Check(argv[4]) || PyLong_Check(argv[4])) ? 1 : 0;
8549 }
8550 if (_v) {
8551 return _wrap_Rect_setRect__SWIG_0(self,args);
8552 }
8553 }
8554 }
8555 }
8556 }
8557 }
8558
8559 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'Rect_setRect'");
8560 return NULL;
8561 }
8562
8563
8564 static PyObject *_wrap_Rect_setCoords__SWIG_0(PyObject *self, PyObject *args) {
8565 PyObject *resultobj;
8566 otk::Rect *arg1 = (otk::Rect *) 0 ;
8567 int arg2 ;
8568 int arg3 ;
8569 int arg4 ;
8570 int arg5 ;
8571 PyObject * obj0 = 0 ;
8572
8573 if(!PyArg_ParseTuple(args,(char *)"Oiiii:Rect_setCoords",&obj0,&arg2,&arg3,&arg4,&arg5)) goto fail;
8574 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8575 (arg1)->setCoords(arg2,arg3,arg4,arg5);
8576
8577 Py_INCREF(Py_None); resultobj = Py_None;
8578 return resultobj;
8579 fail:
8580 return NULL;
8581 }
8582
8583
8584 static PyObject *_wrap_Rect_setCoords__SWIG_1(PyObject *self, PyObject *args) {
8585 PyObject *resultobj;
8586 otk::Rect *arg1 = (otk::Rect *) 0 ;
8587 otk::Point *arg2 = 0 ;
8588 otk::Point *arg3 = 0 ;
8589 PyObject * obj0 = 0 ;
8590 PyObject * obj1 = 0 ;
8591 PyObject * obj2 = 0 ;
8592
8593 if(!PyArg_ParseTuple(args,(char *)"OOO:Rect_setCoords",&obj0,&obj1,&obj2)) goto fail;
8594 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8595 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8596 if (arg2 == NULL) {
8597 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
8598 }
8599 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8600 if (arg3 == NULL) {
8601 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
8602 }
8603 (arg1)->setCoords((otk::Point const &)*arg2,(otk::Point const &)*arg3);
8604
8605 Py_INCREF(Py_None); resultobj = Py_None;
8606 return resultobj;
8607 fail:
8608 return NULL;
8609 }
8610
8611
8612 static PyObject *_wrap_Rect_setCoords(PyObject *self, PyObject *args) {
8613 int argc;
8614 PyObject *argv[6];
8615 int ii;
8616
8617 argc = PyObject_Length(args);
8618 for (ii = 0; (ii < argc) && (ii < 5); ii++) {
8619 argv[ii] = PyTuple_GetItem(args,ii);
8620 }
8621 if (argc == 3) {
8622 int _v;
8623 {
8624 void *ptr;
8625 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8626 _v = 0;
8627 PyErr_Clear();
8628 }else {
8629 _v = 1;
8630 }
8631 }
8632 if (_v) {
8633 {
8634 void *ptr;
8635 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
8636 _v = 0;
8637 PyErr_Clear();
8638 }else {
8639 _v = 1;
8640 }
8641 }
8642 if (_v) {
8643 {
8644 void *ptr;
8645 if (SWIG_ConvertPtr(argv[2], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
8646 _v = 0;
8647 PyErr_Clear();
8648 }else {
8649 _v = 1;
8650 }
8651 }
8652 if (_v) {
8653 return _wrap_Rect_setCoords__SWIG_1(self,args);
8654 }
8655 }
8656 }
8657 }
8658 if (argc == 5) {
8659 int _v;
8660 {
8661 void *ptr;
8662 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8663 _v = 0;
8664 PyErr_Clear();
8665 }else {
8666 _v = 1;
8667 }
8668 }
8669 if (_v) {
8670 {
8671 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
8672 }
8673 if (_v) {
8674 {
8675 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
8676 }
8677 if (_v) {
8678 {
8679 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
8680 }
8681 if (_v) {
8682 {
8683 _v = (PyInt_Check(argv[4]) || PyLong_Check(argv[4])) ? 1 : 0;
8684 }
8685 if (_v) {
8686 return _wrap_Rect_setCoords__SWIG_0(self,args);
8687 }
8688 }
8689 }
8690 }
8691 }
8692 }
8693
8694 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'Rect_setCoords'");
8695 return NULL;
8696 }
8697
8698
8699 static PyObject *_wrap_Rect_equals(PyObject *self, PyObject *args) {
8700 PyObject *resultobj;
8701 otk::Rect *arg1 = (otk::Rect *) 0 ;
8702 otk::Rect *arg2 = 0 ;
8703 bool result;
8704 PyObject * obj0 = 0 ;
8705 PyObject * obj1 = 0 ;
8706
8707 if(!PyArg_ParseTuple(args,(char *)"OO:Rect_equals",&obj0,&obj1)) goto fail;
8708 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8709 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8710 if (arg2 == NULL) {
8711 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
8712 }
8713 result = (bool)(arg1)->operator ==((otk::Rect const &)*arg2);
8714
8715 resultobj = PyInt_FromLong((long)result);
8716 return resultobj;
8717 fail:
8718 return NULL;
8719 }
8720
8721
8722 static PyObject *_wrap_Rect_valid(PyObject *self, PyObject *args) {
8723 PyObject *resultobj;
8724 otk::Rect *arg1 = (otk::Rect *) 0 ;
8725 bool result;
8726 PyObject * obj0 = 0 ;
8727
8728 if(!PyArg_ParseTuple(args,(char *)"O:Rect_valid",&obj0)) goto fail;
8729 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8730 result = (bool)((otk::Rect const *)arg1)->valid();
8731
8732 resultobj = PyInt_FromLong((long)result);
8733 return resultobj;
8734 fail:
8735 return NULL;
8736 }
8737
8738
8739 static PyObject *_wrap_Rect_intersects(PyObject *self, PyObject *args) {
8740 PyObject *resultobj;
8741 otk::Rect *arg1 = (otk::Rect *) 0 ;
8742 otk::Rect *arg2 = 0 ;
8743 bool result;
8744 PyObject * obj0 = 0 ;
8745 PyObject * obj1 = 0 ;
8746
8747 if(!PyArg_ParseTuple(args,(char *)"OO:Rect_intersects",&obj0,&obj1)) goto fail;
8748 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8749 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8750 if (arg2 == NULL) {
8751 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
8752 }
8753 result = (bool)((otk::Rect const *)arg1)->intersects((otk::Rect const &)*arg2);
8754
8755 resultobj = PyInt_FromLong((long)result);
8756 return resultobj;
8757 fail:
8758 return NULL;
8759 }
8760
8761
8762 static PyObject *_wrap_Rect_contains__SWIG_0(PyObject *self, PyObject *args) {
8763 PyObject *resultobj;
8764 otk::Rect *arg1 = (otk::Rect *) 0 ;
8765 int arg2 ;
8766 int arg3 ;
8767 bool result;
8768 PyObject * obj0 = 0 ;
8769
8770 if(!PyArg_ParseTuple(args,(char *)"Oii:Rect_contains",&obj0,&arg2,&arg3)) goto fail;
8771 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8772 result = (bool)((otk::Rect const *)arg1)->contains(arg2,arg3);
8773
8774 resultobj = PyInt_FromLong((long)result);
8775 return resultobj;
8776 fail:
8777 return NULL;
8778 }
8779
8780
8781 static PyObject *_wrap_Rect_contains__SWIG_1(PyObject *self, PyObject *args) {
8782 PyObject *resultobj;
8783 otk::Rect *arg1 = (otk::Rect *) 0 ;
8784 otk::Point *arg2 = 0 ;
8785 bool result;
8786 PyObject * obj0 = 0 ;
8787 PyObject * obj1 = 0 ;
8788
8789 if(!PyArg_ParseTuple(args,(char *)"OO:Rect_contains",&obj0,&obj1)) goto fail;
8790 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8791 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8792 if (arg2 == NULL) {
8793 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
8794 }
8795 result = (bool)((otk::Rect const *)arg1)->contains((otk::Point const &)*arg2);
8796
8797 resultobj = PyInt_FromLong((long)result);
8798 return resultobj;
8799 fail:
8800 return NULL;
8801 }
8802
8803
8804 static PyObject *_wrap_Rect_contains__SWIG_2(PyObject *self, PyObject *args) {
8805 PyObject *resultobj;
8806 otk::Rect *arg1 = (otk::Rect *) 0 ;
8807 otk::Rect *arg2 = 0 ;
8808 bool result;
8809 PyObject * obj0 = 0 ;
8810 PyObject * obj1 = 0 ;
8811
8812 if(!PyArg_ParseTuple(args,(char *)"OO:Rect_contains",&obj0,&obj1)) goto fail;
8813 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8814 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8815 if (arg2 == NULL) {
8816 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
8817 }
8818 result = (bool)((otk::Rect const *)arg1)->contains((otk::Rect const &)*arg2);
8819
8820 resultobj = PyInt_FromLong((long)result);
8821 return resultobj;
8822 fail:
8823 return NULL;
8824 }
8825
8826
8827 static PyObject *_wrap_Rect_contains(PyObject *self, PyObject *args) {
8828 int argc;
8829 PyObject *argv[4];
8830 int ii;
8831
8832 argc = PyObject_Length(args);
8833 for (ii = 0; (ii < argc) && (ii < 3); ii++) {
8834 argv[ii] = PyTuple_GetItem(args,ii);
8835 }
8836 if (argc == 2) {
8837 int _v;
8838 {
8839 void *ptr;
8840 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8841 _v = 0;
8842 PyErr_Clear();
8843 }else {
8844 _v = 1;
8845 }
8846 }
8847 if (_v) {
8848 {
8849 void *ptr;
8850 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
8851 _v = 0;
8852 PyErr_Clear();
8853 }else {
8854 _v = 1;
8855 }
8856 }
8857 if (_v) {
8858 return _wrap_Rect_contains__SWIG_1(self,args);
8859 }
8860 }
8861 }
8862 if (argc == 2) {
8863 int _v;
8864 {
8865 void *ptr;
8866 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8867 _v = 0;
8868 PyErr_Clear();
8869 }else {
8870 _v = 1;
8871 }
8872 }
8873 if (_v) {
8874 {
8875 void *ptr;
8876 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8877 _v = 0;
8878 PyErr_Clear();
8879 }else {
8880 _v = 1;
8881 }
8882 }
8883 if (_v) {
8884 return _wrap_Rect_contains__SWIG_2(self,args);
8885 }
8886 }
8887 }
8888 if (argc == 3) {
8889 int _v;
8890 {
8891 void *ptr;
8892 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8893 _v = 0;
8894 PyErr_Clear();
8895 }else {
8896 _v = 1;
8897 }
8898 }
8899 if (_v) {
8900 {
8901 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
8902 }
8903 if (_v) {
8904 {
8905 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
8906 }
8907 if (_v) {
8908 return _wrap_Rect_contains__SWIG_0(self,args);
8909 }
8910 }
8911 }
8912 }
8913
8914 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'Rect_contains'");
8915 return NULL;
8916 }
8917
8918
8919 static PyObject *_wrap_delete_Rect(PyObject *self, PyObject *args) {
8920 PyObject *resultobj;
8921 otk::Rect *arg1 = (otk::Rect *) 0 ;
8922 PyObject * obj0 = 0 ;
8923
8924 if(!PyArg_ParseTuple(args,(char *)"O:delete_Rect",&obj0)) goto fail;
8925 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8926 delete arg1;
8927
8928 Py_INCREF(Py_None); resultobj = Py_None;
8929 return resultobj;
8930 fail:
8931 return NULL;
8932 }
8933
8934
8935 static PyObject * Rect_swigregister(PyObject *self, PyObject *args) {
8936 PyObject *obj;
8937 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
8938 SWIG_TypeClientData(SWIGTYPE_p_otk__Rect, obj);
8939 Py_INCREF(obj);
8940 return Py_BuildValue((char *)"");
8941 }
8942 static PyObject *_wrap_new_ScreenInfo(PyObject *self, PyObject *args) {
8943 PyObject *resultobj;
8944 unsigned int arg1 ;
8945 otk::ScreenInfo *result;
8946 PyObject * obj0 = 0 ;
8947
8948 if(!PyArg_ParseTuple(args,(char *)"O:new_ScreenInfo",&obj0)) goto fail;
8949 arg1 = (unsigned int) PyInt_AsLong(obj0);
8950 if (PyErr_Occurred()) SWIG_fail;
8951 result = (otk::ScreenInfo *)new otk::ScreenInfo(arg1);
8952
8953 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__ScreenInfo, 1);
8954 return resultobj;
8955 fail:
8956 return NULL;
8957 }
8958
8959
8960 static PyObject *_wrap_ScreenInfo_visual(PyObject *self, PyObject *args) {
8961 PyObject *resultobj;
8962 otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
8963 Visual *result;
8964 PyObject * obj0 = 0 ;
8965
8966 if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_visual",&obj0)) goto fail;
8967 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8968 result = (Visual *)((otk::ScreenInfo const *)arg1)->visual();
8969
8970 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_Visual, 0);
8971 return resultobj;
8972 fail:
8973 return NULL;
8974 }
8975
8976
8977 static PyObject *_wrap_ScreenInfo_rootWindow(PyObject *self, PyObject *args) {
8978 PyObject *resultobj;
8979 otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
8980 Window result;
8981 PyObject * obj0 = 0 ;
8982
8983 if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_rootWindow",&obj0)) goto fail;
8984 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8985 result = ((otk::ScreenInfo const *)arg1)->rootWindow();
8986
8987 {
8988 Window * resultptr;
8989 resultptr = new Window((Window &) result);
8990 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Window, 1);
8991 }
8992 return resultobj;
8993 fail:
8994 return NULL;
8995 }
8996
8997
8998 static PyObject *_wrap_ScreenInfo_colormap(PyObject *self, PyObject *args) {
8999 PyObject *resultobj;
9000 otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
9001 Colormap result;
9002 PyObject * obj0 = 0 ;
9003
9004 if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_colormap",&obj0)) goto fail;
9005 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9006 result = ((otk::ScreenInfo const *)arg1)->colormap();
9007
9008 {
9009 Colormap * resultptr;
9010 resultptr = new Colormap((Colormap &) result);
9011 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Colormap, 1);
9012 }
9013 return resultobj;
9014 fail:
9015 return NULL;
9016 }
9017
9018
9019 static PyObject *_wrap_ScreenInfo_depth(PyObject *self, PyObject *args) {
9020 PyObject *resultobj;
9021 otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
9022 int result;
9023 PyObject * obj0 = 0 ;
9024
9025 if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_depth",&obj0)) goto fail;
9026 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9027 result = (int)((otk::ScreenInfo const *)arg1)->depth();
9028
9029 resultobj = PyInt_FromLong((long)result);
9030 return resultobj;
9031 fail:
9032 return NULL;
9033 }
9034
9035
9036 static PyObject *_wrap_ScreenInfo_screen(PyObject *self, PyObject *args) {
9037 PyObject *resultobj;
9038 otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
9039 unsigned int result;
9040 PyObject * obj0 = 0 ;
9041
9042 if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_screen",&obj0)) goto fail;
9043 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9044 result = (unsigned int)((otk::ScreenInfo const *)arg1)->screen();
9045
9046 resultobj = PyInt_FromLong((long)result);
9047 return resultobj;
9048 fail:
9049 return NULL;
9050 }
9051
9052
9053 static PyObject *_wrap_ScreenInfo_rect(PyObject *self, PyObject *args) {
9054 PyObject *resultobj;
9055 otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
9056 otk::Rect *result;
9057 PyObject * obj0 = 0 ;
9058
9059 if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_rect",&obj0)) goto fail;
9060 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9061 {
9062 otk::Rect const &_result_ref = ((otk::ScreenInfo const *)arg1)->rect();
9063 result = (otk::Rect *) &_result_ref;
9064 }
9065
9066 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Rect, 0);
9067 return resultobj;
9068 fail:
9069 return NULL;
9070 }
9071
9072
9073 static PyObject *_wrap_ScreenInfo_width(PyObject *self, PyObject *args) {
9074 PyObject *resultobj;
9075 otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
9076 unsigned int result;
9077 PyObject * obj0 = 0 ;
9078
9079 if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_width",&obj0)) goto fail;
9080 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9081 result = (unsigned int)((otk::ScreenInfo const *)arg1)->width();
9082
9083 resultobj = PyInt_FromLong((long)result);
9084 return resultobj;
9085 fail:
9086 return NULL;
9087 }
9088
9089
9090 static PyObject *_wrap_ScreenInfo_height(PyObject *self, PyObject *args) {
9091 PyObject *resultobj;
9092 otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
9093 unsigned int result;
9094 PyObject * obj0 = 0 ;
9095
9096 if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_height",&obj0)) goto fail;
9097 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9098 result = (unsigned int)((otk::ScreenInfo const *)arg1)->height();
9099
9100 resultobj = PyInt_FromLong((long)result);
9101 return resultobj;
9102 fail:
9103 return NULL;
9104 }
9105
9106
9107 static PyObject *_wrap_ScreenInfo_displayString(PyObject *self, PyObject *args) {
9108 PyObject *resultobj;
9109 otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
9110 std::string *result;
9111 PyObject * obj0 = 0 ;
9112
9113 if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_displayString",&obj0)) goto fail;
9114 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9115 {
9116 std::string const &_result_ref = ((otk::ScreenInfo const *)arg1)->displayString();
9117 result = (std::string *) &_result_ref;
9118 }
9119
9120 {
9121 resultobj = PyString_FromString(result->c_str());
9122 }
9123 return resultobj;
9124 fail:
9125 return NULL;
9126 }
9127
9128
9129 static PyObject *_wrap_delete_ScreenInfo(PyObject *self, PyObject *args) {
9130 PyObject *resultobj;
9131 otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
9132 PyObject * obj0 = 0 ;
9133
9134 if(!PyArg_ParseTuple(args,(char *)"O:delete_ScreenInfo",&obj0)) goto fail;
9135 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9136 delete arg1;
9137
9138 Py_INCREF(Py_None); resultobj = Py_None;
9139 return resultobj;
9140 fail:
9141 return NULL;
9142 }
9143
9144
9145 static PyObject * ScreenInfo_swigregister(PyObject *self, PyObject *args) {
9146 PyObject *obj;
9147 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
9148 SWIG_TypeClientData(SWIGTYPE_p_otk__ScreenInfo, obj);
9149 Py_INCREF(obj);
9150 return Py_BuildValue((char *)"");
9151 }
9152 static PyObject *_wrap_Strut_top_set(PyObject *self, PyObject *args) {
9153 PyObject *resultobj;
9154 otk::Strut *arg1 = (otk::Strut *) 0 ;
9155 unsigned int arg2 ;
9156 PyObject * obj0 = 0 ;
9157 PyObject * obj1 = 0 ;
9158
9159 if(!PyArg_ParseTuple(args,(char *)"OO:Strut_top_set",&obj0,&obj1)) goto fail;
9160 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9161 arg2 = (unsigned int) PyInt_AsLong(obj1);
9162 if (PyErr_Occurred()) SWIG_fail;
9163 if (arg1) (arg1)->top = arg2;
9164
9165 Py_INCREF(Py_None); resultobj = Py_None;
9166 return resultobj;
9167 fail:
9168 return NULL;
9169 }
9170
9171
9172 static PyObject *_wrap_Strut_top_get(PyObject *self, PyObject *args) {
9173 PyObject *resultobj;
9174 otk::Strut *arg1 = (otk::Strut *) 0 ;
9175 unsigned int result;
9176 PyObject * obj0 = 0 ;
9177
9178 if(!PyArg_ParseTuple(args,(char *)"O:Strut_top_get",&obj0)) goto fail;
9179 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9180 result = (unsigned int) ((arg1)->top);
9181
9182 resultobj = PyInt_FromLong((long)result);
9183 return resultobj;
9184 fail:
9185 return NULL;
9186 }
9187
9188
9189 static PyObject *_wrap_Strut_bottom_set(PyObject *self, PyObject *args) {
9190 PyObject *resultobj;
9191 otk::Strut *arg1 = (otk::Strut *) 0 ;
9192 unsigned int arg2 ;
9193 PyObject * obj0 = 0 ;
9194 PyObject * obj1 = 0 ;
9195
9196 if(!PyArg_ParseTuple(args,(char *)"OO:Strut_bottom_set",&obj0,&obj1)) goto fail;
9197 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9198 arg2 = (unsigned int) PyInt_AsLong(obj1);
9199 if (PyErr_Occurred()) SWIG_fail;
9200 if (arg1) (arg1)->bottom = arg2;
9201
9202 Py_INCREF(Py_None); resultobj = Py_None;
9203 return resultobj;
9204 fail:
9205 return NULL;
9206 }
9207
9208
9209 static PyObject *_wrap_Strut_bottom_get(PyObject *self, PyObject *args) {
9210 PyObject *resultobj;
9211 otk::Strut *arg1 = (otk::Strut *) 0 ;
9212 unsigned int result;
9213 PyObject * obj0 = 0 ;
9214
9215 if(!PyArg_ParseTuple(args,(char *)"O:Strut_bottom_get",&obj0)) goto fail;
9216 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9217 result = (unsigned int) ((arg1)->bottom);
9218
9219 resultobj = PyInt_FromLong((long)result);
9220 return resultobj;
9221 fail:
9222 return NULL;
9223 }
9224
9225
9226 static PyObject *_wrap_Strut_left_set(PyObject *self, PyObject *args) {
9227 PyObject *resultobj;
9228 otk::Strut *arg1 = (otk::Strut *) 0 ;
9229 unsigned int arg2 ;
9230 PyObject * obj0 = 0 ;
9231 PyObject * obj1 = 0 ;
9232
9233 if(!PyArg_ParseTuple(args,(char *)"OO:Strut_left_set",&obj0,&obj1)) goto fail;
9234 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9235 arg2 = (unsigned int) PyInt_AsLong(obj1);
9236 if (PyErr_Occurred()) SWIG_fail;
9237 if (arg1) (arg1)->left = arg2;
9238
9239 Py_INCREF(Py_None); resultobj = Py_None;
9240 return resultobj;
9241 fail:
9242 return NULL;
9243 }
9244
9245
9246 static PyObject *_wrap_Strut_left_get(PyObject *self, PyObject *args) {
9247 PyObject *resultobj;
9248 otk::Strut *arg1 = (otk::Strut *) 0 ;
9249 unsigned int result;
9250 PyObject * obj0 = 0 ;
9251
9252 if(!PyArg_ParseTuple(args,(char *)"O:Strut_left_get",&obj0)) goto fail;
9253 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9254 result = (unsigned int) ((arg1)->left);
9255
9256 resultobj = PyInt_FromLong((long)result);
9257 return resultobj;
9258 fail:
9259 return NULL;
9260 }
9261
9262
9263 static PyObject *_wrap_Strut_right_set(PyObject *self, PyObject *args) {
9264 PyObject *resultobj;
9265 otk::Strut *arg1 = (otk::Strut *) 0 ;
9266 unsigned int arg2 ;
9267 PyObject * obj0 = 0 ;
9268 PyObject * obj1 = 0 ;
9269
9270 if(!PyArg_ParseTuple(args,(char *)"OO:Strut_right_set",&obj0,&obj1)) goto fail;
9271 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9272 arg2 = (unsigned int) PyInt_AsLong(obj1);
9273 if (PyErr_Occurred()) SWIG_fail;
9274 if (arg1) (arg1)->right = arg2;
9275
9276 Py_INCREF(Py_None); resultobj = Py_None;
9277 return resultobj;
9278 fail:
9279 return NULL;
9280 }
9281
9282
9283 static PyObject *_wrap_Strut_right_get(PyObject *self, PyObject *args) {
9284 PyObject *resultobj;
9285 otk::Strut *arg1 = (otk::Strut *) 0 ;
9286 unsigned int result;
9287 PyObject * obj0 = 0 ;
9288
9289 if(!PyArg_ParseTuple(args,(char *)"O:Strut_right_get",&obj0)) goto fail;
9290 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9291 result = (unsigned int) ((arg1)->right);
9292
9293 resultobj = PyInt_FromLong((long)result);
9294 return resultobj;
9295 fail:
9296 return NULL;
9297 }
9298
9299
9300 static PyObject *_wrap_new_Strut__SWIG_0(PyObject *self, PyObject *args) {
9301 PyObject *resultobj;
9302 otk::Strut *result;
9303
9304 if(!PyArg_ParseTuple(args,(char *)":new_Strut")) goto fail;
9305 result = (otk::Strut *)new otk::Strut();
9306
9307 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Strut, 1);
9308 return resultobj;
9309 fail:
9310 return NULL;
9311 }
9312
9313
9314 static PyObject *_wrap_new_Strut__SWIG_1(PyObject *self, PyObject *args) {
9315 PyObject *resultobj;
9316 int arg1 ;
9317 int arg2 ;
9318 int arg3 ;
9319 int arg4 ;
9320 otk::Strut *result;
9321
9322 if(!PyArg_ParseTuple(args,(char *)"iiii:new_Strut",&arg1,&arg2,&arg3,&arg4)) goto fail;
9323 result = (otk::Strut *)new otk::Strut(arg1,arg2,arg3,arg4);
9324
9325 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Strut, 1);
9326 return resultobj;
9327 fail:
9328 return NULL;
9329 }
9330
9331
9332 static PyObject *_wrap_new_Strut(PyObject *self, PyObject *args) {
9333 int argc;
9334 PyObject *argv[5];
9335 int ii;
9336
9337 argc = PyObject_Length(args);
9338 for (ii = 0; (ii < argc) && (ii < 4); ii++) {
9339 argv[ii] = PyTuple_GetItem(args,ii);
9340 }
9341 if (argc == 0) {
9342 return _wrap_new_Strut__SWIG_0(self,args);
9343 }
9344 if (argc == 4) {
9345 int _v;
9346 {
9347 _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0;
9348 }
9349 if (_v) {
9350 {
9351 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
9352 }
9353 if (_v) {
9354 {
9355 _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
9356 }
9357 if (_v) {
9358 {
9359 _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
9360 }
9361 if (_v) {
9362 return _wrap_new_Strut__SWIG_1(self,args);
9363 }
9364 }
9365 }
9366 }
9367 }
9368
9369 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_Strut'");
9370 return NULL;
9371 }
9372
9373
9374 static PyObject *_wrap_delete_Strut(PyObject *self, PyObject *args) {
9375 PyObject *resultobj;
9376 otk::Strut *arg1 = (otk::Strut *) 0 ;
9377 PyObject * obj0 = 0 ;
9378
9379 if(!PyArg_ParseTuple(args,(char *)"O:delete_Strut",&obj0)) goto fail;
9380 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9381 delete arg1;
9382
9383 Py_INCREF(Py_None); resultobj = Py_None;
9384 return resultobj;
9385 fail:
9386 return NULL;
9387 }
9388
9389
9390 static PyObject * Strut_swigregister(PyObject *self, PyObject *args) {
9391 PyObject *obj;
9392 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
9393 SWIG_TypeClientData(SWIGTYPE_p_otk__Strut, obj);
9394 Py_INCREF(obj);
9395 return Py_BuildValue((char *)"");
9396 }
9397 static PyObject *_wrap_PixmapMask_mask_set(PyObject *self, PyObject *args) {
9398 PyObject *resultobj;
9399 otk::PixmapMask *arg1 = (otk::PixmapMask *) 0 ;
9400 Pixmap arg2 ;
9401 Pixmap *argp2 ;
9402 PyObject * obj0 = 0 ;
9403 PyObject * obj1 = 0 ;
9404
9405 if(!PyArg_ParseTuple(args,(char *)"OO:PixmapMask_mask_set",&obj0,&obj1)) goto fail;
9406 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9407 if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Pixmap,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
9408 arg2 = *argp2;
9409 if (arg1) (arg1)->mask = arg2;
9410
9411 Py_INCREF(Py_None); resultobj = Py_None;
9412 return resultobj;
9413 fail:
9414 return NULL;
9415 }
9416
9417
9418 static PyObject *_wrap_PixmapMask_mask_get(PyObject *self, PyObject *args) {
9419 PyObject *resultobj;
9420 otk::PixmapMask *arg1 = (otk::PixmapMask *) 0 ;
9421 Pixmap result;
9422 PyObject * obj0 = 0 ;
9423
9424 if(!PyArg_ParseTuple(args,(char *)"O:PixmapMask_mask_get",&obj0)) goto fail;
9425 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9426 result = ((arg1)->mask);
9427
9428 {
9429 Pixmap * resultptr;
9430 resultptr = new Pixmap((Pixmap &) result);
9431 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Pixmap, 1);
9432 }
9433 return resultobj;
9434 fail:
9435 return NULL;
9436 }
9437
9438
9439 static PyObject *_wrap_PixmapMask_w_set(PyObject *self, PyObject *args) {
9440 PyObject *resultobj;
9441 otk::PixmapMask *arg1 = (otk::PixmapMask *) 0 ;
9442 unsigned int arg2 ;
9443 PyObject * obj0 = 0 ;
9444 PyObject * obj1 = 0 ;
9445
9446 if(!PyArg_ParseTuple(args,(char *)"OO:PixmapMask_w_set",&obj0,&obj1)) goto fail;
9447 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9448 arg2 = (unsigned int) PyInt_AsLong(obj1);
9449 if (PyErr_Occurred()) SWIG_fail;
9450 if (arg1) (arg1)->w = arg2;
9451
9452 Py_INCREF(Py_None); resultobj = Py_None;
9453 return resultobj;
9454 fail:
9455 return NULL;
9456 }
9457
9458
9459 static PyObject *_wrap_PixmapMask_w_get(PyObject *self, PyObject *args) {
9460 PyObject *resultobj;
9461 otk::PixmapMask *arg1 = (otk::PixmapMask *) 0 ;
9462 unsigned int result;
9463 PyObject * obj0 = 0 ;
9464
9465 if(!PyArg_ParseTuple(args,(char *)"O:PixmapMask_w_get",&obj0)) goto fail;
9466 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9467 result = (unsigned int) ((arg1)->w);
9468
9469 resultobj = PyInt_FromLong((long)result);
9470 return resultobj;
9471 fail:
9472 return NULL;
9473 }
9474
9475
9476 static PyObject *_wrap_PixmapMask_h_set(PyObject *self, PyObject *args) {
9477 PyObject *resultobj;
9478 otk::PixmapMask *arg1 = (otk::PixmapMask *) 0 ;
9479 unsigned int arg2 ;
9480 PyObject * obj0 = 0 ;
9481 PyObject * obj1 = 0 ;
9482
9483 if(!PyArg_ParseTuple(args,(char *)"OO:PixmapMask_h_set",&obj0,&obj1)) goto fail;
9484 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9485 arg2 = (unsigned int) PyInt_AsLong(obj1);
9486 if (PyErr_Occurred()) SWIG_fail;
9487 if (arg1) (arg1)->h = arg2;
9488
9489 Py_INCREF(Py_None); resultobj = Py_None;
9490 return resultobj;
9491 fail:
9492 return NULL;
9493 }
9494
9495
9496 static PyObject *_wrap_PixmapMask_h_get(PyObject *self, PyObject *args) {
9497 PyObject *resultobj;
9498 otk::PixmapMask *arg1 = (otk::PixmapMask *) 0 ;
9499 unsigned int result;
9500 PyObject * obj0 = 0 ;
9501
9502 if(!PyArg_ParseTuple(args,(char *)"O:PixmapMask_h_get",&obj0)) goto fail;
9503 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9504 result = (unsigned int) ((arg1)->h);
9505
9506 resultobj = PyInt_FromLong((long)result);
9507 return resultobj;
9508 fail:
9509 return NULL;
9510 }
9511
9512
9513 static PyObject *_wrap_new_PixmapMask(PyObject *self, PyObject *args) {
9514 PyObject *resultobj;
9515 otk::PixmapMask *result;
9516
9517 if(!PyArg_ParseTuple(args,(char *)":new_PixmapMask")) goto fail;
9518 result = (otk::PixmapMask *)new otk::PixmapMask();
9519
9520 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 1);
9521 return resultobj;
9522 fail:
9523 return NULL;
9524 }
9525
9526
9527 static PyObject *_wrap_delete_PixmapMask(PyObject *self, PyObject *args) {
9528 PyObject *resultobj;
9529 otk::PixmapMask *arg1 = (otk::PixmapMask *) 0 ;
9530 PyObject * obj0 = 0 ;
9531
9532 if(!PyArg_ParseTuple(args,(char *)"O:delete_PixmapMask",&obj0)) goto fail;
9533 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9534 delete arg1;
9535
9536 Py_INCREF(Py_None); resultobj = Py_None;
9537 return resultobj;
9538 fail:
9539 return NULL;
9540 }
9541
9542
9543 static PyObject * PixmapMask_swigregister(PyObject *self, PyObject *args) {
9544 PyObject *obj;
9545 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
9546 SWIG_TypeClientData(SWIGTYPE_p_otk__PixmapMask, obj);
9547 Py_INCREF(obj);
9548 return Py_BuildValue((char *)"");
9549 }
9550 static PyObject *_wrap_Style_image_control_set(PyObject *self, PyObject *args) {
9551 PyObject *resultobj;
9552 otk::Style *arg1 = (otk::Style *) 0 ;
9553 otk::BImageControl *arg2 = (otk::BImageControl *) 0 ;
9554 PyObject * obj0 = 0 ;
9555 PyObject * obj1 = 0 ;
9556
9557 if(!PyArg_ParseTuple(args,(char *)"OO:Style_image_control_set",&obj0,&obj1)) goto fail;
9558 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9559 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | SWIG_POINTER_DISOWN )) == -1) SWIG_fail;
9560 if (arg1) (arg1)->image_control = arg2;
9561
9562 Py_INCREF(Py_None); resultobj = Py_None;
9563 return resultobj;
9564 fail:
9565 return NULL;
9566 }
9567
9568
9569 static PyObject *_wrap_Style_image_control_get(PyObject *self, PyObject *args) {
9570 PyObject *resultobj;
9571 otk::Style *arg1 = (otk::Style *) 0 ;
9572 otk::BImageControl *result;
9573 PyObject * obj0 = 0 ;
9574
9575 if(!PyArg_ParseTuple(args,(char *)"O:Style_image_control_get",&obj0)) goto fail;
9576 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9577 result = (otk::BImageControl *) ((arg1)->image_control);
9578
9579 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BImageControl, 0);
9580 return resultobj;
9581 fail:
9582 return NULL;
9583 }
9584
9585
9586 static PyObject *_wrap_Style_l_text_focus_set(PyObject *self, PyObject *args) {
9587 PyObject *resultobj;
9588 otk::Style *arg1 = (otk::Style *) 0 ;
9589 otk::BColor *arg2 = (otk::BColor *) 0 ;
9590 PyObject * obj0 = 0 ;
9591 PyObject * obj1 = 0 ;
9592
9593 if(!PyArg_ParseTuple(args,(char *)"OO:Style_l_text_focus_set",&obj0,&obj1)) goto fail;
9594 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9595 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9596 if (arg1) (arg1)->l_text_focus = *arg2;
9597
9598 Py_INCREF(Py_None); resultobj = Py_None;
9599 return resultobj;
9600 fail:
9601 return NULL;
9602 }
9603
9604
9605 static PyObject *_wrap_Style_l_text_focus_get(PyObject *self, PyObject *args) {
9606 PyObject *resultobj;
9607 otk::Style *arg1 = (otk::Style *) 0 ;
9608 otk::BColor *result;
9609 PyObject * obj0 = 0 ;
9610
9611 if(!PyArg_ParseTuple(args,(char *)"O:Style_l_text_focus_get",&obj0)) goto fail;
9612 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9613 result = (otk::BColor *)& ((arg1)->l_text_focus);
9614
9615 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
9616 return resultobj;
9617 fail:
9618 return NULL;
9619 }
9620
9621
9622 static PyObject *_wrap_Style_l_text_unfocus_set(PyObject *self, PyObject *args) {
9623 PyObject *resultobj;
9624 otk::Style *arg1 = (otk::Style *) 0 ;
9625 otk::BColor *arg2 = (otk::BColor *) 0 ;
9626 PyObject * obj0 = 0 ;
9627 PyObject * obj1 = 0 ;
9628
9629 if(!PyArg_ParseTuple(args,(char *)"OO:Style_l_text_unfocus_set",&obj0,&obj1)) goto fail;
9630 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9631 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9632 if (arg1) (arg1)->l_text_unfocus = *arg2;
9633
9634 Py_INCREF(Py_None); resultobj = Py_None;
9635 return resultobj;
9636 fail:
9637 return NULL;
9638 }
9639
9640
9641 static PyObject *_wrap_Style_l_text_unfocus_get(PyObject *self, PyObject *args) {
9642 PyObject *resultobj;
9643 otk::Style *arg1 = (otk::Style *) 0 ;
9644 otk::BColor *result;
9645 PyObject * obj0 = 0 ;
9646
9647 if(!PyArg_ParseTuple(args,(char *)"O:Style_l_text_unfocus_get",&obj0)) goto fail;
9648 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9649 result = (otk::BColor *)& ((arg1)->l_text_unfocus);
9650
9651 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
9652 return resultobj;
9653 fail:
9654 return NULL;
9655 }
9656
9657
9658 static PyObject *_wrap_Style_b_pic_focus_set(PyObject *self, PyObject *args) {
9659 PyObject *resultobj;
9660 otk::Style *arg1 = (otk::Style *) 0 ;
9661 otk::BColor *arg2 = (otk::BColor *) 0 ;
9662 PyObject * obj0 = 0 ;
9663 PyObject * obj1 = 0 ;
9664
9665 if(!PyArg_ParseTuple(args,(char *)"OO:Style_b_pic_focus_set",&obj0,&obj1)) goto fail;
9666 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9667 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9668 if (arg1) (arg1)->b_pic_focus = *arg2;
9669
9670 Py_INCREF(Py_None); resultobj = Py_None;
9671 return resultobj;
9672 fail:
9673 return NULL;
9674 }
9675
9676
9677 static PyObject *_wrap_Style_b_pic_focus_get(PyObject *self, PyObject *args) {
9678 PyObject *resultobj;
9679 otk::Style *arg1 = (otk::Style *) 0 ;
9680 otk::BColor *result;
9681 PyObject * obj0 = 0 ;
9682
9683 if(!PyArg_ParseTuple(args,(char *)"O:Style_b_pic_focus_get",&obj0)) goto fail;
9684 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9685 result = (otk::BColor *)& ((arg1)->b_pic_focus);
9686
9687 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
9688 return resultobj;
9689 fail:
9690 return NULL;
9691 }
9692
9693
9694 static PyObject *_wrap_Style_b_pic_unfocus_set(PyObject *self, PyObject *args) {
9695 PyObject *resultobj;
9696 otk::Style *arg1 = (otk::Style *) 0 ;
9697 otk::BColor *arg2 = (otk::BColor *) 0 ;
9698 PyObject * obj0 = 0 ;
9699 PyObject * obj1 = 0 ;
9700
9701 if(!PyArg_ParseTuple(args,(char *)"OO:Style_b_pic_unfocus_set",&obj0,&obj1)) goto fail;
9702 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9703 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9704 if (arg1) (arg1)->b_pic_unfocus = *arg2;
9705
9706 Py_INCREF(Py_None); resultobj = Py_None;
9707 return resultobj;
9708 fail:
9709 return NULL;
9710 }
9711
9712
9713 static PyObject *_wrap_Style_b_pic_unfocus_get(PyObject *self, PyObject *args) {
9714 PyObject *resultobj;
9715 otk::Style *arg1 = (otk::Style *) 0 ;
9716 otk::BColor *result;
9717 PyObject * obj0 = 0 ;
9718
9719 if(!PyArg_ParseTuple(args,(char *)"O:Style_b_pic_unfocus_get",&obj0)) goto fail;
9720 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9721 result = (otk::BColor *)& ((arg1)->b_pic_unfocus);
9722
9723 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
9724 return resultobj;
9725 fail:
9726 return NULL;
9727 }
9728
9729
9730 static PyObject *_wrap_Style_border_color_set(PyObject *self, PyObject *args) {
9731 PyObject *resultobj;
9732 otk::Style *arg1 = (otk::Style *) 0 ;
9733 otk::BColor *arg2 = (otk::BColor *) 0 ;
9734 PyObject * obj0 = 0 ;
9735 PyObject * obj1 = 0 ;
9736
9737 if(!PyArg_ParseTuple(args,(char *)"OO:Style_border_color_set",&obj0,&obj1)) goto fail;
9738 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9739 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9740 if (arg1) (arg1)->border_color = *arg2;
9741
9742 Py_INCREF(Py_None); resultobj = Py_None;
9743 return resultobj;
9744 fail:
9745 return NULL;
9746 }
9747
9748
9749 static PyObject *_wrap_Style_border_color_get(PyObject *self, PyObject *args) {
9750 PyObject *resultobj;
9751 otk::Style *arg1 = (otk::Style *) 0 ;
9752 otk::BColor *result;
9753 PyObject * obj0 = 0 ;
9754
9755 if(!PyArg_ParseTuple(args,(char *)"O:Style_border_color_get",&obj0)) goto fail;
9756 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9757 result = (otk::BColor *)& ((arg1)->border_color);
9758
9759 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
9760 return resultobj;
9761 fail:
9762 return NULL;
9763 }
9764
9765
9766 static PyObject *_wrap_Style_font_set(PyObject *self, PyObject *args) {
9767 PyObject *resultobj;
9768 otk::Style *arg1 = (otk::Style *) 0 ;
9769 otk::BFont *arg2 = (otk::BFont *) 0 ;
9770 PyObject * obj0 = 0 ;
9771 PyObject * obj1 = 0 ;
9772
9773 if(!PyArg_ParseTuple(args,(char *)"OO:Style_font_set",&obj0,&obj1)) goto fail;
9774 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9775 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BFont,SWIG_POINTER_EXCEPTION | SWIG_POINTER_DISOWN )) == -1) SWIG_fail;
9776 if (arg1) (arg1)->font = arg2;
9777
9778 Py_INCREF(Py_None); resultobj = Py_None;
9779 return resultobj;
9780 fail:
9781 return NULL;
9782 }
9783
9784
9785 static PyObject *_wrap_Style_font_get(PyObject *self, PyObject *args) {
9786 PyObject *resultobj;
9787 otk::Style *arg1 = (otk::Style *) 0 ;
9788 otk::BFont *result;
9789 PyObject * obj0 = 0 ;
9790
9791 if(!PyArg_ParseTuple(args,(char *)"O:Style_font_get",&obj0)) goto fail;
9792 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9793 result = (otk::BFont *) ((arg1)->font);
9794
9795 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BFont, 0);
9796 return resultobj;
9797 fail:
9798 return NULL;
9799 }
9800
9801
9802 static PyObject *_wrap_Style_f_focus_set(PyObject *self, PyObject *args) {
9803 PyObject *resultobj;
9804 otk::Style *arg1 = (otk::Style *) 0 ;
9805 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
9806 PyObject * obj0 = 0 ;
9807 PyObject * obj1 = 0 ;
9808
9809 if(!PyArg_ParseTuple(args,(char *)"OO:Style_f_focus_set",&obj0,&obj1)) goto fail;
9810 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9811 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9812 if (arg1) (arg1)->f_focus = *arg2;
9813
9814 Py_INCREF(Py_None); resultobj = Py_None;
9815 return resultobj;
9816 fail:
9817 return NULL;
9818 }
9819
9820
9821 static PyObject *_wrap_Style_f_focus_get(PyObject *self, PyObject *args) {
9822 PyObject *resultobj;
9823 otk::Style *arg1 = (otk::Style *) 0 ;
9824 otk::BTexture *result;
9825 PyObject * obj0 = 0 ;
9826
9827 if(!PyArg_ParseTuple(args,(char *)"O:Style_f_focus_get",&obj0)) goto fail;
9828 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9829 result = (otk::BTexture *)& ((arg1)->f_focus);
9830
9831 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
9832 return resultobj;
9833 fail:
9834 return NULL;
9835 }
9836
9837
9838 static PyObject *_wrap_Style_f_unfocus_set(PyObject *self, PyObject *args) {
9839 PyObject *resultobj;
9840 otk::Style *arg1 = (otk::Style *) 0 ;
9841 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
9842 PyObject * obj0 = 0 ;
9843 PyObject * obj1 = 0 ;
9844
9845 if(!PyArg_ParseTuple(args,(char *)"OO:Style_f_unfocus_set",&obj0,&obj1)) goto fail;
9846 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9847 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9848 if (arg1) (arg1)->f_unfocus = *arg2;
9849
9850 Py_INCREF(Py_None); resultobj = Py_None;
9851 return resultobj;
9852 fail:
9853 return NULL;
9854 }
9855
9856
9857 static PyObject *_wrap_Style_f_unfocus_get(PyObject *self, PyObject *args) {
9858 PyObject *resultobj;
9859 otk::Style *arg1 = (otk::Style *) 0 ;
9860 otk::BTexture *result;
9861 PyObject * obj0 = 0 ;
9862
9863 if(!PyArg_ParseTuple(args,(char *)"O:Style_f_unfocus_get",&obj0)) goto fail;
9864 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9865 result = (otk::BTexture *)& ((arg1)->f_unfocus);
9866
9867 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
9868 return resultobj;
9869 fail:
9870 return NULL;
9871 }
9872
9873
9874 static PyObject *_wrap_Style_t_focus_set(PyObject *self, PyObject *args) {
9875 PyObject *resultobj;
9876 otk::Style *arg1 = (otk::Style *) 0 ;
9877 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
9878 PyObject * obj0 = 0 ;
9879 PyObject * obj1 = 0 ;
9880
9881 if(!PyArg_ParseTuple(args,(char *)"OO:Style_t_focus_set",&obj0,&obj1)) goto fail;
9882 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9883 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9884 if (arg1) (arg1)->t_focus = *arg2;
9885
9886 Py_INCREF(Py_None); resultobj = Py_None;
9887 return resultobj;
9888 fail:
9889 return NULL;
9890 }
9891
9892
9893 static PyObject *_wrap_Style_t_focus_get(PyObject *self, PyObject *args) {
9894 PyObject *resultobj;
9895 otk::Style *arg1 = (otk::Style *) 0 ;
9896 otk::BTexture *result;
9897 PyObject * obj0 = 0 ;
9898
9899 if(!PyArg_ParseTuple(args,(char *)"O:Style_t_focus_get",&obj0)) goto fail;
9900 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9901 result = (otk::BTexture *)& ((arg1)->t_focus);
9902
9903 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
9904 return resultobj;
9905 fail:
9906 return NULL;
9907 }
9908
9909
9910 static PyObject *_wrap_Style_t_unfocus_set(PyObject *self, PyObject *args) {
9911 PyObject *resultobj;
9912 otk::Style *arg1 = (otk::Style *) 0 ;
9913 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
9914 PyObject * obj0 = 0 ;
9915 PyObject * obj1 = 0 ;
9916
9917 if(!PyArg_ParseTuple(args,(char *)"OO:Style_t_unfocus_set",&obj0,&obj1)) goto fail;
9918 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9919 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9920 if (arg1) (arg1)->t_unfocus = *arg2;
9921
9922 Py_INCREF(Py_None); resultobj = Py_None;
9923 return resultobj;
9924 fail:
9925 return NULL;
9926 }
9927
9928
9929 static PyObject *_wrap_Style_t_unfocus_get(PyObject *self, PyObject *args) {
9930 PyObject *resultobj;
9931 otk::Style *arg1 = (otk::Style *) 0 ;
9932 otk::BTexture *result;
9933 PyObject * obj0 = 0 ;
9934
9935 if(!PyArg_ParseTuple(args,(char *)"O:Style_t_unfocus_get",&obj0)) goto fail;
9936 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9937 result = (otk::BTexture *)& ((arg1)->t_unfocus);
9938
9939 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
9940 return resultobj;
9941 fail:
9942 return NULL;
9943 }
9944
9945
9946 static PyObject *_wrap_Style_l_focus_set(PyObject *self, PyObject *args) {
9947 PyObject *resultobj;
9948 otk::Style *arg1 = (otk::Style *) 0 ;
9949 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
9950 PyObject * obj0 = 0 ;
9951 PyObject * obj1 = 0 ;
9952
9953 if(!PyArg_ParseTuple(args,(char *)"OO:Style_l_focus_set",&obj0,&obj1)) goto fail;
9954 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9955 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9956 if (arg1) (arg1)->l_focus = *arg2;
9957
9958 Py_INCREF(Py_None); resultobj = Py_None;
9959 return resultobj;
9960 fail:
9961 return NULL;
9962 }
9963
9964
9965 static PyObject *_wrap_Style_l_focus_get(PyObject *self, PyObject *args) {
9966 PyObject *resultobj;
9967 otk::Style *arg1 = (otk::Style *) 0 ;
9968 otk::BTexture *result;
9969 PyObject * obj0 = 0 ;
9970
9971 if(!PyArg_ParseTuple(args,(char *)"O:Style_l_focus_get",&obj0)) goto fail;
9972 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9973 result = (otk::BTexture *)& ((arg1)->l_focus);
9974
9975 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
9976 return resultobj;
9977 fail:
9978 return NULL;
9979 }
9980
9981
9982 static PyObject *_wrap_Style_l_unfocus_set(PyObject *self, PyObject *args) {
9983 PyObject *resultobj;
9984 otk::Style *arg1 = (otk::Style *) 0 ;
9985 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
9986 PyObject * obj0 = 0 ;
9987 PyObject * obj1 = 0 ;
9988
9989 if(!PyArg_ParseTuple(args,(char *)"OO:Style_l_unfocus_set",&obj0,&obj1)) goto fail;
9990 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9991 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9992 if (arg1) (arg1)->l_unfocus = *arg2;
9993
9994 Py_INCREF(Py_None); resultobj = Py_None;
9995 return resultobj;
9996 fail:
9997 return NULL;
9998 }
9999
10000
10001 static PyObject *_wrap_Style_l_unfocus_get(PyObject *self, PyObject *args) {
10002 PyObject *resultobj;
10003 otk::Style *arg1 = (otk::Style *) 0 ;
10004 otk::BTexture *result;
10005 PyObject * obj0 = 0 ;
10006
10007 if(!PyArg_ParseTuple(args,(char *)"O:Style_l_unfocus_get",&obj0)) goto fail;
10008 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10009 result = (otk::BTexture *)& ((arg1)->l_unfocus);
10010
10011 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10012 return resultobj;
10013 fail:
10014 return NULL;
10015 }
10016
10017
10018 static PyObject *_wrap_Style_h_focus_set(PyObject *self, PyObject *args) {
10019 PyObject *resultobj;
10020 otk::Style *arg1 = (otk::Style *) 0 ;
10021 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10022 PyObject * obj0 = 0 ;
10023 PyObject * obj1 = 0 ;
10024
10025 if(!PyArg_ParseTuple(args,(char *)"OO:Style_h_focus_set",&obj0,&obj1)) goto fail;
10026 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10027 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10028 if (arg1) (arg1)->h_focus = *arg2;
10029
10030 Py_INCREF(Py_None); resultobj = Py_None;
10031 return resultobj;
10032 fail:
10033 return NULL;
10034 }
10035
10036
10037 static PyObject *_wrap_Style_h_focus_get(PyObject *self, PyObject *args) {
10038 PyObject *resultobj;
10039 otk::Style *arg1 = (otk::Style *) 0 ;
10040 otk::BTexture *result;
10041 PyObject * obj0 = 0 ;
10042
10043 if(!PyArg_ParseTuple(args,(char *)"O:Style_h_focus_get",&obj0)) goto fail;
10044 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10045 result = (otk::BTexture *)& ((arg1)->h_focus);
10046
10047 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10048 return resultobj;
10049 fail:
10050 return NULL;
10051 }
10052
10053
10054 static PyObject *_wrap_Style_h_unfocus_set(PyObject *self, PyObject *args) {
10055 PyObject *resultobj;
10056 otk::Style *arg1 = (otk::Style *) 0 ;
10057 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10058 PyObject * obj0 = 0 ;
10059 PyObject * obj1 = 0 ;
10060
10061 if(!PyArg_ParseTuple(args,(char *)"OO:Style_h_unfocus_set",&obj0,&obj1)) goto fail;
10062 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10063 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10064 if (arg1) (arg1)->h_unfocus = *arg2;
10065
10066 Py_INCREF(Py_None); resultobj = Py_None;
10067 return resultobj;
10068 fail:
10069 return NULL;
10070 }
10071
10072
10073 static PyObject *_wrap_Style_h_unfocus_get(PyObject *self, PyObject *args) {
10074 PyObject *resultobj;
10075 otk::Style *arg1 = (otk::Style *) 0 ;
10076 otk::BTexture *result;
10077 PyObject * obj0 = 0 ;
10078
10079 if(!PyArg_ParseTuple(args,(char *)"O:Style_h_unfocus_get",&obj0)) goto fail;
10080 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10081 result = (otk::BTexture *)& ((arg1)->h_unfocus);
10082
10083 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10084 return resultobj;
10085 fail:
10086 return NULL;
10087 }
10088
10089
10090 static PyObject *_wrap_Style_b_focus_set(PyObject *self, PyObject *args) {
10091 PyObject *resultobj;
10092 otk::Style *arg1 = (otk::Style *) 0 ;
10093 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10094 PyObject * obj0 = 0 ;
10095 PyObject * obj1 = 0 ;
10096
10097 if(!PyArg_ParseTuple(args,(char *)"OO:Style_b_focus_set",&obj0,&obj1)) goto fail;
10098 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10099 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10100 if (arg1) (arg1)->b_focus = *arg2;
10101
10102 Py_INCREF(Py_None); resultobj = Py_None;
10103 return resultobj;
10104 fail:
10105 return NULL;
10106 }
10107
10108
10109 static PyObject *_wrap_Style_b_focus_get(PyObject *self, PyObject *args) {
10110 PyObject *resultobj;
10111 otk::Style *arg1 = (otk::Style *) 0 ;
10112 otk::BTexture *result;
10113 PyObject * obj0 = 0 ;
10114
10115 if(!PyArg_ParseTuple(args,(char *)"O:Style_b_focus_get",&obj0)) goto fail;
10116 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10117 result = (otk::BTexture *)& ((arg1)->b_focus);
10118
10119 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10120 return resultobj;
10121 fail:
10122 return NULL;
10123 }
10124
10125
10126 static PyObject *_wrap_Style_b_unfocus_set(PyObject *self, PyObject *args) {
10127 PyObject *resultobj;
10128 otk::Style *arg1 = (otk::Style *) 0 ;
10129 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10130 PyObject * obj0 = 0 ;
10131 PyObject * obj1 = 0 ;
10132
10133 if(!PyArg_ParseTuple(args,(char *)"OO:Style_b_unfocus_set",&obj0,&obj1)) goto fail;
10134 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10135 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10136 if (arg1) (arg1)->b_unfocus = *arg2;
10137
10138 Py_INCREF(Py_None); resultobj = Py_None;
10139 return resultobj;
10140 fail:
10141 return NULL;
10142 }
10143
10144
10145 static PyObject *_wrap_Style_b_unfocus_get(PyObject *self, PyObject *args) {
10146 PyObject *resultobj;
10147 otk::Style *arg1 = (otk::Style *) 0 ;
10148 otk::BTexture *result;
10149 PyObject * obj0 = 0 ;
10150
10151 if(!PyArg_ParseTuple(args,(char *)"O:Style_b_unfocus_get",&obj0)) goto fail;
10152 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10153 result = (otk::BTexture *)& ((arg1)->b_unfocus);
10154
10155 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10156 return resultobj;
10157 fail:
10158 return NULL;
10159 }
10160
10161
10162 static PyObject *_wrap_Style_b_pressed_focus_set(PyObject *self, PyObject *args) {
10163 PyObject *resultobj;
10164 otk::Style *arg1 = (otk::Style *) 0 ;
10165 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10166 PyObject * obj0 = 0 ;
10167 PyObject * obj1 = 0 ;
10168
10169 if(!PyArg_ParseTuple(args,(char *)"OO:Style_b_pressed_focus_set",&obj0,&obj1)) goto fail;
10170 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10171 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10172 if (arg1) (arg1)->b_pressed_focus = *arg2;
10173
10174 Py_INCREF(Py_None); resultobj = Py_None;
10175 return resultobj;
10176 fail:
10177 return NULL;
10178 }
10179
10180
10181 static PyObject *_wrap_Style_b_pressed_focus_get(PyObject *self, PyObject *args) {
10182 PyObject *resultobj;
10183 otk::Style *arg1 = (otk::Style *) 0 ;
10184 otk::BTexture *result;
10185 PyObject * obj0 = 0 ;
10186
10187 if(!PyArg_ParseTuple(args,(char *)"O:Style_b_pressed_focus_get",&obj0)) goto fail;
10188 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10189 result = (otk::BTexture *)& ((arg1)->b_pressed_focus);
10190
10191 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10192 return resultobj;
10193 fail:
10194 return NULL;
10195 }
10196
10197
10198 static PyObject *_wrap_Style_b_pressed_unfocus_set(PyObject *self, PyObject *args) {
10199 PyObject *resultobj;
10200 otk::Style *arg1 = (otk::Style *) 0 ;
10201 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10202 PyObject * obj0 = 0 ;
10203 PyObject * obj1 = 0 ;
10204
10205 if(!PyArg_ParseTuple(args,(char *)"OO:Style_b_pressed_unfocus_set",&obj0,&obj1)) goto fail;
10206 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10207 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10208 if (arg1) (arg1)->b_pressed_unfocus = *arg2;
10209
10210 Py_INCREF(Py_None); resultobj = Py_None;
10211 return resultobj;
10212 fail:
10213 return NULL;
10214 }
10215
10216
10217 static PyObject *_wrap_Style_b_pressed_unfocus_get(PyObject *self, PyObject *args) {
10218 PyObject *resultobj;
10219 otk::Style *arg1 = (otk::Style *) 0 ;
10220 otk::BTexture *result;
10221 PyObject * obj0 = 0 ;
10222
10223 if(!PyArg_ParseTuple(args,(char *)"O:Style_b_pressed_unfocus_get",&obj0)) goto fail;
10224 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10225 result = (otk::BTexture *)& ((arg1)->b_pressed_unfocus);
10226
10227 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10228 return resultobj;
10229 fail:
10230 return NULL;
10231 }
10232
10233
10234 static PyObject *_wrap_Style_g_focus_set(PyObject *self, PyObject *args) {
10235 PyObject *resultobj;
10236 otk::Style *arg1 = (otk::Style *) 0 ;
10237 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10238 PyObject * obj0 = 0 ;
10239 PyObject * obj1 = 0 ;
10240
10241 if(!PyArg_ParseTuple(args,(char *)"OO:Style_g_focus_set",&obj0,&obj1)) goto fail;
10242 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10243 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10244 if (arg1) (arg1)->g_focus = *arg2;
10245
10246 Py_INCREF(Py_None); resultobj = Py_None;
10247 return resultobj;
10248 fail:
10249 return NULL;
10250 }
10251
10252
10253 static PyObject *_wrap_Style_g_focus_get(PyObject *self, PyObject *args) {
10254 PyObject *resultobj;
10255 otk::Style *arg1 = (otk::Style *) 0 ;
10256 otk::BTexture *result;
10257 PyObject * obj0 = 0 ;
10258
10259 if(!PyArg_ParseTuple(args,(char *)"O:Style_g_focus_get",&obj0)) goto fail;
10260 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10261 result = (otk::BTexture *)& ((arg1)->g_focus);
10262
10263 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10264 return resultobj;
10265 fail:
10266 return NULL;
10267 }
10268
10269
10270 static PyObject *_wrap_Style_g_unfocus_set(PyObject *self, PyObject *args) {
10271 PyObject *resultobj;
10272 otk::Style *arg1 = (otk::Style *) 0 ;
10273 otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10274 PyObject * obj0 = 0 ;
10275 PyObject * obj1 = 0 ;
10276
10277 if(!PyArg_ParseTuple(args,(char *)"OO:Style_g_unfocus_set",&obj0,&obj1)) goto fail;
10278 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10279 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10280 if (arg1) (arg1)->g_unfocus = *arg2;
10281
10282 Py_INCREF(Py_None); resultobj = Py_None;
10283 return resultobj;
10284 fail:
10285 return NULL;
10286 }
10287
10288
10289 static PyObject *_wrap_Style_g_unfocus_get(PyObject *self, PyObject *args) {
10290 PyObject *resultobj;
10291 otk::Style *arg1 = (otk::Style *) 0 ;
10292 otk::BTexture *result;
10293 PyObject * obj0 = 0 ;
10294
10295 if(!PyArg_ParseTuple(args,(char *)"O:Style_g_unfocus_get",&obj0)) goto fail;
10296 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10297 result = (otk::BTexture *)& ((arg1)->g_unfocus);
10298
10299 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10300 return resultobj;
10301 fail:
10302 return NULL;
10303 }
10304
10305
10306 static PyObject *_wrap_Style_close_button_set(PyObject *self, PyObject *args) {
10307 PyObject *resultobj;
10308 otk::Style *arg1 = (otk::Style *) 0 ;
10309 otk::PixmapMask *arg2 = (otk::PixmapMask *) 0 ;
10310 PyObject * obj0 = 0 ;
10311 PyObject * obj1 = 0 ;
10312
10313 if(!PyArg_ParseTuple(args,(char *)"OO:Style_close_button_set",&obj0,&obj1)) goto fail;
10314 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10315 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10316 if (arg1) (arg1)->close_button = *arg2;
10317
10318 Py_INCREF(Py_None); resultobj = Py_None;
10319 return resultobj;
10320 fail:
10321 return NULL;
10322 }
10323
10324
10325 static PyObject *_wrap_Style_close_button_get(PyObject *self, PyObject *args) {
10326 PyObject *resultobj;
10327 otk::Style *arg1 = (otk::Style *) 0 ;
10328 otk::PixmapMask *result;
10329 PyObject * obj0 = 0 ;
10330
10331 if(!PyArg_ParseTuple(args,(char *)"O:Style_close_button_get",&obj0)) goto fail;
10332 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10333 result = (otk::PixmapMask *)& ((arg1)->close_button);
10334
10335 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
10336 return resultobj;
10337 fail:
10338 return NULL;
10339 }
10340
10341
10342 static PyObject *_wrap_Style_max_button_set(PyObject *self, PyObject *args) {
10343 PyObject *resultobj;
10344 otk::Style *arg1 = (otk::Style *) 0 ;
10345 otk::PixmapMask *arg2 = (otk::PixmapMask *) 0 ;
10346 PyObject * obj0 = 0 ;
10347 PyObject * obj1 = 0 ;
10348
10349 if(!PyArg_ParseTuple(args,(char *)"OO:Style_max_button_set",&obj0,&obj1)) goto fail;
10350 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10351 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10352 if (arg1) (arg1)->max_button = *arg2;
10353
10354 Py_INCREF(Py_None); resultobj = Py_None;
10355 return resultobj;
10356 fail:
10357 return NULL;
10358 }
10359
10360
10361 static PyObject *_wrap_Style_max_button_get(PyObject *self, PyObject *args) {
10362 PyObject *resultobj;
10363 otk::Style *arg1 = (otk::Style *) 0 ;
10364 otk::PixmapMask *result;
10365 PyObject * obj0 = 0 ;
10366
10367 if(!PyArg_ParseTuple(args,(char *)"O:Style_max_button_get",&obj0)) goto fail;
10368 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10369 result = (otk::PixmapMask *)& ((arg1)->max_button);
10370
10371 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
10372 return resultobj;
10373 fail:
10374 return NULL;
10375 }
10376
10377
10378 static PyObject *_wrap_Style_icon_button_set(PyObject *self, PyObject *args) {
10379 PyObject *resultobj;
10380 otk::Style *arg1 = (otk::Style *) 0 ;
10381 otk::PixmapMask *arg2 = (otk::PixmapMask *) 0 ;
10382 PyObject * obj0 = 0 ;
10383 PyObject * obj1 = 0 ;
10384
10385 if(!PyArg_ParseTuple(args,(char *)"OO:Style_icon_button_set",&obj0,&obj1)) goto fail;
10386 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10387 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10388 if (arg1) (arg1)->icon_button = *arg2;
10389
10390 Py_INCREF(Py_None); resultobj = Py_None;
10391 return resultobj;
10392 fail:
10393 return NULL;
10394 }
10395
10396
10397 static PyObject *_wrap_Style_icon_button_get(PyObject *self, PyObject *args) {
10398 PyObject *resultobj;
10399 otk::Style *arg1 = (otk::Style *) 0 ;
10400 otk::PixmapMask *result;
10401 PyObject * obj0 = 0 ;
10402
10403 if(!PyArg_ParseTuple(args,(char *)"O:Style_icon_button_get",&obj0)) goto fail;
10404 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10405 result = (otk::PixmapMask *)& ((arg1)->icon_button);
10406
10407 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
10408 return resultobj;
10409 fail:
10410 return NULL;
10411 }
10412
10413
10414 static PyObject *_wrap_Style_stick_button_set(PyObject *self, PyObject *args) {
10415 PyObject *resultobj;
10416 otk::Style *arg1 = (otk::Style *) 0 ;
10417 otk::PixmapMask *arg2 = (otk::PixmapMask *) 0 ;
10418 PyObject * obj0 = 0 ;
10419 PyObject * obj1 = 0 ;
10420
10421 if(!PyArg_ParseTuple(args,(char *)"OO:Style_stick_button_set",&obj0,&obj1)) goto fail;
10422 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10423 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10424 if (arg1) (arg1)->stick_button = *arg2;
10425
10426 Py_INCREF(Py_None); resultobj = Py_None;
10427 return resultobj;
10428 fail:
10429 return NULL;
10430 }
10431
10432
10433 static PyObject *_wrap_Style_stick_button_get(PyObject *self, PyObject *args) {
10434 PyObject *resultobj;
10435 otk::Style *arg1 = (otk::Style *) 0 ;
10436 otk::PixmapMask *result;
10437 PyObject * obj0 = 0 ;
10438
10439 if(!PyArg_ParseTuple(args,(char *)"O:Style_stick_button_get",&obj0)) goto fail;
10440 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10441 result = (otk::PixmapMask *)& ((arg1)->stick_button);
10442
10443 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
10444 return resultobj;
10445 fail:
10446 return NULL;
10447 }
10448
10449
10450 static PyObject *_wrap_Style_justify_set(PyObject *self, PyObject *args) {
10451 PyObject *resultobj;
10452 otk::Style *arg1 = (otk::Style *) 0 ;
10453 int arg2 ;
10454 PyObject * obj0 = 0 ;
10455
10456 if(!PyArg_ParseTuple(args,(char *)"Oi:Style_justify_set",&obj0,&arg2)) goto fail;
10457 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10458 if (arg1) (arg1)->justify = (otk::Style::TextJustify )arg2;
10459
10460 Py_INCREF(Py_None); resultobj = Py_None;
10461 return resultobj;
10462 fail:
10463 return NULL;
10464 }
10465
10466
10467 static PyObject *_wrap_Style_justify_get(PyObject *self, PyObject *args) {
10468 PyObject *resultobj;
10469 otk::Style *arg1 = (otk::Style *) 0 ;
10470 int result;
10471 PyObject * obj0 = 0 ;
10472
10473 if(!PyArg_ParseTuple(args,(char *)"O:Style_justify_get",&obj0)) goto fail;
10474 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10475 result = (int) ((arg1)->justify);
10476
10477 resultobj = PyInt_FromLong((long)result);
10478 return resultobj;
10479 fail:
10480 return NULL;
10481 }
10482
10483
10484 static PyObject *_wrap_Style_bullet_type_set(PyObject *self, PyObject *args) {
10485 PyObject *resultobj;
10486 otk::Style *arg1 = (otk::Style *) 0 ;
10487 int arg2 ;
10488 PyObject * obj0 = 0 ;
10489
10490 if(!PyArg_ParseTuple(args,(char *)"Oi:Style_bullet_type_set",&obj0,&arg2)) goto fail;
10491 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10492 if (arg1) (arg1)->bullet_type = (otk::Style::BulletType )arg2;
10493
10494 Py_INCREF(Py_None); resultobj = Py_None;
10495 return resultobj;
10496 fail:
10497 return NULL;
10498 }
10499
10500
10501 static PyObject *_wrap_Style_bullet_type_get(PyObject *self, PyObject *args) {
10502 PyObject *resultobj;
10503 otk::Style *arg1 = (otk::Style *) 0 ;
10504 int result;
10505 PyObject * obj0 = 0 ;
10506
10507 if(!PyArg_ParseTuple(args,(char *)"O:Style_bullet_type_get",&obj0)) goto fail;
10508 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10509 result = (int) ((arg1)->bullet_type);
10510
10511 resultobj = PyInt_FromLong((long)result);
10512 return resultobj;
10513 fail:
10514 return NULL;
10515 }
10516
10517
10518 static PyObject *_wrap_Style_handle_width_set(PyObject *self, PyObject *args) {
10519 PyObject *resultobj;
10520 otk::Style *arg1 = (otk::Style *) 0 ;
10521 unsigned int arg2 ;
10522 PyObject * obj0 = 0 ;
10523 PyObject * obj1 = 0 ;
10524
10525 if(!PyArg_ParseTuple(args,(char *)"OO:Style_handle_width_set",&obj0,&obj1)) goto fail;
10526 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10527 arg2 = (unsigned int) PyInt_AsLong(obj1);
10528 if (PyErr_Occurred()) SWIG_fail;
10529 if (arg1) (arg1)->handle_width = arg2;
10530
10531 Py_INCREF(Py_None); resultobj = Py_None;
10532 return resultobj;
10533 fail:
10534 return NULL;
10535 }
10536
10537
10538 static PyObject *_wrap_Style_handle_width_get(PyObject *self, PyObject *args) {
10539 PyObject *resultobj;
10540 otk::Style *arg1 = (otk::Style *) 0 ;
10541 unsigned int result;
10542 PyObject * obj0 = 0 ;
10543
10544 if(!PyArg_ParseTuple(args,(char *)"O:Style_handle_width_get",&obj0)) goto fail;
10545 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10546 result = (unsigned int) ((arg1)->handle_width);
10547
10548 resultobj = PyInt_FromLong((long)result);
10549 return resultobj;
10550 fail:
10551 return NULL;
10552 }
10553
10554
10555 static PyObject *_wrap_Style_bevel_width_set(PyObject *self, PyObject *args) {
10556 PyObject *resultobj;
10557 otk::Style *arg1 = (otk::Style *) 0 ;
10558 unsigned int arg2 ;
10559 PyObject * obj0 = 0 ;
10560 PyObject * obj1 = 0 ;
10561
10562 if(!PyArg_ParseTuple(args,(char *)"OO:Style_bevel_width_set",&obj0,&obj1)) goto fail;
10563 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10564 arg2 = (unsigned int) PyInt_AsLong(obj1);
10565 if (PyErr_Occurred()) SWIG_fail;
10566 if (arg1) (arg1)->bevel_width = arg2;
10567
10568 Py_INCREF(Py_None); resultobj = Py_None;
10569 return resultobj;
10570 fail:
10571 return NULL;
10572 }
10573
10574
10575 static PyObject *_wrap_Style_bevel_width_get(PyObject *self, PyObject *args) {
10576 PyObject *resultobj;
10577 otk::Style *arg1 = (otk::Style *) 0 ;
10578 unsigned int result;
10579 PyObject * obj0 = 0 ;
10580
10581 if(!PyArg_ParseTuple(args,(char *)"O:Style_bevel_width_get",&obj0)) goto fail;
10582 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10583 result = (unsigned int) ((arg1)->bevel_width);
10584
10585 resultobj = PyInt_FromLong((long)result);
10586 return resultobj;
10587 fail:
10588 return NULL;
10589 }
10590
10591
10592 static PyObject *_wrap_Style_frame_width_set(PyObject *self, PyObject *args) {
10593 PyObject *resultobj;
10594 otk::Style *arg1 = (otk::Style *) 0 ;
10595 unsigned int arg2 ;
10596 PyObject * obj0 = 0 ;
10597 PyObject * obj1 = 0 ;
10598
10599 if(!PyArg_ParseTuple(args,(char *)"OO:Style_frame_width_set",&obj0,&obj1)) goto fail;
10600 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10601 arg2 = (unsigned int) PyInt_AsLong(obj1);
10602 if (PyErr_Occurred()) SWIG_fail;
10603 if (arg1) (arg1)->frame_width = arg2;
10604
10605 Py_INCREF(Py_None); resultobj = Py_None;
10606 return resultobj;
10607 fail:
10608 return NULL;
10609 }
10610
10611
10612 static PyObject *_wrap_Style_frame_width_get(PyObject *self, PyObject *args) {
10613 PyObject *resultobj;
10614 otk::Style *arg1 = (otk::Style *) 0 ;
10615 unsigned int result;
10616 PyObject * obj0 = 0 ;
10617
10618 if(!PyArg_ParseTuple(args,(char *)"O:Style_frame_width_get",&obj0)) goto fail;
10619 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10620 result = (unsigned int) ((arg1)->frame_width);
10621
10622 resultobj = PyInt_FromLong((long)result);
10623 return resultobj;
10624 fail:
10625 return NULL;
10626 }
10627
10628
10629 static PyObject *_wrap_Style_border_width_set(PyObject *self, PyObject *args) {
10630 PyObject *resultobj;
10631 otk::Style *arg1 = (otk::Style *) 0 ;
10632 unsigned int arg2 ;
10633 PyObject * obj0 = 0 ;
10634 PyObject * obj1 = 0 ;
10635
10636 if(!PyArg_ParseTuple(args,(char *)"OO:Style_border_width_set",&obj0,&obj1)) goto fail;
10637 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10638 arg2 = (unsigned int) PyInt_AsLong(obj1);
10639 if (PyErr_Occurred()) SWIG_fail;
10640 if (arg1) (arg1)->border_width = arg2;
10641
10642 Py_INCREF(Py_None); resultobj = Py_None;
10643 return resultobj;
10644 fail:
10645 return NULL;
10646 }
10647
10648
10649 static PyObject *_wrap_Style_border_width_get(PyObject *self, PyObject *args) {
10650 PyObject *resultobj;
10651 otk::Style *arg1 = (otk::Style *) 0 ;
10652 unsigned int result;
10653 PyObject * obj0 = 0 ;
10654
10655 if(!PyArg_ParseTuple(args,(char *)"O:Style_border_width_get",&obj0)) goto fail;
10656 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10657 result = (unsigned int) ((arg1)->border_width);
10658
10659 resultobj = PyInt_FromLong((long)result);
10660 return resultobj;
10661 fail:
10662 return NULL;
10663 }
10664
10665
10666 static PyObject *_wrap_Style_screen_number_set(PyObject *self, PyObject *args) {
10667 PyObject *resultobj;
10668 otk::Style *arg1 = (otk::Style *) 0 ;
10669 unsigned int arg2 ;
10670 PyObject * obj0 = 0 ;
10671 PyObject * obj1 = 0 ;
10672
10673 if(!PyArg_ParseTuple(args,(char *)"OO:Style_screen_number_set",&obj0,&obj1)) goto fail;
10674 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10675 arg2 = (unsigned int) PyInt_AsLong(obj1);
10676 if (PyErr_Occurred()) SWIG_fail;
10677 if (arg1) (arg1)->screen_number = arg2;
10678
10679 Py_INCREF(Py_None); resultobj = Py_None;
10680 return resultobj;
10681 fail:
10682 return NULL;
10683 }
10684
10685
10686 static PyObject *_wrap_Style_screen_number_get(PyObject *self, PyObject *args) {
10687 PyObject *resultobj;
10688 otk::Style *arg1 = (otk::Style *) 0 ;
10689 unsigned int result;
10690 PyObject * obj0 = 0 ;
10691
10692 if(!PyArg_ParseTuple(args,(char *)"O:Style_screen_number_get",&obj0)) goto fail;
10693 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10694 result = (unsigned int) ((arg1)->screen_number);
10695
10696 resultobj = PyInt_FromLong((long)result);
10697 return resultobj;
10698 fail:
10699 return NULL;
10700 }
10701
10702
10703 static PyObject *_wrap_Style_shadow_fonts_set(PyObject *self, PyObject *args) {
10704 PyObject *resultobj;
10705 otk::Style *arg1 = (otk::Style *) 0 ;
10706 bool arg2 ;
10707 PyObject * obj0 = 0 ;
10708 PyObject * obj1 = 0 ;
10709
10710 if(!PyArg_ParseTuple(args,(char *)"OO:Style_shadow_fonts_set",&obj0,&obj1)) goto fail;
10711 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10712 arg2 = (bool) PyInt_AsLong(obj1);
10713 if (PyErr_Occurred()) SWIG_fail;
10714 if (arg1) (arg1)->shadow_fonts = arg2;
10715
10716 Py_INCREF(Py_None); resultobj = Py_None;
10717 return resultobj;
10718 fail:
10719 return NULL;
10720 }
10721
10722
10723 static PyObject *_wrap_Style_shadow_fonts_get(PyObject *self, PyObject *args) {
10724 PyObject *resultobj;
10725 otk::Style *arg1 = (otk::Style *) 0 ;
10726 bool result;
10727 PyObject * obj0 = 0 ;
10728
10729 if(!PyArg_ParseTuple(args,(char *)"O:Style_shadow_fonts_get",&obj0)) goto fail;
10730 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10731 result = (bool) ((arg1)->shadow_fonts);
10732
10733 resultobj = PyInt_FromLong((long)result);
10734 return resultobj;
10735 fail:
10736 return NULL;
10737 }
10738
10739
10740 static PyObject *_wrap_Style_aa_fonts_set(PyObject *self, PyObject *args) {
10741 PyObject *resultobj;
10742 otk::Style *arg1 = (otk::Style *) 0 ;
10743 bool arg2 ;
10744 PyObject * obj0 = 0 ;
10745 PyObject * obj1 = 0 ;
10746
10747 if(!PyArg_ParseTuple(args,(char *)"OO:Style_aa_fonts_set",&obj0,&obj1)) goto fail;
10748 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10749 arg2 = (bool) PyInt_AsLong(obj1);
10750 if (PyErr_Occurred()) SWIG_fail;
10751 if (arg1) (arg1)->aa_fonts = arg2;
10752
10753 Py_INCREF(Py_None); resultobj = Py_None;
10754 return resultobj;
10755 fail:
10756 return NULL;
10757 }
10758
10759
10760 static PyObject *_wrap_Style_aa_fonts_get(PyObject *self, PyObject *args) {
10761 PyObject *resultobj;
10762 otk::Style *arg1 = (otk::Style *) 0 ;
10763 bool result;
10764 PyObject * obj0 = 0 ;
10765
10766 if(!PyArg_ParseTuple(args,(char *)"O:Style_aa_fonts_get",&obj0)) goto fail;
10767 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10768 result = (bool) ((arg1)->aa_fonts);
10769
10770 resultobj = PyInt_FromLong((long)result);
10771 return resultobj;
10772 fail:
10773 return NULL;
10774 }
10775
10776
10777 static PyObject *_wrap_new_Style__SWIG_0(PyObject *self, PyObject *args) {
10778 PyObject *resultobj;
10779 otk::Style *result;
10780
10781 if(!PyArg_ParseTuple(args,(char *)":new_Style")) goto fail;
10782 result = (otk::Style *)new otk::Style();
10783
10784 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Style, 1);
10785 return resultobj;
10786 fail:
10787 return NULL;
10788 }
10789
10790
10791 static PyObject *_wrap_new_Style__SWIG_1(PyObject *self, PyObject *args) {
10792 PyObject *resultobj;
10793 otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
10794 otk::Style *result;
10795 PyObject * obj0 = 0 ;
10796
10797 if(!PyArg_ParseTuple(args,(char *)"O:new_Style",&obj0)) goto fail;
10798 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10799 result = (otk::Style *)new otk::Style(arg1);
10800
10801 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Style, 1);
10802 return resultobj;
10803 fail:
10804 return NULL;
10805 }
10806
10807
10808 static PyObject *_wrap_new_Style(PyObject *self, PyObject *args) {
10809 int argc;
10810 PyObject *argv[2];
10811 int ii;
10812
10813 argc = PyObject_Length(args);
10814 for (ii = 0; (ii < argc) && (ii < 1); ii++) {
10815 argv[ii] = PyTuple_GetItem(args,ii);
10816 }
10817 if (argc == 0) {
10818 return _wrap_new_Style__SWIG_0(self,args);
10819 }
10820 if (argc == 1) {
10821 int _v;
10822 {
10823 void *ptr;
10824 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__BImageControl, 0) == -1) {
10825 _v = 0;
10826 PyErr_Clear();
10827 }else {
10828 _v = 1;
10829 }
10830 }
10831 if (_v) {
10832 return _wrap_new_Style__SWIG_1(self,args);
10833 }
10834 }
10835
10836 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_Style'");
10837 return NULL;
10838 }
10839
10840
10841 static PyObject *_wrap_delete_Style(PyObject *self, PyObject *args) {
10842 PyObject *resultobj;
10843 otk::Style *arg1 = (otk::Style *) 0 ;
10844 PyObject * obj0 = 0 ;
10845
10846 if(!PyArg_ParseTuple(args,(char *)"O:delete_Style",&obj0)) goto fail;
10847 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10848 delete arg1;
10849
10850 Py_INCREF(Py_None); resultobj = Py_None;
10851 return resultobj;
10852 fail:
10853 return NULL;
10854 }
10855
10856
10857 static PyObject *_wrap_Style_readDatabaseMask(PyObject *self, PyObject *args) {
10858 PyObject *resultobj;
10859 otk::Style *arg1 = (otk::Style *) 0 ;
10860 std::string *arg2 = 0 ;
10861 otk::PixmapMask *arg3 = 0 ;
10862 otk::Configuration *arg4 = 0 ;
10863 std::string temp2 ;
10864 PyObject * obj0 = 0 ;
10865 PyObject * obj1 = 0 ;
10866 PyObject * obj2 = 0 ;
10867 PyObject * obj3 = 0 ;
10868
10869 if(!PyArg_ParseTuple(args,(char *)"OOOO:Style_readDatabaseMask",&obj0,&obj1,&obj2,&obj3)) goto fail;
10870 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10871 {
10872 if (PyString_Check(obj1)) {
10873 temp2 = std::string(PyString_AsString(obj1));
10874 arg2 = &temp2;
10875 }else {
10876 SWIG_exception(SWIG_TypeError, "string expected");
10877 }
10878 }
10879 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10880 if (arg3 == NULL) {
10881 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
10882 }
10883 if ((SWIG_ConvertPtr(obj3,(void **) &arg4, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10884 if (arg4 == NULL) {
10885 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
10886 }
10887 (arg1)->readDatabaseMask((std::string const &)*arg2,*arg3,(otk::Configuration const &)*arg4);
10888
10889 Py_INCREF(Py_None); resultobj = Py_None;
10890 return resultobj;
10891 fail:
10892 return NULL;
10893 }
10894
10895
10896 static PyObject *_wrap_Style_readDatabaseTexture(PyObject *self, PyObject *args) {
10897 PyObject *resultobj;
10898 otk::Style *arg1 = (otk::Style *) 0 ;
10899 std::string *arg2 = 0 ;
10900 std::string *arg3 = 0 ;
10901 otk::Configuration *arg4 = 0 ;
10902 bool arg5 = (bool) false ;
10903 otk::BTexture result;
10904 std::string temp2 ;
10905 std::string temp3 ;
10906 PyObject * obj0 = 0 ;
10907 PyObject * obj1 = 0 ;
10908 PyObject * obj2 = 0 ;
10909 PyObject * obj3 = 0 ;
10910 PyObject * obj4 = 0 ;
10911
10912 if(!PyArg_ParseTuple(args,(char *)"OOOO|O:Style_readDatabaseTexture",&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
10913 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10914 {
10915 if (PyString_Check(obj1)) {
10916 temp2 = std::string(PyString_AsString(obj1));
10917 arg2 = &temp2;
10918 }else {
10919 SWIG_exception(SWIG_TypeError, "string expected");
10920 }
10921 }
10922 {
10923 if (PyString_Check(obj2)) {
10924 temp3 = std::string(PyString_AsString(obj2));
10925 arg3 = &temp3;
10926 }else {
10927 SWIG_exception(SWIG_TypeError, "string expected");
10928 }
10929 }
10930 if ((SWIG_ConvertPtr(obj3,(void **) &arg4, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10931 if (arg4 == NULL) {
10932 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
10933 }
10934 if (obj4) {
10935 arg5 = (bool) PyInt_AsLong(obj4);
10936 if (PyErr_Occurred()) SWIG_fail;
10937 }
10938 result = (arg1)->readDatabaseTexture((std::string const &)*arg2,(std::string const &)*arg3,(otk::Configuration const &)*arg4,arg5);
10939
10940 {
10941 otk::BTexture * resultptr;
10942 resultptr = new otk::BTexture((otk::BTexture &) result);
10943 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_otk__BTexture, 1);
10944 }
10945 return resultobj;
10946 fail:
10947 return NULL;
10948 }
10949
10950
10951 static PyObject *_wrap_Style_readDatabaseColor(PyObject *self, PyObject *args) {
10952 PyObject *resultobj;
10953 otk::Style *arg1 = (otk::Style *) 0 ;
10954 std::string *arg2 = 0 ;
10955 std::string *arg3 = 0 ;
10956 otk::Configuration *arg4 = 0 ;
10957 otk::BColor result;
10958 std::string temp2 ;
10959 std::string temp3 ;
10960 PyObject * obj0 = 0 ;
10961 PyObject * obj1 = 0 ;
10962 PyObject * obj2 = 0 ;
10963 PyObject * obj3 = 0 ;
10964
10965 if(!PyArg_ParseTuple(args,(char *)"OOOO:Style_readDatabaseColor",&obj0,&obj1,&obj2,&obj3)) goto fail;
10966 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10967 {
10968 if (PyString_Check(obj1)) {
10969 temp2 = std::string(PyString_AsString(obj1));
10970 arg2 = &temp2;
10971 }else {
10972 SWIG_exception(SWIG_TypeError, "string expected");
10973 }
10974 }
10975 {
10976 if (PyString_Check(obj2)) {
10977 temp3 = std::string(PyString_AsString(obj2));
10978 arg3 = &temp3;
10979 }else {
10980 SWIG_exception(SWIG_TypeError, "string expected");
10981 }
10982 }
10983 if ((SWIG_ConvertPtr(obj3,(void **) &arg4, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10984 if (arg4 == NULL) {
10985 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
10986 }
10987 result = (arg1)->readDatabaseColor((std::string const &)*arg2,(std::string const &)*arg3,(otk::Configuration const &)*arg4);
10988
10989 {
10990 otk::BColor * resultptr;
10991 resultptr = new otk::BColor((otk::BColor &) result);
10992 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_otk__BColor, 1);
10993 }
10994 return resultobj;
10995 fail:
10996 return NULL;
10997 }
10998
10999
11000 static PyObject *_wrap_Style_readDatabaseFont(PyObject *self, PyObject *args) {
11001 PyObject *resultobj;
11002 otk::Style *arg1 = (otk::Style *) 0 ;
11003 std::string *arg2 = 0 ;
11004 otk::Configuration *arg3 = 0 ;
11005 otk::BFont *result;
11006 std::string temp2 ;
11007 PyObject * obj0 = 0 ;
11008 PyObject * obj1 = 0 ;
11009 PyObject * obj2 = 0 ;
11010
11011 if(!PyArg_ParseTuple(args,(char *)"OOO:Style_readDatabaseFont",&obj0,&obj1,&obj2)) goto fail;
11012 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11013 {
11014 if (PyString_Check(obj1)) {
11015 temp2 = std::string(PyString_AsString(obj1));
11016 arg2 = &temp2;
11017 }else {
11018 SWIG_exception(SWIG_TypeError, "string expected");
11019 }
11020 }
11021 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11022 if (arg3 == NULL) {
11023 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
11024 }
11025 result = (otk::BFont *)(arg1)->readDatabaseFont((std::string const &)*arg2,(otk::Configuration const &)*arg3);
11026
11027 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BFont, 0);
11028 return resultobj;
11029 fail:
11030 return NULL;
11031 }
11032
11033
11034 static PyObject *_wrap_Style_load(PyObject *self, PyObject *args) {
11035 PyObject *resultobj;
11036 otk::Style *arg1 = (otk::Style *) 0 ;
11037 otk::Configuration *arg2 = 0 ;
11038 PyObject * obj0 = 0 ;
11039 PyObject * obj1 = 0 ;
11040
11041 if(!PyArg_ParseTuple(args,(char *)"OO:Style_load",&obj0,&obj1)) goto fail;
11042 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11043 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11044 if (arg2 == NULL) {
11045 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
11046 }
11047 (arg1)->load((otk::Configuration const &)*arg2);
11048
11049 Py_INCREF(Py_None); resultobj = Py_None;
11050 return resultobj;
11051 fail:
11052 return NULL;
11053 }
11054
11055
11056 static PyObject *_wrap_Style_getCloseButtonMask(PyObject *self, PyObject *args) {
11057 PyObject *resultobj;
11058 otk::Style *arg1 = (otk::Style *) 0 ;
11059 otk::PixmapMask *result;
11060 PyObject * obj0 = 0 ;
11061
11062 if(!PyArg_ParseTuple(args,(char *)"O:Style_getCloseButtonMask",&obj0)) goto fail;
11063 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11064 result = (otk::PixmapMask *)(arg1)->getCloseButtonMask();
11065
11066 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
11067 return resultobj;
11068 fail:
11069 return NULL;
11070 }
11071
11072
11073 static PyObject *_wrap_Style_getMaximizeButtonMask(PyObject *self, PyObject *args) {
11074 PyObject *resultobj;
11075 otk::Style *arg1 = (otk::Style *) 0 ;
11076 otk::PixmapMask *result;
11077 PyObject * obj0 = 0 ;
11078
11079 if(!PyArg_ParseTuple(args,(char *)"O:Style_getMaximizeButtonMask",&obj0)) goto fail;
11080 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11081 result = (otk::PixmapMask *)(arg1)->getMaximizeButtonMask();
11082
11083 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
11084 return resultobj;
11085 fail:
11086 return NULL;
11087 }
11088
11089
11090 static PyObject *_wrap_Style_getIconifyButtonMask(PyObject *self, PyObject *args) {
11091 PyObject *resultobj;
11092 otk::Style *arg1 = (otk::Style *) 0 ;
11093 otk::PixmapMask *result;
11094 PyObject * obj0 = 0 ;
11095
11096 if(!PyArg_ParseTuple(args,(char *)"O:Style_getIconifyButtonMask",&obj0)) goto fail;
11097 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11098 result = (otk::PixmapMask *)(arg1)->getIconifyButtonMask();
11099
11100 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
11101 return resultobj;
11102 fail:
11103 return NULL;
11104 }
11105
11106
11107 static PyObject *_wrap_Style_getStickyButtonMask(PyObject *self, PyObject *args) {
11108 PyObject *resultobj;
11109 otk::Style *arg1 = (otk::Style *) 0 ;
11110 otk::PixmapMask *result;
11111 PyObject * obj0 = 0 ;
11112
11113 if(!PyArg_ParseTuple(args,(char *)"O:Style_getStickyButtonMask",&obj0)) goto fail;
11114 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11115 result = (otk::PixmapMask *)(arg1)->getStickyButtonMask();
11116
11117 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
11118 return resultobj;
11119 fail:
11120 return NULL;
11121 }
11122
11123
11124 static PyObject *_wrap_Style_getTextFocus(PyObject *self, PyObject *args) {
11125 PyObject *resultobj;
11126 otk::Style *arg1 = (otk::Style *) 0 ;
11127 otk::BColor *result;
11128 PyObject * obj0 = 0 ;
11129
11130 if(!PyArg_ParseTuple(args,(char *)"O:Style_getTextFocus",&obj0)) goto fail;
11131 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11132 result = (otk::BColor *)(arg1)->getTextFocus();
11133
11134 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11135 return resultobj;
11136 fail:
11137 return NULL;
11138 }
11139
11140
11141 static PyObject *_wrap_Style_getTextUnfocus(PyObject *self, PyObject *args) {
11142 PyObject *resultobj;
11143 otk::Style *arg1 = (otk::Style *) 0 ;
11144 otk::BColor *result;
11145 PyObject * obj0 = 0 ;
11146
11147 if(!PyArg_ParseTuple(args,(char *)"O:Style_getTextUnfocus",&obj0)) goto fail;
11148 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11149 result = (otk::BColor *)(arg1)->getTextUnfocus();
11150
11151 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11152 return resultobj;
11153 fail:
11154 return NULL;
11155 }
11156
11157
11158 static PyObject *_wrap_Style_getButtonPicFocus(PyObject *self, PyObject *args) {
11159 PyObject *resultobj;
11160 otk::Style *arg1 = (otk::Style *) 0 ;
11161 otk::BColor *result;
11162 PyObject * obj0 = 0 ;
11163
11164 if(!PyArg_ParseTuple(args,(char *)"O:Style_getButtonPicFocus",&obj0)) goto fail;
11165 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11166 result = (otk::BColor *)(arg1)->getButtonPicFocus();
11167
11168 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11169 return resultobj;
11170 fail:
11171 return NULL;
11172 }
11173
11174
11175 static PyObject *_wrap_Style_getButtonPicUnfocus(PyObject *self, PyObject *args) {
11176 PyObject *resultobj;
11177 otk::Style *arg1 = (otk::Style *) 0 ;
11178 otk::BColor *result;
11179 PyObject * obj0 = 0 ;
11180
11181 if(!PyArg_ParseTuple(args,(char *)"O:Style_getButtonPicUnfocus",&obj0)) goto fail;
11182 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11183 result = (otk::BColor *)(arg1)->getButtonPicUnfocus();
11184
11185 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11186 return resultobj;
11187 fail:
11188 return NULL;
11189 }
11190
11191
11192 static PyObject *_wrap_Style_getTitleFocus(PyObject *self, PyObject *args) {
11193 PyObject *resultobj;
11194 otk::Style *arg1 = (otk::Style *) 0 ;
11195 otk::BTexture *result;
11196 PyObject * obj0 = 0 ;
11197
11198 if(!PyArg_ParseTuple(args,(char *)"O:Style_getTitleFocus",&obj0)) goto fail;
11199 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11200 result = (otk::BTexture *)(arg1)->getTitleFocus();
11201
11202 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11203 return resultobj;
11204 fail:
11205 return NULL;
11206 }
11207
11208
11209 static PyObject *_wrap_Style_getTitleUnfocus(PyObject *self, PyObject *args) {
11210 PyObject *resultobj;
11211 otk::Style *arg1 = (otk::Style *) 0 ;
11212 otk::BTexture *result;
11213 PyObject * obj0 = 0 ;
11214
11215 if(!PyArg_ParseTuple(args,(char *)"O:Style_getTitleUnfocus",&obj0)) goto fail;
11216 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11217 result = (otk::BTexture *)(arg1)->getTitleUnfocus();
11218
11219 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11220 return resultobj;
11221 fail:
11222 return NULL;
11223 }
11224
11225
11226 static PyObject *_wrap_Style_getLabelFocus(PyObject *self, PyObject *args) {
11227 PyObject *resultobj;
11228 otk::Style *arg1 = (otk::Style *) 0 ;
11229 otk::BTexture *result;
11230 PyObject * obj0 = 0 ;
11231
11232 if(!PyArg_ParseTuple(args,(char *)"O:Style_getLabelFocus",&obj0)) goto fail;
11233 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11234 result = (otk::BTexture *)(arg1)->getLabelFocus();
11235
11236 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11237 return resultobj;
11238 fail:
11239 return NULL;
11240 }
11241
11242
11243 static PyObject *_wrap_Style_getLabelUnfocus(PyObject *self, PyObject *args) {
11244 PyObject *resultobj;
11245 otk::Style *arg1 = (otk::Style *) 0 ;
11246 otk::BTexture *result;
11247 PyObject * obj0 = 0 ;
11248
11249 if(!PyArg_ParseTuple(args,(char *)"O:Style_getLabelUnfocus",&obj0)) goto fail;
11250 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11251 result = (otk::BTexture *)(arg1)->getLabelUnfocus();
11252
11253 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11254 return resultobj;
11255 fail:
11256 return NULL;
11257 }
11258
11259
11260 static PyObject *_wrap_Style_getHandleFocus(PyObject *self, PyObject *args) {
11261 PyObject *resultobj;
11262 otk::Style *arg1 = (otk::Style *) 0 ;
11263 otk::BTexture *result;
11264 PyObject * obj0 = 0 ;
11265
11266 if(!PyArg_ParseTuple(args,(char *)"O:Style_getHandleFocus",&obj0)) goto fail;
11267 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11268 result = (otk::BTexture *)(arg1)->getHandleFocus();
11269
11270 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11271 return resultobj;
11272 fail:
11273 return NULL;
11274 }
11275
11276
11277 static PyObject *_wrap_Style_getHandleUnfocus(PyObject *self, PyObject *args) {
11278 PyObject *resultobj;
11279 otk::Style *arg1 = (otk::Style *) 0 ;
11280 otk::BTexture *result;
11281 PyObject * obj0 = 0 ;
11282
11283 if(!PyArg_ParseTuple(args,(char *)"O:Style_getHandleUnfocus",&obj0)) goto fail;
11284 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11285 result = (otk::BTexture *)(arg1)->getHandleUnfocus();
11286
11287 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11288 return resultobj;
11289 fail:
11290 return NULL;
11291 }
11292
11293
11294 static PyObject *_wrap_Style_getButtonFocus(PyObject *self, PyObject *args) {
11295 PyObject *resultobj;
11296 otk::Style *arg1 = (otk::Style *) 0 ;
11297 otk::BTexture *result;
11298 PyObject * obj0 = 0 ;
11299
11300 if(!PyArg_ParseTuple(args,(char *)"O:Style_getButtonFocus",&obj0)) goto fail;
11301 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11302 result = (otk::BTexture *)(arg1)->getButtonFocus();
11303
11304 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11305 return resultobj;
11306 fail:
11307 return NULL;
11308 }
11309
11310
11311 static PyObject *_wrap_Style_getButtonUnfocus(PyObject *self, PyObject *args) {
11312 PyObject *resultobj;
11313 otk::Style *arg1 = (otk::Style *) 0 ;
11314 otk::BTexture *result;
11315 PyObject * obj0 = 0 ;
11316
11317 if(!PyArg_ParseTuple(args,(char *)"O:Style_getButtonUnfocus",&obj0)) goto fail;
11318 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11319 result = (otk::BTexture *)(arg1)->getButtonUnfocus();
11320
11321 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11322 return resultobj;
11323 fail:
11324 return NULL;
11325 }
11326
11327
11328 static PyObject *_wrap_Style_getButtonPressedFocus(PyObject *self, PyObject *args) {
11329 PyObject *resultobj;
11330 otk::Style *arg1 = (otk::Style *) 0 ;
11331 otk::BTexture *result;
11332 PyObject * obj0 = 0 ;
11333
11334 if(!PyArg_ParseTuple(args,(char *)"O:Style_getButtonPressedFocus",&obj0)) goto fail;
11335 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11336 result = (otk::BTexture *)(arg1)->getButtonPressedFocus();
11337
11338 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11339 return resultobj;
11340 fail:
11341 return NULL;
11342 }
11343
11344
11345 static PyObject *_wrap_Style_getButtonPressedUnfocus(PyObject *self, PyObject *args) {
11346 PyObject *resultobj;
11347 otk::Style *arg1 = (otk::Style *) 0 ;
11348 otk::BTexture *result;
11349 PyObject * obj0 = 0 ;
11350
11351 if(!PyArg_ParseTuple(args,(char *)"O:Style_getButtonPressedUnfocus",&obj0)) goto fail;
11352 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11353 result = (otk::BTexture *)(arg1)->getButtonPressedUnfocus();
11354
11355 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11356 return resultobj;
11357 fail:
11358 return NULL;
11359 }
11360
11361
11362 static PyObject *_wrap_Style_getGripFocus(PyObject *self, PyObject *args) {
11363 PyObject *resultobj;
11364 otk::Style *arg1 = (otk::Style *) 0 ;
11365 otk::BTexture *result;
11366 PyObject * obj0 = 0 ;
11367
11368 if(!PyArg_ParseTuple(args,(char *)"O:Style_getGripFocus",&obj0)) goto fail;
11369 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11370 result = (otk::BTexture *)(arg1)->getGripFocus();
11371
11372 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11373 return resultobj;
11374 fail:
11375 return NULL;
11376 }
11377
11378
11379 static PyObject *_wrap_Style_getGripUnfocus(PyObject *self, PyObject *args) {
11380 PyObject *resultobj;
11381 otk::Style *arg1 = (otk::Style *) 0 ;
11382 otk::BTexture *result;
11383 PyObject * obj0 = 0 ;
11384
11385 if(!PyArg_ParseTuple(args,(char *)"O:Style_getGripUnfocus",&obj0)) goto fail;
11386 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11387 result = (otk::BTexture *)(arg1)->getGripUnfocus();
11388
11389 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11390 return resultobj;
11391 fail:
11392 return NULL;
11393 }
11394
11395
11396 static PyObject *_wrap_Style_getHandleWidth(PyObject *self, PyObject *args) {
11397 PyObject *resultobj;
11398 otk::Style *arg1 = (otk::Style *) 0 ;
11399 unsigned int result;
11400 PyObject * obj0 = 0 ;
11401
11402 if(!PyArg_ParseTuple(args,(char *)"O:Style_getHandleWidth",&obj0)) goto fail;
11403 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11404 result = (unsigned int)((otk::Style const *)arg1)->getHandleWidth();
11405
11406 resultobj = PyInt_FromLong((long)result);
11407 return resultobj;
11408 fail:
11409 return NULL;
11410 }
11411
11412
11413 static PyObject *_wrap_Style_getBevelWidth(PyObject *self, PyObject *args) {
11414 PyObject *resultobj;
11415 otk::Style *arg1 = (otk::Style *) 0 ;
11416 unsigned int result;
11417 PyObject * obj0 = 0 ;
11418
11419 if(!PyArg_ParseTuple(args,(char *)"O:Style_getBevelWidth",&obj0)) goto fail;
11420 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11421 result = (unsigned int)((otk::Style const *)arg1)->getBevelWidth();
11422
11423 resultobj = PyInt_FromLong((long)result);
11424 return resultobj;
11425 fail:
11426 return NULL;
11427 }
11428
11429
11430 static PyObject *_wrap_Style_getFrameWidth(PyObject *self, PyObject *args) {
11431 PyObject *resultobj;
11432 otk::Style *arg1 = (otk::Style *) 0 ;
11433 unsigned int result;
11434 PyObject * obj0 = 0 ;
11435
11436 if(!PyArg_ParseTuple(args,(char *)"O:Style_getFrameWidth",&obj0)) goto fail;
11437 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11438 result = (unsigned int)((otk::Style const *)arg1)->getFrameWidth();
11439
11440 resultobj = PyInt_FromLong((long)result);
11441 return resultobj;
11442 fail:
11443 return NULL;
11444 }
11445
11446
11447 static PyObject *_wrap_Style_getBorderWidth(PyObject *self, PyObject *args) {
11448 PyObject *resultobj;
11449 otk::Style *arg1 = (otk::Style *) 0 ;
11450 unsigned int result;
11451 PyObject * obj0 = 0 ;
11452
11453 if(!PyArg_ParseTuple(args,(char *)"O:Style_getBorderWidth",&obj0)) goto fail;
11454 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11455 result = (unsigned int)((otk::Style const *)arg1)->getBorderWidth();
11456
11457 resultobj = PyInt_FromLong((long)result);
11458 return resultobj;
11459 fail:
11460 return NULL;
11461 }
11462
11463
11464 static PyObject *_wrap_Style_getFont(PyObject *self, PyObject *args) {
11465 PyObject *resultobj;
11466 otk::Style *arg1 = (otk::Style *) 0 ;
11467 otk::BFont *result;
11468 PyObject * obj0 = 0 ;
11469
11470 if(!PyArg_ParseTuple(args,(char *)"O:Style_getFont",&obj0)) goto fail;
11471 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11472 result = (otk::BFont *)((otk::Style const *)arg1)->getFont();
11473
11474 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BFont, 0);
11475 return resultobj;
11476 fail:
11477 return NULL;
11478 }
11479
11480
11481 static PyObject *_wrap_Style_setShadowFonts(PyObject *self, PyObject *args) {
11482 PyObject *resultobj;
11483 otk::Style *arg1 = (otk::Style *) 0 ;
11484 bool arg2 ;
11485 PyObject * obj0 = 0 ;
11486 PyObject * obj1 = 0 ;
11487
11488 if(!PyArg_ParseTuple(args,(char *)"OO:Style_setShadowFonts",&obj0,&obj1)) goto fail;
11489 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11490 arg2 = (bool) PyInt_AsLong(obj1);
11491 if (PyErr_Occurred()) SWIG_fail;
11492 (arg1)->setShadowFonts(arg2);
11493
11494 Py_INCREF(Py_None); resultobj = Py_None;
11495 return resultobj;
11496 fail:
11497 return NULL;
11498 }
11499
11500
11501 static PyObject *_wrap_Style_hasShadowFonts(PyObject *self, PyObject *args) {
11502 PyObject *resultobj;
11503 otk::Style *arg1 = (otk::Style *) 0 ;
11504 bool result;
11505 PyObject * obj0 = 0 ;
11506
11507 if(!PyArg_ParseTuple(args,(char *)"O:Style_hasShadowFonts",&obj0)) goto fail;
11508 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11509 result = (bool)((otk::Style const *)arg1)->hasShadowFonts();
11510
11511 resultobj = PyInt_FromLong((long)result);
11512 return resultobj;
11513 fail:
11514 return NULL;
11515 }
11516
11517
11518 static PyObject *_wrap_Style_setAAFonts(PyObject *self, PyObject *args) {
11519 PyObject *resultobj;
11520 otk::Style *arg1 = (otk::Style *) 0 ;
11521 bool arg2 ;
11522 PyObject * obj0 = 0 ;
11523 PyObject * obj1 = 0 ;
11524
11525 if(!PyArg_ParseTuple(args,(char *)"OO:Style_setAAFonts",&obj0,&obj1)) goto fail;
11526 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11527 arg2 = (bool) PyInt_AsLong(obj1);
11528 if (PyErr_Occurred()) SWIG_fail;
11529 (arg1)->setAAFonts(arg2);
11530
11531 Py_INCREF(Py_None); resultobj = Py_None;
11532 return resultobj;
11533 fail:
11534 return NULL;
11535 }
11536
11537
11538 static PyObject *_wrap_Style_hasAAFonts(PyObject *self, PyObject *args) {
11539 PyObject *resultobj;
11540 otk::Style *arg1 = (otk::Style *) 0 ;
11541 bool result;
11542 PyObject * obj0 = 0 ;
11543
11544 if(!PyArg_ParseTuple(args,(char *)"O:Style_hasAAFonts",&obj0)) goto fail;
11545 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11546 result = (bool)((otk::Style const *)arg1)->hasAAFonts();
11547
11548 resultobj = PyInt_FromLong((long)result);
11549 return resultobj;
11550 fail:
11551 return NULL;
11552 }
11553
11554
11555 static PyObject *_wrap_Style_textJustify(PyObject *self, PyObject *args) {
11556 PyObject *resultobj;
11557 otk::Style *arg1 = (otk::Style *) 0 ;
11558 int result;
11559 PyObject * obj0 = 0 ;
11560
11561 if(!PyArg_ParseTuple(args,(char *)"O:Style_textJustify",&obj0)) goto fail;
11562 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11563 result = (int)(arg1)->textJustify();
11564
11565 resultobj = PyInt_FromLong((long)result);
11566 return resultobj;
11567 fail:
11568 return NULL;
11569 }
11570
11571
11572 static PyObject *_wrap_Style_bulletType(PyObject *self, PyObject *args) {
11573 PyObject *resultobj;
11574 otk::Style *arg1 = (otk::Style *) 0 ;
11575 int result;
11576 PyObject * obj0 = 0 ;
11577
11578 if(!PyArg_ParseTuple(args,(char *)"O:Style_bulletType",&obj0)) goto fail;
11579 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11580 result = (int)(arg1)->bulletType();
11581
11582 resultobj = PyInt_FromLong((long)result);
11583 return resultobj;
11584 fail:
11585 return NULL;
11586 }
11587
11588
11589 static PyObject *_wrap_Style_getBorderColor(PyObject *self, PyObject *args) {
11590 PyObject *resultobj;
11591 otk::Style *arg1 = (otk::Style *) 0 ;
11592 otk::BColor *result;
11593 PyObject * obj0 = 0 ;
11594
11595 if(!PyArg_ParseTuple(args,(char *)"O:Style_getBorderColor",&obj0)) goto fail;
11596 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11597 result = (otk::BColor *)((otk::Style const *)arg1)->getBorderColor();
11598
11599 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11600 return resultobj;
11601 fail:
11602 return NULL;
11603 }
11604
11605
11606 static PyObject *_wrap_Style_getFrameFocus(PyObject *self, PyObject *args) {
11607 PyObject *resultobj;
11608 otk::Style *arg1 = (otk::Style *) 0 ;
11609 otk::BTexture *result;
11610 PyObject * obj0 = 0 ;
11611
11612 if(!PyArg_ParseTuple(args,(char *)"O:Style_getFrameFocus",&obj0)) goto fail;
11613 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11614 result = (otk::BTexture *)((otk::Style const *)arg1)->getFrameFocus();
11615
11616 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11617 return resultobj;
11618 fail:
11619 return NULL;
11620 }
11621
11622
11623 static PyObject *_wrap_Style_getFrameUnfocus(PyObject *self, PyObject *args) {
11624 PyObject *resultobj;
11625 otk::Style *arg1 = (otk::Style *) 0 ;
11626 otk::BTexture *result;
11627 PyObject * obj0 = 0 ;
11628
11629 if(!PyArg_ParseTuple(args,(char *)"O:Style_getFrameUnfocus",&obj0)) goto fail;
11630 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11631 result = (otk::BTexture *)((otk::Style const *)arg1)->getFrameUnfocus();
11632
11633 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11634 return resultobj;
11635 fail:
11636 return NULL;
11637 }
11638
11639
11640 static PyObject *_wrap_Style_setImageControl(PyObject *self, PyObject *args) {
11641 PyObject *resultobj;
11642 otk::Style *arg1 = (otk::Style *) 0 ;
11643 otk::BImageControl *arg2 = (otk::BImageControl *) 0 ;
11644 PyObject * obj0 = 0 ;
11645 PyObject * obj1 = 0 ;
11646
11647 if(!PyArg_ParseTuple(args,(char *)"OO:Style_setImageControl",&obj0,&obj1)) goto fail;
11648 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11649 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11650 (arg1)->setImageControl(arg2);
11651
11652 Py_INCREF(Py_None); resultobj = Py_None;
11653 return resultobj;
11654 fail:
11655 return NULL;
11656 }
11657
11658
11659 static PyObject *_wrap_Style_getScreen(PyObject *self, PyObject *args) {
11660 PyObject *resultobj;
11661 otk::Style *arg1 = (otk::Style *) 0 ;
11662 unsigned int result;
11663 PyObject * obj0 = 0 ;
11664
11665 if(!PyArg_ParseTuple(args,(char *)"O:Style_getScreen",&obj0)) goto fail;
11666 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11667 result = (unsigned int)(arg1)->getScreen();
11668
11669 resultobj = PyInt_FromLong((long)result);
11670 return resultobj;
11671 fail:
11672 return NULL;
11673 }
11674
11675
11676 static PyObject * Style_swigregister(PyObject *self, PyObject *args) {
11677 PyObject *obj;
11678 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
11679 SWIG_TypeClientData(SWIGTYPE_p_otk__Style, obj);
11680 Py_INCREF(obj);
11681 return Py_BuildValue((char *)"");
11682 }
11683 static PyObject *_wrap_new_BTexture__SWIG_0(PyObject *self, PyObject *args) {
11684 PyObject *resultobj;
11685 unsigned int arg1 = (unsigned int) ~(0u) ;
11686 otk::BImageControl *arg2 = (otk::BImageControl *) 0 ;
11687 otk::BTexture *result;
11688 PyObject * obj0 = 0 ;
11689 PyObject * obj1 = 0 ;
11690
11691 if(!PyArg_ParseTuple(args,(char *)"|OO:new_BTexture",&obj0,&obj1)) goto fail;
11692 if (obj0) {
11693 arg1 = (unsigned int) PyInt_AsLong(obj0);
11694 if (PyErr_Occurred()) SWIG_fail;
11695 }
11696 if (obj1) {
11697 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11698 }
11699 result = (otk::BTexture *)new otk::BTexture(arg1,arg2);
11700
11701 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 1);
11702 return resultobj;
11703 fail:
11704 return NULL;
11705 }
11706
11707
11708 static PyObject *_wrap_new_BTexture__SWIG_1(PyObject *self, PyObject *args) {
11709 PyObject *resultobj;
11710 std::string *arg1 = 0 ;
11711 unsigned int arg2 = (unsigned int) ~(0u) ;
11712 otk::BImageControl *arg3 = (otk::BImageControl *) 0 ;
11713 otk::BTexture *result;
11714 std::string temp1 ;
11715 PyObject * obj0 = 0 ;
11716 PyObject * obj1 = 0 ;
11717 PyObject * obj2 = 0 ;
11718
11719 if(!PyArg_ParseTuple(args,(char *)"O|OO:new_BTexture",&obj0,&obj1,&obj2)) goto fail;
11720 {
11721 if (PyString_Check(obj0)) {
11722 temp1 = std::string(PyString_AsString(obj0));
11723 arg1 = &temp1;
11724 }else {
11725 SWIG_exception(SWIG_TypeError, "string expected");
11726 }
11727 }
11728 if (obj1) {
11729 arg2 = (unsigned int) PyInt_AsLong(obj1);
11730 if (PyErr_Occurred()) SWIG_fail;
11731 }
11732 if (obj2) {
11733 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11734 }
11735 result = (otk::BTexture *)new otk::BTexture((std::string const &)*arg1,arg2,arg3);
11736
11737 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 1);
11738 return resultobj;
11739 fail:
11740 return NULL;
11741 }
11742
11743
11744 static PyObject *_wrap_new_BTexture(PyObject *self, PyObject *args) {
11745 int argc;
11746 PyObject *argv[4];
11747 int ii;
11748
11749 argc = PyObject_Length(args);
11750 for (ii = 0; (ii < argc) && (ii < 3); ii++) {
11751 argv[ii] = PyTuple_GetItem(args,ii);
11752 }
11753 if ((argc >= 0) && (argc <= 2)) {
11754 int _v;
11755 if (argc <= 0) {
11756 return _wrap_new_BTexture__SWIG_0(self,args);
11757 }
11758 {
11759 _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0;
11760 }
11761 if (_v) {
11762 if (argc <= 1) {
11763 return _wrap_new_BTexture__SWIG_0(self,args);
11764 }
11765 {
11766 void *ptr;
11767 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__BImageControl, 0) == -1) {
11768 _v = 0;
11769 PyErr_Clear();
11770 }else {
11771 _v = 1;
11772 }
11773 }
11774 if (_v) {
11775 return _wrap_new_BTexture__SWIG_0(self,args);
11776 }
11777 }
11778 }
11779 if ((argc >= 1) && (argc <= 3)) {
11780 int _v;
11781 {
11782 _v = PyString_Check(argv[0]) ? 1 : 0;
11783 }
11784 if (_v) {
11785 if (argc <= 1) {
11786 return _wrap_new_BTexture__SWIG_1(self,args);
11787 }
11788 {
11789 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
11790 }
11791 if (_v) {
11792 if (argc <= 2) {
11793 return _wrap_new_BTexture__SWIG_1(self,args);
11794 }
11795 {
11796 void *ptr;
11797 if (SWIG_ConvertPtr(argv[2], (void **) &ptr, SWIGTYPE_p_otk__BImageControl, 0) == -1) {
11798 _v = 0;
11799 PyErr_Clear();
11800 }else {
11801 _v = 1;
11802 }
11803 }
11804 if (_v) {
11805 return _wrap_new_BTexture__SWIG_1(self,args);
11806 }
11807 }
11808 }
11809 }
11810
11811 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_BTexture'");
11812 return NULL;
11813 }
11814
11815
11816 static PyObject *_wrap_BTexture_setColor(PyObject *self, PyObject *args) {
11817 PyObject *resultobj;
11818 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11819 otk::BColor *arg2 = 0 ;
11820 PyObject * obj0 = 0 ;
11821 PyObject * obj1 = 0 ;
11822
11823 if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_setColor",&obj0,&obj1)) goto fail;
11824 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11825 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11826 if (arg2 == NULL) {
11827 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
11828 }
11829 (arg1)->setColor((otk::BColor const &)*arg2);
11830
11831 Py_INCREF(Py_None); resultobj = Py_None;
11832 return resultobj;
11833 fail:
11834 return NULL;
11835 }
11836
11837
11838 static PyObject *_wrap_BTexture_setColorTo(PyObject *self, PyObject *args) {
11839 PyObject *resultobj;
11840 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11841 otk::BColor *arg2 = 0 ;
11842 PyObject * obj0 = 0 ;
11843 PyObject * obj1 = 0 ;
11844
11845 if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_setColorTo",&obj0,&obj1)) goto fail;
11846 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11847 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11848 if (arg2 == NULL) {
11849 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
11850 }
11851 (arg1)->setColorTo((otk::BColor const &)*arg2);
11852
11853 Py_INCREF(Py_None); resultobj = Py_None;
11854 return resultobj;
11855 fail:
11856 return NULL;
11857 }
11858
11859
11860 static PyObject *_wrap_BTexture_setBorderColor(PyObject *self, PyObject *args) {
11861 PyObject *resultobj;
11862 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11863 otk::BColor *arg2 = 0 ;
11864 PyObject * obj0 = 0 ;
11865 PyObject * obj1 = 0 ;
11866
11867 if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_setBorderColor",&obj0,&obj1)) goto fail;
11868 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11869 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11870 if (arg2 == NULL) {
11871 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
11872 }
11873 (arg1)->setBorderColor((otk::BColor const &)*arg2);
11874
11875 Py_INCREF(Py_None); resultobj = Py_None;
11876 return resultobj;
11877 fail:
11878 return NULL;
11879 }
11880
11881
11882 static PyObject *_wrap_BTexture_color(PyObject *self, PyObject *args) {
11883 PyObject *resultobj;
11884 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11885 otk::BColor *result;
11886 PyObject * obj0 = 0 ;
11887
11888 if(!PyArg_ParseTuple(args,(char *)"O:BTexture_color",&obj0)) goto fail;
11889 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11890 {
11891 otk::BColor const &_result_ref = ((otk::BTexture const *)arg1)->color();
11892 result = (otk::BColor *) &_result_ref;
11893 }
11894
11895 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11896 return resultobj;
11897 fail:
11898 return NULL;
11899 }
11900
11901
11902 static PyObject *_wrap_BTexture_colorTo(PyObject *self, PyObject *args) {
11903 PyObject *resultobj;
11904 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11905 otk::BColor *result;
11906 PyObject * obj0 = 0 ;
11907
11908 if(!PyArg_ParseTuple(args,(char *)"O:BTexture_colorTo",&obj0)) goto fail;
11909 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11910 {
11911 otk::BColor const &_result_ref = ((otk::BTexture const *)arg1)->colorTo();
11912 result = (otk::BColor *) &_result_ref;
11913 }
11914
11915 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11916 return resultobj;
11917 fail:
11918 return NULL;
11919 }
11920
11921
11922 static PyObject *_wrap_BTexture_lightColor(PyObject *self, PyObject *args) {
11923 PyObject *resultobj;
11924 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11925 otk::BColor *result;
11926 PyObject * obj0 = 0 ;
11927
11928 if(!PyArg_ParseTuple(args,(char *)"O:BTexture_lightColor",&obj0)) goto fail;
11929 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11930 {
11931 otk::BColor const &_result_ref = ((otk::BTexture const *)arg1)->lightColor();
11932 result = (otk::BColor *) &_result_ref;
11933 }
11934
11935 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11936 return resultobj;
11937 fail:
11938 return NULL;
11939 }
11940
11941
11942 static PyObject *_wrap_BTexture_shadowColor(PyObject *self, PyObject *args) {
11943 PyObject *resultobj;
11944 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11945 otk::BColor *result;
11946 PyObject * obj0 = 0 ;
11947
11948 if(!PyArg_ParseTuple(args,(char *)"O:BTexture_shadowColor",&obj0)) goto fail;
11949 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11950 {
11951 otk::BColor const &_result_ref = ((otk::BTexture const *)arg1)->shadowColor();
11952 result = (otk::BColor *) &_result_ref;
11953 }
11954
11955 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11956 return resultobj;
11957 fail:
11958 return NULL;
11959 }
11960
11961
11962 static PyObject *_wrap_BTexture_borderColor(PyObject *self, PyObject *args) {
11963 PyObject *resultobj;
11964 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11965 otk::BColor *result;
11966 PyObject * obj0 = 0 ;
11967
11968 if(!PyArg_ParseTuple(args,(char *)"O:BTexture_borderColor",&obj0)) goto fail;
11969 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11970 {
11971 otk::BColor const &_result_ref = ((otk::BTexture const *)arg1)->borderColor();
11972 result = (otk::BColor *) &_result_ref;
11973 }
11974
11975 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11976 return resultobj;
11977 fail:
11978 return NULL;
11979 }
11980
11981
11982 static PyObject *_wrap_BTexture_texture(PyObject *self, PyObject *args) {
11983 PyObject *resultobj;
11984 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11985 unsigned long result;
11986 PyObject * obj0 = 0 ;
11987
11988 if(!PyArg_ParseTuple(args,(char *)"O:BTexture_texture",&obj0)) goto fail;
11989 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11990 result = (unsigned long)((otk::BTexture const *)arg1)->texture();
11991
11992 resultobj = PyInt_FromLong((long)result);
11993 return resultobj;
11994 fail:
11995 return NULL;
11996 }
11997
11998
11999 static PyObject *_wrap_BTexture_setTexture(PyObject *self, PyObject *args) {
12000 PyObject *resultobj;
12001 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12002 unsigned long arg2 ;
12003 PyObject * obj0 = 0 ;
12004 PyObject * obj1 = 0 ;
12005
12006 if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_setTexture",&obj0,&obj1)) goto fail;
12007 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12008 arg2 = (unsigned long) PyInt_AsLong(obj1);
12009 if (PyErr_Occurred()) SWIG_fail;
12010 (arg1)->setTexture(arg2);
12011
12012 Py_INCREF(Py_None); resultobj = Py_None;
12013 return resultobj;
12014 fail:
12015 return NULL;
12016 }
12017
12018
12019 static PyObject *_wrap_BTexture_addTexture(PyObject *self, PyObject *args) {
12020 PyObject *resultobj;
12021 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12022 unsigned long arg2 ;
12023 PyObject * obj0 = 0 ;
12024 PyObject * obj1 = 0 ;
12025
12026 if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_addTexture",&obj0,&obj1)) goto fail;
12027 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12028 arg2 = (unsigned long) PyInt_AsLong(obj1);
12029 if (PyErr_Occurred()) SWIG_fail;
12030 (arg1)->addTexture(arg2);
12031
12032 Py_INCREF(Py_None); resultobj = Py_None;
12033 return resultobj;
12034 fail:
12035 return NULL;
12036 }
12037
12038
12039 static PyObject *_wrap_BTexture_equals(PyObject *self, PyObject *args) {
12040 PyObject *resultobj;
12041 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12042 otk::BTexture *arg2 = 0 ;
12043 bool result;
12044 PyObject * obj0 = 0 ;
12045 PyObject * obj1 = 0 ;
12046
12047 if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_equals",&obj0,&obj1)) goto fail;
12048 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12049 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12050 if (arg2 == NULL) {
12051 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
12052 }
12053 result = (bool)(arg1)->operator ==((otk::BTexture const &)*arg2);
12054
12055 resultobj = PyInt_FromLong((long)result);
12056 return resultobj;
12057 fail:
12058 return NULL;
12059 }
12060
12061
12062 static PyObject *_wrap_BTexture_screen(PyObject *self, PyObject *args) {
12063 PyObject *resultobj;
12064 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12065 unsigned int result;
12066 PyObject * obj0 = 0 ;
12067
12068 if(!PyArg_ParseTuple(args,(char *)"O:BTexture_screen",&obj0)) goto fail;
12069 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12070 result = (unsigned int)((otk::BTexture const *)arg1)->screen();
12071
12072 resultobj = PyInt_FromLong((long)result);
12073 return resultobj;
12074 fail:
12075 return NULL;
12076 }
12077
12078
12079 static PyObject *_wrap_BTexture_setScreen(PyObject *self, PyObject *args) {
12080 PyObject *resultobj;
12081 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12082 unsigned int arg2 ;
12083 PyObject * obj0 = 0 ;
12084 PyObject * obj1 = 0 ;
12085
12086 if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_setScreen",&obj0,&obj1)) goto fail;
12087 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12088 arg2 = (unsigned int) PyInt_AsLong(obj1);
12089 if (PyErr_Occurred()) SWIG_fail;
12090 (arg1)->setScreen(arg2);
12091
12092 Py_INCREF(Py_None); resultobj = Py_None;
12093 return resultobj;
12094 fail:
12095 return NULL;
12096 }
12097
12098
12099 static PyObject *_wrap_BTexture_setImageControl(PyObject *self, PyObject *args) {
12100 PyObject *resultobj;
12101 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12102 otk::BImageControl *arg2 = (otk::BImageControl *) 0 ;
12103 PyObject * obj0 = 0 ;
12104 PyObject * obj1 = 0 ;
12105
12106 if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_setImageControl",&obj0,&obj1)) goto fail;
12107 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12108 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12109 (arg1)->setImageControl(arg2);
12110
12111 Py_INCREF(Py_None); resultobj = Py_None;
12112 return resultobj;
12113 fail:
12114 return NULL;
12115 }
12116
12117
12118 static PyObject *_wrap_BTexture_description(PyObject *self, PyObject *args) {
12119 PyObject *resultobj;
12120 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12121 std::string *result;
12122 PyObject * obj0 = 0 ;
12123
12124 if(!PyArg_ParseTuple(args,(char *)"O:BTexture_description",&obj0)) goto fail;
12125 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12126 {
12127 std::string const &_result_ref = ((otk::BTexture const *)arg1)->description();
12128 result = (std::string *) &_result_ref;
12129 }
12130
12131 {
12132 resultobj = PyString_FromString(result->c_str());
12133 }
12134 return resultobj;
12135 fail:
12136 return NULL;
12137 }
12138
12139
12140 static PyObject *_wrap_BTexture_setDescription(PyObject *self, PyObject *args) {
12141 PyObject *resultobj;
12142 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12143 std::string *arg2 = 0 ;
12144 std::string temp2 ;
12145 PyObject * obj0 = 0 ;
12146 PyObject * obj1 = 0 ;
12147
12148 if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_setDescription",&obj0,&obj1)) goto fail;
12149 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12150 {
12151 if (PyString_Check(obj1)) {
12152 temp2 = std::string(PyString_AsString(obj1));
12153 arg2 = &temp2;
12154 }else {
12155 SWIG_exception(SWIG_TypeError, "string expected");
12156 }
12157 }
12158 (arg1)->setDescription((std::string const &)*arg2);
12159
12160 Py_INCREF(Py_None); resultobj = Py_None;
12161 return resultobj;
12162 fail:
12163 return NULL;
12164 }
12165
12166
12167 static PyObject *_wrap_BTexture_render(PyObject *self, PyObject *args) {
12168 PyObject *resultobj;
12169 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12170 unsigned int arg2 ;
12171 unsigned int arg3 ;
12172 Pixmap arg4 = (Pixmap) (Pixmap)0 ;
12173 Pixmap result;
12174 Pixmap *argp4 ;
12175 PyObject * obj0 = 0 ;
12176 PyObject * obj1 = 0 ;
12177 PyObject * obj2 = 0 ;
12178 PyObject * obj3 = 0 ;
12179
12180 if(!PyArg_ParseTuple(args,(char *)"OOO|O:BTexture_render",&obj0,&obj1,&obj2,&obj3)) goto fail;
12181 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12182 arg2 = (unsigned int) PyInt_AsLong(obj1);
12183 if (PyErr_Occurred()) SWIG_fail;
12184 arg3 = (unsigned int) PyInt_AsLong(obj2);
12185 if (PyErr_Occurred()) SWIG_fail;
12186 if (obj3) {
12187 if ((SWIG_ConvertPtr(obj3,(void **) &argp4, SWIGTYPE_p_Pixmap,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
12188 arg4 = *argp4;
12189 }
12190 result = (arg1)->render(arg2,arg3,arg4);
12191
12192 {
12193 Pixmap * resultptr;
12194 resultptr = new Pixmap((Pixmap &) result);
12195 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Pixmap, 1);
12196 }
12197 return resultobj;
12198 fail:
12199 return NULL;
12200 }
12201
12202
12203 static PyObject *_wrap_delete_BTexture(PyObject *self, PyObject *args) {
12204 PyObject *resultobj;
12205 otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12206 PyObject * obj0 = 0 ;
12207
12208 if(!PyArg_ParseTuple(args,(char *)"O:delete_BTexture",&obj0)) goto fail;
12209 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12210 delete arg1;
12211
12212 Py_INCREF(Py_None); resultobj = Py_None;
12213 return resultobj;
12214 fail:
12215 return NULL;
12216 }
12217
12218
12219 static PyObject * BTexture_swigregister(PyObject *self, PyObject *args) {
12220 PyObject *obj;
12221 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
12222 SWIG_TypeClientData(SWIGTYPE_p_otk__BTexture, obj);
12223 Py_INCREF(obj);
12224 return Py_BuildValue((char *)"");
12225 }
12226 static PyObject *_wrap_new_OBTimer(PyObject *self, PyObject *args) {
12227 PyObject *resultobj;
12228 otk::OBTimerQueueManager *arg1 = (otk::OBTimerQueueManager *) 0 ;
12229 otk::OBTimeoutHandler arg2 = (otk::OBTimeoutHandler) 0 ;
12230 otk::OBTimeoutData arg3 = (otk::OBTimeoutData) 0 ;
12231 otk::OBTimer *result;
12232 PyObject * obj0 = 0 ;
12233 PyObject * obj1 = 0 ;
12234 PyObject * obj2 = 0 ;
12235
12236 if(!PyArg_ParseTuple(args,(char *)"OOO:new_OBTimer",&obj0,&obj1,&obj2)) goto fail;
12237 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimerQueueManager,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12238 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_otk__OBTimeoutHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12239 if ((SWIG_ConvertPtr(obj2,(void **) &arg3, 0, SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12240 result = (otk::OBTimer *)new otk::OBTimer(arg1,arg2,arg3);
12241
12242 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OBTimer, 1);
12243 return resultobj;
12244 fail:
12245 return NULL;
12246 }
12247
12248
12249 static PyObject *_wrap_delete_OBTimer(PyObject *self, PyObject *args) {
12250 PyObject *resultobj;
12251 otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12252 PyObject * obj0 = 0 ;
12253
12254 if(!PyArg_ParseTuple(args,(char *)"O:delete_OBTimer",&obj0)) goto fail;
12255 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12256 delete arg1;
12257
12258 Py_INCREF(Py_None); resultobj = Py_None;
12259 return resultobj;
12260 fail:
12261 return NULL;
12262 }
12263
12264
12265 static PyObject *_wrap_OBTimer_fire(PyObject *self, PyObject *args) {
12266 PyObject *resultobj;
12267 otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12268 PyObject * obj0 = 0 ;
12269
12270 if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_fire",&obj0)) goto fail;
12271 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12272 (arg1)->fire();
12273
12274 Py_INCREF(Py_None); resultobj = Py_None;
12275 return resultobj;
12276 fail:
12277 return NULL;
12278 }
12279
12280
12281 static PyObject *_wrap_OBTimer_timing(PyObject *self, PyObject *args) {
12282 PyObject *resultobj;
12283 otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12284 bool result;
12285 PyObject * obj0 = 0 ;
12286
12287 if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_timing",&obj0)) goto fail;
12288 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12289 result = (bool)((otk::OBTimer const *)arg1)->timing();
12290
12291 resultobj = PyInt_FromLong((long)result);
12292 return resultobj;
12293 fail:
12294 return NULL;
12295 }
12296
12297
12298 static PyObject *_wrap_OBTimer_recurring(PyObject *self, PyObject *args) {
12299 PyObject *resultobj;
12300 otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12301 bool result;
12302 PyObject * obj0 = 0 ;
12303
12304 if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_recurring",&obj0)) goto fail;
12305 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12306 result = (bool)((otk::OBTimer const *)arg1)->recurring();
12307
12308 resultobj = PyInt_FromLong((long)result);
12309 return resultobj;
12310 fail:
12311 return NULL;
12312 }
12313
12314
12315 static PyObject *_wrap_OBTimer_timeout(PyObject *self, PyObject *args) {
12316 PyObject *resultobj;
12317 otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12318 timeval *result;
12319 PyObject * obj0 = 0 ;
12320
12321 if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_timeout",&obj0)) goto fail;
12322 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12323 {
12324 timeval const &_result_ref = ((otk::OBTimer const *)arg1)->timeout();
12325 result = (timeval *) &_result_ref;
12326 }
12327
12328 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_timeval, 0);
12329 return resultobj;
12330 fail:
12331 return NULL;
12332 }
12333
12334
12335 static PyObject *_wrap_OBTimer_startTime(PyObject *self, PyObject *args) {
12336 PyObject *resultobj;
12337 otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12338 timeval *result;
12339 PyObject * obj0 = 0 ;
12340
12341 if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_startTime",&obj0)) goto fail;
12342 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12343 {
12344 timeval const &_result_ref = ((otk::OBTimer const *)arg1)->startTime();
12345 result = (timeval *) &_result_ref;
12346 }
12347
12348 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_timeval, 0);
12349 return resultobj;
12350 fail:
12351 return NULL;
12352 }
12353
12354
12355 static PyObject *_wrap_OBTimer_remainingTime(PyObject *self, PyObject *args) {
12356 PyObject *resultobj;
12357 otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12358 timeval *arg2 = 0 ;
12359 timeval result;
12360 PyObject * obj0 = 0 ;
12361 PyObject * obj1 = 0 ;
12362
12363 if(!PyArg_ParseTuple(args,(char *)"OO:OBTimer_remainingTime",&obj0,&obj1)) goto fail;
12364 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12365 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_timeval,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12366 if (arg2 == NULL) {
12367 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
12368 }
12369 result = ((otk::OBTimer const *)arg1)->remainingTime((timeval const &)*arg2);
12370
12371 {
12372 timeval * resultptr;
12373 resultptr = new timeval((timeval &) result);
12374 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_timeval, 1);
12375 }
12376 return resultobj;
12377 fail:
12378 return NULL;
12379 }
12380
12381
12382 static PyObject *_wrap_OBTimer_shouldFire(PyObject *self, PyObject *args) {
12383 PyObject *resultobj;
12384 otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12385 timeval *arg2 = 0 ;
12386 bool result;
12387 PyObject * obj0 = 0 ;
12388 PyObject * obj1 = 0 ;
12389
12390 if(!PyArg_ParseTuple(args,(char *)"OO:OBTimer_shouldFire",&obj0,&obj1)) goto fail;
12391 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12392 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_timeval,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12393 if (arg2 == NULL) {
12394 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
12395 }
12396 result = (bool)((otk::OBTimer const *)arg1)->shouldFire((timeval const &)*arg2);
12397
12398 resultobj = PyInt_FromLong((long)result);
12399 return resultobj;
12400 fail:
12401 return NULL;
12402 }
12403
12404
12405 static PyObject *_wrap_OBTimer_endTime(PyObject *self, PyObject *args) {
12406 PyObject *resultobj;
12407 otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12408 timeval result;
12409 PyObject * obj0 = 0 ;
12410
12411 if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_endTime",&obj0)) goto fail;
12412 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12413 result = ((otk::OBTimer const *)arg1)->endTime();
12414
12415 {
12416 timeval * resultptr;
12417 resultptr = new timeval((timeval &) result);
12418 resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_timeval, 1);
12419 }
12420 return resultobj;
12421 fail:
12422 return NULL;
12423 }
12424
12425
12426 static PyObject *_wrap_OBTimer_setRecurring(PyObject *self, PyObject *args) {
12427 PyObject *resultobj;
12428 otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12429 bool arg2 ;
12430 PyObject * obj0 = 0 ;
12431 PyObject * obj1 = 0 ;
12432
12433 if(!PyArg_ParseTuple(args,(char *)"OO:OBTimer_setRecurring",&obj0,&obj1)) goto fail;
12434 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12435 arg2 = (bool) PyInt_AsLong(obj1);
12436 if (PyErr_Occurred()) SWIG_fail;
12437 (arg1)->setRecurring(arg2);
12438
12439 Py_INCREF(Py_None); resultobj = Py_None;
12440 return resultobj;
12441 fail:
12442 return NULL;
12443 }
12444
12445
12446 static PyObject *_wrap_OBTimer_setTimeout__SWIG_0(PyObject *self, PyObject *args) {
12447 PyObject *resultobj;
12448 otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12449 long arg2 ;
12450 PyObject * obj0 = 0 ;
12451
12452 if(!PyArg_ParseTuple(args,(char *)"Ol:OBTimer_setTimeout",&obj0,&arg2)) goto fail;
12453 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12454 (arg1)->setTimeout(arg2);
12455
12456 Py_INCREF(Py_None); resultobj = Py_None;
12457 return resultobj;
12458 fail:
12459 return NULL;
12460 }
12461
12462
12463 static PyObject *_wrap_OBTimer_setTimeout__SWIG_1(PyObject *self, PyObject *args) {
12464 PyObject *resultobj;
12465 otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12466 timeval *arg2 = 0 ;
12467 PyObject * obj0 = 0 ;
12468 PyObject * obj1 = 0 ;
12469
12470 if(!PyArg_ParseTuple(args,(char *)"OO:OBTimer_setTimeout",&obj0,&obj1)) goto fail;
12471 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12472 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_timeval,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12473 if (arg2 == NULL) {
12474 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
12475 }
12476 (arg1)->setTimeout((timeval const &)*arg2);
12477
12478 Py_INCREF(Py_None); resultobj = Py_None;
12479 return resultobj;
12480 fail:
12481 return NULL;
12482 }
12483
12484
12485 static PyObject *_wrap_OBTimer_setTimeout(PyObject *self, PyObject *args) {
12486 int argc;
12487 PyObject *argv[3];
12488 int ii;
12489
12490 argc = PyObject_Length(args);
12491 for (ii = 0; (ii < argc) && (ii < 2); ii++) {
12492 argv[ii] = PyTuple_GetItem(args,ii);
12493 }
12494 if (argc == 2) {
12495 int _v;
12496 {
12497 void *ptr;
12498 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBTimer, 0) == -1) {
12499 _v = 0;
12500 PyErr_Clear();
12501 }else {
12502 _v = 1;
12503 }
12504 }
12505 if (_v) {
12506 {
12507 void *ptr;
12508 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_timeval, 0) == -1) {
12509 _v = 0;
12510 PyErr_Clear();
12511 }else {
12512 _v = 1;
12513 }
12514 }
12515 if (_v) {
12516 return _wrap_OBTimer_setTimeout__SWIG_1(self,args);
12517 }
12518 }
12519 }
12520 if (argc == 2) {
12521 int _v;
12522 {
12523 void *ptr;
12524 if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBTimer, 0) == -1) {
12525 _v = 0;
12526 PyErr_Clear();
12527 }else {
12528 _v = 1;
12529 }
12530 }
12531 if (_v) {
12532 {
12533 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
12534 }
12535 if (_v) {
12536 return _wrap_OBTimer_setTimeout__SWIG_0(self,args);
12537 }
12538 }
12539 }
12540
12541 PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'OBTimer_setTimeout'");
12542 return NULL;
12543 }
12544
12545
12546 static PyObject *_wrap_OBTimer_start(PyObject *self, PyObject *args) {
12547 PyObject *resultobj;
12548 otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12549 PyObject * obj0 = 0 ;
12550
12551 if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_start",&obj0)) goto fail;
12552 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12553 (arg1)->start();
12554
12555 Py_INCREF(Py_None); resultobj = Py_None;
12556 return resultobj;
12557 fail:
12558 return NULL;
12559 }
12560
12561
12562 static PyObject *_wrap_OBTimer_stop(PyObject *self, PyObject *args) {
12563 PyObject *resultobj;
12564 otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12565 PyObject * obj0 = 0 ;
12566
12567 if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_stop",&obj0)) goto fail;
12568 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12569 (arg1)->stop();
12570
12571 Py_INCREF(Py_None); resultobj = Py_None;
12572 return resultobj;
12573 fail:
12574 return NULL;
12575 }
12576
12577
12578 static PyObject * OBTimer_swigregister(PyObject *self, PyObject *args) {
12579 PyObject *obj;
12580 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
12581 SWIG_TypeClientData(SWIGTYPE_p_otk__OBTimer, obj);
12582 Py_INCREF(obj);
12583 return Py_BuildValue((char *)"");
12584 }
12585 static PyObject *_wrap_new_OBTimerQueueManager(PyObject *self, PyObject *args) {
12586 PyObject *resultobj;
12587 otk::OBTimerQueueManager *result;
12588
12589 if(!PyArg_ParseTuple(args,(char *)":new_OBTimerQueueManager")) goto fail;
12590 result = (otk::OBTimerQueueManager *)new otk::OBTimerQueueManager();
12591
12592 resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OBTimerQueueManager, 1);
12593 return resultobj;
12594 fail:
12595 return NULL;
12596 }
12597
12598
12599 static PyObject *_wrap_delete_OBTimerQueueManager(PyObject *self, PyObject *args) {
12600 PyObject *resultobj;
12601 otk::OBTimerQueueManager *arg1 = (otk::OBTimerQueueManager *) 0 ;
12602 PyObject * obj0 = 0 ;
12603
12604 if(!PyArg_ParseTuple(args,(char *)"O:delete_OBTimerQueueManager",&obj0)) goto fail;
12605 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimerQueueManager,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12606 delete arg1;
12607
12608 Py_INCREF(Py_None); resultobj = Py_None;
12609 return resultobj;
12610 fail:
12611 return NULL;
12612 }
12613
12614
12615 static PyObject *_wrap_OBTimerQueueManager_fire(PyObject *self, PyObject *args) {
12616 PyObject *resultobj;
12617 otk::OBTimerQueueManager *arg1 = (otk::OBTimerQueueManager *) 0 ;
12618 PyObject * obj0 = 0 ;
12619
12620 if(!PyArg_ParseTuple(args,(char *)"O:OBTimerQueueManager_fire",&obj0)) goto fail;
12621 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimerQueueManager,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12622 (arg1)->fire();
12623
12624 Py_INCREF(Py_None); resultobj = Py_None;
12625 return resultobj;
12626 fail:
12627 return NULL;
12628 }
12629
12630
12631 static PyObject *_wrap_OBTimerQueueManager_addTimer(PyObject *self, PyObject *args) {
12632 PyObject *resultobj;
12633 otk::OBTimerQueueManager *arg1 = (otk::OBTimerQueueManager *) 0 ;
12634 otk::OBTimer *arg2 = (otk::OBTimer *) 0 ;
12635 PyObject * obj0 = 0 ;
12636 PyObject * obj1 = 0 ;
12637
12638 if(!PyArg_ParseTuple(args,(char *)"OO:OBTimerQueueManager_addTimer",&obj0,&obj1)) goto fail;
12639 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimerQueueManager,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12640 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12641 (arg1)->addTimer(arg2);
12642
12643 Py_INCREF(Py_None); resultobj = Py_None;
12644 return resultobj;
12645 fail:
12646 return NULL;
12647 }
12648
12649
12650 static PyObject *_wrap_OBTimerQueueManager_removeTimer(PyObject *self, PyObject *args) {
12651 PyObject *resultobj;
12652 otk::OBTimerQueueManager *arg1 = (otk::OBTimerQueueManager *) 0 ;
12653 otk::OBTimer *arg2 = (otk::OBTimer *) 0 ;
12654 PyObject * obj0 = 0 ;
12655 PyObject * obj1 = 0 ;
12656
12657 if(!PyArg_ParseTuple(args,(char *)"OO:OBTimerQueueManager_removeTimer",&obj0,&obj1)) goto fail;
12658 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimerQueueManager,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12659 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12660 (arg1)->removeTimer(arg2);
12661
12662 Py_INCREF(Py_None); resultobj = Py_None;
12663 return resultobj;
12664 fail:
12665 return NULL;
12666 }
12667
12668
12669 static PyObject * OBTimerQueueManager_swigregister(PyObject *self, PyObject *args) {
12670 PyObject *obj;
12671 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
12672 SWIG_TypeClientData(SWIGTYPE_p_otk__OBTimerQueueManager, obj);
12673 Py_INCREF(obj);
12674 return Py_BuildValue((char *)"");
12675 }
12676 static int _wrap_BSENTINEL_set(PyObject *_val) {
12677 PyErr_SetString(PyExc_TypeError,"Variable BSENTINEL is read-only.");
12678 return 1;
12679 }
12680
12681
12682 static PyObject *_wrap_BSENTINEL_get() {
12683 PyObject *pyobj;
12684
12685 pyobj = PyInt_FromLong((long)otk::BSENTINEL);
12686 return pyobj;
12687 }
12688
12689
12690 static PyObject *_wrap_expandTilde(PyObject *self, PyObject *args) {
12691 PyObject *resultobj;
12692 std::string *arg1 = 0 ;
12693 std::string result;
12694 std::string temp1 ;
12695 PyObject * obj0 = 0 ;
12696
12697 if(!PyArg_ParseTuple(args,(char *)"O:expandTilde",&obj0)) goto fail;
12698 {
12699 if (PyString_Check(obj0)) {
12700 temp1 = std::string(PyString_AsString(obj0));
12701 arg1 = &temp1;
12702 }else {
12703 SWIG_exception(SWIG_TypeError, "string expected");
12704 }
12705 }
12706 result = otk::expandTilde((std::string const &)*arg1);
12707
12708 {
12709 resultobj = PyString_FromString((&result)->c_str());
12710 }
12711 return resultobj;
12712 fail:
12713 return NULL;
12714 }
12715
12716
12717 static PyObject *_wrap_bexec(PyObject *self, PyObject *args) {
12718 PyObject *resultobj;
12719 std::string *arg1 = 0 ;
12720 std::string *arg2 = 0 ;
12721 std::string temp1 ;
12722 std::string temp2 ;
12723 PyObject * obj0 = 0 ;
12724 PyObject * obj1 = 0 ;
12725
12726 if(!PyArg_ParseTuple(args,(char *)"OO:bexec",&obj0,&obj1)) goto fail;
12727 {
12728 if (PyString_Check(obj0)) {
12729 temp1 = std::string(PyString_AsString(obj0));
12730 arg1 = &temp1;
12731 }else {
12732 SWIG_exception(SWIG_TypeError, "string expected");
12733 }
12734 }
12735 {
12736 if (PyString_Check(obj1)) {
12737 temp2 = std::string(PyString_AsString(obj1));
12738 arg2 = &temp2;
12739 }else {
12740 SWIG_exception(SWIG_TypeError, "string expected");
12741 }
12742 }
12743 otk::bexec((std::string const &)*arg1,(std::string const &)*arg2);
12744
12745 Py_INCREF(Py_None); resultobj = Py_None;
12746 return resultobj;
12747 fail:
12748 return NULL;
12749 }
12750
12751
12752 static PyObject *_wrap_textPropertyToString(PyObject *self, PyObject *args) {
12753 PyObject *resultobj;
12754 Display *arg1 = (Display *) 0 ;
12755 XTextProperty *arg2 = 0 ;
12756 std::string result;
12757 PyObject * obj0 = 0 ;
12758 PyObject * obj1 = 0 ;
12759
12760 if(!PyArg_ParseTuple(args,(char *)"OO:textPropertyToString",&obj0,&obj1)) goto fail;
12761 if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_Display,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12762 if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XTextProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12763 if (arg2 == NULL) {
12764 PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
12765 }
12766 result = otk::textPropertyToString(arg1,*arg2);
12767
12768 {
12769 resultobj = PyString_FromString((&result)->c_str());
12770 }
12771 return resultobj;
12772 fail:
12773 return NULL;
12774 }
12775
12776
12777 static PyObject *_wrap_itostring_unsigned_long(PyObject *self, PyObject *args) {
12778 PyObject *resultobj;
12779 unsigned long arg1 ;
12780 std::string result;
12781 PyObject * obj0 = 0 ;
12782
12783 if(!PyArg_ParseTuple(args,(char *)"O:itostring_unsigned_long",&obj0)) goto fail;
12784 arg1 = (unsigned long) PyInt_AsLong(obj0);
12785 if (PyErr_Occurred()) SWIG_fail;
12786 result = otk::itostring(arg1);
12787
12788 {
12789 resultobj = PyString_FromString((&result)->c_str());
12790 }
12791 return resultobj;
12792 fail:
12793 return NULL;
12794 }
12795
12796
12797 static PyObject *_wrap_itostring_long(PyObject *self, PyObject *args) {
12798 PyObject *resultobj;
12799 long arg1 ;
12800 std::string result;
12801
12802 if(!PyArg_ParseTuple(args,(char *)"l:itostring_long",&arg1)) goto fail;
12803 result = otk::itostring(arg1);
12804
12805 {
12806 resultobj = PyString_FromString((&result)->c_str());
12807 }
12808 return resultobj;
12809 fail:
12810 return NULL;
12811 }
12812
12813
12814 static PyObject *_wrap_itostring_unsigned(PyObject *self, PyObject *args) {
12815 PyObject *resultobj;
12816 unsigned int arg1 ;
12817 std::string result;
12818 PyObject * obj0 = 0 ;
12819
12820 if(!PyArg_ParseTuple(args,(char *)"O:itostring_unsigned",&obj0)) goto fail;
12821 arg1 = (unsigned int) PyInt_AsLong(obj0);
12822 if (PyErr_Occurred()) SWIG_fail;
12823 result = otk::itostring(arg1);
12824
12825 {
12826 resultobj = PyString_FromString((&result)->c_str());
12827 }
12828 return resultobj;
12829 fail:
12830 return NULL;
12831 }
12832
12833
12834 static PyObject *_wrap_itostring(PyObject *self, PyObject *args) {
12835 PyObject *resultobj;
12836 int arg1 ;
12837 std::string result;
12838
12839 if(!PyArg_ParseTuple(args,(char *)"i:itostring",&arg1)) goto fail;
12840 result = otk::itostring(arg1);
12841
12842 {
12843 resultobj = PyString_FromString((&result)->c_str());
12844 }
12845 return resultobj;
12846 fail:
12847 return NULL;
12848 }
12849
12850
12851 static PyObject *_wrap_basename(PyObject *self, PyObject *args) {
12852 PyObject *resultobj;
12853 std::string *arg1 = 0 ;
12854 std::string result;
12855 std::string temp1 ;
12856 PyObject * obj0 = 0 ;
12857
12858 if(!PyArg_ParseTuple(args,(char *)"O:basename",&obj0)) goto fail;
12859 {
12860 if (PyString_Check(obj0)) {
12861 temp1 = std::string(PyString_AsString(obj0));
12862 arg1 = &temp1;
12863 }else {
12864 SWIG_exception(SWIG_TypeError, "string expected");
12865 }
12866 }
12867 result = otk::basename((std::string const &)*arg1);
12868
12869 {
12870 resultobj = PyString_FromString((&result)->c_str());
12871 }
12872 return resultobj;
12873 fail:
12874 return NULL;
12875 }
12876
12877
12878 static PyMethodDef SwigMethods[] = {
12879 { (char *)"new_OtkEventDispatcher", _wrap_new_OtkEventDispatcher, METH_VARARGS },
12880 { (char *)"delete_OtkEventDispatcher", _wrap_delete_OtkEventDispatcher, METH_VARARGS },
12881 { (char *)"OtkEventDispatcher_clearAllHandlers", _wrap_OtkEventDispatcher_clearAllHandlers, METH_VARARGS },
12882 { (char *)"OtkEventDispatcher_registerHandler", _wrap_OtkEventDispatcher_registerHandler, METH_VARARGS },
12883 { (char *)"OtkEventDispatcher_clearHandler", _wrap_OtkEventDispatcher_clearHandler, METH_VARARGS },
12884 { (char *)"OtkEventDispatcher_dispatchEvents", _wrap_OtkEventDispatcher_dispatchEvents, METH_VARARGS },
12885 { (char *)"OtkEventDispatcher_setFallbackHandler", _wrap_OtkEventDispatcher_setFallbackHandler, METH_VARARGS },
12886 { (char *)"OtkEventDispatcher_getFallbackHandler", _wrap_OtkEventDispatcher_getFallbackHandler, METH_VARARGS },
12887 { (char *)"OtkEventDispatcher_setMasterHandler", _wrap_OtkEventDispatcher_setMasterHandler, METH_VARARGS },
12888 { (char *)"OtkEventDispatcher_getMasterHandler", _wrap_OtkEventDispatcher_getMasterHandler, METH_VARARGS },
12889 { (char *)"OtkEventDispatcher_findHandler", _wrap_OtkEventDispatcher_findHandler, METH_VARARGS },
12890 { (char *)"OtkEventDispatcher_lastTime", _wrap_OtkEventDispatcher_lastTime, METH_VARARGS },
12891 { (char *)"OtkEventDispatcher_swigregister", OtkEventDispatcher_swigregister, METH_VARARGS },
12892 { (char *)"OtkEventHandler_handle", _wrap_OtkEventHandler_handle, METH_VARARGS },
12893 { (char *)"OtkEventHandler_keyPressHandler", _wrap_OtkEventHandler_keyPressHandler, METH_VARARGS },
12894 { (char *)"OtkEventHandler_keyReleaseHandler", _wrap_OtkEventHandler_keyReleaseHandler, METH_VARARGS },
12895 { (char *)"OtkEventHandler_buttonPressHandler", _wrap_OtkEventHandler_buttonPressHandler, METH_VARARGS },
12896 { (char *)"OtkEventHandler_buttonReleaseHandler", _wrap_OtkEventHandler_buttonReleaseHandler, METH_VARARGS },
12897 { (char *)"OtkEventHandler_motionHandler", _wrap_OtkEventHandler_motionHandler, METH_VARARGS },
12898 { (char *)"OtkEventHandler_enterHandler", _wrap_OtkEventHandler_enterHandler, METH_VARARGS },
12899 { (char *)"OtkEventHandler_leaveHandler", _wrap_OtkEventHandler_leaveHandler, METH_VARARGS },
12900 { (char *)"OtkEventHandler_focusHandler", _wrap_OtkEventHandler_focusHandler, METH_VARARGS },
12901 { (char *)"OtkEventHandler_unfocusHandler", _wrap_OtkEventHandler_unfocusHandler, METH_VARARGS },
12902 { (char *)"OtkEventHandler_exposeHandler", _wrap_OtkEventHandler_exposeHandler, METH_VARARGS },
12903 { (char *)"OtkEventHandler_graphicsExposeHandler", _wrap_OtkEventHandler_graphicsExposeHandler, METH_VARARGS },
12904 { (char *)"OtkEventHandler_noExposeEventHandler", _wrap_OtkEventHandler_noExposeEventHandler, METH_VARARGS },
12905 { (char *)"OtkEventHandler_circulateRequestHandler", _wrap_OtkEventHandler_circulateRequestHandler, METH_VARARGS },
12906 { (char *)"OtkEventHandler_configureRequestHandler", _wrap_OtkEventHandler_configureRequestHandler, METH_VARARGS },
12907 { (char *)"OtkEventHandler_mapRequestHandler", _wrap_OtkEventHandler_mapRequestHandler, METH_VARARGS },
12908 { (char *)"OtkEventHandler_resizeRequestHandler", _wrap_OtkEventHandler_resizeRequestHandler, METH_VARARGS },
12909 { (char *)"OtkEventHandler_circulateHandler", _wrap_OtkEventHandler_circulateHandler, METH_VARARGS },
12910 { (char *)"OtkEventHandler_configureHandler", _wrap_OtkEventHandler_configureHandler, METH_VARARGS },
12911 { (char *)"OtkEventHandler_createHandler", _wrap_OtkEventHandler_createHandler, METH_VARARGS },
12912 { (char *)"OtkEventHandler_destroyHandler", _wrap_OtkEventHandler_destroyHandler, METH_VARARGS },
12913 { (char *)"OtkEventHandler_gravityHandler", _wrap_OtkEventHandler_gravityHandler, METH_VARARGS },
12914 { (char *)"OtkEventHandler_mapHandler", _wrap_OtkEventHandler_mapHandler, METH_VARARGS },
12915 { (char *)"OtkEventHandler_mappingHandler", _wrap_OtkEventHandler_mappingHandler, METH_VARARGS },
12916 { (char *)"OtkEventHandler_reparentHandler", _wrap_OtkEventHandler_reparentHandler, METH_VARARGS },
12917 { (char *)"OtkEventHandler_unmapHandler", _wrap_OtkEventHandler_unmapHandler, METH_VARARGS },
12918 { (char *)"OtkEventHandler_visibilityHandler", _wrap_OtkEventHandler_visibilityHandler, METH_VARARGS },
12919 { (char *)"OtkEventHandler_colorMapHandler", _wrap_OtkEventHandler_colorMapHandler, METH_VARARGS },
12920 { (char *)"OtkEventHandler_propertyHandler", _wrap_OtkEventHandler_propertyHandler, METH_VARARGS },
12921 { (char *)"OtkEventHandler_selectionClearHandler", _wrap_OtkEventHandler_selectionClearHandler, METH_VARARGS },
12922 { (char *)"OtkEventHandler_selectionHandler", _wrap_OtkEventHandler_selectionHandler, METH_VARARGS },
12923 { (char *)"OtkEventHandler_selectionRequestHandler", _wrap_OtkEventHandler_selectionRequestHandler, METH_VARARGS },
12924 { (char *)"OtkEventHandler_clientMessageHandler", _wrap_OtkEventHandler_clientMessageHandler, METH_VARARGS },
12925 { (char *)"delete_OtkEventHandler", _wrap_delete_OtkEventHandler, METH_VARARGS },
12926 { (char *)"OtkEventHandler_swigregister", OtkEventHandler_swigregister, METH_VARARGS },
12927 { (char *)"new_OtkWidget", _wrap_new_OtkWidget, METH_VARARGS },
12928 { (char *)"delete_OtkWidget", _wrap_delete_OtkWidget, METH_VARARGS },
12929 { (char *)"OtkWidget_update", _wrap_OtkWidget_update, METH_VARARGS },
12930 { (char *)"OtkWidget_exposeHandler", _wrap_OtkWidget_exposeHandler, METH_VARARGS },
12931 { (char *)"OtkWidget_configureHandler", _wrap_OtkWidget_configureHandler, METH_VARARGS },
12932 { (char *)"OtkWidget_window", _wrap_OtkWidget_window, METH_VARARGS },
12933 { (char *)"OtkWidget_parent", _wrap_OtkWidget_parent, METH_VARARGS },
12934 { (char *)"OtkWidget_children", _wrap_OtkWidget_children, METH_VARARGS },
12935 { (char *)"OtkWidget_screen", _wrap_OtkWidget_screen, METH_VARARGS },
12936 { (char *)"OtkWidget_rect", _wrap_OtkWidget_rect, METH_VARARGS },
12937 { (char *)"OtkWidget_move", _wrap_OtkWidget_move, METH_VARARGS },
12938 { (char *)"OtkWidget_setWidth", _wrap_OtkWidget_setWidth, METH_VARARGS },
12939 { (char *)"OtkWidget_setHeight", _wrap_OtkWidget_setHeight, METH_VARARGS },
12940 { (char *)"OtkWidget_width", _wrap_OtkWidget_width, METH_VARARGS },
12941 { (char *)"OtkWidget_height", _wrap_OtkWidget_height, METH_VARARGS },
12942 { (char *)"OtkWidget_resize", _wrap_OtkWidget_resize, METH_VARARGS },
12943 { (char *)"OtkWidget_setGeometry", _wrap_OtkWidget_setGeometry, METH_VARARGS },
12944 { (char *)"OtkWidget_isVisible", _wrap_OtkWidget_isVisible, METH_VARARGS },
12945 { (char *)"OtkWidget_show", _wrap_OtkWidget_show, METH_VARARGS },
12946 { (char *)"OtkWidget_hide", _wrap_OtkWidget_hide, METH_VARARGS },
12947 { (char *)"OtkWidget_isFocused", _wrap_OtkWidget_isFocused, METH_VARARGS },
12948 { (char *)"OtkWidget_focus", _wrap_OtkWidget_focus, METH_VARARGS },
12949 { (char *)"OtkWidget_unfocus", _wrap_OtkWidget_unfocus, METH_VARARGS },
12950 { (char *)"OtkWidget_hasGrabbedMouse", _wrap_OtkWidget_hasGrabbedMouse, METH_VARARGS },
12951 { (char *)"OtkWidget_grabMouse", _wrap_OtkWidget_grabMouse, METH_VARARGS },
12952 { (char *)"OtkWidget_ungrabMouse", _wrap_OtkWidget_ungrabMouse, METH_VARARGS },
12953 { (char *)"OtkWidget_hasGrabbedKeyboard", _wrap_OtkWidget_hasGrabbedKeyboard, METH_VARARGS },
12954 { (char *)"OtkWidget_grabKeyboard", _wrap_OtkWidget_grabKeyboard, METH_VARARGS },
12955 { (char *)"OtkWidget_ungrabKeyboard", _wrap_OtkWidget_ungrabKeyboard, METH_VARARGS },
12956 { (char *)"OtkWidget_texture", _wrap_OtkWidget_texture, METH_VARARGS },
12957 { (char *)"OtkWidget_setTexture", _wrap_OtkWidget_setTexture, METH_VARARGS },
12958 { (char *)"OtkWidget_borderColor", _wrap_OtkWidget_borderColor, METH_VARARGS },
12959 { (char *)"OtkWidget_setBorderColor", _wrap_OtkWidget_setBorderColor, METH_VARARGS },
12960 { (char *)"OtkWidget_borderWidth", _wrap_OtkWidget_borderWidth, METH_VARARGS },
12961 { (char *)"OtkWidget_setBorderWidth", _wrap_OtkWidget_setBorderWidth, METH_VARARGS },
12962 { (char *)"OtkWidget_addChild", _wrap_OtkWidget_addChild, METH_VARARGS },
12963 { (char *)"OtkWidget_removeChild", _wrap_OtkWidget_removeChild, METH_VARARGS },
12964 { (char *)"OtkWidget_isStretchableHorz", _wrap_OtkWidget_isStretchableHorz, METH_VARARGS },
12965 { (char *)"OtkWidget_setStretchableHorz", _wrap_OtkWidget_setStretchableHorz, METH_VARARGS },
12966 { (char *)"OtkWidget_isStretchableVert", _wrap_OtkWidget_isStretchableVert, METH_VARARGS },
12967 { (char *)"OtkWidget_setStretchableVert", _wrap_OtkWidget_setStretchableVert, METH_VARARGS },
12968 { (char *)"OtkWidget_cursor", _wrap_OtkWidget_cursor, METH_VARARGS },
12969 { (char *)"OtkWidget_setCursor", _wrap_OtkWidget_setCursor, METH_VARARGS },
12970 { (char *)"OtkWidget_bevelWidth", _wrap_OtkWidget_bevelWidth, METH_VARARGS },
12971 { (char *)"OtkWidget_setBevelWidth", _wrap_OtkWidget_setBevelWidth, METH_VARARGS },
12972 { (char *)"OtkWidget_direction", _wrap_OtkWidget_direction, METH_VARARGS },
12973 { (char *)"OtkWidget_setDirection", _wrap_OtkWidget_setDirection, METH_VARARGS },
12974 { (char *)"OtkWidget_style", _wrap_OtkWidget_style, METH_VARARGS },
12975 { (char *)"OtkWidget_setStyle", _wrap_OtkWidget_setStyle, METH_VARARGS },
12976 { (char *)"OtkWidget_eventDispatcher", _wrap_OtkWidget_eventDispatcher, METH_VARARGS },
12977 { (char *)"OtkWidget_setEventDispatcher", _wrap_OtkWidget_setEventDispatcher, METH_VARARGS },
12978 { (char *)"OtkWidget_swigregister", OtkWidget_swigregister, METH_VARARGS },
12979 { (char *)"new_OtkFocusWidget", _wrap_new_OtkFocusWidget, METH_VARARGS },
12980 { (char *)"delete_OtkFocusWidget", _wrap_delete_OtkFocusWidget, METH_VARARGS },
12981 { (char *)"OtkFocusWidget_focus", _wrap_OtkFocusWidget_focus, METH_VARARGS },
12982 { (char *)"OtkFocusWidget_unfocus", _wrap_OtkFocusWidget_unfocus, METH_VARARGS },
12983 { (char *)"OtkFocusWidget_setTexture", _wrap_OtkFocusWidget_setTexture, METH_VARARGS },
12984 { (char *)"OtkFocusWidget_setBorderColor", _wrap_OtkFocusWidget_setBorderColor, METH_VARARGS },
12985 { (char *)"OtkFocusWidget_setUnfocusTexture", _wrap_OtkFocusWidget_setUnfocusTexture, METH_VARARGS },
12986 { (char *)"OtkFocusWidget_getUnfocusTexture", _wrap_OtkFocusWidget_getUnfocusTexture, METH_VARARGS },
12987 { (char *)"OtkFocusWidget_setUnfocusBorderColor", _wrap_OtkFocusWidget_setUnfocusBorderColor, METH_VARARGS },
12988 { (char *)"OtkFocusWidget_getUnfocusBorderColor", _wrap_OtkFocusWidget_getUnfocusBorderColor, METH_VARARGS },
12989 { (char *)"OtkFocusWidget_isFocused", _wrap_OtkFocusWidget_isFocused, METH_VARARGS },
12990 { (char *)"OtkFocusWidget_isUnfocused", _wrap_OtkFocusWidget_isUnfocused, METH_VARARGS },
12991 { (char *)"OtkFocusWidget_swigregister", OtkFocusWidget_swigregister, METH_VARARGS },
12992 { (char *)"new_OtkFocusLabel", _wrap_new_OtkFocusLabel, METH_VARARGS },
12993 { (char *)"delete_OtkFocusLabel", _wrap_delete_OtkFocusLabel, METH_VARARGS },
12994 { (char *)"OtkFocusLabel_getText", _wrap_OtkFocusLabel_getText, METH_VARARGS },
12995 { (char *)"OtkFocusLabel_setText", _wrap_OtkFocusLabel_setText, METH_VARARGS },
12996 { (char *)"OtkFocusLabel_update", _wrap_OtkFocusLabel_update, METH_VARARGS },
12997 { (char *)"OtkFocusLabel_setStyle", _wrap_OtkFocusLabel_setStyle, METH_VARARGS },
12998 { (char *)"OtkFocusLabel_swigregister", OtkFocusLabel_swigregister, METH_VARARGS },
12999 { (char *)"new_OtkAppWidget", _wrap_new_OtkAppWidget, METH_VARARGS },
13000 { (char *)"delete_OtkAppWidget", _wrap_delete_OtkAppWidget, METH_VARARGS },
13001 { (char *)"OtkAppWidget_show", _wrap_OtkAppWidget_show, METH_VARARGS },
13002 { (char *)"OtkAppWidget_hide", _wrap_OtkAppWidget_hide, METH_VARARGS },
13003 { (char *)"OtkAppWidget_clientMessageHandler", _wrap_OtkAppWidget_clientMessageHandler, METH_VARARGS },
13004 { (char *)"OtkAppWidget_swigregister", OtkAppWidget_swigregister, METH_VARARGS },
13005 { (char *)"new_OtkApplication", _wrap_new_OtkApplication, METH_VARARGS },
13006 { (char *)"delete_OtkApplication", _wrap_delete_OtkApplication, METH_VARARGS },
13007 { (char *)"OtkApplication_run", _wrap_OtkApplication_run, METH_VARARGS },
13008 { (char *)"OtkApplication_setDockable", _wrap_OtkApplication_setDockable, METH_VARARGS },
13009 { (char *)"OtkApplication_isDockable", _wrap_OtkApplication_isDockable, METH_VARARGS },
13010 { (char *)"OtkApplication_getStyle", _wrap_OtkApplication_getStyle, METH_VARARGS },
13011 { (char *)"OtkApplication_swigregister", OtkApplication_swigregister, METH_VARARGS },
13012 { (char *)"new_PointerAssassin", _wrap_new_PointerAssassin, METH_VARARGS },
13013 { (char *)"delete_PointerAssassin", _wrap_delete_PointerAssassin, METH_VARARGS },
13014 { (char *)"PointerAssassin_swigregister", PointerAssassin_swigregister, METH_VARARGS },
13015 { (char *)"new_OtkButton", _wrap_new_OtkButton, METH_VARARGS },
13016 { (char *)"delete_OtkButton", _wrap_delete_OtkButton, METH_VARARGS },
13017 { (char *)"OtkButton_getPressedFocusTexture", _wrap_OtkButton_getPressedFocusTexture, METH_VARARGS },
13018 { (char *)"OtkButton_setPressedFocusTexture", _wrap_OtkButton_setPressedFocusTexture, METH_VARARGS },
13019 { (char *)"OtkButton_getPressedUnfocusTexture", _wrap_OtkButton_getPressedUnfocusTexture, METH_VARARGS },
13020 { (char *)"OtkButton_setPressedUnfocusTexture", _wrap_OtkButton_setPressedUnfocusTexture, METH_VARARGS },
13021 { (char *)"OtkButton_setTexture", _wrap_OtkButton_setTexture, METH_VARARGS },
13022 { (char *)"OtkButton_setUnfocusTexture", _wrap_OtkButton_setUnfocusTexture, METH_VARARGS },
13023 { (char *)"OtkButton_isPressed", _wrap_OtkButton_isPressed, METH_VARARGS },
13024 { (char *)"OtkButton_press", _wrap_OtkButton_press, METH_VARARGS },
13025 { (char *)"OtkButton_release", _wrap_OtkButton_release, METH_VARARGS },
13026 { (char *)"OtkButton_buttonPressHandler", _wrap_OtkButton_buttonPressHandler, METH_VARARGS },
13027 { (char *)"OtkButton_buttonReleaseHandler", _wrap_OtkButton_buttonReleaseHandler, METH_VARARGS },
13028 { (char *)"OtkButton_setStyle", _wrap_OtkButton_setStyle, METH_VARARGS },
13029 { (char *)"OtkButton_swigregister", OtkButton_swigregister, METH_VARARGS },
13030 { (char *)"new_BColor", _wrap_new_BColor, METH_VARARGS },
13031 { (char *)"delete_BColor", _wrap_delete_BColor, METH_VARARGS },
13032 { (char *)"BColor_name", _wrap_BColor_name, METH_VARARGS },
13033 { (char *)"BColor_red", _wrap_BColor_red, METH_VARARGS },
13034 { (char *)"BColor_green", _wrap_BColor_green, METH_VARARGS },
13035 { (char *)"BColor_blue", _wrap_BColor_blue, METH_VARARGS },
13036 { (char *)"BColor_setRGB", _wrap_BColor_setRGB, METH_VARARGS },
13037 { (char *)"BColor_screen", _wrap_BColor_screen, METH_VARARGS },
13038 { (char *)"BColor_setScreen", _wrap_BColor_setScreen, METH_VARARGS },
13039 { (char *)"BColor_isAllocated", _wrap_BColor_isAllocated, METH_VARARGS },
13040 { (char *)"BColor_isValid", _wrap_BColor_isValid, METH_VARARGS },
13041 { (char *)"BColor_pixel", _wrap_BColor_pixel, METH_VARARGS },
13042 { (char *)"BColor_equals", _wrap_BColor_equals, METH_VARARGS },
13043 { (char *)"BColor_cleanupColorCache", _wrap_BColor_cleanupColorCache, METH_VARARGS },
13044 { (char *)"BColor_swigregister", BColor_swigregister, METH_VARARGS },
13045 { (char *)"new_Configuration", _wrap_new_Configuration, METH_VARARGS },
13046 { (char *)"delete_Configuration", _wrap_delete_Configuration, METH_VARARGS },
13047 { (char *)"Configuration_file", _wrap_Configuration_file, METH_VARARGS },
13048 { (char *)"Configuration_setFile", _wrap_Configuration_setFile, METH_VARARGS },
13049 { (char *)"Configuration_autoSave", _wrap_Configuration_autoSave, METH_VARARGS },
13050 { (char *)"Configuration_setAutoSave", _wrap_Configuration_setAutoSave, METH_VARARGS },
13051 { (char *)"Configuration_isModified", _wrap_Configuration_isModified, METH_VARARGS },
13052 { (char *)"Configuration_save", _wrap_Configuration_save, METH_VARARGS },
13053 { (char *)"Configuration_load", _wrap_Configuration_load, METH_VARARGS },
13054 { (char *)"Configuration_merge", _wrap_Configuration_merge, METH_VARARGS },
13055 { (char *)"Configuration_create", _wrap_Configuration_create, METH_VARARGS },
13056 { (char *)"Configuration_setValue_bool", _wrap_Configuration_setValue_bool, METH_VARARGS },
13057 { (char *)"Configuration_setValue", _wrap_Configuration_setValue, METH_VARARGS },
13058 { (char *)"Configuration_setValue_unsigned", _wrap_Configuration_setValue_unsigned, METH_VARARGS },
13059 { (char *)"Configuration_setValue_long", _wrap_Configuration_setValue_long, METH_VARARGS },
13060 { (char *)"Configuration_setValue_unsignedlong", _wrap_Configuration_setValue_unsignedlong, METH_VARARGS },
13061 { (char *)"Configuration_setValue_string", _wrap_Configuration_setValue_string, METH_VARARGS },
13062 { (char *)"Configuration_setValue_charptr", _wrap_Configuration_setValue_charptr, METH_VARARGS },
13063 { (char *)"Configuration_getValue", _wrap_Configuration_getValue, METH_VARARGS },
13064 { (char *)"Configuration_swigregister", Configuration_swigregister, METH_VARARGS },
13065 { (char *)"OBDisplay_initialize", _wrap_OBDisplay_initialize, METH_VARARGS },
13066 { (char *)"OBDisplay_destroy", _wrap_OBDisplay_destroy, METH_VARARGS },
13067 { (char *)"OBDisplay_gcCache", _wrap_OBDisplay_gcCache, METH_VARARGS },
13068 { (char *)"OBDisplay_screenInfo", _wrap_OBDisplay_screenInfo, METH_VARARGS },
13069 { (char *)"OBDisplay_shape", _wrap_OBDisplay_shape, METH_VARARGS },
13070 { (char *)"OBDisplay_shapeEventBase", _wrap_OBDisplay_shapeEventBase, METH_VARARGS },
13071 { (char *)"OBDisplay_xinerama", _wrap_OBDisplay_xinerama, METH_VARARGS },
13072 { (char *)"OBDisplay_numLockMask", _wrap_OBDisplay_numLockMask, METH_VARARGS },
13073 { (char *)"OBDisplay_scrollLockMask", _wrap_OBDisplay_scrollLockMask, METH_VARARGS },
13074 { (char *)"OBDisplay_grab", _wrap_OBDisplay_grab, METH_VARARGS },
13075 { (char *)"OBDisplay_ungrab", _wrap_OBDisplay_ungrab, METH_VARARGS },
13076 { (char *)"OBDisplay_grabButton", _wrap_OBDisplay_grabButton, METH_VARARGS },
13077 { (char *)"OBDisplay_ungrabButton", _wrap_OBDisplay_ungrabButton, METH_VARARGS },
13078 { (char *)"OBDisplay_grabKey", _wrap_OBDisplay_grabKey, METH_VARARGS },
13079 { (char *)"OBDisplay_ungrabKey", _wrap_OBDisplay_ungrabKey, METH_VARARGS },
13080 { (char *)"delete_OBDisplay", _wrap_delete_OBDisplay, METH_VARARGS },
13081 { (char *)"OBDisplay_swigregister", OBDisplay_swigregister, METH_VARARGS },
13082 { (char *)"BFont_fallbackFont", _wrap_BFont_fallbackFont, METH_VARARGS },
13083 { (char *)"BFont_setFallbackFont", _wrap_BFont_setFallbackFont, METH_VARARGS },
13084 { (char *)"new_BFont", _wrap_new_BFont, METH_VARARGS },
13085 { (char *)"delete_BFont", _wrap_delete_BFont, METH_VARARGS },
13086 { (char *)"BFont_fontstring", _wrap_BFont_fontstring, METH_VARARGS },
13087 { (char *)"BFont_height", _wrap_BFont_height, METH_VARARGS },
13088 { (char *)"BFont_maxCharWidth", _wrap_BFont_maxCharWidth, METH_VARARGS },
13089 { (char *)"BFont_measureString", _wrap_BFont_measureString, METH_VARARGS },
13090 { (char *)"BFont_drawString", _wrap_BFont_drawString, METH_VARARGS },
13091 { (char *)"BFont_swigregister", BFont_swigregister, METH_VARARGS },
13092 { (char *)"BGCCacheContext_set", _wrap_BGCCacheContext_set, METH_VARARGS },
13093 { (char *)"delete_BGCCacheContext", _wrap_delete_BGCCacheContext, METH_VARARGS },
13094 { (char *)"BGCCacheContext_swigregister", BGCCacheContext_swigregister, METH_VARARGS },
13095 { (char *)"BGCCacheItem_gc", _wrap_BGCCacheItem_gc, METH_VARARGS },
13096 { (char *)"delete_BGCCacheItem", _wrap_delete_BGCCacheItem, METH_VARARGS },
13097 { (char *)"BGCCacheItem_swigregister", BGCCacheItem_swigregister, METH_VARARGS },
13098 { (char *)"new_BGCCache", _wrap_new_BGCCache, METH_VARARGS },
13099 { (char *)"delete_BGCCache", _wrap_delete_BGCCache, METH_VARARGS },
13100 { (char *)"BGCCache_purge", _wrap_BGCCache_purge, METH_VARARGS },
13101 { (char *)"BGCCache_find", _wrap_BGCCache_find, METH_VARARGS },
13102 { (char *)"BGCCache_release", _wrap_BGCCache_release, METH_VARARGS },
13103 { (char *)"BGCCache_swigregister", BGCCache_swigregister, METH_VARARGS },
13104 { (char *)"new_BPen", _wrap_new_BPen, METH_VARARGS },
13105 { (char *)"delete_BPen", _wrap_delete_BPen, METH_VARARGS },
13106 { (char *)"BPen_gc", _wrap_BPen_gc, METH_VARARGS },
13107 { (char *)"BPen_swigregister", BPen_swigregister, METH_VARARGS },
13108 { (char *)"new_BImage", _wrap_new_BImage, METH_VARARGS },
13109 { (char *)"delete_BImage", _wrap_delete_BImage, METH_VARARGS },
13110 { (char *)"BImage_render", _wrap_BImage_render, METH_VARARGS },
13111 { (char *)"BImage_swigregister", BImage_swigregister, METH_VARARGS },
13112 { (char *)"new_BImageControl", _wrap_new_BImageControl, METH_VARARGS },
13113 { (char *)"delete_BImageControl", _wrap_delete_BImageControl, METH_VARARGS },
13114 { (char *)"BImageControl_doDither", _wrap_BImageControl_doDither, METH_VARARGS },
13115 { (char *)"BImageControl_getScreenInfo", _wrap_BImageControl_getScreenInfo, METH_VARARGS },
13116 { (char *)"BImageControl_getDrawable", _wrap_BImageControl_getDrawable, METH_VARARGS },
13117 { (char *)"BImageControl_getVisual", _wrap_BImageControl_getVisual, METH_VARARGS },
13118 { (char *)"BImageControl_getBitsPerPixel", _wrap_BImageControl_getBitsPerPixel, METH_VARARGS },
13119 { (char *)"BImageControl_getDepth", _wrap_BImageControl_getDepth, METH_VARARGS },
13120 { (char *)"BImageControl_getColorsPerChannel", _wrap_BImageControl_getColorsPerChannel, METH_VARARGS },
13121 { (char *)"BImageControl_getSqrt", _wrap_BImageControl_getSqrt, METH_VARARGS },
13122 { (char *)"BImageControl_renderImage", _wrap_BImageControl_renderImage, METH_VARARGS },
13123 { (char *)"BImageControl_installRootColormap", _wrap_BImageControl_installRootColormap, METH_VARARGS },
13124 { (char *)"BImageControl_removeImage", _wrap_BImageControl_removeImage, METH_VARARGS },
13125 { (char *)"BImageControl_getColorTables", _wrap_BImageControl_getColorTables, METH_VARARGS },
13126 { (char *)"BImageControl_getXColorTable", _wrap_BImageControl_getXColorTable, METH_VARARGS },
13127 { (char *)"BImageControl_getGradientBuffers", _wrap_BImageControl_getGradientBuffers, METH_VARARGS },
13128 { (char *)"BImageControl_setDither", _wrap_BImageControl_setDither, METH_VARARGS },
13129 { (char *)"BImageControl_setColorsPerChannel", _wrap_BImageControl_setColorsPerChannel, METH_VARARGS },
13130 { (char *)"BImageControl_timeout", _wrap_BImageControl_timeout, METH_VARARGS },
13131 { (char *)"BImageControl_swigregister", BImageControl_swigregister, METH_VARARGS },
13132 { (char *)"new_Point", _wrap_new_Point, METH_VARARGS },
13133 { (char *)"Point_setX", _wrap_Point_setX, METH_VARARGS },
13134 { (char *)"Point_x", _wrap_Point_x, METH_VARARGS },
13135 { (char *)"Point_setY", _wrap_Point_setY, METH_VARARGS },
13136 { (char *)"Point_y", _wrap_Point_y, METH_VARARGS },
13137 { (char *)"Point_setPoint", _wrap_Point_setPoint, METH_VARARGS },
13138 { (char *)"delete_Point", _wrap_delete_Point, METH_VARARGS },
13139 { (char *)"Point_swigregister", Point_swigregister, METH_VARARGS },
13140 { (char *)"new_OBProperty", _wrap_new_OBProperty, METH_VARARGS },
13141 { (char *)"delete_OBProperty", _wrap_delete_OBProperty, METH_VARARGS },
13142 { (char *)"OBProperty_set", _wrap_OBProperty_set, METH_VARARGS },
13143 { (char *)"OBProperty_get", _wrap_OBProperty_get, METH_VARARGS },
13144 { (char *)"OBProperty_erase", _wrap_OBProperty_erase, METH_VARARGS },
13145 { (char *)"OBProperty_atom", _wrap_OBProperty_atom, METH_VARARGS },
13146 { (char *)"OBProperty_swigregister", OBProperty_swigregister, METH_VARARGS },
13147 { (char *)"new_Rect", _wrap_new_Rect, METH_VARARGS },
13148 { (char *)"Rect_left", _wrap_Rect_left, METH_VARARGS },
13149 { (char *)"Rect_top", _wrap_Rect_top, METH_VARARGS },
13150 { (char *)"Rect_right", _wrap_Rect_right, METH_VARARGS },
13151 { (char *)"Rect_bottom", _wrap_Rect_bottom, METH_VARARGS },
13152 { (char *)"Rect_x", _wrap_Rect_x, METH_VARARGS },
13153 { (char *)"Rect_y", _wrap_Rect_y, METH_VARARGS },
13154 { (char *)"Rect_location", _wrap_Rect_location, METH_VARARGS },
13155 { (char *)"Rect_setX", _wrap_Rect_setX, METH_VARARGS },
13156 { (char *)"Rect_setY", _wrap_Rect_setY, METH_VARARGS },
13157 { (char *)"Rect_setPos", _wrap_Rect_setPos, METH_VARARGS },
13158 { (char *)"Rect_width", _wrap_Rect_width, METH_VARARGS },
13159 { (char *)"Rect_height", _wrap_Rect_height, METH_VARARGS },
13160 { (char *)"Rect_size", _wrap_Rect_size, METH_VARARGS },
13161 { (char *)"Rect_setWidth", _wrap_Rect_setWidth, METH_VARARGS },
13162 { (char *)"Rect_setHeight", _wrap_Rect_setHeight, METH_VARARGS },
13163 { (char *)"Rect_setSize", _wrap_Rect_setSize, METH_VARARGS },
13164 { (char *)"Rect_setRect", _wrap_Rect_setRect, METH_VARARGS },
13165 { (char *)"Rect_setCoords", _wrap_Rect_setCoords, METH_VARARGS },
13166 { (char *)"Rect_equals", _wrap_Rect_equals, METH_VARARGS },
13167 { (char *)"Rect_valid", _wrap_Rect_valid, METH_VARARGS },
13168 { (char *)"Rect_intersects", _wrap_Rect_intersects, METH_VARARGS },
13169 { (char *)"Rect_contains", _wrap_Rect_contains, METH_VARARGS },
13170 { (char *)"delete_Rect", _wrap_delete_Rect, METH_VARARGS },
13171 { (char *)"Rect_swigregister", Rect_swigregister, METH_VARARGS },
13172 { (char *)"new_ScreenInfo", _wrap_new_ScreenInfo, METH_VARARGS },
13173 { (char *)"ScreenInfo_visual", _wrap_ScreenInfo_visual, METH_VARARGS },
13174 { (char *)"ScreenInfo_rootWindow", _wrap_ScreenInfo_rootWindow, METH_VARARGS },
13175 { (char *)"ScreenInfo_colormap", _wrap_ScreenInfo_colormap, METH_VARARGS },
13176 { (char *)"ScreenInfo_depth", _wrap_ScreenInfo_depth, METH_VARARGS },
13177 { (char *)"ScreenInfo_screen", _wrap_ScreenInfo_screen, METH_VARARGS },
13178 { (char *)"ScreenInfo_rect", _wrap_ScreenInfo_rect, METH_VARARGS },
13179 { (char *)"ScreenInfo_width", _wrap_ScreenInfo_width, METH_VARARGS },
13180 { (char *)"ScreenInfo_height", _wrap_ScreenInfo_height, METH_VARARGS },
13181 { (char *)"ScreenInfo_displayString", _wrap_ScreenInfo_displayString, METH_VARARGS },
13182 { (char *)"delete_ScreenInfo", _wrap_delete_ScreenInfo, METH_VARARGS },
13183 { (char *)"ScreenInfo_swigregister", ScreenInfo_swigregister, METH_VARARGS },
13184 { (char *)"Strut_top_set", _wrap_Strut_top_set, METH_VARARGS },
13185 { (char *)"Strut_top_get", _wrap_Strut_top_get, METH_VARARGS },
13186 { (char *)"Strut_bottom_set", _wrap_Strut_bottom_set, METH_VARARGS },
13187 { (char *)"Strut_bottom_get", _wrap_Strut_bottom_get, METH_VARARGS },
13188 { (char *)"Strut_left_set", _wrap_Strut_left_set, METH_VARARGS },
13189 { (char *)"Strut_left_get", _wrap_Strut_left_get, METH_VARARGS },
13190 { (char *)"Strut_right_set", _wrap_Strut_right_set, METH_VARARGS },
13191 { (char *)"Strut_right_get", _wrap_Strut_right_get, METH_VARARGS },
13192 { (char *)"new_Strut", _wrap_new_Strut, METH_VARARGS },
13193 { (char *)"delete_Strut", _wrap_delete_Strut, METH_VARARGS },
13194 { (char *)"Strut_swigregister", Strut_swigregister, METH_VARARGS },
13195 { (char *)"PixmapMask_mask_set", _wrap_PixmapMask_mask_set, METH_VARARGS },
13196 { (char *)"PixmapMask_mask_get", _wrap_PixmapMask_mask_get, METH_VARARGS },
13197 { (char *)"PixmapMask_w_set", _wrap_PixmapMask_w_set, METH_VARARGS },
13198 { (char *)"PixmapMask_w_get", _wrap_PixmapMask_w_get, METH_VARARGS },
13199 { (char *)"PixmapMask_h_set", _wrap_PixmapMask_h_set, METH_VARARGS },
13200 { (char *)"PixmapMask_h_get", _wrap_PixmapMask_h_get, METH_VARARGS },
13201 { (char *)"new_PixmapMask", _wrap_new_PixmapMask, METH_VARARGS },
13202 { (char *)"delete_PixmapMask", _wrap_delete_PixmapMask, METH_VARARGS },
13203 { (char *)"PixmapMask_swigregister", PixmapMask_swigregister, METH_VARARGS },
13204 { (char *)"Style_image_control_set", _wrap_Style_image_control_set, METH_VARARGS },
13205 { (char *)"Style_image_control_get", _wrap_Style_image_control_get, METH_VARARGS },
13206 { (char *)"Style_l_text_focus_set", _wrap_Style_l_text_focus_set, METH_VARARGS },
13207 { (char *)"Style_l_text_focus_get", _wrap_Style_l_text_focus_get, METH_VARARGS },
13208 { (char *)"Style_l_text_unfocus_set", _wrap_Style_l_text_unfocus_set, METH_VARARGS },
13209 { (char *)"Style_l_text_unfocus_get", _wrap_Style_l_text_unfocus_get, METH_VARARGS },
13210 { (char *)"Style_b_pic_focus_set", _wrap_Style_b_pic_focus_set, METH_VARARGS },
13211 { (char *)"Style_b_pic_focus_get", _wrap_Style_b_pic_focus_get, METH_VARARGS },
13212 { (char *)"Style_b_pic_unfocus_set", _wrap_Style_b_pic_unfocus_set, METH_VARARGS },
13213 { (char *)"Style_b_pic_unfocus_get", _wrap_Style_b_pic_unfocus_get, METH_VARARGS },
13214 { (char *)"Style_border_color_set", _wrap_Style_border_color_set, METH_VARARGS },
13215 { (char *)"Style_border_color_get", _wrap_Style_border_color_get, METH_VARARGS },
13216 { (char *)"Style_font_set", _wrap_Style_font_set, METH_VARARGS },
13217 { (char *)"Style_font_get", _wrap_Style_font_get, METH_VARARGS },
13218 { (char *)"Style_f_focus_set", _wrap_Style_f_focus_set, METH_VARARGS },
13219 { (char *)"Style_f_focus_get", _wrap_Style_f_focus_get, METH_VARARGS },
13220 { (char *)"Style_f_unfocus_set", _wrap_Style_f_unfocus_set, METH_VARARGS },
13221 { (char *)"Style_f_unfocus_get", _wrap_Style_f_unfocus_get, METH_VARARGS },
13222 { (char *)"Style_t_focus_set", _wrap_Style_t_focus_set, METH_VARARGS },
13223 { (char *)"Style_t_focus_get", _wrap_Style_t_focus_get, METH_VARARGS },
13224 { (char *)"Style_t_unfocus_set", _wrap_Style_t_unfocus_set, METH_VARARGS },
13225 { (char *)"Style_t_unfocus_get", _wrap_Style_t_unfocus_get, METH_VARARGS },
13226 { (char *)"Style_l_focus_set", _wrap_Style_l_focus_set, METH_VARARGS },
13227 { (char *)"Style_l_focus_get", _wrap_Style_l_focus_get, METH_VARARGS },
13228 { (char *)"Style_l_unfocus_set", _wrap_Style_l_unfocus_set, METH_VARARGS },
13229 { (char *)"Style_l_unfocus_get", _wrap_Style_l_unfocus_get, METH_VARARGS },
13230 { (char *)"Style_h_focus_set", _wrap_Style_h_focus_set, METH_VARARGS },
13231 { (char *)"Style_h_focus_get", _wrap_Style_h_focus_get, METH_VARARGS },
13232 { (char *)"Style_h_unfocus_set", _wrap_Style_h_unfocus_set, METH_VARARGS },
13233 { (char *)"Style_h_unfocus_get", _wrap_Style_h_unfocus_get, METH_VARARGS },
13234 { (char *)"Style_b_focus_set", _wrap_Style_b_focus_set, METH_VARARGS },
13235 { (char *)"Style_b_focus_get", _wrap_Style_b_focus_get, METH_VARARGS },
13236 { (char *)"Style_b_unfocus_set", _wrap_Style_b_unfocus_set, METH_VARARGS },
13237 { (char *)"Style_b_unfocus_get", _wrap_Style_b_unfocus_get, METH_VARARGS },
13238 { (char *)"Style_b_pressed_focus_set", _wrap_Style_b_pressed_focus_set, METH_VARARGS },
13239 { (char *)"Style_b_pressed_focus_get", _wrap_Style_b_pressed_focus_get, METH_VARARGS },
13240 { (char *)"Style_b_pressed_unfocus_set", _wrap_Style_b_pressed_unfocus_set, METH_VARARGS },
13241 { (char *)"Style_b_pressed_unfocus_get", _wrap_Style_b_pressed_unfocus_get, METH_VARARGS },
13242 { (char *)"Style_g_focus_set", _wrap_Style_g_focus_set, METH_VARARGS },
13243 { (char *)"Style_g_focus_get", _wrap_Style_g_focus_get, METH_VARARGS },
13244 { (char *)"Style_g_unfocus_set", _wrap_Style_g_unfocus_set, METH_VARARGS },
13245 { (char *)"Style_g_unfocus_get", _wrap_Style_g_unfocus_get, METH_VARARGS },
13246 { (char *)"Style_close_button_set", _wrap_Style_close_button_set, METH_VARARGS },
13247 { (char *)"Style_close_button_get", _wrap_Style_close_button_get, METH_VARARGS },
13248 { (char *)"Style_max_button_set", _wrap_Style_max_button_set, METH_VARARGS },
13249 { (char *)"Style_max_button_get", _wrap_Style_max_button_get, METH_VARARGS },
13250 { (char *)"Style_icon_button_set", _wrap_Style_icon_button_set, METH_VARARGS },
13251 { (char *)"Style_icon_button_get", _wrap_Style_icon_button_get, METH_VARARGS },
13252 { (char *)"Style_stick_button_set", _wrap_Style_stick_button_set, METH_VARARGS },
13253 { (char *)"Style_stick_button_get", _wrap_Style_stick_button_get, METH_VARARGS },
13254 { (char *)"Style_justify_set", _wrap_Style_justify_set, METH_VARARGS },
13255 { (char *)"Style_justify_get", _wrap_Style_justify_get, METH_VARARGS },
13256 { (char *)"Style_bullet_type_set", _wrap_Style_bullet_type_set, METH_VARARGS },
13257 { (char *)"Style_bullet_type_get", _wrap_Style_bullet_type_get, METH_VARARGS },
13258 { (char *)"Style_handle_width_set", _wrap_Style_handle_width_set, METH_VARARGS },
13259 { (char *)"Style_handle_width_get", _wrap_Style_handle_width_get, METH_VARARGS },
13260 { (char *)"Style_bevel_width_set", _wrap_Style_bevel_width_set, METH_VARARGS },
13261 { (char *)"Style_bevel_width_get", _wrap_Style_bevel_width_get, METH_VARARGS },
13262 { (char *)"Style_frame_width_set", _wrap_Style_frame_width_set, METH_VARARGS },
13263 { (char *)"Style_frame_width_get", _wrap_Style_frame_width_get, METH_VARARGS },
13264 { (char *)"Style_border_width_set", _wrap_Style_border_width_set, METH_VARARGS },
13265 { (char *)"Style_border_width_get", _wrap_Style_border_width_get, METH_VARARGS },
13266 { (char *)"Style_screen_number_set", _wrap_Style_screen_number_set, METH_VARARGS },
13267 { (char *)"Style_screen_number_get", _wrap_Style_screen_number_get, METH_VARARGS },
13268 { (char *)"Style_shadow_fonts_set", _wrap_Style_shadow_fonts_set, METH_VARARGS },
13269 { (char *)"Style_shadow_fonts_get", _wrap_Style_shadow_fonts_get, METH_VARARGS },
13270 { (char *)"Style_aa_fonts_set", _wrap_Style_aa_fonts_set, METH_VARARGS },
13271 { (char *)"Style_aa_fonts_get", _wrap_Style_aa_fonts_get, METH_VARARGS },
13272 { (char *)"new_Style", _wrap_new_Style, METH_VARARGS },
13273 { (char *)"delete_Style", _wrap_delete_Style, METH_VARARGS },
13274 { (char *)"Style_readDatabaseMask", _wrap_Style_readDatabaseMask, METH_VARARGS },
13275 { (char *)"Style_readDatabaseTexture", _wrap_Style_readDatabaseTexture, METH_VARARGS },
13276 { (char *)"Style_readDatabaseColor", _wrap_Style_readDatabaseColor, METH_VARARGS },
13277 { (char *)"Style_readDatabaseFont", _wrap_Style_readDatabaseFont, METH_VARARGS },
13278 { (char *)"Style_load", _wrap_Style_load, METH_VARARGS },
13279 { (char *)"Style_getCloseButtonMask", _wrap_Style_getCloseButtonMask, METH_VARARGS },
13280 { (char *)"Style_getMaximizeButtonMask", _wrap_Style_getMaximizeButtonMask, METH_VARARGS },
13281 { (char *)"Style_getIconifyButtonMask", _wrap_Style_getIconifyButtonMask, METH_VARARGS },
13282 { (char *)"Style_getStickyButtonMask", _wrap_Style_getStickyButtonMask, METH_VARARGS },
13283 { (char *)"Style_getTextFocus", _wrap_Style_getTextFocus, METH_VARARGS },
13284 { (char *)"Style_getTextUnfocus", _wrap_Style_getTextUnfocus, METH_VARARGS },
13285 { (char *)"Style_getButtonPicFocus", _wrap_Style_getButtonPicFocus, METH_VARARGS },
13286 { (char *)"Style_getButtonPicUnfocus", _wrap_Style_getButtonPicUnfocus, METH_VARARGS },
13287 { (char *)"Style_getTitleFocus", _wrap_Style_getTitleFocus, METH_VARARGS },
13288 { (char *)"Style_getTitleUnfocus", _wrap_Style_getTitleUnfocus, METH_VARARGS },
13289 { (char *)"Style_getLabelFocus", _wrap_Style_getLabelFocus, METH_VARARGS },
13290 { (char *)"Style_getLabelUnfocus", _wrap_Style_getLabelUnfocus, METH_VARARGS },
13291 { (char *)"Style_getHandleFocus", _wrap_Style_getHandleFocus, METH_VARARGS },
13292 { (char *)"Style_getHandleUnfocus", _wrap_Style_getHandleUnfocus, METH_VARARGS },
13293 { (char *)"Style_getButtonFocus", _wrap_Style_getButtonFocus, METH_VARARGS },
13294 { (char *)"Style_getButtonUnfocus", _wrap_Style_getButtonUnfocus, METH_VARARGS },
13295 { (char *)"Style_getButtonPressedFocus", _wrap_Style_getButtonPressedFocus, METH_VARARGS },
13296 { (char *)"Style_getButtonPressedUnfocus", _wrap_Style_getButtonPressedUnfocus, METH_VARARGS },
13297 { (char *)"Style_getGripFocus", _wrap_Style_getGripFocus, METH_VARARGS },
13298 { (char *)"Style_getGripUnfocus", _wrap_Style_getGripUnfocus, METH_VARARGS },
13299 { (char *)"Style_getHandleWidth", _wrap_Style_getHandleWidth, METH_VARARGS },
13300 { (char *)"Style_getBevelWidth", _wrap_Style_getBevelWidth, METH_VARARGS },
13301 { (char *)"Style_getFrameWidth", _wrap_Style_getFrameWidth, METH_VARARGS },
13302 { (char *)"Style_getBorderWidth", _wrap_Style_getBorderWidth, METH_VARARGS },
13303 { (char *)"Style_getFont", _wrap_Style_getFont, METH_VARARGS },
13304 { (char *)"Style_setShadowFonts", _wrap_Style_setShadowFonts, METH_VARARGS },
13305 { (char *)"Style_hasShadowFonts", _wrap_Style_hasShadowFonts, METH_VARARGS },
13306 { (char *)"Style_setAAFonts", _wrap_Style_setAAFonts, METH_VARARGS },
13307 { (char *)"Style_hasAAFonts", _wrap_Style_hasAAFonts, METH_VARARGS },
13308 { (char *)"Style_textJustify", _wrap_Style_textJustify, METH_VARARGS },
13309 { (char *)"Style_bulletType", _wrap_Style_bulletType, METH_VARARGS },
13310 { (char *)"Style_getBorderColor", _wrap_Style_getBorderColor, METH_VARARGS },
13311 { (char *)"Style_getFrameFocus", _wrap_Style_getFrameFocus, METH_VARARGS },
13312 { (char *)"Style_getFrameUnfocus", _wrap_Style_getFrameUnfocus, METH_VARARGS },
13313 { (char *)"Style_setImageControl", _wrap_Style_setImageControl, METH_VARARGS },
13314 { (char *)"Style_getScreen", _wrap_Style_getScreen, METH_VARARGS },
13315 { (char *)"Style_swigregister", Style_swigregister, METH_VARARGS },
13316 { (char *)"new_BTexture", _wrap_new_BTexture, METH_VARARGS },
13317 { (char *)"BTexture_setColor", _wrap_BTexture_setColor, METH_VARARGS },
13318 { (char *)"BTexture_setColorTo", _wrap_BTexture_setColorTo, METH_VARARGS },
13319 { (char *)"BTexture_setBorderColor", _wrap_BTexture_setBorderColor, METH_VARARGS },
13320 { (char *)"BTexture_color", _wrap_BTexture_color, METH_VARARGS },
13321 { (char *)"BTexture_colorTo", _wrap_BTexture_colorTo, METH_VARARGS },
13322 { (char *)"BTexture_lightColor", _wrap_BTexture_lightColor, METH_VARARGS },
13323 { (char *)"BTexture_shadowColor", _wrap_BTexture_shadowColor, METH_VARARGS },
13324 { (char *)"BTexture_borderColor", _wrap_BTexture_borderColor, METH_VARARGS },
13325 { (char *)"BTexture_texture", _wrap_BTexture_texture, METH_VARARGS },
13326 { (char *)"BTexture_setTexture", _wrap_BTexture_setTexture, METH_VARARGS },
13327 { (char *)"BTexture_addTexture", _wrap_BTexture_addTexture, METH_VARARGS },
13328 { (char *)"BTexture_equals", _wrap_BTexture_equals, METH_VARARGS },
13329 { (char *)"BTexture_screen", _wrap_BTexture_screen, METH_VARARGS },
13330 { (char *)"BTexture_setScreen", _wrap_BTexture_setScreen, METH_VARARGS },
13331 { (char *)"BTexture_setImageControl", _wrap_BTexture_setImageControl, METH_VARARGS },
13332 { (char *)"BTexture_description", _wrap_BTexture_description, METH_VARARGS },
13333 { (char *)"BTexture_setDescription", _wrap_BTexture_setDescription, METH_VARARGS },
13334 { (char *)"BTexture_render", _wrap_BTexture_render, METH_VARARGS },
13335 { (char *)"delete_BTexture", _wrap_delete_BTexture, METH_VARARGS },
13336 { (char *)"BTexture_swigregister", BTexture_swigregister, METH_VARARGS },
13337 { (char *)"new_OBTimer", _wrap_new_OBTimer, METH_VARARGS },
13338 { (char *)"delete_OBTimer", _wrap_delete_OBTimer, METH_VARARGS },
13339 { (char *)"OBTimer_fire", _wrap_OBTimer_fire, METH_VARARGS },
13340 { (char *)"OBTimer_timing", _wrap_OBTimer_timing, METH_VARARGS },
13341 { (char *)"OBTimer_recurring", _wrap_OBTimer_recurring, METH_VARARGS },
13342 { (char *)"OBTimer_timeout", _wrap_OBTimer_timeout, METH_VARARGS },
13343 { (char *)"OBTimer_startTime", _wrap_OBTimer_startTime, METH_VARARGS },
13344 { (char *)"OBTimer_remainingTime", _wrap_OBTimer_remainingTime, METH_VARARGS },
13345 { (char *)"OBTimer_shouldFire", _wrap_OBTimer_shouldFire, METH_VARARGS },
13346 { (char *)"OBTimer_endTime", _wrap_OBTimer_endTime, METH_VARARGS },
13347 { (char *)"OBTimer_setRecurring", _wrap_OBTimer_setRecurring, METH_VARARGS },
13348 { (char *)"OBTimer_setTimeout", _wrap_OBTimer_setTimeout, METH_VARARGS },
13349 { (char *)"OBTimer_start", _wrap_OBTimer_start, METH_VARARGS },
13350 { (char *)"OBTimer_stop", _wrap_OBTimer_stop, METH_VARARGS },
13351 { (char *)"OBTimer_swigregister", OBTimer_swigregister, METH_VARARGS },
13352 { (char *)"new_OBTimerQueueManager", _wrap_new_OBTimerQueueManager, METH_VARARGS },
13353 { (char *)"delete_OBTimerQueueManager", _wrap_delete_OBTimerQueueManager, METH_VARARGS },
13354 { (char *)"OBTimerQueueManager_fire", _wrap_OBTimerQueueManager_fire, METH_VARARGS },
13355 { (char *)"OBTimerQueueManager_addTimer", _wrap_OBTimerQueueManager_addTimer, METH_VARARGS },
13356 { (char *)"OBTimerQueueManager_removeTimer", _wrap_OBTimerQueueManager_removeTimer, METH_VARARGS },
13357 { (char *)"OBTimerQueueManager_swigregister", OBTimerQueueManager_swigregister, METH_VARARGS },
13358 { (char *)"expandTilde", _wrap_expandTilde, METH_VARARGS },
13359 { (char *)"bexec", _wrap_bexec, METH_VARARGS },
13360 { (char *)"textPropertyToString", _wrap_textPropertyToString, METH_VARARGS },
13361 { (char *)"itostring_unsigned_long", _wrap_itostring_unsigned_long, METH_VARARGS },
13362 { (char *)"itostring_long", _wrap_itostring_long, METH_VARARGS },
13363 { (char *)"itostring_unsigned", _wrap_itostring_unsigned, METH_VARARGS },
13364 { (char *)"itostring", _wrap_itostring, METH_VARARGS },
13365 { (char *)"basename", _wrap_basename, METH_VARARGS },
13366 { NULL, NULL }
13367 };
13368
13369
13370 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
13371
13372 static void *_p_otk__OtkButtonTo_p_otk__OtkFocusWidget(void *x) {
13373 return (void *)((otk::OtkFocusWidget *) (otk::OtkFocusLabel *) ((otk::OtkButton *) x));
13374 }
13375 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkFocusWidget(void *x) {
13376 return (void *)((otk::OtkFocusWidget *) ((otk::OtkFocusLabel *) x));
13377 }
13378 static void *_p_otk__OtkButtonTo_p_otk__OtkWidget(void *x) {
13379 return (void *)((otk::OtkWidget *) (otk::OtkFocusWidget *)(otk::OtkFocusLabel *) ((otk::OtkButton *) x));
13380 }
13381 static void *_p_otk__OtkAppWidgetTo_p_otk__OtkWidget(void *x) {
13382 return (void *)((otk::OtkWidget *) ((otk::OtkAppWidget *) x));
13383 }
13384 static void *_p_otk__OtkFocusWidgetTo_p_otk__OtkWidget(void *x) {
13385 return (void *)((otk::OtkWidget *) ((otk::OtkFocusWidget *) x));
13386 }
13387 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkWidget(void *x) {
13388 return (void *)((otk::OtkWidget *) (otk::OtkFocusWidget *) ((otk::OtkFocusLabel *) x));
13389 }
13390 static void *_p_otk__OtkButtonTo_p_otk__OtkEventHandler(void *x) {
13391 return (void *)((otk::OtkEventHandler *) (otk::OtkWidget *)(otk::OtkFocusWidget *)(otk::OtkFocusLabel *) ((otk::OtkButton *) x));
13392 }
13393 static void *_p_otk__OtkAppWidgetTo_p_otk__OtkEventHandler(void *x) {
13394 return (void *)((otk::OtkEventHandler *) (otk::OtkWidget *) ((otk::OtkAppWidget *) x));
13395 }
13396 static void *_p_otk__OtkWidgetTo_p_otk__OtkEventHandler(void *x) {
13397 return (void *)((otk::OtkEventHandler *) ((otk::OtkWidget *) x));
13398 }
13399 static void *_p_otk__OtkFocusWidgetTo_p_otk__OtkEventHandler(void *x) {
13400 return (void *)((otk::OtkEventHandler *) (otk::OtkWidget *) ((otk::OtkFocusWidget *) x));
13401 }
13402 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkEventHandler(void *x) {
13403 return (void *)((otk::OtkEventHandler *) (otk::OtkWidget *)(otk::OtkFocusWidget *) ((otk::OtkFocusLabel *) x));
13404 }
13405 static void *_p_otk__OtkButtonTo_p_otk__OtkFocusLabel(void *x) {
13406 return (void *)((otk::OtkFocusLabel *) ((otk::OtkButton *) x));
13407 }
13408 static void *_p_otk__OtkApplicationTo_p_otk__OtkEventDispatcher(void *x) {
13409 return (void *)((otk::OtkEventDispatcher *) ((otk::OtkApplication *) x));
13410 }
13411 static swig_type_info _swigt__p_otk__BGCCache[] = {{"_p_otk__BGCCache", 0, "otk::BGCCache *", 0},{"_p_otk__BGCCache"},{0}};
13412 static swig_type_info _swigt__p_otk__BColor[] = {{"_p_otk__BColor", 0, "otk::BColor *", 0},{"_p_otk__BColor"},{0}};
13413 static swig_type_info _swigt__p_otk__OBProperty__StringVect[] = {{"_p_otk__OBProperty__StringVect", 0, "otk::OBProperty::StringVect *", 0},{"_p_otk__OBProperty__StringVect"},{0}};
13414 static swig_type_info _swigt__p_XFontStruct[] = {{"_p_XFontStruct", 0, "XFontStruct *", 0},{"_p_XFontStruct"},{0}};
13415 static swig_type_info _swigt__p_otk__Configuration[] = {{"_p_otk__Configuration", 0, "otk::Configuration *", 0},{"_p_otk__Configuration"},{0}};
13416 static swig_type_info _swigt__p_otk__PixmapMask[] = {{"_p_otk__PixmapMask", 0, "otk::PixmapMask *", 0},{"_p_otk__PixmapMask"},{0}};
13417 static swig_type_info _swigt__p_Atom[] = {{"_p_Atom", 0, "Atom *", 0},{"_p_Atom"},{0}};
13418 static swig_type_info _swigt__p_otk__PointerAssassin[] = {{"_p_otk__PointerAssassin", 0, "otk::PointerAssassin *", 0},{"_p_otk__PointerAssassin"},{0}};
13419 static swig_type_info _swigt__p_otk__BImage[] = {{"_p_otk__BImage", 0, "otk::BImage *", 0},{"_p_otk__BImage"},{0}};
13420 static swig_type_info _swigt__p_otk__OBTimer[] = {{"_p_otk__OBTimer", 0, "otk::OBTimer *", 0},{"_p_otk__OBTimer"},{0}};
13421 static swig_type_info _swigt__p_otk__OtkWidget__OtkWidgetList[] = {{"_p_otk__OtkWidget__OtkWidgetList", 0, "otk::OtkWidget::OtkWidgetList const &", 0},{"_p_otk__OtkWidget__OtkWidgetList"},{0}};
13422 static swig_type_info _swigt__p_bool[] = {{"_p_bool", 0, "bool *", 0},{"_p_bool"},{0}};
13423 static swig_type_info _swigt__p_otk__OBDisplay[] = {{"_p_otk__OBDisplay", 0, "otk::OBDisplay *", 0},{"_p_otk__OBDisplay"},{0}};
13424 static swig_type_info _swigt__p_Display[] = {{"_p_Display", 0, "Display *", 0},{"_p_Display"},{0}};
13425 static swig_type_info _swigt__p_p_XColor[] = {{"_p_p_XColor", 0, "XColor **", 0},{"_p_p_XColor"},{0}};
13426 static swig_type_info _swigt__p_XReparentEvent[] = {{"_p_XReparentEvent", 0, "XReparentEvent *", 0},{"_p_XReparentEvent"},{0}};
13427 static swig_type_info _swigt__p_otk__BPen[] = {{"_p_otk__BPen", 0, "otk::BPen *", 0},{"_p_otk__BPen"},{0}};
13428 static swig_type_info _swigt__p_otk__BImageControl[] = {{"_p_otk__BImageControl", 0, "otk::BImageControl *", 0},{"_p_otk__BImageControl"},{0}};
13429 static swig_type_info _swigt__p_otk__OtkButton[] = {{"_p_otk__OtkButton", 0, "otk::OtkButton *", 0},{"_p_otk__OtkButton"},{0}};
13430 static swig_type_info _swigt__p_otk__Rect[] = {{"_p_otk__Rect", 0, "otk::Rect *", 0},{"_p_otk__Rect"},{0}};
13431 static swig_type_info _swigt__p_otk__Style[] = {{"_p_otk__Style", 0, "otk::Style *", 0},{"_p_otk__Style"},{0}};
13432 static swig_type_info _swigt__p_XSelectionClearEvent[] = {{"_p_XSelectionClearEvent", 0, "XSelectionClearEvent *", 0},{"_p_XSelectionClearEvent"},{0}};
13433 static swig_type_info _swigt__p_Visual[] = {{"_p_Visual", 0, "Visual *", 0},{"_p_Visual"},{0}};
13434 static swig_type_info _swigt__p_timeval[] = {{"_p_timeval", 0, "timeval *", 0},{"_p_timeval"},{0}};
13435 static swig_type_info _swigt__p_int[] = {{"_p_int", 0, "int *", 0},{"_p_int"},{0}};
13436 static swig_type_info _swigt__p_otk__Strut[] = {{"_p_otk__Strut", 0, "otk::Strut *", 0},{"_p_otk__Strut"},{0}};
13437 static swig_type_info _swigt__p_otk__OtkApplication[] = {{"_p_otk__OtkApplication", 0, "otk::OtkApplication *", 0},{"_p_otk__OtkApplication"},{0}};
13438 static swig_type_info _swigt__p_XRectangle[] = {{"_p_XRectangle", 0, "XRectangle *", 0},{"_p_XRectangle"},{0}};
13439 static swig_type_info _swigt__p_otk__OtkFocusWidget[] = {{"_p_otk__OtkFocusWidget", 0, "otk::OtkFocusWidget *", 0},{"_p_otk__OtkButton", _p_otk__OtkButtonTo_p_otk__OtkFocusWidget},{"_p_otk__OtkFocusWidget"},{"_p_otk__OtkFocusLabel", _p_otk__OtkFocusLabelTo_p_otk__OtkFocusWidget},{0}};
13440 static swig_type_info _swigt__p_otk__OtkWidget[] = {{"_p_otk__OtkWidget", 0, "otk::OtkWidget *", 0},{"_p_otk__OtkButton", _p_otk__OtkButtonTo_p_otk__OtkWidget},{"_p_otk__OtkAppWidget", _p_otk__OtkAppWidgetTo_p_otk__OtkWidget},{"_p_otk__OtkWidget"},{"_p_otk__OtkFocusWidget", _p_otk__OtkFocusWidgetTo_p_otk__OtkWidget},{"_p_otk__OtkFocusLabel", _p_otk__OtkFocusLabelTo_p_otk__OtkWidget},{0}};
13441 static swig_type_info _swigt__p_Cursor[] = {{"_p_Cursor", 0, "Cursor *", 0},{"_p_Cursor"},{0}};
13442 static swig_type_info _swigt__p_Colormap[] = {{"_p_Colormap", 0, "Colormap *", 0},{"_p_Colormap"},{0}};
13443 static swig_type_info _swigt__p_XGravityEvent[] = {{"_p_XGravityEvent", 0, "XGravityEvent *", 0},{"_p_XGravityEvent"},{0}};
13444 static swig_type_info _swigt__p_XVisibilityEvent[] = {{"_p_XVisibilityEvent", 0, "XVisibilityEvent *", 0},{"_p_XVisibilityEvent"},{0}};
13445 static swig_type_info _swigt__p_XPropertyEvent[] = {{"_p_XPropertyEvent", 0, "XPropertyEvent *", 0},{"_p_XPropertyEvent"},{0}};
13446 static swig_type_info _swigt__p_Window[] = {{"_p_Window", 0, "Window *", 0},{"_p_Window"},{0}};
13447 static swig_type_info _swigt__p_otk__BGCCacheContext[] = {{"_p_otk__BGCCacheContext", 0, "otk::BGCCacheContext *", 0},{"_p_otk__BGCCacheContext"},{0}};
13448 static swig_type_info _swigt__p_XCreateWindowEvent[] = {{"_p_XCreateWindowEvent", 0, "XCreateWindowEvent *", 0},{"_p_XCreateWindowEvent"},{0}};
13449 static swig_type_info _swigt__p_XDestroyWindowEvent[] = {{"_p_XDestroyWindowEvent", 0, "XDestroyWindowEvent *", 0},{"_p_XDestroyWindowEvent"},{0}};
13450 static swig_type_info _swigt__p_Time[] = {{"_p_Time", 0, "Time *", 0},{"_p_Time"},{0}};
13451 static swig_type_info _swigt__p_XCirculateEvent[] = {{"_p_XCirculateEvent", 0, "XCirculateEvent *", 0},{"_p_XCirculateEvent"},{0}};
13452 static swig_type_info _swigt__p_XConfigureEvent[] = {{"_p_XConfigureEvent", 0, "XConfigureEvent *", 0},{"_p_XConfigureEvent"},{0}};
13453 static swig_type_info _swigt__p_long[] = {{"_p_long", 0, "long *", 0},{"_p_long"},{0}};
13454 static swig_type_info _swigt__p_otk__OBProperty[] = {{"_p_otk__OBProperty", 0, "otk::OBProperty *", 0},{"_p_otk__OBProperty"},{0}};
13455 static swig_type_info _swigt__p_XTextProperty[] = {{"_p_XTextProperty", 0, "XTextProperty *", 0},{"_p_XTextProperty"},{0}};
13456 static swig_type_info _swigt__p_otk__OtkEventHandler[] = {{"_p_otk__OtkEventHandler", 0, "otk::OtkEventHandler *", 0},{"_p_otk__OtkEventHandler"},{"_p_otk__OtkButton", _p_otk__OtkButtonTo_p_otk__OtkEventHandler},{"_p_otk__OtkAppWidget", _p_otk__OtkAppWidgetTo_p_otk__OtkEventHandler},{"_p_otk__OtkWidget", _p_otk__OtkWidgetTo_p_otk__OtkEventHandler},{"_p_otk__OtkFocusWidget", _p_otk__OtkFocusWidgetTo_p_otk__OtkEventHandler},{"_p_otk__OtkFocusLabel", _p_otk__OtkFocusLabelTo_p_otk__OtkEventHandler},{0}};
13457 static swig_type_info _swigt__p_XSelectionRequestEvent[] = {{"_p_XSelectionRequestEvent", 0, "XSelectionRequestEvent *", 0},{"_p_XSelectionRequestEvent"},{0}};
13458 static swig_type_info _swigt__p_XCirculateRequestEvent[] = {{"_p_XCirculateRequestEvent", 0, "XCirculateRequestEvent *", 0},{"_p_XCirculateRequestEvent"},{0}};
13459 static swig_type_info _swigt__p_XConfigureRequestEvent[] = {{"_p_XConfigureRequestEvent", 0, "XConfigureRequestEvent *", 0},{"_p_XConfigureRequestEvent"},{0}};
13460 static swig_type_info _swigt__p_XMapRequestEvent[] = {{"_p_XMapRequestEvent", 0, "XMapRequestEvent *", 0},{"_p_XMapRequestEvent"},{0}};
13461 static swig_type_info _swigt__p_XResizeRequestEvent[] = {{"_p_XResizeRequestEvent", 0, "XResizeRequestEvent *", 0},{"_p_XResizeRequestEvent"},{0}};
13462 static swig_type_info _swigt__otk__OBTimeoutHandler[] = {{"_otk__OBTimeoutHandler", 0, "otk::OBTimeoutHandler", 0},{"_otk__OBTimeoutHandler"},{0}};
13463 static swig_type_info _swigt__p_XftDraw[] = {{"_p_XftDraw", 0, "XftDraw *", 0},{"_p_XftDraw"},{0}};
13464 static swig_type_info _swigt__p_otk__ScreenInfo[] = {{"_p_otk__ScreenInfo", 0, "otk::ScreenInfo *", 0},{"_p_otk__ScreenInfo"},{0}};
13465 static swig_type_info _swigt__p_otk__OtkFocusLabel[] = {{"_p_otk__OtkFocusLabel", 0, "otk::OtkFocusLabel *", 0},{"_p_otk__OtkButton", _p_otk__OtkButtonTo_p_otk__OtkFocusLabel},{"_p_otk__OtkFocusLabel"},{0}};
13466 static swig_type_info _swigt__p_otk__BTexture[] = {{"_p_otk__BTexture", 0, "otk::BTexture *", 0},{"_p_otk__BTexture"},{0}};
13467 static swig_type_info _swigt__p_otk__OtkEventDispatcher[] = {{"_p_otk__OtkEventDispatcher", 0, "otk::OtkEventDispatcher *", 0},{"_p_otk__OtkApplication", _p_otk__OtkApplicationTo_p_otk__OtkEventDispatcher},{"_p_otk__OtkEventDispatcher"},{0}};
13468 static swig_type_info _swigt__p_otk__BFont[] = {{"_p_otk__BFont", 0, "otk::BFont *", 0},{"_p_otk__BFont"},{0}};
13469 static swig_type_info _swigt__p_otk__Point[] = {{"_p_otk__Point", 0, "otk::Point *", 0},{"_p_otk__Point"},{0}};
13470 static swig_type_info _swigt__p_p_char[] = {{"_p_p_char", 0, "char **", 0},{"_p_p_char"},{0}};
13471 static swig_type_info _swigt__p_XMotionEvent[] = {{"_p_XMotionEvent", 0, "XMotionEvent *", 0},{"_p_XMotionEvent"},{0}};
13472 static swig_type_info _swigt__p_XButtonEvent[] = {{"_p_XButtonEvent", 0, "XButtonEvent *", 0},{"_p_XButtonEvent"},{0}};
13473 static swig_type_info _swigt__p_XSelectionEvent[] = {{"_p_XSelectionEvent", 0, "XSelectionEvent *", 0},{"_p_XSelectionEvent"},{0}};
13474 static swig_type_info _swigt__p_Pixmap[] = {{"_p_Pixmap", 0, "Pixmap *", 0},{"_p_Pixmap"},{0}};
13475 static swig_type_info _swigt__p_GC[] = {{"_p_GC", 0, "GC *", 0},{"_p_GC"},{0}};
13476 static swig_type_info _swigt__p_otk__OBTimerQueueManager[] = {{"_p_otk__OBTimerQueueManager", 0, "otk::OBTimerQueueManager *", 0},{"_p_otk__OBTimerQueueManager"},{0}};
13477 static swig_type_info _swigt__p_otk__OtkAppWidget[] = {{"_p_otk__OtkAppWidget", 0, "otk::OtkAppWidget *", 0},{"_p_otk__OtkAppWidget"},{0}};
13478 static swig_type_info _swigt__p_XKeyEvent[] = {{"_p_XKeyEvent", 0, "XKeyEvent *", 0},{"_p_XKeyEvent"},{0}};
13479 static swig_type_info _swigt__p_unsigned_long[] = {{"_p_unsigned_long", 0, "unsigned long *", 0},{"_p_unsigned_long"},{0}};
13480 static swig_type_info _swigt__p_XEvent[] = {{"_p_XEvent", 0, "XEvent *", 0},{"_p_XEvent"},{0}};
13481 static swig_type_info _swigt__p_p_unsigned_long[] = {{"_p_p_unsigned_long", 0, "unsigned long **", 0},{"_p_p_unsigned_long"},{0}};
13482 static swig_type_info _swigt__p_std__string[] = {{"_p_std__string", 0, "std::string *", 0},{"_p_std__string"},{0}};
13483 static swig_type_info _swigt__p_XCrossingEvent[] = {{"_p_XCrossingEvent", 0, "XCrossingEvent *", 0},{"_p_XCrossingEvent"},{0}};
13484 static swig_type_info _swigt__p_XMappingEvent[] = {{"_p_XMappingEvent", 0, "XMappingEvent *", 0},{"_p_XMappingEvent"},{0}};
13485 static swig_type_info _swigt__p_otk__BGCCacheItem[] = {{"_p_otk__BGCCacheItem", 0, "otk::BGCCacheItem *", 0},{"_p_otk__BGCCacheItem"},{0}};
13486 static swig_type_info _swigt__p_p_unsigned_int[] = {{"_p_p_unsigned_int", 0, "unsigned int **", 0},{"_p_p_unsigned_int"},{0}};
13487 static swig_type_info _swigt__p_unsigned_int[] = {{"_p_unsigned_int", 0, "unsigned int *", 0},{"_p_unsigned_int"},{0}};
13488 static swig_type_info _swigt__p_p_unsigned_char[] = {{"_p_p_unsigned_char", 0, "unsigned char **", 0},{"_p_p_unsigned_char"},{0}};
13489 static swig_type_info _swigt__p_XClientMessageEvent[] = {{"_p_XClientMessageEvent", 0, "XClientMessageEvent *", 0},{"_p_XClientMessageEvent"},{0}};
13490 static swig_type_info _swigt__p_XExposeEvent[] = {{"_p_XExposeEvent", 0, "XExposeEvent *", 0},{"_p_XExposeEvent"},{0}};
13491 static swig_type_info _swigt__p_XFocusChangeEvent[] = {{"_p_XFocusChangeEvent", 0, "XFocusChangeEvent *", 0},{"_p_XFocusChangeEvent"},{0}};
13492 static swig_type_info _swigt__p_XGraphicsExposeEvent[] = {{"_p_XGraphicsExposeEvent", 0, "XGraphicsExposeEvent *", 0},{"_p_XGraphicsExposeEvent"},{0}};
13493 static swig_type_info _swigt__p_XNoExposeEvent[] = {{"_p_XNoExposeEvent", 0, "XNoExposeEvent *", 0},{"_p_XNoExposeEvent"},{0}};
13494 static swig_type_info _swigt__p_XMapEvent[] = {{"_p_XMapEvent", 0, "XMapEvent *", 0},{"_p_XMapEvent"},{0}};
13495 static swig_type_info _swigt__p_XUnmapEvent[] = {{"_p_XUnmapEvent", 0, "XUnmapEvent *", 0},{"_p_XUnmapEvent"},{0}};
13496 static swig_type_info _swigt__p_XColormapEvent[] = {{"_p_XColormapEvent", 0, "XColormapEvent *", 0},{"_p_XColormapEvent"},{0}};
13497
13498 static swig_type_info *swig_types_initial[] = {
13499 _swigt__p_otk__BGCCache,
13500 _swigt__p_otk__BColor,
13501 _swigt__p_otk__OBProperty__StringVect,
13502 _swigt__p_XFontStruct,
13503 _swigt__p_otk__Configuration,
13504 _swigt__p_otk__PixmapMask,
13505 _swigt__p_Atom,
13506 _swigt__p_otk__PointerAssassin,
13507 _swigt__p_otk__BImage,
13508 _swigt__p_otk__OBTimer,
13509 _swigt__p_otk__OtkWidget__OtkWidgetList,
13510 _swigt__p_bool,
13511 _swigt__p_otk__OBDisplay,
13512 _swigt__p_Display,
13513 _swigt__p_p_XColor,
13514 _swigt__p_XReparentEvent,
13515 _swigt__p_otk__BPen,
13516 _swigt__p_otk__BImageControl,
13517 _swigt__p_otk__OtkButton,
13518 _swigt__p_otk__Rect,
13519 _swigt__p_otk__Style,
13520 _swigt__p_XSelectionClearEvent,
13521 _swigt__p_Visual,
13522 _swigt__p_timeval,
13523 _swigt__p_int,
13524 _swigt__p_otk__Strut,
13525 _swigt__p_otk__OtkApplication,
13526 _swigt__p_XRectangle,
13527 _swigt__p_otk__OtkFocusWidget,
13528 _swigt__p_otk__OtkWidget,
13529 _swigt__p_Cursor,
13530 _swigt__p_Colormap,
13531 _swigt__p_XGravityEvent,
13532 _swigt__p_XVisibilityEvent,
13533 _swigt__p_XPropertyEvent,
13534 _swigt__p_Window,
13535 _swigt__p_otk__BGCCacheContext,
13536 _swigt__p_XCreateWindowEvent,
13537 _swigt__p_XDestroyWindowEvent,
13538 _swigt__p_Time,
13539 _swigt__p_XCirculateEvent,
13540 _swigt__p_XConfigureEvent,
13541 _swigt__p_long,
13542 _swigt__p_otk__OBProperty,
13543 _swigt__p_XTextProperty,
13544 _swigt__p_otk__OtkEventHandler,
13545 _swigt__p_XSelectionRequestEvent,
13546 _swigt__p_XCirculateRequestEvent,
13547 _swigt__p_XConfigureRequestEvent,
13548 _swigt__p_XMapRequestEvent,
13549 _swigt__p_XResizeRequestEvent,
13550 _swigt__otk__OBTimeoutHandler,
13551 _swigt__p_XftDraw,
13552 _swigt__p_otk__ScreenInfo,
13553 _swigt__p_otk__OtkFocusLabel,
13554 _swigt__p_otk__BTexture,
13555 _swigt__p_otk__OtkEventDispatcher,
13556 _swigt__p_otk__BFont,
13557 _swigt__p_otk__Point,
13558 _swigt__p_p_char,
13559 _swigt__p_XMotionEvent,
13560 _swigt__p_XButtonEvent,
13561 _swigt__p_XSelectionEvent,
13562 _swigt__p_Pixmap,
13563 _swigt__p_GC,
13564 _swigt__p_otk__OBTimerQueueManager,
13565 _swigt__p_otk__OtkAppWidget,
13566 _swigt__p_XKeyEvent,
13567 _swigt__p_unsigned_long,
13568 _swigt__p_XEvent,
13569 _swigt__p_p_unsigned_long,
13570 _swigt__p_std__string,
13571 _swigt__p_XCrossingEvent,
13572 _swigt__p_XMappingEvent,
13573 _swigt__p_otk__BGCCacheItem,
13574 _swigt__p_p_unsigned_int,
13575 _swigt__p_unsigned_int,
13576 _swigt__p_p_unsigned_char,
13577 _swigt__p_XClientMessageEvent,
13578 _swigt__p_XExposeEvent,
13579 _swigt__p_XFocusChangeEvent,
13580 _swigt__p_XGraphicsExposeEvent,
13581 _swigt__p_XNoExposeEvent,
13582 _swigt__p_XMapEvent,
13583 _swigt__p_XUnmapEvent,
13584 _swigt__p_XColormapEvent,
13585 0
13586 };
13587
13588
13589 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
13590
13591 static swig_const_info swig_const_table[] = {
13592 { SWIG_PY_INT, (char *)"OtkWidget_Horizontal", (long) otk::OtkWidget::Horizontal, 0, 0, 0},
13593 { SWIG_PY_INT, (char *)"OtkWidget_Vertical", (long) otk::OtkWidget::Vertical, 0, 0, 0},
13594 { SWIG_PY_INT, (char *)"OBProperty_Atom_Cardinal", (long) otk::OBProperty::Atom_Cardinal, 0, 0, 0},
13595 { SWIG_PY_INT, (char *)"OBProperty_Atom_Window", (long) otk::OBProperty::Atom_Window, 0, 0, 0},
13596 { SWIG_PY_INT, (char *)"OBProperty_Atom_Pixmap", (long) otk::OBProperty::Atom_Pixmap, 0, 0, 0},
13597 { SWIG_PY_INT, (char *)"OBProperty_Atom_Atom", (long) otk::OBProperty::Atom_Atom, 0, 0, 0},
13598 { SWIG_PY_INT, (char *)"OBProperty_Atom_String", (long) otk::OBProperty::Atom_String, 0, 0, 0},
13599 { SWIG_PY_INT, (char *)"OBProperty_Atom_Utf8", (long) otk::OBProperty::Atom_Utf8, 0, 0, 0},
13600 { SWIG_PY_INT, (char *)"OBProperty_openbox_pid", (long) otk::OBProperty::openbox_pid, 0, 0, 0},
13601 { SWIG_PY_INT, (char *)"OBProperty_wm_colormap_windows", (long) otk::OBProperty::wm_colormap_windows, 0, 0, 0},
13602 { SWIG_PY_INT, (char *)"OBProperty_wm_protocols", (long) otk::OBProperty::wm_protocols, 0, 0, 0},
13603 { SWIG_PY_INT, (char *)"OBProperty_wm_state", (long) otk::OBProperty::wm_state, 0, 0, 0},
13604 { SWIG_PY_INT, (char *)"OBProperty_wm_delete_window", (long) otk::OBProperty::wm_delete_window, 0, 0, 0},
13605 { SWIG_PY_INT, (char *)"OBProperty_wm_take_focus", (long) otk::OBProperty::wm_take_focus, 0, 0, 0},
13606 { SWIG_PY_INT, (char *)"OBProperty_wm_change_state", (long) otk::OBProperty::wm_change_state, 0, 0, 0},
13607 { SWIG_PY_INT, (char *)"OBProperty_wm_name", (long) otk::OBProperty::wm_name, 0, 0, 0},
13608 { SWIG_PY_INT, (char *)"OBProperty_wm_icon_name", (long) otk::OBProperty::wm_icon_name, 0, 0, 0},
13609 { SWIG_PY_INT, (char *)"OBProperty_wm_class", (long) otk::OBProperty::wm_class, 0, 0, 0},
13610 { SWIG_PY_INT, (char *)"OBProperty_wm_window_role", (long) otk::OBProperty::wm_window_role, 0, 0, 0},
13611 { SWIG_PY_INT, (char *)"OBProperty_motif_wm_hints", (long) otk::OBProperty::motif_wm_hints, 0, 0, 0},
13612 { SWIG_PY_INT, (char *)"OBProperty_blackbox_attributes", (long) otk::OBProperty::blackbox_attributes, 0, 0, 0},
13613 { SWIG_PY_INT, (char *)"OBProperty_blackbox_change_attributes", (long) otk::OBProperty::blackbox_change_attributes, 0, 0, 0},
13614 { SWIG_PY_INT, (char *)"OBProperty_blackbox_hints", (long) otk::OBProperty::blackbox_hints, 0, 0, 0},
13615 { SWIG_PY_INT, (char *)"OBProperty_blackbox_structure_messages", (long) otk::OBProperty::blackbox_structure_messages, 0, 0, 0},
13616 { SWIG_PY_INT, (char *)"OBProperty_blackbox_notify_startup", (long) otk::OBProperty::blackbox_notify_startup, 0, 0, 0},
13617 { SWIG_PY_INT, (char *)"OBProperty_blackbox_notify_window_add", (long) otk::OBProperty::blackbox_notify_window_add, 0, 0, 0},
13618 { SWIG_PY_INT, (char *)"OBProperty_blackbox_notify_window_del", (long) otk::OBProperty::blackbox_notify_window_del, 0, 0, 0},
13619 { SWIG_PY_INT, (char *)"OBProperty_blackbox_notify_window_focus", (long) otk::OBProperty::blackbox_notify_window_focus, 0, 0, 0},
13620 { SWIG_PY_INT, (char *)"OBProperty_blackbox_notify_current_workspace", (long) otk::OBProperty::blackbox_notify_current_workspace, 0, 0, 0},
13621 { SWIG_PY_INT, (char *)"OBProperty_blackbox_notify_workspace_count", (long) otk::OBProperty::blackbox_notify_workspace_count, 0, 0, 0},
13622 { SWIG_PY_INT, (char *)"OBProperty_blackbox_notify_window_raise", (long) otk::OBProperty::blackbox_notify_window_raise, 0, 0, 0},
13623 { SWIG_PY_INT, (char *)"OBProperty_blackbox_notify_window_lower", (long) otk::OBProperty::blackbox_notify_window_lower, 0, 0, 0},
13624 { SWIG_PY_INT, (char *)"OBProperty_blackbox_change_workspace", (long) otk::OBProperty::blackbox_change_workspace, 0, 0, 0},
13625 { SWIG_PY_INT, (char *)"OBProperty_blackbox_change_window_focus", (long) otk::OBProperty::blackbox_change_window_focus, 0, 0, 0},
13626 { SWIG_PY_INT, (char *)"OBProperty_blackbox_cycle_window_focus", (long) otk::OBProperty::blackbox_cycle_window_focus, 0, 0, 0},
13627 { SWIG_PY_INT, (char *)"OBProperty_openbox_show_root_menu", (long) otk::OBProperty::openbox_show_root_menu, 0, 0, 0},
13628 { SWIG_PY_INT, (char *)"OBProperty_openbox_show_workspace_menu", (long) otk::OBProperty::openbox_show_workspace_menu, 0, 0, 0},
13629 { SWIG_PY_INT, (char *)"OBProperty_net_supported", (long) otk::OBProperty::net_supported, 0, 0, 0},
13630 { SWIG_PY_INT, (char *)"OBProperty_net_client_list", (long) otk::OBProperty::net_client_list, 0, 0, 0},
13631 { SWIG_PY_INT, (char *)"OBProperty_net_client_list_stacking", (long) otk::OBProperty::net_client_list_stacking, 0, 0, 0},
13632 { SWIG_PY_INT, (char *)"OBProperty_net_number_of_desktops", (long) otk::OBProperty::net_number_of_desktops, 0, 0, 0},
13633 { SWIG_PY_INT, (char *)"OBProperty_net_desktop_geometry", (long) otk::OBProperty::net_desktop_geometry, 0, 0, 0},
13634 { SWIG_PY_INT, (char *)"OBProperty_net_desktop_viewport", (long) otk::OBProperty::net_desktop_viewport, 0, 0, 0},
13635 { SWIG_PY_INT, (char *)"OBProperty_net_current_desktop", (long) otk::OBProperty::net_current_desktop, 0, 0, 0},
13636 { SWIG_PY_INT, (char *)"OBProperty_net_desktop_names", (long) otk::OBProperty::net_desktop_names, 0, 0, 0},
13637 { SWIG_PY_INT, (char *)"OBProperty_net_active_window", (long) otk::OBProperty::net_active_window, 0, 0, 0},
13638 { SWIG_PY_INT, (char *)"OBProperty_net_workarea", (long) otk::OBProperty::net_workarea, 0, 0, 0},
13639 { SWIG_PY_INT, (char *)"OBProperty_net_supporting_wm_check", (long) otk::OBProperty::net_supporting_wm_check, 0, 0, 0},
13640 { SWIG_PY_INT, (char *)"OBProperty_net_close_window", (long) otk::OBProperty::net_close_window, 0, 0, 0},
13641 { SWIG_PY_INT, (char *)"OBProperty_net_wm_moveresize", (long) otk::OBProperty::net_wm_moveresize, 0, 0, 0},
13642 { SWIG_PY_INT, (char *)"OBProperty_net_wm_name", (long) otk::OBProperty::net_wm_name, 0, 0, 0},
13643 { SWIG_PY_INT, (char *)"OBProperty_net_wm_visible_name", (long) otk::OBProperty::net_wm_visible_name, 0, 0, 0},
13644 { SWIG_PY_INT, (char *)"OBProperty_net_wm_icon_name", (long) otk::OBProperty::net_wm_icon_name, 0, 0, 0},
13645 { SWIG_PY_INT, (char *)"OBProperty_net_wm_visible_icon_name", (long) otk::OBProperty::net_wm_visible_icon_name, 0, 0, 0},
13646 { SWIG_PY_INT, (char *)"OBProperty_net_wm_desktop", (long) otk::OBProperty::net_wm_desktop, 0, 0, 0},
13647 { SWIG_PY_INT, (char *)"OBProperty_net_wm_window_type", (long) otk::OBProperty::net_wm_window_type, 0, 0, 0},
13648 { SWIG_PY_INT, (char *)"OBProperty_net_wm_state", (long) otk::OBProperty::net_wm_state, 0, 0, 0},
13649 { SWIG_PY_INT, (char *)"OBProperty_net_wm_strut", (long) otk::OBProperty::net_wm_strut, 0, 0, 0},
13650 { SWIG_PY_INT, (char *)"OBProperty_net_wm_allowed_actions", (long) otk::OBProperty::net_wm_allowed_actions, 0, 0, 0},
13651 { SWIG_PY_INT, (char *)"OBProperty_net_wm_window_type_desktop", (long) otk::OBProperty::net_wm_window_type_desktop, 0, 0, 0},
13652 { SWIG_PY_INT, (char *)"OBProperty_net_wm_window_type_dock", (long) otk::OBProperty::net_wm_window_type_dock, 0, 0, 0},
13653 { SWIG_PY_INT, (char *)"OBProperty_net_wm_window_type_toolbar", (long) otk::OBProperty::net_wm_window_type_toolbar, 0, 0, 0},
13654 { SWIG_PY_INT, (char *)"OBProperty_net_wm_window_type_menu", (long) otk::OBProperty::net_wm_window_type_menu, 0, 0, 0},
13655 { SWIG_PY_INT, (char *)"OBProperty_net_wm_window_type_utility", (long) otk::OBProperty::net_wm_window_type_utility, 0, 0, 0},
13656 { SWIG_PY_INT, (char *)"OBProperty_net_wm_window_type_splash", (long) otk::OBProperty::net_wm_window_type_splash, 0, 0, 0},
13657 { SWIG_PY_INT, (char *)"OBProperty_net_wm_window_type_dialog", (long) otk::OBProperty::net_wm_window_type_dialog, 0, 0, 0},
13658 { SWIG_PY_INT, (char *)"OBProperty_net_wm_window_type_normal", (long) otk::OBProperty::net_wm_window_type_normal, 0, 0, 0},
13659 { SWIG_PY_INT, (char *)"OBProperty_net_wm_moveresize_size_topleft", (long) otk::OBProperty::net_wm_moveresize_size_topleft, 0, 0, 0},
13660 { SWIG_PY_INT, (char *)"OBProperty_net_wm_moveresize_size_topright", (long) otk::OBProperty::net_wm_moveresize_size_topright, 0, 0, 0},
13661 { SWIG_PY_INT, (char *)"OBProperty_net_wm_moveresize_size_bottomleft", (long) otk::OBProperty::net_wm_moveresize_size_bottomleft, 0, 0, 0},
13662 { SWIG_PY_INT, (char *)"OBProperty_net_wm_moveresize_size_bottomright", (long) otk::OBProperty::net_wm_moveresize_size_bottomright, 0, 0, 0},
13663 { SWIG_PY_INT, (char *)"OBProperty_net_wm_moveresize_move", (long) otk::OBProperty::net_wm_moveresize_move, 0, 0, 0},
13664 { SWIG_PY_INT, (char *)"OBProperty_net_wm_action_move", (long) otk::OBProperty::net_wm_action_move, 0, 0, 0},
13665 { SWIG_PY_INT, (char *)"OBProperty_net_wm_action_resize", (long) otk::OBProperty::net_wm_action_resize, 0, 0, 0},
13666 { SWIG_PY_INT, (char *)"OBProperty_net_wm_action_shade", (long) otk::OBProperty::net_wm_action_shade, 0, 0, 0},
13667 { SWIG_PY_INT, (char *)"OBProperty_net_wm_action_maximize_horz", (long) otk::OBProperty::net_wm_action_maximize_horz, 0, 0, 0},
13668 { SWIG_PY_INT, (char *)"OBProperty_net_wm_action_maximize_vert", (long) otk::OBProperty::net_wm_action_maximize_vert, 0, 0, 0},
13669 { SWIG_PY_INT, (char *)"OBProperty_net_wm_action_change_desktop", (long) otk::OBProperty::net_wm_action_change_desktop, 0, 0, 0},
13670 { SWIG_PY_INT, (char *)"OBProperty_net_wm_action_close", (long) otk::OBProperty::net_wm_action_close, 0, 0, 0},
13671 { SWIG_PY_INT, (char *)"OBProperty_net_wm_state_modal", (long) otk::OBProperty::net_wm_state_modal, 0, 0, 0},
13672 { SWIG_PY_INT, (char *)"OBProperty_net_wm_state_sticky", (long) otk::OBProperty::net_wm_state_sticky, 0, 0, 0},
13673 { SWIG_PY_INT, (char *)"OBProperty_net_wm_state_maximized_vert", (long) otk::OBProperty::net_wm_state_maximized_vert, 0, 0, 0},
13674 { SWIG_PY_INT, (char *)"OBProperty_net_wm_state_maximized_horz", (long) otk::OBProperty::net_wm_state_maximized_horz, 0, 0, 0},
13675 { SWIG_PY_INT, (char *)"OBProperty_net_wm_state_shaded", (long) otk::OBProperty::net_wm_state_shaded, 0, 0, 0},
13676 { SWIG_PY_INT, (char *)"OBProperty_net_wm_state_skip_taskbar", (long) otk::OBProperty::net_wm_state_skip_taskbar, 0, 0, 0},
13677 { SWIG_PY_INT, (char *)"OBProperty_net_wm_state_skip_pager", (long) otk::OBProperty::net_wm_state_skip_pager, 0, 0, 0},
13678 { SWIG_PY_INT, (char *)"OBProperty_net_wm_state_hidden", (long) otk::OBProperty::net_wm_state_hidden, 0, 0, 0},
13679 { SWIG_PY_INT, (char *)"OBProperty_net_wm_state_fullscreen", (long) otk::OBProperty::net_wm_state_fullscreen, 0, 0, 0},
13680 { SWIG_PY_INT, (char *)"OBProperty_net_wm_state_above", (long) otk::OBProperty::net_wm_state_above, 0, 0, 0},
13681 { SWIG_PY_INT, (char *)"OBProperty_net_wm_state_below", (long) otk::OBProperty::net_wm_state_below, 0, 0, 0},
13682 { SWIG_PY_INT, (char *)"OBProperty_kde_net_system_tray_windows", (long) otk::OBProperty::kde_net_system_tray_windows, 0, 0, 0},
13683 { SWIG_PY_INT, (char *)"OBProperty_kde_net_wm_system_tray_window_for", (long) otk::OBProperty::kde_net_wm_system_tray_window_for, 0, 0, 0},
13684 { SWIG_PY_INT, (char *)"OBProperty_kde_net_wm_window_type_override", (long) otk::OBProperty::kde_net_wm_window_type_override, 0, 0, 0},
13685 { SWIG_PY_INT, (char *)"OBProperty_NUM_ATOMS", (long) otk::OBProperty::NUM_ATOMS, 0, 0, 0},
13686 { SWIG_PY_INT, (char *)"OBProperty_ascii", (long) otk::OBProperty::ascii, 0, 0, 0},
13687 { SWIG_PY_INT, (char *)"OBProperty_utf8", (long) otk::OBProperty::utf8, 0, 0, 0},
13688 { SWIG_PY_INT, (char *)"OBProperty_NUM_STRING_TYPE", (long) otk::OBProperty::NUM_STRING_TYPE, 0, 0, 0},
13689 { SWIG_PY_INT, (char *)"Style_ButtonFocus", (long) otk::Style::ButtonFocus, 0, 0, 0},
13690 { SWIG_PY_INT, (char *)"Style_ButtonUnfocus", (long) otk::Style::ButtonUnfocus, 0, 0, 0},
13691 { SWIG_PY_INT, (char *)"Style_TitleFocus", (long) otk::Style::TitleFocus, 0, 0, 0},
13692 { SWIG_PY_INT, (char *)"Style_TitleUnfocus", (long) otk::Style::TitleUnfocus, 0, 0, 0},
13693 { SWIG_PY_INT, (char *)"Style_LabelFocus", (long) otk::Style::LabelFocus, 0, 0, 0},
13694 { SWIG_PY_INT, (char *)"Style_LabelUnfocus", (long) otk::Style::LabelUnfocus, 0, 0, 0},
13695 { SWIG_PY_INT, (char *)"Style_HandleFocus", (long) otk::Style::HandleFocus, 0, 0, 0},
13696 { SWIG_PY_INT, (char *)"Style_HandleUnfocus", (long) otk::Style::HandleUnfocus, 0, 0, 0},
13697 { SWIG_PY_INT, (char *)"Style_GripFocus", (long) otk::Style::GripFocus, 0, 0, 0},
13698 { SWIG_PY_INT, (char *)"Style_GripUnfocus", (long) otk::Style::GripUnfocus, 0, 0, 0},
13699 { SWIG_PY_INT, (char *)"Style_LeftJustify", (long) otk::Style::LeftJustify, 0, 0, 0},
13700 { SWIG_PY_INT, (char *)"Style_RightJustify", (long) otk::Style::RightJustify, 0, 0, 0},
13701 { SWIG_PY_INT, (char *)"Style_CenterJustify", (long) otk::Style::CenterJustify, 0, 0, 0},
13702 { SWIG_PY_INT, (char *)"Style_RoundBullet", (long) otk::Style::RoundBullet, 0, 0, 0},
13703 { SWIG_PY_INT, (char *)"Style_TriangleBullet", (long) otk::Style::TriangleBullet, 0, 0, 0},
13704 { SWIG_PY_INT, (char *)"Style_SquareBullet", (long) otk::Style::SquareBullet, 0, 0, 0},
13705 { SWIG_PY_INT, (char *)"Style_NoBullet", (long) otk::Style::NoBullet, 0, 0, 0},
13706 { SWIG_PY_INT, (char *)"BTexture_NoTexture", (long) otk::BTexture::NoTexture, 0, 0, 0},
13707 { SWIG_PY_INT, (char *)"BTexture_Flat", (long) otk::BTexture::Flat, 0, 0, 0},
13708 { SWIG_PY_INT, (char *)"BTexture_Sunken", (long) otk::BTexture::Sunken, 0, 0, 0},
13709 { SWIG_PY_INT, (char *)"BTexture_Raised", (long) otk::BTexture::Raised, 0, 0, 0},
13710 { SWIG_PY_INT, (char *)"BTexture_Solid", (long) otk::BTexture::Solid, 0, 0, 0},
13711 { SWIG_PY_INT, (char *)"BTexture_Gradient", (long) otk::BTexture::Gradient, 0, 0, 0},
13712 { SWIG_PY_INT, (char *)"BTexture_Horizontal", (long) otk::BTexture::Horizontal, 0, 0, 0},
13713 { SWIG_PY_INT, (char *)"BTexture_Vertical", (long) otk::BTexture::Vertical, 0, 0, 0},
13714 { SWIG_PY_INT, (char *)"BTexture_Diagonal", (long) otk::BTexture::Diagonal, 0, 0, 0},
13715 { SWIG_PY_INT, (char *)"BTexture_CrossDiagonal", (long) otk::BTexture::CrossDiagonal, 0, 0, 0},
13716 { SWIG_PY_INT, (char *)"BTexture_Rectangle", (long) otk::BTexture::Rectangle, 0, 0, 0},
13717 { SWIG_PY_INT, (char *)"BTexture_Pyramid", (long) otk::BTexture::Pyramid, 0, 0, 0},
13718 { SWIG_PY_INT, (char *)"BTexture_PipeCross", (long) otk::BTexture::PipeCross, 0, 0, 0},
13719 { SWIG_PY_INT, (char *)"BTexture_Elliptic", (long) otk::BTexture::Elliptic, 0, 0, 0},
13720 { SWIG_PY_INT, (char *)"BTexture_Bevel1", (long) otk::BTexture::Bevel1, 0, 0, 0},
13721 { SWIG_PY_INT, (char *)"BTexture_Bevel2", (long) otk::BTexture::Bevel2, 0, 0, 0},
13722 { SWIG_PY_INT, (char *)"BTexture_Border", (long) otk::BTexture::Border, 0, 0, 0},
13723 { SWIG_PY_INT, (char *)"BTexture_Invert", (long) otk::BTexture::Invert, 0, 0, 0},
13724 { SWIG_PY_INT, (char *)"BTexture_Parent_Relative", (long) otk::BTexture::Parent_Relative, 0, 0, 0},
13725 { SWIG_PY_INT, (char *)"BTexture_Interlaced", (long) otk::BTexture::Interlaced, 0, 0, 0},
13726 {0}};
13727
13728 #ifdef __cplusplus
13729 }
13730 #endif
13731
13732 #ifdef __cplusplus
13733 extern "C"
13734 #endif
13735 SWIGEXPORT(void) SWIG_init(void) {
13736 static PyObject *SWIG_globals = 0;
13737 static int typeinit = 0;
13738 PyObject *m, *d;
13739 int i;
13740 if (!SWIG_globals) SWIG_globals = SWIG_newvarlink();
13741 m = Py_InitModule((char *) SWIG_name, SwigMethods);
13742 d = PyModule_GetDict(m);
13743
13744 if (!typeinit) {
13745 for (i = 0; swig_types_initial[i]; i++) {
13746 swig_types[i] = SWIG_TypeRegister(swig_types_initial[i]);
13747 }
13748 typeinit = 1;
13749 }
13750 SWIG_InstallConstants(d,swig_const_table);
13751
13752 PyDict_SetItemString(d,(char*)"cvar", SWIG_globals);
13753 SWIG_addvarlink(SWIG_globals,(char*)"OBDisplay_display",_wrap_OBDisplay_display_get, _wrap_OBDisplay_display_set);
13754 SWIG_addvarlink(SWIG_globals,(char*)"BSENTINEL",_wrap_BSENTINEL_get, _wrap_BSENTINEL_set);
13755 }
13756
This page took 0.713772 seconds and 5 git commands to generate.