1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
3 * Version 1.3.17u-20021222-0248
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 * ----------------------------------------------------------------------------- */
14 template<class T
> class SwigValueWrapper
{
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
; }
28 /***********************************************************************
31 * This file contains generic SWIG runtime support for pointer
32 * type checking as well as a few commonly used macros to control
35 * Author : David Beazley (beazley@cs.uchicago.edu)
37 * Copyright (c) 1999-2000, The University of Chicago
39 * This file may be freely redistributed without license or fee provided
40 * this copyright message remains intact.
41 ************************************************************************/
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
51 # define SWIGEXPORT(a) __declspec(dllexport) a
52 # define SWIGIMPORT(a) extern a
55 # if defined(__BORLANDC__)
56 # define SWIGEXPORT(a) a _export
57 # define SWIGIMPORT(a) a _export
59 # define SWIGEXPORT(a) a
60 # define SWIGIMPORT(a) a
64 # define SWIGEXPORT(a) a
65 # define SWIGIMPORT(a) a
69 #define SWIGRUNTIME(a) SWIGEXPORT(a)
71 #define SWIGRUNTIME(a) static a
78 typedef void *(*swig_converter_func
)(void *);
79 typedef struct swig_type_info
*(*swig_dycast_func
)(void **);
81 typedef struct swig_type_info
{
83 swig_converter_func converter
;
86 swig_dycast_func dcast
;
87 struct swig_type_info
*next
;
88 struct swig_type_info
*prev
;
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 *);
102 static swig_type_info
*swig_type_list
= 0;
104 /* Register a type mapping with the type-checking */
105 SWIGRUNTIME(swig_type_info
*)
106 SWIG_TypeRegister(swig_type_info
*ti
)
108 swig_type_info
*tc
, *head
, *ret
, *next
;
109 /* Check to see if this type has already been registered */
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
;
125 ti
->prev
= swig_type_list
;
128 /* Build linked lists */
132 /* Patch up the rest of the links */
143 /* Check the typename */
144 SWIGRUNTIME(swig_type_info
*)
145 SWIG_TypeCheck(char *c
, swig_type_info
*ty
)
148 if (!ty
) return 0; /* Void pointer */
149 s
= ty
->next
; /* First element always just a name */
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
;
156 s
->next
->prev
= s
->prev
;
158 /* Insert s as second element in the list */
160 if (ty
->next
) ty
->next
->prev
= s
;
165 } while (s
&& (s
!= ty
->next
));
169 /* Cast a pointer up an inheritance hierarchy */
171 SWIG_TypeCast(swig_type_info
*ty
, void *ptr
)
173 if ((!ty
) || (!ty
->converter
)) return ptr
;
174 return (*ty
->converter
)(ptr
);
177 /* Dynamic pointer casting. Down an inheritance hierarchy */
178 SWIGRUNTIME(swig_type_info
*)
179 SWIG_TypeDynamicCast(swig_type_info
*ty
, void **ptr
)
181 swig_type_info
*lastty
= ty
;
182 if (!ty
|| !ty
->dcast
) return ty
;
183 while (ty
&& (ty
->dcast
)) {
184 ty
= (*ty
->dcast
)(ptr
);
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
;
195 if (ty
->str
&& (strcmp(name
,ty
->str
) == 0)) return ty
;
196 if (ty
->name
&& (strcmp(name
,ty
->name
) == 0)) return ty
;
202 /* Set the clientdata field for a type */
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
;
210 if (!equiv
->converter
) {
213 if ((strcmp(tc
->name
, equiv
->name
) == 0))
214 SWIG_TypeClientData(tc
,clientdata
);
228 /***********************************************************************
231 * This file contains the runtime support for Python modules
232 * and includes code for managing global variables and pointer
235 * Author : David Beazley (beazley@cs.uchicago.edu)
236 ************************************************************************/
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
250 /* Flags for pointer conversion */
252 #define SWIG_POINTER_EXCEPTION 0x1
253 #define SWIG_POINTER_DISOWN 0x2
255 /* Exception handling in wrappers */
256 #define SWIG_fail goto fail
258 /* Constant information structure */
259 typedef struct swig_const_info
{
265 swig_type_info
**ptype
;
268 #ifdef SWIG_NOINCLUDE
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
[]);
281 /* -----------------------------------------------------------------------------
282 * global variable support code.
283 * ----------------------------------------------------------------------------- */
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
;
292 typedef struct swig_varlinkobject
{
294 swig_globalvar
*vars
;
295 } swig_varlinkobject
;
298 swig_varlink_repr(swig_varlinkobject
*v
) {
300 return PyString_FromString("<Global variables>");
304 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int 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
,", ");
317 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
318 swig_globalvar
*var
= v
->vars
;
320 if (strcmp(var
->name
,n
) == 0) {
321 return (*var
->get_attr
)();
325 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
330 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
331 swig_globalvar
*var
= v
->vars
;
333 if (strcmp(var
->name
,n
) == 0) {
334 return (*var
->set_attr
)(p
);
338 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
342 statichere PyTypeObject varlinktype
= {
343 PyObject_HEAD_INIT(0)
345 (char *)"swigvarlink", /* Type name */
346 sizeof(swig_varlinkobject
), /* Basic size */
349 (printfunc
) swig_varlink_print
, /* Print */
350 (getattrfunc
) swig_varlink_getattr
, /* get attr */
351 (setattrfunc
) swig_varlink_setattr
, /* Set attr */
353 (reprfunc
) swig_varlink_repr
, /* tp_repr */
354 0, /* tp_as_number */
355 0, /* tp_as_mapping*/
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
;
367 result
->ob_refcnt
= 0;
368 Py_XINCREF((PyObject
*) result
);
369 return ((PyObject
*) result
);
373 SWIG_addvarlink(PyObject
*p
, char *name
,
374 PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
375 swig_varlinkobject
*v
;
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
;
387 /* Pack binary data into a string */
389 SWIG_PackData(char *c
, void *ptr
, int sz
) {
390 static char hex
[17] = "0123456789abcdef";
392 unsigned char *u
= (unsigned char *) ptr
;
393 register unsigned char uu
;
394 for (i
= 0; i
< sz
; i
++,u
++) {
396 *(c
++) = hex
[(uu
& 0xf0) >> 4];
397 *(c
++) = hex
[uu
& 0xf];
402 /* Unpack binary data from a string */
404 SWIG_UnpackData(char *c
, void *ptr
, int sz
) {
405 register unsigned char uu
= 0;
407 unsigned char *u
= (unsigned char *) ptr
;
409 for (i
= 0; i
< sz
; i
++, u
++) {
411 if ((d
>= '0') && (d
<= '9'))
412 uu
= ((d
- '0') << 4);
413 else if ((d
>= 'a') && (d
<= 'f'))
414 uu
= ((d
- ('a'-10)) << 4);
416 if ((d
>= '0') && (d
<= '9'))
418 else if ((d
>= 'a') && (d
<= 'f'))
419 uu
|= (d
- ('a'-10));
425 /* Convert a pointer value */
427 SWIG_ConvertPtr(PyObject
*obj
, void **ptr
, swig_type_info
*ty
, int flags
) {
430 static PyObject
*SWIG_this
= 0;
435 if (obj
== Py_None
) {
439 #ifdef SWIG_COBJECT_TYPES
440 if (!(PyCObject_Check(obj
))) {
442 SWIG_this
= PyString_FromString("this");
444 obj
= PyObject_GetAttr(obj
,SWIG_this
);
446 if (!obj
) goto type_error
;
447 if (!PyCObject_Check(obj
)) {
452 *ptr
= PyCObject_AsVoidPtr(obj
);
453 c
= (char *) PyCObject_GetDesc(obj
);
454 if (newref
) Py_DECREF(obj
);
457 if (!(PyString_Check(obj
))) {
459 SWIG_this
= PyString_FromString("this");
461 obj
= PyObject_GetAttr(obj
,SWIG_this
);
463 if (!obj
) goto type_error
;
464 if (!PyString_Check(obj
)) {
469 c
= PyString_AsString(obj
);
470 /* Pointer values must start with leading underscore */
473 if (strcmp(c
,"NULL") == 0) {
474 if (newref
) { Py_DECREF(obj
); }
477 if (newref
) { Py_DECREF(obj
); }
482 c
= SWIG_UnpackData(c
,ptr
,sizeof(void *));
483 if (newref
) { Py_DECREF(obj
); }
486 #ifdef SWIG_COBJECT_TYPES
491 tc
= SWIG_TypeCheck(c
,ty
);
492 if (!tc
) goto type_error
;
493 *ptr
= SWIG_TypeCast(tc
,(void*) *ptr
);
496 if ((pyobj
) && (flags
& SWIG_POINTER_DISOWN
)) {
497 PyObject
*zero
= PyInt_FromLong(0);
498 PyObject_SetAttrString(pyobj
,(char*)"thisown",zero
);
504 if (flags
& SWIG_POINTER_EXCEPTION
) {
506 char *temp
= (char *) malloc(64+strlen(ty
->name
));
507 sprintf(temp
,"Type error. Expected %s", ty
->name
);
508 PyErr_SetString(PyExc_TypeError
, temp
);
511 PyErr_SetString(PyExc_TypeError
,"Expected a pointer");
517 /* Convert a packed value value */
519 SWIG_ConvertPacked(PyObject
*obj
, void *ptr
, int sz
, swig_type_info
*ty
, int flags
) {
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
;
528 c
= SWIG_UnpackData(c
,ptr
,sz
);
530 tc
= SWIG_TypeCheck(c
,ty
);
531 if (!tc
) goto type_error
;
539 char *temp
= (char *) malloc(64+strlen(ty
->name
));
540 sprintf(temp
,"Type error. Expected %s", ty
->name
);
541 PyErr_SetString(PyExc_TypeError
, temp
);
544 PyErr_SetString(PyExc_TypeError
,"Expected a pointer");
550 /* Create a new pointer object */
551 SWIGRUNTIME(PyObject
*)
552 SWIG_NewPointerObj(void *ptr
, swig_type_info
*type
, int own
) {
558 #ifdef SWIG_COBJECT_TYPES
559 robj
= PyCObject_FromVoidPtrAndDesc((void *) ptr
, (char *) type
->name
, NULL
);
565 r
= SWIG_PackData(r
,&ptr
,sizeof(void *));
566 strcpy(r
,type
->name
);
567 robj
= PyString_FromString(result
);
570 if (!robj
|| (robj
== Py_None
)) return robj
;
571 if (type
->clientdata
) {
573 PyObject
*args
= Py_BuildValue((char*)"(O)", robj
);
575 inst
= PyObject_CallObject((PyObject
*) type
->clientdata
, args
);
579 PyObject
*n
= PyInt_FromLong(1);
580 PyObject_SetAttrString(inst
,(char*)"thisown",n
);
589 SWIGRUNTIME(PyObject
*)
590 SWIG_NewPackedObj(void *ptr
, int sz
, swig_type_info
*type
) {
593 if ((2*sz
+ 1 + strlen(type
->name
)) > 1000) return 0;
595 r
= SWIG_PackData(r
,ptr
,sz
);
596 strcpy(r
,type
->name
);
597 return PyString_FromString(result
);
600 /* Install Constants */
602 SWIG_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
605 for (i
= 0; constants
[i
].type
; i
++) {
606 switch(constants
[i
].type
) {
608 obj
= PyInt_FromLong(constants
[i
].lvalue
);
611 obj
= PyFloat_FromDouble(constants
[i
].dvalue
);
614 obj
= PyString_FromString((char *) constants
[i
].pvalue
);
616 case SWIG_PY_POINTER
:
617 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
620 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
627 PyDict_SetItemString(d
,constants
[i
].name
,obj
);
646 /* -------- TYPES TABLE (BEGIN) -------- */
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_XCirculateEvent swig_types[39]
688 #define SWIGTYPE_p_XConfigureEvent swig_types[40]
689 #define SWIGTYPE_p_otk__OBProperty swig_types[41]
690 #define SWIGTYPE_p_long swig_types[42]
691 #define SWIGTYPE_p_XTextProperty swig_types[43]
692 #define SWIGTYPE_p_otk__OtkEventHandler swig_types[44]
693 #define SWIGTYPE_p_XCirculateRequestEvent swig_types[45]
694 #define SWIGTYPE_p_XConfigureRequestEvent swig_types[46]
695 #define SWIGTYPE_p_XMapRequestEvent swig_types[47]
696 #define SWIGTYPE_p_XResizeRequestEvent swig_types[48]
697 #define SWIGTYPE_p_XSelectionRequestEvent swig_types[49]
698 #define SWIGTYPE_otk__OBTimeoutHandler swig_types[50]
699 #define SWIGTYPE_p_XftDraw swig_types[51]
700 #define SWIGTYPE_p_otk__ScreenInfo swig_types[52]
701 #define SWIGTYPE_p_otk__OtkFocusLabel swig_types[53]
702 #define SWIGTYPE_p_otk__BTexture swig_types[54]
703 #define SWIGTYPE_p_otk__OtkEventDispatcher swig_types[55]
704 #define SWIGTYPE_p_otk__BFont swig_types[56]
705 #define SWIGTYPE_p_otk__Point swig_types[57]
706 #define SWIGTYPE_p_p_char swig_types[58]
707 #define SWIGTYPE_p_XMotionEvent swig_types[59]
708 #define SWIGTYPE_p_XButtonEvent swig_types[60]
709 #define SWIGTYPE_p_XSelectionEvent swig_types[61]
710 #define SWIGTYPE_p_Pixmap swig_types[62]
711 #define SWIGTYPE_p_GC swig_types[63]
712 #define SWIGTYPE_p_otk__OBTimerQueueManager swig_types[64]
713 #define SWIGTYPE_p_otk__OtkAppWidget swig_types[65]
714 #define SWIGTYPE_p_XKeyEvent swig_types[66]
715 #define SWIGTYPE_p_unsigned_long swig_types[67]
716 #define SWIGTYPE_p_XEvent swig_types[68]
717 #define SWIGTYPE_p_p_unsigned_long swig_types[69]
718 #define SWIGTYPE_p_std__string swig_types[70]
719 #define SWIGTYPE_p_XCrossingEvent swig_types[71]
720 #define SWIGTYPE_p_XMappingEvent swig_types[72]
721 #define SWIGTYPE_p_otk__BGCCacheItem swig_types[73]
722 #define SWIGTYPE_p_p_unsigned_int swig_types[74]
723 #define SWIGTYPE_p_unsigned_int swig_types[75]
724 #define SWIGTYPE_p_p_unsigned_char swig_types[76]
725 #define SWIGTYPE_p_XClientMessageEvent swig_types[77]
726 #define SWIGTYPE_p_XGraphicsExposeEvent swig_types[78]
727 #define SWIGTYPE_p_XExposeEvent swig_types[79]
728 #define SWIGTYPE_p_XFocusChangeEvent swig_types[80]
729 #define SWIGTYPE_p_XNoExposeEvent swig_types[81]
730 #define SWIGTYPE_p_XMapEvent swig_types[82]
731 #define SWIGTYPE_p_XUnmapEvent swig_types[83]
732 #define SWIGTYPE_p_XColormapEvent swig_types[84]
733 static swig_type_info
*swig_types
[86];
735 /* -------- TYPES TABLE (END) -------- */
738 /*-----------------------------------------------
740 ------------------------------------------------*/
741 #define SWIG_init init_otk
743 #define SWIG_name "_otk"
746 # include "../config.h"
749 #include "application.hh"
750 #include "appwidget.hh"
751 #include "assassin.hh"
754 #include "configuration.hh"
755 #include "display.hh"
756 #include "eventdispatcher.hh"
757 #include "eventhandler.hh"
758 #include "focuslabel.hh"
759 #include "focuswidget.hh"
761 #include "gccache.hh"
765 #include "property.hh"
767 #include "screeninfo.hh"
770 #include "texture.hh"
772 #include "timerqueue.hh"
773 #include "timerqueuemanager.hh"
778 #define SWIG_MemoryError 1
779 #define SWIG_IOError 2
780 #define SWIG_RuntimeError 3
781 #define SWIG_IndexError 4
782 #define SWIG_TypeError 5
783 #define SWIG_DivisionByZero 6
784 #define SWIG_OverflowError 7
785 #define SWIG_SyntaxError 8
786 #define SWIG_ValueError 9
787 #define SWIG_SystemError 10
788 #define SWIG_UnknownError 99
791 static void _SWIG_exception(int code
, const char *msg
) {
793 case SWIG_MemoryError
:
794 PyErr_SetString(PyExc_MemoryError
,msg
);
797 PyErr_SetString(PyExc_IOError
,msg
);
799 case SWIG_RuntimeError
:
800 PyErr_SetString(PyExc_RuntimeError
,msg
);
802 case SWIG_IndexError
:
803 PyErr_SetString(PyExc_IndexError
,msg
);
806 PyErr_SetString(PyExc_TypeError
,msg
);
808 case SWIG_DivisionByZero
:
809 PyErr_SetString(PyExc_ZeroDivisionError
,msg
);
811 case SWIG_OverflowError
:
812 PyErr_SetString(PyExc_OverflowError
,msg
);
814 case SWIG_SyntaxError
:
815 PyErr_SetString(PyExc_SyntaxError
,msg
);
817 case SWIG_ValueError
:
818 PyErr_SetString(PyExc_ValueError
,msg
);
820 case SWIG_SystemError
:
821 PyErr_SetString(PyExc_SystemError
,msg
);
824 PyErr_SetString(PyExc_RuntimeError
,msg
);
829 #define SWIG_exception(a,b) { _SWIG_exception(a,b); SWIG_fail; }
837 static PyObject
* SwigInt_FromBool(bool b
) {
838 return PyInt_FromLong(b
? 1L : 0L);
840 static double SwigNumber_Check(PyObject
* o
) {
841 return PyFloat_Check(o
) || PyInt_Check(o
);
843 static double SwigNumber_AsDouble(PyObject
* o
) {
844 return (PyFloat_Check(o
) ? PyFloat_AsDouble(o
) : double(PyInt_AsLong(o
)));
846 static PyObject
* SwigString_FromString(const std::string
& s
) {
847 return PyString_FromString(s
.c_str());
849 static std::string
SwigString_AsString(PyObject
* o
) {
850 return std::string(PyString_AsString(o
));
861 static PyObject
*_wrap_new_OtkEventDispatcher(PyObject
*self
, PyObject
*args
) {
863 otk::OtkEventDispatcher
*result
;
865 if(!PyArg_ParseTuple(args
,(char *)":new_OtkEventDispatcher")) goto fail
;
866 result
= (otk::OtkEventDispatcher
*)new otk::OtkEventDispatcher();
868 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkEventDispatcher
, 1);
875 static PyObject
*_wrap_delete_OtkEventDispatcher(PyObject
*self
, PyObject
*args
) {
877 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
878 PyObject
* obj0
= 0 ;
880 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkEventDispatcher",&obj0
)) goto fail
;
881 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
884 Py_INCREF(Py_None
); resultobj
= Py_None
;
891 static PyObject
*_wrap_OtkEventDispatcher_clearAllHandlers(PyObject
*self
, PyObject
*args
) {
893 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
894 PyObject
* obj0
= 0 ;
896 if(!PyArg_ParseTuple(args
,(char *)"O:OtkEventDispatcher_clearAllHandlers",&obj0
)) goto fail
;
897 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
898 (arg1
)->clearAllHandlers();
900 Py_INCREF(Py_None
); resultobj
= Py_None
;
907 static PyObject
*_wrap_OtkEventDispatcher_registerHandler(PyObject
*self
, PyObject
*args
) {
909 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
911 otk::OtkEventHandler
*arg3
= (otk::OtkEventHandler
*) 0 ;
913 PyObject
* obj0
= 0 ;
914 PyObject
* obj1
= 0 ;
915 PyObject
* obj2
= 0 ;
917 if(!PyArg_ParseTuple(args
,(char *)"OOO:OtkEventDispatcher_registerHandler",&obj0
,&obj1
,&obj2
)) goto fail
;
918 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
919 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
921 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
922 (arg1
)->registerHandler(arg2
,arg3
);
924 Py_INCREF(Py_None
); resultobj
= Py_None
;
931 static PyObject
*_wrap_OtkEventDispatcher_clearHandler(PyObject
*self
, PyObject
*args
) {
933 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
936 PyObject
* obj0
= 0 ;
937 PyObject
* obj1
= 0 ;
939 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventDispatcher_clearHandler",&obj0
,&obj1
)) goto fail
;
940 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
941 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
943 (arg1
)->clearHandler(arg2
);
945 Py_INCREF(Py_None
); resultobj
= Py_None
;
952 static PyObject
*_wrap_OtkEventDispatcher_dispatchEvents(PyObject
*self
, PyObject
*args
) {
954 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
955 PyObject
* obj0
= 0 ;
957 if(!PyArg_ParseTuple(args
,(char *)"O:OtkEventDispatcher_dispatchEvents",&obj0
)) goto fail
;
958 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
959 (arg1
)->dispatchEvents();
961 Py_INCREF(Py_None
); resultobj
= Py_None
;
968 static PyObject
*_wrap_OtkEventDispatcher_setFallbackHandler(PyObject
*self
, PyObject
*args
) {
970 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
971 otk::OtkEventHandler
*arg2
= (otk::OtkEventHandler
*) 0 ;
972 PyObject
* obj0
= 0 ;
973 PyObject
* obj1
= 0 ;
975 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventDispatcher_setFallbackHandler",&obj0
,&obj1
)) goto fail
;
976 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
977 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
978 (arg1
)->setFallbackHandler(arg2
);
980 Py_INCREF(Py_None
); resultobj
= Py_None
;
987 static PyObject
*_wrap_OtkEventDispatcher_getFallbackHandler(PyObject
*self
, PyObject
*args
) {
989 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
990 otk::OtkEventHandler
*result
;
991 PyObject
* obj0
= 0 ;
993 if(!PyArg_ParseTuple(args
,(char *)"O:OtkEventDispatcher_getFallbackHandler",&obj0
)) goto fail
;
994 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
995 result
= (otk::OtkEventHandler
*)((otk::OtkEventDispatcher
const *)arg1
)->getFallbackHandler();
997 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkEventHandler
, 0);
1004 static PyObject
*_wrap_OtkEventDispatcher_setMasterHandler(PyObject
*self
, PyObject
*args
) {
1005 PyObject
*resultobj
;
1006 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
1007 otk::OtkEventHandler
*arg2
= (otk::OtkEventHandler
*) 0 ;
1008 PyObject
* obj0
= 0 ;
1009 PyObject
* obj1
= 0 ;
1011 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventDispatcher_setMasterHandler",&obj0
,&obj1
)) goto fail
;
1012 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1013 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1014 (arg1
)->setMasterHandler(arg2
);
1016 Py_INCREF(Py_None
); resultobj
= Py_None
;
1023 static PyObject
*_wrap_OtkEventDispatcher_getMasterHandler(PyObject
*self
, PyObject
*args
) {
1024 PyObject
*resultobj
;
1025 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
1026 otk::OtkEventHandler
*result
;
1027 PyObject
* obj0
= 0 ;
1029 if(!PyArg_ParseTuple(args
,(char *)"O:OtkEventDispatcher_getMasterHandler",&obj0
)) goto fail
;
1030 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1031 result
= (otk::OtkEventHandler
*)((otk::OtkEventDispatcher
const *)arg1
)->getMasterHandler();
1033 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkEventHandler
, 0);
1040 static PyObject
*_wrap_OtkEventDispatcher_findHandler(PyObject
*self
, PyObject
*args
) {
1041 PyObject
*resultobj
;
1042 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
1044 otk::OtkEventHandler
*result
;
1046 PyObject
* obj0
= 0 ;
1047 PyObject
* obj1
= 0 ;
1049 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventDispatcher_findHandler",&obj0
,&obj1
)) goto fail
;
1050 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1051 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
1053 result
= (otk::OtkEventHandler
*)(arg1
)->findHandler(arg2
);
1055 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkEventHandler
, 0);
1062 static PyObject
* OtkEventDispatcher_swigregister(PyObject
*self
, PyObject
*args
) {
1064 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
1065 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkEventDispatcher
, obj
);
1067 return Py_BuildValue((char *)"");
1069 static PyObject
*_wrap_OtkEventHandler_handle(PyObject
*self
, PyObject
*args
) {
1070 PyObject
*resultobj
;
1071 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1073 PyObject
* obj0
= 0 ;
1074 PyObject
* obj1
= 0 ;
1076 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_handle",&obj0
,&obj1
)) goto fail
;
1077 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1078 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1080 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1082 (arg1
)->handle((XEvent
const &)*arg2
);
1084 Py_INCREF(Py_None
); resultobj
= Py_None
;
1091 static PyObject
*_wrap_OtkEventHandler_keyPressHandler(PyObject
*self
, PyObject
*args
) {
1092 PyObject
*resultobj
;
1093 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1094 XKeyEvent
*arg2
= 0 ;
1095 PyObject
* obj0
= 0 ;
1096 PyObject
* obj1
= 0 ;
1098 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_keyPressHandler",&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_XKeyEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1102 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1104 (arg1
)->keyPressHandler((XKeyEvent
const &)*arg2
);
1106 Py_INCREF(Py_None
); resultobj
= Py_None
;
1113 static PyObject
*_wrap_OtkEventHandler_keyReleaseHandler(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 ;
1120 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_keyReleaseHandler",&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
;
1124 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1126 (arg1
)->keyReleaseHandler((XKeyEvent
const &)*arg2
);
1128 Py_INCREF(Py_None
); resultobj
= Py_None
;
1135 static PyObject
*_wrap_OtkEventHandler_buttonPressHandler(PyObject
*self
, PyObject
*args
) {
1136 PyObject
*resultobj
;
1137 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1138 XButtonEvent
*arg2
= 0 ;
1139 PyObject
* obj0
= 0 ;
1140 PyObject
* obj1
= 0 ;
1142 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_buttonPressHandler",&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_XButtonEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1146 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1148 (arg1
)->buttonPressHandler((XButtonEvent
const &)*arg2
);
1150 Py_INCREF(Py_None
); resultobj
= Py_None
;
1157 static PyObject
*_wrap_OtkEventHandler_buttonReleaseHandler(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 ;
1164 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_buttonReleaseHandler",&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
;
1168 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1170 (arg1
)->buttonReleaseHandler((XButtonEvent
const &)*arg2
);
1172 Py_INCREF(Py_None
); resultobj
= Py_None
;
1179 static PyObject
*_wrap_OtkEventHandler_motionHandler(PyObject
*self
, PyObject
*args
) {
1180 PyObject
*resultobj
;
1181 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1182 XMotionEvent
*arg2
= 0 ;
1183 PyObject
* obj0
= 0 ;
1184 PyObject
* obj1
= 0 ;
1186 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_motionHandler",&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_XMotionEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1190 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1192 (arg1
)->motionHandler((XMotionEvent
const &)*arg2
);
1194 Py_INCREF(Py_None
); resultobj
= Py_None
;
1201 static PyObject
*_wrap_OtkEventHandler_enterHandler(PyObject
*self
, PyObject
*args
) {
1202 PyObject
*resultobj
;
1203 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1204 XCrossingEvent
*arg2
= 0 ;
1205 PyObject
* obj0
= 0 ;
1206 PyObject
* obj1
= 0 ;
1208 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_enterHandler",&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_XCrossingEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1212 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1214 (arg1
)->enterHandler((XCrossingEvent
const &)*arg2
);
1216 Py_INCREF(Py_None
); resultobj
= Py_None
;
1223 static PyObject
*_wrap_OtkEventHandler_leaveHandler(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 ;
1230 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_leaveHandler",&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
;
1234 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1236 (arg1
)->leaveHandler((XCrossingEvent
const &)*arg2
);
1238 Py_INCREF(Py_None
); resultobj
= Py_None
;
1245 static PyObject
*_wrap_OtkEventHandler_focusHandler(PyObject
*self
, PyObject
*args
) {
1246 PyObject
*resultobj
;
1247 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1248 XFocusChangeEvent
*arg2
= 0 ;
1249 PyObject
* obj0
= 0 ;
1250 PyObject
* obj1
= 0 ;
1252 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_focusHandler",&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_XFocusChangeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1256 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1258 (arg1
)->focusHandler((XFocusChangeEvent
const &)*arg2
);
1260 Py_INCREF(Py_None
); resultobj
= Py_None
;
1267 static PyObject
*_wrap_OtkEventHandler_unfocusHandler(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 ;
1274 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_unfocusHandler",&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
;
1278 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1280 (arg1
)->unfocusHandler((XFocusChangeEvent
const &)*arg2
);
1282 Py_INCREF(Py_None
); resultobj
= Py_None
;
1289 static PyObject
*_wrap_OtkEventHandler_exposeHandler(PyObject
*self
, PyObject
*args
) {
1290 PyObject
*resultobj
;
1291 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1292 XExposeEvent
*arg2
= 0 ;
1293 PyObject
* obj0
= 0 ;
1294 PyObject
* obj1
= 0 ;
1296 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_exposeHandler",&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_XExposeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1300 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1302 (arg1
)->exposeHandler((XExposeEvent
const &)*arg2
);
1304 Py_INCREF(Py_None
); resultobj
= Py_None
;
1311 static PyObject
*_wrap_OtkEventHandler_graphicsExposeHandler(PyObject
*self
, PyObject
*args
) {
1312 PyObject
*resultobj
;
1313 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1314 XGraphicsExposeEvent
*arg2
= 0 ;
1315 PyObject
* obj0
= 0 ;
1316 PyObject
* obj1
= 0 ;
1318 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_graphicsExposeHandler",&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_XGraphicsExposeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1322 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1324 (arg1
)->graphicsExposeHandler((XGraphicsExposeEvent
const &)*arg2
);
1326 Py_INCREF(Py_None
); resultobj
= Py_None
;
1333 static PyObject
*_wrap_OtkEventHandler_noExposeEventHandler(PyObject
*self
, PyObject
*args
) {
1334 PyObject
*resultobj
;
1335 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1336 XNoExposeEvent
*arg2
= 0 ;
1337 PyObject
* obj0
= 0 ;
1338 PyObject
* obj1
= 0 ;
1340 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_noExposeEventHandler",&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_XNoExposeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1344 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1346 (arg1
)->noExposeEventHandler((XNoExposeEvent
const &)*arg2
);
1348 Py_INCREF(Py_None
); resultobj
= Py_None
;
1355 static PyObject
*_wrap_OtkEventHandler_circulateRequestHandler(PyObject
*self
, PyObject
*args
) {
1356 PyObject
*resultobj
;
1357 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1358 XCirculateRequestEvent
*arg2
= 0 ;
1359 PyObject
* obj0
= 0 ;
1360 PyObject
* obj1
= 0 ;
1362 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_circulateRequestHandler",&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_XCirculateRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1366 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1368 (arg1
)->circulateRequestHandler((XCirculateRequestEvent
const &)*arg2
);
1370 Py_INCREF(Py_None
); resultobj
= Py_None
;
1377 static PyObject
*_wrap_OtkEventHandler_configureRequestHandler(PyObject
*self
, PyObject
*args
) {
1378 PyObject
*resultobj
;
1379 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1380 XConfigureRequestEvent
*arg2
= 0 ;
1381 PyObject
* obj0
= 0 ;
1382 PyObject
* obj1
= 0 ;
1384 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_configureRequestHandler",&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_XConfigureRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1388 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1390 (arg1
)->configureRequestHandler((XConfigureRequestEvent
const &)*arg2
);
1392 Py_INCREF(Py_None
); resultobj
= Py_None
;
1399 static PyObject
*_wrap_OtkEventHandler_mapRequestHandler(PyObject
*self
, PyObject
*args
) {
1400 PyObject
*resultobj
;
1401 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1402 XMapRequestEvent
*arg2
= 0 ;
1403 PyObject
* obj0
= 0 ;
1404 PyObject
* obj1
= 0 ;
1406 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_mapRequestHandler",&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_XMapRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1410 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1412 (arg1
)->mapRequestHandler((XMapRequestEvent
const &)*arg2
);
1414 Py_INCREF(Py_None
); resultobj
= Py_None
;
1421 static PyObject
*_wrap_OtkEventHandler_resizeRequestHandler(PyObject
*self
, PyObject
*args
) {
1422 PyObject
*resultobj
;
1423 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1424 XResizeRequestEvent
*arg2
= 0 ;
1425 PyObject
* obj0
= 0 ;
1426 PyObject
* obj1
= 0 ;
1428 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_resizeRequestHandler",&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_XResizeRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1432 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1434 (arg1
)->resizeRequestHandler((XResizeRequestEvent
const &)*arg2
);
1436 Py_INCREF(Py_None
); resultobj
= Py_None
;
1443 static PyObject
*_wrap_OtkEventHandler_circulateHandler(PyObject
*self
, PyObject
*args
) {
1444 PyObject
*resultobj
;
1445 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1446 XCirculateEvent
*arg2
= 0 ;
1447 PyObject
* obj0
= 0 ;
1448 PyObject
* obj1
= 0 ;
1450 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_circulateHandler",&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_XCirculateEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1454 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1456 (arg1
)->circulateHandler((XCirculateEvent
const &)*arg2
);
1458 Py_INCREF(Py_None
); resultobj
= Py_None
;
1465 static PyObject
*_wrap_OtkEventHandler_configureHandler(PyObject
*self
, PyObject
*args
) {
1466 PyObject
*resultobj
;
1467 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1468 XConfigureEvent
*arg2
= 0 ;
1469 PyObject
* obj0
= 0 ;
1470 PyObject
* obj1
= 0 ;
1472 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_configureHandler",&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_XConfigureEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1476 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1478 (arg1
)->configureHandler((XConfigureEvent
const &)*arg2
);
1480 Py_INCREF(Py_None
); resultobj
= Py_None
;
1487 static PyObject
*_wrap_OtkEventHandler_createHandler(PyObject
*self
, PyObject
*args
) {
1488 PyObject
*resultobj
;
1489 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1490 XCreateWindowEvent
*arg2
= 0 ;
1491 PyObject
* obj0
= 0 ;
1492 PyObject
* obj1
= 0 ;
1494 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_createHandler",&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_XCreateWindowEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1498 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1500 (arg1
)->createHandler((XCreateWindowEvent
const &)*arg2
);
1502 Py_INCREF(Py_None
); resultobj
= Py_None
;
1509 static PyObject
*_wrap_OtkEventHandler_destroyHandler(PyObject
*self
, PyObject
*args
) {
1510 PyObject
*resultobj
;
1511 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1512 XDestroyWindowEvent
*arg2
= 0 ;
1513 PyObject
* obj0
= 0 ;
1514 PyObject
* obj1
= 0 ;
1516 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_destroyHandler",&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_XDestroyWindowEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1520 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1522 (arg1
)->destroyHandler((XDestroyWindowEvent
const &)*arg2
);
1524 Py_INCREF(Py_None
); resultobj
= Py_None
;
1531 static PyObject
*_wrap_OtkEventHandler_gravityHandler(PyObject
*self
, PyObject
*args
) {
1532 PyObject
*resultobj
;
1533 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1534 XGravityEvent
*arg2
= 0 ;
1535 PyObject
* obj0
= 0 ;
1536 PyObject
* obj1
= 0 ;
1538 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_gravityHandler",&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_XGravityEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1542 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1544 (arg1
)->gravityHandler((XGravityEvent
const &)*arg2
);
1546 Py_INCREF(Py_None
); resultobj
= Py_None
;
1553 static PyObject
*_wrap_OtkEventHandler_mapHandler(PyObject
*self
, PyObject
*args
) {
1554 PyObject
*resultobj
;
1555 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1556 XMapEvent
*arg2
= 0 ;
1557 PyObject
* obj0
= 0 ;
1558 PyObject
* obj1
= 0 ;
1560 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_mapHandler",&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_XMapEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1564 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1566 (arg1
)->mapHandler((XMapEvent
const &)*arg2
);
1568 Py_INCREF(Py_None
); resultobj
= Py_None
;
1575 static PyObject
*_wrap_OtkEventHandler_mappingHandler(PyObject
*self
, PyObject
*args
) {
1576 PyObject
*resultobj
;
1577 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1578 XMappingEvent
*arg2
= 0 ;
1579 PyObject
* obj0
= 0 ;
1580 PyObject
* obj1
= 0 ;
1582 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_mappingHandler",&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_XMappingEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1586 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1588 (arg1
)->mappingHandler((XMappingEvent
const &)*arg2
);
1590 Py_INCREF(Py_None
); resultobj
= Py_None
;
1597 static PyObject
*_wrap_OtkEventHandler_reparentHandler(PyObject
*self
, PyObject
*args
) {
1598 PyObject
*resultobj
;
1599 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1600 XReparentEvent
*arg2
= 0 ;
1601 PyObject
* obj0
= 0 ;
1602 PyObject
* obj1
= 0 ;
1604 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_reparentHandler",&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_XReparentEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1608 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1610 (arg1
)->reparentHandler((XReparentEvent
const &)*arg2
);
1612 Py_INCREF(Py_None
); resultobj
= Py_None
;
1619 static PyObject
*_wrap_OtkEventHandler_unmapHandler(PyObject
*self
, PyObject
*args
) {
1620 PyObject
*resultobj
;
1621 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1622 XUnmapEvent
*arg2
= 0 ;
1623 PyObject
* obj0
= 0 ;
1624 PyObject
* obj1
= 0 ;
1626 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_unmapHandler",&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_XUnmapEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1630 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1632 (arg1
)->unmapHandler((XUnmapEvent
const &)*arg2
);
1634 Py_INCREF(Py_None
); resultobj
= Py_None
;
1641 static PyObject
*_wrap_OtkEventHandler_visibilityHandler(PyObject
*self
, PyObject
*args
) {
1642 PyObject
*resultobj
;
1643 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1644 XVisibilityEvent
*arg2
= 0 ;
1645 PyObject
* obj0
= 0 ;
1646 PyObject
* obj1
= 0 ;
1648 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_visibilityHandler",&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_XVisibilityEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1652 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1654 (arg1
)->visibilityHandler((XVisibilityEvent
const &)*arg2
);
1656 Py_INCREF(Py_None
); resultobj
= Py_None
;
1663 static PyObject
*_wrap_OtkEventHandler_colorMapHandler(PyObject
*self
, PyObject
*args
) {
1664 PyObject
*resultobj
;
1665 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1666 XColormapEvent
*arg2
= 0 ;
1667 PyObject
* obj0
= 0 ;
1668 PyObject
* obj1
= 0 ;
1670 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_colorMapHandler",&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_XColormapEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1674 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1676 (arg1
)->colorMapHandler((XColormapEvent
const &)*arg2
);
1678 Py_INCREF(Py_None
); resultobj
= Py_None
;
1685 static PyObject
*_wrap_OtkEventHandler_propertyHandler(PyObject
*self
, PyObject
*args
) {
1686 PyObject
*resultobj
;
1687 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1688 XPropertyEvent
*arg2
= 0 ;
1689 PyObject
* obj0
= 0 ;
1690 PyObject
* obj1
= 0 ;
1692 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_propertyHandler",&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_XPropertyEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1696 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1698 (arg1
)->propertyHandler((XPropertyEvent
const &)*arg2
);
1700 Py_INCREF(Py_None
); resultobj
= Py_None
;
1707 static PyObject
*_wrap_OtkEventHandler_selectionClearHandler(PyObject
*self
, PyObject
*args
) {
1708 PyObject
*resultobj
;
1709 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1710 XSelectionClearEvent
*arg2
= 0 ;
1711 PyObject
* obj0
= 0 ;
1712 PyObject
* obj1
= 0 ;
1714 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_selectionClearHandler",&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_XSelectionClearEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1718 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1720 (arg1
)->selectionClearHandler((XSelectionClearEvent
const &)*arg2
);
1722 Py_INCREF(Py_None
); resultobj
= Py_None
;
1729 static PyObject
*_wrap_OtkEventHandler_selectionHandler(PyObject
*self
, PyObject
*args
) {
1730 PyObject
*resultobj
;
1731 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1732 XSelectionEvent
*arg2
= 0 ;
1733 PyObject
* obj0
= 0 ;
1734 PyObject
* obj1
= 0 ;
1736 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_selectionHandler",&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_XSelectionEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1740 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1742 (arg1
)->selectionHandler((XSelectionEvent
const &)*arg2
);
1744 Py_INCREF(Py_None
); resultobj
= Py_None
;
1751 static PyObject
*_wrap_OtkEventHandler_selectionRequestHandler(PyObject
*self
, PyObject
*args
) {
1752 PyObject
*resultobj
;
1753 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1754 XSelectionRequestEvent
*arg2
= 0 ;
1755 PyObject
* obj0
= 0 ;
1756 PyObject
* obj1
= 0 ;
1758 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_selectionRequestHandler",&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_XSelectionRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1762 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1764 (arg1
)->selectionRequestHandler((XSelectionRequestEvent
const &)*arg2
);
1766 Py_INCREF(Py_None
); resultobj
= Py_None
;
1773 static PyObject
*_wrap_OtkEventHandler_clientMessageHandler(PyObject
*self
, PyObject
*args
) {
1774 PyObject
*resultobj
;
1775 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1776 XClientMessageEvent
*arg2
= 0 ;
1777 PyObject
* obj0
= 0 ;
1778 PyObject
* obj1
= 0 ;
1780 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_clientMessageHandler",&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_XClientMessageEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1784 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1786 (arg1
)->clientMessageHandler((XClientMessageEvent
const &)*arg2
);
1788 Py_INCREF(Py_None
); resultobj
= Py_None
;
1795 static PyObject
*_wrap_delete_OtkEventHandler(PyObject
*self
, PyObject
*args
) {
1796 PyObject
*resultobj
;
1797 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1798 PyObject
* obj0
= 0 ;
1800 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkEventHandler",&obj0
)) goto fail
;
1801 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1804 Py_INCREF(Py_None
); resultobj
= Py_None
;
1811 static PyObject
* OtkEventHandler_swigregister(PyObject
*self
, PyObject
*args
) {
1813 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
1814 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkEventHandler
, obj
);
1816 return Py_BuildValue((char *)"");
1818 static PyObject
*_wrap_new_OtkWidget__SWIG_0(PyObject
*self
, PyObject
*args
) {
1819 PyObject
*resultobj
;
1820 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
1821 int arg2
= (int) otk::OtkWidget::Horizontal
;
1822 otk::OtkWidget
*result
;
1823 PyObject
* obj0
= 0 ;
1825 if(!PyArg_ParseTuple(args
,(char *)"O|i:new_OtkWidget",&obj0
,&arg2
)) goto fail
;
1826 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1827 result
= (otk::OtkWidget
*)new otk::OtkWidget(arg1
,(otk::OtkWidget::Direction
)arg2
);
1829 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkWidget
, 1);
1836 static PyObject
*_wrap_new_OtkWidget__SWIG_1(PyObject
*self
, PyObject
*args
) {
1837 PyObject
*resultobj
;
1838 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
1839 otk::Style
*arg2
= (otk::Style
*) 0 ;
1840 int arg3
= (int) otk::OtkWidget::Horizontal
;
1841 Cursor arg4
= (Cursor
) 0 ;
1842 int arg5
= (int) 1 ;
1843 otk::OtkWidget
*result
;
1845 PyObject
* obj0
= 0 ;
1846 PyObject
* obj1
= 0 ;
1847 PyObject
* obj3
= 0 ;
1849 if(!PyArg_ParseTuple(args
,(char *)"OO|iOi:new_OtkWidget",&obj0
,&obj1
,&arg3
,&obj3
,&arg5
)) goto fail
;
1850 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1851 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1853 if ((SWIG_ConvertPtr(obj3
,(void **) &argp4
, SWIGTYPE_p_Cursor
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
1856 result
= (otk::OtkWidget
*)new otk::OtkWidget(arg1
,arg2
,(otk::OtkWidget::Direction
)arg3
,arg4
,arg5
);
1858 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkWidget
, 1);
1865 static PyObject
*_wrap_new_OtkWidget(PyObject
*self
, PyObject
*args
) {
1870 argc
= PyObject_Length(args
);
1871 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
1872 argv
[ii
] = PyTuple_GetItem(args
,ii
);
1874 if ((argc
>= 1) && (argc
<= 2)) {
1878 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
1887 return _wrap_new_OtkWidget__SWIG_0(self
,args
);
1890 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
1893 return _wrap_new_OtkWidget__SWIG_0(self
,args
);
1897 if ((argc
>= 2) && (argc
<= 5)) {
1901 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkEventDispatcher
, 0) == -1) {
1911 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Style
, 0) == -1) {
1920 return _wrap_new_OtkWidget__SWIG_1(self
,args
);
1923 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
1927 return _wrap_new_OtkWidget__SWIG_1(self
,args
);
1931 if (SWIG_ConvertPtr(argv
[3], (void **) &ptr
, SWIGTYPE_p_Cursor
, 0) == -1) {
1940 return _wrap_new_OtkWidget__SWIG_1(self
,args
);
1943 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
1946 return _wrap_new_OtkWidget__SWIG_1(self
,args
);
1954 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_OtkWidget'");
1959 static PyObject
*_wrap_delete_OtkWidget(PyObject
*self
, PyObject
*args
) {
1960 PyObject
*resultobj
;
1961 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
1962 PyObject
* obj0
= 0 ;
1964 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkWidget",&obj0
)) goto fail
;
1965 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1968 Py_INCREF(Py_None
); resultobj
= Py_None
;
1975 static PyObject
*_wrap_OtkWidget_update(PyObject
*self
, PyObject
*args
) {
1976 PyObject
*resultobj
;
1977 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
1978 PyObject
* obj0
= 0 ;
1980 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_update",&obj0
)) goto fail
;
1981 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1984 Py_INCREF(Py_None
); resultobj
= Py_None
;
1991 static PyObject
*_wrap_OtkWidget_exposeHandler(PyObject
*self
, PyObject
*args
) {
1992 PyObject
*resultobj
;
1993 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
1994 XExposeEvent
*arg2
= 0 ;
1995 PyObject
* obj0
= 0 ;
1996 PyObject
* obj1
= 0 ;
1998 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_exposeHandler",&obj0
,&obj1
)) goto fail
;
1999 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2000 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XExposeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2002 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2004 (arg1
)->exposeHandler((XExposeEvent
const &)*arg2
);
2006 Py_INCREF(Py_None
); resultobj
= Py_None
;
2013 static PyObject
*_wrap_OtkWidget_configureHandler(PyObject
*self
, PyObject
*args
) {
2014 PyObject
*resultobj
;
2015 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2016 XConfigureEvent
*arg2
= 0 ;
2017 PyObject
* obj0
= 0 ;
2018 PyObject
* obj1
= 0 ;
2020 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_configureHandler",&obj0
,&obj1
)) goto fail
;
2021 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2022 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XConfigureEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2024 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2026 (arg1
)->configureHandler((XConfigureEvent
const &)*arg2
);
2028 Py_INCREF(Py_None
); resultobj
= Py_None
;
2035 static PyObject
*_wrap_OtkWidget_window(PyObject
*self
, PyObject
*args
) {
2036 PyObject
*resultobj
;
2037 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2039 PyObject
* obj0
= 0 ;
2041 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_window",&obj0
)) goto fail
;
2042 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2043 result
= ((otk::OtkWidget
const *)arg1
)->window();
2047 resultptr
= new Window((Window
&) result
);
2048 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Window
, 1);
2056 static PyObject
*_wrap_OtkWidget_parent(PyObject
*self
, PyObject
*args
) {
2057 PyObject
*resultobj
;
2058 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2059 otk::OtkWidget
*result
;
2060 PyObject
* obj0
= 0 ;
2062 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_parent",&obj0
)) goto fail
;
2063 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2064 result
= (otk::OtkWidget
*)((otk::OtkWidget
const *)arg1
)->parent();
2066 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkWidget
, 0);
2073 static PyObject
*_wrap_OtkWidget_children(PyObject
*self
, PyObject
*args
) {
2074 PyObject
*resultobj
;
2075 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2076 otk::OtkWidget::OtkWidgetList
*result
;
2077 PyObject
* obj0
= 0 ;
2079 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_children",&obj0
)) goto fail
;
2080 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2082 otk::OtkWidget::OtkWidgetList
const &_result_ref
= ((otk::OtkWidget
const *)arg1
)->children();
2083 result
= (otk::OtkWidget::OtkWidgetList
*) &_result_ref
;
2086 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkWidget__OtkWidgetList
, 0);
2093 static PyObject
*_wrap_OtkWidget_screen(PyObject
*self
, PyObject
*args
) {
2094 PyObject
*resultobj
;
2095 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2096 unsigned int result
;
2097 PyObject
* obj0
= 0 ;
2099 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_screen",&obj0
)) goto fail
;
2100 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2101 result
= (unsigned int)((otk::OtkWidget
const *)arg1
)->screen();
2103 resultobj
= PyInt_FromLong((long)result
);
2110 static PyObject
*_wrap_OtkWidget_rect(PyObject
*self
, PyObject
*args
) {
2111 PyObject
*resultobj
;
2112 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2114 PyObject
* obj0
= 0 ;
2116 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_rect",&obj0
)) goto fail
;
2117 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2119 otk::Rect
const &_result_ref
= ((otk::OtkWidget
const *)arg1
)->rect();
2120 result
= (otk::Rect
*) &_result_ref
;
2123 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 0);
2130 static PyObject
*_wrap_OtkWidget_move__SWIG_0(PyObject
*self
, PyObject
*args
) {
2131 PyObject
*resultobj
;
2132 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2133 otk::Point
*arg2
= 0 ;
2134 PyObject
* obj0
= 0 ;
2135 PyObject
* obj1
= 0 ;
2137 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_move",&obj0
,&obj1
)) goto fail
;
2138 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2139 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2141 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2143 (arg1
)->move((otk::Point
const &)*arg2
);
2145 Py_INCREF(Py_None
); resultobj
= Py_None
;
2152 static PyObject
*_wrap_OtkWidget_move__SWIG_1(PyObject
*self
, PyObject
*args
) {
2153 PyObject
*resultobj
;
2154 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2157 PyObject
* obj0
= 0 ;
2159 if(!PyArg_ParseTuple(args
,(char *)"Oii:OtkWidget_move",&obj0
,&arg2
,&arg3
)) goto fail
;
2160 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2161 (arg1
)->move(arg2
,arg3
);
2163 Py_INCREF(Py_None
); resultobj
= Py_None
;
2170 static PyObject
*_wrap_OtkWidget_move(PyObject
*self
, PyObject
*args
) {
2175 argc
= PyObject_Length(args
);
2176 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
2177 argv
[ii
] = PyTuple_GetItem(args
,ii
);
2183 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2193 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
2201 return _wrap_OtkWidget_move__SWIG_0(self
,args
);
2209 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2218 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
2222 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
2225 return _wrap_OtkWidget_move__SWIG_1(self
,args
);
2231 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OtkWidget_move'");
2236 static PyObject
*_wrap_OtkWidget_setWidth(PyObject
*self
, PyObject
*args
) {
2237 PyObject
*resultobj
;
2238 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2240 PyObject
* obj0
= 0 ;
2242 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setWidth",&obj0
,&arg2
)) goto fail
;
2243 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2244 (arg1
)->setWidth(arg2
);
2246 Py_INCREF(Py_None
); resultobj
= Py_None
;
2253 static PyObject
*_wrap_OtkWidget_setHeight(PyObject
*self
, PyObject
*args
) {
2254 PyObject
*resultobj
;
2255 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2257 PyObject
* obj0
= 0 ;
2259 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setHeight",&obj0
,&arg2
)) goto fail
;
2260 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2261 (arg1
)->setHeight(arg2
);
2263 Py_INCREF(Py_None
); resultobj
= Py_None
;
2270 static PyObject
*_wrap_OtkWidget_width(PyObject
*self
, PyObject
*args
) {
2271 PyObject
*resultobj
;
2272 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2274 PyObject
* obj0
= 0 ;
2276 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_width",&obj0
)) goto fail
;
2277 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2278 result
= (int)((otk::OtkWidget
const *)arg1
)->width();
2280 resultobj
= PyInt_FromLong((long)result
);
2287 static PyObject
*_wrap_OtkWidget_height(PyObject
*self
, PyObject
*args
) {
2288 PyObject
*resultobj
;
2289 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2291 PyObject
* obj0
= 0 ;
2293 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_height",&obj0
)) goto fail
;
2294 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2295 result
= (int)((otk::OtkWidget
const *)arg1
)->height();
2297 resultobj
= PyInt_FromLong((long)result
);
2304 static PyObject
*_wrap_OtkWidget_resize__SWIG_0(PyObject
*self
, PyObject
*args
) {
2305 PyObject
*resultobj
;
2306 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2307 otk::Point
*arg2
= 0 ;
2308 PyObject
* obj0
= 0 ;
2309 PyObject
* obj1
= 0 ;
2311 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_resize",&obj0
,&obj1
)) goto fail
;
2312 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2313 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2315 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2317 (arg1
)->resize((otk::Point
const &)*arg2
);
2319 Py_INCREF(Py_None
); resultobj
= Py_None
;
2326 static PyObject
*_wrap_OtkWidget_resize__SWIG_1(PyObject
*self
, PyObject
*args
) {
2327 PyObject
*resultobj
;
2328 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2331 PyObject
* obj0
= 0 ;
2333 if(!PyArg_ParseTuple(args
,(char *)"Oii:OtkWidget_resize",&obj0
,&arg2
,&arg3
)) goto fail
;
2334 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2335 (arg1
)->resize(arg2
,arg3
);
2337 Py_INCREF(Py_None
); resultobj
= Py_None
;
2344 static PyObject
*_wrap_OtkWidget_resize(PyObject
*self
, PyObject
*args
) {
2349 argc
= PyObject_Length(args
);
2350 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
2351 argv
[ii
] = PyTuple_GetItem(args
,ii
);
2357 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2367 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
2375 return _wrap_OtkWidget_resize__SWIG_0(self
,args
);
2383 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2392 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
2396 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
2399 return _wrap_OtkWidget_resize__SWIG_1(self
,args
);
2405 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OtkWidget_resize'");
2410 static PyObject
*_wrap_OtkWidget_setGeometry__SWIG_0(PyObject
*self
, PyObject
*args
) {
2411 PyObject
*resultobj
;
2412 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2413 otk::Rect
*arg2
= 0 ;
2414 PyObject
* obj0
= 0 ;
2415 PyObject
* obj1
= 0 ;
2417 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setGeometry",&obj0
,&obj1
)) goto fail
;
2418 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2419 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2421 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2423 (arg1
)->setGeometry((otk::Rect
const &)*arg2
);
2425 Py_INCREF(Py_None
); resultobj
= Py_None
;
2432 static PyObject
*_wrap_OtkWidget_setGeometry__SWIG_1(PyObject
*self
, PyObject
*args
) {
2433 PyObject
*resultobj
;
2434 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2435 otk::Point
*arg2
= 0 ;
2438 PyObject
* obj0
= 0 ;
2439 PyObject
* obj1
= 0 ;
2441 if(!PyArg_ParseTuple(args
,(char *)"OOii:OtkWidget_setGeometry",&obj0
,&obj1
,&arg3
,&arg4
)) goto fail
;
2442 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2443 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2445 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2447 (arg1
)->setGeometry((otk::Point
const &)*arg2
,arg3
,arg4
);
2449 Py_INCREF(Py_None
); resultobj
= Py_None
;
2456 static PyObject
*_wrap_OtkWidget_setGeometry__SWIG_2(PyObject
*self
, PyObject
*args
) {
2457 PyObject
*resultobj
;
2458 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2463 PyObject
* obj0
= 0 ;
2465 if(!PyArg_ParseTuple(args
,(char *)"Oiiii:OtkWidget_setGeometry",&obj0
,&arg2
,&arg3
,&arg4
,&arg5
)) goto fail
;
2466 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2467 (arg1
)->setGeometry(arg2
,arg3
,arg4
,arg5
);
2469 Py_INCREF(Py_None
); resultobj
= Py_None
;
2476 static PyObject
*_wrap_OtkWidget_setGeometry(PyObject
*self
, PyObject
*args
) {
2481 argc
= PyObject_Length(args
);
2482 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
2483 argv
[ii
] = PyTuple_GetItem(args
,ii
);
2489 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2499 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
2507 return _wrap_OtkWidget_setGeometry__SWIG_0(self
,args
);
2515 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2525 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
2534 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
2538 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
2541 return _wrap_OtkWidget_setGeometry__SWIG_1(self
,args
);
2551 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2560 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
2564 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
2568 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
2572 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
2575 return _wrap_OtkWidget_setGeometry__SWIG_2(self
,args
);
2583 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OtkWidget_setGeometry'");
2588 static PyObject
*_wrap_OtkWidget_isVisible(PyObject
*self
, PyObject
*args
) {
2589 PyObject
*resultobj
;
2590 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2592 PyObject
* obj0
= 0 ;
2594 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_isVisible",&obj0
)) goto fail
;
2595 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2596 result
= (bool)((otk::OtkWidget
const *)arg1
)->isVisible();
2598 resultobj
= PyInt_FromLong((long)result
);
2605 static PyObject
*_wrap_OtkWidget_show(PyObject
*self
, PyObject
*args
) {
2606 PyObject
*resultobj
;
2607 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2608 bool arg2
= (bool) false ;
2609 PyObject
* obj0
= 0 ;
2610 PyObject
* obj1
= 0 ;
2612 if(!PyArg_ParseTuple(args
,(char *)"O|O:OtkWidget_show",&obj0
,&obj1
)) goto fail
;
2613 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2615 arg2
= (bool) PyInt_AsLong(obj1
);
2616 if (PyErr_Occurred()) SWIG_fail
;
2620 Py_INCREF(Py_None
); resultobj
= Py_None
;
2627 static PyObject
*_wrap_OtkWidget_hide(PyObject
*self
, PyObject
*args
) {
2628 PyObject
*resultobj
;
2629 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2630 bool arg2
= (bool) false ;
2631 PyObject
* obj0
= 0 ;
2632 PyObject
* obj1
= 0 ;
2634 if(!PyArg_ParseTuple(args
,(char *)"O|O:OtkWidget_hide",&obj0
,&obj1
)) goto fail
;
2635 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2637 arg2
= (bool) PyInt_AsLong(obj1
);
2638 if (PyErr_Occurred()) SWIG_fail
;
2642 Py_INCREF(Py_None
); resultobj
= Py_None
;
2649 static PyObject
*_wrap_OtkWidget_isFocused(PyObject
*self
, PyObject
*args
) {
2650 PyObject
*resultobj
;
2651 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2653 PyObject
* obj0
= 0 ;
2655 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_isFocused",&obj0
)) goto fail
;
2656 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2657 result
= (bool)((otk::OtkWidget
const *)arg1
)->isFocused();
2659 resultobj
= PyInt_FromLong((long)result
);
2666 static PyObject
*_wrap_OtkWidget_focus(PyObject
*self
, PyObject
*args
) {
2667 PyObject
*resultobj
;
2668 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2669 PyObject
* obj0
= 0 ;
2671 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_focus",&obj0
)) goto fail
;
2672 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2675 Py_INCREF(Py_None
); resultobj
= Py_None
;
2682 static PyObject
*_wrap_OtkWidget_unfocus(PyObject
*self
, PyObject
*args
) {
2683 PyObject
*resultobj
;
2684 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2685 PyObject
* obj0
= 0 ;
2687 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_unfocus",&obj0
)) goto fail
;
2688 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2691 Py_INCREF(Py_None
); resultobj
= Py_None
;
2698 static PyObject
*_wrap_OtkWidget_hasGrabbedMouse(PyObject
*self
, PyObject
*args
) {
2699 PyObject
*resultobj
;
2700 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2702 PyObject
* obj0
= 0 ;
2704 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_hasGrabbedMouse",&obj0
)) goto fail
;
2705 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2706 result
= (bool)((otk::OtkWidget
const *)arg1
)->hasGrabbedMouse();
2708 resultobj
= PyInt_FromLong((long)result
);
2715 static PyObject
*_wrap_OtkWidget_grabMouse(PyObject
*self
, PyObject
*args
) {
2716 PyObject
*resultobj
;
2717 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2719 PyObject
* obj0
= 0 ;
2721 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_grabMouse",&obj0
)) goto fail
;
2722 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2723 result
= (bool)(arg1
)->grabMouse();
2725 resultobj
= PyInt_FromLong((long)result
);
2732 static PyObject
*_wrap_OtkWidget_ungrabMouse(PyObject
*self
, PyObject
*args
) {
2733 PyObject
*resultobj
;
2734 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2735 PyObject
* obj0
= 0 ;
2737 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_ungrabMouse",&obj0
)) goto fail
;
2738 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2739 (arg1
)->ungrabMouse();
2741 Py_INCREF(Py_None
); resultobj
= Py_None
;
2748 static PyObject
*_wrap_OtkWidget_hasGrabbedKeyboard(PyObject
*self
, PyObject
*args
) {
2749 PyObject
*resultobj
;
2750 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2752 PyObject
* obj0
= 0 ;
2754 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_hasGrabbedKeyboard",&obj0
)) goto fail
;
2755 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2756 result
= (bool)((otk::OtkWidget
const *)arg1
)->hasGrabbedKeyboard();
2758 resultobj
= PyInt_FromLong((long)result
);
2765 static PyObject
*_wrap_OtkWidget_grabKeyboard(PyObject
*self
, PyObject
*args
) {
2766 PyObject
*resultobj
;
2767 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2769 PyObject
* obj0
= 0 ;
2771 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_grabKeyboard",&obj0
)) goto fail
;
2772 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2773 result
= (bool)(arg1
)->grabKeyboard();
2775 resultobj
= PyInt_FromLong((long)result
);
2782 static PyObject
*_wrap_OtkWidget_ungrabKeyboard(PyObject
*self
, PyObject
*args
) {
2783 PyObject
*resultobj
;
2784 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2785 PyObject
* obj0
= 0 ;
2787 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_ungrabKeyboard",&obj0
)) goto fail
;
2788 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2789 (arg1
)->ungrabKeyboard();
2791 Py_INCREF(Py_None
); resultobj
= Py_None
;
2798 static PyObject
*_wrap_OtkWidget_texture(PyObject
*self
, PyObject
*args
) {
2799 PyObject
*resultobj
;
2800 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2801 otk::BTexture
*result
;
2802 PyObject
* obj0
= 0 ;
2804 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_texture",&obj0
)) goto fail
;
2805 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2806 result
= (otk::BTexture
*)((otk::OtkWidget
const *)arg1
)->texture();
2808 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
2815 static PyObject
*_wrap_OtkWidget_setTexture(PyObject
*self
, PyObject
*args
) {
2816 PyObject
*resultobj
;
2817 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2818 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
2819 PyObject
* obj0
= 0 ;
2820 PyObject
* obj1
= 0 ;
2822 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setTexture",&obj0
,&obj1
)) goto fail
;
2823 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2824 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2825 (arg1
)->setTexture(arg2
);
2827 Py_INCREF(Py_None
); resultobj
= Py_None
;
2834 static PyObject
*_wrap_OtkWidget_borderColor(PyObject
*self
, PyObject
*args
) {
2835 PyObject
*resultobj
;
2836 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2837 otk::BColor
*result
;
2838 PyObject
* obj0
= 0 ;
2840 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_borderColor",&obj0
)) goto fail
;
2841 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2842 result
= (otk::BColor
*)((otk::OtkWidget
const *)arg1
)->borderColor();
2844 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
2851 static PyObject
*_wrap_OtkWidget_setBorderColor(PyObject
*self
, PyObject
*args
) {
2852 PyObject
*resultobj
;
2853 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2854 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
2855 PyObject
* obj0
= 0 ;
2856 PyObject
* obj1
= 0 ;
2858 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setBorderColor",&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__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2861 (arg1
)->setBorderColor((otk::BColor
const *)arg2
);
2863 Py_INCREF(Py_None
); resultobj
= Py_None
;
2870 static PyObject
*_wrap_OtkWidget_borderWidth(PyObject
*self
, PyObject
*args
) {
2871 PyObject
*resultobj
;
2872 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2874 PyObject
* obj0
= 0 ;
2876 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_borderWidth",&obj0
)) goto fail
;
2877 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2878 result
= (int)((otk::OtkWidget
const *)arg1
)->borderWidth();
2880 resultobj
= PyInt_FromLong((long)result
);
2887 static PyObject
*_wrap_OtkWidget_setBorderWidth(PyObject
*self
, PyObject
*args
) {
2888 PyObject
*resultobj
;
2889 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2891 PyObject
* obj0
= 0 ;
2893 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setBorderWidth",&obj0
,&arg2
)) goto fail
;
2894 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2895 (arg1
)->setBorderWidth(arg2
);
2897 Py_INCREF(Py_None
); resultobj
= Py_None
;
2904 static PyObject
*_wrap_OtkWidget_addChild(PyObject
*self
, PyObject
*args
) {
2905 PyObject
*resultobj
;
2906 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2907 otk::OtkWidget
*arg2
= (otk::OtkWidget
*) 0 ;
2908 bool arg3
= (bool) false ;
2909 PyObject
* obj0
= 0 ;
2910 PyObject
* obj1
= 0 ;
2911 PyObject
* obj2
= 0 ;
2913 if(!PyArg_ParseTuple(args
,(char *)"OO|O:OtkWidget_addChild",&obj0
,&obj1
,&obj2
)) goto fail
;
2914 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2915 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2917 arg3
= (bool) PyInt_AsLong(obj2
);
2918 if (PyErr_Occurred()) SWIG_fail
;
2920 (arg1
)->addChild(arg2
,arg3
);
2922 Py_INCREF(Py_None
); resultobj
= Py_None
;
2929 static PyObject
*_wrap_OtkWidget_removeChild(PyObject
*self
, PyObject
*args
) {
2930 PyObject
*resultobj
;
2931 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2932 otk::OtkWidget
*arg2
= (otk::OtkWidget
*) 0 ;
2933 PyObject
* obj0
= 0 ;
2934 PyObject
* obj1
= 0 ;
2936 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_removeChild",&obj0
,&obj1
)) goto fail
;
2937 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2938 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2939 (arg1
)->removeChild(arg2
);
2941 Py_INCREF(Py_None
); resultobj
= Py_None
;
2948 static PyObject
*_wrap_OtkWidget_isStretchableHorz(PyObject
*self
, PyObject
*args
) {
2949 PyObject
*resultobj
;
2950 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2952 PyObject
* obj0
= 0 ;
2954 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_isStretchableHorz",&obj0
)) goto fail
;
2955 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2956 result
= (bool)((otk::OtkWidget
const *)arg1
)->isStretchableHorz();
2958 resultobj
= PyInt_FromLong((long)result
);
2965 static PyObject
*_wrap_OtkWidget_setStretchableHorz(PyObject
*self
, PyObject
*args
) {
2966 PyObject
*resultobj
;
2967 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2968 bool arg2
= (bool) true ;
2969 PyObject
* obj0
= 0 ;
2970 PyObject
* obj1
= 0 ;
2972 if(!PyArg_ParseTuple(args
,(char *)"O|O:OtkWidget_setStretchableHorz",&obj0
,&obj1
)) goto fail
;
2973 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2975 arg2
= (bool) PyInt_AsLong(obj1
);
2976 if (PyErr_Occurred()) SWIG_fail
;
2978 (arg1
)->setStretchableHorz(arg2
);
2980 Py_INCREF(Py_None
); resultobj
= Py_None
;
2987 static PyObject
*_wrap_OtkWidget_isStretchableVert(PyObject
*self
, PyObject
*args
) {
2988 PyObject
*resultobj
;
2989 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2991 PyObject
* obj0
= 0 ;
2993 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_isStretchableVert",&obj0
)) goto fail
;
2994 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2995 result
= (bool)((otk::OtkWidget
const *)arg1
)->isStretchableVert();
2997 resultobj
= PyInt_FromLong((long)result
);
3004 static PyObject
*_wrap_OtkWidget_setStretchableVert(PyObject
*self
, PyObject
*args
) {
3005 PyObject
*resultobj
;
3006 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3007 bool arg2
= (bool) true ;
3008 PyObject
* obj0
= 0 ;
3009 PyObject
* obj1
= 0 ;
3011 if(!PyArg_ParseTuple(args
,(char *)"O|O:OtkWidget_setStretchableVert",&obj0
,&obj1
)) goto fail
;
3012 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3014 arg2
= (bool) PyInt_AsLong(obj1
);
3015 if (PyErr_Occurred()) SWIG_fail
;
3017 (arg1
)->setStretchableVert(arg2
);
3019 Py_INCREF(Py_None
); resultobj
= Py_None
;
3026 static PyObject
*_wrap_OtkWidget_cursor(PyObject
*self
, PyObject
*args
) {
3027 PyObject
*resultobj
;
3028 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3030 PyObject
* obj0
= 0 ;
3032 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_cursor",&obj0
)) goto fail
;
3033 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3034 result
= ((otk::OtkWidget
const *)arg1
)->cursor();
3038 resultptr
= new Cursor((Cursor
&) result
);
3039 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Cursor
, 1);
3047 static PyObject
*_wrap_OtkWidget_setCursor(PyObject
*self
, PyObject
*args
) {
3048 PyObject
*resultobj
;
3049 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3052 PyObject
* obj0
= 0 ;
3053 PyObject
* obj1
= 0 ;
3055 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setCursor",&obj0
,&obj1
)) goto fail
;
3056 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3057 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Cursor
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
3059 (arg1
)->setCursor(arg2
);
3061 Py_INCREF(Py_None
); resultobj
= Py_None
;
3068 static PyObject
*_wrap_OtkWidget_bevelWidth(PyObject
*self
, PyObject
*args
) {
3069 PyObject
*resultobj
;
3070 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3072 PyObject
* obj0
= 0 ;
3074 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_bevelWidth",&obj0
)) goto fail
;
3075 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3076 result
= (int)((otk::OtkWidget
const *)arg1
)->bevelWidth();
3078 resultobj
= PyInt_FromLong((long)result
);
3085 static PyObject
*_wrap_OtkWidget_setBevelWidth(PyObject
*self
, PyObject
*args
) {
3086 PyObject
*resultobj
;
3087 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3089 PyObject
* obj0
= 0 ;
3091 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setBevelWidth",&obj0
,&arg2
)) goto fail
;
3092 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3093 (arg1
)->setBevelWidth(arg2
);
3095 Py_INCREF(Py_None
); resultobj
= Py_None
;
3102 static PyObject
*_wrap_OtkWidget_direction(PyObject
*self
, PyObject
*args
) {
3103 PyObject
*resultobj
;
3104 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3106 PyObject
* obj0
= 0 ;
3108 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_direction",&obj0
)) goto fail
;
3109 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3110 result
= (int)((otk::OtkWidget
const *)arg1
)->direction();
3112 resultobj
= PyInt_FromLong((long)result
);
3119 static PyObject
*_wrap_OtkWidget_setDirection(PyObject
*self
, PyObject
*args
) {
3120 PyObject
*resultobj
;
3121 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3123 PyObject
* obj0
= 0 ;
3125 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setDirection",&obj0
,&arg2
)) goto fail
;
3126 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3127 (arg1
)->setDirection((otk::OtkWidget::Direction
)arg2
);
3129 Py_INCREF(Py_None
); resultobj
= Py_None
;
3136 static PyObject
*_wrap_OtkWidget_style(PyObject
*self
, PyObject
*args
) {
3137 PyObject
*resultobj
;
3138 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3140 PyObject
* obj0
= 0 ;
3142 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_style",&obj0
)) goto fail
;
3143 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3144 result
= (otk::Style
*)((otk::OtkWidget
const *)arg1
)->style();
3146 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Style
, 0);
3153 static PyObject
*_wrap_OtkWidget_setStyle(PyObject
*self
, PyObject
*args
) {
3154 PyObject
*resultobj
;
3155 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3156 otk::Style
*arg2
= (otk::Style
*) 0 ;
3157 PyObject
* obj0
= 0 ;
3158 PyObject
* obj1
= 0 ;
3160 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setStyle",&obj0
,&obj1
)) goto fail
;
3161 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3162 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3163 (arg1
)->setStyle(arg2
);
3165 Py_INCREF(Py_None
); resultobj
= Py_None
;
3172 static PyObject
*_wrap_OtkWidget_eventDispatcher(PyObject
*self
, PyObject
*args
) {
3173 PyObject
*resultobj
;
3174 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3175 otk::OtkEventDispatcher
*result
;
3176 PyObject
* obj0
= 0 ;
3178 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_eventDispatcher",&obj0
)) goto fail
;
3179 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3180 result
= (otk::OtkEventDispatcher
*)(arg1
)->eventDispatcher();
3182 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkEventDispatcher
, 0);
3189 static PyObject
*_wrap_OtkWidget_setEventDispatcher(PyObject
*self
, PyObject
*args
) {
3190 PyObject
*resultobj
;
3191 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3192 otk::OtkEventDispatcher
*arg2
= (otk::OtkEventDispatcher
*) 0 ;
3193 PyObject
* obj0
= 0 ;
3194 PyObject
* obj1
= 0 ;
3196 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setEventDispatcher",&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__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3199 (arg1
)->setEventDispatcher(arg2
);
3201 Py_INCREF(Py_None
); resultobj
= Py_None
;
3208 static PyObject
*_wrap_OtkWidget_unmanaged(PyObject
*self
, PyObject
*args
) {
3209 PyObject
*resultobj
;
3210 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3211 PyObject
* obj0
= 0 ;
3213 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_unmanaged",&obj0
)) goto fail
;
3214 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3215 (arg1
)->unmanaged();
3217 Py_INCREF(Py_None
); resultobj
= Py_None
;
3224 static PyObject
* OtkWidget_swigregister(PyObject
*self
, PyObject
*args
) {
3226 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3227 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkWidget
, obj
);
3229 return Py_BuildValue((char *)"");
3231 static PyObject
*_wrap_new_OtkFocusWidget(PyObject
*self
, PyObject
*args
) {
3232 PyObject
*resultobj
;
3233 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3234 int arg2
= (int) otk::OtkWidget::Horizontal
;
3235 otk::OtkFocusWidget
*result
;
3236 PyObject
* obj0
= 0 ;
3238 if(!PyArg_ParseTuple(args
,(char *)"O|i:new_OtkFocusWidget",&obj0
,&arg2
)) goto fail
;
3239 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3240 result
= (otk::OtkFocusWidget
*)new otk::OtkFocusWidget(arg1
,(otk::OtkWidget::Direction
)arg2
);
3242 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkFocusWidget
, 1);
3249 static PyObject
*_wrap_delete_OtkFocusWidget(PyObject
*self
, PyObject
*args
) {
3250 PyObject
*resultobj
;
3251 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3252 PyObject
* obj0
= 0 ;
3254 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkFocusWidget",&obj0
)) goto fail
;
3255 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3258 Py_INCREF(Py_None
); resultobj
= Py_None
;
3265 static PyObject
*_wrap_OtkFocusWidget_focus(PyObject
*self
, PyObject
*args
) {
3266 PyObject
*resultobj
;
3267 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3268 PyObject
* obj0
= 0 ;
3270 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_focus",&obj0
)) goto fail
;
3271 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3274 Py_INCREF(Py_None
); resultobj
= Py_None
;
3281 static PyObject
*_wrap_OtkFocusWidget_unfocus(PyObject
*self
, PyObject
*args
) {
3282 PyObject
*resultobj
;
3283 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3284 PyObject
* obj0
= 0 ;
3286 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_unfocus",&obj0
)) goto fail
;
3287 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3290 Py_INCREF(Py_None
); resultobj
= Py_None
;
3297 static PyObject
*_wrap_OtkFocusWidget_setTexture(PyObject
*self
, PyObject
*args
) {
3298 PyObject
*resultobj
;
3299 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3300 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3301 PyObject
* obj0
= 0 ;
3302 PyObject
* obj1
= 0 ;
3304 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusWidget_setTexture",&obj0
,&obj1
)) goto fail
;
3305 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3306 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3307 (arg1
)->setTexture(arg2
);
3309 Py_INCREF(Py_None
); resultobj
= Py_None
;
3316 static PyObject
*_wrap_OtkFocusWidget_setBorderColor(PyObject
*self
, PyObject
*args
) {
3317 PyObject
*resultobj
;
3318 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3319 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
3320 PyObject
* obj0
= 0 ;
3321 PyObject
* obj1
= 0 ;
3323 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusWidget_setBorderColor",&obj0
,&obj1
)) goto fail
;
3324 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3325 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3326 (arg1
)->setBorderColor((otk::BColor
const *)arg2
);
3328 Py_INCREF(Py_None
); resultobj
= Py_None
;
3335 static PyObject
*_wrap_OtkFocusWidget_setUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3336 PyObject
*resultobj
;
3337 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3338 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3339 PyObject
* obj0
= 0 ;
3340 PyObject
* obj1
= 0 ;
3342 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusWidget_setUnfocusTexture",&obj0
,&obj1
)) goto fail
;
3343 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3344 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3345 (arg1
)->setUnfocusTexture(arg2
);
3347 Py_INCREF(Py_None
); resultobj
= Py_None
;
3354 static PyObject
*_wrap_OtkFocusWidget_getUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3355 PyObject
*resultobj
;
3356 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3357 otk::BTexture
*result
;
3358 PyObject
* obj0
= 0 ;
3360 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_getUnfocusTexture",&obj0
)) goto fail
;
3361 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3362 result
= (otk::BTexture
*)((otk::OtkFocusWidget
const *)arg1
)->getUnfocusTexture();
3364 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
3371 static PyObject
*_wrap_OtkFocusWidget_setUnfocusBorderColor(PyObject
*self
, PyObject
*args
) {
3372 PyObject
*resultobj
;
3373 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3374 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
3375 PyObject
* obj0
= 0 ;
3376 PyObject
* obj1
= 0 ;
3378 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusWidget_setUnfocusBorderColor",&obj0
,&obj1
)) goto fail
;
3379 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3380 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3381 (arg1
)->setUnfocusBorderColor((otk::BColor
const *)arg2
);
3383 Py_INCREF(Py_None
); resultobj
= Py_None
;
3390 static PyObject
*_wrap_OtkFocusWidget_getUnfocusBorderColor(PyObject
*self
, PyObject
*args
) {
3391 PyObject
*resultobj
;
3392 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3393 otk::BColor
*result
;
3394 PyObject
* obj0
= 0 ;
3396 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_getUnfocusBorderColor",&obj0
)) goto fail
;
3397 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3398 result
= (otk::BColor
*)((otk::OtkFocusWidget
const *)arg1
)->getUnfocusBorderColor();
3400 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
3407 static PyObject
*_wrap_OtkFocusWidget_isFocused(PyObject
*self
, PyObject
*args
) {
3408 PyObject
*resultobj
;
3409 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3411 PyObject
* obj0
= 0 ;
3413 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_isFocused",&obj0
)) goto fail
;
3414 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3415 result
= (bool)((otk::OtkFocusWidget
const *)arg1
)->isFocused();
3417 resultobj
= PyInt_FromLong((long)result
);
3424 static PyObject
*_wrap_OtkFocusWidget_isUnfocused(PyObject
*self
, PyObject
*args
) {
3425 PyObject
*resultobj
;
3426 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3428 PyObject
* obj0
= 0 ;
3430 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_isUnfocused",&obj0
)) goto fail
;
3431 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3432 result
= (bool)((otk::OtkFocusWidget
const *)arg1
)->isUnfocused();
3434 resultobj
= PyInt_FromLong((long)result
);
3441 static PyObject
* OtkFocusWidget_swigregister(PyObject
*self
, PyObject
*args
) {
3443 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3444 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkFocusWidget
, obj
);
3446 return Py_BuildValue((char *)"");
3448 static PyObject
*_wrap_new_OtkFocusLabel(PyObject
*self
, PyObject
*args
) {
3449 PyObject
*resultobj
;
3450 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3451 otk::OtkFocusLabel
*result
;
3452 PyObject
* obj0
= 0 ;
3454 if(!PyArg_ParseTuple(args
,(char *)"O:new_OtkFocusLabel",&obj0
)) goto fail
;
3455 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3456 result
= (otk::OtkFocusLabel
*)new otk::OtkFocusLabel(arg1
);
3458 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkFocusLabel
, 1);
3465 static PyObject
*_wrap_delete_OtkFocusLabel(PyObject
*self
, PyObject
*args
) {
3466 PyObject
*resultobj
;
3467 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3468 PyObject
* obj0
= 0 ;
3470 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkFocusLabel",&obj0
)) goto fail
;
3471 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3474 Py_INCREF(Py_None
); resultobj
= Py_None
;
3481 static PyObject
*_wrap_OtkFocusLabel_getText(PyObject
*self
, PyObject
*args
) {
3482 PyObject
*resultobj
;
3483 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3484 std::string
*result
;
3485 PyObject
* obj0
= 0 ;
3487 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusLabel_getText",&obj0
)) goto fail
;
3488 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3490 std::string
const &_result_ref
= ((otk::OtkFocusLabel
const *)arg1
)->getText();
3491 result
= (std::string
*) &_result_ref
;
3495 resultobj
= PyString_FromString(result
->c_str());
3503 static PyObject
*_wrap_OtkFocusLabel_setText(PyObject
*self
, PyObject
*args
) {
3504 PyObject
*resultobj
;
3505 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3506 std::string
*arg2
= 0 ;
3508 PyObject
* obj0
= 0 ;
3509 PyObject
* obj1
= 0 ;
3511 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusLabel_setText",&obj0
,&obj1
)) goto fail
;
3512 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3514 if (PyString_Check(obj1
)) {
3515 temp2
= std::string(PyString_AsString(obj1
));
3518 SWIG_exception(SWIG_TypeError
, "string expected");
3521 (arg1
)->setText((std::string
const &)*arg2
);
3523 Py_INCREF(Py_None
); resultobj
= Py_None
;
3530 static PyObject
*_wrap_OtkFocusLabel_update(PyObject
*self
, PyObject
*args
) {
3531 PyObject
*resultobj
;
3532 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3533 PyObject
* obj0
= 0 ;
3535 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusLabel_update",&obj0
)) goto fail
;
3536 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3539 Py_INCREF(Py_None
); resultobj
= Py_None
;
3546 static PyObject
*_wrap_OtkFocusLabel_setStyle(PyObject
*self
, PyObject
*args
) {
3547 PyObject
*resultobj
;
3548 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3549 otk::Style
*arg2
= (otk::Style
*) 0 ;
3550 PyObject
* obj0
= 0 ;
3551 PyObject
* obj1
= 0 ;
3553 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusLabel_setStyle",&obj0
,&obj1
)) goto fail
;
3554 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3555 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3556 (arg1
)->setStyle(arg2
);
3558 Py_INCREF(Py_None
); resultobj
= Py_None
;
3565 static PyObject
* OtkFocusLabel_swigregister(PyObject
*self
, PyObject
*args
) {
3567 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3568 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkFocusLabel
, obj
);
3570 return Py_BuildValue((char *)"");
3572 static PyObject
*_wrap_new_OtkAppWidget(PyObject
*self
, PyObject
*args
) {
3573 PyObject
*resultobj
;
3574 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3575 int arg2
= (int) otk::OtkWidget::Horizontal
;
3576 Cursor arg3
= (Cursor
) 0 ;
3577 int arg4
= (int) 1 ;
3578 otk::OtkAppWidget
*result
;
3580 PyObject
* obj0
= 0 ;
3581 PyObject
* obj2
= 0 ;
3583 if(!PyArg_ParseTuple(args
,(char *)"O|iOi:new_OtkAppWidget",&obj0
,&arg2
,&obj2
,&arg4
)) goto fail
;
3584 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3586 if ((SWIG_ConvertPtr(obj2
,(void **) &argp3
, SWIGTYPE_p_Cursor
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
3589 result
= (otk::OtkAppWidget
*)new otk::OtkAppWidget(arg1
,(otk::OtkWidget::Direction
)arg2
,arg3
,arg4
);
3591 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkAppWidget
, 1);
3598 static PyObject
*_wrap_delete_OtkAppWidget(PyObject
*self
, PyObject
*args
) {
3599 PyObject
*resultobj
;
3600 otk::OtkAppWidget
*arg1
= (otk::OtkAppWidget
*) 0 ;
3601 PyObject
* obj0
= 0 ;
3603 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkAppWidget",&obj0
)) goto fail
;
3604 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkAppWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3607 Py_INCREF(Py_None
); resultobj
= Py_None
;
3614 static PyObject
*_wrap_OtkAppWidget_show(PyObject
*self
, PyObject
*args
) {
3615 PyObject
*resultobj
;
3616 otk::OtkAppWidget
*arg1
= (otk::OtkAppWidget
*) 0 ;
3617 PyObject
* obj0
= 0 ;
3619 if(!PyArg_ParseTuple(args
,(char *)"O:OtkAppWidget_show",&obj0
)) goto fail
;
3620 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkAppWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3623 Py_INCREF(Py_None
); resultobj
= Py_None
;
3630 static PyObject
*_wrap_OtkAppWidget_hide(PyObject
*self
, PyObject
*args
) {
3631 PyObject
*resultobj
;
3632 otk::OtkAppWidget
*arg1
= (otk::OtkAppWidget
*) 0 ;
3633 PyObject
* obj0
= 0 ;
3635 if(!PyArg_ParseTuple(args
,(char *)"O:OtkAppWidget_hide",&obj0
)) goto fail
;
3636 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkAppWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3639 Py_INCREF(Py_None
); resultobj
= Py_None
;
3646 static PyObject
*_wrap_OtkAppWidget_clientMessageHandler(PyObject
*self
, PyObject
*args
) {
3647 PyObject
*resultobj
;
3648 otk::OtkAppWidget
*arg1
= (otk::OtkAppWidget
*) 0 ;
3649 XClientMessageEvent
*arg2
= 0 ;
3650 PyObject
* obj0
= 0 ;
3651 PyObject
* obj1
= 0 ;
3653 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkAppWidget_clientMessageHandler",&obj0
,&obj1
)) goto fail
;
3654 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkAppWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3655 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XClientMessageEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3657 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
3659 (arg1
)->clientMessageHandler((XClientMessageEvent
const &)*arg2
);
3661 Py_INCREF(Py_None
); resultobj
= Py_None
;
3668 static PyObject
* OtkAppWidget_swigregister(PyObject
*self
, PyObject
*args
) {
3670 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3671 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkAppWidget
, obj
);
3673 return Py_BuildValue((char *)"");
3675 static PyObject
*_wrap_new_OtkApplication(PyObject
*self
, PyObject
*args
) {
3676 PyObject
*resultobj
;
3678 char **arg2
= (char **) 0 ;
3679 otk::OtkApplication
*result
;
3680 PyObject
* obj1
= 0 ;
3682 if(!PyArg_ParseTuple(args
,(char *)"iO:new_OtkApplication",&arg1
,&obj1
)) goto fail
;
3683 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_p_char
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3684 result
= (otk::OtkApplication
*)new otk::OtkApplication(arg1
,arg2
);
3686 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkApplication
, 1);
3693 static PyObject
*_wrap_delete_OtkApplication(PyObject
*self
, PyObject
*args
) {
3694 PyObject
*resultobj
;
3695 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3696 PyObject
* obj0
= 0 ;
3698 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkApplication",&obj0
)) goto fail
;
3699 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3702 Py_INCREF(Py_None
); resultobj
= Py_None
;
3709 static PyObject
*_wrap_OtkApplication_run(PyObject
*self
, PyObject
*args
) {
3710 PyObject
*resultobj
;
3711 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3712 PyObject
* obj0
= 0 ;
3714 if(!PyArg_ParseTuple(args
,(char *)"O:OtkApplication_run",&obj0
)) goto fail
;
3715 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3718 Py_INCREF(Py_None
); resultobj
= Py_None
;
3725 static PyObject
*_wrap_OtkApplication_setDockable(PyObject
*self
, PyObject
*args
) {
3726 PyObject
*resultobj
;
3727 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3729 PyObject
* obj0
= 0 ;
3730 PyObject
* obj1
= 0 ;
3732 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkApplication_setDockable",&obj0
,&obj1
)) goto fail
;
3733 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3734 arg2
= (bool) PyInt_AsLong(obj1
);
3735 if (PyErr_Occurred()) SWIG_fail
;
3736 (arg1
)->setDockable(arg2
);
3738 Py_INCREF(Py_None
); resultobj
= Py_None
;
3745 static PyObject
*_wrap_OtkApplication_isDockable(PyObject
*self
, PyObject
*args
) {
3746 PyObject
*resultobj
;
3747 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3749 PyObject
* obj0
= 0 ;
3751 if(!PyArg_ParseTuple(args
,(char *)"O:OtkApplication_isDockable",&obj0
)) goto fail
;
3752 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3753 result
= (bool)((otk::OtkApplication
const *)arg1
)->isDockable();
3755 resultobj
= PyInt_FromLong((long)result
);
3762 static PyObject
*_wrap_OtkApplication_getStyle(PyObject
*self
, PyObject
*args
) {
3763 PyObject
*resultobj
;
3764 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3766 PyObject
* obj0
= 0 ;
3768 if(!PyArg_ParseTuple(args
,(char *)"O:OtkApplication_getStyle",&obj0
)) goto fail
;
3769 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3770 result
= (otk::Style
*)((otk::OtkApplication
const *)arg1
)->getStyle();
3772 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Style
, 0);
3779 static PyObject
* OtkApplication_swigregister(PyObject
*self
, PyObject
*args
) {
3781 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3782 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkApplication
, obj
);
3784 return Py_BuildValue((char *)"");
3786 static PyObject
*_wrap_new_PointerAssassin(PyObject
*self
, PyObject
*args
) {
3787 PyObject
*resultobj
;
3788 otk::PointerAssassin
*result
;
3790 if(!PyArg_ParseTuple(args
,(char *)":new_PointerAssassin")) goto fail
;
3791 result
= (otk::PointerAssassin
*)new otk::PointerAssassin();
3793 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PointerAssassin
, 1);
3800 static PyObject
*_wrap_delete_PointerAssassin(PyObject
*self
, PyObject
*args
) {
3801 PyObject
*resultobj
;
3802 otk::PointerAssassin
*arg1
= (otk::PointerAssassin
*) 0 ;
3803 PyObject
* obj0
= 0 ;
3805 if(!PyArg_ParseTuple(args
,(char *)"O:delete_PointerAssassin",&obj0
)) goto fail
;
3806 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PointerAssassin
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3809 Py_INCREF(Py_None
); resultobj
= Py_None
;
3816 static PyObject
* PointerAssassin_swigregister(PyObject
*self
, PyObject
*args
) {
3818 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3819 SWIG_TypeClientData(SWIGTYPE_p_otk__PointerAssassin
, obj
);
3821 return Py_BuildValue((char *)"");
3823 static PyObject
*_wrap_new_OtkButton(PyObject
*self
, PyObject
*args
) {
3824 PyObject
*resultobj
;
3825 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3826 otk::OtkButton
*result
;
3827 PyObject
* obj0
= 0 ;
3829 if(!PyArg_ParseTuple(args
,(char *)"O:new_OtkButton",&obj0
)) goto fail
;
3830 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3831 result
= (otk::OtkButton
*)new otk::OtkButton(arg1
);
3833 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkButton
, 1);
3840 static PyObject
*_wrap_delete_OtkButton(PyObject
*self
, PyObject
*args
) {
3841 PyObject
*resultobj
;
3842 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3843 PyObject
* obj0
= 0 ;
3845 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkButton",&obj0
)) goto fail
;
3846 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3849 Py_INCREF(Py_None
); resultobj
= Py_None
;
3856 static PyObject
*_wrap_OtkButton_getPressedFocusTexture(PyObject
*self
, PyObject
*args
) {
3857 PyObject
*resultobj
;
3858 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3859 otk::BTexture
*result
;
3860 PyObject
* obj0
= 0 ;
3862 if(!PyArg_ParseTuple(args
,(char *)"O:OtkButton_getPressedFocusTexture",&obj0
)) goto fail
;
3863 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3864 result
= (otk::BTexture
*)((otk::OtkButton
const *)arg1
)->getPressedFocusTexture();
3866 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
3873 static PyObject
*_wrap_OtkButton_setPressedFocusTexture(PyObject
*self
, PyObject
*args
) {
3874 PyObject
*resultobj
;
3875 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3876 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3877 PyObject
* obj0
= 0 ;
3878 PyObject
* obj1
= 0 ;
3880 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setPressedFocusTexture",&obj0
,&obj1
)) goto fail
;
3881 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3882 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3883 (arg1
)->setPressedFocusTexture(arg2
);
3885 Py_INCREF(Py_None
); resultobj
= Py_None
;
3892 static PyObject
*_wrap_OtkButton_getPressedUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3893 PyObject
*resultobj
;
3894 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3895 otk::BTexture
*result
;
3896 PyObject
* obj0
= 0 ;
3898 if(!PyArg_ParseTuple(args
,(char *)"O:OtkButton_getPressedUnfocusTexture",&obj0
)) goto fail
;
3899 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3900 result
= (otk::BTexture
*)((otk::OtkButton
const *)arg1
)->getPressedUnfocusTexture();
3902 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
3909 static PyObject
*_wrap_OtkButton_setPressedUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3910 PyObject
*resultobj
;
3911 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3912 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3913 PyObject
* obj0
= 0 ;
3914 PyObject
* obj1
= 0 ;
3916 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setPressedUnfocusTexture",&obj0
,&obj1
)) goto fail
;
3917 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3918 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3919 (arg1
)->setPressedUnfocusTexture(arg2
);
3921 Py_INCREF(Py_None
); resultobj
= Py_None
;
3928 static PyObject
*_wrap_OtkButton_setTexture(PyObject
*self
, PyObject
*args
) {
3929 PyObject
*resultobj
;
3930 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3931 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3932 PyObject
* obj0
= 0 ;
3933 PyObject
* obj1
= 0 ;
3935 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setTexture",&obj0
,&obj1
)) goto fail
;
3936 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3937 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3938 (arg1
)->setTexture(arg2
);
3940 Py_INCREF(Py_None
); resultobj
= Py_None
;
3947 static PyObject
*_wrap_OtkButton_setUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3948 PyObject
*resultobj
;
3949 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3950 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3951 PyObject
* obj0
= 0 ;
3952 PyObject
* obj1
= 0 ;
3954 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setUnfocusTexture",&obj0
,&obj1
)) goto fail
;
3955 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3956 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3957 (arg1
)->setUnfocusTexture(arg2
);
3959 Py_INCREF(Py_None
); resultobj
= Py_None
;
3966 static PyObject
*_wrap_OtkButton_isPressed(PyObject
*self
, PyObject
*args
) {
3967 PyObject
*resultobj
;
3968 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3970 PyObject
* obj0
= 0 ;
3972 if(!PyArg_ParseTuple(args
,(char *)"O:OtkButton_isPressed",&obj0
)) goto fail
;
3973 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3974 result
= (bool)((otk::OtkButton
const *)arg1
)->isPressed();
3976 resultobj
= PyInt_FromLong((long)result
);
3983 static PyObject
*_wrap_OtkButton_press(PyObject
*self
, PyObject
*args
) {
3984 PyObject
*resultobj
;
3985 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3987 PyObject
* obj0
= 0 ;
3988 PyObject
* obj1
= 0 ;
3990 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_press",&obj0
,&obj1
)) goto fail
;
3991 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3992 arg2
= (unsigned int) PyInt_AsLong(obj1
);
3993 if (PyErr_Occurred()) SWIG_fail
;
3994 (arg1
)->press(arg2
);
3996 Py_INCREF(Py_None
); resultobj
= Py_None
;
4003 static PyObject
*_wrap_OtkButton_release(PyObject
*self
, PyObject
*args
) {
4004 PyObject
*resultobj
;
4005 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
4007 PyObject
* obj0
= 0 ;
4008 PyObject
* obj1
= 0 ;
4010 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_release",&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
)->release(arg2
);
4016 Py_INCREF(Py_None
); resultobj
= Py_None
;
4023 static PyObject
*_wrap_OtkButton_buttonPressHandler(PyObject
*self
, PyObject
*args
) {
4024 PyObject
*resultobj
;
4025 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
4026 XButtonEvent
*arg2
= 0 ;
4027 PyObject
* obj0
= 0 ;
4028 PyObject
* obj1
= 0 ;
4030 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_buttonPressHandler",&obj0
,&obj1
)) goto fail
;
4031 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4032 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XButtonEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4034 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
4036 (arg1
)->buttonPressHandler((XButtonEvent
const &)*arg2
);
4038 Py_INCREF(Py_None
); resultobj
= Py_None
;
4045 static PyObject
*_wrap_OtkButton_buttonReleaseHandler(PyObject
*self
, PyObject
*args
) {
4046 PyObject
*resultobj
;
4047 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
4048 XButtonEvent
*arg2
= 0 ;
4049 PyObject
* obj0
= 0 ;
4050 PyObject
* obj1
= 0 ;
4052 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_buttonReleaseHandler",&obj0
,&obj1
)) goto fail
;
4053 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4054 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XButtonEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4056 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
4058 (arg1
)->buttonReleaseHandler((XButtonEvent
const &)*arg2
);
4060 Py_INCREF(Py_None
); resultobj
= Py_None
;
4067 static PyObject
*_wrap_OtkButton_setStyle(PyObject
*self
, PyObject
*args
) {
4068 PyObject
*resultobj
;
4069 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
4070 otk::Style
*arg2
= (otk::Style
*) 0 ;
4071 PyObject
* obj0
= 0 ;
4072 PyObject
* obj1
= 0 ;
4074 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setStyle",&obj0
,&obj1
)) goto fail
;
4075 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4076 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4077 (arg1
)->setStyle(arg2
);
4079 Py_INCREF(Py_None
); resultobj
= Py_None
;
4086 static PyObject
* OtkButton_swigregister(PyObject
*self
, PyObject
*args
) {
4088 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
4089 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkButton
, obj
);
4091 return Py_BuildValue((char *)"");
4093 static PyObject
*_wrap_new_BColor__SWIG_0(PyObject
*self
, PyObject
*args
) {
4094 PyObject
*resultobj
;
4095 unsigned int arg1
= (unsigned int) ~(0u) ;
4096 otk::BColor
*result
;
4097 PyObject
* obj0
= 0 ;
4099 if(!PyArg_ParseTuple(args
,(char *)"|O:new_BColor",&obj0
)) goto fail
;
4101 arg1
= (unsigned int) PyInt_AsLong(obj0
);
4102 if (PyErr_Occurred()) SWIG_fail
;
4104 result
= (otk::BColor
*)new otk::BColor(arg1
);
4106 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 1);
4113 static PyObject
*_wrap_new_BColor__SWIG_1(PyObject
*self
, PyObject
*args
) {
4114 PyObject
*resultobj
;
4118 unsigned int arg4
= (unsigned int) ~(0u) ;
4119 otk::BColor
*result
;
4120 PyObject
* obj3
= 0 ;
4122 if(!PyArg_ParseTuple(args
,(char *)"iii|O:new_BColor",&arg1
,&arg2
,&arg3
,&obj3
)) goto fail
;
4124 arg4
= (unsigned int) PyInt_AsLong(obj3
);
4125 if (PyErr_Occurred()) SWIG_fail
;
4127 result
= (otk::BColor
*)new otk::BColor(arg1
,arg2
,arg3
,arg4
);
4129 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 1);
4136 static PyObject
*_wrap_new_BColor__SWIG_2(PyObject
*self
, PyObject
*args
) {
4137 PyObject
*resultobj
;
4138 std::string
*arg1
= 0 ;
4139 unsigned int arg2
= (unsigned int) ~(0u) ;
4140 otk::BColor
*result
;
4142 PyObject
* obj0
= 0 ;
4143 PyObject
* obj1
= 0 ;
4145 if(!PyArg_ParseTuple(args
,(char *)"O|O:new_BColor",&obj0
,&obj1
)) goto fail
;
4147 if (PyString_Check(obj0
)) {
4148 temp1
= std::string(PyString_AsString(obj0
));
4151 SWIG_exception(SWIG_TypeError
, "string expected");
4155 arg2
= (unsigned int) PyInt_AsLong(obj1
);
4156 if (PyErr_Occurred()) SWIG_fail
;
4158 result
= (otk::BColor
*)new otk::BColor((std::string
const &)*arg1
,arg2
);
4160 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 1);
4167 static PyObject
*_wrap_new_BColor(PyObject
*self
, PyObject
*args
) {
4172 argc
= PyObject_Length(args
);
4173 for (ii
= 0; (ii
< argc
) && (ii
< 4); ii
++) {
4174 argv
[ii
] = PyTuple_GetItem(args
,ii
);
4176 if ((argc
>= 0) && (argc
<= 1)) {
4179 return _wrap_new_BColor__SWIG_0(self
,args
);
4182 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4185 return _wrap_new_BColor__SWIG_0(self
,args
);
4188 if ((argc
>= 1) && (argc
<= 2)) {
4191 _v
= PyString_Check(argv
[0]) ? 1 : 0;
4195 return _wrap_new_BColor__SWIG_2(self
,args
);
4198 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4201 return _wrap_new_BColor__SWIG_2(self
,args
);
4205 if ((argc
>= 3) && (argc
<= 4)) {
4208 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4212 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4216 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
4220 return _wrap_new_BColor__SWIG_1(self
,args
);
4223 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
4226 return _wrap_new_BColor__SWIG_1(self
,args
);
4233 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_BColor'");
4238 static PyObject
*_wrap_delete_BColor(PyObject
*self
, PyObject
*args
) {
4239 PyObject
*resultobj
;
4240 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4241 PyObject
* obj0
= 0 ;
4243 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BColor",&obj0
)) goto fail
;
4244 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4247 Py_INCREF(Py_None
); resultobj
= Py_None
;
4254 static PyObject
*_wrap_BColor_name(PyObject
*self
, PyObject
*args
) {
4255 PyObject
*resultobj
;
4256 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4257 std::string
*result
;
4258 PyObject
* obj0
= 0 ;
4260 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_name",&obj0
)) goto fail
;
4261 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4263 std::string
const &_result_ref
= ((otk::BColor
const *)arg1
)->name();
4264 result
= (std::string
*) &_result_ref
;
4268 resultobj
= PyString_FromString(result
->c_str());
4276 static PyObject
*_wrap_BColor_red(PyObject
*self
, PyObject
*args
) {
4277 PyObject
*resultobj
;
4278 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4280 PyObject
* obj0
= 0 ;
4282 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_red",&obj0
)) goto fail
;
4283 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4284 result
= (int)((otk::BColor
const *)arg1
)->red();
4286 resultobj
= PyInt_FromLong((long)result
);
4293 static PyObject
*_wrap_BColor_green(PyObject
*self
, PyObject
*args
) {
4294 PyObject
*resultobj
;
4295 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4297 PyObject
* obj0
= 0 ;
4299 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_green",&obj0
)) goto fail
;
4300 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4301 result
= (int)((otk::BColor
const *)arg1
)->green();
4303 resultobj
= PyInt_FromLong((long)result
);
4310 static PyObject
*_wrap_BColor_blue(PyObject
*self
, PyObject
*args
) {
4311 PyObject
*resultobj
;
4312 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4314 PyObject
* obj0
= 0 ;
4316 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_blue",&obj0
)) goto fail
;
4317 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4318 result
= (int)((otk::BColor
const *)arg1
)->blue();
4320 resultobj
= PyInt_FromLong((long)result
);
4327 static PyObject
*_wrap_BColor_setRGB(PyObject
*self
, PyObject
*args
) {
4328 PyObject
*resultobj
;
4329 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4333 PyObject
* obj0
= 0 ;
4335 if(!PyArg_ParseTuple(args
,(char *)"Oiii:BColor_setRGB",&obj0
,&arg2
,&arg3
,&arg4
)) goto fail
;
4336 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4337 (arg1
)->setRGB(arg2
,arg3
,arg4
);
4339 Py_INCREF(Py_None
); resultobj
= Py_None
;
4346 static PyObject
*_wrap_BColor_screen(PyObject
*self
, PyObject
*args
) {
4347 PyObject
*resultobj
;
4348 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4349 unsigned int result
;
4350 PyObject
* obj0
= 0 ;
4352 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_screen",&obj0
)) goto fail
;
4353 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4354 result
= (unsigned int)((otk::BColor
const *)arg1
)->screen();
4356 resultobj
= PyInt_FromLong((long)result
);
4363 static PyObject
*_wrap_BColor_setScreen(PyObject
*self
, PyObject
*args
) {
4364 PyObject
*resultobj
;
4365 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4366 unsigned int arg2
= (unsigned int) ~(0u) ;
4367 PyObject
* obj0
= 0 ;
4368 PyObject
* obj1
= 0 ;
4370 if(!PyArg_ParseTuple(args
,(char *)"O|O:BColor_setScreen",&obj0
,&obj1
)) goto fail
;
4371 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4373 arg2
= (unsigned int) PyInt_AsLong(obj1
);
4374 if (PyErr_Occurred()) SWIG_fail
;
4376 (arg1
)->setScreen(arg2
);
4378 Py_INCREF(Py_None
); resultobj
= Py_None
;
4385 static PyObject
*_wrap_BColor_isAllocated(PyObject
*self
, PyObject
*args
) {
4386 PyObject
*resultobj
;
4387 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4389 PyObject
* obj0
= 0 ;
4391 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_isAllocated",&obj0
)) goto fail
;
4392 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4393 result
= (bool)((otk::BColor
const *)arg1
)->isAllocated();
4395 resultobj
= PyInt_FromLong((long)result
);
4402 static PyObject
*_wrap_BColor_isValid(PyObject
*self
, PyObject
*args
) {
4403 PyObject
*resultobj
;
4404 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4406 PyObject
* obj0
= 0 ;
4408 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_isValid",&obj0
)) goto fail
;
4409 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4410 result
= (bool)((otk::BColor
const *)arg1
)->isValid();
4412 resultobj
= PyInt_FromLong((long)result
);
4419 static PyObject
*_wrap_BColor_pixel(PyObject
*self
, PyObject
*args
) {
4420 PyObject
*resultobj
;
4421 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4422 unsigned long result
;
4423 PyObject
* obj0
= 0 ;
4425 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_pixel",&obj0
)) goto fail
;
4426 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4427 result
= (unsigned long)((otk::BColor
const *)arg1
)->pixel();
4429 resultobj
= PyInt_FromLong((long)result
);
4436 static PyObject
*_wrap_BColor_equals(PyObject
*self
, PyObject
*args
) {
4437 PyObject
*resultobj
;
4438 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4439 otk::BColor
*arg2
= 0 ;
4441 PyObject
* obj0
= 0 ;
4442 PyObject
* obj1
= 0 ;
4444 if(!PyArg_ParseTuple(args
,(char *)"OO:BColor_equals",&obj0
,&obj1
)) goto fail
;
4445 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4446 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4448 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
4450 result
= (bool)((otk::BColor
const *)arg1
)->operator ==((otk::BColor
const &)*arg2
);
4452 resultobj
= PyInt_FromLong((long)result
);
4459 static PyObject
*_wrap_BColor_cleanupColorCache(PyObject
*self
, PyObject
*args
) {
4460 PyObject
*resultobj
;
4462 if(!PyArg_ParseTuple(args
,(char *)":BColor_cleanupColorCache")) goto fail
;
4463 otk::BColor::cleanupColorCache();
4465 Py_INCREF(Py_None
); resultobj
= Py_None
;
4472 static PyObject
* BColor_swigregister(PyObject
*self
, PyObject
*args
) {
4474 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
4475 SWIG_TypeClientData(SWIGTYPE_p_otk__BColor
, obj
);
4477 return Py_BuildValue((char *)"");
4479 static PyObject
*_wrap_new_Configuration__SWIG_0(PyObject
*self
, PyObject
*args
) {
4480 PyObject
*resultobj
;
4481 std::string
*arg1
= 0 ;
4482 bool arg2
= (bool) True
;
4483 otk::Configuration
*result
;
4485 PyObject
* obj0
= 0 ;
4486 PyObject
* obj1
= 0 ;
4488 if(!PyArg_ParseTuple(args
,(char *)"O|O:new_Configuration",&obj0
,&obj1
)) goto fail
;
4490 if (PyString_Check(obj0
)) {
4491 temp1
= std::string(PyString_AsString(obj0
));
4494 SWIG_exception(SWIG_TypeError
, "string expected");
4498 arg2
= (bool) PyInt_AsLong(obj1
);
4499 if (PyErr_Occurred()) SWIG_fail
;
4501 result
= (otk::Configuration
*)new otk::Configuration((std::string
const &)*arg1
,arg2
);
4503 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Configuration
, 1);
4510 static PyObject
*_wrap_new_Configuration__SWIG_1(PyObject
*self
, PyObject
*args
) {
4511 PyObject
*resultobj
;
4512 bool arg1
= (bool) True
;
4513 otk::Configuration
*result
;
4514 PyObject
* obj0
= 0 ;
4516 if(!PyArg_ParseTuple(args
,(char *)"|O:new_Configuration",&obj0
)) goto fail
;
4518 arg1
= (bool) PyInt_AsLong(obj0
);
4519 if (PyErr_Occurred()) SWIG_fail
;
4521 result
= (otk::Configuration
*)new otk::Configuration(arg1
);
4523 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Configuration
, 1);
4530 static PyObject
*_wrap_new_Configuration(PyObject
*self
, PyObject
*args
) {
4535 argc
= PyObject_Length(args
);
4536 for (ii
= 0; (ii
< argc
) && (ii
< 2); ii
++) {
4537 argv
[ii
] = PyTuple_GetItem(args
,ii
);
4539 if ((argc
>= 0) && (argc
<= 1)) {
4542 return _wrap_new_Configuration__SWIG_1(self
,args
);
4545 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4548 return _wrap_new_Configuration__SWIG_1(self
,args
);
4551 if ((argc
>= 1) && (argc
<= 2)) {
4554 _v
= PyString_Check(argv
[0]) ? 1 : 0;
4558 return _wrap_new_Configuration__SWIG_0(self
,args
);
4561 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4564 return _wrap_new_Configuration__SWIG_0(self
,args
);
4569 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Configuration'");
4574 static PyObject
*_wrap_delete_Configuration(PyObject
*self
, PyObject
*args
) {
4575 PyObject
*resultobj
;
4576 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4577 PyObject
* obj0
= 0 ;
4579 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Configuration",&obj0
)) goto fail
;
4580 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4583 Py_INCREF(Py_None
); resultobj
= Py_None
;
4590 static PyObject
*_wrap_Configuration_file(PyObject
*self
, PyObject
*args
) {
4591 PyObject
*resultobj
;
4592 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4593 std::string
*result
;
4594 PyObject
* obj0
= 0 ;
4596 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_file",&obj0
)) goto fail
;
4597 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4599 std::string
const &_result_ref
= ((otk::Configuration
const *)arg1
)->file();
4600 result
= (std::string
*) &_result_ref
;
4604 resultobj
= PyString_FromString(result
->c_str());
4612 static PyObject
*_wrap_Configuration_setFile(PyObject
*self
, PyObject
*args
) {
4613 PyObject
*resultobj
;
4614 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4615 std::string
*arg2
= 0 ;
4617 PyObject
* obj0
= 0 ;
4618 PyObject
* obj1
= 0 ;
4620 if(!PyArg_ParseTuple(args
,(char *)"OO:Configuration_setFile",&obj0
,&obj1
)) goto fail
;
4621 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4623 if (PyString_Check(obj1
)) {
4624 temp2
= std::string(PyString_AsString(obj1
));
4627 SWIG_exception(SWIG_TypeError
, "string expected");
4630 (arg1
)->setFile((std::string
const &)*arg2
);
4632 Py_INCREF(Py_None
); resultobj
= Py_None
;
4639 static PyObject
*_wrap_Configuration_autoSave(PyObject
*self
, PyObject
*args
) {
4640 PyObject
*resultobj
;
4641 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4643 PyObject
* obj0
= 0 ;
4645 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_autoSave",&obj0
)) goto fail
;
4646 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4647 result
= (bool)((otk::Configuration
const *)arg1
)->autoSave();
4649 resultobj
= PyInt_FromLong((long)result
);
4656 static PyObject
*_wrap_Configuration_setAutoSave(PyObject
*self
, PyObject
*args
) {
4657 PyObject
*resultobj
;
4658 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4660 PyObject
* obj0
= 0 ;
4661 PyObject
* obj1
= 0 ;
4663 if(!PyArg_ParseTuple(args
,(char *)"OO:Configuration_setAutoSave",&obj0
,&obj1
)) goto fail
;
4664 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4665 arg2
= (bool) PyInt_AsLong(obj1
);
4666 if (PyErr_Occurred()) SWIG_fail
;
4667 (arg1
)->setAutoSave(arg2
);
4669 Py_INCREF(Py_None
); resultobj
= Py_None
;
4676 static PyObject
*_wrap_Configuration_isModified(PyObject
*self
, PyObject
*args
) {
4677 PyObject
*resultobj
;
4678 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4680 PyObject
* obj0
= 0 ;
4682 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_isModified",&obj0
)) goto fail
;
4683 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4684 result
= (bool)((otk::Configuration
const *)arg1
)->isModified();
4686 resultobj
= PyInt_FromLong((long)result
);
4693 static PyObject
*_wrap_Configuration_save(PyObject
*self
, PyObject
*args
) {
4694 PyObject
*resultobj
;
4695 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4696 PyObject
* obj0
= 0 ;
4698 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_save",&obj0
)) goto fail
;
4699 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4702 Py_INCREF(Py_None
); resultobj
= Py_None
;
4709 static PyObject
*_wrap_Configuration_load(PyObject
*self
, PyObject
*args
) {
4710 PyObject
*resultobj
;
4711 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4713 PyObject
* obj0
= 0 ;
4715 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_load",&obj0
)) goto fail
;
4716 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4717 result
= (bool)(arg1
)->load();
4719 resultobj
= PyInt_FromLong((long)result
);
4726 static PyObject
*_wrap_Configuration_merge(PyObject
*self
, PyObject
*args
) {
4727 PyObject
*resultobj
;
4728 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4729 std::string
*arg2
= 0 ;
4730 bool arg3
= (bool) False
;
4733 PyObject
* obj0
= 0 ;
4734 PyObject
* obj1
= 0 ;
4735 PyObject
* obj2
= 0 ;
4737 if(!PyArg_ParseTuple(args
,(char *)"OO|O:Configuration_merge",&obj0
,&obj1
,&obj2
)) goto fail
;
4738 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4740 if (PyString_Check(obj1
)) {
4741 temp2
= std::string(PyString_AsString(obj1
));
4744 SWIG_exception(SWIG_TypeError
, "string expected");
4748 arg3
= (bool) PyInt_AsLong(obj2
);
4749 if (PyErr_Occurred()) SWIG_fail
;
4751 result
= (bool)(arg1
)->merge((std::string
const &)*arg2
,arg3
);
4753 resultobj
= PyInt_FromLong((long)result
);
4760 static PyObject
*_wrap_Configuration_create(PyObject
*self
, PyObject
*args
) {
4761 PyObject
*resultobj
;
4762 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4763 PyObject
* obj0
= 0 ;
4765 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_create",&obj0
)) goto fail
;
4766 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4769 Py_INCREF(Py_None
); resultobj
= Py_None
;
4776 static PyObject
*_wrap_Configuration_setValue_bool(PyObject
*self
, PyObject
*args
) {
4777 PyObject
*resultobj
;
4778 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4779 std::string
*arg2
= 0 ;
4782 PyObject
* obj0
= 0 ;
4783 PyObject
* obj1
= 0 ;
4784 PyObject
* obj2
= 0 ;
4786 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_setValue_bool",&obj0
,&obj1
,&obj2
)) goto fail
;
4787 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4789 if (PyString_Check(obj1
)) {
4790 temp2
= std::string(PyString_AsString(obj1
));
4793 SWIG_exception(SWIG_TypeError
, "string expected");
4796 arg3
= (bool) PyInt_AsLong(obj2
);
4797 if (PyErr_Occurred()) SWIG_fail
;
4798 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4800 Py_INCREF(Py_None
); resultobj
= Py_None
;
4807 static PyObject
*_wrap_Configuration_setValue(PyObject
*self
, PyObject
*args
) {
4808 PyObject
*resultobj
;
4809 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4810 std::string
*arg2
= 0 ;
4813 PyObject
* obj0
= 0 ;
4814 PyObject
* obj1
= 0 ;
4816 if(!PyArg_ParseTuple(args
,(char *)"OOi:Configuration_setValue",&obj0
,&obj1
,&arg3
)) goto fail
;
4817 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4819 if (PyString_Check(obj1
)) {
4820 temp2
= std::string(PyString_AsString(obj1
));
4823 SWIG_exception(SWIG_TypeError
, "string expected");
4826 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4828 Py_INCREF(Py_None
); resultobj
= Py_None
;
4835 static PyObject
*_wrap_Configuration_setValue_unsigned(PyObject
*self
, PyObject
*args
) {
4836 PyObject
*resultobj
;
4837 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4838 std::string
*arg2
= 0 ;
4841 PyObject
* obj0
= 0 ;
4842 PyObject
* obj1
= 0 ;
4843 PyObject
* obj2
= 0 ;
4845 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_setValue_unsigned",&obj0
,&obj1
,&obj2
)) goto fail
;
4846 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4848 if (PyString_Check(obj1
)) {
4849 temp2
= std::string(PyString_AsString(obj1
));
4852 SWIG_exception(SWIG_TypeError
, "string expected");
4855 arg3
= (unsigned int) PyInt_AsLong(obj2
);
4856 if (PyErr_Occurred()) SWIG_fail
;
4857 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4859 Py_INCREF(Py_None
); resultobj
= Py_None
;
4866 static PyObject
*_wrap_Configuration_setValue_long(PyObject
*self
, PyObject
*args
) {
4867 PyObject
*resultobj
;
4868 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4869 std::string
*arg2
= 0 ;
4872 PyObject
* obj0
= 0 ;
4873 PyObject
* obj1
= 0 ;
4875 if(!PyArg_ParseTuple(args
,(char *)"OOl:Configuration_setValue_long",&obj0
,&obj1
,&arg3
)) goto fail
;
4876 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4878 if (PyString_Check(obj1
)) {
4879 temp2
= std::string(PyString_AsString(obj1
));
4882 SWIG_exception(SWIG_TypeError
, "string expected");
4885 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4887 Py_INCREF(Py_None
); resultobj
= Py_None
;
4894 static PyObject
*_wrap_Configuration_setValue_unsignedlong(PyObject
*self
, PyObject
*args
) {
4895 PyObject
*resultobj
;
4896 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4897 std::string
*arg2
= 0 ;
4898 unsigned long arg3
;
4900 PyObject
* obj0
= 0 ;
4901 PyObject
* obj1
= 0 ;
4902 PyObject
* obj2
= 0 ;
4904 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_setValue_unsignedlong",&obj0
,&obj1
,&obj2
)) goto fail
;
4905 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4907 if (PyString_Check(obj1
)) {
4908 temp2
= std::string(PyString_AsString(obj1
));
4911 SWIG_exception(SWIG_TypeError
, "string expected");
4914 arg3
= (unsigned long) PyInt_AsLong(obj2
);
4915 if (PyErr_Occurred()) SWIG_fail
;
4916 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4918 Py_INCREF(Py_None
); resultobj
= Py_None
;
4925 static PyObject
*_wrap_Configuration_setValue_string(PyObject
*self
, PyObject
*args
) {
4926 PyObject
*resultobj
;
4927 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4928 std::string
*arg2
= 0 ;
4929 std::string
*arg3
= 0 ;
4932 PyObject
* obj0
= 0 ;
4933 PyObject
* obj1
= 0 ;
4934 PyObject
* obj2
= 0 ;
4936 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_setValue_string",&obj0
,&obj1
,&obj2
)) goto fail
;
4937 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4939 if (PyString_Check(obj1
)) {
4940 temp2
= std::string(PyString_AsString(obj1
));
4943 SWIG_exception(SWIG_TypeError
, "string expected");
4947 if (PyString_Check(obj2
)) {
4948 temp3
= std::string(PyString_AsString(obj2
));
4951 SWIG_exception(SWIG_TypeError
, "string expected");
4954 (arg1
)->setValue((std::string
const &)*arg2
,(std::string
const &)*arg3
);
4956 Py_INCREF(Py_None
); resultobj
= Py_None
;
4963 static PyObject
*_wrap_Configuration_setValue_charptr(PyObject
*self
, PyObject
*args
) {
4964 PyObject
*resultobj
;
4965 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4966 std::string
*arg2
= 0 ;
4969 PyObject
* obj0
= 0 ;
4970 PyObject
* obj1
= 0 ;
4972 if(!PyArg_ParseTuple(args
,(char *)"OOs:Configuration_setValue_charptr",&obj0
,&obj1
,&arg3
)) goto fail
;
4973 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4975 if (PyString_Check(obj1
)) {
4976 temp2
= std::string(PyString_AsString(obj1
));
4979 SWIG_exception(SWIG_TypeError
, "string expected");
4982 (arg1
)->setValue((std::string
const &)*arg2
,(char const *)arg3
);
4984 Py_INCREF(Py_None
); resultobj
= Py_None
;
4991 static PyObject
*_wrap_Configuration_getValue__SWIG_0(PyObject
*self
, PyObject
*args
) {
4992 PyObject
*resultobj
;
4993 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4994 std::string
*arg2
= 0 ;
4998 PyObject
* obj0
= 0 ;
4999 PyObject
* obj1
= 0 ;
5000 PyObject
* obj2
= 0 ;
5002 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5003 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5005 if (PyString_Check(obj1
)) {
5006 temp2
= std::string(PyString_AsString(obj1
));
5009 SWIG_exception(SWIG_TypeError
, "string expected");
5012 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_bool
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5014 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5016 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5018 resultobj
= PyInt_FromLong((long)result
);
5025 static PyObject
*_wrap_Configuration_getValue__SWIG_1(PyObject
*self
, PyObject
*args
) {
5026 PyObject
*resultobj
;
5027 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5028 std::string
*arg2
= 0 ;
5032 PyObject
* obj0
= 0 ;
5033 PyObject
* obj1
= 0 ;
5034 PyObject
* obj2
= 0 ;
5036 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5037 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5039 if (PyString_Check(obj1
)) {
5040 temp2
= std::string(PyString_AsString(obj1
));
5043 SWIG_exception(SWIG_TypeError
, "string expected");
5046 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5048 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5050 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5052 resultobj
= PyInt_FromLong((long)result
);
5059 static PyObject
*_wrap_Configuration_getValue__SWIG_2(PyObject
*self
, PyObject
*args
) {
5060 PyObject
*resultobj
;
5061 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5062 std::string
*arg2
= 0 ;
5063 unsigned int *arg3
= 0 ;
5066 PyObject
* obj0
= 0 ;
5067 PyObject
* obj1
= 0 ;
5068 PyObject
* obj2
= 0 ;
5070 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5071 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5073 if (PyString_Check(obj1
)) {
5074 temp2
= std::string(PyString_AsString(obj1
));
5077 SWIG_exception(SWIG_TypeError
, "string expected");
5080 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_unsigned_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5082 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5084 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5086 resultobj
= PyInt_FromLong((long)result
);
5093 static PyObject
*_wrap_Configuration_getValue__SWIG_3(PyObject
*self
, PyObject
*args
) {
5094 PyObject
*resultobj
;
5095 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5096 std::string
*arg2
= 0 ;
5100 PyObject
* obj0
= 0 ;
5101 PyObject
* obj1
= 0 ;
5102 PyObject
* obj2
= 0 ;
5104 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5105 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5107 if (PyString_Check(obj1
)) {
5108 temp2
= std::string(PyString_AsString(obj1
));
5111 SWIG_exception(SWIG_TypeError
, "string expected");
5114 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5116 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5118 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5120 resultobj
= PyInt_FromLong((long)result
);
5127 static PyObject
*_wrap_Configuration_getValue__SWIG_4(PyObject
*self
, PyObject
*args
) {
5128 PyObject
*resultobj
;
5129 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5130 std::string
*arg2
= 0 ;
5131 unsigned long *arg3
= 0 ;
5134 PyObject
* obj0
= 0 ;
5135 PyObject
* obj1
= 0 ;
5136 PyObject
* obj2
= 0 ;
5138 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5139 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5141 if (PyString_Check(obj1
)) {
5142 temp2
= std::string(PyString_AsString(obj1
));
5145 SWIG_exception(SWIG_TypeError
, "string expected");
5148 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5150 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5152 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5154 resultobj
= PyInt_FromLong((long)result
);
5161 static PyObject
*_wrap_Configuration_getValue__SWIG_5(PyObject
*self
, PyObject
*args
) {
5162 PyObject
*resultobj
;
5163 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5164 std::string
*arg2
= 0 ;
5165 std::string
*arg3
= 0 ;
5168 PyObject
* obj0
= 0 ;
5169 PyObject
* obj1
= 0 ;
5170 PyObject
* obj2
= 0 ;
5172 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5173 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5175 if (PyString_Check(obj1
)) {
5176 temp2
= std::string(PyString_AsString(obj1
));
5179 SWIG_exception(SWIG_TypeError
, "string expected");
5182 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_std__string
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5184 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5186 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5188 resultobj
= PyInt_FromLong((long)result
);
5195 static PyObject
*_wrap_Configuration_getValue(PyObject
*self
, PyObject
*args
) {
5200 argc
= PyObject_Length(args
);
5201 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
5202 argv
[ii
] = PyTuple_GetItem(args
,ii
);
5208 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5217 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5222 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_bool
, 0) == -1) {
5230 return _wrap_Configuration_getValue__SWIG_0(self
,args
);
5239 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5248 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5253 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_int
, 0) == -1) {
5261 return _wrap_Configuration_getValue__SWIG_1(self
,args
);
5270 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5279 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5284 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_unsigned_int
, 0) == -1) {
5292 return _wrap_Configuration_getValue__SWIG_2(self
,args
);
5301 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5310 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5315 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_long
, 0) == -1) {
5323 return _wrap_Configuration_getValue__SWIG_3(self
,args
);
5332 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5341 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5346 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
5354 return _wrap_Configuration_getValue__SWIG_4(self
,args
);
5363 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5372 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5377 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_std__string
, 0) == -1) {
5385 return _wrap_Configuration_getValue__SWIG_5(self
,args
);
5391 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Configuration_getValue'");
5396 static PyObject
* Configuration_swigregister(PyObject
*self
, PyObject
*args
) {
5398 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
5399 SWIG_TypeClientData(SWIGTYPE_p_otk__Configuration
, obj
);
5401 return Py_BuildValue((char *)"");
5403 static int _wrap_OBDisplay_display_set(PyObject
*_val
) {
5406 if ((SWIG_ConvertPtr(_val
,(void **) &temp
, SWIGTYPE_p_Display
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
)) == -1) {
5407 PyErr_SetString(PyExc_TypeError
, "C variable 'otk::OBDisplay::display (Display *)'");
5410 otk::OBDisplay::display
= (Display
*) temp
;
5416 static PyObject
*_wrap_OBDisplay_display_get() {
5419 pyobj
= SWIG_NewPointerObj((void *) otk::OBDisplay::display
, SWIGTYPE_p_Display
, 0);
5424 static PyObject
*_wrap_OBDisplay_initialize(PyObject
*self
, PyObject
*args
) {
5425 PyObject
*resultobj
;
5428 if(!PyArg_ParseTuple(args
,(char *)"s:OBDisplay_initialize",&arg1
)) goto fail
;
5429 otk::OBDisplay::initialize(arg1
);
5431 Py_INCREF(Py_None
); resultobj
= Py_None
;
5438 static PyObject
*_wrap_OBDisplay_destroy(PyObject
*self
, PyObject
*args
) {
5439 PyObject
*resultobj
;
5441 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_destroy")) goto fail
;
5442 otk::OBDisplay::destroy();
5444 Py_INCREF(Py_None
); resultobj
= Py_None
;
5451 static PyObject
*_wrap_OBDisplay_gcCache(PyObject
*self
, PyObject
*args
) {
5452 PyObject
*resultobj
;
5453 otk::BGCCache
*result
;
5455 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_gcCache")) goto fail
;
5456 result
= (otk::BGCCache
*)otk::OBDisplay::gcCache();
5458 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BGCCache
, 0);
5465 static PyObject
*_wrap_OBDisplay_screenInfo(PyObject
*self
, PyObject
*args
) {
5466 PyObject
*resultobj
;
5468 otk::ScreenInfo
*result
;
5470 if(!PyArg_ParseTuple(args
,(char *)"i:OBDisplay_screenInfo",&arg1
)) goto fail
;
5471 result
= (otk::ScreenInfo
*)otk::OBDisplay::screenInfo(arg1
);
5473 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__ScreenInfo
, 0);
5480 static PyObject
*_wrap_OBDisplay_shape(PyObject
*self
, PyObject
*args
) {
5481 PyObject
*resultobj
;
5484 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_shape")) goto fail
;
5485 result
= (bool)otk::OBDisplay::shape();
5487 resultobj
= PyInt_FromLong((long)result
);
5494 static PyObject
*_wrap_OBDisplay_shapeEventBase(PyObject
*self
, PyObject
*args
) {
5495 PyObject
*resultobj
;
5498 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_shapeEventBase")) goto fail
;
5499 result
= (int)otk::OBDisplay::shapeEventBase();
5501 resultobj
= PyInt_FromLong((long)result
);
5508 static PyObject
*_wrap_OBDisplay_xinerama(PyObject
*self
, PyObject
*args
) {
5509 PyObject
*resultobj
;
5512 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_xinerama")) goto fail
;
5513 result
= (bool)otk::OBDisplay::xinerama();
5515 resultobj
= PyInt_FromLong((long)result
);
5522 static PyObject
*_wrap_OBDisplay_grab(PyObject
*self
, PyObject
*args
) {
5523 PyObject
*resultobj
;
5525 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_grab")) goto fail
;
5526 otk::OBDisplay::grab();
5528 Py_INCREF(Py_None
); resultobj
= Py_None
;
5535 static PyObject
*_wrap_OBDisplay_ungrab(PyObject
*self
, PyObject
*args
) {
5536 PyObject
*resultobj
;
5538 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_ungrab")) goto fail
;
5539 otk::OBDisplay::ungrab();
5541 Py_INCREF(Py_None
); resultobj
= Py_None
;
5548 static PyObject
*_wrap_OBDisplay_grabButton(PyObject
*self
, PyObject
*args
) {
5549 PyObject
*resultobj
;
5563 PyObject
* obj0
= 0 ;
5564 PyObject
* obj1
= 0 ;
5565 PyObject
* obj2
= 0 ;
5566 PyObject
* obj3
= 0 ;
5567 PyObject
* obj4
= 0 ;
5568 PyObject
* obj7
= 0 ;
5569 PyObject
* obj8
= 0 ;
5570 PyObject
* obj9
= 0 ;
5572 if(!PyArg_ParseTuple(args
,(char *)"OOOOOiiOOO:OBDisplay_grabButton",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&arg6
,&arg7
,&obj7
,&obj8
,&obj9
)) goto fail
;
5573 arg1
= (unsigned int) PyInt_AsLong(obj0
);
5574 if (PyErr_Occurred()) SWIG_fail
;
5575 arg2
= (unsigned int) PyInt_AsLong(obj1
);
5576 if (PyErr_Occurred()) SWIG_fail
;
5577 if ((SWIG_ConvertPtr(obj2
,(void **) &argp3
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5579 arg4
= (bool) PyInt_AsLong(obj3
);
5580 if (PyErr_Occurred()) SWIG_fail
;
5581 arg5
= (unsigned int) PyInt_AsLong(obj4
);
5582 if (PyErr_Occurred()) SWIG_fail
;
5583 if ((SWIG_ConvertPtr(obj7
,(void **) &argp8
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5585 if ((SWIG_ConvertPtr(obj8
,(void **) &argp9
, SWIGTYPE_p_Cursor
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5587 arg10
= (bool) PyInt_AsLong(obj9
);
5588 if (PyErr_Occurred()) SWIG_fail
;
5589 otk::OBDisplay::grabButton(arg1
,arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
,arg9
,arg10
);
5591 Py_INCREF(Py_None
); resultobj
= Py_None
;
5598 static PyObject
*_wrap_OBDisplay_ungrabButton(PyObject
*self
, PyObject
*args
) {
5599 PyObject
*resultobj
;
5604 PyObject
* obj0
= 0 ;
5605 PyObject
* obj1
= 0 ;
5606 PyObject
* obj2
= 0 ;
5608 if(!PyArg_ParseTuple(args
,(char *)"OOO:OBDisplay_ungrabButton",&obj0
,&obj1
,&obj2
)) goto fail
;
5609 arg1
= (unsigned int) PyInt_AsLong(obj0
);
5610 if (PyErr_Occurred()) SWIG_fail
;
5611 arg2
= (unsigned int) PyInt_AsLong(obj1
);
5612 if (PyErr_Occurred()) SWIG_fail
;
5613 if ((SWIG_ConvertPtr(obj2
,(void **) &argp3
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5615 otk::OBDisplay::ungrabButton(arg1
,arg2
,arg3
);
5617 Py_INCREF(Py_None
); resultobj
= Py_None
;
5624 static PyObject
*_wrap_delete_OBDisplay(PyObject
*self
, PyObject
*args
) {
5625 PyObject
*resultobj
;
5626 otk::OBDisplay
*arg1
= (otk::OBDisplay
*) 0 ;
5627 PyObject
* obj0
= 0 ;
5629 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OBDisplay",&obj0
)) goto fail
;
5630 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBDisplay
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5633 Py_INCREF(Py_None
); resultobj
= Py_None
;
5640 static PyObject
* OBDisplay_swigregister(PyObject
*self
, PyObject
*args
) {
5642 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
5643 SWIG_TypeClientData(SWIGTYPE_p_otk__OBDisplay
, obj
);
5645 return Py_BuildValue((char *)"");
5647 static PyObject
*_wrap_BFont_fallbackFont(PyObject
*self
, PyObject
*args
) {
5648 PyObject
*resultobj
;
5651 if(!PyArg_ParseTuple(args
,(char *)":BFont_fallbackFont")) goto fail
;
5652 result
= otk::BFont::fallbackFont();
5655 resultobj
= PyString_FromString((&result
)->c_str());
5663 static PyObject
*_wrap_BFont_setFallbackFont(PyObject
*self
, PyObject
*args
) {
5664 PyObject
*resultobj
;
5665 std::string
*arg1
= 0 ;
5667 PyObject
* obj0
= 0 ;
5669 if(!PyArg_ParseTuple(args
,(char *)"O:BFont_setFallbackFont",&obj0
)) goto fail
;
5671 if (PyString_Check(obj0
)) {
5672 temp1
= std::string(PyString_AsString(obj0
));
5675 SWIG_exception(SWIG_TypeError
, "string expected");
5678 otk::BFont::setFallbackFont((std::string
const &)*arg1
);
5680 Py_INCREF(Py_None
); resultobj
= Py_None
;
5687 static PyObject
*_wrap_new_BFont(PyObject
*self
, PyObject
*args
) {
5688 PyObject
*resultobj
;
5690 std::string
*arg2
= 0 ;
5692 unsigned char arg4
;
5693 unsigned char arg5
;
5696 PyObject
* obj1
= 0 ;
5697 PyObject
* obj2
= 0 ;
5698 PyObject
* obj3
= 0 ;
5699 PyObject
* obj4
= 0 ;
5701 if(!PyArg_ParseTuple(args
,(char *)"iOOOO:new_BFont",&arg1
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
5703 if (PyString_Check(obj1
)) {
5704 temp2
= std::string(PyString_AsString(obj1
));
5707 SWIG_exception(SWIG_TypeError
, "string expected");
5710 arg3
= (bool) PyInt_AsLong(obj2
);
5711 if (PyErr_Occurred()) SWIG_fail
;
5712 arg4
= (unsigned char) PyInt_AsLong(obj3
);
5713 if (PyErr_Occurred()) SWIG_fail
;
5714 arg5
= (unsigned char) PyInt_AsLong(obj4
);
5715 if (PyErr_Occurred()) SWIG_fail
;
5716 result
= (otk::BFont
*)new otk::BFont(arg1
,(std::string
const &)*arg2
,arg3
,arg4
,arg5
);
5718 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BFont
, 1);
5725 static PyObject
*_wrap_delete_BFont(PyObject
*self
, PyObject
*args
) {
5726 PyObject
*resultobj
;
5727 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5728 PyObject
* obj0
= 0 ;
5730 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BFont",&obj0
)) goto fail
;
5731 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5734 Py_INCREF(Py_None
); resultobj
= Py_None
;
5741 static PyObject
*_wrap_BFont_fontstring(PyObject
*self
, PyObject
*args
) {
5742 PyObject
*resultobj
;
5743 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5744 std::string
*result
;
5745 PyObject
* obj0
= 0 ;
5747 if(!PyArg_ParseTuple(args
,(char *)"O:BFont_fontstring",&obj0
)) goto fail
;
5748 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5750 std::string
const &_result_ref
= ((otk::BFont
const *)arg1
)->fontstring();
5751 result
= (std::string
*) &_result_ref
;
5755 resultobj
= PyString_FromString(result
->c_str());
5763 static PyObject
*_wrap_BFont_height(PyObject
*self
, PyObject
*args
) {
5764 PyObject
*resultobj
;
5765 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5766 unsigned int result
;
5767 PyObject
* obj0
= 0 ;
5769 if(!PyArg_ParseTuple(args
,(char *)"O:BFont_height",&obj0
)) goto fail
;
5770 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5771 result
= (unsigned int)((otk::BFont
const *)arg1
)->height();
5773 resultobj
= PyInt_FromLong((long)result
);
5780 static PyObject
*_wrap_BFont_maxCharWidth(PyObject
*self
, PyObject
*args
) {
5781 PyObject
*resultobj
;
5782 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5783 unsigned int result
;
5784 PyObject
* obj0
= 0 ;
5786 if(!PyArg_ParseTuple(args
,(char *)"O:BFont_maxCharWidth",&obj0
)) goto fail
;
5787 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5788 result
= (unsigned int)((otk::BFont
const *)arg1
)->maxCharWidth();
5790 resultobj
= PyInt_FromLong((long)result
);
5797 static PyObject
*_wrap_BFont_measureString(PyObject
*self
, PyObject
*args
) {
5798 PyObject
*resultobj
;
5799 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5800 std::string
*arg2
= 0 ;
5801 bool arg3
= (bool) false ;
5802 unsigned int result
;
5804 PyObject
* obj0
= 0 ;
5805 PyObject
* obj1
= 0 ;
5806 PyObject
* obj2
= 0 ;
5808 if(!PyArg_ParseTuple(args
,(char *)"OO|O:BFont_measureString",&obj0
,&obj1
,&obj2
)) goto fail
;
5809 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5811 if (PyString_Check(obj1
)) {
5812 temp2
= std::string(PyString_AsString(obj1
));
5815 SWIG_exception(SWIG_TypeError
, "string expected");
5819 arg3
= (bool) PyInt_AsLong(obj2
);
5820 if (PyErr_Occurred()) SWIG_fail
;
5822 result
= (unsigned int)((otk::BFont
const *)arg1
)->measureString((std::string
const &)*arg2
,arg3
);
5824 resultobj
= PyInt_FromLong((long)result
);
5831 static PyObject
*_wrap_BFont_drawString(PyObject
*self
, PyObject
*args
) {
5832 PyObject
*resultobj
;
5833 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5834 XftDraw
*arg2
= (XftDraw
*) 0 ;
5837 otk::BColor
*arg5
= 0 ;
5838 std::string
*arg6
= 0 ;
5839 bool arg7
= (bool) false ;
5841 PyObject
* obj0
= 0 ;
5842 PyObject
* obj1
= 0 ;
5843 PyObject
* obj4
= 0 ;
5844 PyObject
* obj5
= 0 ;
5845 PyObject
* obj6
= 0 ;
5847 if(!PyArg_ParseTuple(args
,(char *)"OOiiOO|O:BFont_drawString",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
,&obj5
,&obj6
)) goto fail
;
5848 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5849 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XftDraw
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5850 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5852 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5855 if (PyString_Check(obj5
)) {
5856 temp6
= std::string(PyString_AsString(obj5
));
5859 SWIG_exception(SWIG_TypeError
, "string expected");
5863 arg7
= (bool) PyInt_AsLong(obj6
);
5864 if (PyErr_Occurred()) SWIG_fail
;
5866 ((otk::BFont
const *)arg1
)->drawString(arg2
,arg3
,arg4
,(otk::BColor
const &)*arg5
,(std::string
const &)*arg6
,arg7
);
5868 Py_INCREF(Py_None
); resultobj
= Py_None
;
5875 static PyObject
* BFont_swigregister(PyObject
*self
, PyObject
*args
) {
5877 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
5878 SWIG_TypeClientData(SWIGTYPE_p_otk__BFont
, obj
);
5880 return Py_BuildValue((char *)"");
5882 static PyObject
*_wrap_BGCCacheContext_set__SWIG_0(PyObject
*self
, PyObject
*args
) {
5883 PyObject
*resultobj
;
5884 otk::BGCCacheContext
*arg1
= (otk::BGCCacheContext
*) 0 ;
5885 otk::BColor
*arg2
= 0 ;
5886 XFontStruct
*arg3
= (XFontStruct
*) (XFontStruct
*)0 ;
5890 PyObject
* obj0
= 0 ;
5891 PyObject
* obj1
= 0 ;
5892 PyObject
* obj2
= 0 ;
5894 if(!PyArg_ParseTuple(args
,(char *)"OOOiii:BGCCacheContext_set",&obj0
,&obj1
,&obj2
,&arg4
,&arg5
,&arg6
)) goto fail
;
5895 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheContext
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5896 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5898 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5900 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_XFontStruct
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5901 (arg1
)->set((otk::BColor
const &)*arg2
,(XFontStruct
const *)arg3
,arg4
,arg5
,arg6
);
5903 Py_INCREF(Py_None
); resultobj
= Py_None
;
5910 static PyObject
*_wrap_BGCCacheContext_set__SWIG_1(PyObject
*self
, PyObject
*args
) {
5911 PyObject
*resultobj
;
5912 otk::BGCCacheContext
*arg1
= (otk::BGCCacheContext
*) 0 ;
5913 XFontStruct
*arg2
= (XFontStruct
*) (XFontStruct
*)0 ;
5914 PyObject
* obj0
= 0 ;
5915 PyObject
* obj1
= 0 ;
5917 if(!PyArg_ParseTuple(args
,(char *)"OO:BGCCacheContext_set",&obj0
,&obj1
)) goto fail
;
5918 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheContext
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5919 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XFontStruct
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5920 (arg1
)->set((XFontStruct
const *)arg2
);
5922 Py_INCREF(Py_None
); resultobj
= Py_None
;
5929 static PyObject
*_wrap_BGCCacheContext_set(PyObject
*self
, PyObject
*args
) {
5934 argc
= PyObject_Length(args
);
5935 for (ii
= 0; (ii
< argc
) && (ii
< 6); ii
++) {
5936 argv
[ii
] = PyTuple_GetItem(args
,ii
);
5942 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__BGCCacheContext
, 0) == -1) {
5952 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_XFontStruct
, 0) == -1) {
5960 return _wrap_BGCCacheContext_set__SWIG_1(self
,args
);
5968 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__BGCCacheContext
, 0) == -1) {
5978 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__BColor
, 0) == -1) {
5988 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_XFontStruct
, 0) == -1) {
5997 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
6001 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
6005 _v
= (PyInt_Check(argv
[5]) || PyLong_Check(argv
[5])) ? 1 : 0;
6008 return _wrap_BGCCacheContext_set__SWIG_0(self
,args
);
6017 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'BGCCacheContext_set'");
6022 static PyObject
*_wrap_delete_BGCCacheContext(PyObject
*self
, PyObject
*args
) {
6023 PyObject
*resultobj
;
6024 otk::BGCCacheContext
*arg1
= (otk::BGCCacheContext
*) 0 ;
6025 PyObject
* obj0
= 0 ;
6027 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BGCCacheContext",&obj0
)) goto fail
;
6028 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheContext
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6031 Py_INCREF(Py_None
); resultobj
= Py_None
;
6038 static PyObject
* BGCCacheContext_swigregister(PyObject
*self
, PyObject
*args
) {
6040 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6041 SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCacheContext
, obj
);
6043 return Py_BuildValue((char *)"");
6045 static PyObject
*_wrap_BGCCacheItem_gc(PyObject
*self
, PyObject
*args
) {
6046 PyObject
*resultobj
;
6047 otk::BGCCacheItem
*arg1
= (otk::BGCCacheItem
*) 0 ;
6049 PyObject
* obj0
= 0 ;
6051 if(!PyArg_ParseTuple(args
,(char *)"O:BGCCacheItem_gc",&obj0
)) goto fail
;
6052 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheItem
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6054 GC
const &_result_ref
= ((otk::BGCCacheItem
const *)arg1
)->gc();
6055 result
= (GC
*) &_result_ref
;
6058 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_GC
, 0);
6065 static PyObject
*_wrap_delete_BGCCacheItem(PyObject
*self
, PyObject
*args
) {
6066 PyObject
*resultobj
;
6067 otk::BGCCacheItem
*arg1
= (otk::BGCCacheItem
*) 0 ;
6068 PyObject
* obj0
= 0 ;
6070 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BGCCacheItem",&obj0
)) goto fail
;
6071 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheItem
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6074 Py_INCREF(Py_None
); resultobj
= Py_None
;
6081 static PyObject
* BGCCacheItem_swigregister(PyObject
*self
, PyObject
*args
) {
6083 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6084 SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCacheItem
, obj
);
6086 return Py_BuildValue((char *)"");
6088 static PyObject
*_wrap_new_BGCCache(PyObject
*self
, PyObject
*args
) {
6089 PyObject
*resultobj
;
6091 otk::BGCCache
*result
;
6092 PyObject
* obj0
= 0 ;
6094 if(!PyArg_ParseTuple(args
,(char *)"O:new_BGCCache",&obj0
)) goto fail
;
6095 arg1
= (unsigned int) PyInt_AsLong(obj0
);
6096 if (PyErr_Occurred()) SWIG_fail
;
6097 result
= (otk::BGCCache
*)new otk::BGCCache(arg1
);
6099 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BGCCache
, 1);
6106 static PyObject
*_wrap_delete_BGCCache(PyObject
*self
, PyObject
*args
) {
6107 PyObject
*resultobj
;
6108 otk::BGCCache
*arg1
= (otk::BGCCache
*) 0 ;
6109 PyObject
* obj0
= 0 ;
6111 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BGCCache",&obj0
)) goto fail
;
6112 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCache
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6115 Py_INCREF(Py_None
); resultobj
= Py_None
;
6122 static PyObject
*_wrap_BGCCache_purge(PyObject
*self
, PyObject
*args
) {
6123 PyObject
*resultobj
;
6124 otk::BGCCache
*arg1
= (otk::BGCCache
*) 0 ;
6125 PyObject
* obj0
= 0 ;
6127 if(!PyArg_ParseTuple(args
,(char *)"O:BGCCache_purge",&obj0
)) goto fail
;
6128 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCache
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6131 Py_INCREF(Py_None
); resultobj
= Py_None
;
6138 static PyObject
*_wrap_BGCCache_find(PyObject
*self
, PyObject
*args
) {
6139 PyObject
*resultobj
;
6140 otk::BGCCache
*arg1
= (otk::BGCCache
*) 0 ;
6141 otk::BColor
*arg2
= 0 ;
6142 XFontStruct
*arg3
= (XFontStruct
*) (XFontStruct
*)0 ;
6143 int arg4
= (int) GXcopy
;
6144 int arg5
= (int) ClipByChildren
;
6145 int arg6
= (int) 0 ;
6146 otk::BGCCacheItem
*result
;
6147 PyObject
* obj0
= 0 ;
6148 PyObject
* obj1
= 0 ;
6149 PyObject
* obj2
= 0 ;
6151 if(!PyArg_ParseTuple(args
,(char *)"OO|Oiii:BGCCache_find",&obj0
,&obj1
,&obj2
,&arg4
,&arg5
,&arg6
)) goto fail
;
6152 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCache
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6153 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6155 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6158 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_XFontStruct
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6160 result
= (otk::BGCCacheItem
*)(arg1
)->find((otk::BColor
const &)*arg2
,(XFontStruct
const *)arg3
,arg4
,arg5
,arg6
);
6162 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BGCCacheItem
, 0);
6169 static PyObject
*_wrap_BGCCache_release(PyObject
*self
, PyObject
*args
) {
6170 PyObject
*resultobj
;
6171 otk::BGCCache
*arg1
= (otk::BGCCache
*) 0 ;
6172 otk::BGCCacheItem
*arg2
= (otk::BGCCacheItem
*) 0 ;
6173 PyObject
* obj0
= 0 ;
6174 PyObject
* obj1
= 0 ;
6176 if(!PyArg_ParseTuple(args
,(char *)"OO:BGCCache_release",&obj0
,&obj1
)) goto fail
;
6177 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCache
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6178 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BGCCacheItem
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6179 (arg1
)->release(arg2
);
6181 Py_INCREF(Py_None
); resultobj
= Py_None
;
6188 static PyObject
* BGCCache_swigregister(PyObject
*self
, PyObject
*args
) {
6190 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6191 SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCache
, obj
);
6193 return Py_BuildValue((char *)"");
6195 static PyObject
*_wrap_new_BPen(PyObject
*self
, PyObject
*args
) {
6196 PyObject
*resultobj
;
6197 otk::BColor
*arg1
= 0 ;
6198 XFontStruct
*arg2
= (XFontStruct
*) (XFontStruct
*)0 ;
6199 int arg3
= (int) 0 ;
6200 int arg4
= (int) GXcopy
;
6201 int arg5
= (int) ClipByChildren
;
6203 PyObject
* obj0
= 0 ;
6204 PyObject
* obj1
= 0 ;
6206 if(!PyArg_ParseTuple(args
,(char *)"O|Oiii:new_BPen",&obj0
,&obj1
,&arg3
,&arg4
,&arg5
)) goto fail
;
6207 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6209 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6212 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XFontStruct
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6214 result
= (otk::BPen
*)new otk::BPen((otk::BColor
const &)*arg1
,(XFontStruct
const *)arg2
,arg3
,arg4
,arg5
);
6216 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BPen
, 1);
6223 static PyObject
*_wrap_delete_BPen(PyObject
*self
, PyObject
*args
) {
6224 PyObject
*resultobj
;
6225 otk::BPen
*arg1
= (otk::BPen
*) 0 ;
6226 PyObject
* obj0
= 0 ;
6228 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BPen",&obj0
)) goto fail
;
6229 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BPen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6232 Py_INCREF(Py_None
); resultobj
= Py_None
;
6239 static PyObject
*_wrap_BPen_gc(PyObject
*self
, PyObject
*args
) {
6240 PyObject
*resultobj
;
6241 otk::BPen
*arg1
= (otk::BPen
*) 0 ;
6243 PyObject
* obj0
= 0 ;
6245 if(!PyArg_ParseTuple(args
,(char *)"O:BPen_gc",&obj0
)) goto fail
;
6246 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BPen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6248 GC
const &_result_ref
= ((otk::BPen
const *)arg1
)->gc();
6249 result
= (GC
*) &_result_ref
;
6252 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_GC
, 0);
6259 static PyObject
* BPen_swigregister(PyObject
*self
, PyObject
*args
) {
6261 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6262 SWIG_TypeClientData(SWIGTYPE_p_otk__BPen
, obj
);
6264 return Py_BuildValue((char *)"");
6266 static PyObject
*_wrap_new_BImage(PyObject
*self
, PyObject
*args
) {
6267 PyObject
*resultobj
;
6268 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6271 otk::BImage
*result
;
6272 PyObject
* obj0
= 0 ;
6274 if(!PyArg_ParseTuple(args
,(char *)"Oii:new_BImage",&obj0
,&arg2
,&arg3
)) goto fail
;
6275 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6276 result
= (otk::BImage
*)new otk::BImage(arg1
,arg2
,arg3
);
6278 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BImage
, 1);
6285 static PyObject
*_wrap_delete_BImage(PyObject
*self
, PyObject
*args
) {
6286 PyObject
*resultobj
;
6287 otk::BImage
*arg1
= (otk::BImage
*) 0 ;
6288 PyObject
* obj0
= 0 ;
6290 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BImage",&obj0
)) goto fail
;
6291 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImage
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6294 Py_INCREF(Py_None
); resultobj
= Py_None
;
6301 static PyObject
*_wrap_BImage_render(PyObject
*self
, PyObject
*args
) {
6302 PyObject
*resultobj
;
6303 otk::BImage
*arg1
= (otk::BImage
*) 0 ;
6304 otk::BTexture
*arg2
= 0 ;
6306 PyObject
* obj0
= 0 ;
6307 PyObject
* obj1
= 0 ;
6309 if(!PyArg_ParseTuple(args
,(char *)"OO:BImage_render",&obj0
,&obj1
)) goto fail
;
6310 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImage
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6311 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6313 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6315 result
= (arg1
)->render((otk::BTexture
const &)*arg2
);
6319 resultptr
= new Pixmap((Pixmap
&) result
);
6320 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Pixmap
, 1);
6328 static PyObject
* BImage_swigregister(PyObject
*self
, PyObject
*args
) {
6330 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6331 SWIG_TypeClientData(SWIGTYPE_p_otk__BImage
, obj
);
6333 return Py_BuildValue((char *)"");
6335 static PyObject
*_wrap_new_BImageControl(PyObject
*self
, PyObject
*args
) {
6336 PyObject
*resultobj
;
6337 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
6338 otk::ScreenInfo
*arg2
= (otk::ScreenInfo
*) 0 ;
6339 bool arg3
= (bool) False
;
6340 int arg4
= (int) 4 ;
6341 unsigned long arg5
= (unsigned long) 300000l ;
6342 unsigned long arg6
= (unsigned long) 200l ;
6343 otk::BImageControl
*result
;
6344 PyObject
* obj0
= 0 ;
6345 PyObject
* obj1
= 0 ;
6346 PyObject
* obj2
= 0 ;
6347 PyObject
* obj4
= 0 ;
6348 PyObject
* obj5
= 0 ;
6350 if(!PyArg_ParseTuple(args
,(char *)"OO|OiOO:new_BImageControl",&obj0
,&obj1
,&obj2
,&arg4
,&obj4
,&obj5
)) goto fail
;
6351 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6352 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6354 arg3
= (bool) PyInt_AsLong(obj2
);
6355 if (PyErr_Occurred()) SWIG_fail
;
6358 arg5
= (unsigned long) PyInt_AsLong(obj4
);
6359 if (PyErr_Occurred()) SWIG_fail
;
6362 arg6
= (unsigned long) PyInt_AsLong(obj5
);
6363 if (PyErr_Occurred()) SWIG_fail
;
6365 result
= (otk::BImageControl
*)new otk::BImageControl(arg1
,(otk::ScreenInfo
const *)arg2
,arg3
,arg4
,arg5
,arg6
);
6367 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BImageControl
, 1);
6374 static PyObject
*_wrap_delete_BImageControl(PyObject
*self
, PyObject
*args
) {
6375 PyObject
*resultobj
;
6376 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6377 PyObject
* obj0
= 0 ;
6379 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BImageControl",&obj0
)) goto fail
;
6380 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6383 Py_INCREF(Py_None
); resultobj
= Py_None
;
6390 static PyObject
*_wrap_BImageControl_doDither(PyObject
*self
, PyObject
*args
) {
6391 PyObject
*resultobj
;
6392 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6394 PyObject
* obj0
= 0 ;
6396 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_doDither",&obj0
)) goto fail
;
6397 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6398 result
= (bool)(arg1
)->doDither();
6400 resultobj
= PyInt_FromLong((long)result
);
6407 static PyObject
*_wrap_BImageControl_getScreenInfo(PyObject
*self
, PyObject
*args
) {
6408 PyObject
*resultobj
;
6409 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6410 otk::ScreenInfo
*result
;
6411 PyObject
* obj0
= 0 ;
6413 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getScreenInfo",&obj0
)) goto fail
;
6414 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6415 result
= (otk::ScreenInfo
*)((otk::BImageControl
const *)arg1
)->getScreenInfo();
6417 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__ScreenInfo
, 0);
6424 static PyObject
*_wrap_BImageControl_getDrawable(PyObject
*self
, PyObject
*args
) {
6425 PyObject
*resultobj
;
6426 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6428 PyObject
* obj0
= 0 ;
6430 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getDrawable",&obj0
)) goto fail
;
6431 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6432 result
= ((otk::BImageControl
const *)arg1
)->getDrawable();
6436 resultptr
= new Window((Window
&) result
);
6437 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Window
, 1);
6445 static PyObject
*_wrap_BImageControl_getVisual(PyObject
*self
, PyObject
*args
) {
6446 PyObject
*resultobj
;
6447 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6449 PyObject
* obj0
= 0 ;
6451 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getVisual",&obj0
)) goto fail
;
6452 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6453 result
= (Visual
*)(arg1
)->getVisual();
6455 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_Visual
, 0);
6462 static PyObject
*_wrap_BImageControl_getBitsPerPixel(PyObject
*self
, PyObject
*args
) {
6463 PyObject
*resultobj
;
6464 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6466 PyObject
* obj0
= 0 ;
6468 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getBitsPerPixel",&obj0
)) goto fail
;
6469 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6470 result
= (int)((otk::BImageControl
const *)arg1
)->getBitsPerPixel();
6472 resultobj
= PyInt_FromLong((long)result
);
6479 static PyObject
*_wrap_BImageControl_getDepth(PyObject
*self
, PyObject
*args
) {
6480 PyObject
*resultobj
;
6481 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6483 PyObject
* obj0
= 0 ;
6485 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getDepth",&obj0
)) goto fail
;
6486 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6487 result
= (int)((otk::BImageControl
const *)arg1
)->getDepth();
6489 resultobj
= PyInt_FromLong((long)result
);
6496 static PyObject
*_wrap_BImageControl_getColorsPerChannel(PyObject
*self
, PyObject
*args
) {
6497 PyObject
*resultobj
;
6498 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6500 PyObject
* obj0
= 0 ;
6502 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getColorsPerChannel",&obj0
)) goto fail
;
6503 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6504 result
= (int)((otk::BImageControl
const *)arg1
)->getColorsPerChannel();
6506 resultobj
= PyInt_FromLong((long)result
);
6513 static PyObject
*_wrap_BImageControl_getSqrt(PyObject
*self
, PyObject
*args
) {
6514 PyObject
*resultobj
;
6515 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6517 unsigned long result
;
6518 PyObject
* obj0
= 0 ;
6519 PyObject
* obj1
= 0 ;
6521 if(!PyArg_ParseTuple(args
,(char *)"OO:BImageControl_getSqrt",&obj0
,&obj1
)) goto fail
;
6522 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6523 arg2
= (unsigned int) PyInt_AsLong(obj1
);
6524 if (PyErr_Occurred()) SWIG_fail
;
6525 result
= (unsigned long)(arg1
)->getSqrt(arg2
);
6527 resultobj
= PyInt_FromLong((long)result
);
6534 static PyObject
*_wrap_BImageControl_renderImage(PyObject
*self
, PyObject
*args
) {
6535 PyObject
*resultobj
;
6536 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6539 otk::BTexture
*arg4
= 0 ;
6541 PyObject
* obj0
= 0 ;
6542 PyObject
* obj1
= 0 ;
6543 PyObject
* obj2
= 0 ;
6544 PyObject
* obj3
= 0 ;
6546 if(!PyArg_ParseTuple(args
,(char *)"OOOO:BImageControl_renderImage",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
6547 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6548 arg2
= (unsigned int) PyInt_AsLong(obj1
);
6549 if (PyErr_Occurred()) SWIG_fail
;
6550 arg3
= (unsigned int) PyInt_AsLong(obj2
);
6551 if (PyErr_Occurred()) SWIG_fail
;
6552 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6554 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6556 result
= (arg1
)->renderImage(arg2
,arg3
,(otk::BTexture
const &)*arg4
);
6560 resultptr
= new Pixmap((Pixmap
&) result
);
6561 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Pixmap
, 1);
6569 static PyObject
*_wrap_BImageControl_installRootColormap(PyObject
*self
, PyObject
*args
) {
6570 PyObject
*resultobj
;
6571 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6572 PyObject
* obj0
= 0 ;
6574 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_installRootColormap",&obj0
)) goto fail
;
6575 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6576 (arg1
)->installRootColormap();
6578 Py_INCREF(Py_None
); resultobj
= Py_None
;
6585 static PyObject
*_wrap_BImageControl_removeImage(PyObject
*self
, PyObject
*args
) {
6586 PyObject
*resultobj
;
6587 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6590 PyObject
* obj0
= 0 ;
6591 PyObject
* obj1
= 0 ;
6593 if(!PyArg_ParseTuple(args
,(char *)"OO:BImageControl_removeImage",&obj0
,&obj1
)) goto fail
;
6594 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6595 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Pixmap
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
6597 (arg1
)->removeImage(arg2
);
6599 Py_INCREF(Py_None
); resultobj
= Py_None
;
6606 static PyObject
*_wrap_BImageControl_getColorTables(PyObject
*self
, PyObject
*args
) {
6607 PyObject
*resultobj
;
6608 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6609 unsigned char **arg2
= (unsigned char **) 0 ;
6610 unsigned char **arg3
= (unsigned char **) 0 ;
6611 unsigned char **arg4
= (unsigned char **) 0 ;
6612 int *arg5
= (int *) 0 ;
6613 int *arg6
= (int *) 0 ;
6614 int *arg7
= (int *) 0 ;
6615 int *arg8
= (int *) 0 ;
6616 int *arg9
= (int *) 0 ;
6617 int *arg10
= (int *) 0 ;
6618 PyObject
* obj0
= 0 ;
6619 PyObject
* obj1
= 0 ;
6620 PyObject
* obj2
= 0 ;
6621 PyObject
* obj3
= 0 ;
6622 PyObject
* obj4
= 0 ;
6623 PyObject
* obj5
= 0 ;
6624 PyObject
* obj6
= 0 ;
6625 PyObject
* obj7
= 0 ;
6626 PyObject
* obj8
= 0 ;
6627 PyObject
* obj9
= 0 ;
6629 if(!PyArg_ParseTuple(args
,(char *)"OOOOOOOOOO:BImageControl_getColorTables",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
6630 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6631 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_p_unsigned_char
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6632 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_p_unsigned_char
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6633 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_p_unsigned_char
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6634 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6635 if ((SWIG_ConvertPtr(obj5
,(void **) &arg6
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6636 if ((SWIG_ConvertPtr(obj6
,(void **) &arg7
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6637 if ((SWIG_ConvertPtr(obj7
,(void **) &arg8
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6638 if ((SWIG_ConvertPtr(obj8
,(void **) &arg9
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6639 if ((SWIG_ConvertPtr(obj9
,(void **) &arg10
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6640 (arg1
)->getColorTables(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
,arg9
,arg10
);
6642 Py_INCREF(Py_None
); resultobj
= Py_None
;
6649 static PyObject
*_wrap_BImageControl_getXColorTable(PyObject
*self
, PyObject
*args
) {
6650 PyObject
*resultobj
;
6651 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6652 XColor
**arg2
= (XColor
**) 0 ;
6653 int *arg3
= (int *) 0 ;
6654 PyObject
* obj0
= 0 ;
6655 PyObject
* obj1
= 0 ;
6656 PyObject
* obj2
= 0 ;
6658 if(!PyArg_ParseTuple(args
,(char *)"OOO:BImageControl_getXColorTable",&obj0
,&obj1
,&obj2
)) goto fail
;
6659 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6660 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_p_XColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6661 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6662 (arg1
)->getXColorTable(arg2
,arg3
);
6664 Py_INCREF(Py_None
); resultobj
= Py_None
;
6671 static PyObject
*_wrap_BImageControl_getGradientBuffers(PyObject
*self
, PyObject
*args
) {
6672 PyObject
*resultobj
;
6673 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6676 unsigned int **arg4
= (unsigned int **) 0 ;
6677 unsigned int **arg5
= (unsigned int **) 0 ;
6678 PyObject
* obj0
= 0 ;
6679 PyObject
* obj1
= 0 ;
6680 PyObject
* obj2
= 0 ;
6681 PyObject
* obj3
= 0 ;
6682 PyObject
* obj4
= 0 ;
6684 if(!PyArg_ParseTuple(args
,(char *)"OOOOO:BImageControl_getGradientBuffers",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
6685 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6686 arg2
= (unsigned int) PyInt_AsLong(obj1
);
6687 if (PyErr_Occurred()) SWIG_fail
;
6688 arg3
= (unsigned int) PyInt_AsLong(obj2
);
6689 if (PyErr_Occurred()) SWIG_fail
;
6690 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_p_unsigned_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6691 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_p_unsigned_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6692 (arg1
)->getGradientBuffers(arg2
,arg3
,arg4
,arg5
);
6694 Py_INCREF(Py_None
); resultobj
= Py_None
;
6701 static PyObject
*_wrap_BImageControl_setDither(PyObject
*self
, PyObject
*args
) {
6702 PyObject
*resultobj
;
6703 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6705 PyObject
* obj0
= 0 ;
6706 PyObject
* obj1
= 0 ;
6708 if(!PyArg_ParseTuple(args
,(char *)"OO:BImageControl_setDither",&obj0
,&obj1
)) goto fail
;
6709 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6710 arg2
= (bool) PyInt_AsLong(obj1
);
6711 if (PyErr_Occurred()) SWIG_fail
;
6712 (arg1
)->setDither(arg2
);
6714 Py_INCREF(Py_None
); resultobj
= Py_None
;
6721 static PyObject
*_wrap_BImageControl_setColorsPerChannel(PyObject
*self
, PyObject
*args
) {
6722 PyObject
*resultobj
;
6723 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6725 PyObject
* obj0
= 0 ;
6727 if(!PyArg_ParseTuple(args
,(char *)"Oi:BImageControl_setColorsPerChannel",&obj0
,&arg2
)) goto fail
;
6728 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6729 (arg1
)->setColorsPerChannel(arg2
);
6731 Py_INCREF(Py_None
); resultobj
= Py_None
;
6738 static PyObject
*_wrap_BImageControl_timeout(PyObject
*self
, PyObject
*args
) {
6739 PyObject
*resultobj
;
6740 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6741 PyObject
* obj0
= 0 ;
6743 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_timeout",&obj0
)) goto fail
;
6744 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6745 otk::BImageControl::timeout(arg1
);
6747 Py_INCREF(Py_None
); resultobj
= Py_None
;
6754 static PyObject
* BImageControl_swigregister(PyObject
*self
, PyObject
*args
) {
6756 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6757 SWIG_TypeClientData(SWIGTYPE_p_otk__BImageControl
, obj
);
6759 return Py_BuildValue((char *)"");
6761 static PyObject
*_wrap_new_Point__SWIG_0(PyObject
*self
, PyObject
*args
) {
6762 PyObject
*resultobj
;
6765 if(!PyArg_ParseTuple(args
,(char *)":new_Point")) goto fail
;
6766 result
= (otk::Point
*)new otk::Point();
6768 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Point
, 1);
6775 static PyObject
*_wrap_new_Point__SWIG_1(PyObject
*self
, PyObject
*args
) {
6776 PyObject
*resultobj
;
6781 if(!PyArg_ParseTuple(args
,(char *)"ii:new_Point",&arg1
,&arg2
)) goto fail
;
6782 result
= (otk::Point
*)new otk::Point(arg1
,arg2
);
6784 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Point
, 1);
6791 static PyObject
*_wrap_new_Point(PyObject
*self
, PyObject
*args
) {
6796 argc
= PyObject_Length(args
);
6797 for (ii
= 0; (ii
< argc
) && (ii
< 2); ii
++) {
6798 argv
[ii
] = PyTuple_GetItem(args
,ii
);
6801 return _wrap_new_Point__SWIG_0(self
,args
);
6806 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
6810 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
6813 return _wrap_new_Point__SWIG_1(self
,args
);
6818 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Point'");
6823 static PyObject
*_wrap_Point_setX(PyObject
*self
, PyObject
*args
) {
6824 PyObject
*resultobj
;
6825 otk::Point
*arg1
= (otk::Point
*) 0 ;
6827 PyObject
* obj0
= 0 ;
6829 if(!PyArg_ParseTuple(args
,(char *)"Oi:Point_setX",&obj0
,&arg2
)) goto fail
;
6830 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6833 Py_INCREF(Py_None
); resultobj
= Py_None
;
6840 static PyObject
*_wrap_Point_x(PyObject
*self
, PyObject
*args
) {
6841 PyObject
*resultobj
;
6842 otk::Point
*arg1
= (otk::Point
*) 0 ;
6844 PyObject
* obj0
= 0 ;
6846 if(!PyArg_ParseTuple(args
,(char *)"O:Point_x",&obj0
)) goto fail
;
6847 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6848 result
= (int)((otk::Point
const *)arg1
)->x();
6850 resultobj
= PyInt_FromLong((long)result
);
6857 static PyObject
*_wrap_Point_setY(PyObject
*self
, PyObject
*args
) {
6858 PyObject
*resultobj
;
6859 otk::Point
*arg1
= (otk::Point
*) 0 ;
6861 PyObject
* obj0
= 0 ;
6863 if(!PyArg_ParseTuple(args
,(char *)"Oi:Point_setY",&obj0
,&arg2
)) goto fail
;
6864 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6867 Py_INCREF(Py_None
); resultobj
= Py_None
;
6874 static PyObject
*_wrap_Point_y(PyObject
*self
, PyObject
*args
) {
6875 PyObject
*resultobj
;
6876 otk::Point
*arg1
= (otk::Point
*) 0 ;
6878 PyObject
* obj0
= 0 ;
6880 if(!PyArg_ParseTuple(args
,(char *)"O:Point_y",&obj0
)) goto fail
;
6881 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6882 result
= (int)((otk::Point
const *)arg1
)->y();
6884 resultobj
= PyInt_FromLong((long)result
);
6891 static PyObject
*_wrap_Point_setPoint(PyObject
*self
, PyObject
*args
) {
6892 PyObject
*resultobj
;
6893 otk::Point
*arg1
= (otk::Point
*) 0 ;
6896 PyObject
* obj0
= 0 ;
6898 if(!PyArg_ParseTuple(args
,(char *)"Oii:Point_setPoint",&obj0
,&arg2
,&arg3
)) goto fail
;
6899 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6900 (arg1
)->setPoint(arg2
,arg3
);
6902 Py_INCREF(Py_None
); resultobj
= Py_None
;
6909 static PyObject
*_wrap_delete_Point(PyObject
*self
, PyObject
*args
) {
6910 PyObject
*resultobj
;
6911 otk::Point
*arg1
= (otk::Point
*) 0 ;
6912 PyObject
* obj0
= 0 ;
6914 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Point",&obj0
)) goto fail
;
6915 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6918 Py_INCREF(Py_None
); resultobj
= Py_None
;
6925 static PyObject
* Point_swigregister(PyObject
*self
, PyObject
*args
) {
6927 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6928 SWIG_TypeClientData(SWIGTYPE_p_otk__Point
, obj
);
6930 return Py_BuildValue((char *)"");
6932 static PyObject
*_wrap_new_OBProperty(PyObject
*self
, PyObject
*args
) {
6933 PyObject
*resultobj
;
6934 otk::OBProperty
*result
;
6936 if(!PyArg_ParseTuple(args
,(char *)":new_OBProperty")) goto fail
;
6937 result
= (otk::OBProperty
*)new otk::OBProperty();
6939 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OBProperty
, 1);
6946 static PyObject
*_wrap_delete_OBProperty(PyObject
*self
, PyObject
*args
) {
6947 PyObject
*resultobj
;
6948 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
6949 PyObject
* obj0
= 0 ;
6951 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OBProperty",&obj0
)) goto fail
;
6952 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6955 Py_INCREF(Py_None
); resultobj
= Py_None
;
6962 static PyObject
*_wrap_OBProperty_set__SWIG_0(PyObject
*self
, PyObject
*args
) {
6963 PyObject
*resultobj
;
6964 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
6968 unsigned long arg5
;
6970 PyObject
* obj0
= 0 ;
6971 PyObject
* obj1
= 0 ;
6972 PyObject
* obj4
= 0 ;
6974 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_set",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
6975 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6976 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
6978 arg5
= (unsigned long) PyInt_AsLong(obj4
);
6979 if (PyErr_Occurred()) SWIG_fail
;
6980 ((otk::OBProperty
const *)arg1
)->set(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::Atoms
)arg4
,arg5
);
6982 Py_INCREF(Py_None
); resultobj
= Py_None
;
6989 static PyObject
*_wrap_OBProperty_set__SWIG_1(PyObject
*self
, PyObject
*args
) {
6990 PyObject
*resultobj
;
6991 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
6995 unsigned long *arg5
;
6998 PyObject
* obj0
= 0 ;
6999 PyObject
* obj1
= 0 ;
7000 PyObject
* obj4
= 0 ;
7002 if(!PyArg_ParseTuple(args
,(char *)"OOiiOi:OBProperty_set",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
,&arg6
)) goto fail
;
7003 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7004 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7006 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7007 ((otk::OBProperty
const *)arg1
)->set(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::Atoms
)arg4
,arg5
,arg6
);
7009 Py_INCREF(Py_None
); resultobj
= Py_None
;
7016 static PyObject
*_wrap_OBProperty_set__SWIG_2(PyObject
*self
, PyObject
*args
) {
7017 PyObject
*resultobj
;
7018 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7022 std::string
*arg5
= 0 ;
7025 PyObject
* obj0
= 0 ;
7026 PyObject
* obj1
= 0 ;
7027 PyObject
* obj4
= 0 ;
7029 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_set",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
7030 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7031 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7034 if (PyString_Check(obj4
)) {
7035 temp5
= std::string(PyString_AsString(obj4
));
7038 SWIG_exception(SWIG_TypeError
, "string expected");
7041 ((otk::OBProperty
const *)arg1
)->set(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::StringType
)arg4
,(std::string
const &)*arg5
);
7043 Py_INCREF(Py_None
); resultobj
= Py_None
;
7050 static PyObject
*_wrap_OBProperty_set__SWIG_3(PyObject
*self
, PyObject
*args
) {
7051 PyObject
*resultobj
;
7052 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7056 otk::OBProperty::StringVect
*arg5
= 0 ;
7058 PyObject
* obj0
= 0 ;
7059 PyObject
* obj1
= 0 ;
7060 PyObject
* obj4
= 0 ;
7062 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_set",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
7063 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7064 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7066 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_otk__OBProperty__StringVect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7068 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7070 ((otk::OBProperty
const *)arg1
)->set(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::StringType
)arg4
,(otk::OBProperty::StringVect
const &)*arg5
);
7072 Py_INCREF(Py_None
); resultobj
= Py_None
;
7079 static PyObject
*_wrap_OBProperty_set(PyObject
*self
, PyObject
*args
) {
7084 argc
= PyObject_Length(args
);
7085 for (ii
= 0; (ii
< argc
) && (ii
< 6); ii
++) {
7086 argv
[ii
] = PyTuple_GetItem(args
,ii
);
7092 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7102 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7111 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7115 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7120 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty__StringVect
, 0) == -1) {
7128 return _wrap_OBProperty_set__SWIG_3(self
,args
);
7139 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7149 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7158 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7162 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7166 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
7169 return _wrap_OBProperty_set__SWIG_0(self
,args
);
7180 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7190 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7199 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7203 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7207 _v
= PyString_Check(argv
[4]) ? 1 : 0;
7210 return _wrap_OBProperty_set__SWIG_2(self
,args
);
7221 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7231 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7240 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7244 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7249 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
7258 _v
= (PyInt_Check(argv
[5]) || PyLong_Check(argv
[5])) ? 1 : 0;
7261 return _wrap_OBProperty_set__SWIG_1(self
,args
);
7270 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OBProperty_set'");
7275 static PyObject
*_wrap_OBProperty_get__SWIG_0(PyObject
*self
, PyObject
*args
) {
7276 PyObject
*resultobj
;
7277 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7281 unsigned long *arg5
= (unsigned long *) 0 ;
7282 unsigned long **arg6
= (unsigned long **) 0 ;
7285 PyObject
* obj0
= 0 ;
7286 PyObject
* obj1
= 0 ;
7287 PyObject
* obj4
= 0 ;
7288 PyObject
* obj5
= 0 ;
7290 if(!PyArg_ParseTuple(args
,(char *)"OOiiOO:OBProperty_get",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
,&obj5
)) goto fail
;
7291 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7292 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7294 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7295 if ((SWIG_ConvertPtr(obj5
,(void **) &arg6
, SWIGTYPE_p_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7296 result
= (bool)((otk::OBProperty
const *)arg1
)->get(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::Atoms
)arg4
,arg5
,arg6
);
7298 resultobj
= PyInt_FromLong((long)result
);
7305 static PyObject
*_wrap_OBProperty_get__SWIG_1(PyObject
*self
, PyObject
*args
) {
7306 PyObject
*resultobj
;
7307 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7311 unsigned long *arg5
= (unsigned long *) 0 ;
7314 PyObject
* obj0
= 0 ;
7315 PyObject
* obj1
= 0 ;
7316 PyObject
* obj4
= 0 ;
7318 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_get",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
7319 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7320 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7322 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7323 result
= (bool)((otk::OBProperty
const *)arg1
)->get(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::Atoms
)arg4
,arg5
);
7325 resultobj
= PyInt_FromLong((long)result
);
7332 static PyObject
*_wrap_OBProperty_get__SWIG_2(PyObject
*self
, PyObject
*args
) {
7333 PyObject
*resultobj
;
7334 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7338 std::string
*arg5
= (std::string
*) 0 ;
7341 PyObject
* obj0
= 0 ;
7342 PyObject
* obj1
= 0 ;
7343 PyObject
* obj4
= 0 ;
7345 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_get",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
7346 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7347 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7349 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_std__string
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7350 result
= (bool)((otk::OBProperty
const *)arg1
)->get(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::StringType
)arg4
,arg5
);
7352 resultobj
= PyInt_FromLong((long)result
);
7359 static PyObject
*_wrap_OBProperty_get__SWIG_3(PyObject
*self
, PyObject
*args
) {
7360 PyObject
*resultobj
;
7361 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7365 unsigned long *arg5
= (unsigned long *) 0 ;
7366 otk::OBProperty::StringVect
*arg6
= (otk::OBProperty::StringVect
*) 0 ;
7369 PyObject
* obj0
= 0 ;
7370 PyObject
* obj1
= 0 ;
7371 PyObject
* obj4
= 0 ;
7372 PyObject
* obj5
= 0 ;
7374 if(!PyArg_ParseTuple(args
,(char *)"OOiiOO:OBProperty_get",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
,&obj5
)) goto fail
;
7375 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7376 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7378 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7379 if ((SWIG_ConvertPtr(obj5
,(void **) &arg6
, SWIGTYPE_p_otk__OBProperty__StringVect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7380 result
= (bool)((otk::OBProperty
const *)arg1
)->get(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::StringType
)arg4
,arg5
,arg6
);
7382 resultobj
= PyInt_FromLong((long)result
);
7389 static PyObject
*_wrap_OBProperty_get(PyObject
*self
, PyObject
*args
) {
7394 argc
= PyObject_Length(args
);
7395 for (ii
= 0; (ii
< argc
) && (ii
< 6); ii
++) {
7396 argv
[ii
] = PyTuple_GetItem(args
,ii
);
7402 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7412 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7421 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7425 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7430 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
7438 return _wrap_OBProperty_get__SWIG_1(self
,args
);
7449 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7459 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7468 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7472 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7477 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_std__string
, 0) == -1) {
7485 return _wrap_OBProperty_get__SWIG_2(self
,args
);
7496 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7506 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7515 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7519 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7524 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
7534 if (SWIG_ConvertPtr(argv
[5], (void **) &ptr
, SWIGTYPE_p_p_unsigned_long
, 0) == -1) {
7542 return _wrap_OBProperty_get__SWIG_0(self
,args
);
7554 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7564 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7573 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7577 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7582 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
7592 if (SWIG_ConvertPtr(argv
[5], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty__StringVect
, 0) == -1) {
7600 return _wrap_OBProperty_get__SWIG_3(self
,args
);
7609 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OBProperty_get'");
7614 static PyObject
*_wrap_OBProperty_erase(PyObject
*self
, PyObject
*args
) {
7615 PyObject
*resultobj
;
7616 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7620 PyObject
* obj0
= 0 ;
7621 PyObject
* obj1
= 0 ;
7623 if(!PyArg_ParseTuple(args
,(char *)"OOi:OBProperty_erase",&obj0
,&obj1
,&arg3
)) goto fail
;
7624 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7625 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7627 ((otk::OBProperty
const *)arg1
)->erase(arg2
,(otk::OBProperty::Atoms
)arg3
);
7629 Py_INCREF(Py_None
); resultobj
= Py_None
;
7636 static PyObject
*_wrap_OBProperty_atom(PyObject
*self
, PyObject
*args
) {
7637 PyObject
*resultobj
;
7638 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7641 PyObject
* obj0
= 0 ;
7643 if(!PyArg_ParseTuple(args
,(char *)"Oi:OBProperty_atom",&obj0
,&arg2
)) goto fail
;
7644 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7645 result
= ((otk::OBProperty
const *)arg1
)->atom((otk::OBProperty::Atoms
)arg2
);
7649 resultptr
= new Atom((Atom
&) result
);
7650 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Atom
, 1);
7658 static PyObject
* OBProperty_swigregister(PyObject
*self
, PyObject
*args
) {
7660 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
7661 SWIG_TypeClientData(SWIGTYPE_p_otk__OBProperty
, obj
);
7663 return Py_BuildValue((char *)"");
7665 static PyObject
*_wrap_new_Rect__SWIG_0(PyObject
*self
, PyObject
*args
) {
7666 PyObject
*resultobj
;
7669 if(!PyArg_ParseTuple(args
,(char *)":new_Rect")) goto fail
;
7670 result
= (otk::Rect
*)new otk::Rect();
7672 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7679 static PyObject
*_wrap_new_Rect__SWIG_1(PyObject
*self
, PyObject
*args
) {
7680 PyObject
*resultobj
;
7687 if(!PyArg_ParseTuple(args
,(char *)"iiii:new_Rect",&arg1
,&arg2
,&arg3
,&arg4
)) goto fail
;
7688 result
= (otk::Rect
*)new otk::Rect(arg1
,arg2
,arg3
,arg4
);
7690 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7697 static PyObject
*_wrap_new_Rect__SWIG_2(PyObject
*self
, PyObject
*args
) {
7698 PyObject
*resultobj
;
7699 otk::Point
*arg1
= 0 ;
7700 otk::Point
*arg2
= 0 ;
7702 PyObject
* obj0
= 0 ;
7703 PyObject
* obj1
= 0 ;
7705 if(!PyArg_ParseTuple(args
,(char *)"OO:new_Rect",&obj0
,&obj1
)) goto fail
;
7706 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7708 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7710 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7712 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7714 result
= (otk::Rect
*)new otk::Rect((otk::Point
const &)*arg1
,(otk::Point
const &)*arg2
);
7716 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7723 static PyObject
*_wrap_new_Rect__SWIG_3(PyObject
*self
, PyObject
*args
) {
7724 PyObject
*resultobj
;
7725 otk::Rect
*arg1
= 0 ;
7727 PyObject
* obj0
= 0 ;
7729 if(!PyArg_ParseTuple(args
,(char *)"O:new_Rect",&obj0
)) goto fail
;
7730 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7732 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7734 result
= (otk::Rect
*)new otk::Rect((otk::Rect
const &)*arg1
);
7736 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7743 static PyObject
*_wrap_new_Rect__SWIG_4(PyObject
*self
, PyObject
*args
) {
7744 PyObject
*resultobj
;
7745 XRectangle
*arg1
= 0 ;
7747 PyObject
* obj0
= 0 ;
7749 if(!PyArg_ParseTuple(args
,(char *)"O:new_Rect",&obj0
)) goto fail
;
7750 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_XRectangle
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7752 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7754 result
= (otk::Rect
*)new otk::Rect((XRectangle
const &)*arg1
);
7756 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7763 static PyObject
*_wrap_new_Rect(PyObject
*self
, PyObject
*args
) {
7768 argc
= PyObject_Length(args
);
7769 for (ii
= 0; (ii
< argc
) && (ii
< 4); ii
++) {
7770 argv
[ii
] = PyTuple_GetItem(args
,ii
);
7773 return _wrap_new_Rect__SWIG_0(self
,args
);
7779 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
7787 return _wrap_new_Rect__SWIG_3(self
,args
);
7794 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_XRectangle
, 0) == -1) {
7802 return _wrap_new_Rect__SWIG_4(self
,args
);
7809 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
7819 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
7827 return _wrap_new_Rect__SWIG_2(self
,args
);
7834 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
7838 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
7842 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7846 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7849 return _wrap_new_Rect__SWIG_1(self
,args
);
7856 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Rect'");
7861 static PyObject
*_wrap_Rect_left(PyObject
*self
, PyObject
*args
) {
7862 PyObject
*resultobj
;
7863 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
7865 PyObject
* obj0
= 0 ;
7867 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_left",&obj0
)) goto fail
;
7868 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7869 result
= (int)((otk::Rect
const *)arg1
)->left();
7871 resultobj
= PyInt_FromLong((long)result
);
7878 static PyObject
*_wrap_Rect_top(PyObject
*self
, PyObject
*args
) {
7879 PyObject
*resultobj
;
7880 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
7882 PyObject
* obj0
= 0 ;
7884 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_top",&obj0
)) goto fail
;
7885 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7886 result
= (int)((otk::Rect
const *)arg1
)->top();
7888 resultobj
= PyInt_FromLong((long)result
);
7895 static PyObject
*_wrap_Rect_right(PyObject
*self
, PyObject
*args
) {
7896 PyObject
*resultobj
;
7897 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
7899 PyObject
* obj0
= 0 ;
7901 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_right",&obj0
)) goto fail
;
7902 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7903 result
= (int)((otk::Rect
const *)arg1
)->right();
7905 resultobj
= PyInt_FromLong((long)result
);
7912 static PyObject
*_wrap_Rect_bottom(PyObject
*self
, PyObject
*args
) {
7913 PyObject
*resultobj
;
7914 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
7916 PyObject
* obj0
= 0 ;
7918 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_bottom",&obj0
)) goto fail
;
7919 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7920 result
= (int)((otk::Rect
const *)arg1
)->bottom();
7922 resultobj
= PyInt_FromLong((long)result
);
7929 static PyObject
*_wrap_Rect_x(PyObject
*self
, PyObject
*args
) {
7930 PyObject
*resultobj
;
7931 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
7933 PyObject
* obj0
= 0 ;
7935 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_x",&obj0
)) goto fail
;
7936 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7937 result
= (int)((otk::Rect
const *)arg1
)->x();
7939 resultobj
= PyInt_FromLong((long)result
);
7946 static PyObject
*_wrap_Rect_y(PyObject
*self
, PyObject
*args
) {
7947 PyObject
*resultobj
;
7948 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
7950 PyObject
* obj0
= 0 ;
7952 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_y",&obj0
)) goto fail
;
7953 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7954 result
= (int)((otk::Rect
const *)arg1
)->y();
7956 resultobj
= PyInt_FromLong((long)result
);
7963 static PyObject
*_wrap_Rect_location(PyObject
*self
, PyObject
*args
) {
7964 PyObject
*resultobj
;
7965 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
7967 PyObject
* obj0
= 0 ;
7969 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_location",&obj0
)) goto fail
;
7970 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7971 result
= ((otk::Rect
const *)arg1
)->location();
7974 otk::Point
* resultptr
;
7975 resultptr
= new otk::Point((otk::Point
&) result
);
7976 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__Point
, 1);
7984 static PyObject
*_wrap_Rect_setX(PyObject
*self
, PyObject
*args
) {
7985 PyObject
*resultobj
;
7986 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
7988 PyObject
* obj0
= 0 ;
7990 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setX",&obj0
,&arg2
)) goto fail
;
7991 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7994 Py_INCREF(Py_None
); resultobj
= Py_None
;
8001 static PyObject
*_wrap_Rect_setY(PyObject
*self
, PyObject
*args
) {
8002 PyObject
*resultobj
;
8003 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8005 PyObject
* obj0
= 0 ;
8007 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setY",&obj0
,&arg2
)) goto fail
;
8008 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8011 Py_INCREF(Py_None
); resultobj
= Py_None
;
8018 static PyObject
*_wrap_Rect_setPos__SWIG_0(PyObject
*self
, PyObject
*args
) {
8019 PyObject
*resultobj
;
8020 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8023 PyObject
* obj0
= 0 ;
8025 if(!PyArg_ParseTuple(args
,(char *)"Oii:Rect_setPos",&obj0
,&arg2
,&arg3
)) goto fail
;
8026 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8027 (arg1
)->setPos(arg2
,arg3
);
8029 Py_INCREF(Py_None
); resultobj
= Py_None
;
8036 static PyObject
*_wrap_Rect_setPos__SWIG_1(PyObject
*self
, PyObject
*args
) {
8037 PyObject
*resultobj
;
8038 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8039 otk::Point
*arg2
= 0 ;
8040 PyObject
* obj0
= 0 ;
8041 PyObject
* obj1
= 0 ;
8043 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_setPos",&obj0
,&obj1
)) goto fail
;
8044 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8045 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8047 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8049 (arg1
)->setPos((otk::Point
const &)*arg2
);
8051 Py_INCREF(Py_None
); resultobj
= Py_None
;
8058 static PyObject
*_wrap_Rect_setPos(PyObject
*self
, PyObject
*args
) {
8063 argc
= PyObject_Length(args
);
8064 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
8065 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8071 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8081 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8089 return _wrap_Rect_setPos__SWIG_1(self
,args
);
8097 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8106 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8110 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8113 return _wrap_Rect_setPos__SWIG_0(self
,args
);
8119 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setPos'");
8124 static PyObject
*_wrap_Rect_width(PyObject
*self
, PyObject
*args
) {
8125 PyObject
*resultobj
;
8126 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8128 PyObject
* obj0
= 0 ;
8130 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_width",&obj0
)) goto fail
;
8131 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8132 result
= (int)((otk::Rect
const *)arg1
)->width();
8134 resultobj
= PyInt_FromLong((long)result
);
8141 static PyObject
*_wrap_Rect_height(PyObject
*self
, PyObject
*args
) {
8142 PyObject
*resultobj
;
8143 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8145 PyObject
* obj0
= 0 ;
8147 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_height",&obj0
)) goto fail
;
8148 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8149 result
= (int)((otk::Rect
const *)arg1
)->height();
8151 resultobj
= PyInt_FromLong((long)result
);
8158 static PyObject
*_wrap_Rect_size(PyObject
*self
, PyObject
*args
) {
8159 PyObject
*resultobj
;
8160 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8162 PyObject
* obj0
= 0 ;
8164 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_size",&obj0
)) goto fail
;
8165 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8166 result
= ((otk::Rect
const *)arg1
)->size();
8169 otk::Point
* resultptr
;
8170 resultptr
= new otk::Point((otk::Point
&) result
);
8171 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__Point
, 1);
8179 static PyObject
*_wrap_Rect_setWidth(PyObject
*self
, PyObject
*args
) {
8180 PyObject
*resultobj
;
8181 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8183 PyObject
* obj0
= 0 ;
8185 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setWidth",&obj0
,&arg2
)) goto fail
;
8186 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8187 (arg1
)->setWidth(arg2
);
8189 Py_INCREF(Py_None
); resultobj
= Py_None
;
8196 static PyObject
*_wrap_Rect_setHeight(PyObject
*self
, PyObject
*args
) {
8197 PyObject
*resultobj
;
8198 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8200 PyObject
* obj0
= 0 ;
8202 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setHeight",&obj0
,&arg2
)) goto fail
;
8203 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8204 (arg1
)->setHeight(arg2
);
8206 Py_INCREF(Py_None
); resultobj
= Py_None
;
8213 static PyObject
*_wrap_Rect_setSize__SWIG_0(PyObject
*self
, PyObject
*args
) {
8214 PyObject
*resultobj
;
8215 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8218 PyObject
* obj0
= 0 ;
8220 if(!PyArg_ParseTuple(args
,(char *)"Oii:Rect_setSize",&obj0
,&arg2
,&arg3
)) goto fail
;
8221 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8222 (arg1
)->setSize(arg2
,arg3
);
8224 Py_INCREF(Py_None
); resultobj
= Py_None
;
8231 static PyObject
*_wrap_Rect_setSize__SWIG_1(PyObject
*self
, PyObject
*args
) {
8232 PyObject
*resultobj
;
8233 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8234 otk::Point
*arg2
= 0 ;
8235 PyObject
* obj0
= 0 ;
8236 PyObject
* obj1
= 0 ;
8238 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_setSize",&obj0
,&obj1
)) goto fail
;
8239 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8240 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8242 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8244 (arg1
)->setSize((otk::Point
const &)*arg2
);
8246 Py_INCREF(Py_None
); resultobj
= Py_None
;
8253 static PyObject
*_wrap_Rect_setSize(PyObject
*self
, PyObject
*args
) {
8258 argc
= PyObject_Length(args
);
8259 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
8260 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8266 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8276 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8284 return _wrap_Rect_setSize__SWIG_1(self
,args
);
8292 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8301 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8305 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8308 return _wrap_Rect_setSize__SWIG_0(self
,args
);
8314 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setSize'");
8319 static PyObject
*_wrap_Rect_setRect__SWIG_0(PyObject
*self
, PyObject
*args
) {
8320 PyObject
*resultobj
;
8321 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8326 PyObject
* obj0
= 0 ;
8328 if(!PyArg_ParseTuple(args
,(char *)"Oiiii:Rect_setRect",&obj0
,&arg2
,&arg3
,&arg4
,&arg5
)) goto fail
;
8329 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8330 (arg1
)->setRect(arg2
,arg3
,arg4
,arg5
);
8332 Py_INCREF(Py_None
); resultobj
= Py_None
;
8339 static PyObject
*_wrap_Rect_setRect__SWIG_1(PyObject
*self
, PyObject
*args
) {
8340 PyObject
*resultobj
;
8341 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8342 otk::Point
*arg2
= 0 ;
8343 otk::Point
*arg3
= 0 ;
8344 PyObject
* obj0
= 0 ;
8345 PyObject
* obj1
= 0 ;
8346 PyObject
* obj2
= 0 ;
8348 if(!PyArg_ParseTuple(args
,(char *)"OOO:Rect_setRect",&obj0
,&obj1
,&obj2
)) goto fail
;
8349 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8350 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8352 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8354 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8356 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8358 (arg1
)->setRect((otk::Point
const &)*arg2
,(otk::Point
const &)*arg3
);
8360 Py_INCREF(Py_None
); resultobj
= Py_None
;
8367 static PyObject
*_wrap_Rect_setRect(PyObject
*self
, PyObject
*args
) {
8372 argc
= PyObject_Length(args
);
8373 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
8374 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8380 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8390 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8400 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8408 return _wrap_Rect_setRect__SWIG_1(self
,args
);
8417 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8426 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8430 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8434 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
8438 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
8441 return _wrap_Rect_setRect__SWIG_0(self
,args
);
8449 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setRect'");
8454 static PyObject
*_wrap_Rect_setCoords__SWIG_0(PyObject
*self
, PyObject
*args
) {
8455 PyObject
*resultobj
;
8456 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8461 PyObject
* obj0
= 0 ;
8463 if(!PyArg_ParseTuple(args
,(char *)"Oiiii:Rect_setCoords",&obj0
,&arg2
,&arg3
,&arg4
,&arg5
)) goto fail
;
8464 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8465 (arg1
)->setCoords(arg2
,arg3
,arg4
,arg5
);
8467 Py_INCREF(Py_None
); resultobj
= Py_None
;
8474 static PyObject
*_wrap_Rect_setCoords__SWIG_1(PyObject
*self
, PyObject
*args
) {
8475 PyObject
*resultobj
;
8476 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8477 otk::Point
*arg2
= 0 ;
8478 otk::Point
*arg3
= 0 ;
8479 PyObject
* obj0
= 0 ;
8480 PyObject
* obj1
= 0 ;
8481 PyObject
* obj2
= 0 ;
8483 if(!PyArg_ParseTuple(args
,(char *)"OOO:Rect_setCoords",&obj0
,&obj1
,&obj2
)) goto fail
;
8484 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8485 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8487 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8489 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8491 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8493 (arg1
)->setCoords((otk::Point
const &)*arg2
,(otk::Point
const &)*arg3
);
8495 Py_INCREF(Py_None
); resultobj
= Py_None
;
8502 static PyObject
*_wrap_Rect_setCoords(PyObject
*self
, PyObject
*args
) {
8507 argc
= PyObject_Length(args
);
8508 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
8509 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8515 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8525 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8535 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8543 return _wrap_Rect_setCoords__SWIG_1(self
,args
);
8552 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8561 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8565 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8569 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
8573 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
8576 return _wrap_Rect_setCoords__SWIG_0(self
,args
);
8584 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setCoords'");
8589 static PyObject
*_wrap_Rect_equals(PyObject
*self
, PyObject
*args
) {
8590 PyObject
*resultobj
;
8591 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8592 otk::Rect
*arg2
= 0 ;
8594 PyObject
* obj0
= 0 ;
8595 PyObject
* obj1
= 0 ;
8597 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_equals",&obj0
,&obj1
)) goto fail
;
8598 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8599 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8601 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8603 result
= (bool)(arg1
)->operator ==((otk::Rect
const &)*arg2
);
8605 resultobj
= PyInt_FromLong((long)result
);
8612 static PyObject
*_wrap_Rect_valid(PyObject
*self
, PyObject
*args
) {
8613 PyObject
*resultobj
;
8614 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8616 PyObject
* obj0
= 0 ;
8618 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_valid",&obj0
)) goto fail
;
8619 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8620 result
= (bool)((otk::Rect
const *)arg1
)->valid();
8622 resultobj
= PyInt_FromLong((long)result
);
8629 static PyObject
*_wrap_Rect_intersects(PyObject
*self
, PyObject
*args
) {
8630 PyObject
*resultobj
;
8631 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8632 otk::Rect
*arg2
= 0 ;
8634 PyObject
* obj0
= 0 ;
8635 PyObject
* obj1
= 0 ;
8637 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_intersects",&obj0
,&obj1
)) goto fail
;
8638 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8639 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8641 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8643 result
= (bool)((otk::Rect
const *)arg1
)->intersects((otk::Rect
const &)*arg2
);
8645 resultobj
= PyInt_FromLong((long)result
);
8652 static PyObject
*_wrap_Rect_contains__SWIG_0(PyObject
*self
, PyObject
*args
) {
8653 PyObject
*resultobj
;
8654 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8658 PyObject
* obj0
= 0 ;
8660 if(!PyArg_ParseTuple(args
,(char *)"Oii:Rect_contains",&obj0
,&arg2
,&arg3
)) goto fail
;
8661 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8662 result
= (bool)((otk::Rect
const *)arg1
)->contains(arg2
,arg3
);
8664 resultobj
= PyInt_FromLong((long)result
);
8671 static PyObject
*_wrap_Rect_contains__SWIG_1(PyObject
*self
, PyObject
*args
) {
8672 PyObject
*resultobj
;
8673 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8674 otk::Point
*arg2
= 0 ;
8676 PyObject
* obj0
= 0 ;
8677 PyObject
* obj1
= 0 ;
8679 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_contains",&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__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8683 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8685 result
= (bool)((otk::Rect
const *)arg1
)->contains((otk::Point
const &)*arg2
);
8687 resultobj
= PyInt_FromLong((long)result
);
8694 static PyObject
*_wrap_Rect_contains__SWIG_2(PyObject
*self
, PyObject
*args
) {
8695 PyObject
*resultobj
;
8696 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8697 otk::Rect
*arg2
= 0 ;
8699 PyObject
* obj0
= 0 ;
8700 PyObject
* obj1
= 0 ;
8702 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_contains",&obj0
,&obj1
)) goto fail
;
8703 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8704 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8706 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8708 result
= (bool)((otk::Rect
const *)arg1
)->contains((otk::Rect
const &)*arg2
);
8710 resultobj
= PyInt_FromLong((long)result
);
8717 static PyObject
*_wrap_Rect_contains(PyObject
*self
, PyObject
*args
) {
8722 argc
= PyObject_Length(args
);
8723 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
8724 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8730 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8740 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8748 return _wrap_Rect_contains__SWIG_1(self
,args
);
8756 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8766 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8774 return _wrap_Rect_contains__SWIG_2(self
,args
);
8782 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8791 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8795 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8798 return _wrap_Rect_contains__SWIG_0(self
,args
);
8804 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_contains'");
8809 static PyObject
*_wrap_delete_Rect(PyObject
*self
, PyObject
*args
) {
8810 PyObject
*resultobj
;
8811 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8812 PyObject
* obj0
= 0 ;
8814 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Rect",&obj0
)) goto fail
;
8815 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8818 Py_INCREF(Py_None
); resultobj
= Py_None
;
8825 static PyObject
* Rect_swigregister(PyObject
*self
, PyObject
*args
) {
8827 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
8828 SWIG_TypeClientData(SWIGTYPE_p_otk__Rect
, obj
);
8830 return Py_BuildValue((char *)"");
8832 static PyObject
*_wrap_new_ScreenInfo(PyObject
*self
, PyObject
*args
) {
8833 PyObject
*resultobj
;
8835 otk::ScreenInfo
*result
;
8836 PyObject
* obj0
= 0 ;
8838 if(!PyArg_ParseTuple(args
,(char *)"O:new_ScreenInfo",&obj0
)) goto fail
;
8839 arg1
= (unsigned int) PyInt_AsLong(obj0
);
8840 if (PyErr_Occurred()) SWIG_fail
;
8841 result
= (otk::ScreenInfo
*)new otk::ScreenInfo(arg1
);
8843 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__ScreenInfo
, 1);
8850 static PyObject
*_wrap_ScreenInfo_visual(PyObject
*self
, PyObject
*args
) {
8851 PyObject
*resultobj
;
8852 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8854 PyObject
* obj0
= 0 ;
8856 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_visual",&obj0
)) goto fail
;
8857 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8858 result
= (Visual
*)((otk::ScreenInfo
const *)arg1
)->visual();
8860 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_Visual
, 0);
8867 static PyObject
*_wrap_ScreenInfo_rootWindow(PyObject
*self
, PyObject
*args
) {
8868 PyObject
*resultobj
;
8869 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8871 PyObject
* obj0
= 0 ;
8873 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_rootWindow",&obj0
)) goto fail
;
8874 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8875 result
= ((otk::ScreenInfo
const *)arg1
)->rootWindow();
8879 resultptr
= new Window((Window
&) result
);
8880 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Window
, 1);
8888 static PyObject
*_wrap_ScreenInfo_colormap(PyObject
*self
, PyObject
*args
) {
8889 PyObject
*resultobj
;
8890 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8892 PyObject
* obj0
= 0 ;
8894 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_colormap",&obj0
)) goto fail
;
8895 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8896 result
= ((otk::ScreenInfo
const *)arg1
)->colormap();
8899 Colormap
* resultptr
;
8900 resultptr
= new Colormap((Colormap
&) result
);
8901 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Colormap
, 1);
8909 static PyObject
*_wrap_ScreenInfo_depth(PyObject
*self
, PyObject
*args
) {
8910 PyObject
*resultobj
;
8911 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8913 PyObject
* obj0
= 0 ;
8915 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_depth",&obj0
)) goto fail
;
8916 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8917 result
= (int)((otk::ScreenInfo
const *)arg1
)->depth();
8919 resultobj
= PyInt_FromLong((long)result
);
8926 static PyObject
*_wrap_ScreenInfo_screen(PyObject
*self
, PyObject
*args
) {
8927 PyObject
*resultobj
;
8928 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8929 unsigned int result
;
8930 PyObject
* obj0
= 0 ;
8932 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_screen",&obj0
)) goto fail
;
8933 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8934 result
= (unsigned int)((otk::ScreenInfo
const *)arg1
)->screen();
8936 resultobj
= PyInt_FromLong((long)result
);
8943 static PyObject
*_wrap_ScreenInfo_rect(PyObject
*self
, PyObject
*args
) {
8944 PyObject
*resultobj
;
8945 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8947 PyObject
* obj0
= 0 ;
8949 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_rect",&obj0
)) goto fail
;
8950 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8952 otk::Rect
const &_result_ref
= ((otk::ScreenInfo
const *)arg1
)->rect();
8953 result
= (otk::Rect
*) &_result_ref
;
8956 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 0);
8963 static PyObject
*_wrap_ScreenInfo_width(PyObject
*self
, PyObject
*args
) {
8964 PyObject
*resultobj
;
8965 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8966 unsigned int result
;
8967 PyObject
* obj0
= 0 ;
8969 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_width",&obj0
)) goto fail
;
8970 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8971 result
= (unsigned int)((otk::ScreenInfo
const *)arg1
)->width();
8973 resultobj
= PyInt_FromLong((long)result
);
8980 static PyObject
*_wrap_ScreenInfo_height(PyObject
*self
, PyObject
*args
) {
8981 PyObject
*resultobj
;
8982 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8983 unsigned int result
;
8984 PyObject
* obj0
= 0 ;
8986 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_height",&obj0
)) goto fail
;
8987 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8988 result
= (unsigned int)((otk::ScreenInfo
const *)arg1
)->height();
8990 resultobj
= PyInt_FromLong((long)result
);
8997 static PyObject
*_wrap_ScreenInfo_displayString(PyObject
*self
, PyObject
*args
) {
8998 PyObject
*resultobj
;
8999 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
9000 std::string
*result
;
9001 PyObject
* obj0
= 0 ;
9003 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_displayString",&obj0
)) goto fail
;
9004 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9006 std::string
const &_result_ref
= ((otk::ScreenInfo
const *)arg1
)->displayString();
9007 result
= (std::string
*) &_result_ref
;
9011 resultobj
= PyString_FromString(result
->c_str());
9019 static PyObject
*_wrap_delete_ScreenInfo(PyObject
*self
, PyObject
*args
) {
9020 PyObject
*resultobj
;
9021 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
9022 PyObject
* obj0
= 0 ;
9024 if(!PyArg_ParseTuple(args
,(char *)"O:delete_ScreenInfo",&obj0
)) goto fail
;
9025 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9028 Py_INCREF(Py_None
); resultobj
= Py_None
;
9035 static PyObject
* ScreenInfo_swigregister(PyObject
*self
, PyObject
*args
) {
9037 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
9038 SWIG_TypeClientData(SWIGTYPE_p_otk__ScreenInfo
, obj
);
9040 return Py_BuildValue((char *)"");
9042 static PyObject
*_wrap_Strut_top_set(PyObject
*self
, PyObject
*args
) {
9043 PyObject
*resultobj
;
9044 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9046 PyObject
* obj0
= 0 ;
9047 PyObject
* obj1
= 0 ;
9049 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_top_set",&obj0
,&obj1
)) goto fail
;
9050 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9051 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9052 if (PyErr_Occurred()) SWIG_fail
;
9053 if (arg1
) (arg1
)->top
= arg2
;
9055 Py_INCREF(Py_None
); resultobj
= Py_None
;
9062 static PyObject
*_wrap_Strut_top_get(PyObject
*self
, PyObject
*args
) {
9063 PyObject
*resultobj
;
9064 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9065 unsigned int result
;
9066 PyObject
* obj0
= 0 ;
9068 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_top_get",&obj0
)) goto fail
;
9069 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9070 result
= (unsigned int) ((arg1
)->top
);
9072 resultobj
= PyInt_FromLong((long)result
);
9079 static PyObject
*_wrap_Strut_bottom_set(PyObject
*self
, PyObject
*args
) {
9080 PyObject
*resultobj
;
9081 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9083 PyObject
* obj0
= 0 ;
9084 PyObject
* obj1
= 0 ;
9086 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_bottom_set",&obj0
,&obj1
)) goto fail
;
9087 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9088 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9089 if (PyErr_Occurred()) SWIG_fail
;
9090 if (arg1
) (arg1
)->bottom
= arg2
;
9092 Py_INCREF(Py_None
); resultobj
= Py_None
;
9099 static PyObject
*_wrap_Strut_bottom_get(PyObject
*self
, PyObject
*args
) {
9100 PyObject
*resultobj
;
9101 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9102 unsigned int result
;
9103 PyObject
* obj0
= 0 ;
9105 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_bottom_get",&obj0
)) goto fail
;
9106 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9107 result
= (unsigned int) ((arg1
)->bottom
);
9109 resultobj
= PyInt_FromLong((long)result
);
9116 static PyObject
*_wrap_Strut_left_set(PyObject
*self
, PyObject
*args
) {
9117 PyObject
*resultobj
;
9118 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9120 PyObject
* obj0
= 0 ;
9121 PyObject
* obj1
= 0 ;
9123 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_left_set",&obj0
,&obj1
)) goto fail
;
9124 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9125 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9126 if (PyErr_Occurred()) SWIG_fail
;
9127 if (arg1
) (arg1
)->left
= arg2
;
9129 Py_INCREF(Py_None
); resultobj
= Py_None
;
9136 static PyObject
*_wrap_Strut_left_get(PyObject
*self
, PyObject
*args
) {
9137 PyObject
*resultobj
;
9138 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9139 unsigned int result
;
9140 PyObject
* obj0
= 0 ;
9142 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_left_get",&obj0
)) goto fail
;
9143 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9144 result
= (unsigned int) ((arg1
)->left
);
9146 resultobj
= PyInt_FromLong((long)result
);
9153 static PyObject
*_wrap_Strut_right_set(PyObject
*self
, PyObject
*args
) {
9154 PyObject
*resultobj
;
9155 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9157 PyObject
* obj0
= 0 ;
9158 PyObject
* obj1
= 0 ;
9160 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_right_set",&obj0
,&obj1
)) goto fail
;
9161 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9162 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9163 if (PyErr_Occurred()) SWIG_fail
;
9164 if (arg1
) (arg1
)->right
= arg2
;
9166 Py_INCREF(Py_None
); resultobj
= Py_None
;
9173 static PyObject
*_wrap_Strut_right_get(PyObject
*self
, PyObject
*args
) {
9174 PyObject
*resultobj
;
9175 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9176 unsigned int result
;
9177 PyObject
* obj0
= 0 ;
9179 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_right_get",&obj0
)) goto fail
;
9180 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9181 result
= (unsigned int) ((arg1
)->right
);
9183 resultobj
= PyInt_FromLong((long)result
);
9190 static PyObject
*_wrap_new_Strut__SWIG_0(PyObject
*self
, PyObject
*args
) {
9191 PyObject
*resultobj
;
9194 if(!PyArg_ParseTuple(args
,(char *)":new_Strut")) goto fail
;
9195 result
= (otk::Strut
*)new otk::Strut();
9197 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Strut
, 1);
9204 static PyObject
*_wrap_new_Strut__SWIG_1(PyObject
*self
, PyObject
*args
) {
9205 PyObject
*resultobj
;
9212 if(!PyArg_ParseTuple(args
,(char *)"iiii:new_Strut",&arg1
,&arg2
,&arg3
,&arg4
)) goto fail
;
9213 result
= (otk::Strut
*)new otk::Strut(arg1
,arg2
,arg3
,arg4
);
9215 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Strut
, 1);
9222 static PyObject
*_wrap_new_Strut(PyObject
*self
, PyObject
*args
) {
9227 argc
= PyObject_Length(args
);
9228 for (ii
= 0; (ii
< argc
) && (ii
< 4); ii
++) {
9229 argv
[ii
] = PyTuple_GetItem(args
,ii
);
9232 return _wrap_new_Strut__SWIG_0(self
,args
);
9237 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
9241 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
9245 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
9249 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
9252 return _wrap_new_Strut__SWIG_1(self
,args
);
9259 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Strut'");
9264 static PyObject
*_wrap_delete_Strut(PyObject
*self
, PyObject
*args
) {
9265 PyObject
*resultobj
;
9266 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9267 PyObject
* obj0
= 0 ;
9269 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Strut",&obj0
)) goto fail
;
9270 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9273 Py_INCREF(Py_None
); resultobj
= Py_None
;
9280 static PyObject
* Strut_swigregister(PyObject
*self
, PyObject
*args
) {
9282 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
9283 SWIG_TypeClientData(SWIGTYPE_p_otk__Strut
, obj
);
9285 return Py_BuildValue((char *)"");
9287 static PyObject
*_wrap_PixmapMask_mask_set(PyObject
*self
, PyObject
*args
) {
9288 PyObject
*resultobj
;
9289 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9292 PyObject
* obj0
= 0 ;
9293 PyObject
* obj1
= 0 ;
9295 if(!PyArg_ParseTuple(args
,(char *)"OO:PixmapMask_mask_set",&obj0
,&obj1
)) goto fail
;
9296 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9297 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Pixmap
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
9299 if (arg1
) (arg1
)->mask
= arg2
;
9301 Py_INCREF(Py_None
); resultobj
= Py_None
;
9308 static PyObject
*_wrap_PixmapMask_mask_get(PyObject
*self
, PyObject
*args
) {
9309 PyObject
*resultobj
;
9310 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9312 PyObject
* obj0
= 0 ;
9314 if(!PyArg_ParseTuple(args
,(char *)"O:PixmapMask_mask_get",&obj0
)) goto fail
;
9315 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9316 result
= ((arg1
)->mask
);
9320 resultptr
= new Pixmap((Pixmap
&) result
);
9321 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Pixmap
, 1);
9329 static PyObject
*_wrap_PixmapMask_w_set(PyObject
*self
, PyObject
*args
) {
9330 PyObject
*resultobj
;
9331 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9333 PyObject
* obj0
= 0 ;
9334 PyObject
* obj1
= 0 ;
9336 if(!PyArg_ParseTuple(args
,(char *)"OO:PixmapMask_w_set",&obj0
,&obj1
)) goto fail
;
9337 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9338 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9339 if (PyErr_Occurred()) SWIG_fail
;
9340 if (arg1
) (arg1
)->w
= arg2
;
9342 Py_INCREF(Py_None
); resultobj
= Py_None
;
9349 static PyObject
*_wrap_PixmapMask_w_get(PyObject
*self
, PyObject
*args
) {
9350 PyObject
*resultobj
;
9351 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9352 unsigned int result
;
9353 PyObject
* obj0
= 0 ;
9355 if(!PyArg_ParseTuple(args
,(char *)"O:PixmapMask_w_get",&obj0
)) goto fail
;
9356 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9357 result
= (unsigned int) ((arg1
)->w
);
9359 resultobj
= PyInt_FromLong((long)result
);
9366 static PyObject
*_wrap_PixmapMask_h_set(PyObject
*self
, PyObject
*args
) {
9367 PyObject
*resultobj
;
9368 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9370 PyObject
* obj0
= 0 ;
9371 PyObject
* obj1
= 0 ;
9373 if(!PyArg_ParseTuple(args
,(char *)"OO:PixmapMask_h_set",&obj0
,&obj1
)) goto fail
;
9374 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9375 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9376 if (PyErr_Occurred()) SWIG_fail
;
9377 if (arg1
) (arg1
)->h
= arg2
;
9379 Py_INCREF(Py_None
); resultobj
= Py_None
;
9386 static PyObject
*_wrap_PixmapMask_h_get(PyObject
*self
, PyObject
*args
) {
9387 PyObject
*resultobj
;
9388 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9389 unsigned int result
;
9390 PyObject
* obj0
= 0 ;
9392 if(!PyArg_ParseTuple(args
,(char *)"O:PixmapMask_h_get",&obj0
)) goto fail
;
9393 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9394 result
= (unsigned int) ((arg1
)->h
);
9396 resultobj
= PyInt_FromLong((long)result
);
9403 static PyObject
*_wrap_new_PixmapMask(PyObject
*self
, PyObject
*args
) {
9404 PyObject
*resultobj
;
9405 otk::PixmapMask
*result
;
9407 if(!PyArg_ParseTuple(args
,(char *)":new_PixmapMask")) goto fail
;
9408 result
= (otk::PixmapMask
*)new otk::PixmapMask();
9410 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 1);
9417 static PyObject
*_wrap_delete_PixmapMask(PyObject
*self
, PyObject
*args
) {
9418 PyObject
*resultobj
;
9419 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9420 PyObject
* obj0
= 0 ;
9422 if(!PyArg_ParseTuple(args
,(char *)"O:delete_PixmapMask",&obj0
)) goto fail
;
9423 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9426 Py_INCREF(Py_None
); resultobj
= Py_None
;
9433 static PyObject
* PixmapMask_swigregister(PyObject
*self
, PyObject
*args
) {
9435 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
9436 SWIG_TypeClientData(SWIGTYPE_p_otk__PixmapMask
, obj
);
9438 return Py_BuildValue((char *)"");
9440 static PyObject
*_wrap_Style_image_control_set(PyObject
*self
, PyObject
*args
) {
9441 PyObject
*resultobj
;
9442 otk::Style
*arg1
= (otk::Style
*) 0 ;
9443 otk::BImageControl
*arg2
= (otk::BImageControl
*) 0 ;
9444 PyObject
* obj0
= 0 ;
9445 PyObject
* obj1
= 0 ;
9447 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_image_control_set",&obj0
,&obj1
)) goto fail
;
9448 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9449 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
)) == -1) SWIG_fail
;
9450 if (arg1
) (arg1
)->image_control
= arg2
;
9452 Py_INCREF(Py_None
); resultobj
= Py_None
;
9459 static PyObject
*_wrap_Style_image_control_get(PyObject
*self
, PyObject
*args
) {
9460 PyObject
*resultobj
;
9461 otk::Style
*arg1
= (otk::Style
*) 0 ;
9462 otk::BImageControl
*result
;
9463 PyObject
* obj0
= 0 ;
9465 if(!PyArg_ParseTuple(args
,(char *)"O:Style_image_control_get",&obj0
)) goto fail
;
9466 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9467 result
= (otk::BImageControl
*) ((arg1
)->image_control
);
9469 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BImageControl
, 0);
9476 static PyObject
*_wrap_Style_l_text_focus_set(PyObject
*self
, PyObject
*args
) {
9477 PyObject
*resultobj
;
9478 otk::Style
*arg1
= (otk::Style
*) 0 ;
9479 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9480 PyObject
* obj0
= 0 ;
9481 PyObject
* obj1
= 0 ;
9483 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_l_text_focus_set",&obj0
,&obj1
)) goto fail
;
9484 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9485 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9486 if (arg1
) (arg1
)->l_text_focus
= *arg2
;
9488 Py_INCREF(Py_None
); resultobj
= Py_None
;
9495 static PyObject
*_wrap_Style_l_text_focus_get(PyObject
*self
, PyObject
*args
) {
9496 PyObject
*resultobj
;
9497 otk::Style
*arg1
= (otk::Style
*) 0 ;
9498 otk::BColor
*result
;
9499 PyObject
* obj0
= 0 ;
9501 if(!PyArg_ParseTuple(args
,(char *)"O:Style_l_text_focus_get",&obj0
)) goto fail
;
9502 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9503 result
= (otk::BColor
*)& ((arg1
)->l_text_focus
);
9505 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9512 static PyObject
*_wrap_Style_l_text_unfocus_set(PyObject
*self
, PyObject
*args
) {
9513 PyObject
*resultobj
;
9514 otk::Style
*arg1
= (otk::Style
*) 0 ;
9515 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9516 PyObject
* obj0
= 0 ;
9517 PyObject
* obj1
= 0 ;
9519 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_l_text_unfocus_set",&obj0
,&obj1
)) goto fail
;
9520 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9521 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9522 if (arg1
) (arg1
)->l_text_unfocus
= *arg2
;
9524 Py_INCREF(Py_None
); resultobj
= Py_None
;
9531 static PyObject
*_wrap_Style_l_text_unfocus_get(PyObject
*self
, PyObject
*args
) {
9532 PyObject
*resultobj
;
9533 otk::Style
*arg1
= (otk::Style
*) 0 ;
9534 otk::BColor
*result
;
9535 PyObject
* obj0
= 0 ;
9537 if(!PyArg_ParseTuple(args
,(char *)"O:Style_l_text_unfocus_get",&obj0
)) goto fail
;
9538 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9539 result
= (otk::BColor
*)& ((arg1
)->l_text_unfocus
);
9541 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9548 static PyObject
*_wrap_Style_b_pic_focus_set(PyObject
*self
, PyObject
*args
) {
9549 PyObject
*resultobj
;
9550 otk::Style
*arg1
= (otk::Style
*) 0 ;
9551 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9552 PyObject
* obj0
= 0 ;
9553 PyObject
* obj1
= 0 ;
9555 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_pic_focus_set",&obj0
,&obj1
)) goto fail
;
9556 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9557 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9558 if (arg1
) (arg1
)->b_pic_focus
= *arg2
;
9560 Py_INCREF(Py_None
); resultobj
= Py_None
;
9567 static PyObject
*_wrap_Style_b_pic_focus_get(PyObject
*self
, PyObject
*args
) {
9568 PyObject
*resultobj
;
9569 otk::Style
*arg1
= (otk::Style
*) 0 ;
9570 otk::BColor
*result
;
9571 PyObject
* obj0
= 0 ;
9573 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_pic_focus_get",&obj0
)) goto fail
;
9574 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9575 result
= (otk::BColor
*)& ((arg1
)->b_pic_focus
);
9577 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9584 static PyObject
*_wrap_Style_b_pic_unfocus_set(PyObject
*self
, PyObject
*args
) {
9585 PyObject
*resultobj
;
9586 otk::Style
*arg1
= (otk::Style
*) 0 ;
9587 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9588 PyObject
* obj0
= 0 ;
9589 PyObject
* obj1
= 0 ;
9591 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_pic_unfocus_set",&obj0
,&obj1
)) goto fail
;
9592 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9593 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9594 if (arg1
) (arg1
)->b_pic_unfocus
= *arg2
;
9596 Py_INCREF(Py_None
); resultobj
= Py_None
;
9603 static PyObject
*_wrap_Style_b_pic_unfocus_get(PyObject
*self
, PyObject
*args
) {
9604 PyObject
*resultobj
;
9605 otk::Style
*arg1
= (otk::Style
*) 0 ;
9606 otk::BColor
*result
;
9607 PyObject
* obj0
= 0 ;
9609 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_pic_unfocus_get",&obj0
)) goto fail
;
9610 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9611 result
= (otk::BColor
*)& ((arg1
)->b_pic_unfocus
);
9613 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9620 static PyObject
*_wrap_Style_border_color_set(PyObject
*self
, PyObject
*args
) {
9621 PyObject
*resultobj
;
9622 otk::Style
*arg1
= (otk::Style
*) 0 ;
9623 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9624 PyObject
* obj0
= 0 ;
9625 PyObject
* obj1
= 0 ;
9627 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_border_color_set",&obj0
,&obj1
)) goto fail
;
9628 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9629 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9630 if (arg1
) (arg1
)->border_color
= *arg2
;
9632 Py_INCREF(Py_None
); resultobj
= Py_None
;
9639 static PyObject
*_wrap_Style_border_color_get(PyObject
*self
, PyObject
*args
) {
9640 PyObject
*resultobj
;
9641 otk::Style
*arg1
= (otk::Style
*) 0 ;
9642 otk::BColor
*result
;
9643 PyObject
* obj0
= 0 ;
9645 if(!PyArg_ParseTuple(args
,(char *)"O:Style_border_color_get",&obj0
)) goto fail
;
9646 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9647 result
= (otk::BColor
*)& ((arg1
)->border_color
);
9649 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9656 static PyObject
*_wrap_Style_font_set(PyObject
*self
, PyObject
*args
) {
9657 PyObject
*resultobj
;
9658 otk::Style
*arg1
= (otk::Style
*) 0 ;
9659 otk::BFont
*arg2
= (otk::BFont
*) 0 ;
9660 PyObject
* obj0
= 0 ;
9661 PyObject
* obj1
= 0 ;
9663 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_font_set",&obj0
,&obj1
)) goto fail
;
9664 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9665 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
)) == -1) SWIG_fail
;
9666 if (arg1
) (arg1
)->font
= arg2
;
9668 Py_INCREF(Py_None
); resultobj
= Py_None
;
9675 static PyObject
*_wrap_Style_font_get(PyObject
*self
, PyObject
*args
) {
9676 PyObject
*resultobj
;
9677 otk::Style
*arg1
= (otk::Style
*) 0 ;
9679 PyObject
* obj0
= 0 ;
9681 if(!PyArg_ParseTuple(args
,(char *)"O:Style_font_get",&obj0
)) goto fail
;
9682 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9683 result
= (otk::BFont
*) ((arg1
)->font
);
9685 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BFont
, 0);
9692 static PyObject
*_wrap_Style_f_focus_set(PyObject
*self
, PyObject
*args
) {
9693 PyObject
*resultobj
;
9694 otk::Style
*arg1
= (otk::Style
*) 0 ;
9695 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9696 PyObject
* obj0
= 0 ;
9697 PyObject
* obj1
= 0 ;
9699 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_f_focus_set",&obj0
,&obj1
)) goto fail
;
9700 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9701 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9702 if (arg1
) (arg1
)->f_focus
= *arg2
;
9704 Py_INCREF(Py_None
); resultobj
= Py_None
;
9711 static PyObject
*_wrap_Style_f_focus_get(PyObject
*self
, PyObject
*args
) {
9712 PyObject
*resultobj
;
9713 otk::Style
*arg1
= (otk::Style
*) 0 ;
9714 otk::BTexture
*result
;
9715 PyObject
* obj0
= 0 ;
9717 if(!PyArg_ParseTuple(args
,(char *)"O:Style_f_focus_get",&obj0
)) goto fail
;
9718 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9719 result
= (otk::BTexture
*)& ((arg1
)->f_focus
);
9721 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9728 static PyObject
*_wrap_Style_f_unfocus_set(PyObject
*self
, PyObject
*args
) {
9729 PyObject
*resultobj
;
9730 otk::Style
*arg1
= (otk::Style
*) 0 ;
9731 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9732 PyObject
* obj0
= 0 ;
9733 PyObject
* obj1
= 0 ;
9735 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_f_unfocus_set",&obj0
,&obj1
)) goto fail
;
9736 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9737 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9738 if (arg1
) (arg1
)->f_unfocus
= *arg2
;
9740 Py_INCREF(Py_None
); resultobj
= Py_None
;
9747 static PyObject
*_wrap_Style_f_unfocus_get(PyObject
*self
, PyObject
*args
) {
9748 PyObject
*resultobj
;
9749 otk::Style
*arg1
= (otk::Style
*) 0 ;
9750 otk::BTexture
*result
;
9751 PyObject
* obj0
= 0 ;
9753 if(!PyArg_ParseTuple(args
,(char *)"O:Style_f_unfocus_get",&obj0
)) goto fail
;
9754 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9755 result
= (otk::BTexture
*)& ((arg1
)->f_unfocus
);
9757 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9764 static PyObject
*_wrap_Style_t_focus_set(PyObject
*self
, PyObject
*args
) {
9765 PyObject
*resultobj
;
9766 otk::Style
*arg1
= (otk::Style
*) 0 ;
9767 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9768 PyObject
* obj0
= 0 ;
9769 PyObject
* obj1
= 0 ;
9771 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_t_focus_set",&obj0
,&obj1
)) goto fail
;
9772 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9773 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9774 if (arg1
) (arg1
)->t_focus
= *arg2
;
9776 Py_INCREF(Py_None
); resultobj
= Py_None
;
9783 static PyObject
*_wrap_Style_t_focus_get(PyObject
*self
, PyObject
*args
) {
9784 PyObject
*resultobj
;
9785 otk::Style
*arg1
= (otk::Style
*) 0 ;
9786 otk::BTexture
*result
;
9787 PyObject
* obj0
= 0 ;
9789 if(!PyArg_ParseTuple(args
,(char *)"O:Style_t_focus_get",&obj0
)) goto fail
;
9790 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9791 result
= (otk::BTexture
*)& ((arg1
)->t_focus
);
9793 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9800 static PyObject
*_wrap_Style_t_unfocus_set(PyObject
*self
, PyObject
*args
) {
9801 PyObject
*resultobj
;
9802 otk::Style
*arg1
= (otk::Style
*) 0 ;
9803 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9804 PyObject
* obj0
= 0 ;
9805 PyObject
* obj1
= 0 ;
9807 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_t_unfocus_set",&obj0
,&obj1
)) goto fail
;
9808 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9809 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9810 if (arg1
) (arg1
)->t_unfocus
= *arg2
;
9812 Py_INCREF(Py_None
); resultobj
= Py_None
;
9819 static PyObject
*_wrap_Style_t_unfocus_get(PyObject
*self
, PyObject
*args
) {
9820 PyObject
*resultobj
;
9821 otk::Style
*arg1
= (otk::Style
*) 0 ;
9822 otk::BTexture
*result
;
9823 PyObject
* obj0
= 0 ;
9825 if(!PyArg_ParseTuple(args
,(char *)"O:Style_t_unfocus_get",&obj0
)) goto fail
;
9826 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9827 result
= (otk::BTexture
*)& ((arg1
)->t_unfocus
);
9829 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9836 static PyObject
*_wrap_Style_l_focus_set(PyObject
*self
, PyObject
*args
) {
9837 PyObject
*resultobj
;
9838 otk::Style
*arg1
= (otk::Style
*) 0 ;
9839 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9840 PyObject
* obj0
= 0 ;
9841 PyObject
* obj1
= 0 ;
9843 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_l_focus_set",&obj0
,&obj1
)) goto fail
;
9844 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9845 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9846 if (arg1
) (arg1
)->l_focus
= *arg2
;
9848 Py_INCREF(Py_None
); resultobj
= Py_None
;
9855 static PyObject
*_wrap_Style_l_focus_get(PyObject
*self
, PyObject
*args
) {
9856 PyObject
*resultobj
;
9857 otk::Style
*arg1
= (otk::Style
*) 0 ;
9858 otk::BTexture
*result
;
9859 PyObject
* obj0
= 0 ;
9861 if(!PyArg_ParseTuple(args
,(char *)"O:Style_l_focus_get",&obj0
)) goto fail
;
9862 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9863 result
= (otk::BTexture
*)& ((arg1
)->l_focus
);
9865 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9872 static PyObject
*_wrap_Style_l_unfocus_set(PyObject
*self
, PyObject
*args
) {
9873 PyObject
*resultobj
;
9874 otk::Style
*arg1
= (otk::Style
*) 0 ;
9875 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9876 PyObject
* obj0
= 0 ;
9877 PyObject
* obj1
= 0 ;
9879 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_l_unfocus_set",&obj0
,&obj1
)) goto fail
;
9880 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9881 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9882 if (arg1
) (arg1
)->l_unfocus
= *arg2
;
9884 Py_INCREF(Py_None
); resultobj
= Py_None
;
9891 static PyObject
*_wrap_Style_l_unfocus_get(PyObject
*self
, PyObject
*args
) {
9892 PyObject
*resultobj
;
9893 otk::Style
*arg1
= (otk::Style
*) 0 ;
9894 otk::BTexture
*result
;
9895 PyObject
* obj0
= 0 ;
9897 if(!PyArg_ParseTuple(args
,(char *)"O:Style_l_unfocus_get",&obj0
)) goto fail
;
9898 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9899 result
= (otk::BTexture
*)& ((arg1
)->l_unfocus
);
9901 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9908 static PyObject
*_wrap_Style_h_focus_set(PyObject
*self
, PyObject
*args
) {
9909 PyObject
*resultobj
;
9910 otk::Style
*arg1
= (otk::Style
*) 0 ;
9911 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9912 PyObject
* obj0
= 0 ;
9913 PyObject
* obj1
= 0 ;
9915 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_h_focus_set",&obj0
,&obj1
)) goto fail
;
9916 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9917 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9918 if (arg1
) (arg1
)->h_focus
= *arg2
;
9920 Py_INCREF(Py_None
); resultobj
= Py_None
;
9927 static PyObject
*_wrap_Style_h_focus_get(PyObject
*self
, PyObject
*args
) {
9928 PyObject
*resultobj
;
9929 otk::Style
*arg1
= (otk::Style
*) 0 ;
9930 otk::BTexture
*result
;
9931 PyObject
* obj0
= 0 ;
9933 if(!PyArg_ParseTuple(args
,(char *)"O:Style_h_focus_get",&obj0
)) goto fail
;
9934 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9935 result
= (otk::BTexture
*)& ((arg1
)->h_focus
);
9937 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9944 static PyObject
*_wrap_Style_h_unfocus_set(PyObject
*self
, PyObject
*args
) {
9945 PyObject
*resultobj
;
9946 otk::Style
*arg1
= (otk::Style
*) 0 ;
9947 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9948 PyObject
* obj0
= 0 ;
9949 PyObject
* obj1
= 0 ;
9951 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_h_unfocus_set",&obj0
,&obj1
)) goto fail
;
9952 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9953 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9954 if (arg1
) (arg1
)->h_unfocus
= *arg2
;
9956 Py_INCREF(Py_None
); resultobj
= Py_None
;
9963 static PyObject
*_wrap_Style_h_unfocus_get(PyObject
*self
, PyObject
*args
) {
9964 PyObject
*resultobj
;
9965 otk::Style
*arg1
= (otk::Style
*) 0 ;
9966 otk::BTexture
*result
;
9967 PyObject
* obj0
= 0 ;
9969 if(!PyArg_ParseTuple(args
,(char *)"O:Style_h_unfocus_get",&obj0
)) goto fail
;
9970 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9971 result
= (otk::BTexture
*)& ((arg1
)->h_unfocus
);
9973 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9980 static PyObject
*_wrap_Style_b_focus_set(PyObject
*self
, PyObject
*args
) {
9981 PyObject
*resultobj
;
9982 otk::Style
*arg1
= (otk::Style
*) 0 ;
9983 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9984 PyObject
* obj0
= 0 ;
9985 PyObject
* obj1
= 0 ;
9987 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_focus_set",&obj0
,&obj1
)) goto fail
;
9988 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9989 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9990 if (arg1
) (arg1
)->b_focus
= *arg2
;
9992 Py_INCREF(Py_None
); resultobj
= Py_None
;
9999 static PyObject
*_wrap_Style_b_focus_get(PyObject
*self
, PyObject
*args
) {
10000 PyObject
*resultobj
;
10001 otk::Style
*arg1
= (otk::Style
*) 0 ;
10002 otk::BTexture
*result
;
10003 PyObject
* obj0
= 0 ;
10005 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_focus_get",&obj0
)) goto fail
;
10006 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10007 result
= (otk::BTexture
*)& ((arg1
)->b_focus
);
10009 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10016 static PyObject
*_wrap_Style_b_unfocus_set(PyObject
*self
, PyObject
*args
) {
10017 PyObject
*resultobj
;
10018 otk::Style
*arg1
= (otk::Style
*) 0 ;
10019 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10020 PyObject
* obj0
= 0 ;
10021 PyObject
* obj1
= 0 ;
10023 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_unfocus_set",&obj0
,&obj1
)) goto fail
;
10024 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10025 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10026 if (arg1
) (arg1
)->b_unfocus
= *arg2
;
10028 Py_INCREF(Py_None
); resultobj
= Py_None
;
10035 static PyObject
*_wrap_Style_b_unfocus_get(PyObject
*self
, PyObject
*args
) {
10036 PyObject
*resultobj
;
10037 otk::Style
*arg1
= (otk::Style
*) 0 ;
10038 otk::BTexture
*result
;
10039 PyObject
* obj0
= 0 ;
10041 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_unfocus_get",&obj0
)) goto fail
;
10042 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10043 result
= (otk::BTexture
*)& ((arg1
)->b_unfocus
);
10045 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10052 static PyObject
*_wrap_Style_b_pressed_set(PyObject
*self
, PyObject
*args
) {
10053 PyObject
*resultobj
;
10054 otk::Style
*arg1
= (otk::Style
*) 0 ;
10055 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10056 PyObject
* obj0
= 0 ;
10057 PyObject
* obj1
= 0 ;
10059 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_pressed_set",&obj0
,&obj1
)) goto fail
;
10060 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10061 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10062 if (arg1
) (arg1
)->b_pressed
= *arg2
;
10064 Py_INCREF(Py_None
); resultobj
= Py_None
;
10071 static PyObject
*_wrap_Style_b_pressed_get(PyObject
*self
, PyObject
*args
) {
10072 PyObject
*resultobj
;
10073 otk::Style
*arg1
= (otk::Style
*) 0 ;
10074 otk::BTexture
*result
;
10075 PyObject
* obj0
= 0 ;
10077 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_pressed_get",&obj0
)) goto fail
;
10078 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10079 result
= (otk::BTexture
*)& ((arg1
)->b_pressed
);
10081 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10088 static PyObject
*_wrap_Style_b_pressed_focus_set(PyObject
*self
, PyObject
*args
) {
10089 PyObject
*resultobj
;
10090 otk::Style
*arg1
= (otk::Style
*) 0 ;
10091 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10092 PyObject
* obj0
= 0 ;
10093 PyObject
* obj1
= 0 ;
10095 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_pressed_focus_set",&obj0
,&obj1
)) goto fail
;
10096 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10097 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10098 if (arg1
) (arg1
)->b_pressed_focus
= *arg2
;
10100 Py_INCREF(Py_None
); resultobj
= Py_None
;
10107 static PyObject
*_wrap_Style_b_pressed_focus_get(PyObject
*self
, PyObject
*args
) {
10108 PyObject
*resultobj
;
10109 otk::Style
*arg1
= (otk::Style
*) 0 ;
10110 otk::BTexture
*result
;
10111 PyObject
* obj0
= 0 ;
10113 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_pressed_focus_get",&obj0
)) goto fail
;
10114 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10115 result
= (otk::BTexture
*)& ((arg1
)->b_pressed_focus
);
10117 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10124 static PyObject
*_wrap_Style_b_pressed_unfocus_set(PyObject
*self
, PyObject
*args
) {
10125 PyObject
*resultobj
;
10126 otk::Style
*arg1
= (otk::Style
*) 0 ;
10127 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10128 PyObject
* obj0
= 0 ;
10129 PyObject
* obj1
= 0 ;
10131 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_pressed_unfocus_set",&obj0
,&obj1
)) goto fail
;
10132 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10133 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10134 if (arg1
) (arg1
)->b_pressed_unfocus
= *arg2
;
10136 Py_INCREF(Py_None
); resultobj
= Py_None
;
10143 static PyObject
*_wrap_Style_b_pressed_unfocus_get(PyObject
*self
, PyObject
*args
) {
10144 PyObject
*resultobj
;
10145 otk::Style
*arg1
= (otk::Style
*) 0 ;
10146 otk::BTexture
*result
;
10147 PyObject
* obj0
= 0 ;
10149 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_pressed_unfocus_get",&obj0
)) goto fail
;
10150 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10151 result
= (otk::BTexture
*)& ((arg1
)->b_pressed_unfocus
);
10153 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10160 static PyObject
*_wrap_Style_g_focus_set(PyObject
*self
, PyObject
*args
) {
10161 PyObject
*resultobj
;
10162 otk::Style
*arg1
= (otk::Style
*) 0 ;
10163 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10164 PyObject
* obj0
= 0 ;
10165 PyObject
* obj1
= 0 ;
10167 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_g_focus_set",&obj0
,&obj1
)) goto fail
;
10168 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10169 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10170 if (arg1
) (arg1
)->g_focus
= *arg2
;
10172 Py_INCREF(Py_None
); resultobj
= Py_None
;
10179 static PyObject
*_wrap_Style_g_focus_get(PyObject
*self
, PyObject
*args
) {
10180 PyObject
*resultobj
;
10181 otk::Style
*arg1
= (otk::Style
*) 0 ;
10182 otk::BTexture
*result
;
10183 PyObject
* obj0
= 0 ;
10185 if(!PyArg_ParseTuple(args
,(char *)"O:Style_g_focus_get",&obj0
)) goto fail
;
10186 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10187 result
= (otk::BTexture
*)& ((arg1
)->g_focus
);
10189 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10196 static PyObject
*_wrap_Style_g_unfocus_set(PyObject
*self
, PyObject
*args
) {
10197 PyObject
*resultobj
;
10198 otk::Style
*arg1
= (otk::Style
*) 0 ;
10199 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10200 PyObject
* obj0
= 0 ;
10201 PyObject
* obj1
= 0 ;
10203 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_g_unfocus_set",&obj0
,&obj1
)) goto fail
;
10204 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10205 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10206 if (arg1
) (arg1
)->g_unfocus
= *arg2
;
10208 Py_INCREF(Py_None
); resultobj
= Py_None
;
10215 static PyObject
*_wrap_Style_g_unfocus_get(PyObject
*self
, PyObject
*args
) {
10216 PyObject
*resultobj
;
10217 otk::Style
*arg1
= (otk::Style
*) 0 ;
10218 otk::BTexture
*result
;
10219 PyObject
* obj0
= 0 ;
10221 if(!PyArg_ParseTuple(args
,(char *)"O:Style_g_unfocus_get",&obj0
)) goto fail
;
10222 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10223 result
= (otk::BTexture
*)& ((arg1
)->g_unfocus
);
10225 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10232 static PyObject
*_wrap_Style_close_button_set(PyObject
*self
, PyObject
*args
) {
10233 PyObject
*resultobj
;
10234 otk::Style
*arg1
= (otk::Style
*) 0 ;
10235 otk::PixmapMask
*arg2
= (otk::PixmapMask
*) 0 ;
10236 PyObject
* obj0
= 0 ;
10237 PyObject
* obj1
= 0 ;
10239 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_close_button_set",&obj0
,&obj1
)) goto fail
;
10240 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10241 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10242 if (arg1
) (arg1
)->close_button
= *arg2
;
10244 Py_INCREF(Py_None
); resultobj
= Py_None
;
10251 static PyObject
*_wrap_Style_close_button_get(PyObject
*self
, PyObject
*args
) {
10252 PyObject
*resultobj
;
10253 otk::Style
*arg1
= (otk::Style
*) 0 ;
10254 otk::PixmapMask
*result
;
10255 PyObject
* obj0
= 0 ;
10257 if(!PyArg_ParseTuple(args
,(char *)"O:Style_close_button_get",&obj0
)) goto fail
;
10258 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10259 result
= (otk::PixmapMask
*)& ((arg1
)->close_button
);
10261 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
10268 static PyObject
*_wrap_Style_max_button_set(PyObject
*self
, PyObject
*args
) {
10269 PyObject
*resultobj
;
10270 otk::Style
*arg1
= (otk::Style
*) 0 ;
10271 otk::PixmapMask
*arg2
= (otk::PixmapMask
*) 0 ;
10272 PyObject
* obj0
= 0 ;
10273 PyObject
* obj1
= 0 ;
10275 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_max_button_set",&obj0
,&obj1
)) goto fail
;
10276 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10277 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10278 if (arg1
) (arg1
)->max_button
= *arg2
;
10280 Py_INCREF(Py_None
); resultobj
= Py_None
;
10287 static PyObject
*_wrap_Style_max_button_get(PyObject
*self
, PyObject
*args
) {
10288 PyObject
*resultobj
;
10289 otk::Style
*arg1
= (otk::Style
*) 0 ;
10290 otk::PixmapMask
*result
;
10291 PyObject
* obj0
= 0 ;
10293 if(!PyArg_ParseTuple(args
,(char *)"O:Style_max_button_get",&obj0
)) goto fail
;
10294 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10295 result
= (otk::PixmapMask
*)& ((arg1
)->max_button
);
10297 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
10304 static PyObject
*_wrap_Style_icon_button_set(PyObject
*self
, PyObject
*args
) {
10305 PyObject
*resultobj
;
10306 otk::Style
*arg1
= (otk::Style
*) 0 ;
10307 otk::PixmapMask
*arg2
= (otk::PixmapMask
*) 0 ;
10308 PyObject
* obj0
= 0 ;
10309 PyObject
* obj1
= 0 ;
10311 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_icon_button_set",&obj0
,&obj1
)) goto fail
;
10312 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10313 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10314 if (arg1
) (arg1
)->icon_button
= *arg2
;
10316 Py_INCREF(Py_None
); resultobj
= Py_None
;
10323 static PyObject
*_wrap_Style_icon_button_get(PyObject
*self
, PyObject
*args
) {
10324 PyObject
*resultobj
;
10325 otk::Style
*arg1
= (otk::Style
*) 0 ;
10326 otk::PixmapMask
*result
;
10327 PyObject
* obj0
= 0 ;
10329 if(!PyArg_ParseTuple(args
,(char *)"O:Style_icon_button_get",&obj0
)) goto fail
;
10330 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10331 result
= (otk::PixmapMask
*)& ((arg1
)->icon_button
);
10333 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
10340 static PyObject
*_wrap_Style_stick_button_set(PyObject
*self
, PyObject
*args
) {
10341 PyObject
*resultobj
;
10342 otk::Style
*arg1
= (otk::Style
*) 0 ;
10343 otk::PixmapMask
*arg2
= (otk::PixmapMask
*) 0 ;
10344 PyObject
* obj0
= 0 ;
10345 PyObject
* obj1
= 0 ;
10347 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_stick_button_set",&obj0
,&obj1
)) goto fail
;
10348 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10349 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10350 if (arg1
) (arg1
)->stick_button
= *arg2
;
10352 Py_INCREF(Py_None
); resultobj
= Py_None
;
10359 static PyObject
*_wrap_Style_stick_button_get(PyObject
*self
, PyObject
*args
) {
10360 PyObject
*resultobj
;
10361 otk::Style
*arg1
= (otk::Style
*) 0 ;
10362 otk::PixmapMask
*result
;
10363 PyObject
* obj0
= 0 ;
10365 if(!PyArg_ParseTuple(args
,(char *)"O:Style_stick_button_get",&obj0
)) goto fail
;
10366 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10367 result
= (otk::PixmapMask
*)& ((arg1
)->stick_button
);
10369 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
10376 static PyObject
*_wrap_Style_justify_set(PyObject
*self
, PyObject
*args
) {
10377 PyObject
*resultobj
;
10378 otk::Style
*arg1
= (otk::Style
*) 0 ;
10380 PyObject
* obj0
= 0 ;
10382 if(!PyArg_ParseTuple(args
,(char *)"Oi:Style_justify_set",&obj0
,&arg2
)) goto fail
;
10383 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10384 if (arg1
) (arg1
)->justify
= (otk::Style::TextJustify
)arg2
;
10386 Py_INCREF(Py_None
); resultobj
= Py_None
;
10393 static PyObject
*_wrap_Style_justify_get(PyObject
*self
, PyObject
*args
) {
10394 PyObject
*resultobj
;
10395 otk::Style
*arg1
= (otk::Style
*) 0 ;
10397 PyObject
* obj0
= 0 ;
10399 if(!PyArg_ParseTuple(args
,(char *)"O:Style_justify_get",&obj0
)) goto fail
;
10400 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10401 result
= (int) ((arg1
)->justify
);
10403 resultobj
= PyInt_FromLong((long)result
);
10410 static PyObject
*_wrap_Style_bullet_type_set(PyObject
*self
, PyObject
*args
) {
10411 PyObject
*resultobj
;
10412 otk::Style
*arg1
= (otk::Style
*) 0 ;
10414 PyObject
* obj0
= 0 ;
10416 if(!PyArg_ParseTuple(args
,(char *)"Oi:Style_bullet_type_set",&obj0
,&arg2
)) goto fail
;
10417 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10418 if (arg1
) (arg1
)->bullet_type
= (otk::Style::BulletType
)arg2
;
10420 Py_INCREF(Py_None
); resultobj
= Py_None
;
10427 static PyObject
*_wrap_Style_bullet_type_get(PyObject
*self
, PyObject
*args
) {
10428 PyObject
*resultobj
;
10429 otk::Style
*arg1
= (otk::Style
*) 0 ;
10431 PyObject
* obj0
= 0 ;
10433 if(!PyArg_ParseTuple(args
,(char *)"O:Style_bullet_type_get",&obj0
)) goto fail
;
10434 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10435 result
= (int) ((arg1
)->bullet_type
);
10437 resultobj
= PyInt_FromLong((long)result
);
10444 static PyObject
*_wrap_Style_handle_width_set(PyObject
*self
, PyObject
*args
) {
10445 PyObject
*resultobj
;
10446 otk::Style
*arg1
= (otk::Style
*) 0 ;
10447 unsigned int arg2
;
10448 PyObject
* obj0
= 0 ;
10449 PyObject
* obj1
= 0 ;
10451 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_handle_width_set",&obj0
,&obj1
)) goto fail
;
10452 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10453 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10454 if (PyErr_Occurred()) SWIG_fail
;
10455 if (arg1
) (arg1
)->handle_width
= arg2
;
10457 Py_INCREF(Py_None
); resultobj
= Py_None
;
10464 static PyObject
*_wrap_Style_handle_width_get(PyObject
*self
, PyObject
*args
) {
10465 PyObject
*resultobj
;
10466 otk::Style
*arg1
= (otk::Style
*) 0 ;
10467 unsigned int result
;
10468 PyObject
* obj0
= 0 ;
10470 if(!PyArg_ParseTuple(args
,(char *)"O:Style_handle_width_get",&obj0
)) goto fail
;
10471 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10472 result
= (unsigned int) ((arg1
)->handle_width
);
10474 resultobj
= PyInt_FromLong((long)result
);
10481 static PyObject
*_wrap_Style_bevel_width_set(PyObject
*self
, PyObject
*args
) {
10482 PyObject
*resultobj
;
10483 otk::Style
*arg1
= (otk::Style
*) 0 ;
10484 unsigned int arg2
;
10485 PyObject
* obj0
= 0 ;
10486 PyObject
* obj1
= 0 ;
10488 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_bevel_width_set",&obj0
,&obj1
)) goto fail
;
10489 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10490 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10491 if (PyErr_Occurred()) SWIG_fail
;
10492 if (arg1
) (arg1
)->bevel_width
= arg2
;
10494 Py_INCREF(Py_None
); resultobj
= Py_None
;
10501 static PyObject
*_wrap_Style_bevel_width_get(PyObject
*self
, PyObject
*args
) {
10502 PyObject
*resultobj
;
10503 otk::Style
*arg1
= (otk::Style
*) 0 ;
10504 unsigned int result
;
10505 PyObject
* obj0
= 0 ;
10507 if(!PyArg_ParseTuple(args
,(char *)"O:Style_bevel_width_get",&obj0
)) goto fail
;
10508 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10509 result
= (unsigned int) ((arg1
)->bevel_width
);
10511 resultobj
= PyInt_FromLong((long)result
);
10518 static PyObject
*_wrap_Style_frame_width_set(PyObject
*self
, PyObject
*args
) {
10519 PyObject
*resultobj
;
10520 otk::Style
*arg1
= (otk::Style
*) 0 ;
10521 unsigned int arg2
;
10522 PyObject
* obj0
= 0 ;
10523 PyObject
* obj1
= 0 ;
10525 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_frame_width_set",&obj0
,&obj1
)) goto fail
;
10526 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10527 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10528 if (PyErr_Occurred()) SWIG_fail
;
10529 if (arg1
) (arg1
)->frame_width
= arg2
;
10531 Py_INCREF(Py_None
); resultobj
= Py_None
;
10538 static PyObject
*_wrap_Style_frame_width_get(PyObject
*self
, PyObject
*args
) {
10539 PyObject
*resultobj
;
10540 otk::Style
*arg1
= (otk::Style
*) 0 ;
10541 unsigned int result
;
10542 PyObject
* obj0
= 0 ;
10544 if(!PyArg_ParseTuple(args
,(char *)"O:Style_frame_width_get",&obj0
)) goto fail
;
10545 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10546 result
= (unsigned int) ((arg1
)->frame_width
);
10548 resultobj
= PyInt_FromLong((long)result
);
10555 static PyObject
*_wrap_Style_border_width_set(PyObject
*self
, PyObject
*args
) {
10556 PyObject
*resultobj
;
10557 otk::Style
*arg1
= (otk::Style
*) 0 ;
10558 unsigned int arg2
;
10559 PyObject
* obj0
= 0 ;
10560 PyObject
* obj1
= 0 ;
10562 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_border_width_set",&obj0
,&obj1
)) goto fail
;
10563 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10564 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10565 if (PyErr_Occurred()) SWIG_fail
;
10566 if (arg1
) (arg1
)->border_width
= arg2
;
10568 Py_INCREF(Py_None
); resultobj
= Py_None
;
10575 static PyObject
*_wrap_Style_border_width_get(PyObject
*self
, PyObject
*args
) {
10576 PyObject
*resultobj
;
10577 otk::Style
*arg1
= (otk::Style
*) 0 ;
10578 unsigned int result
;
10579 PyObject
* obj0
= 0 ;
10581 if(!PyArg_ParseTuple(args
,(char *)"O:Style_border_width_get",&obj0
)) goto fail
;
10582 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10583 result
= (unsigned int) ((arg1
)->border_width
);
10585 resultobj
= PyInt_FromLong((long)result
);
10592 static PyObject
*_wrap_Style_screen_number_set(PyObject
*self
, PyObject
*args
) {
10593 PyObject
*resultobj
;
10594 otk::Style
*arg1
= (otk::Style
*) 0 ;
10595 unsigned int arg2
;
10596 PyObject
* obj0
= 0 ;
10597 PyObject
* obj1
= 0 ;
10599 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_screen_number_set",&obj0
,&obj1
)) goto fail
;
10600 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10601 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10602 if (PyErr_Occurred()) SWIG_fail
;
10603 if (arg1
) (arg1
)->screen_number
= arg2
;
10605 Py_INCREF(Py_None
); resultobj
= Py_None
;
10612 static PyObject
*_wrap_Style_screen_number_get(PyObject
*self
, PyObject
*args
) {
10613 PyObject
*resultobj
;
10614 otk::Style
*arg1
= (otk::Style
*) 0 ;
10615 unsigned int result
;
10616 PyObject
* obj0
= 0 ;
10618 if(!PyArg_ParseTuple(args
,(char *)"O:Style_screen_number_get",&obj0
)) goto fail
;
10619 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10620 result
= (unsigned int) ((arg1
)->screen_number
);
10622 resultobj
= PyInt_FromLong((long)result
);
10629 static PyObject
*_wrap_Style_shadow_fonts_set(PyObject
*self
, PyObject
*args
) {
10630 PyObject
*resultobj
;
10631 otk::Style
*arg1
= (otk::Style
*) 0 ;
10633 PyObject
* obj0
= 0 ;
10634 PyObject
* obj1
= 0 ;
10636 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_shadow_fonts_set",&obj0
,&obj1
)) goto fail
;
10637 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10638 arg2
= (bool) PyInt_AsLong(obj1
);
10639 if (PyErr_Occurred()) SWIG_fail
;
10640 if (arg1
) (arg1
)->shadow_fonts
= arg2
;
10642 Py_INCREF(Py_None
); resultobj
= Py_None
;
10649 static PyObject
*_wrap_Style_shadow_fonts_get(PyObject
*self
, PyObject
*args
) {
10650 PyObject
*resultobj
;
10651 otk::Style
*arg1
= (otk::Style
*) 0 ;
10653 PyObject
* obj0
= 0 ;
10655 if(!PyArg_ParseTuple(args
,(char *)"O:Style_shadow_fonts_get",&obj0
)) goto fail
;
10656 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10657 result
= (bool) ((arg1
)->shadow_fonts
);
10659 resultobj
= PyInt_FromLong((long)result
);
10666 static PyObject
*_wrap_Style_aa_fonts_set(PyObject
*self
, PyObject
*args
) {
10667 PyObject
*resultobj
;
10668 otk::Style
*arg1
= (otk::Style
*) 0 ;
10670 PyObject
* obj0
= 0 ;
10671 PyObject
* obj1
= 0 ;
10673 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_aa_fonts_set",&obj0
,&obj1
)) goto fail
;
10674 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10675 arg2
= (bool) PyInt_AsLong(obj1
);
10676 if (PyErr_Occurred()) SWIG_fail
;
10677 if (arg1
) (arg1
)->aa_fonts
= arg2
;
10679 Py_INCREF(Py_None
); resultobj
= Py_None
;
10686 static PyObject
*_wrap_Style_aa_fonts_get(PyObject
*self
, PyObject
*args
) {
10687 PyObject
*resultobj
;
10688 otk::Style
*arg1
= (otk::Style
*) 0 ;
10690 PyObject
* obj0
= 0 ;
10692 if(!PyArg_ParseTuple(args
,(char *)"O:Style_aa_fonts_get",&obj0
)) goto fail
;
10693 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10694 result
= (bool) ((arg1
)->aa_fonts
);
10696 resultobj
= PyInt_FromLong((long)result
);
10703 static PyObject
*_wrap_new_Style__SWIG_0(PyObject
*self
, PyObject
*args
) {
10704 PyObject
*resultobj
;
10705 otk::Style
*result
;
10707 if(!PyArg_ParseTuple(args
,(char *)":new_Style")) goto fail
;
10708 result
= (otk::Style
*)new otk::Style();
10710 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Style
, 1);
10717 static PyObject
*_wrap_new_Style__SWIG_1(PyObject
*self
, PyObject
*args
) {
10718 PyObject
*resultobj
;
10719 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
10720 otk::Style
*result
;
10721 PyObject
* obj0
= 0 ;
10723 if(!PyArg_ParseTuple(args
,(char *)"O:new_Style",&obj0
)) goto fail
;
10724 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10725 result
= (otk::Style
*)new otk::Style(arg1
);
10727 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Style
, 1);
10734 static PyObject
*_wrap_new_Style(PyObject
*self
, PyObject
*args
) {
10739 argc
= PyObject_Length(args
);
10740 for (ii
= 0; (ii
< argc
) && (ii
< 1); ii
++) {
10741 argv
[ii
] = PyTuple_GetItem(args
,ii
);
10744 return _wrap_new_Style__SWIG_0(self
,args
);
10750 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__BImageControl
, 0) == -1) {
10758 return _wrap_new_Style__SWIG_1(self
,args
);
10762 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Style'");
10767 static PyObject
*_wrap_delete_Style(PyObject
*self
, PyObject
*args
) {
10768 PyObject
*resultobj
;
10769 otk::Style
*arg1
= (otk::Style
*) 0 ;
10770 PyObject
* obj0
= 0 ;
10772 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Style",&obj0
)) goto fail
;
10773 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10776 Py_INCREF(Py_None
); resultobj
= Py_None
;
10783 static PyObject
*_wrap_Style_readDatabaseMask(PyObject
*self
, PyObject
*args
) {
10784 PyObject
*resultobj
;
10785 otk::Style
*arg1
= (otk::Style
*) 0 ;
10786 std::string
*arg2
= 0 ;
10787 otk::PixmapMask
*arg3
= 0 ;
10788 otk::Configuration
*arg4
= 0 ;
10789 std::string temp2
;
10790 PyObject
* obj0
= 0 ;
10791 PyObject
* obj1
= 0 ;
10792 PyObject
* obj2
= 0 ;
10793 PyObject
* obj3
= 0 ;
10795 if(!PyArg_ParseTuple(args
,(char *)"OOOO:Style_readDatabaseMask",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
10796 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10798 if (PyString_Check(obj1
)) {
10799 temp2
= std::string(PyString_AsString(obj1
));
10802 SWIG_exception(SWIG_TypeError
, "string expected");
10805 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10806 if (arg3
== NULL
) {
10807 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10809 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10810 if (arg4
== NULL
) {
10811 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10813 (arg1
)->readDatabaseMask((std::string
const &)*arg2
,*arg3
,(otk::Configuration
const &)*arg4
);
10815 Py_INCREF(Py_None
); resultobj
= Py_None
;
10822 static PyObject
*_wrap_Style_readDatabaseTexture(PyObject
*self
, PyObject
*args
) {
10823 PyObject
*resultobj
;
10824 otk::Style
*arg1
= (otk::Style
*) 0 ;
10825 std::string
*arg2
= 0 ;
10826 std::string
*arg3
= 0 ;
10827 otk::Configuration
*arg4
= 0 ;
10828 bool arg5
= (bool) false ;
10829 otk::BTexture result
;
10830 std::string temp2
;
10831 std::string temp3
;
10832 PyObject
* obj0
= 0 ;
10833 PyObject
* obj1
= 0 ;
10834 PyObject
* obj2
= 0 ;
10835 PyObject
* obj3
= 0 ;
10836 PyObject
* obj4
= 0 ;
10838 if(!PyArg_ParseTuple(args
,(char *)"OOOO|O:Style_readDatabaseTexture",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
10839 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10841 if (PyString_Check(obj1
)) {
10842 temp2
= std::string(PyString_AsString(obj1
));
10845 SWIG_exception(SWIG_TypeError
, "string expected");
10849 if (PyString_Check(obj2
)) {
10850 temp3
= std::string(PyString_AsString(obj2
));
10853 SWIG_exception(SWIG_TypeError
, "string expected");
10856 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10857 if (arg4
== NULL
) {
10858 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10861 arg5
= (bool) PyInt_AsLong(obj4
);
10862 if (PyErr_Occurred()) SWIG_fail
;
10864 result
= (arg1
)->readDatabaseTexture((std::string
const &)*arg2
,(std::string
const &)*arg3
,(otk::Configuration
const &)*arg4
,arg5
);
10867 otk::BTexture
* resultptr
;
10868 resultptr
= new otk::BTexture((otk::BTexture
&) result
);
10869 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__BTexture
, 1);
10877 static PyObject
*_wrap_Style_readDatabaseColor(PyObject
*self
, PyObject
*args
) {
10878 PyObject
*resultobj
;
10879 otk::Style
*arg1
= (otk::Style
*) 0 ;
10880 std::string
*arg2
= 0 ;
10881 std::string
*arg3
= 0 ;
10882 otk::Configuration
*arg4
= 0 ;
10883 otk::BColor result
;
10884 std::string temp2
;
10885 std::string temp3
;
10886 PyObject
* obj0
= 0 ;
10887 PyObject
* obj1
= 0 ;
10888 PyObject
* obj2
= 0 ;
10889 PyObject
* obj3
= 0 ;
10891 if(!PyArg_ParseTuple(args
,(char *)"OOOO:Style_readDatabaseColor",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
10892 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10894 if (PyString_Check(obj1
)) {
10895 temp2
= std::string(PyString_AsString(obj1
));
10898 SWIG_exception(SWIG_TypeError
, "string expected");
10902 if (PyString_Check(obj2
)) {
10903 temp3
= std::string(PyString_AsString(obj2
));
10906 SWIG_exception(SWIG_TypeError
, "string expected");
10909 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10910 if (arg4
== NULL
) {
10911 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10913 result
= (arg1
)->readDatabaseColor((std::string
const &)*arg2
,(std::string
const &)*arg3
,(otk::Configuration
const &)*arg4
);
10916 otk::BColor
* resultptr
;
10917 resultptr
= new otk::BColor((otk::BColor
&) result
);
10918 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__BColor
, 1);
10926 static PyObject
*_wrap_Style_readDatabaseFont(PyObject
*self
, PyObject
*args
) {
10927 PyObject
*resultobj
;
10928 otk::Style
*arg1
= (otk::Style
*) 0 ;
10929 std::string
*arg2
= 0 ;
10930 otk::Configuration
*arg3
= 0 ;
10931 otk::BFont
*result
;
10932 std::string temp2
;
10933 PyObject
* obj0
= 0 ;
10934 PyObject
* obj1
= 0 ;
10935 PyObject
* obj2
= 0 ;
10937 if(!PyArg_ParseTuple(args
,(char *)"OOO:Style_readDatabaseFont",&obj0
,&obj1
,&obj2
)) goto fail
;
10938 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10940 if (PyString_Check(obj1
)) {
10941 temp2
= std::string(PyString_AsString(obj1
));
10944 SWIG_exception(SWIG_TypeError
, "string expected");
10947 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10948 if (arg3
== NULL
) {
10949 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10951 result
= (otk::BFont
*)(arg1
)->readDatabaseFont((std::string
const &)*arg2
,(otk::Configuration
const &)*arg3
);
10953 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BFont
, 0);
10960 static PyObject
*_wrap_Style_load(PyObject
*self
, PyObject
*args
) {
10961 PyObject
*resultobj
;
10962 otk::Style
*arg1
= (otk::Style
*) 0 ;
10963 otk::Configuration
*arg2
= 0 ;
10964 PyObject
* obj0
= 0 ;
10965 PyObject
* obj1
= 0 ;
10967 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_load",&obj0
,&obj1
)) goto fail
;
10968 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10969 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10970 if (arg2
== NULL
) {
10971 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10973 (arg1
)->load((otk::Configuration
const &)*arg2
);
10975 Py_INCREF(Py_None
); resultobj
= Py_None
;
10982 static PyObject
*_wrap_Style_getTextFocus(PyObject
*self
, PyObject
*args
) {
10983 PyObject
*resultobj
;
10984 otk::Style
*arg1
= (otk::Style
*) 0 ;
10985 otk::BColor
*result
;
10986 PyObject
* obj0
= 0 ;
10988 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getTextFocus",&obj0
)) goto fail
;
10989 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10990 result
= (otk::BColor
*)(arg1
)->getTextFocus();
10992 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
10999 static PyObject
*_wrap_Style_getTextUnfocus(PyObject
*self
, PyObject
*args
) {
11000 PyObject
*resultobj
;
11001 otk::Style
*arg1
= (otk::Style
*) 0 ;
11002 otk::BColor
*result
;
11003 PyObject
* obj0
= 0 ;
11005 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getTextUnfocus",&obj0
)) goto fail
;
11006 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11007 result
= (otk::BColor
*)(arg1
)->getTextUnfocus();
11009 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11016 static PyObject
*_wrap_Style_getButtonPicFocus(PyObject
*self
, PyObject
*args
) {
11017 PyObject
*resultobj
;
11018 otk::Style
*arg1
= (otk::Style
*) 0 ;
11019 otk::BColor
*result
;
11020 PyObject
* obj0
= 0 ;
11022 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonPicFocus",&obj0
)) goto fail
;
11023 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11024 result
= (otk::BColor
*)(arg1
)->getButtonPicFocus();
11026 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11033 static PyObject
*_wrap_Style_getButtonPicUnfocus(PyObject
*self
, PyObject
*args
) {
11034 PyObject
*resultobj
;
11035 otk::Style
*arg1
= (otk::Style
*) 0 ;
11036 otk::BColor
*result
;
11037 PyObject
* obj0
= 0 ;
11039 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonPicUnfocus",&obj0
)) goto fail
;
11040 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11041 result
= (otk::BColor
*)(arg1
)->getButtonPicUnfocus();
11043 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11050 static PyObject
*_wrap_Style_getTitleFocus(PyObject
*self
, PyObject
*args
) {
11051 PyObject
*resultobj
;
11052 otk::Style
*arg1
= (otk::Style
*) 0 ;
11053 otk::BTexture
*result
;
11054 PyObject
* obj0
= 0 ;
11056 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getTitleFocus",&obj0
)) goto fail
;
11057 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11058 result
= (otk::BTexture
*)(arg1
)->getTitleFocus();
11060 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11067 static PyObject
*_wrap_Style_getTitleUnfocus(PyObject
*self
, PyObject
*args
) {
11068 PyObject
*resultobj
;
11069 otk::Style
*arg1
= (otk::Style
*) 0 ;
11070 otk::BTexture
*result
;
11071 PyObject
* obj0
= 0 ;
11073 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getTitleUnfocus",&obj0
)) goto fail
;
11074 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11075 result
= (otk::BTexture
*)(arg1
)->getTitleUnfocus();
11077 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11084 static PyObject
*_wrap_Style_getLabelFocus(PyObject
*self
, PyObject
*args
) {
11085 PyObject
*resultobj
;
11086 otk::Style
*arg1
= (otk::Style
*) 0 ;
11087 otk::BTexture
*result
;
11088 PyObject
* obj0
= 0 ;
11090 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getLabelFocus",&obj0
)) goto fail
;
11091 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11092 result
= (otk::BTexture
*)(arg1
)->getLabelFocus();
11094 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11101 static PyObject
*_wrap_Style_getLabelUnfocus(PyObject
*self
, PyObject
*args
) {
11102 PyObject
*resultobj
;
11103 otk::Style
*arg1
= (otk::Style
*) 0 ;
11104 otk::BTexture
*result
;
11105 PyObject
* obj0
= 0 ;
11107 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getLabelUnfocus",&obj0
)) goto fail
;
11108 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11109 result
= (otk::BTexture
*)(arg1
)->getLabelUnfocus();
11111 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11118 static PyObject
*_wrap_Style_getHandleFocus(PyObject
*self
, PyObject
*args
) {
11119 PyObject
*resultobj
;
11120 otk::Style
*arg1
= (otk::Style
*) 0 ;
11121 otk::BTexture
*result
;
11122 PyObject
* obj0
= 0 ;
11124 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getHandleFocus",&obj0
)) goto fail
;
11125 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11126 result
= (otk::BTexture
*)(arg1
)->getHandleFocus();
11128 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11135 static PyObject
*_wrap_Style_getHandleUnfocus(PyObject
*self
, PyObject
*args
) {
11136 PyObject
*resultobj
;
11137 otk::Style
*arg1
= (otk::Style
*) 0 ;
11138 otk::BTexture
*result
;
11139 PyObject
* obj0
= 0 ;
11141 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getHandleUnfocus",&obj0
)) goto fail
;
11142 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11143 result
= (otk::BTexture
*)(arg1
)->getHandleUnfocus();
11145 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11152 static PyObject
*_wrap_Style_getButtonFocus(PyObject
*self
, PyObject
*args
) {
11153 PyObject
*resultobj
;
11154 otk::Style
*arg1
= (otk::Style
*) 0 ;
11155 otk::BTexture
*result
;
11156 PyObject
* obj0
= 0 ;
11158 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonFocus",&obj0
)) goto fail
;
11159 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11160 result
= (otk::BTexture
*)(arg1
)->getButtonFocus();
11162 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11169 static PyObject
*_wrap_Style_getButtonUnfocus(PyObject
*self
, PyObject
*args
) {
11170 PyObject
*resultobj
;
11171 otk::Style
*arg1
= (otk::Style
*) 0 ;
11172 otk::BTexture
*result
;
11173 PyObject
* obj0
= 0 ;
11175 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonUnfocus",&obj0
)) goto fail
;
11176 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11177 result
= (otk::BTexture
*)(arg1
)->getButtonUnfocus();
11179 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11186 static PyObject
*_wrap_Style_getButtonPressedFocus(PyObject
*self
, PyObject
*args
) {
11187 PyObject
*resultobj
;
11188 otk::Style
*arg1
= (otk::Style
*) 0 ;
11189 otk::BTexture
*result
;
11190 PyObject
* obj0
= 0 ;
11192 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonPressedFocus",&obj0
)) goto fail
;
11193 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11194 result
= (otk::BTexture
*)(arg1
)->getButtonPressedFocus();
11196 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11203 static PyObject
*_wrap_Style_getButtonPressedUnfocus(PyObject
*self
, PyObject
*args
) {
11204 PyObject
*resultobj
;
11205 otk::Style
*arg1
= (otk::Style
*) 0 ;
11206 otk::BTexture
*result
;
11207 PyObject
* obj0
= 0 ;
11209 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonPressedUnfocus",&obj0
)) goto fail
;
11210 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11211 result
= (otk::BTexture
*)(arg1
)->getButtonPressedUnfocus();
11213 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11220 static PyObject
*_wrap_Style_getGripFocus(PyObject
*self
, PyObject
*args
) {
11221 PyObject
*resultobj
;
11222 otk::Style
*arg1
= (otk::Style
*) 0 ;
11223 otk::BTexture
*result
;
11224 PyObject
* obj0
= 0 ;
11226 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getGripFocus",&obj0
)) goto fail
;
11227 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11228 result
= (otk::BTexture
*)(arg1
)->getGripFocus();
11230 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11237 static PyObject
*_wrap_Style_getGripUnfocus(PyObject
*self
, PyObject
*args
) {
11238 PyObject
*resultobj
;
11239 otk::Style
*arg1
= (otk::Style
*) 0 ;
11240 otk::BTexture
*result
;
11241 PyObject
* obj0
= 0 ;
11243 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getGripUnfocus",&obj0
)) goto fail
;
11244 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11245 result
= (otk::BTexture
*)(arg1
)->getGripUnfocus();
11247 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11254 static PyObject
*_wrap_Style_getHandleWidth(PyObject
*self
, PyObject
*args
) {
11255 PyObject
*resultobj
;
11256 otk::Style
*arg1
= (otk::Style
*) 0 ;
11257 unsigned int result
;
11258 PyObject
* obj0
= 0 ;
11260 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getHandleWidth",&obj0
)) goto fail
;
11261 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11262 result
= (unsigned int)((otk::Style
const *)arg1
)->getHandleWidth();
11264 resultobj
= PyInt_FromLong((long)result
);
11271 static PyObject
*_wrap_Style_getBevelWidth(PyObject
*self
, PyObject
*args
) {
11272 PyObject
*resultobj
;
11273 otk::Style
*arg1
= (otk::Style
*) 0 ;
11274 unsigned int result
;
11275 PyObject
* obj0
= 0 ;
11277 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getBevelWidth",&obj0
)) goto fail
;
11278 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11279 result
= (unsigned int)((otk::Style
const *)arg1
)->getBevelWidth();
11281 resultobj
= PyInt_FromLong((long)result
);
11288 static PyObject
*_wrap_Style_getFrameWidth(PyObject
*self
, PyObject
*args
) {
11289 PyObject
*resultobj
;
11290 otk::Style
*arg1
= (otk::Style
*) 0 ;
11291 unsigned int result
;
11292 PyObject
* obj0
= 0 ;
11294 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getFrameWidth",&obj0
)) goto fail
;
11295 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11296 result
= (unsigned int)((otk::Style
const *)arg1
)->getFrameWidth();
11298 resultobj
= PyInt_FromLong((long)result
);
11305 static PyObject
*_wrap_Style_getBorderWidth(PyObject
*self
, PyObject
*args
) {
11306 PyObject
*resultobj
;
11307 otk::Style
*arg1
= (otk::Style
*) 0 ;
11308 unsigned int result
;
11309 PyObject
* obj0
= 0 ;
11311 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getBorderWidth",&obj0
)) goto fail
;
11312 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11313 result
= (unsigned int)((otk::Style
const *)arg1
)->getBorderWidth();
11315 resultobj
= PyInt_FromLong((long)result
);
11322 static PyObject
*_wrap_Style_getFont(PyObject
*self
, PyObject
*args
) {
11323 PyObject
*resultobj
;
11324 otk::Style
*arg1
= (otk::Style
*) 0 ;
11325 otk::BFont
*result
;
11326 PyObject
* obj0
= 0 ;
11328 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getFont",&obj0
)) goto fail
;
11329 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11331 otk::BFont
const &_result_ref
= ((otk::Style
const *)arg1
)->getFont();
11332 result
= (otk::BFont
*) &_result_ref
;
11335 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BFont
, 0);
11342 static PyObject
*_wrap_Style_setShadowFonts(PyObject
*self
, PyObject
*args
) {
11343 PyObject
*resultobj
;
11344 otk::Style
*arg1
= (otk::Style
*) 0 ;
11346 PyObject
* obj0
= 0 ;
11347 PyObject
* obj1
= 0 ;
11349 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_setShadowFonts",&obj0
,&obj1
)) goto fail
;
11350 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11351 arg2
= (bool) PyInt_AsLong(obj1
);
11352 if (PyErr_Occurred()) SWIG_fail
;
11353 (arg1
)->setShadowFonts(arg2
);
11355 Py_INCREF(Py_None
); resultobj
= Py_None
;
11362 static PyObject
*_wrap_Style_hasShadowFonts(PyObject
*self
, PyObject
*args
) {
11363 PyObject
*resultobj
;
11364 otk::Style
*arg1
= (otk::Style
*) 0 ;
11366 PyObject
* obj0
= 0 ;
11368 if(!PyArg_ParseTuple(args
,(char *)"O:Style_hasShadowFonts",&obj0
)) goto fail
;
11369 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11370 result
= (bool)((otk::Style
const *)arg1
)->hasShadowFonts();
11372 resultobj
= PyInt_FromLong((long)result
);
11379 static PyObject
*_wrap_Style_setAAFonts(PyObject
*self
, PyObject
*args
) {
11380 PyObject
*resultobj
;
11381 otk::Style
*arg1
= (otk::Style
*) 0 ;
11383 PyObject
* obj0
= 0 ;
11384 PyObject
* obj1
= 0 ;
11386 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_setAAFonts",&obj0
,&obj1
)) goto fail
;
11387 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11388 arg2
= (bool) PyInt_AsLong(obj1
);
11389 if (PyErr_Occurred()) SWIG_fail
;
11390 (arg1
)->setAAFonts(arg2
);
11392 Py_INCREF(Py_None
); resultobj
= Py_None
;
11399 static PyObject
*_wrap_Style_hasAAFonts(PyObject
*self
, PyObject
*args
) {
11400 PyObject
*resultobj
;
11401 otk::Style
*arg1
= (otk::Style
*) 0 ;
11403 PyObject
* obj0
= 0 ;
11405 if(!PyArg_ParseTuple(args
,(char *)"O:Style_hasAAFonts",&obj0
)) goto fail
;
11406 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11407 result
= (bool)((otk::Style
const *)arg1
)->hasAAFonts();
11409 resultobj
= PyInt_FromLong((long)result
);
11416 static PyObject
*_wrap_Style_textJustify(PyObject
*self
, PyObject
*args
) {
11417 PyObject
*resultobj
;
11418 otk::Style
*arg1
= (otk::Style
*) 0 ;
11420 PyObject
* obj0
= 0 ;
11422 if(!PyArg_ParseTuple(args
,(char *)"O:Style_textJustify",&obj0
)) goto fail
;
11423 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11424 result
= (int)(arg1
)->textJustify();
11426 resultobj
= PyInt_FromLong((long)result
);
11433 static PyObject
*_wrap_Style_bulletType(PyObject
*self
, PyObject
*args
) {
11434 PyObject
*resultobj
;
11435 otk::Style
*arg1
= (otk::Style
*) 0 ;
11437 PyObject
* obj0
= 0 ;
11439 if(!PyArg_ParseTuple(args
,(char *)"O:Style_bulletType",&obj0
)) goto fail
;
11440 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11441 result
= (int)(arg1
)->bulletType();
11443 resultobj
= PyInt_FromLong((long)result
);
11450 static PyObject
*_wrap_Style_getBorderColor(PyObject
*self
, PyObject
*args
) {
11451 PyObject
*resultobj
;
11452 otk::Style
*arg1
= (otk::Style
*) 0 ;
11453 otk::BColor
*result
;
11454 PyObject
* obj0
= 0 ;
11456 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getBorderColor",&obj0
)) goto fail
;
11457 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11458 result
= (otk::BColor
*)((otk::Style
const *)arg1
)->getBorderColor();
11460 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11467 static PyObject
*_wrap_Style_getFrameFocus(PyObject
*self
, PyObject
*args
) {
11468 PyObject
*resultobj
;
11469 otk::Style
*arg1
= (otk::Style
*) 0 ;
11470 otk::BTexture
*result
;
11471 PyObject
* obj0
= 0 ;
11473 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getFrameFocus",&obj0
)) goto fail
;
11474 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11475 result
= (otk::BTexture
*)((otk::Style
const *)arg1
)->getFrameFocus();
11477 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11484 static PyObject
*_wrap_Style_getFrameUnfocus(PyObject
*self
, PyObject
*args
) {
11485 PyObject
*resultobj
;
11486 otk::Style
*arg1
= (otk::Style
*) 0 ;
11487 otk::BTexture
*result
;
11488 PyObject
* obj0
= 0 ;
11490 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getFrameUnfocus",&obj0
)) goto fail
;
11491 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11492 result
= (otk::BTexture
*)((otk::Style
const *)arg1
)->getFrameUnfocus();
11494 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11501 static PyObject
*_wrap_Style_setImageControl(PyObject
*self
, PyObject
*args
) {
11502 PyObject
*resultobj
;
11503 otk::Style
*arg1
= (otk::Style
*) 0 ;
11504 otk::BImageControl
*arg2
= (otk::BImageControl
*) 0 ;
11505 PyObject
* obj0
= 0 ;
11506 PyObject
* obj1
= 0 ;
11508 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_setImageControl",&obj0
,&obj1
)) goto fail
;
11509 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11510 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11511 (arg1
)->setImageControl(arg2
);
11513 Py_INCREF(Py_None
); resultobj
= Py_None
;
11520 static PyObject
*_wrap_Style_getScreen(PyObject
*self
, PyObject
*args
) {
11521 PyObject
*resultobj
;
11522 otk::Style
*arg1
= (otk::Style
*) 0 ;
11523 unsigned int result
;
11524 PyObject
* obj0
= 0 ;
11526 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getScreen",&obj0
)) goto fail
;
11527 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11528 result
= (unsigned int)(arg1
)->getScreen();
11530 resultobj
= PyInt_FromLong((long)result
);
11537 static PyObject
* Style_swigregister(PyObject
*self
, PyObject
*args
) {
11539 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
11540 SWIG_TypeClientData(SWIGTYPE_p_otk__Style
, obj
);
11542 return Py_BuildValue((char *)"");
11544 static PyObject
*_wrap_new_BTexture__SWIG_0(PyObject
*self
, PyObject
*args
) {
11545 PyObject
*resultobj
;
11546 unsigned int arg1
= (unsigned int) ~(0u) ;
11547 otk::BImageControl
*arg2
= (otk::BImageControl
*) 0 ;
11548 otk::BTexture
*result
;
11549 PyObject
* obj0
= 0 ;
11550 PyObject
* obj1
= 0 ;
11552 if(!PyArg_ParseTuple(args
,(char *)"|OO:new_BTexture",&obj0
,&obj1
)) goto fail
;
11554 arg1
= (unsigned int) PyInt_AsLong(obj0
);
11555 if (PyErr_Occurred()) SWIG_fail
;
11558 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11560 result
= (otk::BTexture
*)new otk::BTexture(arg1
,arg2
);
11562 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 1);
11569 static PyObject
*_wrap_new_BTexture__SWIG_1(PyObject
*self
, PyObject
*args
) {
11570 PyObject
*resultobj
;
11571 std::string
*arg1
= 0 ;
11572 unsigned int arg2
= (unsigned int) ~(0u) ;
11573 otk::BImageControl
*arg3
= (otk::BImageControl
*) 0 ;
11574 otk::BTexture
*result
;
11575 std::string temp1
;
11576 PyObject
* obj0
= 0 ;
11577 PyObject
* obj1
= 0 ;
11578 PyObject
* obj2
= 0 ;
11580 if(!PyArg_ParseTuple(args
,(char *)"O|OO:new_BTexture",&obj0
,&obj1
,&obj2
)) goto fail
;
11582 if (PyString_Check(obj0
)) {
11583 temp1
= std::string(PyString_AsString(obj0
));
11586 SWIG_exception(SWIG_TypeError
, "string expected");
11590 arg2
= (unsigned int) PyInt_AsLong(obj1
);
11591 if (PyErr_Occurred()) SWIG_fail
;
11594 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11596 result
= (otk::BTexture
*)new otk::BTexture((std::string
const &)*arg1
,arg2
,arg3
);
11598 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 1);
11605 static PyObject
*_wrap_new_BTexture(PyObject
*self
, PyObject
*args
) {
11610 argc
= PyObject_Length(args
);
11611 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
11612 argv
[ii
] = PyTuple_GetItem(args
,ii
);
11614 if ((argc
>= 0) && (argc
<= 2)) {
11617 return _wrap_new_BTexture__SWIG_0(self
,args
);
11620 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
11624 return _wrap_new_BTexture__SWIG_0(self
,args
);
11628 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__BImageControl
, 0) == -1) {
11636 return _wrap_new_BTexture__SWIG_0(self
,args
);
11640 if ((argc
>= 1) && (argc
<= 3)) {
11643 _v
= PyString_Check(argv
[0]) ? 1 : 0;
11647 return _wrap_new_BTexture__SWIG_1(self
,args
);
11650 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
11654 return _wrap_new_BTexture__SWIG_1(self
,args
);
11658 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_otk__BImageControl
, 0) == -1) {
11666 return _wrap_new_BTexture__SWIG_1(self
,args
);
11672 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_BTexture'");
11677 static PyObject
*_wrap_BTexture_setColor(PyObject
*self
, PyObject
*args
) {
11678 PyObject
*resultobj
;
11679 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11680 otk::BColor
*arg2
= 0 ;
11681 PyObject
* obj0
= 0 ;
11682 PyObject
* obj1
= 0 ;
11684 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setColor",&obj0
,&obj1
)) goto fail
;
11685 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11686 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11687 if (arg2
== NULL
) {
11688 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
11690 (arg1
)->setColor((otk::BColor
const &)*arg2
);
11692 Py_INCREF(Py_None
); resultobj
= Py_None
;
11699 static PyObject
*_wrap_BTexture_setColorTo(PyObject
*self
, PyObject
*args
) {
11700 PyObject
*resultobj
;
11701 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11702 otk::BColor
*arg2
= 0 ;
11703 PyObject
* obj0
= 0 ;
11704 PyObject
* obj1
= 0 ;
11706 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setColorTo",&obj0
,&obj1
)) goto fail
;
11707 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11708 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11709 if (arg2
== NULL
) {
11710 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
11712 (arg1
)->setColorTo((otk::BColor
const &)*arg2
);
11714 Py_INCREF(Py_None
); resultobj
= Py_None
;
11721 static PyObject
*_wrap_BTexture_setBorderColor(PyObject
*self
, PyObject
*args
) {
11722 PyObject
*resultobj
;
11723 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11724 otk::BColor
*arg2
= 0 ;
11725 PyObject
* obj0
= 0 ;
11726 PyObject
* obj1
= 0 ;
11728 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setBorderColor",&obj0
,&obj1
)) goto fail
;
11729 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11730 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11731 if (arg2
== NULL
) {
11732 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
11734 (arg1
)->setBorderColor((otk::BColor
const &)*arg2
);
11736 Py_INCREF(Py_None
); resultobj
= Py_None
;
11743 static PyObject
*_wrap_BTexture_color(PyObject
*self
, PyObject
*args
) {
11744 PyObject
*resultobj
;
11745 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11746 otk::BColor
*result
;
11747 PyObject
* obj0
= 0 ;
11749 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_color",&obj0
)) goto fail
;
11750 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11752 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->color();
11753 result
= (otk::BColor
*) &_result_ref
;
11756 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11763 static PyObject
*_wrap_BTexture_colorTo(PyObject
*self
, PyObject
*args
) {
11764 PyObject
*resultobj
;
11765 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11766 otk::BColor
*result
;
11767 PyObject
* obj0
= 0 ;
11769 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_colorTo",&obj0
)) goto fail
;
11770 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11772 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->colorTo();
11773 result
= (otk::BColor
*) &_result_ref
;
11776 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11783 static PyObject
*_wrap_BTexture_lightColor(PyObject
*self
, PyObject
*args
) {
11784 PyObject
*resultobj
;
11785 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11786 otk::BColor
*result
;
11787 PyObject
* obj0
= 0 ;
11789 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_lightColor",&obj0
)) goto fail
;
11790 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11792 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->lightColor();
11793 result
= (otk::BColor
*) &_result_ref
;
11796 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11803 static PyObject
*_wrap_BTexture_shadowColor(PyObject
*self
, PyObject
*args
) {
11804 PyObject
*resultobj
;
11805 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11806 otk::BColor
*result
;
11807 PyObject
* obj0
= 0 ;
11809 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_shadowColor",&obj0
)) goto fail
;
11810 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11812 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->shadowColor();
11813 result
= (otk::BColor
*) &_result_ref
;
11816 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11823 static PyObject
*_wrap_BTexture_borderColor(PyObject
*self
, PyObject
*args
) {
11824 PyObject
*resultobj
;
11825 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11826 otk::BColor
*result
;
11827 PyObject
* obj0
= 0 ;
11829 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_borderColor",&obj0
)) goto fail
;
11830 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11832 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->borderColor();
11833 result
= (otk::BColor
*) &_result_ref
;
11836 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11843 static PyObject
*_wrap_BTexture_texture(PyObject
*self
, PyObject
*args
) {
11844 PyObject
*resultobj
;
11845 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11846 unsigned long result
;
11847 PyObject
* obj0
= 0 ;
11849 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_texture",&obj0
)) goto fail
;
11850 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11851 result
= (unsigned long)((otk::BTexture
const *)arg1
)->texture();
11853 resultobj
= PyInt_FromLong((long)result
);
11860 static PyObject
*_wrap_BTexture_setTexture(PyObject
*self
, PyObject
*args
) {
11861 PyObject
*resultobj
;
11862 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11863 unsigned long arg2
;
11864 PyObject
* obj0
= 0 ;
11865 PyObject
* obj1
= 0 ;
11867 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setTexture",&obj0
,&obj1
)) goto fail
;
11868 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11869 arg2
= (unsigned long) PyInt_AsLong(obj1
);
11870 if (PyErr_Occurred()) SWIG_fail
;
11871 (arg1
)->setTexture(arg2
);
11873 Py_INCREF(Py_None
); resultobj
= Py_None
;
11880 static PyObject
*_wrap_BTexture_addTexture(PyObject
*self
, PyObject
*args
) {
11881 PyObject
*resultobj
;
11882 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11883 unsigned long arg2
;
11884 PyObject
* obj0
= 0 ;
11885 PyObject
* obj1
= 0 ;
11887 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_addTexture",&obj0
,&obj1
)) goto fail
;
11888 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11889 arg2
= (unsigned long) PyInt_AsLong(obj1
);
11890 if (PyErr_Occurred()) SWIG_fail
;
11891 (arg1
)->addTexture(arg2
);
11893 Py_INCREF(Py_None
); resultobj
= Py_None
;
11900 static PyObject
*_wrap_BTexture_equals(PyObject
*self
, PyObject
*args
) {
11901 PyObject
*resultobj
;
11902 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11903 otk::BTexture
*arg2
= 0 ;
11905 PyObject
* obj0
= 0 ;
11906 PyObject
* obj1
= 0 ;
11908 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_equals",&obj0
,&obj1
)) goto fail
;
11909 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11910 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11911 if (arg2
== NULL
) {
11912 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
11914 result
= (bool)(arg1
)->operator ==((otk::BTexture
const &)*arg2
);
11916 resultobj
= PyInt_FromLong((long)result
);
11923 static PyObject
*_wrap_BTexture_screen(PyObject
*self
, PyObject
*args
) {
11924 PyObject
*resultobj
;
11925 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11926 unsigned int result
;
11927 PyObject
* obj0
= 0 ;
11929 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_screen",&obj0
)) goto fail
;
11930 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11931 result
= (unsigned int)((otk::BTexture
const *)arg1
)->screen();
11933 resultobj
= PyInt_FromLong((long)result
);
11940 static PyObject
*_wrap_BTexture_setScreen(PyObject
*self
, PyObject
*args
) {
11941 PyObject
*resultobj
;
11942 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11943 unsigned int arg2
;
11944 PyObject
* obj0
= 0 ;
11945 PyObject
* obj1
= 0 ;
11947 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setScreen",&obj0
,&obj1
)) goto fail
;
11948 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11949 arg2
= (unsigned int) PyInt_AsLong(obj1
);
11950 if (PyErr_Occurred()) SWIG_fail
;
11951 (arg1
)->setScreen(arg2
);
11953 Py_INCREF(Py_None
); resultobj
= Py_None
;
11960 static PyObject
*_wrap_BTexture_setImageControl(PyObject
*self
, PyObject
*args
) {
11961 PyObject
*resultobj
;
11962 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11963 otk::BImageControl
*arg2
= (otk::BImageControl
*) 0 ;
11964 PyObject
* obj0
= 0 ;
11965 PyObject
* obj1
= 0 ;
11967 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setImageControl",&obj0
,&obj1
)) goto fail
;
11968 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11969 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11970 (arg1
)->setImageControl(arg2
);
11972 Py_INCREF(Py_None
); resultobj
= Py_None
;
11979 static PyObject
*_wrap_BTexture_description(PyObject
*self
, PyObject
*args
) {
11980 PyObject
*resultobj
;
11981 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11982 std::string
*result
;
11983 PyObject
* obj0
= 0 ;
11985 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_description",&obj0
)) goto fail
;
11986 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11988 std::string
const &_result_ref
= ((otk::BTexture
const *)arg1
)->description();
11989 result
= (std::string
*) &_result_ref
;
11993 resultobj
= PyString_FromString(result
->c_str());
12001 static PyObject
*_wrap_BTexture_setDescription(PyObject
*self
, PyObject
*args
) {
12002 PyObject
*resultobj
;
12003 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12004 std::string
*arg2
= 0 ;
12005 std::string temp2
;
12006 PyObject
* obj0
= 0 ;
12007 PyObject
* obj1
= 0 ;
12009 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setDescription",&obj0
,&obj1
)) goto fail
;
12010 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12012 if (PyString_Check(obj1
)) {
12013 temp2
= std::string(PyString_AsString(obj1
));
12016 SWIG_exception(SWIG_TypeError
, "string expected");
12019 (arg1
)->setDescription((std::string
const &)*arg2
);
12021 Py_INCREF(Py_None
); resultobj
= Py_None
;
12028 static PyObject
*_wrap_BTexture_render(PyObject
*self
, PyObject
*args
) {
12029 PyObject
*resultobj
;
12030 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12031 unsigned int arg2
;
12032 unsigned int arg3
;
12033 Pixmap arg4
= (Pixmap
) (Pixmap
)0 ;
12036 PyObject
* obj0
= 0 ;
12037 PyObject
* obj1
= 0 ;
12038 PyObject
* obj2
= 0 ;
12039 PyObject
* obj3
= 0 ;
12041 if(!PyArg_ParseTuple(args
,(char *)"OOO|O:BTexture_render",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
12042 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12043 arg2
= (unsigned int) PyInt_AsLong(obj1
);
12044 if (PyErr_Occurred()) SWIG_fail
;
12045 arg3
= (unsigned int) PyInt_AsLong(obj2
);
12046 if (PyErr_Occurred()) SWIG_fail
;
12048 if ((SWIG_ConvertPtr(obj3
,(void **) &argp4
, SWIGTYPE_p_Pixmap
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
12051 result
= (arg1
)->render(arg2
,arg3
,arg4
);
12054 Pixmap
* resultptr
;
12055 resultptr
= new Pixmap((Pixmap
&) result
);
12056 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Pixmap
, 1);
12064 static PyObject
*_wrap_delete_BTexture(PyObject
*self
, PyObject
*args
) {
12065 PyObject
*resultobj
;
12066 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12067 PyObject
* obj0
= 0 ;
12069 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BTexture",&obj0
)) goto fail
;
12070 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12073 Py_INCREF(Py_None
); resultobj
= Py_None
;
12080 static PyObject
* BTexture_swigregister(PyObject
*self
, PyObject
*args
) {
12082 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
12083 SWIG_TypeClientData(SWIGTYPE_p_otk__BTexture
, obj
);
12085 return Py_BuildValue((char *)"");
12087 static PyObject
*_wrap_new_OBTimer(PyObject
*self
, PyObject
*args
) {
12088 PyObject
*resultobj
;
12089 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12090 otk::OBTimeoutHandler arg2
= (otk::OBTimeoutHandler
) 0 ;
12091 otk::OBTimeoutData arg3
= (otk::OBTimeoutData
) 0 ;
12092 otk::OBTimer
*result
;
12093 PyObject
* obj0
= 0 ;
12094 PyObject
* obj1
= 0 ;
12095 PyObject
* obj2
= 0 ;
12097 if(!PyArg_ParseTuple(args
,(char *)"OOO:new_OBTimer",&obj0
,&obj1
,&obj2
)) goto fail
;
12098 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12099 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_otk__OBTimeoutHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12100 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, 0, SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12101 result
= (otk::OBTimer
*)new otk::OBTimer(arg1
,arg2
,arg3
);
12103 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OBTimer
, 1);
12110 static PyObject
*_wrap_delete_OBTimer(PyObject
*self
, PyObject
*args
) {
12111 PyObject
*resultobj
;
12112 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12113 PyObject
* obj0
= 0 ;
12115 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OBTimer",&obj0
)) goto fail
;
12116 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12119 Py_INCREF(Py_None
); resultobj
= Py_None
;
12126 static PyObject
*_wrap_OBTimer_fire(PyObject
*self
, PyObject
*args
) {
12127 PyObject
*resultobj
;
12128 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12129 PyObject
* obj0
= 0 ;
12131 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_fire",&obj0
)) goto fail
;
12132 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12135 Py_INCREF(Py_None
); resultobj
= Py_None
;
12142 static PyObject
*_wrap_OBTimer_timing(PyObject
*self
, PyObject
*args
) {
12143 PyObject
*resultobj
;
12144 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12146 PyObject
* obj0
= 0 ;
12148 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_timing",&obj0
)) goto fail
;
12149 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12150 result
= (bool)((otk::OBTimer
const *)arg1
)->timing();
12152 resultobj
= PyInt_FromLong((long)result
);
12159 static PyObject
*_wrap_OBTimer_recurring(PyObject
*self
, PyObject
*args
) {
12160 PyObject
*resultobj
;
12161 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12163 PyObject
* obj0
= 0 ;
12165 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_recurring",&obj0
)) goto fail
;
12166 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12167 result
= (bool)((otk::OBTimer
const *)arg1
)->recurring();
12169 resultobj
= PyInt_FromLong((long)result
);
12176 static PyObject
*_wrap_OBTimer_timeout(PyObject
*self
, PyObject
*args
) {
12177 PyObject
*resultobj
;
12178 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12180 PyObject
* obj0
= 0 ;
12182 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_timeout",&obj0
)) goto fail
;
12183 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12185 timeval
const &_result_ref
= ((otk::OBTimer
const *)arg1
)->timeout();
12186 result
= (timeval
*) &_result_ref
;
12189 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_timeval
, 0);
12196 static PyObject
*_wrap_OBTimer_startTime(PyObject
*self
, PyObject
*args
) {
12197 PyObject
*resultobj
;
12198 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12200 PyObject
* obj0
= 0 ;
12202 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_startTime",&obj0
)) goto fail
;
12203 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12205 timeval
const &_result_ref
= ((otk::OBTimer
const *)arg1
)->startTime();
12206 result
= (timeval
*) &_result_ref
;
12209 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_timeval
, 0);
12216 static PyObject
*_wrap_OBTimer_remainingTime(PyObject
*self
, PyObject
*args
) {
12217 PyObject
*resultobj
;
12218 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12219 timeval
*arg2
= 0 ;
12221 PyObject
* obj0
= 0 ;
12222 PyObject
* obj1
= 0 ;
12224 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimer_remainingTime",&obj0
,&obj1
)) goto fail
;
12225 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12226 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_timeval
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12227 if (arg2
== NULL
) {
12228 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
12230 result
= ((otk::OBTimer
const *)arg1
)->remainingTime((timeval
const &)*arg2
);
12233 timeval
* resultptr
;
12234 resultptr
= new timeval((timeval
&) result
);
12235 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_timeval
, 1);
12243 static PyObject
*_wrap_OBTimer_shouldFire(PyObject
*self
, PyObject
*args
) {
12244 PyObject
*resultobj
;
12245 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12246 timeval
*arg2
= 0 ;
12248 PyObject
* obj0
= 0 ;
12249 PyObject
* obj1
= 0 ;
12251 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimer_shouldFire",&obj0
,&obj1
)) goto fail
;
12252 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12253 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_timeval
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12254 if (arg2
== NULL
) {
12255 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
12257 result
= (bool)((otk::OBTimer
const *)arg1
)->shouldFire((timeval
const &)*arg2
);
12259 resultobj
= PyInt_FromLong((long)result
);
12266 static PyObject
*_wrap_OBTimer_endTime(PyObject
*self
, PyObject
*args
) {
12267 PyObject
*resultobj
;
12268 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12270 PyObject
* obj0
= 0 ;
12272 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_endTime",&obj0
)) goto fail
;
12273 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12274 result
= ((otk::OBTimer
const *)arg1
)->endTime();
12277 timeval
* resultptr
;
12278 resultptr
= new timeval((timeval
&) result
);
12279 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_timeval
, 1);
12287 static PyObject
*_wrap_OBTimer_setRecurring(PyObject
*self
, PyObject
*args
) {
12288 PyObject
*resultobj
;
12289 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12291 PyObject
* obj0
= 0 ;
12292 PyObject
* obj1
= 0 ;
12294 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimer_setRecurring",&obj0
,&obj1
)) goto fail
;
12295 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12296 arg2
= (bool) PyInt_AsLong(obj1
);
12297 if (PyErr_Occurred()) SWIG_fail
;
12298 (arg1
)->setRecurring(arg2
);
12300 Py_INCREF(Py_None
); resultobj
= Py_None
;
12307 static PyObject
*_wrap_OBTimer_setTimeout__SWIG_0(PyObject
*self
, PyObject
*args
) {
12308 PyObject
*resultobj
;
12309 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12311 PyObject
* obj0
= 0 ;
12313 if(!PyArg_ParseTuple(args
,(char *)"Ol:OBTimer_setTimeout",&obj0
,&arg2
)) goto fail
;
12314 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12315 (arg1
)->setTimeout(arg2
);
12317 Py_INCREF(Py_None
); resultobj
= Py_None
;
12324 static PyObject
*_wrap_OBTimer_setTimeout__SWIG_1(PyObject
*self
, PyObject
*args
) {
12325 PyObject
*resultobj
;
12326 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12327 timeval
*arg2
= 0 ;
12328 PyObject
* obj0
= 0 ;
12329 PyObject
* obj1
= 0 ;
12331 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimer_setTimeout",&obj0
,&obj1
)) goto fail
;
12332 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12333 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_timeval
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12334 if (arg2
== NULL
) {
12335 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
12337 (arg1
)->setTimeout((timeval
const &)*arg2
);
12339 Py_INCREF(Py_None
); resultobj
= Py_None
;
12346 static PyObject
*_wrap_OBTimer_setTimeout(PyObject
*self
, PyObject
*args
) {
12351 argc
= PyObject_Length(args
);
12352 for (ii
= 0; (ii
< argc
) && (ii
< 2); ii
++) {
12353 argv
[ii
] = PyTuple_GetItem(args
,ii
);
12359 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBTimer
, 0) == -1) {
12369 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_timeval
, 0) == -1) {
12377 return _wrap_OBTimer_setTimeout__SWIG_1(self
,args
);
12385 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBTimer
, 0) == -1) {
12394 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
12397 return _wrap_OBTimer_setTimeout__SWIG_0(self
,args
);
12402 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OBTimer_setTimeout'");
12407 static PyObject
*_wrap_OBTimer_start(PyObject
*self
, PyObject
*args
) {
12408 PyObject
*resultobj
;
12409 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12410 PyObject
* obj0
= 0 ;
12412 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_start",&obj0
)) goto fail
;
12413 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12416 Py_INCREF(Py_None
); resultobj
= Py_None
;
12423 static PyObject
*_wrap_OBTimer_stop(PyObject
*self
, PyObject
*args
) {
12424 PyObject
*resultobj
;
12425 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12426 PyObject
* obj0
= 0 ;
12428 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_stop",&obj0
)) goto fail
;
12429 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12432 Py_INCREF(Py_None
); resultobj
= Py_None
;
12439 static PyObject
* OBTimer_swigregister(PyObject
*self
, PyObject
*args
) {
12441 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
12442 SWIG_TypeClientData(SWIGTYPE_p_otk__OBTimer
, obj
);
12444 return Py_BuildValue((char *)"");
12446 static PyObject
*_wrap_new_OBTimerQueueManager(PyObject
*self
, PyObject
*args
) {
12447 PyObject
*resultobj
;
12448 otk::OBTimerQueueManager
*result
;
12450 if(!PyArg_ParseTuple(args
,(char *)":new_OBTimerQueueManager")) goto fail
;
12451 result
= (otk::OBTimerQueueManager
*)new otk::OBTimerQueueManager();
12453 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OBTimerQueueManager
, 1);
12460 static PyObject
*_wrap_delete_OBTimerQueueManager(PyObject
*self
, PyObject
*args
) {
12461 PyObject
*resultobj
;
12462 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12463 PyObject
* obj0
= 0 ;
12465 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OBTimerQueueManager",&obj0
)) goto fail
;
12466 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12469 Py_INCREF(Py_None
); resultobj
= Py_None
;
12476 static PyObject
*_wrap_OBTimerQueueManager_fire(PyObject
*self
, PyObject
*args
) {
12477 PyObject
*resultobj
;
12478 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12479 PyObject
* obj0
= 0 ;
12481 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimerQueueManager_fire",&obj0
)) goto fail
;
12482 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12485 Py_INCREF(Py_None
); resultobj
= Py_None
;
12492 static PyObject
*_wrap_OBTimerQueueManager_addTimer(PyObject
*self
, PyObject
*args
) {
12493 PyObject
*resultobj
;
12494 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12495 otk::OBTimer
*arg2
= (otk::OBTimer
*) 0 ;
12496 PyObject
* obj0
= 0 ;
12497 PyObject
* obj1
= 0 ;
12499 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimerQueueManager_addTimer",&obj0
,&obj1
)) goto fail
;
12500 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12501 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12502 (arg1
)->addTimer(arg2
);
12504 Py_INCREF(Py_None
); resultobj
= Py_None
;
12511 static PyObject
*_wrap_OBTimerQueueManager_removeTimer(PyObject
*self
, PyObject
*args
) {
12512 PyObject
*resultobj
;
12513 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12514 otk::OBTimer
*arg2
= (otk::OBTimer
*) 0 ;
12515 PyObject
* obj0
= 0 ;
12516 PyObject
* obj1
= 0 ;
12518 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimerQueueManager_removeTimer",&obj0
,&obj1
)) goto fail
;
12519 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12520 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12521 (arg1
)->removeTimer(arg2
);
12523 Py_INCREF(Py_None
); resultobj
= Py_None
;
12530 static PyObject
* OBTimerQueueManager_swigregister(PyObject
*self
, PyObject
*args
) {
12532 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
12533 SWIG_TypeClientData(SWIGTYPE_p_otk__OBTimerQueueManager
, obj
);
12535 return Py_BuildValue((char *)"");
12537 static int _wrap_BSENTINEL_set(PyObject
*_val
) {
12538 PyErr_SetString(PyExc_TypeError
,"Variable BSENTINEL is read-only.");
12543 static PyObject
*_wrap_BSENTINEL_get() {
12546 pyobj
= PyInt_FromLong((long)otk::BSENTINEL
);
12551 static PyObject
*_wrap_expandTilde(PyObject
*self
, PyObject
*args
) {
12552 PyObject
*resultobj
;
12553 std::string
*arg1
= 0 ;
12554 std::string result
;
12555 std::string temp1
;
12556 PyObject
* obj0
= 0 ;
12558 if(!PyArg_ParseTuple(args
,(char *)"O:expandTilde",&obj0
)) goto fail
;
12560 if (PyString_Check(obj0
)) {
12561 temp1
= std::string(PyString_AsString(obj0
));
12564 SWIG_exception(SWIG_TypeError
, "string expected");
12567 result
= otk::expandTilde((std::string
const &)*arg1
);
12570 resultobj
= PyString_FromString((&result
)->c_str());
12578 static PyObject
*_wrap_bexec(PyObject
*self
, PyObject
*args
) {
12579 PyObject
*resultobj
;
12580 std::string
*arg1
= 0 ;
12581 std::string
*arg2
= 0 ;
12582 std::string temp1
;
12583 std::string temp2
;
12584 PyObject
* obj0
= 0 ;
12585 PyObject
* obj1
= 0 ;
12587 if(!PyArg_ParseTuple(args
,(char *)"OO:bexec",&obj0
,&obj1
)) goto fail
;
12589 if (PyString_Check(obj0
)) {
12590 temp1
= std::string(PyString_AsString(obj0
));
12593 SWIG_exception(SWIG_TypeError
, "string expected");
12597 if (PyString_Check(obj1
)) {
12598 temp2
= std::string(PyString_AsString(obj1
));
12601 SWIG_exception(SWIG_TypeError
, "string expected");
12604 otk::bexec((std::string
const &)*arg1
,(std::string
const &)*arg2
);
12606 Py_INCREF(Py_None
); resultobj
= Py_None
;
12613 static PyObject
*_wrap_textPropertyToString(PyObject
*self
, PyObject
*args
) {
12614 PyObject
*resultobj
;
12615 Display
*arg1
= (Display
*) 0 ;
12616 XTextProperty
*arg2
= 0 ;
12617 std::string result
;
12618 PyObject
* obj0
= 0 ;
12619 PyObject
* obj1
= 0 ;
12621 if(!PyArg_ParseTuple(args
,(char *)"OO:textPropertyToString",&obj0
,&obj1
)) goto fail
;
12622 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12623 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XTextProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12624 if (arg2
== NULL
) {
12625 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
12627 result
= otk::textPropertyToString(arg1
,*arg2
);
12630 resultobj
= PyString_FromString((&result
)->c_str());
12638 static PyObject
*_wrap_itostring_unsigned_long(PyObject
*self
, PyObject
*args
) {
12639 PyObject
*resultobj
;
12640 unsigned long arg1
;
12641 std::string result
;
12642 PyObject
* obj0
= 0 ;
12644 if(!PyArg_ParseTuple(args
,(char *)"O:itostring_unsigned_long",&obj0
)) goto fail
;
12645 arg1
= (unsigned long) PyInt_AsLong(obj0
);
12646 if (PyErr_Occurred()) SWIG_fail
;
12647 result
= otk::itostring(arg1
);
12650 resultobj
= PyString_FromString((&result
)->c_str());
12658 static PyObject
*_wrap_itostring_long(PyObject
*self
, PyObject
*args
) {
12659 PyObject
*resultobj
;
12661 std::string result
;
12663 if(!PyArg_ParseTuple(args
,(char *)"l:itostring_long",&arg1
)) goto fail
;
12664 result
= otk::itostring(arg1
);
12667 resultobj
= PyString_FromString((&result
)->c_str());
12675 static PyObject
*_wrap_itostring_unsigned(PyObject
*self
, PyObject
*args
) {
12676 PyObject
*resultobj
;
12677 unsigned int arg1
;
12678 std::string result
;
12679 PyObject
* obj0
= 0 ;
12681 if(!PyArg_ParseTuple(args
,(char *)"O:itostring_unsigned",&obj0
)) goto fail
;
12682 arg1
= (unsigned int) PyInt_AsLong(obj0
);
12683 if (PyErr_Occurred()) SWIG_fail
;
12684 result
= otk::itostring(arg1
);
12687 resultobj
= PyString_FromString((&result
)->c_str());
12695 static PyObject
*_wrap_itostring(PyObject
*self
, PyObject
*args
) {
12696 PyObject
*resultobj
;
12698 std::string result
;
12700 if(!PyArg_ParseTuple(args
,(char *)"i:itostring",&arg1
)) goto fail
;
12701 result
= otk::itostring(arg1
);
12704 resultobj
= PyString_FromString((&result
)->c_str());
12712 static PyObject
*_wrap_basename(PyObject
*self
, PyObject
*args
) {
12713 PyObject
*resultobj
;
12714 std::string
*arg1
= 0 ;
12715 std::string result
;
12716 std::string temp1
;
12717 PyObject
* obj0
= 0 ;
12719 if(!PyArg_ParseTuple(args
,(char *)"O:basename",&obj0
)) goto fail
;
12721 if (PyString_Check(obj0
)) {
12722 temp1
= std::string(PyString_AsString(obj0
));
12725 SWIG_exception(SWIG_TypeError
, "string expected");
12728 result
= basename((std::string
const &)*arg1
);
12731 resultobj
= PyString_FromString((&result
)->c_str());
12739 static PyMethodDef SwigMethods
[] = {
12740 { (char *)"new_OtkEventDispatcher", _wrap_new_OtkEventDispatcher
, METH_VARARGS
},
12741 { (char *)"delete_OtkEventDispatcher", _wrap_delete_OtkEventDispatcher
, METH_VARARGS
},
12742 { (char *)"OtkEventDispatcher_clearAllHandlers", _wrap_OtkEventDispatcher_clearAllHandlers
, METH_VARARGS
},
12743 { (char *)"OtkEventDispatcher_registerHandler", _wrap_OtkEventDispatcher_registerHandler
, METH_VARARGS
},
12744 { (char *)"OtkEventDispatcher_clearHandler", _wrap_OtkEventDispatcher_clearHandler
, METH_VARARGS
},
12745 { (char *)"OtkEventDispatcher_dispatchEvents", _wrap_OtkEventDispatcher_dispatchEvents
, METH_VARARGS
},
12746 { (char *)"OtkEventDispatcher_setFallbackHandler", _wrap_OtkEventDispatcher_setFallbackHandler
, METH_VARARGS
},
12747 { (char *)"OtkEventDispatcher_getFallbackHandler", _wrap_OtkEventDispatcher_getFallbackHandler
, METH_VARARGS
},
12748 { (char *)"OtkEventDispatcher_setMasterHandler", _wrap_OtkEventDispatcher_setMasterHandler
, METH_VARARGS
},
12749 { (char *)"OtkEventDispatcher_getMasterHandler", _wrap_OtkEventDispatcher_getMasterHandler
, METH_VARARGS
},
12750 { (char *)"OtkEventDispatcher_findHandler", _wrap_OtkEventDispatcher_findHandler
, METH_VARARGS
},
12751 { (char *)"OtkEventDispatcher_swigregister", OtkEventDispatcher_swigregister
, METH_VARARGS
},
12752 { (char *)"OtkEventHandler_handle", _wrap_OtkEventHandler_handle
, METH_VARARGS
},
12753 { (char *)"OtkEventHandler_keyPressHandler", _wrap_OtkEventHandler_keyPressHandler
, METH_VARARGS
},
12754 { (char *)"OtkEventHandler_keyReleaseHandler", _wrap_OtkEventHandler_keyReleaseHandler
, METH_VARARGS
},
12755 { (char *)"OtkEventHandler_buttonPressHandler", _wrap_OtkEventHandler_buttonPressHandler
, METH_VARARGS
},
12756 { (char *)"OtkEventHandler_buttonReleaseHandler", _wrap_OtkEventHandler_buttonReleaseHandler
, METH_VARARGS
},
12757 { (char *)"OtkEventHandler_motionHandler", _wrap_OtkEventHandler_motionHandler
, METH_VARARGS
},
12758 { (char *)"OtkEventHandler_enterHandler", _wrap_OtkEventHandler_enterHandler
, METH_VARARGS
},
12759 { (char *)"OtkEventHandler_leaveHandler", _wrap_OtkEventHandler_leaveHandler
, METH_VARARGS
},
12760 { (char *)"OtkEventHandler_focusHandler", _wrap_OtkEventHandler_focusHandler
, METH_VARARGS
},
12761 { (char *)"OtkEventHandler_unfocusHandler", _wrap_OtkEventHandler_unfocusHandler
, METH_VARARGS
},
12762 { (char *)"OtkEventHandler_exposeHandler", _wrap_OtkEventHandler_exposeHandler
, METH_VARARGS
},
12763 { (char *)"OtkEventHandler_graphicsExposeHandler", _wrap_OtkEventHandler_graphicsExposeHandler
, METH_VARARGS
},
12764 { (char *)"OtkEventHandler_noExposeEventHandler", _wrap_OtkEventHandler_noExposeEventHandler
, METH_VARARGS
},
12765 { (char *)"OtkEventHandler_circulateRequestHandler", _wrap_OtkEventHandler_circulateRequestHandler
, METH_VARARGS
},
12766 { (char *)"OtkEventHandler_configureRequestHandler", _wrap_OtkEventHandler_configureRequestHandler
, METH_VARARGS
},
12767 { (char *)"OtkEventHandler_mapRequestHandler", _wrap_OtkEventHandler_mapRequestHandler
, METH_VARARGS
},
12768 { (char *)"OtkEventHandler_resizeRequestHandler", _wrap_OtkEventHandler_resizeRequestHandler
, METH_VARARGS
},
12769 { (char *)"OtkEventHandler_circulateHandler", _wrap_OtkEventHandler_circulateHandler
, METH_VARARGS
},
12770 { (char *)"OtkEventHandler_configureHandler", _wrap_OtkEventHandler_configureHandler
, METH_VARARGS
},
12771 { (char *)"OtkEventHandler_createHandler", _wrap_OtkEventHandler_createHandler
, METH_VARARGS
},
12772 { (char *)"OtkEventHandler_destroyHandler", _wrap_OtkEventHandler_destroyHandler
, METH_VARARGS
},
12773 { (char *)"OtkEventHandler_gravityHandler", _wrap_OtkEventHandler_gravityHandler
, METH_VARARGS
},
12774 { (char *)"OtkEventHandler_mapHandler", _wrap_OtkEventHandler_mapHandler
, METH_VARARGS
},
12775 { (char *)"OtkEventHandler_mappingHandler", _wrap_OtkEventHandler_mappingHandler
, METH_VARARGS
},
12776 { (char *)"OtkEventHandler_reparentHandler", _wrap_OtkEventHandler_reparentHandler
, METH_VARARGS
},
12777 { (char *)"OtkEventHandler_unmapHandler", _wrap_OtkEventHandler_unmapHandler
, METH_VARARGS
},
12778 { (char *)"OtkEventHandler_visibilityHandler", _wrap_OtkEventHandler_visibilityHandler
, METH_VARARGS
},
12779 { (char *)"OtkEventHandler_colorMapHandler", _wrap_OtkEventHandler_colorMapHandler
, METH_VARARGS
},
12780 { (char *)"OtkEventHandler_propertyHandler", _wrap_OtkEventHandler_propertyHandler
, METH_VARARGS
},
12781 { (char *)"OtkEventHandler_selectionClearHandler", _wrap_OtkEventHandler_selectionClearHandler
, METH_VARARGS
},
12782 { (char *)"OtkEventHandler_selectionHandler", _wrap_OtkEventHandler_selectionHandler
, METH_VARARGS
},
12783 { (char *)"OtkEventHandler_selectionRequestHandler", _wrap_OtkEventHandler_selectionRequestHandler
, METH_VARARGS
},
12784 { (char *)"OtkEventHandler_clientMessageHandler", _wrap_OtkEventHandler_clientMessageHandler
, METH_VARARGS
},
12785 { (char *)"delete_OtkEventHandler", _wrap_delete_OtkEventHandler
, METH_VARARGS
},
12786 { (char *)"OtkEventHandler_swigregister", OtkEventHandler_swigregister
, METH_VARARGS
},
12787 { (char *)"new_OtkWidget", _wrap_new_OtkWidget
, METH_VARARGS
},
12788 { (char *)"delete_OtkWidget", _wrap_delete_OtkWidget
, METH_VARARGS
},
12789 { (char *)"OtkWidget_update", _wrap_OtkWidget_update
, METH_VARARGS
},
12790 { (char *)"OtkWidget_exposeHandler", _wrap_OtkWidget_exposeHandler
, METH_VARARGS
},
12791 { (char *)"OtkWidget_configureHandler", _wrap_OtkWidget_configureHandler
, METH_VARARGS
},
12792 { (char *)"OtkWidget_window", _wrap_OtkWidget_window
, METH_VARARGS
},
12793 { (char *)"OtkWidget_parent", _wrap_OtkWidget_parent
, METH_VARARGS
},
12794 { (char *)"OtkWidget_children", _wrap_OtkWidget_children
, METH_VARARGS
},
12795 { (char *)"OtkWidget_screen", _wrap_OtkWidget_screen
, METH_VARARGS
},
12796 { (char *)"OtkWidget_rect", _wrap_OtkWidget_rect
, METH_VARARGS
},
12797 { (char *)"OtkWidget_move", _wrap_OtkWidget_move
, METH_VARARGS
},
12798 { (char *)"OtkWidget_setWidth", _wrap_OtkWidget_setWidth
, METH_VARARGS
},
12799 { (char *)"OtkWidget_setHeight", _wrap_OtkWidget_setHeight
, METH_VARARGS
},
12800 { (char *)"OtkWidget_width", _wrap_OtkWidget_width
, METH_VARARGS
},
12801 { (char *)"OtkWidget_height", _wrap_OtkWidget_height
, METH_VARARGS
},
12802 { (char *)"OtkWidget_resize", _wrap_OtkWidget_resize
, METH_VARARGS
},
12803 { (char *)"OtkWidget_setGeometry", _wrap_OtkWidget_setGeometry
, METH_VARARGS
},
12804 { (char *)"OtkWidget_isVisible", _wrap_OtkWidget_isVisible
, METH_VARARGS
},
12805 { (char *)"OtkWidget_show", _wrap_OtkWidget_show
, METH_VARARGS
},
12806 { (char *)"OtkWidget_hide", _wrap_OtkWidget_hide
, METH_VARARGS
},
12807 { (char *)"OtkWidget_isFocused", _wrap_OtkWidget_isFocused
, METH_VARARGS
},
12808 { (char *)"OtkWidget_focus", _wrap_OtkWidget_focus
, METH_VARARGS
},
12809 { (char *)"OtkWidget_unfocus", _wrap_OtkWidget_unfocus
, METH_VARARGS
},
12810 { (char *)"OtkWidget_hasGrabbedMouse", _wrap_OtkWidget_hasGrabbedMouse
, METH_VARARGS
},
12811 { (char *)"OtkWidget_grabMouse", _wrap_OtkWidget_grabMouse
, METH_VARARGS
},
12812 { (char *)"OtkWidget_ungrabMouse", _wrap_OtkWidget_ungrabMouse
, METH_VARARGS
},
12813 { (char *)"OtkWidget_hasGrabbedKeyboard", _wrap_OtkWidget_hasGrabbedKeyboard
, METH_VARARGS
},
12814 { (char *)"OtkWidget_grabKeyboard", _wrap_OtkWidget_grabKeyboard
, METH_VARARGS
},
12815 { (char *)"OtkWidget_ungrabKeyboard", _wrap_OtkWidget_ungrabKeyboard
, METH_VARARGS
},
12816 { (char *)"OtkWidget_texture", _wrap_OtkWidget_texture
, METH_VARARGS
},
12817 { (char *)"OtkWidget_setTexture", _wrap_OtkWidget_setTexture
, METH_VARARGS
},
12818 { (char *)"OtkWidget_borderColor", _wrap_OtkWidget_borderColor
, METH_VARARGS
},
12819 { (char *)"OtkWidget_setBorderColor", _wrap_OtkWidget_setBorderColor
, METH_VARARGS
},
12820 { (char *)"OtkWidget_borderWidth", _wrap_OtkWidget_borderWidth
, METH_VARARGS
},
12821 { (char *)"OtkWidget_setBorderWidth", _wrap_OtkWidget_setBorderWidth
, METH_VARARGS
},
12822 { (char *)"OtkWidget_addChild", _wrap_OtkWidget_addChild
, METH_VARARGS
},
12823 { (char *)"OtkWidget_removeChild", _wrap_OtkWidget_removeChild
, METH_VARARGS
},
12824 { (char *)"OtkWidget_isStretchableHorz", _wrap_OtkWidget_isStretchableHorz
, METH_VARARGS
},
12825 { (char *)"OtkWidget_setStretchableHorz", _wrap_OtkWidget_setStretchableHorz
, METH_VARARGS
},
12826 { (char *)"OtkWidget_isStretchableVert", _wrap_OtkWidget_isStretchableVert
, METH_VARARGS
},
12827 { (char *)"OtkWidget_setStretchableVert", _wrap_OtkWidget_setStretchableVert
, METH_VARARGS
},
12828 { (char *)"OtkWidget_cursor", _wrap_OtkWidget_cursor
, METH_VARARGS
},
12829 { (char *)"OtkWidget_setCursor", _wrap_OtkWidget_setCursor
, METH_VARARGS
},
12830 { (char *)"OtkWidget_bevelWidth", _wrap_OtkWidget_bevelWidth
, METH_VARARGS
},
12831 { (char *)"OtkWidget_setBevelWidth", _wrap_OtkWidget_setBevelWidth
, METH_VARARGS
},
12832 { (char *)"OtkWidget_direction", _wrap_OtkWidget_direction
, METH_VARARGS
},
12833 { (char *)"OtkWidget_setDirection", _wrap_OtkWidget_setDirection
, METH_VARARGS
},
12834 { (char *)"OtkWidget_style", _wrap_OtkWidget_style
, METH_VARARGS
},
12835 { (char *)"OtkWidget_setStyle", _wrap_OtkWidget_setStyle
, METH_VARARGS
},
12836 { (char *)"OtkWidget_eventDispatcher", _wrap_OtkWidget_eventDispatcher
, METH_VARARGS
},
12837 { (char *)"OtkWidget_setEventDispatcher", _wrap_OtkWidget_setEventDispatcher
, METH_VARARGS
},
12838 { (char *)"OtkWidget_unmanaged", _wrap_OtkWidget_unmanaged
, METH_VARARGS
},
12839 { (char *)"OtkWidget_swigregister", OtkWidget_swigregister
, METH_VARARGS
},
12840 { (char *)"new_OtkFocusWidget", _wrap_new_OtkFocusWidget
, METH_VARARGS
},
12841 { (char *)"delete_OtkFocusWidget", _wrap_delete_OtkFocusWidget
, METH_VARARGS
},
12842 { (char *)"OtkFocusWidget_focus", _wrap_OtkFocusWidget_focus
, METH_VARARGS
},
12843 { (char *)"OtkFocusWidget_unfocus", _wrap_OtkFocusWidget_unfocus
, METH_VARARGS
},
12844 { (char *)"OtkFocusWidget_setTexture", _wrap_OtkFocusWidget_setTexture
, METH_VARARGS
},
12845 { (char *)"OtkFocusWidget_setBorderColor", _wrap_OtkFocusWidget_setBorderColor
, METH_VARARGS
},
12846 { (char *)"OtkFocusWidget_setUnfocusTexture", _wrap_OtkFocusWidget_setUnfocusTexture
, METH_VARARGS
},
12847 { (char *)"OtkFocusWidget_getUnfocusTexture", _wrap_OtkFocusWidget_getUnfocusTexture
, METH_VARARGS
},
12848 { (char *)"OtkFocusWidget_setUnfocusBorderColor", _wrap_OtkFocusWidget_setUnfocusBorderColor
, METH_VARARGS
},
12849 { (char *)"OtkFocusWidget_getUnfocusBorderColor", _wrap_OtkFocusWidget_getUnfocusBorderColor
, METH_VARARGS
},
12850 { (char *)"OtkFocusWidget_isFocused", _wrap_OtkFocusWidget_isFocused
, METH_VARARGS
},
12851 { (char *)"OtkFocusWidget_isUnfocused", _wrap_OtkFocusWidget_isUnfocused
, METH_VARARGS
},
12852 { (char *)"OtkFocusWidget_swigregister", OtkFocusWidget_swigregister
, METH_VARARGS
},
12853 { (char *)"new_OtkFocusLabel", _wrap_new_OtkFocusLabel
, METH_VARARGS
},
12854 { (char *)"delete_OtkFocusLabel", _wrap_delete_OtkFocusLabel
, METH_VARARGS
},
12855 { (char *)"OtkFocusLabel_getText", _wrap_OtkFocusLabel_getText
, METH_VARARGS
},
12856 { (char *)"OtkFocusLabel_setText", _wrap_OtkFocusLabel_setText
, METH_VARARGS
},
12857 { (char *)"OtkFocusLabel_update", _wrap_OtkFocusLabel_update
, METH_VARARGS
},
12858 { (char *)"OtkFocusLabel_setStyle", _wrap_OtkFocusLabel_setStyle
, METH_VARARGS
},
12859 { (char *)"OtkFocusLabel_swigregister", OtkFocusLabel_swigregister
, METH_VARARGS
},
12860 { (char *)"new_OtkAppWidget", _wrap_new_OtkAppWidget
, METH_VARARGS
},
12861 { (char *)"delete_OtkAppWidget", _wrap_delete_OtkAppWidget
, METH_VARARGS
},
12862 { (char *)"OtkAppWidget_show", _wrap_OtkAppWidget_show
, METH_VARARGS
},
12863 { (char *)"OtkAppWidget_hide", _wrap_OtkAppWidget_hide
, METH_VARARGS
},
12864 { (char *)"OtkAppWidget_clientMessageHandler", _wrap_OtkAppWidget_clientMessageHandler
, METH_VARARGS
},
12865 { (char *)"OtkAppWidget_swigregister", OtkAppWidget_swigregister
, METH_VARARGS
},
12866 { (char *)"new_OtkApplication", _wrap_new_OtkApplication
, METH_VARARGS
},
12867 { (char *)"delete_OtkApplication", _wrap_delete_OtkApplication
, METH_VARARGS
},
12868 { (char *)"OtkApplication_run", _wrap_OtkApplication_run
, METH_VARARGS
},
12869 { (char *)"OtkApplication_setDockable", _wrap_OtkApplication_setDockable
, METH_VARARGS
},
12870 { (char *)"OtkApplication_isDockable", _wrap_OtkApplication_isDockable
, METH_VARARGS
},
12871 { (char *)"OtkApplication_getStyle", _wrap_OtkApplication_getStyle
, METH_VARARGS
},
12872 { (char *)"OtkApplication_swigregister", OtkApplication_swigregister
, METH_VARARGS
},
12873 { (char *)"new_PointerAssassin", _wrap_new_PointerAssassin
, METH_VARARGS
},
12874 { (char *)"delete_PointerAssassin", _wrap_delete_PointerAssassin
, METH_VARARGS
},
12875 { (char *)"PointerAssassin_swigregister", PointerAssassin_swigregister
, METH_VARARGS
},
12876 { (char *)"new_OtkButton", _wrap_new_OtkButton
, METH_VARARGS
},
12877 { (char *)"delete_OtkButton", _wrap_delete_OtkButton
, METH_VARARGS
},
12878 { (char *)"OtkButton_getPressedFocusTexture", _wrap_OtkButton_getPressedFocusTexture
, METH_VARARGS
},
12879 { (char *)"OtkButton_setPressedFocusTexture", _wrap_OtkButton_setPressedFocusTexture
, METH_VARARGS
},
12880 { (char *)"OtkButton_getPressedUnfocusTexture", _wrap_OtkButton_getPressedUnfocusTexture
, METH_VARARGS
},
12881 { (char *)"OtkButton_setPressedUnfocusTexture", _wrap_OtkButton_setPressedUnfocusTexture
, METH_VARARGS
},
12882 { (char *)"OtkButton_setTexture", _wrap_OtkButton_setTexture
, METH_VARARGS
},
12883 { (char *)"OtkButton_setUnfocusTexture", _wrap_OtkButton_setUnfocusTexture
, METH_VARARGS
},
12884 { (char *)"OtkButton_isPressed", _wrap_OtkButton_isPressed
, METH_VARARGS
},
12885 { (char *)"OtkButton_press", _wrap_OtkButton_press
, METH_VARARGS
},
12886 { (char *)"OtkButton_release", _wrap_OtkButton_release
, METH_VARARGS
},
12887 { (char *)"OtkButton_buttonPressHandler", _wrap_OtkButton_buttonPressHandler
, METH_VARARGS
},
12888 { (char *)"OtkButton_buttonReleaseHandler", _wrap_OtkButton_buttonReleaseHandler
, METH_VARARGS
},
12889 { (char *)"OtkButton_setStyle", _wrap_OtkButton_setStyle
, METH_VARARGS
},
12890 { (char *)"OtkButton_swigregister", OtkButton_swigregister
, METH_VARARGS
},
12891 { (char *)"new_BColor", _wrap_new_BColor
, METH_VARARGS
},
12892 { (char *)"delete_BColor", _wrap_delete_BColor
, METH_VARARGS
},
12893 { (char *)"BColor_name", _wrap_BColor_name
, METH_VARARGS
},
12894 { (char *)"BColor_red", _wrap_BColor_red
, METH_VARARGS
},
12895 { (char *)"BColor_green", _wrap_BColor_green
, METH_VARARGS
},
12896 { (char *)"BColor_blue", _wrap_BColor_blue
, METH_VARARGS
},
12897 { (char *)"BColor_setRGB", _wrap_BColor_setRGB
, METH_VARARGS
},
12898 { (char *)"BColor_screen", _wrap_BColor_screen
, METH_VARARGS
},
12899 { (char *)"BColor_setScreen", _wrap_BColor_setScreen
, METH_VARARGS
},
12900 { (char *)"BColor_isAllocated", _wrap_BColor_isAllocated
, METH_VARARGS
},
12901 { (char *)"BColor_isValid", _wrap_BColor_isValid
, METH_VARARGS
},
12902 { (char *)"BColor_pixel", _wrap_BColor_pixel
, METH_VARARGS
},
12903 { (char *)"BColor_equals", _wrap_BColor_equals
, METH_VARARGS
},
12904 { (char *)"BColor_cleanupColorCache", _wrap_BColor_cleanupColorCache
, METH_VARARGS
},
12905 { (char *)"BColor_swigregister", BColor_swigregister
, METH_VARARGS
},
12906 { (char *)"new_Configuration", _wrap_new_Configuration
, METH_VARARGS
},
12907 { (char *)"delete_Configuration", _wrap_delete_Configuration
, METH_VARARGS
},
12908 { (char *)"Configuration_file", _wrap_Configuration_file
, METH_VARARGS
},
12909 { (char *)"Configuration_setFile", _wrap_Configuration_setFile
, METH_VARARGS
},
12910 { (char *)"Configuration_autoSave", _wrap_Configuration_autoSave
, METH_VARARGS
},
12911 { (char *)"Configuration_setAutoSave", _wrap_Configuration_setAutoSave
, METH_VARARGS
},
12912 { (char *)"Configuration_isModified", _wrap_Configuration_isModified
, METH_VARARGS
},
12913 { (char *)"Configuration_save", _wrap_Configuration_save
, METH_VARARGS
},
12914 { (char *)"Configuration_load", _wrap_Configuration_load
, METH_VARARGS
},
12915 { (char *)"Configuration_merge", _wrap_Configuration_merge
, METH_VARARGS
},
12916 { (char *)"Configuration_create", _wrap_Configuration_create
, METH_VARARGS
},
12917 { (char *)"Configuration_setValue_bool", _wrap_Configuration_setValue_bool
, METH_VARARGS
},
12918 { (char *)"Configuration_setValue", _wrap_Configuration_setValue
, METH_VARARGS
},
12919 { (char *)"Configuration_setValue_unsigned", _wrap_Configuration_setValue_unsigned
, METH_VARARGS
},
12920 { (char *)"Configuration_setValue_long", _wrap_Configuration_setValue_long
, METH_VARARGS
},
12921 { (char *)"Configuration_setValue_unsignedlong", _wrap_Configuration_setValue_unsignedlong
, METH_VARARGS
},
12922 { (char *)"Configuration_setValue_string", _wrap_Configuration_setValue_string
, METH_VARARGS
},
12923 { (char *)"Configuration_setValue_charptr", _wrap_Configuration_setValue_charptr
, METH_VARARGS
},
12924 { (char *)"Configuration_getValue", _wrap_Configuration_getValue
, METH_VARARGS
},
12925 { (char *)"Configuration_swigregister", Configuration_swigregister
, METH_VARARGS
},
12926 { (char *)"OBDisplay_initialize", _wrap_OBDisplay_initialize
, METH_VARARGS
},
12927 { (char *)"OBDisplay_destroy", _wrap_OBDisplay_destroy
, METH_VARARGS
},
12928 { (char *)"OBDisplay_gcCache", _wrap_OBDisplay_gcCache
, METH_VARARGS
},
12929 { (char *)"OBDisplay_screenInfo", _wrap_OBDisplay_screenInfo
, METH_VARARGS
},
12930 { (char *)"OBDisplay_shape", _wrap_OBDisplay_shape
, METH_VARARGS
},
12931 { (char *)"OBDisplay_shapeEventBase", _wrap_OBDisplay_shapeEventBase
, METH_VARARGS
},
12932 { (char *)"OBDisplay_xinerama", _wrap_OBDisplay_xinerama
, METH_VARARGS
},
12933 { (char *)"OBDisplay_grab", _wrap_OBDisplay_grab
, METH_VARARGS
},
12934 { (char *)"OBDisplay_ungrab", _wrap_OBDisplay_ungrab
, METH_VARARGS
},
12935 { (char *)"OBDisplay_grabButton", _wrap_OBDisplay_grabButton
, METH_VARARGS
},
12936 { (char *)"OBDisplay_ungrabButton", _wrap_OBDisplay_ungrabButton
, METH_VARARGS
},
12937 { (char *)"delete_OBDisplay", _wrap_delete_OBDisplay
, METH_VARARGS
},
12938 { (char *)"OBDisplay_swigregister", OBDisplay_swigregister
, METH_VARARGS
},
12939 { (char *)"BFont_fallbackFont", _wrap_BFont_fallbackFont
, METH_VARARGS
},
12940 { (char *)"BFont_setFallbackFont", _wrap_BFont_setFallbackFont
, METH_VARARGS
},
12941 { (char *)"new_BFont", _wrap_new_BFont
, METH_VARARGS
},
12942 { (char *)"delete_BFont", _wrap_delete_BFont
, METH_VARARGS
},
12943 { (char *)"BFont_fontstring", _wrap_BFont_fontstring
, METH_VARARGS
},
12944 { (char *)"BFont_height", _wrap_BFont_height
, METH_VARARGS
},
12945 { (char *)"BFont_maxCharWidth", _wrap_BFont_maxCharWidth
, METH_VARARGS
},
12946 { (char *)"BFont_measureString", _wrap_BFont_measureString
, METH_VARARGS
},
12947 { (char *)"BFont_drawString", _wrap_BFont_drawString
, METH_VARARGS
},
12948 { (char *)"BFont_swigregister", BFont_swigregister
, METH_VARARGS
},
12949 { (char *)"BGCCacheContext_set", _wrap_BGCCacheContext_set
, METH_VARARGS
},
12950 { (char *)"delete_BGCCacheContext", _wrap_delete_BGCCacheContext
, METH_VARARGS
},
12951 { (char *)"BGCCacheContext_swigregister", BGCCacheContext_swigregister
, METH_VARARGS
},
12952 { (char *)"BGCCacheItem_gc", _wrap_BGCCacheItem_gc
, METH_VARARGS
},
12953 { (char *)"delete_BGCCacheItem", _wrap_delete_BGCCacheItem
, METH_VARARGS
},
12954 { (char *)"BGCCacheItem_swigregister", BGCCacheItem_swigregister
, METH_VARARGS
},
12955 { (char *)"new_BGCCache", _wrap_new_BGCCache
, METH_VARARGS
},
12956 { (char *)"delete_BGCCache", _wrap_delete_BGCCache
, METH_VARARGS
},
12957 { (char *)"BGCCache_purge", _wrap_BGCCache_purge
, METH_VARARGS
},
12958 { (char *)"BGCCache_find", _wrap_BGCCache_find
, METH_VARARGS
},
12959 { (char *)"BGCCache_release", _wrap_BGCCache_release
, METH_VARARGS
},
12960 { (char *)"BGCCache_swigregister", BGCCache_swigregister
, METH_VARARGS
},
12961 { (char *)"new_BPen", _wrap_new_BPen
, METH_VARARGS
},
12962 { (char *)"delete_BPen", _wrap_delete_BPen
, METH_VARARGS
},
12963 { (char *)"BPen_gc", _wrap_BPen_gc
, METH_VARARGS
},
12964 { (char *)"BPen_swigregister", BPen_swigregister
, METH_VARARGS
},
12965 { (char *)"new_BImage", _wrap_new_BImage
, METH_VARARGS
},
12966 { (char *)"delete_BImage", _wrap_delete_BImage
, METH_VARARGS
},
12967 { (char *)"BImage_render", _wrap_BImage_render
, METH_VARARGS
},
12968 { (char *)"BImage_swigregister", BImage_swigregister
, METH_VARARGS
},
12969 { (char *)"new_BImageControl", _wrap_new_BImageControl
, METH_VARARGS
},
12970 { (char *)"delete_BImageControl", _wrap_delete_BImageControl
, METH_VARARGS
},
12971 { (char *)"BImageControl_doDither", _wrap_BImageControl_doDither
, METH_VARARGS
},
12972 { (char *)"BImageControl_getScreenInfo", _wrap_BImageControl_getScreenInfo
, METH_VARARGS
},
12973 { (char *)"BImageControl_getDrawable", _wrap_BImageControl_getDrawable
, METH_VARARGS
},
12974 { (char *)"BImageControl_getVisual", _wrap_BImageControl_getVisual
, METH_VARARGS
},
12975 { (char *)"BImageControl_getBitsPerPixel", _wrap_BImageControl_getBitsPerPixel
, METH_VARARGS
},
12976 { (char *)"BImageControl_getDepth", _wrap_BImageControl_getDepth
, METH_VARARGS
},
12977 { (char *)"BImageControl_getColorsPerChannel", _wrap_BImageControl_getColorsPerChannel
, METH_VARARGS
},
12978 { (char *)"BImageControl_getSqrt", _wrap_BImageControl_getSqrt
, METH_VARARGS
},
12979 { (char *)"BImageControl_renderImage", _wrap_BImageControl_renderImage
, METH_VARARGS
},
12980 { (char *)"BImageControl_installRootColormap", _wrap_BImageControl_installRootColormap
, METH_VARARGS
},
12981 { (char *)"BImageControl_removeImage", _wrap_BImageControl_removeImage
, METH_VARARGS
},
12982 { (char *)"BImageControl_getColorTables", _wrap_BImageControl_getColorTables
, METH_VARARGS
},
12983 { (char *)"BImageControl_getXColorTable", _wrap_BImageControl_getXColorTable
, METH_VARARGS
},
12984 { (char *)"BImageControl_getGradientBuffers", _wrap_BImageControl_getGradientBuffers
, METH_VARARGS
},
12985 { (char *)"BImageControl_setDither", _wrap_BImageControl_setDither
, METH_VARARGS
},
12986 { (char *)"BImageControl_setColorsPerChannel", _wrap_BImageControl_setColorsPerChannel
, METH_VARARGS
},
12987 { (char *)"BImageControl_timeout", _wrap_BImageControl_timeout
, METH_VARARGS
},
12988 { (char *)"BImageControl_swigregister", BImageControl_swigregister
, METH_VARARGS
},
12989 { (char *)"new_Point", _wrap_new_Point
, METH_VARARGS
},
12990 { (char *)"Point_setX", _wrap_Point_setX
, METH_VARARGS
},
12991 { (char *)"Point_x", _wrap_Point_x
, METH_VARARGS
},
12992 { (char *)"Point_setY", _wrap_Point_setY
, METH_VARARGS
},
12993 { (char *)"Point_y", _wrap_Point_y
, METH_VARARGS
},
12994 { (char *)"Point_setPoint", _wrap_Point_setPoint
, METH_VARARGS
},
12995 { (char *)"delete_Point", _wrap_delete_Point
, METH_VARARGS
},
12996 { (char *)"Point_swigregister", Point_swigregister
, METH_VARARGS
},
12997 { (char *)"new_OBProperty", _wrap_new_OBProperty
, METH_VARARGS
},
12998 { (char *)"delete_OBProperty", _wrap_delete_OBProperty
, METH_VARARGS
},
12999 { (char *)"OBProperty_set", _wrap_OBProperty_set
, METH_VARARGS
},
13000 { (char *)"OBProperty_get", _wrap_OBProperty_get
, METH_VARARGS
},
13001 { (char *)"OBProperty_erase", _wrap_OBProperty_erase
, METH_VARARGS
},
13002 { (char *)"OBProperty_atom", _wrap_OBProperty_atom
, METH_VARARGS
},
13003 { (char *)"OBProperty_swigregister", OBProperty_swigregister
, METH_VARARGS
},
13004 { (char *)"new_Rect", _wrap_new_Rect
, METH_VARARGS
},
13005 { (char *)"Rect_left", _wrap_Rect_left
, METH_VARARGS
},
13006 { (char *)"Rect_top", _wrap_Rect_top
, METH_VARARGS
},
13007 { (char *)"Rect_right", _wrap_Rect_right
, METH_VARARGS
},
13008 { (char *)"Rect_bottom", _wrap_Rect_bottom
, METH_VARARGS
},
13009 { (char *)"Rect_x", _wrap_Rect_x
, METH_VARARGS
},
13010 { (char *)"Rect_y", _wrap_Rect_y
, METH_VARARGS
},
13011 { (char *)"Rect_location", _wrap_Rect_location
, METH_VARARGS
},
13012 { (char *)"Rect_setX", _wrap_Rect_setX
, METH_VARARGS
},
13013 { (char *)"Rect_setY", _wrap_Rect_setY
, METH_VARARGS
},
13014 { (char *)"Rect_setPos", _wrap_Rect_setPos
, METH_VARARGS
},
13015 { (char *)"Rect_width", _wrap_Rect_width
, METH_VARARGS
},
13016 { (char *)"Rect_height", _wrap_Rect_height
, METH_VARARGS
},
13017 { (char *)"Rect_size", _wrap_Rect_size
, METH_VARARGS
},
13018 { (char *)"Rect_setWidth", _wrap_Rect_setWidth
, METH_VARARGS
},
13019 { (char *)"Rect_setHeight", _wrap_Rect_setHeight
, METH_VARARGS
},
13020 { (char *)"Rect_setSize", _wrap_Rect_setSize
, METH_VARARGS
},
13021 { (char *)"Rect_setRect", _wrap_Rect_setRect
, METH_VARARGS
},
13022 { (char *)"Rect_setCoords", _wrap_Rect_setCoords
, METH_VARARGS
},
13023 { (char *)"Rect_equals", _wrap_Rect_equals
, METH_VARARGS
},
13024 { (char *)"Rect_valid", _wrap_Rect_valid
, METH_VARARGS
},
13025 { (char *)"Rect_intersects", _wrap_Rect_intersects
, METH_VARARGS
},
13026 { (char *)"Rect_contains", _wrap_Rect_contains
, METH_VARARGS
},
13027 { (char *)"delete_Rect", _wrap_delete_Rect
, METH_VARARGS
},
13028 { (char *)"Rect_swigregister", Rect_swigregister
, METH_VARARGS
},
13029 { (char *)"new_ScreenInfo", _wrap_new_ScreenInfo
, METH_VARARGS
},
13030 { (char *)"ScreenInfo_visual", _wrap_ScreenInfo_visual
, METH_VARARGS
},
13031 { (char *)"ScreenInfo_rootWindow", _wrap_ScreenInfo_rootWindow
, METH_VARARGS
},
13032 { (char *)"ScreenInfo_colormap", _wrap_ScreenInfo_colormap
, METH_VARARGS
},
13033 { (char *)"ScreenInfo_depth", _wrap_ScreenInfo_depth
, METH_VARARGS
},
13034 { (char *)"ScreenInfo_screen", _wrap_ScreenInfo_screen
, METH_VARARGS
},
13035 { (char *)"ScreenInfo_rect", _wrap_ScreenInfo_rect
, METH_VARARGS
},
13036 { (char *)"ScreenInfo_width", _wrap_ScreenInfo_width
, METH_VARARGS
},
13037 { (char *)"ScreenInfo_height", _wrap_ScreenInfo_height
, METH_VARARGS
},
13038 { (char *)"ScreenInfo_displayString", _wrap_ScreenInfo_displayString
, METH_VARARGS
},
13039 { (char *)"delete_ScreenInfo", _wrap_delete_ScreenInfo
, METH_VARARGS
},
13040 { (char *)"ScreenInfo_swigregister", ScreenInfo_swigregister
, METH_VARARGS
},
13041 { (char *)"Strut_top_set", _wrap_Strut_top_set
, METH_VARARGS
},
13042 { (char *)"Strut_top_get", _wrap_Strut_top_get
, METH_VARARGS
},
13043 { (char *)"Strut_bottom_set", _wrap_Strut_bottom_set
, METH_VARARGS
},
13044 { (char *)"Strut_bottom_get", _wrap_Strut_bottom_get
, METH_VARARGS
},
13045 { (char *)"Strut_left_set", _wrap_Strut_left_set
, METH_VARARGS
},
13046 { (char *)"Strut_left_get", _wrap_Strut_left_get
, METH_VARARGS
},
13047 { (char *)"Strut_right_set", _wrap_Strut_right_set
, METH_VARARGS
},
13048 { (char *)"Strut_right_get", _wrap_Strut_right_get
, METH_VARARGS
},
13049 { (char *)"new_Strut", _wrap_new_Strut
, METH_VARARGS
},
13050 { (char *)"delete_Strut", _wrap_delete_Strut
, METH_VARARGS
},
13051 { (char *)"Strut_swigregister", Strut_swigregister
, METH_VARARGS
},
13052 { (char *)"PixmapMask_mask_set", _wrap_PixmapMask_mask_set
, METH_VARARGS
},
13053 { (char *)"PixmapMask_mask_get", _wrap_PixmapMask_mask_get
, METH_VARARGS
},
13054 { (char *)"PixmapMask_w_set", _wrap_PixmapMask_w_set
, METH_VARARGS
},
13055 { (char *)"PixmapMask_w_get", _wrap_PixmapMask_w_get
, METH_VARARGS
},
13056 { (char *)"PixmapMask_h_set", _wrap_PixmapMask_h_set
, METH_VARARGS
},
13057 { (char *)"PixmapMask_h_get", _wrap_PixmapMask_h_get
, METH_VARARGS
},
13058 { (char *)"new_PixmapMask", _wrap_new_PixmapMask
, METH_VARARGS
},
13059 { (char *)"delete_PixmapMask", _wrap_delete_PixmapMask
, METH_VARARGS
},
13060 { (char *)"PixmapMask_swigregister", PixmapMask_swigregister
, METH_VARARGS
},
13061 { (char *)"Style_image_control_set", _wrap_Style_image_control_set
, METH_VARARGS
},
13062 { (char *)"Style_image_control_get", _wrap_Style_image_control_get
, METH_VARARGS
},
13063 { (char *)"Style_l_text_focus_set", _wrap_Style_l_text_focus_set
, METH_VARARGS
},
13064 { (char *)"Style_l_text_focus_get", _wrap_Style_l_text_focus_get
, METH_VARARGS
},
13065 { (char *)"Style_l_text_unfocus_set", _wrap_Style_l_text_unfocus_set
, METH_VARARGS
},
13066 { (char *)"Style_l_text_unfocus_get", _wrap_Style_l_text_unfocus_get
, METH_VARARGS
},
13067 { (char *)"Style_b_pic_focus_set", _wrap_Style_b_pic_focus_set
, METH_VARARGS
},
13068 { (char *)"Style_b_pic_focus_get", _wrap_Style_b_pic_focus_get
, METH_VARARGS
},
13069 { (char *)"Style_b_pic_unfocus_set", _wrap_Style_b_pic_unfocus_set
, METH_VARARGS
},
13070 { (char *)"Style_b_pic_unfocus_get", _wrap_Style_b_pic_unfocus_get
, METH_VARARGS
},
13071 { (char *)"Style_border_color_set", _wrap_Style_border_color_set
, METH_VARARGS
},
13072 { (char *)"Style_border_color_get", _wrap_Style_border_color_get
, METH_VARARGS
},
13073 { (char *)"Style_font_set", _wrap_Style_font_set
, METH_VARARGS
},
13074 { (char *)"Style_font_get", _wrap_Style_font_get
, METH_VARARGS
},
13075 { (char *)"Style_f_focus_set", _wrap_Style_f_focus_set
, METH_VARARGS
},
13076 { (char *)"Style_f_focus_get", _wrap_Style_f_focus_get
, METH_VARARGS
},
13077 { (char *)"Style_f_unfocus_set", _wrap_Style_f_unfocus_set
, METH_VARARGS
},
13078 { (char *)"Style_f_unfocus_get", _wrap_Style_f_unfocus_get
, METH_VARARGS
},
13079 { (char *)"Style_t_focus_set", _wrap_Style_t_focus_set
, METH_VARARGS
},
13080 { (char *)"Style_t_focus_get", _wrap_Style_t_focus_get
, METH_VARARGS
},
13081 { (char *)"Style_t_unfocus_set", _wrap_Style_t_unfocus_set
, METH_VARARGS
},
13082 { (char *)"Style_t_unfocus_get", _wrap_Style_t_unfocus_get
, METH_VARARGS
},
13083 { (char *)"Style_l_focus_set", _wrap_Style_l_focus_set
, METH_VARARGS
},
13084 { (char *)"Style_l_focus_get", _wrap_Style_l_focus_get
, METH_VARARGS
},
13085 { (char *)"Style_l_unfocus_set", _wrap_Style_l_unfocus_set
, METH_VARARGS
},
13086 { (char *)"Style_l_unfocus_get", _wrap_Style_l_unfocus_get
, METH_VARARGS
},
13087 { (char *)"Style_h_focus_set", _wrap_Style_h_focus_set
, METH_VARARGS
},
13088 { (char *)"Style_h_focus_get", _wrap_Style_h_focus_get
, METH_VARARGS
},
13089 { (char *)"Style_h_unfocus_set", _wrap_Style_h_unfocus_set
, METH_VARARGS
},
13090 { (char *)"Style_h_unfocus_get", _wrap_Style_h_unfocus_get
, METH_VARARGS
},
13091 { (char *)"Style_b_focus_set", _wrap_Style_b_focus_set
, METH_VARARGS
},
13092 { (char *)"Style_b_focus_get", _wrap_Style_b_focus_get
, METH_VARARGS
},
13093 { (char *)"Style_b_unfocus_set", _wrap_Style_b_unfocus_set
, METH_VARARGS
},
13094 { (char *)"Style_b_unfocus_get", _wrap_Style_b_unfocus_get
, METH_VARARGS
},
13095 { (char *)"Style_b_pressed_set", _wrap_Style_b_pressed_set
, METH_VARARGS
},
13096 { (char *)"Style_b_pressed_get", _wrap_Style_b_pressed_get
, METH_VARARGS
},
13097 { (char *)"Style_b_pressed_focus_set", _wrap_Style_b_pressed_focus_set
, METH_VARARGS
},
13098 { (char *)"Style_b_pressed_focus_get", _wrap_Style_b_pressed_focus_get
, METH_VARARGS
},
13099 { (char *)"Style_b_pressed_unfocus_set", _wrap_Style_b_pressed_unfocus_set
, METH_VARARGS
},
13100 { (char *)"Style_b_pressed_unfocus_get", _wrap_Style_b_pressed_unfocus_get
, METH_VARARGS
},
13101 { (char *)"Style_g_focus_set", _wrap_Style_g_focus_set
, METH_VARARGS
},
13102 { (char *)"Style_g_focus_get", _wrap_Style_g_focus_get
, METH_VARARGS
},
13103 { (char *)"Style_g_unfocus_set", _wrap_Style_g_unfocus_set
, METH_VARARGS
},
13104 { (char *)"Style_g_unfocus_get", _wrap_Style_g_unfocus_get
, METH_VARARGS
},
13105 { (char *)"Style_close_button_set", _wrap_Style_close_button_set
, METH_VARARGS
},
13106 { (char *)"Style_close_button_get", _wrap_Style_close_button_get
, METH_VARARGS
},
13107 { (char *)"Style_max_button_set", _wrap_Style_max_button_set
, METH_VARARGS
},
13108 { (char *)"Style_max_button_get", _wrap_Style_max_button_get
, METH_VARARGS
},
13109 { (char *)"Style_icon_button_set", _wrap_Style_icon_button_set
, METH_VARARGS
},
13110 { (char *)"Style_icon_button_get", _wrap_Style_icon_button_get
, METH_VARARGS
},
13111 { (char *)"Style_stick_button_set", _wrap_Style_stick_button_set
, METH_VARARGS
},
13112 { (char *)"Style_stick_button_get", _wrap_Style_stick_button_get
, METH_VARARGS
},
13113 { (char *)"Style_justify_set", _wrap_Style_justify_set
, METH_VARARGS
},
13114 { (char *)"Style_justify_get", _wrap_Style_justify_get
, METH_VARARGS
},
13115 { (char *)"Style_bullet_type_set", _wrap_Style_bullet_type_set
, METH_VARARGS
},
13116 { (char *)"Style_bullet_type_get", _wrap_Style_bullet_type_get
, METH_VARARGS
},
13117 { (char *)"Style_handle_width_set", _wrap_Style_handle_width_set
, METH_VARARGS
},
13118 { (char *)"Style_handle_width_get", _wrap_Style_handle_width_get
, METH_VARARGS
},
13119 { (char *)"Style_bevel_width_set", _wrap_Style_bevel_width_set
, METH_VARARGS
},
13120 { (char *)"Style_bevel_width_get", _wrap_Style_bevel_width_get
, METH_VARARGS
},
13121 { (char *)"Style_frame_width_set", _wrap_Style_frame_width_set
, METH_VARARGS
},
13122 { (char *)"Style_frame_width_get", _wrap_Style_frame_width_get
, METH_VARARGS
},
13123 { (char *)"Style_border_width_set", _wrap_Style_border_width_set
, METH_VARARGS
},
13124 { (char *)"Style_border_width_get", _wrap_Style_border_width_get
, METH_VARARGS
},
13125 { (char *)"Style_screen_number_set", _wrap_Style_screen_number_set
, METH_VARARGS
},
13126 { (char *)"Style_screen_number_get", _wrap_Style_screen_number_get
, METH_VARARGS
},
13127 { (char *)"Style_shadow_fonts_set", _wrap_Style_shadow_fonts_set
, METH_VARARGS
},
13128 { (char *)"Style_shadow_fonts_get", _wrap_Style_shadow_fonts_get
, METH_VARARGS
},
13129 { (char *)"Style_aa_fonts_set", _wrap_Style_aa_fonts_set
, METH_VARARGS
},
13130 { (char *)"Style_aa_fonts_get", _wrap_Style_aa_fonts_get
, METH_VARARGS
},
13131 { (char *)"new_Style", _wrap_new_Style
, METH_VARARGS
},
13132 { (char *)"delete_Style", _wrap_delete_Style
, METH_VARARGS
},
13133 { (char *)"Style_readDatabaseMask", _wrap_Style_readDatabaseMask
, METH_VARARGS
},
13134 { (char *)"Style_readDatabaseTexture", _wrap_Style_readDatabaseTexture
, METH_VARARGS
},
13135 { (char *)"Style_readDatabaseColor", _wrap_Style_readDatabaseColor
, METH_VARARGS
},
13136 { (char *)"Style_readDatabaseFont", _wrap_Style_readDatabaseFont
, METH_VARARGS
},
13137 { (char *)"Style_load", _wrap_Style_load
, METH_VARARGS
},
13138 { (char *)"Style_getTextFocus", _wrap_Style_getTextFocus
, METH_VARARGS
},
13139 { (char *)"Style_getTextUnfocus", _wrap_Style_getTextUnfocus
, METH_VARARGS
},
13140 { (char *)"Style_getButtonPicFocus", _wrap_Style_getButtonPicFocus
, METH_VARARGS
},
13141 { (char *)"Style_getButtonPicUnfocus", _wrap_Style_getButtonPicUnfocus
, METH_VARARGS
},
13142 { (char *)"Style_getTitleFocus", _wrap_Style_getTitleFocus
, METH_VARARGS
},
13143 { (char *)"Style_getTitleUnfocus", _wrap_Style_getTitleUnfocus
, METH_VARARGS
},
13144 { (char *)"Style_getLabelFocus", _wrap_Style_getLabelFocus
, METH_VARARGS
},
13145 { (char *)"Style_getLabelUnfocus", _wrap_Style_getLabelUnfocus
, METH_VARARGS
},
13146 { (char *)"Style_getHandleFocus", _wrap_Style_getHandleFocus
, METH_VARARGS
},
13147 { (char *)"Style_getHandleUnfocus", _wrap_Style_getHandleUnfocus
, METH_VARARGS
},
13148 { (char *)"Style_getButtonFocus", _wrap_Style_getButtonFocus
, METH_VARARGS
},
13149 { (char *)"Style_getButtonUnfocus", _wrap_Style_getButtonUnfocus
, METH_VARARGS
},
13150 { (char *)"Style_getButtonPressedFocus", _wrap_Style_getButtonPressedFocus
, METH_VARARGS
},
13151 { (char *)"Style_getButtonPressedUnfocus", _wrap_Style_getButtonPressedUnfocus
, METH_VARARGS
},
13152 { (char *)"Style_getGripFocus", _wrap_Style_getGripFocus
, METH_VARARGS
},
13153 { (char *)"Style_getGripUnfocus", _wrap_Style_getGripUnfocus
, METH_VARARGS
},
13154 { (char *)"Style_getHandleWidth", _wrap_Style_getHandleWidth
, METH_VARARGS
},
13155 { (char *)"Style_getBevelWidth", _wrap_Style_getBevelWidth
, METH_VARARGS
},
13156 { (char *)"Style_getFrameWidth", _wrap_Style_getFrameWidth
, METH_VARARGS
},
13157 { (char *)"Style_getBorderWidth", _wrap_Style_getBorderWidth
, METH_VARARGS
},
13158 { (char *)"Style_getFont", _wrap_Style_getFont
, METH_VARARGS
},
13159 { (char *)"Style_setShadowFonts", _wrap_Style_setShadowFonts
, METH_VARARGS
},
13160 { (char *)"Style_hasShadowFonts", _wrap_Style_hasShadowFonts
, METH_VARARGS
},
13161 { (char *)"Style_setAAFonts", _wrap_Style_setAAFonts
, METH_VARARGS
},
13162 { (char *)"Style_hasAAFonts", _wrap_Style_hasAAFonts
, METH_VARARGS
},
13163 { (char *)"Style_textJustify", _wrap_Style_textJustify
, METH_VARARGS
},
13164 { (char *)"Style_bulletType", _wrap_Style_bulletType
, METH_VARARGS
},
13165 { (char *)"Style_getBorderColor", _wrap_Style_getBorderColor
, METH_VARARGS
},
13166 { (char *)"Style_getFrameFocus", _wrap_Style_getFrameFocus
, METH_VARARGS
},
13167 { (char *)"Style_getFrameUnfocus", _wrap_Style_getFrameUnfocus
, METH_VARARGS
},
13168 { (char *)"Style_setImageControl", _wrap_Style_setImageControl
, METH_VARARGS
},
13169 { (char *)"Style_getScreen", _wrap_Style_getScreen
, METH_VARARGS
},
13170 { (char *)"Style_swigregister", Style_swigregister
, METH_VARARGS
},
13171 { (char *)"new_BTexture", _wrap_new_BTexture
, METH_VARARGS
},
13172 { (char *)"BTexture_setColor", _wrap_BTexture_setColor
, METH_VARARGS
},
13173 { (char *)"BTexture_setColorTo", _wrap_BTexture_setColorTo
, METH_VARARGS
},
13174 { (char *)"BTexture_setBorderColor", _wrap_BTexture_setBorderColor
, METH_VARARGS
},
13175 { (char *)"BTexture_color", _wrap_BTexture_color
, METH_VARARGS
},
13176 { (char *)"BTexture_colorTo", _wrap_BTexture_colorTo
, METH_VARARGS
},
13177 { (char *)"BTexture_lightColor", _wrap_BTexture_lightColor
, METH_VARARGS
},
13178 { (char *)"BTexture_shadowColor", _wrap_BTexture_shadowColor
, METH_VARARGS
},
13179 { (char *)"BTexture_borderColor", _wrap_BTexture_borderColor
, METH_VARARGS
},
13180 { (char *)"BTexture_texture", _wrap_BTexture_texture
, METH_VARARGS
},
13181 { (char *)"BTexture_setTexture", _wrap_BTexture_setTexture
, METH_VARARGS
},
13182 { (char *)"BTexture_addTexture", _wrap_BTexture_addTexture
, METH_VARARGS
},
13183 { (char *)"BTexture_equals", _wrap_BTexture_equals
, METH_VARARGS
},
13184 { (char *)"BTexture_screen", _wrap_BTexture_screen
, METH_VARARGS
},
13185 { (char *)"BTexture_setScreen", _wrap_BTexture_setScreen
, METH_VARARGS
},
13186 { (char *)"BTexture_setImageControl", _wrap_BTexture_setImageControl
, METH_VARARGS
},
13187 { (char *)"BTexture_description", _wrap_BTexture_description
, METH_VARARGS
},
13188 { (char *)"BTexture_setDescription", _wrap_BTexture_setDescription
, METH_VARARGS
},
13189 { (char *)"BTexture_render", _wrap_BTexture_render
, METH_VARARGS
},
13190 { (char *)"delete_BTexture", _wrap_delete_BTexture
, METH_VARARGS
},
13191 { (char *)"BTexture_swigregister", BTexture_swigregister
, METH_VARARGS
},
13192 { (char *)"new_OBTimer", _wrap_new_OBTimer
, METH_VARARGS
},
13193 { (char *)"delete_OBTimer", _wrap_delete_OBTimer
, METH_VARARGS
},
13194 { (char *)"OBTimer_fire", _wrap_OBTimer_fire
, METH_VARARGS
},
13195 { (char *)"OBTimer_timing", _wrap_OBTimer_timing
, METH_VARARGS
},
13196 { (char *)"OBTimer_recurring", _wrap_OBTimer_recurring
, METH_VARARGS
},
13197 { (char *)"OBTimer_timeout", _wrap_OBTimer_timeout
, METH_VARARGS
},
13198 { (char *)"OBTimer_startTime", _wrap_OBTimer_startTime
, METH_VARARGS
},
13199 { (char *)"OBTimer_remainingTime", _wrap_OBTimer_remainingTime
, METH_VARARGS
},
13200 { (char *)"OBTimer_shouldFire", _wrap_OBTimer_shouldFire
, METH_VARARGS
},
13201 { (char *)"OBTimer_endTime", _wrap_OBTimer_endTime
, METH_VARARGS
},
13202 { (char *)"OBTimer_setRecurring", _wrap_OBTimer_setRecurring
, METH_VARARGS
},
13203 { (char *)"OBTimer_setTimeout", _wrap_OBTimer_setTimeout
, METH_VARARGS
},
13204 { (char *)"OBTimer_start", _wrap_OBTimer_start
, METH_VARARGS
},
13205 { (char *)"OBTimer_stop", _wrap_OBTimer_stop
, METH_VARARGS
},
13206 { (char *)"OBTimer_swigregister", OBTimer_swigregister
, METH_VARARGS
},
13207 { (char *)"new_OBTimerQueueManager", _wrap_new_OBTimerQueueManager
, METH_VARARGS
},
13208 { (char *)"delete_OBTimerQueueManager", _wrap_delete_OBTimerQueueManager
, METH_VARARGS
},
13209 { (char *)"OBTimerQueueManager_fire", _wrap_OBTimerQueueManager_fire
, METH_VARARGS
},
13210 { (char *)"OBTimerQueueManager_addTimer", _wrap_OBTimerQueueManager_addTimer
, METH_VARARGS
},
13211 { (char *)"OBTimerQueueManager_removeTimer", _wrap_OBTimerQueueManager_removeTimer
, METH_VARARGS
},
13212 { (char *)"OBTimerQueueManager_swigregister", OBTimerQueueManager_swigregister
, METH_VARARGS
},
13213 { (char *)"expandTilde", _wrap_expandTilde
, METH_VARARGS
},
13214 { (char *)"bexec", _wrap_bexec
, METH_VARARGS
},
13215 { (char *)"textPropertyToString", _wrap_textPropertyToString
, METH_VARARGS
},
13216 { (char *)"itostring_unsigned_long", _wrap_itostring_unsigned_long
, METH_VARARGS
},
13217 { (char *)"itostring_long", _wrap_itostring_long
, METH_VARARGS
},
13218 { (char *)"itostring_unsigned", _wrap_itostring_unsigned
, METH_VARARGS
},
13219 { (char *)"itostring", _wrap_itostring
, METH_VARARGS
},
13220 { (char *)"basename", _wrap_basename
, METH_VARARGS
},
13225 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
13227 static void *_p_otk__OtkButtonTo_p_otk__OtkFocusWidget(void *x
) {
13228 return (void *)((otk::OtkFocusWidget
*) (otk::OtkFocusLabel
*) ((otk::OtkButton
*) x
));
13230 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkFocusWidget(void *x
) {
13231 return (void *)((otk::OtkFocusWidget
*) ((otk::OtkFocusLabel
*) x
));
13233 static void *_p_otk__OtkButtonTo_p_otk__OtkWidget(void *x
) {
13234 return (void *)((otk::OtkWidget
*) (otk::OtkFocusWidget
*)(otk::OtkFocusLabel
*) ((otk::OtkButton
*) x
));
13236 static void *_p_otk__OtkAppWidgetTo_p_otk__OtkWidget(void *x
) {
13237 return (void *)((otk::OtkWidget
*) ((otk::OtkAppWidget
*) x
));
13239 static void *_p_otk__OtkFocusWidgetTo_p_otk__OtkWidget(void *x
) {
13240 return (void *)((otk::OtkWidget
*) ((otk::OtkFocusWidget
*) x
));
13242 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkWidget(void *x
) {
13243 return (void *)((otk::OtkWidget
*) (otk::OtkFocusWidget
*) ((otk::OtkFocusLabel
*) x
));
13245 static void *_p_otk__OtkButtonTo_p_otk__OtkEventHandler(void *x
) {
13246 return (void *)((otk::OtkEventHandler
*) (otk::OtkWidget
*)(otk::OtkFocusWidget
*)(otk::OtkFocusLabel
*) ((otk::OtkButton
*) x
));
13248 static void *_p_otk__OtkAppWidgetTo_p_otk__OtkEventHandler(void *x
) {
13249 return (void *)((otk::OtkEventHandler
*) (otk::OtkWidget
*) ((otk::OtkAppWidget
*) x
));
13251 static void *_p_otk__OtkWidgetTo_p_otk__OtkEventHandler(void *x
) {
13252 return (void *)((otk::OtkEventHandler
*) ((otk::OtkWidget
*) x
));
13254 static void *_p_otk__OtkFocusWidgetTo_p_otk__OtkEventHandler(void *x
) {
13255 return (void *)((otk::OtkEventHandler
*) (otk::OtkWidget
*) ((otk::OtkFocusWidget
*) x
));
13257 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkEventHandler(void *x
) {
13258 return (void *)((otk::OtkEventHandler
*) (otk::OtkWidget
*)(otk::OtkFocusWidget
*) ((otk::OtkFocusLabel
*) x
));
13260 static void *_p_otk__OtkButtonTo_p_otk__OtkFocusLabel(void *x
) {
13261 return (void *)((otk::OtkFocusLabel
*) ((otk::OtkButton
*) x
));
13263 static void *_p_otk__OtkApplicationTo_p_otk__OtkEventDispatcher(void *x
) {
13264 return (void *)((otk::OtkEventDispatcher
*) ((otk::OtkApplication
*) x
));
13266 static swig_type_info _swigt__p_otk__BGCCache
[] = {{"_p_otk__BGCCache", 0, "otk::BGCCache *", 0},{"_p_otk__BGCCache"},{0}};
13267 static swig_type_info _swigt__p_otk__BColor
[] = {{"_p_otk__BColor", 0, "otk::BColor *", 0},{"_p_otk__BColor"},{0}};
13268 static swig_type_info _swigt__p_otk__OBProperty__StringVect
[] = {{"_p_otk__OBProperty__StringVect", 0, "otk::OBProperty::StringVect *", 0},{"_p_otk__OBProperty__StringVect"},{0}};
13269 static swig_type_info _swigt__p_XFontStruct
[] = {{"_p_XFontStruct", 0, "XFontStruct *", 0},{"_p_XFontStruct"},{0}};
13270 static swig_type_info _swigt__p_otk__Configuration
[] = {{"_p_otk__Configuration", 0, "otk::Configuration *", 0},{"_p_otk__Configuration"},{0}};
13271 static swig_type_info _swigt__p_otk__PixmapMask
[] = {{"_p_otk__PixmapMask", 0, "otk::PixmapMask *", 0},{"_p_otk__PixmapMask"},{0}};
13272 static swig_type_info _swigt__p_Atom
[] = {{"_p_Atom", 0, "Atom *", 0},{"_p_Atom"},{0}};
13273 static swig_type_info _swigt__p_otk__PointerAssassin
[] = {{"_p_otk__PointerAssassin", 0, "otk::PointerAssassin *", 0},{"_p_otk__PointerAssassin"},{0}};
13274 static swig_type_info _swigt__p_otk__BImage
[] = {{"_p_otk__BImage", 0, "otk::BImage *", 0},{"_p_otk__BImage"},{0}};
13275 static swig_type_info _swigt__p_otk__OBTimer
[] = {{"_p_otk__OBTimer", 0, "otk::OBTimer *", 0},{"_p_otk__OBTimer"},{0}};
13276 static swig_type_info _swigt__p_otk__OtkWidget__OtkWidgetList
[] = {{"_p_otk__OtkWidget__OtkWidgetList", 0, "otk::OtkWidget::OtkWidgetList const &", 0},{"_p_otk__OtkWidget__OtkWidgetList"},{0}};
13277 static swig_type_info _swigt__p_bool
[] = {{"_p_bool", 0, "bool *", 0},{"_p_bool"},{0}};
13278 static swig_type_info _swigt__p_otk__OBDisplay
[] = {{"_p_otk__OBDisplay", 0, "otk::OBDisplay *", 0},{"_p_otk__OBDisplay"},{0}};
13279 static swig_type_info _swigt__p_Display
[] = {{"_p_Display", 0, "Display *", 0},{"_p_Display"},{0}};
13280 static swig_type_info _swigt__p_p_XColor
[] = {{"_p_p_XColor", 0, "XColor **", 0},{"_p_p_XColor"},{0}};
13281 static swig_type_info _swigt__p_XReparentEvent
[] = {{"_p_XReparentEvent", 0, "XReparentEvent *", 0},{"_p_XReparentEvent"},{0}};
13282 static swig_type_info _swigt__p_otk__BPen
[] = {{"_p_otk__BPen", 0, "otk::BPen *", 0},{"_p_otk__BPen"},{0}};
13283 static swig_type_info _swigt__p_otk__BImageControl
[] = {{"_p_otk__BImageControl", 0, "otk::BImageControl *", 0},{"_p_otk__BImageControl"},{0}};
13284 static swig_type_info _swigt__p_otk__OtkButton
[] = {{"_p_otk__OtkButton", 0, "otk::OtkButton *", 0},{"_p_otk__OtkButton"},{0}};
13285 static swig_type_info _swigt__p_otk__Rect
[] = {{"_p_otk__Rect", 0, "otk::Rect *", 0},{"_p_otk__Rect"},{0}};
13286 static swig_type_info _swigt__p_otk__Style
[] = {{"_p_otk__Style", 0, "otk::Style *", 0},{"_p_otk__Style"},{0}};
13287 static swig_type_info _swigt__p_XSelectionClearEvent
[] = {{"_p_XSelectionClearEvent", 0, "XSelectionClearEvent *", 0},{"_p_XSelectionClearEvent"},{0}};
13288 static swig_type_info _swigt__p_Visual
[] = {{"_p_Visual", 0, "Visual *", 0},{"_p_Visual"},{0}};
13289 static swig_type_info _swigt__p_timeval
[] = {{"_p_timeval", 0, "timeval *", 0},{"_p_timeval"},{0}};
13290 static swig_type_info _swigt__p_int
[] = {{"_p_int", 0, "int *", 0},{"_p_int"},{0}};
13291 static swig_type_info _swigt__p_otk__Strut
[] = {{"_p_otk__Strut", 0, "otk::Strut *", 0},{"_p_otk__Strut"},{0}};
13292 static swig_type_info _swigt__p_otk__OtkApplication
[] = {{"_p_otk__OtkApplication", 0, "otk::OtkApplication *", 0},{"_p_otk__OtkApplication"},{0}};
13293 static swig_type_info _swigt__p_XRectangle
[] = {{"_p_XRectangle", 0, "XRectangle *", 0},{"_p_XRectangle"},{0}};
13294 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}};
13295 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}};
13296 static swig_type_info _swigt__p_Cursor
[] = {{"_p_Cursor", 0, "Cursor *", 0},{"_p_Cursor"},{0}};
13297 static swig_type_info _swigt__p_Colormap
[] = {{"_p_Colormap", 0, "Colormap *", 0},{"_p_Colormap"},{0}};
13298 static swig_type_info _swigt__p_XGravityEvent
[] = {{"_p_XGravityEvent", 0, "XGravityEvent *", 0},{"_p_XGravityEvent"},{0}};
13299 static swig_type_info _swigt__p_XVisibilityEvent
[] = {{"_p_XVisibilityEvent", 0, "XVisibilityEvent *", 0},{"_p_XVisibilityEvent"},{0}};
13300 static swig_type_info _swigt__p_XPropertyEvent
[] = {{"_p_XPropertyEvent", 0, "XPropertyEvent *", 0},{"_p_XPropertyEvent"},{0}};
13301 static swig_type_info _swigt__p_Window
[] = {{"_p_Window", 0, "Window *", 0},{"_p_Window"},{0}};
13302 static swig_type_info _swigt__p_otk__BGCCacheContext
[] = {{"_p_otk__BGCCacheContext", 0, "otk::BGCCacheContext *", 0},{"_p_otk__BGCCacheContext"},{0}};
13303 static swig_type_info _swigt__p_XCreateWindowEvent
[] = {{"_p_XCreateWindowEvent", 0, "XCreateWindowEvent *", 0},{"_p_XCreateWindowEvent"},{0}};
13304 static swig_type_info _swigt__p_XDestroyWindowEvent
[] = {{"_p_XDestroyWindowEvent", 0, "XDestroyWindowEvent *", 0},{"_p_XDestroyWindowEvent"},{0}};
13305 static swig_type_info _swigt__p_XCirculateEvent
[] = {{"_p_XCirculateEvent", 0, "XCirculateEvent *", 0},{"_p_XCirculateEvent"},{0}};
13306 static swig_type_info _swigt__p_XConfigureEvent
[] = {{"_p_XConfigureEvent", 0, "XConfigureEvent *", 0},{"_p_XConfigureEvent"},{0}};
13307 static swig_type_info _swigt__p_otk__OBProperty
[] = {{"_p_otk__OBProperty", 0, "otk::OBProperty *", 0},{"_p_otk__OBProperty"},{0}};
13308 static swig_type_info _swigt__p_long
[] = {{"_p_long", 0, "long *", 0},{"_p_long"},{0}};
13309 static swig_type_info _swigt__p_XTextProperty
[] = {{"_p_XTextProperty", 0, "XTextProperty *", 0},{"_p_XTextProperty"},{0}};
13310 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}};
13311 static swig_type_info _swigt__p_XCirculateRequestEvent
[] = {{"_p_XCirculateRequestEvent", 0, "XCirculateRequestEvent *", 0},{"_p_XCirculateRequestEvent"},{0}};
13312 static swig_type_info _swigt__p_XConfigureRequestEvent
[] = {{"_p_XConfigureRequestEvent", 0, "XConfigureRequestEvent *", 0},{"_p_XConfigureRequestEvent"},{0}};
13313 static swig_type_info _swigt__p_XMapRequestEvent
[] = {{"_p_XMapRequestEvent", 0, "XMapRequestEvent *", 0},{"_p_XMapRequestEvent"},{0}};
13314 static swig_type_info _swigt__p_XResizeRequestEvent
[] = {{"_p_XResizeRequestEvent", 0, "XResizeRequestEvent *", 0},{"_p_XResizeRequestEvent"},{0}};
13315 static swig_type_info _swigt__p_XSelectionRequestEvent
[] = {{"_p_XSelectionRequestEvent", 0, "XSelectionRequestEvent *", 0},{"_p_XSelectionRequestEvent"},{0}};
13316 static swig_type_info _swigt__otk__OBTimeoutHandler
[] = {{"_otk__OBTimeoutHandler", 0, "otk::OBTimeoutHandler", 0},{"_otk__OBTimeoutHandler"},{0}};
13317 static swig_type_info _swigt__p_XftDraw
[] = {{"_p_XftDraw", 0, "XftDraw *", 0},{"_p_XftDraw"},{0}};
13318 static swig_type_info _swigt__p_otk__ScreenInfo
[] = {{"_p_otk__ScreenInfo", 0, "otk::ScreenInfo *", 0},{"_p_otk__ScreenInfo"},{0}};
13319 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}};
13320 static swig_type_info _swigt__p_otk__BTexture
[] = {{"_p_otk__BTexture", 0, "otk::BTexture *", 0},{"_p_otk__BTexture"},{0}};
13321 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}};
13322 static swig_type_info _swigt__p_otk__BFont
[] = {{"_p_otk__BFont", 0, "otk::BFont *", 0},{"_p_otk__BFont"},{0}};
13323 static swig_type_info _swigt__p_otk__Point
[] = {{"_p_otk__Point", 0, "otk::Point *", 0},{"_p_otk__Point"},{0}};
13324 static swig_type_info _swigt__p_p_char
[] = {{"_p_p_char", 0, "char **", 0},{"_p_p_char"},{0}};
13325 static swig_type_info _swigt__p_XMotionEvent
[] = {{"_p_XMotionEvent", 0, "XMotionEvent *", 0},{"_p_XMotionEvent"},{0}};
13326 static swig_type_info _swigt__p_XButtonEvent
[] = {{"_p_XButtonEvent", 0, "XButtonEvent *", 0},{"_p_XButtonEvent"},{0}};
13327 static swig_type_info _swigt__p_XSelectionEvent
[] = {{"_p_XSelectionEvent", 0, "XSelectionEvent *", 0},{"_p_XSelectionEvent"},{0}};
13328 static swig_type_info _swigt__p_Pixmap
[] = {{"_p_Pixmap", 0, "Pixmap *", 0},{"_p_Pixmap"},{0}};
13329 static swig_type_info _swigt__p_GC
[] = {{"_p_GC", 0, "GC *", 0},{"_p_GC"},{0}};
13330 static swig_type_info _swigt__p_otk__OBTimerQueueManager
[] = {{"_p_otk__OBTimerQueueManager", 0, "otk::OBTimerQueueManager *", 0},{"_p_otk__OBTimerQueueManager"},{0}};
13331 static swig_type_info _swigt__p_otk__OtkAppWidget
[] = {{"_p_otk__OtkAppWidget", 0, "otk::OtkAppWidget *", 0},{"_p_otk__OtkAppWidget"},{0}};
13332 static swig_type_info _swigt__p_XKeyEvent
[] = {{"_p_XKeyEvent", 0, "XKeyEvent *", 0},{"_p_XKeyEvent"},{0}};
13333 static swig_type_info _swigt__p_unsigned_long
[] = {{"_p_unsigned_long", 0, "unsigned long *", 0},{"_p_unsigned_long"},{0}};
13334 static swig_type_info _swigt__p_XEvent
[] = {{"_p_XEvent", 0, "XEvent *", 0},{"_p_XEvent"},{0}};
13335 static swig_type_info _swigt__p_p_unsigned_long
[] = {{"_p_p_unsigned_long", 0, "unsigned long **", 0},{"_p_p_unsigned_long"},{0}};
13336 static swig_type_info _swigt__p_std__string
[] = {{"_p_std__string", 0, "std::string *", 0},{"_p_std__string"},{0}};
13337 static swig_type_info _swigt__p_XCrossingEvent
[] = {{"_p_XCrossingEvent", 0, "XCrossingEvent *", 0},{"_p_XCrossingEvent"},{0}};
13338 static swig_type_info _swigt__p_XMappingEvent
[] = {{"_p_XMappingEvent", 0, "XMappingEvent *", 0},{"_p_XMappingEvent"},{0}};
13339 static swig_type_info _swigt__p_otk__BGCCacheItem
[] = {{"_p_otk__BGCCacheItem", 0, "otk::BGCCacheItem *", 0},{"_p_otk__BGCCacheItem"},{0}};
13340 static swig_type_info _swigt__p_p_unsigned_int
[] = {{"_p_p_unsigned_int", 0, "unsigned int **", 0},{"_p_p_unsigned_int"},{0}};
13341 static swig_type_info _swigt__p_unsigned_int
[] = {{"_p_unsigned_int", 0, "unsigned int *", 0},{"_p_unsigned_int"},{0}};
13342 static swig_type_info _swigt__p_p_unsigned_char
[] = {{"_p_p_unsigned_char", 0, "unsigned char **", 0},{"_p_p_unsigned_char"},{0}};
13343 static swig_type_info _swigt__p_XClientMessageEvent
[] = {{"_p_XClientMessageEvent", 0, "XClientMessageEvent *", 0},{"_p_XClientMessageEvent"},{0}};
13344 static swig_type_info _swigt__p_XGraphicsExposeEvent
[] = {{"_p_XGraphicsExposeEvent", 0, "XGraphicsExposeEvent *", 0},{"_p_XGraphicsExposeEvent"},{0}};
13345 static swig_type_info _swigt__p_XExposeEvent
[] = {{"_p_XExposeEvent", 0, "XExposeEvent *", 0},{"_p_XExposeEvent"},{0}};
13346 static swig_type_info _swigt__p_XFocusChangeEvent
[] = {{"_p_XFocusChangeEvent", 0, "XFocusChangeEvent *", 0},{"_p_XFocusChangeEvent"},{0}};
13347 static swig_type_info _swigt__p_XNoExposeEvent
[] = {{"_p_XNoExposeEvent", 0, "XNoExposeEvent *", 0},{"_p_XNoExposeEvent"},{0}};
13348 static swig_type_info _swigt__p_XMapEvent
[] = {{"_p_XMapEvent", 0, "XMapEvent *", 0},{"_p_XMapEvent"},{0}};
13349 static swig_type_info _swigt__p_XUnmapEvent
[] = {{"_p_XUnmapEvent", 0, "XUnmapEvent *", 0},{"_p_XUnmapEvent"},{0}};
13350 static swig_type_info _swigt__p_XColormapEvent
[] = {{"_p_XColormapEvent", 0, "XColormapEvent *", 0},{"_p_XColormapEvent"},{0}};
13352 static swig_type_info
*swig_types_initial
[] = {
13353 _swigt__p_otk__BGCCache
,
13354 _swigt__p_otk__BColor
,
13355 _swigt__p_otk__OBProperty__StringVect
,
13356 _swigt__p_XFontStruct
,
13357 _swigt__p_otk__Configuration
,
13358 _swigt__p_otk__PixmapMask
,
13360 _swigt__p_otk__PointerAssassin
,
13361 _swigt__p_otk__BImage
,
13362 _swigt__p_otk__OBTimer
,
13363 _swigt__p_otk__OtkWidget__OtkWidgetList
,
13365 _swigt__p_otk__OBDisplay
,
13367 _swigt__p_p_XColor
,
13368 _swigt__p_XReparentEvent
,
13369 _swigt__p_otk__BPen
,
13370 _swigt__p_otk__BImageControl
,
13371 _swigt__p_otk__OtkButton
,
13372 _swigt__p_otk__Rect
,
13373 _swigt__p_otk__Style
,
13374 _swigt__p_XSelectionClearEvent
,
13378 _swigt__p_otk__Strut
,
13379 _swigt__p_otk__OtkApplication
,
13380 _swigt__p_XRectangle
,
13381 _swigt__p_otk__OtkFocusWidget
,
13382 _swigt__p_otk__OtkWidget
,
13384 _swigt__p_Colormap
,
13385 _swigt__p_XGravityEvent
,
13386 _swigt__p_XVisibilityEvent
,
13387 _swigt__p_XPropertyEvent
,
13389 _swigt__p_otk__BGCCacheContext
,
13390 _swigt__p_XCreateWindowEvent
,
13391 _swigt__p_XDestroyWindowEvent
,
13392 _swigt__p_XCirculateEvent
,
13393 _swigt__p_XConfigureEvent
,
13394 _swigt__p_otk__OBProperty
,
13396 _swigt__p_XTextProperty
,
13397 _swigt__p_otk__OtkEventHandler
,
13398 _swigt__p_XCirculateRequestEvent
,
13399 _swigt__p_XConfigureRequestEvent
,
13400 _swigt__p_XMapRequestEvent
,
13401 _swigt__p_XResizeRequestEvent
,
13402 _swigt__p_XSelectionRequestEvent
,
13403 _swigt__otk__OBTimeoutHandler
,
13405 _swigt__p_otk__ScreenInfo
,
13406 _swigt__p_otk__OtkFocusLabel
,
13407 _swigt__p_otk__BTexture
,
13408 _swigt__p_otk__OtkEventDispatcher
,
13409 _swigt__p_otk__BFont
,
13410 _swigt__p_otk__Point
,
13412 _swigt__p_XMotionEvent
,
13413 _swigt__p_XButtonEvent
,
13414 _swigt__p_XSelectionEvent
,
13417 _swigt__p_otk__OBTimerQueueManager
,
13418 _swigt__p_otk__OtkAppWidget
,
13419 _swigt__p_XKeyEvent
,
13420 _swigt__p_unsigned_long
,
13422 _swigt__p_p_unsigned_long
,
13423 _swigt__p_std__string
,
13424 _swigt__p_XCrossingEvent
,
13425 _swigt__p_XMappingEvent
,
13426 _swigt__p_otk__BGCCacheItem
,
13427 _swigt__p_p_unsigned_int
,
13428 _swigt__p_unsigned_int
,
13429 _swigt__p_p_unsigned_char
,
13430 _swigt__p_XClientMessageEvent
,
13431 _swigt__p_XGraphicsExposeEvent
,
13432 _swigt__p_XExposeEvent
,
13433 _swigt__p_XFocusChangeEvent
,
13434 _swigt__p_XNoExposeEvent
,
13435 _swigt__p_XMapEvent
,
13436 _swigt__p_XUnmapEvent
,
13437 _swigt__p_XColormapEvent
,
13442 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
13444 static swig_const_info swig_const_table
[] = {
13445 { SWIG_PY_INT
, (char *)"OtkWidget_Horizontal", (long) otk::OtkWidget::Horizontal
, 0, 0, 0},
13446 { SWIG_PY_INT
, (char *)"OtkWidget_Vertical", (long) otk::OtkWidget::Vertical
, 0, 0, 0},
13447 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Cardinal", (long) otk::OBProperty::Atom_Cardinal
, 0, 0, 0},
13448 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Window", (long) otk::OBProperty::Atom_Window
, 0, 0, 0},
13449 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Pixmap", (long) otk::OBProperty::Atom_Pixmap
, 0, 0, 0},
13450 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Atom", (long) otk::OBProperty::Atom_Atom
, 0, 0, 0},
13451 { SWIG_PY_INT
, (char *)"OBProperty_Atom_String", (long) otk::OBProperty::Atom_String
, 0, 0, 0},
13452 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Utf8", (long) otk::OBProperty::Atom_Utf8
, 0, 0, 0},
13453 { SWIG_PY_INT
, (char *)"OBProperty_openbox_pid", (long) otk::OBProperty::openbox_pid
, 0, 0, 0},
13454 { SWIG_PY_INT
, (char *)"OBProperty_wm_colormap_windows", (long) otk::OBProperty::wm_colormap_windows
, 0, 0, 0},
13455 { SWIG_PY_INT
, (char *)"OBProperty_wm_protocols", (long) otk::OBProperty::wm_protocols
, 0, 0, 0},
13456 { SWIG_PY_INT
, (char *)"OBProperty_wm_state", (long) otk::OBProperty::wm_state
, 0, 0, 0},
13457 { SWIG_PY_INT
, (char *)"OBProperty_wm_delete_window", (long) otk::OBProperty::wm_delete_window
, 0, 0, 0},
13458 { SWIG_PY_INT
, (char *)"OBProperty_wm_take_focus", (long) otk::OBProperty::wm_take_focus
, 0, 0, 0},
13459 { SWIG_PY_INT
, (char *)"OBProperty_wm_change_state", (long) otk::OBProperty::wm_change_state
, 0, 0, 0},
13460 { SWIG_PY_INT
, (char *)"OBProperty_wm_name", (long) otk::OBProperty::wm_name
, 0, 0, 0},
13461 { SWIG_PY_INT
, (char *)"OBProperty_wm_icon_name", (long) otk::OBProperty::wm_icon_name
, 0, 0, 0},
13462 { SWIG_PY_INT
, (char *)"OBProperty_wm_class", (long) otk::OBProperty::wm_class
, 0, 0, 0},
13463 { SWIG_PY_INT
, (char *)"OBProperty_motif_wm_hints", (long) otk::OBProperty::motif_wm_hints
, 0, 0, 0},
13464 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_attributes", (long) otk::OBProperty::blackbox_attributes
, 0, 0, 0},
13465 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_change_attributes", (long) otk::OBProperty::blackbox_change_attributes
, 0, 0, 0},
13466 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_hints", (long) otk::OBProperty::blackbox_hints
, 0, 0, 0},
13467 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_structure_messages", (long) otk::OBProperty::blackbox_structure_messages
, 0, 0, 0},
13468 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_startup", (long) otk::OBProperty::blackbox_notify_startup
, 0, 0, 0},
13469 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_add", (long) otk::OBProperty::blackbox_notify_window_add
, 0, 0, 0},
13470 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_del", (long) otk::OBProperty::blackbox_notify_window_del
, 0, 0, 0},
13471 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_focus", (long) otk::OBProperty::blackbox_notify_window_focus
, 0, 0, 0},
13472 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_current_workspace", (long) otk::OBProperty::blackbox_notify_current_workspace
, 0, 0, 0},
13473 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_workspace_count", (long) otk::OBProperty::blackbox_notify_workspace_count
, 0, 0, 0},
13474 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_raise", (long) otk::OBProperty::blackbox_notify_window_raise
, 0, 0, 0},
13475 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_lower", (long) otk::OBProperty::blackbox_notify_window_lower
, 0, 0, 0},
13476 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_change_workspace", (long) otk::OBProperty::blackbox_change_workspace
, 0, 0, 0},
13477 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_change_window_focus", (long) otk::OBProperty::blackbox_change_window_focus
, 0, 0, 0},
13478 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_cycle_window_focus", (long) otk::OBProperty::blackbox_cycle_window_focus
, 0, 0, 0},
13479 { SWIG_PY_INT
, (char *)"OBProperty_openbox_show_root_menu", (long) otk::OBProperty::openbox_show_root_menu
, 0, 0, 0},
13480 { SWIG_PY_INT
, (char *)"OBProperty_openbox_show_workspace_menu", (long) otk::OBProperty::openbox_show_workspace_menu
, 0, 0, 0},
13481 { SWIG_PY_INT
, (char *)"OBProperty_net_supported", (long) otk::OBProperty::net_supported
, 0, 0, 0},
13482 { SWIG_PY_INT
, (char *)"OBProperty_net_client_list", (long) otk::OBProperty::net_client_list
, 0, 0, 0},
13483 { SWIG_PY_INT
, (char *)"OBProperty_net_client_list_stacking", (long) otk::OBProperty::net_client_list_stacking
, 0, 0, 0},
13484 { SWIG_PY_INT
, (char *)"OBProperty_net_number_of_desktops", (long) otk::OBProperty::net_number_of_desktops
, 0, 0, 0},
13485 { SWIG_PY_INT
, (char *)"OBProperty_net_desktop_geometry", (long) otk::OBProperty::net_desktop_geometry
, 0, 0, 0},
13486 { SWIG_PY_INT
, (char *)"OBProperty_net_desktop_viewport", (long) otk::OBProperty::net_desktop_viewport
, 0, 0, 0},
13487 { SWIG_PY_INT
, (char *)"OBProperty_net_current_desktop", (long) otk::OBProperty::net_current_desktop
, 0, 0, 0},
13488 { SWIG_PY_INT
, (char *)"OBProperty_net_desktop_names", (long) otk::OBProperty::net_desktop_names
, 0, 0, 0},
13489 { SWIG_PY_INT
, (char *)"OBProperty_net_active_window", (long) otk::OBProperty::net_active_window
, 0, 0, 0},
13490 { SWIG_PY_INT
, (char *)"OBProperty_net_workarea", (long) otk::OBProperty::net_workarea
, 0, 0, 0},
13491 { SWIG_PY_INT
, (char *)"OBProperty_net_supporting_wm_check", (long) otk::OBProperty::net_supporting_wm_check
, 0, 0, 0},
13492 { SWIG_PY_INT
, (char *)"OBProperty_net_close_window", (long) otk::OBProperty::net_close_window
, 0, 0, 0},
13493 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize", (long) otk::OBProperty::net_wm_moveresize
, 0, 0, 0},
13494 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_name", (long) otk::OBProperty::net_wm_name
, 0, 0, 0},
13495 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_visible_name", (long) otk::OBProperty::net_wm_visible_name
, 0, 0, 0},
13496 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_icon_name", (long) otk::OBProperty::net_wm_icon_name
, 0, 0, 0},
13497 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_visible_icon_name", (long) otk::OBProperty::net_wm_visible_icon_name
, 0, 0, 0},
13498 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_desktop", (long) otk::OBProperty::net_wm_desktop
, 0, 0, 0},
13499 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type", (long) otk::OBProperty::net_wm_window_type
, 0, 0, 0},
13500 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state", (long) otk::OBProperty::net_wm_state
, 0, 0, 0},
13501 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_strut", (long) otk::OBProperty::net_wm_strut
, 0, 0, 0},
13502 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_allowed_actions", (long) otk::OBProperty::net_wm_allowed_actions
, 0, 0, 0},
13503 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_desktop", (long) otk::OBProperty::net_wm_window_type_desktop
, 0, 0, 0},
13504 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_dock", (long) otk::OBProperty::net_wm_window_type_dock
, 0, 0, 0},
13505 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_toolbar", (long) otk::OBProperty::net_wm_window_type_toolbar
, 0, 0, 0},
13506 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_menu", (long) otk::OBProperty::net_wm_window_type_menu
, 0, 0, 0},
13507 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_utility", (long) otk::OBProperty::net_wm_window_type_utility
, 0, 0, 0},
13508 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_splash", (long) otk::OBProperty::net_wm_window_type_splash
, 0, 0, 0},
13509 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_dialog", (long) otk::OBProperty::net_wm_window_type_dialog
, 0, 0, 0},
13510 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_normal", (long) otk::OBProperty::net_wm_window_type_normal
, 0, 0, 0},
13511 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_size_topleft", (long) otk::OBProperty::net_wm_moveresize_size_topleft
, 0, 0, 0},
13512 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_size_topright", (long) otk::OBProperty::net_wm_moveresize_size_topright
, 0, 0, 0},
13513 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_size_bottomleft", (long) otk::OBProperty::net_wm_moveresize_size_bottomleft
, 0, 0, 0},
13514 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_size_bottomright", (long) otk::OBProperty::net_wm_moveresize_size_bottomright
, 0, 0, 0},
13515 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_move", (long) otk::OBProperty::net_wm_moveresize_move
, 0, 0, 0},
13516 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_move", (long) otk::OBProperty::net_wm_action_move
, 0, 0, 0},
13517 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_resize", (long) otk::OBProperty::net_wm_action_resize
, 0, 0, 0},
13518 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_shade", (long) otk::OBProperty::net_wm_action_shade
, 0, 0, 0},
13519 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_maximize_horz", (long) otk::OBProperty::net_wm_action_maximize_horz
, 0, 0, 0},
13520 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_maximize_vert", (long) otk::OBProperty::net_wm_action_maximize_vert
, 0, 0, 0},
13521 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_change_desktop", (long) otk::OBProperty::net_wm_action_change_desktop
, 0, 0, 0},
13522 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_close", (long) otk::OBProperty::net_wm_action_close
, 0, 0, 0},
13523 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_modal", (long) otk::OBProperty::net_wm_state_modal
, 0, 0, 0},
13524 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_maximized_vert", (long) otk::OBProperty::net_wm_state_maximized_vert
, 0, 0, 0},
13525 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_maximized_horz", (long) otk::OBProperty::net_wm_state_maximized_horz
, 0, 0, 0},
13526 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_shaded", (long) otk::OBProperty::net_wm_state_shaded
, 0, 0, 0},
13527 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_skip_taskbar", (long) otk::OBProperty::net_wm_state_skip_taskbar
, 0, 0, 0},
13528 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_skip_pager", (long) otk::OBProperty::net_wm_state_skip_pager
, 0, 0, 0},
13529 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_hidden", (long) otk::OBProperty::net_wm_state_hidden
, 0, 0, 0},
13530 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_fullscreen", (long) otk::OBProperty::net_wm_state_fullscreen
, 0, 0, 0},
13531 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_floating", (long) otk::OBProperty::net_wm_state_floating
, 0, 0, 0},
13532 { SWIG_PY_INT
, (char *)"OBProperty_kde_net_system_tray_windows", (long) otk::OBProperty::kde_net_system_tray_windows
, 0, 0, 0},
13533 { 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},
13534 { SWIG_PY_INT
, (char *)"OBProperty_kde_net_wm_window_type_override", (long) otk::OBProperty::kde_net_wm_window_type_override
, 0, 0, 0},
13535 { SWIG_PY_INT
, (char *)"OBProperty_NUM_ATOMS", (long) otk::OBProperty::NUM_ATOMS
, 0, 0, 0},
13536 { SWIG_PY_INT
, (char *)"OBProperty_ascii", (long) otk::OBProperty::ascii
, 0, 0, 0},
13537 { SWIG_PY_INT
, (char *)"OBProperty_utf8", (long) otk::OBProperty::utf8
, 0, 0, 0},
13538 { SWIG_PY_INT
, (char *)"OBProperty_NUM_STRING_TYPE", (long) otk::OBProperty::NUM_STRING_TYPE
, 0, 0, 0},
13539 { SWIG_PY_INT
, (char *)"Style_ButtonFocus", (long) otk::Style::ButtonFocus
, 0, 0, 0},
13540 { SWIG_PY_INT
, (char *)"Style_ButtonUnfocus", (long) otk::Style::ButtonUnfocus
, 0, 0, 0},
13541 { SWIG_PY_INT
, (char *)"Style_TitleFocus", (long) otk::Style::TitleFocus
, 0, 0, 0},
13542 { SWIG_PY_INT
, (char *)"Style_TitleUnfocus", (long) otk::Style::TitleUnfocus
, 0, 0, 0},
13543 { SWIG_PY_INT
, (char *)"Style_LabelFocus", (long) otk::Style::LabelFocus
, 0, 0, 0},
13544 { SWIG_PY_INT
, (char *)"Style_LabelUnfocus", (long) otk::Style::LabelUnfocus
, 0, 0, 0},
13545 { SWIG_PY_INT
, (char *)"Style_HandleFocus", (long) otk::Style::HandleFocus
, 0, 0, 0},
13546 { SWIG_PY_INT
, (char *)"Style_HandleUnfocus", (long) otk::Style::HandleUnfocus
, 0, 0, 0},
13547 { SWIG_PY_INT
, (char *)"Style_GripFocus", (long) otk::Style::GripFocus
, 0, 0, 0},
13548 { SWIG_PY_INT
, (char *)"Style_GripUnfocus", (long) otk::Style::GripUnfocus
, 0, 0, 0},
13549 { SWIG_PY_INT
, (char *)"Style_LeftJustify", (long) otk::Style::LeftJustify
, 0, 0, 0},
13550 { SWIG_PY_INT
, (char *)"Style_RightJustify", (long) otk::Style::RightJustify
, 0, 0, 0},
13551 { SWIG_PY_INT
, (char *)"Style_CenterJustify", (long) otk::Style::CenterJustify
, 0, 0, 0},
13552 { SWIG_PY_INT
, (char *)"Style_RoundBullet", (long) otk::Style::RoundBullet
, 0, 0, 0},
13553 { SWIG_PY_INT
, (char *)"Style_TriangleBullet", (long) otk::Style::TriangleBullet
, 0, 0, 0},
13554 { SWIG_PY_INT
, (char *)"Style_SquareBullet", (long) otk::Style::SquareBullet
, 0, 0, 0},
13555 { SWIG_PY_INT
, (char *)"Style_NoBullet", (long) otk::Style::NoBullet
, 0, 0, 0},
13556 { SWIG_PY_INT
, (char *)"BTexture_NoTexture", (long) otk::BTexture::NoTexture
, 0, 0, 0},
13557 { SWIG_PY_INT
, (char *)"BTexture_Flat", (long) otk::BTexture::Flat
, 0, 0, 0},
13558 { SWIG_PY_INT
, (char *)"BTexture_Sunken", (long) otk::BTexture::Sunken
, 0, 0, 0},
13559 { SWIG_PY_INT
, (char *)"BTexture_Raised", (long) otk::BTexture::Raised
, 0, 0, 0},
13560 { SWIG_PY_INT
, (char *)"BTexture_Solid", (long) otk::BTexture::Solid
, 0, 0, 0},
13561 { SWIG_PY_INT
, (char *)"BTexture_Gradient", (long) otk::BTexture::Gradient
, 0, 0, 0},
13562 { SWIG_PY_INT
, (char *)"BTexture_Horizontal", (long) otk::BTexture::Horizontal
, 0, 0, 0},
13563 { SWIG_PY_INT
, (char *)"BTexture_Vertical", (long) otk::BTexture::Vertical
, 0, 0, 0},
13564 { SWIG_PY_INT
, (char *)"BTexture_Diagonal", (long) otk::BTexture::Diagonal
, 0, 0, 0},
13565 { SWIG_PY_INT
, (char *)"BTexture_CrossDiagonal", (long) otk::BTexture::CrossDiagonal
, 0, 0, 0},
13566 { SWIG_PY_INT
, (char *)"BTexture_Rectangle", (long) otk::BTexture::Rectangle
, 0, 0, 0},
13567 { SWIG_PY_INT
, (char *)"BTexture_Pyramid", (long) otk::BTexture::Pyramid
, 0, 0, 0},
13568 { SWIG_PY_INT
, (char *)"BTexture_PipeCross", (long) otk::BTexture::PipeCross
, 0, 0, 0},
13569 { SWIG_PY_INT
, (char *)"BTexture_Elliptic", (long) otk::BTexture::Elliptic
, 0, 0, 0},
13570 { SWIG_PY_INT
, (char *)"BTexture_Bevel1", (long) otk::BTexture::Bevel1
, 0, 0, 0},
13571 { SWIG_PY_INT
, (char *)"BTexture_Bevel2", (long) otk::BTexture::Bevel2
, 0, 0, 0},
13572 { SWIG_PY_INT
, (char *)"BTexture_Border", (long) otk::BTexture::Border
, 0, 0, 0},
13573 { SWIG_PY_INT
, (char *)"BTexture_Invert", (long) otk::BTexture::Invert
, 0, 0, 0},
13574 { SWIG_PY_INT
, (char *)"BTexture_Parent_Relative", (long) otk::BTexture::Parent_Relative
, 0, 0, 0},
13575 { SWIG_PY_INT
, (char *)"BTexture_Interlaced", (long) otk::BTexture::Interlaced
, 0, 0, 0},
13585 SWIGEXPORT(void) SWIG_init(void) {
13586 static PyObject
*SWIG_globals
= 0;
13587 static int typeinit
= 0;
13590 if (!SWIG_globals
) SWIG_globals
= SWIG_newvarlink();
13591 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
13592 d
= PyModule_GetDict(m
);
13595 for (i
= 0; swig_types_initial
[i
]; i
++) {
13596 swig_types
[i
] = SWIG_TypeRegister(swig_types_initial
[i
]);
13600 SWIG_InstallConstants(d
,swig_const_table
);
13602 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals
);
13603 SWIG_addvarlink(SWIG_globals
,(char*)"OBDisplay_display",_wrap_OBDisplay_display_get
, _wrap_OBDisplay_display_set
);
13604 SWIG_addvarlink(SWIG_globals
,(char*)"BSENTINEL",_wrap_BSENTINEL_get
, _wrap_BSENTINEL_set
);