1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
3 * Version 1.3.17u-20021226-0459
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_Time swig_types[39]
688 #define SWIGTYPE_p_XCirculateEvent swig_types[40]
689 #define SWIGTYPE_p_XConfigureEvent swig_types[41]
690 #define SWIGTYPE_p_long swig_types[42]
691 #define SWIGTYPE_p_otk__OBProperty swig_types[43]
692 #define SWIGTYPE_p_XTextProperty swig_types[44]
693 #define SWIGTYPE_p_otk__OtkEventHandler swig_types[45]
694 #define SWIGTYPE_p_XSelectionRequestEvent swig_types[46]
695 #define SWIGTYPE_p_XCirculateRequestEvent swig_types[47]
696 #define SWIGTYPE_p_XConfigureRequestEvent swig_types[48]
697 #define SWIGTYPE_p_XMapRequestEvent swig_types[49]
698 #define SWIGTYPE_p_XResizeRequestEvent swig_types[50]
699 #define SWIGTYPE_otk__OBTimeoutHandler swig_types[51]
700 #define SWIGTYPE_p_XftDraw swig_types[52]
701 #define SWIGTYPE_p_otk__ScreenInfo swig_types[53]
702 #define SWIGTYPE_p_otk__OtkFocusLabel swig_types[54]
703 #define SWIGTYPE_p_otk__BTexture swig_types[55]
704 #define SWIGTYPE_p_otk__OtkEventDispatcher swig_types[56]
705 #define SWIGTYPE_p_otk__BFont swig_types[57]
706 #define SWIGTYPE_p_otk__Point swig_types[58]
707 #define SWIGTYPE_p_p_char swig_types[59]
708 #define SWIGTYPE_p_XMotionEvent swig_types[60]
709 #define SWIGTYPE_p_XButtonEvent swig_types[61]
710 #define SWIGTYPE_p_XSelectionEvent swig_types[62]
711 #define SWIGTYPE_p_Pixmap swig_types[63]
712 #define SWIGTYPE_p_GC swig_types[64]
713 #define SWIGTYPE_p_otk__OBTimerQueueManager swig_types[65]
714 #define SWIGTYPE_p_otk__OtkAppWidget swig_types[66]
715 #define SWIGTYPE_p_XKeyEvent swig_types[67]
716 #define SWIGTYPE_p_unsigned_long swig_types[68]
717 #define SWIGTYPE_p_XEvent swig_types[69]
718 #define SWIGTYPE_p_p_unsigned_long swig_types[70]
719 #define SWIGTYPE_p_std__string swig_types[71]
720 #define SWIGTYPE_p_XCrossingEvent swig_types[72]
721 #define SWIGTYPE_p_XMappingEvent swig_types[73]
722 #define SWIGTYPE_p_otk__BGCCacheItem swig_types[74]
723 #define SWIGTYPE_p_p_unsigned_int swig_types[75]
724 #define SWIGTYPE_p_unsigned_int swig_types[76]
725 #define SWIGTYPE_p_p_unsigned_char swig_types[77]
726 #define SWIGTYPE_p_XClientMessageEvent swig_types[78]
727 #define SWIGTYPE_p_XExposeEvent swig_types[79]
728 #define SWIGTYPE_p_XFocusChangeEvent swig_types[80]
729 #define SWIGTYPE_p_XGraphicsExposeEvent swig_types[81]
730 #define SWIGTYPE_p_XNoExposeEvent swig_types[82]
731 #define SWIGTYPE_p_XMapEvent swig_types[83]
732 #define SWIGTYPE_p_XUnmapEvent swig_types[84]
733 #define SWIGTYPE_p_XColormapEvent swig_types[85]
734 static swig_type_info
*swig_types
[87];
736 /* -------- TYPES TABLE (END) -------- */
739 /*-----------------------------------------------
741 ------------------------------------------------*/
742 #define SWIG_init init_otk
744 #define SWIG_name "_otk"
747 # include "../config.h"
750 #include "application.hh"
751 #include "appwidget.hh"
752 #include "assassin.hh"
755 #include "configuration.hh"
756 #include "display.hh"
757 #include "eventdispatcher.hh"
758 #include "eventhandler.hh"
759 #include "focuslabel.hh"
760 #include "focuswidget.hh"
762 #include "gccache.hh"
766 #include "property.hh"
768 #include "screeninfo.hh"
771 #include "texture.hh"
773 #include "timerqueue.hh"
774 #include "timerqueuemanager.hh"
779 #define SWIG_MemoryError 1
780 #define SWIG_IOError 2
781 #define SWIG_RuntimeError 3
782 #define SWIG_IndexError 4
783 #define SWIG_TypeError 5
784 #define SWIG_DivisionByZero 6
785 #define SWIG_OverflowError 7
786 #define SWIG_SyntaxError 8
787 #define SWIG_ValueError 9
788 #define SWIG_SystemError 10
789 #define SWIG_UnknownError 99
792 static void _SWIG_exception(int code
, const char *msg
) {
794 case SWIG_MemoryError
:
795 PyErr_SetString(PyExc_MemoryError
,msg
);
798 PyErr_SetString(PyExc_IOError
,msg
);
800 case SWIG_RuntimeError
:
801 PyErr_SetString(PyExc_RuntimeError
,msg
);
803 case SWIG_IndexError
:
804 PyErr_SetString(PyExc_IndexError
,msg
);
807 PyErr_SetString(PyExc_TypeError
,msg
);
809 case SWIG_DivisionByZero
:
810 PyErr_SetString(PyExc_ZeroDivisionError
,msg
);
812 case SWIG_OverflowError
:
813 PyErr_SetString(PyExc_OverflowError
,msg
);
815 case SWIG_SyntaxError
:
816 PyErr_SetString(PyExc_SyntaxError
,msg
);
818 case SWIG_ValueError
:
819 PyErr_SetString(PyExc_ValueError
,msg
);
821 case SWIG_SystemError
:
822 PyErr_SetString(PyExc_SystemError
,msg
);
825 PyErr_SetString(PyExc_RuntimeError
,msg
);
830 #define SWIG_exception(a,b) { _SWIG_exception(a,b); SWIG_fail; }
838 static PyObject
* SwigInt_FromBool(bool b
) {
839 return PyInt_FromLong(b
? 1L : 0L);
841 static double SwigNumber_Check(PyObject
* o
) {
842 return PyFloat_Check(o
) || PyInt_Check(o
);
844 static double SwigNumber_AsDouble(PyObject
* o
) {
845 return (PyFloat_Check(o
) ? PyFloat_AsDouble(o
) : double(PyInt_AsLong(o
)));
847 static PyObject
* SwigString_FromString(const std::string
& s
) {
848 return PyString_FromString(s
.c_str());
850 static std::string
SwigString_AsString(PyObject
* o
) {
851 return std::string(PyString_AsString(o
));
862 static PyObject
*_wrap_new_OtkEventDispatcher(PyObject
*self
, PyObject
*args
) {
864 otk::OtkEventDispatcher
*result
;
866 if(!PyArg_ParseTuple(args
,(char *)":new_OtkEventDispatcher")) goto fail
;
867 result
= (otk::OtkEventDispatcher
*)new otk::OtkEventDispatcher();
869 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkEventDispatcher
, 1);
876 static PyObject
*_wrap_delete_OtkEventDispatcher(PyObject
*self
, PyObject
*args
) {
878 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
879 PyObject
* obj0
= 0 ;
881 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkEventDispatcher",&obj0
)) goto fail
;
882 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
885 Py_INCREF(Py_None
); resultobj
= Py_None
;
892 static PyObject
*_wrap_OtkEventDispatcher_clearAllHandlers(PyObject
*self
, PyObject
*args
) {
894 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
895 PyObject
* obj0
= 0 ;
897 if(!PyArg_ParseTuple(args
,(char *)"O:OtkEventDispatcher_clearAllHandlers",&obj0
)) goto fail
;
898 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
899 (arg1
)->clearAllHandlers();
901 Py_INCREF(Py_None
); resultobj
= Py_None
;
908 static PyObject
*_wrap_OtkEventDispatcher_registerHandler(PyObject
*self
, PyObject
*args
) {
910 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
912 otk::OtkEventHandler
*arg3
= (otk::OtkEventHandler
*) 0 ;
914 PyObject
* obj0
= 0 ;
915 PyObject
* obj1
= 0 ;
916 PyObject
* obj2
= 0 ;
918 if(!PyArg_ParseTuple(args
,(char *)"OOO:OtkEventDispatcher_registerHandler",&obj0
,&obj1
,&obj2
)) goto fail
;
919 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
920 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
922 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
923 (arg1
)->registerHandler(arg2
,arg3
);
925 Py_INCREF(Py_None
); resultobj
= Py_None
;
932 static PyObject
*_wrap_OtkEventDispatcher_clearHandler(PyObject
*self
, PyObject
*args
) {
934 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
937 PyObject
* obj0
= 0 ;
938 PyObject
* obj1
= 0 ;
940 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventDispatcher_clearHandler",&obj0
,&obj1
)) goto fail
;
941 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
942 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
944 (arg1
)->clearHandler(arg2
);
946 Py_INCREF(Py_None
); resultobj
= Py_None
;
953 static PyObject
*_wrap_OtkEventDispatcher_dispatchEvents(PyObject
*self
, PyObject
*args
) {
955 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
956 PyObject
* obj0
= 0 ;
958 if(!PyArg_ParseTuple(args
,(char *)"O:OtkEventDispatcher_dispatchEvents",&obj0
)) goto fail
;
959 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
960 (arg1
)->dispatchEvents();
962 Py_INCREF(Py_None
); resultobj
= Py_None
;
969 static PyObject
*_wrap_OtkEventDispatcher_setFallbackHandler(PyObject
*self
, PyObject
*args
) {
971 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
972 otk::OtkEventHandler
*arg2
= (otk::OtkEventHandler
*) 0 ;
973 PyObject
* obj0
= 0 ;
974 PyObject
* obj1
= 0 ;
976 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventDispatcher_setFallbackHandler",&obj0
,&obj1
)) goto fail
;
977 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
978 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
979 (arg1
)->setFallbackHandler(arg2
);
981 Py_INCREF(Py_None
); resultobj
= Py_None
;
988 static PyObject
*_wrap_OtkEventDispatcher_getFallbackHandler(PyObject
*self
, PyObject
*args
) {
990 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
991 otk::OtkEventHandler
*result
;
992 PyObject
* obj0
= 0 ;
994 if(!PyArg_ParseTuple(args
,(char *)"O:OtkEventDispatcher_getFallbackHandler",&obj0
)) goto fail
;
995 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
996 result
= (otk::OtkEventHandler
*)((otk::OtkEventDispatcher
const *)arg1
)->getFallbackHandler();
998 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkEventHandler
, 0);
1005 static PyObject
*_wrap_OtkEventDispatcher_setMasterHandler(PyObject
*self
, PyObject
*args
) {
1006 PyObject
*resultobj
;
1007 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
1008 otk::OtkEventHandler
*arg2
= (otk::OtkEventHandler
*) 0 ;
1009 PyObject
* obj0
= 0 ;
1010 PyObject
* obj1
= 0 ;
1012 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventDispatcher_setMasterHandler",&obj0
,&obj1
)) goto fail
;
1013 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1014 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1015 (arg1
)->setMasterHandler(arg2
);
1017 Py_INCREF(Py_None
); resultobj
= Py_None
;
1024 static PyObject
*_wrap_OtkEventDispatcher_getMasterHandler(PyObject
*self
, PyObject
*args
) {
1025 PyObject
*resultobj
;
1026 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
1027 otk::OtkEventHandler
*result
;
1028 PyObject
* obj0
= 0 ;
1030 if(!PyArg_ParseTuple(args
,(char *)"O:OtkEventDispatcher_getMasterHandler",&obj0
)) goto fail
;
1031 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1032 result
= (otk::OtkEventHandler
*)((otk::OtkEventDispatcher
const *)arg1
)->getMasterHandler();
1034 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkEventHandler
, 0);
1041 static PyObject
*_wrap_OtkEventDispatcher_findHandler(PyObject
*self
, PyObject
*args
) {
1042 PyObject
*resultobj
;
1043 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
1045 otk::OtkEventHandler
*result
;
1047 PyObject
* obj0
= 0 ;
1048 PyObject
* obj1
= 0 ;
1050 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventDispatcher_findHandler",&obj0
,&obj1
)) goto fail
;
1051 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1052 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
1054 result
= (otk::OtkEventHandler
*)(arg1
)->findHandler(arg2
);
1056 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkEventHandler
, 0);
1063 static PyObject
*_wrap_OtkEventDispatcher_lastTime(PyObject
*self
, PyObject
*args
) {
1064 PyObject
*resultobj
;
1065 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
1067 PyObject
* obj0
= 0 ;
1069 if(!PyArg_ParseTuple(args
,(char *)"O:OtkEventDispatcher_lastTime",&obj0
)) goto fail
;
1070 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1071 result
= ((otk::OtkEventDispatcher
const *)arg1
)->lastTime();
1075 resultptr
= new Time((Time
&) result
);
1076 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Time
, 1);
1084 static PyObject
* OtkEventDispatcher_swigregister(PyObject
*self
, PyObject
*args
) {
1086 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
1087 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkEventDispatcher
, obj
);
1089 return Py_BuildValue((char *)"");
1091 static PyObject
*_wrap_OtkEventHandler_handle(PyObject
*self
, PyObject
*args
) {
1092 PyObject
*resultobj
;
1093 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1095 PyObject
* obj0
= 0 ;
1096 PyObject
* obj1
= 0 ;
1098 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_handle",&obj0
,&obj1
)) goto fail
;
1099 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1100 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1102 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1104 (arg1
)->handle((XEvent
const &)*arg2
);
1106 Py_INCREF(Py_None
); resultobj
= Py_None
;
1113 static PyObject
*_wrap_OtkEventHandler_keyPressHandler(PyObject
*self
, PyObject
*args
) {
1114 PyObject
*resultobj
;
1115 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1116 XKeyEvent
*arg2
= 0 ;
1117 PyObject
* obj0
= 0 ;
1118 PyObject
* obj1
= 0 ;
1120 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_keyPressHandler",&obj0
,&obj1
)) goto fail
;
1121 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1122 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XKeyEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1124 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1126 (arg1
)->keyPressHandler((XKeyEvent
const &)*arg2
);
1128 Py_INCREF(Py_None
); resultobj
= Py_None
;
1135 static PyObject
*_wrap_OtkEventHandler_keyReleaseHandler(PyObject
*self
, PyObject
*args
) {
1136 PyObject
*resultobj
;
1137 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1138 XKeyEvent
*arg2
= 0 ;
1139 PyObject
* obj0
= 0 ;
1140 PyObject
* obj1
= 0 ;
1142 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_keyReleaseHandler",&obj0
,&obj1
)) goto fail
;
1143 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1144 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XKeyEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1146 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1148 (arg1
)->keyReleaseHandler((XKeyEvent
const &)*arg2
);
1150 Py_INCREF(Py_None
); resultobj
= Py_None
;
1157 static PyObject
*_wrap_OtkEventHandler_buttonPressHandler(PyObject
*self
, PyObject
*args
) {
1158 PyObject
*resultobj
;
1159 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1160 XButtonEvent
*arg2
= 0 ;
1161 PyObject
* obj0
= 0 ;
1162 PyObject
* obj1
= 0 ;
1164 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_buttonPressHandler",&obj0
,&obj1
)) goto fail
;
1165 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1166 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XButtonEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1168 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1170 (arg1
)->buttonPressHandler((XButtonEvent
const &)*arg2
);
1172 Py_INCREF(Py_None
); resultobj
= Py_None
;
1179 static PyObject
*_wrap_OtkEventHandler_buttonReleaseHandler(PyObject
*self
, PyObject
*args
) {
1180 PyObject
*resultobj
;
1181 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1182 XButtonEvent
*arg2
= 0 ;
1183 PyObject
* obj0
= 0 ;
1184 PyObject
* obj1
= 0 ;
1186 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_buttonReleaseHandler",&obj0
,&obj1
)) goto fail
;
1187 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1188 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XButtonEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1190 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1192 (arg1
)->buttonReleaseHandler((XButtonEvent
const &)*arg2
);
1194 Py_INCREF(Py_None
); resultobj
= Py_None
;
1201 static PyObject
*_wrap_OtkEventHandler_motionHandler(PyObject
*self
, PyObject
*args
) {
1202 PyObject
*resultobj
;
1203 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1204 XMotionEvent
*arg2
= 0 ;
1205 PyObject
* obj0
= 0 ;
1206 PyObject
* obj1
= 0 ;
1208 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_motionHandler",&obj0
,&obj1
)) goto fail
;
1209 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1210 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XMotionEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1212 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1214 (arg1
)->motionHandler((XMotionEvent
const &)*arg2
);
1216 Py_INCREF(Py_None
); resultobj
= Py_None
;
1223 static PyObject
*_wrap_OtkEventHandler_enterHandler(PyObject
*self
, PyObject
*args
) {
1224 PyObject
*resultobj
;
1225 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1226 XCrossingEvent
*arg2
= 0 ;
1227 PyObject
* obj0
= 0 ;
1228 PyObject
* obj1
= 0 ;
1230 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_enterHandler",&obj0
,&obj1
)) goto fail
;
1231 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1232 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XCrossingEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1234 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1236 (arg1
)->enterHandler((XCrossingEvent
const &)*arg2
);
1238 Py_INCREF(Py_None
); resultobj
= Py_None
;
1245 static PyObject
*_wrap_OtkEventHandler_leaveHandler(PyObject
*self
, PyObject
*args
) {
1246 PyObject
*resultobj
;
1247 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1248 XCrossingEvent
*arg2
= 0 ;
1249 PyObject
* obj0
= 0 ;
1250 PyObject
* obj1
= 0 ;
1252 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_leaveHandler",&obj0
,&obj1
)) goto fail
;
1253 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1254 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XCrossingEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1256 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1258 (arg1
)->leaveHandler((XCrossingEvent
const &)*arg2
);
1260 Py_INCREF(Py_None
); resultobj
= Py_None
;
1267 static PyObject
*_wrap_OtkEventHandler_focusHandler(PyObject
*self
, PyObject
*args
) {
1268 PyObject
*resultobj
;
1269 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1270 XFocusChangeEvent
*arg2
= 0 ;
1271 PyObject
* obj0
= 0 ;
1272 PyObject
* obj1
= 0 ;
1274 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_focusHandler",&obj0
,&obj1
)) goto fail
;
1275 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1276 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XFocusChangeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1278 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1280 (arg1
)->focusHandler((XFocusChangeEvent
const &)*arg2
);
1282 Py_INCREF(Py_None
); resultobj
= Py_None
;
1289 static PyObject
*_wrap_OtkEventHandler_unfocusHandler(PyObject
*self
, PyObject
*args
) {
1290 PyObject
*resultobj
;
1291 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1292 XFocusChangeEvent
*arg2
= 0 ;
1293 PyObject
* obj0
= 0 ;
1294 PyObject
* obj1
= 0 ;
1296 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_unfocusHandler",&obj0
,&obj1
)) goto fail
;
1297 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1298 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XFocusChangeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1300 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1302 (arg1
)->unfocusHandler((XFocusChangeEvent
const &)*arg2
);
1304 Py_INCREF(Py_None
); resultobj
= Py_None
;
1311 static PyObject
*_wrap_OtkEventHandler_exposeHandler(PyObject
*self
, PyObject
*args
) {
1312 PyObject
*resultobj
;
1313 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1314 XExposeEvent
*arg2
= 0 ;
1315 PyObject
* obj0
= 0 ;
1316 PyObject
* obj1
= 0 ;
1318 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_exposeHandler",&obj0
,&obj1
)) goto fail
;
1319 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1320 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XExposeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1322 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1324 (arg1
)->exposeHandler((XExposeEvent
const &)*arg2
);
1326 Py_INCREF(Py_None
); resultobj
= Py_None
;
1333 static PyObject
*_wrap_OtkEventHandler_graphicsExposeHandler(PyObject
*self
, PyObject
*args
) {
1334 PyObject
*resultobj
;
1335 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1336 XGraphicsExposeEvent
*arg2
= 0 ;
1337 PyObject
* obj0
= 0 ;
1338 PyObject
* obj1
= 0 ;
1340 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_graphicsExposeHandler",&obj0
,&obj1
)) goto fail
;
1341 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1342 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XGraphicsExposeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1344 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1346 (arg1
)->graphicsExposeHandler((XGraphicsExposeEvent
const &)*arg2
);
1348 Py_INCREF(Py_None
); resultobj
= Py_None
;
1355 static PyObject
*_wrap_OtkEventHandler_noExposeEventHandler(PyObject
*self
, PyObject
*args
) {
1356 PyObject
*resultobj
;
1357 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1358 XNoExposeEvent
*arg2
= 0 ;
1359 PyObject
* obj0
= 0 ;
1360 PyObject
* obj1
= 0 ;
1362 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_noExposeEventHandler",&obj0
,&obj1
)) goto fail
;
1363 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1364 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XNoExposeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1366 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1368 (arg1
)->noExposeEventHandler((XNoExposeEvent
const &)*arg2
);
1370 Py_INCREF(Py_None
); resultobj
= Py_None
;
1377 static PyObject
*_wrap_OtkEventHandler_circulateRequestHandler(PyObject
*self
, PyObject
*args
) {
1378 PyObject
*resultobj
;
1379 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1380 XCirculateRequestEvent
*arg2
= 0 ;
1381 PyObject
* obj0
= 0 ;
1382 PyObject
* obj1
= 0 ;
1384 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_circulateRequestHandler",&obj0
,&obj1
)) goto fail
;
1385 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1386 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XCirculateRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1388 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1390 (arg1
)->circulateRequestHandler((XCirculateRequestEvent
const &)*arg2
);
1392 Py_INCREF(Py_None
); resultobj
= Py_None
;
1399 static PyObject
*_wrap_OtkEventHandler_configureRequestHandler(PyObject
*self
, PyObject
*args
) {
1400 PyObject
*resultobj
;
1401 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1402 XConfigureRequestEvent
*arg2
= 0 ;
1403 PyObject
* obj0
= 0 ;
1404 PyObject
* obj1
= 0 ;
1406 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_configureRequestHandler",&obj0
,&obj1
)) goto fail
;
1407 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1408 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XConfigureRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1410 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1412 (arg1
)->configureRequestHandler((XConfigureRequestEvent
const &)*arg2
);
1414 Py_INCREF(Py_None
); resultobj
= Py_None
;
1421 static PyObject
*_wrap_OtkEventHandler_mapRequestHandler(PyObject
*self
, PyObject
*args
) {
1422 PyObject
*resultobj
;
1423 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1424 XMapRequestEvent
*arg2
= 0 ;
1425 PyObject
* obj0
= 0 ;
1426 PyObject
* obj1
= 0 ;
1428 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_mapRequestHandler",&obj0
,&obj1
)) goto fail
;
1429 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1430 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XMapRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1432 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1434 (arg1
)->mapRequestHandler((XMapRequestEvent
const &)*arg2
);
1436 Py_INCREF(Py_None
); resultobj
= Py_None
;
1443 static PyObject
*_wrap_OtkEventHandler_resizeRequestHandler(PyObject
*self
, PyObject
*args
) {
1444 PyObject
*resultobj
;
1445 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1446 XResizeRequestEvent
*arg2
= 0 ;
1447 PyObject
* obj0
= 0 ;
1448 PyObject
* obj1
= 0 ;
1450 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_resizeRequestHandler",&obj0
,&obj1
)) goto fail
;
1451 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1452 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XResizeRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1454 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1456 (arg1
)->resizeRequestHandler((XResizeRequestEvent
const &)*arg2
);
1458 Py_INCREF(Py_None
); resultobj
= Py_None
;
1465 static PyObject
*_wrap_OtkEventHandler_circulateHandler(PyObject
*self
, PyObject
*args
) {
1466 PyObject
*resultobj
;
1467 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1468 XCirculateEvent
*arg2
= 0 ;
1469 PyObject
* obj0
= 0 ;
1470 PyObject
* obj1
= 0 ;
1472 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_circulateHandler",&obj0
,&obj1
)) goto fail
;
1473 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1474 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XCirculateEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1476 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1478 (arg1
)->circulateHandler((XCirculateEvent
const &)*arg2
);
1480 Py_INCREF(Py_None
); resultobj
= Py_None
;
1487 static PyObject
*_wrap_OtkEventHandler_configureHandler(PyObject
*self
, PyObject
*args
) {
1488 PyObject
*resultobj
;
1489 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1490 XConfigureEvent
*arg2
= 0 ;
1491 PyObject
* obj0
= 0 ;
1492 PyObject
* obj1
= 0 ;
1494 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_configureHandler",&obj0
,&obj1
)) goto fail
;
1495 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1496 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XConfigureEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1498 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1500 (arg1
)->configureHandler((XConfigureEvent
const &)*arg2
);
1502 Py_INCREF(Py_None
); resultobj
= Py_None
;
1509 static PyObject
*_wrap_OtkEventHandler_createHandler(PyObject
*self
, PyObject
*args
) {
1510 PyObject
*resultobj
;
1511 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1512 XCreateWindowEvent
*arg2
= 0 ;
1513 PyObject
* obj0
= 0 ;
1514 PyObject
* obj1
= 0 ;
1516 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_createHandler",&obj0
,&obj1
)) goto fail
;
1517 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1518 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XCreateWindowEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1520 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1522 (arg1
)->createHandler((XCreateWindowEvent
const &)*arg2
);
1524 Py_INCREF(Py_None
); resultobj
= Py_None
;
1531 static PyObject
*_wrap_OtkEventHandler_destroyHandler(PyObject
*self
, PyObject
*args
) {
1532 PyObject
*resultobj
;
1533 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1534 XDestroyWindowEvent
*arg2
= 0 ;
1535 PyObject
* obj0
= 0 ;
1536 PyObject
* obj1
= 0 ;
1538 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_destroyHandler",&obj0
,&obj1
)) goto fail
;
1539 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1540 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XDestroyWindowEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1542 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1544 (arg1
)->destroyHandler((XDestroyWindowEvent
const &)*arg2
);
1546 Py_INCREF(Py_None
); resultobj
= Py_None
;
1553 static PyObject
*_wrap_OtkEventHandler_gravityHandler(PyObject
*self
, PyObject
*args
) {
1554 PyObject
*resultobj
;
1555 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1556 XGravityEvent
*arg2
= 0 ;
1557 PyObject
* obj0
= 0 ;
1558 PyObject
* obj1
= 0 ;
1560 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_gravityHandler",&obj0
,&obj1
)) goto fail
;
1561 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1562 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XGravityEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1564 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1566 (arg1
)->gravityHandler((XGravityEvent
const &)*arg2
);
1568 Py_INCREF(Py_None
); resultobj
= Py_None
;
1575 static PyObject
*_wrap_OtkEventHandler_mapHandler(PyObject
*self
, PyObject
*args
) {
1576 PyObject
*resultobj
;
1577 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1578 XMapEvent
*arg2
= 0 ;
1579 PyObject
* obj0
= 0 ;
1580 PyObject
* obj1
= 0 ;
1582 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_mapHandler",&obj0
,&obj1
)) goto fail
;
1583 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1584 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XMapEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1586 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1588 (arg1
)->mapHandler((XMapEvent
const &)*arg2
);
1590 Py_INCREF(Py_None
); resultobj
= Py_None
;
1597 static PyObject
*_wrap_OtkEventHandler_mappingHandler(PyObject
*self
, PyObject
*args
) {
1598 PyObject
*resultobj
;
1599 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1600 XMappingEvent
*arg2
= 0 ;
1601 PyObject
* obj0
= 0 ;
1602 PyObject
* obj1
= 0 ;
1604 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_mappingHandler",&obj0
,&obj1
)) goto fail
;
1605 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1606 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XMappingEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1608 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1610 (arg1
)->mappingHandler((XMappingEvent
const &)*arg2
);
1612 Py_INCREF(Py_None
); resultobj
= Py_None
;
1619 static PyObject
*_wrap_OtkEventHandler_reparentHandler(PyObject
*self
, PyObject
*args
) {
1620 PyObject
*resultobj
;
1621 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1622 XReparentEvent
*arg2
= 0 ;
1623 PyObject
* obj0
= 0 ;
1624 PyObject
* obj1
= 0 ;
1626 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_reparentHandler",&obj0
,&obj1
)) goto fail
;
1627 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1628 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XReparentEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1630 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1632 (arg1
)->reparentHandler((XReparentEvent
const &)*arg2
);
1634 Py_INCREF(Py_None
); resultobj
= Py_None
;
1641 static PyObject
*_wrap_OtkEventHandler_unmapHandler(PyObject
*self
, PyObject
*args
) {
1642 PyObject
*resultobj
;
1643 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1644 XUnmapEvent
*arg2
= 0 ;
1645 PyObject
* obj0
= 0 ;
1646 PyObject
* obj1
= 0 ;
1648 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_unmapHandler",&obj0
,&obj1
)) goto fail
;
1649 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1650 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XUnmapEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1652 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1654 (arg1
)->unmapHandler((XUnmapEvent
const &)*arg2
);
1656 Py_INCREF(Py_None
); resultobj
= Py_None
;
1663 static PyObject
*_wrap_OtkEventHandler_visibilityHandler(PyObject
*self
, PyObject
*args
) {
1664 PyObject
*resultobj
;
1665 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1666 XVisibilityEvent
*arg2
= 0 ;
1667 PyObject
* obj0
= 0 ;
1668 PyObject
* obj1
= 0 ;
1670 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_visibilityHandler",&obj0
,&obj1
)) goto fail
;
1671 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1672 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XVisibilityEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1674 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1676 (arg1
)->visibilityHandler((XVisibilityEvent
const &)*arg2
);
1678 Py_INCREF(Py_None
); resultobj
= Py_None
;
1685 static PyObject
*_wrap_OtkEventHandler_colorMapHandler(PyObject
*self
, PyObject
*args
) {
1686 PyObject
*resultobj
;
1687 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1688 XColormapEvent
*arg2
= 0 ;
1689 PyObject
* obj0
= 0 ;
1690 PyObject
* obj1
= 0 ;
1692 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_colorMapHandler",&obj0
,&obj1
)) goto fail
;
1693 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1694 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XColormapEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1696 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1698 (arg1
)->colorMapHandler((XColormapEvent
const &)*arg2
);
1700 Py_INCREF(Py_None
); resultobj
= Py_None
;
1707 static PyObject
*_wrap_OtkEventHandler_propertyHandler(PyObject
*self
, PyObject
*args
) {
1708 PyObject
*resultobj
;
1709 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1710 XPropertyEvent
*arg2
= 0 ;
1711 PyObject
* obj0
= 0 ;
1712 PyObject
* obj1
= 0 ;
1714 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_propertyHandler",&obj0
,&obj1
)) goto fail
;
1715 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1716 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XPropertyEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1718 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1720 (arg1
)->propertyHandler((XPropertyEvent
const &)*arg2
);
1722 Py_INCREF(Py_None
); resultobj
= Py_None
;
1729 static PyObject
*_wrap_OtkEventHandler_selectionClearHandler(PyObject
*self
, PyObject
*args
) {
1730 PyObject
*resultobj
;
1731 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1732 XSelectionClearEvent
*arg2
= 0 ;
1733 PyObject
* obj0
= 0 ;
1734 PyObject
* obj1
= 0 ;
1736 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_selectionClearHandler",&obj0
,&obj1
)) goto fail
;
1737 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1738 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XSelectionClearEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1740 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1742 (arg1
)->selectionClearHandler((XSelectionClearEvent
const &)*arg2
);
1744 Py_INCREF(Py_None
); resultobj
= Py_None
;
1751 static PyObject
*_wrap_OtkEventHandler_selectionHandler(PyObject
*self
, PyObject
*args
) {
1752 PyObject
*resultobj
;
1753 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1754 XSelectionEvent
*arg2
= 0 ;
1755 PyObject
* obj0
= 0 ;
1756 PyObject
* obj1
= 0 ;
1758 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_selectionHandler",&obj0
,&obj1
)) goto fail
;
1759 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1760 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XSelectionEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1762 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1764 (arg1
)->selectionHandler((XSelectionEvent
const &)*arg2
);
1766 Py_INCREF(Py_None
); resultobj
= Py_None
;
1773 static PyObject
*_wrap_OtkEventHandler_selectionRequestHandler(PyObject
*self
, PyObject
*args
) {
1774 PyObject
*resultobj
;
1775 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1776 XSelectionRequestEvent
*arg2
= 0 ;
1777 PyObject
* obj0
= 0 ;
1778 PyObject
* obj1
= 0 ;
1780 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_selectionRequestHandler",&obj0
,&obj1
)) goto fail
;
1781 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1782 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XSelectionRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1784 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1786 (arg1
)->selectionRequestHandler((XSelectionRequestEvent
const &)*arg2
);
1788 Py_INCREF(Py_None
); resultobj
= Py_None
;
1795 static PyObject
*_wrap_OtkEventHandler_clientMessageHandler(PyObject
*self
, PyObject
*args
) {
1796 PyObject
*resultobj
;
1797 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1798 XClientMessageEvent
*arg2
= 0 ;
1799 PyObject
* obj0
= 0 ;
1800 PyObject
* obj1
= 0 ;
1802 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkEventHandler_clientMessageHandler",&obj0
,&obj1
)) goto fail
;
1803 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1804 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XClientMessageEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1806 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
1808 (arg1
)->clientMessageHandler((XClientMessageEvent
const &)*arg2
);
1810 Py_INCREF(Py_None
); resultobj
= Py_None
;
1817 static PyObject
*_wrap_delete_OtkEventHandler(PyObject
*self
, PyObject
*args
) {
1818 PyObject
*resultobj
;
1819 otk::OtkEventHandler
*arg1
= (otk::OtkEventHandler
*) 0 ;
1820 PyObject
* obj0
= 0 ;
1822 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkEventHandler",&obj0
)) goto fail
;
1823 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1826 Py_INCREF(Py_None
); resultobj
= Py_None
;
1833 static PyObject
* OtkEventHandler_swigregister(PyObject
*self
, PyObject
*args
) {
1835 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
1836 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkEventHandler
, obj
);
1838 return Py_BuildValue((char *)"");
1840 static PyObject
*_wrap_new_OtkWidget__SWIG_0(PyObject
*self
, PyObject
*args
) {
1841 PyObject
*resultobj
;
1842 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
1843 int arg2
= (int) otk::OtkWidget::Horizontal
;
1844 otk::OtkWidget
*result
;
1845 PyObject
* obj0
= 0 ;
1847 if(!PyArg_ParseTuple(args
,(char *)"O|i:new_OtkWidget",&obj0
,&arg2
)) goto fail
;
1848 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1849 result
= (otk::OtkWidget
*)new otk::OtkWidget(arg1
,(otk::OtkWidget::Direction
)arg2
);
1851 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkWidget
, 1);
1858 static PyObject
*_wrap_new_OtkWidget__SWIG_1(PyObject
*self
, PyObject
*args
) {
1859 PyObject
*resultobj
;
1860 otk::OtkEventDispatcher
*arg1
= (otk::OtkEventDispatcher
*) 0 ;
1861 otk::Style
*arg2
= (otk::Style
*) 0 ;
1862 int arg3
= (int) otk::OtkWidget::Horizontal
;
1863 Cursor arg4
= (Cursor
) 0 ;
1864 int arg5
= (int) 1 ;
1865 otk::OtkWidget
*result
;
1867 PyObject
* obj0
= 0 ;
1868 PyObject
* obj1
= 0 ;
1869 PyObject
* obj3
= 0 ;
1871 if(!PyArg_ParseTuple(args
,(char *)"OO|iOi:new_OtkWidget",&obj0
,&obj1
,&arg3
,&obj3
,&arg5
)) goto fail
;
1872 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1873 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1875 if ((SWIG_ConvertPtr(obj3
,(void **) &argp4
, SWIGTYPE_p_Cursor
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
1878 result
= (otk::OtkWidget
*)new otk::OtkWidget(arg1
,arg2
,(otk::OtkWidget::Direction
)arg3
,arg4
,arg5
);
1880 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkWidget
, 1);
1887 static PyObject
*_wrap_new_OtkWidget(PyObject
*self
, PyObject
*args
) {
1892 argc
= PyObject_Length(args
);
1893 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
1894 argv
[ii
] = PyTuple_GetItem(args
,ii
);
1896 if ((argc
>= 1) && (argc
<= 2)) {
1900 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
1909 return _wrap_new_OtkWidget__SWIG_0(self
,args
);
1912 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
1915 return _wrap_new_OtkWidget__SWIG_0(self
,args
);
1919 if ((argc
>= 2) && (argc
<= 5)) {
1923 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkEventDispatcher
, 0) == -1) {
1933 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Style
, 0) == -1) {
1942 return _wrap_new_OtkWidget__SWIG_1(self
,args
);
1945 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
1949 return _wrap_new_OtkWidget__SWIG_1(self
,args
);
1953 if (SWIG_ConvertPtr(argv
[3], (void **) &ptr
, SWIGTYPE_p_Cursor
, 0) == -1) {
1962 return _wrap_new_OtkWidget__SWIG_1(self
,args
);
1965 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
1968 return _wrap_new_OtkWidget__SWIG_1(self
,args
);
1976 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_OtkWidget'");
1981 static PyObject
*_wrap_delete_OtkWidget(PyObject
*self
, PyObject
*args
) {
1982 PyObject
*resultobj
;
1983 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
1984 PyObject
* obj0
= 0 ;
1986 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkWidget",&obj0
)) goto fail
;
1987 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1990 Py_INCREF(Py_None
); resultobj
= Py_None
;
1997 static PyObject
*_wrap_OtkWidget_update(PyObject
*self
, PyObject
*args
) {
1998 PyObject
*resultobj
;
1999 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2000 PyObject
* obj0
= 0 ;
2002 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_update",&obj0
)) goto fail
;
2003 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2006 Py_INCREF(Py_None
); resultobj
= Py_None
;
2013 static PyObject
*_wrap_OtkWidget_exposeHandler(PyObject
*self
, PyObject
*args
) {
2014 PyObject
*resultobj
;
2015 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2016 XExposeEvent
*arg2
= 0 ;
2017 PyObject
* obj0
= 0 ;
2018 PyObject
* obj1
= 0 ;
2020 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_exposeHandler",&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_XExposeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2024 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2026 (arg1
)->exposeHandler((XExposeEvent
const &)*arg2
);
2028 Py_INCREF(Py_None
); resultobj
= Py_None
;
2035 static PyObject
*_wrap_OtkWidget_configureHandler(PyObject
*self
, PyObject
*args
) {
2036 PyObject
*resultobj
;
2037 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2038 XConfigureEvent
*arg2
= 0 ;
2039 PyObject
* obj0
= 0 ;
2040 PyObject
* obj1
= 0 ;
2042 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_configureHandler",&obj0
,&obj1
)) goto fail
;
2043 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2044 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XConfigureEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2046 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2048 (arg1
)->configureHandler((XConfigureEvent
const &)*arg2
);
2050 Py_INCREF(Py_None
); resultobj
= Py_None
;
2057 static PyObject
*_wrap_OtkWidget_window(PyObject
*self
, PyObject
*args
) {
2058 PyObject
*resultobj
;
2059 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2061 PyObject
* obj0
= 0 ;
2063 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_window",&obj0
)) goto fail
;
2064 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2065 result
= ((otk::OtkWidget
const *)arg1
)->window();
2069 resultptr
= new Window((Window
&) result
);
2070 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Window
, 1);
2078 static PyObject
*_wrap_OtkWidget_parent(PyObject
*self
, PyObject
*args
) {
2079 PyObject
*resultobj
;
2080 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2081 otk::OtkWidget
*result
;
2082 PyObject
* obj0
= 0 ;
2084 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_parent",&obj0
)) goto fail
;
2085 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2086 result
= (otk::OtkWidget
*)((otk::OtkWidget
const *)arg1
)->parent();
2088 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkWidget
, 0);
2095 static PyObject
*_wrap_OtkWidget_children(PyObject
*self
, PyObject
*args
) {
2096 PyObject
*resultobj
;
2097 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2098 otk::OtkWidget::OtkWidgetList
*result
;
2099 PyObject
* obj0
= 0 ;
2101 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_children",&obj0
)) goto fail
;
2102 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2104 otk::OtkWidget::OtkWidgetList
const &_result_ref
= ((otk::OtkWidget
const *)arg1
)->children();
2105 result
= (otk::OtkWidget::OtkWidgetList
*) &_result_ref
;
2108 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkWidget__OtkWidgetList
, 0);
2115 static PyObject
*_wrap_OtkWidget_screen(PyObject
*self
, PyObject
*args
) {
2116 PyObject
*resultobj
;
2117 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2118 unsigned int result
;
2119 PyObject
* obj0
= 0 ;
2121 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_screen",&obj0
)) goto fail
;
2122 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2123 result
= (unsigned int)((otk::OtkWidget
const *)arg1
)->screen();
2125 resultobj
= PyInt_FromLong((long)result
);
2132 static PyObject
*_wrap_OtkWidget_rect(PyObject
*self
, PyObject
*args
) {
2133 PyObject
*resultobj
;
2134 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2136 PyObject
* obj0
= 0 ;
2138 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_rect",&obj0
)) goto fail
;
2139 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2141 otk::Rect
const &_result_ref
= ((otk::OtkWidget
const *)arg1
)->rect();
2142 result
= (otk::Rect
*) &_result_ref
;
2145 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 0);
2152 static PyObject
*_wrap_OtkWidget_move__SWIG_0(PyObject
*self
, PyObject
*args
) {
2153 PyObject
*resultobj
;
2154 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2155 otk::Point
*arg2
= 0 ;
2156 PyObject
* obj0
= 0 ;
2157 PyObject
* obj1
= 0 ;
2159 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_move",&obj0
,&obj1
)) goto fail
;
2160 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2161 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2163 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2165 (arg1
)->move((otk::Point
const &)*arg2
);
2167 Py_INCREF(Py_None
); resultobj
= Py_None
;
2174 static PyObject
*_wrap_OtkWidget_move__SWIG_1(PyObject
*self
, PyObject
*args
) {
2175 PyObject
*resultobj
;
2176 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2179 PyObject
* obj0
= 0 ;
2181 if(!PyArg_ParseTuple(args
,(char *)"Oii:OtkWidget_move",&obj0
,&arg2
,&arg3
)) goto fail
;
2182 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2183 (arg1
)->move(arg2
,arg3
);
2185 Py_INCREF(Py_None
); resultobj
= Py_None
;
2192 static PyObject
*_wrap_OtkWidget_move(PyObject
*self
, PyObject
*args
) {
2197 argc
= PyObject_Length(args
);
2198 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
2199 argv
[ii
] = PyTuple_GetItem(args
,ii
);
2205 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2215 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
2223 return _wrap_OtkWidget_move__SWIG_0(self
,args
);
2231 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2240 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
2244 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
2247 return _wrap_OtkWidget_move__SWIG_1(self
,args
);
2253 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OtkWidget_move'");
2258 static PyObject
*_wrap_OtkWidget_setWidth(PyObject
*self
, PyObject
*args
) {
2259 PyObject
*resultobj
;
2260 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2262 PyObject
* obj0
= 0 ;
2264 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setWidth",&obj0
,&arg2
)) goto fail
;
2265 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2266 (arg1
)->setWidth(arg2
);
2268 Py_INCREF(Py_None
); resultobj
= Py_None
;
2275 static PyObject
*_wrap_OtkWidget_setHeight(PyObject
*self
, PyObject
*args
) {
2276 PyObject
*resultobj
;
2277 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2279 PyObject
* obj0
= 0 ;
2281 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setHeight",&obj0
,&arg2
)) goto fail
;
2282 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2283 (arg1
)->setHeight(arg2
);
2285 Py_INCREF(Py_None
); resultobj
= Py_None
;
2292 static PyObject
*_wrap_OtkWidget_width(PyObject
*self
, PyObject
*args
) {
2293 PyObject
*resultobj
;
2294 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2296 PyObject
* obj0
= 0 ;
2298 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_width",&obj0
)) goto fail
;
2299 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2300 result
= (int)((otk::OtkWidget
const *)arg1
)->width();
2302 resultobj
= PyInt_FromLong((long)result
);
2309 static PyObject
*_wrap_OtkWidget_height(PyObject
*self
, PyObject
*args
) {
2310 PyObject
*resultobj
;
2311 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2313 PyObject
* obj0
= 0 ;
2315 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_height",&obj0
)) goto fail
;
2316 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2317 result
= (int)((otk::OtkWidget
const *)arg1
)->height();
2319 resultobj
= PyInt_FromLong((long)result
);
2326 static PyObject
*_wrap_OtkWidget_resize__SWIG_0(PyObject
*self
, PyObject
*args
) {
2327 PyObject
*resultobj
;
2328 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2329 otk::Point
*arg2
= 0 ;
2330 PyObject
* obj0
= 0 ;
2331 PyObject
* obj1
= 0 ;
2333 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_resize",&obj0
,&obj1
)) goto fail
;
2334 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2335 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2337 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2339 (arg1
)->resize((otk::Point
const &)*arg2
);
2341 Py_INCREF(Py_None
); resultobj
= Py_None
;
2348 static PyObject
*_wrap_OtkWidget_resize__SWIG_1(PyObject
*self
, PyObject
*args
) {
2349 PyObject
*resultobj
;
2350 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2353 PyObject
* obj0
= 0 ;
2355 if(!PyArg_ParseTuple(args
,(char *)"Oii:OtkWidget_resize",&obj0
,&arg2
,&arg3
)) goto fail
;
2356 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2357 (arg1
)->resize(arg2
,arg3
);
2359 Py_INCREF(Py_None
); resultobj
= Py_None
;
2366 static PyObject
*_wrap_OtkWidget_resize(PyObject
*self
, PyObject
*args
) {
2371 argc
= PyObject_Length(args
);
2372 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
2373 argv
[ii
] = PyTuple_GetItem(args
,ii
);
2379 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2389 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
2397 return _wrap_OtkWidget_resize__SWIG_0(self
,args
);
2405 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2414 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
2418 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
2421 return _wrap_OtkWidget_resize__SWIG_1(self
,args
);
2427 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OtkWidget_resize'");
2432 static PyObject
*_wrap_OtkWidget_setGeometry__SWIG_0(PyObject
*self
, PyObject
*args
) {
2433 PyObject
*resultobj
;
2434 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2435 otk::Rect
*arg2
= 0 ;
2436 PyObject
* obj0
= 0 ;
2437 PyObject
* obj1
= 0 ;
2439 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setGeometry",&obj0
,&obj1
)) goto fail
;
2440 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2441 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2443 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2445 (arg1
)->setGeometry((otk::Rect
const &)*arg2
);
2447 Py_INCREF(Py_None
); resultobj
= Py_None
;
2454 static PyObject
*_wrap_OtkWidget_setGeometry__SWIG_1(PyObject
*self
, PyObject
*args
) {
2455 PyObject
*resultobj
;
2456 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2457 otk::Point
*arg2
= 0 ;
2460 PyObject
* obj0
= 0 ;
2461 PyObject
* obj1
= 0 ;
2463 if(!PyArg_ParseTuple(args
,(char *)"OOii:OtkWidget_setGeometry",&obj0
,&obj1
,&arg3
,&arg4
)) goto fail
;
2464 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2465 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2467 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2469 (arg1
)->setGeometry((otk::Point
const &)*arg2
,arg3
,arg4
);
2471 Py_INCREF(Py_None
); resultobj
= Py_None
;
2478 static PyObject
*_wrap_OtkWidget_setGeometry__SWIG_2(PyObject
*self
, PyObject
*args
) {
2479 PyObject
*resultobj
;
2480 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2485 PyObject
* obj0
= 0 ;
2487 if(!PyArg_ParseTuple(args
,(char *)"Oiiii:OtkWidget_setGeometry",&obj0
,&arg2
,&arg3
,&arg4
,&arg5
)) goto fail
;
2488 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2489 (arg1
)->setGeometry(arg2
,arg3
,arg4
,arg5
);
2491 Py_INCREF(Py_None
); resultobj
= Py_None
;
2498 static PyObject
*_wrap_OtkWidget_setGeometry(PyObject
*self
, PyObject
*args
) {
2503 argc
= PyObject_Length(args
);
2504 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
2505 argv
[ii
] = PyTuple_GetItem(args
,ii
);
2511 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2521 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
2529 return _wrap_OtkWidget_setGeometry__SWIG_0(self
,args
);
2537 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2547 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
2556 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
2560 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
2563 return _wrap_OtkWidget_setGeometry__SWIG_1(self
,args
);
2573 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2582 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
2586 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
2590 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
2594 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
2597 return _wrap_OtkWidget_setGeometry__SWIG_2(self
,args
);
2605 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OtkWidget_setGeometry'");
2610 static PyObject
*_wrap_OtkWidget_isVisible(PyObject
*self
, PyObject
*args
) {
2611 PyObject
*resultobj
;
2612 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2614 PyObject
* obj0
= 0 ;
2616 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_isVisible",&obj0
)) goto fail
;
2617 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2618 result
= (bool)((otk::OtkWidget
const *)arg1
)->isVisible();
2620 resultobj
= PyInt_FromLong((long)result
);
2627 static PyObject
*_wrap_OtkWidget_show(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_show",&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_hide(PyObject
*self
, PyObject
*args
) {
2650 PyObject
*resultobj
;
2651 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2652 bool arg2
= (bool) false ;
2653 PyObject
* obj0
= 0 ;
2654 PyObject
* obj1
= 0 ;
2656 if(!PyArg_ParseTuple(args
,(char *)"O|O:OtkWidget_hide",&obj0
,&obj1
)) goto fail
;
2657 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2659 arg2
= (bool) PyInt_AsLong(obj1
);
2660 if (PyErr_Occurred()) SWIG_fail
;
2664 Py_INCREF(Py_None
); resultobj
= Py_None
;
2671 static PyObject
*_wrap_OtkWidget_isFocused(PyObject
*self
, PyObject
*args
) {
2672 PyObject
*resultobj
;
2673 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2675 PyObject
* obj0
= 0 ;
2677 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_isFocused",&obj0
)) goto fail
;
2678 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2679 result
= (bool)((otk::OtkWidget
const *)arg1
)->isFocused();
2681 resultobj
= PyInt_FromLong((long)result
);
2688 static PyObject
*_wrap_OtkWidget_focus(PyObject
*self
, PyObject
*args
) {
2689 PyObject
*resultobj
;
2690 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2691 PyObject
* obj0
= 0 ;
2693 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_focus",&obj0
)) goto fail
;
2694 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2697 Py_INCREF(Py_None
); resultobj
= Py_None
;
2704 static PyObject
*_wrap_OtkWidget_unfocus(PyObject
*self
, PyObject
*args
) {
2705 PyObject
*resultobj
;
2706 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2707 PyObject
* obj0
= 0 ;
2709 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_unfocus",&obj0
)) goto fail
;
2710 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2713 Py_INCREF(Py_None
); resultobj
= Py_None
;
2720 static PyObject
*_wrap_OtkWidget_hasGrabbedMouse(PyObject
*self
, PyObject
*args
) {
2721 PyObject
*resultobj
;
2722 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2724 PyObject
* obj0
= 0 ;
2726 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_hasGrabbedMouse",&obj0
)) goto fail
;
2727 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2728 result
= (bool)((otk::OtkWidget
const *)arg1
)->hasGrabbedMouse();
2730 resultobj
= PyInt_FromLong((long)result
);
2737 static PyObject
*_wrap_OtkWidget_grabMouse(PyObject
*self
, PyObject
*args
) {
2738 PyObject
*resultobj
;
2739 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2741 PyObject
* obj0
= 0 ;
2743 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_grabMouse",&obj0
)) goto fail
;
2744 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2745 result
= (bool)(arg1
)->grabMouse();
2747 resultobj
= PyInt_FromLong((long)result
);
2754 static PyObject
*_wrap_OtkWidget_ungrabMouse(PyObject
*self
, PyObject
*args
) {
2755 PyObject
*resultobj
;
2756 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2757 PyObject
* obj0
= 0 ;
2759 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_ungrabMouse",&obj0
)) goto fail
;
2760 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2761 (arg1
)->ungrabMouse();
2763 Py_INCREF(Py_None
); resultobj
= Py_None
;
2770 static PyObject
*_wrap_OtkWidget_hasGrabbedKeyboard(PyObject
*self
, PyObject
*args
) {
2771 PyObject
*resultobj
;
2772 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2774 PyObject
* obj0
= 0 ;
2776 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_hasGrabbedKeyboard",&obj0
)) goto fail
;
2777 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2778 result
= (bool)((otk::OtkWidget
const *)arg1
)->hasGrabbedKeyboard();
2780 resultobj
= PyInt_FromLong((long)result
);
2787 static PyObject
*_wrap_OtkWidget_grabKeyboard(PyObject
*self
, PyObject
*args
) {
2788 PyObject
*resultobj
;
2789 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2791 PyObject
* obj0
= 0 ;
2793 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_grabKeyboard",&obj0
)) goto fail
;
2794 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2795 result
= (bool)(arg1
)->grabKeyboard();
2797 resultobj
= PyInt_FromLong((long)result
);
2804 static PyObject
*_wrap_OtkWidget_ungrabKeyboard(PyObject
*self
, PyObject
*args
) {
2805 PyObject
*resultobj
;
2806 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2807 PyObject
* obj0
= 0 ;
2809 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_ungrabKeyboard",&obj0
)) goto fail
;
2810 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2811 (arg1
)->ungrabKeyboard();
2813 Py_INCREF(Py_None
); resultobj
= Py_None
;
2820 static PyObject
*_wrap_OtkWidget_texture(PyObject
*self
, PyObject
*args
) {
2821 PyObject
*resultobj
;
2822 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2823 otk::BTexture
*result
;
2824 PyObject
* obj0
= 0 ;
2826 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_texture",&obj0
)) goto fail
;
2827 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2828 result
= (otk::BTexture
*)((otk::OtkWidget
const *)arg1
)->texture();
2830 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
2837 static PyObject
*_wrap_OtkWidget_setTexture(PyObject
*self
, PyObject
*args
) {
2838 PyObject
*resultobj
;
2839 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2840 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
2841 PyObject
* obj0
= 0 ;
2842 PyObject
* obj1
= 0 ;
2844 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setTexture",&obj0
,&obj1
)) goto fail
;
2845 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2846 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2847 (arg1
)->setTexture(arg2
);
2849 Py_INCREF(Py_None
); resultobj
= Py_None
;
2856 static PyObject
*_wrap_OtkWidget_borderColor(PyObject
*self
, PyObject
*args
) {
2857 PyObject
*resultobj
;
2858 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2859 otk::BColor
*result
;
2860 PyObject
* obj0
= 0 ;
2862 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_borderColor",&obj0
)) goto fail
;
2863 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2864 result
= (otk::BColor
*)((otk::OtkWidget
const *)arg1
)->borderColor();
2866 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
2873 static PyObject
*_wrap_OtkWidget_setBorderColor(PyObject
*self
, PyObject
*args
) {
2874 PyObject
*resultobj
;
2875 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2876 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
2877 PyObject
* obj0
= 0 ;
2878 PyObject
* obj1
= 0 ;
2880 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setBorderColor",&obj0
,&obj1
)) goto fail
;
2881 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2882 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2883 (arg1
)->setBorderColor((otk::BColor
const *)arg2
);
2885 Py_INCREF(Py_None
); resultobj
= Py_None
;
2892 static PyObject
*_wrap_OtkWidget_borderWidth(PyObject
*self
, PyObject
*args
) {
2893 PyObject
*resultobj
;
2894 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2896 PyObject
* obj0
= 0 ;
2898 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_borderWidth",&obj0
)) goto fail
;
2899 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2900 result
= (int)((otk::OtkWidget
const *)arg1
)->borderWidth();
2902 resultobj
= PyInt_FromLong((long)result
);
2909 static PyObject
*_wrap_OtkWidget_setBorderWidth(PyObject
*self
, PyObject
*args
) {
2910 PyObject
*resultobj
;
2911 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2913 PyObject
* obj0
= 0 ;
2915 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setBorderWidth",&obj0
,&arg2
)) goto fail
;
2916 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2917 (arg1
)->setBorderWidth(arg2
);
2919 Py_INCREF(Py_None
); resultobj
= Py_None
;
2926 static PyObject
*_wrap_OtkWidget_addChild(PyObject
*self
, PyObject
*args
) {
2927 PyObject
*resultobj
;
2928 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2929 otk::OtkWidget
*arg2
= (otk::OtkWidget
*) 0 ;
2930 bool arg3
= (bool) false ;
2931 PyObject
* obj0
= 0 ;
2932 PyObject
* obj1
= 0 ;
2933 PyObject
* obj2
= 0 ;
2935 if(!PyArg_ParseTuple(args
,(char *)"OO|O:OtkWidget_addChild",&obj0
,&obj1
,&obj2
)) goto fail
;
2936 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2937 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2939 arg3
= (bool) PyInt_AsLong(obj2
);
2940 if (PyErr_Occurred()) SWIG_fail
;
2942 (arg1
)->addChild(arg2
,arg3
);
2944 Py_INCREF(Py_None
); resultobj
= Py_None
;
2951 static PyObject
*_wrap_OtkWidget_removeChild(PyObject
*self
, PyObject
*args
) {
2952 PyObject
*resultobj
;
2953 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2954 otk::OtkWidget
*arg2
= (otk::OtkWidget
*) 0 ;
2955 PyObject
* obj0
= 0 ;
2956 PyObject
* obj1
= 0 ;
2958 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_removeChild",&obj0
,&obj1
)) goto fail
;
2959 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2960 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2961 (arg1
)->removeChild(arg2
);
2963 Py_INCREF(Py_None
); resultobj
= Py_None
;
2970 static PyObject
*_wrap_OtkWidget_isStretchableHorz(PyObject
*self
, PyObject
*args
) {
2971 PyObject
*resultobj
;
2972 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2974 PyObject
* obj0
= 0 ;
2976 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_isStretchableHorz",&obj0
)) goto fail
;
2977 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2978 result
= (bool)((otk::OtkWidget
const *)arg1
)->isStretchableHorz();
2980 resultobj
= PyInt_FromLong((long)result
);
2987 static PyObject
*_wrap_OtkWidget_setStretchableHorz(PyObject
*self
, PyObject
*args
) {
2988 PyObject
*resultobj
;
2989 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2990 bool arg2
= (bool) true ;
2991 PyObject
* obj0
= 0 ;
2992 PyObject
* obj1
= 0 ;
2994 if(!PyArg_ParseTuple(args
,(char *)"O|O:OtkWidget_setStretchableHorz",&obj0
,&obj1
)) goto fail
;
2995 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2997 arg2
= (bool) PyInt_AsLong(obj1
);
2998 if (PyErr_Occurred()) SWIG_fail
;
3000 (arg1
)->setStretchableHorz(arg2
);
3002 Py_INCREF(Py_None
); resultobj
= Py_None
;
3009 static PyObject
*_wrap_OtkWidget_isStretchableVert(PyObject
*self
, PyObject
*args
) {
3010 PyObject
*resultobj
;
3011 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3013 PyObject
* obj0
= 0 ;
3015 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_isStretchableVert",&obj0
)) goto fail
;
3016 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3017 result
= (bool)((otk::OtkWidget
const *)arg1
)->isStretchableVert();
3019 resultobj
= PyInt_FromLong((long)result
);
3026 static PyObject
*_wrap_OtkWidget_setStretchableVert(PyObject
*self
, PyObject
*args
) {
3027 PyObject
*resultobj
;
3028 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3029 bool arg2
= (bool) true ;
3030 PyObject
* obj0
= 0 ;
3031 PyObject
* obj1
= 0 ;
3033 if(!PyArg_ParseTuple(args
,(char *)"O|O:OtkWidget_setStretchableVert",&obj0
,&obj1
)) goto fail
;
3034 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3036 arg2
= (bool) PyInt_AsLong(obj1
);
3037 if (PyErr_Occurred()) SWIG_fail
;
3039 (arg1
)->setStretchableVert(arg2
);
3041 Py_INCREF(Py_None
); resultobj
= Py_None
;
3048 static PyObject
*_wrap_OtkWidget_cursor(PyObject
*self
, PyObject
*args
) {
3049 PyObject
*resultobj
;
3050 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3052 PyObject
* obj0
= 0 ;
3054 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_cursor",&obj0
)) goto fail
;
3055 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3056 result
= ((otk::OtkWidget
const *)arg1
)->cursor();
3060 resultptr
= new Cursor((Cursor
&) result
);
3061 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Cursor
, 1);
3069 static PyObject
*_wrap_OtkWidget_setCursor(PyObject
*self
, PyObject
*args
) {
3070 PyObject
*resultobj
;
3071 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3074 PyObject
* obj0
= 0 ;
3075 PyObject
* obj1
= 0 ;
3077 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setCursor",&obj0
,&obj1
)) goto fail
;
3078 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3079 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Cursor
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
3081 (arg1
)->setCursor(arg2
);
3083 Py_INCREF(Py_None
); resultobj
= Py_None
;
3090 static PyObject
*_wrap_OtkWidget_bevelWidth(PyObject
*self
, PyObject
*args
) {
3091 PyObject
*resultobj
;
3092 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3094 PyObject
* obj0
= 0 ;
3096 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_bevelWidth",&obj0
)) goto fail
;
3097 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3098 result
= (int)((otk::OtkWidget
const *)arg1
)->bevelWidth();
3100 resultobj
= PyInt_FromLong((long)result
);
3107 static PyObject
*_wrap_OtkWidget_setBevelWidth(PyObject
*self
, PyObject
*args
) {
3108 PyObject
*resultobj
;
3109 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3111 PyObject
* obj0
= 0 ;
3113 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setBevelWidth",&obj0
,&arg2
)) goto fail
;
3114 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3115 (arg1
)->setBevelWidth(arg2
);
3117 Py_INCREF(Py_None
); resultobj
= Py_None
;
3124 static PyObject
*_wrap_OtkWidget_direction(PyObject
*self
, PyObject
*args
) {
3125 PyObject
*resultobj
;
3126 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3128 PyObject
* obj0
= 0 ;
3130 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_direction",&obj0
)) goto fail
;
3131 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3132 result
= (int)((otk::OtkWidget
const *)arg1
)->direction();
3134 resultobj
= PyInt_FromLong((long)result
);
3141 static PyObject
*_wrap_OtkWidget_setDirection(PyObject
*self
, PyObject
*args
) {
3142 PyObject
*resultobj
;
3143 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3145 PyObject
* obj0
= 0 ;
3147 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setDirection",&obj0
,&arg2
)) goto fail
;
3148 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3149 (arg1
)->setDirection((otk::OtkWidget::Direction
)arg2
);
3151 Py_INCREF(Py_None
); resultobj
= Py_None
;
3158 static PyObject
*_wrap_OtkWidget_style(PyObject
*self
, PyObject
*args
) {
3159 PyObject
*resultobj
;
3160 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3162 PyObject
* obj0
= 0 ;
3164 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_style",&obj0
)) goto fail
;
3165 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3166 result
= (otk::Style
*)((otk::OtkWidget
const *)arg1
)->style();
3168 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Style
, 0);
3175 static PyObject
*_wrap_OtkWidget_setStyle(PyObject
*self
, PyObject
*args
) {
3176 PyObject
*resultobj
;
3177 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3178 otk::Style
*arg2
= (otk::Style
*) 0 ;
3179 PyObject
* obj0
= 0 ;
3180 PyObject
* obj1
= 0 ;
3182 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setStyle",&obj0
,&obj1
)) goto fail
;
3183 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3184 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3185 (arg1
)->setStyle(arg2
);
3187 Py_INCREF(Py_None
); resultobj
= Py_None
;
3194 static PyObject
*_wrap_OtkWidget_eventDispatcher(PyObject
*self
, PyObject
*args
) {
3195 PyObject
*resultobj
;
3196 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3197 otk::OtkEventDispatcher
*result
;
3198 PyObject
* obj0
= 0 ;
3200 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_eventDispatcher",&obj0
)) goto fail
;
3201 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3202 result
= (otk::OtkEventDispatcher
*)(arg1
)->eventDispatcher();
3204 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkEventDispatcher
, 0);
3211 static PyObject
*_wrap_OtkWidget_setEventDispatcher(PyObject
*self
, PyObject
*args
) {
3212 PyObject
*resultobj
;
3213 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3214 otk::OtkEventDispatcher
*arg2
= (otk::OtkEventDispatcher
*) 0 ;
3215 PyObject
* obj0
= 0 ;
3216 PyObject
* obj1
= 0 ;
3218 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setEventDispatcher",&obj0
,&obj1
)) goto fail
;
3219 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3220 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3221 (arg1
)->setEventDispatcher(arg2
);
3223 Py_INCREF(Py_None
); resultobj
= Py_None
;
3230 static PyObject
* OtkWidget_swigregister(PyObject
*self
, PyObject
*args
) {
3232 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3233 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkWidget
, obj
);
3235 return Py_BuildValue((char *)"");
3237 static PyObject
*_wrap_new_OtkFocusWidget(PyObject
*self
, PyObject
*args
) {
3238 PyObject
*resultobj
;
3239 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3240 int arg2
= (int) otk::OtkWidget::Horizontal
;
3241 otk::OtkFocusWidget
*result
;
3242 PyObject
* obj0
= 0 ;
3244 if(!PyArg_ParseTuple(args
,(char *)"O|i:new_OtkFocusWidget",&obj0
,&arg2
)) goto fail
;
3245 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3246 result
= (otk::OtkFocusWidget
*)new otk::OtkFocusWidget(arg1
,(otk::OtkWidget::Direction
)arg2
);
3248 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkFocusWidget
, 1);
3255 static PyObject
*_wrap_delete_OtkFocusWidget(PyObject
*self
, PyObject
*args
) {
3256 PyObject
*resultobj
;
3257 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3258 PyObject
* obj0
= 0 ;
3260 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkFocusWidget",&obj0
)) goto fail
;
3261 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3264 Py_INCREF(Py_None
); resultobj
= Py_None
;
3271 static PyObject
*_wrap_OtkFocusWidget_focus(PyObject
*self
, PyObject
*args
) {
3272 PyObject
*resultobj
;
3273 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3274 PyObject
* obj0
= 0 ;
3276 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_focus",&obj0
)) goto fail
;
3277 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3280 Py_INCREF(Py_None
); resultobj
= Py_None
;
3287 static PyObject
*_wrap_OtkFocusWidget_unfocus(PyObject
*self
, PyObject
*args
) {
3288 PyObject
*resultobj
;
3289 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3290 PyObject
* obj0
= 0 ;
3292 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_unfocus",&obj0
)) goto fail
;
3293 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3296 Py_INCREF(Py_None
); resultobj
= Py_None
;
3303 static PyObject
*_wrap_OtkFocusWidget_setTexture(PyObject
*self
, PyObject
*args
) {
3304 PyObject
*resultobj
;
3305 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3306 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3307 PyObject
* obj0
= 0 ;
3308 PyObject
* obj1
= 0 ;
3310 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusWidget_setTexture",&obj0
,&obj1
)) goto fail
;
3311 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3312 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3313 (arg1
)->setTexture(arg2
);
3315 Py_INCREF(Py_None
); resultobj
= Py_None
;
3322 static PyObject
*_wrap_OtkFocusWidget_setBorderColor(PyObject
*self
, PyObject
*args
) {
3323 PyObject
*resultobj
;
3324 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3325 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
3326 PyObject
* obj0
= 0 ;
3327 PyObject
* obj1
= 0 ;
3329 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusWidget_setBorderColor",&obj0
,&obj1
)) goto fail
;
3330 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3331 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3332 (arg1
)->setBorderColor((otk::BColor
const *)arg2
);
3334 Py_INCREF(Py_None
); resultobj
= Py_None
;
3341 static PyObject
*_wrap_OtkFocusWidget_setUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3342 PyObject
*resultobj
;
3343 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3344 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3345 PyObject
* obj0
= 0 ;
3346 PyObject
* obj1
= 0 ;
3348 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusWidget_setUnfocusTexture",&obj0
,&obj1
)) goto fail
;
3349 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3350 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3351 (arg1
)->setUnfocusTexture(arg2
);
3353 Py_INCREF(Py_None
); resultobj
= Py_None
;
3360 static PyObject
*_wrap_OtkFocusWidget_getUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3361 PyObject
*resultobj
;
3362 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3363 otk::BTexture
*result
;
3364 PyObject
* obj0
= 0 ;
3366 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_getUnfocusTexture",&obj0
)) goto fail
;
3367 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3368 result
= (otk::BTexture
*)((otk::OtkFocusWidget
const *)arg1
)->getUnfocusTexture();
3370 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
3377 static PyObject
*_wrap_OtkFocusWidget_setUnfocusBorderColor(PyObject
*self
, PyObject
*args
) {
3378 PyObject
*resultobj
;
3379 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3380 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
3381 PyObject
* obj0
= 0 ;
3382 PyObject
* obj1
= 0 ;
3384 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusWidget_setUnfocusBorderColor",&obj0
,&obj1
)) goto fail
;
3385 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3386 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3387 (arg1
)->setUnfocusBorderColor((otk::BColor
const *)arg2
);
3389 Py_INCREF(Py_None
); resultobj
= Py_None
;
3396 static PyObject
*_wrap_OtkFocusWidget_getUnfocusBorderColor(PyObject
*self
, PyObject
*args
) {
3397 PyObject
*resultobj
;
3398 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3399 otk::BColor
*result
;
3400 PyObject
* obj0
= 0 ;
3402 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_getUnfocusBorderColor",&obj0
)) goto fail
;
3403 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3404 result
= (otk::BColor
*)((otk::OtkFocusWidget
const *)arg1
)->getUnfocusBorderColor();
3406 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
3413 static PyObject
*_wrap_OtkFocusWidget_isFocused(PyObject
*self
, PyObject
*args
) {
3414 PyObject
*resultobj
;
3415 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3417 PyObject
* obj0
= 0 ;
3419 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_isFocused",&obj0
)) goto fail
;
3420 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3421 result
= (bool)((otk::OtkFocusWidget
const *)arg1
)->isFocused();
3423 resultobj
= PyInt_FromLong((long)result
);
3430 static PyObject
*_wrap_OtkFocusWidget_isUnfocused(PyObject
*self
, PyObject
*args
) {
3431 PyObject
*resultobj
;
3432 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3434 PyObject
* obj0
= 0 ;
3436 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_isUnfocused",&obj0
)) goto fail
;
3437 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3438 result
= (bool)((otk::OtkFocusWidget
const *)arg1
)->isUnfocused();
3440 resultobj
= PyInt_FromLong((long)result
);
3447 static PyObject
* OtkFocusWidget_swigregister(PyObject
*self
, PyObject
*args
) {
3449 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3450 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkFocusWidget
, obj
);
3452 return Py_BuildValue((char *)"");
3454 static PyObject
*_wrap_new_OtkFocusLabel(PyObject
*self
, PyObject
*args
) {
3455 PyObject
*resultobj
;
3456 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3457 otk::OtkFocusLabel
*result
;
3458 PyObject
* obj0
= 0 ;
3460 if(!PyArg_ParseTuple(args
,(char *)"O:new_OtkFocusLabel",&obj0
)) goto fail
;
3461 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3462 result
= (otk::OtkFocusLabel
*)new otk::OtkFocusLabel(arg1
);
3464 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkFocusLabel
, 1);
3471 static PyObject
*_wrap_delete_OtkFocusLabel(PyObject
*self
, PyObject
*args
) {
3472 PyObject
*resultobj
;
3473 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3474 PyObject
* obj0
= 0 ;
3476 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkFocusLabel",&obj0
)) goto fail
;
3477 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3480 Py_INCREF(Py_None
); resultobj
= Py_None
;
3487 static PyObject
*_wrap_OtkFocusLabel_getText(PyObject
*self
, PyObject
*args
) {
3488 PyObject
*resultobj
;
3489 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3490 std::string
*result
;
3491 PyObject
* obj0
= 0 ;
3493 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusLabel_getText",&obj0
)) goto fail
;
3494 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3496 std::string
const &_result_ref
= ((otk::OtkFocusLabel
const *)arg1
)->getText();
3497 result
= (std::string
*) &_result_ref
;
3501 resultobj
= PyString_FromString(result
->c_str());
3509 static PyObject
*_wrap_OtkFocusLabel_setText(PyObject
*self
, PyObject
*args
) {
3510 PyObject
*resultobj
;
3511 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3512 std::string
*arg2
= 0 ;
3514 PyObject
* obj0
= 0 ;
3515 PyObject
* obj1
= 0 ;
3517 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusLabel_setText",&obj0
,&obj1
)) goto fail
;
3518 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3520 if (PyString_Check(obj1
)) {
3521 temp2
= std::string(PyString_AsString(obj1
));
3524 SWIG_exception(SWIG_TypeError
, "string expected");
3527 (arg1
)->setText((std::string
const &)*arg2
);
3529 Py_INCREF(Py_None
); resultobj
= Py_None
;
3536 static PyObject
*_wrap_OtkFocusLabel_update(PyObject
*self
, PyObject
*args
) {
3537 PyObject
*resultobj
;
3538 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3539 PyObject
* obj0
= 0 ;
3541 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusLabel_update",&obj0
)) goto fail
;
3542 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3545 Py_INCREF(Py_None
); resultobj
= Py_None
;
3552 static PyObject
*_wrap_OtkFocusLabel_setStyle(PyObject
*self
, PyObject
*args
) {
3553 PyObject
*resultobj
;
3554 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3555 otk::Style
*arg2
= (otk::Style
*) 0 ;
3556 PyObject
* obj0
= 0 ;
3557 PyObject
* obj1
= 0 ;
3559 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusLabel_setStyle",&obj0
,&obj1
)) goto fail
;
3560 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3561 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3562 (arg1
)->setStyle(arg2
);
3564 Py_INCREF(Py_None
); resultobj
= Py_None
;
3571 static PyObject
* OtkFocusLabel_swigregister(PyObject
*self
, PyObject
*args
) {
3573 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3574 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkFocusLabel
, obj
);
3576 return Py_BuildValue((char *)"");
3578 static PyObject
*_wrap_new_OtkAppWidget(PyObject
*self
, PyObject
*args
) {
3579 PyObject
*resultobj
;
3580 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3581 int arg2
= (int) otk::OtkWidget::Horizontal
;
3582 Cursor arg3
= (Cursor
) 0 ;
3583 int arg4
= (int) 1 ;
3584 otk::OtkAppWidget
*result
;
3586 PyObject
* obj0
= 0 ;
3587 PyObject
* obj2
= 0 ;
3589 if(!PyArg_ParseTuple(args
,(char *)"O|iOi:new_OtkAppWidget",&obj0
,&arg2
,&obj2
,&arg4
)) goto fail
;
3590 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3592 if ((SWIG_ConvertPtr(obj2
,(void **) &argp3
, SWIGTYPE_p_Cursor
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
3595 result
= (otk::OtkAppWidget
*)new otk::OtkAppWidget(arg1
,(otk::OtkWidget::Direction
)arg2
,arg3
,arg4
);
3597 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkAppWidget
, 1);
3604 static PyObject
*_wrap_delete_OtkAppWidget(PyObject
*self
, PyObject
*args
) {
3605 PyObject
*resultobj
;
3606 otk::OtkAppWidget
*arg1
= (otk::OtkAppWidget
*) 0 ;
3607 PyObject
* obj0
= 0 ;
3609 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkAppWidget",&obj0
)) goto fail
;
3610 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkAppWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3613 Py_INCREF(Py_None
); resultobj
= Py_None
;
3620 static PyObject
*_wrap_OtkAppWidget_show(PyObject
*self
, PyObject
*args
) {
3621 PyObject
*resultobj
;
3622 otk::OtkAppWidget
*arg1
= (otk::OtkAppWidget
*) 0 ;
3623 PyObject
* obj0
= 0 ;
3625 if(!PyArg_ParseTuple(args
,(char *)"O:OtkAppWidget_show",&obj0
)) goto fail
;
3626 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkAppWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3629 Py_INCREF(Py_None
); resultobj
= Py_None
;
3636 static PyObject
*_wrap_OtkAppWidget_hide(PyObject
*self
, PyObject
*args
) {
3637 PyObject
*resultobj
;
3638 otk::OtkAppWidget
*arg1
= (otk::OtkAppWidget
*) 0 ;
3639 PyObject
* obj0
= 0 ;
3641 if(!PyArg_ParseTuple(args
,(char *)"O:OtkAppWidget_hide",&obj0
)) goto fail
;
3642 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkAppWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3645 Py_INCREF(Py_None
); resultobj
= Py_None
;
3652 static PyObject
*_wrap_OtkAppWidget_clientMessageHandler(PyObject
*self
, PyObject
*args
) {
3653 PyObject
*resultobj
;
3654 otk::OtkAppWidget
*arg1
= (otk::OtkAppWidget
*) 0 ;
3655 XClientMessageEvent
*arg2
= 0 ;
3656 PyObject
* obj0
= 0 ;
3657 PyObject
* obj1
= 0 ;
3659 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkAppWidget_clientMessageHandler",&obj0
,&obj1
)) goto fail
;
3660 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkAppWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3661 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XClientMessageEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3663 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
3665 (arg1
)->clientMessageHandler((XClientMessageEvent
const &)*arg2
);
3667 Py_INCREF(Py_None
); resultobj
= Py_None
;
3674 static PyObject
* OtkAppWidget_swigregister(PyObject
*self
, PyObject
*args
) {
3676 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3677 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkAppWidget
, obj
);
3679 return Py_BuildValue((char *)"");
3681 static PyObject
*_wrap_new_OtkApplication(PyObject
*self
, PyObject
*args
) {
3682 PyObject
*resultobj
;
3684 char **arg2
= (char **) 0 ;
3685 otk::OtkApplication
*result
;
3686 PyObject
* obj1
= 0 ;
3688 if(!PyArg_ParseTuple(args
,(char *)"iO:new_OtkApplication",&arg1
,&obj1
)) goto fail
;
3689 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_p_char
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3690 result
= (otk::OtkApplication
*)new otk::OtkApplication(arg1
,arg2
);
3692 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkApplication
, 1);
3699 static PyObject
*_wrap_delete_OtkApplication(PyObject
*self
, PyObject
*args
) {
3700 PyObject
*resultobj
;
3701 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3702 PyObject
* obj0
= 0 ;
3704 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkApplication",&obj0
)) goto fail
;
3705 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3708 Py_INCREF(Py_None
); resultobj
= Py_None
;
3715 static PyObject
*_wrap_OtkApplication_run(PyObject
*self
, PyObject
*args
) {
3716 PyObject
*resultobj
;
3717 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3718 PyObject
* obj0
= 0 ;
3720 if(!PyArg_ParseTuple(args
,(char *)"O:OtkApplication_run",&obj0
)) goto fail
;
3721 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3724 Py_INCREF(Py_None
); resultobj
= Py_None
;
3731 static PyObject
*_wrap_OtkApplication_setDockable(PyObject
*self
, PyObject
*args
) {
3732 PyObject
*resultobj
;
3733 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3735 PyObject
* obj0
= 0 ;
3736 PyObject
* obj1
= 0 ;
3738 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkApplication_setDockable",&obj0
,&obj1
)) goto fail
;
3739 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3740 arg2
= (bool) PyInt_AsLong(obj1
);
3741 if (PyErr_Occurred()) SWIG_fail
;
3742 (arg1
)->setDockable(arg2
);
3744 Py_INCREF(Py_None
); resultobj
= Py_None
;
3751 static PyObject
*_wrap_OtkApplication_isDockable(PyObject
*self
, PyObject
*args
) {
3752 PyObject
*resultobj
;
3753 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3755 PyObject
* obj0
= 0 ;
3757 if(!PyArg_ParseTuple(args
,(char *)"O:OtkApplication_isDockable",&obj0
)) goto fail
;
3758 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3759 result
= (bool)((otk::OtkApplication
const *)arg1
)->isDockable();
3761 resultobj
= PyInt_FromLong((long)result
);
3768 static PyObject
*_wrap_OtkApplication_getStyle(PyObject
*self
, PyObject
*args
) {
3769 PyObject
*resultobj
;
3770 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3772 PyObject
* obj0
= 0 ;
3774 if(!PyArg_ParseTuple(args
,(char *)"O:OtkApplication_getStyle",&obj0
)) goto fail
;
3775 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3776 result
= (otk::Style
*)((otk::OtkApplication
const *)arg1
)->getStyle();
3778 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Style
, 0);
3785 static PyObject
* OtkApplication_swigregister(PyObject
*self
, PyObject
*args
) {
3787 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3788 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkApplication
, obj
);
3790 return Py_BuildValue((char *)"");
3792 static PyObject
*_wrap_new_PointerAssassin(PyObject
*self
, PyObject
*args
) {
3793 PyObject
*resultobj
;
3794 otk::PointerAssassin
*result
;
3796 if(!PyArg_ParseTuple(args
,(char *)":new_PointerAssassin")) goto fail
;
3797 result
= (otk::PointerAssassin
*)new otk::PointerAssassin();
3799 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PointerAssassin
, 1);
3806 static PyObject
*_wrap_delete_PointerAssassin(PyObject
*self
, PyObject
*args
) {
3807 PyObject
*resultobj
;
3808 otk::PointerAssassin
*arg1
= (otk::PointerAssassin
*) 0 ;
3809 PyObject
* obj0
= 0 ;
3811 if(!PyArg_ParseTuple(args
,(char *)"O:delete_PointerAssassin",&obj0
)) goto fail
;
3812 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PointerAssassin
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3815 Py_INCREF(Py_None
); resultobj
= Py_None
;
3822 static PyObject
* PointerAssassin_swigregister(PyObject
*self
, PyObject
*args
) {
3824 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3825 SWIG_TypeClientData(SWIGTYPE_p_otk__PointerAssassin
, obj
);
3827 return Py_BuildValue((char *)"");
3829 static PyObject
*_wrap_new_OtkButton(PyObject
*self
, PyObject
*args
) {
3830 PyObject
*resultobj
;
3831 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3832 otk::OtkButton
*result
;
3833 PyObject
* obj0
= 0 ;
3835 if(!PyArg_ParseTuple(args
,(char *)"O:new_OtkButton",&obj0
)) goto fail
;
3836 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3837 result
= (otk::OtkButton
*)new otk::OtkButton(arg1
);
3839 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkButton
, 1);
3846 static PyObject
*_wrap_delete_OtkButton(PyObject
*self
, PyObject
*args
) {
3847 PyObject
*resultobj
;
3848 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3849 PyObject
* obj0
= 0 ;
3851 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkButton",&obj0
)) goto fail
;
3852 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3855 Py_INCREF(Py_None
); resultobj
= Py_None
;
3862 static PyObject
*_wrap_OtkButton_getPressedFocusTexture(PyObject
*self
, PyObject
*args
) {
3863 PyObject
*resultobj
;
3864 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3865 otk::BTexture
*result
;
3866 PyObject
* obj0
= 0 ;
3868 if(!PyArg_ParseTuple(args
,(char *)"O:OtkButton_getPressedFocusTexture",&obj0
)) goto fail
;
3869 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3870 result
= (otk::BTexture
*)((otk::OtkButton
const *)arg1
)->getPressedFocusTexture();
3872 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
3879 static PyObject
*_wrap_OtkButton_setPressedFocusTexture(PyObject
*self
, PyObject
*args
) {
3880 PyObject
*resultobj
;
3881 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3882 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3883 PyObject
* obj0
= 0 ;
3884 PyObject
* obj1
= 0 ;
3886 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setPressedFocusTexture",&obj0
,&obj1
)) goto fail
;
3887 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3888 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3889 (arg1
)->setPressedFocusTexture(arg2
);
3891 Py_INCREF(Py_None
); resultobj
= Py_None
;
3898 static PyObject
*_wrap_OtkButton_getPressedUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3899 PyObject
*resultobj
;
3900 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3901 otk::BTexture
*result
;
3902 PyObject
* obj0
= 0 ;
3904 if(!PyArg_ParseTuple(args
,(char *)"O:OtkButton_getPressedUnfocusTexture",&obj0
)) goto fail
;
3905 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3906 result
= (otk::BTexture
*)((otk::OtkButton
const *)arg1
)->getPressedUnfocusTexture();
3908 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
3915 static PyObject
*_wrap_OtkButton_setPressedUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3916 PyObject
*resultobj
;
3917 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3918 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3919 PyObject
* obj0
= 0 ;
3920 PyObject
* obj1
= 0 ;
3922 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setPressedUnfocusTexture",&obj0
,&obj1
)) goto fail
;
3923 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3924 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3925 (arg1
)->setPressedUnfocusTexture(arg2
);
3927 Py_INCREF(Py_None
); resultobj
= Py_None
;
3934 static PyObject
*_wrap_OtkButton_setTexture(PyObject
*self
, PyObject
*args
) {
3935 PyObject
*resultobj
;
3936 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3937 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3938 PyObject
* obj0
= 0 ;
3939 PyObject
* obj1
= 0 ;
3941 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setTexture",&obj0
,&obj1
)) goto fail
;
3942 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3943 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3944 (arg1
)->setTexture(arg2
);
3946 Py_INCREF(Py_None
); resultobj
= Py_None
;
3953 static PyObject
*_wrap_OtkButton_setUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3954 PyObject
*resultobj
;
3955 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3956 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3957 PyObject
* obj0
= 0 ;
3958 PyObject
* obj1
= 0 ;
3960 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setUnfocusTexture",&obj0
,&obj1
)) goto fail
;
3961 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3962 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3963 (arg1
)->setUnfocusTexture(arg2
);
3965 Py_INCREF(Py_None
); resultobj
= Py_None
;
3972 static PyObject
*_wrap_OtkButton_isPressed(PyObject
*self
, PyObject
*args
) {
3973 PyObject
*resultobj
;
3974 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3976 PyObject
* obj0
= 0 ;
3978 if(!PyArg_ParseTuple(args
,(char *)"O:OtkButton_isPressed",&obj0
)) goto fail
;
3979 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3980 result
= (bool)((otk::OtkButton
const *)arg1
)->isPressed();
3982 resultobj
= PyInt_FromLong((long)result
);
3989 static PyObject
*_wrap_OtkButton_press(PyObject
*self
, PyObject
*args
) {
3990 PyObject
*resultobj
;
3991 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3993 PyObject
* obj0
= 0 ;
3994 PyObject
* obj1
= 0 ;
3996 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_press",&obj0
,&obj1
)) goto fail
;
3997 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3998 arg2
= (unsigned int) PyInt_AsLong(obj1
);
3999 if (PyErr_Occurred()) SWIG_fail
;
4000 (arg1
)->press(arg2
);
4002 Py_INCREF(Py_None
); resultobj
= Py_None
;
4009 static PyObject
*_wrap_OtkButton_release(PyObject
*self
, PyObject
*args
) {
4010 PyObject
*resultobj
;
4011 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
4013 PyObject
* obj0
= 0 ;
4014 PyObject
* obj1
= 0 ;
4016 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_release",&obj0
,&obj1
)) goto fail
;
4017 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4018 arg2
= (unsigned int) PyInt_AsLong(obj1
);
4019 if (PyErr_Occurred()) SWIG_fail
;
4020 (arg1
)->release(arg2
);
4022 Py_INCREF(Py_None
); resultobj
= Py_None
;
4029 static PyObject
*_wrap_OtkButton_buttonPressHandler(PyObject
*self
, PyObject
*args
) {
4030 PyObject
*resultobj
;
4031 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
4032 XButtonEvent
*arg2
= 0 ;
4033 PyObject
* obj0
= 0 ;
4034 PyObject
* obj1
= 0 ;
4036 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_buttonPressHandler",&obj0
,&obj1
)) goto fail
;
4037 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4038 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XButtonEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4040 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
4042 (arg1
)->buttonPressHandler((XButtonEvent
const &)*arg2
);
4044 Py_INCREF(Py_None
); resultobj
= Py_None
;
4051 static PyObject
*_wrap_OtkButton_buttonReleaseHandler(PyObject
*self
, PyObject
*args
) {
4052 PyObject
*resultobj
;
4053 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
4054 XButtonEvent
*arg2
= 0 ;
4055 PyObject
* obj0
= 0 ;
4056 PyObject
* obj1
= 0 ;
4058 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_buttonReleaseHandler",&obj0
,&obj1
)) goto fail
;
4059 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4060 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XButtonEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4062 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
4064 (arg1
)->buttonReleaseHandler((XButtonEvent
const &)*arg2
);
4066 Py_INCREF(Py_None
); resultobj
= Py_None
;
4073 static PyObject
*_wrap_OtkButton_setStyle(PyObject
*self
, PyObject
*args
) {
4074 PyObject
*resultobj
;
4075 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
4076 otk::Style
*arg2
= (otk::Style
*) 0 ;
4077 PyObject
* obj0
= 0 ;
4078 PyObject
* obj1
= 0 ;
4080 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setStyle",&obj0
,&obj1
)) goto fail
;
4081 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4082 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4083 (arg1
)->setStyle(arg2
);
4085 Py_INCREF(Py_None
); resultobj
= Py_None
;
4092 static PyObject
* OtkButton_swigregister(PyObject
*self
, PyObject
*args
) {
4094 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
4095 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkButton
, obj
);
4097 return Py_BuildValue((char *)"");
4099 static PyObject
*_wrap_new_BColor__SWIG_0(PyObject
*self
, PyObject
*args
) {
4100 PyObject
*resultobj
;
4101 unsigned int arg1
= (unsigned int) ~(0u) ;
4102 otk::BColor
*result
;
4103 PyObject
* obj0
= 0 ;
4105 if(!PyArg_ParseTuple(args
,(char *)"|O:new_BColor",&obj0
)) goto fail
;
4107 arg1
= (unsigned int) PyInt_AsLong(obj0
);
4108 if (PyErr_Occurred()) SWIG_fail
;
4110 result
= (otk::BColor
*)new otk::BColor(arg1
);
4112 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 1);
4119 static PyObject
*_wrap_new_BColor__SWIG_1(PyObject
*self
, PyObject
*args
) {
4120 PyObject
*resultobj
;
4124 unsigned int arg4
= (unsigned int) ~(0u) ;
4125 otk::BColor
*result
;
4126 PyObject
* obj3
= 0 ;
4128 if(!PyArg_ParseTuple(args
,(char *)"iii|O:new_BColor",&arg1
,&arg2
,&arg3
,&obj3
)) goto fail
;
4130 arg4
= (unsigned int) PyInt_AsLong(obj3
);
4131 if (PyErr_Occurred()) SWIG_fail
;
4133 result
= (otk::BColor
*)new otk::BColor(arg1
,arg2
,arg3
,arg4
);
4135 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 1);
4142 static PyObject
*_wrap_new_BColor__SWIG_2(PyObject
*self
, PyObject
*args
) {
4143 PyObject
*resultobj
;
4144 std::string
*arg1
= 0 ;
4145 unsigned int arg2
= (unsigned int) ~(0u) ;
4146 otk::BColor
*result
;
4148 PyObject
* obj0
= 0 ;
4149 PyObject
* obj1
= 0 ;
4151 if(!PyArg_ParseTuple(args
,(char *)"O|O:new_BColor",&obj0
,&obj1
)) goto fail
;
4153 if (PyString_Check(obj0
)) {
4154 temp1
= std::string(PyString_AsString(obj0
));
4157 SWIG_exception(SWIG_TypeError
, "string expected");
4161 arg2
= (unsigned int) PyInt_AsLong(obj1
);
4162 if (PyErr_Occurred()) SWIG_fail
;
4164 result
= (otk::BColor
*)new otk::BColor((std::string
const &)*arg1
,arg2
);
4166 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 1);
4173 static PyObject
*_wrap_new_BColor(PyObject
*self
, PyObject
*args
) {
4178 argc
= PyObject_Length(args
);
4179 for (ii
= 0; (ii
< argc
) && (ii
< 4); ii
++) {
4180 argv
[ii
] = PyTuple_GetItem(args
,ii
);
4182 if ((argc
>= 0) && (argc
<= 1)) {
4185 return _wrap_new_BColor__SWIG_0(self
,args
);
4188 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4191 return _wrap_new_BColor__SWIG_0(self
,args
);
4194 if ((argc
>= 1) && (argc
<= 2)) {
4197 _v
= PyString_Check(argv
[0]) ? 1 : 0;
4201 return _wrap_new_BColor__SWIG_2(self
,args
);
4204 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4207 return _wrap_new_BColor__SWIG_2(self
,args
);
4211 if ((argc
>= 3) && (argc
<= 4)) {
4214 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4218 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4222 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
4226 return _wrap_new_BColor__SWIG_1(self
,args
);
4229 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
4232 return _wrap_new_BColor__SWIG_1(self
,args
);
4239 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_BColor'");
4244 static PyObject
*_wrap_delete_BColor(PyObject
*self
, PyObject
*args
) {
4245 PyObject
*resultobj
;
4246 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4247 PyObject
* obj0
= 0 ;
4249 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BColor",&obj0
)) goto fail
;
4250 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4253 Py_INCREF(Py_None
); resultobj
= Py_None
;
4260 static PyObject
*_wrap_BColor_name(PyObject
*self
, PyObject
*args
) {
4261 PyObject
*resultobj
;
4262 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4263 std::string
*result
;
4264 PyObject
* obj0
= 0 ;
4266 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_name",&obj0
)) goto fail
;
4267 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4269 std::string
const &_result_ref
= ((otk::BColor
const *)arg1
)->name();
4270 result
= (std::string
*) &_result_ref
;
4274 resultobj
= PyString_FromString(result
->c_str());
4282 static PyObject
*_wrap_BColor_red(PyObject
*self
, PyObject
*args
) {
4283 PyObject
*resultobj
;
4284 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4286 PyObject
* obj0
= 0 ;
4288 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_red",&obj0
)) goto fail
;
4289 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4290 result
= (int)((otk::BColor
const *)arg1
)->red();
4292 resultobj
= PyInt_FromLong((long)result
);
4299 static PyObject
*_wrap_BColor_green(PyObject
*self
, PyObject
*args
) {
4300 PyObject
*resultobj
;
4301 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4303 PyObject
* obj0
= 0 ;
4305 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_green",&obj0
)) goto fail
;
4306 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4307 result
= (int)((otk::BColor
const *)arg1
)->green();
4309 resultobj
= PyInt_FromLong((long)result
);
4316 static PyObject
*_wrap_BColor_blue(PyObject
*self
, PyObject
*args
) {
4317 PyObject
*resultobj
;
4318 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4320 PyObject
* obj0
= 0 ;
4322 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_blue",&obj0
)) goto fail
;
4323 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4324 result
= (int)((otk::BColor
const *)arg1
)->blue();
4326 resultobj
= PyInt_FromLong((long)result
);
4333 static PyObject
*_wrap_BColor_setRGB(PyObject
*self
, PyObject
*args
) {
4334 PyObject
*resultobj
;
4335 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4339 PyObject
* obj0
= 0 ;
4341 if(!PyArg_ParseTuple(args
,(char *)"Oiii:BColor_setRGB",&obj0
,&arg2
,&arg3
,&arg4
)) goto fail
;
4342 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4343 (arg1
)->setRGB(arg2
,arg3
,arg4
);
4345 Py_INCREF(Py_None
); resultobj
= Py_None
;
4352 static PyObject
*_wrap_BColor_screen(PyObject
*self
, PyObject
*args
) {
4353 PyObject
*resultobj
;
4354 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4355 unsigned int result
;
4356 PyObject
* obj0
= 0 ;
4358 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_screen",&obj0
)) goto fail
;
4359 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4360 result
= (unsigned int)((otk::BColor
const *)arg1
)->screen();
4362 resultobj
= PyInt_FromLong((long)result
);
4369 static PyObject
*_wrap_BColor_setScreen(PyObject
*self
, PyObject
*args
) {
4370 PyObject
*resultobj
;
4371 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4372 unsigned int arg2
= (unsigned int) ~(0u) ;
4373 PyObject
* obj0
= 0 ;
4374 PyObject
* obj1
= 0 ;
4376 if(!PyArg_ParseTuple(args
,(char *)"O|O:BColor_setScreen",&obj0
,&obj1
)) goto fail
;
4377 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4379 arg2
= (unsigned int) PyInt_AsLong(obj1
);
4380 if (PyErr_Occurred()) SWIG_fail
;
4382 (arg1
)->setScreen(arg2
);
4384 Py_INCREF(Py_None
); resultobj
= Py_None
;
4391 static PyObject
*_wrap_BColor_isAllocated(PyObject
*self
, PyObject
*args
) {
4392 PyObject
*resultobj
;
4393 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4395 PyObject
* obj0
= 0 ;
4397 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_isAllocated",&obj0
)) goto fail
;
4398 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4399 result
= (bool)((otk::BColor
const *)arg1
)->isAllocated();
4401 resultobj
= PyInt_FromLong((long)result
);
4408 static PyObject
*_wrap_BColor_isValid(PyObject
*self
, PyObject
*args
) {
4409 PyObject
*resultobj
;
4410 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4412 PyObject
* obj0
= 0 ;
4414 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_isValid",&obj0
)) goto fail
;
4415 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4416 result
= (bool)((otk::BColor
const *)arg1
)->isValid();
4418 resultobj
= PyInt_FromLong((long)result
);
4425 static PyObject
*_wrap_BColor_pixel(PyObject
*self
, PyObject
*args
) {
4426 PyObject
*resultobj
;
4427 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4428 unsigned long result
;
4429 PyObject
* obj0
= 0 ;
4431 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_pixel",&obj0
)) goto fail
;
4432 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4433 result
= (unsigned long)((otk::BColor
const *)arg1
)->pixel();
4435 resultobj
= PyInt_FromLong((long)result
);
4442 static PyObject
*_wrap_BColor_equals(PyObject
*self
, PyObject
*args
) {
4443 PyObject
*resultobj
;
4444 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4445 otk::BColor
*arg2
= 0 ;
4447 PyObject
* obj0
= 0 ;
4448 PyObject
* obj1
= 0 ;
4450 if(!PyArg_ParseTuple(args
,(char *)"OO:BColor_equals",&obj0
,&obj1
)) goto fail
;
4451 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4452 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4454 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
4456 result
= (bool)((otk::BColor
const *)arg1
)->operator ==((otk::BColor
const &)*arg2
);
4458 resultobj
= PyInt_FromLong((long)result
);
4465 static PyObject
*_wrap_BColor_cleanupColorCache(PyObject
*self
, PyObject
*args
) {
4466 PyObject
*resultobj
;
4468 if(!PyArg_ParseTuple(args
,(char *)":BColor_cleanupColorCache")) goto fail
;
4469 otk::BColor::cleanupColorCache();
4471 Py_INCREF(Py_None
); resultobj
= Py_None
;
4478 static PyObject
* BColor_swigregister(PyObject
*self
, PyObject
*args
) {
4480 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
4481 SWIG_TypeClientData(SWIGTYPE_p_otk__BColor
, obj
);
4483 return Py_BuildValue((char *)"");
4485 static PyObject
*_wrap_new_Configuration__SWIG_0(PyObject
*self
, PyObject
*args
) {
4486 PyObject
*resultobj
;
4487 std::string
*arg1
= 0 ;
4488 bool arg2
= (bool) True
;
4489 otk::Configuration
*result
;
4491 PyObject
* obj0
= 0 ;
4492 PyObject
* obj1
= 0 ;
4494 if(!PyArg_ParseTuple(args
,(char *)"O|O:new_Configuration",&obj0
,&obj1
)) goto fail
;
4496 if (PyString_Check(obj0
)) {
4497 temp1
= std::string(PyString_AsString(obj0
));
4500 SWIG_exception(SWIG_TypeError
, "string expected");
4504 arg2
= (bool) PyInt_AsLong(obj1
);
4505 if (PyErr_Occurred()) SWIG_fail
;
4507 result
= (otk::Configuration
*)new otk::Configuration((std::string
const &)*arg1
,arg2
);
4509 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Configuration
, 1);
4516 static PyObject
*_wrap_new_Configuration__SWIG_1(PyObject
*self
, PyObject
*args
) {
4517 PyObject
*resultobj
;
4518 bool arg1
= (bool) True
;
4519 otk::Configuration
*result
;
4520 PyObject
* obj0
= 0 ;
4522 if(!PyArg_ParseTuple(args
,(char *)"|O:new_Configuration",&obj0
)) goto fail
;
4524 arg1
= (bool) PyInt_AsLong(obj0
);
4525 if (PyErr_Occurred()) SWIG_fail
;
4527 result
= (otk::Configuration
*)new otk::Configuration(arg1
);
4529 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Configuration
, 1);
4536 static PyObject
*_wrap_new_Configuration(PyObject
*self
, PyObject
*args
) {
4541 argc
= PyObject_Length(args
);
4542 for (ii
= 0; (ii
< argc
) && (ii
< 2); ii
++) {
4543 argv
[ii
] = PyTuple_GetItem(args
,ii
);
4545 if ((argc
>= 0) && (argc
<= 1)) {
4548 return _wrap_new_Configuration__SWIG_1(self
,args
);
4551 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4554 return _wrap_new_Configuration__SWIG_1(self
,args
);
4557 if ((argc
>= 1) && (argc
<= 2)) {
4560 _v
= PyString_Check(argv
[0]) ? 1 : 0;
4564 return _wrap_new_Configuration__SWIG_0(self
,args
);
4567 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4570 return _wrap_new_Configuration__SWIG_0(self
,args
);
4575 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Configuration'");
4580 static PyObject
*_wrap_delete_Configuration(PyObject
*self
, PyObject
*args
) {
4581 PyObject
*resultobj
;
4582 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4583 PyObject
* obj0
= 0 ;
4585 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Configuration",&obj0
)) goto fail
;
4586 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4589 Py_INCREF(Py_None
); resultobj
= Py_None
;
4596 static PyObject
*_wrap_Configuration_file(PyObject
*self
, PyObject
*args
) {
4597 PyObject
*resultobj
;
4598 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4599 std::string
*result
;
4600 PyObject
* obj0
= 0 ;
4602 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_file",&obj0
)) goto fail
;
4603 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4605 std::string
const &_result_ref
= ((otk::Configuration
const *)arg1
)->file();
4606 result
= (std::string
*) &_result_ref
;
4610 resultobj
= PyString_FromString(result
->c_str());
4618 static PyObject
*_wrap_Configuration_setFile(PyObject
*self
, PyObject
*args
) {
4619 PyObject
*resultobj
;
4620 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4621 std::string
*arg2
= 0 ;
4623 PyObject
* obj0
= 0 ;
4624 PyObject
* obj1
= 0 ;
4626 if(!PyArg_ParseTuple(args
,(char *)"OO:Configuration_setFile",&obj0
,&obj1
)) goto fail
;
4627 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4629 if (PyString_Check(obj1
)) {
4630 temp2
= std::string(PyString_AsString(obj1
));
4633 SWIG_exception(SWIG_TypeError
, "string expected");
4636 (arg1
)->setFile((std::string
const &)*arg2
);
4638 Py_INCREF(Py_None
); resultobj
= Py_None
;
4645 static PyObject
*_wrap_Configuration_autoSave(PyObject
*self
, PyObject
*args
) {
4646 PyObject
*resultobj
;
4647 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4649 PyObject
* obj0
= 0 ;
4651 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_autoSave",&obj0
)) goto fail
;
4652 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4653 result
= (bool)((otk::Configuration
const *)arg1
)->autoSave();
4655 resultobj
= PyInt_FromLong((long)result
);
4662 static PyObject
*_wrap_Configuration_setAutoSave(PyObject
*self
, PyObject
*args
) {
4663 PyObject
*resultobj
;
4664 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4666 PyObject
* obj0
= 0 ;
4667 PyObject
* obj1
= 0 ;
4669 if(!PyArg_ParseTuple(args
,(char *)"OO:Configuration_setAutoSave",&obj0
,&obj1
)) goto fail
;
4670 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4671 arg2
= (bool) PyInt_AsLong(obj1
);
4672 if (PyErr_Occurred()) SWIG_fail
;
4673 (arg1
)->setAutoSave(arg2
);
4675 Py_INCREF(Py_None
); resultobj
= Py_None
;
4682 static PyObject
*_wrap_Configuration_isModified(PyObject
*self
, PyObject
*args
) {
4683 PyObject
*resultobj
;
4684 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4686 PyObject
* obj0
= 0 ;
4688 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_isModified",&obj0
)) goto fail
;
4689 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4690 result
= (bool)((otk::Configuration
const *)arg1
)->isModified();
4692 resultobj
= PyInt_FromLong((long)result
);
4699 static PyObject
*_wrap_Configuration_save(PyObject
*self
, PyObject
*args
) {
4700 PyObject
*resultobj
;
4701 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4702 PyObject
* obj0
= 0 ;
4704 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_save",&obj0
)) goto fail
;
4705 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4708 Py_INCREF(Py_None
); resultobj
= Py_None
;
4715 static PyObject
*_wrap_Configuration_load(PyObject
*self
, PyObject
*args
) {
4716 PyObject
*resultobj
;
4717 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4719 PyObject
* obj0
= 0 ;
4721 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_load",&obj0
)) goto fail
;
4722 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4723 result
= (bool)(arg1
)->load();
4725 resultobj
= PyInt_FromLong((long)result
);
4732 static PyObject
*_wrap_Configuration_merge(PyObject
*self
, PyObject
*args
) {
4733 PyObject
*resultobj
;
4734 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4735 std::string
*arg2
= 0 ;
4736 bool arg3
= (bool) False
;
4739 PyObject
* obj0
= 0 ;
4740 PyObject
* obj1
= 0 ;
4741 PyObject
* obj2
= 0 ;
4743 if(!PyArg_ParseTuple(args
,(char *)"OO|O:Configuration_merge",&obj0
,&obj1
,&obj2
)) goto fail
;
4744 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4746 if (PyString_Check(obj1
)) {
4747 temp2
= std::string(PyString_AsString(obj1
));
4750 SWIG_exception(SWIG_TypeError
, "string expected");
4754 arg3
= (bool) PyInt_AsLong(obj2
);
4755 if (PyErr_Occurred()) SWIG_fail
;
4757 result
= (bool)(arg1
)->merge((std::string
const &)*arg2
,arg3
);
4759 resultobj
= PyInt_FromLong((long)result
);
4766 static PyObject
*_wrap_Configuration_create(PyObject
*self
, PyObject
*args
) {
4767 PyObject
*resultobj
;
4768 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4769 PyObject
* obj0
= 0 ;
4771 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_create",&obj0
)) goto fail
;
4772 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4775 Py_INCREF(Py_None
); resultobj
= Py_None
;
4782 static PyObject
*_wrap_Configuration_setValue_bool(PyObject
*self
, PyObject
*args
) {
4783 PyObject
*resultobj
;
4784 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4785 std::string
*arg2
= 0 ;
4788 PyObject
* obj0
= 0 ;
4789 PyObject
* obj1
= 0 ;
4790 PyObject
* obj2
= 0 ;
4792 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_setValue_bool",&obj0
,&obj1
,&obj2
)) goto fail
;
4793 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4795 if (PyString_Check(obj1
)) {
4796 temp2
= std::string(PyString_AsString(obj1
));
4799 SWIG_exception(SWIG_TypeError
, "string expected");
4802 arg3
= (bool) PyInt_AsLong(obj2
);
4803 if (PyErr_Occurred()) SWIG_fail
;
4804 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4806 Py_INCREF(Py_None
); resultobj
= Py_None
;
4813 static PyObject
*_wrap_Configuration_setValue(PyObject
*self
, PyObject
*args
) {
4814 PyObject
*resultobj
;
4815 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4816 std::string
*arg2
= 0 ;
4819 PyObject
* obj0
= 0 ;
4820 PyObject
* obj1
= 0 ;
4822 if(!PyArg_ParseTuple(args
,(char *)"OOi:Configuration_setValue",&obj0
,&obj1
,&arg3
)) goto fail
;
4823 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4825 if (PyString_Check(obj1
)) {
4826 temp2
= std::string(PyString_AsString(obj1
));
4829 SWIG_exception(SWIG_TypeError
, "string expected");
4832 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4834 Py_INCREF(Py_None
); resultobj
= Py_None
;
4841 static PyObject
*_wrap_Configuration_setValue_unsigned(PyObject
*self
, PyObject
*args
) {
4842 PyObject
*resultobj
;
4843 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4844 std::string
*arg2
= 0 ;
4847 PyObject
* obj0
= 0 ;
4848 PyObject
* obj1
= 0 ;
4849 PyObject
* obj2
= 0 ;
4851 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_setValue_unsigned",&obj0
,&obj1
,&obj2
)) goto fail
;
4852 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4854 if (PyString_Check(obj1
)) {
4855 temp2
= std::string(PyString_AsString(obj1
));
4858 SWIG_exception(SWIG_TypeError
, "string expected");
4861 arg3
= (unsigned int) PyInt_AsLong(obj2
);
4862 if (PyErr_Occurred()) SWIG_fail
;
4863 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4865 Py_INCREF(Py_None
); resultobj
= Py_None
;
4872 static PyObject
*_wrap_Configuration_setValue_long(PyObject
*self
, PyObject
*args
) {
4873 PyObject
*resultobj
;
4874 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4875 std::string
*arg2
= 0 ;
4878 PyObject
* obj0
= 0 ;
4879 PyObject
* obj1
= 0 ;
4881 if(!PyArg_ParseTuple(args
,(char *)"OOl:Configuration_setValue_long",&obj0
,&obj1
,&arg3
)) goto fail
;
4882 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4884 if (PyString_Check(obj1
)) {
4885 temp2
= std::string(PyString_AsString(obj1
));
4888 SWIG_exception(SWIG_TypeError
, "string expected");
4891 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4893 Py_INCREF(Py_None
); resultobj
= Py_None
;
4900 static PyObject
*_wrap_Configuration_setValue_unsignedlong(PyObject
*self
, PyObject
*args
) {
4901 PyObject
*resultobj
;
4902 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4903 std::string
*arg2
= 0 ;
4904 unsigned long arg3
;
4906 PyObject
* obj0
= 0 ;
4907 PyObject
* obj1
= 0 ;
4908 PyObject
* obj2
= 0 ;
4910 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_setValue_unsignedlong",&obj0
,&obj1
,&obj2
)) goto fail
;
4911 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4913 if (PyString_Check(obj1
)) {
4914 temp2
= std::string(PyString_AsString(obj1
));
4917 SWIG_exception(SWIG_TypeError
, "string expected");
4920 arg3
= (unsigned long) PyInt_AsLong(obj2
);
4921 if (PyErr_Occurred()) SWIG_fail
;
4922 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4924 Py_INCREF(Py_None
); resultobj
= Py_None
;
4931 static PyObject
*_wrap_Configuration_setValue_string(PyObject
*self
, PyObject
*args
) {
4932 PyObject
*resultobj
;
4933 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4934 std::string
*arg2
= 0 ;
4935 std::string
*arg3
= 0 ;
4938 PyObject
* obj0
= 0 ;
4939 PyObject
* obj1
= 0 ;
4940 PyObject
* obj2
= 0 ;
4942 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_setValue_string",&obj0
,&obj1
,&obj2
)) goto fail
;
4943 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4945 if (PyString_Check(obj1
)) {
4946 temp2
= std::string(PyString_AsString(obj1
));
4949 SWIG_exception(SWIG_TypeError
, "string expected");
4953 if (PyString_Check(obj2
)) {
4954 temp3
= std::string(PyString_AsString(obj2
));
4957 SWIG_exception(SWIG_TypeError
, "string expected");
4960 (arg1
)->setValue((std::string
const &)*arg2
,(std::string
const &)*arg3
);
4962 Py_INCREF(Py_None
); resultobj
= Py_None
;
4969 static PyObject
*_wrap_Configuration_setValue_charptr(PyObject
*self
, PyObject
*args
) {
4970 PyObject
*resultobj
;
4971 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4972 std::string
*arg2
= 0 ;
4975 PyObject
* obj0
= 0 ;
4976 PyObject
* obj1
= 0 ;
4978 if(!PyArg_ParseTuple(args
,(char *)"OOs:Configuration_setValue_charptr",&obj0
,&obj1
,&arg3
)) goto fail
;
4979 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4981 if (PyString_Check(obj1
)) {
4982 temp2
= std::string(PyString_AsString(obj1
));
4985 SWIG_exception(SWIG_TypeError
, "string expected");
4988 (arg1
)->setValue((std::string
const &)*arg2
,(char const *)arg3
);
4990 Py_INCREF(Py_None
); resultobj
= Py_None
;
4997 static PyObject
*_wrap_Configuration_getValue__SWIG_0(PyObject
*self
, PyObject
*args
) {
4998 PyObject
*resultobj
;
4999 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5000 std::string
*arg2
= 0 ;
5004 PyObject
* obj0
= 0 ;
5005 PyObject
* obj1
= 0 ;
5006 PyObject
* obj2
= 0 ;
5008 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5009 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5011 if (PyString_Check(obj1
)) {
5012 temp2
= std::string(PyString_AsString(obj1
));
5015 SWIG_exception(SWIG_TypeError
, "string expected");
5018 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_bool
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5020 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5022 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5024 resultobj
= PyInt_FromLong((long)result
);
5031 static PyObject
*_wrap_Configuration_getValue__SWIG_1(PyObject
*self
, PyObject
*args
) {
5032 PyObject
*resultobj
;
5033 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5034 std::string
*arg2
= 0 ;
5038 PyObject
* obj0
= 0 ;
5039 PyObject
* obj1
= 0 ;
5040 PyObject
* obj2
= 0 ;
5042 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5043 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5045 if (PyString_Check(obj1
)) {
5046 temp2
= std::string(PyString_AsString(obj1
));
5049 SWIG_exception(SWIG_TypeError
, "string expected");
5052 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5054 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5056 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5058 resultobj
= PyInt_FromLong((long)result
);
5065 static PyObject
*_wrap_Configuration_getValue__SWIG_2(PyObject
*self
, PyObject
*args
) {
5066 PyObject
*resultobj
;
5067 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5068 std::string
*arg2
= 0 ;
5069 unsigned int *arg3
= 0 ;
5072 PyObject
* obj0
= 0 ;
5073 PyObject
* obj1
= 0 ;
5074 PyObject
* obj2
= 0 ;
5076 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5077 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5079 if (PyString_Check(obj1
)) {
5080 temp2
= std::string(PyString_AsString(obj1
));
5083 SWIG_exception(SWIG_TypeError
, "string expected");
5086 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_unsigned_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5088 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5090 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5092 resultobj
= PyInt_FromLong((long)result
);
5099 static PyObject
*_wrap_Configuration_getValue__SWIG_3(PyObject
*self
, PyObject
*args
) {
5100 PyObject
*resultobj
;
5101 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5102 std::string
*arg2
= 0 ;
5106 PyObject
* obj0
= 0 ;
5107 PyObject
* obj1
= 0 ;
5108 PyObject
* obj2
= 0 ;
5110 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5111 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5113 if (PyString_Check(obj1
)) {
5114 temp2
= std::string(PyString_AsString(obj1
));
5117 SWIG_exception(SWIG_TypeError
, "string expected");
5120 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5122 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5124 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5126 resultobj
= PyInt_FromLong((long)result
);
5133 static PyObject
*_wrap_Configuration_getValue__SWIG_4(PyObject
*self
, PyObject
*args
) {
5134 PyObject
*resultobj
;
5135 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5136 std::string
*arg2
= 0 ;
5137 unsigned long *arg3
= 0 ;
5140 PyObject
* obj0
= 0 ;
5141 PyObject
* obj1
= 0 ;
5142 PyObject
* obj2
= 0 ;
5144 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5145 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5147 if (PyString_Check(obj1
)) {
5148 temp2
= std::string(PyString_AsString(obj1
));
5151 SWIG_exception(SWIG_TypeError
, "string expected");
5154 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5156 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5158 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5160 resultobj
= PyInt_FromLong((long)result
);
5167 static PyObject
*_wrap_Configuration_getValue__SWIG_5(PyObject
*self
, PyObject
*args
) {
5168 PyObject
*resultobj
;
5169 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5170 std::string
*arg2
= 0 ;
5171 std::string
*arg3
= 0 ;
5174 PyObject
* obj0
= 0 ;
5175 PyObject
* obj1
= 0 ;
5176 PyObject
* obj2
= 0 ;
5178 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5179 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5181 if (PyString_Check(obj1
)) {
5182 temp2
= std::string(PyString_AsString(obj1
));
5185 SWIG_exception(SWIG_TypeError
, "string expected");
5188 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_std__string
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5190 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5192 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5194 resultobj
= PyInt_FromLong((long)result
);
5201 static PyObject
*_wrap_Configuration_getValue(PyObject
*self
, PyObject
*args
) {
5206 argc
= PyObject_Length(args
);
5207 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
5208 argv
[ii
] = PyTuple_GetItem(args
,ii
);
5214 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5223 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5228 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_bool
, 0) == -1) {
5236 return _wrap_Configuration_getValue__SWIG_0(self
,args
);
5245 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5254 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5259 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_int
, 0) == -1) {
5267 return _wrap_Configuration_getValue__SWIG_1(self
,args
);
5276 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5285 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5290 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_unsigned_int
, 0) == -1) {
5298 return _wrap_Configuration_getValue__SWIG_2(self
,args
);
5307 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5316 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5321 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_long
, 0) == -1) {
5329 return _wrap_Configuration_getValue__SWIG_3(self
,args
);
5338 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5347 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5352 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
5360 return _wrap_Configuration_getValue__SWIG_4(self
,args
);
5369 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5378 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5383 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_std__string
, 0) == -1) {
5391 return _wrap_Configuration_getValue__SWIG_5(self
,args
);
5397 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Configuration_getValue'");
5402 static PyObject
* Configuration_swigregister(PyObject
*self
, PyObject
*args
) {
5404 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
5405 SWIG_TypeClientData(SWIGTYPE_p_otk__Configuration
, obj
);
5407 return Py_BuildValue((char *)"");
5409 static int _wrap_OBDisplay_display_set(PyObject
*_val
) {
5412 if ((SWIG_ConvertPtr(_val
,(void **) &temp
, SWIGTYPE_p_Display
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
)) == -1) {
5413 PyErr_SetString(PyExc_TypeError
, "C variable 'otk::OBDisplay::display (Display *)'");
5416 otk::OBDisplay::display
= (Display
*) temp
;
5422 static PyObject
*_wrap_OBDisplay_display_get() {
5425 pyobj
= SWIG_NewPointerObj((void *) otk::OBDisplay::display
, SWIGTYPE_p_Display
, 0);
5430 static PyObject
*_wrap_OBDisplay_initialize(PyObject
*self
, PyObject
*args
) {
5431 PyObject
*resultobj
;
5434 if(!PyArg_ParseTuple(args
,(char *)"s:OBDisplay_initialize",&arg1
)) goto fail
;
5435 otk::OBDisplay::initialize(arg1
);
5437 Py_INCREF(Py_None
); resultobj
= Py_None
;
5444 static PyObject
*_wrap_OBDisplay_destroy(PyObject
*self
, PyObject
*args
) {
5445 PyObject
*resultobj
;
5447 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_destroy")) goto fail
;
5448 otk::OBDisplay::destroy();
5450 Py_INCREF(Py_None
); resultobj
= Py_None
;
5457 static PyObject
*_wrap_OBDisplay_gcCache(PyObject
*self
, PyObject
*args
) {
5458 PyObject
*resultobj
;
5459 otk::BGCCache
*result
;
5461 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_gcCache")) goto fail
;
5462 result
= (otk::BGCCache
*)otk::OBDisplay::gcCache();
5464 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BGCCache
, 0);
5471 static PyObject
*_wrap_OBDisplay_screenInfo(PyObject
*self
, PyObject
*args
) {
5472 PyObject
*resultobj
;
5474 otk::ScreenInfo
*result
;
5476 if(!PyArg_ParseTuple(args
,(char *)"i:OBDisplay_screenInfo",&arg1
)) goto fail
;
5477 result
= (otk::ScreenInfo
*)otk::OBDisplay::screenInfo(arg1
);
5479 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__ScreenInfo
, 0);
5486 static PyObject
*_wrap_OBDisplay_shape(PyObject
*self
, PyObject
*args
) {
5487 PyObject
*resultobj
;
5490 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_shape")) goto fail
;
5491 result
= (bool)otk::OBDisplay::shape();
5493 resultobj
= PyInt_FromLong((long)result
);
5500 static PyObject
*_wrap_OBDisplay_shapeEventBase(PyObject
*self
, PyObject
*args
) {
5501 PyObject
*resultobj
;
5504 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_shapeEventBase")) goto fail
;
5505 result
= (int)otk::OBDisplay::shapeEventBase();
5507 resultobj
= PyInt_FromLong((long)result
);
5514 static PyObject
*_wrap_OBDisplay_xinerama(PyObject
*self
, PyObject
*args
) {
5515 PyObject
*resultobj
;
5518 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_xinerama")) goto fail
;
5519 result
= (bool)otk::OBDisplay::xinerama();
5521 resultobj
= PyInt_FromLong((long)result
);
5528 static PyObject
*_wrap_OBDisplay_grab(PyObject
*self
, PyObject
*args
) {
5529 PyObject
*resultobj
;
5531 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_grab")) goto fail
;
5532 otk::OBDisplay::grab();
5534 Py_INCREF(Py_None
); resultobj
= Py_None
;
5541 static PyObject
*_wrap_OBDisplay_ungrab(PyObject
*self
, PyObject
*args
) {
5542 PyObject
*resultobj
;
5544 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_ungrab")) goto fail
;
5545 otk::OBDisplay::ungrab();
5547 Py_INCREF(Py_None
); resultobj
= Py_None
;
5554 static PyObject
*_wrap_OBDisplay_grabButton(PyObject
*self
, PyObject
*args
) {
5555 PyObject
*resultobj
;
5569 PyObject
* obj0
= 0 ;
5570 PyObject
* obj1
= 0 ;
5571 PyObject
* obj2
= 0 ;
5572 PyObject
* obj3
= 0 ;
5573 PyObject
* obj4
= 0 ;
5574 PyObject
* obj7
= 0 ;
5575 PyObject
* obj8
= 0 ;
5576 PyObject
* obj9
= 0 ;
5578 if(!PyArg_ParseTuple(args
,(char *)"OOOOOiiOOO:OBDisplay_grabButton",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&arg6
,&arg7
,&obj7
,&obj8
,&obj9
)) goto fail
;
5579 arg1
= (unsigned int) PyInt_AsLong(obj0
);
5580 if (PyErr_Occurred()) SWIG_fail
;
5581 arg2
= (unsigned int) PyInt_AsLong(obj1
);
5582 if (PyErr_Occurred()) SWIG_fail
;
5583 if ((SWIG_ConvertPtr(obj2
,(void **) &argp3
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5585 arg4
= (bool) PyInt_AsLong(obj3
);
5586 if (PyErr_Occurred()) SWIG_fail
;
5587 arg5
= (unsigned int) PyInt_AsLong(obj4
);
5588 if (PyErr_Occurred()) SWIG_fail
;
5589 if ((SWIG_ConvertPtr(obj7
,(void **) &argp8
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5591 if ((SWIG_ConvertPtr(obj8
,(void **) &argp9
, SWIGTYPE_p_Cursor
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5593 arg10
= (bool) PyInt_AsLong(obj9
);
5594 if (PyErr_Occurred()) SWIG_fail
;
5595 otk::OBDisplay::grabButton(arg1
,arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
,arg9
,arg10
);
5597 Py_INCREF(Py_None
); resultobj
= Py_None
;
5604 static PyObject
*_wrap_OBDisplay_ungrabButton(PyObject
*self
, PyObject
*args
) {
5605 PyObject
*resultobj
;
5610 PyObject
* obj0
= 0 ;
5611 PyObject
* obj1
= 0 ;
5612 PyObject
* obj2
= 0 ;
5614 if(!PyArg_ParseTuple(args
,(char *)"OOO:OBDisplay_ungrabButton",&obj0
,&obj1
,&obj2
)) goto fail
;
5615 arg1
= (unsigned int) PyInt_AsLong(obj0
);
5616 if (PyErr_Occurred()) SWIG_fail
;
5617 arg2
= (unsigned int) PyInt_AsLong(obj1
);
5618 if (PyErr_Occurred()) SWIG_fail
;
5619 if ((SWIG_ConvertPtr(obj2
,(void **) &argp3
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5621 otk::OBDisplay::ungrabButton(arg1
,arg2
,arg3
);
5623 Py_INCREF(Py_None
); resultobj
= Py_None
;
5630 static PyObject
*_wrap_OBDisplay_grabKey(PyObject
*self
, PyObject
*args
) {
5631 PyObject
*resultobj
;
5640 PyObject
* obj0
= 0 ;
5641 PyObject
* obj1
= 0 ;
5642 PyObject
* obj2
= 0 ;
5643 PyObject
* obj3
= 0 ;
5644 PyObject
* obj6
= 0 ;
5646 if(!PyArg_ParseTuple(args
,(char *)"OOOOiiO:OBDisplay_grabKey",&obj0
,&obj1
,&obj2
,&obj3
,&arg5
,&arg6
,&obj6
)) goto fail
;
5647 arg1
= (unsigned int) PyInt_AsLong(obj0
);
5648 if (PyErr_Occurred()) SWIG_fail
;
5649 arg2
= (unsigned int) PyInt_AsLong(obj1
);
5650 if (PyErr_Occurred()) SWIG_fail
;
5651 if ((SWIG_ConvertPtr(obj2
,(void **) &argp3
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5653 arg4
= (bool) PyInt_AsLong(obj3
);
5654 if (PyErr_Occurred()) SWIG_fail
;
5655 arg7
= (bool) PyInt_AsLong(obj6
);
5656 if (PyErr_Occurred()) SWIG_fail
;
5657 otk::OBDisplay::grabKey(arg1
,arg2
,arg3
,arg4
,arg5
,arg6
,arg7
);
5659 Py_INCREF(Py_None
); resultobj
= Py_None
;
5666 static PyObject
*_wrap_OBDisplay_ungrabKey(PyObject
*self
, PyObject
*args
) {
5667 PyObject
*resultobj
;
5672 PyObject
* obj0
= 0 ;
5673 PyObject
* obj1
= 0 ;
5674 PyObject
* obj2
= 0 ;
5676 if(!PyArg_ParseTuple(args
,(char *)"OOO:OBDisplay_ungrabKey",&obj0
,&obj1
,&obj2
)) goto fail
;
5677 arg1
= (unsigned int) PyInt_AsLong(obj0
);
5678 if (PyErr_Occurred()) SWIG_fail
;
5679 arg2
= (unsigned int) PyInt_AsLong(obj1
);
5680 if (PyErr_Occurred()) SWIG_fail
;
5681 if ((SWIG_ConvertPtr(obj2
,(void **) &argp3
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5683 otk::OBDisplay::ungrabKey(arg1
,arg2
,arg3
);
5685 Py_INCREF(Py_None
); resultobj
= Py_None
;
5692 static PyObject
*_wrap_delete_OBDisplay(PyObject
*self
, PyObject
*args
) {
5693 PyObject
*resultobj
;
5694 otk::OBDisplay
*arg1
= (otk::OBDisplay
*) 0 ;
5695 PyObject
* obj0
= 0 ;
5697 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OBDisplay",&obj0
)) goto fail
;
5698 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBDisplay
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5701 Py_INCREF(Py_None
); resultobj
= Py_None
;
5708 static PyObject
* OBDisplay_swigregister(PyObject
*self
, PyObject
*args
) {
5710 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
5711 SWIG_TypeClientData(SWIGTYPE_p_otk__OBDisplay
, obj
);
5713 return Py_BuildValue((char *)"");
5715 static PyObject
*_wrap_BFont_fallbackFont(PyObject
*self
, PyObject
*args
) {
5716 PyObject
*resultobj
;
5719 if(!PyArg_ParseTuple(args
,(char *)":BFont_fallbackFont")) goto fail
;
5720 result
= otk::BFont::fallbackFont();
5723 resultobj
= PyString_FromString((&result
)->c_str());
5731 static PyObject
*_wrap_BFont_setFallbackFont(PyObject
*self
, PyObject
*args
) {
5732 PyObject
*resultobj
;
5733 std::string
*arg1
= 0 ;
5735 PyObject
* obj0
= 0 ;
5737 if(!PyArg_ParseTuple(args
,(char *)"O:BFont_setFallbackFont",&obj0
)) goto fail
;
5739 if (PyString_Check(obj0
)) {
5740 temp1
= std::string(PyString_AsString(obj0
));
5743 SWIG_exception(SWIG_TypeError
, "string expected");
5746 otk::BFont::setFallbackFont((std::string
const &)*arg1
);
5748 Py_INCREF(Py_None
); resultobj
= Py_None
;
5755 static PyObject
*_wrap_new_BFont(PyObject
*self
, PyObject
*args
) {
5756 PyObject
*resultobj
;
5758 std::string
*arg2
= 0 ;
5760 unsigned char arg4
;
5761 unsigned char arg5
;
5764 PyObject
* obj1
= 0 ;
5765 PyObject
* obj2
= 0 ;
5766 PyObject
* obj3
= 0 ;
5767 PyObject
* obj4
= 0 ;
5769 if(!PyArg_ParseTuple(args
,(char *)"iOOOO:new_BFont",&arg1
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
5771 if (PyString_Check(obj1
)) {
5772 temp2
= std::string(PyString_AsString(obj1
));
5775 SWIG_exception(SWIG_TypeError
, "string expected");
5778 arg3
= (bool) PyInt_AsLong(obj2
);
5779 if (PyErr_Occurred()) SWIG_fail
;
5780 arg4
= (unsigned char) PyInt_AsLong(obj3
);
5781 if (PyErr_Occurred()) SWIG_fail
;
5782 arg5
= (unsigned char) PyInt_AsLong(obj4
);
5783 if (PyErr_Occurred()) SWIG_fail
;
5784 result
= (otk::BFont
*)new otk::BFont(arg1
,(std::string
const &)*arg2
,arg3
,arg4
,arg5
);
5786 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BFont
, 1);
5793 static PyObject
*_wrap_delete_BFont(PyObject
*self
, PyObject
*args
) {
5794 PyObject
*resultobj
;
5795 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5796 PyObject
* obj0
= 0 ;
5798 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BFont",&obj0
)) goto fail
;
5799 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5802 Py_INCREF(Py_None
); resultobj
= Py_None
;
5809 static PyObject
*_wrap_BFont_fontstring(PyObject
*self
, PyObject
*args
) {
5810 PyObject
*resultobj
;
5811 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5812 std::string
*result
;
5813 PyObject
* obj0
= 0 ;
5815 if(!PyArg_ParseTuple(args
,(char *)"O:BFont_fontstring",&obj0
)) goto fail
;
5816 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5818 std::string
const &_result_ref
= ((otk::BFont
const *)arg1
)->fontstring();
5819 result
= (std::string
*) &_result_ref
;
5823 resultobj
= PyString_FromString(result
->c_str());
5831 static PyObject
*_wrap_BFont_height(PyObject
*self
, PyObject
*args
) {
5832 PyObject
*resultobj
;
5833 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5834 unsigned int result
;
5835 PyObject
* obj0
= 0 ;
5837 if(!PyArg_ParseTuple(args
,(char *)"O:BFont_height",&obj0
)) goto fail
;
5838 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5839 result
= (unsigned int)((otk::BFont
const *)arg1
)->height();
5841 resultobj
= PyInt_FromLong((long)result
);
5848 static PyObject
*_wrap_BFont_maxCharWidth(PyObject
*self
, PyObject
*args
) {
5849 PyObject
*resultobj
;
5850 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5851 unsigned int result
;
5852 PyObject
* obj0
= 0 ;
5854 if(!PyArg_ParseTuple(args
,(char *)"O:BFont_maxCharWidth",&obj0
)) goto fail
;
5855 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5856 result
= (unsigned int)((otk::BFont
const *)arg1
)->maxCharWidth();
5858 resultobj
= PyInt_FromLong((long)result
);
5865 static PyObject
*_wrap_BFont_measureString(PyObject
*self
, PyObject
*args
) {
5866 PyObject
*resultobj
;
5867 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5868 std::string
*arg2
= 0 ;
5869 bool arg3
= (bool) false ;
5870 unsigned int result
;
5872 PyObject
* obj0
= 0 ;
5873 PyObject
* obj1
= 0 ;
5874 PyObject
* obj2
= 0 ;
5876 if(!PyArg_ParseTuple(args
,(char *)"OO|O:BFont_measureString",&obj0
,&obj1
,&obj2
)) goto fail
;
5877 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5879 if (PyString_Check(obj1
)) {
5880 temp2
= std::string(PyString_AsString(obj1
));
5883 SWIG_exception(SWIG_TypeError
, "string expected");
5887 arg3
= (bool) PyInt_AsLong(obj2
);
5888 if (PyErr_Occurred()) SWIG_fail
;
5890 result
= (unsigned int)((otk::BFont
const *)arg1
)->measureString((std::string
const &)*arg2
,arg3
);
5892 resultobj
= PyInt_FromLong((long)result
);
5899 static PyObject
*_wrap_BFont_drawString(PyObject
*self
, PyObject
*args
) {
5900 PyObject
*resultobj
;
5901 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5902 XftDraw
*arg2
= (XftDraw
*) 0 ;
5905 otk::BColor
*arg5
= 0 ;
5906 std::string
*arg6
= 0 ;
5907 bool arg7
= (bool) false ;
5909 PyObject
* obj0
= 0 ;
5910 PyObject
* obj1
= 0 ;
5911 PyObject
* obj4
= 0 ;
5912 PyObject
* obj5
= 0 ;
5913 PyObject
* obj6
= 0 ;
5915 if(!PyArg_ParseTuple(args
,(char *)"OOiiOO|O:BFont_drawString",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
,&obj5
,&obj6
)) goto fail
;
5916 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5917 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XftDraw
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5918 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5920 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5923 if (PyString_Check(obj5
)) {
5924 temp6
= std::string(PyString_AsString(obj5
));
5927 SWIG_exception(SWIG_TypeError
, "string expected");
5931 arg7
= (bool) PyInt_AsLong(obj6
);
5932 if (PyErr_Occurred()) SWIG_fail
;
5934 ((otk::BFont
const *)arg1
)->drawString(arg2
,arg3
,arg4
,(otk::BColor
const &)*arg5
,(std::string
const &)*arg6
,arg7
);
5936 Py_INCREF(Py_None
); resultobj
= Py_None
;
5943 static PyObject
* BFont_swigregister(PyObject
*self
, PyObject
*args
) {
5945 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
5946 SWIG_TypeClientData(SWIGTYPE_p_otk__BFont
, obj
);
5948 return Py_BuildValue((char *)"");
5950 static PyObject
*_wrap_BGCCacheContext_set__SWIG_0(PyObject
*self
, PyObject
*args
) {
5951 PyObject
*resultobj
;
5952 otk::BGCCacheContext
*arg1
= (otk::BGCCacheContext
*) 0 ;
5953 otk::BColor
*arg2
= 0 ;
5954 XFontStruct
*arg3
= (XFontStruct
*) (XFontStruct
*)0 ;
5958 PyObject
* obj0
= 0 ;
5959 PyObject
* obj1
= 0 ;
5960 PyObject
* obj2
= 0 ;
5962 if(!PyArg_ParseTuple(args
,(char *)"OOOiii:BGCCacheContext_set",&obj0
,&obj1
,&obj2
,&arg4
,&arg5
,&arg6
)) goto fail
;
5963 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheContext
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5964 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5966 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5968 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_XFontStruct
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5969 (arg1
)->set((otk::BColor
const &)*arg2
,(XFontStruct
const *)arg3
,arg4
,arg5
,arg6
);
5971 Py_INCREF(Py_None
); resultobj
= Py_None
;
5978 static PyObject
*_wrap_BGCCacheContext_set__SWIG_1(PyObject
*self
, PyObject
*args
) {
5979 PyObject
*resultobj
;
5980 otk::BGCCacheContext
*arg1
= (otk::BGCCacheContext
*) 0 ;
5981 XFontStruct
*arg2
= (XFontStruct
*) (XFontStruct
*)0 ;
5982 PyObject
* obj0
= 0 ;
5983 PyObject
* obj1
= 0 ;
5985 if(!PyArg_ParseTuple(args
,(char *)"OO:BGCCacheContext_set",&obj0
,&obj1
)) goto fail
;
5986 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheContext
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5987 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XFontStruct
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5988 (arg1
)->set((XFontStruct
const *)arg2
);
5990 Py_INCREF(Py_None
); resultobj
= Py_None
;
5997 static PyObject
*_wrap_BGCCacheContext_set(PyObject
*self
, PyObject
*args
) {
6002 argc
= PyObject_Length(args
);
6003 for (ii
= 0; (ii
< argc
) && (ii
< 6); ii
++) {
6004 argv
[ii
] = PyTuple_GetItem(args
,ii
);
6010 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__BGCCacheContext
, 0) == -1) {
6020 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_XFontStruct
, 0) == -1) {
6028 return _wrap_BGCCacheContext_set__SWIG_1(self
,args
);
6036 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__BGCCacheContext
, 0) == -1) {
6046 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__BColor
, 0) == -1) {
6056 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_XFontStruct
, 0) == -1) {
6065 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
6069 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
6073 _v
= (PyInt_Check(argv
[5]) || PyLong_Check(argv
[5])) ? 1 : 0;
6076 return _wrap_BGCCacheContext_set__SWIG_0(self
,args
);
6085 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'BGCCacheContext_set'");
6090 static PyObject
*_wrap_delete_BGCCacheContext(PyObject
*self
, PyObject
*args
) {
6091 PyObject
*resultobj
;
6092 otk::BGCCacheContext
*arg1
= (otk::BGCCacheContext
*) 0 ;
6093 PyObject
* obj0
= 0 ;
6095 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BGCCacheContext",&obj0
)) goto fail
;
6096 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheContext
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6099 Py_INCREF(Py_None
); resultobj
= Py_None
;
6106 static PyObject
* BGCCacheContext_swigregister(PyObject
*self
, PyObject
*args
) {
6108 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6109 SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCacheContext
, obj
);
6111 return Py_BuildValue((char *)"");
6113 static PyObject
*_wrap_BGCCacheItem_gc(PyObject
*self
, PyObject
*args
) {
6114 PyObject
*resultobj
;
6115 otk::BGCCacheItem
*arg1
= (otk::BGCCacheItem
*) 0 ;
6117 PyObject
* obj0
= 0 ;
6119 if(!PyArg_ParseTuple(args
,(char *)"O:BGCCacheItem_gc",&obj0
)) goto fail
;
6120 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheItem
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6122 GC
const &_result_ref
= ((otk::BGCCacheItem
const *)arg1
)->gc();
6123 result
= (GC
*) &_result_ref
;
6126 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_GC
, 0);
6133 static PyObject
*_wrap_delete_BGCCacheItem(PyObject
*self
, PyObject
*args
) {
6134 PyObject
*resultobj
;
6135 otk::BGCCacheItem
*arg1
= (otk::BGCCacheItem
*) 0 ;
6136 PyObject
* obj0
= 0 ;
6138 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BGCCacheItem",&obj0
)) goto fail
;
6139 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheItem
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6142 Py_INCREF(Py_None
); resultobj
= Py_None
;
6149 static PyObject
* BGCCacheItem_swigregister(PyObject
*self
, PyObject
*args
) {
6151 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6152 SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCacheItem
, obj
);
6154 return Py_BuildValue((char *)"");
6156 static PyObject
*_wrap_new_BGCCache(PyObject
*self
, PyObject
*args
) {
6157 PyObject
*resultobj
;
6159 otk::BGCCache
*result
;
6160 PyObject
* obj0
= 0 ;
6162 if(!PyArg_ParseTuple(args
,(char *)"O:new_BGCCache",&obj0
)) goto fail
;
6163 arg1
= (unsigned int) PyInt_AsLong(obj0
);
6164 if (PyErr_Occurred()) SWIG_fail
;
6165 result
= (otk::BGCCache
*)new otk::BGCCache(arg1
);
6167 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BGCCache
, 1);
6174 static PyObject
*_wrap_delete_BGCCache(PyObject
*self
, PyObject
*args
) {
6175 PyObject
*resultobj
;
6176 otk::BGCCache
*arg1
= (otk::BGCCache
*) 0 ;
6177 PyObject
* obj0
= 0 ;
6179 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BGCCache",&obj0
)) goto fail
;
6180 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCache
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6183 Py_INCREF(Py_None
); resultobj
= Py_None
;
6190 static PyObject
*_wrap_BGCCache_purge(PyObject
*self
, PyObject
*args
) {
6191 PyObject
*resultobj
;
6192 otk::BGCCache
*arg1
= (otk::BGCCache
*) 0 ;
6193 PyObject
* obj0
= 0 ;
6195 if(!PyArg_ParseTuple(args
,(char *)"O:BGCCache_purge",&obj0
)) goto fail
;
6196 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCache
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6199 Py_INCREF(Py_None
); resultobj
= Py_None
;
6206 static PyObject
*_wrap_BGCCache_find(PyObject
*self
, PyObject
*args
) {
6207 PyObject
*resultobj
;
6208 otk::BGCCache
*arg1
= (otk::BGCCache
*) 0 ;
6209 otk::BColor
*arg2
= 0 ;
6210 XFontStruct
*arg3
= (XFontStruct
*) (XFontStruct
*)0 ;
6211 int arg4
= (int) GXcopy
;
6212 int arg5
= (int) ClipByChildren
;
6213 int arg6
= (int) 0 ;
6214 otk::BGCCacheItem
*result
;
6215 PyObject
* obj0
= 0 ;
6216 PyObject
* obj1
= 0 ;
6217 PyObject
* obj2
= 0 ;
6219 if(!PyArg_ParseTuple(args
,(char *)"OO|Oiii:BGCCache_find",&obj0
,&obj1
,&obj2
,&arg4
,&arg5
,&arg6
)) goto fail
;
6220 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCache
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6221 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6223 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6226 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_XFontStruct
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6228 result
= (otk::BGCCacheItem
*)(arg1
)->find((otk::BColor
const &)*arg2
,(XFontStruct
const *)arg3
,arg4
,arg5
,arg6
);
6230 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BGCCacheItem
, 0);
6237 static PyObject
*_wrap_BGCCache_release(PyObject
*self
, PyObject
*args
) {
6238 PyObject
*resultobj
;
6239 otk::BGCCache
*arg1
= (otk::BGCCache
*) 0 ;
6240 otk::BGCCacheItem
*arg2
= (otk::BGCCacheItem
*) 0 ;
6241 PyObject
* obj0
= 0 ;
6242 PyObject
* obj1
= 0 ;
6244 if(!PyArg_ParseTuple(args
,(char *)"OO:BGCCache_release",&obj0
,&obj1
)) goto fail
;
6245 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCache
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6246 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BGCCacheItem
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6247 (arg1
)->release(arg2
);
6249 Py_INCREF(Py_None
); resultobj
= Py_None
;
6256 static PyObject
* BGCCache_swigregister(PyObject
*self
, PyObject
*args
) {
6258 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6259 SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCache
, obj
);
6261 return Py_BuildValue((char *)"");
6263 static PyObject
*_wrap_new_BPen(PyObject
*self
, PyObject
*args
) {
6264 PyObject
*resultobj
;
6265 otk::BColor
*arg1
= 0 ;
6266 XFontStruct
*arg2
= (XFontStruct
*) (XFontStruct
*)0 ;
6267 int arg3
= (int) 0 ;
6268 int arg4
= (int) GXcopy
;
6269 int arg5
= (int) ClipByChildren
;
6271 PyObject
* obj0
= 0 ;
6272 PyObject
* obj1
= 0 ;
6274 if(!PyArg_ParseTuple(args
,(char *)"O|Oiii:new_BPen",&obj0
,&obj1
,&arg3
,&arg4
,&arg5
)) goto fail
;
6275 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6277 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6280 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XFontStruct
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6282 result
= (otk::BPen
*)new otk::BPen((otk::BColor
const &)*arg1
,(XFontStruct
const *)arg2
,arg3
,arg4
,arg5
);
6284 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BPen
, 1);
6291 static PyObject
*_wrap_delete_BPen(PyObject
*self
, PyObject
*args
) {
6292 PyObject
*resultobj
;
6293 otk::BPen
*arg1
= (otk::BPen
*) 0 ;
6294 PyObject
* obj0
= 0 ;
6296 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BPen",&obj0
)) goto fail
;
6297 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BPen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6300 Py_INCREF(Py_None
); resultobj
= Py_None
;
6307 static PyObject
*_wrap_BPen_gc(PyObject
*self
, PyObject
*args
) {
6308 PyObject
*resultobj
;
6309 otk::BPen
*arg1
= (otk::BPen
*) 0 ;
6311 PyObject
* obj0
= 0 ;
6313 if(!PyArg_ParseTuple(args
,(char *)"O:BPen_gc",&obj0
)) goto fail
;
6314 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BPen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6316 GC
const &_result_ref
= ((otk::BPen
const *)arg1
)->gc();
6317 result
= (GC
*) &_result_ref
;
6320 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_GC
, 0);
6327 static PyObject
* BPen_swigregister(PyObject
*self
, PyObject
*args
) {
6329 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6330 SWIG_TypeClientData(SWIGTYPE_p_otk__BPen
, obj
);
6332 return Py_BuildValue((char *)"");
6334 static PyObject
*_wrap_new_BImage(PyObject
*self
, PyObject
*args
) {
6335 PyObject
*resultobj
;
6336 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6339 otk::BImage
*result
;
6340 PyObject
* obj0
= 0 ;
6342 if(!PyArg_ParseTuple(args
,(char *)"Oii:new_BImage",&obj0
,&arg2
,&arg3
)) goto fail
;
6343 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6344 result
= (otk::BImage
*)new otk::BImage(arg1
,arg2
,arg3
);
6346 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BImage
, 1);
6353 static PyObject
*_wrap_delete_BImage(PyObject
*self
, PyObject
*args
) {
6354 PyObject
*resultobj
;
6355 otk::BImage
*arg1
= (otk::BImage
*) 0 ;
6356 PyObject
* obj0
= 0 ;
6358 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BImage",&obj0
)) goto fail
;
6359 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImage
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6362 Py_INCREF(Py_None
); resultobj
= Py_None
;
6369 static PyObject
*_wrap_BImage_render(PyObject
*self
, PyObject
*args
) {
6370 PyObject
*resultobj
;
6371 otk::BImage
*arg1
= (otk::BImage
*) 0 ;
6372 otk::BTexture
*arg2
= 0 ;
6374 PyObject
* obj0
= 0 ;
6375 PyObject
* obj1
= 0 ;
6377 if(!PyArg_ParseTuple(args
,(char *)"OO:BImage_render",&obj0
,&obj1
)) goto fail
;
6378 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImage
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6379 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6381 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6383 result
= (arg1
)->render((otk::BTexture
const &)*arg2
);
6387 resultptr
= new Pixmap((Pixmap
&) result
);
6388 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Pixmap
, 1);
6396 static PyObject
* BImage_swigregister(PyObject
*self
, PyObject
*args
) {
6398 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6399 SWIG_TypeClientData(SWIGTYPE_p_otk__BImage
, obj
);
6401 return Py_BuildValue((char *)"");
6403 static PyObject
*_wrap_new_BImageControl(PyObject
*self
, PyObject
*args
) {
6404 PyObject
*resultobj
;
6405 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
6406 otk::ScreenInfo
*arg2
= (otk::ScreenInfo
*) 0 ;
6407 bool arg3
= (bool) False
;
6408 int arg4
= (int) 4 ;
6409 unsigned long arg5
= (unsigned long) 300000l ;
6410 unsigned long arg6
= (unsigned long) 200l ;
6411 otk::BImageControl
*result
;
6412 PyObject
* obj0
= 0 ;
6413 PyObject
* obj1
= 0 ;
6414 PyObject
* obj2
= 0 ;
6415 PyObject
* obj4
= 0 ;
6416 PyObject
* obj5
= 0 ;
6418 if(!PyArg_ParseTuple(args
,(char *)"OO|OiOO:new_BImageControl",&obj0
,&obj1
,&obj2
,&arg4
,&obj4
,&obj5
)) goto fail
;
6419 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6420 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6422 arg3
= (bool) PyInt_AsLong(obj2
);
6423 if (PyErr_Occurred()) SWIG_fail
;
6426 arg5
= (unsigned long) PyInt_AsLong(obj4
);
6427 if (PyErr_Occurred()) SWIG_fail
;
6430 arg6
= (unsigned long) PyInt_AsLong(obj5
);
6431 if (PyErr_Occurred()) SWIG_fail
;
6433 result
= (otk::BImageControl
*)new otk::BImageControl(arg1
,(otk::ScreenInfo
const *)arg2
,arg3
,arg4
,arg5
,arg6
);
6435 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BImageControl
, 1);
6442 static PyObject
*_wrap_delete_BImageControl(PyObject
*self
, PyObject
*args
) {
6443 PyObject
*resultobj
;
6444 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6445 PyObject
* obj0
= 0 ;
6447 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BImageControl",&obj0
)) goto fail
;
6448 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6451 Py_INCREF(Py_None
); resultobj
= Py_None
;
6458 static PyObject
*_wrap_BImageControl_doDither(PyObject
*self
, PyObject
*args
) {
6459 PyObject
*resultobj
;
6460 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6462 PyObject
* obj0
= 0 ;
6464 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_doDither",&obj0
)) goto fail
;
6465 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6466 result
= (bool)(arg1
)->doDither();
6468 resultobj
= PyInt_FromLong((long)result
);
6475 static PyObject
*_wrap_BImageControl_getScreenInfo(PyObject
*self
, PyObject
*args
) {
6476 PyObject
*resultobj
;
6477 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6478 otk::ScreenInfo
*result
;
6479 PyObject
* obj0
= 0 ;
6481 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getScreenInfo",&obj0
)) goto fail
;
6482 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6483 result
= (otk::ScreenInfo
*)((otk::BImageControl
const *)arg1
)->getScreenInfo();
6485 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__ScreenInfo
, 0);
6492 static PyObject
*_wrap_BImageControl_getDrawable(PyObject
*self
, PyObject
*args
) {
6493 PyObject
*resultobj
;
6494 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6496 PyObject
* obj0
= 0 ;
6498 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getDrawable",&obj0
)) goto fail
;
6499 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6500 result
= ((otk::BImageControl
const *)arg1
)->getDrawable();
6504 resultptr
= new Window((Window
&) result
);
6505 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Window
, 1);
6513 static PyObject
*_wrap_BImageControl_getVisual(PyObject
*self
, PyObject
*args
) {
6514 PyObject
*resultobj
;
6515 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6517 PyObject
* obj0
= 0 ;
6519 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getVisual",&obj0
)) goto fail
;
6520 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6521 result
= (Visual
*)(arg1
)->getVisual();
6523 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_Visual
, 0);
6530 static PyObject
*_wrap_BImageControl_getBitsPerPixel(PyObject
*self
, PyObject
*args
) {
6531 PyObject
*resultobj
;
6532 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6534 PyObject
* obj0
= 0 ;
6536 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getBitsPerPixel",&obj0
)) goto fail
;
6537 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6538 result
= (int)((otk::BImageControl
const *)arg1
)->getBitsPerPixel();
6540 resultobj
= PyInt_FromLong((long)result
);
6547 static PyObject
*_wrap_BImageControl_getDepth(PyObject
*self
, PyObject
*args
) {
6548 PyObject
*resultobj
;
6549 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6551 PyObject
* obj0
= 0 ;
6553 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getDepth",&obj0
)) goto fail
;
6554 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6555 result
= (int)((otk::BImageControl
const *)arg1
)->getDepth();
6557 resultobj
= PyInt_FromLong((long)result
);
6564 static PyObject
*_wrap_BImageControl_getColorsPerChannel(PyObject
*self
, PyObject
*args
) {
6565 PyObject
*resultobj
;
6566 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6568 PyObject
* obj0
= 0 ;
6570 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getColorsPerChannel",&obj0
)) goto fail
;
6571 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6572 result
= (int)((otk::BImageControl
const *)arg1
)->getColorsPerChannel();
6574 resultobj
= PyInt_FromLong((long)result
);
6581 static PyObject
*_wrap_BImageControl_getSqrt(PyObject
*self
, PyObject
*args
) {
6582 PyObject
*resultobj
;
6583 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6585 unsigned long result
;
6586 PyObject
* obj0
= 0 ;
6587 PyObject
* obj1
= 0 ;
6589 if(!PyArg_ParseTuple(args
,(char *)"OO:BImageControl_getSqrt",&obj0
,&obj1
)) goto fail
;
6590 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6591 arg2
= (unsigned int) PyInt_AsLong(obj1
);
6592 if (PyErr_Occurred()) SWIG_fail
;
6593 result
= (unsigned long)(arg1
)->getSqrt(arg2
);
6595 resultobj
= PyInt_FromLong((long)result
);
6602 static PyObject
*_wrap_BImageControl_renderImage(PyObject
*self
, PyObject
*args
) {
6603 PyObject
*resultobj
;
6604 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6607 otk::BTexture
*arg4
= 0 ;
6609 PyObject
* obj0
= 0 ;
6610 PyObject
* obj1
= 0 ;
6611 PyObject
* obj2
= 0 ;
6612 PyObject
* obj3
= 0 ;
6614 if(!PyArg_ParseTuple(args
,(char *)"OOOO:BImageControl_renderImage",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
6615 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6616 arg2
= (unsigned int) PyInt_AsLong(obj1
);
6617 if (PyErr_Occurred()) SWIG_fail
;
6618 arg3
= (unsigned int) PyInt_AsLong(obj2
);
6619 if (PyErr_Occurred()) SWIG_fail
;
6620 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6622 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6624 result
= (arg1
)->renderImage(arg2
,arg3
,(otk::BTexture
const &)*arg4
);
6628 resultptr
= new Pixmap((Pixmap
&) result
);
6629 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Pixmap
, 1);
6637 static PyObject
*_wrap_BImageControl_installRootColormap(PyObject
*self
, PyObject
*args
) {
6638 PyObject
*resultobj
;
6639 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6640 PyObject
* obj0
= 0 ;
6642 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_installRootColormap",&obj0
)) goto fail
;
6643 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6644 (arg1
)->installRootColormap();
6646 Py_INCREF(Py_None
); resultobj
= Py_None
;
6653 static PyObject
*_wrap_BImageControl_removeImage(PyObject
*self
, PyObject
*args
) {
6654 PyObject
*resultobj
;
6655 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6658 PyObject
* obj0
= 0 ;
6659 PyObject
* obj1
= 0 ;
6661 if(!PyArg_ParseTuple(args
,(char *)"OO:BImageControl_removeImage",&obj0
,&obj1
)) goto fail
;
6662 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6663 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Pixmap
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
6665 (arg1
)->removeImage(arg2
);
6667 Py_INCREF(Py_None
); resultobj
= Py_None
;
6674 static PyObject
*_wrap_BImageControl_getColorTables(PyObject
*self
, PyObject
*args
) {
6675 PyObject
*resultobj
;
6676 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6677 unsigned char **arg2
= (unsigned char **) 0 ;
6678 unsigned char **arg3
= (unsigned char **) 0 ;
6679 unsigned char **arg4
= (unsigned char **) 0 ;
6680 int *arg5
= (int *) 0 ;
6681 int *arg6
= (int *) 0 ;
6682 int *arg7
= (int *) 0 ;
6683 int *arg8
= (int *) 0 ;
6684 int *arg9
= (int *) 0 ;
6685 int *arg10
= (int *) 0 ;
6686 PyObject
* obj0
= 0 ;
6687 PyObject
* obj1
= 0 ;
6688 PyObject
* obj2
= 0 ;
6689 PyObject
* obj3
= 0 ;
6690 PyObject
* obj4
= 0 ;
6691 PyObject
* obj5
= 0 ;
6692 PyObject
* obj6
= 0 ;
6693 PyObject
* obj7
= 0 ;
6694 PyObject
* obj8
= 0 ;
6695 PyObject
* obj9
= 0 ;
6697 if(!PyArg_ParseTuple(args
,(char *)"OOOOOOOOOO:BImageControl_getColorTables",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
6698 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6699 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_p_unsigned_char
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6700 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_p_unsigned_char
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6701 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_p_unsigned_char
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6702 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6703 if ((SWIG_ConvertPtr(obj5
,(void **) &arg6
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6704 if ((SWIG_ConvertPtr(obj6
,(void **) &arg7
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6705 if ((SWIG_ConvertPtr(obj7
,(void **) &arg8
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6706 if ((SWIG_ConvertPtr(obj8
,(void **) &arg9
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6707 if ((SWIG_ConvertPtr(obj9
,(void **) &arg10
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6708 (arg1
)->getColorTables(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
,arg9
,arg10
);
6710 Py_INCREF(Py_None
); resultobj
= Py_None
;
6717 static PyObject
*_wrap_BImageControl_getXColorTable(PyObject
*self
, PyObject
*args
) {
6718 PyObject
*resultobj
;
6719 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6720 XColor
**arg2
= (XColor
**) 0 ;
6721 int *arg3
= (int *) 0 ;
6722 PyObject
* obj0
= 0 ;
6723 PyObject
* obj1
= 0 ;
6724 PyObject
* obj2
= 0 ;
6726 if(!PyArg_ParseTuple(args
,(char *)"OOO:BImageControl_getXColorTable",&obj0
,&obj1
,&obj2
)) goto fail
;
6727 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6728 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_p_XColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6729 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6730 (arg1
)->getXColorTable(arg2
,arg3
);
6732 Py_INCREF(Py_None
); resultobj
= Py_None
;
6739 static PyObject
*_wrap_BImageControl_getGradientBuffers(PyObject
*self
, PyObject
*args
) {
6740 PyObject
*resultobj
;
6741 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6744 unsigned int **arg4
= (unsigned int **) 0 ;
6745 unsigned int **arg5
= (unsigned int **) 0 ;
6746 PyObject
* obj0
= 0 ;
6747 PyObject
* obj1
= 0 ;
6748 PyObject
* obj2
= 0 ;
6749 PyObject
* obj3
= 0 ;
6750 PyObject
* obj4
= 0 ;
6752 if(!PyArg_ParseTuple(args
,(char *)"OOOOO:BImageControl_getGradientBuffers",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
6753 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6754 arg2
= (unsigned int) PyInt_AsLong(obj1
);
6755 if (PyErr_Occurred()) SWIG_fail
;
6756 arg3
= (unsigned int) PyInt_AsLong(obj2
);
6757 if (PyErr_Occurred()) SWIG_fail
;
6758 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_p_unsigned_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6759 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_p_unsigned_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6760 (arg1
)->getGradientBuffers(arg2
,arg3
,arg4
,arg5
);
6762 Py_INCREF(Py_None
); resultobj
= Py_None
;
6769 static PyObject
*_wrap_BImageControl_setDither(PyObject
*self
, PyObject
*args
) {
6770 PyObject
*resultobj
;
6771 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6773 PyObject
* obj0
= 0 ;
6774 PyObject
* obj1
= 0 ;
6776 if(!PyArg_ParseTuple(args
,(char *)"OO:BImageControl_setDither",&obj0
,&obj1
)) goto fail
;
6777 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6778 arg2
= (bool) PyInt_AsLong(obj1
);
6779 if (PyErr_Occurred()) SWIG_fail
;
6780 (arg1
)->setDither(arg2
);
6782 Py_INCREF(Py_None
); resultobj
= Py_None
;
6789 static PyObject
*_wrap_BImageControl_setColorsPerChannel(PyObject
*self
, PyObject
*args
) {
6790 PyObject
*resultobj
;
6791 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6793 PyObject
* obj0
= 0 ;
6795 if(!PyArg_ParseTuple(args
,(char *)"Oi:BImageControl_setColorsPerChannel",&obj0
,&arg2
)) goto fail
;
6796 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6797 (arg1
)->setColorsPerChannel(arg2
);
6799 Py_INCREF(Py_None
); resultobj
= Py_None
;
6806 static PyObject
*_wrap_BImageControl_timeout(PyObject
*self
, PyObject
*args
) {
6807 PyObject
*resultobj
;
6808 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6809 PyObject
* obj0
= 0 ;
6811 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_timeout",&obj0
)) goto fail
;
6812 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6813 otk::BImageControl::timeout(arg1
);
6815 Py_INCREF(Py_None
); resultobj
= Py_None
;
6822 static PyObject
* BImageControl_swigregister(PyObject
*self
, PyObject
*args
) {
6824 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6825 SWIG_TypeClientData(SWIGTYPE_p_otk__BImageControl
, obj
);
6827 return Py_BuildValue((char *)"");
6829 static PyObject
*_wrap_new_Point__SWIG_0(PyObject
*self
, PyObject
*args
) {
6830 PyObject
*resultobj
;
6833 if(!PyArg_ParseTuple(args
,(char *)":new_Point")) goto fail
;
6834 result
= (otk::Point
*)new otk::Point();
6836 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Point
, 1);
6843 static PyObject
*_wrap_new_Point__SWIG_1(PyObject
*self
, PyObject
*args
) {
6844 PyObject
*resultobj
;
6849 if(!PyArg_ParseTuple(args
,(char *)"ii:new_Point",&arg1
,&arg2
)) goto fail
;
6850 result
= (otk::Point
*)new otk::Point(arg1
,arg2
);
6852 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Point
, 1);
6859 static PyObject
*_wrap_new_Point(PyObject
*self
, PyObject
*args
) {
6864 argc
= PyObject_Length(args
);
6865 for (ii
= 0; (ii
< argc
) && (ii
< 2); ii
++) {
6866 argv
[ii
] = PyTuple_GetItem(args
,ii
);
6869 return _wrap_new_Point__SWIG_0(self
,args
);
6874 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
6878 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
6881 return _wrap_new_Point__SWIG_1(self
,args
);
6886 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Point'");
6891 static PyObject
*_wrap_Point_setX(PyObject
*self
, PyObject
*args
) {
6892 PyObject
*resultobj
;
6893 otk::Point
*arg1
= (otk::Point
*) 0 ;
6895 PyObject
* obj0
= 0 ;
6897 if(!PyArg_ParseTuple(args
,(char *)"Oi:Point_setX",&obj0
,&arg2
)) goto fail
;
6898 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6901 Py_INCREF(Py_None
); resultobj
= Py_None
;
6908 static PyObject
*_wrap_Point_x(PyObject
*self
, PyObject
*args
) {
6909 PyObject
*resultobj
;
6910 otk::Point
*arg1
= (otk::Point
*) 0 ;
6912 PyObject
* obj0
= 0 ;
6914 if(!PyArg_ParseTuple(args
,(char *)"O:Point_x",&obj0
)) goto fail
;
6915 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6916 result
= (int)((otk::Point
const *)arg1
)->x();
6918 resultobj
= PyInt_FromLong((long)result
);
6925 static PyObject
*_wrap_Point_setY(PyObject
*self
, PyObject
*args
) {
6926 PyObject
*resultobj
;
6927 otk::Point
*arg1
= (otk::Point
*) 0 ;
6929 PyObject
* obj0
= 0 ;
6931 if(!PyArg_ParseTuple(args
,(char *)"Oi:Point_setY",&obj0
,&arg2
)) goto fail
;
6932 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6935 Py_INCREF(Py_None
); resultobj
= Py_None
;
6942 static PyObject
*_wrap_Point_y(PyObject
*self
, PyObject
*args
) {
6943 PyObject
*resultobj
;
6944 otk::Point
*arg1
= (otk::Point
*) 0 ;
6946 PyObject
* obj0
= 0 ;
6948 if(!PyArg_ParseTuple(args
,(char *)"O:Point_y",&obj0
)) goto fail
;
6949 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6950 result
= (int)((otk::Point
const *)arg1
)->y();
6952 resultobj
= PyInt_FromLong((long)result
);
6959 static PyObject
*_wrap_Point_setPoint(PyObject
*self
, PyObject
*args
) {
6960 PyObject
*resultobj
;
6961 otk::Point
*arg1
= (otk::Point
*) 0 ;
6964 PyObject
* obj0
= 0 ;
6966 if(!PyArg_ParseTuple(args
,(char *)"Oii:Point_setPoint",&obj0
,&arg2
,&arg3
)) goto fail
;
6967 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6968 (arg1
)->setPoint(arg2
,arg3
);
6970 Py_INCREF(Py_None
); resultobj
= Py_None
;
6977 static PyObject
*_wrap_delete_Point(PyObject
*self
, PyObject
*args
) {
6978 PyObject
*resultobj
;
6979 otk::Point
*arg1
= (otk::Point
*) 0 ;
6980 PyObject
* obj0
= 0 ;
6982 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Point",&obj0
)) goto fail
;
6983 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6986 Py_INCREF(Py_None
); resultobj
= Py_None
;
6993 static PyObject
* Point_swigregister(PyObject
*self
, PyObject
*args
) {
6995 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6996 SWIG_TypeClientData(SWIGTYPE_p_otk__Point
, obj
);
6998 return Py_BuildValue((char *)"");
7000 static PyObject
*_wrap_new_OBProperty(PyObject
*self
, PyObject
*args
) {
7001 PyObject
*resultobj
;
7002 otk::OBProperty
*result
;
7004 if(!PyArg_ParseTuple(args
,(char *)":new_OBProperty")) goto fail
;
7005 result
= (otk::OBProperty
*)new otk::OBProperty();
7007 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OBProperty
, 1);
7014 static PyObject
*_wrap_delete_OBProperty(PyObject
*self
, PyObject
*args
) {
7015 PyObject
*resultobj
;
7016 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7017 PyObject
* obj0
= 0 ;
7019 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OBProperty",&obj0
)) goto fail
;
7020 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7023 Py_INCREF(Py_None
); resultobj
= Py_None
;
7030 static PyObject
*_wrap_OBProperty_set__SWIG_0(PyObject
*self
, PyObject
*args
) {
7031 PyObject
*resultobj
;
7032 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7036 unsigned long arg5
;
7038 PyObject
* obj0
= 0 ;
7039 PyObject
* obj1
= 0 ;
7040 PyObject
* obj4
= 0 ;
7042 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_set",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
7043 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7044 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7046 arg5
= (unsigned long) PyInt_AsLong(obj4
);
7047 if (PyErr_Occurred()) SWIG_fail
;
7048 ((otk::OBProperty
const *)arg1
)->set(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::Atoms
)arg4
,arg5
);
7050 Py_INCREF(Py_None
); resultobj
= Py_None
;
7057 static PyObject
*_wrap_OBProperty_set__SWIG_1(PyObject
*self
, PyObject
*args
) {
7058 PyObject
*resultobj
;
7059 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7063 unsigned long *arg5
;
7066 PyObject
* obj0
= 0 ;
7067 PyObject
* obj1
= 0 ;
7068 PyObject
* obj4
= 0 ;
7070 if(!PyArg_ParseTuple(args
,(char *)"OOiiOi:OBProperty_set",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
,&arg6
)) goto fail
;
7071 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7072 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7074 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7075 ((otk::OBProperty
const *)arg1
)->set(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::Atoms
)arg4
,arg5
,arg6
);
7077 Py_INCREF(Py_None
); resultobj
= Py_None
;
7084 static PyObject
*_wrap_OBProperty_set__SWIG_2(PyObject
*self
, PyObject
*args
) {
7085 PyObject
*resultobj
;
7086 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7090 std::string
*arg5
= 0 ;
7093 PyObject
* obj0
= 0 ;
7094 PyObject
* obj1
= 0 ;
7095 PyObject
* obj4
= 0 ;
7097 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_set",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
7098 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7099 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7102 if (PyString_Check(obj4
)) {
7103 temp5
= std::string(PyString_AsString(obj4
));
7106 SWIG_exception(SWIG_TypeError
, "string expected");
7109 ((otk::OBProperty
const *)arg1
)->set(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::StringType
)arg4
,(std::string
const &)*arg5
);
7111 Py_INCREF(Py_None
); resultobj
= Py_None
;
7118 static PyObject
*_wrap_OBProperty_set__SWIG_3(PyObject
*self
, PyObject
*args
) {
7119 PyObject
*resultobj
;
7120 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7124 otk::OBProperty::StringVect
*arg5
= 0 ;
7126 PyObject
* obj0
= 0 ;
7127 PyObject
* obj1
= 0 ;
7128 PyObject
* obj4
= 0 ;
7130 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_set",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
7131 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7132 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7134 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_otk__OBProperty__StringVect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7136 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7138 ((otk::OBProperty
const *)arg1
)->set(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::StringType
)arg4
,(otk::OBProperty::StringVect
const &)*arg5
);
7140 Py_INCREF(Py_None
); resultobj
= Py_None
;
7147 static PyObject
*_wrap_OBProperty_set(PyObject
*self
, PyObject
*args
) {
7152 argc
= PyObject_Length(args
);
7153 for (ii
= 0; (ii
< argc
) && (ii
< 6); ii
++) {
7154 argv
[ii
] = PyTuple_GetItem(args
,ii
);
7160 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7170 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7179 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7183 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7188 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty__StringVect
, 0) == -1) {
7196 return _wrap_OBProperty_set__SWIG_3(self
,args
);
7207 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7217 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7226 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7230 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7234 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
7237 return _wrap_OBProperty_set__SWIG_0(self
,args
);
7248 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7258 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7267 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7271 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7275 _v
= PyString_Check(argv
[4]) ? 1 : 0;
7278 return _wrap_OBProperty_set__SWIG_2(self
,args
);
7289 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7299 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7308 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7312 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7317 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
7326 _v
= (PyInt_Check(argv
[5]) || PyLong_Check(argv
[5])) ? 1 : 0;
7329 return _wrap_OBProperty_set__SWIG_1(self
,args
);
7338 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OBProperty_set'");
7343 static PyObject
*_wrap_OBProperty_get__SWIG_0(PyObject
*self
, PyObject
*args
) {
7344 PyObject
*resultobj
;
7345 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7349 unsigned long *arg5
= (unsigned long *) 0 ;
7350 unsigned long **arg6
= (unsigned long **) 0 ;
7353 PyObject
* obj0
= 0 ;
7354 PyObject
* obj1
= 0 ;
7355 PyObject
* obj4
= 0 ;
7356 PyObject
* obj5
= 0 ;
7358 if(!PyArg_ParseTuple(args
,(char *)"OOiiOO:OBProperty_get",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
,&obj5
)) goto fail
;
7359 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7360 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7362 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7363 if ((SWIG_ConvertPtr(obj5
,(void **) &arg6
, SWIGTYPE_p_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7364 result
= (bool)((otk::OBProperty
const *)arg1
)->get(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::Atoms
)arg4
,arg5
,arg6
);
7366 resultobj
= PyInt_FromLong((long)result
);
7373 static PyObject
*_wrap_OBProperty_get__SWIG_1(PyObject
*self
, PyObject
*args
) {
7374 PyObject
*resultobj
;
7375 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7379 unsigned long *arg5
= (unsigned long *) 0 ;
7382 PyObject
* obj0
= 0 ;
7383 PyObject
* obj1
= 0 ;
7384 PyObject
* obj4
= 0 ;
7386 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_get",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
7387 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7388 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7390 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7391 result
= (bool)((otk::OBProperty
const *)arg1
)->get(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::Atoms
)arg4
,arg5
);
7393 resultobj
= PyInt_FromLong((long)result
);
7400 static PyObject
*_wrap_OBProperty_get__SWIG_2(PyObject
*self
, PyObject
*args
) {
7401 PyObject
*resultobj
;
7402 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7406 std::string
*arg5
= (std::string
*) 0 ;
7409 PyObject
* obj0
= 0 ;
7410 PyObject
* obj1
= 0 ;
7411 PyObject
* obj4
= 0 ;
7413 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_get",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
7414 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7415 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7417 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_std__string
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7418 result
= (bool)((otk::OBProperty
const *)arg1
)->get(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::StringType
)arg4
,arg5
);
7420 resultobj
= PyInt_FromLong((long)result
);
7427 static PyObject
*_wrap_OBProperty_get__SWIG_3(PyObject
*self
, PyObject
*args
) {
7428 PyObject
*resultobj
;
7429 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7433 unsigned long *arg5
= (unsigned long *) 0 ;
7434 otk::OBProperty::StringVect
*arg6
= (otk::OBProperty::StringVect
*) 0 ;
7437 PyObject
* obj0
= 0 ;
7438 PyObject
* obj1
= 0 ;
7439 PyObject
* obj4
= 0 ;
7440 PyObject
* obj5
= 0 ;
7442 if(!PyArg_ParseTuple(args
,(char *)"OOiiOO:OBProperty_get",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
,&obj5
)) goto fail
;
7443 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7444 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7446 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7447 if ((SWIG_ConvertPtr(obj5
,(void **) &arg6
, SWIGTYPE_p_otk__OBProperty__StringVect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7448 result
= (bool)((otk::OBProperty
const *)arg1
)->get(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::StringType
)arg4
,arg5
,arg6
);
7450 resultobj
= PyInt_FromLong((long)result
);
7457 static PyObject
*_wrap_OBProperty_get(PyObject
*self
, PyObject
*args
) {
7462 argc
= PyObject_Length(args
);
7463 for (ii
= 0; (ii
< argc
) && (ii
< 6); ii
++) {
7464 argv
[ii
] = PyTuple_GetItem(args
,ii
);
7470 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7480 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7489 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7493 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7498 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
7506 return _wrap_OBProperty_get__SWIG_1(self
,args
);
7517 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7527 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7536 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7540 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7545 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_std__string
, 0) == -1) {
7553 return _wrap_OBProperty_get__SWIG_2(self
,args
);
7564 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7574 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7583 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7587 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7592 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
7602 if (SWIG_ConvertPtr(argv
[5], (void **) &ptr
, SWIGTYPE_p_p_unsigned_long
, 0) == -1) {
7610 return _wrap_OBProperty_get__SWIG_0(self
,args
);
7622 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7632 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7641 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7645 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7650 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
7660 if (SWIG_ConvertPtr(argv
[5], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty__StringVect
, 0) == -1) {
7668 return _wrap_OBProperty_get__SWIG_3(self
,args
);
7677 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OBProperty_get'");
7682 static PyObject
*_wrap_OBProperty_erase(PyObject
*self
, PyObject
*args
) {
7683 PyObject
*resultobj
;
7684 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7688 PyObject
* obj0
= 0 ;
7689 PyObject
* obj1
= 0 ;
7691 if(!PyArg_ParseTuple(args
,(char *)"OOi:OBProperty_erase",&obj0
,&obj1
,&arg3
)) goto fail
;
7692 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7693 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7695 ((otk::OBProperty
const *)arg1
)->erase(arg2
,(otk::OBProperty::Atoms
)arg3
);
7697 Py_INCREF(Py_None
); resultobj
= Py_None
;
7704 static PyObject
*_wrap_OBProperty_atom(PyObject
*self
, PyObject
*args
) {
7705 PyObject
*resultobj
;
7706 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7709 PyObject
* obj0
= 0 ;
7711 if(!PyArg_ParseTuple(args
,(char *)"Oi:OBProperty_atom",&obj0
,&arg2
)) goto fail
;
7712 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7713 result
= ((otk::OBProperty
const *)arg1
)->atom((otk::OBProperty::Atoms
)arg2
);
7717 resultptr
= new Atom((Atom
&) result
);
7718 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Atom
, 1);
7726 static PyObject
* OBProperty_swigregister(PyObject
*self
, PyObject
*args
) {
7728 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
7729 SWIG_TypeClientData(SWIGTYPE_p_otk__OBProperty
, obj
);
7731 return Py_BuildValue((char *)"");
7733 static PyObject
*_wrap_new_Rect__SWIG_0(PyObject
*self
, PyObject
*args
) {
7734 PyObject
*resultobj
;
7737 if(!PyArg_ParseTuple(args
,(char *)":new_Rect")) goto fail
;
7738 result
= (otk::Rect
*)new otk::Rect();
7740 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7747 static PyObject
*_wrap_new_Rect__SWIG_1(PyObject
*self
, PyObject
*args
) {
7748 PyObject
*resultobj
;
7755 if(!PyArg_ParseTuple(args
,(char *)"iiii:new_Rect",&arg1
,&arg2
,&arg3
,&arg4
)) goto fail
;
7756 result
= (otk::Rect
*)new otk::Rect(arg1
,arg2
,arg3
,arg4
);
7758 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7765 static PyObject
*_wrap_new_Rect__SWIG_2(PyObject
*self
, PyObject
*args
) {
7766 PyObject
*resultobj
;
7767 otk::Point
*arg1
= 0 ;
7768 otk::Point
*arg2
= 0 ;
7770 PyObject
* obj0
= 0 ;
7771 PyObject
* obj1
= 0 ;
7773 if(!PyArg_ParseTuple(args
,(char *)"OO:new_Rect",&obj0
,&obj1
)) goto fail
;
7774 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7776 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7778 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7780 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7782 result
= (otk::Rect
*)new otk::Rect((otk::Point
const &)*arg1
,(otk::Point
const &)*arg2
);
7784 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7791 static PyObject
*_wrap_new_Rect__SWIG_3(PyObject
*self
, PyObject
*args
) {
7792 PyObject
*resultobj
;
7793 otk::Rect
*arg1
= 0 ;
7795 PyObject
* obj0
= 0 ;
7797 if(!PyArg_ParseTuple(args
,(char *)"O:new_Rect",&obj0
)) goto fail
;
7798 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7800 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7802 result
= (otk::Rect
*)new otk::Rect((otk::Rect
const &)*arg1
);
7804 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7811 static PyObject
*_wrap_new_Rect__SWIG_4(PyObject
*self
, PyObject
*args
) {
7812 PyObject
*resultobj
;
7813 XRectangle
*arg1
= 0 ;
7815 PyObject
* obj0
= 0 ;
7817 if(!PyArg_ParseTuple(args
,(char *)"O:new_Rect",&obj0
)) goto fail
;
7818 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_XRectangle
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7820 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7822 result
= (otk::Rect
*)new otk::Rect((XRectangle
const &)*arg1
);
7824 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7831 static PyObject
*_wrap_new_Rect(PyObject
*self
, PyObject
*args
) {
7836 argc
= PyObject_Length(args
);
7837 for (ii
= 0; (ii
< argc
) && (ii
< 4); ii
++) {
7838 argv
[ii
] = PyTuple_GetItem(args
,ii
);
7841 return _wrap_new_Rect__SWIG_0(self
,args
);
7847 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
7855 return _wrap_new_Rect__SWIG_3(self
,args
);
7862 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_XRectangle
, 0) == -1) {
7870 return _wrap_new_Rect__SWIG_4(self
,args
);
7877 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
7887 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
7895 return _wrap_new_Rect__SWIG_2(self
,args
);
7902 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
7906 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
7910 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7914 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7917 return _wrap_new_Rect__SWIG_1(self
,args
);
7924 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Rect'");
7929 static PyObject
*_wrap_Rect_left(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_left",&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
)->left();
7939 resultobj
= PyInt_FromLong((long)result
);
7946 static PyObject
*_wrap_Rect_top(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_top",&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
)->top();
7956 resultobj
= PyInt_FromLong((long)result
);
7963 static PyObject
*_wrap_Rect_right(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_right",&obj0
)) goto fail
;
7970 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7971 result
= (int)((otk::Rect
const *)arg1
)->right();
7973 resultobj
= PyInt_FromLong((long)result
);
7980 static PyObject
*_wrap_Rect_bottom(PyObject
*self
, PyObject
*args
) {
7981 PyObject
*resultobj
;
7982 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
7984 PyObject
* obj0
= 0 ;
7986 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_bottom",&obj0
)) goto fail
;
7987 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7988 result
= (int)((otk::Rect
const *)arg1
)->bottom();
7990 resultobj
= PyInt_FromLong((long)result
);
7997 static PyObject
*_wrap_Rect_x(PyObject
*self
, PyObject
*args
) {
7998 PyObject
*resultobj
;
7999 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8001 PyObject
* obj0
= 0 ;
8003 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_x",&obj0
)) goto fail
;
8004 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8005 result
= (int)((otk::Rect
const *)arg1
)->x();
8007 resultobj
= PyInt_FromLong((long)result
);
8014 static PyObject
*_wrap_Rect_y(PyObject
*self
, PyObject
*args
) {
8015 PyObject
*resultobj
;
8016 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8018 PyObject
* obj0
= 0 ;
8020 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_y",&obj0
)) goto fail
;
8021 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8022 result
= (int)((otk::Rect
const *)arg1
)->y();
8024 resultobj
= PyInt_FromLong((long)result
);
8031 static PyObject
*_wrap_Rect_location(PyObject
*self
, PyObject
*args
) {
8032 PyObject
*resultobj
;
8033 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8035 PyObject
* obj0
= 0 ;
8037 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_location",&obj0
)) goto fail
;
8038 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8039 result
= ((otk::Rect
const *)arg1
)->location();
8042 otk::Point
* resultptr
;
8043 resultptr
= new otk::Point((otk::Point
&) result
);
8044 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__Point
, 1);
8052 static PyObject
*_wrap_Rect_setX(PyObject
*self
, PyObject
*args
) {
8053 PyObject
*resultobj
;
8054 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8056 PyObject
* obj0
= 0 ;
8058 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setX",&obj0
,&arg2
)) goto fail
;
8059 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8062 Py_INCREF(Py_None
); resultobj
= Py_None
;
8069 static PyObject
*_wrap_Rect_setY(PyObject
*self
, PyObject
*args
) {
8070 PyObject
*resultobj
;
8071 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8073 PyObject
* obj0
= 0 ;
8075 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setY",&obj0
,&arg2
)) goto fail
;
8076 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8079 Py_INCREF(Py_None
); resultobj
= Py_None
;
8086 static PyObject
*_wrap_Rect_setPos__SWIG_0(PyObject
*self
, PyObject
*args
) {
8087 PyObject
*resultobj
;
8088 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8091 PyObject
* obj0
= 0 ;
8093 if(!PyArg_ParseTuple(args
,(char *)"Oii:Rect_setPos",&obj0
,&arg2
,&arg3
)) goto fail
;
8094 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8095 (arg1
)->setPos(arg2
,arg3
);
8097 Py_INCREF(Py_None
); resultobj
= Py_None
;
8104 static PyObject
*_wrap_Rect_setPos__SWIG_1(PyObject
*self
, PyObject
*args
) {
8105 PyObject
*resultobj
;
8106 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8107 otk::Point
*arg2
= 0 ;
8108 PyObject
* obj0
= 0 ;
8109 PyObject
* obj1
= 0 ;
8111 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_setPos",&obj0
,&obj1
)) goto fail
;
8112 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8113 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8115 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8117 (arg1
)->setPos((otk::Point
const &)*arg2
);
8119 Py_INCREF(Py_None
); resultobj
= Py_None
;
8126 static PyObject
*_wrap_Rect_setPos(PyObject
*self
, PyObject
*args
) {
8131 argc
= PyObject_Length(args
);
8132 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
8133 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8139 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8149 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8157 return _wrap_Rect_setPos__SWIG_1(self
,args
);
8165 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8174 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8178 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8181 return _wrap_Rect_setPos__SWIG_0(self
,args
);
8187 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setPos'");
8192 static PyObject
*_wrap_Rect_width(PyObject
*self
, PyObject
*args
) {
8193 PyObject
*resultobj
;
8194 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8196 PyObject
* obj0
= 0 ;
8198 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_width",&obj0
)) goto fail
;
8199 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8200 result
= (int)((otk::Rect
const *)arg1
)->width();
8202 resultobj
= PyInt_FromLong((long)result
);
8209 static PyObject
*_wrap_Rect_height(PyObject
*self
, PyObject
*args
) {
8210 PyObject
*resultobj
;
8211 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8213 PyObject
* obj0
= 0 ;
8215 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_height",&obj0
)) goto fail
;
8216 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8217 result
= (int)((otk::Rect
const *)arg1
)->height();
8219 resultobj
= PyInt_FromLong((long)result
);
8226 static PyObject
*_wrap_Rect_size(PyObject
*self
, PyObject
*args
) {
8227 PyObject
*resultobj
;
8228 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8230 PyObject
* obj0
= 0 ;
8232 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_size",&obj0
)) goto fail
;
8233 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8234 result
= ((otk::Rect
const *)arg1
)->size();
8237 otk::Point
* resultptr
;
8238 resultptr
= new otk::Point((otk::Point
&) result
);
8239 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__Point
, 1);
8247 static PyObject
*_wrap_Rect_setWidth(PyObject
*self
, PyObject
*args
) {
8248 PyObject
*resultobj
;
8249 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8251 PyObject
* obj0
= 0 ;
8253 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setWidth",&obj0
,&arg2
)) goto fail
;
8254 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8255 (arg1
)->setWidth(arg2
);
8257 Py_INCREF(Py_None
); resultobj
= Py_None
;
8264 static PyObject
*_wrap_Rect_setHeight(PyObject
*self
, PyObject
*args
) {
8265 PyObject
*resultobj
;
8266 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8268 PyObject
* obj0
= 0 ;
8270 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setHeight",&obj0
,&arg2
)) goto fail
;
8271 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8272 (arg1
)->setHeight(arg2
);
8274 Py_INCREF(Py_None
); resultobj
= Py_None
;
8281 static PyObject
*_wrap_Rect_setSize__SWIG_0(PyObject
*self
, PyObject
*args
) {
8282 PyObject
*resultobj
;
8283 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8286 PyObject
* obj0
= 0 ;
8288 if(!PyArg_ParseTuple(args
,(char *)"Oii:Rect_setSize",&obj0
,&arg2
,&arg3
)) goto fail
;
8289 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8290 (arg1
)->setSize(arg2
,arg3
);
8292 Py_INCREF(Py_None
); resultobj
= Py_None
;
8299 static PyObject
*_wrap_Rect_setSize__SWIG_1(PyObject
*self
, PyObject
*args
) {
8300 PyObject
*resultobj
;
8301 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8302 otk::Point
*arg2
= 0 ;
8303 PyObject
* obj0
= 0 ;
8304 PyObject
* obj1
= 0 ;
8306 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_setSize",&obj0
,&obj1
)) goto fail
;
8307 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8308 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8310 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8312 (arg1
)->setSize((otk::Point
const &)*arg2
);
8314 Py_INCREF(Py_None
); resultobj
= Py_None
;
8321 static PyObject
*_wrap_Rect_setSize(PyObject
*self
, PyObject
*args
) {
8326 argc
= PyObject_Length(args
);
8327 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
8328 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8334 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8344 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8352 return _wrap_Rect_setSize__SWIG_1(self
,args
);
8360 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8369 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8373 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8376 return _wrap_Rect_setSize__SWIG_0(self
,args
);
8382 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setSize'");
8387 static PyObject
*_wrap_Rect_setRect__SWIG_0(PyObject
*self
, PyObject
*args
) {
8388 PyObject
*resultobj
;
8389 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8394 PyObject
* obj0
= 0 ;
8396 if(!PyArg_ParseTuple(args
,(char *)"Oiiii:Rect_setRect",&obj0
,&arg2
,&arg3
,&arg4
,&arg5
)) goto fail
;
8397 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8398 (arg1
)->setRect(arg2
,arg3
,arg4
,arg5
);
8400 Py_INCREF(Py_None
); resultobj
= Py_None
;
8407 static PyObject
*_wrap_Rect_setRect__SWIG_1(PyObject
*self
, PyObject
*args
) {
8408 PyObject
*resultobj
;
8409 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8410 otk::Point
*arg2
= 0 ;
8411 otk::Point
*arg3
= 0 ;
8412 PyObject
* obj0
= 0 ;
8413 PyObject
* obj1
= 0 ;
8414 PyObject
* obj2
= 0 ;
8416 if(!PyArg_ParseTuple(args
,(char *)"OOO:Rect_setRect",&obj0
,&obj1
,&obj2
)) goto fail
;
8417 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8418 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8420 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8422 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8424 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8426 (arg1
)->setRect((otk::Point
const &)*arg2
,(otk::Point
const &)*arg3
);
8428 Py_INCREF(Py_None
); resultobj
= Py_None
;
8435 static PyObject
*_wrap_Rect_setRect(PyObject
*self
, PyObject
*args
) {
8440 argc
= PyObject_Length(args
);
8441 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
8442 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8448 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8458 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8468 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8476 return _wrap_Rect_setRect__SWIG_1(self
,args
);
8485 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8494 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8498 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8502 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
8506 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
8509 return _wrap_Rect_setRect__SWIG_0(self
,args
);
8517 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setRect'");
8522 static PyObject
*_wrap_Rect_setCoords__SWIG_0(PyObject
*self
, PyObject
*args
) {
8523 PyObject
*resultobj
;
8524 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8529 PyObject
* obj0
= 0 ;
8531 if(!PyArg_ParseTuple(args
,(char *)"Oiiii:Rect_setCoords",&obj0
,&arg2
,&arg3
,&arg4
,&arg5
)) goto fail
;
8532 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8533 (arg1
)->setCoords(arg2
,arg3
,arg4
,arg5
);
8535 Py_INCREF(Py_None
); resultobj
= Py_None
;
8542 static PyObject
*_wrap_Rect_setCoords__SWIG_1(PyObject
*self
, PyObject
*args
) {
8543 PyObject
*resultobj
;
8544 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8545 otk::Point
*arg2
= 0 ;
8546 otk::Point
*arg3
= 0 ;
8547 PyObject
* obj0
= 0 ;
8548 PyObject
* obj1
= 0 ;
8549 PyObject
* obj2
= 0 ;
8551 if(!PyArg_ParseTuple(args
,(char *)"OOO:Rect_setCoords",&obj0
,&obj1
,&obj2
)) goto fail
;
8552 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8553 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8555 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8557 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8559 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8561 (arg1
)->setCoords((otk::Point
const &)*arg2
,(otk::Point
const &)*arg3
);
8563 Py_INCREF(Py_None
); resultobj
= Py_None
;
8570 static PyObject
*_wrap_Rect_setCoords(PyObject
*self
, PyObject
*args
) {
8575 argc
= PyObject_Length(args
);
8576 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
8577 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8583 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8593 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8603 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8611 return _wrap_Rect_setCoords__SWIG_1(self
,args
);
8620 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8629 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8633 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8637 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
8641 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
8644 return _wrap_Rect_setCoords__SWIG_0(self
,args
);
8652 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setCoords'");
8657 static PyObject
*_wrap_Rect_equals(PyObject
*self
, PyObject
*args
) {
8658 PyObject
*resultobj
;
8659 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8660 otk::Rect
*arg2
= 0 ;
8662 PyObject
* obj0
= 0 ;
8663 PyObject
* obj1
= 0 ;
8665 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_equals",&obj0
,&obj1
)) goto fail
;
8666 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8667 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8669 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8671 result
= (bool)(arg1
)->operator ==((otk::Rect
const &)*arg2
);
8673 resultobj
= PyInt_FromLong((long)result
);
8680 static PyObject
*_wrap_Rect_valid(PyObject
*self
, PyObject
*args
) {
8681 PyObject
*resultobj
;
8682 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8684 PyObject
* obj0
= 0 ;
8686 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_valid",&obj0
)) goto fail
;
8687 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8688 result
= (bool)((otk::Rect
const *)arg1
)->valid();
8690 resultobj
= PyInt_FromLong((long)result
);
8697 static PyObject
*_wrap_Rect_intersects(PyObject
*self
, PyObject
*args
) {
8698 PyObject
*resultobj
;
8699 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8700 otk::Rect
*arg2
= 0 ;
8702 PyObject
* obj0
= 0 ;
8703 PyObject
* obj1
= 0 ;
8705 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_intersects",&obj0
,&obj1
)) goto fail
;
8706 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8707 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8709 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8711 result
= (bool)((otk::Rect
const *)arg1
)->intersects((otk::Rect
const &)*arg2
);
8713 resultobj
= PyInt_FromLong((long)result
);
8720 static PyObject
*_wrap_Rect_contains__SWIG_0(PyObject
*self
, PyObject
*args
) {
8721 PyObject
*resultobj
;
8722 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8726 PyObject
* obj0
= 0 ;
8728 if(!PyArg_ParseTuple(args
,(char *)"Oii:Rect_contains",&obj0
,&arg2
,&arg3
)) goto fail
;
8729 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8730 result
= (bool)((otk::Rect
const *)arg1
)->contains(arg2
,arg3
);
8732 resultobj
= PyInt_FromLong((long)result
);
8739 static PyObject
*_wrap_Rect_contains__SWIG_1(PyObject
*self
, PyObject
*args
) {
8740 PyObject
*resultobj
;
8741 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8742 otk::Point
*arg2
= 0 ;
8744 PyObject
* obj0
= 0 ;
8745 PyObject
* obj1
= 0 ;
8747 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_contains",&obj0
,&obj1
)) goto fail
;
8748 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8749 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8751 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8753 result
= (bool)((otk::Rect
const *)arg1
)->contains((otk::Point
const &)*arg2
);
8755 resultobj
= PyInt_FromLong((long)result
);
8762 static PyObject
*_wrap_Rect_contains__SWIG_2(PyObject
*self
, PyObject
*args
) {
8763 PyObject
*resultobj
;
8764 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8765 otk::Rect
*arg2
= 0 ;
8767 PyObject
* obj0
= 0 ;
8768 PyObject
* obj1
= 0 ;
8770 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_contains",&obj0
,&obj1
)) goto fail
;
8771 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8772 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8774 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8776 result
= (bool)((otk::Rect
const *)arg1
)->contains((otk::Rect
const &)*arg2
);
8778 resultobj
= PyInt_FromLong((long)result
);
8785 static PyObject
*_wrap_Rect_contains(PyObject
*self
, PyObject
*args
) {
8790 argc
= PyObject_Length(args
);
8791 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
8792 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8798 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8808 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8816 return _wrap_Rect_contains__SWIG_1(self
,args
);
8824 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8834 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8842 return _wrap_Rect_contains__SWIG_2(self
,args
);
8850 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8859 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8863 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8866 return _wrap_Rect_contains__SWIG_0(self
,args
);
8872 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_contains'");
8877 static PyObject
*_wrap_delete_Rect(PyObject
*self
, PyObject
*args
) {
8878 PyObject
*resultobj
;
8879 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8880 PyObject
* obj0
= 0 ;
8882 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Rect",&obj0
)) goto fail
;
8883 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8886 Py_INCREF(Py_None
); resultobj
= Py_None
;
8893 static PyObject
* Rect_swigregister(PyObject
*self
, PyObject
*args
) {
8895 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
8896 SWIG_TypeClientData(SWIGTYPE_p_otk__Rect
, obj
);
8898 return Py_BuildValue((char *)"");
8900 static PyObject
*_wrap_new_ScreenInfo(PyObject
*self
, PyObject
*args
) {
8901 PyObject
*resultobj
;
8903 otk::ScreenInfo
*result
;
8904 PyObject
* obj0
= 0 ;
8906 if(!PyArg_ParseTuple(args
,(char *)"O:new_ScreenInfo",&obj0
)) goto fail
;
8907 arg1
= (unsigned int) PyInt_AsLong(obj0
);
8908 if (PyErr_Occurred()) SWIG_fail
;
8909 result
= (otk::ScreenInfo
*)new otk::ScreenInfo(arg1
);
8911 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__ScreenInfo
, 1);
8918 static PyObject
*_wrap_ScreenInfo_visual(PyObject
*self
, PyObject
*args
) {
8919 PyObject
*resultobj
;
8920 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8922 PyObject
* obj0
= 0 ;
8924 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_visual",&obj0
)) goto fail
;
8925 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8926 result
= (Visual
*)((otk::ScreenInfo
const *)arg1
)->visual();
8928 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_Visual
, 0);
8935 static PyObject
*_wrap_ScreenInfo_rootWindow(PyObject
*self
, PyObject
*args
) {
8936 PyObject
*resultobj
;
8937 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8939 PyObject
* obj0
= 0 ;
8941 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_rootWindow",&obj0
)) goto fail
;
8942 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8943 result
= ((otk::ScreenInfo
const *)arg1
)->rootWindow();
8947 resultptr
= new Window((Window
&) result
);
8948 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Window
, 1);
8956 static PyObject
*_wrap_ScreenInfo_colormap(PyObject
*self
, PyObject
*args
) {
8957 PyObject
*resultobj
;
8958 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8960 PyObject
* obj0
= 0 ;
8962 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_colormap",&obj0
)) goto fail
;
8963 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8964 result
= ((otk::ScreenInfo
const *)arg1
)->colormap();
8967 Colormap
* resultptr
;
8968 resultptr
= new Colormap((Colormap
&) result
);
8969 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Colormap
, 1);
8977 static PyObject
*_wrap_ScreenInfo_depth(PyObject
*self
, PyObject
*args
) {
8978 PyObject
*resultobj
;
8979 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8981 PyObject
* obj0
= 0 ;
8983 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_depth",&obj0
)) goto fail
;
8984 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8985 result
= (int)((otk::ScreenInfo
const *)arg1
)->depth();
8987 resultobj
= PyInt_FromLong((long)result
);
8994 static PyObject
*_wrap_ScreenInfo_screen(PyObject
*self
, PyObject
*args
) {
8995 PyObject
*resultobj
;
8996 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8997 unsigned int result
;
8998 PyObject
* obj0
= 0 ;
9000 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_screen",&obj0
)) goto fail
;
9001 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9002 result
= (unsigned int)((otk::ScreenInfo
const *)arg1
)->screen();
9004 resultobj
= PyInt_FromLong((long)result
);
9011 static PyObject
*_wrap_ScreenInfo_rect(PyObject
*self
, PyObject
*args
) {
9012 PyObject
*resultobj
;
9013 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
9015 PyObject
* obj0
= 0 ;
9017 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_rect",&obj0
)) goto fail
;
9018 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9020 otk::Rect
const &_result_ref
= ((otk::ScreenInfo
const *)arg1
)->rect();
9021 result
= (otk::Rect
*) &_result_ref
;
9024 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 0);
9031 static PyObject
*_wrap_ScreenInfo_width(PyObject
*self
, PyObject
*args
) {
9032 PyObject
*resultobj
;
9033 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
9034 unsigned int result
;
9035 PyObject
* obj0
= 0 ;
9037 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_width",&obj0
)) goto fail
;
9038 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9039 result
= (unsigned int)((otk::ScreenInfo
const *)arg1
)->width();
9041 resultobj
= PyInt_FromLong((long)result
);
9048 static PyObject
*_wrap_ScreenInfo_height(PyObject
*self
, PyObject
*args
) {
9049 PyObject
*resultobj
;
9050 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
9051 unsigned int result
;
9052 PyObject
* obj0
= 0 ;
9054 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_height",&obj0
)) goto fail
;
9055 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9056 result
= (unsigned int)((otk::ScreenInfo
const *)arg1
)->height();
9058 resultobj
= PyInt_FromLong((long)result
);
9065 static PyObject
*_wrap_ScreenInfo_displayString(PyObject
*self
, PyObject
*args
) {
9066 PyObject
*resultobj
;
9067 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
9068 std::string
*result
;
9069 PyObject
* obj0
= 0 ;
9071 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_displayString",&obj0
)) goto fail
;
9072 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9074 std::string
const &_result_ref
= ((otk::ScreenInfo
const *)arg1
)->displayString();
9075 result
= (std::string
*) &_result_ref
;
9079 resultobj
= PyString_FromString(result
->c_str());
9087 static PyObject
*_wrap_delete_ScreenInfo(PyObject
*self
, PyObject
*args
) {
9088 PyObject
*resultobj
;
9089 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
9090 PyObject
* obj0
= 0 ;
9092 if(!PyArg_ParseTuple(args
,(char *)"O:delete_ScreenInfo",&obj0
)) goto fail
;
9093 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9096 Py_INCREF(Py_None
); resultobj
= Py_None
;
9103 static PyObject
* ScreenInfo_swigregister(PyObject
*self
, PyObject
*args
) {
9105 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
9106 SWIG_TypeClientData(SWIGTYPE_p_otk__ScreenInfo
, obj
);
9108 return Py_BuildValue((char *)"");
9110 static PyObject
*_wrap_Strut_top_set(PyObject
*self
, PyObject
*args
) {
9111 PyObject
*resultobj
;
9112 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9114 PyObject
* obj0
= 0 ;
9115 PyObject
* obj1
= 0 ;
9117 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_top_set",&obj0
,&obj1
)) goto fail
;
9118 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9119 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9120 if (PyErr_Occurred()) SWIG_fail
;
9121 if (arg1
) (arg1
)->top
= arg2
;
9123 Py_INCREF(Py_None
); resultobj
= Py_None
;
9130 static PyObject
*_wrap_Strut_top_get(PyObject
*self
, PyObject
*args
) {
9131 PyObject
*resultobj
;
9132 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9133 unsigned int result
;
9134 PyObject
* obj0
= 0 ;
9136 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_top_get",&obj0
)) goto fail
;
9137 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9138 result
= (unsigned int) ((arg1
)->top
);
9140 resultobj
= PyInt_FromLong((long)result
);
9147 static PyObject
*_wrap_Strut_bottom_set(PyObject
*self
, PyObject
*args
) {
9148 PyObject
*resultobj
;
9149 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9151 PyObject
* obj0
= 0 ;
9152 PyObject
* obj1
= 0 ;
9154 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_bottom_set",&obj0
,&obj1
)) goto fail
;
9155 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9156 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9157 if (PyErr_Occurred()) SWIG_fail
;
9158 if (arg1
) (arg1
)->bottom
= arg2
;
9160 Py_INCREF(Py_None
); resultobj
= Py_None
;
9167 static PyObject
*_wrap_Strut_bottom_get(PyObject
*self
, PyObject
*args
) {
9168 PyObject
*resultobj
;
9169 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9170 unsigned int result
;
9171 PyObject
* obj0
= 0 ;
9173 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_bottom_get",&obj0
)) goto fail
;
9174 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9175 result
= (unsigned int) ((arg1
)->bottom
);
9177 resultobj
= PyInt_FromLong((long)result
);
9184 static PyObject
*_wrap_Strut_left_set(PyObject
*self
, PyObject
*args
) {
9185 PyObject
*resultobj
;
9186 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9188 PyObject
* obj0
= 0 ;
9189 PyObject
* obj1
= 0 ;
9191 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_left_set",&obj0
,&obj1
)) goto fail
;
9192 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9193 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9194 if (PyErr_Occurred()) SWIG_fail
;
9195 if (arg1
) (arg1
)->left
= arg2
;
9197 Py_INCREF(Py_None
); resultobj
= Py_None
;
9204 static PyObject
*_wrap_Strut_left_get(PyObject
*self
, PyObject
*args
) {
9205 PyObject
*resultobj
;
9206 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9207 unsigned int result
;
9208 PyObject
* obj0
= 0 ;
9210 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_left_get",&obj0
)) goto fail
;
9211 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9212 result
= (unsigned int) ((arg1
)->left
);
9214 resultobj
= PyInt_FromLong((long)result
);
9221 static PyObject
*_wrap_Strut_right_set(PyObject
*self
, PyObject
*args
) {
9222 PyObject
*resultobj
;
9223 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9225 PyObject
* obj0
= 0 ;
9226 PyObject
* obj1
= 0 ;
9228 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_right_set",&obj0
,&obj1
)) goto fail
;
9229 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9230 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9231 if (PyErr_Occurred()) SWIG_fail
;
9232 if (arg1
) (arg1
)->right
= arg2
;
9234 Py_INCREF(Py_None
); resultobj
= Py_None
;
9241 static PyObject
*_wrap_Strut_right_get(PyObject
*self
, PyObject
*args
) {
9242 PyObject
*resultobj
;
9243 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9244 unsigned int result
;
9245 PyObject
* obj0
= 0 ;
9247 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_right_get",&obj0
)) goto fail
;
9248 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9249 result
= (unsigned int) ((arg1
)->right
);
9251 resultobj
= PyInt_FromLong((long)result
);
9258 static PyObject
*_wrap_new_Strut__SWIG_0(PyObject
*self
, PyObject
*args
) {
9259 PyObject
*resultobj
;
9262 if(!PyArg_ParseTuple(args
,(char *)":new_Strut")) goto fail
;
9263 result
= (otk::Strut
*)new otk::Strut();
9265 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Strut
, 1);
9272 static PyObject
*_wrap_new_Strut__SWIG_1(PyObject
*self
, PyObject
*args
) {
9273 PyObject
*resultobj
;
9280 if(!PyArg_ParseTuple(args
,(char *)"iiii:new_Strut",&arg1
,&arg2
,&arg3
,&arg4
)) goto fail
;
9281 result
= (otk::Strut
*)new otk::Strut(arg1
,arg2
,arg3
,arg4
);
9283 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Strut
, 1);
9290 static PyObject
*_wrap_new_Strut(PyObject
*self
, PyObject
*args
) {
9295 argc
= PyObject_Length(args
);
9296 for (ii
= 0; (ii
< argc
) && (ii
< 4); ii
++) {
9297 argv
[ii
] = PyTuple_GetItem(args
,ii
);
9300 return _wrap_new_Strut__SWIG_0(self
,args
);
9305 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
9309 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
9313 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
9317 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
9320 return _wrap_new_Strut__SWIG_1(self
,args
);
9327 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Strut'");
9332 static PyObject
*_wrap_delete_Strut(PyObject
*self
, PyObject
*args
) {
9333 PyObject
*resultobj
;
9334 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9335 PyObject
* obj0
= 0 ;
9337 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Strut",&obj0
)) goto fail
;
9338 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9341 Py_INCREF(Py_None
); resultobj
= Py_None
;
9348 static PyObject
* Strut_swigregister(PyObject
*self
, PyObject
*args
) {
9350 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
9351 SWIG_TypeClientData(SWIGTYPE_p_otk__Strut
, obj
);
9353 return Py_BuildValue((char *)"");
9355 static PyObject
*_wrap_PixmapMask_mask_set(PyObject
*self
, PyObject
*args
) {
9356 PyObject
*resultobj
;
9357 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9360 PyObject
* obj0
= 0 ;
9361 PyObject
* obj1
= 0 ;
9363 if(!PyArg_ParseTuple(args
,(char *)"OO:PixmapMask_mask_set",&obj0
,&obj1
)) goto fail
;
9364 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9365 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Pixmap
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
9367 if (arg1
) (arg1
)->mask
= arg2
;
9369 Py_INCREF(Py_None
); resultobj
= Py_None
;
9376 static PyObject
*_wrap_PixmapMask_mask_get(PyObject
*self
, PyObject
*args
) {
9377 PyObject
*resultobj
;
9378 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9380 PyObject
* obj0
= 0 ;
9382 if(!PyArg_ParseTuple(args
,(char *)"O:PixmapMask_mask_get",&obj0
)) goto fail
;
9383 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9384 result
= ((arg1
)->mask
);
9388 resultptr
= new Pixmap((Pixmap
&) result
);
9389 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Pixmap
, 1);
9397 static PyObject
*_wrap_PixmapMask_w_set(PyObject
*self
, PyObject
*args
) {
9398 PyObject
*resultobj
;
9399 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9401 PyObject
* obj0
= 0 ;
9402 PyObject
* obj1
= 0 ;
9404 if(!PyArg_ParseTuple(args
,(char *)"OO:PixmapMask_w_set",&obj0
,&obj1
)) goto fail
;
9405 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9406 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9407 if (PyErr_Occurred()) SWIG_fail
;
9408 if (arg1
) (arg1
)->w
= arg2
;
9410 Py_INCREF(Py_None
); resultobj
= Py_None
;
9417 static PyObject
*_wrap_PixmapMask_w_get(PyObject
*self
, PyObject
*args
) {
9418 PyObject
*resultobj
;
9419 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9420 unsigned int result
;
9421 PyObject
* obj0
= 0 ;
9423 if(!PyArg_ParseTuple(args
,(char *)"O:PixmapMask_w_get",&obj0
)) goto fail
;
9424 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9425 result
= (unsigned int) ((arg1
)->w
);
9427 resultobj
= PyInt_FromLong((long)result
);
9434 static PyObject
*_wrap_PixmapMask_h_set(PyObject
*self
, PyObject
*args
) {
9435 PyObject
*resultobj
;
9436 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9438 PyObject
* obj0
= 0 ;
9439 PyObject
* obj1
= 0 ;
9441 if(!PyArg_ParseTuple(args
,(char *)"OO:PixmapMask_h_set",&obj0
,&obj1
)) goto fail
;
9442 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9443 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9444 if (PyErr_Occurred()) SWIG_fail
;
9445 if (arg1
) (arg1
)->h
= arg2
;
9447 Py_INCREF(Py_None
); resultobj
= Py_None
;
9454 static PyObject
*_wrap_PixmapMask_h_get(PyObject
*self
, PyObject
*args
) {
9455 PyObject
*resultobj
;
9456 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9457 unsigned int result
;
9458 PyObject
* obj0
= 0 ;
9460 if(!PyArg_ParseTuple(args
,(char *)"O:PixmapMask_h_get",&obj0
)) goto fail
;
9461 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9462 result
= (unsigned int) ((arg1
)->h
);
9464 resultobj
= PyInt_FromLong((long)result
);
9471 static PyObject
*_wrap_new_PixmapMask(PyObject
*self
, PyObject
*args
) {
9472 PyObject
*resultobj
;
9473 otk::PixmapMask
*result
;
9475 if(!PyArg_ParseTuple(args
,(char *)":new_PixmapMask")) goto fail
;
9476 result
= (otk::PixmapMask
*)new otk::PixmapMask();
9478 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 1);
9485 static PyObject
*_wrap_delete_PixmapMask(PyObject
*self
, PyObject
*args
) {
9486 PyObject
*resultobj
;
9487 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9488 PyObject
* obj0
= 0 ;
9490 if(!PyArg_ParseTuple(args
,(char *)"O:delete_PixmapMask",&obj0
)) goto fail
;
9491 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9494 Py_INCREF(Py_None
); resultobj
= Py_None
;
9501 static PyObject
* PixmapMask_swigregister(PyObject
*self
, PyObject
*args
) {
9503 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
9504 SWIG_TypeClientData(SWIGTYPE_p_otk__PixmapMask
, obj
);
9506 return Py_BuildValue((char *)"");
9508 static PyObject
*_wrap_Style_image_control_set(PyObject
*self
, PyObject
*args
) {
9509 PyObject
*resultobj
;
9510 otk::Style
*arg1
= (otk::Style
*) 0 ;
9511 otk::BImageControl
*arg2
= (otk::BImageControl
*) 0 ;
9512 PyObject
* obj0
= 0 ;
9513 PyObject
* obj1
= 0 ;
9515 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_image_control_set",&obj0
,&obj1
)) goto fail
;
9516 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9517 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
)) == -1) SWIG_fail
;
9518 if (arg1
) (arg1
)->image_control
= arg2
;
9520 Py_INCREF(Py_None
); resultobj
= Py_None
;
9527 static PyObject
*_wrap_Style_image_control_get(PyObject
*self
, PyObject
*args
) {
9528 PyObject
*resultobj
;
9529 otk::Style
*arg1
= (otk::Style
*) 0 ;
9530 otk::BImageControl
*result
;
9531 PyObject
* obj0
= 0 ;
9533 if(!PyArg_ParseTuple(args
,(char *)"O:Style_image_control_get",&obj0
)) goto fail
;
9534 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9535 result
= (otk::BImageControl
*) ((arg1
)->image_control
);
9537 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BImageControl
, 0);
9544 static PyObject
*_wrap_Style_l_text_focus_set(PyObject
*self
, PyObject
*args
) {
9545 PyObject
*resultobj
;
9546 otk::Style
*arg1
= (otk::Style
*) 0 ;
9547 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9548 PyObject
* obj0
= 0 ;
9549 PyObject
* obj1
= 0 ;
9551 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_l_text_focus_set",&obj0
,&obj1
)) goto fail
;
9552 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9553 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9554 if (arg1
) (arg1
)->l_text_focus
= *arg2
;
9556 Py_INCREF(Py_None
); resultobj
= Py_None
;
9563 static PyObject
*_wrap_Style_l_text_focus_get(PyObject
*self
, PyObject
*args
) {
9564 PyObject
*resultobj
;
9565 otk::Style
*arg1
= (otk::Style
*) 0 ;
9566 otk::BColor
*result
;
9567 PyObject
* obj0
= 0 ;
9569 if(!PyArg_ParseTuple(args
,(char *)"O:Style_l_text_focus_get",&obj0
)) goto fail
;
9570 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9571 result
= (otk::BColor
*)& ((arg1
)->l_text_focus
);
9573 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9580 static PyObject
*_wrap_Style_l_text_unfocus_set(PyObject
*self
, PyObject
*args
) {
9581 PyObject
*resultobj
;
9582 otk::Style
*arg1
= (otk::Style
*) 0 ;
9583 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9584 PyObject
* obj0
= 0 ;
9585 PyObject
* obj1
= 0 ;
9587 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_l_text_unfocus_set",&obj0
,&obj1
)) goto fail
;
9588 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9589 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9590 if (arg1
) (arg1
)->l_text_unfocus
= *arg2
;
9592 Py_INCREF(Py_None
); resultobj
= Py_None
;
9599 static PyObject
*_wrap_Style_l_text_unfocus_get(PyObject
*self
, PyObject
*args
) {
9600 PyObject
*resultobj
;
9601 otk::Style
*arg1
= (otk::Style
*) 0 ;
9602 otk::BColor
*result
;
9603 PyObject
* obj0
= 0 ;
9605 if(!PyArg_ParseTuple(args
,(char *)"O:Style_l_text_unfocus_get",&obj0
)) goto fail
;
9606 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9607 result
= (otk::BColor
*)& ((arg1
)->l_text_unfocus
);
9609 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9616 static PyObject
*_wrap_Style_b_pic_focus_set(PyObject
*self
, PyObject
*args
) {
9617 PyObject
*resultobj
;
9618 otk::Style
*arg1
= (otk::Style
*) 0 ;
9619 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9620 PyObject
* obj0
= 0 ;
9621 PyObject
* obj1
= 0 ;
9623 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_pic_focus_set",&obj0
,&obj1
)) goto fail
;
9624 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9625 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9626 if (arg1
) (arg1
)->b_pic_focus
= *arg2
;
9628 Py_INCREF(Py_None
); resultobj
= Py_None
;
9635 static PyObject
*_wrap_Style_b_pic_focus_get(PyObject
*self
, PyObject
*args
) {
9636 PyObject
*resultobj
;
9637 otk::Style
*arg1
= (otk::Style
*) 0 ;
9638 otk::BColor
*result
;
9639 PyObject
* obj0
= 0 ;
9641 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_pic_focus_get",&obj0
)) goto fail
;
9642 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9643 result
= (otk::BColor
*)& ((arg1
)->b_pic_focus
);
9645 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9652 static PyObject
*_wrap_Style_b_pic_unfocus_set(PyObject
*self
, PyObject
*args
) {
9653 PyObject
*resultobj
;
9654 otk::Style
*arg1
= (otk::Style
*) 0 ;
9655 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9656 PyObject
* obj0
= 0 ;
9657 PyObject
* obj1
= 0 ;
9659 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_pic_unfocus_set",&obj0
,&obj1
)) goto fail
;
9660 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9661 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9662 if (arg1
) (arg1
)->b_pic_unfocus
= *arg2
;
9664 Py_INCREF(Py_None
); resultobj
= Py_None
;
9671 static PyObject
*_wrap_Style_b_pic_unfocus_get(PyObject
*self
, PyObject
*args
) {
9672 PyObject
*resultobj
;
9673 otk::Style
*arg1
= (otk::Style
*) 0 ;
9674 otk::BColor
*result
;
9675 PyObject
* obj0
= 0 ;
9677 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_pic_unfocus_get",&obj0
)) goto fail
;
9678 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9679 result
= (otk::BColor
*)& ((arg1
)->b_pic_unfocus
);
9681 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9688 static PyObject
*_wrap_Style_border_color_set(PyObject
*self
, PyObject
*args
) {
9689 PyObject
*resultobj
;
9690 otk::Style
*arg1
= (otk::Style
*) 0 ;
9691 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9692 PyObject
* obj0
= 0 ;
9693 PyObject
* obj1
= 0 ;
9695 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_border_color_set",&obj0
,&obj1
)) goto fail
;
9696 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9697 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9698 if (arg1
) (arg1
)->border_color
= *arg2
;
9700 Py_INCREF(Py_None
); resultobj
= Py_None
;
9707 static PyObject
*_wrap_Style_border_color_get(PyObject
*self
, PyObject
*args
) {
9708 PyObject
*resultobj
;
9709 otk::Style
*arg1
= (otk::Style
*) 0 ;
9710 otk::BColor
*result
;
9711 PyObject
* obj0
= 0 ;
9713 if(!PyArg_ParseTuple(args
,(char *)"O:Style_border_color_get",&obj0
)) goto fail
;
9714 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9715 result
= (otk::BColor
*)& ((arg1
)->border_color
);
9717 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9724 static PyObject
*_wrap_Style_font_set(PyObject
*self
, PyObject
*args
) {
9725 PyObject
*resultobj
;
9726 otk::Style
*arg1
= (otk::Style
*) 0 ;
9727 otk::BFont
*arg2
= (otk::BFont
*) 0 ;
9728 PyObject
* obj0
= 0 ;
9729 PyObject
* obj1
= 0 ;
9731 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_font_set",&obj0
,&obj1
)) goto fail
;
9732 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9733 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
)) == -1) SWIG_fail
;
9734 if (arg1
) (arg1
)->font
= arg2
;
9736 Py_INCREF(Py_None
); resultobj
= Py_None
;
9743 static PyObject
*_wrap_Style_font_get(PyObject
*self
, PyObject
*args
) {
9744 PyObject
*resultobj
;
9745 otk::Style
*arg1
= (otk::Style
*) 0 ;
9747 PyObject
* obj0
= 0 ;
9749 if(!PyArg_ParseTuple(args
,(char *)"O:Style_font_get",&obj0
)) goto fail
;
9750 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9751 result
= (otk::BFont
*) ((arg1
)->font
);
9753 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BFont
, 0);
9760 static PyObject
*_wrap_Style_f_focus_set(PyObject
*self
, PyObject
*args
) {
9761 PyObject
*resultobj
;
9762 otk::Style
*arg1
= (otk::Style
*) 0 ;
9763 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9764 PyObject
* obj0
= 0 ;
9765 PyObject
* obj1
= 0 ;
9767 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_f_focus_set",&obj0
,&obj1
)) goto fail
;
9768 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9769 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9770 if (arg1
) (arg1
)->f_focus
= *arg2
;
9772 Py_INCREF(Py_None
); resultobj
= Py_None
;
9779 static PyObject
*_wrap_Style_f_focus_get(PyObject
*self
, PyObject
*args
) {
9780 PyObject
*resultobj
;
9781 otk::Style
*arg1
= (otk::Style
*) 0 ;
9782 otk::BTexture
*result
;
9783 PyObject
* obj0
= 0 ;
9785 if(!PyArg_ParseTuple(args
,(char *)"O:Style_f_focus_get",&obj0
)) goto fail
;
9786 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9787 result
= (otk::BTexture
*)& ((arg1
)->f_focus
);
9789 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9796 static PyObject
*_wrap_Style_f_unfocus_set(PyObject
*self
, PyObject
*args
) {
9797 PyObject
*resultobj
;
9798 otk::Style
*arg1
= (otk::Style
*) 0 ;
9799 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9800 PyObject
* obj0
= 0 ;
9801 PyObject
* obj1
= 0 ;
9803 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_f_unfocus_set",&obj0
,&obj1
)) goto fail
;
9804 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9805 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9806 if (arg1
) (arg1
)->f_unfocus
= *arg2
;
9808 Py_INCREF(Py_None
); resultobj
= Py_None
;
9815 static PyObject
*_wrap_Style_f_unfocus_get(PyObject
*self
, PyObject
*args
) {
9816 PyObject
*resultobj
;
9817 otk::Style
*arg1
= (otk::Style
*) 0 ;
9818 otk::BTexture
*result
;
9819 PyObject
* obj0
= 0 ;
9821 if(!PyArg_ParseTuple(args
,(char *)"O:Style_f_unfocus_get",&obj0
)) goto fail
;
9822 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9823 result
= (otk::BTexture
*)& ((arg1
)->f_unfocus
);
9825 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9832 static PyObject
*_wrap_Style_t_focus_set(PyObject
*self
, PyObject
*args
) {
9833 PyObject
*resultobj
;
9834 otk::Style
*arg1
= (otk::Style
*) 0 ;
9835 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9836 PyObject
* obj0
= 0 ;
9837 PyObject
* obj1
= 0 ;
9839 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_t_focus_set",&obj0
,&obj1
)) goto fail
;
9840 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9841 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9842 if (arg1
) (arg1
)->t_focus
= *arg2
;
9844 Py_INCREF(Py_None
); resultobj
= Py_None
;
9851 static PyObject
*_wrap_Style_t_focus_get(PyObject
*self
, PyObject
*args
) {
9852 PyObject
*resultobj
;
9853 otk::Style
*arg1
= (otk::Style
*) 0 ;
9854 otk::BTexture
*result
;
9855 PyObject
* obj0
= 0 ;
9857 if(!PyArg_ParseTuple(args
,(char *)"O:Style_t_focus_get",&obj0
)) goto fail
;
9858 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9859 result
= (otk::BTexture
*)& ((arg1
)->t_focus
);
9861 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9868 static PyObject
*_wrap_Style_t_unfocus_set(PyObject
*self
, PyObject
*args
) {
9869 PyObject
*resultobj
;
9870 otk::Style
*arg1
= (otk::Style
*) 0 ;
9871 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9872 PyObject
* obj0
= 0 ;
9873 PyObject
* obj1
= 0 ;
9875 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_t_unfocus_set",&obj0
,&obj1
)) goto fail
;
9876 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9877 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9878 if (arg1
) (arg1
)->t_unfocus
= *arg2
;
9880 Py_INCREF(Py_None
); resultobj
= Py_None
;
9887 static PyObject
*_wrap_Style_t_unfocus_get(PyObject
*self
, PyObject
*args
) {
9888 PyObject
*resultobj
;
9889 otk::Style
*arg1
= (otk::Style
*) 0 ;
9890 otk::BTexture
*result
;
9891 PyObject
* obj0
= 0 ;
9893 if(!PyArg_ParseTuple(args
,(char *)"O:Style_t_unfocus_get",&obj0
)) goto fail
;
9894 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9895 result
= (otk::BTexture
*)& ((arg1
)->t_unfocus
);
9897 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9904 static PyObject
*_wrap_Style_l_focus_set(PyObject
*self
, PyObject
*args
) {
9905 PyObject
*resultobj
;
9906 otk::Style
*arg1
= (otk::Style
*) 0 ;
9907 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9908 PyObject
* obj0
= 0 ;
9909 PyObject
* obj1
= 0 ;
9911 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_l_focus_set",&obj0
,&obj1
)) goto fail
;
9912 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9913 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9914 if (arg1
) (arg1
)->l_focus
= *arg2
;
9916 Py_INCREF(Py_None
); resultobj
= Py_None
;
9923 static PyObject
*_wrap_Style_l_focus_get(PyObject
*self
, PyObject
*args
) {
9924 PyObject
*resultobj
;
9925 otk::Style
*arg1
= (otk::Style
*) 0 ;
9926 otk::BTexture
*result
;
9927 PyObject
* obj0
= 0 ;
9929 if(!PyArg_ParseTuple(args
,(char *)"O:Style_l_focus_get",&obj0
)) goto fail
;
9930 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9931 result
= (otk::BTexture
*)& ((arg1
)->l_focus
);
9933 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9940 static PyObject
*_wrap_Style_l_unfocus_set(PyObject
*self
, PyObject
*args
) {
9941 PyObject
*resultobj
;
9942 otk::Style
*arg1
= (otk::Style
*) 0 ;
9943 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9944 PyObject
* obj0
= 0 ;
9945 PyObject
* obj1
= 0 ;
9947 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_l_unfocus_set",&obj0
,&obj1
)) goto fail
;
9948 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9949 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9950 if (arg1
) (arg1
)->l_unfocus
= *arg2
;
9952 Py_INCREF(Py_None
); resultobj
= Py_None
;
9959 static PyObject
*_wrap_Style_l_unfocus_get(PyObject
*self
, PyObject
*args
) {
9960 PyObject
*resultobj
;
9961 otk::Style
*arg1
= (otk::Style
*) 0 ;
9962 otk::BTexture
*result
;
9963 PyObject
* obj0
= 0 ;
9965 if(!PyArg_ParseTuple(args
,(char *)"O:Style_l_unfocus_get",&obj0
)) goto fail
;
9966 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9967 result
= (otk::BTexture
*)& ((arg1
)->l_unfocus
);
9969 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9976 static PyObject
*_wrap_Style_h_focus_set(PyObject
*self
, PyObject
*args
) {
9977 PyObject
*resultobj
;
9978 otk::Style
*arg1
= (otk::Style
*) 0 ;
9979 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9980 PyObject
* obj0
= 0 ;
9981 PyObject
* obj1
= 0 ;
9983 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_h_focus_set",&obj0
,&obj1
)) goto fail
;
9984 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9985 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9986 if (arg1
) (arg1
)->h_focus
= *arg2
;
9988 Py_INCREF(Py_None
); resultobj
= Py_None
;
9995 static PyObject
*_wrap_Style_h_focus_get(PyObject
*self
, PyObject
*args
) {
9996 PyObject
*resultobj
;
9997 otk::Style
*arg1
= (otk::Style
*) 0 ;
9998 otk::BTexture
*result
;
9999 PyObject
* obj0
= 0 ;
10001 if(!PyArg_ParseTuple(args
,(char *)"O:Style_h_focus_get",&obj0
)) goto fail
;
10002 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10003 result
= (otk::BTexture
*)& ((arg1
)->h_focus
);
10005 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10012 static PyObject
*_wrap_Style_h_unfocus_set(PyObject
*self
, PyObject
*args
) {
10013 PyObject
*resultobj
;
10014 otk::Style
*arg1
= (otk::Style
*) 0 ;
10015 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10016 PyObject
* obj0
= 0 ;
10017 PyObject
* obj1
= 0 ;
10019 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_h_unfocus_set",&obj0
,&obj1
)) goto fail
;
10020 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10021 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10022 if (arg1
) (arg1
)->h_unfocus
= *arg2
;
10024 Py_INCREF(Py_None
); resultobj
= Py_None
;
10031 static PyObject
*_wrap_Style_h_unfocus_get(PyObject
*self
, PyObject
*args
) {
10032 PyObject
*resultobj
;
10033 otk::Style
*arg1
= (otk::Style
*) 0 ;
10034 otk::BTexture
*result
;
10035 PyObject
* obj0
= 0 ;
10037 if(!PyArg_ParseTuple(args
,(char *)"O:Style_h_unfocus_get",&obj0
)) goto fail
;
10038 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10039 result
= (otk::BTexture
*)& ((arg1
)->h_unfocus
);
10041 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10048 static PyObject
*_wrap_Style_b_focus_set(PyObject
*self
, PyObject
*args
) {
10049 PyObject
*resultobj
;
10050 otk::Style
*arg1
= (otk::Style
*) 0 ;
10051 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10052 PyObject
* obj0
= 0 ;
10053 PyObject
* obj1
= 0 ;
10055 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_focus_set",&obj0
,&obj1
)) goto fail
;
10056 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10057 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10058 if (arg1
) (arg1
)->b_focus
= *arg2
;
10060 Py_INCREF(Py_None
); resultobj
= Py_None
;
10067 static PyObject
*_wrap_Style_b_focus_get(PyObject
*self
, PyObject
*args
) {
10068 PyObject
*resultobj
;
10069 otk::Style
*arg1
= (otk::Style
*) 0 ;
10070 otk::BTexture
*result
;
10071 PyObject
* obj0
= 0 ;
10073 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_focus_get",&obj0
)) goto fail
;
10074 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10075 result
= (otk::BTexture
*)& ((arg1
)->b_focus
);
10077 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10084 static PyObject
*_wrap_Style_b_unfocus_set(PyObject
*self
, PyObject
*args
) {
10085 PyObject
*resultobj
;
10086 otk::Style
*arg1
= (otk::Style
*) 0 ;
10087 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10088 PyObject
* obj0
= 0 ;
10089 PyObject
* obj1
= 0 ;
10091 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_unfocus_set",&obj0
,&obj1
)) goto fail
;
10092 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10093 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10094 if (arg1
) (arg1
)->b_unfocus
= *arg2
;
10096 Py_INCREF(Py_None
); resultobj
= Py_None
;
10103 static PyObject
*_wrap_Style_b_unfocus_get(PyObject
*self
, PyObject
*args
) {
10104 PyObject
*resultobj
;
10105 otk::Style
*arg1
= (otk::Style
*) 0 ;
10106 otk::BTexture
*result
;
10107 PyObject
* obj0
= 0 ;
10109 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_unfocus_get",&obj0
)) goto fail
;
10110 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10111 result
= (otk::BTexture
*)& ((arg1
)->b_unfocus
);
10113 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10120 static PyObject
*_wrap_Style_b_pressed_focus_set(PyObject
*self
, PyObject
*args
) {
10121 PyObject
*resultobj
;
10122 otk::Style
*arg1
= (otk::Style
*) 0 ;
10123 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10124 PyObject
* obj0
= 0 ;
10125 PyObject
* obj1
= 0 ;
10127 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_pressed_focus_set",&obj0
,&obj1
)) goto fail
;
10128 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10129 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10130 if (arg1
) (arg1
)->b_pressed_focus
= *arg2
;
10132 Py_INCREF(Py_None
); resultobj
= Py_None
;
10139 static PyObject
*_wrap_Style_b_pressed_focus_get(PyObject
*self
, PyObject
*args
) {
10140 PyObject
*resultobj
;
10141 otk::Style
*arg1
= (otk::Style
*) 0 ;
10142 otk::BTexture
*result
;
10143 PyObject
* obj0
= 0 ;
10145 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_pressed_focus_get",&obj0
)) goto fail
;
10146 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10147 result
= (otk::BTexture
*)& ((arg1
)->b_pressed_focus
);
10149 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10156 static PyObject
*_wrap_Style_b_pressed_unfocus_set(PyObject
*self
, PyObject
*args
) {
10157 PyObject
*resultobj
;
10158 otk::Style
*arg1
= (otk::Style
*) 0 ;
10159 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10160 PyObject
* obj0
= 0 ;
10161 PyObject
* obj1
= 0 ;
10163 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_pressed_unfocus_set",&obj0
,&obj1
)) goto fail
;
10164 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10165 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10166 if (arg1
) (arg1
)->b_pressed_unfocus
= *arg2
;
10168 Py_INCREF(Py_None
); resultobj
= Py_None
;
10175 static PyObject
*_wrap_Style_b_pressed_unfocus_get(PyObject
*self
, PyObject
*args
) {
10176 PyObject
*resultobj
;
10177 otk::Style
*arg1
= (otk::Style
*) 0 ;
10178 otk::BTexture
*result
;
10179 PyObject
* obj0
= 0 ;
10181 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_pressed_unfocus_get",&obj0
)) goto fail
;
10182 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10183 result
= (otk::BTexture
*)& ((arg1
)->b_pressed_unfocus
);
10185 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10192 static PyObject
*_wrap_Style_g_focus_set(PyObject
*self
, PyObject
*args
) {
10193 PyObject
*resultobj
;
10194 otk::Style
*arg1
= (otk::Style
*) 0 ;
10195 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10196 PyObject
* obj0
= 0 ;
10197 PyObject
* obj1
= 0 ;
10199 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_g_focus_set",&obj0
,&obj1
)) goto fail
;
10200 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10201 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10202 if (arg1
) (arg1
)->g_focus
= *arg2
;
10204 Py_INCREF(Py_None
); resultobj
= Py_None
;
10211 static PyObject
*_wrap_Style_g_focus_get(PyObject
*self
, PyObject
*args
) {
10212 PyObject
*resultobj
;
10213 otk::Style
*arg1
= (otk::Style
*) 0 ;
10214 otk::BTexture
*result
;
10215 PyObject
* obj0
= 0 ;
10217 if(!PyArg_ParseTuple(args
,(char *)"O:Style_g_focus_get",&obj0
)) goto fail
;
10218 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10219 result
= (otk::BTexture
*)& ((arg1
)->g_focus
);
10221 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10228 static PyObject
*_wrap_Style_g_unfocus_set(PyObject
*self
, PyObject
*args
) {
10229 PyObject
*resultobj
;
10230 otk::Style
*arg1
= (otk::Style
*) 0 ;
10231 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10232 PyObject
* obj0
= 0 ;
10233 PyObject
* obj1
= 0 ;
10235 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_g_unfocus_set",&obj0
,&obj1
)) goto fail
;
10236 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10237 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10238 if (arg1
) (arg1
)->g_unfocus
= *arg2
;
10240 Py_INCREF(Py_None
); resultobj
= Py_None
;
10247 static PyObject
*_wrap_Style_g_unfocus_get(PyObject
*self
, PyObject
*args
) {
10248 PyObject
*resultobj
;
10249 otk::Style
*arg1
= (otk::Style
*) 0 ;
10250 otk::BTexture
*result
;
10251 PyObject
* obj0
= 0 ;
10253 if(!PyArg_ParseTuple(args
,(char *)"O:Style_g_unfocus_get",&obj0
)) goto fail
;
10254 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10255 result
= (otk::BTexture
*)& ((arg1
)->g_unfocus
);
10257 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10264 static PyObject
*_wrap_Style_close_button_set(PyObject
*self
, PyObject
*args
) {
10265 PyObject
*resultobj
;
10266 otk::Style
*arg1
= (otk::Style
*) 0 ;
10267 otk::PixmapMask
*arg2
= (otk::PixmapMask
*) 0 ;
10268 PyObject
* obj0
= 0 ;
10269 PyObject
* obj1
= 0 ;
10271 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_close_button_set",&obj0
,&obj1
)) goto fail
;
10272 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10273 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10274 if (arg1
) (arg1
)->close_button
= *arg2
;
10276 Py_INCREF(Py_None
); resultobj
= Py_None
;
10283 static PyObject
*_wrap_Style_close_button_get(PyObject
*self
, PyObject
*args
) {
10284 PyObject
*resultobj
;
10285 otk::Style
*arg1
= (otk::Style
*) 0 ;
10286 otk::PixmapMask
*result
;
10287 PyObject
* obj0
= 0 ;
10289 if(!PyArg_ParseTuple(args
,(char *)"O:Style_close_button_get",&obj0
)) goto fail
;
10290 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10291 result
= (otk::PixmapMask
*)& ((arg1
)->close_button
);
10293 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
10300 static PyObject
*_wrap_Style_max_button_set(PyObject
*self
, PyObject
*args
) {
10301 PyObject
*resultobj
;
10302 otk::Style
*arg1
= (otk::Style
*) 0 ;
10303 otk::PixmapMask
*arg2
= (otk::PixmapMask
*) 0 ;
10304 PyObject
* obj0
= 0 ;
10305 PyObject
* obj1
= 0 ;
10307 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_max_button_set",&obj0
,&obj1
)) goto fail
;
10308 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10309 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10310 if (arg1
) (arg1
)->max_button
= *arg2
;
10312 Py_INCREF(Py_None
); resultobj
= Py_None
;
10319 static PyObject
*_wrap_Style_max_button_get(PyObject
*self
, PyObject
*args
) {
10320 PyObject
*resultobj
;
10321 otk::Style
*arg1
= (otk::Style
*) 0 ;
10322 otk::PixmapMask
*result
;
10323 PyObject
* obj0
= 0 ;
10325 if(!PyArg_ParseTuple(args
,(char *)"O:Style_max_button_get",&obj0
)) goto fail
;
10326 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10327 result
= (otk::PixmapMask
*)& ((arg1
)->max_button
);
10329 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
10336 static PyObject
*_wrap_Style_icon_button_set(PyObject
*self
, PyObject
*args
) {
10337 PyObject
*resultobj
;
10338 otk::Style
*arg1
= (otk::Style
*) 0 ;
10339 otk::PixmapMask
*arg2
= (otk::PixmapMask
*) 0 ;
10340 PyObject
* obj0
= 0 ;
10341 PyObject
* obj1
= 0 ;
10343 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_icon_button_set",&obj0
,&obj1
)) goto fail
;
10344 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10345 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10346 if (arg1
) (arg1
)->icon_button
= *arg2
;
10348 Py_INCREF(Py_None
); resultobj
= Py_None
;
10355 static PyObject
*_wrap_Style_icon_button_get(PyObject
*self
, PyObject
*args
) {
10356 PyObject
*resultobj
;
10357 otk::Style
*arg1
= (otk::Style
*) 0 ;
10358 otk::PixmapMask
*result
;
10359 PyObject
* obj0
= 0 ;
10361 if(!PyArg_ParseTuple(args
,(char *)"O:Style_icon_button_get",&obj0
)) goto fail
;
10362 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10363 result
= (otk::PixmapMask
*)& ((arg1
)->icon_button
);
10365 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
10372 static PyObject
*_wrap_Style_stick_button_set(PyObject
*self
, PyObject
*args
) {
10373 PyObject
*resultobj
;
10374 otk::Style
*arg1
= (otk::Style
*) 0 ;
10375 otk::PixmapMask
*arg2
= (otk::PixmapMask
*) 0 ;
10376 PyObject
* obj0
= 0 ;
10377 PyObject
* obj1
= 0 ;
10379 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_stick_button_set",&obj0
,&obj1
)) goto fail
;
10380 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10381 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10382 if (arg1
) (arg1
)->stick_button
= *arg2
;
10384 Py_INCREF(Py_None
); resultobj
= Py_None
;
10391 static PyObject
*_wrap_Style_stick_button_get(PyObject
*self
, PyObject
*args
) {
10392 PyObject
*resultobj
;
10393 otk::Style
*arg1
= (otk::Style
*) 0 ;
10394 otk::PixmapMask
*result
;
10395 PyObject
* obj0
= 0 ;
10397 if(!PyArg_ParseTuple(args
,(char *)"O:Style_stick_button_get",&obj0
)) goto fail
;
10398 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10399 result
= (otk::PixmapMask
*)& ((arg1
)->stick_button
);
10401 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
10408 static PyObject
*_wrap_Style_justify_set(PyObject
*self
, PyObject
*args
) {
10409 PyObject
*resultobj
;
10410 otk::Style
*arg1
= (otk::Style
*) 0 ;
10412 PyObject
* obj0
= 0 ;
10414 if(!PyArg_ParseTuple(args
,(char *)"Oi:Style_justify_set",&obj0
,&arg2
)) goto fail
;
10415 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10416 if (arg1
) (arg1
)->justify
= (otk::Style::TextJustify
)arg2
;
10418 Py_INCREF(Py_None
); resultobj
= Py_None
;
10425 static PyObject
*_wrap_Style_justify_get(PyObject
*self
, PyObject
*args
) {
10426 PyObject
*resultobj
;
10427 otk::Style
*arg1
= (otk::Style
*) 0 ;
10429 PyObject
* obj0
= 0 ;
10431 if(!PyArg_ParseTuple(args
,(char *)"O:Style_justify_get",&obj0
)) goto fail
;
10432 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10433 result
= (int) ((arg1
)->justify
);
10435 resultobj
= PyInt_FromLong((long)result
);
10442 static PyObject
*_wrap_Style_bullet_type_set(PyObject
*self
, PyObject
*args
) {
10443 PyObject
*resultobj
;
10444 otk::Style
*arg1
= (otk::Style
*) 0 ;
10446 PyObject
* obj0
= 0 ;
10448 if(!PyArg_ParseTuple(args
,(char *)"Oi:Style_bullet_type_set",&obj0
,&arg2
)) goto fail
;
10449 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10450 if (arg1
) (arg1
)->bullet_type
= (otk::Style::BulletType
)arg2
;
10452 Py_INCREF(Py_None
); resultobj
= Py_None
;
10459 static PyObject
*_wrap_Style_bullet_type_get(PyObject
*self
, PyObject
*args
) {
10460 PyObject
*resultobj
;
10461 otk::Style
*arg1
= (otk::Style
*) 0 ;
10463 PyObject
* obj0
= 0 ;
10465 if(!PyArg_ParseTuple(args
,(char *)"O:Style_bullet_type_get",&obj0
)) goto fail
;
10466 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10467 result
= (int) ((arg1
)->bullet_type
);
10469 resultobj
= PyInt_FromLong((long)result
);
10476 static PyObject
*_wrap_Style_handle_width_set(PyObject
*self
, PyObject
*args
) {
10477 PyObject
*resultobj
;
10478 otk::Style
*arg1
= (otk::Style
*) 0 ;
10479 unsigned int arg2
;
10480 PyObject
* obj0
= 0 ;
10481 PyObject
* obj1
= 0 ;
10483 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_handle_width_set",&obj0
,&obj1
)) goto fail
;
10484 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10485 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10486 if (PyErr_Occurred()) SWIG_fail
;
10487 if (arg1
) (arg1
)->handle_width
= arg2
;
10489 Py_INCREF(Py_None
); resultobj
= Py_None
;
10496 static PyObject
*_wrap_Style_handle_width_get(PyObject
*self
, PyObject
*args
) {
10497 PyObject
*resultobj
;
10498 otk::Style
*arg1
= (otk::Style
*) 0 ;
10499 unsigned int result
;
10500 PyObject
* obj0
= 0 ;
10502 if(!PyArg_ParseTuple(args
,(char *)"O:Style_handle_width_get",&obj0
)) goto fail
;
10503 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10504 result
= (unsigned int) ((arg1
)->handle_width
);
10506 resultobj
= PyInt_FromLong((long)result
);
10513 static PyObject
*_wrap_Style_bevel_width_set(PyObject
*self
, PyObject
*args
) {
10514 PyObject
*resultobj
;
10515 otk::Style
*arg1
= (otk::Style
*) 0 ;
10516 unsigned int arg2
;
10517 PyObject
* obj0
= 0 ;
10518 PyObject
* obj1
= 0 ;
10520 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_bevel_width_set",&obj0
,&obj1
)) goto fail
;
10521 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10522 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10523 if (PyErr_Occurred()) SWIG_fail
;
10524 if (arg1
) (arg1
)->bevel_width
= arg2
;
10526 Py_INCREF(Py_None
); resultobj
= Py_None
;
10533 static PyObject
*_wrap_Style_bevel_width_get(PyObject
*self
, PyObject
*args
) {
10534 PyObject
*resultobj
;
10535 otk::Style
*arg1
= (otk::Style
*) 0 ;
10536 unsigned int result
;
10537 PyObject
* obj0
= 0 ;
10539 if(!PyArg_ParseTuple(args
,(char *)"O:Style_bevel_width_get",&obj0
)) goto fail
;
10540 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10541 result
= (unsigned int) ((arg1
)->bevel_width
);
10543 resultobj
= PyInt_FromLong((long)result
);
10550 static PyObject
*_wrap_Style_frame_width_set(PyObject
*self
, PyObject
*args
) {
10551 PyObject
*resultobj
;
10552 otk::Style
*arg1
= (otk::Style
*) 0 ;
10553 unsigned int arg2
;
10554 PyObject
* obj0
= 0 ;
10555 PyObject
* obj1
= 0 ;
10557 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_frame_width_set",&obj0
,&obj1
)) goto fail
;
10558 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10559 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10560 if (PyErr_Occurred()) SWIG_fail
;
10561 if (arg1
) (arg1
)->frame_width
= arg2
;
10563 Py_INCREF(Py_None
); resultobj
= Py_None
;
10570 static PyObject
*_wrap_Style_frame_width_get(PyObject
*self
, PyObject
*args
) {
10571 PyObject
*resultobj
;
10572 otk::Style
*arg1
= (otk::Style
*) 0 ;
10573 unsigned int result
;
10574 PyObject
* obj0
= 0 ;
10576 if(!PyArg_ParseTuple(args
,(char *)"O:Style_frame_width_get",&obj0
)) goto fail
;
10577 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10578 result
= (unsigned int) ((arg1
)->frame_width
);
10580 resultobj
= PyInt_FromLong((long)result
);
10587 static PyObject
*_wrap_Style_border_width_set(PyObject
*self
, PyObject
*args
) {
10588 PyObject
*resultobj
;
10589 otk::Style
*arg1
= (otk::Style
*) 0 ;
10590 unsigned int arg2
;
10591 PyObject
* obj0
= 0 ;
10592 PyObject
* obj1
= 0 ;
10594 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_border_width_set",&obj0
,&obj1
)) goto fail
;
10595 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10596 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10597 if (PyErr_Occurred()) SWIG_fail
;
10598 if (arg1
) (arg1
)->border_width
= arg2
;
10600 Py_INCREF(Py_None
); resultobj
= Py_None
;
10607 static PyObject
*_wrap_Style_border_width_get(PyObject
*self
, PyObject
*args
) {
10608 PyObject
*resultobj
;
10609 otk::Style
*arg1
= (otk::Style
*) 0 ;
10610 unsigned int result
;
10611 PyObject
* obj0
= 0 ;
10613 if(!PyArg_ParseTuple(args
,(char *)"O:Style_border_width_get",&obj0
)) goto fail
;
10614 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10615 result
= (unsigned int) ((arg1
)->border_width
);
10617 resultobj
= PyInt_FromLong((long)result
);
10624 static PyObject
*_wrap_Style_screen_number_set(PyObject
*self
, PyObject
*args
) {
10625 PyObject
*resultobj
;
10626 otk::Style
*arg1
= (otk::Style
*) 0 ;
10627 unsigned int arg2
;
10628 PyObject
* obj0
= 0 ;
10629 PyObject
* obj1
= 0 ;
10631 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_screen_number_set",&obj0
,&obj1
)) goto fail
;
10632 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10633 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10634 if (PyErr_Occurred()) SWIG_fail
;
10635 if (arg1
) (arg1
)->screen_number
= arg2
;
10637 Py_INCREF(Py_None
); resultobj
= Py_None
;
10644 static PyObject
*_wrap_Style_screen_number_get(PyObject
*self
, PyObject
*args
) {
10645 PyObject
*resultobj
;
10646 otk::Style
*arg1
= (otk::Style
*) 0 ;
10647 unsigned int result
;
10648 PyObject
* obj0
= 0 ;
10650 if(!PyArg_ParseTuple(args
,(char *)"O:Style_screen_number_get",&obj0
)) goto fail
;
10651 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10652 result
= (unsigned int) ((arg1
)->screen_number
);
10654 resultobj
= PyInt_FromLong((long)result
);
10661 static PyObject
*_wrap_Style_shadow_fonts_set(PyObject
*self
, PyObject
*args
) {
10662 PyObject
*resultobj
;
10663 otk::Style
*arg1
= (otk::Style
*) 0 ;
10665 PyObject
* obj0
= 0 ;
10666 PyObject
* obj1
= 0 ;
10668 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_shadow_fonts_set",&obj0
,&obj1
)) goto fail
;
10669 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10670 arg2
= (bool) PyInt_AsLong(obj1
);
10671 if (PyErr_Occurred()) SWIG_fail
;
10672 if (arg1
) (arg1
)->shadow_fonts
= arg2
;
10674 Py_INCREF(Py_None
); resultobj
= Py_None
;
10681 static PyObject
*_wrap_Style_shadow_fonts_get(PyObject
*self
, PyObject
*args
) {
10682 PyObject
*resultobj
;
10683 otk::Style
*arg1
= (otk::Style
*) 0 ;
10685 PyObject
* obj0
= 0 ;
10687 if(!PyArg_ParseTuple(args
,(char *)"O:Style_shadow_fonts_get",&obj0
)) goto fail
;
10688 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10689 result
= (bool) ((arg1
)->shadow_fonts
);
10691 resultobj
= PyInt_FromLong((long)result
);
10698 static PyObject
*_wrap_Style_aa_fonts_set(PyObject
*self
, PyObject
*args
) {
10699 PyObject
*resultobj
;
10700 otk::Style
*arg1
= (otk::Style
*) 0 ;
10702 PyObject
* obj0
= 0 ;
10703 PyObject
* obj1
= 0 ;
10705 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_aa_fonts_set",&obj0
,&obj1
)) goto fail
;
10706 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10707 arg2
= (bool) PyInt_AsLong(obj1
);
10708 if (PyErr_Occurred()) SWIG_fail
;
10709 if (arg1
) (arg1
)->aa_fonts
= arg2
;
10711 Py_INCREF(Py_None
); resultobj
= Py_None
;
10718 static PyObject
*_wrap_Style_aa_fonts_get(PyObject
*self
, PyObject
*args
) {
10719 PyObject
*resultobj
;
10720 otk::Style
*arg1
= (otk::Style
*) 0 ;
10722 PyObject
* obj0
= 0 ;
10724 if(!PyArg_ParseTuple(args
,(char *)"O:Style_aa_fonts_get",&obj0
)) goto fail
;
10725 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10726 result
= (bool) ((arg1
)->aa_fonts
);
10728 resultobj
= PyInt_FromLong((long)result
);
10735 static PyObject
*_wrap_new_Style__SWIG_0(PyObject
*self
, PyObject
*args
) {
10736 PyObject
*resultobj
;
10737 otk::Style
*result
;
10739 if(!PyArg_ParseTuple(args
,(char *)":new_Style")) goto fail
;
10740 result
= (otk::Style
*)new otk::Style();
10742 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Style
, 1);
10749 static PyObject
*_wrap_new_Style__SWIG_1(PyObject
*self
, PyObject
*args
) {
10750 PyObject
*resultobj
;
10751 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
10752 otk::Style
*result
;
10753 PyObject
* obj0
= 0 ;
10755 if(!PyArg_ParseTuple(args
,(char *)"O:new_Style",&obj0
)) goto fail
;
10756 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10757 result
= (otk::Style
*)new otk::Style(arg1
);
10759 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Style
, 1);
10766 static PyObject
*_wrap_new_Style(PyObject
*self
, PyObject
*args
) {
10771 argc
= PyObject_Length(args
);
10772 for (ii
= 0; (ii
< argc
) && (ii
< 1); ii
++) {
10773 argv
[ii
] = PyTuple_GetItem(args
,ii
);
10776 return _wrap_new_Style__SWIG_0(self
,args
);
10782 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__BImageControl
, 0) == -1) {
10790 return _wrap_new_Style__SWIG_1(self
,args
);
10794 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Style'");
10799 static PyObject
*_wrap_delete_Style(PyObject
*self
, PyObject
*args
) {
10800 PyObject
*resultobj
;
10801 otk::Style
*arg1
= (otk::Style
*) 0 ;
10802 PyObject
* obj0
= 0 ;
10804 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Style",&obj0
)) goto fail
;
10805 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10808 Py_INCREF(Py_None
); resultobj
= Py_None
;
10815 static PyObject
*_wrap_Style_readDatabaseMask(PyObject
*self
, PyObject
*args
) {
10816 PyObject
*resultobj
;
10817 otk::Style
*arg1
= (otk::Style
*) 0 ;
10818 std::string
*arg2
= 0 ;
10819 otk::PixmapMask
*arg3
= 0 ;
10820 otk::Configuration
*arg4
= 0 ;
10821 std::string temp2
;
10822 PyObject
* obj0
= 0 ;
10823 PyObject
* obj1
= 0 ;
10824 PyObject
* obj2
= 0 ;
10825 PyObject
* obj3
= 0 ;
10827 if(!PyArg_ParseTuple(args
,(char *)"OOOO:Style_readDatabaseMask",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
10828 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10830 if (PyString_Check(obj1
)) {
10831 temp2
= std::string(PyString_AsString(obj1
));
10834 SWIG_exception(SWIG_TypeError
, "string expected");
10837 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10838 if (arg3
== NULL
) {
10839 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10841 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10842 if (arg4
== NULL
) {
10843 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10845 (arg1
)->readDatabaseMask((std::string
const &)*arg2
,*arg3
,(otk::Configuration
const &)*arg4
);
10847 Py_INCREF(Py_None
); resultobj
= Py_None
;
10854 static PyObject
*_wrap_Style_readDatabaseTexture(PyObject
*self
, PyObject
*args
) {
10855 PyObject
*resultobj
;
10856 otk::Style
*arg1
= (otk::Style
*) 0 ;
10857 std::string
*arg2
= 0 ;
10858 std::string
*arg3
= 0 ;
10859 otk::Configuration
*arg4
= 0 ;
10860 bool arg5
= (bool) false ;
10861 otk::BTexture result
;
10862 std::string temp2
;
10863 std::string temp3
;
10864 PyObject
* obj0
= 0 ;
10865 PyObject
* obj1
= 0 ;
10866 PyObject
* obj2
= 0 ;
10867 PyObject
* obj3
= 0 ;
10868 PyObject
* obj4
= 0 ;
10870 if(!PyArg_ParseTuple(args
,(char *)"OOOO|O:Style_readDatabaseTexture",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
10871 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10873 if (PyString_Check(obj1
)) {
10874 temp2
= std::string(PyString_AsString(obj1
));
10877 SWIG_exception(SWIG_TypeError
, "string expected");
10881 if (PyString_Check(obj2
)) {
10882 temp3
= std::string(PyString_AsString(obj2
));
10885 SWIG_exception(SWIG_TypeError
, "string expected");
10888 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10889 if (arg4
== NULL
) {
10890 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10893 arg5
= (bool) PyInt_AsLong(obj4
);
10894 if (PyErr_Occurred()) SWIG_fail
;
10896 result
= (arg1
)->readDatabaseTexture((std::string
const &)*arg2
,(std::string
const &)*arg3
,(otk::Configuration
const &)*arg4
,arg5
);
10899 otk::BTexture
* resultptr
;
10900 resultptr
= new otk::BTexture((otk::BTexture
&) result
);
10901 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__BTexture
, 1);
10909 static PyObject
*_wrap_Style_readDatabaseColor(PyObject
*self
, PyObject
*args
) {
10910 PyObject
*resultobj
;
10911 otk::Style
*arg1
= (otk::Style
*) 0 ;
10912 std::string
*arg2
= 0 ;
10913 std::string
*arg3
= 0 ;
10914 otk::Configuration
*arg4
= 0 ;
10915 otk::BColor result
;
10916 std::string temp2
;
10917 std::string temp3
;
10918 PyObject
* obj0
= 0 ;
10919 PyObject
* obj1
= 0 ;
10920 PyObject
* obj2
= 0 ;
10921 PyObject
* obj3
= 0 ;
10923 if(!PyArg_ParseTuple(args
,(char *)"OOOO:Style_readDatabaseColor",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
10924 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10926 if (PyString_Check(obj1
)) {
10927 temp2
= std::string(PyString_AsString(obj1
));
10930 SWIG_exception(SWIG_TypeError
, "string expected");
10934 if (PyString_Check(obj2
)) {
10935 temp3
= std::string(PyString_AsString(obj2
));
10938 SWIG_exception(SWIG_TypeError
, "string expected");
10941 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10942 if (arg4
== NULL
) {
10943 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10945 result
= (arg1
)->readDatabaseColor((std::string
const &)*arg2
,(std::string
const &)*arg3
,(otk::Configuration
const &)*arg4
);
10948 otk::BColor
* resultptr
;
10949 resultptr
= new otk::BColor((otk::BColor
&) result
);
10950 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__BColor
, 1);
10958 static PyObject
*_wrap_Style_readDatabaseFont(PyObject
*self
, PyObject
*args
) {
10959 PyObject
*resultobj
;
10960 otk::Style
*arg1
= (otk::Style
*) 0 ;
10961 std::string
*arg2
= 0 ;
10962 otk::Configuration
*arg3
= 0 ;
10963 otk::BFont
*result
;
10964 std::string temp2
;
10965 PyObject
* obj0
= 0 ;
10966 PyObject
* obj1
= 0 ;
10967 PyObject
* obj2
= 0 ;
10969 if(!PyArg_ParseTuple(args
,(char *)"OOO:Style_readDatabaseFont",&obj0
,&obj1
,&obj2
)) goto fail
;
10970 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10972 if (PyString_Check(obj1
)) {
10973 temp2
= std::string(PyString_AsString(obj1
));
10976 SWIG_exception(SWIG_TypeError
, "string expected");
10979 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10980 if (arg3
== NULL
) {
10981 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10983 result
= (otk::BFont
*)(arg1
)->readDatabaseFont((std::string
const &)*arg2
,(otk::Configuration
const &)*arg3
);
10985 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BFont
, 0);
10992 static PyObject
*_wrap_Style_load(PyObject
*self
, PyObject
*args
) {
10993 PyObject
*resultobj
;
10994 otk::Style
*arg1
= (otk::Style
*) 0 ;
10995 otk::Configuration
*arg2
= 0 ;
10996 PyObject
* obj0
= 0 ;
10997 PyObject
* obj1
= 0 ;
10999 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_load",&obj0
,&obj1
)) goto fail
;
11000 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11001 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11002 if (arg2
== NULL
) {
11003 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
11005 (arg1
)->load((otk::Configuration
const &)*arg2
);
11007 Py_INCREF(Py_None
); resultobj
= Py_None
;
11014 static PyObject
*_wrap_Style_getCloseButtonMask(PyObject
*self
, PyObject
*args
) {
11015 PyObject
*resultobj
;
11016 otk::Style
*arg1
= (otk::Style
*) 0 ;
11017 otk::PixmapMask
*result
;
11018 PyObject
* obj0
= 0 ;
11020 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getCloseButtonMask",&obj0
)) goto fail
;
11021 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11022 result
= (otk::PixmapMask
*)(arg1
)->getCloseButtonMask();
11024 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
11031 static PyObject
*_wrap_Style_getMaximizeButtonMask(PyObject
*self
, PyObject
*args
) {
11032 PyObject
*resultobj
;
11033 otk::Style
*arg1
= (otk::Style
*) 0 ;
11034 otk::PixmapMask
*result
;
11035 PyObject
* obj0
= 0 ;
11037 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getMaximizeButtonMask",&obj0
)) goto fail
;
11038 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11039 result
= (otk::PixmapMask
*)(arg1
)->getMaximizeButtonMask();
11041 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
11048 static PyObject
*_wrap_Style_getIconifyButtonMask(PyObject
*self
, PyObject
*args
) {
11049 PyObject
*resultobj
;
11050 otk::Style
*arg1
= (otk::Style
*) 0 ;
11051 otk::PixmapMask
*result
;
11052 PyObject
* obj0
= 0 ;
11054 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getIconifyButtonMask",&obj0
)) goto fail
;
11055 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11056 result
= (otk::PixmapMask
*)(arg1
)->getIconifyButtonMask();
11058 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
11065 static PyObject
*_wrap_Style_getStickyButtonMask(PyObject
*self
, PyObject
*args
) {
11066 PyObject
*resultobj
;
11067 otk::Style
*arg1
= (otk::Style
*) 0 ;
11068 otk::PixmapMask
*result
;
11069 PyObject
* obj0
= 0 ;
11071 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getStickyButtonMask",&obj0
)) goto fail
;
11072 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11073 result
= (otk::PixmapMask
*)(arg1
)->getStickyButtonMask();
11075 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
11082 static PyObject
*_wrap_Style_getTextFocus(PyObject
*self
, PyObject
*args
) {
11083 PyObject
*resultobj
;
11084 otk::Style
*arg1
= (otk::Style
*) 0 ;
11085 otk::BColor
*result
;
11086 PyObject
* obj0
= 0 ;
11088 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getTextFocus",&obj0
)) goto fail
;
11089 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11090 result
= (otk::BColor
*)(arg1
)->getTextFocus();
11092 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11099 static PyObject
*_wrap_Style_getTextUnfocus(PyObject
*self
, PyObject
*args
) {
11100 PyObject
*resultobj
;
11101 otk::Style
*arg1
= (otk::Style
*) 0 ;
11102 otk::BColor
*result
;
11103 PyObject
* obj0
= 0 ;
11105 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getTextUnfocus",&obj0
)) goto fail
;
11106 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11107 result
= (otk::BColor
*)(arg1
)->getTextUnfocus();
11109 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11116 static PyObject
*_wrap_Style_getButtonPicFocus(PyObject
*self
, PyObject
*args
) {
11117 PyObject
*resultobj
;
11118 otk::Style
*arg1
= (otk::Style
*) 0 ;
11119 otk::BColor
*result
;
11120 PyObject
* obj0
= 0 ;
11122 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonPicFocus",&obj0
)) goto fail
;
11123 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11124 result
= (otk::BColor
*)(arg1
)->getButtonPicFocus();
11126 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11133 static PyObject
*_wrap_Style_getButtonPicUnfocus(PyObject
*self
, PyObject
*args
) {
11134 PyObject
*resultobj
;
11135 otk::Style
*arg1
= (otk::Style
*) 0 ;
11136 otk::BColor
*result
;
11137 PyObject
* obj0
= 0 ;
11139 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonPicUnfocus",&obj0
)) goto fail
;
11140 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11141 result
= (otk::BColor
*)(arg1
)->getButtonPicUnfocus();
11143 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11150 static PyObject
*_wrap_Style_getTitleFocus(PyObject
*self
, PyObject
*args
) {
11151 PyObject
*resultobj
;
11152 otk::Style
*arg1
= (otk::Style
*) 0 ;
11153 otk::BTexture
*result
;
11154 PyObject
* obj0
= 0 ;
11156 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getTitleFocus",&obj0
)) goto fail
;
11157 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11158 result
= (otk::BTexture
*)(arg1
)->getTitleFocus();
11160 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11167 static PyObject
*_wrap_Style_getTitleUnfocus(PyObject
*self
, PyObject
*args
) {
11168 PyObject
*resultobj
;
11169 otk::Style
*arg1
= (otk::Style
*) 0 ;
11170 otk::BTexture
*result
;
11171 PyObject
* obj0
= 0 ;
11173 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getTitleUnfocus",&obj0
)) goto fail
;
11174 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11175 result
= (otk::BTexture
*)(arg1
)->getTitleUnfocus();
11177 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11184 static PyObject
*_wrap_Style_getLabelFocus(PyObject
*self
, PyObject
*args
) {
11185 PyObject
*resultobj
;
11186 otk::Style
*arg1
= (otk::Style
*) 0 ;
11187 otk::BTexture
*result
;
11188 PyObject
* obj0
= 0 ;
11190 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getLabelFocus",&obj0
)) goto fail
;
11191 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11192 result
= (otk::BTexture
*)(arg1
)->getLabelFocus();
11194 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11201 static PyObject
*_wrap_Style_getLabelUnfocus(PyObject
*self
, PyObject
*args
) {
11202 PyObject
*resultobj
;
11203 otk::Style
*arg1
= (otk::Style
*) 0 ;
11204 otk::BTexture
*result
;
11205 PyObject
* obj0
= 0 ;
11207 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getLabelUnfocus",&obj0
)) goto fail
;
11208 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11209 result
= (otk::BTexture
*)(arg1
)->getLabelUnfocus();
11211 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11218 static PyObject
*_wrap_Style_getHandleFocus(PyObject
*self
, PyObject
*args
) {
11219 PyObject
*resultobj
;
11220 otk::Style
*arg1
= (otk::Style
*) 0 ;
11221 otk::BTexture
*result
;
11222 PyObject
* obj0
= 0 ;
11224 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getHandleFocus",&obj0
)) goto fail
;
11225 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11226 result
= (otk::BTexture
*)(arg1
)->getHandleFocus();
11228 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11235 static PyObject
*_wrap_Style_getHandleUnfocus(PyObject
*self
, PyObject
*args
) {
11236 PyObject
*resultobj
;
11237 otk::Style
*arg1
= (otk::Style
*) 0 ;
11238 otk::BTexture
*result
;
11239 PyObject
* obj0
= 0 ;
11241 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getHandleUnfocus",&obj0
)) goto fail
;
11242 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11243 result
= (otk::BTexture
*)(arg1
)->getHandleUnfocus();
11245 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11252 static PyObject
*_wrap_Style_getButtonFocus(PyObject
*self
, PyObject
*args
) {
11253 PyObject
*resultobj
;
11254 otk::Style
*arg1
= (otk::Style
*) 0 ;
11255 otk::BTexture
*result
;
11256 PyObject
* obj0
= 0 ;
11258 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonFocus",&obj0
)) goto fail
;
11259 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11260 result
= (otk::BTexture
*)(arg1
)->getButtonFocus();
11262 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11269 static PyObject
*_wrap_Style_getButtonUnfocus(PyObject
*self
, PyObject
*args
) {
11270 PyObject
*resultobj
;
11271 otk::Style
*arg1
= (otk::Style
*) 0 ;
11272 otk::BTexture
*result
;
11273 PyObject
* obj0
= 0 ;
11275 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonUnfocus",&obj0
)) goto fail
;
11276 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11277 result
= (otk::BTexture
*)(arg1
)->getButtonUnfocus();
11279 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11286 static PyObject
*_wrap_Style_getButtonPressedFocus(PyObject
*self
, PyObject
*args
) {
11287 PyObject
*resultobj
;
11288 otk::Style
*arg1
= (otk::Style
*) 0 ;
11289 otk::BTexture
*result
;
11290 PyObject
* obj0
= 0 ;
11292 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonPressedFocus",&obj0
)) goto fail
;
11293 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11294 result
= (otk::BTexture
*)(arg1
)->getButtonPressedFocus();
11296 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11303 static PyObject
*_wrap_Style_getButtonPressedUnfocus(PyObject
*self
, PyObject
*args
) {
11304 PyObject
*resultobj
;
11305 otk::Style
*arg1
= (otk::Style
*) 0 ;
11306 otk::BTexture
*result
;
11307 PyObject
* obj0
= 0 ;
11309 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonPressedUnfocus",&obj0
)) goto fail
;
11310 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11311 result
= (otk::BTexture
*)(arg1
)->getButtonPressedUnfocus();
11313 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11320 static PyObject
*_wrap_Style_getGripFocus(PyObject
*self
, PyObject
*args
) {
11321 PyObject
*resultobj
;
11322 otk::Style
*arg1
= (otk::Style
*) 0 ;
11323 otk::BTexture
*result
;
11324 PyObject
* obj0
= 0 ;
11326 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getGripFocus",&obj0
)) goto fail
;
11327 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11328 result
= (otk::BTexture
*)(arg1
)->getGripFocus();
11330 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11337 static PyObject
*_wrap_Style_getGripUnfocus(PyObject
*self
, PyObject
*args
) {
11338 PyObject
*resultobj
;
11339 otk::Style
*arg1
= (otk::Style
*) 0 ;
11340 otk::BTexture
*result
;
11341 PyObject
* obj0
= 0 ;
11343 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getGripUnfocus",&obj0
)) goto fail
;
11344 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11345 result
= (otk::BTexture
*)(arg1
)->getGripUnfocus();
11347 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11354 static PyObject
*_wrap_Style_getHandleWidth(PyObject
*self
, PyObject
*args
) {
11355 PyObject
*resultobj
;
11356 otk::Style
*arg1
= (otk::Style
*) 0 ;
11357 unsigned int result
;
11358 PyObject
* obj0
= 0 ;
11360 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getHandleWidth",&obj0
)) goto fail
;
11361 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11362 result
= (unsigned int)((otk::Style
const *)arg1
)->getHandleWidth();
11364 resultobj
= PyInt_FromLong((long)result
);
11371 static PyObject
*_wrap_Style_getBevelWidth(PyObject
*self
, PyObject
*args
) {
11372 PyObject
*resultobj
;
11373 otk::Style
*arg1
= (otk::Style
*) 0 ;
11374 unsigned int result
;
11375 PyObject
* obj0
= 0 ;
11377 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getBevelWidth",&obj0
)) goto fail
;
11378 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11379 result
= (unsigned int)((otk::Style
const *)arg1
)->getBevelWidth();
11381 resultobj
= PyInt_FromLong((long)result
);
11388 static PyObject
*_wrap_Style_getFrameWidth(PyObject
*self
, PyObject
*args
) {
11389 PyObject
*resultobj
;
11390 otk::Style
*arg1
= (otk::Style
*) 0 ;
11391 unsigned int result
;
11392 PyObject
* obj0
= 0 ;
11394 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getFrameWidth",&obj0
)) goto fail
;
11395 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11396 result
= (unsigned int)((otk::Style
const *)arg1
)->getFrameWidth();
11398 resultobj
= PyInt_FromLong((long)result
);
11405 static PyObject
*_wrap_Style_getBorderWidth(PyObject
*self
, PyObject
*args
) {
11406 PyObject
*resultobj
;
11407 otk::Style
*arg1
= (otk::Style
*) 0 ;
11408 unsigned int result
;
11409 PyObject
* obj0
= 0 ;
11411 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getBorderWidth",&obj0
)) goto fail
;
11412 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11413 result
= (unsigned int)((otk::Style
const *)arg1
)->getBorderWidth();
11415 resultobj
= PyInt_FromLong((long)result
);
11422 static PyObject
*_wrap_Style_getFont(PyObject
*self
, PyObject
*args
) {
11423 PyObject
*resultobj
;
11424 otk::Style
*arg1
= (otk::Style
*) 0 ;
11425 otk::BFont
*result
;
11426 PyObject
* obj0
= 0 ;
11428 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getFont",&obj0
)) goto fail
;
11429 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11430 result
= (otk::BFont
*)((otk::Style
const *)arg1
)->getFont();
11432 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BFont
, 0);
11439 static PyObject
*_wrap_Style_setShadowFonts(PyObject
*self
, PyObject
*args
) {
11440 PyObject
*resultobj
;
11441 otk::Style
*arg1
= (otk::Style
*) 0 ;
11443 PyObject
* obj0
= 0 ;
11444 PyObject
* obj1
= 0 ;
11446 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_setShadowFonts",&obj0
,&obj1
)) goto fail
;
11447 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11448 arg2
= (bool) PyInt_AsLong(obj1
);
11449 if (PyErr_Occurred()) SWIG_fail
;
11450 (arg1
)->setShadowFonts(arg2
);
11452 Py_INCREF(Py_None
); resultobj
= Py_None
;
11459 static PyObject
*_wrap_Style_hasShadowFonts(PyObject
*self
, PyObject
*args
) {
11460 PyObject
*resultobj
;
11461 otk::Style
*arg1
= (otk::Style
*) 0 ;
11463 PyObject
* obj0
= 0 ;
11465 if(!PyArg_ParseTuple(args
,(char *)"O:Style_hasShadowFonts",&obj0
)) goto fail
;
11466 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11467 result
= (bool)((otk::Style
const *)arg1
)->hasShadowFonts();
11469 resultobj
= PyInt_FromLong((long)result
);
11476 static PyObject
*_wrap_Style_setAAFonts(PyObject
*self
, PyObject
*args
) {
11477 PyObject
*resultobj
;
11478 otk::Style
*arg1
= (otk::Style
*) 0 ;
11480 PyObject
* obj0
= 0 ;
11481 PyObject
* obj1
= 0 ;
11483 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_setAAFonts",&obj0
,&obj1
)) goto fail
;
11484 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11485 arg2
= (bool) PyInt_AsLong(obj1
);
11486 if (PyErr_Occurred()) SWIG_fail
;
11487 (arg1
)->setAAFonts(arg2
);
11489 Py_INCREF(Py_None
); resultobj
= Py_None
;
11496 static PyObject
*_wrap_Style_hasAAFonts(PyObject
*self
, PyObject
*args
) {
11497 PyObject
*resultobj
;
11498 otk::Style
*arg1
= (otk::Style
*) 0 ;
11500 PyObject
* obj0
= 0 ;
11502 if(!PyArg_ParseTuple(args
,(char *)"O:Style_hasAAFonts",&obj0
)) goto fail
;
11503 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11504 result
= (bool)((otk::Style
const *)arg1
)->hasAAFonts();
11506 resultobj
= PyInt_FromLong((long)result
);
11513 static PyObject
*_wrap_Style_textJustify(PyObject
*self
, PyObject
*args
) {
11514 PyObject
*resultobj
;
11515 otk::Style
*arg1
= (otk::Style
*) 0 ;
11517 PyObject
* obj0
= 0 ;
11519 if(!PyArg_ParseTuple(args
,(char *)"O:Style_textJustify",&obj0
)) goto fail
;
11520 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11521 result
= (int)(arg1
)->textJustify();
11523 resultobj
= PyInt_FromLong((long)result
);
11530 static PyObject
*_wrap_Style_bulletType(PyObject
*self
, PyObject
*args
) {
11531 PyObject
*resultobj
;
11532 otk::Style
*arg1
= (otk::Style
*) 0 ;
11534 PyObject
* obj0
= 0 ;
11536 if(!PyArg_ParseTuple(args
,(char *)"O:Style_bulletType",&obj0
)) goto fail
;
11537 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11538 result
= (int)(arg1
)->bulletType();
11540 resultobj
= PyInt_FromLong((long)result
);
11547 static PyObject
*_wrap_Style_getBorderColor(PyObject
*self
, PyObject
*args
) {
11548 PyObject
*resultobj
;
11549 otk::Style
*arg1
= (otk::Style
*) 0 ;
11550 otk::BColor
*result
;
11551 PyObject
* obj0
= 0 ;
11553 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getBorderColor",&obj0
)) goto fail
;
11554 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11555 result
= (otk::BColor
*)((otk::Style
const *)arg1
)->getBorderColor();
11557 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11564 static PyObject
*_wrap_Style_getFrameFocus(PyObject
*self
, PyObject
*args
) {
11565 PyObject
*resultobj
;
11566 otk::Style
*arg1
= (otk::Style
*) 0 ;
11567 otk::BTexture
*result
;
11568 PyObject
* obj0
= 0 ;
11570 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getFrameFocus",&obj0
)) goto fail
;
11571 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11572 result
= (otk::BTexture
*)((otk::Style
const *)arg1
)->getFrameFocus();
11574 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11581 static PyObject
*_wrap_Style_getFrameUnfocus(PyObject
*self
, PyObject
*args
) {
11582 PyObject
*resultobj
;
11583 otk::Style
*arg1
= (otk::Style
*) 0 ;
11584 otk::BTexture
*result
;
11585 PyObject
* obj0
= 0 ;
11587 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getFrameUnfocus",&obj0
)) goto fail
;
11588 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11589 result
= (otk::BTexture
*)((otk::Style
const *)arg1
)->getFrameUnfocus();
11591 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11598 static PyObject
*_wrap_Style_setImageControl(PyObject
*self
, PyObject
*args
) {
11599 PyObject
*resultobj
;
11600 otk::Style
*arg1
= (otk::Style
*) 0 ;
11601 otk::BImageControl
*arg2
= (otk::BImageControl
*) 0 ;
11602 PyObject
* obj0
= 0 ;
11603 PyObject
* obj1
= 0 ;
11605 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_setImageControl",&obj0
,&obj1
)) goto fail
;
11606 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11607 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11608 (arg1
)->setImageControl(arg2
);
11610 Py_INCREF(Py_None
); resultobj
= Py_None
;
11617 static PyObject
*_wrap_Style_getScreen(PyObject
*self
, PyObject
*args
) {
11618 PyObject
*resultobj
;
11619 otk::Style
*arg1
= (otk::Style
*) 0 ;
11620 unsigned int result
;
11621 PyObject
* obj0
= 0 ;
11623 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getScreen",&obj0
)) goto fail
;
11624 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11625 result
= (unsigned int)(arg1
)->getScreen();
11627 resultobj
= PyInt_FromLong((long)result
);
11634 static PyObject
* Style_swigregister(PyObject
*self
, PyObject
*args
) {
11636 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
11637 SWIG_TypeClientData(SWIGTYPE_p_otk__Style
, obj
);
11639 return Py_BuildValue((char *)"");
11641 static PyObject
*_wrap_new_BTexture__SWIG_0(PyObject
*self
, PyObject
*args
) {
11642 PyObject
*resultobj
;
11643 unsigned int arg1
= (unsigned int) ~(0u) ;
11644 otk::BImageControl
*arg2
= (otk::BImageControl
*) 0 ;
11645 otk::BTexture
*result
;
11646 PyObject
* obj0
= 0 ;
11647 PyObject
* obj1
= 0 ;
11649 if(!PyArg_ParseTuple(args
,(char *)"|OO:new_BTexture",&obj0
,&obj1
)) goto fail
;
11651 arg1
= (unsigned int) PyInt_AsLong(obj0
);
11652 if (PyErr_Occurred()) SWIG_fail
;
11655 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11657 result
= (otk::BTexture
*)new otk::BTexture(arg1
,arg2
);
11659 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 1);
11666 static PyObject
*_wrap_new_BTexture__SWIG_1(PyObject
*self
, PyObject
*args
) {
11667 PyObject
*resultobj
;
11668 std::string
*arg1
= 0 ;
11669 unsigned int arg2
= (unsigned int) ~(0u) ;
11670 otk::BImageControl
*arg3
= (otk::BImageControl
*) 0 ;
11671 otk::BTexture
*result
;
11672 std::string temp1
;
11673 PyObject
* obj0
= 0 ;
11674 PyObject
* obj1
= 0 ;
11675 PyObject
* obj2
= 0 ;
11677 if(!PyArg_ParseTuple(args
,(char *)"O|OO:new_BTexture",&obj0
,&obj1
,&obj2
)) goto fail
;
11679 if (PyString_Check(obj0
)) {
11680 temp1
= std::string(PyString_AsString(obj0
));
11683 SWIG_exception(SWIG_TypeError
, "string expected");
11687 arg2
= (unsigned int) PyInt_AsLong(obj1
);
11688 if (PyErr_Occurred()) SWIG_fail
;
11691 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11693 result
= (otk::BTexture
*)new otk::BTexture((std::string
const &)*arg1
,arg2
,arg3
);
11695 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 1);
11702 static PyObject
*_wrap_new_BTexture(PyObject
*self
, PyObject
*args
) {
11707 argc
= PyObject_Length(args
);
11708 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
11709 argv
[ii
] = PyTuple_GetItem(args
,ii
);
11711 if ((argc
>= 0) && (argc
<= 2)) {
11714 return _wrap_new_BTexture__SWIG_0(self
,args
);
11717 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
11721 return _wrap_new_BTexture__SWIG_0(self
,args
);
11725 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__BImageControl
, 0) == -1) {
11733 return _wrap_new_BTexture__SWIG_0(self
,args
);
11737 if ((argc
>= 1) && (argc
<= 3)) {
11740 _v
= PyString_Check(argv
[0]) ? 1 : 0;
11744 return _wrap_new_BTexture__SWIG_1(self
,args
);
11747 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
11751 return _wrap_new_BTexture__SWIG_1(self
,args
);
11755 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_otk__BImageControl
, 0) == -1) {
11763 return _wrap_new_BTexture__SWIG_1(self
,args
);
11769 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_BTexture'");
11774 static PyObject
*_wrap_BTexture_setColor(PyObject
*self
, PyObject
*args
) {
11775 PyObject
*resultobj
;
11776 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11777 otk::BColor
*arg2
= 0 ;
11778 PyObject
* obj0
= 0 ;
11779 PyObject
* obj1
= 0 ;
11781 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setColor",&obj0
,&obj1
)) goto fail
;
11782 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11783 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11784 if (arg2
== NULL
) {
11785 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
11787 (arg1
)->setColor((otk::BColor
const &)*arg2
);
11789 Py_INCREF(Py_None
); resultobj
= Py_None
;
11796 static PyObject
*_wrap_BTexture_setColorTo(PyObject
*self
, PyObject
*args
) {
11797 PyObject
*resultobj
;
11798 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11799 otk::BColor
*arg2
= 0 ;
11800 PyObject
* obj0
= 0 ;
11801 PyObject
* obj1
= 0 ;
11803 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setColorTo",&obj0
,&obj1
)) goto fail
;
11804 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11805 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11806 if (arg2
== NULL
) {
11807 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
11809 (arg1
)->setColorTo((otk::BColor
const &)*arg2
);
11811 Py_INCREF(Py_None
); resultobj
= Py_None
;
11818 static PyObject
*_wrap_BTexture_setBorderColor(PyObject
*self
, PyObject
*args
) {
11819 PyObject
*resultobj
;
11820 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11821 otk::BColor
*arg2
= 0 ;
11822 PyObject
* obj0
= 0 ;
11823 PyObject
* obj1
= 0 ;
11825 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setBorderColor",&obj0
,&obj1
)) goto fail
;
11826 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11827 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11828 if (arg2
== NULL
) {
11829 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
11831 (arg1
)->setBorderColor((otk::BColor
const &)*arg2
);
11833 Py_INCREF(Py_None
); resultobj
= Py_None
;
11840 static PyObject
*_wrap_BTexture_color(PyObject
*self
, PyObject
*args
) {
11841 PyObject
*resultobj
;
11842 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11843 otk::BColor
*result
;
11844 PyObject
* obj0
= 0 ;
11846 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_color",&obj0
)) goto fail
;
11847 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11849 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->color();
11850 result
= (otk::BColor
*) &_result_ref
;
11853 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11860 static PyObject
*_wrap_BTexture_colorTo(PyObject
*self
, PyObject
*args
) {
11861 PyObject
*resultobj
;
11862 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11863 otk::BColor
*result
;
11864 PyObject
* obj0
= 0 ;
11866 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_colorTo",&obj0
)) goto fail
;
11867 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11869 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->colorTo();
11870 result
= (otk::BColor
*) &_result_ref
;
11873 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11880 static PyObject
*_wrap_BTexture_lightColor(PyObject
*self
, PyObject
*args
) {
11881 PyObject
*resultobj
;
11882 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11883 otk::BColor
*result
;
11884 PyObject
* obj0
= 0 ;
11886 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_lightColor",&obj0
)) goto fail
;
11887 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11889 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->lightColor();
11890 result
= (otk::BColor
*) &_result_ref
;
11893 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11900 static PyObject
*_wrap_BTexture_shadowColor(PyObject
*self
, PyObject
*args
) {
11901 PyObject
*resultobj
;
11902 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11903 otk::BColor
*result
;
11904 PyObject
* obj0
= 0 ;
11906 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_shadowColor",&obj0
)) goto fail
;
11907 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11909 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->shadowColor();
11910 result
= (otk::BColor
*) &_result_ref
;
11913 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11920 static PyObject
*_wrap_BTexture_borderColor(PyObject
*self
, PyObject
*args
) {
11921 PyObject
*resultobj
;
11922 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11923 otk::BColor
*result
;
11924 PyObject
* obj0
= 0 ;
11926 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_borderColor",&obj0
)) goto fail
;
11927 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11929 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->borderColor();
11930 result
= (otk::BColor
*) &_result_ref
;
11933 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11940 static PyObject
*_wrap_BTexture_texture(PyObject
*self
, PyObject
*args
) {
11941 PyObject
*resultobj
;
11942 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11943 unsigned long result
;
11944 PyObject
* obj0
= 0 ;
11946 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_texture",&obj0
)) goto fail
;
11947 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11948 result
= (unsigned long)((otk::BTexture
const *)arg1
)->texture();
11950 resultobj
= PyInt_FromLong((long)result
);
11957 static PyObject
*_wrap_BTexture_setTexture(PyObject
*self
, PyObject
*args
) {
11958 PyObject
*resultobj
;
11959 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11960 unsigned long arg2
;
11961 PyObject
* obj0
= 0 ;
11962 PyObject
* obj1
= 0 ;
11964 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setTexture",&obj0
,&obj1
)) goto fail
;
11965 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11966 arg2
= (unsigned long) PyInt_AsLong(obj1
);
11967 if (PyErr_Occurred()) SWIG_fail
;
11968 (arg1
)->setTexture(arg2
);
11970 Py_INCREF(Py_None
); resultobj
= Py_None
;
11977 static PyObject
*_wrap_BTexture_addTexture(PyObject
*self
, PyObject
*args
) {
11978 PyObject
*resultobj
;
11979 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11980 unsigned long arg2
;
11981 PyObject
* obj0
= 0 ;
11982 PyObject
* obj1
= 0 ;
11984 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_addTexture",&obj0
,&obj1
)) goto fail
;
11985 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11986 arg2
= (unsigned long) PyInt_AsLong(obj1
);
11987 if (PyErr_Occurred()) SWIG_fail
;
11988 (arg1
)->addTexture(arg2
);
11990 Py_INCREF(Py_None
); resultobj
= Py_None
;
11997 static PyObject
*_wrap_BTexture_equals(PyObject
*self
, PyObject
*args
) {
11998 PyObject
*resultobj
;
11999 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12000 otk::BTexture
*arg2
= 0 ;
12002 PyObject
* obj0
= 0 ;
12003 PyObject
* obj1
= 0 ;
12005 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_equals",&obj0
,&obj1
)) goto fail
;
12006 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12007 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12008 if (arg2
== NULL
) {
12009 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
12011 result
= (bool)(arg1
)->operator ==((otk::BTexture
const &)*arg2
);
12013 resultobj
= PyInt_FromLong((long)result
);
12020 static PyObject
*_wrap_BTexture_screen(PyObject
*self
, PyObject
*args
) {
12021 PyObject
*resultobj
;
12022 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12023 unsigned int result
;
12024 PyObject
* obj0
= 0 ;
12026 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_screen",&obj0
)) goto fail
;
12027 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12028 result
= (unsigned int)((otk::BTexture
const *)arg1
)->screen();
12030 resultobj
= PyInt_FromLong((long)result
);
12037 static PyObject
*_wrap_BTexture_setScreen(PyObject
*self
, PyObject
*args
) {
12038 PyObject
*resultobj
;
12039 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12040 unsigned int arg2
;
12041 PyObject
* obj0
= 0 ;
12042 PyObject
* obj1
= 0 ;
12044 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setScreen",&obj0
,&obj1
)) goto fail
;
12045 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12046 arg2
= (unsigned int) PyInt_AsLong(obj1
);
12047 if (PyErr_Occurred()) SWIG_fail
;
12048 (arg1
)->setScreen(arg2
);
12050 Py_INCREF(Py_None
); resultobj
= Py_None
;
12057 static PyObject
*_wrap_BTexture_setImageControl(PyObject
*self
, PyObject
*args
) {
12058 PyObject
*resultobj
;
12059 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12060 otk::BImageControl
*arg2
= (otk::BImageControl
*) 0 ;
12061 PyObject
* obj0
= 0 ;
12062 PyObject
* obj1
= 0 ;
12064 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setImageControl",&obj0
,&obj1
)) goto fail
;
12065 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12066 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12067 (arg1
)->setImageControl(arg2
);
12069 Py_INCREF(Py_None
); resultobj
= Py_None
;
12076 static PyObject
*_wrap_BTexture_description(PyObject
*self
, PyObject
*args
) {
12077 PyObject
*resultobj
;
12078 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12079 std::string
*result
;
12080 PyObject
* obj0
= 0 ;
12082 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_description",&obj0
)) goto fail
;
12083 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12085 std::string
const &_result_ref
= ((otk::BTexture
const *)arg1
)->description();
12086 result
= (std::string
*) &_result_ref
;
12090 resultobj
= PyString_FromString(result
->c_str());
12098 static PyObject
*_wrap_BTexture_setDescription(PyObject
*self
, PyObject
*args
) {
12099 PyObject
*resultobj
;
12100 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12101 std::string
*arg2
= 0 ;
12102 std::string temp2
;
12103 PyObject
* obj0
= 0 ;
12104 PyObject
* obj1
= 0 ;
12106 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setDescription",&obj0
,&obj1
)) goto fail
;
12107 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12109 if (PyString_Check(obj1
)) {
12110 temp2
= std::string(PyString_AsString(obj1
));
12113 SWIG_exception(SWIG_TypeError
, "string expected");
12116 (arg1
)->setDescription((std::string
const &)*arg2
);
12118 Py_INCREF(Py_None
); resultobj
= Py_None
;
12125 static PyObject
*_wrap_BTexture_render(PyObject
*self
, PyObject
*args
) {
12126 PyObject
*resultobj
;
12127 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12128 unsigned int arg2
;
12129 unsigned int arg3
;
12130 Pixmap arg4
= (Pixmap
) (Pixmap
)0 ;
12133 PyObject
* obj0
= 0 ;
12134 PyObject
* obj1
= 0 ;
12135 PyObject
* obj2
= 0 ;
12136 PyObject
* obj3
= 0 ;
12138 if(!PyArg_ParseTuple(args
,(char *)"OOO|O:BTexture_render",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
12139 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12140 arg2
= (unsigned int) PyInt_AsLong(obj1
);
12141 if (PyErr_Occurred()) SWIG_fail
;
12142 arg3
= (unsigned int) PyInt_AsLong(obj2
);
12143 if (PyErr_Occurred()) SWIG_fail
;
12145 if ((SWIG_ConvertPtr(obj3
,(void **) &argp4
, SWIGTYPE_p_Pixmap
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
12148 result
= (arg1
)->render(arg2
,arg3
,arg4
);
12151 Pixmap
* resultptr
;
12152 resultptr
= new Pixmap((Pixmap
&) result
);
12153 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Pixmap
, 1);
12161 static PyObject
*_wrap_delete_BTexture(PyObject
*self
, PyObject
*args
) {
12162 PyObject
*resultobj
;
12163 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12164 PyObject
* obj0
= 0 ;
12166 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BTexture",&obj0
)) goto fail
;
12167 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12170 Py_INCREF(Py_None
); resultobj
= Py_None
;
12177 static PyObject
* BTexture_swigregister(PyObject
*self
, PyObject
*args
) {
12179 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
12180 SWIG_TypeClientData(SWIGTYPE_p_otk__BTexture
, obj
);
12182 return Py_BuildValue((char *)"");
12184 static PyObject
*_wrap_new_OBTimer(PyObject
*self
, PyObject
*args
) {
12185 PyObject
*resultobj
;
12186 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12187 otk::OBTimeoutHandler arg2
= (otk::OBTimeoutHandler
) 0 ;
12188 otk::OBTimeoutData arg3
= (otk::OBTimeoutData
) 0 ;
12189 otk::OBTimer
*result
;
12190 PyObject
* obj0
= 0 ;
12191 PyObject
* obj1
= 0 ;
12192 PyObject
* obj2
= 0 ;
12194 if(!PyArg_ParseTuple(args
,(char *)"OOO:new_OBTimer",&obj0
,&obj1
,&obj2
)) goto fail
;
12195 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12196 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_otk__OBTimeoutHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12197 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, 0, SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12198 result
= (otk::OBTimer
*)new otk::OBTimer(arg1
,arg2
,arg3
);
12200 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OBTimer
, 1);
12207 static PyObject
*_wrap_delete_OBTimer(PyObject
*self
, PyObject
*args
) {
12208 PyObject
*resultobj
;
12209 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12210 PyObject
* obj0
= 0 ;
12212 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OBTimer",&obj0
)) goto fail
;
12213 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12216 Py_INCREF(Py_None
); resultobj
= Py_None
;
12223 static PyObject
*_wrap_OBTimer_fire(PyObject
*self
, PyObject
*args
) {
12224 PyObject
*resultobj
;
12225 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12226 PyObject
* obj0
= 0 ;
12228 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_fire",&obj0
)) goto fail
;
12229 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12232 Py_INCREF(Py_None
); resultobj
= Py_None
;
12239 static PyObject
*_wrap_OBTimer_timing(PyObject
*self
, PyObject
*args
) {
12240 PyObject
*resultobj
;
12241 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12243 PyObject
* obj0
= 0 ;
12245 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_timing",&obj0
)) goto fail
;
12246 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12247 result
= (bool)((otk::OBTimer
const *)arg1
)->timing();
12249 resultobj
= PyInt_FromLong((long)result
);
12256 static PyObject
*_wrap_OBTimer_recurring(PyObject
*self
, PyObject
*args
) {
12257 PyObject
*resultobj
;
12258 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12260 PyObject
* obj0
= 0 ;
12262 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_recurring",&obj0
)) goto fail
;
12263 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12264 result
= (bool)((otk::OBTimer
const *)arg1
)->recurring();
12266 resultobj
= PyInt_FromLong((long)result
);
12273 static PyObject
*_wrap_OBTimer_timeout(PyObject
*self
, PyObject
*args
) {
12274 PyObject
*resultobj
;
12275 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12277 PyObject
* obj0
= 0 ;
12279 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_timeout",&obj0
)) goto fail
;
12280 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12282 timeval
const &_result_ref
= ((otk::OBTimer
const *)arg1
)->timeout();
12283 result
= (timeval
*) &_result_ref
;
12286 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_timeval
, 0);
12293 static PyObject
*_wrap_OBTimer_startTime(PyObject
*self
, PyObject
*args
) {
12294 PyObject
*resultobj
;
12295 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12297 PyObject
* obj0
= 0 ;
12299 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_startTime",&obj0
)) goto fail
;
12300 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12302 timeval
const &_result_ref
= ((otk::OBTimer
const *)arg1
)->startTime();
12303 result
= (timeval
*) &_result_ref
;
12306 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_timeval
, 0);
12313 static PyObject
*_wrap_OBTimer_remainingTime(PyObject
*self
, PyObject
*args
) {
12314 PyObject
*resultobj
;
12315 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12316 timeval
*arg2
= 0 ;
12318 PyObject
* obj0
= 0 ;
12319 PyObject
* obj1
= 0 ;
12321 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimer_remainingTime",&obj0
,&obj1
)) goto fail
;
12322 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12323 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_timeval
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12324 if (arg2
== NULL
) {
12325 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
12327 result
= ((otk::OBTimer
const *)arg1
)->remainingTime((timeval
const &)*arg2
);
12330 timeval
* resultptr
;
12331 resultptr
= new timeval((timeval
&) result
);
12332 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_timeval
, 1);
12340 static PyObject
*_wrap_OBTimer_shouldFire(PyObject
*self
, PyObject
*args
) {
12341 PyObject
*resultobj
;
12342 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12343 timeval
*arg2
= 0 ;
12345 PyObject
* obj0
= 0 ;
12346 PyObject
* obj1
= 0 ;
12348 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimer_shouldFire",&obj0
,&obj1
)) goto fail
;
12349 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12350 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_timeval
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12351 if (arg2
== NULL
) {
12352 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
12354 result
= (bool)((otk::OBTimer
const *)arg1
)->shouldFire((timeval
const &)*arg2
);
12356 resultobj
= PyInt_FromLong((long)result
);
12363 static PyObject
*_wrap_OBTimer_endTime(PyObject
*self
, PyObject
*args
) {
12364 PyObject
*resultobj
;
12365 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12367 PyObject
* obj0
= 0 ;
12369 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_endTime",&obj0
)) goto fail
;
12370 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12371 result
= ((otk::OBTimer
const *)arg1
)->endTime();
12374 timeval
* resultptr
;
12375 resultptr
= new timeval((timeval
&) result
);
12376 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_timeval
, 1);
12384 static PyObject
*_wrap_OBTimer_setRecurring(PyObject
*self
, PyObject
*args
) {
12385 PyObject
*resultobj
;
12386 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12388 PyObject
* obj0
= 0 ;
12389 PyObject
* obj1
= 0 ;
12391 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimer_setRecurring",&obj0
,&obj1
)) goto fail
;
12392 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12393 arg2
= (bool) PyInt_AsLong(obj1
);
12394 if (PyErr_Occurred()) SWIG_fail
;
12395 (arg1
)->setRecurring(arg2
);
12397 Py_INCREF(Py_None
); resultobj
= Py_None
;
12404 static PyObject
*_wrap_OBTimer_setTimeout__SWIG_0(PyObject
*self
, PyObject
*args
) {
12405 PyObject
*resultobj
;
12406 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12408 PyObject
* obj0
= 0 ;
12410 if(!PyArg_ParseTuple(args
,(char *)"Ol:OBTimer_setTimeout",&obj0
,&arg2
)) goto fail
;
12411 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12412 (arg1
)->setTimeout(arg2
);
12414 Py_INCREF(Py_None
); resultobj
= Py_None
;
12421 static PyObject
*_wrap_OBTimer_setTimeout__SWIG_1(PyObject
*self
, PyObject
*args
) {
12422 PyObject
*resultobj
;
12423 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12424 timeval
*arg2
= 0 ;
12425 PyObject
* obj0
= 0 ;
12426 PyObject
* obj1
= 0 ;
12428 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimer_setTimeout",&obj0
,&obj1
)) goto fail
;
12429 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12430 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_timeval
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12431 if (arg2
== NULL
) {
12432 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
12434 (arg1
)->setTimeout((timeval
const &)*arg2
);
12436 Py_INCREF(Py_None
); resultobj
= Py_None
;
12443 static PyObject
*_wrap_OBTimer_setTimeout(PyObject
*self
, PyObject
*args
) {
12448 argc
= PyObject_Length(args
);
12449 for (ii
= 0; (ii
< argc
) && (ii
< 2); ii
++) {
12450 argv
[ii
] = PyTuple_GetItem(args
,ii
);
12456 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBTimer
, 0) == -1) {
12466 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_timeval
, 0) == -1) {
12474 return _wrap_OBTimer_setTimeout__SWIG_1(self
,args
);
12482 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBTimer
, 0) == -1) {
12491 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
12494 return _wrap_OBTimer_setTimeout__SWIG_0(self
,args
);
12499 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OBTimer_setTimeout'");
12504 static PyObject
*_wrap_OBTimer_start(PyObject
*self
, PyObject
*args
) {
12505 PyObject
*resultobj
;
12506 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12507 PyObject
* obj0
= 0 ;
12509 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_start",&obj0
)) goto fail
;
12510 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12513 Py_INCREF(Py_None
); resultobj
= Py_None
;
12520 static PyObject
*_wrap_OBTimer_stop(PyObject
*self
, PyObject
*args
) {
12521 PyObject
*resultobj
;
12522 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12523 PyObject
* obj0
= 0 ;
12525 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_stop",&obj0
)) goto fail
;
12526 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12529 Py_INCREF(Py_None
); resultobj
= Py_None
;
12536 static PyObject
* OBTimer_swigregister(PyObject
*self
, PyObject
*args
) {
12538 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
12539 SWIG_TypeClientData(SWIGTYPE_p_otk__OBTimer
, obj
);
12541 return Py_BuildValue((char *)"");
12543 static PyObject
*_wrap_new_OBTimerQueueManager(PyObject
*self
, PyObject
*args
) {
12544 PyObject
*resultobj
;
12545 otk::OBTimerQueueManager
*result
;
12547 if(!PyArg_ParseTuple(args
,(char *)":new_OBTimerQueueManager")) goto fail
;
12548 result
= (otk::OBTimerQueueManager
*)new otk::OBTimerQueueManager();
12550 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OBTimerQueueManager
, 1);
12557 static PyObject
*_wrap_delete_OBTimerQueueManager(PyObject
*self
, PyObject
*args
) {
12558 PyObject
*resultobj
;
12559 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12560 PyObject
* obj0
= 0 ;
12562 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OBTimerQueueManager",&obj0
)) goto fail
;
12563 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12566 Py_INCREF(Py_None
); resultobj
= Py_None
;
12573 static PyObject
*_wrap_OBTimerQueueManager_fire(PyObject
*self
, PyObject
*args
) {
12574 PyObject
*resultobj
;
12575 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12576 PyObject
* obj0
= 0 ;
12578 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimerQueueManager_fire",&obj0
)) goto fail
;
12579 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12582 Py_INCREF(Py_None
); resultobj
= Py_None
;
12589 static PyObject
*_wrap_OBTimerQueueManager_addTimer(PyObject
*self
, PyObject
*args
) {
12590 PyObject
*resultobj
;
12591 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12592 otk::OBTimer
*arg2
= (otk::OBTimer
*) 0 ;
12593 PyObject
* obj0
= 0 ;
12594 PyObject
* obj1
= 0 ;
12596 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimerQueueManager_addTimer",&obj0
,&obj1
)) goto fail
;
12597 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12598 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12599 (arg1
)->addTimer(arg2
);
12601 Py_INCREF(Py_None
); resultobj
= Py_None
;
12608 static PyObject
*_wrap_OBTimerQueueManager_removeTimer(PyObject
*self
, PyObject
*args
) {
12609 PyObject
*resultobj
;
12610 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12611 otk::OBTimer
*arg2
= (otk::OBTimer
*) 0 ;
12612 PyObject
* obj0
= 0 ;
12613 PyObject
* obj1
= 0 ;
12615 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimerQueueManager_removeTimer",&obj0
,&obj1
)) goto fail
;
12616 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12617 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12618 (arg1
)->removeTimer(arg2
);
12620 Py_INCREF(Py_None
); resultobj
= Py_None
;
12627 static PyObject
* OBTimerQueueManager_swigregister(PyObject
*self
, PyObject
*args
) {
12629 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
12630 SWIG_TypeClientData(SWIGTYPE_p_otk__OBTimerQueueManager
, obj
);
12632 return Py_BuildValue((char *)"");
12634 static int _wrap_BSENTINEL_set(PyObject
*_val
) {
12635 PyErr_SetString(PyExc_TypeError
,"Variable BSENTINEL is read-only.");
12640 static PyObject
*_wrap_BSENTINEL_get() {
12643 pyobj
= PyInt_FromLong((long)otk::BSENTINEL
);
12648 static PyObject
*_wrap_expandTilde(PyObject
*self
, PyObject
*args
) {
12649 PyObject
*resultobj
;
12650 std::string
*arg1
= 0 ;
12651 std::string result
;
12652 std::string temp1
;
12653 PyObject
* obj0
= 0 ;
12655 if(!PyArg_ParseTuple(args
,(char *)"O:expandTilde",&obj0
)) goto fail
;
12657 if (PyString_Check(obj0
)) {
12658 temp1
= std::string(PyString_AsString(obj0
));
12661 SWIG_exception(SWIG_TypeError
, "string expected");
12664 result
= otk::expandTilde((std::string
const &)*arg1
);
12667 resultobj
= PyString_FromString((&result
)->c_str());
12675 static PyObject
*_wrap_bexec(PyObject
*self
, PyObject
*args
) {
12676 PyObject
*resultobj
;
12677 std::string
*arg1
= 0 ;
12678 std::string
*arg2
= 0 ;
12679 std::string temp1
;
12680 std::string temp2
;
12681 PyObject
* obj0
= 0 ;
12682 PyObject
* obj1
= 0 ;
12684 if(!PyArg_ParseTuple(args
,(char *)"OO:bexec",&obj0
,&obj1
)) goto fail
;
12686 if (PyString_Check(obj0
)) {
12687 temp1
= std::string(PyString_AsString(obj0
));
12690 SWIG_exception(SWIG_TypeError
, "string expected");
12694 if (PyString_Check(obj1
)) {
12695 temp2
= std::string(PyString_AsString(obj1
));
12698 SWIG_exception(SWIG_TypeError
, "string expected");
12701 otk::bexec((std::string
const &)*arg1
,(std::string
const &)*arg2
);
12703 Py_INCREF(Py_None
); resultobj
= Py_None
;
12710 static PyObject
*_wrap_textPropertyToString(PyObject
*self
, PyObject
*args
) {
12711 PyObject
*resultobj
;
12712 Display
*arg1
= (Display
*) 0 ;
12713 XTextProperty
*arg2
= 0 ;
12714 std::string result
;
12715 PyObject
* obj0
= 0 ;
12716 PyObject
* obj1
= 0 ;
12718 if(!PyArg_ParseTuple(args
,(char *)"OO:textPropertyToString",&obj0
,&obj1
)) goto fail
;
12719 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12720 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XTextProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12721 if (arg2
== NULL
) {
12722 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
12724 result
= otk::textPropertyToString(arg1
,*arg2
);
12727 resultobj
= PyString_FromString((&result
)->c_str());
12735 static PyObject
*_wrap_itostring_unsigned_long(PyObject
*self
, PyObject
*args
) {
12736 PyObject
*resultobj
;
12737 unsigned long arg1
;
12738 std::string result
;
12739 PyObject
* obj0
= 0 ;
12741 if(!PyArg_ParseTuple(args
,(char *)"O:itostring_unsigned_long",&obj0
)) goto fail
;
12742 arg1
= (unsigned long) PyInt_AsLong(obj0
);
12743 if (PyErr_Occurred()) SWIG_fail
;
12744 result
= otk::itostring(arg1
);
12747 resultobj
= PyString_FromString((&result
)->c_str());
12755 static PyObject
*_wrap_itostring_long(PyObject
*self
, PyObject
*args
) {
12756 PyObject
*resultobj
;
12758 std::string result
;
12760 if(!PyArg_ParseTuple(args
,(char *)"l:itostring_long",&arg1
)) goto fail
;
12761 result
= otk::itostring(arg1
);
12764 resultobj
= PyString_FromString((&result
)->c_str());
12772 static PyObject
*_wrap_itostring_unsigned(PyObject
*self
, PyObject
*args
) {
12773 PyObject
*resultobj
;
12774 unsigned int arg1
;
12775 std::string result
;
12776 PyObject
* obj0
= 0 ;
12778 if(!PyArg_ParseTuple(args
,(char *)"O:itostring_unsigned",&obj0
)) goto fail
;
12779 arg1
= (unsigned int) PyInt_AsLong(obj0
);
12780 if (PyErr_Occurred()) SWIG_fail
;
12781 result
= otk::itostring(arg1
);
12784 resultobj
= PyString_FromString((&result
)->c_str());
12792 static PyObject
*_wrap_itostring(PyObject
*self
, PyObject
*args
) {
12793 PyObject
*resultobj
;
12795 std::string result
;
12797 if(!PyArg_ParseTuple(args
,(char *)"i:itostring",&arg1
)) goto fail
;
12798 result
= otk::itostring(arg1
);
12801 resultobj
= PyString_FromString((&result
)->c_str());
12809 static PyObject
*_wrap_basename(PyObject
*self
, PyObject
*args
) {
12810 PyObject
*resultobj
;
12811 std::string
*arg1
= 0 ;
12812 std::string result
;
12813 std::string temp1
;
12814 PyObject
* obj0
= 0 ;
12816 if(!PyArg_ParseTuple(args
,(char *)"O:basename",&obj0
)) goto fail
;
12818 if (PyString_Check(obj0
)) {
12819 temp1
= std::string(PyString_AsString(obj0
));
12822 SWIG_exception(SWIG_TypeError
, "string expected");
12825 result
= otk::basename((std::string
const &)*arg1
);
12828 resultobj
= PyString_FromString((&result
)->c_str());
12836 static PyMethodDef SwigMethods
[] = {
12837 { (char *)"new_OtkEventDispatcher", _wrap_new_OtkEventDispatcher
, METH_VARARGS
},
12838 { (char *)"delete_OtkEventDispatcher", _wrap_delete_OtkEventDispatcher
, METH_VARARGS
},
12839 { (char *)"OtkEventDispatcher_clearAllHandlers", _wrap_OtkEventDispatcher_clearAllHandlers
, METH_VARARGS
},
12840 { (char *)"OtkEventDispatcher_registerHandler", _wrap_OtkEventDispatcher_registerHandler
, METH_VARARGS
},
12841 { (char *)"OtkEventDispatcher_clearHandler", _wrap_OtkEventDispatcher_clearHandler
, METH_VARARGS
},
12842 { (char *)"OtkEventDispatcher_dispatchEvents", _wrap_OtkEventDispatcher_dispatchEvents
, METH_VARARGS
},
12843 { (char *)"OtkEventDispatcher_setFallbackHandler", _wrap_OtkEventDispatcher_setFallbackHandler
, METH_VARARGS
},
12844 { (char *)"OtkEventDispatcher_getFallbackHandler", _wrap_OtkEventDispatcher_getFallbackHandler
, METH_VARARGS
},
12845 { (char *)"OtkEventDispatcher_setMasterHandler", _wrap_OtkEventDispatcher_setMasterHandler
, METH_VARARGS
},
12846 { (char *)"OtkEventDispatcher_getMasterHandler", _wrap_OtkEventDispatcher_getMasterHandler
, METH_VARARGS
},
12847 { (char *)"OtkEventDispatcher_findHandler", _wrap_OtkEventDispatcher_findHandler
, METH_VARARGS
},
12848 { (char *)"OtkEventDispatcher_lastTime", _wrap_OtkEventDispatcher_lastTime
, METH_VARARGS
},
12849 { (char *)"OtkEventDispatcher_swigregister", OtkEventDispatcher_swigregister
, METH_VARARGS
},
12850 { (char *)"OtkEventHandler_handle", _wrap_OtkEventHandler_handle
, METH_VARARGS
},
12851 { (char *)"OtkEventHandler_keyPressHandler", _wrap_OtkEventHandler_keyPressHandler
, METH_VARARGS
},
12852 { (char *)"OtkEventHandler_keyReleaseHandler", _wrap_OtkEventHandler_keyReleaseHandler
, METH_VARARGS
},
12853 { (char *)"OtkEventHandler_buttonPressHandler", _wrap_OtkEventHandler_buttonPressHandler
, METH_VARARGS
},
12854 { (char *)"OtkEventHandler_buttonReleaseHandler", _wrap_OtkEventHandler_buttonReleaseHandler
, METH_VARARGS
},
12855 { (char *)"OtkEventHandler_motionHandler", _wrap_OtkEventHandler_motionHandler
, METH_VARARGS
},
12856 { (char *)"OtkEventHandler_enterHandler", _wrap_OtkEventHandler_enterHandler
, METH_VARARGS
},
12857 { (char *)"OtkEventHandler_leaveHandler", _wrap_OtkEventHandler_leaveHandler
, METH_VARARGS
},
12858 { (char *)"OtkEventHandler_focusHandler", _wrap_OtkEventHandler_focusHandler
, METH_VARARGS
},
12859 { (char *)"OtkEventHandler_unfocusHandler", _wrap_OtkEventHandler_unfocusHandler
, METH_VARARGS
},
12860 { (char *)"OtkEventHandler_exposeHandler", _wrap_OtkEventHandler_exposeHandler
, METH_VARARGS
},
12861 { (char *)"OtkEventHandler_graphicsExposeHandler", _wrap_OtkEventHandler_graphicsExposeHandler
, METH_VARARGS
},
12862 { (char *)"OtkEventHandler_noExposeEventHandler", _wrap_OtkEventHandler_noExposeEventHandler
, METH_VARARGS
},
12863 { (char *)"OtkEventHandler_circulateRequestHandler", _wrap_OtkEventHandler_circulateRequestHandler
, METH_VARARGS
},
12864 { (char *)"OtkEventHandler_configureRequestHandler", _wrap_OtkEventHandler_configureRequestHandler
, METH_VARARGS
},
12865 { (char *)"OtkEventHandler_mapRequestHandler", _wrap_OtkEventHandler_mapRequestHandler
, METH_VARARGS
},
12866 { (char *)"OtkEventHandler_resizeRequestHandler", _wrap_OtkEventHandler_resizeRequestHandler
, METH_VARARGS
},
12867 { (char *)"OtkEventHandler_circulateHandler", _wrap_OtkEventHandler_circulateHandler
, METH_VARARGS
},
12868 { (char *)"OtkEventHandler_configureHandler", _wrap_OtkEventHandler_configureHandler
, METH_VARARGS
},
12869 { (char *)"OtkEventHandler_createHandler", _wrap_OtkEventHandler_createHandler
, METH_VARARGS
},
12870 { (char *)"OtkEventHandler_destroyHandler", _wrap_OtkEventHandler_destroyHandler
, METH_VARARGS
},
12871 { (char *)"OtkEventHandler_gravityHandler", _wrap_OtkEventHandler_gravityHandler
, METH_VARARGS
},
12872 { (char *)"OtkEventHandler_mapHandler", _wrap_OtkEventHandler_mapHandler
, METH_VARARGS
},
12873 { (char *)"OtkEventHandler_mappingHandler", _wrap_OtkEventHandler_mappingHandler
, METH_VARARGS
},
12874 { (char *)"OtkEventHandler_reparentHandler", _wrap_OtkEventHandler_reparentHandler
, METH_VARARGS
},
12875 { (char *)"OtkEventHandler_unmapHandler", _wrap_OtkEventHandler_unmapHandler
, METH_VARARGS
},
12876 { (char *)"OtkEventHandler_visibilityHandler", _wrap_OtkEventHandler_visibilityHandler
, METH_VARARGS
},
12877 { (char *)"OtkEventHandler_colorMapHandler", _wrap_OtkEventHandler_colorMapHandler
, METH_VARARGS
},
12878 { (char *)"OtkEventHandler_propertyHandler", _wrap_OtkEventHandler_propertyHandler
, METH_VARARGS
},
12879 { (char *)"OtkEventHandler_selectionClearHandler", _wrap_OtkEventHandler_selectionClearHandler
, METH_VARARGS
},
12880 { (char *)"OtkEventHandler_selectionHandler", _wrap_OtkEventHandler_selectionHandler
, METH_VARARGS
},
12881 { (char *)"OtkEventHandler_selectionRequestHandler", _wrap_OtkEventHandler_selectionRequestHandler
, METH_VARARGS
},
12882 { (char *)"OtkEventHandler_clientMessageHandler", _wrap_OtkEventHandler_clientMessageHandler
, METH_VARARGS
},
12883 { (char *)"delete_OtkEventHandler", _wrap_delete_OtkEventHandler
, METH_VARARGS
},
12884 { (char *)"OtkEventHandler_swigregister", OtkEventHandler_swigregister
, METH_VARARGS
},
12885 { (char *)"new_OtkWidget", _wrap_new_OtkWidget
, METH_VARARGS
},
12886 { (char *)"delete_OtkWidget", _wrap_delete_OtkWidget
, METH_VARARGS
},
12887 { (char *)"OtkWidget_update", _wrap_OtkWidget_update
, METH_VARARGS
},
12888 { (char *)"OtkWidget_exposeHandler", _wrap_OtkWidget_exposeHandler
, METH_VARARGS
},
12889 { (char *)"OtkWidget_configureHandler", _wrap_OtkWidget_configureHandler
, METH_VARARGS
},
12890 { (char *)"OtkWidget_window", _wrap_OtkWidget_window
, METH_VARARGS
},
12891 { (char *)"OtkWidget_parent", _wrap_OtkWidget_parent
, METH_VARARGS
},
12892 { (char *)"OtkWidget_children", _wrap_OtkWidget_children
, METH_VARARGS
},
12893 { (char *)"OtkWidget_screen", _wrap_OtkWidget_screen
, METH_VARARGS
},
12894 { (char *)"OtkWidget_rect", _wrap_OtkWidget_rect
, METH_VARARGS
},
12895 { (char *)"OtkWidget_move", _wrap_OtkWidget_move
, METH_VARARGS
},
12896 { (char *)"OtkWidget_setWidth", _wrap_OtkWidget_setWidth
, METH_VARARGS
},
12897 { (char *)"OtkWidget_setHeight", _wrap_OtkWidget_setHeight
, METH_VARARGS
},
12898 { (char *)"OtkWidget_width", _wrap_OtkWidget_width
, METH_VARARGS
},
12899 { (char *)"OtkWidget_height", _wrap_OtkWidget_height
, METH_VARARGS
},
12900 { (char *)"OtkWidget_resize", _wrap_OtkWidget_resize
, METH_VARARGS
},
12901 { (char *)"OtkWidget_setGeometry", _wrap_OtkWidget_setGeometry
, METH_VARARGS
},
12902 { (char *)"OtkWidget_isVisible", _wrap_OtkWidget_isVisible
, METH_VARARGS
},
12903 { (char *)"OtkWidget_show", _wrap_OtkWidget_show
, METH_VARARGS
},
12904 { (char *)"OtkWidget_hide", _wrap_OtkWidget_hide
, METH_VARARGS
},
12905 { (char *)"OtkWidget_isFocused", _wrap_OtkWidget_isFocused
, METH_VARARGS
},
12906 { (char *)"OtkWidget_focus", _wrap_OtkWidget_focus
, METH_VARARGS
},
12907 { (char *)"OtkWidget_unfocus", _wrap_OtkWidget_unfocus
, METH_VARARGS
},
12908 { (char *)"OtkWidget_hasGrabbedMouse", _wrap_OtkWidget_hasGrabbedMouse
, METH_VARARGS
},
12909 { (char *)"OtkWidget_grabMouse", _wrap_OtkWidget_grabMouse
, METH_VARARGS
},
12910 { (char *)"OtkWidget_ungrabMouse", _wrap_OtkWidget_ungrabMouse
, METH_VARARGS
},
12911 { (char *)"OtkWidget_hasGrabbedKeyboard", _wrap_OtkWidget_hasGrabbedKeyboard
, METH_VARARGS
},
12912 { (char *)"OtkWidget_grabKeyboard", _wrap_OtkWidget_grabKeyboard
, METH_VARARGS
},
12913 { (char *)"OtkWidget_ungrabKeyboard", _wrap_OtkWidget_ungrabKeyboard
, METH_VARARGS
},
12914 { (char *)"OtkWidget_texture", _wrap_OtkWidget_texture
, METH_VARARGS
},
12915 { (char *)"OtkWidget_setTexture", _wrap_OtkWidget_setTexture
, METH_VARARGS
},
12916 { (char *)"OtkWidget_borderColor", _wrap_OtkWidget_borderColor
, METH_VARARGS
},
12917 { (char *)"OtkWidget_setBorderColor", _wrap_OtkWidget_setBorderColor
, METH_VARARGS
},
12918 { (char *)"OtkWidget_borderWidth", _wrap_OtkWidget_borderWidth
, METH_VARARGS
},
12919 { (char *)"OtkWidget_setBorderWidth", _wrap_OtkWidget_setBorderWidth
, METH_VARARGS
},
12920 { (char *)"OtkWidget_addChild", _wrap_OtkWidget_addChild
, METH_VARARGS
},
12921 { (char *)"OtkWidget_removeChild", _wrap_OtkWidget_removeChild
, METH_VARARGS
},
12922 { (char *)"OtkWidget_isStretchableHorz", _wrap_OtkWidget_isStretchableHorz
, METH_VARARGS
},
12923 { (char *)"OtkWidget_setStretchableHorz", _wrap_OtkWidget_setStretchableHorz
, METH_VARARGS
},
12924 { (char *)"OtkWidget_isStretchableVert", _wrap_OtkWidget_isStretchableVert
, METH_VARARGS
},
12925 { (char *)"OtkWidget_setStretchableVert", _wrap_OtkWidget_setStretchableVert
, METH_VARARGS
},
12926 { (char *)"OtkWidget_cursor", _wrap_OtkWidget_cursor
, METH_VARARGS
},
12927 { (char *)"OtkWidget_setCursor", _wrap_OtkWidget_setCursor
, METH_VARARGS
},
12928 { (char *)"OtkWidget_bevelWidth", _wrap_OtkWidget_bevelWidth
, METH_VARARGS
},
12929 { (char *)"OtkWidget_setBevelWidth", _wrap_OtkWidget_setBevelWidth
, METH_VARARGS
},
12930 { (char *)"OtkWidget_direction", _wrap_OtkWidget_direction
, METH_VARARGS
},
12931 { (char *)"OtkWidget_setDirection", _wrap_OtkWidget_setDirection
, METH_VARARGS
},
12932 { (char *)"OtkWidget_style", _wrap_OtkWidget_style
, METH_VARARGS
},
12933 { (char *)"OtkWidget_setStyle", _wrap_OtkWidget_setStyle
, METH_VARARGS
},
12934 { (char *)"OtkWidget_eventDispatcher", _wrap_OtkWidget_eventDispatcher
, METH_VARARGS
},
12935 { (char *)"OtkWidget_setEventDispatcher", _wrap_OtkWidget_setEventDispatcher
, METH_VARARGS
},
12936 { (char *)"OtkWidget_swigregister", OtkWidget_swigregister
, METH_VARARGS
},
12937 { (char *)"new_OtkFocusWidget", _wrap_new_OtkFocusWidget
, METH_VARARGS
},
12938 { (char *)"delete_OtkFocusWidget", _wrap_delete_OtkFocusWidget
, METH_VARARGS
},
12939 { (char *)"OtkFocusWidget_focus", _wrap_OtkFocusWidget_focus
, METH_VARARGS
},
12940 { (char *)"OtkFocusWidget_unfocus", _wrap_OtkFocusWidget_unfocus
, METH_VARARGS
},
12941 { (char *)"OtkFocusWidget_setTexture", _wrap_OtkFocusWidget_setTexture
, METH_VARARGS
},
12942 { (char *)"OtkFocusWidget_setBorderColor", _wrap_OtkFocusWidget_setBorderColor
, METH_VARARGS
},
12943 { (char *)"OtkFocusWidget_setUnfocusTexture", _wrap_OtkFocusWidget_setUnfocusTexture
, METH_VARARGS
},
12944 { (char *)"OtkFocusWidget_getUnfocusTexture", _wrap_OtkFocusWidget_getUnfocusTexture
, METH_VARARGS
},
12945 { (char *)"OtkFocusWidget_setUnfocusBorderColor", _wrap_OtkFocusWidget_setUnfocusBorderColor
, METH_VARARGS
},
12946 { (char *)"OtkFocusWidget_getUnfocusBorderColor", _wrap_OtkFocusWidget_getUnfocusBorderColor
, METH_VARARGS
},
12947 { (char *)"OtkFocusWidget_isFocused", _wrap_OtkFocusWidget_isFocused
, METH_VARARGS
},
12948 { (char *)"OtkFocusWidget_isUnfocused", _wrap_OtkFocusWidget_isUnfocused
, METH_VARARGS
},
12949 { (char *)"OtkFocusWidget_swigregister", OtkFocusWidget_swigregister
, METH_VARARGS
},
12950 { (char *)"new_OtkFocusLabel", _wrap_new_OtkFocusLabel
, METH_VARARGS
},
12951 { (char *)"delete_OtkFocusLabel", _wrap_delete_OtkFocusLabel
, METH_VARARGS
},
12952 { (char *)"OtkFocusLabel_getText", _wrap_OtkFocusLabel_getText
, METH_VARARGS
},
12953 { (char *)"OtkFocusLabel_setText", _wrap_OtkFocusLabel_setText
, METH_VARARGS
},
12954 { (char *)"OtkFocusLabel_update", _wrap_OtkFocusLabel_update
, METH_VARARGS
},
12955 { (char *)"OtkFocusLabel_setStyle", _wrap_OtkFocusLabel_setStyle
, METH_VARARGS
},
12956 { (char *)"OtkFocusLabel_swigregister", OtkFocusLabel_swigregister
, METH_VARARGS
},
12957 { (char *)"new_OtkAppWidget", _wrap_new_OtkAppWidget
, METH_VARARGS
},
12958 { (char *)"delete_OtkAppWidget", _wrap_delete_OtkAppWidget
, METH_VARARGS
},
12959 { (char *)"OtkAppWidget_show", _wrap_OtkAppWidget_show
, METH_VARARGS
},
12960 { (char *)"OtkAppWidget_hide", _wrap_OtkAppWidget_hide
, METH_VARARGS
},
12961 { (char *)"OtkAppWidget_clientMessageHandler", _wrap_OtkAppWidget_clientMessageHandler
, METH_VARARGS
},
12962 { (char *)"OtkAppWidget_swigregister", OtkAppWidget_swigregister
, METH_VARARGS
},
12963 { (char *)"new_OtkApplication", _wrap_new_OtkApplication
, METH_VARARGS
},
12964 { (char *)"delete_OtkApplication", _wrap_delete_OtkApplication
, METH_VARARGS
},
12965 { (char *)"OtkApplication_run", _wrap_OtkApplication_run
, METH_VARARGS
},
12966 { (char *)"OtkApplication_setDockable", _wrap_OtkApplication_setDockable
, METH_VARARGS
},
12967 { (char *)"OtkApplication_isDockable", _wrap_OtkApplication_isDockable
, METH_VARARGS
},
12968 { (char *)"OtkApplication_getStyle", _wrap_OtkApplication_getStyle
, METH_VARARGS
},
12969 { (char *)"OtkApplication_swigregister", OtkApplication_swigregister
, METH_VARARGS
},
12970 { (char *)"new_PointerAssassin", _wrap_new_PointerAssassin
, METH_VARARGS
},
12971 { (char *)"delete_PointerAssassin", _wrap_delete_PointerAssassin
, METH_VARARGS
},
12972 { (char *)"PointerAssassin_swigregister", PointerAssassin_swigregister
, METH_VARARGS
},
12973 { (char *)"new_OtkButton", _wrap_new_OtkButton
, METH_VARARGS
},
12974 { (char *)"delete_OtkButton", _wrap_delete_OtkButton
, METH_VARARGS
},
12975 { (char *)"OtkButton_getPressedFocusTexture", _wrap_OtkButton_getPressedFocusTexture
, METH_VARARGS
},
12976 { (char *)"OtkButton_setPressedFocusTexture", _wrap_OtkButton_setPressedFocusTexture
, METH_VARARGS
},
12977 { (char *)"OtkButton_getPressedUnfocusTexture", _wrap_OtkButton_getPressedUnfocusTexture
, METH_VARARGS
},
12978 { (char *)"OtkButton_setPressedUnfocusTexture", _wrap_OtkButton_setPressedUnfocusTexture
, METH_VARARGS
},
12979 { (char *)"OtkButton_setTexture", _wrap_OtkButton_setTexture
, METH_VARARGS
},
12980 { (char *)"OtkButton_setUnfocusTexture", _wrap_OtkButton_setUnfocusTexture
, METH_VARARGS
},
12981 { (char *)"OtkButton_isPressed", _wrap_OtkButton_isPressed
, METH_VARARGS
},
12982 { (char *)"OtkButton_press", _wrap_OtkButton_press
, METH_VARARGS
},
12983 { (char *)"OtkButton_release", _wrap_OtkButton_release
, METH_VARARGS
},
12984 { (char *)"OtkButton_buttonPressHandler", _wrap_OtkButton_buttonPressHandler
, METH_VARARGS
},
12985 { (char *)"OtkButton_buttonReleaseHandler", _wrap_OtkButton_buttonReleaseHandler
, METH_VARARGS
},
12986 { (char *)"OtkButton_setStyle", _wrap_OtkButton_setStyle
, METH_VARARGS
},
12987 { (char *)"OtkButton_swigregister", OtkButton_swigregister
, METH_VARARGS
},
12988 { (char *)"new_BColor", _wrap_new_BColor
, METH_VARARGS
},
12989 { (char *)"delete_BColor", _wrap_delete_BColor
, METH_VARARGS
},
12990 { (char *)"BColor_name", _wrap_BColor_name
, METH_VARARGS
},
12991 { (char *)"BColor_red", _wrap_BColor_red
, METH_VARARGS
},
12992 { (char *)"BColor_green", _wrap_BColor_green
, METH_VARARGS
},
12993 { (char *)"BColor_blue", _wrap_BColor_blue
, METH_VARARGS
},
12994 { (char *)"BColor_setRGB", _wrap_BColor_setRGB
, METH_VARARGS
},
12995 { (char *)"BColor_screen", _wrap_BColor_screen
, METH_VARARGS
},
12996 { (char *)"BColor_setScreen", _wrap_BColor_setScreen
, METH_VARARGS
},
12997 { (char *)"BColor_isAllocated", _wrap_BColor_isAllocated
, METH_VARARGS
},
12998 { (char *)"BColor_isValid", _wrap_BColor_isValid
, METH_VARARGS
},
12999 { (char *)"BColor_pixel", _wrap_BColor_pixel
, METH_VARARGS
},
13000 { (char *)"BColor_equals", _wrap_BColor_equals
, METH_VARARGS
},
13001 { (char *)"BColor_cleanupColorCache", _wrap_BColor_cleanupColorCache
, METH_VARARGS
},
13002 { (char *)"BColor_swigregister", BColor_swigregister
, METH_VARARGS
},
13003 { (char *)"new_Configuration", _wrap_new_Configuration
, METH_VARARGS
},
13004 { (char *)"delete_Configuration", _wrap_delete_Configuration
, METH_VARARGS
},
13005 { (char *)"Configuration_file", _wrap_Configuration_file
, METH_VARARGS
},
13006 { (char *)"Configuration_setFile", _wrap_Configuration_setFile
, METH_VARARGS
},
13007 { (char *)"Configuration_autoSave", _wrap_Configuration_autoSave
, METH_VARARGS
},
13008 { (char *)"Configuration_setAutoSave", _wrap_Configuration_setAutoSave
, METH_VARARGS
},
13009 { (char *)"Configuration_isModified", _wrap_Configuration_isModified
, METH_VARARGS
},
13010 { (char *)"Configuration_save", _wrap_Configuration_save
, METH_VARARGS
},
13011 { (char *)"Configuration_load", _wrap_Configuration_load
, METH_VARARGS
},
13012 { (char *)"Configuration_merge", _wrap_Configuration_merge
, METH_VARARGS
},
13013 { (char *)"Configuration_create", _wrap_Configuration_create
, METH_VARARGS
},
13014 { (char *)"Configuration_setValue_bool", _wrap_Configuration_setValue_bool
, METH_VARARGS
},
13015 { (char *)"Configuration_setValue", _wrap_Configuration_setValue
, METH_VARARGS
},
13016 { (char *)"Configuration_setValue_unsigned", _wrap_Configuration_setValue_unsigned
, METH_VARARGS
},
13017 { (char *)"Configuration_setValue_long", _wrap_Configuration_setValue_long
, METH_VARARGS
},
13018 { (char *)"Configuration_setValue_unsignedlong", _wrap_Configuration_setValue_unsignedlong
, METH_VARARGS
},
13019 { (char *)"Configuration_setValue_string", _wrap_Configuration_setValue_string
, METH_VARARGS
},
13020 { (char *)"Configuration_setValue_charptr", _wrap_Configuration_setValue_charptr
, METH_VARARGS
},
13021 { (char *)"Configuration_getValue", _wrap_Configuration_getValue
, METH_VARARGS
},
13022 { (char *)"Configuration_swigregister", Configuration_swigregister
, METH_VARARGS
},
13023 { (char *)"OBDisplay_initialize", _wrap_OBDisplay_initialize
, METH_VARARGS
},
13024 { (char *)"OBDisplay_destroy", _wrap_OBDisplay_destroy
, METH_VARARGS
},
13025 { (char *)"OBDisplay_gcCache", _wrap_OBDisplay_gcCache
, METH_VARARGS
},
13026 { (char *)"OBDisplay_screenInfo", _wrap_OBDisplay_screenInfo
, METH_VARARGS
},
13027 { (char *)"OBDisplay_shape", _wrap_OBDisplay_shape
, METH_VARARGS
},
13028 { (char *)"OBDisplay_shapeEventBase", _wrap_OBDisplay_shapeEventBase
, METH_VARARGS
},
13029 { (char *)"OBDisplay_xinerama", _wrap_OBDisplay_xinerama
, METH_VARARGS
},
13030 { (char *)"OBDisplay_grab", _wrap_OBDisplay_grab
, METH_VARARGS
},
13031 { (char *)"OBDisplay_ungrab", _wrap_OBDisplay_ungrab
, METH_VARARGS
},
13032 { (char *)"OBDisplay_grabButton", _wrap_OBDisplay_grabButton
, METH_VARARGS
},
13033 { (char *)"OBDisplay_ungrabButton", _wrap_OBDisplay_ungrabButton
, METH_VARARGS
},
13034 { (char *)"OBDisplay_grabKey", _wrap_OBDisplay_grabKey
, METH_VARARGS
},
13035 { (char *)"OBDisplay_ungrabKey", _wrap_OBDisplay_ungrabKey
, METH_VARARGS
},
13036 { (char *)"delete_OBDisplay", _wrap_delete_OBDisplay
, METH_VARARGS
},
13037 { (char *)"OBDisplay_swigregister", OBDisplay_swigregister
, METH_VARARGS
},
13038 { (char *)"BFont_fallbackFont", _wrap_BFont_fallbackFont
, METH_VARARGS
},
13039 { (char *)"BFont_setFallbackFont", _wrap_BFont_setFallbackFont
, METH_VARARGS
},
13040 { (char *)"new_BFont", _wrap_new_BFont
, METH_VARARGS
},
13041 { (char *)"delete_BFont", _wrap_delete_BFont
, METH_VARARGS
},
13042 { (char *)"BFont_fontstring", _wrap_BFont_fontstring
, METH_VARARGS
},
13043 { (char *)"BFont_height", _wrap_BFont_height
, METH_VARARGS
},
13044 { (char *)"BFont_maxCharWidth", _wrap_BFont_maxCharWidth
, METH_VARARGS
},
13045 { (char *)"BFont_measureString", _wrap_BFont_measureString
, METH_VARARGS
},
13046 { (char *)"BFont_drawString", _wrap_BFont_drawString
, METH_VARARGS
},
13047 { (char *)"BFont_swigregister", BFont_swigregister
, METH_VARARGS
},
13048 { (char *)"BGCCacheContext_set", _wrap_BGCCacheContext_set
, METH_VARARGS
},
13049 { (char *)"delete_BGCCacheContext", _wrap_delete_BGCCacheContext
, METH_VARARGS
},
13050 { (char *)"BGCCacheContext_swigregister", BGCCacheContext_swigregister
, METH_VARARGS
},
13051 { (char *)"BGCCacheItem_gc", _wrap_BGCCacheItem_gc
, METH_VARARGS
},
13052 { (char *)"delete_BGCCacheItem", _wrap_delete_BGCCacheItem
, METH_VARARGS
},
13053 { (char *)"BGCCacheItem_swigregister", BGCCacheItem_swigregister
, METH_VARARGS
},
13054 { (char *)"new_BGCCache", _wrap_new_BGCCache
, METH_VARARGS
},
13055 { (char *)"delete_BGCCache", _wrap_delete_BGCCache
, METH_VARARGS
},
13056 { (char *)"BGCCache_purge", _wrap_BGCCache_purge
, METH_VARARGS
},
13057 { (char *)"BGCCache_find", _wrap_BGCCache_find
, METH_VARARGS
},
13058 { (char *)"BGCCache_release", _wrap_BGCCache_release
, METH_VARARGS
},
13059 { (char *)"BGCCache_swigregister", BGCCache_swigregister
, METH_VARARGS
},
13060 { (char *)"new_BPen", _wrap_new_BPen
, METH_VARARGS
},
13061 { (char *)"delete_BPen", _wrap_delete_BPen
, METH_VARARGS
},
13062 { (char *)"BPen_gc", _wrap_BPen_gc
, METH_VARARGS
},
13063 { (char *)"BPen_swigregister", BPen_swigregister
, METH_VARARGS
},
13064 { (char *)"new_BImage", _wrap_new_BImage
, METH_VARARGS
},
13065 { (char *)"delete_BImage", _wrap_delete_BImage
, METH_VARARGS
},
13066 { (char *)"BImage_render", _wrap_BImage_render
, METH_VARARGS
},
13067 { (char *)"BImage_swigregister", BImage_swigregister
, METH_VARARGS
},
13068 { (char *)"new_BImageControl", _wrap_new_BImageControl
, METH_VARARGS
},
13069 { (char *)"delete_BImageControl", _wrap_delete_BImageControl
, METH_VARARGS
},
13070 { (char *)"BImageControl_doDither", _wrap_BImageControl_doDither
, METH_VARARGS
},
13071 { (char *)"BImageControl_getScreenInfo", _wrap_BImageControl_getScreenInfo
, METH_VARARGS
},
13072 { (char *)"BImageControl_getDrawable", _wrap_BImageControl_getDrawable
, METH_VARARGS
},
13073 { (char *)"BImageControl_getVisual", _wrap_BImageControl_getVisual
, METH_VARARGS
},
13074 { (char *)"BImageControl_getBitsPerPixel", _wrap_BImageControl_getBitsPerPixel
, METH_VARARGS
},
13075 { (char *)"BImageControl_getDepth", _wrap_BImageControl_getDepth
, METH_VARARGS
},
13076 { (char *)"BImageControl_getColorsPerChannel", _wrap_BImageControl_getColorsPerChannel
, METH_VARARGS
},
13077 { (char *)"BImageControl_getSqrt", _wrap_BImageControl_getSqrt
, METH_VARARGS
},
13078 { (char *)"BImageControl_renderImage", _wrap_BImageControl_renderImage
, METH_VARARGS
},
13079 { (char *)"BImageControl_installRootColormap", _wrap_BImageControl_installRootColormap
, METH_VARARGS
},
13080 { (char *)"BImageControl_removeImage", _wrap_BImageControl_removeImage
, METH_VARARGS
},
13081 { (char *)"BImageControl_getColorTables", _wrap_BImageControl_getColorTables
, METH_VARARGS
},
13082 { (char *)"BImageControl_getXColorTable", _wrap_BImageControl_getXColorTable
, METH_VARARGS
},
13083 { (char *)"BImageControl_getGradientBuffers", _wrap_BImageControl_getGradientBuffers
, METH_VARARGS
},
13084 { (char *)"BImageControl_setDither", _wrap_BImageControl_setDither
, METH_VARARGS
},
13085 { (char *)"BImageControl_setColorsPerChannel", _wrap_BImageControl_setColorsPerChannel
, METH_VARARGS
},
13086 { (char *)"BImageControl_timeout", _wrap_BImageControl_timeout
, METH_VARARGS
},
13087 { (char *)"BImageControl_swigregister", BImageControl_swigregister
, METH_VARARGS
},
13088 { (char *)"new_Point", _wrap_new_Point
, METH_VARARGS
},
13089 { (char *)"Point_setX", _wrap_Point_setX
, METH_VARARGS
},
13090 { (char *)"Point_x", _wrap_Point_x
, METH_VARARGS
},
13091 { (char *)"Point_setY", _wrap_Point_setY
, METH_VARARGS
},
13092 { (char *)"Point_y", _wrap_Point_y
, METH_VARARGS
},
13093 { (char *)"Point_setPoint", _wrap_Point_setPoint
, METH_VARARGS
},
13094 { (char *)"delete_Point", _wrap_delete_Point
, METH_VARARGS
},
13095 { (char *)"Point_swigregister", Point_swigregister
, METH_VARARGS
},
13096 { (char *)"new_OBProperty", _wrap_new_OBProperty
, METH_VARARGS
},
13097 { (char *)"delete_OBProperty", _wrap_delete_OBProperty
, METH_VARARGS
},
13098 { (char *)"OBProperty_set", _wrap_OBProperty_set
, METH_VARARGS
},
13099 { (char *)"OBProperty_get", _wrap_OBProperty_get
, METH_VARARGS
},
13100 { (char *)"OBProperty_erase", _wrap_OBProperty_erase
, METH_VARARGS
},
13101 { (char *)"OBProperty_atom", _wrap_OBProperty_atom
, METH_VARARGS
},
13102 { (char *)"OBProperty_swigregister", OBProperty_swigregister
, METH_VARARGS
},
13103 { (char *)"new_Rect", _wrap_new_Rect
, METH_VARARGS
},
13104 { (char *)"Rect_left", _wrap_Rect_left
, METH_VARARGS
},
13105 { (char *)"Rect_top", _wrap_Rect_top
, METH_VARARGS
},
13106 { (char *)"Rect_right", _wrap_Rect_right
, METH_VARARGS
},
13107 { (char *)"Rect_bottom", _wrap_Rect_bottom
, METH_VARARGS
},
13108 { (char *)"Rect_x", _wrap_Rect_x
, METH_VARARGS
},
13109 { (char *)"Rect_y", _wrap_Rect_y
, METH_VARARGS
},
13110 { (char *)"Rect_location", _wrap_Rect_location
, METH_VARARGS
},
13111 { (char *)"Rect_setX", _wrap_Rect_setX
, METH_VARARGS
},
13112 { (char *)"Rect_setY", _wrap_Rect_setY
, METH_VARARGS
},
13113 { (char *)"Rect_setPos", _wrap_Rect_setPos
, METH_VARARGS
},
13114 { (char *)"Rect_width", _wrap_Rect_width
, METH_VARARGS
},
13115 { (char *)"Rect_height", _wrap_Rect_height
, METH_VARARGS
},
13116 { (char *)"Rect_size", _wrap_Rect_size
, METH_VARARGS
},
13117 { (char *)"Rect_setWidth", _wrap_Rect_setWidth
, METH_VARARGS
},
13118 { (char *)"Rect_setHeight", _wrap_Rect_setHeight
, METH_VARARGS
},
13119 { (char *)"Rect_setSize", _wrap_Rect_setSize
, METH_VARARGS
},
13120 { (char *)"Rect_setRect", _wrap_Rect_setRect
, METH_VARARGS
},
13121 { (char *)"Rect_setCoords", _wrap_Rect_setCoords
, METH_VARARGS
},
13122 { (char *)"Rect_equals", _wrap_Rect_equals
, METH_VARARGS
},
13123 { (char *)"Rect_valid", _wrap_Rect_valid
, METH_VARARGS
},
13124 { (char *)"Rect_intersects", _wrap_Rect_intersects
, METH_VARARGS
},
13125 { (char *)"Rect_contains", _wrap_Rect_contains
, METH_VARARGS
},
13126 { (char *)"delete_Rect", _wrap_delete_Rect
, METH_VARARGS
},
13127 { (char *)"Rect_swigregister", Rect_swigregister
, METH_VARARGS
},
13128 { (char *)"new_ScreenInfo", _wrap_new_ScreenInfo
, METH_VARARGS
},
13129 { (char *)"ScreenInfo_visual", _wrap_ScreenInfo_visual
, METH_VARARGS
},
13130 { (char *)"ScreenInfo_rootWindow", _wrap_ScreenInfo_rootWindow
, METH_VARARGS
},
13131 { (char *)"ScreenInfo_colormap", _wrap_ScreenInfo_colormap
, METH_VARARGS
},
13132 { (char *)"ScreenInfo_depth", _wrap_ScreenInfo_depth
, METH_VARARGS
},
13133 { (char *)"ScreenInfo_screen", _wrap_ScreenInfo_screen
, METH_VARARGS
},
13134 { (char *)"ScreenInfo_rect", _wrap_ScreenInfo_rect
, METH_VARARGS
},
13135 { (char *)"ScreenInfo_width", _wrap_ScreenInfo_width
, METH_VARARGS
},
13136 { (char *)"ScreenInfo_height", _wrap_ScreenInfo_height
, METH_VARARGS
},
13137 { (char *)"ScreenInfo_displayString", _wrap_ScreenInfo_displayString
, METH_VARARGS
},
13138 { (char *)"delete_ScreenInfo", _wrap_delete_ScreenInfo
, METH_VARARGS
},
13139 { (char *)"ScreenInfo_swigregister", ScreenInfo_swigregister
, METH_VARARGS
},
13140 { (char *)"Strut_top_set", _wrap_Strut_top_set
, METH_VARARGS
},
13141 { (char *)"Strut_top_get", _wrap_Strut_top_get
, METH_VARARGS
},
13142 { (char *)"Strut_bottom_set", _wrap_Strut_bottom_set
, METH_VARARGS
},
13143 { (char *)"Strut_bottom_get", _wrap_Strut_bottom_get
, METH_VARARGS
},
13144 { (char *)"Strut_left_set", _wrap_Strut_left_set
, METH_VARARGS
},
13145 { (char *)"Strut_left_get", _wrap_Strut_left_get
, METH_VARARGS
},
13146 { (char *)"Strut_right_set", _wrap_Strut_right_set
, METH_VARARGS
},
13147 { (char *)"Strut_right_get", _wrap_Strut_right_get
, METH_VARARGS
},
13148 { (char *)"new_Strut", _wrap_new_Strut
, METH_VARARGS
},
13149 { (char *)"delete_Strut", _wrap_delete_Strut
, METH_VARARGS
},
13150 { (char *)"Strut_swigregister", Strut_swigregister
, METH_VARARGS
},
13151 { (char *)"PixmapMask_mask_set", _wrap_PixmapMask_mask_set
, METH_VARARGS
},
13152 { (char *)"PixmapMask_mask_get", _wrap_PixmapMask_mask_get
, METH_VARARGS
},
13153 { (char *)"PixmapMask_w_set", _wrap_PixmapMask_w_set
, METH_VARARGS
},
13154 { (char *)"PixmapMask_w_get", _wrap_PixmapMask_w_get
, METH_VARARGS
},
13155 { (char *)"PixmapMask_h_set", _wrap_PixmapMask_h_set
, METH_VARARGS
},
13156 { (char *)"PixmapMask_h_get", _wrap_PixmapMask_h_get
, METH_VARARGS
},
13157 { (char *)"new_PixmapMask", _wrap_new_PixmapMask
, METH_VARARGS
},
13158 { (char *)"delete_PixmapMask", _wrap_delete_PixmapMask
, METH_VARARGS
},
13159 { (char *)"PixmapMask_swigregister", PixmapMask_swigregister
, METH_VARARGS
},
13160 { (char *)"Style_image_control_set", _wrap_Style_image_control_set
, METH_VARARGS
},
13161 { (char *)"Style_image_control_get", _wrap_Style_image_control_get
, METH_VARARGS
},
13162 { (char *)"Style_l_text_focus_set", _wrap_Style_l_text_focus_set
, METH_VARARGS
},
13163 { (char *)"Style_l_text_focus_get", _wrap_Style_l_text_focus_get
, METH_VARARGS
},
13164 { (char *)"Style_l_text_unfocus_set", _wrap_Style_l_text_unfocus_set
, METH_VARARGS
},
13165 { (char *)"Style_l_text_unfocus_get", _wrap_Style_l_text_unfocus_get
, METH_VARARGS
},
13166 { (char *)"Style_b_pic_focus_set", _wrap_Style_b_pic_focus_set
, METH_VARARGS
},
13167 { (char *)"Style_b_pic_focus_get", _wrap_Style_b_pic_focus_get
, METH_VARARGS
},
13168 { (char *)"Style_b_pic_unfocus_set", _wrap_Style_b_pic_unfocus_set
, METH_VARARGS
},
13169 { (char *)"Style_b_pic_unfocus_get", _wrap_Style_b_pic_unfocus_get
, METH_VARARGS
},
13170 { (char *)"Style_border_color_set", _wrap_Style_border_color_set
, METH_VARARGS
},
13171 { (char *)"Style_border_color_get", _wrap_Style_border_color_get
, METH_VARARGS
},
13172 { (char *)"Style_font_set", _wrap_Style_font_set
, METH_VARARGS
},
13173 { (char *)"Style_font_get", _wrap_Style_font_get
, METH_VARARGS
},
13174 { (char *)"Style_f_focus_set", _wrap_Style_f_focus_set
, METH_VARARGS
},
13175 { (char *)"Style_f_focus_get", _wrap_Style_f_focus_get
, METH_VARARGS
},
13176 { (char *)"Style_f_unfocus_set", _wrap_Style_f_unfocus_set
, METH_VARARGS
},
13177 { (char *)"Style_f_unfocus_get", _wrap_Style_f_unfocus_get
, METH_VARARGS
},
13178 { (char *)"Style_t_focus_set", _wrap_Style_t_focus_set
, METH_VARARGS
},
13179 { (char *)"Style_t_focus_get", _wrap_Style_t_focus_get
, METH_VARARGS
},
13180 { (char *)"Style_t_unfocus_set", _wrap_Style_t_unfocus_set
, METH_VARARGS
},
13181 { (char *)"Style_t_unfocus_get", _wrap_Style_t_unfocus_get
, METH_VARARGS
},
13182 { (char *)"Style_l_focus_set", _wrap_Style_l_focus_set
, METH_VARARGS
},
13183 { (char *)"Style_l_focus_get", _wrap_Style_l_focus_get
, METH_VARARGS
},
13184 { (char *)"Style_l_unfocus_set", _wrap_Style_l_unfocus_set
, METH_VARARGS
},
13185 { (char *)"Style_l_unfocus_get", _wrap_Style_l_unfocus_get
, METH_VARARGS
},
13186 { (char *)"Style_h_focus_set", _wrap_Style_h_focus_set
, METH_VARARGS
},
13187 { (char *)"Style_h_focus_get", _wrap_Style_h_focus_get
, METH_VARARGS
},
13188 { (char *)"Style_h_unfocus_set", _wrap_Style_h_unfocus_set
, METH_VARARGS
},
13189 { (char *)"Style_h_unfocus_get", _wrap_Style_h_unfocus_get
, METH_VARARGS
},
13190 { (char *)"Style_b_focus_set", _wrap_Style_b_focus_set
, METH_VARARGS
},
13191 { (char *)"Style_b_focus_get", _wrap_Style_b_focus_get
, METH_VARARGS
},
13192 { (char *)"Style_b_unfocus_set", _wrap_Style_b_unfocus_set
, METH_VARARGS
},
13193 { (char *)"Style_b_unfocus_get", _wrap_Style_b_unfocus_get
, METH_VARARGS
},
13194 { (char *)"Style_b_pressed_focus_set", _wrap_Style_b_pressed_focus_set
, METH_VARARGS
},
13195 { (char *)"Style_b_pressed_focus_get", _wrap_Style_b_pressed_focus_get
, METH_VARARGS
},
13196 { (char *)"Style_b_pressed_unfocus_set", _wrap_Style_b_pressed_unfocus_set
, METH_VARARGS
},
13197 { (char *)"Style_b_pressed_unfocus_get", _wrap_Style_b_pressed_unfocus_get
, METH_VARARGS
},
13198 { (char *)"Style_g_focus_set", _wrap_Style_g_focus_set
, METH_VARARGS
},
13199 { (char *)"Style_g_focus_get", _wrap_Style_g_focus_get
, METH_VARARGS
},
13200 { (char *)"Style_g_unfocus_set", _wrap_Style_g_unfocus_set
, METH_VARARGS
},
13201 { (char *)"Style_g_unfocus_get", _wrap_Style_g_unfocus_get
, METH_VARARGS
},
13202 { (char *)"Style_close_button_set", _wrap_Style_close_button_set
, METH_VARARGS
},
13203 { (char *)"Style_close_button_get", _wrap_Style_close_button_get
, METH_VARARGS
},
13204 { (char *)"Style_max_button_set", _wrap_Style_max_button_set
, METH_VARARGS
},
13205 { (char *)"Style_max_button_get", _wrap_Style_max_button_get
, METH_VARARGS
},
13206 { (char *)"Style_icon_button_set", _wrap_Style_icon_button_set
, METH_VARARGS
},
13207 { (char *)"Style_icon_button_get", _wrap_Style_icon_button_get
, METH_VARARGS
},
13208 { (char *)"Style_stick_button_set", _wrap_Style_stick_button_set
, METH_VARARGS
},
13209 { (char *)"Style_stick_button_get", _wrap_Style_stick_button_get
, METH_VARARGS
},
13210 { (char *)"Style_justify_set", _wrap_Style_justify_set
, METH_VARARGS
},
13211 { (char *)"Style_justify_get", _wrap_Style_justify_get
, METH_VARARGS
},
13212 { (char *)"Style_bullet_type_set", _wrap_Style_bullet_type_set
, METH_VARARGS
},
13213 { (char *)"Style_bullet_type_get", _wrap_Style_bullet_type_get
, METH_VARARGS
},
13214 { (char *)"Style_handle_width_set", _wrap_Style_handle_width_set
, METH_VARARGS
},
13215 { (char *)"Style_handle_width_get", _wrap_Style_handle_width_get
, METH_VARARGS
},
13216 { (char *)"Style_bevel_width_set", _wrap_Style_bevel_width_set
, METH_VARARGS
},
13217 { (char *)"Style_bevel_width_get", _wrap_Style_bevel_width_get
, METH_VARARGS
},
13218 { (char *)"Style_frame_width_set", _wrap_Style_frame_width_set
, METH_VARARGS
},
13219 { (char *)"Style_frame_width_get", _wrap_Style_frame_width_get
, METH_VARARGS
},
13220 { (char *)"Style_border_width_set", _wrap_Style_border_width_set
, METH_VARARGS
},
13221 { (char *)"Style_border_width_get", _wrap_Style_border_width_get
, METH_VARARGS
},
13222 { (char *)"Style_screen_number_set", _wrap_Style_screen_number_set
, METH_VARARGS
},
13223 { (char *)"Style_screen_number_get", _wrap_Style_screen_number_get
, METH_VARARGS
},
13224 { (char *)"Style_shadow_fonts_set", _wrap_Style_shadow_fonts_set
, METH_VARARGS
},
13225 { (char *)"Style_shadow_fonts_get", _wrap_Style_shadow_fonts_get
, METH_VARARGS
},
13226 { (char *)"Style_aa_fonts_set", _wrap_Style_aa_fonts_set
, METH_VARARGS
},
13227 { (char *)"Style_aa_fonts_get", _wrap_Style_aa_fonts_get
, METH_VARARGS
},
13228 { (char *)"new_Style", _wrap_new_Style
, METH_VARARGS
},
13229 { (char *)"delete_Style", _wrap_delete_Style
, METH_VARARGS
},
13230 { (char *)"Style_readDatabaseMask", _wrap_Style_readDatabaseMask
, METH_VARARGS
},
13231 { (char *)"Style_readDatabaseTexture", _wrap_Style_readDatabaseTexture
, METH_VARARGS
},
13232 { (char *)"Style_readDatabaseColor", _wrap_Style_readDatabaseColor
, METH_VARARGS
},
13233 { (char *)"Style_readDatabaseFont", _wrap_Style_readDatabaseFont
, METH_VARARGS
},
13234 { (char *)"Style_load", _wrap_Style_load
, METH_VARARGS
},
13235 { (char *)"Style_getCloseButtonMask", _wrap_Style_getCloseButtonMask
, METH_VARARGS
},
13236 { (char *)"Style_getMaximizeButtonMask", _wrap_Style_getMaximizeButtonMask
, METH_VARARGS
},
13237 { (char *)"Style_getIconifyButtonMask", _wrap_Style_getIconifyButtonMask
, METH_VARARGS
},
13238 { (char *)"Style_getStickyButtonMask", _wrap_Style_getStickyButtonMask
, METH_VARARGS
},
13239 { (char *)"Style_getTextFocus", _wrap_Style_getTextFocus
, METH_VARARGS
},
13240 { (char *)"Style_getTextUnfocus", _wrap_Style_getTextUnfocus
, METH_VARARGS
},
13241 { (char *)"Style_getButtonPicFocus", _wrap_Style_getButtonPicFocus
, METH_VARARGS
},
13242 { (char *)"Style_getButtonPicUnfocus", _wrap_Style_getButtonPicUnfocus
, METH_VARARGS
},
13243 { (char *)"Style_getTitleFocus", _wrap_Style_getTitleFocus
, METH_VARARGS
},
13244 { (char *)"Style_getTitleUnfocus", _wrap_Style_getTitleUnfocus
, METH_VARARGS
},
13245 { (char *)"Style_getLabelFocus", _wrap_Style_getLabelFocus
, METH_VARARGS
},
13246 { (char *)"Style_getLabelUnfocus", _wrap_Style_getLabelUnfocus
, METH_VARARGS
},
13247 { (char *)"Style_getHandleFocus", _wrap_Style_getHandleFocus
, METH_VARARGS
},
13248 { (char *)"Style_getHandleUnfocus", _wrap_Style_getHandleUnfocus
, METH_VARARGS
},
13249 { (char *)"Style_getButtonFocus", _wrap_Style_getButtonFocus
, METH_VARARGS
},
13250 { (char *)"Style_getButtonUnfocus", _wrap_Style_getButtonUnfocus
, METH_VARARGS
},
13251 { (char *)"Style_getButtonPressedFocus", _wrap_Style_getButtonPressedFocus
, METH_VARARGS
},
13252 { (char *)"Style_getButtonPressedUnfocus", _wrap_Style_getButtonPressedUnfocus
, METH_VARARGS
},
13253 { (char *)"Style_getGripFocus", _wrap_Style_getGripFocus
, METH_VARARGS
},
13254 { (char *)"Style_getGripUnfocus", _wrap_Style_getGripUnfocus
, METH_VARARGS
},
13255 { (char *)"Style_getHandleWidth", _wrap_Style_getHandleWidth
, METH_VARARGS
},
13256 { (char *)"Style_getBevelWidth", _wrap_Style_getBevelWidth
, METH_VARARGS
},
13257 { (char *)"Style_getFrameWidth", _wrap_Style_getFrameWidth
, METH_VARARGS
},
13258 { (char *)"Style_getBorderWidth", _wrap_Style_getBorderWidth
, METH_VARARGS
},
13259 { (char *)"Style_getFont", _wrap_Style_getFont
, METH_VARARGS
},
13260 { (char *)"Style_setShadowFonts", _wrap_Style_setShadowFonts
, METH_VARARGS
},
13261 { (char *)"Style_hasShadowFonts", _wrap_Style_hasShadowFonts
, METH_VARARGS
},
13262 { (char *)"Style_setAAFonts", _wrap_Style_setAAFonts
, METH_VARARGS
},
13263 { (char *)"Style_hasAAFonts", _wrap_Style_hasAAFonts
, METH_VARARGS
},
13264 { (char *)"Style_textJustify", _wrap_Style_textJustify
, METH_VARARGS
},
13265 { (char *)"Style_bulletType", _wrap_Style_bulletType
, METH_VARARGS
},
13266 { (char *)"Style_getBorderColor", _wrap_Style_getBorderColor
, METH_VARARGS
},
13267 { (char *)"Style_getFrameFocus", _wrap_Style_getFrameFocus
, METH_VARARGS
},
13268 { (char *)"Style_getFrameUnfocus", _wrap_Style_getFrameUnfocus
, METH_VARARGS
},
13269 { (char *)"Style_setImageControl", _wrap_Style_setImageControl
, METH_VARARGS
},
13270 { (char *)"Style_getScreen", _wrap_Style_getScreen
, METH_VARARGS
},
13271 { (char *)"Style_swigregister", Style_swigregister
, METH_VARARGS
},
13272 { (char *)"new_BTexture", _wrap_new_BTexture
, METH_VARARGS
},
13273 { (char *)"BTexture_setColor", _wrap_BTexture_setColor
, METH_VARARGS
},
13274 { (char *)"BTexture_setColorTo", _wrap_BTexture_setColorTo
, METH_VARARGS
},
13275 { (char *)"BTexture_setBorderColor", _wrap_BTexture_setBorderColor
, METH_VARARGS
},
13276 { (char *)"BTexture_color", _wrap_BTexture_color
, METH_VARARGS
},
13277 { (char *)"BTexture_colorTo", _wrap_BTexture_colorTo
, METH_VARARGS
},
13278 { (char *)"BTexture_lightColor", _wrap_BTexture_lightColor
, METH_VARARGS
},
13279 { (char *)"BTexture_shadowColor", _wrap_BTexture_shadowColor
, METH_VARARGS
},
13280 { (char *)"BTexture_borderColor", _wrap_BTexture_borderColor
, METH_VARARGS
},
13281 { (char *)"BTexture_texture", _wrap_BTexture_texture
, METH_VARARGS
},
13282 { (char *)"BTexture_setTexture", _wrap_BTexture_setTexture
, METH_VARARGS
},
13283 { (char *)"BTexture_addTexture", _wrap_BTexture_addTexture
, METH_VARARGS
},
13284 { (char *)"BTexture_equals", _wrap_BTexture_equals
, METH_VARARGS
},
13285 { (char *)"BTexture_screen", _wrap_BTexture_screen
, METH_VARARGS
},
13286 { (char *)"BTexture_setScreen", _wrap_BTexture_setScreen
, METH_VARARGS
},
13287 { (char *)"BTexture_setImageControl", _wrap_BTexture_setImageControl
, METH_VARARGS
},
13288 { (char *)"BTexture_description", _wrap_BTexture_description
, METH_VARARGS
},
13289 { (char *)"BTexture_setDescription", _wrap_BTexture_setDescription
, METH_VARARGS
},
13290 { (char *)"BTexture_render", _wrap_BTexture_render
, METH_VARARGS
},
13291 { (char *)"delete_BTexture", _wrap_delete_BTexture
, METH_VARARGS
},
13292 { (char *)"BTexture_swigregister", BTexture_swigregister
, METH_VARARGS
},
13293 { (char *)"new_OBTimer", _wrap_new_OBTimer
, METH_VARARGS
},
13294 { (char *)"delete_OBTimer", _wrap_delete_OBTimer
, METH_VARARGS
},
13295 { (char *)"OBTimer_fire", _wrap_OBTimer_fire
, METH_VARARGS
},
13296 { (char *)"OBTimer_timing", _wrap_OBTimer_timing
, METH_VARARGS
},
13297 { (char *)"OBTimer_recurring", _wrap_OBTimer_recurring
, METH_VARARGS
},
13298 { (char *)"OBTimer_timeout", _wrap_OBTimer_timeout
, METH_VARARGS
},
13299 { (char *)"OBTimer_startTime", _wrap_OBTimer_startTime
, METH_VARARGS
},
13300 { (char *)"OBTimer_remainingTime", _wrap_OBTimer_remainingTime
, METH_VARARGS
},
13301 { (char *)"OBTimer_shouldFire", _wrap_OBTimer_shouldFire
, METH_VARARGS
},
13302 { (char *)"OBTimer_endTime", _wrap_OBTimer_endTime
, METH_VARARGS
},
13303 { (char *)"OBTimer_setRecurring", _wrap_OBTimer_setRecurring
, METH_VARARGS
},
13304 { (char *)"OBTimer_setTimeout", _wrap_OBTimer_setTimeout
, METH_VARARGS
},
13305 { (char *)"OBTimer_start", _wrap_OBTimer_start
, METH_VARARGS
},
13306 { (char *)"OBTimer_stop", _wrap_OBTimer_stop
, METH_VARARGS
},
13307 { (char *)"OBTimer_swigregister", OBTimer_swigregister
, METH_VARARGS
},
13308 { (char *)"new_OBTimerQueueManager", _wrap_new_OBTimerQueueManager
, METH_VARARGS
},
13309 { (char *)"delete_OBTimerQueueManager", _wrap_delete_OBTimerQueueManager
, METH_VARARGS
},
13310 { (char *)"OBTimerQueueManager_fire", _wrap_OBTimerQueueManager_fire
, METH_VARARGS
},
13311 { (char *)"OBTimerQueueManager_addTimer", _wrap_OBTimerQueueManager_addTimer
, METH_VARARGS
},
13312 { (char *)"OBTimerQueueManager_removeTimer", _wrap_OBTimerQueueManager_removeTimer
, METH_VARARGS
},
13313 { (char *)"OBTimerQueueManager_swigregister", OBTimerQueueManager_swigregister
, METH_VARARGS
},
13314 { (char *)"expandTilde", _wrap_expandTilde
, METH_VARARGS
},
13315 { (char *)"bexec", _wrap_bexec
, METH_VARARGS
},
13316 { (char *)"textPropertyToString", _wrap_textPropertyToString
, METH_VARARGS
},
13317 { (char *)"itostring_unsigned_long", _wrap_itostring_unsigned_long
, METH_VARARGS
},
13318 { (char *)"itostring_long", _wrap_itostring_long
, METH_VARARGS
},
13319 { (char *)"itostring_unsigned", _wrap_itostring_unsigned
, METH_VARARGS
},
13320 { (char *)"itostring", _wrap_itostring
, METH_VARARGS
},
13321 { (char *)"basename", _wrap_basename
, METH_VARARGS
},
13326 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
13328 static void *_p_otk__OtkButtonTo_p_otk__OtkFocusWidget(void *x
) {
13329 return (void *)((otk::OtkFocusWidget
*) (otk::OtkFocusLabel
*) ((otk::OtkButton
*) x
));
13331 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkFocusWidget(void *x
) {
13332 return (void *)((otk::OtkFocusWidget
*) ((otk::OtkFocusLabel
*) x
));
13334 static void *_p_otk__OtkButtonTo_p_otk__OtkWidget(void *x
) {
13335 return (void *)((otk::OtkWidget
*) (otk::OtkFocusWidget
*)(otk::OtkFocusLabel
*) ((otk::OtkButton
*) x
));
13337 static void *_p_otk__OtkAppWidgetTo_p_otk__OtkWidget(void *x
) {
13338 return (void *)((otk::OtkWidget
*) ((otk::OtkAppWidget
*) x
));
13340 static void *_p_otk__OtkFocusWidgetTo_p_otk__OtkWidget(void *x
) {
13341 return (void *)((otk::OtkWidget
*) ((otk::OtkFocusWidget
*) x
));
13343 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkWidget(void *x
) {
13344 return (void *)((otk::OtkWidget
*) (otk::OtkFocusWidget
*) ((otk::OtkFocusLabel
*) x
));
13346 static void *_p_otk__OtkButtonTo_p_otk__OtkEventHandler(void *x
) {
13347 return (void *)((otk::OtkEventHandler
*) (otk::OtkWidget
*)(otk::OtkFocusWidget
*)(otk::OtkFocusLabel
*) ((otk::OtkButton
*) x
));
13349 static void *_p_otk__OtkAppWidgetTo_p_otk__OtkEventHandler(void *x
) {
13350 return (void *)((otk::OtkEventHandler
*) (otk::OtkWidget
*) ((otk::OtkAppWidget
*) x
));
13352 static void *_p_otk__OtkWidgetTo_p_otk__OtkEventHandler(void *x
) {
13353 return (void *)((otk::OtkEventHandler
*) ((otk::OtkWidget
*) x
));
13355 static void *_p_otk__OtkFocusWidgetTo_p_otk__OtkEventHandler(void *x
) {
13356 return (void *)((otk::OtkEventHandler
*) (otk::OtkWidget
*) ((otk::OtkFocusWidget
*) x
));
13358 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkEventHandler(void *x
) {
13359 return (void *)((otk::OtkEventHandler
*) (otk::OtkWidget
*)(otk::OtkFocusWidget
*) ((otk::OtkFocusLabel
*) x
));
13361 static void *_p_otk__OtkButtonTo_p_otk__OtkFocusLabel(void *x
) {
13362 return (void *)((otk::OtkFocusLabel
*) ((otk::OtkButton
*) x
));
13364 static void *_p_otk__OtkApplicationTo_p_otk__OtkEventDispatcher(void *x
) {
13365 return (void *)((otk::OtkEventDispatcher
*) ((otk::OtkApplication
*) x
));
13367 static swig_type_info _swigt__p_otk__BGCCache
[] = {{"_p_otk__BGCCache", 0, "otk::BGCCache *", 0},{"_p_otk__BGCCache"},{0}};
13368 static swig_type_info _swigt__p_otk__BColor
[] = {{"_p_otk__BColor", 0, "otk::BColor *", 0},{"_p_otk__BColor"},{0}};
13369 static swig_type_info _swigt__p_otk__OBProperty__StringVect
[] = {{"_p_otk__OBProperty__StringVect", 0, "otk::OBProperty::StringVect *", 0},{"_p_otk__OBProperty__StringVect"},{0}};
13370 static swig_type_info _swigt__p_XFontStruct
[] = {{"_p_XFontStruct", 0, "XFontStruct *", 0},{"_p_XFontStruct"},{0}};
13371 static swig_type_info _swigt__p_otk__Configuration
[] = {{"_p_otk__Configuration", 0, "otk::Configuration *", 0},{"_p_otk__Configuration"},{0}};
13372 static swig_type_info _swigt__p_otk__PixmapMask
[] = {{"_p_otk__PixmapMask", 0, "otk::PixmapMask *", 0},{"_p_otk__PixmapMask"},{0}};
13373 static swig_type_info _swigt__p_Atom
[] = {{"_p_Atom", 0, "Atom *", 0},{"_p_Atom"},{0}};
13374 static swig_type_info _swigt__p_otk__PointerAssassin
[] = {{"_p_otk__PointerAssassin", 0, "otk::PointerAssassin *", 0},{"_p_otk__PointerAssassin"},{0}};
13375 static swig_type_info _swigt__p_otk__BImage
[] = {{"_p_otk__BImage", 0, "otk::BImage *", 0},{"_p_otk__BImage"},{0}};
13376 static swig_type_info _swigt__p_otk__OBTimer
[] = {{"_p_otk__OBTimer", 0, "otk::OBTimer *", 0},{"_p_otk__OBTimer"},{0}};
13377 static swig_type_info _swigt__p_otk__OtkWidget__OtkWidgetList
[] = {{"_p_otk__OtkWidget__OtkWidgetList", 0, "otk::OtkWidget::OtkWidgetList const &", 0},{"_p_otk__OtkWidget__OtkWidgetList"},{0}};
13378 static swig_type_info _swigt__p_bool
[] = {{"_p_bool", 0, "bool *", 0},{"_p_bool"},{0}};
13379 static swig_type_info _swigt__p_otk__OBDisplay
[] = {{"_p_otk__OBDisplay", 0, "otk::OBDisplay *", 0},{"_p_otk__OBDisplay"},{0}};
13380 static swig_type_info _swigt__p_Display
[] = {{"_p_Display", 0, "Display *", 0},{"_p_Display"},{0}};
13381 static swig_type_info _swigt__p_p_XColor
[] = {{"_p_p_XColor", 0, "XColor **", 0},{"_p_p_XColor"},{0}};
13382 static swig_type_info _swigt__p_XReparentEvent
[] = {{"_p_XReparentEvent", 0, "XReparentEvent *", 0},{"_p_XReparentEvent"},{0}};
13383 static swig_type_info _swigt__p_otk__BPen
[] = {{"_p_otk__BPen", 0, "otk::BPen *", 0},{"_p_otk__BPen"},{0}};
13384 static swig_type_info _swigt__p_otk__BImageControl
[] = {{"_p_otk__BImageControl", 0, "otk::BImageControl *", 0},{"_p_otk__BImageControl"},{0}};
13385 static swig_type_info _swigt__p_otk__OtkButton
[] = {{"_p_otk__OtkButton", 0, "otk::OtkButton *", 0},{"_p_otk__OtkButton"},{0}};
13386 static swig_type_info _swigt__p_otk__Rect
[] = {{"_p_otk__Rect", 0, "otk::Rect *", 0},{"_p_otk__Rect"},{0}};
13387 static swig_type_info _swigt__p_otk__Style
[] = {{"_p_otk__Style", 0, "otk::Style *", 0},{"_p_otk__Style"},{0}};
13388 static swig_type_info _swigt__p_XSelectionClearEvent
[] = {{"_p_XSelectionClearEvent", 0, "XSelectionClearEvent *", 0},{"_p_XSelectionClearEvent"},{0}};
13389 static swig_type_info _swigt__p_Visual
[] = {{"_p_Visual", 0, "Visual *", 0},{"_p_Visual"},{0}};
13390 static swig_type_info _swigt__p_timeval
[] = {{"_p_timeval", 0, "timeval *", 0},{"_p_timeval"},{0}};
13391 static swig_type_info _swigt__p_int
[] = {{"_p_int", 0, "int *", 0},{"_p_int"},{0}};
13392 static swig_type_info _swigt__p_otk__Strut
[] = {{"_p_otk__Strut", 0, "otk::Strut *", 0},{"_p_otk__Strut"},{0}};
13393 static swig_type_info _swigt__p_otk__OtkApplication
[] = {{"_p_otk__OtkApplication", 0, "otk::OtkApplication *", 0},{"_p_otk__OtkApplication"},{0}};
13394 static swig_type_info _swigt__p_XRectangle
[] = {{"_p_XRectangle", 0, "XRectangle *", 0},{"_p_XRectangle"},{0}};
13395 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}};
13396 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}};
13397 static swig_type_info _swigt__p_Cursor
[] = {{"_p_Cursor", 0, "Cursor *", 0},{"_p_Cursor"},{0}};
13398 static swig_type_info _swigt__p_Colormap
[] = {{"_p_Colormap", 0, "Colormap *", 0},{"_p_Colormap"},{0}};
13399 static swig_type_info _swigt__p_XGravityEvent
[] = {{"_p_XGravityEvent", 0, "XGravityEvent *", 0},{"_p_XGravityEvent"},{0}};
13400 static swig_type_info _swigt__p_XVisibilityEvent
[] = {{"_p_XVisibilityEvent", 0, "XVisibilityEvent *", 0},{"_p_XVisibilityEvent"},{0}};
13401 static swig_type_info _swigt__p_XPropertyEvent
[] = {{"_p_XPropertyEvent", 0, "XPropertyEvent *", 0},{"_p_XPropertyEvent"},{0}};
13402 static swig_type_info _swigt__p_Window
[] = {{"_p_Window", 0, "Window *", 0},{"_p_Window"},{0}};
13403 static swig_type_info _swigt__p_otk__BGCCacheContext
[] = {{"_p_otk__BGCCacheContext", 0, "otk::BGCCacheContext *", 0},{"_p_otk__BGCCacheContext"},{0}};
13404 static swig_type_info _swigt__p_XCreateWindowEvent
[] = {{"_p_XCreateWindowEvent", 0, "XCreateWindowEvent *", 0},{"_p_XCreateWindowEvent"},{0}};
13405 static swig_type_info _swigt__p_XDestroyWindowEvent
[] = {{"_p_XDestroyWindowEvent", 0, "XDestroyWindowEvent *", 0},{"_p_XDestroyWindowEvent"},{0}};
13406 static swig_type_info _swigt__p_Time
[] = {{"_p_Time", 0, "Time *", 0},{"_p_Time"},{0}};
13407 static swig_type_info _swigt__p_XCirculateEvent
[] = {{"_p_XCirculateEvent", 0, "XCirculateEvent *", 0},{"_p_XCirculateEvent"},{0}};
13408 static swig_type_info _swigt__p_XConfigureEvent
[] = {{"_p_XConfigureEvent", 0, "XConfigureEvent *", 0},{"_p_XConfigureEvent"},{0}};
13409 static swig_type_info _swigt__p_long
[] = {{"_p_long", 0, "long *", 0},{"_p_long"},{0}};
13410 static swig_type_info _swigt__p_otk__OBProperty
[] = {{"_p_otk__OBProperty", 0, "otk::OBProperty *", 0},{"_p_otk__OBProperty"},{0}};
13411 static swig_type_info _swigt__p_XTextProperty
[] = {{"_p_XTextProperty", 0, "XTextProperty *", 0},{"_p_XTextProperty"},{0}};
13412 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}};
13413 static swig_type_info _swigt__p_XSelectionRequestEvent
[] = {{"_p_XSelectionRequestEvent", 0, "XSelectionRequestEvent *", 0},{"_p_XSelectionRequestEvent"},{0}};
13414 static swig_type_info _swigt__p_XCirculateRequestEvent
[] = {{"_p_XCirculateRequestEvent", 0, "XCirculateRequestEvent *", 0},{"_p_XCirculateRequestEvent"},{0}};
13415 static swig_type_info _swigt__p_XConfigureRequestEvent
[] = {{"_p_XConfigureRequestEvent", 0, "XConfigureRequestEvent *", 0},{"_p_XConfigureRequestEvent"},{0}};
13416 static swig_type_info _swigt__p_XMapRequestEvent
[] = {{"_p_XMapRequestEvent", 0, "XMapRequestEvent *", 0},{"_p_XMapRequestEvent"},{0}};
13417 static swig_type_info _swigt__p_XResizeRequestEvent
[] = {{"_p_XResizeRequestEvent", 0, "XResizeRequestEvent *", 0},{"_p_XResizeRequestEvent"},{0}};
13418 static swig_type_info _swigt__otk__OBTimeoutHandler
[] = {{"_otk__OBTimeoutHandler", 0, "otk::OBTimeoutHandler", 0},{"_otk__OBTimeoutHandler"},{0}};
13419 static swig_type_info _swigt__p_XftDraw
[] = {{"_p_XftDraw", 0, "XftDraw *", 0},{"_p_XftDraw"},{0}};
13420 static swig_type_info _swigt__p_otk__ScreenInfo
[] = {{"_p_otk__ScreenInfo", 0, "otk::ScreenInfo *", 0},{"_p_otk__ScreenInfo"},{0}};
13421 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}};
13422 static swig_type_info _swigt__p_otk__BTexture
[] = {{"_p_otk__BTexture", 0, "otk::BTexture *", 0},{"_p_otk__BTexture"},{0}};
13423 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}};
13424 static swig_type_info _swigt__p_otk__BFont
[] = {{"_p_otk__BFont", 0, "otk::BFont *", 0},{"_p_otk__BFont"},{0}};
13425 static swig_type_info _swigt__p_otk__Point
[] = {{"_p_otk__Point", 0, "otk::Point *", 0},{"_p_otk__Point"},{0}};
13426 static swig_type_info _swigt__p_p_char
[] = {{"_p_p_char", 0, "char **", 0},{"_p_p_char"},{0}};
13427 static swig_type_info _swigt__p_XMotionEvent
[] = {{"_p_XMotionEvent", 0, "XMotionEvent *", 0},{"_p_XMotionEvent"},{0}};
13428 static swig_type_info _swigt__p_XButtonEvent
[] = {{"_p_XButtonEvent", 0, "XButtonEvent *", 0},{"_p_XButtonEvent"},{0}};
13429 static swig_type_info _swigt__p_XSelectionEvent
[] = {{"_p_XSelectionEvent", 0, "XSelectionEvent *", 0},{"_p_XSelectionEvent"},{0}};
13430 static swig_type_info _swigt__p_Pixmap
[] = {{"_p_Pixmap", 0, "Pixmap *", 0},{"_p_Pixmap"},{0}};
13431 static swig_type_info _swigt__p_GC
[] = {{"_p_GC", 0, "GC *", 0},{"_p_GC"},{0}};
13432 static swig_type_info _swigt__p_otk__OBTimerQueueManager
[] = {{"_p_otk__OBTimerQueueManager", 0, "otk::OBTimerQueueManager *", 0},{"_p_otk__OBTimerQueueManager"},{0}};
13433 static swig_type_info _swigt__p_otk__OtkAppWidget
[] = {{"_p_otk__OtkAppWidget", 0, "otk::OtkAppWidget *", 0},{"_p_otk__OtkAppWidget"},{0}};
13434 static swig_type_info _swigt__p_XKeyEvent
[] = {{"_p_XKeyEvent", 0, "XKeyEvent *", 0},{"_p_XKeyEvent"},{0}};
13435 static swig_type_info _swigt__p_unsigned_long
[] = {{"_p_unsigned_long", 0, "unsigned long *", 0},{"_p_unsigned_long"},{0}};
13436 static swig_type_info _swigt__p_XEvent
[] = {{"_p_XEvent", 0, "XEvent *", 0},{"_p_XEvent"},{0}};
13437 static swig_type_info _swigt__p_p_unsigned_long
[] = {{"_p_p_unsigned_long", 0, "unsigned long **", 0},{"_p_p_unsigned_long"},{0}};
13438 static swig_type_info _swigt__p_std__string
[] = {{"_p_std__string", 0, "std::string *", 0},{"_p_std__string"},{0}};
13439 static swig_type_info _swigt__p_XCrossingEvent
[] = {{"_p_XCrossingEvent", 0, "XCrossingEvent *", 0},{"_p_XCrossingEvent"},{0}};
13440 static swig_type_info _swigt__p_XMappingEvent
[] = {{"_p_XMappingEvent", 0, "XMappingEvent *", 0},{"_p_XMappingEvent"},{0}};
13441 static swig_type_info _swigt__p_otk__BGCCacheItem
[] = {{"_p_otk__BGCCacheItem", 0, "otk::BGCCacheItem *", 0},{"_p_otk__BGCCacheItem"},{0}};
13442 static swig_type_info _swigt__p_p_unsigned_int
[] = {{"_p_p_unsigned_int", 0, "unsigned int **", 0},{"_p_p_unsigned_int"},{0}};
13443 static swig_type_info _swigt__p_unsigned_int
[] = {{"_p_unsigned_int", 0, "unsigned int *", 0},{"_p_unsigned_int"},{0}};
13444 static swig_type_info _swigt__p_p_unsigned_char
[] = {{"_p_p_unsigned_char", 0, "unsigned char **", 0},{"_p_p_unsigned_char"},{0}};
13445 static swig_type_info _swigt__p_XClientMessageEvent
[] = {{"_p_XClientMessageEvent", 0, "XClientMessageEvent *", 0},{"_p_XClientMessageEvent"},{0}};
13446 static swig_type_info _swigt__p_XExposeEvent
[] = {{"_p_XExposeEvent", 0, "XExposeEvent *", 0},{"_p_XExposeEvent"},{0}};
13447 static swig_type_info _swigt__p_XFocusChangeEvent
[] = {{"_p_XFocusChangeEvent", 0, "XFocusChangeEvent *", 0},{"_p_XFocusChangeEvent"},{0}};
13448 static swig_type_info _swigt__p_XGraphicsExposeEvent
[] = {{"_p_XGraphicsExposeEvent", 0, "XGraphicsExposeEvent *", 0},{"_p_XGraphicsExposeEvent"},{0}};
13449 static swig_type_info _swigt__p_XNoExposeEvent
[] = {{"_p_XNoExposeEvent", 0, "XNoExposeEvent *", 0},{"_p_XNoExposeEvent"},{0}};
13450 static swig_type_info _swigt__p_XMapEvent
[] = {{"_p_XMapEvent", 0, "XMapEvent *", 0},{"_p_XMapEvent"},{0}};
13451 static swig_type_info _swigt__p_XUnmapEvent
[] = {{"_p_XUnmapEvent", 0, "XUnmapEvent *", 0},{"_p_XUnmapEvent"},{0}};
13452 static swig_type_info _swigt__p_XColormapEvent
[] = {{"_p_XColormapEvent", 0, "XColormapEvent *", 0},{"_p_XColormapEvent"},{0}};
13454 static swig_type_info
*swig_types_initial
[] = {
13455 _swigt__p_otk__BGCCache
,
13456 _swigt__p_otk__BColor
,
13457 _swigt__p_otk__OBProperty__StringVect
,
13458 _swigt__p_XFontStruct
,
13459 _swigt__p_otk__Configuration
,
13460 _swigt__p_otk__PixmapMask
,
13462 _swigt__p_otk__PointerAssassin
,
13463 _swigt__p_otk__BImage
,
13464 _swigt__p_otk__OBTimer
,
13465 _swigt__p_otk__OtkWidget__OtkWidgetList
,
13467 _swigt__p_otk__OBDisplay
,
13469 _swigt__p_p_XColor
,
13470 _swigt__p_XReparentEvent
,
13471 _swigt__p_otk__BPen
,
13472 _swigt__p_otk__BImageControl
,
13473 _swigt__p_otk__OtkButton
,
13474 _swigt__p_otk__Rect
,
13475 _swigt__p_otk__Style
,
13476 _swigt__p_XSelectionClearEvent
,
13480 _swigt__p_otk__Strut
,
13481 _swigt__p_otk__OtkApplication
,
13482 _swigt__p_XRectangle
,
13483 _swigt__p_otk__OtkFocusWidget
,
13484 _swigt__p_otk__OtkWidget
,
13486 _swigt__p_Colormap
,
13487 _swigt__p_XGravityEvent
,
13488 _swigt__p_XVisibilityEvent
,
13489 _swigt__p_XPropertyEvent
,
13491 _swigt__p_otk__BGCCacheContext
,
13492 _swigt__p_XCreateWindowEvent
,
13493 _swigt__p_XDestroyWindowEvent
,
13495 _swigt__p_XCirculateEvent
,
13496 _swigt__p_XConfigureEvent
,
13498 _swigt__p_otk__OBProperty
,
13499 _swigt__p_XTextProperty
,
13500 _swigt__p_otk__OtkEventHandler
,
13501 _swigt__p_XSelectionRequestEvent
,
13502 _swigt__p_XCirculateRequestEvent
,
13503 _swigt__p_XConfigureRequestEvent
,
13504 _swigt__p_XMapRequestEvent
,
13505 _swigt__p_XResizeRequestEvent
,
13506 _swigt__otk__OBTimeoutHandler
,
13508 _swigt__p_otk__ScreenInfo
,
13509 _swigt__p_otk__OtkFocusLabel
,
13510 _swigt__p_otk__BTexture
,
13511 _swigt__p_otk__OtkEventDispatcher
,
13512 _swigt__p_otk__BFont
,
13513 _swigt__p_otk__Point
,
13515 _swigt__p_XMotionEvent
,
13516 _swigt__p_XButtonEvent
,
13517 _swigt__p_XSelectionEvent
,
13520 _swigt__p_otk__OBTimerQueueManager
,
13521 _swigt__p_otk__OtkAppWidget
,
13522 _swigt__p_XKeyEvent
,
13523 _swigt__p_unsigned_long
,
13525 _swigt__p_p_unsigned_long
,
13526 _swigt__p_std__string
,
13527 _swigt__p_XCrossingEvent
,
13528 _swigt__p_XMappingEvent
,
13529 _swigt__p_otk__BGCCacheItem
,
13530 _swigt__p_p_unsigned_int
,
13531 _swigt__p_unsigned_int
,
13532 _swigt__p_p_unsigned_char
,
13533 _swigt__p_XClientMessageEvent
,
13534 _swigt__p_XExposeEvent
,
13535 _swigt__p_XFocusChangeEvent
,
13536 _swigt__p_XGraphicsExposeEvent
,
13537 _swigt__p_XNoExposeEvent
,
13538 _swigt__p_XMapEvent
,
13539 _swigt__p_XUnmapEvent
,
13540 _swigt__p_XColormapEvent
,
13545 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
13547 static swig_const_info swig_const_table
[] = {
13548 { SWIG_PY_INT
, (char *)"OtkWidget_Horizontal", (long) otk::OtkWidget::Horizontal
, 0, 0, 0},
13549 { SWIG_PY_INT
, (char *)"OtkWidget_Vertical", (long) otk::OtkWidget::Vertical
, 0, 0, 0},
13550 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Cardinal", (long) otk::OBProperty::Atom_Cardinal
, 0, 0, 0},
13551 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Window", (long) otk::OBProperty::Atom_Window
, 0, 0, 0},
13552 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Pixmap", (long) otk::OBProperty::Atom_Pixmap
, 0, 0, 0},
13553 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Atom", (long) otk::OBProperty::Atom_Atom
, 0, 0, 0},
13554 { SWIG_PY_INT
, (char *)"OBProperty_Atom_String", (long) otk::OBProperty::Atom_String
, 0, 0, 0},
13555 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Utf8", (long) otk::OBProperty::Atom_Utf8
, 0, 0, 0},
13556 { SWIG_PY_INT
, (char *)"OBProperty_openbox_pid", (long) otk::OBProperty::openbox_pid
, 0, 0, 0},
13557 { SWIG_PY_INT
, (char *)"OBProperty_wm_colormap_windows", (long) otk::OBProperty::wm_colormap_windows
, 0, 0, 0},
13558 { SWIG_PY_INT
, (char *)"OBProperty_wm_protocols", (long) otk::OBProperty::wm_protocols
, 0, 0, 0},
13559 { SWIG_PY_INT
, (char *)"OBProperty_wm_state", (long) otk::OBProperty::wm_state
, 0, 0, 0},
13560 { SWIG_PY_INT
, (char *)"OBProperty_wm_delete_window", (long) otk::OBProperty::wm_delete_window
, 0, 0, 0},
13561 { SWIG_PY_INT
, (char *)"OBProperty_wm_take_focus", (long) otk::OBProperty::wm_take_focus
, 0, 0, 0},
13562 { SWIG_PY_INT
, (char *)"OBProperty_wm_change_state", (long) otk::OBProperty::wm_change_state
, 0, 0, 0},
13563 { SWIG_PY_INT
, (char *)"OBProperty_wm_name", (long) otk::OBProperty::wm_name
, 0, 0, 0},
13564 { SWIG_PY_INT
, (char *)"OBProperty_wm_icon_name", (long) otk::OBProperty::wm_icon_name
, 0, 0, 0},
13565 { SWIG_PY_INT
, (char *)"OBProperty_wm_class", (long) otk::OBProperty::wm_class
, 0, 0, 0},
13566 { SWIG_PY_INT
, (char *)"OBProperty_motif_wm_hints", (long) otk::OBProperty::motif_wm_hints
, 0, 0, 0},
13567 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_attributes", (long) otk::OBProperty::blackbox_attributes
, 0, 0, 0},
13568 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_change_attributes", (long) otk::OBProperty::blackbox_change_attributes
, 0, 0, 0},
13569 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_hints", (long) otk::OBProperty::blackbox_hints
, 0, 0, 0},
13570 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_structure_messages", (long) otk::OBProperty::blackbox_structure_messages
, 0, 0, 0},
13571 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_startup", (long) otk::OBProperty::blackbox_notify_startup
, 0, 0, 0},
13572 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_add", (long) otk::OBProperty::blackbox_notify_window_add
, 0, 0, 0},
13573 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_del", (long) otk::OBProperty::blackbox_notify_window_del
, 0, 0, 0},
13574 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_focus", (long) otk::OBProperty::blackbox_notify_window_focus
, 0, 0, 0},
13575 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_current_workspace", (long) otk::OBProperty::blackbox_notify_current_workspace
, 0, 0, 0},
13576 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_workspace_count", (long) otk::OBProperty::blackbox_notify_workspace_count
, 0, 0, 0},
13577 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_raise", (long) otk::OBProperty::blackbox_notify_window_raise
, 0, 0, 0},
13578 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_lower", (long) otk::OBProperty::blackbox_notify_window_lower
, 0, 0, 0},
13579 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_change_workspace", (long) otk::OBProperty::blackbox_change_workspace
, 0, 0, 0},
13580 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_change_window_focus", (long) otk::OBProperty::blackbox_change_window_focus
, 0, 0, 0},
13581 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_cycle_window_focus", (long) otk::OBProperty::blackbox_cycle_window_focus
, 0, 0, 0},
13582 { SWIG_PY_INT
, (char *)"OBProperty_openbox_show_root_menu", (long) otk::OBProperty::openbox_show_root_menu
, 0, 0, 0},
13583 { SWIG_PY_INT
, (char *)"OBProperty_openbox_show_workspace_menu", (long) otk::OBProperty::openbox_show_workspace_menu
, 0, 0, 0},
13584 { SWIG_PY_INT
, (char *)"OBProperty_net_supported", (long) otk::OBProperty::net_supported
, 0, 0, 0},
13585 { SWIG_PY_INT
, (char *)"OBProperty_net_client_list", (long) otk::OBProperty::net_client_list
, 0, 0, 0},
13586 { SWIG_PY_INT
, (char *)"OBProperty_net_client_list_stacking", (long) otk::OBProperty::net_client_list_stacking
, 0, 0, 0},
13587 { SWIG_PY_INT
, (char *)"OBProperty_net_number_of_desktops", (long) otk::OBProperty::net_number_of_desktops
, 0, 0, 0},
13588 { SWIG_PY_INT
, (char *)"OBProperty_net_desktop_geometry", (long) otk::OBProperty::net_desktop_geometry
, 0, 0, 0},
13589 { SWIG_PY_INT
, (char *)"OBProperty_net_desktop_viewport", (long) otk::OBProperty::net_desktop_viewport
, 0, 0, 0},
13590 { SWIG_PY_INT
, (char *)"OBProperty_net_current_desktop", (long) otk::OBProperty::net_current_desktop
, 0, 0, 0},
13591 { SWIG_PY_INT
, (char *)"OBProperty_net_desktop_names", (long) otk::OBProperty::net_desktop_names
, 0, 0, 0},
13592 { SWIG_PY_INT
, (char *)"OBProperty_net_active_window", (long) otk::OBProperty::net_active_window
, 0, 0, 0},
13593 { SWIG_PY_INT
, (char *)"OBProperty_net_workarea", (long) otk::OBProperty::net_workarea
, 0, 0, 0},
13594 { SWIG_PY_INT
, (char *)"OBProperty_net_supporting_wm_check", (long) otk::OBProperty::net_supporting_wm_check
, 0, 0, 0},
13595 { SWIG_PY_INT
, (char *)"OBProperty_net_close_window", (long) otk::OBProperty::net_close_window
, 0, 0, 0},
13596 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize", (long) otk::OBProperty::net_wm_moveresize
, 0, 0, 0},
13597 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_name", (long) otk::OBProperty::net_wm_name
, 0, 0, 0},
13598 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_visible_name", (long) otk::OBProperty::net_wm_visible_name
, 0, 0, 0},
13599 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_icon_name", (long) otk::OBProperty::net_wm_icon_name
, 0, 0, 0},
13600 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_visible_icon_name", (long) otk::OBProperty::net_wm_visible_icon_name
, 0, 0, 0},
13601 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_desktop", (long) otk::OBProperty::net_wm_desktop
, 0, 0, 0},
13602 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type", (long) otk::OBProperty::net_wm_window_type
, 0, 0, 0},
13603 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state", (long) otk::OBProperty::net_wm_state
, 0, 0, 0},
13604 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_strut", (long) otk::OBProperty::net_wm_strut
, 0, 0, 0},
13605 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_allowed_actions", (long) otk::OBProperty::net_wm_allowed_actions
, 0, 0, 0},
13606 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_desktop", (long) otk::OBProperty::net_wm_window_type_desktop
, 0, 0, 0},
13607 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_dock", (long) otk::OBProperty::net_wm_window_type_dock
, 0, 0, 0},
13608 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_toolbar", (long) otk::OBProperty::net_wm_window_type_toolbar
, 0, 0, 0},
13609 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_menu", (long) otk::OBProperty::net_wm_window_type_menu
, 0, 0, 0},
13610 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_utility", (long) otk::OBProperty::net_wm_window_type_utility
, 0, 0, 0},
13611 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_splash", (long) otk::OBProperty::net_wm_window_type_splash
, 0, 0, 0},
13612 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_dialog", (long) otk::OBProperty::net_wm_window_type_dialog
, 0, 0, 0},
13613 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_normal", (long) otk::OBProperty::net_wm_window_type_normal
, 0, 0, 0},
13614 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_size_topleft", (long) otk::OBProperty::net_wm_moveresize_size_topleft
, 0, 0, 0},
13615 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_size_topright", (long) otk::OBProperty::net_wm_moveresize_size_topright
, 0, 0, 0},
13616 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_size_bottomleft", (long) otk::OBProperty::net_wm_moveresize_size_bottomleft
, 0, 0, 0},
13617 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_size_bottomright", (long) otk::OBProperty::net_wm_moveresize_size_bottomright
, 0, 0, 0},
13618 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_move", (long) otk::OBProperty::net_wm_moveresize_move
, 0, 0, 0},
13619 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_move", (long) otk::OBProperty::net_wm_action_move
, 0, 0, 0},
13620 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_resize", (long) otk::OBProperty::net_wm_action_resize
, 0, 0, 0},
13621 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_shade", (long) otk::OBProperty::net_wm_action_shade
, 0, 0, 0},
13622 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_maximize_horz", (long) otk::OBProperty::net_wm_action_maximize_horz
, 0, 0, 0},
13623 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_maximize_vert", (long) otk::OBProperty::net_wm_action_maximize_vert
, 0, 0, 0},
13624 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_change_desktop", (long) otk::OBProperty::net_wm_action_change_desktop
, 0, 0, 0},
13625 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_close", (long) otk::OBProperty::net_wm_action_close
, 0, 0, 0},
13626 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_modal", (long) otk::OBProperty::net_wm_state_modal
, 0, 0, 0},
13627 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_sticky", (long) otk::OBProperty::net_wm_state_sticky
, 0, 0, 0},
13628 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_maximized_vert", (long) otk::OBProperty::net_wm_state_maximized_vert
, 0, 0, 0},
13629 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_maximized_horz", (long) otk::OBProperty::net_wm_state_maximized_horz
, 0, 0, 0},
13630 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_shaded", (long) otk::OBProperty::net_wm_state_shaded
, 0, 0, 0},
13631 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_skip_taskbar", (long) otk::OBProperty::net_wm_state_skip_taskbar
, 0, 0, 0},
13632 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_skip_pager", (long) otk::OBProperty::net_wm_state_skip_pager
, 0, 0, 0},
13633 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_hidden", (long) otk::OBProperty::net_wm_state_hidden
, 0, 0, 0},
13634 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_fullscreen", (long) otk::OBProperty::net_wm_state_fullscreen
, 0, 0, 0},
13635 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_above", (long) otk::OBProperty::net_wm_state_above
, 0, 0, 0},
13636 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_below", (long) otk::OBProperty::net_wm_state_below
, 0, 0, 0},
13637 { SWIG_PY_INT
, (char *)"OBProperty_kde_net_system_tray_windows", (long) otk::OBProperty::kde_net_system_tray_windows
, 0, 0, 0},
13638 { 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},
13639 { SWIG_PY_INT
, (char *)"OBProperty_kde_net_wm_window_type_override", (long) otk::OBProperty::kde_net_wm_window_type_override
, 0, 0, 0},
13640 { SWIG_PY_INT
, (char *)"OBProperty_NUM_ATOMS", (long) otk::OBProperty::NUM_ATOMS
, 0, 0, 0},
13641 { SWIG_PY_INT
, (char *)"OBProperty_ascii", (long) otk::OBProperty::ascii
, 0, 0, 0},
13642 { SWIG_PY_INT
, (char *)"OBProperty_utf8", (long) otk::OBProperty::utf8
, 0, 0, 0},
13643 { SWIG_PY_INT
, (char *)"OBProperty_NUM_STRING_TYPE", (long) otk::OBProperty::NUM_STRING_TYPE
, 0, 0, 0},
13644 { SWIG_PY_INT
, (char *)"Style_ButtonFocus", (long) otk::Style::ButtonFocus
, 0, 0, 0},
13645 { SWIG_PY_INT
, (char *)"Style_ButtonUnfocus", (long) otk::Style::ButtonUnfocus
, 0, 0, 0},
13646 { SWIG_PY_INT
, (char *)"Style_TitleFocus", (long) otk::Style::TitleFocus
, 0, 0, 0},
13647 { SWIG_PY_INT
, (char *)"Style_TitleUnfocus", (long) otk::Style::TitleUnfocus
, 0, 0, 0},
13648 { SWIG_PY_INT
, (char *)"Style_LabelFocus", (long) otk::Style::LabelFocus
, 0, 0, 0},
13649 { SWIG_PY_INT
, (char *)"Style_LabelUnfocus", (long) otk::Style::LabelUnfocus
, 0, 0, 0},
13650 { SWIG_PY_INT
, (char *)"Style_HandleFocus", (long) otk::Style::HandleFocus
, 0, 0, 0},
13651 { SWIG_PY_INT
, (char *)"Style_HandleUnfocus", (long) otk::Style::HandleUnfocus
, 0, 0, 0},
13652 { SWIG_PY_INT
, (char *)"Style_GripFocus", (long) otk::Style::GripFocus
, 0, 0, 0},
13653 { SWIG_PY_INT
, (char *)"Style_GripUnfocus", (long) otk::Style::GripUnfocus
, 0, 0, 0},
13654 { SWIG_PY_INT
, (char *)"Style_LeftJustify", (long) otk::Style::LeftJustify
, 0, 0, 0},
13655 { SWIG_PY_INT
, (char *)"Style_RightJustify", (long) otk::Style::RightJustify
, 0, 0, 0},
13656 { SWIG_PY_INT
, (char *)"Style_CenterJustify", (long) otk::Style::CenterJustify
, 0, 0, 0},
13657 { SWIG_PY_INT
, (char *)"Style_RoundBullet", (long) otk::Style::RoundBullet
, 0, 0, 0},
13658 { SWIG_PY_INT
, (char *)"Style_TriangleBullet", (long) otk::Style::TriangleBullet
, 0, 0, 0},
13659 { SWIG_PY_INT
, (char *)"Style_SquareBullet", (long) otk::Style::SquareBullet
, 0, 0, 0},
13660 { SWIG_PY_INT
, (char *)"Style_NoBullet", (long) otk::Style::NoBullet
, 0, 0, 0},
13661 { SWIG_PY_INT
, (char *)"BTexture_NoTexture", (long) otk::BTexture::NoTexture
, 0, 0, 0},
13662 { SWIG_PY_INT
, (char *)"BTexture_Flat", (long) otk::BTexture::Flat
, 0, 0, 0},
13663 { SWIG_PY_INT
, (char *)"BTexture_Sunken", (long) otk::BTexture::Sunken
, 0, 0, 0},
13664 { SWIG_PY_INT
, (char *)"BTexture_Raised", (long) otk::BTexture::Raised
, 0, 0, 0},
13665 { SWIG_PY_INT
, (char *)"BTexture_Solid", (long) otk::BTexture::Solid
, 0, 0, 0},
13666 { SWIG_PY_INT
, (char *)"BTexture_Gradient", (long) otk::BTexture::Gradient
, 0, 0, 0},
13667 { SWIG_PY_INT
, (char *)"BTexture_Horizontal", (long) otk::BTexture::Horizontal
, 0, 0, 0},
13668 { SWIG_PY_INT
, (char *)"BTexture_Vertical", (long) otk::BTexture::Vertical
, 0, 0, 0},
13669 { SWIG_PY_INT
, (char *)"BTexture_Diagonal", (long) otk::BTexture::Diagonal
, 0, 0, 0},
13670 { SWIG_PY_INT
, (char *)"BTexture_CrossDiagonal", (long) otk::BTexture::CrossDiagonal
, 0, 0, 0},
13671 { SWIG_PY_INT
, (char *)"BTexture_Rectangle", (long) otk::BTexture::Rectangle
, 0, 0, 0},
13672 { SWIG_PY_INT
, (char *)"BTexture_Pyramid", (long) otk::BTexture::Pyramid
, 0, 0, 0},
13673 { SWIG_PY_INT
, (char *)"BTexture_PipeCross", (long) otk::BTexture::PipeCross
, 0, 0, 0},
13674 { SWIG_PY_INT
, (char *)"BTexture_Elliptic", (long) otk::BTexture::Elliptic
, 0, 0, 0},
13675 { SWIG_PY_INT
, (char *)"BTexture_Bevel1", (long) otk::BTexture::Bevel1
, 0, 0, 0},
13676 { SWIG_PY_INT
, (char *)"BTexture_Bevel2", (long) otk::BTexture::Bevel2
, 0, 0, 0},
13677 { SWIG_PY_INT
, (char *)"BTexture_Border", (long) otk::BTexture::Border
, 0, 0, 0},
13678 { SWIG_PY_INT
, (char *)"BTexture_Invert", (long) otk::BTexture::Invert
, 0, 0, 0},
13679 { SWIG_PY_INT
, (char *)"BTexture_Parent_Relative", (long) otk::BTexture::Parent_Relative
, 0, 0, 0},
13680 { SWIG_PY_INT
, (char *)"BTexture_Interlaced", (long) otk::BTexture::Interlaced
, 0, 0, 0},
13690 SWIGEXPORT(void) SWIG_init(void) {
13691 static PyObject
*SWIG_globals
= 0;
13692 static int typeinit
= 0;
13695 if (!SWIG_globals
) SWIG_globals
= SWIG_newvarlink();
13696 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
13697 d
= PyModule_GetDict(m
);
13700 for (i
= 0; swig_types_initial
[i
]; i
++) {
13701 swig_types
[i
] = SWIG_TypeRegister(swig_types_initial
[i
]);
13705 SWIG_InstallConstants(d
,swig_const_table
);
13707 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals
);
13708 SWIG_addvarlink(SWIG_globals
,(char*)"OBDisplay_display",_wrap_OBDisplay_display_get
, _wrap_OBDisplay_display_set
);
13709 SWIG_addvarlink(SWIG_globals
,(char*)"BSENTINEL",_wrap_BSENTINEL_get
, _wrap_BSENTINEL_set
);