]> icculus.org git repositories - mikachu/openbox.git/blob - otk/otk_wrap.cc
make the frame window override-redirect
[mikachu/openbox.git] / 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_grab(PyObject *self, PyObject *args) {
5543     PyObject *resultobj;
5544     
5545     if(!PyArg_ParseTuple(args,(char *)":OBDisplay_grab")) goto fail;
5546     otk::OBDisplay::grab();
5547     
5548     Py_INCREF(Py_None); resultobj = Py_None;
5549     return resultobj;
5550     fail:
5551     return NULL;
5552 }
5553
5554
5555 static PyObject *_wrap_OBDisplay_ungrab(PyObject *self, PyObject *args) {
5556     PyObject *resultobj;
5557     
5558     if(!PyArg_ParseTuple(args,(char *)":OBDisplay_ungrab")) goto fail;
5559     otk::OBDisplay::ungrab();
5560     
5561     Py_INCREF(Py_None); resultobj = Py_None;
5562     return resultobj;
5563     fail:
5564     return NULL;
5565 }
5566
5567
5568 static PyObject *_wrap_OBDisplay_grabButton(PyObject *self, PyObject *args) {
5569     PyObject *resultobj;
5570     unsigned int arg1 ;
5571     unsigned int arg2 ;
5572     Window arg3 ;
5573     bool arg4 ;
5574     unsigned int arg5 ;
5575     int arg6 ;
5576     int arg7 ;
5577     Window arg8 ;
5578     Cursor arg9 ;
5579     bool arg10 ;
5580     Window *argp3 ;
5581     Window *argp8 ;
5582     Cursor *argp9 ;
5583     PyObject * obj0  = 0 ;
5584     PyObject * obj1  = 0 ;
5585     PyObject * obj2  = 0 ;
5586     PyObject * obj3  = 0 ;
5587     PyObject * obj4  = 0 ;
5588     PyObject * obj7  = 0 ;
5589     PyObject * obj8  = 0 ;
5590     PyObject * obj9  = 0 ;
5591     
5592     if(!PyArg_ParseTuple(args,(char *)"OOOOOiiOOO:OBDisplay_grabButton",&obj0,&obj1,&obj2,&obj3,&obj4,&arg6,&arg7,&obj7,&obj8,&obj9)) goto fail;
5593     arg1 = (unsigned int) PyInt_AsLong(obj0);
5594     if (PyErr_Occurred()) SWIG_fail;
5595     arg2 = (unsigned int) PyInt_AsLong(obj1);
5596     if (PyErr_Occurred()) SWIG_fail;
5597     if ((SWIG_ConvertPtr(obj2,(void **) &argp3, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
5598     arg3 = *argp3; 
5599     arg4 = (bool) PyInt_AsLong(obj3);
5600     if (PyErr_Occurred()) SWIG_fail;
5601     arg5 = (unsigned int) PyInt_AsLong(obj4);
5602     if (PyErr_Occurred()) SWIG_fail;
5603     if ((SWIG_ConvertPtr(obj7,(void **) &argp8, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
5604     arg8 = *argp8; 
5605     if ((SWIG_ConvertPtr(obj8,(void **) &argp9, SWIGTYPE_p_Cursor,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
5606     arg9 = *argp9; 
5607     arg10 = (bool) PyInt_AsLong(obj9);
5608     if (PyErr_Occurred()) SWIG_fail;
5609     otk::OBDisplay::grabButton(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10);
5610     
5611     Py_INCREF(Py_None); resultobj = Py_None;
5612     return resultobj;
5613     fail:
5614     return NULL;
5615 }
5616
5617
5618 static PyObject *_wrap_OBDisplay_ungrabButton(PyObject *self, PyObject *args) {
5619     PyObject *resultobj;
5620     unsigned int arg1 ;
5621     unsigned int arg2 ;
5622     Window arg3 ;
5623     Window *argp3 ;
5624     PyObject * obj0  = 0 ;
5625     PyObject * obj1  = 0 ;
5626     PyObject * obj2  = 0 ;
5627     
5628     if(!PyArg_ParseTuple(args,(char *)"OOO:OBDisplay_ungrabButton",&obj0,&obj1,&obj2)) goto fail;
5629     arg1 = (unsigned int) PyInt_AsLong(obj0);
5630     if (PyErr_Occurred()) SWIG_fail;
5631     arg2 = (unsigned int) PyInt_AsLong(obj1);
5632     if (PyErr_Occurred()) SWIG_fail;
5633     if ((SWIG_ConvertPtr(obj2,(void **) &argp3, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
5634     arg3 = *argp3; 
5635     otk::OBDisplay::ungrabButton(arg1,arg2,arg3);
5636     
5637     Py_INCREF(Py_None); resultobj = Py_None;
5638     return resultobj;
5639     fail:
5640     return NULL;
5641 }
5642
5643
5644 static PyObject *_wrap_OBDisplay_grabKey(PyObject *self, PyObject *args) {
5645     PyObject *resultobj;
5646     unsigned int arg1 ;
5647     unsigned int arg2 ;
5648     Window arg3 ;
5649     bool arg4 ;
5650     int arg5 ;
5651     int arg6 ;
5652     bool arg7 ;
5653     Window *argp3 ;
5654     PyObject * obj0  = 0 ;
5655     PyObject * obj1  = 0 ;
5656     PyObject * obj2  = 0 ;
5657     PyObject * obj3  = 0 ;
5658     PyObject * obj6  = 0 ;
5659     
5660     if(!PyArg_ParseTuple(args,(char *)"OOOOiiO:OBDisplay_grabKey",&obj0,&obj1,&obj2,&obj3,&arg5,&arg6,&obj6)) goto fail;
5661     arg1 = (unsigned int) PyInt_AsLong(obj0);
5662     if (PyErr_Occurred()) SWIG_fail;
5663     arg2 = (unsigned int) PyInt_AsLong(obj1);
5664     if (PyErr_Occurred()) SWIG_fail;
5665     if ((SWIG_ConvertPtr(obj2,(void **) &argp3, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
5666     arg3 = *argp3; 
5667     arg4 = (bool) PyInt_AsLong(obj3);
5668     if (PyErr_Occurred()) SWIG_fail;
5669     arg7 = (bool) PyInt_AsLong(obj6);
5670     if (PyErr_Occurred()) SWIG_fail;
5671     otk::OBDisplay::grabKey(arg1,arg2,arg3,arg4,arg5,arg6,arg7);
5672     
5673     Py_INCREF(Py_None); resultobj = Py_None;
5674     return resultobj;
5675     fail:
5676     return NULL;
5677 }
5678
5679
5680 static PyObject *_wrap_OBDisplay_ungrabKey(PyObject *self, PyObject *args) {
5681     PyObject *resultobj;
5682     unsigned int arg1 ;
5683     unsigned int arg2 ;
5684     Window arg3 ;
5685     Window *argp3 ;
5686     PyObject * obj0  = 0 ;
5687     PyObject * obj1  = 0 ;
5688     PyObject * obj2  = 0 ;
5689     
5690     if(!PyArg_ParseTuple(args,(char *)"OOO:OBDisplay_ungrabKey",&obj0,&obj1,&obj2)) goto fail;
5691     arg1 = (unsigned int) PyInt_AsLong(obj0);
5692     if (PyErr_Occurred()) SWIG_fail;
5693     arg2 = (unsigned int) PyInt_AsLong(obj1);
5694     if (PyErr_Occurred()) SWIG_fail;
5695     if ((SWIG_ConvertPtr(obj2,(void **) &argp3, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
5696     arg3 = *argp3; 
5697     otk::OBDisplay::ungrabKey(arg1,arg2,arg3);
5698     
5699     Py_INCREF(Py_None); resultobj = Py_None;
5700     return resultobj;
5701     fail:
5702     return NULL;
5703 }
5704
5705
5706 static PyObject *_wrap_delete_OBDisplay(PyObject *self, PyObject *args) {
5707     PyObject *resultobj;
5708     otk::OBDisplay *arg1 = (otk::OBDisplay *) 0 ;
5709     PyObject * obj0  = 0 ;
5710     
5711     if(!PyArg_ParseTuple(args,(char *)"O:delete_OBDisplay",&obj0)) goto fail;
5712     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBDisplay,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5713     delete arg1;
5714     
5715     Py_INCREF(Py_None); resultobj = Py_None;
5716     return resultobj;
5717     fail:
5718     return NULL;
5719 }
5720
5721
5722 static PyObject * OBDisplay_swigregister(PyObject *self, PyObject *args) {
5723     PyObject *obj;
5724     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
5725     SWIG_TypeClientData(SWIGTYPE_p_otk__OBDisplay, obj);
5726     Py_INCREF(obj);
5727     return Py_BuildValue((char *)"");
5728 }
5729 static PyObject *_wrap_BFont_fallbackFont(PyObject *self, PyObject *args) {
5730     PyObject *resultobj;
5731     std::string result;
5732     
5733     if(!PyArg_ParseTuple(args,(char *)":BFont_fallbackFont")) goto fail;
5734     result = otk::BFont::fallbackFont();
5735     
5736     {
5737         resultobj = PyString_FromString((&result)->c_str());
5738     }
5739     return resultobj;
5740     fail:
5741     return NULL;
5742 }
5743
5744
5745 static PyObject *_wrap_BFont_setFallbackFont(PyObject *self, PyObject *args) {
5746     PyObject *resultobj;
5747     std::string *arg1 = 0 ;
5748     std::string temp1 ;
5749     PyObject * obj0  = 0 ;
5750     
5751     if(!PyArg_ParseTuple(args,(char *)"O:BFont_setFallbackFont",&obj0)) goto fail;
5752     {
5753         if (PyString_Check(obj0)) {
5754             temp1 = std::string(PyString_AsString(obj0));
5755             arg1 = &temp1;
5756         }else {
5757             SWIG_exception(SWIG_TypeError, "string expected");
5758         }
5759     }
5760     otk::BFont::setFallbackFont((std::string const &)*arg1);
5761     
5762     Py_INCREF(Py_None); resultobj = Py_None;
5763     return resultobj;
5764     fail:
5765     return NULL;
5766 }
5767
5768
5769 static PyObject *_wrap_new_BFont(PyObject *self, PyObject *args) {
5770     PyObject *resultobj;
5771     int arg1 ;
5772     std::string *arg2 = 0 ;
5773     bool arg3 ;
5774     unsigned char arg4 ;
5775     unsigned char arg5 ;
5776     otk::BFont *result;
5777     std::string temp2 ;
5778     PyObject * obj1  = 0 ;
5779     PyObject * obj2  = 0 ;
5780     PyObject * obj3  = 0 ;
5781     PyObject * obj4  = 0 ;
5782     
5783     if(!PyArg_ParseTuple(args,(char *)"iOOOO:new_BFont",&arg1,&obj1,&obj2,&obj3,&obj4)) goto fail;
5784     {
5785         if (PyString_Check(obj1)) {
5786             temp2 = std::string(PyString_AsString(obj1));
5787             arg2 = &temp2;
5788         }else {
5789             SWIG_exception(SWIG_TypeError, "string expected");
5790         }
5791     }
5792     arg3 = (bool) PyInt_AsLong(obj2);
5793     if (PyErr_Occurred()) SWIG_fail;
5794     arg4 = (unsigned char) PyInt_AsLong(obj3);
5795     if (PyErr_Occurred()) SWIG_fail;
5796     arg5 = (unsigned char) PyInt_AsLong(obj4);
5797     if (PyErr_Occurred()) SWIG_fail;
5798     result = (otk::BFont *)new otk::BFont(arg1,(std::string const &)*arg2,arg3,arg4,arg5);
5799     
5800     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BFont, 1);
5801     return resultobj;
5802     fail:
5803     return NULL;
5804 }
5805
5806
5807 static PyObject *_wrap_delete_BFont(PyObject *self, PyObject *args) {
5808     PyObject *resultobj;
5809     otk::BFont *arg1 = (otk::BFont *) 0 ;
5810     PyObject * obj0  = 0 ;
5811     
5812     if(!PyArg_ParseTuple(args,(char *)"O:delete_BFont",&obj0)) goto fail;
5813     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BFont,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5814     delete arg1;
5815     
5816     Py_INCREF(Py_None); resultobj = Py_None;
5817     return resultobj;
5818     fail:
5819     return NULL;
5820 }
5821
5822
5823 static PyObject *_wrap_BFont_fontstring(PyObject *self, PyObject *args) {
5824     PyObject *resultobj;
5825     otk::BFont *arg1 = (otk::BFont *) 0 ;
5826     std::string *result;
5827     PyObject * obj0  = 0 ;
5828     
5829     if(!PyArg_ParseTuple(args,(char *)"O:BFont_fontstring",&obj0)) goto fail;
5830     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BFont,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5831     {
5832         std::string const &_result_ref = ((otk::BFont const *)arg1)->fontstring();
5833         result = (std::string *) &_result_ref;
5834     }
5835     
5836     {
5837         resultobj = PyString_FromString(result->c_str());
5838     }
5839     return resultobj;
5840     fail:
5841     return NULL;
5842 }
5843
5844
5845 static PyObject *_wrap_BFont_height(PyObject *self, PyObject *args) {
5846     PyObject *resultobj;
5847     otk::BFont *arg1 = (otk::BFont *) 0 ;
5848     unsigned int result;
5849     PyObject * obj0  = 0 ;
5850     
5851     if(!PyArg_ParseTuple(args,(char *)"O:BFont_height",&obj0)) goto fail;
5852     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BFont,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5853     result = (unsigned int)((otk::BFont const *)arg1)->height();
5854     
5855     resultobj = PyInt_FromLong((long)result);
5856     return resultobj;
5857     fail:
5858     return NULL;
5859 }
5860
5861
5862 static PyObject *_wrap_BFont_maxCharWidth(PyObject *self, PyObject *args) {
5863     PyObject *resultobj;
5864     otk::BFont *arg1 = (otk::BFont *) 0 ;
5865     unsigned int result;
5866     PyObject * obj0  = 0 ;
5867     
5868     if(!PyArg_ParseTuple(args,(char *)"O:BFont_maxCharWidth",&obj0)) goto fail;
5869     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BFont,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5870     result = (unsigned int)((otk::BFont const *)arg1)->maxCharWidth();
5871     
5872     resultobj = PyInt_FromLong((long)result);
5873     return resultobj;
5874     fail:
5875     return NULL;
5876 }
5877
5878
5879 static PyObject *_wrap_BFont_measureString(PyObject *self, PyObject *args) {
5880     PyObject *resultobj;
5881     otk::BFont *arg1 = (otk::BFont *) 0 ;
5882     std::string *arg2 = 0 ;
5883     bool arg3 = (bool) false ;
5884     unsigned int result;
5885     std::string temp2 ;
5886     PyObject * obj0  = 0 ;
5887     PyObject * obj1  = 0 ;
5888     PyObject * obj2  = 0 ;
5889     
5890     if(!PyArg_ParseTuple(args,(char *)"OO|O:BFont_measureString",&obj0,&obj1,&obj2)) goto fail;
5891     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BFont,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5892     {
5893         if (PyString_Check(obj1)) {
5894             temp2 = std::string(PyString_AsString(obj1));
5895             arg2 = &temp2;
5896         }else {
5897             SWIG_exception(SWIG_TypeError, "string expected");
5898         }
5899     }
5900     if (obj2) {
5901         arg3 = (bool) PyInt_AsLong(obj2);
5902         if (PyErr_Occurred()) SWIG_fail;
5903     }
5904     result = (unsigned int)((otk::BFont const *)arg1)->measureString((std::string const &)*arg2,arg3);
5905     
5906     resultobj = PyInt_FromLong((long)result);
5907     return resultobj;
5908     fail:
5909     return NULL;
5910 }
5911
5912
5913 static PyObject *_wrap_BFont_drawString(PyObject *self, PyObject *args) {
5914     PyObject *resultobj;
5915     otk::BFont *arg1 = (otk::BFont *) 0 ;
5916     XftDraw *arg2 = (XftDraw *) 0 ;
5917     int arg3 ;
5918     int arg4 ;
5919     otk::BColor *arg5 = 0 ;
5920     std::string *arg6 = 0 ;
5921     bool arg7 = (bool) false ;
5922     std::string temp6 ;
5923     PyObject * obj0  = 0 ;
5924     PyObject * obj1  = 0 ;
5925     PyObject * obj4  = 0 ;
5926     PyObject * obj5  = 0 ;
5927     PyObject * obj6  = 0 ;
5928     
5929     if(!PyArg_ParseTuple(args,(char *)"OOiiOO|O:BFont_drawString",&obj0,&obj1,&arg3,&arg4,&obj4,&obj5,&obj6)) goto fail;
5930     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BFont,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5931     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XftDraw,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5932     if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5933     if (arg5 == NULL) {
5934         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
5935     }
5936     {
5937         if (PyString_Check(obj5)) {
5938             temp6 = std::string(PyString_AsString(obj5));
5939             arg6 = &temp6;
5940         }else {
5941             SWIG_exception(SWIG_TypeError, "string expected");
5942         }
5943     }
5944     if (obj6) {
5945         arg7 = (bool) PyInt_AsLong(obj6);
5946         if (PyErr_Occurred()) SWIG_fail;
5947     }
5948     ((otk::BFont const *)arg1)->drawString(arg2,arg3,arg4,(otk::BColor const &)*arg5,(std::string const &)*arg6,arg7);
5949     
5950     Py_INCREF(Py_None); resultobj = Py_None;
5951     return resultobj;
5952     fail:
5953     return NULL;
5954 }
5955
5956
5957 static PyObject * BFont_swigregister(PyObject *self, PyObject *args) {
5958     PyObject *obj;
5959     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
5960     SWIG_TypeClientData(SWIGTYPE_p_otk__BFont, obj);
5961     Py_INCREF(obj);
5962     return Py_BuildValue((char *)"");
5963 }
5964 static PyObject *_wrap_BGCCacheContext_set__SWIG_0(PyObject *self, PyObject *args) {
5965     PyObject *resultobj;
5966     otk::BGCCacheContext *arg1 = (otk::BGCCacheContext *) 0 ;
5967     otk::BColor *arg2 = 0 ;
5968     XFontStruct *arg3 = (XFontStruct *) (XFontStruct *)0 ;
5969     int arg4 ;
5970     int arg5 ;
5971     int arg6 ;
5972     PyObject * obj0  = 0 ;
5973     PyObject * obj1  = 0 ;
5974     PyObject * obj2  = 0 ;
5975     
5976     if(!PyArg_ParseTuple(args,(char *)"OOOiii:BGCCacheContext_set",&obj0,&obj1,&obj2,&arg4,&arg5,&arg6)) goto fail;
5977     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCacheContext,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5978     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5979     if (arg2 == NULL) {
5980         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
5981     }
5982     if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_XFontStruct,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5983     (arg1)->set((otk::BColor const &)*arg2,(XFontStruct const *)arg3,arg4,arg5,arg6);
5984     
5985     Py_INCREF(Py_None); resultobj = Py_None;
5986     return resultobj;
5987     fail:
5988     return NULL;
5989 }
5990
5991
5992 static PyObject *_wrap_BGCCacheContext_set__SWIG_1(PyObject *self, PyObject *args) {
5993     PyObject *resultobj;
5994     otk::BGCCacheContext *arg1 = (otk::BGCCacheContext *) 0 ;
5995     XFontStruct *arg2 = (XFontStruct *) (XFontStruct *)0 ;
5996     PyObject * obj0  = 0 ;
5997     PyObject * obj1  = 0 ;
5998     
5999     if(!PyArg_ParseTuple(args,(char *)"OO:BGCCacheContext_set",&obj0,&obj1)) goto fail;
6000     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCacheContext,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6001     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XFontStruct,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6002     (arg1)->set((XFontStruct const *)arg2);
6003     
6004     Py_INCREF(Py_None); resultobj = Py_None;
6005     return resultobj;
6006     fail:
6007     return NULL;
6008 }
6009
6010
6011 static PyObject *_wrap_BGCCacheContext_set(PyObject *self, PyObject *args) {
6012     int argc;
6013     PyObject *argv[7];
6014     int ii;
6015     
6016     argc = PyObject_Length(args);
6017     for (ii = 0; (ii < argc) && (ii < 6); ii++) {
6018         argv[ii] = PyTuple_GetItem(args,ii);
6019     }
6020     if (argc == 2) {
6021         int _v;
6022         {
6023             void *ptr;
6024             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__BGCCacheContext, 0) == -1) {
6025                 _v = 0;
6026                 PyErr_Clear();
6027             }else {
6028                 _v = 1;
6029             }
6030         }
6031         if (_v) {
6032             {
6033                 void *ptr;
6034                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_XFontStruct, 0) == -1) {
6035                     _v = 0;
6036                     PyErr_Clear();
6037                 }else {
6038                     _v = 1;
6039                 }
6040             }
6041             if (_v) {
6042                 return _wrap_BGCCacheContext_set__SWIG_1(self,args);
6043             }
6044         }
6045     }
6046     if (argc == 6) {
6047         int _v;
6048         {
6049             void *ptr;
6050             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__BGCCacheContext, 0) == -1) {
6051                 _v = 0;
6052                 PyErr_Clear();
6053             }else {
6054                 _v = 1;
6055             }
6056         }
6057         if (_v) {
6058             {
6059                 void *ptr;
6060                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__BColor, 0) == -1) {
6061                     _v = 0;
6062                     PyErr_Clear();
6063                 }else {
6064                     _v = 1;
6065                 }
6066             }
6067             if (_v) {
6068                 {
6069                     void *ptr;
6070                     if (SWIG_ConvertPtr(argv[2], (void **) &ptr, SWIGTYPE_p_XFontStruct, 0) == -1) {
6071                         _v = 0;
6072                         PyErr_Clear();
6073                     }else {
6074                         _v = 1;
6075                     }
6076                 }
6077                 if (_v) {
6078                     {
6079                         _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
6080                     }
6081                     if (_v) {
6082                         {
6083                             _v = (PyInt_Check(argv[4]) || PyLong_Check(argv[4])) ? 1 : 0;
6084                         }
6085                         if (_v) {
6086                             {
6087                                 _v = (PyInt_Check(argv[5]) || PyLong_Check(argv[5])) ? 1 : 0;
6088                             }
6089                             if (_v) {
6090                                 return _wrap_BGCCacheContext_set__SWIG_0(self,args);
6091                             }
6092                         }
6093                     }
6094                 }
6095             }
6096         }
6097     }
6098     
6099     PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'BGCCacheContext_set'");
6100     return NULL;
6101 }
6102
6103
6104 static PyObject *_wrap_delete_BGCCacheContext(PyObject *self, PyObject *args) {
6105     PyObject *resultobj;
6106     otk::BGCCacheContext *arg1 = (otk::BGCCacheContext *) 0 ;
6107     PyObject * obj0  = 0 ;
6108     
6109     if(!PyArg_ParseTuple(args,(char *)"O:delete_BGCCacheContext",&obj0)) goto fail;
6110     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCacheContext,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6111     delete arg1;
6112     
6113     Py_INCREF(Py_None); resultobj = Py_None;
6114     return resultobj;
6115     fail:
6116     return NULL;
6117 }
6118
6119
6120 static PyObject * BGCCacheContext_swigregister(PyObject *self, PyObject *args) {
6121     PyObject *obj;
6122     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
6123     SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCacheContext, obj);
6124     Py_INCREF(obj);
6125     return Py_BuildValue((char *)"");
6126 }
6127 static PyObject *_wrap_BGCCacheItem_gc(PyObject *self, PyObject *args) {
6128     PyObject *resultobj;
6129     otk::BGCCacheItem *arg1 = (otk::BGCCacheItem *) 0 ;
6130     GC *result;
6131     PyObject * obj0  = 0 ;
6132     
6133     if(!PyArg_ParseTuple(args,(char *)"O:BGCCacheItem_gc",&obj0)) goto fail;
6134     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCacheItem,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6135     {
6136         GC const &_result_ref = ((otk::BGCCacheItem const *)arg1)->gc();
6137         result = (GC *) &_result_ref;
6138     }
6139     
6140     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_GC, 0);
6141     return resultobj;
6142     fail:
6143     return NULL;
6144 }
6145
6146
6147 static PyObject *_wrap_delete_BGCCacheItem(PyObject *self, PyObject *args) {
6148     PyObject *resultobj;
6149     otk::BGCCacheItem *arg1 = (otk::BGCCacheItem *) 0 ;
6150     PyObject * obj0  = 0 ;
6151     
6152     if(!PyArg_ParseTuple(args,(char *)"O:delete_BGCCacheItem",&obj0)) goto fail;
6153     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCacheItem,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6154     delete arg1;
6155     
6156     Py_INCREF(Py_None); resultobj = Py_None;
6157     return resultobj;
6158     fail:
6159     return NULL;
6160 }
6161
6162
6163 static PyObject * BGCCacheItem_swigregister(PyObject *self, PyObject *args) {
6164     PyObject *obj;
6165     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
6166     SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCacheItem, obj);
6167     Py_INCREF(obj);
6168     return Py_BuildValue((char *)"");
6169 }
6170 static PyObject *_wrap_new_BGCCache(PyObject *self, PyObject *args) {
6171     PyObject *resultobj;
6172     unsigned int arg1 ;
6173     otk::BGCCache *result;
6174     PyObject * obj0  = 0 ;
6175     
6176     if(!PyArg_ParseTuple(args,(char *)"O:new_BGCCache",&obj0)) goto fail;
6177     arg1 = (unsigned int) PyInt_AsLong(obj0);
6178     if (PyErr_Occurred()) SWIG_fail;
6179     result = (otk::BGCCache *)new otk::BGCCache(arg1);
6180     
6181     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BGCCache, 1);
6182     return resultobj;
6183     fail:
6184     return NULL;
6185 }
6186
6187
6188 static PyObject *_wrap_delete_BGCCache(PyObject *self, PyObject *args) {
6189     PyObject *resultobj;
6190     otk::BGCCache *arg1 = (otk::BGCCache *) 0 ;
6191     PyObject * obj0  = 0 ;
6192     
6193     if(!PyArg_ParseTuple(args,(char *)"O:delete_BGCCache",&obj0)) goto fail;
6194     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCache,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6195     delete arg1;
6196     
6197     Py_INCREF(Py_None); resultobj = Py_None;
6198     return resultobj;
6199     fail:
6200     return NULL;
6201 }
6202
6203
6204 static PyObject *_wrap_BGCCache_purge(PyObject *self, PyObject *args) {
6205     PyObject *resultobj;
6206     otk::BGCCache *arg1 = (otk::BGCCache *) 0 ;
6207     PyObject * obj0  = 0 ;
6208     
6209     if(!PyArg_ParseTuple(args,(char *)"O:BGCCache_purge",&obj0)) goto fail;
6210     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCache,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6211     (arg1)->purge();
6212     
6213     Py_INCREF(Py_None); resultobj = Py_None;
6214     return resultobj;
6215     fail:
6216     return NULL;
6217 }
6218
6219
6220 static PyObject *_wrap_BGCCache_find(PyObject *self, PyObject *args) {
6221     PyObject *resultobj;
6222     otk::BGCCache *arg1 = (otk::BGCCache *) 0 ;
6223     otk::BColor *arg2 = 0 ;
6224     XFontStruct *arg3 = (XFontStruct *) (XFontStruct *)0 ;
6225     int arg4 = (int) GXcopy ;
6226     int arg5 = (int) ClipByChildren ;
6227     int arg6 = (int) 0 ;
6228     otk::BGCCacheItem *result;
6229     PyObject * obj0  = 0 ;
6230     PyObject * obj1  = 0 ;
6231     PyObject * obj2  = 0 ;
6232     
6233     if(!PyArg_ParseTuple(args,(char *)"OO|Oiii:BGCCache_find",&obj0,&obj1,&obj2,&arg4,&arg5,&arg6)) goto fail;
6234     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCache,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6235     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6236     if (arg2 == NULL) {
6237         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
6238     }
6239     if (obj2) {
6240         if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_XFontStruct,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6241     }
6242     result = (otk::BGCCacheItem *)(arg1)->find((otk::BColor const &)*arg2,(XFontStruct const *)arg3,arg4,arg5,arg6);
6243     
6244     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BGCCacheItem, 0);
6245     return resultobj;
6246     fail:
6247     return NULL;
6248 }
6249
6250
6251 static PyObject *_wrap_BGCCache_release(PyObject *self, PyObject *args) {
6252     PyObject *resultobj;
6253     otk::BGCCache *arg1 = (otk::BGCCache *) 0 ;
6254     otk::BGCCacheItem *arg2 = (otk::BGCCacheItem *) 0 ;
6255     PyObject * obj0  = 0 ;
6256     PyObject * obj1  = 0 ;
6257     
6258     if(!PyArg_ParseTuple(args,(char *)"OO:BGCCache_release",&obj0,&obj1)) goto fail;
6259     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BGCCache,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6260     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BGCCacheItem,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6261     (arg1)->release(arg2);
6262     
6263     Py_INCREF(Py_None); resultobj = Py_None;
6264     return resultobj;
6265     fail:
6266     return NULL;
6267 }
6268
6269
6270 static PyObject * BGCCache_swigregister(PyObject *self, PyObject *args) {
6271     PyObject *obj;
6272     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
6273     SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCache, obj);
6274     Py_INCREF(obj);
6275     return Py_BuildValue((char *)"");
6276 }
6277 static PyObject *_wrap_new_BPen(PyObject *self, PyObject *args) {
6278     PyObject *resultobj;
6279     otk::BColor *arg1 = 0 ;
6280     XFontStruct *arg2 = (XFontStruct *) (XFontStruct *)0 ;
6281     int arg3 = (int) 0 ;
6282     int arg4 = (int) GXcopy ;
6283     int arg5 = (int) ClipByChildren ;
6284     otk::BPen *result;
6285     PyObject * obj0  = 0 ;
6286     PyObject * obj1  = 0 ;
6287     
6288     if(!PyArg_ParseTuple(args,(char *)"O|Oiii:new_BPen",&obj0,&obj1,&arg3,&arg4,&arg5)) goto fail;
6289     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6290     if (arg1 == NULL) {
6291         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
6292     }
6293     if (obj1) {
6294         if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XFontStruct,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6295     }
6296     result = (otk::BPen *)new otk::BPen((otk::BColor const &)*arg1,(XFontStruct const *)arg2,arg3,arg4,arg5);
6297     
6298     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BPen, 1);
6299     return resultobj;
6300     fail:
6301     return NULL;
6302 }
6303
6304
6305 static PyObject *_wrap_delete_BPen(PyObject *self, PyObject *args) {
6306     PyObject *resultobj;
6307     otk::BPen *arg1 = (otk::BPen *) 0 ;
6308     PyObject * obj0  = 0 ;
6309     
6310     if(!PyArg_ParseTuple(args,(char *)"O:delete_BPen",&obj0)) goto fail;
6311     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BPen,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6312     delete arg1;
6313     
6314     Py_INCREF(Py_None); resultobj = Py_None;
6315     return resultobj;
6316     fail:
6317     return NULL;
6318 }
6319
6320
6321 static PyObject *_wrap_BPen_gc(PyObject *self, PyObject *args) {
6322     PyObject *resultobj;
6323     otk::BPen *arg1 = (otk::BPen *) 0 ;
6324     GC *result;
6325     PyObject * obj0  = 0 ;
6326     
6327     if(!PyArg_ParseTuple(args,(char *)"O:BPen_gc",&obj0)) goto fail;
6328     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BPen,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6329     {
6330         GC const &_result_ref = ((otk::BPen const *)arg1)->gc();
6331         result = (GC *) &_result_ref;
6332     }
6333     
6334     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_GC, 0);
6335     return resultobj;
6336     fail:
6337     return NULL;
6338 }
6339
6340
6341 static PyObject * BPen_swigregister(PyObject *self, PyObject *args) {
6342     PyObject *obj;
6343     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
6344     SWIG_TypeClientData(SWIGTYPE_p_otk__BPen, obj);
6345     Py_INCREF(obj);
6346     return Py_BuildValue((char *)"");
6347 }
6348 static PyObject *_wrap_new_BImage(PyObject *self, PyObject *args) {
6349     PyObject *resultobj;
6350     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6351     int arg2 ;
6352     int arg3 ;
6353     otk::BImage *result;
6354     PyObject * obj0  = 0 ;
6355     
6356     if(!PyArg_ParseTuple(args,(char *)"Oii:new_BImage",&obj0,&arg2,&arg3)) goto fail;
6357     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6358     result = (otk::BImage *)new otk::BImage(arg1,arg2,arg3);
6359     
6360     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BImage, 1);
6361     return resultobj;
6362     fail:
6363     return NULL;
6364 }
6365
6366
6367 static PyObject *_wrap_delete_BImage(PyObject *self, PyObject *args) {
6368     PyObject *resultobj;
6369     otk::BImage *arg1 = (otk::BImage *) 0 ;
6370     PyObject * obj0  = 0 ;
6371     
6372     if(!PyArg_ParseTuple(args,(char *)"O:delete_BImage",&obj0)) goto fail;
6373     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImage,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6374     delete arg1;
6375     
6376     Py_INCREF(Py_None); resultobj = Py_None;
6377     return resultobj;
6378     fail:
6379     return NULL;
6380 }
6381
6382
6383 static PyObject *_wrap_BImage_render(PyObject *self, PyObject *args) {
6384     PyObject *resultobj;
6385     otk::BImage *arg1 = (otk::BImage *) 0 ;
6386     otk::BTexture *arg2 = 0 ;
6387     Pixmap result;
6388     PyObject * obj0  = 0 ;
6389     PyObject * obj1  = 0 ;
6390     
6391     if(!PyArg_ParseTuple(args,(char *)"OO:BImage_render",&obj0,&obj1)) goto fail;
6392     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImage,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6393     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6394     if (arg2 == NULL) {
6395         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
6396     }
6397     result = (arg1)->render((otk::BTexture const &)*arg2);
6398     
6399     {
6400         Pixmap * resultptr;
6401         resultptr = new Pixmap((Pixmap &) result);
6402         resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Pixmap, 1);
6403     }
6404     return resultobj;
6405     fail:
6406     return NULL;
6407 }
6408
6409
6410 static PyObject * BImage_swigregister(PyObject *self, PyObject *args) {
6411     PyObject *obj;
6412     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
6413     SWIG_TypeClientData(SWIGTYPE_p_otk__BImage, obj);
6414     Py_INCREF(obj);
6415     return Py_BuildValue((char *)"");
6416 }
6417 static PyObject *_wrap_new_BImageControl(PyObject *self, PyObject *args) {
6418     PyObject *resultobj;
6419     otk::OBTimerQueueManager *arg1 = (otk::OBTimerQueueManager *) 0 ;
6420     otk::ScreenInfo *arg2 = (otk::ScreenInfo *) 0 ;
6421     bool arg3 = (bool) False ;
6422     int arg4 = (int) 4 ;
6423     unsigned long arg5 = (unsigned long) 300000l ;
6424     unsigned long arg6 = (unsigned long) 200l ;
6425     otk::BImageControl *result;
6426     PyObject * obj0  = 0 ;
6427     PyObject * obj1  = 0 ;
6428     PyObject * obj2  = 0 ;
6429     PyObject * obj4  = 0 ;
6430     PyObject * obj5  = 0 ;
6431     
6432     if(!PyArg_ParseTuple(args,(char *)"OO|OiOO:new_BImageControl",&obj0,&obj1,&obj2,&arg4,&obj4,&obj5)) goto fail;
6433     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimerQueueManager,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6434     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6435     if (obj2) {
6436         arg3 = (bool) PyInt_AsLong(obj2);
6437         if (PyErr_Occurred()) SWIG_fail;
6438     }
6439     if (obj4) {
6440         arg5 = (unsigned long) PyInt_AsLong(obj4);
6441         if (PyErr_Occurred()) SWIG_fail;
6442     }
6443     if (obj5) {
6444         arg6 = (unsigned long) PyInt_AsLong(obj5);
6445         if (PyErr_Occurred()) SWIG_fail;
6446     }
6447     result = (otk::BImageControl *)new otk::BImageControl(arg1,(otk::ScreenInfo const *)arg2,arg3,arg4,arg5,arg6);
6448     
6449     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BImageControl, 1);
6450     return resultobj;
6451     fail:
6452     return NULL;
6453 }
6454
6455
6456 static PyObject *_wrap_delete_BImageControl(PyObject *self, PyObject *args) {
6457     PyObject *resultobj;
6458     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6459     PyObject * obj0  = 0 ;
6460     
6461     if(!PyArg_ParseTuple(args,(char *)"O:delete_BImageControl",&obj0)) goto fail;
6462     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6463     delete arg1;
6464     
6465     Py_INCREF(Py_None); resultobj = Py_None;
6466     return resultobj;
6467     fail:
6468     return NULL;
6469 }
6470
6471
6472 static PyObject *_wrap_BImageControl_doDither(PyObject *self, PyObject *args) {
6473     PyObject *resultobj;
6474     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6475     bool result;
6476     PyObject * obj0  = 0 ;
6477     
6478     if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_doDither",&obj0)) goto fail;
6479     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6480     result = (bool)(arg1)->doDither();
6481     
6482     resultobj = PyInt_FromLong((long)result);
6483     return resultobj;
6484     fail:
6485     return NULL;
6486 }
6487
6488
6489 static PyObject *_wrap_BImageControl_getScreenInfo(PyObject *self, PyObject *args) {
6490     PyObject *resultobj;
6491     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6492     otk::ScreenInfo *result;
6493     PyObject * obj0  = 0 ;
6494     
6495     if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_getScreenInfo",&obj0)) goto fail;
6496     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6497     result = (otk::ScreenInfo *)((otk::BImageControl const *)arg1)->getScreenInfo();
6498     
6499     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__ScreenInfo, 0);
6500     return resultobj;
6501     fail:
6502     return NULL;
6503 }
6504
6505
6506 static PyObject *_wrap_BImageControl_getDrawable(PyObject *self, PyObject *args) {
6507     PyObject *resultobj;
6508     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6509     Window result;
6510     PyObject * obj0  = 0 ;
6511     
6512     if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_getDrawable",&obj0)) goto fail;
6513     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6514     result = ((otk::BImageControl const *)arg1)->getDrawable();
6515     
6516     {
6517         Window * resultptr;
6518         resultptr = new Window((Window &) result);
6519         resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Window, 1);
6520     }
6521     return resultobj;
6522     fail:
6523     return NULL;
6524 }
6525
6526
6527 static PyObject *_wrap_BImageControl_getVisual(PyObject *self, PyObject *args) {
6528     PyObject *resultobj;
6529     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6530     Visual *result;
6531     PyObject * obj0  = 0 ;
6532     
6533     if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_getVisual",&obj0)) goto fail;
6534     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6535     result = (Visual *)(arg1)->getVisual();
6536     
6537     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_Visual, 0);
6538     return resultobj;
6539     fail:
6540     return NULL;
6541 }
6542
6543
6544 static PyObject *_wrap_BImageControl_getBitsPerPixel(PyObject *self, PyObject *args) {
6545     PyObject *resultobj;
6546     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6547     int result;
6548     PyObject * obj0  = 0 ;
6549     
6550     if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_getBitsPerPixel",&obj0)) goto fail;
6551     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6552     result = (int)((otk::BImageControl const *)arg1)->getBitsPerPixel();
6553     
6554     resultobj = PyInt_FromLong((long)result);
6555     return resultobj;
6556     fail:
6557     return NULL;
6558 }
6559
6560
6561 static PyObject *_wrap_BImageControl_getDepth(PyObject *self, PyObject *args) {
6562     PyObject *resultobj;
6563     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6564     int result;
6565     PyObject * obj0  = 0 ;
6566     
6567     if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_getDepth",&obj0)) goto fail;
6568     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6569     result = (int)((otk::BImageControl const *)arg1)->getDepth();
6570     
6571     resultobj = PyInt_FromLong((long)result);
6572     return resultobj;
6573     fail:
6574     return NULL;
6575 }
6576
6577
6578 static PyObject *_wrap_BImageControl_getColorsPerChannel(PyObject *self, PyObject *args) {
6579     PyObject *resultobj;
6580     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6581     int result;
6582     PyObject * obj0  = 0 ;
6583     
6584     if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_getColorsPerChannel",&obj0)) goto fail;
6585     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6586     result = (int)((otk::BImageControl const *)arg1)->getColorsPerChannel();
6587     
6588     resultobj = PyInt_FromLong((long)result);
6589     return resultobj;
6590     fail:
6591     return NULL;
6592 }
6593
6594
6595 static PyObject *_wrap_BImageControl_getSqrt(PyObject *self, PyObject *args) {
6596     PyObject *resultobj;
6597     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6598     unsigned int arg2 ;
6599     unsigned long result;
6600     PyObject * obj0  = 0 ;
6601     PyObject * obj1  = 0 ;
6602     
6603     if(!PyArg_ParseTuple(args,(char *)"OO:BImageControl_getSqrt",&obj0,&obj1)) goto fail;
6604     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6605     arg2 = (unsigned int) PyInt_AsLong(obj1);
6606     if (PyErr_Occurred()) SWIG_fail;
6607     result = (unsigned long)(arg1)->getSqrt(arg2);
6608     
6609     resultobj = PyInt_FromLong((long)result);
6610     return resultobj;
6611     fail:
6612     return NULL;
6613 }
6614
6615
6616 static PyObject *_wrap_BImageControl_renderImage(PyObject *self, PyObject *args) {
6617     PyObject *resultobj;
6618     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6619     unsigned int arg2 ;
6620     unsigned int arg3 ;
6621     otk::BTexture *arg4 = 0 ;
6622     Pixmap result;
6623     PyObject * obj0  = 0 ;
6624     PyObject * obj1  = 0 ;
6625     PyObject * obj2  = 0 ;
6626     PyObject * obj3  = 0 ;
6627     
6628     if(!PyArg_ParseTuple(args,(char *)"OOOO:BImageControl_renderImage",&obj0,&obj1,&obj2,&obj3)) goto fail;
6629     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6630     arg2 = (unsigned int) PyInt_AsLong(obj1);
6631     if (PyErr_Occurred()) SWIG_fail;
6632     arg3 = (unsigned int) PyInt_AsLong(obj2);
6633     if (PyErr_Occurred()) SWIG_fail;
6634     if ((SWIG_ConvertPtr(obj3,(void **) &arg4, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6635     if (arg4 == NULL) {
6636         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
6637     }
6638     result = (arg1)->renderImage(arg2,arg3,(otk::BTexture const &)*arg4);
6639     
6640     {
6641         Pixmap * resultptr;
6642         resultptr = new Pixmap((Pixmap &) result);
6643         resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Pixmap, 1);
6644     }
6645     return resultobj;
6646     fail:
6647     return NULL;
6648 }
6649
6650
6651 static PyObject *_wrap_BImageControl_installRootColormap(PyObject *self, PyObject *args) {
6652     PyObject *resultobj;
6653     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6654     PyObject * obj0  = 0 ;
6655     
6656     if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_installRootColormap",&obj0)) goto fail;
6657     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6658     (arg1)->installRootColormap();
6659     
6660     Py_INCREF(Py_None); resultobj = Py_None;
6661     return resultobj;
6662     fail:
6663     return NULL;
6664 }
6665
6666
6667 static PyObject *_wrap_BImageControl_removeImage(PyObject *self, PyObject *args) {
6668     PyObject *resultobj;
6669     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6670     Pixmap arg2 ;
6671     Pixmap *argp2 ;
6672     PyObject * obj0  = 0 ;
6673     PyObject * obj1  = 0 ;
6674     
6675     if(!PyArg_ParseTuple(args,(char *)"OO:BImageControl_removeImage",&obj0,&obj1)) goto fail;
6676     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6677     if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Pixmap,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
6678     arg2 = *argp2; 
6679     (arg1)->removeImage(arg2);
6680     
6681     Py_INCREF(Py_None); resultobj = Py_None;
6682     return resultobj;
6683     fail:
6684     return NULL;
6685 }
6686
6687
6688 static PyObject *_wrap_BImageControl_getColorTables(PyObject *self, PyObject *args) {
6689     PyObject *resultobj;
6690     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6691     unsigned char **arg2 = (unsigned char **) 0 ;
6692     unsigned char **arg3 = (unsigned char **) 0 ;
6693     unsigned char **arg4 = (unsigned char **) 0 ;
6694     int *arg5 = (int *) 0 ;
6695     int *arg6 = (int *) 0 ;
6696     int *arg7 = (int *) 0 ;
6697     int *arg8 = (int *) 0 ;
6698     int *arg9 = (int *) 0 ;
6699     int *arg10 = (int *) 0 ;
6700     PyObject * obj0  = 0 ;
6701     PyObject * obj1  = 0 ;
6702     PyObject * obj2  = 0 ;
6703     PyObject * obj3  = 0 ;
6704     PyObject * obj4  = 0 ;
6705     PyObject * obj5  = 0 ;
6706     PyObject * obj6  = 0 ;
6707     PyObject * obj7  = 0 ;
6708     PyObject * obj8  = 0 ;
6709     PyObject * obj9  = 0 ;
6710     
6711     if(!PyArg_ParseTuple(args,(char *)"OOOOOOOOOO:BImageControl_getColorTables",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail;
6712     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6713     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_p_unsigned_char,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6714     if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_p_unsigned_char,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6715     if ((SWIG_ConvertPtr(obj3,(void **) &arg4, SWIGTYPE_p_p_unsigned_char,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6716     if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6717     if ((SWIG_ConvertPtr(obj5,(void **) &arg6, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6718     if ((SWIG_ConvertPtr(obj6,(void **) &arg7, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6719     if ((SWIG_ConvertPtr(obj7,(void **) &arg8, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6720     if ((SWIG_ConvertPtr(obj8,(void **) &arg9, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6721     if ((SWIG_ConvertPtr(obj9,(void **) &arg10, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6722     (arg1)->getColorTables(arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10);
6723     
6724     Py_INCREF(Py_None); resultobj = Py_None;
6725     return resultobj;
6726     fail:
6727     return NULL;
6728 }
6729
6730
6731 static PyObject *_wrap_BImageControl_getXColorTable(PyObject *self, PyObject *args) {
6732     PyObject *resultobj;
6733     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6734     XColor **arg2 = (XColor **) 0 ;
6735     int *arg3 = (int *) 0 ;
6736     PyObject * obj0  = 0 ;
6737     PyObject * obj1  = 0 ;
6738     PyObject * obj2  = 0 ;
6739     
6740     if(!PyArg_ParseTuple(args,(char *)"OOO:BImageControl_getXColorTable",&obj0,&obj1,&obj2)) goto fail;
6741     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6742     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_p_XColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6743     if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6744     (arg1)->getXColorTable(arg2,arg3);
6745     
6746     Py_INCREF(Py_None); resultobj = Py_None;
6747     return resultobj;
6748     fail:
6749     return NULL;
6750 }
6751
6752
6753 static PyObject *_wrap_BImageControl_getGradientBuffers(PyObject *self, PyObject *args) {
6754     PyObject *resultobj;
6755     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6756     unsigned int arg2 ;
6757     unsigned int arg3 ;
6758     unsigned int **arg4 = (unsigned int **) 0 ;
6759     unsigned int **arg5 = (unsigned int **) 0 ;
6760     PyObject * obj0  = 0 ;
6761     PyObject * obj1  = 0 ;
6762     PyObject * obj2  = 0 ;
6763     PyObject * obj3  = 0 ;
6764     PyObject * obj4  = 0 ;
6765     
6766     if(!PyArg_ParseTuple(args,(char *)"OOOOO:BImageControl_getGradientBuffers",&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
6767     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6768     arg2 = (unsigned int) PyInt_AsLong(obj1);
6769     if (PyErr_Occurred()) SWIG_fail;
6770     arg3 = (unsigned int) PyInt_AsLong(obj2);
6771     if (PyErr_Occurred()) SWIG_fail;
6772     if ((SWIG_ConvertPtr(obj3,(void **) &arg4, SWIGTYPE_p_p_unsigned_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6773     if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_p_unsigned_int,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6774     (arg1)->getGradientBuffers(arg2,arg3,arg4,arg5);
6775     
6776     Py_INCREF(Py_None); resultobj = Py_None;
6777     return resultobj;
6778     fail:
6779     return NULL;
6780 }
6781
6782
6783 static PyObject *_wrap_BImageControl_setDither(PyObject *self, PyObject *args) {
6784     PyObject *resultobj;
6785     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6786     bool arg2 ;
6787     PyObject * obj0  = 0 ;
6788     PyObject * obj1  = 0 ;
6789     
6790     if(!PyArg_ParseTuple(args,(char *)"OO:BImageControl_setDither",&obj0,&obj1)) goto fail;
6791     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6792     arg2 = (bool) PyInt_AsLong(obj1);
6793     if (PyErr_Occurred()) SWIG_fail;
6794     (arg1)->setDither(arg2);
6795     
6796     Py_INCREF(Py_None); resultobj = Py_None;
6797     return resultobj;
6798     fail:
6799     return NULL;
6800 }
6801
6802
6803 static PyObject *_wrap_BImageControl_setColorsPerChannel(PyObject *self, PyObject *args) {
6804     PyObject *resultobj;
6805     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6806     int arg2 ;
6807     PyObject * obj0  = 0 ;
6808     
6809     if(!PyArg_ParseTuple(args,(char *)"Oi:BImageControl_setColorsPerChannel",&obj0,&arg2)) goto fail;
6810     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6811     (arg1)->setColorsPerChannel(arg2);
6812     
6813     Py_INCREF(Py_None); resultobj = Py_None;
6814     return resultobj;
6815     fail:
6816     return NULL;
6817 }
6818
6819
6820 static PyObject *_wrap_BImageControl_timeout(PyObject *self, PyObject *args) {
6821     PyObject *resultobj;
6822     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
6823     PyObject * obj0  = 0 ;
6824     
6825     if(!PyArg_ParseTuple(args,(char *)"O:BImageControl_timeout",&obj0)) goto fail;
6826     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6827     otk::BImageControl::timeout(arg1);
6828     
6829     Py_INCREF(Py_None); resultobj = Py_None;
6830     return resultobj;
6831     fail:
6832     return NULL;
6833 }
6834
6835
6836 static PyObject * BImageControl_swigregister(PyObject *self, PyObject *args) {
6837     PyObject *obj;
6838     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
6839     SWIG_TypeClientData(SWIGTYPE_p_otk__BImageControl, obj);
6840     Py_INCREF(obj);
6841     return Py_BuildValue((char *)"");
6842 }
6843 static PyObject *_wrap_new_Point__SWIG_0(PyObject *self, PyObject *args) {
6844     PyObject *resultobj;
6845     otk::Point *result;
6846     
6847     if(!PyArg_ParseTuple(args,(char *)":new_Point")) goto fail;
6848     result = (otk::Point *)new otk::Point();
6849     
6850     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Point, 1);
6851     return resultobj;
6852     fail:
6853     return NULL;
6854 }
6855
6856
6857 static PyObject *_wrap_new_Point__SWIG_1(PyObject *self, PyObject *args) {
6858     PyObject *resultobj;
6859     int arg1 ;
6860     int arg2 ;
6861     otk::Point *result;
6862     
6863     if(!PyArg_ParseTuple(args,(char *)"ii:new_Point",&arg1,&arg2)) goto fail;
6864     result = (otk::Point *)new otk::Point(arg1,arg2);
6865     
6866     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Point, 1);
6867     return resultobj;
6868     fail:
6869     return NULL;
6870 }
6871
6872
6873 static PyObject *_wrap_new_Point(PyObject *self, PyObject *args) {
6874     int argc;
6875     PyObject *argv[3];
6876     int ii;
6877     
6878     argc = PyObject_Length(args);
6879     for (ii = 0; (ii < argc) && (ii < 2); ii++) {
6880         argv[ii] = PyTuple_GetItem(args,ii);
6881     }
6882     if (argc == 0) {
6883         return _wrap_new_Point__SWIG_0(self,args);
6884     }
6885     if (argc == 2) {
6886         int _v;
6887         {
6888             _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0;
6889         }
6890         if (_v) {
6891             {
6892                 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
6893             }
6894             if (_v) {
6895                 return _wrap_new_Point__SWIG_1(self,args);
6896             }
6897         }
6898     }
6899     
6900     PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_Point'");
6901     return NULL;
6902 }
6903
6904
6905 static PyObject *_wrap_Point_setX(PyObject *self, PyObject *args) {
6906     PyObject *resultobj;
6907     otk::Point *arg1 = (otk::Point *) 0 ;
6908     int arg2 ;
6909     PyObject * obj0  = 0 ;
6910     
6911     if(!PyArg_ParseTuple(args,(char *)"Oi:Point_setX",&obj0,&arg2)) goto fail;
6912     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6913     (arg1)->setX(arg2);
6914     
6915     Py_INCREF(Py_None); resultobj = Py_None;
6916     return resultobj;
6917     fail:
6918     return NULL;
6919 }
6920
6921
6922 static PyObject *_wrap_Point_x(PyObject *self, PyObject *args) {
6923     PyObject *resultobj;
6924     otk::Point *arg1 = (otk::Point *) 0 ;
6925     int result;
6926     PyObject * obj0  = 0 ;
6927     
6928     if(!PyArg_ParseTuple(args,(char *)"O:Point_x",&obj0)) goto fail;
6929     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6930     result = (int)((otk::Point const *)arg1)->x();
6931     
6932     resultobj = PyInt_FromLong((long)result);
6933     return resultobj;
6934     fail:
6935     return NULL;
6936 }
6937
6938
6939 static PyObject *_wrap_Point_setY(PyObject *self, PyObject *args) {
6940     PyObject *resultobj;
6941     otk::Point *arg1 = (otk::Point *) 0 ;
6942     int arg2 ;
6943     PyObject * obj0  = 0 ;
6944     
6945     if(!PyArg_ParseTuple(args,(char *)"Oi:Point_setY",&obj0,&arg2)) goto fail;
6946     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6947     (arg1)->setY(arg2);
6948     
6949     Py_INCREF(Py_None); resultobj = Py_None;
6950     return resultobj;
6951     fail:
6952     return NULL;
6953 }
6954
6955
6956 static PyObject *_wrap_Point_y(PyObject *self, PyObject *args) {
6957     PyObject *resultobj;
6958     otk::Point *arg1 = (otk::Point *) 0 ;
6959     int result;
6960     PyObject * obj0  = 0 ;
6961     
6962     if(!PyArg_ParseTuple(args,(char *)"O:Point_y",&obj0)) goto fail;
6963     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6964     result = (int)((otk::Point const *)arg1)->y();
6965     
6966     resultobj = PyInt_FromLong((long)result);
6967     return resultobj;
6968     fail:
6969     return NULL;
6970 }
6971
6972
6973 static PyObject *_wrap_Point_setPoint(PyObject *self, PyObject *args) {
6974     PyObject *resultobj;
6975     otk::Point *arg1 = (otk::Point *) 0 ;
6976     int arg2 ;
6977     int arg3 ;
6978     PyObject * obj0  = 0 ;
6979     
6980     if(!PyArg_ParseTuple(args,(char *)"Oii:Point_setPoint",&obj0,&arg2,&arg3)) goto fail;
6981     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6982     (arg1)->setPoint(arg2,arg3);
6983     
6984     Py_INCREF(Py_None); resultobj = Py_None;
6985     return resultobj;
6986     fail:
6987     return NULL;
6988 }
6989
6990
6991 static PyObject *_wrap_delete_Point(PyObject *self, PyObject *args) {
6992     PyObject *resultobj;
6993     otk::Point *arg1 = (otk::Point *) 0 ;
6994     PyObject * obj0  = 0 ;
6995     
6996     if(!PyArg_ParseTuple(args,(char *)"O:delete_Point",&obj0)) goto fail;
6997     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
6998     delete arg1;
6999     
7000     Py_INCREF(Py_None); resultobj = Py_None;
7001     return resultobj;
7002     fail:
7003     return NULL;
7004 }
7005
7006
7007 static PyObject * Point_swigregister(PyObject *self, PyObject *args) {
7008     PyObject *obj;
7009     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
7010     SWIG_TypeClientData(SWIGTYPE_p_otk__Point, obj);
7011     Py_INCREF(obj);
7012     return Py_BuildValue((char *)"");
7013 }
7014 static PyObject *_wrap_new_OBProperty(PyObject *self, PyObject *args) {
7015     PyObject *resultobj;
7016     otk::OBProperty *result;
7017     
7018     if(!PyArg_ParseTuple(args,(char *)":new_OBProperty")) goto fail;
7019     result = (otk::OBProperty *)new otk::OBProperty();
7020     
7021     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OBProperty, 1);
7022     return resultobj;
7023     fail:
7024     return NULL;
7025 }
7026
7027
7028 static PyObject *_wrap_delete_OBProperty(PyObject *self, PyObject *args) {
7029     PyObject *resultobj;
7030     otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7031     PyObject * obj0  = 0 ;
7032     
7033     if(!PyArg_ParseTuple(args,(char *)"O:delete_OBProperty",&obj0)) goto fail;
7034     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7035     delete arg1;
7036     
7037     Py_INCREF(Py_None); resultobj = Py_None;
7038     return resultobj;
7039     fail:
7040     return NULL;
7041 }
7042
7043
7044 static PyObject *_wrap_OBProperty_set__SWIG_0(PyObject *self, PyObject *args) {
7045     PyObject *resultobj;
7046     otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7047     Window arg2 ;
7048     int arg3 ;
7049     int arg4 ;
7050     unsigned long arg5 ;
7051     Window *argp2 ;
7052     PyObject * obj0  = 0 ;
7053     PyObject * obj1  = 0 ;
7054     PyObject * obj4  = 0 ;
7055     
7056     if(!PyArg_ParseTuple(args,(char *)"OOiiO:OBProperty_set",&obj0,&obj1,&arg3,&arg4,&obj4)) goto fail;
7057     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7058     if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7059     arg2 = *argp2; 
7060     arg5 = (unsigned long) PyInt_AsLong(obj4);
7061     if (PyErr_Occurred()) SWIG_fail;
7062     ((otk::OBProperty const *)arg1)->set(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::Atoms )arg4,arg5);
7063     
7064     Py_INCREF(Py_None); resultobj = Py_None;
7065     return resultobj;
7066     fail:
7067     return NULL;
7068 }
7069
7070
7071 static PyObject *_wrap_OBProperty_set__SWIG_1(PyObject *self, PyObject *args) {
7072     PyObject *resultobj;
7073     otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7074     Window arg2 ;
7075     int arg3 ;
7076     int arg4 ;
7077     unsigned long *arg5 ;
7078     int arg6 ;
7079     Window *argp2 ;
7080     PyObject * obj0  = 0 ;
7081     PyObject * obj1  = 0 ;
7082     PyObject * obj4  = 0 ;
7083     
7084     if(!PyArg_ParseTuple(args,(char *)"OOiiOi:OBProperty_set",&obj0,&obj1,&arg3,&arg4,&obj4,&arg6)) 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     if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_unsigned_long,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7089     ((otk::OBProperty const *)arg1)->set(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::Atoms )arg4,arg5,arg6);
7090     
7091     Py_INCREF(Py_None); resultobj = Py_None;
7092     return resultobj;
7093     fail:
7094     return NULL;
7095 }
7096
7097
7098 static PyObject *_wrap_OBProperty_set__SWIG_2(PyObject *self, PyObject *args) {
7099     PyObject *resultobj;
7100     otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7101     Window arg2 ;
7102     int arg3 ;
7103     int arg4 ;
7104     std::string *arg5 = 0 ;
7105     Window *argp2 ;
7106     std::string temp5 ;
7107     PyObject * obj0  = 0 ;
7108     PyObject * obj1  = 0 ;
7109     PyObject * obj4  = 0 ;
7110     
7111     if(!PyArg_ParseTuple(args,(char *)"OOiiO:OBProperty_set",&obj0,&obj1,&arg3,&arg4,&obj4)) goto fail;
7112     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7113     if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7114     arg2 = *argp2; 
7115     {
7116         if (PyString_Check(obj4)) {
7117             temp5 = std::string(PyString_AsString(obj4));
7118             arg5 = &temp5;
7119         }else {
7120             SWIG_exception(SWIG_TypeError, "string expected");
7121         }
7122     }
7123     ((otk::OBProperty const *)arg1)->set(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::StringType )arg4,(std::string const &)*arg5);
7124     
7125     Py_INCREF(Py_None); resultobj = Py_None;
7126     return resultobj;
7127     fail:
7128     return NULL;
7129 }
7130
7131
7132 static PyObject *_wrap_OBProperty_set__SWIG_3(PyObject *self, PyObject *args) {
7133     PyObject *resultobj;
7134     otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7135     Window arg2 ;
7136     int arg3 ;
7137     int arg4 ;
7138     otk::OBProperty::StringVect *arg5 = 0 ;
7139     Window *argp2 ;
7140     PyObject * obj0  = 0 ;
7141     PyObject * obj1  = 0 ;
7142     PyObject * obj4  = 0 ;
7143     
7144     if(!PyArg_ParseTuple(args,(char *)"OOiiO:OBProperty_set",&obj0,&obj1,&arg3,&arg4,&obj4)) goto fail;
7145     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7146     if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7147     arg2 = *argp2; 
7148     if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_otk__OBProperty__StringVect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7149     if (arg5 == NULL) {
7150         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
7151     }
7152     ((otk::OBProperty const *)arg1)->set(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::StringType )arg4,(otk::OBProperty::StringVect const &)*arg5);
7153     
7154     Py_INCREF(Py_None); resultobj = Py_None;
7155     return resultobj;
7156     fail:
7157     return NULL;
7158 }
7159
7160
7161 static PyObject *_wrap_OBProperty_set(PyObject *self, PyObject *args) {
7162     int argc;
7163     PyObject *argv[7];
7164     int ii;
7165     
7166     argc = PyObject_Length(args);
7167     for (ii = 0; (ii < argc) && (ii < 6); ii++) {
7168         argv[ii] = PyTuple_GetItem(args,ii);
7169     }
7170     if (argc == 5) {
7171         int _v;
7172         {
7173             void *ptr;
7174             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7175                 _v = 0;
7176                 PyErr_Clear();
7177             }else {
7178                 _v = 1;
7179             }
7180         }
7181         if (_v) {
7182             {
7183                 void *ptr;
7184                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7185                     _v = 0;
7186                     PyErr_Clear();
7187                 }else {
7188                     _v = 1;
7189                 }
7190             }
7191             if (_v) {
7192                 {
7193                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7194                 }
7195                 if (_v) {
7196                     {
7197                         _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7198                     }
7199                     if (_v) {
7200                         {
7201                             void *ptr;
7202                             if (SWIG_ConvertPtr(argv[4], (void **) &ptr, SWIGTYPE_p_otk__OBProperty__StringVect, 0) == -1) {
7203                                 _v = 0;
7204                                 PyErr_Clear();
7205                             }else {
7206                                 _v = 1;
7207                             }
7208                         }
7209                         if (_v) {
7210                             return _wrap_OBProperty_set__SWIG_3(self,args);
7211                         }
7212                     }
7213                 }
7214             }
7215         }
7216     }
7217     if (argc == 5) {
7218         int _v;
7219         {
7220             void *ptr;
7221             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7222                 _v = 0;
7223                 PyErr_Clear();
7224             }else {
7225                 _v = 1;
7226             }
7227         }
7228         if (_v) {
7229             {
7230                 void *ptr;
7231                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7232                     _v = 0;
7233                     PyErr_Clear();
7234                 }else {
7235                     _v = 1;
7236                 }
7237             }
7238             if (_v) {
7239                 {
7240                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7241                 }
7242                 if (_v) {
7243                     {
7244                         _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7245                     }
7246                     if (_v) {
7247                         {
7248                             _v = (PyInt_Check(argv[4]) || PyLong_Check(argv[4])) ? 1 : 0;
7249                         }
7250                         if (_v) {
7251                             return _wrap_OBProperty_set__SWIG_0(self,args);
7252                         }
7253                     }
7254                 }
7255             }
7256         }
7257     }
7258     if (argc == 5) {
7259         int _v;
7260         {
7261             void *ptr;
7262             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7263                 _v = 0;
7264                 PyErr_Clear();
7265             }else {
7266                 _v = 1;
7267             }
7268         }
7269         if (_v) {
7270             {
7271                 void *ptr;
7272                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7273                     _v = 0;
7274                     PyErr_Clear();
7275                 }else {
7276                     _v = 1;
7277                 }
7278             }
7279             if (_v) {
7280                 {
7281                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7282                 }
7283                 if (_v) {
7284                     {
7285                         _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7286                     }
7287                     if (_v) {
7288                         {
7289                             _v = PyString_Check(argv[4]) ? 1 : 0;
7290                         }
7291                         if (_v) {
7292                             return _wrap_OBProperty_set__SWIG_2(self,args);
7293                         }
7294                     }
7295                 }
7296             }
7297         }
7298     }
7299     if (argc == 6) {
7300         int _v;
7301         {
7302             void *ptr;
7303             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7304                 _v = 0;
7305                 PyErr_Clear();
7306             }else {
7307                 _v = 1;
7308             }
7309         }
7310         if (_v) {
7311             {
7312                 void *ptr;
7313                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7314                     _v = 0;
7315                     PyErr_Clear();
7316                 }else {
7317                     _v = 1;
7318                 }
7319             }
7320             if (_v) {
7321                 {
7322                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7323                 }
7324                 if (_v) {
7325                     {
7326                         _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7327                     }
7328                     if (_v) {
7329                         {
7330                             void *ptr;
7331                             if (SWIG_ConvertPtr(argv[4], (void **) &ptr, SWIGTYPE_p_unsigned_long, 0) == -1) {
7332                                 _v = 0;
7333                                 PyErr_Clear();
7334                             }else {
7335                                 _v = 1;
7336                             }
7337                         }
7338                         if (_v) {
7339                             {
7340                                 _v = (PyInt_Check(argv[5]) || PyLong_Check(argv[5])) ? 1 : 0;
7341                             }
7342                             if (_v) {
7343                                 return _wrap_OBProperty_set__SWIG_1(self,args);
7344                             }
7345                         }
7346                     }
7347                 }
7348             }
7349         }
7350     }
7351     
7352     PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'OBProperty_set'");
7353     return NULL;
7354 }
7355
7356
7357 static PyObject *_wrap_OBProperty_get__SWIG_0(PyObject *self, PyObject *args) {
7358     PyObject *resultobj;
7359     otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7360     Window arg2 ;
7361     int arg3 ;
7362     int arg4 ;
7363     unsigned long *arg5 = (unsigned long *) 0 ;
7364     unsigned long **arg6 = (unsigned long **) 0 ;
7365     bool result;
7366     Window *argp2 ;
7367     PyObject * obj0  = 0 ;
7368     PyObject * obj1  = 0 ;
7369     PyObject * obj4  = 0 ;
7370     PyObject * obj5  = 0 ;
7371     
7372     if(!PyArg_ParseTuple(args,(char *)"OOiiOO:OBProperty_get",&obj0,&obj1,&arg3,&arg4,&obj4,&obj5)) goto fail;
7373     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7374     if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7375     arg2 = *argp2; 
7376     if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_unsigned_long,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7377     if ((SWIG_ConvertPtr(obj5,(void **) &arg6, SWIGTYPE_p_p_unsigned_long,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7378     result = (bool)((otk::OBProperty const *)arg1)->get(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::Atoms )arg4,arg5,arg6);
7379     
7380     resultobj = PyInt_FromLong((long)result);
7381     return resultobj;
7382     fail:
7383     return NULL;
7384 }
7385
7386
7387 static PyObject *_wrap_OBProperty_get__SWIG_1(PyObject *self, PyObject *args) {
7388     PyObject *resultobj;
7389     otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7390     Window arg2 ;
7391     int arg3 ;
7392     int arg4 ;
7393     unsigned long *arg5 = (unsigned long *) 0 ;
7394     bool result;
7395     Window *argp2 ;
7396     PyObject * obj0  = 0 ;
7397     PyObject * obj1  = 0 ;
7398     PyObject * obj4  = 0 ;
7399     
7400     if(!PyArg_ParseTuple(args,(char *)"OOiiO:OBProperty_get",&obj0,&obj1,&arg3,&arg4,&obj4)) 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     result = (bool)((otk::OBProperty const *)arg1)->get(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::Atoms )arg4,arg5);
7406     
7407     resultobj = PyInt_FromLong((long)result);
7408     return resultobj;
7409     fail:
7410     return NULL;
7411 }
7412
7413
7414 static PyObject *_wrap_OBProperty_get__SWIG_2(PyObject *self, PyObject *args) {
7415     PyObject *resultobj;
7416     otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7417     Window arg2 ;
7418     int arg3 ;
7419     int arg4 ;
7420     std::string *arg5 = (std::string *) 0 ;
7421     bool result;
7422     Window *argp2 ;
7423     PyObject * obj0  = 0 ;
7424     PyObject * obj1  = 0 ;
7425     PyObject * obj4  = 0 ;
7426     
7427     if(!PyArg_ParseTuple(args,(char *)"OOiiO:OBProperty_get",&obj0,&obj1,&arg3,&arg4,&obj4)) goto fail;
7428     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7429     if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7430     arg2 = *argp2; 
7431     if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_std__string,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7432     result = (bool)((otk::OBProperty const *)arg1)->get(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::StringType )arg4,arg5);
7433     
7434     resultobj = PyInt_FromLong((long)result);
7435     return resultobj;
7436     fail:
7437     return NULL;
7438 }
7439
7440
7441 static PyObject *_wrap_OBProperty_get__SWIG_3(PyObject *self, PyObject *args) {
7442     PyObject *resultobj;
7443     otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7444     Window arg2 ;
7445     int arg3 ;
7446     int arg4 ;
7447     unsigned long *arg5 = (unsigned long *) 0 ;
7448     otk::OBProperty::StringVect *arg6 = (otk::OBProperty::StringVect *) 0 ;
7449     bool result;
7450     Window *argp2 ;
7451     PyObject * obj0  = 0 ;
7452     PyObject * obj1  = 0 ;
7453     PyObject * obj4  = 0 ;
7454     PyObject * obj5  = 0 ;
7455     
7456     if(!PyArg_ParseTuple(args,(char *)"OOiiOO:OBProperty_get",&obj0,&obj1,&arg3,&arg4,&obj4,&obj5)) goto fail;
7457     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7458     if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7459     arg2 = *argp2; 
7460     if ((SWIG_ConvertPtr(obj4,(void **) &arg5, SWIGTYPE_p_unsigned_long,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7461     if ((SWIG_ConvertPtr(obj5,(void **) &arg6, SWIGTYPE_p_otk__OBProperty__StringVect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7462     result = (bool)((otk::OBProperty const *)arg1)->get(arg2,(otk::OBProperty::Atoms )arg3,(otk::OBProperty::StringType )arg4,arg5,arg6);
7463     
7464     resultobj = PyInt_FromLong((long)result);
7465     return resultobj;
7466     fail:
7467     return NULL;
7468 }
7469
7470
7471 static PyObject *_wrap_OBProperty_get(PyObject *self, PyObject *args) {
7472     int argc;
7473     PyObject *argv[7];
7474     int ii;
7475     
7476     argc = PyObject_Length(args);
7477     for (ii = 0; (ii < argc) && (ii < 6); ii++) {
7478         argv[ii] = PyTuple_GetItem(args,ii);
7479     }
7480     if (argc == 5) {
7481         int _v;
7482         {
7483             void *ptr;
7484             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7485                 _v = 0;
7486                 PyErr_Clear();
7487             }else {
7488                 _v = 1;
7489             }
7490         }
7491         if (_v) {
7492             {
7493                 void *ptr;
7494                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7495                     _v = 0;
7496                     PyErr_Clear();
7497                 }else {
7498                     _v = 1;
7499                 }
7500             }
7501             if (_v) {
7502                 {
7503                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7504                 }
7505                 if (_v) {
7506                     {
7507                         _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7508                     }
7509                     if (_v) {
7510                         {
7511                             void *ptr;
7512                             if (SWIG_ConvertPtr(argv[4], (void **) &ptr, SWIGTYPE_p_unsigned_long, 0) == -1) {
7513                                 _v = 0;
7514                                 PyErr_Clear();
7515                             }else {
7516                                 _v = 1;
7517                             }
7518                         }
7519                         if (_v) {
7520                             return _wrap_OBProperty_get__SWIG_1(self,args);
7521                         }
7522                     }
7523                 }
7524             }
7525         }
7526     }
7527     if (argc == 5) {
7528         int _v;
7529         {
7530             void *ptr;
7531             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7532                 _v = 0;
7533                 PyErr_Clear();
7534             }else {
7535                 _v = 1;
7536             }
7537         }
7538         if (_v) {
7539             {
7540                 void *ptr;
7541                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7542                     _v = 0;
7543                     PyErr_Clear();
7544                 }else {
7545                     _v = 1;
7546                 }
7547             }
7548             if (_v) {
7549                 {
7550                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7551                 }
7552                 if (_v) {
7553                     {
7554                         _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7555                     }
7556                     if (_v) {
7557                         {
7558                             void *ptr;
7559                             if (SWIG_ConvertPtr(argv[4], (void **) &ptr, SWIGTYPE_p_std__string, 0) == -1) {
7560                                 _v = 0;
7561                                 PyErr_Clear();
7562                             }else {
7563                                 _v = 1;
7564                             }
7565                         }
7566                         if (_v) {
7567                             return _wrap_OBProperty_get__SWIG_2(self,args);
7568                         }
7569                     }
7570                 }
7571             }
7572         }
7573     }
7574     if (argc == 6) {
7575         int _v;
7576         {
7577             void *ptr;
7578             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7579                 _v = 0;
7580                 PyErr_Clear();
7581             }else {
7582                 _v = 1;
7583             }
7584         }
7585         if (_v) {
7586             {
7587                 void *ptr;
7588                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7589                     _v = 0;
7590                     PyErr_Clear();
7591                 }else {
7592                     _v = 1;
7593                 }
7594             }
7595             if (_v) {
7596                 {
7597                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7598                 }
7599                 if (_v) {
7600                     {
7601                         _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7602                     }
7603                     if (_v) {
7604                         {
7605                             void *ptr;
7606                             if (SWIG_ConvertPtr(argv[4], (void **) &ptr, SWIGTYPE_p_unsigned_long, 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[5], (void **) &ptr, SWIGTYPE_p_p_unsigned_long, 0) == -1) {
7617                                     _v = 0;
7618                                     PyErr_Clear();
7619                                 }else {
7620                                     _v = 1;
7621                                 }
7622                             }
7623                             if (_v) {
7624                                 return _wrap_OBProperty_get__SWIG_0(self,args);
7625                             }
7626                         }
7627                     }
7628                 }
7629             }
7630         }
7631     }
7632     if (argc == 6) {
7633         int _v;
7634         {
7635             void *ptr;
7636             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBProperty, 0) == -1) {
7637                 _v = 0;
7638                 PyErr_Clear();
7639             }else {
7640                 _v = 1;
7641             }
7642         }
7643         if (_v) {
7644             {
7645                 void *ptr;
7646                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_Window, 0) == -1) {
7647                     _v = 0;
7648                     PyErr_Clear();
7649                 }else {
7650                     _v = 1;
7651                 }
7652             }
7653             if (_v) {
7654                 {
7655                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7656                 }
7657                 if (_v) {
7658                     {
7659                         _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7660                     }
7661                     if (_v) {
7662                         {
7663                             void *ptr;
7664                             if (SWIG_ConvertPtr(argv[4], (void **) &ptr, SWIGTYPE_p_unsigned_long, 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[5], (void **) &ptr, SWIGTYPE_p_otk__OBProperty__StringVect, 0) == -1) {
7675                                     _v = 0;
7676                                     PyErr_Clear();
7677                                 }else {
7678                                     _v = 1;
7679                                 }
7680                             }
7681                             if (_v) {
7682                                 return _wrap_OBProperty_get__SWIG_3(self,args);
7683                             }
7684                         }
7685                     }
7686                 }
7687             }
7688         }
7689     }
7690     
7691     PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'OBProperty_get'");
7692     return NULL;
7693 }
7694
7695
7696 static PyObject *_wrap_OBProperty_erase(PyObject *self, PyObject *args) {
7697     PyObject *resultobj;
7698     otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7699     Window arg2 ;
7700     int arg3 ;
7701     Window *argp2 ;
7702     PyObject * obj0  = 0 ;
7703     PyObject * obj1  = 0 ;
7704     
7705     if(!PyArg_ParseTuple(args,(char *)"OOi:OBProperty_erase",&obj0,&obj1,&arg3)) goto fail;
7706     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7707     if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
7708     arg2 = *argp2; 
7709     ((otk::OBProperty const *)arg1)->erase(arg2,(otk::OBProperty::Atoms )arg3);
7710     
7711     Py_INCREF(Py_None); resultobj = Py_None;
7712     return resultobj;
7713     fail:
7714     return NULL;
7715 }
7716
7717
7718 static PyObject *_wrap_OBProperty_atom(PyObject *self, PyObject *args) {
7719     PyObject *resultobj;
7720     otk::OBProperty *arg1 = (otk::OBProperty *) 0 ;
7721     int arg2 ;
7722     Atom result;
7723     PyObject * obj0  = 0 ;
7724     
7725     if(!PyArg_ParseTuple(args,(char *)"Oi:OBProperty_atom",&obj0,&arg2)) goto fail;
7726     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7727     result = ((otk::OBProperty const *)arg1)->atom((otk::OBProperty::Atoms )arg2);
7728     
7729     {
7730         Atom * resultptr;
7731         resultptr = new Atom((Atom &) result);
7732         resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Atom, 1);
7733     }
7734     return resultobj;
7735     fail:
7736     return NULL;
7737 }
7738
7739
7740 static PyObject * OBProperty_swigregister(PyObject *self, PyObject *args) {
7741     PyObject *obj;
7742     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
7743     SWIG_TypeClientData(SWIGTYPE_p_otk__OBProperty, obj);
7744     Py_INCREF(obj);
7745     return Py_BuildValue((char *)"");
7746 }
7747 static PyObject *_wrap_new_Rect__SWIG_0(PyObject *self, PyObject *args) {
7748     PyObject *resultobj;
7749     otk::Rect *result;
7750     
7751     if(!PyArg_ParseTuple(args,(char *)":new_Rect")) goto fail;
7752     result = (otk::Rect *)new otk::Rect();
7753     
7754     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Rect, 1);
7755     return resultobj;
7756     fail:
7757     return NULL;
7758 }
7759
7760
7761 static PyObject *_wrap_new_Rect__SWIG_1(PyObject *self, PyObject *args) {
7762     PyObject *resultobj;
7763     int arg1 ;
7764     int arg2 ;
7765     int arg3 ;
7766     int arg4 ;
7767     otk::Rect *result;
7768     
7769     if(!PyArg_ParseTuple(args,(char *)"iiii:new_Rect",&arg1,&arg2,&arg3,&arg4)) goto fail;
7770     result = (otk::Rect *)new otk::Rect(arg1,arg2,arg3,arg4);
7771     
7772     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Rect, 1);
7773     return resultobj;
7774     fail:
7775     return NULL;
7776 }
7777
7778
7779 static PyObject *_wrap_new_Rect__SWIG_2(PyObject *self, PyObject *args) {
7780     PyObject *resultobj;
7781     otk::Point *arg1 = 0 ;
7782     otk::Point *arg2 = 0 ;
7783     otk::Rect *result;
7784     PyObject * obj0  = 0 ;
7785     PyObject * obj1  = 0 ;
7786     
7787     if(!PyArg_ParseTuple(args,(char *)"OO:new_Rect",&obj0,&obj1)) goto fail;
7788     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7789     if (arg1 == NULL) {
7790         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
7791     }
7792     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7793     if (arg2 == NULL) {
7794         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
7795     }
7796     result = (otk::Rect *)new otk::Rect((otk::Point const &)*arg1,(otk::Point const &)*arg2);
7797     
7798     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Rect, 1);
7799     return resultobj;
7800     fail:
7801     return NULL;
7802 }
7803
7804
7805 static PyObject *_wrap_new_Rect__SWIG_3(PyObject *self, PyObject *args) {
7806     PyObject *resultobj;
7807     otk::Rect *arg1 = 0 ;
7808     otk::Rect *result;
7809     PyObject * obj0  = 0 ;
7810     
7811     if(!PyArg_ParseTuple(args,(char *)"O:new_Rect",&obj0)) goto fail;
7812     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7813     if (arg1 == NULL) {
7814         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
7815     }
7816     result = (otk::Rect *)new otk::Rect((otk::Rect const &)*arg1);
7817     
7818     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Rect, 1);
7819     return resultobj;
7820     fail:
7821     return NULL;
7822 }
7823
7824
7825 static PyObject *_wrap_new_Rect__SWIG_4(PyObject *self, PyObject *args) {
7826     PyObject *resultobj;
7827     XRectangle *arg1 = 0 ;
7828     otk::Rect *result;
7829     PyObject * obj0  = 0 ;
7830     
7831     if(!PyArg_ParseTuple(args,(char *)"O:new_Rect",&obj0)) goto fail;
7832     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_XRectangle,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7833     if (arg1 == NULL) {
7834         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
7835     }
7836     result = (otk::Rect *)new otk::Rect((XRectangle const &)*arg1);
7837     
7838     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Rect, 1);
7839     return resultobj;
7840     fail:
7841     return NULL;
7842 }
7843
7844
7845 static PyObject *_wrap_new_Rect(PyObject *self, PyObject *args) {
7846     int argc;
7847     PyObject *argv[5];
7848     int ii;
7849     
7850     argc = PyObject_Length(args);
7851     for (ii = 0; (ii < argc) && (ii < 4); ii++) {
7852         argv[ii] = PyTuple_GetItem(args,ii);
7853     }
7854     if (argc == 0) {
7855         return _wrap_new_Rect__SWIG_0(self,args);
7856     }
7857     if (argc == 1) {
7858         int _v;
7859         {
7860             void *ptr;
7861             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
7862                 _v = 0;
7863                 PyErr_Clear();
7864             }else {
7865                 _v = 1;
7866             }
7867         }
7868         if (_v) {
7869             return _wrap_new_Rect__SWIG_3(self,args);
7870         }
7871     }
7872     if (argc == 1) {
7873         int _v;
7874         {
7875             void *ptr;
7876             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_XRectangle, 0) == -1) {
7877                 _v = 0;
7878                 PyErr_Clear();
7879             }else {
7880                 _v = 1;
7881             }
7882         }
7883         if (_v) {
7884             return _wrap_new_Rect__SWIG_4(self,args);
7885         }
7886     }
7887     if (argc == 2) {
7888         int _v;
7889         {
7890             void *ptr;
7891             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
7892                 _v = 0;
7893                 PyErr_Clear();
7894             }else {
7895                 _v = 1;
7896             }
7897         }
7898         if (_v) {
7899             {
7900                 void *ptr;
7901                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
7902                     _v = 0;
7903                     PyErr_Clear();
7904                 }else {
7905                     _v = 1;
7906                 }
7907             }
7908             if (_v) {
7909                 return _wrap_new_Rect__SWIG_2(self,args);
7910             }
7911         }
7912     }
7913     if (argc == 4) {
7914         int _v;
7915         {
7916             _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0;
7917         }
7918         if (_v) {
7919             {
7920                 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
7921             }
7922             if (_v) {
7923                 {
7924                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
7925                 }
7926                 if (_v) {
7927                     {
7928                         _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
7929                     }
7930                     if (_v) {
7931                         return _wrap_new_Rect__SWIG_1(self,args);
7932                     }
7933                 }
7934             }
7935         }
7936     }
7937     
7938     PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_Rect'");
7939     return NULL;
7940 }
7941
7942
7943 static PyObject *_wrap_Rect_left(PyObject *self, PyObject *args) {
7944     PyObject *resultobj;
7945     otk::Rect *arg1 = (otk::Rect *) 0 ;
7946     int result;
7947     PyObject * obj0  = 0 ;
7948     
7949     if(!PyArg_ParseTuple(args,(char *)"O:Rect_left",&obj0)) goto fail;
7950     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7951     result = (int)((otk::Rect const *)arg1)->left();
7952     
7953     resultobj = PyInt_FromLong((long)result);
7954     return resultobj;
7955     fail:
7956     return NULL;
7957 }
7958
7959
7960 static PyObject *_wrap_Rect_top(PyObject *self, PyObject *args) {
7961     PyObject *resultobj;
7962     otk::Rect *arg1 = (otk::Rect *) 0 ;
7963     int result;
7964     PyObject * obj0  = 0 ;
7965     
7966     if(!PyArg_ParseTuple(args,(char *)"O:Rect_top",&obj0)) goto fail;
7967     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7968     result = (int)((otk::Rect const *)arg1)->top();
7969     
7970     resultobj = PyInt_FromLong((long)result);
7971     return resultobj;
7972     fail:
7973     return NULL;
7974 }
7975
7976
7977 static PyObject *_wrap_Rect_right(PyObject *self, PyObject *args) {
7978     PyObject *resultobj;
7979     otk::Rect *arg1 = (otk::Rect *) 0 ;
7980     int result;
7981     PyObject * obj0  = 0 ;
7982     
7983     if(!PyArg_ParseTuple(args,(char *)"O:Rect_right",&obj0)) goto fail;
7984     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
7985     result = (int)((otk::Rect const *)arg1)->right();
7986     
7987     resultobj = PyInt_FromLong((long)result);
7988     return resultobj;
7989     fail:
7990     return NULL;
7991 }
7992
7993
7994 static PyObject *_wrap_Rect_bottom(PyObject *self, PyObject *args) {
7995     PyObject *resultobj;
7996     otk::Rect *arg1 = (otk::Rect *) 0 ;
7997     int result;
7998     PyObject * obj0  = 0 ;
7999     
8000     if(!PyArg_ParseTuple(args,(char *)"O:Rect_bottom",&obj0)) goto fail;
8001     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8002     result = (int)((otk::Rect const *)arg1)->bottom();
8003     
8004     resultobj = PyInt_FromLong((long)result);
8005     return resultobj;
8006     fail:
8007     return NULL;
8008 }
8009
8010
8011 static PyObject *_wrap_Rect_x(PyObject *self, PyObject *args) {
8012     PyObject *resultobj;
8013     otk::Rect *arg1 = (otk::Rect *) 0 ;
8014     int result;
8015     PyObject * obj0  = 0 ;
8016     
8017     if(!PyArg_ParseTuple(args,(char *)"O:Rect_x",&obj0)) goto fail;
8018     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8019     result = (int)((otk::Rect const *)arg1)->x();
8020     
8021     resultobj = PyInt_FromLong((long)result);
8022     return resultobj;
8023     fail:
8024     return NULL;
8025 }
8026
8027
8028 static PyObject *_wrap_Rect_y(PyObject *self, PyObject *args) {
8029     PyObject *resultobj;
8030     otk::Rect *arg1 = (otk::Rect *) 0 ;
8031     int result;
8032     PyObject * obj0  = 0 ;
8033     
8034     if(!PyArg_ParseTuple(args,(char *)"O:Rect_y",&obj0)) goto fail;
8035     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8036     result = (int)((otk::Rect const *)arg1)->y();
8037     
8038     resultobj = PyInt_FromLong((long)result);
8039     return resultobj;
8040     fail:
8041     return NULL;
8042 }
8043
8044
8045 static PyObject *_wrap_Rect_location(PyObject *self, PyObject *args) {
8046     PyObject *resultobj;
8047     otk::Rect *arg1 = (otk::Rect *) 0 ;
8048     otk::Point result;
8049     PyObject * obj0  = 0 ;
8050     
8051     if(!PyArg_ParseTuple(args,(char *)"O:Rect_location",&obj0)) goto fail;
8052     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8053     result = ((otk::Rect const *)arg1)->location();
8054     
8055     {
8056         otk::Point * resultptr;
8057         resultptr = new otk::Point((otk::Point &) result);
8058         resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_otk__Point, 1);
8059     }
8060     return resultobj;
8061     fail:
8062     return NULL;
8063 }
8064
8065
8066 static PyObject *_wrap_Rect_setX(PyObject *self, PyObject *args) {
8067     PyObject *resultobj;
8068     otk::Rect *arg1 = (otk::Rect *) 0 ;
8069     int arg2 ;
8070     PyObject * obj0  = 0 ;
8071     
8072     if(!PyArg_ParseTuple(args,(char *)"Oi:Rect_setX",&obj0,&arg2)) goto fail;
8073     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8074     (arg1)->setX(arg2);
8075     
8076     Py_INCREF(Py_None); resultobj = Py_None;
8077     return resultobj;
8078     fail:
8079     return NULL;
8080 }
8081
8082
8083 static PyObject *_wrap_Rect_setY(PyObject *self, PyObject *args) {
8084     PyObject *resultobj;
8085     otk::Rect *arg1 = (otk::Rect *) 0 ;
8086     int arg2 ;
8087     PyObject * obj0  = 0 ;
8088     
8089     if(!PyArg_ParseTuple(args,(char *)"Oi:Rect_setY",&obj0,&arg2)) goto fail;
8090     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8091     (arg1)->setY(arg2);
8092     
8093     Py_INCREF(Py_None); resultobj = Py_None;
8094     return resultobj;
8095     fail:
8096     return NULL;
8097 }
8098
8099
8100 static PyObject *_wrap_Rect_setPos__SWIG_0(PyObject *self, PyObject *args) {
8101     PyObject *resultobj;
8102     otk::Rect *arg1 = (otk::Rect *) 0 ;
8103     int arg2 ;
8104     int arg3 ;
8105     PyObject * obj0  = 0 ;
8106     
8107     if(!PyArg_ParseTuple(args,(char *)"Oii:Rect_setPos",&obj0,&arg2,&arg3)) goto fail;
8108     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8109     (arg1)->setPos(arg2,arg3);
8110     
8111     Py_INCREF(Py_None); resultobj = Py_None;
8112     return resultobj;
8113     fail:
8114     return NULL;
8115 }
8116
8117
8118 static PyObject *_wrap_Rect_setPos__SWIG_1(PyObject *self, PyObject *args) {
8119     PyObject *resultobj;
8120     otk::Rect *arg1 = (otk::Rect *) 0 ;
8121     otk::Point *arg2 = 0 ;
8122     PyObject * obj0  = 0 ;
8123     PyObject * obj1  = 0 ;
8124     
8125     if(!PyArg_ParseTuple(args,(char *)"OO:Rect_setPos",&obj0,&obj1)) goto fail;
8126     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8127     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8128     if (arg2 == NULL) {
8129         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
8130     }
8131     (arg1)->setPos((otk::Point const &)*arg2);
8132     
8133     Py_INCREF(Py_None); resultobj = Py_None;
8134     return resultobj;
8135     fail:
8136     return NULL;
8137 }
8138
8139
8140 static PyObject *_wrap_Rect_setPos(PyObject *self, PyObject *args) {
8141     int argc;
8142     PyObject *argv[4];
8143     int ii;
8144     
8145     argc = PyObject_Length(args);
8146     for (ii = 0; (ii < argc) && (ii < 3); ii++) {
8147         argv[ii] = PyTuple_GetItem(args,ii);
8148     }
8149     if (argc == 2) {
8150         int _v;
8151         {
8152             void *ptr;
8153             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8154                 _v = 0;
8155                 PyErr_Clear();
8156             }else {
8157                 _v = 1;
8158             }
8159         }
8160         if (_v) {
8161             {
8162                 void *ptr;
8163                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
8164                     _v = 0;
8165                     PyErr_Clear();
8166                 }else {
8167                     _v = 1;
8168                 }
8169             }
8170             if (_v) {
8171                 return _wrap_Rect_setPos__SWIG_1(self,args);
8172             }
8173         }
8174     }
8175     if (argc == 3) {
8176         int _v;
8177         {
8178             void *ptr;
8179             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8180                 _v = 0;
8181                 PyErr_Clear();
8182             }else {
8183                 _v = 1;
8184             }
8185         }
8186         if (_v) {
8187             {
8188                 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
8189             }
8190             if (_v) {
8191                 {
8192                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
8193                 }
8194                 if (_v) {
8195                     return _wrap_Rect_setPos__SWIG_0(self,args);
8196                 }
8197             }
8198         }
8199     }
8200     
8201     PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'Rect_setPos'");
8202     return NULL;
8203 }
8204
8205
8206 static PyObject *_wrap_Rect_width(PyObject *self, PyObject *args) {
8207     PyObject *resultobj;
8208     otk::Rect *arg1 = (otk::Rect *) 0 ;
8209     int result;
8210     PyObject * obj0  = 0 ;
8211     
8212     if(!PyArg_ParseTuple(args,(char *)"O:Rect_width",&obj0)) goto fail;
8213     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8214     result = (int)((otk::Rect const *)arg1)->width();
8215     
8216     resultobj = PyInt_FromLong((long)result);
8217     return resultobj;
8218     fail:
8219     return NULL;
8220 }
8221
8222
8223 static PyObject *_wrap_Rect_height(PyObject *self, PyObject *args) {
8224     PyObject *resultobj;
8225     otk::Rect *arg1 = (otk::Rect *) 0 ;
8226     int result;
8227     PyObject * obj0  = 0 ;
8228     
8229     if(!PyArg_ParseTuple(args,(char *)"O:Rect_height",&obj0)) goto fail;
8230     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8231     result = (int)((otk::Rect const *)arg1)->height();
8232     
8233     resultobj = PyInt_FromLong((long)result);
8234     return resultobj;
8235     fail:
8236     return NULL;
8237 }
8238
8239
8240 static PyObject *_wrap_Rect_size(PyObject *self, PyObject *args) {
8241     PyObject *resultobj;
8242     otk::Rect *arg1 = (otk::Rect *) 0 ;
8243     otk::Point result;
8244     PyObject * obj0  = 0 ;
8245     
8246     if(!PyArg_ParseTuple(args,(char *)"O:Rect_size",&obj0)) goto fail;
8247     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8248     result = ((otk::Rect const *)arg1)->size();
8249     
8250     {
8251         otk::Point * resultptr;
8252         resultptr = new otk::Point((otk::Point &) result);
8253         resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_otk__Point, 1);
8254     }
8255     return resultobj;
8256     fail:
8257     return NULL;
8258 }
8259
8260
8261 static PyObject *_wrap_Rect_setWidth(PyObject *self, PyObject *args) {
8262     PyObject *resultobj;
8263     otk::Rect *arg1 = (otk::Rect *) 0 ;
8264     int arg2 ;
8265     PyObject * obj0  = 0 ;
8266     
8267     if(!PyArg_ParseTuple(args,(char *)"Oi:Rect_setWidth",&obj0,&arg2)) goto fail;
8268     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8269     (arg1)->setWidth(arg2);
8270     
8271     Py_INCREF(Py_None); resultobj = Py_None;
8272     return resultobj;
8273     fail:
8274     return NULL;
8275 }
8276
8277
8278 static PyObject *_wrap_Rect_setHeight(PyObject *self, PyObject *args) {
8279     PyObject *resultobj;
8280     otk::Rect *arg1 = (otk::Rect *) 0 ;
8281     int arg2 ;
8282     PyObject * obj0  = 0 ;
8283     
8284     if(!PyArg_ParseTuple(args,(char *)"Oi:Rect_setHeight",&obj0,&arg2)) goto fail;
8285     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8286     (arg1)->setHeight(arg2);
8287     
8288     Py_INCREF(Py_None); resultobj = Py_None;
8289     return resultobj;
8290     fail:
8291     return NULL;
8292 }
8293
8294
8295 static PyObject *_wrap_Rect_setSize__SWIG_0(PyObject *self, PyObject *args) {
8296     PyObject *resultobj;
8297     otk::Rect *arg1 = (otk::Rect *) 0 ;
8298     int arg2 ;
8299     int arg3 ;
8300     PyObject * obj0  = 0 ;
8301     
8302     if(!PyArg_ParseTuple(args,(char *)"Oii:Rect_setSize",&obj0,&arg2,&arg3)) goto fail;
8303     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8304     (arg1)->setSize(arg2,arg3);
8305     
8306     Py_INCREF(Py_None); resultobj = Py_None;
8307     return resultobj;
8308     fail:
8309     return NULL;
8310 }
8311
8312
8313 static PyObject *_wrap_Rect_setSize__SWIG_1(PyObject *self, PyObject *args) {
8314     PyObject *resultobj;
8315     otk::Rect *arg1 = (otk::Rect *) 0 ;
8316     otk::Point *arg2 = 0 ;
8317     PyObject * obj0  = 0 ;
8318     PyObject * obj1  = 0 ;
8319     
8320     if(!PyArg_ParseTuple(args,(char *)"OO:Rect_setSize",&obj0,&obj1)) goto fail;
8321     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8322     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8323     if (arg2 == NULL) {
8324         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
8325     }
8326     (arg1)->setSize((otk::Point const &)*arg2);
8327     
8328     Py_INCREF(Py_None); resultobj = Py_None;
8329     return resultobj;
8330     fail:
8331     return NULL;
8332 }
8333
8334
8335 static PyObject *_wrap_Rect_setSize(PyObject *self, PyObject *args) {
8336     int argc;
8337     PyObject *argv[4];
8338     int ii;
8339     
8340     argc = PyObject_Length(args);
8341     for (ii = 0; (ii < argc) && (ii < 3); ii++) {
8342         argv[ii] = PyTuple_GetItem(args,ii);
8343     }
8344     if (argc == 2) {
8345         int _v;
8346         {
8347             void *ptr;
8348             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8349                 _v = 0;
8350                 PyErr_Clear();
8351             }else {
8352                 _v = 1;
8353             }
8354         }
8355         if (_v) {
8356             {
8357                 void *ptr;
8358                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
8359                     _v = 0;
8360                     PyErr_Clear();
8361                 }else {
8362                     _v = 1;
8363                 }
8364             }
8365             if (_v) {
8366                 return _wrap_Rect_setSize__SWIG_1(self,args);
8367             }
8368         }
8369     }
8370     if (argc == 3) {
8371         int _v;
8372         {
8373             void *ptr;
8374             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8375                 _v = 0;
8376                 PyErr_Clear();
8377             }else {
8378                 _v = 1;
8379             }
8380         }
8381         if (_v) {
8382             {
8383                 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
8384             }
8385             if (_v) {
8386                 {
8387                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
8388                 }
8389                 if (_v) {
8390                     return _wrap_Rect_setSize__SWIG_0(self,args);
8391                 }
8392             }
8393         }
8394     }
8395     
8396     PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'Rect_setSize'");
8397     return NULL;
8398 }
8399
8400
8401 static PyObject *_wrap_Rect_setRect__SWIG_0(PyObject *self, PyObject *args) {
8402     PyObject *resultobj;
8403     otk::Rect *arg1 = (otk::Rect *) 0 ;
8404     int arg2 ;
8405     int arg3 ;
8406     int arg4 ;
8407     int arg5 ;
8408     PyObject * obj0  = 0 ;
8409     
8410     if(!PyArg_ParseTuple(args,(char *)"Oiiii:Rect_setRect",&obj0,&arg2,&arg3,&arg4,&arg5)) goto fail;
8411     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8412     (arg1)->setRect(arg2,arg3,arg4,arg5);
8413     
8414     Py_INCREF(Py_None); resultobj = Py_None;
8415     return resultobj;
8416     fail:
8417     return NULL;
8418 }
8419
8420
8421 static PyObject *_wrap_Rect_setRect__SWIG_1(PyObject *self, PyObject *args) {
8422     PyObject *resultobj;
8423     otk::Rect *arg1 = (otk::Rect *) 0 ;
8424     otk::Point *arg2 = 0 ;
8425     otk::Point *arg3 = 0 ;
8426     PyObject * obj0  = 0 ;
8427     PyObject * obj1  = 0 ;
8428     PyObject * obj2  = 0 ;
8429     
8430     if(!PyArg_ParseTuple(args,(char *)"OOO:Rect_setRect",&obj0,&obj1,&obj2)) goto fail;
8431     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8432     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8433     if (arg2 == NULL) {
8434         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
8435     }
8436     if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8437     if (arg3 == NULL) {
8438         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
8439     }
8440     (arg1)->setRect((otk::Point const &)*arg2,(otk::Point const &)*arg3);
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(PyObject *self, PyObject *args) {
8450     int argc;
8451     PyObject *argv[6];
8452     int ii;
8453     
8454     argc = PyObject_Length(args);
8455     for (ii = 0; (ii < argc) && (ii < 5); ii++) {
8456         argv[ii] = PyTuple_GetItem(args,ii);
8457     }
8458     if (argc == 3) {
8459         int _v;
8460         {
8461             void *ptr;
8462             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8463                 _v = 0;
8464                 PyErr_Clear();
8465             }else {
8466                 _v = 1;
8467             }
8468         }
8469         if (_v) {
8470             {
8471                 void *ptr;
8472                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
8473                     _v = 0;
8474                     PyErr_Clear();
8475                 }else {
8476                     _v = 1;
8477                 }
8478             }
8479             if (_v) {
8480                 {
8481                     void *ptr;
8482                     if (SWIG_ConvertPtr(argv[2], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
8483                         _v = 0;
8484                         PyErr_Clear();
8485                     }else {
8486                         _v = 1;
8487                     }
8488                 }
8489                 if (_v) {
8490                     return _wrap_Rect_setRect__SWIG_1(self,args);
8491                 }
8492             }
8493         }
8494     }
8495     if (argc == 5) {
8496         int _v;
8497         {
8498             void *ptr;
8499             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8500                 _v = 0;
8501                 PyErr_Clear();
8502             }else {
8503                 _v = 1;
8504             }
8505         }
8506         if (_v) {
8507             {
8508                 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
8509             }
8510             if (_v) {
8511                 {
8512                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
8513                 }
8514                 if (_v) {
8515                     {
8516                         _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
8517                     }
8518                     if (_v) {
8519                         {
8520                             _v = (PyInt_Check(argv[4]) || PyLong_Check(argv[4])) ? 1 : 0;
8521                         }
8522                         if (_v) {
8523                             return _wrap_Rect_setRect__SWIG_0(self,args);
8524                         }
8525                     }
8526                 }
8527             }
8528         }
8529     }
8530     
8531     PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'Rect_setRect'");
8532     return NULL;
8533 }
8534
8535
8536 static PyObject *_wrap_Rect_setCoords__SWIG_0(PyObject *self, PyObject *args) {
8537     PyObject *resultobj;
8538     otk::Rect *arg1 = (otk::Rect *) 0 ;
8539     int arg2 ;
8540     int arg3 ;
8541     int arg4 ;
8542     int arg5 ;
8543     PyObject * obj0  = 0 ;
8544     
8545     if(!PyArg_ParseTuple(args,(char *)"Oiiii:Rect_setCoords",&obj0,&arg2,&arg3,&arg4,&arg5)) goto fail;
8546     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8547     (arg1)->setCoords(arg2,arg3,arg4,arg5);
8548     
8549     Py_INCREF(Py_None); resultobj = Py_None;
8550     return resultobj;
8551     fail:
8552     return NULL;
8553 }
8554
8555
8556 static PyObject *_wrap_Rect_setCoords__SWIG_1(PyObject *self, PyObject *args) {
8557     PyObject *resultobj;
8558     otk::Rect *arg1 = (otk::Rect *) 0 ;
8559     otk::Point *arg2 = 0 ;
8560     otk::Point *arg3 = 0 ;
8561     PyObject * obj0  = 0 ;
8562     PyObject * obj1  = 0 ;
8563     PyObject * obj2  = 0 ;
8564     
8565     if(!PyArg_ParseTuple(args,(char *)"OOO:Rect_setCoords",&obj0,&obj1,&obj2)) goto fail;
8566     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8567     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8568     if (arg2 == NULL) {
8569         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
8570     }
8571     if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8572     if (arg3 == NULL) {
8573         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
8574     }
8575     (arg1)->setCoords((otk::Point const &)*arg2,(otk::Point const &)*arg3);
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(PyObject *self, PyObject *args) {
8585     int argc;
8586     PyObject *argv[6];
8587     int ii;
8588     
8589     argc = PyObject_Length(args);
8590     for (ii = 0; (ii < argc) && (ii < 5); ii++) {
8591         argv[ii] = PyTuple_GetItem(args,ii);
8592     }
8593     if (argc == 3) {
8594         int _v;
8595         {
8596             void *ptr;
8597             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8598                 _v = 0;
8599                 PyErr_Clear();
8600             }else {
8601                 _v = 1;
8602             }
8603         }
8604         if (_v) {
8605             {
8606                 void *ptr;
8607                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
8608                     _v = 0;
8609                     PyErr_Clear();
8610                 }else {
8611                     _v = 1;
8612                 }
8613             }
8614             if (_v) {
8615                 {
8616                     void *ptr;
8617                     if (SWIG_ConvertPtr(argv[2], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
8618                         _v = 0;
8619                         PyErr_Clear();
8620                     }else {
8621                         _v = 1;
8622                     }
8623                 }
8624                 if (_v) {
8625                     return _wrap_Rect_setCoords__SWIG_1(self,args);
8626                 }
8627             }
8628         }
8629     }
8630     if (argc == 5) {
8631         int _v;
8632         {
8633             void *ptr;
8634             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8635                 _v = 0;
8636                 PyErr_Clear();
8637             }else {
8638                 _v = 1;
8639             }
8640         }
8641         if (_v) {
8642             {
8643                 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
8644             }
8645             if (_v) {
8646                 {
8647                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
8648                 }
8649                 if (_v) {
8650                     {
8651                         _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
8652                     }
8653                     if (_v) {
8654                         {
8655                             _v = (PyInt_Check(argv[4]) || PyLong_Check(argv[4])) ? 1 : 0;
8656                         }
8657                         if (_v) {
8658                             return _wrap_Rect_setCoords__SWIG_0(self,args);
8659                         }
8660                     }
8661                 }
8662             }
8663         }
8664     }
8665     
8666     PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'Rect_setCoords'");
8667     return NULL;
8668 }
8669
8670
8671 static PyObject *_wrap_Rect_equals(PyObject *self, PyObject *args) {
8672     PyObject *resultobj;
8673     otk::Rect *arg1 = (otk::Rect *) 0 ;
8674     otk::Rect *arg2 = 0 ;
8675     bool result;
8676     PyObject * obj0  = 0 ;
8677     PyObject * obj1  = 0 ;
8678     
8679     if(!PyArg_ParseTuple(args,(char *)"OO:Rect_equals",&obj0,&obj1)) goto fail;
8680     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8681     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8682     if (arg2 == NULL) {
8683         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
8684     }
8685     result = (bool)(arg1)->operator ==((otk::Rect const &)*arg2);
8686     
8687     resultobj = PyInt_FromLong((long)result);
8688     return resultobj;
8689     fail:
8690     return NULL;
8691 }
8692
8693
8694 static PyObject *_wrap_Rect_valid(PyObject *self, PyObject *args) {
8695     PyObject *resultobj;
8696     otk::Rect *arg1 = (otk::Rect *) 0 ;
8697     bool result;
8698     PyObject * obj0  = 0 ;
8699     
8700     if(!PyArg_ParseTuple(args,(char *)"O:Rect_valid",&obj0)) goto fail;
8701     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8702     result = (bool)((otk::Rect const *)arg1)->valid();
8703     
8704     resultobj = PyInt_FromLong((long)result);
8705     return resultobj;
8706     fail:
8707     return NULL;
8708 }
8709
8710
8711 static PyObject *_wrap_Rect_intersects(PyObject *self, PyObject *args) {
8712     PyObject *resultobj;
8713     otk::Rect *arg1 = (otk::Rect *) 0 ;
8714     otk::Rect *arg2 = 0 ;
8715     bool result;
8716     PyObject * obj0  = 0 ;
8717     PyObject * obj1  = 0 ;
8718     
8719     if(!PyArg_ParseTuple(args,(char *)"OO:Rect_intersects",&obj0,&obj1)) goto fail;
8720     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8721     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8722     if (arg2 == NULL) {
8723         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
8724     }
8725     result = (bool)((otk::Rect const *)arg1)->intersects((otk::Rect const &)*arg2);
8726     
8727     resultobj = PyInt_FromLong((long)result);
8728     return resultobj;
8729     fail:
8730     return NULL;
8731 }
8732
8733
8734 static PyObject *_wrap_Rect_contains__SWIG_0(PyObject *self, PyObject *args) {
8735     PyObject *resultobj;
8736     otk::Rect *arg1 = (otk::Rect *) 0 ;
8737     int arg2 ;
8738     int arg3 ;
8739     bool result;
8740     PyObject * obj0  = 0 ;
8741     
8742     if(!PyArg_ParseTuple(args,(char *)"Oii:Rect_contains",&obj0,&arg2,&arg3)) goto fail;
8743     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8744     result = (bool)((otk::Rect const *)arg1)->contains(arg2,arg3);
8745     
8746     resultobj = PyInt_FromLong((long)result);
8747     return resultobj;
8748     fail:
8749     return NULL;
8750 }
8751
8752
8753 static PyObject *_wrap_Rect_contains__SWIG_1(PyObject *self, PyObject *args) {
8754     PyObject *resultobj;
8755     otk::Rect *arg1 = (otk::Rect *) 0 ;
8756     otk::Point *arg2 = 0 ;
8757     bool result;
8758     PyObject * obj0  = 0 ;
8759     PyObject * obj1  = 0 ;
8760     
8761     if(!PyArg_ParseTuple(args,(char *)"OO:Rect_contains",&obj0,&obj1)) goto fail;
8762     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8763     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8764     if (arg2 == NULL) {
8765         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
8766     }
8767     result = (bool)((otk::Rect const *)arg1)->contains((otk::Point const &)*arg2);
8768     
8769     resultobj = PyInt_FromLong((long)result);
8770     return resultobj;
8771     fail:
8772     return NULL;
8773 }
8774
8775
8776 static PyObject *_wrap_Rect_contains__SWIG_2(PyObject *self, PyObject *args) {
8777     PyObject *resultobj;
8778     otk::Rect *arg1 = (otk::Rect *) 0 ;
8779     otk::Rect *arg2 = 0 ;
8780     bool result;
8781     PyObject * obj0  = 0 ;
8782     PyObject * obj1  = 0 ;
8783     
8784     if(!PyArg_ParseTuple(args,(char *)"OO:Rect_contains",&obj0,&obj1)) goto fail;
8785     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8786     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8787     if (arg2 == NULL) {
8788         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
8789     }
8790     result = (bool)((otk::Rect const *)arg1)->contains((otk::Rect const &)*arg2);
8791     
8792     resultobj = PyInt_FromLong((long)result);
8793     return resultobj;
8794     fail:
8795     return NULL;
8796 }
8797
8798
8799 static PyObject *_wrap_Rect_contains(PyObject *self, PyObject *args) {
8800     int argc;
8801     PyObject *argv[4];
8802     int ii;
8803     
8804     argc = PyObject_Length(args);
8805     for (ii = 0; (ii < argc) && (ii < 3); ii++) {
8806         argv[ii] = PyTuple_GetItem(args,ii);
8807     }
8808     if (argc == 2) {
8809         int _v;
8810         {
8811             void *ptr;
8812             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8813                 _v = 0;
8814                 PyErr_Clear();
8815             }else {
8816                 _v = 1;
8817             }
8818         }
8819         if (_v) {
8820             {
8821                 void *ptr;
8822                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) {
8823                     _v = 0;
8824                     PyErr_Clear();
8825                 }else {
8826                     _v = 1;
8827                 }
8828             }
8829             if (_v) {
8830                 return _wrap_Rect_contains__SWIG_1(self,args);
8831             }
8832         }
8833     }
8834     if (argc == 2) {
8835         int _v;
8836         {
8837             void *ptr;
8838             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8839                 _v = 0;
8840                 PyErr_Clear();
8841             }else {
8842                 _v = 1;
8843             }
8844         }
8845         if (_v) {
8846             {
8847                 void *ptr;
8848                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8849                     _v = 0;
8850                     PyErr_Clear();
8851                 }else {
8852                     _v = 1;
8853                 }
8854             }
8855             if (_v) {
8856                 return _wrap_Rect_contains__SWIG_2(self,args);
8857             }
8858         }
8859     }
8860     if (argc == 3) {
8861         int _v;
8862         {
8863             void *ptr;
8864             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) {
8865                 _v = 0;
8866                 PyErr_Clear();
8867             }else {
8868                 _v = 1;
8869             }
8870         }
8871         if (_v) {
8872             {
8873                 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
8874             }
8875             if (_v) {
8876                 {
8877                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
8878                 }
8879                 if (_v) {
8880                     return _wrap_Rect_contains__SWIG_0(self,args);
8881                 }
8882             }
8883         }
8884     }
8885     
8886     PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'Rect_contains'");
8887     return NULL;
8888 }
8889
8890
8891 static PyObject *_wrap_delete_Rect(PyObject *self, PyObject *args) {
8892     PyObject *resultobj;
8893     otk::Rect *arg1 = (otk::Rect *) 0 ;
8894     PyObject * obj0  = 0 ;
8895     
8896     if(!PyArg_ParseTuple(args,(char *)"O:delete_Rect",&obj0)) goto fail;
8897     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8898     delete arg1;
8899     
8900     Py_INCREF(Py_None); resultobj = Py_None;
8901     return resultobj;
8902     fail:
8903     return NULL;
8904 }
8905
8906
8907 static PyObject * Rect_swigregister(PyObject *self, PyObject *args) {
8908     PyObject *obj;
8909     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
8910     SWIG_TypeClientData(SWIGTYPE_p_otk__Rect, obj);
8911     Py_INCREF(obj);
8912     return Py_BuildValue((char *)"");
8913 }
8914 static PyObject *_wrap_new_ScreenInfo(PyObject *self, PyObject *args) {
8915     PyObject *resultobj;
8916     unsigned int arg1 ;
8917     otk::ScreenInfo *result;
8918     PyObject * obj0  = 0 ;
8919     
8920     if(!PyArg_ParseTuple(args,(char *)"O:new_ScreenInfo",&obj0)) goto fail;
8921     arg1 = (unsigned int) PyInt_AsLong(obj0);
8922     if (PyErr_Occurred()) SWIG_fail;
8923     result = (otk::ScreenInfo *)new otk::ScreenInfo(arg1);
8924     
8925     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__ScreenInfo, 1);
8926     return resultobj;
8927     fail:
8928     return NULL;
8929 }
8930
8931
8932 static PyObject *_wrap_ScreenInfo_visual(PyObject *self, PyObject *args) {
8933     PyObject *resultobj;
8934     otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
8935     Visual *result;
8936     PyObject * obj0  = 0 ;
8937     
8938     if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_visual",&obj0)) goto fail;
8939     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8940     result = (Visual *)((otk::ScreenInfo const *)arg1)->visual();
8941     
8942     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_Visual, 0);
8943     return resultobj;
8944     fail:
8945     return NULL;
8946 }
8947
8948
8949 static PyObject *_wrap_ScreenInfo_rootWindow(PyObject *self, PyObject *args) {
8950     PyObject *resultobj;
8951     otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
8952     Window result;
8953     PyObject * obj0  = 0 ;
8954     
8955     if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_rootWindow",&obj0)) goto fail;
8956     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8957     result = ((otk::ScreenInfo const *)arg1)->rootWindow();
8958     
8959     {
8960         Window * resultptr;
8961         resultptr = new Window((Window &) result);
8962         resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Window, 1);
8963     }
8964     return resultobj;
8965     fail:
8966     return NULL;
8967 }
8968
8969
8970 static PyObject *_wrap_ScreenInfo_colormap(PyObject *self, PyObject *args) {
8971     PyObject *resultobj;
8972     otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
8973     Colormap result;
8974     PyObject * obj0  = 0 ;
8975     
8976     if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_colormap",&obj0)) goto fail;
8977     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8978     result = ((otk::ScreenInfo const *)arg1)->colormap();
8979     
8980     {
8981         Colormap * resultptr;
8982         resultptr = new Colormap((Colormap &) result);
8983         resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Colormap, 1);
8984     }
8985     return resultobj;
8986     fail:
8987     return NULL;
8988 }
8989
8990
8991 static PyObject *_wrap_ScreenInfo_depth(PyObject *self, PyObject *args) {
8992     PyObject *resultobj;
8993     otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
8994     int result;
8995     PyObject * obj0  = 0 ;
8996     
8997     if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_depth",&obj0)) goto fail;
8998     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
8999     result = (int)((otk::ScreenInfo const *)arg1)->depth();
9000     
9001     resultobj = PyInt_FromLong((long)result);
9002     return resultobj;
9003     fail:
9004     return NULL;
9005 }
9006
9007
9008 static PyObject *_wrap_ScreenInfo_screen(PyObject *self, PyObject *args) {
9009     PyObject *resultobj;
9010     otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
9011     unsigned int result;
9012     PyObject * obj0  = 0 ;
9013     
9014     if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_screen",&obj0)) goto fail;
9015     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9016     result = (unsigned int)((otk::ScreenInfo const *)arg1)->screen();
9017     
9018     resultobj = PyInt_FromLong((long)result);
9019     return resultobj;
9020     fail:
9021     return NULL;
9022 }
9023
9024
9025 static PyObject *_wrap_ScreenInfo_rect(PyObject *self, PyObject *args) {
9026     PyObject *resultobj;
9027     otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
9028     otk::Rect *result;
9029     PyObject * obj0  = 0 ;
9030     
9031     if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_rect",&obj0)) goto fail;
9032     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9033     {
9034         otk::Rect const &_result_ref = ((otk::ScreenInfo const *)arg1)->rect();
9035         result = (otk::Rect *) &_result_ref;
9036     }
9037     
9038     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Rect, 0);
9039     return resultobj;
9040     fail:
9041     return NULL;
9042 }
9043
9044
9045 static PyObject *_wrap_ScreenInfo_width(PyObject *self, PyObject *args) {
9046     PyObject *resultobj;
9047     otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
9048     unsigned int result;
9049     PyObject * obj0  = 0 ;
9050     
9051     if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_width",&obj0)) goto fail;
9052     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9053     result = (unsigned int)((otk::ScreenInfo const *)arg1)->width();
9054     
9055     resultobj = PyInt_FromLong((long)result);
9056     return resultobj;
9057     fail:
9058     return NULL;
9059 }
9060
9061
9062 static PyObject *_wrap_ScreenInfo_height(PyObject *self, PyObject *args) {
9063     PyObject *resultobj;
9064     otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
9065     unsigned int result;
9066     PyObject * obj0  = 0 ;
9067     
9068     if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_height",&obj0)) goto fail;
9069     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9070     result = (unsigned int)((otk::ScreenInfo const *)arg1)->height();
9071     
9072     resultobj = PyInt_FromLong((long)result);
9073     return resultobj;
9074     fail:
9075     return NULL;
9076 }
9077
9078
9079 static PyObject *_wrap_ScreenInfo_displayString(PyObject *self, PyObject *args) {
9080     PyObject *resultobj;
9081     otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
9082     std::string *result;
9083     PyObject * obj0  = 0 ;
9084     
9085     if(!PyArg_ParseTuple(args,(char *)"O:ScreenInfo_displayString",&obj0)) goto fail;
9086     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9087     {
9088         std::string const &_result_ref = ((otk::ScreenInfo const *)arg1)->displayString();
9089         result = (std::string *) &_result_ref;
9090     }
9091     
9092     {
9093         resultobj = PyString_FromString(result->c_str());
9094     }
9095     return resultobj;
9096     fail:
9097     return NULL;
9098 }
9099
9100
9101 static PyObject *_wrap_delete_ScreenInfo(PyObject *self, PyObject *args) {
9102     PyObject *resultobj;
9103     otk::ScreenInfo *arg1 = (otk::ScreenInfo *) 0 ;
9104     PyObject * obj0  = 0 ;
9105     
9106     if(!PyArg_ParseTuple(args,(char *)"O:delete_ScreenInfo",&obj0)) goto fail;
9107     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__ScreenInfo,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9108     delete arg1;
9109     
9110     Py_INCREF(Py_None); resultobj = Py_None;
9111     return resultobj;
9112     fail:
9113     return NULL;
9114 }
9115
9116
9117 static PyObject * ScreenInfo_swigregister(PyObject *self, PyObject *args) {
9118     PyObject *obj;
9119     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
9120     SWIG_TypeClientData(SWIGTYPE_p_otk__ScreenInfo, obj);
9121     Py_INCREF(obj);
9122     return Py_BuildValue((char *)"");
9123 }
9124 static PyObject *_wrap_Strut_top_set(PyObject *self, PyObject *args) {
9125     PyObject *resultobj;
9126     otk::Strut *arg1 = (otk::Strut *) 0 ;
9127     unsigned int arg2 ;
9128     PyObject * obj0  = 0 ;
9129     PyObject * obj1  = 0 ;
9130     
9131     if(!PyArg_ParseTuple(args,(char *)"OO:Strut_top_set",&obj0,&obj1)) goto fail;
9132     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9133     arg2 = (unsigned int) PyInt_AsLong(obj1);
9134     if (PyErr_Occurred()) SWIG_fail;
9135     if (arg1) (arg1)->top = arg2;
9136     
9137     Py_INCREF(Py_None); resultobj = Py_None;
9138     return resultobj;
9139     fail:
9140     return NULL;
9141 }
9142
9143
9144 static PyObject *_wrap_Strut_top_get(PyObject *self, PyObject *args) {
9145     PyObject *resultobj;
9146     otk::Strut *arg1 = (otk::Strut *) 0 ;
9147     unsigned int result;
9148     PyObject * obj0  = 0 ;
9149     
9150     if(!PyArg_ParseTuple(args,(char *)"O:Strut_top_get",&obj0)) goto fail;
9151     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9152     result = (unsigned int) ((arg1)->top);
9153     
9154     resultobj = PyInt_FromLong((long)result);
9155     return resultobj;
9156     fail:
9157     return NULL;
9158 }
9159
9160
9161 static PyObject *_wrap_Strut_bottom_set(PyObject *self, PyObject *args) {
9162     PyObject *resultobj;
9163     otk::Strut *arg1 = (otk::Strut *) 0 ;
9164     unsigned int arg2 ;
9165     PyObject * obj0  = 0 ;
9166     PyObject * obj1  = 0 ;
9167     
9168     if(!PyArg_ParseTuple(args,(char *)"OO:Strut_bottom_set",&obj0,&obj1)) goto fail;
9169     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9170     arg2 = (unsigned int) PyInt_AsLong(obj1);
9171     if (PyErr_Occurred()) SWIG_fail;
9172     if (arg1) (arg1)->bottom = arg2;
9173     
9174     Py_INCREF(Py_None); resultobj = Py_None;
9175     return resultobj;
9176     fail:
9177     return NULL;
9178 }
9179
9180
9181 static PyObject *_wrap_Strut_bottom_get(PyObject *self, PyObject *args) {
9182     PyObject *resultobj;
9183     otk::Strut *arg1 = (otk::Strut *) 0 ;
9184     unsigned int result;
9185     PyObject * obj0  = 0 ;
9186     
9187     if(!PyArg_ParseTuple(args,(char *)"O:Strut_bottom_get",&obj0)) goto fail;
9188     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9189     result = (unsigned int) ((arg1)->bottom);
9190     
9191     resultobj = PyInt_FromLong((long)result);
9192     return resultobj;
9193     fail:
9194     return NULL;
9195 }
9196
9197
9198 static PyObject *_wrap_Strut_left_set(PyObject *self, PyObject *args) {
9199     PyObject *resultobj;
9200     otk::Strut *arg1 = (otk::Strut *) 0 ;
9201     unsigned int arg2 ;
9202     PyObject * obj0  = 0 ;
9203     PyObject * obj1  = 0 ;
9204     
9205     if(!PyArg_ParseTuple(args,(char *)"OO:Strut_left_set",&obj0,&obj1)) goto fail;
9206     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9207     arg2 = (unsigned int) PyInt_AsLong(obj1);
9208     if (PyErr_Occurred()) SWIG_fail;
9209     if (arg1) (arg1)->left = arg2;
9210     
9211     Py_INCREF(Py_None); resultobj = Py_None;
9212     return resultobj;
9213     fail:
9214     return NULL;
9215 }
9216
9217
9218 static PyObject *_wrap_Strut_left_get(PyObject *self, PyObject *args) {
9219     PyObject *resultobj;
9220     otk::Strut *arg1 = (otk::Strut *) 0 ;
9221     unsigned int result;
9222     PyObject * obj0  = 0 ;
9223     
9224     if(!PyArg_ParseTuple(args,(char *)"O:Strut_left_get",&obj0)) goto fail;
9225     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9226     result = (unsigned int) ((arg1)->left);
9227     
9228     resultobj = PyInt_FromLong((long)result);
9229     return resultobj;
9230     fail:
9231     return NULL;
9232 }
9233
9234
9235 static PyObject *_wrap_Strut_right_set(PyObject *self, PyObject *args) {
9236     PyObject *resultobj;
9237     otk::Strut *arg1 = (otk::Strut *) 0 ;
9238     unsigned int arg2 ;
9239     PyObject * obj0  = 0 ;
9240     PyObject * obj1  = 0 ;
9241     
9242     if(!PyArg_ParseTuple(args,(char *)"OO:Strut_right_set",&obj0,&obj1)) goto fail;
9243     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9244     arg2 = (unsigned int) PyInt_AsLong(obj1);
9245     if (PyErr_Occurred()) SWIG_fail;
9246     if (arg1) (arg1)->right = arg2;
9247     
9248     Py_INCREF(Py_None); resultobj = Py_None;
9249     return resultobj;
9250     fail:
9251     return NULL;
9252 }
9253
9254
9255 static PyObject *_wrap_Strut_right_get(PyObject *self, PyObject *args) {
9256     PyObject *resultobj;
9257     otk::Strut *arg1 = (otk::Strut *) 0 ;
9258     unsigned int result;
9259     PyObject * obj0  = 0 ;
9260     
9261     if(!PyArg_ParseTuple(args,(char *)"O:Strut_right_get",&obj0)) goto fail;
9262     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9263     result = (unsigned int) ((arg1)->right);
9264     
9265     resultobj = PyInt_FromLong((long)result);
9266     return resultobj;
9267     fail:
9268     return NULL;
9269 }
9270
9271
9272 static PyObject *_wrap_new_Strut__SWIG_0(PyObject *self, PyObject *args) {
9273     PyObject *resultobj;
9274     otk::Strut *result;
9275     
9276     if(!PyArg_ParseTuple(args,(char *)":new_Strut")) goto fail;
9277     result = (otk::Strut *)new otk::Strut();
9278     
9279     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Strut, 1);
9280     return resultobj;
9281     fail:
9282     return NULL;
9283 }
9284
9285
9286 static PyObject *_wrap_new_Strut__SWIG_1(PyObject *self, PyObject *args) {
9287     PyObject *resultobj;
9288     int arg1 ;
9289     int arg2 ;
9290     int arg3 ;
9291     int arg4 ;
9292     otk::Strut *result;
9293     
9294     if(!PyArg_ParseTuple(args,(char *)"iiii:new_Strut",&arg1,&arg2,&arg3,&arg4)) goto fail;
9295     result = (otk::Strut *)new otk::Strut(arg1,arg2,arg3,arg4);
9296     
9297     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Strut, 1);
9298     return resultobj;
9299     fail:
9300     return NULL;
9301 }
9302
9303
9304 static PyObject *_wrap_new_Strut(PyObject *self, PyObject *args) {
9305     int argc;
9306     PyObject *argv[5];
9307     int ii;
9308     
9309     argc = PyObject_Length(args);
9310     for (ii = 0; (ii < argc) && (ii < 4); ii++) {
9311         argv[ii] = PyTuple_GetItem(args,ii);
9312     }
9313     if (argc == 0) {
9314         return _wrap_new_Strut__SWIG_0(self,args);
9315     }
9316     if (argc == 4) {
9317         int _v;
9318         {
9319             _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0;
9320         }
9321         if (_v) {
9322             {
9323                 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
9324             }
9325             if (_v) {
9326                 {
9327                     _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
9328                 }
9329                 if (_v) {
9330                     {
9331                         _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
9332                     }
9333                     if (_v) {
9334                         return _wrap_new_Strut__SWIG_1(self,args);
9335                     }
9336                 }
9337             }
9338         }
9339     }
9340     
9341     PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_Strut'");
9342     return NULL;
9343 }
9344
9345
9346 static PyObject *_wrap_delete_Strut(PyObject *self, PyObject *args) {
9347     PyObject *resultobj;
9348     otk::Strut *arg1 = (otk::Strut *) 0 ;
9349     PyObject * obj0  = 0 ;
9350     
9351     if(!PyArg_ParseTuple(args,(char *)"O:delete_Strut",&obj0)) goto fail;
9352     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9353     delete arg1;
9354     
9355     Py_INCREF(Py_None); resultobj = Py_None;
9356     return resultobj;
9357     fail:
9358     return NULL;
9359 }
9360
9361
9362 static PyObject * Strut_swigregister(PyObject *self, PyObject *args) {
9363     PyObject *obj;
9364     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
9365     SWIG_TypeClientData(SWIGTYPE_p_otk__Strut, obj);
9366     Py_INCREF(obj);
9367     return Py_BuildValue((char *)"");
9368 }
9369 static PyObject *_wrap_PixmapMask_mask_set(PyObject *self, PyObject *args) {
9370     PyObject *resultobj;
9371     otk::PixmapMask *arg1 = (otk::PixmapMask *) 0 ;
9372     Pixmap arg2 ;
9373     Pixmap *argp2 ;
9374     PyObject * obj0  = 0 ;
9375     PyObject * obj1  = 0 ;
9376     
9377     if(!PyArg_ParseTuple(args,(char *)"OO:PixmapMask_mask_set",&obj0,&obj1)) goto fail;
9378     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9379     if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Pixmap,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
9380     arg2 = *argp2; 
9381     if (arg1) (arg1)->mask = arg2;
9382     
9383     Py_INCREF(Py_None); resultobj = Py_None;
9384     return resultobj;
9385     fail:
9386     return NULL;
9387 }
9388
9389
9390 static PyObject *_wrap_PixmapMask_mask_get(PyObject *self, PyObject *args) {
9391     PyObject *resultobj;
9392     otk::PixmapMask *arg1 = (otk::PixmapMask *) 0 ;
9393     Pixmap result;
9394     PyObject * obj0  = 0 ;
9395     
9396     if(!PyArg_ParseTuple(args,(char *)"O:PixmapMask_mask_get",&obj0)) goto fail;
9397     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9398     result =  ((arg1)->mask);
9399     
9400     {
9401         Pixmap * resultptr;
9402         resultptr = new Pixmap((Pixmap &) result);
9403         resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Pixmap, 1);
9404     }
9405     return resultobj;
9406     fail:
9407     return NULL;
9408 }
9409
9410
9411 static PyObject *_wrap_PixmapMask_w_set(PyObject *self, PyObject *args) {
9412     PyObject *resultobj;
9413     otk::PixmapMask *arg1 = (otk::PixmapMask *) 0 ;
9414     unsigned int arg2 ;
9415     PyObject * obj0  = 0 ;
9416     PyObject * obj1  = 0 ;
9417     
9418     if(!PyArg_ParseTuple(args,(char *)"OO:PixmapMask_w_set",&obj0,&obj1)) goto fail;
9419     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9420     arg2 = (unsigned int) PyInt_AsLong(obj1);
9421     if (PyErr_Occurred()) SWIG_fail;
9422     if (arg1) (arg1)->w = arg2;
9423     
9424     Py_INCREF(Py_None); resultobj = Py_None;
9425     return resultobj;
9426     fail:
9427     return NULL;
9428 }
9429
9430
9431 static PyObject *_wrap_PixmapMask_w_get(PyObject *self, PyObject *args) {
9432     PyObject *resultobj;
9433     otk::PixmapMask *arg1 = (otk::PixmapMask *) 0 ;
9434     unsigned int result;
9435     PyObject * obj0  = 0 ;
9436     
9437     if(!PyArg_ParseTuple(args,(char *)"O:PixmapMask_w_get",&obj0)) goto fail;
9438     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9439     result = (unsigned int) ((arg1)->w);
9440     
9441     resultobj = PyInt_FromLong((long)result);
9442     return resultobj;
9443     fail:
9444     return NULL;
9445 }
9446
9447
9448 static PyObject *_wrap_PixmapMask_h_set(PyObject *self, PyObject *args) {
9449     PyObject *resultobj;
9450     otk::PixmapMask *arg1 = (otk::PixmapMask *) 0 ;
9451     unsigned int arg2 ;
9452     PyObject * obj0  = 0 ;
9453     PyObject * obj1  = 0 ;
9454     
9455     if(!PyArg_ParseTuple(args,(char *)"OO:PixmapMask_h_set",&obj0,&obj1)) goto fail;
9456     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9457     arg2 = (unsigned int) PyInt_AsLong(obj1);
9458     if (PyErr_Occurred()) SWIG_fail;
9459     if (arg1) (arg1)->h = arg2;
9460     
9461     Py_INCREF(Py_None); resultobj = Py_None;
9462     return resultobj;
9463     fail:
9464     return NULL;
9465 }
9466
9467
9468 static PyObject *_wrap_PixmapMask_h_get(PyObject *self, PyObject *args) {
9469     PyObject *resultobj;
9470     otk::PixmapMask *arg1 = (otk::PixmapMask *) 0 ;
9471     unsigned int result;
9472     PyObject * obj0  = 0 ;
9473     
9474     if(!PyArg_ParseTuple(args,(char *)"O:PixmapMask_h_get",&obj0)) goto fail;
9475     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9476     result = (unsigned int) ((arg1)->h);
9477     
9478     resultobj = PyInt_FromLong((long)result);
9479     return resultobj;
9480     fail:
9481     return NULL;
9482 }
9483
9484
9485 static PyObject *_wrap_new_PixmapMask(PyObject *self, PyObject *args) {
9486     PyObject *resultobj;
9487     otk::PixmapMask *result;
9488     
9489     if(!PyArg_ParseTuple(args,(char *)":new_PixmapMask")) goto fail;
9490     result = (otk::PixmapMask *)new otk::PixmapMask();
9491     
9492     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 1);
9493     return resultobj;
9494     fail:
9495     return NULL;
9496 }
9497
9498
9499 static PyObject *_wrap_delete_PixmapMask(PyObject *self, PyObject *args) {
9500     PyObject *resultobj;
9501     otk::PixmapMask *arg1 = (otk::PixmapMask *) 0 ;
9502     PyObject * obj0  = 0 ;
9503     
9504     if(!PyArg_ParseTuple(args,(char *)"O:delete_PixmapMask",&obj0)) goto fail;
9505     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9506     delete arg1;
9507     
9508     Py_INCREF(Py_None); resultobj = Py_None;
9509     return resultobj;
9510     fail:
9511     return NULL;
9512 }
9513
9514
9515 static PyObject * PixmapMask_swigregister(PyObject *self, PyObject *args) {
9516     PyObject *obj;
9517     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
9518     SWIG_TypeClientData(SWIGTYPE_p_otk__PixmapMask, obj);
9519     Py_INCREF(obj);
9520     return Py_BuildValue((char *)"");
9521 }
9522 static PyObject *_wrap_Style_image_control_set(PyObject *self, PyObject *args) {
9523     PyObject *resultobj;
9524     otk::Style *arg1 = (otk::Style *) 0 ;
9525     otk::BImageControl *arg2 = (otk::BImageControl *) 0 ;
9526     PyObject * obj0  = 0 ;
9527     PyObject * obj1  = 0 ;
9528     
9529     if(!PyArg_ParseTuple(args,(char *)"OO:Style_image_control_set",&obj0,&obj1)) goto fail;
9530     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9531     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | SWIG_POINTER_DISOWN )) == -1) SWIG_fail;
9532     if (arg1) (arg1)->image_control = arg2;
9533     
9534     Py_INCREF(Py_None); resultobj = Py_None;
9535     return resultobj;
9536     fail:
9537     return NULL;
9538 }
9539
9540
9541 static PyObject *_wrap_Style_image_control_get(PyObject *self, PyObject *args) {
9542     PyObject *resultobj;
9543     otk::Style *arg1 = (otk::Style *) 0 ;
9544     otk::BImageControl *result;
9545     PyObject * obj0  = 0 ;
9546     
9547     if(!PyArg_ParseTuple(args,(char *)"O:Style_image_control_get",&obj0)) goto fail;
9548     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9549     result = (otk::BImageControl *) ((arg1)->image_control);
9550     
9551     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BImageControl, 0);
9552     return resultobj;
9553     fail:
9554     return NULL;
9555 }
9556
9557
9558 static PyObject *_wrap_Style_l_text_focus_set(PyObject *self, PyObject *args) {
9559     PyObject *resultobj;
9560     otk::Style *arg1 = (otk::Style *) 0 ;
9561     otk::BColor *arg2 = (otk::BColor *) 0 ;
9562     PyObject * obj0  = 0 ;
9563     PyObject * obj1  = 0 ;
9564     
9565     if(!PyArg_ParseTuple(args,(char *)"OO:Style_l_text_focus_set",&obj0,&obj1)) goto fail;
9566     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9567     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9568     if (arg1) (arg1)->l_text_focus = *arg2;
9569     
9570     Py_INCREF(Py_None); resultobj = Py_None;
9571     return resultobj;
9572     fail:
9573     return NULL;
9574 }
9575
9576
9577 static PyObject *_wrap_Style_l_text_focus_get(PyObject *self, PyObject *args) {
9578     PyObject *resultobj;
9579     otk::Style *arg1 = (otk::Style *) 0 ;
9580     otk::BColor *result;
9581     PyObject * obj0  = 0 ;
9582     
9583     if(!PyArg_ParseTuple(args,(char *)"O:Style_l_text_focus_get",&obj0)) goto fail;
9584     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9585     result = (otk::BColor *)& ((arg1)->l_text_focus);
9586     
9587     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
9588     return resultobj;
9589     fail:
9590     return NULL;
9591 }
9592
9593
9594 static PyObject *_wrap_Style_l_text_unfocus_set(PyObject *self, PyObject *args) {
9595     PyObject *resultobj;
9596     otk::Style *arg1 = (otk::Style *) 0 ;
9597     otk::BColor *arg2 = (otk::BColor *) 0 ;
9598     PyObject * obj0  = 0 ;
9599     PyObject * obj1  = 0 ;
9600     
9601     if(!PyArg_ParseTuple(args,(char *)"OO:Style_l_text_unfocus_set",&obj0,&obj1)) goto fail;
9602     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9603     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9604     if (arg1) (arg1)->l_text_unfocus = *arg2;
9605     
9606     Py_INCREF(Py_None); resultobj = Py_None;
9607     return resultobj;
9608     fail:
9609     return NULL;
9610 }
9611
9612
9613 static PyObject *_wrap_Style_l_text_unfocus_get(PyObject *self, PyObject *args) {
9614     PyObject *resultobj;
9615     otk::Style *arg1 = (otk::Style *) 0 ;
9616     otk::BColor *result;
9617     PyObject * obj0  = 0 ;
9618     
9619     if(!PyArg_ParseTuple(args,(char *)"O:Style_l_text_unfocus_get",&obj0)) goto fail;
9620     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9621     result = (otk::BColor *)& ((arg1)->l_text_unfocus);
9622     
9623     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
9624     return resultobj;
9625     fail:
9626     return NULL;
9627 }
9628
9629
9630 static PyObject *_wrap_Style_b_pic_focus_set(PyObject *self, PyObject *args) {
9631     PyObject *resultobj;
9632     otk::Style *arg1 = (otk::Style *) 0 ;
9633     otk::BColor *arg2 = (otk::BColor *) 0 ;
9634     PyObject * obj0  = 0 ;
9635     PyObject * obj1  = 0 ;
9636     
9637     if(!PyArg_ParseTuple(args,(char *)"OO:Style_b_pic_focus_set",&obj0,&obj1)) goto fail;
9638     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9639     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9640     if (arg1) (arg1)->b_pic_focus = *arg2;
9641     
9642     Py_INCREF(Py_None); resultobj = Py_None;
9643     return resultobj;
9644     fail:
9645     return NULL;
9646 }
9647
9648
9649 static PyObject *_wrap_Style_b_pic_focus_get(PyObject *self, PyObject *args) {
9650     PyObject *resultobj;
9651     otk::Style *arg1 = (otk::Style *) 0 ;
9652     otk::BColor *result;
9653     PyObject * obj0  = 0 ;
9654     
9655     if(!PyArg_ParseTuple(args,(char *)"O:Style_b_pic_focus_get",&obj0)) goto fail;
9656     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9657     result = (otk::BColor *)& ((arg1)->b_pic_focus);
9658     
9659     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
9660     return resultobj;
9661     fail:
9662     return NULL;
9663 }
9664
9665
9666 static PyObject *_wrap_Style_b_pic_unfocus_set(PyObject *self, PyObject *args) {
9667     PyObject *resultobj;
9668     otk::Style *arg1 = (otk::Style *) 0 ;
9669     otk::BColor *arg2 = (otk::BColor *) 0 ;
9670     PyObject * obj0  = 0 ;
9671     PyObject * obj1  = 0 ;
9672     
9673     if(!PyArg_ParseTuple(args,(char *)"OO:Style_b_pic_unfocus_set",&obj0,&obj1)) goto fail;
9674     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9675     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9676     if (arg1) (arg1)->b_pic_unfocus = *arg2;
9677     
9678     Py_INCREF(Py_None); resultobj = Py_None;
9679     return resultobj;
9680     fail:
9681     return NULL;
9682 }
9683
9684
9685 static PyObject *_wrap_Style_b_pic_unfocus_get(PyObject *self, PyObject *args) {
9686     PyObject *resultobj;
9687     otk::Style *arg1 = (otk::Style *) 0 ;
9688     otk::BColor *result;
9689     PyObject * obj0  = 0 ;
9690     
9691     if(!PyArg_ParseTuple(args,(char *)"O:Style_b_pic_unfocus_get",&obj0)) goto fail;
9692     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9693     result = (otk::BColor *)& ((arg1)->b_pic_unfocus);
9694     
9695     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
9696     return resultobj;
9697     fail:
9698     return NULL;
9699 }
9700
9701
9702 static PyObject *_wrap_Style_border_color_set(PyObject *self, PyObject *args) {
9703     PyObject *resultobj;
9704     otk::Style *arg1 = (otk::Style *) 0 ;
9705     otk::BColor *arg2 = (otk::BColor *) 0 ;
9706     PyObject * obj0  = 0 ;
9707     PyObject * obj1  = 0 ;
9708     
9709     if(!PyArg_ParseTuple(args,(char *)"OO:Style_border_color_set",&obj0,&obj1)) goto fail;
9710     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9711     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9712     if (arg1) (arg1)->border_color = *arg2;
9713     
9714     Py_INCREF(Py_None); resultobj = Py_None;
9715     return resultobj;
9716     fail:
9717     return NULL;
9718 }
9719
9720
9721 static PyObject *_wrap_Style_border_color_get(PyObject *self, PyObject *args) {
9722     PyObject *resultobj;
9723     otk::Style *arg1 = (otk::Style *) 0 ;
9724     otk::BColor *result;
9725     PyObject * obj0  = 0 ;
9726     
9727     if(!PyArg_ParseTuple(args,(char *)"O:Style_border_color_get",&obj0)) goto fail;
9728     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9729     result = (otk::BColor *)& ((arg1)->border_color);
9730     
9731     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
9732     return resultobj;
9733     fail:
9734     return NULL;
9735 }
9736
9737
9738 static PyObject *_wrap_Style_font_set(PyObject *self, PyObject *args) {
9739     PyObject *resultobj;
9740     otk::Style *arg1 = (otk::Style *) 0 ;
9741     otk::BFont *arg2 = (otk::BFont *) 0 ;
9742     PyObject * obj0  = 0 ;
9743     PyObject * obj1  = 0 ;
9744     
9745     if(!PyArg_ParseTuple(args,(char *)"OO:Style_font_set",&obj0,&obj1)) goto fail;
9746     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9747     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BFont,SWIG_POINTER_EXCEPTION | SWIG_POINTER_DISOWN )) == -1) SWIG_fail;
9748     if (arg1) (arg1)->font = arg2;
9749     
9750     Py_INCREF(Py_None); resultobj = Py_None;
9751     return resultobj;
9752     fail:
9753     return NULL;
9754 }
9755
9756
9757 static PyObject *_wrap_Style_font_get(PyObject *self, PyObject *args) {
9758     PyObject *resultobj;
9759     otk::Style *arg1 = (otk::Style *) 0 ;
9760     otk::BFont *result;
9761     PyObject * obj0  = 0 ;
9762     
9763     if(!PyArg_ParseTuple(args,(char *)"O:Style_font_get",&obj0)) goto fail;
9764     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9765     result = (otk::BFont *) ((arg1)->font);
9766     
9767     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BFont, 0);
9768     return resultobj;
9769     fail:
9770     return NULL;
9771 }
9772
9773
9774 static PyObject *_wrap_Style_f_focus_set(PyObject *self, PyObject *args) {
9775     PyObject *resultobj;
9776     otk::Style *arg1 = (otk::Style *) 0 ;
9777     otk::BTexture *arg2 = (otk::BTexture *) 0 ;
9778     PyObject * obj0  = 0 ;
9779     PyObject * obj1  = 0 ;
9780     
9781     if(!PyArg_ParseTuple(args,(char *)"OO:Style_f_focus_set",&obj0,&obj1)) goto fail;
9782     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9783     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9784     if (arg1) (arg1)->f_focus = *arg2;
9785     
9786     Py_INCREF(Py_None); resultobj = Py_None;
9787     return resultobj;
9788     fail:
9789     return NULL;
9790 }
9791
9792
9793 static PyObject *_wrap_Style_f_focus_get(PyObject *self, PyObject *args) {
9794     PyObject *resultobj;
9795     otk::Style *arg1 = (otk::Style *) 0 ;
9796     otk::BTexture *result;
9797     PyObject * obj0  = 0 ;
9798     
9799     if(!PyArg_ParseTuple(args,(char *)"O:Style_f_focus_get",&obj0)) goto fail;
9800     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9801     result = (otk::BTexture *)& ((arg1)->f_focus);
9802     
9803     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
9804     return resultobj;
9805     fail:
9806     return NULL;
9807 }
9808
9809
9810 static PyObject *_wrap_Style_f_unfocus_set(PyObject *self, PyObject *args) {
9811     PyObject *resultobj;
9812     otk::Style *arg1 = (otk::Style *) 0 ;
9813     otk::BTexture *arg2 = (otk::BTexture *) 0 ;
9814     PyObject * obj0  = 0 ;
9815     PyObject * obj1  = 0 ;
9816     
9817     if(!PyArg_ParseTuple(args,(char *)"OO:Style_f_unfocus_set",&obj0,&obj1)) goto fail;
9818     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9819     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9820     if (arg1) (arg1)->f_unfocus = *arg2;
9821     
9822     Py_INCREF(Py_None); resultobj = Py_None;
9823     return resultobj;
9824     fail:
9825     return NULL;
9826 }
9827
9828
9829 static PyObject *_wrap_Style_f_unfocus_get(PyObject *self, PyObject *args) {
9830     PyObject *resultobj;
9831     otk::Style *arg1 = (otk::Style *) 0 ;
9832     otk::BTexture *result;
9833     PyObject * obj0  = 0 ;
9834     
9835     if(!PyArg_ParseTuple(args,(char *)"O:Style_f_unfocus_get",&obj0)) goto fail;
9836     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9837     result = (otk::BTexture *)& ((arg1)->f_unfocus);
9838     
9839     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
9840     return resultobj;
9841     fail:
9842     return NULL;
9843 }
9844
9845
9846 static PyObject *_wrap_Style_t_focus_set(PyObject *self, PyObject *args) {
9847     PyObject *resultobj;
9848     otk::Style *arg1 = (otk::Style *) 0 ;
9849     otk::BTexture *arg2 = (otk::BTexture *) 0 ;
9850     PyObject * obj0  = 0 ;
9851     PyObject * obj1  = 0 ;
9852     
9853     if(!PyArg_ParseTuple(args,(char *)"OO:Style_t_focus_set",&obj0,&obj1)) goto fail;
9854     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9855     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9856     if (arg1) (arg1)->t_focus = *arg2;
9857     
9858     Py_INCREF(Py_None); resultobj = Py_None;
9859     return resultobj;
9860     fail:
9861     return NULL;
9862 }
9863
9864
9865 static PyObject *_wrap_Style_t_focus_get(PyObject *self, PyObject *args) {
9866     PyObject *resultobj;
9867     otk::Style *arg1 = (otk::Style *) 0 ;
9868     otk::BTexture *result;
9869     PyObject * obj0  = 0 ;
9870     
9871     if(!PyArg_ParseTuple(args,(char *)"O:Style_t_focus_get",&obj0)) goto fail;
9872     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9873     result = (otk::BTexture *)& ((arg1)->t_focus);
9874     
9875     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
9876     return resultobj;
9877     fail:
9878     return NULL;
9879 }
9880
9881
9882 static PyObject *_wrap_Style_t_unfocus_set(PyObject *self, PyObject *args) {
9883     PyObject *resultobj;
9884     otk::Style *arg1 = (otk::Style *) 0 ;
9885     otk::BTexture *arg2 = (otk::BTexture *) 0 ;
9886     PyObject * obj0  = 0 ;
9887     PyObject * obj1  = 0 ;
9888     
9889     if(!PyArg_ParseTuple(args,(char *)"OO:Style_t_unfocus_set",&obj0,&obj1)) goto fail;
9890     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9891     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9892     if (arg1) (arg1)->t_unfocus = *arg2;
9893     
9894     Py_INCREF(Py_None); resultobj = Py_None;
9895     return resultobj;
9896     fail:
9897     return NULL;
9898 }
9899
9900
9901 static PyObject *_wrap_Style_t_unfocus_get(PyObject *self, PyObject *args) {
9902     PyObject *resultobj;
9903     otk::Style *arg1 = (otk::Style *) 0 ;
9904     otk::BTexture *result;
9905     PyObject * obj0  = 0 ;
9906     
9907     if(!PyArg_ParseTuple(args,(char *)"O:Style_t_unfocus_get",&obj0)) goto fail;
9908     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9909     result = (otk::BTexture *)& ((arg1)->t_unfocus);
9910     
9911     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
9912     return resultobj;
9913     fail:
9914     return NULL;
9915 }
9916
9917
9918 static PyObject *_wrap_Style_l_focus_set(PyObject *self, PyObject *args) {
9919     PyObject *resultobj;
9920     otk::Style *arg1 = (otk::Style *) 0 ;
9921     otk::BTexture *arg2 = (otk::BTexture *) 0 ;
9922     PyObject * obj0  = 0 ;
9923     PyObject * obj1  = 0 ;
9924     
9925     if(!PyArg_ParseTuple(args,(char *)"OO:Style_l_focus_set",&obj0,&obj1)) goto fail;
9926     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9927     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9928     if (arg1) (arg1)->l_focus = *arg2;
9929     
9930     Py_INCREF(Py_None); resultobj = Py_None;
9931     return resultobj;
9932     fail:
9933     return NULL;
9934 }
9935
9936
9937 static PyObject *_wrap_Style_l_focus_get(PyObject *self, PyObject *args) {
9938     PyObject *resultobj;
9939     otk::Style *arg1 = (otk::Style *) 0 ;
9940     otk::BTexture *result;
9941     PyObject * obj0  = 0 ;
9942     
9943     if(!PyArg_ParseTuple(args,(char *)"O:Style_l_focus_get",&obj0)) goto fail;
9944     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9945     result = (otk::BTexture *)& ((arg1)->l_focus);
9946     
9947     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
9948     return resultobj;
9949     fail:
9950     return NULL;
9951 }
9952
9953
9954 static PyObject *_wrap_Style_l_unfocus_set(PyObject *self, PyObject *args) {
9955     PyObject *resultobj;
9956     otk::Style *arg1 = (otk::Style *) 0 ;
9957     otk::BTexture *arg2 = (otk::BTexture *) 0 ;
9958     PyObject * obj0  = 0 ;
9959     PyObject * obj1  = 0 ;
9960     
9961     if(!PyArg_ParseTuple(args,(char *)"OO:Style_l_unfocus_set",&obj0,&obj1)) goto fail;
9962     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9963     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9964     if (arg1) (arg1)->l_unfocus = *arg2;
9965     
9966     Py_INCREF(Py_None); resultobj = Py_None;
9967     return resultobj;
9968     fail:
9969     return NULL;
9970 }
9971
9972
9973 static PyObject *_wrap_Style_l_unfocus_get(PyObject *self, PyObject *args) {
9974     PyObject *resultobj;
9975     otk::Style *arg1 = (otk::Style *) 0 ;
9976     otk::BTexture *result;
9977     PyObject * obj0  = 0 ;
9978     
9979     if(!PyArg_ParseTuple(args,(char *)"O:Style_l_unfocus_get",&obj0)) goto fail;
9980     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9981     result = (otk::BTexture *)& ((arg1)->l_unfocus);
9982     
9983     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
9984     return resultobj;
9985     fail:
9986     return NULL;
9987 }
9988
9989
9990 static PyObject *_wrap_Style_h_focus_set(PyObject *self, PyObject *args) {
9991     PyObject *resultobj;
9992     otk::Style *arg1 = (otk::Style *) 0 ;
9993     otk::BTexture *arg2 = (otk::BTexture *) 0 ;
9994     PyObject * obj0  = 0 ;
9995     PyObject * obj1  = 0 ;
9996     
9997     if(!PyArg_ParseTuple(args,(char *)"OO:Style_h_focus_set",&obj0,&obj1)) goto fail;
9998     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
9999     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10000     if (arg1) (arg1)->h_focus = *arg2;
10001     
10002     Py_INCREF(Py_None); resultobj = Py_None;
10003     return resultobj;
10004     fail:
10005     return NULL;
10006 }
10007
10008
10009 static PyObject *_wrap_Style_h_focus_get(PyObject *self, PyObject *args) {
10010     PyObject *resultobj;
10011     otk::Style *arg1 = (otk::Style *) 0 ;
10012     otk::BTexture *result;
10013     PyObject * obj0  = 0 ;
10014     
10015     if(!PyArg_ParseTuple(args,(char *)"O:Style_h_focus_get",&obj0)) goto fail;
10016     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10017     result = (otk::BTexture *)& ((arg1)->h_focus);
10018     
10019     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10020     return resultobj;
10021     fail:
10022     return NULL;
10023 }
10024
10025
10026 static PyObject *_wrap_Style_h_unfocus_set(PyObject *self, PyObject *args) {
10027     PyObject *resultobj;
10028     otk::Style *arg1 = (otk::Style *) 0 ;
10029     otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10030     PyObject * obj0  = 0 ;
10031     PyObject * obj1  = 0 ;
10032     
10033     if(!PyArg_ParseTuple(args,(char *)"OO:Style_h_unfocus_set",&obj0,&obj1)) goto fail;
10034     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10035     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10036     if (arg1) (arg1)->h_unfocus = *arg2;
10037     
10038     Py_INCREF(Py_None); resultobj = Py_None;
10039     return resultobj;
10040     fail:
10041     return NULL;
10042 }
10043
10044
10045 static PyObject *_wrap_Style_h_unfocus_get(PyObject *self, PyObject *args) {
10046     PyObject *resultobj;
10047     otk::Style *arg1 = (otk::Style *) 0 ;
10048     otk::BTexture *result;
10049     PyObject * obj0  = 0 ;
10050     
10051     if(!PyArg_ParseTuple(args,(char *)"O:Style_h_unfocus_get",&obj0)) goto fail;
10052     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10053     result = (otk::BTexture *)& ((arg1)->h_unfocus);
10054     
10055     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10056     return resultobj;
10057     fail:
10058     return NULL;
10059 }
10060
10061
10062 static PyObject *_wrap_Style_b_focus_set(PyObject *self, PyObject *args) {
10063     PyObject *resultobj;
10064     otk::Style *arg1 = (otk::Style *) 0 ;
10065     otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10066     PyObject * obj0  = 0 ;
10067     PyObject * obj1  = 0 ;
10068     
10069     if(!PyArg_ParseTuple(args,(char *)"OO:Style_b_focus_set",&obj0,&obj1)) goto fail;
10070     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10071     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10072     if (arg1) (arg1)->b_focus = *arg2;
10073     
10074     Py_INCREF(Py_None); resultobj = Py_None;
10075     return resultobj;
10076     fail:
10077     return NULL;
10078 }
10079
10080
10081 static PyObject *_wrap_Style_b_focus_get(PyObject *self, PyObject *args) {
10082     PyObject *resultobj;
10083     otk::Style *arg1 = (otk::Style *) 0 ;
10084     otk::BTexture *result;
10085     PyObject * obj0  = 0 ;
10086     
10087     if(!PyArg_ParseTuple(args,(char *)"O:Style_b_focus_get",&obj0)) goto fail;
10088     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10089     result = (otk::BTexture *)& ((arg1)->b_focus);
10090     
10091     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10092     return resultobj;
10093     fail:
10094     return NULL;
10095 }
10096
10097
10098 static PyObject *_wrap_Style_b_unfocus_set(PyObject *self, PyObject *args) {
10099     PyObject *resultobj;
10100     otk::Style *arg1 = (otk::Style *) 0 ;
10101     otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10102     PyObject * obj0  = 0 ;
10103     PyObject * obj1  = 0 ;
10104     
10105     if(!PyArg_ParseTuple(args,(char *)"OO:Style_b_unfocus_set",&obj0,&obj1)) goto fail;
10106     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10107     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10108     if (arg1) (arg1)->b_unfocus = *arg2;
10109     
10110     Py_INCREF(Py_None); resultobj = Py_None;
10111     return resultobj;
10112     fail:
10113     return NULL;
10114 }
10115
10116
10117 static PyObject *_wrap_Style_b_unfocus_get(PyObject *self, PyObject *args) {
10118     PyObject *resultobj;
10119     otk::Style *arg1 = (otk::Style *) 0 ;
10120     otk::BTexture *result;
10121     PyObject * obj0  = 0 ;
10122     
10123     if(!PyArg_ParseTuple(args,(char *)"O:Style_b_unfocus_get",&obj0)) goto fail;
10124     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10125     result = (otk::BTexture *)& ((arg1)->b_unfocus);
10126     
10127     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10128     return resultobj;
10129     fail:
10130     return NULL;
10131 }
10132
10133
10134 static PyObject *_wrap_Style_b_pressed_focus_set(PyObject *self, PyObject *args) {
10135     PyObject *resultobj;
10136     otk::Style *arg1 = (otk::Style *) 0 ;
10137     otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10138     PyObject * obj0  = 0 ;
10139     PyObject * obj1  = 0 ;
10140     
10141     if(!PyArg_ParseTuple(args,(char *)"OO:Style_b_pressed_focus_set",&obj0,&obj1)) goto fail;
10142     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10143     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10144     if (arg1) (arg1)->b_pressed_focus = *arg2;
10145     
10146     Py_INCREF(Py_None); resultobj = Py_None;
10147     return resultobj;
10148     fail:
10149     return NULL;
10150 }
10151
10152
10153 static PyObject *_wrap_Style_b_pressed_focus_get(PyObject *self, PyObject *args) {
10154     PyObject *resultobj;
10155     otk::Style *arg1 = (otk::Style *) 0 ;
10156     otk::BTexture *result;
10157     PyObject * obj0  = 0 ;
10158     
10159     if(!PyArg_ParseTuple(args,(char *)"O:Style_b_pressed_focus_get",&obj0)) goto fail;
10160     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10161     result = (otk::BTexture *)& ((arg1)->b_pressed_focus);
10162     
10163     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10164     return resultobj;
10165     fail:
10166     return NULL;
10167 }
10168
10169
10170 static PyObject *_wrap_Style_b_pressed_unfocus_set(PyObject *self, PyObject *args) {
10171     PyObject *resultobj;
10172     otk::Style *arg1 = (otk::Style *) 0 ;
10173     otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10174     PyObject * obj0  = 0 ;
10175     PyObject * obj1  = 0 ;
10176     
10177     if(!PyArg_ParseTuple(args,(char *)"OO:Style_b_pressed_unfocus_set",&obj0,&obj1)) goto fail;
10178     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10179     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10180     if (arg1) (arg1)->b_pressed_unfocus = *arg2;
10181     
10182     Py_INCREF(Py_None); resultobj = Py_None;
10183     return resultobj;
10184     fail:
10185     return NULL;
10186 }
10187
10188
10189 static PyObject *_wrap_Style_b_pressed_unfocus_get(PyObject *self, PyObject *args) {
10190     PyObject *resultobj;
10191     otk::Style *arg1 = (otk::Style *) 0 ;
10192     otk::BTexture *result;
10193     PyObject * obj0  = 0 ;
10194     
10195     if(!PyArg_ParseTuple(args,(char *)"O:Style_b_pressed_unfocus_get",&obj0)) goto fail;
10196     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10197     result = (otk::BTexture *)& ((arg1)->b_pressed_unfocus);
10198     
10199     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10200     return resultobj;
10201     fail:
10202     return NULL;
10203 }
10204
10205
10206 static PyObject *_wrap_Style_g_focus_set(PyObject *self, PyObject *args) {
10207     PyObject *resultobj;
10208     otk::Style *arg1 = (otk::Style *) 0 ;
10209     otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10210     PyObject * obj0  = 0 ;
10211     PyObject * obj1  = 0 ;
10212     
10213     if(!PyArg_ParseTuple(args,(char *)"OO:Style_g_focus_set",&obj0,&obj1)) goto fail;
10214     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10215     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10216     if (arg1) (arg1)->g_focus = *arg2;
10217     
10218     Py_INCREF(Py_None); resultobj = Py_None;
10219     return resultobj;
10220     fail:
10221     return NULL;
10222 }
10223
10224
10225 static PyObject *_wrap_Style_g_focus_get(PyObject *self, PyObject *args) {
10226     PyObject *resultobj;
10227     otk::Style *arg1 = (otk::Style *) 0 ;
10228     otk::BTexture *result;
10229     PyObject * obj0  = 0 ;
10230     
10231     if(!PyArg_ParseTuple(args,(char *)"O:Style_g_focus_get",&obj0)) goto fail;
10232     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10233     result = (otk::BTexture *)& ((arg1)->g_focus);
10234     
10235     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10236     return resultobj;
10237     fail:
10238     return NULL;
10239 }
10240
10241
10242 static PyObject *_wrap_Style_g_unfocus_set(PyObject *self, PyObject *args) {
10243     PyObject *resultobj;
10244     otk::Style *arg1 = (otk::Style *) 0 ;
10245     otk::BTexture *arg2 = (otk::BTexture *) 0 ;
10246     PyObject * obj0  = 0 ;
10247     PyObject * obj1  = 0 ;
10248     
10249     if(!PyArg_ParseTuple(args,(char *)"OO:Style_g_unfocus_set",&obj0,&obj1)) goto fail;
10250     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10251     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10252     if (arg1) (arg1)->g_unfocus = *arg2;
10253     
10254     Py_INCREF(Py_None); resultobj = Py_None;
10255     return resultobj;
10256     fail:
10257     return NULL;
10258 }
10259
10260
10261 static PyObject *_wrap_Style_g_unfocus_get(PyObject *self, PyObject *args) {
10262     PyObject *resultobj;
10263     otk::Style *arg1 = (otk::Style *) 0 ;
10264     otk::BTexture *result;
10265     PyObject * obj0  = 0 ;
10266     
10267     if(!PyArg_ParseTuple(args,(char *)"O:Style_g_unfocus_get",&obj0)) goto fail;
10268     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10269     result = (otk::BTexture *)& ((arg1)->g_unfocus);
10270     
10271     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
10272     return resultobj;
10273     fail:
10274     return NULL;
10275 }
10276
10277
10278 static PyObject *_wrap_Style_close_button_set(PyObject *self, PyObject *args) {
10279     PyObject *resultobj;
10280     otk::Style *arg1 = (otk::Style *) 0 ;
10281     otk::PixmapMask *arg2 = (otk::PixmapMask *) 0 ;
10282     PyObject * obj0  = 0 ;
10283     PyObject * obj1  = 0 ;
10284     
10285     if(!PyArg_ParseTuple(args,(char *)"OO:Style_close_button_set",&obj0,&obj1)) goto fail;
10286     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10287     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10288     if (arg1) (arg1)->close_button = *arg2;
10289     
10290     Py_INCREF(Py_None); resultobj = Py_None;
10291     return resultobj;
10292     fail:
10293     return NULL;
10294 }
10295
10296
10297 static PyObject *_wrap_Style_close_button_get(PyObject *self, PyObject *args) {
10298     PyObject *resultobj;
10299     otk::Style *arg1 = (otk::Style *) 0 ;
10300     otk::PixmapMask *result;
10301     PyObject * obj0  = 0 ;
10302     
10303     if(!PyArg_ParseTuple(args,(char *)"O:Style_close_button_get",&obj0)) goto fail;
10304     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10305     result = (otk::PixmapMask *)& ((arg1)->close_button);
10306     
10307     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
10308     return resultobj;
10309     fail:
10310     return NULL;
10311 }
10312
10313
10314 static PyObject *_wrap_Style_max_button_set(PyObject *self, PyObject *args) {
10315     PyObject *resultobj;
10316     otk::Style *arg1 = (otk::Style *) 0 ;
10317     otk::PixmapMask *arg2 = (otk::PixmapMask *) 0 ;
10318     PyObject * obj0  = 0 ;
10319     PyObject * obj1  = 0 ;
10320     
10321     if(!PyArg_ParseTuple(args,(char *)"OO:Style_max_button_set",&obj0,&obj1)) goto fail;
10322     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10323     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10324     if (arg1) (arg1)->max_button = *arg2;
10325     
10326     Py_INCREF(Py_None); resultobj = Py_None;
10327     return resultobj;
10328     fail:
10329     return NULL;
10330 }
10331
10332
10333 static PyObject *_wrap_Style_max_button_get(PyObject *self, PyObject *args) {
10334     PyObject *resultobj;
10335     otk::Style *arg1 = (otk::Style *) 0 ;
10336     otk::PixmapMask *result;
10337     PyObject * obj0  = 0 ;
10338     
10339     if(!PyArg_ParseTuple(args,(char *)"O:Style_max_button_get",&obj0)) goto fail;
10340     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10341     result = (otk::PixmapMask *)& ((arg1)->max_button);
10342     
10343     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
10344     return resultobj;
10345     fail:
10346     return NULL;
10347 }
10348
10349
10350 static PyObject *_wrap_Style_icon_button_set(PyObject *self, PyObject *args) {
10351     PyObject *resultobj;
10352     otk::Style *arg1 = (otk::Style *) 0 ;
10353     otk::PixmapMask *arg2 = (otk::PixmapMask *) 0 ;
10354     PyObject * obj0  = 0 ;
10355     PyObject * obj1  = 0 ;
10356     
10357     if(!PyArg_ParseTuple(args,(char *)"OO:Style_icon_button_set",&obj0,&obj1)) goto fail;
10358     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10359     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10360     if (arg1) (arg1)->icon_button = *arg2;
10361     
10362     Py_INCREF(Py_None); resultobj = Py_None;
10363     return resultobj;
10364     fail:
10365     return NULL;
10366 }
10367
10368
10369 static PyObject *_wrap_Style_icon_button_get(PyObject *self, PyObject *args) {
10370     PyObject *resultobj;
10371     otk::Style *arg1 = (otk::Style *) 0 ;
10372     otk::PixmapMask *result;
10373     PyObject * obj0  = 0 ;
10374     
10375     if(!PyArg_ParseTuple(args,(char *)"O:Style_icon_button_get",&obj0)) goto fail;
10376     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10377     result = (otk::PixmapMask *)& ((arg1)->icon_button);
10378     
10379     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
10380     return resultobj;
10381     fail:
10382     return NULL;
10383 }
10384
10385
10386 static PyObject *_wrap_Style_stick_button_set(PyObject *self, PyObject *args) {
10387     PyObject *resultobj;
10388     otk::Style *arg1 = (otk::Style *) 0 ;
10389     otk::PixmapMask *arg2 = (otk::PixmapMask *) 0 ;
10390     PyObject * obj0  = 0 ;
10391     PyObject * obj1  = 0 ;
10392     
10393     if(!PyArg_ParseTuple(args,(char *)"OO:Style_stick_button_set",&obj0,&obj1)) goto fail;
10394     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10395     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10396     if (arg1) (arg1)->stick_button = *arg2;
10397     
10398     Py_INCREF(Py_None); resultobj = Py_None;
10399     return resultobj;
10400     fail:
10401     return NULL;
10402 }
10403
10404
10405 static PyObject *_wrap_Style_stick_button_get(PyObject *self, PyObject *args) {
10406     PyObject *resultobj;
10407     otk::Style *arg1 = (otk::Style *) 0 ;
10408     otk::PixmapMask *result;
10409     PyObject * obj0  = 0 ;
10410     
10411     if(!PyArg_ParseTuple(args,(char *)"O:Style_stick_button_get",&obj0)) goto fail;
10412     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10413     result = (otk::PixmapMask *)& ((arg1)->stick_button);
10414     
10415     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
10416     return resultobj;
10417     fail:
10418     return NULL;
10419 }
10420
10421
10422 static PyObject *_wrap_Style_justify_set(PyObject *self, PyObject *args) {
10423     PyObject *resultobj;
10424     otk::Style *arg1 = (otk::Style *) 0 ;
10425     int arg2 ;
10426     PyObject * obj0  = 0 ;
10427     
10428     if(!PyArg_ParseTuple(args,(char *)"Oi:Style_justify_set",&obj0,&arg2)) goto fail;
10429     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10430     if (arg1) (arg1)->justify = (otk::Style::TextJustify )arg2;
10431     
10432     Py_INCREF(Py_None); resultobj = Py_None;
10433     return resultobj;
10434     fail:
10435     return NULL;
10436 }
10437
10438
10439 static PyObject *_wrap_Style_justify_get(PyObject *self, PyObject *args) {
10440     PyObject *resultobj;
10441     otk::Style *arg1 = (otk::Style *) 0 ;
10442     int result;
10443     PyObject * obj0  = 0 ;
10444     
10445     if(!PyArg_ParseTuple(args,(char *)"O:Style_justify_get",&obj0)) goto fail;
10446     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10447     result = (int) ((arg1)->justify);
10448     
10449     resultobj = PyInt_FromLong((long)result);
10450     return resultobj;
10451     fail:
10452     return NULL;
10453 }
10454
10455
10456 static PyObject *_wrap_Style_bullet_type_set(PyObject *self, PyObject *args) {
10457     PyObject *resultobj;
10458     otk::Style *arg1 = (otk::Style *) 0 ;
10459     int arg2 ;
10460     PyObject * obj0  = 0 ;
10461     
10462     if(!PyArg_ParseTuple(args,(char *)"Oi:Style_bullet_type_set",&obj0,&arg2)) goto fail;
10463     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10464     if (arg1) (arg1)->bullet_type = (otk::Style::BulletType )arg2;
10465     
10466     Py_INCREF(Py_None); resultobj = Py_None;
10467     return resultobj;
10468     fail:
10469     return NULL;
10470 }
10471
10472
10473 static PyObject *_wrap_Style_bullet_type_get(PyObject *self, PyObject *args) {
10474     PyObject *resultobj;
10475     otk::Style *arg1 = (otk::Style *) 0 ;
10476     int result;
10477     PyObject * obj0  = 0 ;
10478     
10479     if(!PyArg_ParseTuple(args,(char *)"O:Style_bullet_type_get",&obj0)) goto fail;
10480     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10481     result = (int) ((arg1)->bullet_type);
10482     
10483     resultobj = PyInt_FromLong((long)result);
10484     return resultobj;
10485     fail:
10486     return NULL;
10487 }
10488
10489
10490 static PyObject *_wrap_Style_handle_width_set(PyObject *self, PyObject *args) {
10491     PyObject *resultobj;
10492     otk::Style *arg1 = (otk::Style *) 0 ;
10493     unsigned int arg2 ;
10494     PyObject * obj0  = 0 ;
10495     PyObject * obj1  = 0 ;
10496     
10497     if(!PyArg_ParseTuple(args,(char *)"OO:Style_handle_width_set",&obj0,&obj1)) goto fail;
10498     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10499     arg2 = (unsigned int) PyInt_AsLong(obj1);
10500     if (PyErr_Occurred()) SWIG_fail;
10501     if (arg1) (arg1)->handle_width = arg2;
10502     
10503     Py_INCREF(Py_None); resultobj = Py_None;
10504     return resultobj;
10505     fail:
10506     return NULL;
10507 }
10508
10509
10510 static PyObject *_wrap_Style_handle_width_get(PyObject *self, PyObject *args) {
10511     PyObject *resultobj;
10512     otk::Style *arg1 = (otk::Style *) 0 ;
10513     unsigned int result;
10514     PyObject * obj0  = 0 ;
10515     
10516     if(!PyArg_ParseTuple(args,(char *)"O:Style_handle_width_get",&obj0)) goto fail;
10517     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10518     result = (unsigned int) ((arg1)->handle_width);
10519     
10520     resultobj = PyInt_FromLong((long)result);
10521     return resultobj;
10522     fail:
10523     return NULL;
10524 }
10525
10526
10527 static PyObject *_wrap_Style_bevel_width_set(PyObject *self, PyObject *args) {
10528     PyObject *resultobj;
10529     otk::Style *arg1 = (otk::Style *) 0 ;
10530     unsigned int arg2 ;
10531     PyObject * obj0  = 0 ;
10532     PyObject * obj1  = 0 ;
10533     
10534     if(!PyArg_ParseTuple(args,(char *)"OO:Style_bevel_width_set",&obj0,&obj1)) goto fail;
10535     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10536     arg2 = (unsigned int) PyInt_AsLong(obj1);
10537     if (PyErr_Occurred()) SWIG_fail;
10538     if (arg1) (arg1)->bevel_width = arg2;
10539     
10540     Py_INCREF(Py_None); resultobj = Py_None;
10541     return resultobj;
10542     fail:
10543     return NULL;
10544 }
10545
10546
10547 static PyObject *_wrap_Style_bevel_width_get(PyObject *self, PyObject *args) {
10548     PyObject *resultobj;
10549     otk::Style *arg1 = (otk::Style *) 0 ;
10550     unsigned int result;
10551     PyObject * obj0  = 0 ;
10552     
10553     if(!PyArg_ParseTuple(args,(char *)"O:Style_bevel_width_get",&obj0)) goto fail;
10554     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10555     result = (unsigned int) ((arg1)->bevel_width);
10556     
10557     resultobj = PyInt_FromLong((long)result);
10558     return resultobj;
10559     fail:
10560     return NULL;
10561 }
10562
10563
10564 static PyObject *_wrap_Style_frame_width_set(PyObject *self, PyObject *args) {
10565     PyObject *resultobj;
10566     otk::Style *arg1 = (otk::Style *) 0 ;
10567     unsigned int arg2 ;
10568     PyObject * obj0  = 0 ;
10569     PyObject * obj1  = 0 ;
10570     
10571     if(!PyArg_ParseTuple(args,(char *)"OO:Style_frame_width_set",&obj0,&obj1)) goto fail;
10572     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10573     arg2 = (unsigned int) PyInt_AsLong(obj1);
10574     if (PyErr_Occurred()) SWIG_fail;
10575     if (arg1) (arg1)->frame_width = arg2;
10576     
10577     Py_INCREF(Py_None); resultobj = Py_None;
10578     return resultobj;
10579     fail:
10580     return NULL;
10581 }
10582
10583
10584 static PyObject *_wrap_Style_frame_width_get(PyObject *self, PyObject *args) {
10585     PyObject *resultobj;
10586     otk::Style *arg1 = (otk::Style *) 0 ;
10587     unsigned int result;
10588     PyObject * obj0  = 0 ;
10589     
10590     if(!PyArg_ParseTuple(args,(char *)"O:Style_frame_width_get",&obj0)) goto fail;
10591     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10592     result = (unsigned int) ((arg1)->frame_width);
10593     
10594     resultobj = PyInt_FromLong((long)result);
10595     return resultobj;
10596     fail:
10597     return NULL;
10598 }
10599
10600
10601 static PyObject *_wrap_Style_border_width_set(PyObject *self, PyObject *args) {
10602     PyObject *resultobj;
10603     otk::Style *arg1 = (otk::Style *) 0 ;
10604     unsigned int arg2 ;
10605     PyObject * obj0  = 0 ;
10606     PyObject * obj1  = 0 ;
10607     
10608     if(!PyArg_ParseTuple(args,(char *)"OO:Style_border_width_set",&obj0,&obj1)) goto fail;
10609     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10610     arg2 = (unsigned int) PyInt_AsLong(obj1);
10611     if (PyErr_Occurred()) SWIG_fail;
10612     if (arg1) (arg1)->border_width = arg2;
10613     
10614     Py_INCREF(Py_None); resultobj = Py_None;
10615     return resultobj;
10616     fail:
10617     return NULL;
10618 }
10619
10620
10621 static PyObject *_wrap_Style_border_width_get(PyObject *self, PyObject *args) {
10622     PyObject *resultobj;
10623     otk::Style *arg1 = (otk::Style *) 0 ;
10624     unsigned int result;
10625     PyObject * obj0  = 0 ;
10626     
10627     if(!PyArg_ParseTuple(args,(char *)"O:Style_border_width_get",&obj0)) goto fail;
10628     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10629     result = (unsigned int) ((arg1)->border_width);
10630     
10631     resultobj = PyInt_FromLong((long)result);
10632     return resultobj;
10633     fail:
10634     return NULL;
10635 }
10636
10637
10638 static PyObject *_wrap_Style_screen_number_set(PyObject *self, PyObject *args) {
10639     PyObject *resultobj;
10640     otk::Style *arg1 = (otk::Style *) 0 ;
10641     unsigned int arg2 ;
10642     PyObject * obj0  = 0 ;
10643     PyObject * obj1  = 0 ;
10644     
10645     if(!PyArg_ParseTuple(args,(char *)"OO:Style_screen_number_set",&obj0,&obj1)) goto fail;
10646     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10647     arg2 = (unsigned int) PyInt_AsLong(obj1);
10648     if (PyErr_Occurred()) SWIG_fail;
10649     if (arg1) (arg1)->screen_number = arg2;
10650     
10651     Py_INCREF(Py_None); resultobj = Py_None;
10652     return resultobj;
10653     fail:
10654     return NULL;
10655 }
10656
10657
10658 static PyObject *_wrap_Style_screen_number_get(PyObject *self, PyObject *args) {
10659     PyObject *resultobj;
10660     otk::Style *arg1 = (otk::Style *) 0 ;
10661     unsigned int result;
10662     PyObject * obj0  = 0 ;
10663     
10664     if(!PyArg_ParseTuple(args,(char *)"O:Style_screen_number_get",&obj0)) goto fail;
10665     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10666     result = (unsigned int) ((arg1)->screen_number);
10667     
10668     resultobj = PyInt_FromLong((long)result);
10669     return resultobj;
10670     fail:
10671     return NULL;
10672 }
10673
10674
10675 static PyObject *_wrap_Style_shadow_fonts_set(PyObject *self, PyObject *args) {
10676     PyObject *resultobj;
10677     otk::Style *arg1 = (otk::Style *) 0 ;
10678     bool arg2 ;
10679     PyObject * obj0  = 0 ;
10680     PyObject * obj1  = 0 ;
10681     
10682     if(!PyArg_ParseTuple(args,(char *)"OO:Style_shadow_fonts_set",&obj0,&obj1)) goto fail;
10683     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10684     arg2 = (bool) PyInt_AsLong(obj1);
10685     if (PyErr_Occurred()) SWIG_fail;
10686     if (arg1) (arg1)->shadow_fonts = arg2;
10687     
10688     Py_INCREF(Py_None); resultobj = Py_None;
10689     return resultobj;
10690     fail:
10691     return NULL;
10692 }
10693
10694
10695 static PyObject *_wrap_Style_shadow_fonts_get(PyObject *self, PyObject *args) {
10696     PyObject *resultobj;
10697     otk::Style *arg1 = (otk::Style *) 0 ;
10698     bool result;
10699     PyObject * obj0  = 0 ;
10700     
10701     if(!PyArg_ParseTuple(args,(char *)"O:Style_shadow_fonts_get",&obj0)) goto fail;
10702     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10703     result = (bool) ((arg1)->shadow_fonts);
10704     
10705     resultobj = PyInt_FromLong((long)result);
10706     return resultobj;
10707     fail:
10708     return NULL;
10709 }
10710
10711
10712 static PyObject *_wrap_Style_aa_fonts_set(PyObject *self, PyObject *args) {
10713     PyObject *resultobj;
10714     otk::Style *arg1 = (otk::Style *) 0 ;
10715     bool arg2 ;
10716     PyObject * obj0  = 0 ;
10717     PyObject * obj1  = 0 ;
10718     
10719     if(!PyArg_ParseTuple(args,(char *)"OO:Style_aa_fonts_set",&obj0,&obj1)) goto fail;
10720     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10721     arg2 = (bool) PyInt_AsLong(obj1);
10722     if (PyErr_Occurred()) SWIG_fail;
10723     if (arg1) (arg1)->aa_fonts = arg2;
10724     
10725     Py_INCREF(Py_None); resultobj = Py_None;
10726     return resultobj;
10727     fail:
10728     return NULL;
10729 }
10730
10731
10732 static PyObject *_wrap_Style_aa_fonts_get(PyObject *self, PyObject *args) {
10733     PyObject *resultobj;
10734     otk::Style *arg1 = (otk::Style *) 0 ;
10735     bool result;
10736     PyObject * obj0  = 0 ;
10737     
10738     if(!PyArg_ParseTuple(args,(char *)"O:Style_aa_fonts_get",&obj0)) goto fail;
10739     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10740     result = (bool) ((arg1)->aa_fonts);
10741     
10742     resultobj = PyInt_FromLong((long)result);
10743     return resultobj;
10744     fail:
10745     return NULL;
10746 }
10747
10748
10749 static PyObject *_wrap_new_Style__SWIG_0(PyObject *self, PyObject *args) {
10750     PyObject *resultobj;
10751     otk::Style *result;
10752     
10753     if(!PyArg_ParseTuple(args,(char *)":new_Style")) goto fail;
10754     result = (otk::Style *)new otk::Style();
10755     
10756     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Style, 1);
10757     return resultobj;
10758     fail:
10759     return NULL;
10760 }
10761
10762
10763 static PyObject *_wrap_new_Style__SWIG_1(PyObject *self, PyObject *args) {
10764     PyObject *resultobj;
10765     otk::BImageControl *arg1 = (otk::BImageControl *) 0 ;
10766     otk::Style *result;
10767     PyObject * obj0  = 0 ;
10768     
10769     if(!PyArg_ParseTuple(args,(char *)"O:new_Style",&obj0)) goto fail;
10770     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10771     result = (otk::Style *)new otk::Style(arg1);
10772     
10773     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__Style, 1);
10774     return resultobj;
10775     fail:
10776     return NULL;
10777 }
10778
10779
10780 static PyObject *_wrap_new_Style(PyObject *self, PyObject *args) {
10781     int argc;
10782     PyObject *argv[2];
10783     int ii;
10784     
10785     argc = PyObject_Length(args);
10786     for (ii = 0; (ii < argc) && (ii < 1); ii++) {
10787         argv[ii] = PyTuple_GetItem(args,ii);
10788     }
10789     if (argc == 0) {
10790         return _wrap_new_Style__SWIG_0(self,args);
10791     }
10792     if (argc == 1) {
10793         int _v;
10794         {
10795             void *ptr;
10796             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__BImageControl, 0) == -1) {
10797                 _v = 0;
10798                 PyErr_Clear();
10799             }else {
10800                 _v = 1;
10801             }
10802         }
10803         if (_v) {
10804             return _wrap_new_Style__SWIG_1(self,args);
10805         }
10806     }
10807     
10808     PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_Style'");
10809     return NULL;
10810 }
10811
10812
10813 static PyObject *_wrap_delete_Style(PyObject *self, PyObject *args) {
10814     PyObject *resultobj;
10815     otk::Style *arg1 = (otk::Style *) 0 ;
10816     PyObject * obj0  = 0 ;
10817     
10818     if(!PyArg_ParseTuple(args,(char *)"O:delete_Style",&obj0)) goto fail;
10819     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10820     delete arg1;
10821     
10822     Py_INCREF(Py_None); resultobj = Py_None;
10823     return resultobj;
10824     fail:
10825     return NULL;
10826 }
10827
10828
10829 static PyObject *_wrap_Style_readDatabaseMask(PyObject *self, PyObject *args) {
10830     PyObject *resultobj;
10831     otk::Style *arg1 = (otk::Style *) 0 ;
10832     std::string *arg2 = 0 ;
10833     otk::PixmapMask *arg3 = 0 ;
10834     otk::Configuration *arg4 = 0 ;
10835     std::string temp2 ;
10836     PyObject * obj0  = 0 ;
10837     PyObject * obj1  = 0 ;
10838     PyObject * obj2  = 0 ;
10839     PyObject * obj3  = 0 ;
10840     
10841     if(!PyArg_ParseTuple(args,(char *)"OOOO:Style_readDatabaseMask",&obj0,&obj1,&obj2,&obj3)) goto fail;
10842     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10843     {
10844         if (PyString_Check(obj1)) {
10845             temp2 = std::string(PyString_AsString(obj1));
10846             arg2 = &temp2;
10847         }else {
10848             SWIG_exception(SWIG_TypeError, "string expected");
10849         }
10850     }
10851     if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_otk__PixmapMask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10852     if (arg3 == NULL) {
10853         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
10854     }
10855     if ((SWIG_ConvertPtr(obj3,(void **) &arg4, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10856     if (arg4 == NULL) {
10857         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
10858     }
10859     (arg1)->readDatabaseMask((std::string const &)*arg2,*arg3,(otk::Configuration const &)*arg4);
10860     
10861     Py_INCREF(Py_None); resultobj = Py_None;
10862     return resultobj;
10863     fail:
10864     return NULL;
10865 }
10866
10867
10868 static PyObject *_wrap_Style_readDatabaseTexture(PyObject *self, PyObject *args) {
10869     PyObject *resultobj;
10870     otk::Style *arg1 = (otk::Style *) 0 ;
10871     std::string *arg2 = 0 ;
10872     std::string *arg3 = 0 ;
10873     otk::Configuration *arg4 = 0 ;
10874     bool arg5 = (bool) false ;
10875     otk::BTexture result;
10876     std::string temp2 ;
10877     std::string temp3 ;
10878     PyObject * obj0  = 0 ;
10879     PyObject * obj1  = 0 ;
10880     PyObject * obj2  = 0 ;
10881     PyObject * obj3  = 0 ;
10882     PyObject * obj4  = 0 ;
10883     
10884     if(!PyArg_ParseTuple(args,(char *)"OOOO|O:Style_readDatabaseTexture",&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
10885     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10886     {
10887         if (PyString_Check(obj1)) {
10888             temp2 = std::string(PyString_AsString(obj1));
10889             arg2 = &temp2;
10890         }else {
10891             SWIG_exception(SWIG_TypeError, "string expected");
10892         }
10893     }
10894     {
10895         if (PyString_Check(obj2)) {
10896             temp3 = std::string(PyString_AsString(obj2));
10897             arg3 = &temp3;
10898         }else {
10899             SWIG_exception(SWIG_TypeError, "string expected");
10900         }
10901     }
10902     if ((SWIG_ConvertPtr(obj3,(void **) &arg4, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10903     if (arg4 == NULL) {
10904         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
10905     }
10906     if (obj4) {
10907         arg5 = (bool) PyInt_AsLong(obj4);
10908         if (PyErr_Occurred()) SWIG_fail;
10909     }
10910     result = (arg1)->readDatabaseTexture((std::string const &)*arg2,(std::string const &)*arg3,(otk::Configuration const &)*arg4,arg5);
10911     
10912     {
10913         otk::BTexture * resultptr;
10914         resultptr = new otk::BTexture((otk::BTexture &) result);
10915         resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_otk__BTexture, 1);
10916     }
10917     return resultobj;
10918     fail:
10919     return NULL;
10920 }
10921
10922
10923 static PyObject *_wrap_Style_readDatabaseColor(PyObject *self, PyObject *args) {
10924     PyObject *resultobj;
10925     otk::Style *arg1 = (otk::Style *) 0 ;
10926     std::string *arg2 = 0 ;
10927     std::string *arg3 = 0 ;
10928     otk::Configuration *arg4 = 0 ;
10929     otk::BColor result;
10930     std::string temp2 ;
10931     std::string temp3 ;
10932     PyObject * obj0  = 0 ;
10933     PyObject * obj1  = 0 ;
10934     PyObject * obj2  = 0 ;
10935     PyObject * obj3  = 0 ;
10936     
10937     if(!PyArg_ParseTuple(args,(char *)"OOOO:Style_readDatabaseColor",&obj0,&obj1,&obj2,&obj3)) goto fail;
10938     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10939     {
10940         if (PyString_Check(obj1)) {
10941             temp2 = std::string(PyString_AsString(obj1));
10942             arg2 = &temp2;
10943         }else {
10944             SWIG_exception(SWIG_TypeError, "string expected");
10945         }
10946     }
10947     {
10948         if (PyString_Check(obj2)) {
10949             temp3 = std::string(PyString_AsString(obj2));
10950             arg3 = &temp3;
10951         }else {
10952             SWIG_exception(SWIG_TypeError, "string expected");
10953         }
10954     }
10955     if ((SWIG_ConvertPtr(obj3,(void **) &arg4, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10956     if (arg4 == NULL) {
10957         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
10958     }
10959     result = (arg1)->readDatabaseColor((std::string const &)*arg2,(std::string const &)*arg3,(otk::Configuration const &)*arg4);
10960     
10961     {
10962         otk::BColor * resultptr;
10963         resultptr = new otk::BColor((otk::BColor &) result);
10964         resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_otk__BColor, 1);
10965     }
10966     return resultobj;
10967     fail:
10968     return NULL;
10969 }
10970
10971
10972 static PyObject *_wrap_Style_readDatabaseFont(PyObject *self, PyObject *args) {
10973     PyObject *resultobj;
10974     otk::Style *arg1 = (otk::Style *) 0 ;
10975     std::string *arg2 = 0 ;
10976     otk::Configuration *arg3 = 0 ;
10977     otk::BFont *result;
10978     std::string temp2 ;
10979     PyObject * obj0  = 0 ;
10980     PyObject * obj1  = 0 ;
10981     PyObject * obj2  = 0 ;
10982     
10983     if(!PyArg_ParseTuple(args,(char *)"OOO:Style_readDatabaseFont",&obj0,&obj1,&obj2)) goto fail;
10984     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10985     {
10986         if (PyString_Check(obj1)) {
10987             temp2 = std::string(PyString_AsString(obj1));
10988             arg2 = &temp2;
10989         }else {
10990             SWIG_exception(SWIG_TypeError, "string expected");
10991         }
10992     }
10993     if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
10994     if (arg3 == NULL) {
10995         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
10996     }
10997     result = (otk::BFont *)(arg1)->readDatabaseFont((std::string const &)*arg2,(otk::Configuration const &)*arg3);
10998     
10999     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BFont, 0);
11000     return resultobj;
11001     fail:
11002     return NULL;
11003 }
11004
11005
11006 static PyObject *_wrap_Style_load(PyObject *self, PyObject *args) {
11007     PyObject *resultobj;
11008     otk::Style *arg1 = (otk::Style *) 0 ;
11009     otk::Configuration *arg2 = 0 ;
11010     PyObject * obj0  = 0 ;
11011     PyObject * obj1  = 0 ;
11012     
11013     if(!PyArg_ParseTuple(args,(char *)"OO:Style_load",&obj0,&obj1)) goto fail;
11014     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11015     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11016     if (arg2 == NULL) {
11017         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
11018     }
11019     (arg1)->load((otk::Configuration const &)*arg2);
11020     
11021     Py_INCREF(Py_None); resultobj = Py_None;
11022     return resultobj;
11023     fail:
11024     return NULL;
11025 }
11026
11027
11028 static PyObject *_wrap_Style_getCloseButtonMask(PyObject *self, PyObject *args) {
11029     PyObject *resultobj;
11030     otk::Style *arg1 = (otk::Style *) 0 ;
11031     otk::PixmapMask *result;
11032     PyObject * obj0  = 0 ;
11033     
11034     if(!PyArg_ParseTuple(args,(char *)"O:Style_getCloseButtonMask",&obj0)) goto fail;
11035     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11036     result = (otk::PixmapMask *)(arg1)->getCloseButtonMask();
11037     
11038     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
11039     return resultobj;
11040     fail:
11041     return NULL;
11042 }
11043
11044
11045 static PyObject *_wrap_Style_getMaximizeButtonMask(PyObject *self, PyObject *args) {
11046     PyObject *resultobj;
11047     otk::Style *arg1 = (otk::Style *) 0 ;
11048     otk::PixmapMask *result;
11049     PyObject * obj0  = 0 ;
11050     
11051     if(!PyArg_ParseTuple(args,(char *)"O:Style_getMaximizeButtonMask",&obj0)) goto fail;
11052     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11053     result = (otk::PixmapMask *)(arg1)->getMaximizeButtonMask();
11054     
11055     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
11056     return resultobj;
11057     fail:
11058     return NULL;
11059 }
11060
11061
11062 static PyObject *_wrap_Style_getIconifyButtonMask(PyObject *self, PyObject *args) {
11063     PyObject *resultobj;
11064     otk::Style *arg1 = (otk::Style *) 0 ;
11065     otk::PixmapMask *result;
11066     PyObject * obj0  = 0 ;
11067     
11068     if(!PyArg_ParseTuple(args,(char *)"O:Style_getIconifyButtonMask",&obj0)) goto fail;
11069     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11070     result = (otk::PixmapMask *)(arg1)->getIconifyButtonMask();
11071     
11072     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
11073     return resultobj;
11074     fail:
11075     return NULL;
11076 }
11077
11078
11079 static PyObject *_wrap_Style_getStickyButtonMask(PyObject *self, PyObject *args) {
11080     PyObject *resultobj;
11081     otk::Style *arg1 = (otk::Style *) 0 ;
11082     otk::PixmapMask *result;
11083     PyObject * obj0  = 0 ;
11084     
11085     if(!PyArg_ParseTuple(args,(char *)"O:Style_getStickyButtonMask",&obj0)) goto fail;
11086     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11087     result = (otk::PixmapMask *)(arg1)->getStickyButtonMask();
11088     
11089     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__PixmapMask, 0);
11090     return resultobj;
11091     fail:
11092     return NULL;
11093 }
11094
11095
11096 static PyObject *_wrap_Style_getTextFocus(PyObject *self, PyObject *args) {
11097     PyObject *resultobj;
11098     otk::Style *arg1 = (otk::Style *) 0 ;
11099     otk::BColor *result;
11100     PyObject * obj0  = 0 ;
11101     
11102     if(!PyArg_ParseTuple(args,(char *)"O:Style_getTextFocus",&obj0)) goto fail;
11103     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11104     result = (otk::BColor *)(arg1)->getTextFocus();
11105     
11106     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11107     return resultobj;
11108     fail:
11109     return NULL;
11110 }
11111
11112
11113 static PyObject *_wrap_Style_getTextUnfocus(PyObject *self, PyObject *args) {
11114     PyObject *resultobj;
11115     otk::Style *arg1 = (otk::Style *) 0 ;
11116     otk::BColor *result;
11117     PyObject * obj0  = 0 ;
11118     
11119     if(!PyArg_ParseTuple(args,(char *)"O:Style_getTextUnfocus",&obj0)) goto fail;
11120     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11121     result = (otk::BColor *)(arg1)->getTextUnfocus();
11122     
11123     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11124     return resultobj;
11125     fail:
11126     return NULL;
11127 }
11128
11129
11130 static PyObject *_wrap_Style_getButtonPicFocus(PyObject *self, PyObject *args) {
11131     PyObject *resultobj;
11132     otk::Style *arg1 = (otk::Style *) 0 ;
11133     otk::BColor *result;
11134     PyObject * obj0  = 0 ;
11135     
11136     if(!PyArg_ParseTuple(args,(char *)"O:Style_getButtonPicFocus",&obj0)) goto fail;
11137     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11138     result = (otk::BColor *)(arg1)->getButtonPicFocus();
11139     
11140     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11141     return resultobj;
11142     fail:
11143     return NULL;
11144 }
11145
11146
11147 static PyObject *_wrap_Style_getButtonPicUnfocus(PyObject *self, PyObject *args) {
11148     PyObject *resultobj;
11149     otk::Style *arg1 = (otk::Style *) 0 ;
11150     otk::BColor *result;
11151     PyObject * obj0  = 0 ;
11152     
11153     if(!PyArg_ParseTuple(args,(char *)"O:Style_getButtonPicUnfocus",&obj0)) goto fail;
11154     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11155     result = (otk::BColor *)(arg1)->getButtonPicUnfocus();
11156     
11157     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11158     return resultobj;
11159     fail:
11160     return NULL;
11161 }
11162
11163
11164 static PyObject *_wrap_Style_getTitleFocus(PyObject *self, PyObject *args) {
11165     PyObject *resultobj;
11166     otk::Style *arg1 = (otk::Style *) 0 ;
11167     otk::BTexture *result;
11168     PyObject * obj0  = 0 ;
11169     
11170     if(!PyArg_ParseTuple(args,(char *)"O:Style_getTitleFocus",&obj0)) goto fail;
11171     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11172     result = (otk::BTexture *)(arg1)->getTitleFocus();
11173     
11174     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11175     return resultobj;
11176     fail:
11177     return NULL;
11178 }
11179
11180
11181 static PyObject *_wrap_Style_getTitleUnfocus(PyObject *self, PyObject *args) {
11182     PyObject *resultobj;
11183     otk::Style *arg1 = (otk::Style *) 0 ;
11184     otk::BTexture *result;
11185     PyObject * obj0  = 0 ;
11186     
11187     if(!PyArg_ParseTuple(args,(char *)"O:Style_getTitleUnfocus",&obj0)) goto fail;
11188     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11189     result = (otk::BTexture *)(arg1)->getTitleUnfocus();
11190     
11191     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11192     return resultobj;
11193     fail:
11194     return NULL;
11195 }
11196
11197
11198 static PyObject *_wrap_Style_getLabelFocus(PyObject *self, PyObject *args) {
11199     PyObject *resultobj;
11200     otk::Style *arg1 = (otk::Style *) 0 ;
11201     otk::BTexture *result;
11202     PyObject * obj0  = 0 ;
11203     
11204     if(!PyArg_ParseTuple(args,(char *)"O:Style_getLabelFocus",&obj0)) goto fail;
11205     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11206     result = (otk::BTexture *)(arg1)->getLabelFocus();
11207     
11208     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11209     return resultobj;
11210     fail:
11211     return NULL;
11212 }
11213
11214
11215 static PyObject *_wrap_Style_getLabelUnfocus(PyObject *self, PyObject *args) {
11216     PyObject *resultobj;
11217     otk::Style *arg1 = (otk::Style *) 0 ;
11218     otk::BTexture *result;
11219     PyObject * obj0  = 0 ;
11220     
11221     if(!PyArg_ParseTuple(args,(char *)"O:Style_getLabelUnfocus",&obj0)) goto fail;
11222     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11223     result = (otk::BTexture *)(arg1)->getLabelUnfocus();
11224     
11225     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11226     return resultobj;
11227     fail:
11228     return NULL;
11229 }
11230
11231
11232 static PyObject *_wrap_Style_getHandleFocus(PyObject *self, PyObject *args) {
11233     PyObject *resultobj;
11234     otk::Style *arg1 = (otk::Style *) 0 ;
11235     otk::BTexture *result;
11236     PyObject * obj0  = 0 ;
11237     
11238     if(!PyArg_ParseTuple(args,(char *)"O:Style_getHandleFocus",&obj0)) goto fail;
11239     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11240     result = (otk::BTexture *)(arg1)->getHandleFocus();
11241     
11242     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11243     return resultobj;
11244     fail:
11245     return NULL;
11246 }
11247
11248
11249 static PyObject *_wrap_Style_getHandleUnfocus(PyObject *self, PyObject *args) {
11250     PyObject *resultobj;
11251     otk::Style *arg1 = (otk::Style *) 0 ;
11252     otk::BTexture *result;
11253     PyObject * obj0  = 0 ;
11254     
11255     if(!PyArg_ParseTuple(args,(char *)"O:Style_getHandleUnfocus",&obj0)) goto fail;
11256     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11257     result = (otk::BTexture *)(arg1)->getHandleUnfocus();
11258     
11259     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11260     return resultobj;
11261     fail:
11262     return NULL;
11263 }
11264
11265
11266 static PyObject *_wrap_Style_getButtonFocus(PyObject *self, PyObject *args) {
11267     PyObject *resultobj;
11268     otk::Style *arg1 = (otk::Style *) 0 ;
11269     otk::BTexture *result;
11270     PyObject * obj0  = 0 ;
11271     
11272     if(!PyArg_ParseTuple(args,(char *)"O:Style_getButtonFocus",&obj0)) goto fail;
11273     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11274     result = (otk::BTexture *)(arg1)->getButtonFocus();
11275     
11276     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11277     return resultobj;
11278     fail:
11279     return NULL;
11280 }
11281
11282
11283 static PyObject *_wrap_Style_getButtonUnfocus(PyObject *self, PyObject *args) {
11284     PyObject *resultobj;
11285     otk::Style *arg1 = (otk::Style *) 0 ;
11286     otk::BTexture *result;
11287     PyObject * obj0  = 0 ;
11288     
11289     if(!PyArg_ParseTuple(args,(char *)"O:Style_getButtonUnfocus",&obj0)) goto fail;
11290     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11291     result = (otk::BTexture *)(arg1)->getButtonUnfocus();
11292     
11293     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11294     return resultobj;
11295     fail:
11296     return NULL;
11297 }
11298
11299
11300 static PyObject *_wrap_Style_getButtonPressedFocus(PyObject *self, PyObject *args) {
11301     PyObject *resultobj;
11302     otk::Style *arg1 = (otk::Style *) 0 ;
11303     otk::BTexture *result;
11304     PyObject * obj0  = 0 ;
11305     
11306     if(!PyArg_ParseTuple(args,(char *)"O:Style_getButtonPressedFocus",&obj0)) goto fail;
11307     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11308     result = (otk::BTexture *)(arg1)->getButtonPressedFocus();
11309     
11310     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11311     return resultobj;
11312     fail:
11313     return NULL;
11314 }
11315
11316
11317 static PyObject *_wrap_Style_getButtonPressedUnfocus(PyObject *self, PyObject *args) {
11318     PyObject *resultobj;
11319     otk::Style *arg1 = (otk::Style *) 0 ;
11320     otk::BTexture *result;
11321     PyObject * obj0  = 0 ;
11322     
11323     if(!PyArg_ParseTuple(args,(char *)"O:Style_getButtonPressedUnfocus",&obj0)) goto fail;
11324     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11325     result = (otk::BTexture *)(arg1)->getButtonPressedUnfocus();
11326     
11327     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11328     return resultobj;
11329     fail:
11330     return NULL;
11331 }
11332
11333
11334 static PyObject *_wrap_Style_getGripFocus(PyObject *self, PyObject *args) {
11335     PyObject *resultobj;
11336     otk::Style *arg1 = (otk::Style *) 0 ;
11337     otk::BTexture *result;
11338     PyObject * obj0  = 0 ;
11339     
11340     if(!PyArg_ParseTuple(args,(char *)"O:Style_getGripFocus",&obj0)) goto fail;
11341     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11342     result = (otk::BTexture *)(arg1)->getGripFocus();
11343     
11344     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11345     return resultobj;
11346     fail:
11347     return NULL;
11348 }
11349
11350
11351 static PyObject *_wrap_Style_getGripUnfocus(PyObject *self, PyObject *args) {
11352     PyObject *resultobj;
11353     otk::Style *arg1 = (otk::Style *) 0 ;
11354     otk::BTexture *result;
11355     PyObject * obj0  = 0 ;
11356     
11357     if(!PyArg_ParseTuple(args,(char *)"O:Style_getGripUnfocus",&obj0)) goto fail;
11358     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11359     result = (otk::BTexture *)(arg1)->getGripUnfocus();
11360     
11361     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11362     return resultobj;
11363     fail:
11364     return NULL;
11365 }
11366
11367
11368 static PyObject *_wrap_Style_getHandleWidth(PyObject *self, PyObject *args) {
11369     PyObject *resultobj;
11370     otk::Style *arg1 = (otk::Style *) 0 ;
11371     unsigned int result;
11372     PyObject * obj0  = 0 ;
11373     
11374     if(!PyArg_ParseTuple(args,(char *)"O:Style_getHandleWidth",&obj0)) goto fail;
11375     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11376     result = (unsigned int)((otk::Style const *)arg1)->getHandleWidth();
11377     
11378     resultobj = PyInt_FromLong((long)result);
11379     return resultobj;
11380     fail:
11381     return NULL;
11382 }
11383
11384
11385 static PyObject *_wrap_Style_getBevelWidth(PyObject *self, PyObject *args) {
11386     PyObject *resultobj;
11387     otk::Style *arg1 = (otk::Style *) 0 ;
11388     unsigned int result;
11389     PyObject * obj0  = 0 ;
11390     
11391     if(!PyArg_ParseTuple(args,(char *)"O:Style_getBevelWidth",&obj0)) goto fail;
11392     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11393     result = (unsigned int)((otk::Style const *)arg1)->getBevelWidth();
11394     
11395     resultobj = PyInt_FromLong((long)result);
11396     return resultobj;
11397     fail:
11398     return NULL;
11399 }
11400
11401
11402 static PyObject *_wrap_Style_getFrameWidth(PyObject *self, PyObject *args) {
11403     PyObject *resultobj;
11404     otk::Style *arg1 = (otk::Style *) 0 ;
11405     unsigned int result;
11406     PyObject * obj0  = 0 ;
11407     
11408     if(!PyArg_ParseTuple(args,(char *)"O:Style_getFrameWidth",&obj0)) goto fail;
11409     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11410     result = (unsigned int)((otk::Style const *)arg1)->getFrameWidth();
11411     
11412     resultobj = PyInt_FromLong((long)result);
11413     return resultobj;
11414     fail:
11415     return NULL;
11416 }
11417
11418
11419 static PyObject *_wrap_Style_getBorderWidth(PyObject *self, PyObject *args) {
11420     PyObject *resultobj;
11421     otk::Style *arg1 = (otk::Style *) 0 ;
11422     unsigned int result;
11423     PyObject * obj0  = 0 ;
11424     
11425     if(!PyArg_ParseTuple(args,(char *)"O:Style_getBorderWidth",&obj0)) goto fail;
11426     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11427     result = (unsigned int)((otk::Style const *)arg1)->getBorderWidth();
11428     
11429     resultobj = PyInt_FromLong((long)result);
11430     return resultobj;
11431     fail:
11432     return NULL;
11433 }
11434
11435
11436 static PyObject *_wrap_Style_getFont(PyObject *self, PyObject *args) {
11437     PyObject *resultobj;
11438     otk::Style *arg1 = (otk::Style *) 0 ;
11439     otk::BFont *result;
11440     PyObject * obj0  = 0 ;
11441     
11442     if(!PyArg_ParseTuple(args,(char *)"O:Style_getFont",&obj0)) goto fail;
11443     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11444     result = (otk::BFont *)((otk::Style const *)arg1)->getFont();
11445     
11446     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BFont, 0);
11447     return resultobj;
11448     fail:
11449     return NULL;
11450 }
11451
11452
11453 static PyObject *_wrap_Style_setShadowFonts(PyObject *self, PyObject *args) {
11454     PyObject *resultobj;
11455     otk::Style *arg1 = (otk::Style *) 0 ;
11456     bool arg2 ;
11457     PyObject * obj0  = 0 ;
11458     PyObject * obj1  = 0 ;
11459     
11460     if(!PyArg_ParseTuple(args,(char *)"OO:Style_setShadowFonts",&obj0,&obj1)) goto fail;
11461     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11462     arg2 = (bool) PyInt_AsLong(obj1);
11463     if (PyErr_Occurred()) SWIG_fail;
11464     (arg1)->setShadowFonts(arg2);
11465     
11466     Py_INCREF(Py_None); resultobj = Py_None;
11467     return resultobj;
11468     fail:
11469     return NULL;
11470 }
11471
11472
11473 static PyObject *_wrap_Style_hasShadowFonts(PyObject *self, PyObject *args) {
11474     PyObject *resultobj;
11475     otk::Style *arg1 = (otk::Style *) 0 ;
11476     bool result;
11477     PyObject * obj0  = 0 ;
11478     
11479     if(!PyArg_ParseTuple(args,(char *)"O:Style_hasShadowFonts",&obj0)) goto fail;
11480     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11481     result = (bool)((otk::Style const *)arg1)->hasShadowFonts();
11482     
11483     resultobj = PyInt_FromLong((long)result);
11484     return resultobj;
11485     fail:
11486     return NULL;
11487 }
11488
11489
11490 static PyObject *_wrap_Style_setAAFonts(PyObject *self, PyObject *args) {
11491     PyObject *resultobj;
11492     otk::Style *arg1 = (otk::Style *) 0 ;
11493     bool arg2 ;
11494     PyObject * obj0  = 0 ;
11495     PyObject * obj1  = 0 ;
11496     
11497     if(!PyArg_ParseTuple(args,(char *)"OO:Style_setAAFonts",&obj0,&obj1)) goto fail;
11498     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11499     arg2 = (bool) PyInt_AsLong(obj1);
11500     if (PyErr_Occurred()) SWIG_fail;
11501     (arg1)->setAAFonts(arg2);
11502     
11503     Py_INCREF(Py_None); resultobj = Py_None;
11504     return resultobj;
11505     fail:
11506     return NULL;
11507 }
11508
11509
11510 static PyObject *_wrap_Style_hasAAFonts(PyObject *self, PyObject *args) {
11511     PyObject *resultobj;
11512     otk::Style *arg1 = (otk::Style *) 0 ;
11513     bool result;
11514     PyObject * obj0  = 0 ;
11515     
11516     if(!PyArg_ParseTuple(args,(char *)"O:Style_hasAAFonts",&obj0)) goto fail;
11517     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11518     result = (bool)((otk::Style const *)arg1)->hasAAFonts();
11519     
11520     resultobj = PyInt_FromLong((long)result);
11521     return resultobj;
11522     fail:
11523     return NULL;
11524 }
11525
11526
11527 static PyObject *_wrap_Style_textJustify(PyObject *self, PyObject *args) {
11528     PyObject *resultobj;
11529     otk::Style *arg1 = (otk::Style *) 0 ;
11530     int result;
11531     PyObject * obj0  = 0 ;
11532     
11533     if(!PyArg_ParseTuple(args,(char *)"O:Style_textJustify",&obj0)) goto fail;
11534     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11535     result = (int)(arg1)->textJustify();
11536     
11537     resultobj = PyInt_FromLong((long)result);
11538     return resultobj;
11539     fail:
11540     return NULL;
11541 }
11542
11543
11544 static PyObject *_wrap_Style_bulletType(PyObject *self, PyObject *args) {
11545     PyObject *resultobj;
11546     otk::Style *arg1 = (otk::Style *) 0 ;
11547     int result;
11548     PyObject * obj0  = 0 ;
11549     
11550     if(!PyArg_ParseTuple(args,(char *)"O:Style_bulletType",&obj0)) goto fail;
11551     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11552     result = (int)(arg1)->bulletType();
11553     
11554     resultobj = PyInt_FromLong((long)result);
11555     return resultobj;
11556     fail:
11557     return NULL;
11558 }
11559
11560
11561 static PyObject *_wrap_Style_getBorderColor(PyObject *self, PyObject *args) {
11562     PyObject *resultobj;
11563     otk::Style *arg1 = (otk::Style *) 0 ;
11564     otk::BColor *result;
11565     PyObject * obj0  = 0 ;
11566     
11567     if(!PyArg_ParseTuple(args,(char *)"O:Style_getBorderColor",&obj0)) goto fail;
11568     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11569     result = (otk::BColor *)((otk::Style const *)arg1)->getBorderColor();
11570     
11571     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11572     return resultobj;
11573     fail:
11574     return NULL;
11575 }
11576
11577
11578 static PyObject *_wrap_Style_getFrameFocus(PyObject *self, PyObject *args) {
11579     PyObject *resultobj;
11580     otk::Style *arg1 = (otk::Style *) 0 ;
11581     otk::BTexture *result;
11582     PyObject * obj0  = 0 ;
11583     
11584     if(!PyArg_ParseTuple(args,(char *)"O:Style_getFrameFocus",&obj0)) goto fail;
11585     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11586     result = (otk::BTexture *)((otk::Style const *)arg1)->getFrameFocus();
11587     
11588     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11589     return resultobj;
11590     fail:
11591     return NULL;
11592 }
11593
11594
11595 static PyObject *_wrap_Style_getFrameUnfocus(PyObject *self, PyObject *args) {
11596     PyObject *resultobj;
11597     otk::Style *arg1 = (otk::Style *) 0 ;
11598     otk::BTexture *result;
11599     PyObject * obj0  = 0 ;
11600     
11601     if(!PyArg_ParseTuple(args,(char *)"O:Style_getFrameUnfocus",&obj0)) goto fail;
11602     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11603     result = (otk::BTexture *)((otk::Style const *)arg1)->getFrameUnfocus();
11604     
11605     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 0);
11606     return resultobj;
11607     fail:
11608     return NULL;
11609 }
11610
11611
11612 static PyObject *_wrap_Style_setImageControl(PyObject *self, PyObject *args) {
11613     PyObject *resultobj;
11614     otk::Style *arg1 = (otk::Style *) 0 ;
11615     otk::BImageControl *arg2 = (otk::BImageControl *) 0 ;
11616     PyObject * obj0  = 0 ;
11617     PyObject * obj1  = 0 ;
11618     
11619     if(!PyArg_ParseTuple(args,(char *)"OO:Style_setImageControl",&obj0,&obj1)) goto fail;
11620     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11621     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11622     (arg1)->setImageControl(arg2);
11623     
11624     Py_INCREF(Py_None); resultobj = Py_None;
11625     return resultobj;
11626     fail:
11627     return NULL;
11628 }
11629
11630
11631 static PyObject *_wrap_Style_getScreen(PyObject *self, PyObject *args) {
11632     PyObject *resultobj;
11633     otk::Style *arg1 = (otk::Style *) 0 ;
11634     unsigned int result;
11635     PyObject * obj0  = 0 ;
11636     
11637     if(!PyArg_ParseTuple(args,(char *)"O:Style_getScreen",&obj0)) goto fail;
11638     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__Style,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11639     result = (unsigned int)(arg1)->getScreen();
11640     
11641     resultobj = PyInt_FromLong((long)result);
11642     return resultobj;
11643     fail:
11644     return NULL;
11645 }
11646
11647
11648 static PyObject * Style_swigregister(PyObject *self, PyObject *args) {
11649     PyObject *obj;
11650     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
11651     SWIG_TypeClientData(SWIGTYPE_p_otk__Style, obj);
11652     Py_INCREF(obj);
11653     return Py_BuildValue((char *)"");
11654 }
11655 static PyObject *_wrap_new_BTexture__SWIG_0(PyObject *self, PyObject *args) {
11656     PyObject *resultobj;
11657     unsigned int arg1 = (unsigned int) ~(0u) ;
11658     otk::BImageControl *arg2 = (otk::BImageControl *) 0 ;
11659     otk::BTexture *result;
11660     PyObject * obj0  = 0 ;
11661     PyObject * obj1  = 0 ;
11662     
11663     if(!PyArg_ParseTuple(args,(char *)"|OO:new_BTexture",&obj0,&obj1)) goto fail;
11664     if (obj0) {
11665         arg1 = (unsigned int) PyInt_AsLong(obj0);
11666         if (PyErr_Occurred()) SWIG_fail;
11667     }
11668     if (obj1) {
11669         if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11670     }
11671     result = (otk::BTexture *)new otk::BTexture(arg1,arg2);
11672     
11673     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 1);
11674     return resultobj;
11675     fail:
11676     return NULL;
11677 }
11678
11679
11680 static PyObject *_wrap_new_BTexture__SWIG_1(PyObject *self, PyObject *args) {
11681     PyObject *resultobj;
11682     std::string *arg1 = 0 ;
11683     unsigned int arg2 = (unsigned int) ~(0u) ;
11684     otk::BImageControl *arg3 = (otk::BImageControl *) 0 ;
11685     otk::BTexture *result;
11686     std::string temp1 ;
11687     PyObject * obj0  = 0 ;
11688     PyObject * obj1  = 0 ;
11689     PyObject * obj2  = 0 ;
11690     
11691     if(!PyArg_ParseTuple(args,(char *)"O|OO:new_BTexture",&obj0,&obj1,&obj2)) goto fail;
11692     {
11693         if (PyString_Check(obj0)) {
11694             temp1 = std::string(PyString_AsString(obj0));
11695             arg1 = &temp1;
11696         }else {
11697             SWIG_exception(SWIG_TypeError, "string expected");
11698         }
11699     }
11700     if (obj1) {
11701         arg2 = (unsigned int) PyInt_AsLong(obj1);
11702         if (PyErr_Occurred()) SWIG_fail;
11703     }
11704     if (obj2) {
11705         if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11706     }
11707     result = (otk::BTexture *)new otk::BTexture((std::string const &)*arg1,arg2,arg3);
11708     
11709     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BTexture, 1);
11710     return resultobj;
11711     fail:
11712     return NULL;
11713 }
11714
11715
11716 static PyObject *_wrap_new_BTexture(PyObject *self, PyObject *args) {
11717     int argc;
11718     PyObject *argv[4];
11719     int ii;
11720     
11721     argc = PyObject_Length(args);
11722     for (ii = 0; (ii < argc) && (ii < 3); ii++) {
11723         argv[ii] = PyTuple_GetItem(args,ii);
11724     }
11725     if ((argc >= 0) && (argc <= 2)) {
11726         int _v;
11727         if (argc <= 0) {
11728             return _wrap_new_BTexture__SWIG_0(self,args);
11729         }
11730         {
11731             _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0;
11732         }
11733         if (_v) {
11734             if (argc <= 1) {
11735                 return _wrap_new_BTexture__SWIG_0(self,args);
11736             }
11737             {
11738                 void *ptr;
11739                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_otk__BImageControl, 0) == -1) {
11740                     _v = 0;
11741                     PyErr_Clear();
11742                 }else {
11743                     _v = 1;
11744                 }
11745             }
11746             if (_v) {
11747                 return _wrap_new_BTexture__SWIG_0(self,args);
11748             }
11749         }
11750     }
11751     if ((argc >= 1) && (argc <= 3)) {
11752         int _v;
11753         {
11754             _v = PyString_Check(argv[0]) ? 1 : 0;
11755         }
11756         if (_v) {
11757             if (argc <= 1) {
11758                 return _wrap_new_BTexture__SWIG_1(self,args);
11759             }
11760             {
11761                 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
11762             }
11763             if (_v) {
11764                 if (argc <= 2) {
11765                     return _wrap_new_BTexture__SWIG_1(self,args);
11766                 }
11767                 {
11768                     void *ptr;
11769                     if (SWIG_ConvertPtr(argv[2], (void **) &ptr, SWIGTYPE_p_otk__BImageControl, 0) == -1) {
11770                         _v = 0;
11771                         PyErr_Clear();
11772                     }else {
11773                         _v = 1;
11774                     }
11775                 }
11776                 if (_v) {
11777                     return _wrap_new_BTexture__SWIG_1(self,args);
11778                 }
11779             }
11780         }
11781     }
11782     
11783     PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_BTexture'");
11784     return NULL;
11785 }
11786
11787
11788 static PyObject *_wrap_BTexture_setColor(PyObject *self, PyObject *args) {
11789     PyObject *resultobj;
11790     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11791     otk::BColor *arg2 = 0 ;
11792     PyObject * obj0  = 0 ;
11793     PyObject * obj1  = 0 ;
11794     
11795     if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_setColor",&obj0,&obj1)) goto fail;
11796     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11797     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11798     if (arg2 == NULL) {
11799         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
11800     }
11801     (arg1)->setColor((otk::BColor const &)*arg2);
11802     
11803     Py_INCREF(Py_None); resultobj = Py_None;
11804     return resultobj;
11805     fail:
11806     return NULL;
11807 }
11808
11809
11810 static PyObject *_wrap_BTexture_setColorTo(PyObject *self, PyObject *args) {
11811     PyObject *resultobj;
11812     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11813     otk::BColor *arg2 = 0 ;
11814     PyObject * obj0  = 0 ;
11815     PyObject * obj1  = 0 ;
11816     
11817     if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_setColorTo",&obj0,&obj1)) goto fail;
11818     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11819     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11820     if (arg2 == NULL) {
11821         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
11822     }
11823     (arg1)->setColorTo((otk::BColor const &)*arg2);
11824     
11825     Py_INCREF(Py_None); resultobj = Py_None;
11826     return resultobj;
11827     fail:
11828     return NULL;
11829 }
11830
11831
11832 static PyObject *_wrap_BTexture_setBorderColor(PyObject *self, PyObject *args) {
11833     PyObject *resultobj;
11834     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11835     otk::BColor *arg2 = 0 ;
11836     PyObject * obj0  = 0 ;
11837     PyObject * obj1  = 0 ;
11838     
11839     if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_setBorderColor",&obj0,&obj1)) goto fail;
11840     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11841     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BColor,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11842     if (arg2 == NULL) {
11843         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
11844     }
11845     (arg1)->setBorderColor((otk::BColor const &)*arg2);
11846     
11847     Py_INCREF(Py_None); resultobj = Py_None;
11848     return resultobj;
11849     fail:
11850     return NULL;
11851 }
11852
11853
11854 static PyObject *_wrap_BTexture_color(PyObject *self, PyObject *args) {
11855     PyObject *resultobj;
11856     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11857     otk::BColor *result;
11858     PyObject * obj0  = 0 ;
11859     
11860     if(!PyArg_ParseTuple(args,(char *)"O:BTexture_color",&obj0)) goto fail;
11861     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11862     {
11863         otk::BColor const &_result_ref = ((otk::BTexture const *)arg1)->color();
11864         result = (otk::BColor *) &_result_ref;
11865     }
11866     
11867     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11868     return resultobj;
11869     fail:
11870     return NULL;
11871 }
11872
11873
11874 static PyObject *_wrap_BTexture_colorTo(PyObject *self, PyObject *args) {
11875     PyObject *resultobj;
11876     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11877     otk::BColor *result;
11878     PyObject * obj0  = 0 ;
11879     
11880     if(!PyArg_ParseTuple(args,(char *)"O:BTexture_colorTo",&obj0)) goto fail;
11881     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11882     {
11883         otk::BColor const &_result_ref = ((otk::BTexture const *)arg1)->colorTo();
11884         result = (otk::BColor *) &_result_ref;
11885     }
11886     
11887     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11888     return resultobj;
11889     fail:
11890     return NULL;
11891 }
11892
11893
11894 static PyObject *_wrap_BTexture_lightColor(PyObject *self, PyObject *args) {
11895     PyObject *resultobj;
11896     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11897     otk::BColor *result;
11898     PyObject * obj0  = 0 ;
11899     
11900     if(!PyArg_ParseTuple(args,(char *)"O:BTexture_lightColor",&obj0)) goto fail;
11901     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11902     {
11903         otk::BColor const &_result_ref = ((otk::BTexture const *)arg1)->lightColor();
11904         result = (otk::BColor *) &_result_ref;
11905     }
11906     
11907     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11908     return resultobj;
11909     fail:
11910     return NULL;
11911 }
11912
11913
11914 static PyObject *_wrap_BTexture_shadowColor(PyObject *self, PyObject *args) {
11915     PyObject *resultobj;
11916     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11917     otk::BColor *result;
11918     PyObject * obj0  = 0 ;
11919     
11920     if(!PyArg_ParseTuple(args,(char *)"O:BTexture_shadowColor",&obj0)) goto fail;
11921     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11922     {
11923         otk::BColor const &_result_ref = ((otk::BTexture const *)arg1)->shadowColor();
11924         result = (otk::BColor *) &_result_ref;
11925     }
11926     
11927     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11928     return resultobj;
11929     fail:
11930     return NULL;
11931 }
11932
11933
11934 static PyObject *_wrap_BTexture_borderColor(PyObject *self, PyObject *args) {
11935     PyObject *resultobj;
11936     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11937     otk::BColor *result;
11938     PyObject * obj0  = 0 ;
11939     
11940     if(!PyArg_ParseTuple(args,(char *)"O:BTexture_borderColor",&obj0)) goto fail;
11941     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11942     {
11943         otk::BColor const &_result_ref = ((otk::BTexture const *)arg1)->borderColor();
11944         result = (otk::BColor *) &_result_ref;
11945     }
11946     
11947     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__BColor, 0);
11948     return resultobj;
11949     fail:
11950     return NULL;
11951 }
11952
11953
11954 static PyObject *_wrap_BTexture_texture(PyObject *self, PyObject *args) {
11955     PyObject *resultobj;
11956     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11957     unsigned long result;
11958     PyObject * obj0  = 0 ;
11959     
11960     if(!PyArg_ParseTuple(args,(char *)"O:BTexture_texture",&obj0)) goto fail;
11961     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11962     result = (unsigned long)((otk::BTexture const *)arg1)->texture();
11963     
11964     resultobj = PyInt_FromLong((long)result);
11965     return resultobj;
11966     fail:
11967     return NULL;
11968 }
11969
11970
11971 static PyObject *_wrap_BTexture_setTexture(PyObject *self, PyObject *args) {
11972     PyObject *resultobj;
11973     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11974     unsigned long arg2 ;
11975     PyObject * obj0  = 0 ;
11976     PyObject * obj1  = 0 ;
11977     
11978     if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_setTexture",&obj0,&obj1)) goto fail;
11979     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
11980     arg2 = (unsigned long) PyInt_AsLong(obj1);
11981     if (PyErr_Occurred()) SWIG_fail;
11982     (arg1)->setTexture(arg2);
11983     
11984     Py_INCREF(Py_None); resultobj = Py_None;
11985     return resultobj;
11986     fail:
11987     return NULL;
11988 }
11989
11990
11991 static PyObject *_wrap_BTexture_addTexture(PyObject *self, PyObject *args) {
11992     PyObject *resultobj;
11993     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
11994     unsigned long arg2 ;
11995     PyObject * obj0  = 0 ;
11996     PyObject * obj1  = 0 ;
11997     
11998     if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_addTexture",&obj0,&obj1)) goto fail;
11999     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12000     arg2 = (unsigned long) PyInt_AsLong(obj1);
12001     if (PyErr_Occurred()) SWIG_fail;
12002     (arg1)->addTexture(arg2);
12003     
12004     Py_INCREF(Py_None); resultobj = Py_None;
12005     return resultobj;
12006     fail:
12007     return NULL;
12008 }
12009
12010
12011 static PyObject *_wrap_BTexture_equals(PyObject *self, PyObject *args) {
12012     PyObject *resultobj;
12013     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12014     otk::BTexture *arg2 = 0 ;
12015     bool result;
12016     PyObject * obj0  = 0 ;
12017     PyObject * obj1  = 0 ;
12018     
12019     if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_equals",&obj0,&obj1)) goto fail;
12020     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12021     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12022     if (arg2 == NULL) {
12023         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
12024     }
12025     result = (bool)(arg1)->operator ==((otk::BTexture const &)*arg2);
12026     
12027     resultobj = PyInt_FromLong((long)result);
12028     return resultobj;
12029     fail:
12030     return NULL;
12031 }
12032
12033
12034 static PyObject *_wrap_BTexture_screen(PyObject *self, PyObject *args) {
12035     PyObject *resultobj;
12036     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12037     unsigned int result;
12038     PyObject * obj0  = 0 ;
12039     
12040     if(!PyArg_ParseTuple(args,(char *)"O:BTexture_screen",&obj0)) goto fail;
12041     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12042     result = (unsigned int)((otk::BTexture const *)arg1)->screen();
12043     
12044     resultobj = PyInt_FromLong((long)result);
12045     return resultobj;
12046     fail:
12047     return NULL;
12048 }
12049
12050
12051 static PyObject *_wrap_BTexture_setScreen(PyObject *self, PyObject *args) {
12052     PyObject *resultobj;
12053     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12054     unsigned int arg2 ;
12055     PyObject * obj0  = 0 ;
12056     PyObject * obj1  = 0 ;
12057     
12058     if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_setScreen",&obj0,&obj1)) goto fail;
12059     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12060     arg2 = (unsigned int) PyInt_AsLong(obj1);
12061     if (PyErr_Occurred()) SWIG_fail;
12062     (arg1)->setScreen(arg2);
12063     
12064     Py_INCREF(Py_None); resultobj = Py_None;
12065     return resultobj;
12066     fail:
12067     return NULL;
12068 }
12069
12070
12071 static PyObject *_wrap_BTexture_setImageControl(PyObject *self, PyObject *args) {
12072     PyObject *resultobj;
12073     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12074     otk::BImageControl *arg2 = (otk::BImageControl *) 0 ;
12075     PyObject * obj0  = 0 ;
12076     PyObject * obj1  = 0 ;
12077     
12078     if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_setImageControl",&obj0,&obj1)) goto fail;
12079     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12080     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__BImageControl,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12081     (arg1)->setImageControl(arg2);
12082     
12083     Py_INCREF(Py_None); resultobj = Py_None;
12084     return resultobj;
12085     fail:
12086     return NULL;
12087 }
12088
12089
12090 static PyObject *_wrap_BTexture_description(PyObject *self, PyObject *args) {
12091     PyObject *resultobj;
12092     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12093     std::string *result;
12094     PyObject * obj0  = 0 ;
12095     
12096     if(!PyArg_ParseTuple(args,(char *)"O:BTexture_description",&obj0)) goto fail;
12097     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12098     {
12099         std::string const &_result_ref = ((otk::BTexture const *)arg1)->description();
12100         result = (std::string *) &_result_ref;
12101     }
12102     
12103     {
12104         resultobj = PyString_FromString(result->c_str());
12105     }
12106     return resultobj;
12107     fail:
12108     return NULL;
12109 }
12110
12111
12112 static PyObject *_wrap_BTexture_setDescription(PyObject *self, PyObject *args) {
12113     PyObject *resultobj;
12114     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12115     std::string *arg2 = 0 ;
12116     std::string temp2 ;
12117     PyObject * obj0  = 0 ;
12118     PyObject * obj1  = 0 ;
12119     
12120     if(!PyArg_ParseTuple(args,(char *)"OO:BTexture_setDescription",&obj0,&obj1)) goto fail;
12121     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12122     {
12123         if (PyString_Check(obj1)) {
12124             temp2 = std::string(PyString_AsString(obj1));
12125             arg2 = &temp2;
12126         }else {
12127             SWIG_exception(SWIG_TypeError, "string expected");
12128         }
12129     }
12130     (arg1)->setDescription((std::string const &)*arg2);
12131     
12132     Py_INCREF(Py_None); resultobj = Py_None;
12133     return resultobj;
12134     fail:
12135     return NULL;
12136 }
12137
12138
12139 static PyObject *_wrap_BTexture_render(PyObject *self, PyObject *args) {
12140     PyObject *resultobj;
12141     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12142     unsigned int arg2 ;
12143     unsigned int arg3 ;
12144     Pixmap arg4 = (Pixmap) (Pixmap)0 ;
12145     Pixmap result;
12146     Pixmap *argp4 ;
12147     PyObject * obj0  = 0 ;
12148     PyObject * obj1  = 0 ;
12149     PyObject * obj2  = 0 ;
12150     PyObject * obj3  = 0 ;
12151     
12152     if(!PyArg_ParseTuple(args,(char *)"OOO|O:BTexture_render",&obj0,&obj1,&obj2,&obj3)) goto fail;
12153     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12154     arg2 = (unsigned int) PyInt_AsLong(obj1);
12155     if (PyErr_Occurred()) SWIG_fail;
12156     arg3 = (unsigned int) PyInt_AsLong(obj2);
12157     if (PyErr_Occurred()) SWIG_fail;
12158     if (obj3) {
12159         if ((SWIG_ConvertPtr(obj3,(void **) &argp4, SWIGTYPE_p_Pixmap,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
12160         arg4 = *argp4; 
12161     }
12162     result = (arg1)->render(arg2,arg3,arg4);
12163     
12164     {
12165         Pixmap * resultptr;
12166         resultptr = new Pixmap((Pixmap &) result);
12167         resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Pixmap, 1);
12168     }
12169     return resultobj;
12170     fail:
12171     return NULL;
12172 }
12173
12174
12175 static PyObject *_wrap_delete_BTexture(PyObject *self, PyObject *args) {
12176     PyObject *resultobj;
12177     otk::BTexture *arg1 = (otk::BTexture *) 0 ;
12178     PyObject * obj0  = 0 ;
12179     
12180     if(!PyArg_ParseTuple(args,(char *)"O:delete_BTexture",&obj0)) goto fail;
12181     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__BTexture,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12182     delete arg1;
12183     
12184     Py_INCREF(Py_None); resultobj = Py_None;
12185     return resultobj;
12186     fail:
12187     return NULL;
12188 }
12189
12190
12191 static PyObject * BTexture_swigregister(PyObject *self, PyObject *args) {
12192     PyObject *obj;
12193     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
12194     SWIG_TypeClientData(SWIGTYPE_p_otk__BTexture, obj);
12195     Py_INCREF(obj);
12196     return Py_BuildValue((char *)"");
12197 }
12198 static PyObject *_wrap_new_OBTimer(PyObject *self, PyObject *args) {
12199     PyObject *resultobj;
12200     otk::OBTimerQueueManager *arg1 = (otk::OBTimerQueueManager *) 0 ;
12201     otk::OBTimeoutHandler arg2 = (otk::OBTimeoutHandler) 0 ;
12202     otk::OBTimeoutData arg3 = (otk::OBTimeoutData) 0 ;
12203     otk::OBTimer *result;
12204     PyObject * obj0  = 0 ;
12205     PyObject * obj1  = 0 ;
12206     PyObject * obj2  = 0 ;
12207     
12208     if(!PyArg_ParseTuple(args,(char *)"OOO:new_OBTimer",&obj0,&obj1,&obj2)) goto fail;
12209     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimerQueueManager,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12210     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_otk__OBTimeoutHandler,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12211     if ((SWIG_ConvertPtr(obj2,(void **) &arg3, 0, SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12212     result = (otk::OBTimer *)new otk::OBTimer(arg1,arg2,arg3);
12213     
12214     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OBTimer, 1);
12215     return resultobj;
12216     fail:
12217     return NULL;
12218 }
12219
12220
12221 static PyObject *_wrap_delete_OBTimer(PyObject *self, PyObject *args) {
12222     PyObject *resultobj;
12223     otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12224     PyObject * obj0  = 0 ;
12225     
12226     if(!PyArg_ParseTuple(args,(char *)"O:delete_OBTimer",&obj0)) goto fail;
12227     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12228     delete arg1;
12229     
12230     Py_INCREF(Py_None); resultobj = Py_None;
12231     return resultobj;
12232     fail:
12233     return NULL;
12234 }
12235
12236
12237 static PyObject *_wrap_OBTimer_fire(PyObject *self, PyObject *args) {
12238     PyObject *resultobj;
12239     otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12240     PyObject * obj0  = 0 ;
12241     
12242     if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_fire",&obj0)) goto fail;
12243     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12244     (arg1)->fire();
12245     
12246     Py_INCREF(Py_None); resultobj = Py_None;
12247     return resultobj;
12248     fail:
12249     return NULL;
12250 }
12251
12252
12253 static PyObject *_wrap_OBTimer_timing(PyObject *self, PyObject *args) {
12254     PyObject *resultobj;
12255     otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12256     bool result;
12257     PyObject * obj0  = 0 ;
12258     
12259     if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_timing",&obj0)) goto fail;
12260     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12261     result = (bool)((otk::OBTimer const *)arg1)->timing();
12262     
12263     resultobj = PyInt_FromLong((long)result);
12264     return resultobj;
12265     fail:
12266     return NULL;
12267 }
12268
12269
12270 static PyObject *_wrap_OBTimer_recurring(PyObject *self, PyObject *args) {
12271     PyObject *resultobj;
12272     otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12273     bool result;
12274     PyObject * obj0  = 0 ;
12275     
12276     if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_recurring",&obj0)) goto fail;
12277     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12278     result = (bool)((otk::OBTimer const *)arg1)->recurring();
12279     
12280     resultobj = PyInt_FromLong((long)result);
12281     return resultobj;
12282     fail:
12283     return NULL;
12284 }
12285
12286
12287 static PyObject *_wrap_OBTimer_timeout(PyObject *self, PyObject *args) {
12288     PyObject *resultobj;
12289     otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12290     timeval *result;
12291     PyObject * obj0  = 0 ;
12292     
12293     if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_timeout",&obj0)) goto fail;
12294     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12295     {
12296         timeval const &_result_ref = ((otk::OBTimer const *)arg1)->timeout();
12297         result = (timeval *) &_result_ref;
12298     }
12299     
12300     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_timeval, 0);
12301     return resultobj;
12302     fail:
12303     return NULL;
12304 }
12305
12306
12307 static PyObject *_wrap_OBTimer_startTime(PyObject *self, PyObject *args) {
12308     PyObject *resultobj;
12309     otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12310     timeval *result;
12311     PyObject * obj0  = 0 ;
12312     
12313     if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_startTime",&obj0)) goto fail;
12314     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12315     {
12316         timeval const &_result_ref = ((otk::OBTimer const *)arg1)->startTime();
12317         result = (timeval *) &_result_ref;
12318     }
12319     
12320     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_timeval, 0);
12321     return resultobj;
12322     fail:
12323     return NULL;
12324 }
12325
12326
12327 static PyObject *_wrap_OBTimer_remainingTime(PyObject *self, PyObject *args) {
12328     PyObject *resultobj;
12329     otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12330     timeval *arg2 = 0 ;
12331     timeval result;
12332     PyObject * obj0  = 0 ;
12333     PyObject * obj1  = 0 ;
12334     
12335     if(!PyArg_ParseTuple(args,(char *)"OO:OBTimer_remainingTime",&obj0,&obj1)) goto fail;
12336     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12337     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_timeval,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12338     if (arg2 == NULL) {
12339         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
12340     }
12341     result = ((otk::OBTimer const *)arg1)->remainingTime((timeval const &)*arg2);
12342     
12343     {
12344         timeval * resultptr;
12345         resultptr = new timeval((timeval &) result);
12346         resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_timeval, 1);
12347     }
12348     return resultobj;
12349     fail:
12350     return NULL;
12351 }
12352
12353
12354 static PyObject *_wrap_OBTimer_shouldFire(PyObject *self, PyObject *args) {
12355     PyObject *resultobj;
12356     otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12357     timeval *arg2 = 0 ;
12358     bool result;
12359     PyObject * obj0  = 0 ;
12360     PyObject * obj1  = 0 ;
12361     
12362     if(!PyArg_ParseTuple(args,(char *)"OO:OBTimer_shouldFire",&obj0,&obj1)) goto fail;
12363     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12364     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_timeval,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12365     if (arg2 == NULL) {
12366         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
12367     }
12368     result = (bool)((otk::OBTimer const *)arg1)->shouldFire((timeval const &)*arg2);
12369     
12370     resultobj = PyInt_FromLong((long)result);
12371     return resultobj;
12372     fail:
12373     return NULL;
12374 }
12375
12376
12377 static PyObject *_wrap_OBTimer_endTime(PyObject *self, PyObject *args) {
12378     PyObject *resultobj;
12379     otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12380     timeval result;
12381     PyObject * obj0  = 0 ;
12382     
12383     if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_endTime",&obj0)) goto fail;
12384     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12385     result = ((otk::OBTimer const *)arg1)->endTime();
12386     
12387     {
12388         timeval * resultptr;
12389         resultptr = new timeval((timeval &) result);
12390         resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_timeval, 1);
12391     }
12392     return resultobj;
12393     fail:
12394     return NULL;
12395 }
12396
12397
12398 static PyObject *_wrap_OBTimer_setRecurring(PyObject *self, PyObject *args) {
12399     PyObject *resultobj;
12400     otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12401     bool arg2 ;
12402     PyObject * obj0  = 0 ;
12403     PyObject * obj1  = 0 ;
12404     
12405     if(!PyArg_ParseTuple(args,(char *)"OO:OBTimer_setRecurring",&obj0,&obj1)) goto fail;
12406     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12407     arg2 = (bool) PyInt_AsLong(obj1);
12408     if (PyErr_Occurred()) SWIG_fail;
12409     (arg1)->setRecurring(arg2);
12410     
12411     Py_INCREF(Py_None); resultobj = Py_None;
12412     return resultobj;
12413     fail:
12414     return NULL;
12415 }
12416
12417
12418 static PyObject *_wrap_OBTimer_setTimeout__SWIG_0(PyObject *self, PyObject *args) {
12419     PyObject *resultobj;
12420     otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12421     long arg2 ;
12422     PyObject * obj0  = 0 ;
12423     
12424     if(!PyArg_ParseTuple(args,(char *)"Ol:OBTimer_setTimeout",&obj0,&arg2)) goto fail;
12425     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12426     (arg1)->setTimeout(arg2);
12427     
12428     Py_INCREF(Py_None); resultobj = Py_None;
12429     return resultobj;
12430     fail:
12431     return NULL;
12432 }
12433
12434
12435 static PyObject *_wrap_OBTimer_setTimeout__SWIG_1(PyObject *self, PyObject *args) {
12436     PyObject *resultobj;
12437     otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12438     timeval *arg2 = 0 ;
12439     PyObject * obj0  = 0 ;
12440     PyObject * obj1  = 0 ;
12441     
12442     if(!PyArg_ParseTuple(args,(char *)"OO:OBTimer_setTimeout",&obj0,&obj1)) goto fail;
12443     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12444     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_timeval,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12445     if (arg2 == NULL) {
12446         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
12447     }
12448     (arg1)->setTimeout((timeval const &)*arg2);
12449     
12450     Py_INCREF(Py_None); resultobj = Py_None;
12451     return resultobj;
12452     fail:
12453     return NULL;
12454 }
12455
12456
12457 static PyObject *_wrap_OBTimer_setTimeout(PyObject *self, PyObject *args) {
12458     int argc;
12459     PyObject *argv[3];
12460     int ii;
12461     
12462     argc = PyObject_Length(args);
12463     for (ii = 0; (ii < argc) && (ii < 2); ii++) {
12464         argv[ii] = PyTuple_GetItem(args,ii);
12465     }
12466     if (argc == 2) {
12467         int _v;
12468         {
12469             void *ptr;
12470             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBTimer, 0) == -1) {
12471                 _v = 0;
12472                 PyErr_Clear();
12473             }else {
12474                 _v = 1;
12475             }
12476         }
12477         if (_v) {
12478             {
12479                 void *ptr;
12480                 if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_timeval, 0) == -1) {
12481                     _v = 0;
12482                     PyErr_Clear();
12483                 }else {
12484                     _v = 1;
12485                 }
12486             }
12487             if (_v) {
12488                 return _wrap_OBTimer_setTimeout__SWIG_1(self,args);
12489             }
12490         }
12491     }
12492     if (argc == 2) {
12493         int _v;
12494         {
12495             void *ptr;
12496             if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_otk__OBTimer, 0) == -1) {
12497                 _v = 0;
12498                 PyErr_Clear();
12499             }else {
12500                 _v = 1;
12501             }
12502         }
12503         if (_v) {
12504             {
12505                 _v = (PyInt_Check(argv[1]) || PyLong_Check(argv[1])) ? 1 : 0;
12506             }
12507             if (_v) {
12508                 return _wrap_OBTimer_setTimeout__SWIG_0(self,args);
12509             }
12510         }
12511     }
12512     
12513     PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'OBTimer_setTimeout'");
12514     return NULL;
12515 }
12516
12517
12518 static PyObject *_wrap_OBTimer_start(PyObject *self, PyObject *args) {
12519     PyObject *resultobj;
12520     otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12521     PyObject * obj0  = 0 ;
12522     
12523     if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_start",&obj0)) goto fail;
12524     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12525     (arg1)->start();
12526     
12527     Py_INCREF(Py_None); resultobj = Py_None;
12528     return resultobj;
12529     fail:
12530     return NULL;
12531 }
12532
12533
12534 static PyObject *_wrap_OBTimer_stop(PyObject *self, PyObject *args) {
12535     PyObject *resultobj;
12536     otk::OBTimer *arg1 = (otk::OBTimer *) 0 ;
12537     PyObject * obj0  = 0 ;
12538     
12539     if(!PyArg_ParseTuple(args,(char *)"O:OBTimer_stop",&obj0)) goto fail;
12540     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12541     (arg1)->stop();
12542     
12543     Py_INCREF(Py_None); resultobj = Py_None;
12544     return resultobj;
12545     fail:
12546     return NULL;
12547 }
12548
12549
12550 static PyObject * OBTimer_swigregister(PyObject *self, PyObject *args) {
12551     PyObject *obj;
12552     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
12553     SWIG_TypeClientData(SWIGTYPE_p_otk__OBTimer, obj);
12554     Py_INCREF(obj);
12555     return Py_BuildValue((char *)"");
12556 }
12557 static PyObject *_wrap_new_OBTimerQueueManager(PyObject *self, PyObject *args) {
12558     PyObject *resultobj;
12559     otk::OBTimerQueueManager *result;
12560     
12561     if(!PyArg_ParseTuple(args,(char *)":new_OBTimerQueueManager")) goto fail;
12562     result = (otk::OBTimerQueueManager *)new otk::OBTimerQueueManager();
12563     
12564     resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_otk__OBTimerQueueManager, 1);
12565     return resultobj;
12566     fail:
12567     return NULL;
12568 }
12569
12570
12571 static PyObject *_wrap_delete_OBTimerQueueManager(PyObject *self, PyObject *args) {
12572     PyObject *resultobj;
12573     otk::OBTimerQueueManager *arg1 = (otk::OBTimerQueueManager *) 0 ;
12574     PyObject * obj0  = 0 ;
12575     
12576     if(!PyArg_ParseTuple(args,(char *)"O:delete_OBTimerQueueManager",&obj0)) goto fail;
12577     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimerQueueManager,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12578     delete arg1;
12579     
12580     Py_INCREF(Py_None); resultobj = Py_None;
12581     return resultobj;
12582     fail:
12583     return NULL;
12584 }
12585
12586
12587 static PyObject *_wrap_OBTimerQueueManager_fire(PyObject *self, PyObject *args) {
12588     PyObject *resultobj;
12589     otk::OBTimerQueueManager *arg1 = (otk::OBTimerQueueManager *) 0 ;
12590     PyObject * obj0  = 0 ;
12591     
12592     if(!PyArg_ParseTuple(args,(char *)"O:OBTimerQueueManager_fire",&obj0)) goto fail;
12593     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimerQueueManager,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12594     (arg1)->fire();
12595     
12596     Py_INCREF(Py_None); resultobj = Py_None;
12597     return resultobj;
12598     fail:
12599     return NULL;
12600 }
12601
12602
12603 static PyObject *_wrap_OBTimerQueueManager_addTimer(PyObject *self, PyObject *args) {
12604     PyObject *resultobj;
12605     otk::OBTimerQueueManager *arg1 = (otk::OBTimerQueueManager *) 0 ;
12606     otk::OBTimer *arg2 = (otk::OBTimer *) 0 ;
12607     PyObject * obj0  = 0 ;
12608     PyObject * obj1  = 0 ;
12609     
12610     if(!PyArg_ParseTuple(args,(char *)"OO:OBTimerQueueManager_addTimer",&obj0,&obj1)) goto fail;
12611     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimerQueueManager,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12612     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12613     (arg1)->addTimer(arg2);
12614     
12615     Py_INCREF(Py_None); resultobj = Py_None;
12616     return resultobj;
12617     fail:
12618     return NULL;
12619 }
12620
12621
12622 static PyObject *_wrap_OBTimerQueueManager_removeTimer(PyObject *self, PyObject *args) {
12623     PyObject *resultobj;
12624     otk::OBTimerQueueManager *arg1 = (otk::OBTimerQueueManager *) 0 ;
12625     otk::OBTimer *arg2 = (otk::OBTimer *) 0 ;
12626     PyObject * obj0  = 0 ;
12627     PyObject * obj1  = 0 ;
12628     
12629     if(!PyArg_ParseTuple(args,(char *)"OO:OBTimerQueueManager_removeTimer",&obj0,&obj1)) goto fail;
12630     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_otk__OBTimerQueueManager,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12631     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__OBTimer,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12632     (arg1)->removeTimer(arg2);
12633     
12634     Py_INCREF(Py_None); resultobj = Py_None;
12635     return resultobj;
12636     fail:
12637     return NULL;
12638 }
12639
12640
12641 static PyObject * OBTimerQueueManager_swigregister(PyObject *self, PyObject *args) {
12642     PyObject *obj;
12643     if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
12644     SWIG_TypeClientData(SWIGTYPE_p_otk__OBTimerQueueManager, obj);
12645     Py_INCREF(obj);
12646     return Py_BuildValue((char *)"");
12647 }
12648 static int _wrap_BSENTINEL_set(PyObject *_val) {
12649     PyErr_SetString(PyExc_TypeError,"Variable BSENTINEL is read-only.");
12650     return 1;
12651 }
12652
12653
12654 static PyObject *_wrap_BSENTINEL_get() {
12655     PyObject *pyobj;
12656     
12657     pyobj = PyInt_FromLong((long)otk::BSENTINEL);
12658     return pyobj;
12659 }
12660
12661
12662 static PyObject *_wrap_expandTilde(PyObject *self, PyObject *args) {
12663     PyObject *resultobj;
12664     std::string *arg1 = 0 ;
12665     std::string result;
12666     std::string temp1 ;
12667     PyObject * obj0  = 0 ;
12668     
12669     if(!PyArg_ParseTuple(args,(char *)"O:expandTilde",&obj0)) goto fail;
12670     {
12671         if (PyString_Check(obj0)) {
12672             temp1 = std::string(PyString_AsString(obj0));
12673             arg1 = &temp1;
12674         }else {
12675             SWIG_exception(SWIG_TypeError, "string expected");
12676         }
12677     }
12678     result = otk::expandTilde((std::string const &)*arg1);
12679     
12680     {
12681         resultobj = PyString_FromString((&result)->c_str());
12682     }
12683     return resultobj;
12684     fail:
12685     return NULL;
12686 }
12687
12688
12689 static PyObject *_wrap_bexec(PyObject *self, PyObject *args) {
12690     PyObject *resultobj;
12691     std::string *arg1 = 0 ;
12692     std::string *arg2 = 0 ;
12693     std::string temp1 ;
12694     std::string temp2 ;
12695     PyObject * obj0  = 0 ;
12696     PyObject * obj1  = 0 ;
12697     
12698     if(!PyArg_ParseTuple(args,(char *)"OO:bexec",&obj0,&obj1)) goto fail;
12699     {
12700         if (PyString_Check(obj0)) {
12701             temp1 = std::string(PyString_AsString(obj0));
12702             arg1 = &temp1;
12703         }else {
12704             SWIG_exception(SWIG_TypeError, "string expected");
12705         }
12706     }
12707     {
12708         if (PyString_Check(obj1)) {
12709             temp2 = std::string(PyString_AsString(obj1));
12710             arg2 = &temp2;
12711         }else {
12712             SWIG_exception(SWIG_TypeError, "string expected");
12713         }
12714     }
12715     otk::bexec((std::string const &)*arg1,(std::string const &)*arg2);
12716     
12717     Py_INCREF(Py_None); resultobj = Py_None;
12718     return resultobj;
12719     fail:
12720     return NULL;
12721 }
12722
12723
12724 static PyObject *_wrap_textPropertyToString(PyObject *self, PyObject *args) {
12725     PyObject *resultobj;
12726     Display *arg1 = (Display *) 0 ;
12727     XTextProperty *arg2 = 0 ;
12728     std::string result;
12729     PyObject * obj0  = 0 ;
12730     PyObject * obj1  = 0 ;
12731     
12732     if(!PyArg_ParseTuple(args,(char *)"OO:textPropertyToString",&obj0,&obj1)) goto fail;
12733     if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_Display,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12734     if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XTextProperty,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
12735     if (arg2 == NULL) {
12736         PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; 
12737     }
12738     result = otk::textPropertyToString(arg1,*arg2);
12739     
12740     {
12741         resultobj = PyString_FromString((&result)->c_str());
12742     }
12743     return resultobj;
12744     fail:
12745     return NULL;
12746 }
12747
12748
12749 static PyObject *_wrap_itostring_unsigned_long(PyObject *self, PyObject *args) {
12750     PyObject *resultobj;
12751     unsigned long arg1 ;
12752     std::string result;
12753     PyObject * obj0  = 0 ;
12754     
12755     if(!PyArg_ParseTuple(args,(char *)"O:itostring_unsigned_long",&obj0)) goto fail;
12756     arg1 = (unsigned long) PyInt_AsLong(obj0);
12757     if (PyErr_Occurred()) SWIG_fail;
12758     result = otk::itostring(arg1);
12759     
12760     {
12761         resultobj = PyString_FromString((&result)->c_str());
12762     }
12763     return resultobj;
12764     fail:
12765     return NULL;
12766 }
12767
12768
12769 static PyObject *_wrap_itostring_long(PyObject *self, PyObject *args) {
12770     PyObject *resultobj;
12771     long arg1 ;
12772     std::string result;
12773     
12774     if(!PyArg_ParseTuple(args,(char *)"l:itostring_long",&arg1)) goto fail;
12775     result = otk::itostring(arg1);
12776     
12777     {
12778         resultobj = PyString_FromString((&result)->c_str());
12779     }
12780     return resultobj;
12781     fail:
12782     return NULL;
12783 }
12784
12785
12786 static PyObject *_wrap_itostring_unsigned(PyObject *self, PyObject *args) {
12787     PyObject *resultobj;
12788     unsigned int arg1 ;
12789     std::string result;
12790     PyObject * obj0  = 0 ;
12791     
12792     if(!PyArg_ParseTuple(args,(char *)"O:itostring_unsigned",&obj0)) goto fail;
12793     arg1 = (unsigned int) PyInt_AsLong(obj0);
12794     if (PyErr_Occurred()) SWIG_fail;
12795     result = otk::itostring(arg1);
12796     
12797     {
12798         resultobj = PyString_FromString((&result)->c_str());
12799     }
12800     return resultobj;
12801     fail:
12802     return NULL;
12803 }
12804
12805
12806 static PyObject *_wrap_itostring(PyObject *self, PyObject *args) {
12807     PyObject *resultobj;
12808     int arg1 ;
12809     std::string result;
12810     
12811     if(!PyArg_ParseTuple(args,(char *)"i:itostring",&arg1)) goto fail;
12812     result = otk::itostring(arg1);
12813     
12814     {
12815         resultobj = PyString_FromString((&result)->c_str());
12816     }
12817     return resultobj;
12818     fail:
12819     return NULL;
12820 }
12821
12822
12823 static PyObject *_wrap_basename(PyObject *self, PyObject *args) {
12824     PyObject *resultobj;
12825     std::string *arg1 = 0 ;
12826     std::string result;
12827     std::string temp1 ;
12828     PyObject * obj0  = 0 ;
12829     
12830     if(!PyArg_ParseTuple(args,(char *)"O:basename",&obj0)) goto fail;
12831     {
12832         if (PyString_Check(obj0)) {
12833             temp1 = std::string(PyString_AsString(obj0));
12834             arg1 = &temp1;
12835         }else {
12836             SWIG_exception(SWIG_TypeError, "string expected");
12837         }
12838     }
12839     result = otk::basename((std::string const &)*arg1);
12840     
12841     {
12842         resultobj = PyString_FromString((&result)->c_str());
12843     }
12844     return resultobj;
12845     fail:
12846     return NULL;
12847 }
12848
12849
12850 static PyMethodDef SwigMethods[] = {
12851          { (char *)"new_OtkEventDispatcher", _wrap_new_OtkEventDispatcher, METH_VARARGS },
12852          { (char *)"delete_OtkEventDispatcher", _wrap_delete_OtkEventDispatcher, METH_VARARGS },
12853          { (char *)"OtkEventDispatcher_clearAllHandlers", _wrap_OtkEventDispatcher_clearAllHandlers, METH_VARARGS },
12854          { (char *)"OtkEventDispatcher_registerHandler", _wrap_OtkEventDispatcher_registerHandler, METH_VARARGS },
12855          { (char *)"OtkEventDispatcher_clearHandler", _wrap_OtkEventDispatcher_clearHandler, METH_VARARGS },
12856          { (char *)"OtkEventDispatcher_dispatchEvents", _wrap_OtkEventDispatcher_dispatchEvents, METH_VARARGS },
12857          { (char *)"OtkEventDispatcher_setFallbackHandler", _wrap_OtkEventDispatcher_setFallbackHandler, METH_VARARGS },
12858          { (char *)"OtkEventDispatcher_getFallbackHandler", _wrap_OtkEventDispatcher_getFallbackHandler, METH_VARARGS },
12859          { (char *)"OtkEventDispatcher_setMasterHandler", _wrap_OtkEventDispatcher_setMasterHandler, METH_VARARGS },
12860          { (char *)"OtkEventDispatcher_getMasterHandler", _wrap_OtkEventDispatcher_getMasterHandler, METH_VARARGS },
12861          { (char *)"OtkEventDispatcher_findHandler", _wrap_OtkEventDispatcher_findHandler, METH_VARARGS },
12862          { (char *)"OtkEventDispatcher_lastTime", _wrap_OtkEventDispatcher_lastTime, METH_VARARGS },
12863          { (char *)"OtkEventDispatcher_swigregister", OtkEventDispatcher_swigregister, METH_VARARGS },
12864          { (char *)"OtkEventHandler_handle", _wrap_OtkEventHandler_handle, METH_VARARGS },
12865          { (char *)"OtkEventHandler_keyPressHandler", _wrap_OtkEventHandler_keyPressHandler, METH_VARARGS },
12866          { (char *)"OtkEventHandler_keyReleaseHandler", _wrap_OtkEventHandler_keyReleaseHandler, METH_VARARGS },
12867          { (char *)"OtkEventHandler_buttonPressHandler", _wrap_OtkEventHandler_buttonPressHandler, METH_VARARGS },
12868          { (char *)"OtkEventHandler_buttonReleaseHandler", _wrap_OtkEventHandler_buttonReleaseHandler, METH_VARARGS },
12869          { (char *)"OtkEventHandler_motionHandler", _wrap_OtkEventHandler_motionHandler, METH_VARARGS },
12870          { (char *)"OtkEventHandler_enterHandler", _wrap_OtkEventHandler_enterHandler, METH_VARARGS },
12871          { (char *)"OtkEventHandler_leaveHandler", _wrap_OtkEventHandler_leaveHandler, METH_VARARGS },
12872          { (char *)"OtkEventHandler_focusHandler", _wrap_OtkEventHandler_focusHandler, METH_VARARGS },
12873          { (char *)"OtkEventHandler_unfocusHandler", _wrap_OtkEventHandler_unfocusHandler, METH_VARARGS },
12874          { (char *)"OtkEventHandler_exposeHandler", _wrap_OtkEventHandler_exposeHandler, METH_VARARGS },
12875          { (char *)"OtkEventHandler_graphicsExposeHandler", _wrap_OtkEventHandler_graphicsExposeHandler, METH_VARARGS },
12876          { (char *)"OtkEventHandler_noExposeEventHandler", _wrap_OtkEventHandler_noExposeEventHandler, METH_VARARGS },
12877          { (char *)"OtkEventHandler_circulateRequestHandler", _wrap_OtkEventHandler_circulateRequestHandler, METH_VARARGS },
12878          { (char *)"OtkEventHandler_configureRequestHandler", _wrap_OtkEventHandler_configureRequestHandler, METH_VARARGS },
12879          { (char *)"OtkEventHandler_mapRequestHandler", _wrap_OtkEventHandler_mapRequestHandler, METH_VARARGS },
12880          { (char *)"OtkEventHandler_resizeRequestHandler", _wrap_OtkEventHandler_resizeRequestHandler, METH_VARARGS },
12881          { (char *)"OtkEventHandler_circulateHandler", _wrap_OtkEventHandler_circulateHandler, METH_VARARGS },
12882          { (char *)"OtkEventHandler_configureHandler", _wrap_OtkEventHandler_configureHandler, METH_VARARGS },
12883          { (char *)"OtkEventHandler_createHandler", _wrap_OtkEventHandler_createHandler, METH_VARARGS },
12884          { (char *)"OtkEventHandler_destroyHandler", _wrap_OtkEventHandler_destroyHandler, METH_VARARGS },
12885          { (char *)"OtkEventHandler_gravityHandler", _wrap_OtkEventHandler_gravityHandler, METH_VARARGS },
12886          { (char *)"OtkEventHandler_mapHandler", _wrap_OtkEventHandler_mapHandler, METH_VARARGS },
12887          { (char *)"OtkEventHandler_mappingHandler", _wrap_OtkEventHandler_mappingHandler, METH_VARARGS },
12888          { (char *)"OtkEventHandler_reparentHandler", _wrap_OtkEventHandler_reparentHandler, METH_VARARGS },
12889          { (char *)"OtkEventHandler_unmapHandler", _wrap_OtkEventHandler_unmapHandler, METH_VARARGS },
12890          { (char *)"OtkEventHandler_visibilityHandler", _wrap_OtkEventHandler_visibilityHandler, METH_VARARGS },
12891          { (char *)"OtkEventHandler_colorMapHandler", _wrap_OtkEventHandler_colorMapHandler, METH_VARARGS },
12892          { (char *)"OtkEventHandler_propertyHandler", _wrap_OtkEventHandler_propertyHandler, METH_VARARGS },
12893          { (char *)"OtkEventHandler_selectionClearHandler", _wrap_OtkEventHandler_selectionClearHandler, METH_VARARGS },
12894          { (char *)"OtkEventHandler_selectionHandler", _wrap_OtkEventHandler_selectionHandler, METH_VARARGS },
12895          { (char *)"OtkEventHandler_selectionRequestHandler", _wrap_OtkEventHandler_selectionRequestHandler, METH_VARARGS },
12896          { (char *)"OtkEventHandler_clientMessageHandler", _wrap_OtkEventHandler_clientMessageHandler, METH_VARARGS },
12897          { (char *)"delete_OtkEventHandler", _wrap_delete_OtkEventHandler, METH_VARARGS },
12898          { (char *)"OtkEventHandler_swigregister", OtkEventHandler_swigregister, METH_VARARGS },
12899          { (char *)"new_OtkWidget", _wrap_new_OtkWidget, METH_VARARGS },
12900          { (char *)"delete_OtkWidget", _wrap_delete_OtkWidget, METH_VARARGS },
12901          { (char *)"OtkWidget_update", _wrap_OtkWidget_update, METH_VARARGS },
12902          { (char *)"OtkWidget_exposeHandler", _wrap_OtkWidget_exposeHandler, METH_VARARGS },
12903          { (char *)"OtkWidget_configureHandler", _wrap_OtkWidget_configureHandler, METH_VARARGS },
12904          { (char *)"OtkWidget_window", _wrap_OtkWidget_window, METH_VARARGS },
12905          { (char *)"OtkWidget_parent", _wrap_OtkWidget_parent, METH_VARARGS },
12906          { (char *)"OtkWidget_children", _wrap_OtkWidget_children, METH_VARARGS },
12907          { (char *)"OtkWidget_screen", _wrap_OtkWidget_screen, METH_VARARGS },
12908          { (char *)"OtkWidget_rect", _wrap_OtkWidget_rect, METH_VARARGS },
12909          { (char *)"OtkWidget_move", _wrap_OtkWidget_move, METH_VARARGS },
12910          { (char *)"OtkWidget_setWidth", _wrap_OtkWidget_setWidth, METH_VARARGS },
12911          { (char *)"OtkWidget_setHeight", _wrap_OtkWidget_setHeight, METH_VARARGS },
12912          { (char *)"OtkWidget_width", _wrap_OtkWidget_width, METH_VARARGS },
12913          { (char *)"OtkWidget_height", _wrap_OtkWidget_height, METH_VARARGS },
12914          { (char *)"OtkWidget_resize", _wrap_OtkWidget_resize, METH_VARARGS },
12915          { (char *)"OtkWidget_setGeometry", _wrap_OtkWidget_setGeometry, METH_VARARGS },
12916          { (char *)"OtkWidget_isVisible", _wrap_OtkWidget_isVisible, METH_VARARGS },
12917          { (char *)"OtkWidget_show", _wrap_OtkWidget_show, METH_VARARGS },
12918          { (char *)"OtkWidget_hide", _wrap_OtkWidget_hide, METH_VARARGS },
12919          { (char *)"OtkWidget_isFocused", _wrap_OtkWidget_isFocused, METH_VARARGS },
12920          { (char *)"OtkWidget_focus", _wrap_OtkWidget_focus, METH_VARARGS },
12921          { (char *)"OtkWidget_unfocus", _wrap_OtkWidget_unfocus, METH_VARARGS },
12922          { (char *)"OtkWidget_hasGrabbedMouse", _wrap_OtkWidget_hasGrabbedMouse, METH_VARARGS },
12923          { (char *)"OtkWidget_grabMouse", _wrap_OtkWidget_grabMouse, METH_VARARGS },
12924          { (char *)"OtkWidget_ungrabMouse", _wrap_OtkWidget_ungrabMouse, METH_VARARGS },
12925          { (char *)"OtkWidget_hasGrabbedKeyboard", _wrap_OtkWidget_hasGrabbedKeyboard, METH_VARARGS },
12926          { (char *)"OtkWidget_grabKeyboard", _wrap_OtkWidget_grabKeyboard, METH_VARARGS },
12927          { (char *)"OtkWidget_ungrabKeyboard", _wrap_OtkWidget_ungrabKeyboard, METH_VARARGS },
12928          { (char *)"OtkWidget_texture", _wrap_OtkWidget_texture, METH_VARARGS },
12929          { (char *)"OtkWidget_setTexture", _wrap_OtkWidget_setTexture, METH_VARARGS },
12930          { (char *)"OtkWidget_borderColor", _wrap_OtkWidget_borderColor, METH_VARARGS },
12931          { (char *)"OtkWidget_setBorderColor", _wrap_OtkWidget_setBorderColor, METH_VARARGS },
12932          { (char *)"OtkWidget_borderWidth", _wrap_OtkWidget_borderWidth, METH_VARARGS },
12933          { (char *)"OtkWidget_setBorderWidth", _wrap_OtkWidget_setBorderWidth, METH_VARARGS },
12934          { (char *)"OtkWidget_addChild", _wrap_OtkWidget_addChild, METH_VARARGS },
12935          { (char *)"OtkWidget_removeChild", _wrap_OtkWidget_removeChild, METH_VARARGS },
12936          { (char *)"OtkWidget_isStretchableHorz", _wrap_OtkWidget_isStretchableHorz, METH_VARARGS },
12937          { (char *)"OtkWidget_setStretchableHorz", _wrap_OtkWidget_setStretchableHorz, METH_VARARGS },
12938          { (char *)"OtkWidget_isStretchableVert", _wrap_OtkWidget_isStretchableVert, METH_VARARGS },
12939          { (char *)"OtkWidget_setStretchableVert", _wrap_OtkWidget_setStretchableVert, METH_VARARGS },
12940          { (char *)"OtkWidget_cursor", _wrap_OtkWidget_cursor, METH_VARARGS },
12941          { (char *)"OtkWidget_setCursor", _wrap_OtkWidget_setCursor, METH_VARARGS },
12942          { (char *)"OtkWidget_bevelWidth", _wrap_OtkWidget_bevelWidth, METH_VARARGS },
12943          { (char *)"OtkWidget_setBevelWidth", _wrap_OtkWidget_setBevelWidth, METH_VARARGS },
12944          { (char *)"OtkWidget_direction", _wrap_OtkWidget_direction, METH_VARARGS },
12945          { (char *)"OtkWidget_setDirection", _wrap_OtkWidget_setDirection, METH_VARARGS },
12946          { (char *)"OtkWidget_style", _wrap_OtkWidget_style, METH_VARARGS },
12947          { (char *)"OtkWidget_setStyle", _wrap_OtkWidget_setStyle, METH_VARARGS },
12948          { (char *)"OtkWidget_eventDispatcher", _wrap_OtkWidget_eventDispatcher, METH_VARARGS },
12949          { (char *)"OtkWidget_setEventDispatcher", _wrap_OtkWidget_setEventDispatcher, METH_VARARGS },
12950          { (char *)"OtkWidget_swigregister", OtkWidget_swigregister, METH_VARARGS },
12951          { (char *)"new_OtkFocusWidget", _wrap_new_OtkFocusWidget, METH_VARARGS },
12952          { (char *)"delete_OtkFocusWidget", _wrap_delete_OtkFocusWidget, METH_VARARGS },
12953          { (char *)"OtkFocusWidget_focus", _wrap_OtkFocusWidget_focus, METH_VARARGS },
12954          { (char *)"OtkFocusWidget_unfocus", _wrap_OtkFocusWidget_unfocus, METH_VARARGS },
12955          { (char *)"OtkFocusWidget_setTexture", _wrap_OtkFocusWidget_setTexture, METH_VARARGS },
12956          { (char *)"OtkFocusWidget_setBorderColor", _wrap_OtkFocusWidget_setBorderColor, METH_VARARGS },
12957          { (char *)"OtkFocusWidget_setUnfocusTexture", _wrap_OtkFocusWidget_setUnfocusTexture, METH_VARARGS },
12958          { (char *)"OtkFocusWidget_getUnfocusTexture", _wrap_OtkFocusWidget_getUnfocusTexture, METH_VARARGS },
12959          { (char *)"OtkFocusWidget_setUnfocusBorderColor", _wrap_OtkFocusWidget_setUnfocusBorderColor, METH_VARARGS },
12960          { (char *)"OtkFocusWidget_getUnfocusBorderColor", _wrap_OtkFocusWidget_getUnfocusBorderColor, METH_VARARGS },
12961          { (char *)"OtkFocusWidget_isFocused", _wrap_OtkFocusWidget_isFocused, METH_VARARGS },
12962          { (char *)"OtkFocusWidget_isUnfocused", _wrap_OtkFocusWidget_isUnfocused, METH_VARARGS },
12963          { (char *)"OtkFocusWidget_swigregister", OtkFocusWidget_swigregister, METH_VARARGS },
12964          { (char *)"new_OtkFocusLabel", _wrap_new_OtkFocusLabel, METH_VARARGS },
12965          { (char *)"delete_OtkFocusLabel", _wrap_delete_OtkFocusLabel, METH_VARARGS },
12966          { (char *)"OtkFocusLabel_getText", _wrap_OtkFocusLabel_getText, METH_VARARGS },
12967          { (char *)"OtkFocusLabel_setText", _wrap_OtkFocusLabel_setText, METH_VARARGS },
12968          { (char *)"OtkFocusLabel_update", _wrap_OtkFocusLabel_update, METH_VARARGS },
12969          { (char *)"OtkFocusLabel_setStyle", _wrap_OtkFocusLabel_setStyle, METH_VARARGS },
12970          { (char *)"OtkFocusLabel_swigregister", OtkFocusLabel_swigregister, METH_VARARGS },
12971          { (char *)"new_OtkAppWidget", _wrap_new_OtkAppWidget, METH_VARARGS },
12972          { (char *)"delete_OtkAppWidget", _wrap_delete_OtkAppWidget, METH_VARARGS },
12973          { (char *)"OtkAppWidget_show", _wrap_OtkAppWidget_show, METH_VARARGS },
12974          { (char *)"OtkAppWidget_hide", _wrap_OtkAppWidget_hide, METH_VARARGS },
12975          { (char *)"OtkAppWidget_clientMessageHandler", _wrap_OtkAppWidget_clientMessageHandler, METH_VARARGS },
12976          { (char *)"OtkAppWidget_swigregister", OtkAppWidget_swigregister, METH_VARARGS },
12977          { (char *)"new_OtkApplication", _wrap_new_OtkApplication, METH_VARARGS },
12978          { (char *)"delete_OtkApplication", _wrap_delete_OtkApplication, METH_VARARGS },
12979          { (char *)"OtkApplication_run", _wrap_OtkApplication_run, METH_VARARGS },
12980          { (char *)"OtkApplication_setDockable", _wrap_OtkApplication_setDockable, METH_VARARGS },
12981          { (char *)"OtkApplication_isDockable", _wrap_OtkApplication_isDockable, METH_VARARGS },
12982          { (char *)"OtkApplication_getStyle", _wrap_OtkApplication_getStyle, METH_VARARGS },
12983          { (char *)"OtkApplication_swigregister", OtkApplication_swigregister, METH_VARARGS },
12984          { (char *)"new_PointerAssassin", _wrap_new_PointerAssassin, METH_VARARGS },
12985          { (char *)"delete_PointerAssassin", _wrap_delete_PointerAssassin, METH_VARARGS },
12986          { (char *)"PointerAssassin_swigregister", PointerAssassin_swigregister, METH_VARARGS },
12987          { (char *)"new_OtkButton", _wrap_new_OtkButton, METH_VARARGS },
12988          { (char *)"delete_OtkButton", _wrap_delete_OtkButton, METH_VARARGS },
12989          { (char *)"OtkButton_getPressedFocusTexture", _wrap_OtkButton_getPressedFocusTexture, METH_VARARGS },
12990          { (char *)"OtkButton_setPressedFocusTexture", _wrap_OtkButton_setPressedFocusTexture, METH_VARARGS },
12991          { (char *)"OtkButton_getPressedUnfocusTexture", _wrap_OtkButton_getPressedUnfocusTexture, METH_VARARGS },
12992          { (char *)"OtkButton_setPressedUnfocusTexture", _wrap_OtkButton_setPressedUnfocusTexture, METH_VARARGS },
12993          { (char *)"OtkButton_setTexture", _wrap_OtkButton_setTexture, METH_VARARGS },
12994          { (char *)"OtkButton_setUnfocusTexture", _wrap_OtkButton_setUnfocusTexture, METH_VARARGS },
12995          { (char *)"OtkButton_isPressed", _wrap_OtkButton_isPressed, METH_VARARGS },
12996          { (char *)"OtkButton_press", _wrap_OtkButton_press, METH_VARARGS },
12997          { (char *)"OtkButton_release", _wrap_OtkButton_release, METH_VARARGS },
12998          { (char *)"OtkButton_buttonPressHandler", _wrap_OtkButton_buttonPressHandler, METH_VARARGS },
12999          { (char *)"OtkButton_buttonReleaseHandler", _wrap_OtkButton_buttonReleaseHandler, METH_VARARGS },
13000          { (char *)"OtkButton_setStyle", _wrap_OtkButton_setStyle, METH_VARARGS },
13001          { (char *)"OtkButton_swigregister", OtkButton_swigregister, METH_VARARGS },
13002          { (char *)"new_BColor", _wrap_new_BColor, METH_VARARGS },
13003          { (char *)"delete_BColor", _wrap_delete_BColor, METH_VARARGS },
13004          { (char *)"BColor_name", _wrap_BColor_name, METH_VARARGS },
13005          { (char *)"BColor_red", _wrap_BColor_red, METH_VARARGS },
13006          { (char *)"BColor_green", _wrap_BColor_green, METH_VARARGS },
13007          { (char *)"BColor_blue", _wrap_BColor_blue, METH_VARARGS },
13008          { (char *)"BColor_setRGB", _wrap_BColor_setRGB, METH_VARARGS },
13009          { (char *)"BColor_screen", _wrap_BColor_screen, METH_VARARGS },
13010          { (char *)"BColor_setScreen", _wrap_BColor_setScreen, METH_VARARGS },
13011          { (char *)"BColor_isAllocated", _wrap_BColor_isAllocated, METH_VARARGS },
13012          { (char *)"BColor_isValid", _wrap_BColor_isValid, METH_VARARGS },
13013          { (char *)"BColor_pixel", _wrap_BColor_pixel, METH_VARARGS },
13014          { (char *)"BColor_equals", _wrap_BColor_equals, METH_VARARGS },
13015          { (char *)"BColor_cleanupColorCache", _wrap_BColor_cleanupColorCache, METH_VARARGS },
13016          { (char *)"BColor_swigregister", BColor_swigregister, METH_VARARGS },
13017          { (char *)"new_Configuration", _wrap_new_Configuration, METH_VARARGS },
13018          { (char *)"delete_Configuration", _wrap_delete_Configuration, METH_VARARGS },
13019          { (char *)"Configuration_file", _wrap_Configuration_file, METH_VARARGS },
13020          { (char *)"Configuration_setFile", _wrap_Configuration_setFile, METH_VARARGS },
13021          { (char *)"Configuration_autoSave", _wrap_Configuration_autoSave, METH_VARARGS },
13022          { (char *)"Configuration_setAutoSave", _wrap_Configuration_setAutoSave, METH_VARARGS },
13023          { (char *)"Configuration_isModified", _wrap_Configuration_isModified, METH_VARARGS },
13024          { (char *)"Configuration_save", _wrap_Configuration_save, METH_VARARGS },
13025          { (char *)"Configuration_load", _wrap_Configuration_load, METH_VARARGS },
13026          { (char *)"Configuration_merge", _wrap_Configuration_merge, METH_VARARGS },
13027          { (char *)"Configuration_create", _wrap_Configuration_create, METH_VARARGS },
13028          { (char *)"Configuration_setValue_bool", _wrap_Configuration_setValue_bool, METH_VARARGS },
13029          { (char *)"Configuration_setValue", _wrap_Configuration_setValue, METH_VARARGS },
13030          { (char *)"Configuration_setValue_unsigned", _wrap_Configuration_setValue_unsigned, METH_VARARGS },
13031          { (char *)"Configuration_setValue_long", _wrap_Configuration_setValue_long, METH_VARARGS },
13032          { (char *)"Configuration_setValue_unsignedlong", _wrap_Configuration_setValue_unsignedlong, METH_VARARGS },
13033          { (char *)"Configuration_setValue_string", _wrap_Configuration_setValue_string, METH_VARARGS },
13034          { (char *)"Configuration_setValue_charptr", _wrap_Configuration_setValue_charptr, METH_VARARGS },
13035          { (char *)"Configuration_getValue", _wrap_Configuration_getValue, METH_VARARGS },
13036          { (char *)"Configuration_swigregister", Configuration_swigregister, METH_VARARGS },
13037          { (char *)"OBDisplay_initialize", _wrap_OBDisplay_initialize, METH_VARARGS },
13038          { (char *)"OBDisplay_destroy", _wrap_OBDisplay_destroy, METH_VARARGS },
13039          { (char *)"OBDisplay_gcCache", _wrap_OBDisplay_gcCache, METH_VARARGS },
13040          { (char *)"OBDisplay_screenInfo", _wrap_OBDisplay_screenInfo, METH_VARARGS },
13041          { (char *)"OBDisplay_shape", _wrap_OBDisplay_shape, METH_VARARGS },
13042          { (char *)"OBDisplay_shapeEventBase", _wrap_OBDisplay_shapeEventBase, METH_VARARGS },
13043          { (char *)"OBDisplay_xinerama", _wrap_OBDisplay_xinerama, METH_VARARGS },
13044          { (char *)"OBDisplay_grab", _wrap_OBDisplay_grab, METH_VARARGS },
13045          { (char *)"OBDisplay_ungrab", _wrap_OBDisplay_ungrab, METH_VARARGS },
13046          { (char *)"OBDisplay_grabButton", _wrap_OBDisplay_grabButton, METH_VARARGS },
13047          { (char *)"OBDisplay_ungrabButton", _wrap_OBDisplay_ungrabButton, METH_VARARGS },
13048          { (char *)"OBDisplay_grabKey", _wrap_OBDisplay_grabKey, METH_VARARGS },
13049          { (char *)"OBDisplay_ungrabKey", _wrap_OBDisplay_ungrabKey, METH_VARARGS },
13050          { (char *)"delete_OBDisplay", _wrap_delete_OBDisplay, METH_VARARGS },
13051          { (char *)"OBDisplay_swigregister", OBDisplay_swigregister, METH_VARARGS },
13052          { (char *)"BFont_fallbackFont", _wrap_BFont_fallbackFont, METH_VARARGS },
13053          { (char *)"BFont_setFallbackFont", _wrap_BFont_setFallbackFont, METH_VARARGS },
13054          { (char *)"new_BFont", _wrap_new_BFont, METH_VARARGS },
13055          { (char *)"delete_BFont", _wrap_delete_BFont, METH_VARARGS },
13056          { (char *)"BFont_fontstring", _wrap_BFont_fontstring, METH_VARARGS },
13057          { (char *)"BFont_height", _wrap_BFont_height, METH_VARARGS },
13058          { (char *)"BFont_maxCharWidth", _wrap_BFont_maxCharWidth, METH_VARARGS },
13059          { (char *)"BFont_measureString", _wrap_BFont_measureString, METH_VARARGS },
13060          { (char *)"BFont_drawString", _wrap_BFont_drawString, METH_VARARGS },
13061          { (char *)"BFont_swigregister", BFont_swigregister, METH_VARARGS },
13062          { (char *)"BGCCacheContext_set", _wrap_BGCCacheContext_set, METH_VARARGS },
13063          { (char *)"delete_BGCCacheContext", _wrap_delete_BGCCacheContext, METH_VARARGS },
13064          { (char *)"BGCCacheContext_swigregister", BGCCacheContext_swigregister, METH_VARARGS },
13065          { (char *)"BGCCacheItem_gc", _wrap_BGCCacheItem_gc, METH_VARARGS },
13066          { (char *)"delete_BGCCacheItem", _wrap_delete_BGCCacheItem, METH_VARARGS },
13067          { (char *)"BGCCacheItem_swigregister", BGCCacheItem_swigregister, METH_VARARGS },
13068          { (char *)"new_BGCCache", _wrap_new_BGCCache, METH_VARARGS },
13069          { (char *)"delete_BGCCache", _wrap_delete_BGCCache, METH_VARARGS },
13070          { (char *)"BGCCache_purge", _wrap_BGCCache_purge, METH_VARARGS },
13071          { (char *)"BGCCache_find", _wrap_BGCCache_find, METH_VARARGS },
13072          { (char *)"BGCCache_release", _wrap_BGCCache_release, METH_VARARGS },
13073          { (char *)"BGCCache_swigregister", BGCCache_swigregister, METH_VARARGS },
13074          { (char *)"new_BPen", _wrap_new_BPen, METH_VARARGS },
13075          { (char *)"delete_BPen", _wrap_delete_BPen, METH_VARARGS },
13076          { (char *)"BPen_gc", _wrap_BPen_gc, METH_VARARGS },
13077          { (char *)"BPen_swigregister", BPen_swigregister, METH_VARARGS },
13078          { (char *)"new_BImage", _wrap_new_BImage, METH_VARARGS },
13079          { (char *)"delete_BImage", _wrap_delete_BImage, METH_VARARGS },
13080          { (char *)"BImage_render", _wrap_BImage_render, METH_VARARGS },
13081          { (char *)"BImage_swigregister", BImage_swigregister, METH_VARARGS },
13082          { (char *)"new_BImageControl", _wrap_new_BImageControl, METH_VARARGS },
13083          { (char *)"delete_BImageControl", _wrap_delete_BImageControl, METH_VARARGS },
13084          { (char *)"BImageControl_doDither", _wrap_BImageControl_doDither, METH_VARARGS },
13085          { (char *)"BImageControl_getScreenInfo", _wrap_BImageControl_getScreenInfo, METH_VARARGS },
13086          { (char *)"BImageControl_getDrawable", _wrap_BImageControl_getDrawable, METH_VARARGS },
13087          { (char *)"BImageControl_getVisual", _wrap_BImageControl_getVisual, METH_VARARGS },
13088          { (char *)"BImageControl_getBitsPerPixel", _wrap_BImageControl_getBitsPerPixel, METH_VARARGS },
13089          { (char *)"BImageControl_getDepth", _wrap_BImageControl_getDepth, METH_VARARGS },
13090          { (char *)"BImageControl_getColorsPerChannel", _wrap_BImageControl_getColorsPerChannel, METH_VARARGS },
13091          { (char *)"BImageControl_getSqrt", _wrap_BImageControl_getSqrt, METH_VARARGS },
13092          { (char *)"BImageControl_renderImage", _wrap_BImageControl_renderImage, METH_VARARGS },
13093          { (char *)"BImageControl_installRootColormap", _wrap_BImageControl_installRootColormap, METH_VARARGS },
13094          { (char *)"BImageControl_removeImage", _wrap_BImageControl_removeImage, METH_VARARGS },
13095          { (char *)"BImageControl_getColorTables", _wrap_BImageControl_getColorTables, METH_VARARGS },
13096          { (char *)"BImageControl_getXColorTable", _wrap_BImageControl_getXColorTable, METH_VARARGS },
13097          { (char *)"BImageControl_getGradientBuffers", _wrap_BImageControl_getGradientBuffers, METH_VARARGS },
13098          { (char *)"BImageControl_setDither", _wrap_BImageControl_setDither, METH_VARARGS },
13099          { (char *)"BImageControl_setColorsPerChannel", _wrap_BImageControl_setColorsPerChannel, METH_VARARGS },
13100          { (char *)"BImageControl_timeout", _wrap_BImageControl_timeout, METH_VARARGS },
13101          { (char *)"BImageControl_swigregister", BImageControl_swigregister, METH_VARARGS },
13102          { (char *)"new_Point", _wrap_new_Point, METH_VARARGS },
13103          { (char *)"Point_setX", _wrap_Point_setX, METH_VARARGS },
13104          { (char *)"Point_x", _wrap_Point_x, METH_VARARGS },
13105          { (char *)"Point_setY", _wrap_Point_setY, METH_VARARGS },
13106          { (char *)"Point_y", _wrap_Point_y, METH_VARARGS },
13107          { (char *)"Point_setPoint", _wrap_Point_setPoint, METH_VARARGS },
13108          { (char *)"delete_Point", _wrap_delete_Point, METH_VARARGS },
13109          { (char *)"Point_swigregister", Point_swigregister, METH_VARARGS },
13110          { (char *)"new_OBProperty", _wrap_new_OBProperty, METH_VARARGS },
13111          { (char *)"delete_OBProperty", _wrap_delete_OBProperty, METH_VARARGS },
13112          { (char *)"OBProperty_set", _wrap_OBProperty_set, METH_VARARGS },
13113          { (char *)"OBProperty_get", _wrap_OBProperty_get, METH_VARARGS },
13114          { (char *)"OBProperty_erase", _wrap_OBProperty_erase, METH_VARARGS },
13115          { (char *)"OBProperty_atom", _wrap_OBProperty_atom, METH_VARARGS },
13116          { (char *)"OBProperty_swigregister", OBProperty_swigregister, METH_VARARGS },
13117          { (char *)"new_Rect", _wrap_new_Rect, METH_VARARGS },
13118          { (char *)"Rect_left", _wrap_Rect_left, METH_VARARGS },
13119          { (char *)"Rect_top", _wrap_Rect_top, METH_VARARGS },
13120          { (char *)"Rect_right", _wrap_Rect_right, METH_VARARGS },
13121          { (char *)"Rect_bottom", _wrap_Rect_bottom, METH_VARARGS },
13122          { (char *)"Rect_x", _wrap_Rect_x, METH_VARARGS },
13123          { (char *)"Rect_y", _wrap_Rect_y, METH_VARARGS },
13124          { (char *)"Rect_location", _wrap_Rect_location, METH_VARARGS },
13125          { (char *)"Rect_setX", _wrap_Rect_setX, METH_VARARGS },
13126          { (char *)"Rect_setY", _wrap_Rect_setY, METH_VARARGS },
13127          { (char *)"Rect_setPos", _wrap_Rect_setPos, METH_VARARGS },
13128          { (char *)"Rect_width", _wrap_Rect_width, METH_VARARGS },
13129          { (char *)"Rect_height", _wrap_Rect_height, METH_VARARGS },
13130          { (char *)"Rect_size", _wrap_Rect_size, METH_VARARGS },
13131          { (char *)"Rect_setWidth", _wrap_Rect_setWidth, METH_VARARGS },
13132          { (char *)"Rect_setHeight", _wrap_Rect_setHeight, METH_VARARGS },
13133          { (char *)"Rect_setSize", _wrap_Rect_setSize, METH_VARARGS },
13134          { (char *)"Rect_setRect", _wrap_Rect_setRect, METH_VARARGS },
13135          { (char *)"Rect_setCoords", _wrap_Rect_setCoords, METH_VARARGS },
13136          { (char *)"Rect_equals", _wrap_Rect_equals, METH_VARARGS },
13137          { (char *)"Rect_valid", _wrap_Rect_valid, METH_VARARGS },
13138          { (char *)"Rect_intersects", _wrap_Rect_intersects, METH_VARARGS },
13139          { (char *)"Rect_contains", _wrap_Rect_contains, METH_VARARGS },
13140          { (char *)"delete_Rect", _wrap_delete_Rect, METH_VARARGS },
13141          { (char *)"Rect_swigregister", Rect_swigregister, METH_VARARGS },
13142          { (char *)"new_ScreenInfo", _wrap_new_ScreenInfo, METH_VARARGS },
13143          { (char *)"ScreenInfo_visual", _wrap_ScreenInfo_visual, METH_VARARGS },
13144          { (char *)"ScreenInfo_rootWindow", _wrap_ScreenInfo_rootWindow, METH_VARARGS },
13145          { (char *)"ScreenInfo_colormap", _wrap_ScreenInfo_colormap, METH_VARARGS },
13146          { (char *)"ScreenInfo_depth", _wrap_ScreenInfo_depth, METH_VARARGS },
13147          { (char *)"ScreenInfo_screen", _wrap_ScreenInfo_screen, METH_VARARGS },
13148          { (char *)"ScreenInfo_rect", _wrap_ScreenInfo_rect, METH_VARARGS },
13149          { (char *)"ScreenInfo_width", _wrap_ScreenInfo_width, METH_VARARGS },
13150          { (char *)"ScreenInfo_height", _wrap_ScreenInfo_height, METH_VARARGS },
13151          { (char *)"ScreenInfo_displayString", _wrap_ScreenInfo_displayString, METH_VARARGS },
13152          { (char *)"delete_ScreenInfo", _wrap_delete_ScreenInfo, METH_VARARGS },
13153          { (char *)"ScreenInfo_swigregister", ScreenInfo_swigregister, METH_VARARGS },
13154          { (char *)"Strut_top_set", _wrap_Strut_top_set, METH_VARARGS },
13155          { (char *)"Strut_top_get", _wrap_Strut_top_get, METH_VARARGS },
13156          { (char *)"Strut_bottom_set", _wrap_Strut_bottom_set, METH_VARARGS },
13157          { (char *)"Strut_bottom_get", _wrap_Strut_bottom_get, METH_VARARGS },
13158          { (char *)"Strut_left_set", _wrap_Strut_left_set, METH_VARARGS },
13159          { (char *)"Strut_left_get", _wrap_Strut_left_get, METH_VARARGS },
13160          { (char *)"Strut_right_set", _wrap_Strut_right_set, METH_VARARGS },
13161          { (char *)"Strut_right_get", _wrap_Strut_right_get, METH_VARARGS },
13162          { (char *)"new_Strut", _wrap_new_Strut, METH_VARARGS },
13163          { (char *)"delete_Strut", _wrap_delete_Strut, METH_VARARGS },
13164          { (char *)"Strut_swigregister", Strut_swigregister, METH_VARARGS },
13165          { (char *)"PixmapMask_mask_set", _wrap_PixmapMask_mask_set, METH_VARARGS },
13166          { (char *)"PixmapMask_mask_get", _wrap_PixmapMask_mask_get, METH_VARARGS },
13167          { (char *)"PixmapMask_w_set", _wrap_PixmapMask_w_set, METH_VARARGS },
13168          { (char *)"PixmapMask_w_get", _wrap_PixmapMask_w_get, METH_VARARGS },
13169          { (char *)"PixmapMask_h_set", _wrap_PixmapMask_h_set, METH_VARARGS },
13170          { (char *)"PixmapMask_h_get", _wrap_PixmapMask_h_get, METH_VARARGS },
13171          { (char *)"new_PixmapMask", _wrap_new_PixmapMask, METH_VARARGS },
13172          { (char *)"delete_PixmapMask", _wrap_delete_PixmapMask, METH_VARARGS },
13173          { (char *)"PixmapMask_swigregister", PixmapMask_swigregister, METH_VARARGS },
13174          { (char *)"Style_image_control_set", _wrap_Style_image_control_set, METH_VARARGS },
13175          { (char *)"Style_image_control_get", _wrap_Style_image_control_get, METH_VARARGS },
13176          { (char *)"Style_l_text_focus_set", _wrap_Style_l_text_focus_set, METH_VARARGS },
13177          { (char *)"Style_l_text_focus_get", _wrap_Style_l_text_focus_get, METH_VARARGS },
13178          { (char *)"Style_l_text_unfocus_set", _wrap_Style_l_text_unfocus_set, METH_VARARGS },
13179          { (char *)"Style_l_text_unfocus_get", _wrap_Style_l_text_unfocus_get, METH_VARARGS },
13180          { (char *)"Style_b_pic_focus_set", _wrap_Style_b_pic_focus_set, METH_VARARGS },
13181          { (char *)"Style_b_pic_focus_get", _wrap_Style_b_pic_focus_get, METH_VARARGS },
13182          { (char *)"Style_b_pic_unfocus_set", _wrap_Style_b_pic_unfocus_set, METH_VARARGS },
13183          { (char *)"Style_b_pic_unfocus_get", _wrap_Style_b_pic_unfocus_get, METH_VARARGS },
13184          { (char *)"Style_border_color_set", _wrap_Style_border_color_set, METH_VARARGS },
13185          { (char *)"Style_border_color_get", _wrap_Style_border_color_get, METH_VARARGS },
13186          { (char *)"Style_font_set", _wrap_Style_font_set, METH_VARARGS },
13187          { (char *)"Style_font_get", _wrap_Style_font_get, METH_VARARGS },
13188          { (char *)"Style_f_focus_set", _wrap_Style_f_focus_set, METH_VARARGS },
13189          { (char *)"Style_f_focus_get", _wrap_Style_f_focus_get, METH_VARARGS },
13190          { (char *)"Style_f_unfocus_set", _wrap_Style_f_unfocus_set, METH_VARARGS },
13191          { (char *)"Style_f_unfocus_get", _wrap_Style_f_unfocus_get, METH_VARARGS },
13192          { (char *)"Style_t_focus_set", _wrap_Style_t_focus_set, METH_VARARGS },
13193          { (char *)"Style_t_focus_get", _wrap_Style_t_focus_get, METH_VARARGS },
13194          { (char *)"Style_t_unfocus_set", _wrap_Style_t_unfocus_set, METH_VARARGS },
13195          { (char *)"Style_t_unfocus_get", _wrap_Style_t_unfocus_get, METH_VARARGS },
13196          { (char *)"Style_l_focus_set", _wrap_Style_l_focus_set, METH_VARARGS },
13197          { (char *)"Style_l_focus_get", _wrap_Style_l_focus_get, METH_VARARGS },
13198          { (char *)"Style_l_unfocus_set", _wrap_Style_l_unfocus_set, METH_VARARGS },
13199          { (char *)"Style_l_unfocus_get", _wrap_Style_l_unfocus_get, METH_VARARGS },
13200          { (char *)"Style_h_focus_set", _wrap_Style_h_focus_set, METH_VARARGS },
13201          { (char *)"Style_h_focus_get", _wrap_Style_h_focus_get, METH_VARARGS },
13202          { (char *)"Style_h_unfocus_set", _wrap_Style_h_unfocus_set, METH_VARARGS },
13203          { (char *)"Style_h_unfocus_get", _wrap_Style_h_unfocus_get, METH_VARARGS },
13204          { (char *)"Style_b_focus_set", _wrap_Style_b_focus_set, METH_VARARGS },
13205          { (char *)"Style_b_focus_get", _wrap_Style_b_focus_get, METH_VARARGS },
13206          { (char *)"Style_b_unfocus_set", _wrap_Style_b_unfocus_set, METH_VARARGS },
13207          { (char *)"Style_b_unfocus_get", _wrap_Style_b_unfocus_get, METH_VARARGS },
13208          { (char *)"Style_b_pressed_focus_set", _wrap_Style_b_pressed_focus_set, METH_VARARGS },
13209          { (char *)"Style_b_pressed_focus_get", _wrap_Style_b_pressed_focus_get, METH_VARARGS },
13210          { (char *)"Style_b_pressed_unfocus_set", _wrap_Style_b_pressed_unfocus_set, METH_VARARGS },
13211          { (char *)"Style_b_pressed_unfocus_get", _wrap_Style_b_pressed_unfocus_get, METH_VARARGS },
13212          { (char *)"Style_g_focus_set", _wrap_Style_g_focus_set, METH_VARARGS },
13213          { (char *)"Style_g_focus_get", _wrap_Style_g_focus_get, METH_VARARGS },
13214          { (char *)"Style_g_unfocus_set", _wrap_Style_g_unfocus_set, METH_VARARGS },
13215          { (char *)"Style_g_unfocus_get", _wrap_Style_g_unfocus_get, METH_VARARGS },
13216          { (char *)"Style_close_button_set", _wrap_Style_close_button_set, METH_VARARGS },
13217          { (char *)"Style_close_button_get", _wrap_Style_close_button_get, METH_VARARGS },
13218          { (char *)"Style_max_button_set", _wrap_Style_max_button_set, METH_VARARGS },
13219          { (char *)"Style_max_button_get", _wrap_Style_max_button_get, METH_VARARGS },
13220          { (char *)"Style_icon_button_set", _wrap_Style_icon_button_set, METH_VARARGS },
13221          { (char *)"Style_icon_button_get", _wrap_Style_icon_button_get, METH_VARARGS },
13222          { (char *)"Style_stick_button_set", _wrap_Style_stick_button_set, METH_VARARGS },
13223          { (char *)"Style_stick_button_get", _wrap_Style_stick_button_get, METH_VARARGS },
13224          { (char *)"Style_justify_set", _wrap_Style_justify_set, METH_VARARGS },
13225          { (char *)"Style_justify_get", _wrap_Style_justify_get, METH_VARARGS },
13226          { (char *)"Style_bullet_type_set", _wrap_Style_bullet_type_set, METH_VARARGS },
13227          { (char *)"Style_bullet_type_get", _wrap_Style_bullet_type_get, METH_VARARGS },
13228          { (char *)"Style_handle_width_set", _wrap_Style_handle_width_set, METH_VARARGS },
13229          { (char *)"Style_handle_width_get", _wrap_Style_handle_width_get, METH_VARARGS },
13230          { (char *)"Style_bevel_width_set", _wrap_Style_bevel_width_set, METH_VARARGS },
13231          { (char *)"Style_bevel_width_get", _wrap_Style_bevel_width_get, METH_VARARGS },
13232          { (char *)"Style_frame_width_set", _wrap_Style_frame_width_set, METH_VARARGS },
13233          { (char *)"Style_frame_width_get", _wrap_Style_frame_width_get, METH_VARARGS },
13234          { (char *)"Style_border_width_set", _wrap_Style_border_width_set, METH_VARARGS },
13235          { (char *)"Style_border_width_get", _wrap_Style_border_width_get, METH_VARARGS },
13236          { (char *)"Style_screen_number_set", _wrap_Style_screen_number_set, METH_VARARGS },
13237          { (char *)"Style_screen_number_get", _wrap_Style_screen_number_get, METH_VARARGS },
13238          { (char *)"Style_shadow_fonts_set", _wrap_Style_shadow_fonts_set, METH_VARARGS },
13239          { (char *)"Style_shadow_fonts_get", _wrap_Style_shadow_fonts_get, METH_VARARGS },
13240          { (char *)"Style_aa_fonts_set", _wrap_Style_aa_fonts_set, METH_VARARGS },
13241          { (char *)"Style_aa_fonts_get", _wrap_Style_aa_fonts_get, METH_VARARGS },
13242          { (char *)"new_Style", _wrap_new_Style, METH_VARARGS },
13243          { (char *)"delete_Style", _wrap_delete_Style, METH_VARARGS },
13244          { (char *)"Style_readDatabaseMask", _wrap_Style_readDatabaseMask, METH_VARARGS },
13245          { (char *)"Style_readDatabaseTexture", _wrap_Style_readDatabaseTexture, METH_VARARGS },
13246          { (char *)"Style_readDatabaseColor", _wrap_Style_readDatabaseColor, METH_VARARGS },
13247          { (char *)"Style_readDatabaseFont", _wrap_Style_readDatabaseFont, METH_VARARGS },
13248          { (char *)"Style_load", _wrap_Style_load, METH_VARARGS },
13249          { (char *)"Style_getCloseButtonMask", _wrap_Style_getCloseButtonMask, METH_VARARGS },
13250          { (char *)"Style_getMaximizeButtonMask", _wrap_Style_getMaximizeButtonMask, METH_VARARGS },
13251          { (char *)"Style_getIconifyButtonMask", _wrap_Style_getIconifyButtonMask, METH_VARARGS },
13252          { (char *)"Style_getStickyButtonMask", _wrap_Style_getStickyButtonMask, METH_VARARGS },
13253          { (char *)"Style_getTextFocus", _wrap_Style_getTextFocus, METH_VARARGS },
13254          { (char *)"Style_getTextUnfocus", _wrap_Style_getTextUnfocus, METH_VARARGS },
13255          { (char *)"Style_getButtonPicFocus", _wrap_Style_getButtonPicFocus, METH_VARARGS },
13256          { (char *)"Style_getButtonPicUnfocus", _wrap_Style_getButtonPicUnfocus, METH_VARARGS },
13257          { (char *)"Style_getTitleFocus", _wrap_Style_getTitleFocus, METH_VARARGS },
13258          { (char *)"Style_getTitleUnfocus", _wrap_Style_getTitleUnfocus, METH_VARARGS },
13259          { (char *)"Style_getLabelFocus", _wrap_Style_getLabelFocus, METH_VARARGS },
13260          { (char *)"Style_getLabelUnfocus", _wrap_Style_getLabelUnfocus, METH_VARARGS },
13261          { (char *)"Style_getHandleFocus", _wrap_Style_getHandleFocus, METH_VARARGS },
13262          { (char *)"Style_getHandleUnfocus", _wrap_Style_getHandleUnfocus, METH_VARARGS },
13263          { (char *)"Style_getButtonFocus", _wrap_Style_getButtonFocus, METH_VARARGS },
13264          { (char *)"Style_getButtonUnfocus", _wrap_Style_getButtonUnfocus, METH_VARARGS },
13265          { (char *)"Style_getButtonPressedFocus", _wrap_Style_getButtonPressedFocus, METH_VARARGS },
13266          { (char *)"Style_getButtonPressedUnfocus", _wrap_Style_getButtonPressedUnfocus, METH_VARARGS },
13267          { (char *)"Style_getGripFocus", _wrap_Style_getGripFocus, METH_VARARGS },
13268          { (char *)"Style_getGripUnfocus", _wrap_Style_getGripUnfocus, METH_VARARGS },
13269          { (char *)"Style_getHandleWidth", _wrap_Style_getHandleWidth, METH_VARARGS },
13270          { (char *)"Style_getBevelWidth", _wrap_Style_getBevelWidth, METH_VARARGS },
13271          { (char *)"Style_getFrameWidth", _wrap_Style_getFrameWidth, METH_VARARGS },
13272          { (char *)"Style_getBorderWidth", _wrap_Style_getBorderWidth, METH_VARARGS },
13273          { (char *)"Style_getFont", _wrap_Style_getFont, METH_VARARGS },
13274          { (char *)"Style_setShadowFonts", _wrap_Style_setShadowFonts, METH_VARARGS },
13275          { (char *)"Style_hasShadowFonts", _wrap_Style_hasShadowFonts, METH_VARARGS },
13276          { (char *)"Style_setAAFonts", _wrap_Style_setAAFonts, METH_VARARGS },
13277          { (char *)"Style_hasAAFonts", _wrap_Style_hasAAFonts, METH_VARARGS },
13278          { (char *)"Style_textJustify", _wrap_Style_textJustify, METH_VARARGS },
13279          { (char *)"Style_bulletType", _wrap_Style_bulletType, METH_VARARGS },
13280          { (char *)"Style_getBorderColor", _wrap_Style_getBorderColor, METH_VARARGS },
13281          { (char *)"Style_getFrameFocus", _wrap_Style_getFrameFocus, METH_VARARGS },
13282          { (char *)"Style_getFrameUnfocus", _wrap_Style_getFrameUnfocus, METH_VARARGS },
13283          { (char *)"Style_setImageControl", _wrap_Style_setImageControl, METH_VARARGS },
13284          { (char *)"Style_getScreen", _wrap_Style_getScreen, METH_VARARGS },
13285          { (char *)"Style_swigregister", Style_swigregister, METH_VARARGS },
13286          { (char *)"new_BTexture", _wrap_new_BTexture, METH_VARARGS },
13287          { (char *)"BTexture_setColor", _wrap_BTexture_setColor, METH_VARARGS },
13288          { (char *)"BTexture_setColorTo", _wrap_BTexture_setColorTo, METH_VARARGS },
13289          { (char *)"BTexture_setBorderColor", _wrap_BTexture_setBorderColor, METH_VARARGS },
13290          { (char *)"BTexture_color", _wrap_BTexture_color, METH_VARARGS },
13291          { (char *)"BTexture_colorTo", _wrap_BTexture_colorTo, METH_VARARGS },
13292          { (char *)"BTexture_lightColor", _wrap_BTexture_lightColor, METH_VARARGS },
13293          { (char *)"BTexture_shadowColor", _wrap_BTexture_shadowColor, METH_VARARGS },
13294          { (char *)"BTexture_borderColor", _wrap_BTexture_borderColor, METH_VARARGS },
13295          { (char *)"BTexture_texture", _wrap_BTexture_texture, METH_VARARGS },
13296          { (char *)"BTexture_setTexture", _wrap_BTexture_setTexture, METH_VARARGS },
13297          { (char *)"BTexture_addTexture", _wrap_BTexture_addTexture, METH_VARARGS },
13298          { (char *)"BTexture_equals", _wrap_BTexture_equals, METH_VARARGS },
13299          { (char *)"BTexture_screen", _wrap_BTexture_screen, METH_VARARGS },
13300          { (char *)"BTexture_setScreen", _wrap_BTexture_setScreen, METH_VARARGS },
13301          { (char *)"BTexture_setImageControl", _wrap_BTexture_setImageControl, METH_VARARGS },
13302          { (char *)"BTexture_description", _wrap_BTexture_description, METH_VARARGS },
13303          { (char *)"BTexture_setDescription", _wrap_BTexture_setDescription, METH_VARARGS },
13304          { (char *)"BTexture_render", _wrap_BTexture_render, METH_VARARGS },
13305          { (char *)"delete_BTexture", _wrap_delete_BTexture, METH_VARARGS },
13306          { (char *)"BTexture_swigregister", BTexture_swigregister, METH_VARARGS },
13307          { (char *)"new_OBTimer", _wrap_new_OBTimer, METH_VARARGS },
13308          { (char *)"delete_OBTimer", _wrap_delete_OBTimer, METH_VARARGS },
13309          { (char *)"OBTimer_fire", _wrap_OBTimer_fire, METH_VARARGS },
13310          { (char *)"OBTimer_timing", _wrap_OBTimer_timing, METH_VARARGS },
13311          { (char *)"OBTimer_recurring", _wrap_OBTimer_recurring, METH_VARARGS },
13312          { (char *)"OBTimer_timeout", _wrap_OBTimer_timeout, METH_VARARGS },
13313          { (char *)"OBTimer_startTime", _wrap_OBTimer_startTime, METH_VARARGS },
13314          { (char *)"OBTimer_remainingTime", _wrap_OBTimer_remainingTime, METH_VARARGS },
13315          { (char *)"OBTimer_shouldFire", _wrap_OBTimer_shouldFire, METH_VARARGS },
13316          { (char *)"OBTimer_endTime", _wrap_OBTimer_endTime, METH_VARARGS },
13317          { (char *)"OBTimer_setRecurring", _wrap_OBTimer_setRecurring, METH_VARARGS },
13318          { (char *)"OBTimer_setTimeout", _wrap_OBTimer_setTimeout, METH_VARARGS },
13319          { (char *)"OBTimer_start", _wrap_OBTimer_start, METH_VARARGS },
13320          { (char *)"OBTimer_stop", _wrap_OBTimer_stop, METH_VARARGS },
13321          { (char *)"OBTimer_swigregister", OBTimer_swigregister, METH_VARARGS },
13322          { (char *)"new_OBTimerQueueManager", _wrap_new_OBTimerQueueManager, METH_VARARGS },
13323          { (char *)"delete_OBTimerQueueManager", _wrap_delete_OBTimerQueueManager, METH_VARARGS },
13324          { (char *)"OBTimerQueueManager_fire", _wrap_OBTimerQueueManager_fire, METH_VARARGS },
13325          { (char *)"OBTimerQueueManager_addTimer", _wrap_OBTimerQueueManager_addTimer, METH_VARARGS },
13326          { (char *)"OBTimerQueueManager_removeTimer", _wrap_OBTimerQueueManager_removeTimer, METH_VARARGS },
13327          { (char *)"OBTimerQueueManager_swigregister", OBTimerQueueManager_swigregister, METH_VARARGS },
13328          { (char *)"expandTilde", _wrap_expandTilde, METH_VARARGS },
13329          { (char *)"bexec", _wrap_bexec, METH_VARARGS },
13330          { (char *)"textPropertyToString", _wrap_textPropertyToString, METH_VARARGS },
13331          { (char *)"itostring_unsigned_long", _wrap_itostring_unsigned_long, METH_VARARGS },
13332          { (char *)"itostring_long", _wrap_itostring_long, METH_VARARGS },
13333          { (char *)"itostring_unsigned", _wrap_itostring_unsigned, METH_VARARGS },
13334          { (char *)"itostring", _wrap_itostring, METH_VARARGS },
13335          { (char *)"basename", _wrap_basename, METH_VARARGS },
13336          { NULL, NULL }
13337 };
13338
13339
13340 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
13341
13342 static void *_p_otk__OtkButtonTo_p_otk__OtkFocusWidget(void *x) {
13343     return (void *)((otk::OtkFocusWidget *) (otk::OtkFocusLabel *) ((otk::OtkButton *) x));
13344 }
13345 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkFocusWidget(void *x) {
13346     return (void *)((otk::OtkFocusWidget *)  ((otk::OtkFocusLabel *) x));
13347 }
13348 static void *_p_otk__OtkButtonTo_p_otk__OtkWidget(void *x) {
13349     return (void *)((otk::OtkWidget *) (otk::OtkFocusWidget *)(otk::OtkFocusLabel *) ((otk::OtkButton *) x));
13350 }
13351 static void *_p_otk__OtkAppWidgetTo_p_otk__OtkWidget(void *x) {
13352     return (void *)((otk::OtkWidget *)  ((otk::OtkAppWidget *) x));
13353 }
13354 static void *_p_otk__OtkFocusWidgetTo_p_otk__OtkWidget(void *x) {
13355     return (void *)((otk::OtkWidget *)  ((otk::OtkFocusWidget *) x));
13356 }
13357 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkWidget(void *x) {
13358     return (void *)((otk::OtkWidget *) (otk::OtkFocusWidget *) ((otk::OtkFocusLabel *) x));
13359 }
13360 static void *_p_otk__OtkButtonTo_p_otk__OtkEventHandler(void *x) {
13361     return (void *)((otk::OtkEventHandler *) (otk::OtkWidget *)(otk::OtkFocusWidget *)(otk::OtkFocusLabel *) ((otk::OtkButton *) x));
13362 }
13363 static void *_p_otk__OtkAppWidgetTo_p_otk__OtkEventHandler(void *x) {
13364     return (void *)((otk::OtkEventHandler *) (otk::OtkWidget *) ((otk::OtkAppWidget *) x));
13365 }
13366 static void *_p_otk__OtkWidgetTo_p_otk__OtkEventHandler(void *x) {
13367     return (void *)((otk::OtkEventHandler *)  ((otk::OtkWidget *) x));
13368 }
13369 static void *_p_otk__OtkFocusWidgetTo_p_otk__OtkEventHandler(void *x) {
13370     return (void *)((otk::OtkEventHandler *) (otk::OtkWidget *) ((otk::OtkFocusWidget *) x));
13371 }
13372 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkEventHandler(void *x) {
13373     return (void *)((otk::OtkEventHandler *) (otk::OtkWidget *)(otk::OtkFocusWidget *) ((otk::OtkFocusLabel *) x));
13374 }
13375 static void *_p_otk__OtkButtonTo_p_otk__OtkFocusLabel(void *x) {
13376     return (void *)((otk::OtkFocusLabel *)  ((otk::OtkButton *) x));
13377 }
13378 static void *_p_otk__OtkApplicationTo_p_otk__OtkEventDispatcher(void *x) {
13379     return (void *)((otk::OtkEventDispatcher *)  ((otk::OtkApplication *) x));
13380 }
13381 static swig_type_info _swigt__p_otk__BGCCache[] = {{"_p_otk__BGCCache", 0, "otk::BGCCache *", 0},{"_p_otk__BGCCache"},{0}};
13382 static swig_type_info _swigt__p_otk__BColor[] = {{"_p_otk__BColor", 0, "otk::BColor *", 0},{"_p_otk__BColor"},{0}};
13383 static swig_type_info _swigt__p_otk__OBProperty__StringVect[] = {{"_p_otk__OBProperty__StringVect", 0, "otk::OBProperty::StringVect *", 0},{"_p_otk__OBProperty__StringVect"},{0}};
13384 static swig_type_info _swigt__p_XFontStruct[] = {{"_p_XFontStruct", 0, "XFontStruct *", 0},{"_p_XFontStruct"},{0}};
13385 static swig_type_info _swigt__p_otk__Configuration[] = {{"_p_otk__Configuration", 0, "otk::Configuration *", 0},{"_p_otk__Configuration"},{0}};
13386 static swig_type_info _swigt__p_otk__PixmapMask[] = {{"_p_otk__PixmapMask", 0, "otk::PixmapMask *", 0},{"_p_otk__PixmapMask"},{0}};
13387 static swig_type_info _swigt__p_Atom[] = {{"_p_Atom", 0, "Atom *", 0},{"_p_Atom"},{0}};
13388 static swig_type_info _swigt__p_otk__PointerAssassin[] = {{"_p_otk__PointerAssassin", 0, "otk::PointerAssassin *", 0},{"_p_otk__PointerAssassin"},{0}};
13389 static swig_type_info _swigt__p_otk__BImage[] = {{"_p_otk__BImage", 0, "otk::BImage *", 0},{"_p_otk__BImage"},{0}};
13390 static swig_type_info _swigt__p_otk__OBTimer[] = {{"_p_otk__OBTimer", 0, "otk::OBTimer *", 0},{"_p_otk__OBTimer"},{0}};
13391 static swig_type_info _swigt__p_otk__OtkWidget__OtkWidgetList[] = {{"_p_otk__OtkWidget__OtkWidgetList", 0, "otk::OtkWidget::OtkWidgetList const &", 0},{"_p_otk__OtkWidget__OtkWidgetList"},{0}};
13392 static swig_type_info _swigt__p_bool[] = {{"_p_bool", 0, "bool *", 0},{"_p_bool"},{0}};
13393 static swig_type_info _swigt__p_otk__OBDisplay[] = {{"_p_otk__OBDisplay", 0, "otk::OBDisplay *", 0},{"_p_otk__OBDisplay"},{0}};
13394 static swig_type_info _swigt__p_Display[] = {{"_p_Display", 0, "Display *", 0},{"_p_Display"},{0}};
13395 static swig_type_info _swigt__p_p_XColor[] = {{"_p_p_XColor", 0, "XColor **", 0},{"_p_p_XColor"},{0}};
13396 static swig_type_info _swigt__p_XReparentEvent[] = {{"_p_XReparentEvent", 0, "XReparentEvent *", 0},{"_p_XReparentEvent"},{0}};
13397 static swig_type_info _swigt__p_otk__BPen[] = {{"_p_otk__BPen", 0, "otk::BPen *", 0},{"_p_otk__BPen"},{0}};
13398 static swig_type_info _swigt__p_otk__BImageControl[] = {{"_p_otk__BImageControl", 0, "otk::BImageControl *", 0},{"_p_otk__BImageControl"},{0}};
13399 static swig_type_info _swigt__p_otk__OtkButton[] = {{"_p_otk__OtkButton", 0, "otk::OtkButton *", 0},{"_p_otk__OtkButton"},{0}};
13400 static swig_type_info _swigt__p_otk__Rect[] = {{"_p_otk__Rect", 0, "otk::Rect *", 0},{"_p_otk__Rect"},{0}};
13401 static swig_type_info _swigt__p_otk__Style[] = {{"_p_otk__Style", 0, "otk::Style *", 0},{"_p_otk__Style"},{0}};
13402 static swig_type_info _swigt__p_XSelectionClearEvent[] = {{"_p_XSelectionClearEvent", 0, "XSelectionClearEvent *", 0},{"_p_XSelectionClearEvent"},{0}};
13403 static swig_type_info _swigt__p_Visual[] = {{"_p_Visual", 0, "Visual *", 0},{"_p_Visual"},{0}};
13404 static swig_type_info _swigt__p_timeval[] = {{"_p_timeval", 0, "timeval *", 0},{"_p_timeval"},{0}};
13405 static swig_type_info _swigt__p_int[] = {{"_p_int", 0, "int *", 0},{"_p_int"},{0}};
13406 static swig_type_info _swigt__p_otk__Strut[] = {{"_p_otk__Strut", 0, "otk::Strut *", 0},{"_p_otk__Strut"},{0}};
13407 static swig_type_info _swigt__p_otk__OtkApplication[] = {{"_p_otk__OtkApplication", 0, "otk::OtkApplication *", 0},{"_p_otk__OtkApplication"},{0}};
13408 static swig_type_info _swigt__p_XRectangle[] = {{"_p_XRectangle", 0, "XRectangle *", 0},{"_p_XRectangle"},{0}};
13409 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}};
13410 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}};
13411 static swig_type_info _swigt__p_Cursor[] = {{"_p_Cursor", 0, "Cursor *", 0},{"_p_Cursor"},{0}};
13412 static swig_type_info _swigt__p_Colormap[] = {{"_p_Colormap", 0, "Colormap *", 0},{"_p_Colormap"},{0}};
13413 static swig_type_info _swigt__p_XGravityEvent[] = {{"_p_XGravityEvent", 0, "XGravityEvent *", 0},{"_p_XGravityEvent"},{0}};
13414 static swig_type_info _swigt__p_XVisibilityEvent[] = {{"_p_XVisibilityEvent", 0, "XVisibilityEvent *", 0},{"_p_XVisibilityEvent"},{0}};
13415 static swig_type_info _swigt__p_XPropertyEvent[] = {{"_p_XPropertyEvent", 0, "XPropertyEvent *", 0},{"_p_XPropertyEvent"},{0}};
13416 static swig_type_info _swigt__p_Window[] = {{"_p_Window", 0, "Window *", 0},{"_p_Window"},{0}};
13417 static swig_type_info _swigt__p_otk__BGCCacheContext[] = {{"_p_otk__BGCCacheContext", 0, "otk::BGCCacheContext *", 0},{"_p_otk__BGCCacheContext"},{0}};
13418 static swig_type_info _swigt__p_XCreateWindowEvent[] = {{"_p_XCreateWindowEvent", 0, "XCreateWindowEvent *", 0},{"_p_XCreateWindowEvent"},{0}};
13419 static swig_type_info _swigt__p_XDestroyWindowEvent[] = {{"_p_XDestroyWindowEvent", 0, "XDestroyWindowEvent *", 0},{"_p_XDestroyWindowEvent"},{0}};
13420 static swig_type_info _swigt__p_Time[] = {{"_p_Time", 0, "Time *", 0},{"_p_Time"},{0}};
13421 static swig_type_info _swigt__p_XCirculateEvent[] = {{"_p_XCirculateEvent", 0, "XCirculateEvent *", 0},{"_p_XCirculateEvent"},{0}};
13422 static swig_type_info _swigt__p_XConfigureEvent[] = {{"_p_XConfigureEvent", 0, "XConfigureEvent *", 0},{"_p_XConfigureEvent"},{0}};
13423 static swig_type_info _swigt__p_long[] = {{"_p_long", 0, "long *", 0},{"_p_long"},{0}};
13424 static swig_type_info _swigt__p_otk__OBProperty[] = {{"_p_otk__OBProperty", 0, "otk::OBProperty *", 0},{"_p_otk__OBProperty"},{0}};
13425 static swig_type_info _swigt__p_XTextProperty[] = {{"_p_XTextProperty", 0, "XTextProperty *", 0},{"_p_XTextProperty"},{0}};
13426 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}};
13427 static swig_type_info _swigt__p_XSelectionRequestEvent[] = {{"_p_XSelectionRequestEvent", 0, "XSelectionRequestEvent *", 0},{"_p_XSelectionRequestEvent"},{0}};
13428 static swig_type_info _swigt__p_XCirculateRequestEvent[] = {{"_p_XCirculateRequestEvent", 0, "XCirculateRequestEvent *", 0},{"_p_XCirculateRequestEvent"},{0}};
13429 static swig_type_info _swigt__p_XConfigureRequestEvent[] = {{"_p_XConfigureRequestEvent", 0, "XConfigureRequestEvent *", 0},{"_p_XConfigureRequestEvent"},{0}};
13430 static swig_type_info _swigt__p_XMapRequestEvent[] = {{"_p_XMapRequestEvent", 0, "XMapRequestEvent *", 0},{"_p_XMapRequestEvent"},{0}};
13431 static swig_type_info _swigt__p_XResizeRequestEvent[] = {{"_p_XResizeRequestEvent", 0, "XResizeRequestEvent *", 0},{"_p_XResizeRequestEvent"},{0}};
13432 static swig_type_info _swigt__otk__OBTimeoutHandler[] = {{"_otk__OBTimeoutHandler", 0, "otk::OBTimeoutHandler", 0},{"_otk__OBTimeoutHandler"},{0}};
13433 static swig_type_info _swigt__p_XftDraw[] = {{"_p_XftDraw", 0, "XftDraw *", 0},{"_p_XftDraw"},{0}};
13434 static swig_type_info _swigt__p_otk__ScreenInfo[] = {{"_p_otk__ScreenInfo", 0, "otk::ScreenInfo *", 0},{"_p_otk__ScreenInfo"},{0}};
13435 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}};
13436 static swig_type_info _swigt__p_otk__BTexture[] = {{"_p_otk__BTexture", 0, "otk::BTexture *", 0},{"_p_otk__BTexture"},{0}};
13437 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}};
13438 static swig_type_info _swigt__p_otk__BFont[] = {{"_p_otk__BFont", 0, "otk::BFont *", 0},{"_p_otk__BFont"},{0}};
13439 static swig_type_info _swigt__p_otk__Point[] = {{"_p_otk__Point", 0, "otk::Point *", 0},{"_p_otk__Point"},{0}};
13440 static swig_type_info _swigt__p_p_char[] = {{"_p_p_char", 0, "char **", 0},{"_p_p_char"},{0}};
13441 static swig_type_info _swigt__p_XMotionEvent[] = {{"_p_XMotionEvent", 0, "XMotionEvent *", 0},{"_p_XMotionEvent"},{0}};
13442 static swig_type_info _swigt__p_XButtonEvent[] = {{"_p_XButtonEvent", 0, "XButtonEvent *", 0},{"_p_XButtonEvent"},{0}};
13443 static swig_type_info _swigt__p_XSelectionEvent[] = {{"_p_XSelectionEvent", 0, "XSelectionEvent *", 0},{"_p_XSelectionEvent"},{0}};
13444 static swig_type_info _swigt__p_Pixmap[] = {{"_p_Pixmap", 0, "Pixmap *", 0},{"_p_Pixmap"},{0}};
13445 static swig_type_info _swigt__p_GC[] = {{"_p_GC", 0, "GC *", 0},{"_p_GC"},{0}};
13446 static swig_type_info _swigt__p_otk__OBTimerQueueManager[] = {{"_p_otk__OBTimerQueueManager", 0, "otk::OBTimerQueueManager *", 0},{"_p_otk__OBTimerQueueManager"},{0}};
13447 static swig_type_info _swigt__p_otk__OtkAppWidget[] = {{"_p_otk__OtkAppWidget", 0, "otk::OtkAppWidget *", 0},{"_p_otk__OtkAppWidget"},{0}};
13448 static swig_type_info _swigt__p_XKeyEvent[] = {{"_p_XKeyEvent", 0, "XKeyEvent *", 0},{"_p_XKeyEvent"},{0}};
13449 static swig_type_info _swigt__p_unsigned_long[] = {{"_p_unsigned_long", 0, "unsigned long *", 0},{"_p_unsigned_long"},{0}};
13450 static swig_type_info _swigt__p_XEvent[] = {{"_p_XEvent", 0, "XEvent *", 0},{"_p_XEvent"},{0}};
13451 static swig_type_info _swigt__p_p_unsigned_long[] = {{"_p_p_unsigned_long", 0, "unsigned long **", 0},{"_p_p_unsigned_long"},{0}};
13452 static swig_type_info _swigt__p_std__string[] = {{"_p_std__string", 0, "std::string *", 0},{"_p_std__string"},{0}};
13453 static swig_type_info _swigt__p_XCrossingEvent[] = {{"_p_XCrossingEvent", 0, "XCrossingEvent *", 0},{"_p_XCrossingEvent"},{0}};
13454 static swig_type_info _swigt__p_XMappingEvent[] = {{"_p_XMappingEvent", 0, "XMappingEvent *", 0},{"_p_XMappingEvent"},{0}};
13455 static swig_type_info _swigt__p_otk__BGCCacheItem[] = {{"_p_otk__BGCCacheItem", 0, "otk::BGCCacheItem *", 0},{"_p_otk__BGCCacheItem"},{0}};
13456 static swig_type_info _swigt__p_p_unsigned_int[] = {{"_p_p_unsigned_int", 0, "unsigned int **", 0},{"_p_p_unsigned_int"},{0}};
13457 static swig_type_info _swigt__p_unsigned_int[] = {{"_p_unsigned_int", 0, "unsigned int *", 0},{"_p_unsigned_int"},{0}};
13458 static swig_type_info _swigt__p_p_unsigned_char[] = {{"_p_p_unsigned_char", 0, "unsigned char **", 0},{"_p_p_unsigned_char"},{0}};
13459 static swig_type_info _swigt__p_XClientMessageEvent[] = {{"_p_XClientMessageEvent", 0, "XClientMessageEvent *", 0},{"_p_XClientMessageEvent"},{0}};
13460 static swig_type_info _swigt__p_XExposeEvent[] = {{"_p_XExposeEvent", 0, "XExposeEvent *", 0},{"_p_XExposeEvent"},{0}};
13461 static swig_type_info _swigt__p_XFocusChangeEvent[] = {{"_p_XFocusChangeEvent", 0, "XFocusChangeEvent *", 0},{"_p_XFocusChangeEvent"},{0}};
13462 static swig_type_info _swigt__p_XGraphicsExposeEvent[] = {{"_p_XGraphicsExposeEvent", 0, "XGraphicsExposeEvent *", 0},{"_p_XGraphicsExposeEvent"},{0}};
13463 static swig_type_info _swigt__p_XNoExposeEvent[] = {{"_p_XNoExposeEvent", 0, "XNoExposeEvent *", 0},{"_p_XNoExposeEvent"},{0}};
13464 static swig_type_info _swigt__p_XMapEvent[] = {{"_p_XMapEvent", 0, "XMapEvent *", 0},{"_p_XMapEvent"},{0}};
13465 static swig_type_info _swigt__p_XUnmapEvent[] = {{"_p_XUnmapEvent", 0, "XUnmapEvent *", 0},{"_p_XUnmapEvent"},{0}};
13466 static swig_type_info _swigt__p_XColormapEvent[] = {{"_p_XColormapEvent", 0, "XColormapEvent *", 0},{"_p_XColormapEvent"},{0}};
13467
13468 static swig_type_info *swig_types_initial[] = {
13469 _swigt__p_otk__BGCCache, 
13470 _swigt__p_otk__BColor, 
13471 _swigt__p_otk__OBProperty__StringVect, 
13472 _swigt__p_XFontStruct, 
13473 _swigt__p_otk__Configuration, 
13474 _swigt__p_otk__PixmapMask, 
13475 _swigt__p_Atom, 
13476 _swigt__p_otk__PointerAssassin, 
13477 _swigt__p_otk__BImage, 
13478 _swigt__p_otk__OBTimer, 
13479 _swigt__p_otk__OtkWidget__OtkWidgetList, 
13480 _swigt__p_bool, 
13481 _swigt__p_otk__OBDisplay, 
13482 _swigt__p_Display, 
13483 _swigt__p_p_XColor, 
13484 _swigt__p_XReparentEvent, 
13485 _swigt__p_otk__BPen, 
13486 _swigt__p_otk__BImageControl, 
13487 _swigt__p_otk__OtkButton, 
13488 _swigt__p_otk__Rect, 
13489 _swigt__p_otk__Style, 
13490 _swigt__p_XSelectionClearEvent, 
13491 _swigt__p_Visual, 
13492 _swigt__p_timeval, 
13493 _swigt__p_int, 
13494 _swigt__p_otk__Strut, 
13495 _swigt__p_otk__OtkApplication, 
13496 _swigt__p_XRectangle, 
13497 _swigt__p_otk__OtkFocusWidget, 
13498 _swigt__p_otk__OtkWidget, 
13499 _swigt__p_Cursor, 
13500 _swigt__p_Colormap, 
13501 _swigt__p_XGravityEvent, 
13502 _swigt__p_XVisibilityEvent, 
13503 _swigt__p_XPropertyEvent, 
13504 _swigt__p_Window, 
13505 _swigt__p_otk__BGCCacheContext, 
13506 _swigt__p_XCreateWindowEvent, 
13507 _swigt__p_XDestroyWindowEvent, 
13508 _swigt__p_Time, 
13509 _swigt__p_XCirculateEvent, 
13510 _swigt__p_XConfigureEvent, 
13511 _swigt__p_long, 
13512 _swigt__p_otk__OBProperty, 
13513 _swigt__p_XTextProperty, 
13514 _swigt__p_otk__OtkEventHandler, 
13515 _swigt__p_XSelectionRequestEvent, 
13516 _swigt__p_XCirculateRequestEvent, 
13517 _swigt__p_XConfigureRequestEvent, 
13518 _swigt__p_XMapRequestEvent, 
13519 _swigt__p_XResizeRequestEvent, 
13520 _swigt__otk__OBTimeoutHandler, 
13521 _swigt__p_XftDraw, 
13522 _swigt__p_otk__ScreenInfo, 
13523 _swigt__p_otk__OtkFocusLabel, 
13524 _swigt__p_otk__BTexture, 
13525 _swigt__p_otk__OtkEventDispatcher, 
13526 _swigt__p_otk__BFont, 
13527 _swigt__p_otk__Point, 
13528 _swigt__p_p_char, 
13529 _swigt__p_XMotionEvent, 
13530 _swigt__p_XButtonEvent, 
13531 _swigt__p_XSelectionEvent, 
13532 _swigt__p_Pixmap, 
13533 _swigt__p_GC, 
13534 _swigt__p_otk__OBTimerQueueManager, 
13535 _swigt__p_otk__OtkAppWidget, 
13536 _swigt__p_XKeyEvent, 
13537 _swigt__p_unsigned_long, 
13538 _swigt__p_XEvent, 
13539 _swigt__p_p_unsigned_long, 
13540 _swigt__p_std__string, 
13541 _swigt__p_XCrossingEvent, 
13542 _swigt__p_XMappingEvent, 
13543 _swigt__p_otk__BGCCacheItem, 
13544 _swigt__p_p_unsigned_int, 
13545 _swigt__p_unsigned_int, 
13546 _swigt__p_p_unsigned_char, 
13547 _swigt__p_XClientMessageEvent, 
13548 _swigt__p_XExposeEvent, 
13549 _swigt__p_XFocusChangeEvent, 
13550 _swigt__p_XGraphicsExposeEvent, 
13551 _swigt__p_XNoExposeEvent, 
13552 _swigt__p_XMapEvent, 
13553 _swigt__p_XUnmapEvent, 
13554 _swigt__p_XColormapEvent, 
13555 0
13556 };
13557
13558
13559 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
13560
13561 static swig_const_info swig_const_table[] = {
13562 { SWIG_PY_INT,     (char *)"OtkWidget_Horizontal", (long) otk::OtkWidget::Horizontal, 0, 0, 0},
13563 { SWIG_PY_INT,     (char *)"OtkWidget_Vertical", (long) otk::OtkWidget::Vertical, 0, 0, 0},
13564 { SWIG_PY_INT,     (char *)"OBProperty_Atom_Cardinal", (long) otk::OBProperty::Atom_Cardinal, 0, 0, 0},
13565 { SWIG_PY_INT,     (char *)"OBProperty_Atom_Window", (long) otk::OBProperty::Atom_Window, 0, 0, 0},
13566 { SWIG_PY_INT,     (char *)"OBProperty_Atom_Pixmap", (long) otk::OBProperty::Atom_Pixmap, 0, 0, 0},
13567 { SWIG_PY_INT,     (char *)"OBProperty_Atom_Atom", (long) otk::OBProperty::Atom_Atom, 0, 0, 0},
13568 { SWIG_PY_INT,     (char *)"OBProperty_Atom_String", (long) otk::OBProperty::Atom_String, 0, 0, 0},
13569 { SWIG_PY_INT,     (char *)"OBProperty_Atom_Utf8", (long) otk::OBProperty::Atom_Utf8, 0, 0, 0},
13570 { SWIG_PY_INT,     (char *)"OBProperty_openbox_pid", (long) otk::OBProperty::openbox_pid, 0, 0, 0},
13571 { SWIG_PY_INT,     (char *)"OBProperty_wm_colormap_windows", (long) otk::OBProperty::wm_colormap_windows, 0, 0, 0},
13572 { SWIG_PY_INT,     (char *)"OBProperty_wm_protocols", (long) otk::OBProperty::wm_protocols, 0, 0, 0},
13573 { SWIG_PY_INT,     (char *)"OBProperty_wm_state", (long) otk::OBProperty::wm_state, 0, 0, 0},
13574 { SWIG_PY_INT,     (char *)"OBProperty_wm_delete_window", (long) otk::OBProperty::wm_delete_window, 0, 0, 0},
13575 { SWIG_PY_INT,     (char *)"OBProperty_wm_take_focus", (long) otk::OBProperty::wm_take_focus, 0, 0, 0},
13576 { SWIG_PY_INT,     (char *)"OBProperty_wm_change_state", (long) otk::OBProperty::wm_change_state, 0, 0, 0},
13577 { SWIG_PY_INT,     (char *)"OBProperty_wm_name", (long) otk::OBProperty::wm_name, 0, 0, 0},
13578 { SWIG_PY_INT,     (char *)"OBProperty_wm_icon_name", (long) otk::OBProperty::wm_icon_name, 0, 0, 0},
13579 { SWIG_PY_INT,     (char *)"OBProperty_wm_class", (long) otk::OBProperty::wm_class, 0, 0, 0},
13580 { SWIG_PY_INT,     (char *)"OBProperty_motif_wm_hints", (long) otk::OBProperty::motif_wm_hints, 0, 0, 0},
13581 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_attributes", (long) otk::OBProperty::blackbox_attributes, 0, 0, 0},
13582 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_change_attributes", (long) otk::OBProperty::blackbox_change_attributes, 0, 0, 0},
13583 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_hints", (long) otk::OBProperty::blackbox_hints, 0, 0, 0},
13584 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_structure_messages", (long) otk::OBProperty::blackbox_structure_messages, 0, 0, 0},
13585 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_notify_startup", (long) otk::OBProperty::blackbox_notify_startup, 0, 0, 0},
13586 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_notify_window_add", (long) otk::OBProperty::blackbox_notify_window_add, 0, 0, 0},
13587 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_notify_window_del", (long) otk::OBProperty::blackbox_notify_window_del, 0, 0, 0},
13588 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_notify_window_focus", (long) otk::OBProperty::blackbox_notify_window_focus, 0, 0, 0},
13589 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_notify_current_workspace", (long) otk::OBProperty::blackbox_notify_current_workspace, 0, 0, 0},
13590 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_notify_workspace_count", (long) otk::OBProperty::blackbox_notify_workspace_count, 0, 0, 0},
13591 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_notify_window_raise", (long) otk::OBProperty::blackbox_notify_window_raise, 0, 0, 0},
13592 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_notify_window_lower", (long) otk::OBProperty::blackbox_notify_window_lower, 0, 0, 0},
13593 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_change_workspace", (long) otk::OBProperty::blackbox_change_workspace, 0, 0, 0},
13594 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_change_window_focus", (long) otk::OBProperty::blackbox_change_window_focus, 0, 0, 0},
13595 { SWIG_PY_INT,     (char *)"OBProperty_blackbox_cycle_window_focus", (long) otk::OBProperty::blackbox_cycle_window_focus, 0, 0, 0},
13596 { SWIG_PY_INT,     (char *)"OBProperty_openbox_show_root_menu", (long) otk::OBProperty::openbox_show_root_menu, 0, 0, 0},
13597 { SWIG_PY_INT,     (char *)"OBProperty_openbox_show_workspace_menu", (long) otk::OBProperty::openbox_show_workspace_menu, 0, 0, 0},
13598 { SWIG_PY_INT,     (char *)"OBProperty_net_supported", (long) otk::OBProperty::net_supported, 0, 0, 0},
13599 { SWIG_PY_INT,     (char *)"OBProperty_net_client_list", (long) otk::OBProperty::net_client_list, 0, 0, 0},
13600 { SWIG_PY_INT,     (char *)"OBProperty_net_client_list_stacking", (long) otk::OBProperty::net_client_list_stacking, 0, 0, 0},
13601 { SWIG_PY_INT,     (char *)"OBProperty_net_number_of_desktops", (long) otk::OBProperty::net_number_of_desktops, 0, 0, 0},
13602 { SWIG_PY_INT,     (char *)"OBProperty_net_desktop_geometry", (long) otk::OBProperty::net_desktop_geometry, 0, 0, 0},
13603 { SWIG_PY_INT,     (char *)"OBProperty_net_desktop_viewport", (long) otk::OBProperty::net_desktop_viewport, 0, 0, 0},
13604 { SWIG_PY_INT,     (char *)"OBProperty_net_current_desktop", (long) otk::OBProperty::net_current_desktop, 0, 0, 0},
13605 { SWIG_PY_INT,     (char *)"OBProperty_net_desktop_names", (long) otk::OBProperty::net_desktop_names, 0, 0, 0},
13606 { SWIG_PY_INT,     (char *)"OBProperty_net_active_window", (long) otk::OBProperty::net_active_window, 0, 0, 0},
13607 { SWIG_PY_INT,     (char *)"OBProperty_net_workarea", (long) otk::OBProperty::net_workarea, 0, 0, 0},
13608 { SWIG_PY_INT,     (char *)"OBProperty_net_supporting_wm_check", (long) otk::OBProperty::net_supporting_wm_check, 0, 0, 0},
13609 { SWIG_PY_INT,     (char *)"OBProperty_net_close_window", (long) otk::OBProperty::net_close_window, 0, 0, 0},
13610 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_moveresize", (long) otk::OBProperty::net_wm_moveresize, 0, 0, 0},
13611 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_name", (long) otk::OBProperty::net_wm_name, 0, 0, 0},
13612 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_visible_name", (long) otk::OBProperty::net_wm_visible_name, 0, 0, 0},
13613 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_icon_name", (long) otk::OBProperty::net_wm_icon_name, 0, 0, 0},
13614 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_visible_icon_name", (long) otk::OBProperty::net_wm_visible_icon_name, 0, 0, 0},
13615 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_desktop", (long) otk::OBProperty::net_wm_desktop, 0, 0, 0},
13616 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_window_type", (long) otk::OBProperty::net_wm_window_type, 0, 0, 0},
13617 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_state", (long) otk::OBProperty::net_wm_state, 0, 0, 0},
13618 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_strut", (long) otk::OBProperty::net_wm_strut, 0, 0, 0},
13619 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_allowed_actions", (long) otk::OBProperty::net_wm_allowed_actions, 0, 0, 0},
13620 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_window_type_desktop", (long) otk::OBProperty::net_wm_window_type_desktop, 0, 0, 0},
13621 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_window_type_dock", (long) otk::OBProperty::net_wm_window_type_dock, 0, 0, 0},
13622 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_window_type_toolbar", (long) otk::OBProperty::net_wm_window_type_toolbar, 0, 0, 0},
13623 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_window_type_menu", (long) otk::OBProperty::net_wm_window_type_menu, 0, 0, 0},
13624 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_window_type_utility", (long) otk::OBProperty::net_wm_window_type_utility, 0, 0, 0},
13625 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_window_type_splash", (long) otk::OBProperty::net_wm_window_type_splash, 0, 0, 0},
13626 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_window_type_dialog", (long) otk::OBProperty::net_wm_window_type_dialog, 0, 0, 0},
13627 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_window_type_normal", (long) otk::OBProperty::net_wm_window_type_normal, 0, 0, 0},
13628 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_moveresize_size_topleft", (long) otk::OBProperty::net_wm_moveresize_size_topleft, 0, 0, 0},
13629 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_moveresize_size_topright", (long) otk::OBProperty::net_wm_moveresize_size_topright, 0, 0, 0},
13630 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_moveresize_size_bottomleft", (long) otk::OBProperty::net_wm_moveresize_size_bottomleft, 0, 0, 0},
13631 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_moveresize_size_bottomright", (long) otk::OBProperty::net_wm_moveresize_size_bottomright, 0, 0, 0},
13632 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_moveresize_move", (long) otk::OBProperty::net_wm_moveresize_move, 0, 0, 0},
13633 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_action_move", (long) otk::OBProperty::net_wm_action_move, 0, 0, 0},
13634 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_action_resize", (long) otk::OBProperty::net_wm_action_resize, 0, 0, 0},
13635 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_action_shade", (long) otk::OBProperty::net_wm_action_shade, 0, 0, 0},
13636 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_action_maximize_horz", (long) otk::OBProperty::net_wm_action_maximize_horz, 0, 0, 0},
13637 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_action_maximize_vert", (long) otk::OBProperty::net_wm_action_maximize_vert, 0, 0, 0},
13638 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_action_change_desktop", (long) otk::OBProperty::net_wm_action_change_desktop, 0, 0, 0},
13639 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_action_close", (long) otk::OBProperty::net_wm_action_close, 0, 0, 0},
13640 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_state_modal", (long) otk::OBProperty::net_wm_state_modal, 0, 0, 0},
13641 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_state_sticky", (long) otk::OBProperty::net_wm_state_sticky, 0, 0, 0},
13642 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_state_maximized_vert", (long) otk::OBProperty::net_wm_state_maximized_vert, 0, 0, 0},
13643 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_state_maximized_horz", (long) otk::OBProperty::net_wm_state_maximized_horz, 0, 0, 0},
13644 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_state_shaded", (long) otk::OBProperty::net_wm_state_shaded, 0, 0, 0},
13645 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_state_skip_taskbar", (long) otk::OBProperty::net_wm_state_skip_taskbar, 0, 0, 0},
13646 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_state_skip_pager", (long) otk::OBProperty::net_wm_state_skip_pager, 0, 0, 0},
13647 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_state_hidden", (long) otk::OBProperty::net_wm_state_hidden, 0, 0, 0},
13648 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_state_fullscreen", (long) otk::OBProperty::net_wm_state_fullscreen, 0, 0, 0},
13649 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_state_above", (long) otk::OBProperty::net_wm_state_above, 0, 0, 0},
13650 { SWIG_PY_INT,     (char *)"OBProperty_net_wm_state_below", (long) otk::OBProperty::net_wm_state_below, 0, 0, 0},
13651 { SWIG_PY_INT,     (char *)"OBProperty_kde_net_system_tray_windows", (long) otk::OBProperty::kde_net_system_tray_windows, 0, 0, 0},
13652 { 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},
13653 { SWIG_PY_INT,     (char *)"OBProperty_kde_net_wm_window_type_override", (long) otk::OBProperty::kde_net_wm_window_type_override, 0, 0, 0},
13654 { SWIG_PY_INT,     (char *)"OBProperty_NUM_ATOMS", (long) otk::OBProperty::NUM_ATOMS, 0, 0, 0},
13655 { SWIG_PY_INT,     (char *)"OBProperty_ascii", (long) otk::OBProperty::ascii, 0, 0, 0},
13656 { SWIG_PY_INT,     (char *)"OBProperty_utf8", (long) otk::OBProperty::utf8, 0, 0, 0},
13657 { SWIG_PY_INT,     (char *)"OBProperty_NUM_STRING_TYPE", (long) otk::OBProperty::NUM_STRING_TYPE, 0, 0, 0},
13658 { SWIG_PY_INT,     (char *)"Style_ButtonFocus", (long) otk::Style::ButtonFocus, 0, 0, 0},
13659 { SWIG_PY_INT,     (char *)"Style_ButtonUnfocus", (long) otk::Style::ButtonUnfocus, 0, 0, 0},
13660 { SWIG_PY_INT,     (char *)"Style_TitleFocus", (long) otk::Style::TitleFocus, 0, 0, 0},
13661 { SWIG_PY_INT,     (char *)"Style_TitleUnfocus", (long) otk::Style::TitleUnfocus, 0, 0, 0},
13662 { SWIG_PY_INT,     (char *)"Style_LabelFocus", (long) otk::Style::LabelFocus, 0, 0, 0},
13663 { SWIG_PY_INT,     (char *)"Style_LabelUnfocus", (long) otk::Style::LabelUnfocus, 0, 0, 0},
13664 { SWIG_PY_INT,     (char *)"Style_HandleFocus", (long) otk::Style::HandleFocus, 0, 0, 0},
13665 { SWIG_PY_INT,     (char *)"Style_HandleUnfocus", (long) otk::Style::HandleUnfocus, 0, 0, 0},
13666 { SWIG_PY_INT,     (char *)"Style_GripFocus", (long) otk::Style::GripFocus, 0, 0, 0},
13667 { SWIG_PY_INT,     (char *)"Style_GripUnfocus", (long) otk::Style::GripUnfocus, 0, 0, 0},
13668 { SWIG_PY_INT,     (char *)"Style_LeftJustify", (long) otk::Style::LeftJustify, 0, 0, 0},
13669 { SWIG_PY_INT,     (char *)"Style_RightJustify", (long) otk::Style::RightJustify, 0, 0, 0},
13670 { SWIG_PY_INT,     (char *)"Style_CenterJustify", (long) otk::Style::CenterJustify, 0, 0, 0},
13671 { SWIG_PY_INT,     (char *)"Style_RoundBullet", (long) otk::Style::RoundBullet, 0, 0, 0},
13672 { SWIG_PY_INT,     (char *)"Style_TriangleBullet", (long) otk::Style::TriangleBullet, 0, 0, 0},
13673 { SWIG_PY_INT,     (char *)"Style_SquareBullet", (long) otk::Style::SquareBullet, 0, 0, 0},
13674 { SWIG_PY_INT,     (char *)"Style_NoBullet", (long) otk::Style::NoBullet, 0, 0, 0},
13675 { SWIG_PY_INT,     (char *)"BTexture_NoTexture", (long) otk::BTexture::NoTexture, 0, 0, 0},
13676 { SWIG_PY_INT,     (char *)"BTexture_Flat", (long) otk::BTexture::Flat, 0, 0, 0},
13677 { SWIG_PY_INT,     (char *)"BTexture_Sunken", (long) otk::BTexture::Sunken, 0, 0, 0},
13678 { SWIG_PY_INT,     (char *)"BTexture_Raised", (long) otk::BTexture::Raised, 0, 0, 0},
13679 { SWIG_PY_INT,     (char *)"BTexture_Solid", (long) otk::BTexture::Solid, 0, 0, 0},
13680 { SWIG_PY_INT,     (char *)"BTexture_Gradient", (long) otk::BTexture::Gradient, 0, 0, 0},
13681 { SWIG_PY_INT,     (char *)"BTexture_Horizontal", (long) otk::BTexture::Horizontal, 0, 0, 0},
13682 { SWIG_PY_INT,     (char *)"BTexture_Vertical", (long) otk::BTexture::Vertical, 0, 0, 0},
13683 { SWIG_PY_INT,     (char *)"BTexture_Diagonal", (long) otk::BTexture::Diagonal, 0, 0, 0},
13684 { SWIG_PY_INT,     (char *)"BTexture_CrossDiagonal", (long) otk::BTexture::CrossDiagonal, 0, 0, 0},
13685 { SWIG_PY_INT,     (char *)"BTexture_Rectangle", (long) otk::BTexture::Rectangle, 0, 0, 0},
13686 { SWIG_PY_INT,     (char *)"BTexture_Pyramid", (long) otk::BTexture::Pyramid, 0, 0, 0},
13687 { SWIG_PY_INT,     (char *)"BTexture_PipeCross", (long) otk::BTexture::PipeCross, 0, 0, 0},
13688 { SWIG_PY_INT,     (char *)"BTexture_Elliptic", (long) otk::BTexture::Elliptic, 0, 0, 0},
13689 { SWIG_PY_INT,     (char *)"BTexture_Bevel1", (long) otk::BTexture::Bevel1, 0, 0, 0},
13690 { SWIG_PY_INT,     (char *)"BTexture_Bevel2", (long) otk::BTexture::Bevel2, 0, 0, 0},
13691 { SWIG_PY_INT,     (char *)"BTexture_Border", (long) otk::BTexture::Border, 0, 0, 0},
13692 { SWIG_PY_INT,     (char *)"BTexture_Invert", (long) otk::BTexture::Invert, 0, 0, 0},
13693 { SWIG_PY_INT,     (char *)"BTexture_Parent_Relative", (long) otk::BTexture::Parent_Relative, 0, 0, 0},
13694 { SWIG_PY_INT,     (char *)"BTexture_Interlaced", (long) otk::BTexture::Interlaced, 0, 0, 0},
13695 {0}};
13696
13697 #ifdef __cplusplus
13698 }
13699 #endif
13700
13701 #ifdef __cplusplus
13702 extern "C"
13703 #endif
13704 SWIGEXPORT(void) SWIG_init(void) {
13705     static PyObject *SWIG_globals = 0; 
13706     static int       typeinit = 0;
13707     PyObject *m, *d;
13708     int       i;
13709     if (!SWIG_globals) SWIG_globals = SWIG_newvarlink();
13710     m = Py_InitModule((char *) SWIG_name, SwigMethods);
13711     d = PyModule_GetDict(m);
13712     
13713     if (!typeinit) {
13714         for (i = 0; swig_types_initial[i]; i++) {
13715             swig_types[i] = SWIG_TypeRegister(swig_types_initial[i]);
13716         }
13717         typeinit = 1;
13718     }
13719     SWIG_InstallConstants(d,swig_const_table);
13720     
13721     PyDict_SetItemString(d,(char*)"cvar", SWIG_globals);
13722     SWIG_addvarlink(SWIG_globals,(char*)"OBDisplay_display",_wrap_OBDisplay_display_get, _wrap_OBDisplay_display_set);
13723     SWIG_addvarlink(SWIG_globals,(char*)"BSENTINEL",_wrap_BSENTINEL_get, _wrap_BSENTINEL_set);
13724 }
13725